Skip to content

Commit 1104c6c

Browse files
Paulo AlcantaraMahmoud Adam
authored andcommitted
smb: client: fix UAF in smb2_reconnect_server()
commit 24a9799 upstream. The UAF bug is due to smb2_reconnect_server() accessing a session that is already being teared down by another thread that is executing __cifs_put_smb_ses(). This can happen when (a) the client has connection to the server but no session or (b) another thread ends up setting @ses->ses_status again to something different than SES_EXITING. To fix this, we need to make sure to unconditionally set @ses->ses_status to SES_EXITING and prevent any other threads from setting a new status while we're still tearing it down. The following can be reproduced by adding some delay to right after the ipc is freed in __cifs_put_smb_ses() - which will give smb2_reconnect_server() worker a chance to run and then accessing @ses->ipc: kinit ... mount.cifs //srv/share /mnt/1 -o sec=krb5,nohandlecache,echo_interval=10 [disconnect srv] ls /mnt/1 &>/dev/null sleep 30 kdestroy [reconnect srv] sleep 10 umount /mnt/1 ... CIFS: VFS: Verify user has a krb5 ticket and keyutils is installed CIFS: VFS: \\srv Send error in SessSetup = -126 CIFS: VFS: Verify user has a krb5 ticket and keyutils is installed CIFS: VFS: \\srv Send error in SessSetup = -126 general protection fault, probably for non-canonical address 0x6b6b6b6b6b6b6b6b: 0000 [#1] PREEMPT SMP NOPTI CPU: 3 PID: 50 Comm: kworker/3:1 Not tainted 6.9.0-rc2 #1 Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-1.fc39 04/01/2014 Workqueue: cifsiod smb2_reconnect_server [cifs] RIP: 0010:__list_del_entry_valid_or_report+0x33/0xf0 Code: 4f 08 48 85 d2 74 42 48 85 c9 74 59 48 b8 00 01 00 00 00 00 ad de 48 39 c2 74 61 48 b8 22 01 00 00 00 00 74 69 <48> 8b 01 48 39 f8 75 7b 48 8b 72 08 48 39 c6 0f 85 88 00 00 00 b8 RSP: 0018:ffffc900001bfd70 EFLAGS: 00010a83 RAX: dead000000000122 RBX: ffff88810da53838 RCX: 6b6b6b6b6b6b6b6b RDX: 6b6b6b6b6b6b6b6b RSI: ffffffffc02f6878 RDI: ffff88810da53800 RBP: ffff88810da53800 R08: 0000000000000001 R09: 0000000000000000 R10: 0000000000000000 R11: 0000000000000001 R12: ffff88810c064000 R13: 0000000000000001 R14: ffff88810c064000 R15: ffff8881039cc000 FS: 0000000000000000(0000) GS:ffff888157c00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 00007fe3728b1000 CR3: 000000010caa4000 CR4: 0000000000750ef0 PKRU: 55555554 Call Trace: <TASK> ? die_addr+0x36/0x90 ? exc_general_protection+0x1c1/0x3f0 ? asm_exc_general_protection+0x26/0x30 ? __list_del_entry_valid_or_report+0x33/0xf0 __cifs_put_smb_ses+0x1ae/0x500 [cifs] smb2_reconnect_server+0x4ed/0x710 [cifs] process_one_work+0x205/0x6b0 worker_thread+0x191/0x360 ? __pfx_worker_thread+0x10/0x10 kthread+0xe2/0x110 ? __pfx_kthread+0x10/0x10 ret_from_fork+0x34/0x50 ? __pfx_kthread+0x10/0x10 ret_from_fork_asm+0x1a/0x30 </TASK> Cc: stable@vger.kernel.org Signed-off-by: Paulo Alcantara (Red Hat) <pc@manguebit.com> Signed-off-by: Steve French <stfrench@microsoft.com> [v5.10: added ses_lock to cifs_ses; used ses->status and old statusEnum values; resolved contextual conflicts in cifs_put_smb_ses and moved changes from cifs_mark_tcp_ses_conns_for_reconnect to cifs_reconnect] Signed-off-by: Shaoying Xu <shaoyi@amazon.com>
1 parent 96b611c commit 1104c6c

File tree

2 files changed

+35
-40
lines changed

2 files changed

+35
-40
lines changed

fs/cifs/cifsglob.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -979,6 +979,7 @@ struct cifs_ses {
979979
struct list_head smb_ses_list;
980980
struct list_head tcon_list;
981981
struct cifs_tcon *tcon_ipc;
982+
spinlock_t ses_lock; /* protect anything here that is not protected */
982983
struct mutex session_mutex;
983984
struct TCP_Server_Info *server; /* pointer to server info */
984985
int ses_count; /* reference counter */

fs/cifs/connect.c

Lines changed: 34 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,13 @@ cifs_reconnect(struct TCP_Server_Info *server)
455455
spin_lock(&cifs_tcp_ses_lock);
456456
list_for_each(tmp, &server->smb_ses_list) {
457457
ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
458+
spin_lock(&ses->ses_lock);
459+
if (ses->status == CifsExiting) {
460+
spin_unlock(&ses->ses_lock);
461+
continue;
462+
}
463+
spin_unlock(&ses->ses_lock);
464+
458465
spin_lock(&ses->chan_lock);
459466
if (cifs_chan_needs_reconnect(ses, server))
460467
goto next_session;
@@ -2798,34 +2805,6 @@ cifs_setup_ipc(struct cifs_ses *ses, struct smb_vol *volume_info)
27982805
return rc;
27992806
}
28002807

2801-
/**
2802-
* cifs_free_ipc - helper to release the session IPC tcon
2803-
*
2804-
* Needs to be called everytime a session is destroyed
2805-
*/
2806-
static int
2807-
cifs_free_ipc(struct cifs_ses *ses)
2808-
{
2809-
int rc = 0, xid;
2810-
struct cifs_tcon *tcon = ses->tcon_ipc;
2811-
2812-
if (tcon == NULL)
2813-
return 0;
2814-
2815-
if (ses->server->ops->tree_disconnect) {
2816-
xid = get_xid();
2817-
rc = ses->server->ops->tree_disconnect(xid, tcon);
2818-
free_xid(xid);
2819-
}
2820-
2821-
if (rc)
2822-
cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc);
2823-
2824-
tconInfoFree(tcon);
2825-
ses->tcon_ipc = NULL;
2826-
return rc;
2827-
}
2828-
28292808
static struct cifs_ses *
28302809
cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
28312810
{
@@ -2850,28 +2829,43 @@ void cifs_put_smb_ses(struct cifs_ses *ses)
28502829
unsigned int rc, xid;
28512830
unsigned int chan_count;
28522831
struct TCP_Server_Info *server = ses->server;
2832+
struct cifs_tcon *tcon;
2833+
bool do_logoff;
28532834

28542835
cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
28552836

28562837
spin_lock(&cifs_tcp_ses_lock);
2857-
if (ses->status == CifsExiting) {
2838+
spin_lock(&ses->ses_lock);
2839+
cifs_dbg(FYI, "%s: id=0x%llx ses_count=%d ses_status=%u ipc=%s\n",
2840+
__func__, ses->Suid, ses->ses_count, ses->status,
2841+
ses->tcon_ipc ? ses->tcon_ipc->treeName : "none");
2842+
if (ses->status == CifsExiting || --ses->ses_count > 0) {
2843+
spin_unlock(&ses->ses_lock);
28582844
spin_unlock(&cifs_tcp_ses_lock);
28592845
return;
28602846
}
2861-
if (--ses->ses_count > 0) {
2862-
spin_unlock(&cifs_tcp_ses_lock);
2863-
return;
2864-
}
2865-
spin_unlock(&cifs_tcp_ses_lock);
28662847

2867-
spin_lock(&GlobalMid_Lock);
2868-
if (ses->status == CifsGood)
2869-
ses->status = CifsExiting;
2870-
spin_unlock(&GlobalMid_Lock);
2848+
spin_lock(&ses->chan_lock);
2849+
cifs_chan_clear_need_reconnect(ses, server);
2850+
spin_unlock(&ses->chan_lock);
28712851

2872-
cifs_free_ipc(ses);
2852+
do_logoff = ses->status == CifsGood && server->ops->logoff;
2853+
ses->status = CifsExiting;
2854+
tcon = ses->tcon_ipc;
2855+
ses->tcon_ipc = NULL;
2856+
spin_unlock(&ses->ses_lock);
2857+
spin_unlock(&cifs_tcp_ses_lock);
28732858

2874-
if (ses->status == CifsExiting && server->ops->logoff) {
2859+
/*
2860+
* On session close, the IPC is closed and the server must release all
2861+
* tcons of the session. No need to send a tree disconnect here.
2862+
*
2863+
* Besides, it will make the server to not close durable and resilient
2864+
* files on session close, as specified in MS-SMB2 3.3.5.6 Receiving an
2865+
* SMB2 LOGOFF Request.
2866+
*/
2867+
tconInfoFree(tcon);
2868+
if (do_logoff) {
28752869
xid = get_xid();
28762870
rc = server->ops->logoff(xid, ses);
28772871
if (rc)

0 commit comments

Comments
 (0)