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 460DA38E8A9; Fri, 7 Aug 2026 14:50:34 +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=1786114238; cv=none; b=K/RuP4yIeJefwG9Vb4F9MMk4Vu0IYPK+/DR/PJck2xm+0xe/pSu9EBqxRtZ6lC9hMJXiwY+GN8Pvqak9uGVcbIUQjNwwV3FQvziT+82ooQY+EMPe13ffJMzNu01xTonMbdV5AJ5slhyim2vVkkbAcmhQmiFeE36/GNNG2tnbyrg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786114238; c=relaxed/simple; bh=mI6v+FJou+RzNZYbKOJaKBhyZkHRUsWlAwTZKZWKvt0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WOJ16gIfXgR+0c4+FFsBZSB7i+rGzam5sTs2RXv7ZkUQZJMWpOY1Skljr12IO54KxPOHuw2CkviDzrFVSD+PQHfjWFHoCHyOfKslp80Rq23gRse01GvoUxN7J+HHnm78V8XGaNwlyQvpODG30dwstx4haFUokxqhPzVOq3l1feg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=NI/E5DiV; 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="NI/E5DiV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E98401F00A3E; Fri, 7 Aug 2026 14:50:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786114232; bh=uYGdW52bd3ZLDc7GwiwrQfW/0guoH6kgHXgYGDliWj4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=NI/E5DiVqgoaHZiWBnLMBhcMfes2/Zi9NORX6/Ex941lb2B6K90zi6gAhtuE1oedO eFwCfPDWmxT8aLMnjZowPoJDf2Sz00T7HAYDeRBU0rJYx0AQ6W4lf8UeIibBOEVaLC bIgWGvBnTz2J7wvu+KQyvkIPDkzqx6mfbUvwsfV0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ming Lei , Caleb Sander Mateos , Jens Axboe Subject: [PATCH 6.12 191/337] ublk: reset kernel-owned dev_info fields in ublk_ctrl_add_dev() Date: Fri, 7 Aug 2026 16:36:34 +0200 Message-ID: <20260807143422.698099357@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143418.516897842@linuxfoundation.org> References: <20260807143418.516897842@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-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ming Lei commit e65848e4ce352bac9e3465099354c8b8f845391f upstream. ublk_ctrl_add_dev() memcpy()s the userspace ublksrv_ctrl_dev_info into ub->dev_info and then fixes up the fields the driver owns, but misses ->state and ->ublksrv_pid. A device added with ->state = UBLK_S_DEV_LIVE passes the "->state != UBLK_S_DEV_DEAD" test that ublk_stop_dev_unlocked() uses as its proxy for "a disk is attached", while ->ub_disk is still NULL, so DEL_DEV right after ADD_DEV oopses in del_gendisk(). UBLK_S_DEV_QUIESCED plus UBLK_F_USER_RECOVERY dies one step earlier, in ublk_force_abort_dev(). A poisoned ->state also gets START_USER_RECOVERY and the char device read/write path onto a device that was never started, and wedges START_DEV at -EEXIST. A poisoned ->ublksrv_pid just makes GET_DEV_INFO report an unrelated task as the ublk server. Reset both after the memcpy(), as ublk_detach_disk() does. Userspace only ever reads these back, so correcting them silently breaks nothing. ADD_DEV has copied ->state in unsanitized since ublk was merged, but back then it was harmless: the gendisk was allocated during ADD_DEV, and both teardown and the START_DEV -EEXIST check keyed off disk_live() rather than ->state. The oops became reachable once the disk allocation moved to START_DEV and those checks switched to ->state. Fixes: 6d9e6dfdf3b2 ("ublk: defer disk allocation") Cc: stable@vger.kernel.org Signed-off-by: Ming Lei Reviewed-by: Caleb Sander Mateos Link: https://patch.msgid.link/20260726145025.1507383-1-tom.leiming@gmail.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- drivers/block/ublk_drv.c | 9 +++++++++ 1 file changed, 9 insertions(+) --- a/drivers/block/ublk_drv.c +++ b/drivers/block/ublk_drv.c @@ -2559,6 +2559,15 @@ static int ublk_ctrl_add_dev(struct io_u ub->dev_info.dev_id = ub->ub_number; /* + * ->state and ->ublksrv_pid are owned by the driver and only read back + * by userspace, but they come from the copied-in dev_info, so reset + * them. Otherwise a device added with ->state != DEAD looks live while + * ->ub_disk is still NULL. + */ + ub->dev_info.state = UBLK_S_DEV_DEAD; + ub->dev_info.ublksrv_pid = -1; + + /* * 64bit flags will be copied back to userspace as feature * negotiation result, so have to clear flags which driver * doesn't support yet, then userspace can get correct flags