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 C115A2D12ED; Fri, 7 Aug 2026 15:23:43 +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=1786116224; cv=none; b=BvRU0TICdO61fSzahLPcf4mwUAuuaWRend6hB4927q/mG1nHgSsYlDJT//nazYJi+RIbBBsQmMpGpjqlp1q6SzXPutwTZNZW478r4GymQ4rys044vA2C+cHpFitvm31tl+NDa1Be4OWOm7hdGUg+Yeirv1jdtYU7xIQhYaMrfb4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786116224; c=relaxed/simple; bh=ncHtOkBMOoGMHuIRVW8Tz3SNbXY/VNsq1M3YEysT7WQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=TV6aOWJQ/YVRjN56OjvAeC68EtHNNucRqyyi98+roPqrcDRi6PrCXqEUlAxWvQLs2HzeYEgjbmT0LWvAczBC6fD319ULuBlAWQNFBKbHxP/DYNQTaYyz0y2d25ZLUtGr//Wpj1OrVIjqTgVYxdQPvncSOV0vNDoP8CYFfd+cA6w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DJzUmH37; 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="DJzUmH37" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CD1391F000E9; Fri, 7 Aug 2026 15:23:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786116223; bh=c6DrV0BsvX2JBLYI1ZceIdV6jrP8nmjxNgknskW5JEY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=DJzUmH37FtgX4JTDWZZ+2Qexb7D8qitdIKcdjx9o9zONrHlx6aqG2LFpH/KFjwbbX hFDjl3iy+3HxzcXj887R6k4NFEY1+ok64uB6Bu4NUr3sTY3RrwijfkRDptieri412a vv675wBsjObWSkQisjPSMBn8hFfj2Qo1hT3BCVx0= 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 6.6 154/261] s390/dasd: Fix potential NULL pointer dereference Date: Fri, 7 Aug 2026 16:38:31 +0200 Message-ID: <20260807143418.689705969@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143415.358597922@linuxfoundation.org> References: <20260807143415.358597922@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 6.6-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 @@ -330,7 +330,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;