s3-smbd: remove unused change/check_lanman_password.
[samba.git] / source3 / smbd / smb2_lock.c
1 /*
2    Unix SMB/CIFS implementation.
3    Core SMB2 server
4
5    Copyright (C) Stefan Metzmacher 2009
6    Copyright (C) Jeremy Allison 2010
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
25 #include "librpc/gen_ndr/messaging.h"
26
27 struct smbd_smb2_lock_element {
28         uint64_t offset;
29         uint64_t length;
30         uint32_t flags;
31 };
32
33 struct smbd_smb2_lock_state {
34         struct smbd_smb2_request *smb2req;
35         struct smb_request *smb1req;
36         struct blocking_lock_record *blr;
37         uint16_t lock_count;
38         struct smbd_lock_element *locks;
39 };
40
41 static void remove_pending_lock(struct smbd_smb2_lock_state *state,
42                                 struct blocking_lock_record *blr);
43
44 static struct tevent_req *smbd_smb2_lock_send(TALLOC_CTX *mem_ctx,
45                                                  struct tevent_context *ev,
46                                                  struct smbd_smb2_request *smb2req,
47                                                  uint32_t in_smbpid,
48                                                  uint64_t in_file_id_volatile,
49                                                  uint16_t in_lock_count,
50                                                  struct smbd_smb2_lock_element *in_locks);
51 static NTSTATUS smbd_smb2_lock_recv(struct tevent_req *req);
52
53 static void smbd_smb2_request_lock_done(struct tevent_req *subreq);
54 NTSTATUS smbd_smb2_request_process_lock(struct smbd_smb2_request *req)
55 {
56         const uint8_t *inhdr;
57         const uint8_t *inbody;
58         const int i = req->current_idx;
59         size_t expected_body_size = 0x30;
60         size_t body_size;
61         uint32_t in_smbpid;
62         uint16_t in_lock_count;
63         uint64_t in_file_id_persistent;
64         uint64_t in_file_id_volatile;
65         struct smbd_smb2_lock_element *in_locks;
66         struct tevent_req *subreq;
67         const uint8_t *lock_buffer;
68         uint16_t l;
69
70         inhdr = (const uint8_t *)req->in.vector[i+0].iov_base;
71         if (req->in.vector[i+1].iov_len != (expected_body_size & 0xFFFFFFFE)) {
72                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
73         }
74
75         inbody = (const uint8_t *)req->in.vector[i+1].iov_base;
76
77         body_size = SVAL(inbody, 0x00);
78         if (body_size != expected_body_size) {
79                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
80         }
81
82         in_smbpid                       = IVAL(inhdr, SMB2_HDR_PID);
83
84         in_lock_count                   = CVAL(inbody, 0x02);
85         /* 0x04 - 4 bytes reserved */
86         in_file_id_persistent           = BVAL(inbody, 0x08);
87         in_file_id_volatile             = BVAL(inbody, 0x10);
88
89         if (in_lock_count < 1) {
90                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
91         }
92
93         if (((in_lock_count - 1) * 0x18) > req->in.vector[i+2].iov_len) {
94                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
95         }
96
97         if (req->compat_chain_fsp) {
98                 /* skip check */
99         } else if (in_file_id_persistent != in_file_id_volatile) {
100                 return smbd_smb2_request_error(req, NT_STATUS_FILE_CLOSED);
101         }
102
103         in_locks = talloc_array(req, struct smbd_smb2_lock_element,
104                                 in_lock_count);
105         if (in_locks == NULL) {
106                 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
107         }
108
109         l = 0;
110         lock_buffer = inbody + 0x18;
111
112         in_locks[l].offset      = BVAL(lock_buffer, 0x00);
113         in_locks[l].length      = BVAL(lock_buffer, 0x08);
114         in_locks[l].flags       = IVAL(lock_buffer, 0x10);
115         /* 0x14 - 4 reserved bytes */
116
117         lock_buffer = (const uint8_t *)req->in.vector[i+2].iov_base;
118
119         for (l=1; l < in_lock_count; l++) {
120                 in_locks[l].offset      = BVAL(lock_buffer, 0x00);
121                 in_locks[l].length      = BVAL(lock_buffer, 0x08);
122                 in_locks[l].flags       = IVAL(lock_buffer, 0x10);
123                 /* 0x14 - 4 reserved bytes */
124
125                 lock_buffer += 0x18;
126         }
127
128         subreq = smbd_smb2_lock_send(req,
129                                      req->sconn->smb2.event_ctx,
130                                      req,
131                                      in_smbpid,
132                                      in_file_id_volatile,
133                                      in_lock_count,
134                                      in_locks);
135         if (subreq == NULL) {
136                 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
137         }
138         tevent_req_set_callback(subreq, smbd_smb2_request_lock_done, req);
139
140         return smbd_smb2_request_pending_queue(req, subreq);
141 }
142
143 static void smbd_smb2_request_lock_done(struct tevent_req *subreq)
144 {
145         struct smbd_smb2_request *smb2req = tevent_req_callback_data(subreq,
146                                         struct smbd_smb2_request);
147         DATA_BLOB outbody;
148         NTSTATUS status;
149         NTSTATUS error; /* transport error */
150
151         if (smb2req->cancelled) {
152                 const uint8_t *inhdr = (const uint8_t *)
153                         smb2req->in.vector[smb2req->current_idx].iov_base;
154                 uint64_t mid = BVAL(inhdr, SMB2_HDR_MESSAGE_ID);
155                 struct smbd_smb2_lock_state *state;
156
157                 DEBUG(10,("smbd_smb2_request_lock_done: cancelled mid %llu\n",
158                         (unsigned long long)mid ));
159
160                 state = tevent_req_data(smb2req->subreq,
161                                 struct smbd_smb2_lock_state);
162
163                 SMB_ASSERT(state);
164                 SMB_ASSERT(state->blr);
165
166                 remove_pending_lock(state, state->blr);
167
168                 error = smbd_smb2_request_error(smb2req, NT_STATUS_CANCELLED);
169                 if (!NT_STATUS_IS_OK(error)) {
170                         smbd_server_connection_terminate(smb2req->sconn,
171                                 nt_errstr(error));
172                         return;
173                 }
174                 return;
175         }
176
177         status = smbd_smb2_lock_recv(subreq);
178         TALLOC_FREE(subreq);
179         if (!NT_STATUS_IS_OK(status)) {
180                 error = smbd_smb2_request_error(smb2req, status);
181                 if (!NT_STATUS_IS_OK(error)) {
182                         smbd_server_connection_terminate(smb2req->sconn,
183                                                          nt_errstr(error));
184                         return;
185                 }
186                 return;
187         }
188
189         outbody = data_blob_talloc(smb2req->out.vector, NULL, 0x04);
190         if (outbody.data == NULL) {
191                 error = smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
192                 if (!NT_STATUS_IS_OK(error)) {
193                         smbd_server_connection_terminate(smb2req->sconn,
194                                                          nt_errstr(error));
195                         return;
196                 }
197                 return;
198         }
199
200         SSVAL(outbody.data, 0x00, 0x04);        /* struct size */
201         SSVAL(outbody.data, 0x02, 0);           /* reserved */
202
203         error = smbd_smb2_request_done(smb2req, outbody, NULL);
204         if (!NT_STATUS_IS_OK(error)) {
205                 smbd_server_connection_terminate(smb2req->sconn,
206                                                  nt_errstr(error));
207                 return;
208         }
209 }
210
211 static struct tevent_req *smbd_smb2_lock_send(TALLOC_CTX *mem_ctx,
212                                                  struct tevent_context *ev,
213                                                  struct smbd_smb2_request *smb2req,
214                                                  uint32_t in_smbpid,
215                                                  uint64_t in_file_id_volatile,
216                                                  uint16_t in_lock_count,
217                                                  struct smbd_smb2_lock_element *in_locks)
218 {
219         struct tevent_req *req;
220         struct smbd_smb2_lock_state *state;
221         struct smb_request *smb1req;
222         connection_struct *conn = smb2req->tcon->compat_conn;
223         files_struct *fsp;
224         int32_t timeout = -1;
225         bool isunlock = false;
226         uint16_t i;
227         struct smbd_lock_element *locks;
228         NTSTATUS status;
229         bool async = false;
230
231         req = tevent_req_create(mem_ctx, &state,
232                         struct smbd_smb2_lock_state);
233         if (req == NULL) {
234                 return NULL;
235         }
236         state->smb2req = smb2req;
237         smb2req->subreq = req; /* So we can find this when going async. */
238
239         smb1req = smbd_smb2_fake_smb_request(smb2req);
240         if (tevent_req_nomem(smb1req, req)) {
241                 return tevent_req_post(req, ev);
242         }
243         state->smb1req = smb1req;
244
245         DEBUG(10,("smbd_smb2_lock_send: file_id[0x%016llX]\n",
246                   (unsigned long long)in_file_id_volatile));
247
248         fsp = file_fsp(smb1req, (uint16_t)in_file_id_volatile);
249         if (fsp == NULL) {
250                 tevent_req_nterror(req, NT_STATUS_FILE_CLOSED);
251                 return tevent_req_post(req, ev);
252         }
253         if (conn != fsp->conn) {
254                 tevent_req_nterror(req, NT_STATUS_FILE_CLOSED);
255                 return tevent_req_post(req, ev);
256         }
257         if (smb2req->session->vuid != fsp->vuid) {
258                 tevent_req_nterror(req, NT_STATUS_FILE_CLOSED);
259                 return tevent_req_post(req, ev);
260         }
261
262         locks = talloc_array(state, struct smbd_lock_element, in_lock_count);
263         if (locks == NULL) {
264                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
265                 return tevent_req_post(req, ev);
266         }
267
268         switch (in_locks[0].flags) {
269         case SMB2_LOCK_FLAG_SHARED:
270         case SMB2_LOCK_FLAG_EXCLUSIVE:
271                 if (in_lock_count > 1) {
272                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
273                         return tevent_req_post(req, ev);
274                 }
275                 timeout = -1;
276                 break;
277
278         case SMB2_LOCK_FLAG_SHARED|SMB2_LOCK_FLAG_FAIL_IMMEDIATELY:
279         case SMB2_LOCK_FLAG_EXCLUSIVE|SMB2_LOCK_FLAG_FAIL_IMMEDIATELY:
280                 timeout = 0;
281                 break;
282
283         case SMB2_LOCK_FLAG_UNLOCK:
284                 /* only the first lock gives the UNLOCK bit - see
285                    MS-SMB2 3.3.5.14 */
286                 isunlock = true;
287                 timeout = 0;
288                 break;
289
290         default:
291                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
292                 return tevent_req_post(req, ev);
293         }
294
295         for (i=0; i<in_lock_count; i++) {
296                 bool invalid = false;
297
298                 switch (in_locks[i].flags) {
299                 case SMB2_LOCK_FLAG_SHARED:
300                 case SMB2_LOCK_FLAG_EXCLUSIVE:
301                         if (isunlock) {
302                                 invalid = true;
303                                 break;
304                         }
305                         if (i > 0) {
306                                 tevent_req_nterror(req,
307                                                    NT_STATUS_INVALID_PARAMETER);
308                                 return tevent_req_post(req, ev);
309                         }
310                         break;
311
312                 case SMB2_LOCK_FLAG_SHARED|SMB2_LOCK_FLAG_FAIL_IMMEDIATELY:
313                 case SMB2_LOCK_FLAG_EXCLUSIVE|SMB2_LOCK_FLAG_FAIL_IMMEDIATELY:
314                         if (isunlock) {
315                                 invalid = true;
316                         }
317                         break;
318
319                 case SMB2_LOCK_FLAG_UNLOCK:
320                         if (!isunlock) {
321                                 tevent_req_nterror(req,
322                                                    NT_STATUS_INVALID_PARAMETER);
323                                 return tevent_req_post(req, ev);
324                         }
325                         break;
326
327                 default:
328                         if (isunlock) {
329                                 /*
330                                  * is the first element was a UNLOCK
331                                  * we need to deferr the error response
332                                  * to the backend, because we need to process
333                                  * all unlock elements before
334                                  */
335                                 invalid = true;
336                                 break;
337                         }
338                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
339                         return tevent_req_post(req, ev);
340                 }
341
342                 locks[i].smblctx = in_file_id_volatile;
343                 locks[i].offset = in_locks[i].offset;
344                 locks[i].count  = in_locks[i].length;
345
346                 if (in_locks[i].flags & SMB2_LOCK_FLAG_EXCLUSIVE) {
347                         locks[i].brltype = WRITE_LOCK;
348                 } else if (in_locks[i].flags & SMB2_LOCK_FLAG_SHARED) {
349                         locks[i].brltype = READ_LOCK;
350                 } else if (invalid) {
351                         /*
352                          * this is an invalid UNLOCK element
353                          * and the backend needs to test for
354                          * brltype != UNLOCK_LOCK and return
355                          * NT_STATUS_INVALID_PARAMER
356                          */
357                         locks[i].brltype = READ_LOCK;
358                 } else {
359                         locks[i].brltype = UNLOCK_LOCK;
360                 }
361
362                 DEBUG(10,("smbd_smb2_lock_send: index %d offset=%llu, count=%llu, "
363                         "smblctx = %llu type %d\n",
364                         i,
365                         (unsigned long long)locks[i].offset,
366                         (unsigned long long)locks[i].count,
367                         (unsigned long long)locks[i].smblctx,
368                         (int)locks[i].brltype ));
369         }
370
371         state->locks = locks;
372         state->lock_count = in_lock_count;
373
374         if (isunlock) {
375                 status = smbd_do_locking(smb1req, fsp,
376                                          0,
377                                          timeout,
378                                          in_lock_count,
379                                          locks,
380                                          0,
381                                          NULL,
382                                          &async);
383         } else {
384                 status = smbd_do_locking(smb1req, fsp,
385                                          0,
386                                          timeout,
387                                          0,
388                                          NULL,
389                                          in_lock_count,
390                                          locks,
391                                          &async);
392         }
393         if (!NT_STATUS_IS_OK(status)) {
394                 if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
395                        status = NT_STATUS_LOCK_NOT_GRANTED;
396                 }
397                 tevent_req_nterror(req, status);
398                 return tevent_req_post(req, ev);
399         }
400
401         if (async) {
402                 return req;
403         }
404
405         tevent_req_done(req);
406         return tevent_req_post(req, ev);
407 }
408
409 static NTSTATUS smbd_smb2_lock_recv(struct tevent_req *req)
410 {
411         NTSTATUS status;
412
413         if (tevent_req_is_nterror(req, &status)) {
414                 tevent_req_received(req);
415                 return status;
416         }
417
418         tevent_req_received(req);
419         return NT_STATUS_OK;
420 }
421
422 /****************************************************************
423  Cancel an outstanding blocking lock request.
424 *****************************************************************/
425
426 static bool smbd_smb2_lock_cancel(struct tevent_req *req)
427 {
428         struct smbd_smb2_request *smb2req = NULL;
429         struct smbd_smb2_lock_state *state = tevent_req_data(req,
430                                 struct smbd_smb2_lock_state);
431         if (!state) {
432                 return false;
433         }
434
435         if (!state->smb2req) {
436                 return false;
437         }
438
439         smb2req = state->smb2req;
440         smb2req->cancelled = true;
441
442         tevent_req_done(req);
443         return true;
444 }
445
446 /****************************************************************
447  Got a message saying someone unlocked a file. Re-schedule all
448  blocking lock requests as we don't know if anything overlapped.
449 *****************************************************************/
450
451 static void received_unlock_msg(struct messaging_context *msg,
452                                 void *private_data,
453                                 uint32_t msg_type,
454                                 struct server_id server_id,
455                                 DATA_BLOB *data)
456 {
457         DEBUG(10,("received_unlock_msg (SMB2)\n"));
458         process_blocking_lock_queue_smb2(timeval_current());
459 }
460
461 /****************************************************************
462  Function to get the blr on a pending record.
463 *****************************************************************/
464
465 struct blocking_lock_record *get_pending_smb2req_blr(struct smbd_smb2_request *smb2req)
466 {
467         struct smbd_smb2_lock_state *state = NULL;
468         const uint8_t *inhdr;
469
470         if (!smb2req) {
471                 return NULL;
472         }
473         if (smb2req->subreq == NULL) {
474                 return NULL;
475         }
476         if (!tevent_req_is_in_progress(smb2req->subreq)) {
477                 return NULL;
478         }
479         inhdr = (const uint8_t *)smb2req->in.vector[smb2req->current_idx].iov_base;
480         if (SVAL(inhdr, SMB2_HDR_OPCODE) != SMB2_OP_LOCK) {
481                 return NULL;
482         }
483         state = tevent_req_data(smb2req->subreq,
484                         struct smbd_smb2_lock_state);
485         if (!state) {
486                 return NULL;
487         }
488         return state->blr;
489 }
490 /****************************************************************
491  Set up the next brl timeout.
492 *****************************************************************/
493
494 static bool recalc_smb2_brl_timeout(struct smbd_server_connection *sconn)
495 {
496         struct smbd_smb2_request *smb2req;
497         struct timeval next_timeout = timeval_zero();
498         int max_brl_timeout = lp_parm_int(-1, "brl", "recalctime", 5);
499
500         TALLOC_FREE(sconn->smb2.locks.brl_timeout);
501
502         for (smb2req = sconn->smb2.requests; smb2req; smb2req = smb2req->next) {
503                 struct blocking_lock_record *blr =
504                         get_pending_smb2req_blr(smb2req);
505                 if (!blr) {
506                         continue;
507                 }
508                 if (timeval_is_zero(&blr->expire_time)) {
509                         /*
510                          * If we're blocked on pid 0xFFFFFFFFFFFFFFFFLL this is
511                          * a POSIX lock, so calculate a timeout of
512                          * 10 seconds into the future.
513                          */
514                         if (blr->blocking_smblctx == 0xFFFFFFFFFFFFFFFFLL) {
515                                 struct timeval psx_to = timeval_current_ofs(10, 0);
516                                 next_timeout = timeval_brl_min(&next_timeout, &psx_to);
517                         }
518
519                         continue;
520                 }
521
522                 next_timeout = timeval_brl_min(&next_timeout, &blr->expire_time);
523         }
524
525         if (timeval_is_zero(&next_timeout)) {
526                 DEBUG(10, ("recalc_smb2_brl_timeout:Next "
527                         "timeout = Infinite.\n"));
528                 return true;
529         }
530
531         /*
532          * To account for unclean shutdowns by clients we need a
533          * maximum timeout that we use for checking pending locks. If
534          * we have any pending locks at all, then check if the pending
535          * lock can continue at least every brl:recalctime seconds
536          * (default 5 seconds).
537          *
538          * This saves us needing to do a message_send_all() in the
539          * SIGCHLD handler in the parent daemon. That
540          * message_send_all() caused O(n^2) work to be done when IP
541          * failovers happened in clustered Samba, which could make the
542          * entire system unusable for many minutes.
543          */
544
545         if (max_brl_timeout > 0) {
546                 struct timeval min_to = timeval_current_ofs(max_brl_timeout, 0);
547                 next_timeout = timeval_brl_min(&next_timeout, &min_to);
548         }
549
550         if (DEBUGLVL(10)) {
551                 struct timeval cur, from_now;
552
553                 cur = timeval_current();
554                 from_now = timeval_until(&cur, &next_timeout);
555                 DEBUG(10, ("recalc_smb2_brl_timeout: Next "
556                         "timeout = %d.%d seconds from now.\n",
557                         (int)from_now.tv_sec, (int)from_now.tv_usec));
558         }
559
560         sconn->smb2.locks.brl_timeout = event_add_timed(
561                                 smbd_event_context(),
562                                 NULL,
563                                 next_timeout,
564                                 brl_timeout_fn,
565                                 NULL);
566         if (!sconn->smb2.locks.brl_timeout) {
567                 return false;
568         }
569         return true;
570 }
571
572 /****************************************************************
573  Get an SMB2 lock reqeust to go async. lock_timeout should
574  always be -1 here.
575 *****************************************************************/
576
577 bool push_blocking_lock_request_smb2( struct byte_range_lock *br_lck,
578                                 struct smb_request *smb1req,
579                                 files_struct *fsp,
580                                 int lock_timeout,
581                                 int lock_num,
582                                 uint64_t smblctx,
583                                 enum brl_type lock_type,
584                                 enum brl_flavour lock_flav,
585                                 uint64_t offset,
586                                 uint64_t count,
587                                 uint64_t blocking_smblctx)
588 {
589         struct smbd_server_connection *sconn = smbd_server_conn;
590         struct smbd_smb2_request *smb2req = smb1req->smb2req;
591         struct tevent_req *req = NULL;
592         struct smbd_smb2_lock_state *state = NULL;
593         struct blocking_lock_record *blr = NULL;
594         NTSTATUS status = NT_STATUS_OK;
595
596         if (!smb2req) {
597                 return false;
598         }
599         req = smb2req->subreq;
600         if (!req) {
601                 return false;
602         }
603         if (!tevent_req_is_in_progress(smb2req->subreq)) {
604                 return false;
605         }
606         state = tevent_req_data(req, struct smbd_smb2_lock_state);
607         if (!state) {
608                 return false;
609         }
610
611         blr = talloc_zero(state, struct blocking_lock_record);
612         if (!blr) {
613                 return false;
614         }
615         blr->fsp = fsp;
616
617         if (lock_timeout == -1) {
618                 blr->expire_time.tv_sec = 0;
619                 blr->expire_time.tv_usec = 0; /* Never expire. */
620         } else {
621                 blr->expire_time = timeval_current_ofs(
622                         lock_timeout/1000,
623                         (lock_timeout % 1000) * 1000);
624         }
625
626         blr->lock_num = lock_num;
627         blr->smblctx = smblctx;
628         blr->blocking_smblctx = blocking_smblctx;
629         blr->lock_flav = lock_flav;
630         blr->lock_type = lock_type;
631         blr->offset = offset;
632         blr->count = count;
633
634         /* Specific brl_lock() implementations can fill this in. */
635         blr->blr_private = NULL;
636
637         /* Add a pending lock record for this. */
638         status = brl_lock(smbd_messaging_context(),
639                         br_lck,
640                         smblctx,
641                         procid_self(),
642                         offset,
643                         count,
644                         lock_type == READ_LOCK ? PENDING_READ_LOCK : PENDING_WRITE_LOCK,
645                         blr->lock_flav,
646                         true,
647                         NULL,
648                         blr);
649
650         if (!NT_STATUS_IS_OK(status)) {
651                 DEBUG(0,("push_blocking_lock_request_smb2: "
652                         "failed to add PENDING_LOCK record.\n"));
653                 TALLOC_FREE(blr);
654                 return false;
655         }
656         state->blr = blr;
657
658         DEBUG(10,("push_blocking_lock_request_smb2: file %s timeout %d\n",
659                 fsp_str_dbg(fsp),
660                 lock_timeout ));
661
662         recalc_smb2_brl_timeout(sconn);
663
664         /* Ensure we'll receive messages when this is unlocked. */
665         if (!sconn->smb2.locks.blocking_lock_unlock_state) {
666                 messaging_register(smbd_messaging_context(), NULL,
667                                 MSG_SMB_UNLOCK, received_unlock_msg);
668                 sconn->smb2.locks.blocking_lock_unlock_state = true;
669         }
670
671         /* allow this request to be canceled */
672         tevent_req_set_cancel_fn(req, smbd_smb2_lock_cancel);
673
674         return true;
675 }
676
677 /****************************************************************
678  Remove a pending lock record under lock.
679 *****************************************************************/
680
681 static void remove_pending_lock(struct smbd_smb2_lock_state *state,
682                         struct blocking_lock_record *blr)
683 {
684         int i;
685         struct byte_range_lock *br_lck = brl_get_locks(
686                                 state, blr->fsp);
687
688         DEBUG(10, ("remove_pending_lock: BLR = %p\n", blr));
689
690         if (br_lck) {
691                 brl_lock_cancel(br_lck,
692                                 blr->smblctx,
693                                 procid_self(),
694                                 blr->offset,
695                                 blr->count,
696                                 blr->lock_flav,
697                                 blr);
698                 TALLOC_FREE(br_lck);
699         }
700
701         /* Remove the locks we already got. */
702
703         for(i = blr->lock_num - 1; i >= 0; i--) {
704                 struct smbd_lock_element *e = &state->locks[i];
705
706                 do_unlock(smbd_messaging_context(),
707                         blr->fsp,
708                         e->smblctx,
709                         e->count,
710                         e->offset,
711                         WINDOWS_LOCK);
712         }
713 }
714
715 /****************************************************************
716  Re-proccess a blocking lock request.
717  This is equivalent to process_lockingX() inside smbd/blocking.c
718 *****************************************************************/
719
720 static void reprocess_blocked_smb2_lock(struct smbd_smb2_request *smb2req,
721                                 struct timeval tv_curr)
722 {
723         NTSTATUS status;
724         struct blocking_lock_record *blr = NULL;
725         struct smbd_smb2_lock_state *state = NULL;
726         files_struct *fsp = NULL;
727
728         if (!smb2req->subreq) {
729                 return;
730         }
731         state = tevent_req_data(smb2req->subreq, struct smbd_smb2_lock_state);
732         if (!state) {
733                 return;
734         }
735
736         blr = state->blr;
737         fsp = blr->fsp;
738
739         /* Try and finish off getting all the outstanding locks. */
740
741         for (; blr->lock_num < state->lock_count; blr->lock_num++) {
742                 struct byte_range_lock *br_lck = NULL;
743                 struct smbd_lock_element *e = &state->locks[blr->lock_num];
744
745                 br_lck = do_lock(smbd_messaging_context(),
746                                 fsp,
747                                 e->smblctx,
748                                 e->count,
749                                 e->offset,
750                                 e->brltype,
751                                 WINDOWS_LOCK,
752                                 true,
753                                 &status,
754                                 &blr->blocking_smblctx,
755                                 blr);
756
757                 TALLOC_FREE(br_lck);
758
759                 if (NT_STATUS_IS_ERR(status)) {
760                         break;
761                 }
762         }
763
764         if(blr->lock_num == state->lock_count) {
765                 /*
766                  * Success - we got all the locks.
767                  */
768
769                 DEBUG(3,("reprocess_blocked_smb2_lock SUCCESS file = %s, "
770                         "fnum=%d num_locks=%d\n",
771                         fsp_str_dbg(fsp),
772                         fsp->fnum,
773                         (int)state->lock_count));
774
775                 tevent_req_done(smb2req->subreq);
776                 return;
777         }
778
779         if (!NT_STATUS_EQUAL(status,NT_STATUS_LOCK_NOT_GRANTED) &&
780                         !NT_STATUS_EQUAL(status,NT_STATUS_FILE_LOCK_CONFLICT)) {
781                 /*
782                  * We have other than a "can't get lock"
783                  * error. Return an error.
784                  */
785                 remove_pending_lock(state, blr);
786                 tevent_req_nterror(smb2req->subreq, status);
787                 return;
788         }
789
790         /*
791          * We couldn't get the locks for this record on the list.
792          * If the time has expired, return a lock error.
793          */
794
795         if (!timeval_is_zero(&blr->expire_time) &&
796                         timeval_compare(&blr->expire_time, &tv_curr) <= 0) {
797                 remove_pending_lock(state, blr);
798                 tevent_req_nterror(smb2req->subreq, NT_STATUS_LOCK_NOT_GRANTED);
799                 return;
800         }
801
802         /*
803          * Still can't get all the locks - keep waiting.
804          */
805
806         DEBUG(10,("reprocess_blocked_smb2_lock: only got %d locks of %d needed "
807                 "for file %s, fnum = %d. Still waiting....\n",
808                 (int)blr->lock_num,
809                 (int)state->lock_count,
810                 fsp_str_dbg(fsp),
811                 (int)fsp->fnum));
812
813         return;
814
815 }
816
817 /****************************************************************
818  Attempt to proccess all outstanding blocking locks pending on
819  the request queue.
820 *****************************************************************/
821
822 void process_blocking_lock_queue_smb2(struct timeval tv_curr)
823 {
824         struct smbd_server_connection *sconn = smbd_server_conn;
825         struct smbd_smb2_request *smb2req, *nextreq;
826
827         for (smb2req = sconn->smb2.requests; smb2req; smb2req = nextreq) {
828                 const uint8_t *inhdr;
829
830                 nextreq = smb2req->next;
831
832                 if (smb2req->subreq == NULL) {
833                         /* This message has been processed. */
834                         continue;
835                 }
836                 if (!tevent_req_is_in_progress(smb2req->subreq)) {
837                         /* This message has been processed. */
838                         continue;
839                 }
840
841                 inhdr = (const uint8_t *)smb2req->in.vector[smb2req->current_idx].iov_base;
842                 if (SVAL(inhdr, SMB2_HDR_OPCODE) == SMB2_OP_LOCK) {
843                         reprocess_blocked_smb2_lock(smb2req, tv_curr);
844                 }
845         }
846
847         recalc_smb2_brl_timeout(sconn);
848 }
849
850 /****************************************************************************
851  Remove any locks on this fd. Called from file_close().
852 ****************************************************************************/
853
854 void cancel_pending_lock_requests_by_fid_smb2(files_struct *fsp,
855                         struct byte_range_lock *br_lck,
856                         enum file_close_type close_type)
857 {
858         struct smbd_server_connection *sconn = smbd_server_conn;
859         struct smbd_smb2_request *smb2req, *nextreq;
860
861         for (smb2req = sconn->smb2.requests; smb2req; smb2req = nextreq) {
862                 struct smbd_smb2_lock_state *state = NULL;
863                 files_struct *fsp_curr = NULL;
864                 int i = smb2req->current_idx;
865                 uint64_t in_file_id_volatile;
866                 struct blocking_lock_record *blr = NULL;
867                 const uint8_t *inhdr;
868                 const uint8_t *inbody;
869
870                 nextreq = smb2req->next;
871
872                 if (smb2req->subreq == NULL) {
873                         /* This message has been processed. */
874                         continue;
875                 }
876                 if (!tevent_req_is_in_progress(smb2req->subreq)) {
877                         /* This message has been processed. */
878                         continue;
879                 }
880
881                 inhdr = (const uint8_t *)smb2req->in.vector[i].iov_base;
882                 if (SVAL(inhdr, SMB2_HDR_OPCODE) != SMB2_OP_LOCK) {
883                         /* Not a lock call. */
884                         continue;
885                 }
886
887                 inbody = (const uint8_t *)smb2req->in.vector[i+1].iov_base;
888                 in_file_id_volatile = BVAL(inbody, 0x10);
889
890                 state = tevent_req_data(smb2req->subreq,
891                                 struct smbd_smb2_lock_state);
892                 if (!state) {
893                         /* Strange - is this even possible ? */
894                         continue;
895                 }
896
897                 fsp_curr = file_fsp(state->smb1req, (uint16_t)in_file_id_volatile);
898                 if (fsp_curr == NULL) {
899                         /* Strange - is this even possible ? */
900                         continue;
901                 }
902
903                 if (fsp_curr != fsp) {
904                         /* It's not our fid */
905                         continue;
906                 }
907
908                 blr = state->blr;
909
910                 /* Remove the entries from the lock db. */
911                 brl_lock_cancel(br_lck,
912                                 blr->smblctx,
913                                 procid_self(),
914                                 blr->offset,
915                                 blr->count,
916                                 blr->lock_flav,
917                                 blr);
918
919                 /* Finally end the request. */
920                 if (close_type == SHUTDOWN_CLOSE) {
921                         tevent_req_done(smb2req->subreq);
922                 } else {
923                         tevent_req_nterror(smb2req->subreq,
924                                 NT_STATUS_RANGE_NOT_LOCKED);
925                 }
926         }
927 }