From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6EC7638D3ED; Fri, 7 Aug 2026 15:44:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786117499; cv=none; b=RLbq35NOeU+SgtbZk1HndDR9t51UPDW8zsUwmUH6tcazf/4SK+Jcd7fP1Dr/MqQxqFx5qc+qbhghhw9d2YGYI3VHMHrH4CUQBt/XDP3jJLDW6KPoHJA60kUipfdjS0HtO9LEfBfn+iFzeZerI4RodxAWT8LSS3XLzS4X/IEsUg8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786117499; c=relaxed/simple; bh=i+9snf/hYCZT+dNeDBdegiFzWCVO2oxc6UaAD7TXyjY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=aCIfhJUTUwUmtClagfxlypBPjPMI0HwwdUp7dL3b4jaLSQ2JeRPrE63PNhjKR61FAvAiFtg9HgHCQW3Scw4FENOILYUUdjrGpFLbkslBeO7/Bd/8m4L3ibGtRiz5UuIwPJzPYaViclbEfcoHDSltLhkwnKZFE56wRl9UNVREo7w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=OrP9Fu38; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="OrP9Fu38" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8695D1F000E9; Fri, 7 Aug 2026 15:44:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786117498; bh=t7keMrRL6BrZ0WcCqrV6UtdlgS/lJGWInw9i3tfx51c=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=OrP9Fu38dZSN8/PKK652IpCzHBT/grNtYYu2AQ51vtMW6MHJvSZJ8unU+9rXWMNjt lfOY7sfgeqV3YBUVDm1yAPRQwreu3KvVVzil43aniZb1ACJg7GPmO7F9zFSogvdag0 teTi2HoCviaAmgPnnmgcXXjSVOuECnRnusbhwGU8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Vasily Gorbik , Eduard Shishkin , Stefan Haberland , =?UTF-8?q?Jan=20H=C3=B6ppner?= , Jens Axboe Subject: [PATCH 7.1 339/438] s390/dasd: Fix potential NULL pointer dereference Date: Fri, 7 Aug 2026 16:38:55 +0200 Message-ID: <20260807143435.199633079@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143428.008222056@linuxfoundation.org> References: <20260807143428.008222056@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jan Höppner commit 9973026f572db6b67570cadc30942f3014e41079 upstream. dasd_release_space() checks the implementation of the is_ese() discipline function before calling it to determine if a given device is an ESE DASD. The current usage of the logical AND operator will lead to a NULL pointer dereference as the function is called even if the function pointer is NULL. Fix this by using the logical OR operator. Fixes: 91dc4a197569 ("s390/dasd: Add new ioctl to release space") Cc: stable@vger.kernel.org # v5.3+ Reported-by: Vasily Gorbik Acked-by: Eduard Shishkin Reviewed-by: Stefan Haberland Signed-off-by: Jan Höppner Signed-off-by: Stefan Haberland Link: https://patch.msgid.link/20260727142840.567286-3-sth@linux.ibm.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- drivers/s390/block/dasd_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/s390/block/dasd_ioctl.c +++ b/drivers/s390/block/dasd_ioctl.c @@ -324,7 +324,7 @@ out_err: static int dasd_release_space(struct dasd_device *device, struct format_data_t *rdata) { - if (!device->discipline->is_ese && !device->discipline->is_ese(device)) + if (!device->discipline->is_ese || !device->discipline->is_ese(device)) return -ENOTSUPP; if (!device->discipline->release_space) return -ENOTSUPP;