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 B35FD42EEDD; Mon, 17 Aug 2026 14:55:42 +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=1786978543; cv=none; b=PAuRuOPBnnBK9xY7fJY5AWnp1JlBba5o4UhdHErG7AaJ1CTKEuwVYkmprNjmvYFLLQuAwtIS36k3ImF1Wsl4FpTjtgPmdsS/yR3AtSjb6g03snKp0pERFFdKwE/ENBmCigw12IAEVAQZPdSR9T7bWYnchjlrMWOciiiMHFe31Tc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786978543; c=relaxed/simple; bh=dcpSUwPKc70O7Htsjp1u/GEB0jcUC3DQqLWtI5NLQW4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=P5pfYYKtiKuXCuB995eiPHeRDDD1qo6knDnK1HZZGE+1UtBF6Z84Obt2dRaPYLZEQIXTUo6mBYXqmKHaJiizEOBJaKtUgQzHLB7D3ByJVWWvDCnGKfjld4HpXEQ779kL1kIxG5L8XFho11uYj3x5cYo5/5whH9jfa1aq6RSbc5U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=f94G5DSv; 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="f94G5DSv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 17DDD1F000E9; Mon, 17 Aug 2026 14:55:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786978542; bh=BLHfgAf7FzLaBltm6HvhAqvLaAtSgI/W0UUtUendNOE=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=f94G5DSvwq4jTjNeA5bnxu6XDUuU6VsEMDT1r5oSaWFhCXXPmQ/WNdI9ul3N+IIjj JYimrl4eOqvT7o8etQP0KGpnnf1/hXMI3gzBlKuC+UkwMIH2137lJrEgrpUVlcm0Jj xU/tLgzrkLeleQJnB8d+6WNovWblZ35bWCUgQCFo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Joshua Rogers , stable Subject: [PATCH 6.6 072/156] vt: stabilize tty reference in kbd_keycode with tty_port_tty_get Date: Mon, 17 Aug 2026 15:33:26 +0200 Message-ID: <20260817132537.409539145@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132534.666299318@linuxfoundation.org> References: <20260817132534.666299318@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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Joshua Rogers commit e25d47a526939ad44b75f778b8a7500562b84fc1 upstream. kbd_keycode() reads vc->port.tty without acquiring a tty reference, racing against con_shutdown() which clears port.tty under a different lock. Use tty_port_tty_get()/tty_kref_put() to hold a proper reference for the duration the tty pointer is needed. Assisted-by: AISLE:Snapshot Signed-off-by: Joshua Rogers Cc: stable Link: https://patch.msgid.link/20260731-tty-vt-stuff-v1-1-be99b9da8e30@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman Signed-off-by: Greg Kroah-Hartman --- drivers/tty/vt/keyboard.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/drivers/tty/vt/keyboard.c +++ b/drivers/tty/vt/keyboard.c @@ -1405,7 +1405,7 @@ static void kbd_keycode(unsigned int key struct keyboard_notifier_param param = { .vc = vc, .value = keycode, .down = down }; int rc; - tty = vc->port.tty; + tty = tty_port_tty_get(&vc->port); if (tty && (!tty->driver_data)) { /* No driver data? Strange. Okay we fix it then. */ @@ -1465,9 +1465,12 @@ static void kbd_keycode(unsigned int key * characters get aren't echoed locally. This makes key repeat * usable with slow applications and under heavy loads. */ + tty_kref_put(tty); return; } + tty_kref_put(tty); + param.shift = shift_final = (shift_state | kbd->slockstate) ^ kbd->lockstate; param.ledstate = kbd->ledflagstate; key_map = key_maps[shift_final];