s3:smbd: implement SMB2 Cancel correctly.
[metze/samba/wip.git] / source3 / smbd / smb2_notify.c
1 /*
2    Unix SMB/CIFS implementation.
3    Core SMB2 server
4
5    Copyright (C) Stefan Metzmacher 2009
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "smbd/globals.h"
23 #include "../libcli/smb/smb_common.h"
24
25 static struct tevent_req *smbd_smb2_notify_send(TALLOC_CTX *mem_ctx,
26                                                 struct tevent_context *ev,
27                                                 struct smbd_smb2_request *smb2req,
28                                                 uint16_t in_flags,
29                                                 uint32_t in_output_buffer_length,
30                                                 uint64_t in_file_id_volatile,
31                                                 uint64_t in_completion_filter);
32 static NTSTATUS smbd_smb2_notify_recv(struct tevent_req *req,
33                                       TALLOC_CTX *mem_ctx,
34                                       DATA_BLOB *out_output_buffer);
35
36 static void smbd_smb2_request_notify_done(struct tevent_req *subreq);
37 NTSTATUS smbd_smb2_request_process_notify(struct smbd_smb2_request *req)
38 {
39         const uint8_t *inhdr;
40         const uint8_t *inbody;
41         int i = req->current_idx;
42         size_t expected_body_size = 0x20;
43         size_t body_size;
44         uint16_t in_flags;
45         uint32_t in_output_buffer_length;
46         uint64_t in_file_id_persistent;
47         uint64_t in_file_id_volatile;
48         uint64_t in_completion_filter;
49         struct tevent_req *subreq;
50
51         inhdr = (const uint8_t *)req->in.vector[i+0].iov_base;
52         if (req->in.vector[i+1].iov_len != (expected_body_size & 0xFFFFFFFE)) {
53                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
54         }
55
56         inbody = (const uint8_t *)req->in.vector[i+1].iov_base;
57
58         body_size = SVAL(inbody, 0x00);
59         if (body_size != expected_body_size) {
60                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
61         }
62
63         in_flags                = SVAL(inbody, 0x02);
64         in_output_buffer_length = IVAL(inbody, 0x04);
65         in_file_id_persistent   = BVAL(inbody, 0x08);
66         in_file_id_volatile     = BVAL(inbody, 0x10);
67         in_completion_filter    = IVAL(inbody, 0x18);
68
69         /*
70          * 0x00010000 is what Windows 7 uses,
71          * Windows 2008 uses 0x00080000
72          */
73         if (in_output_buffer_length > 0x00010000) {
74                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
75         }
76
77         if (req->compat_chain_fsp) {
78                 /* skip check */
79         } else if (in_file_id_persistent != 0) {
80                 return smbd_smb2_request_error(req, NT_STATUS_FILE_CLOSED);
81         }
82
83         subreq = smbd_smb2_notify_send(req,
84                                        req->sconn->smb2.event_ctx,
85                                        req,
86                                        in_flags,
87                                        in_output_buffer_length,
88                                        in_file_id_volatile,
89                                        in_completion_filter);
90         if (subreq == NULL) {
91                 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
92         }
93         tevent_req_set_callback(subreq, smbd_smb2_request_notify_done, req);
94
95         return smbd_smb2_request_pending_queue(req, subreq);
96 }
97
98 static void smbd_smb2_request_notify_done(struct tevent_req *subreq)
99 {
100         struct smbd_smb2_request *req = tevent_req_callback_data(subreq,
101                                         struct smbd_smb2_request);
102         int i = req->current_idx;
103         uint8_t *outhdr;
104         DATA_BLOB outbody;
105         DATA_BLOB outdyn;
106         uint16_t out_output_buffer_offset;
107         DATA_BLOB out_output_buffer = data_blob_null;
108         NTSTATUS status;
109         NTSTATUS error; /* transport error */
110
111         status = smbd_smb2_notify_recv(subreq,
112                                        req,
113                                        &out_output_buffer);
114         TALLOC_FREE(subreq);
115         if (!NT_STATUS_IS_OK(status)) {
116                 error = smbd_smb2_request_error(req, status);
117                 if (!NT_STATUS_IS_OK(error)) {
118                         smbd_server_connection_terminate(req->sconn,
119                                                          nt_errstr(error));
120                         return;
121                 }
122                 return;
123         }
124
125         out_output_buffer_offset = SMB2_HDR_BODY + 0x08;
126
127         outhdr = (uint8_t *)req->out.vector[i].iov_base;
128
129         outbody = data_blob_talloc(req->out.vector, NULL, 0x08);
130         if (outbody.data == NULL) {
131                 error = smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
132                 if (!NT_STATUS_IS_OK(error)) {
133                         smbd_server_connection_terminate(req->sconn,
134                                                          nt_errstr(error));
135                         return;
136                 }
137                 return;
138         }
139
140         SSVAL(outbody.data, 0x00, 0x08 + 1);    /* struct size */
141         SSVAL(outbody.data, 0x02,
142               out_output_buffer_offset);        /* output buffer offset */
143         SIVAL(outbody.data, 0x04,
144               out_output_buffer.length);        /* output buffer length */
145
146         outdyn = out_output_buffer;
147
148         error = smbd_smb2_request_done(req, outbody, &outdyn);
149         if (!NT_STATUS_IS_OK(error)) {
150                 smbd_server_connection_terminate(req->sconn,
151                                                  nt_errstr(error));
152                 return;
153         }
154 }
155
156 struct smbd_smb2_notify_state {
157         struct smbd_smb2_request *smb2req;
158         struct tevent_immediate *im;
159         NTSTATUS status;
160         DATA_BLOB out_output_buffer;
161 };
162
163 static void smbd_smb2_notify_reply(struct smb_request *smbreq,
164                                    NTSTATUS error_code,
165                                    uint8_t *buf, size_t len);
166 static void smbd_smb2_notify_reply_trigger(struct tevent_context *ctx,
167                                            struct tevent_immediate *im,
168                                            void *private_data);
169
170 static struct tevent_req *smbd_smb2_notify_send(TALLOC_CTX *mem_ctx,
171                                                 struct tevent_context *ev,
172                                                 struct smbd_smb2_request *smb2req,
173                                                 uint16_t in_flags,
174                                                 uint32_t in_output_buffer_length,
175                                                 uint64_t in_file_id_volatile,
176                                                 uint64_t in_completion_filter)
177 {
178         struct tevent_req *req;
179         struct smbd_smb2_notify_state *state;
180         struct smb_request *smbreq;
181         connection_struct *conn = smb2req->tcon->compat_conn;
182         files_struct *fsp;
183         bool recursive = (in_flags & 0x0001) ? true : false;
184         NTSTATUS status;
185
186         req = tevent_req_create(mem_ctx, &state,
187                                 struct smbd_smb2_notify_state);
188         if (req == NULL) {
189                 return NULL;
190         }
191         state->smb2req = smb2req;
192         state->status = NT_STATUS_INTERNAL_ERROR;
193         state->out_output_buffer = data_blob_null;
194         state->im = NULL;
195
196         DEBUG(10,("smbd_smb2_notify_send: file_id[0x%016llX]\n",
197                   (unsigned long long)in_file_id_volatile));
198
199         smbreq = smbd_smb2_fake_smb_request(smb2req);
200         if (tevent_req_nomem(smbreq, req)) {
201                 return tevent_req_post(req, ev);
202         }
203
204         smbreq->async_priv = (void *)req;
205
206         fsp = file_fsp(smbreq, (uint16_t)in_file_id_volatile);
207         if (fsp == NULL) {
208                 tevent_req_nterror(req, NT_STATUS_FILE_CLOSED);
209                 return tevent_req_post(req, ev);
210         }
211         if (conn != fsp->conn) {
212                 tevent_req_nterror(req, NT_STATUS_FILE_CLOSED);
213                 return tevent_req_post(req, ev);
214         }
215         if (smb2req->session->vuid != fsp->vuid) {
216                 tevent_req_nterror(req, NT_STATUS_FILE_CLOSED);
217                 return tevent_req_post(req, ev);
218         }
219
220         {
221                 char *filter_string;
222
223                 filter_string = notify_filter_string(NULL, in_completion_filter);
224                 if (tevent_req_nomem(filter_string, req)) {
225                         return tevent_req_post(req, ev);
226                 }
227
228                 DEBUG(3,("smbd_smb2_notify_send: notify change "
229                          "called on %s, filter = %s, recursive = %d\n",
230                          fsp_str_dbg(fsp), filter_string, recursive));
231
232                 TALLOC_FREE(filter_string);
233         }
234
235         if ((!fsp->is_directory) || (conn != fsp->conn)) {
236                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
237                 return tevent_req_post(req, ev);
238         }
239
240         if (fsp->notify == NULL) {
241
242                 status = change_notify_create(fsp,
243                                               in_completion_filter,
244                                               recursive);
245                 if (!NT_STATUS_IS_OK(status)) {
246                         DEBUG(10, ("change_notify_create returned %s\n",
247                                    nt_errstr(status)));
248                         tevent_req_nterror(req, status);
249                         return tevent_req_post(req, ev);
250                 }
251         }
252
253         if (fsp->notify->num_changes != 0) {
254
255                 /*
256                  * We've got changes pending, respond immediately
257                  */
258
259                 /*
260                  * TODO: write a torture test to check the filtering behaviour
261                  * here.
262                  */
263
264                 change_notify_reply(fsp->conn, smbreq,
265                                     NT_STATUS_OK,
266                                     in_output_buffer_length,
267                                     fsp->notify,
268                                     smbd_smb2_notify_reply);
269
270                 /*
271                  * change_notify_reply() above has independently
272                  * called tevent_req_done().
273                  */
274                 return tevent_req_post(req, ev);
275         }
276
277         state->im = tevent_create_immediate(state);
278         if (tevent_req_nomem(state->im, req)) {
279                 return tevent_req_post(req, ev);
280         }
281
282         /*
283          * No changes pending, queue the request
284          */
285
286         status = change_notify_add_request(smbreq,
287                         in_output_buffer_length,
288                         in_completion_filter,
289                         recursive, fsp,
290                         smbd_smb2_notify_reply);
291         if (!NT_STATUS_IS_OK(status)) {
292                 tevent_req_nterror(req, status);
293                 return tevent_req_post(req, ev);
294         }
295
296         return req;
297 }
298
299 static void smbd_smb2_notify_reply(struct smb_request *smbreq,
300                                    NTSTATUS error_code,
301                                    uint8_t *buf, size_t len)
302 {
303         struct tevent_req *req = talloc_get_type_abort(smbreq->async_priv,
304                                                        struct tevent_req);
305         struct smbd_smb2_notify_state *state = tevent_req_data(req,
306                                                struct smbd_smb2_notify_state);
307
308         state->status = error_code;
309         if (!NT_STATUS_IS_OK(error_code)) {
310                 /* nothing */
311         } else if (len == 0) {
312                 state->status = STATUS_NOTIFY_ENUM_DIR;
313         } else {
314                 state->out_output_buffer = data_blob_talloc(state, buf, len);
315                 if (state->out_output_buffer.data == NULL) {
316                         state->status = NT_STATUS_NO_MEMORY;
317                 }
318         }
319
320         if (state->im == NULL) {
321                 smbd_smb2_notify_reply_trigger(NULL, NULL, req);
322                 return;
323         }
324
325         /*
326          * if this is called async, we need to go via an immediate event
327          * because the caller replies on the smb_request (a child of req
328          * being arround after calling this function
329          */
330         tevent_schedule_immediate(state->im,
331                                   state->smb2req->sconn->smb2.event_ctx,
332                                   smbd_smb2_notify_reply_trigger,
333                                   req);
334 }
335
336 static void smbd_smb2_notify_reply_trigger(struct tevent_context *ctx,
337                                            struct tevent_immediate *im,
338                                            void *private_data)
339 {
340         struct tevent_req *req = talloc_get_type_abort(private_data,
341                                                        struct tevent_req);
342         struct smbd_smb2_notify_state *state = tevent_req_data(req,
343                                                struct smbd_smb2_notify_state);
344
345         if (!NT_STATUS_IS_OK(state->status)) {
346                 tevent_req_nterror(req, state->status);
347                 return;
348         }
349
350         tevent_req_done(req);
351 }
352
353 static NTSTATUS smbd_smb2_notify_recv(struct tevent_req *req,
354                                       TALLOC_CTX *mem_ctx,
355                                       DATA_BLOB *out_output_buffer)
356 {
357         NTSTATUS status;
358         struct smbd_smb2_notify_state *state = tevent_req_data(req,
359                                                struct smbd_smb2_notify_state);
360
361         if (tevent_req_is_nterror(req, &status)) {
362                 tevent_req_received(req);
363                 return status;
364         }
365
366         *out_output_buffer = state->out_output_buffer;
367         talloc_steal(mem_ctx, out_output_buffer->data);
368
369         tevent_req_received(req);
370         return NT_STATUS_OK;
371 }