The Samba-Bugzilla – Attachment 8349 Details for
Bug 9196
defer_open is triggered multiple times on the same request
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
git-am fix for master and 4.0.1
0001-Fix-bug-9196-defer_open-is-triggered-multiple-times-.patch (text/plain), 1.44 KB, created by
Jeremy Allison
on 2012-12-14 16:45:22 UTC
(
hide
)
Description:
git-am fix for master and 4.0.1
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2012-12-14 16:45:22 UTC
Size:
1.44 KB
patch
obsolete
>From b5b65e4d347c5b0b9d4c0862c1385ac438bc51f2 Mon Sep 17 00:00:00 2001 >From: Jeremy Allison <jra@samba.org> >Date: Fri, 14 Dec 2012 08:39:26 -0800 >Subject: [PATCH] Fix bug #9196 - defer_open is triggered multiple times on > the same request. > >get_deferred_open_message_state_smb2() is buggy in that it is checking >the wrong things to determine if an open is in the deferred state. > >It checks if (smb2req->async_te == NULL) which is incorrect, >as we're not always async in a deferred open - remove this. > >It should check instead state->open_was_deferred as this >is explicity set to 'true' when an open is going deferred, >so add this check. > >Signed-off-by: Jeremy Allison <jra@samba.org> >--- > source3/smbd/smb2_create.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c >index 812d9db..21f2549 100644 >--- a/source3/smbd/smb2_create.c >+++ b/source3/smbd/smb2_create.c >@@ -1133,9 +1133,6 @@ bool get_deferred_open_message_state_smb2(struct smbd_smb2_request *smb2req, > if (!smb2req) { > return false; > } >- if (smb2req->async_te == NULL) { >- return false; >- } > req = smb2req->subreq; > if (!req) { > return false; >@@ -1144,6 +1141,9 @@ bool get_deferred_open_message_state_smb2(struct smbd_smb2_request *smb2req, > if (!state) { > return false; > } >+ if (!state->open_was_deferred) { >+ return false; >+ } > if (p_request_time) { > *p_request_time = state->request_time; > } >-- >1.7.10.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
metze
:
review+
ddiss
:
review+
Actions:
View
Attachments on
bug 9196
:
7925
|
7937
|
7938
|
7939
|
7946
|
7947
|
7958
|
7959
|
7990
|
7994
|
8348
| 8349 |
8350