From: Stefan Metzmacher Date: Thu, 21 Dec 2017 13:47:06 +0000 (+0100) Subject: s3:smbd: return the correct error for cancelled SMB2 notifies on expired sessions X-Git-Tag: samba-4.6.15~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7118165d6338c926ac1a2b958bde221a205b5ca5;p=thirdparty%2Fsamba.git s3:smbd: return the correct error for cancelled SMB2 notifies on expired sessions BUG: https://bugzilla.samba.org/show_bug.cgi?id=13197 Signed-off-by: Stefan Metzmacher --- diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c index f64185dc2d2..add59089187 100644 --- a/source3/smbd/notify.c +++ b/source3/smbd/notify.c @@ -391,12 +391,21 @@ static void smbd_notify_cancel_by_map(struct notify_mid_map *map) NTSTATUS notify_status = NT_STATUS_CANCELLED; if (smb2req != NULL) { + NTSTATUS sstatus; + if (smb2req->session == NULL) { - notify_status = STATUS_NOTIFY_CLEANUP; - } else if (!NT_STATUS_IS_OK(smb2req->session->status)) { - notify_status = STATUS_NOTIFY_CLEANUP; + sstatus = NT_STATUS_USER_SESSION_DELETED; + } else { + sstatus = smb2req->session->status; } - if (smb2req->tcon == NULL) { + + if (NT_STATUS_EQUAL(sstatus, NT_STATUS_NETWORK_SESSION_EXPIRED)) { + sstatus = NT_STATUS_OK; + } + + if (!NT_STATUS_IS_OK(sstatus)) { + notify_status = STATUS_NOTIFY_CLEANUP; + } else if (smb2req->tcon == NULL) { notify_status = STATUS_NOTIFY_CLEANUP; } else if (!NT_STATUS_IS_OK(smb2req->tcon->status)) { notify_status = STATUS_NOTIFY_CLEANUP;