s3: Move smb_splice_chain to smbd/process.c, its only user
[kai/samba.git] / source3 / libsmb / async_smb.c
1 /*
2    Unix SMB/CIFS implementation.
3    Infrastructure for async SMB client requests
4    Copyright (C) Volker Lendecke 2008
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21
22 /*
23  * Read an smb packet asynchronously, discard keepalives
24  */
25
26 struct read_smb_state {
27         struct tevent_context *ev;
28         int fd;
29         uint8_t *buf;
30 };
31
32 static ssize_t read_smb_more(uint8_t *buf, size_t buflen, void *private_data);
33 static void read_smb_done(struct tevent_req *subreq);
34
35 static struct tevent_req *read_smb_send(TALLOC_CTX *mem_ctx,
36                                         struct tevent_context *ev,
37                                         int fd)
38 {
39         struct tevent_req *result, *subreq;
40         struct read_smb_state *state;
41
42         result = tevent_req_create(mem_ctx, &state, struct read_smb_state);
43         if (result == NULL) {
44                 return NULL;
45         }
46         state->ev = ev;
47         state->fd = fd;
48
49         subreq = read_packet_send(state, ev, fd, 4, read_smb_more, NULL);
50         if (subreq == NULL) {
51                 goto fail;
52         }
53         tevent_req_set_callback(subreq, read_smb_done, result);
54         return result;
55  fail:
56         TALLOC_FREE(result);
57         return NULL;
58 }
59
60 static ssize_t read_smb_more(uint8_t *buf, size_t buflen, void *private_data)
61 {
62         if (buflen > 4) {
63                 return 0;       /* We've been here, we're done */
64         }
65         return smb_len_large(buf);
66 }
67
68 static void read_smb_done(struct tevent_req *subreq)
69 {
70         struct tevent_req *req = tevent_req_callback_data(
71                 subreq, struct tevent_req);
72         struct read_smb_state *state = tevent_req_data(
73                 req, struct read_smb_state);
74         ssize_t len;
75         int err;
76
77         len = read_packet_recv(subreq, state, &state->buf, &err);
78         TALLOC_FREE(subreq);
79         if (len == -1) {
80                 tevent_req_error(req, err);
81                 return;
82         }
83
84         if (CVAL(state->buf, 0) == SMBkeepalive) {
85                 subreq = read_packet_send(state, state->ev, state->fd, 4,
86                                           read_smb_more, NULL);
87                 if (tevent_req_nomem(subreq, req)) {
88                         return;
89                 }
90                 tevent_req_set_callback(subreq, read_smb_done, req);
91                 return;
92         }
93         tevent_req_done(req);
94 }
95
96 static ssize_t read_smb_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
97                              uint8_t **pbuf, int *perrno)
98 {
99         struct read_smb_state *state = tevent_req_data(
100                 req, struct read_smb_state);
101
102         if (tevent_req_is_unix_error(req, perrno)) {
103                 return -1;
104         }
105         *pbuf = talloc_move(mem_ctx, &state->buf);
106         return talloc_get_size(*pbuf);
107 }
108
109 /**
110  * Fetch an error out of a NBT packet
111  * @param[in] buf       The SMB packet
112  * @retval              The error, converted to NTSTATUS
113  */
114
115 NTSTATUS cli_pull_error(char *buf)
116 {
117         uint32_t flags2 = SVAL(buf, smb_flg2);
118
119         if (flags2 & FLAGS2_32_BIT_ERROR_CODES) {
120                 return NT_STATUS(IVAL(buf, smb_rcls));
121         }
122
123         /* if the client uses dos errors, but there is no error,
124            we should return no error here, otherwise it looks
125            like an unknown bad NT_STATUS. jmcd */
126         if (CVAL(buf, smb_rcls) == 0)
127                 return NT_STATUS_OK;
128
129         return NT_STATUS_DOS(CVAL(buf, smb_rcls), SVAL(buf,smb_err));
130 }
131
132 /**
133  * Compatibility helper for the sync APIs: Fake NTSTATUS in cli->inbuf
134  * @param[in] cli       The client connection that just received an error
135  * @param[in] status    The error to set on "cli"
136  */
137
138 void cli_set_error(struct cli_state *cli, NTSTATUS status)
139 {
140         uint32_t flags2 = SVAL(cli->inbuf, smb_flg2);
141
142         if (NT_STATUS_IS_DOS(status)) {
143                 SSVAL(cli->inbuf, smb_flg2,
144                       flags2 & ~FLAGS2_32_BIT_ERROR_CODES);
145                 SCVAL(cli->inbuf, smb_rcls, NT_STATUS_DOS_CLASS(status));
146                 SSVAL(cli->inbuf, smb_err, NT_STATUS_DOS_CODE(status));
147                 return;
148         }
149
150         SSVAL(cli->inbuf, smb_flg2, flags2 | FLAGS2_32_BIT_ERROR_CODES);
151         SIVAL(cli->inbuf, smb_rcls, NT_STATUS_V(status));
152         return;
153 }
154
155 /**
156  * Figure out if there is an andx command behind the current one
157  * @param[in] buf       The smb buffer to look at
158  * @param[in] ofs       The offset to the wct field that is followed by the cmd
159  * @retval Is there a command following?
160  */
161
162 static bool have_andx_command(const char *buf, uint16_t ofs)
163 {
164         uint8_t wct;
165         size_t buflen = talloc_get_size(buf);
166
167         if ((ofs == buflen-1) || (ofs == buflen)) {
168                 return false;
169         }
170
171         wct = CVAL(buf, ofs);
172         if (wct < 2) {
173                 /*
174                  * Not enough space for the command and a following pointer
175                  */
176                 return false;
177         }
178         return (CVAL(buf, ofs+1) != 0xff);
179 }
180
181 #define MAX_SMB_IOV 5
182
183 struct cli_smb_state {
184         struct tevent_context *ev;
185         struct cli_state *cli;
186         uint8_t header[smb_wct+1]; /* Space for the header including the wct */
187
188         /*
189          * For normal requests, cli_smb_req_send chooses a mid. Secondary
190          * trans requests need to use the mid of the primary request, so we
191          * need a place to store it. Assume it's set if != 0.
192          */
193         uint16_t mid;
194
195         uint16_t *vwv;
196         uint8_t bytecount_buf[2];
197
198         struct iovec iov[MAX_SMB_IOV+3];
199         int iov_count;
200
201         uint8_t *inbuf;
202         uint32_t seqnum;
203         int chain_num;
204         struct tevent_req **chained_requests;
205 };
206
207 static uint16_t cli_alloc_mid(struct cli_state *cli)
208 {
209         int num_pending = talloc_array_length(cli->pending);
210         uint16_t result;
211
212         while (true) {
213                 int i;
214
215                 result = cli->mid++;
216                 if ((result == 0) || (result == 0xffff)) {
217                         continue;
218                 }
219
220                 for (i=0; i<num_pending; i++) {
221                         if (result == cli_smb_req_mid(cli->pending[i])) {
222                                 break;
223                         }
224                 }
225
226                 if (i == num_pending) {
227                         return result;
228                 }
229         }
230 }
231
232 void cli_smb_req_unset_pending(struct tevent_req *req)
233 {
234         struct cli_smb_state *state = tevent_req_data(
235                 req, struct cli_smb_state);
236         struct cli_state *cli = state->cli;
237         int num_pending = talloc_array_length(cli->pending);
238         int i;
239
240         if (num_pending == 1) {
241                 /*
242                  * The pending read_smb tevent_req is a child of
243                  * cli->pending. So if nothing is pending anymore, we need to
244                  * delete the socket read fde.
245                  */
246                 TALLOC_FREE(cli->pending);
247                 return;
248         }
249
250         for (i=0; i<num_pending; i++) {
251                 if (req == cli->pending[i]) {
252                         break;
253                 }
254         }
255         if (i == num_pending) {
256                 /*
257                  * Something's seriously broken. Just returning here is the
258                  * right thing nevertheless, the point of this routine is to
259                  * remove ourselves from cli->pending.
260                  */
261                 return;
262         }
263
264         /*
265          * Remove ourselves from the cli->pending array
266          */
267         if (num_pending > 1) {
268                 cli->pending[i] = cli->pending[num_pending-1];
269         }
270
271         /*
272          * No NULL check here, we're shrinking by sizeof(void *), and
273          * talloc_realloc just adjusts the size for this.
274          */
275         cli->pending = talloc_realloc(NULL, cli->pending, struct tevent_req *,
276                                       num_pending - 1);
277         return;
278 }
279
280 static int cli_smb_req_destructor(struct tevent_req *req)
281 {
282         cli_smb_req_unset_pending(req);
283         return 0;
284 }
285
286 static void cli_smb_received(struct tevent_req *subreq);
287
288 bool cli_smb_req_set_pending(struct tevent_req *req)
289 {
290         struct cli_smb_state *state = tevent_req_data(
291                 req, struct cli_smb_state);
292         struct cli_state *cli;
293         struct tevent_req **pending;
294         int num_pending;
295         struct tevent_req *subreq;
296
297         cli = state->cli;
298         num_pending = talloc_array_length(cli->pending);
299
300         pending = talloc_realloc(cli, cli->pending, struct tevent_req *,
301                                  num_pending+1);
302         if (pending == NULL) {
303                 return false;
304         }
305         pending[num_pending] = req;
306         cli->pending = pending;
307         talloc_set_destructor(req, cli_smb_req_destructor);
308
309         if (num_pending > 0) {
310                 return true;
311         }
312
313         /*
314          * We're the first ones, add the read_smb request that waits for the
315          * answer from the server
316          */
317         subreq = read_smb_send(cli->pending, state->ev, cli->fd);
318         if (subreq == NULL) {
319                 cli_smb_req_unset_pending(req);
320                 return false;
321         }
322         tevent_req_set_callback(subreq, cli_smb_received, cli);
323         return true;
324 }
325
326 /*
327  * Fetch a smb request's mid. Only valid after the request has been sent by
328  * cli_smb_req_send().
329  */
330 uint16_t cli_smb_req_mid(struct tevent_req *req)
331 {
332         struct cli_smb_state *state = tevent_req_data(
333                 req, struct cli_smb_state);
334         return SVAL(state->header, smb_mid);
335 }
336
337 void cli_smb_req_set_mid(struct tevent_req *req, uint16_t mid)
338 {
339         struct cli_smb_state *state = tevent_req_data(
340                 req, struct cli_smb_state);
341         state->mid = mid;
342 }
343
344 static size_t iov_len(const struct iovec *iov, int count)
345 {
346         size_t result = 0;
347         int i;
348         for (i=0; i<count; i++) {
349                 result += iov[i].iov_len;
350         }
351         return result;
352 }
353
354 static uint8_t *iov_concat(TALLOC_CTX *mem_ctx, const struct iovec *iov,
355                            int count)
356 {
357         size_t len = iov_len(iov, count);
358         size_t copied;
359         uint8_t *buf;
360         int i;
361
362         buf = talloc_array(mem_ctx, uint8_t, len);
363         if (buf == NULL) {
364                 return NULL;
365         }
366         copied = 0;
367         for (i=0; i<count; i++) {
368                 memcpy(buf+copied, iov[i].iov_base, iov[i].iov_len);
369                 copied += iov[i].iov_len;
370         }
371         return buf;
372 }
373
374 struct tevent_req *cli_smb_req_create(TALLOC_CTX *mem_ctx,
375                                       struct event_context *ev,
376                                       struct cli_state *cli,
377                                       uint8_t smb_command,
378                                       uint8_t additional_flags,
379                                       uint8_t wct, uint16_t *vwv,
380                                       int iov_count,
381                                       struct iovec *bytes_iov)
382 {
383         struct tevent_req *result;
384         struct cli_smb_state *state;
385
386         if (iov_count > MAX_SMB_IOV) {
387                 /*
388                  * Should not happen :-)
389                  */
390                 return NULL;
391         }
392
393         result = tevent_req_create(mem_ctx, &state, struct cli_smb_state);
394         if (result == NULL) {
395                 return NULL;
396         }
397         state->ev = ev;
398         state->cli = cli;
399         state->mid = 0;         /* Set to auto-choose in cli_smb_req_send */
400         state->chain_num = 0;
401         state->chained_requests = NULL;
402
403         cli_setup_packet_buf(cli, (char *)state->header);
404         SCVAL(state->header, smb_com, smb_command);
405         SSVAL(state->header, smb_tid, cli->cnum);
406         SCVAL(state->header, smb_wct, wct);
407
408         state->vwv = vwv;
409
410         SSVAL(state->bytecount_buf, 0, iov_len(bytes_iov, iov_count));
411
412         state->iov[0].iov_base = (void *)state->header;
413         state->iov[0].iov_len  = sizeof(state->header);
414         state->iov[1].iov_base = (void *)state->vwv;
415         state->iov[1].iov_len  = wct * sizeof(uint16_t);
416         state->iov[2].iov_base = (void *)state->bytecount_buf;
417         state->iov[2].iov_len  = sizeof(uint16_t);
418
419         if (iov_count != 0) {
420                 memcpy(&state->iov[3], bytes_iov,
421                        iov_count * sizeof(*bytes_iov));
422         }
423         state->iov_count = iov_count + 3;
424
425         return result;
426 }
427
428 static NTSTATUS cli_signv(struct cli_state *cli, struct iovec *iov, int count,
429                           uint32_t *seqnum)
430 {
431         uint8_t *buf;
432
433         /*
434          * Obvious optimization: Make cli_calculate_sign_mac work with struct
435          * iovec directly. MD5Update would do that just fine.
436          */
437
438         if ((count <= 0) || (iov[0].iov_len < smb_wct)) {
439                 return NT_STATUS_INVALID_PARAMETER;
440         }
441
442         buf = iov_concat(talloc_tos(), iov, count);
443         if (buf == NULL) {
444                 return NT_STATUS_NO_MEMORY;
445         }
446
447         cli_calculate_sign_mac(cli, (char *)buf, seqnum);
448         memcpy(iov[0].iov_base, buf, iov[0].iov_len);
449
450         TALLOC_FREE(buf);
451         return NT_STATUS_OK;
452 }
453
454 static void cli_smb_sent(struct tevent_req *subreq);
455
456 static NTSTATUS cli_smb_req_iov_send(struct tevent_req *req,
457                                      struct cli_smb_state *state,
458                                      struct iovec *iov, int iov_count)
459 {
460         struct tevent_req *subreq;
461         NTSTATUS status;
462
463         if (state->cli->fd == -1) {
464                 return NT_STATUS_CONNECTION_INVALID;
465         }
466
467         if (iov[0].iov_len < smb_wct) {
468                 return NT_STATUS_INVALID_PARAMETER;
469         }
470
471         if (state->mid != 0) {
472                 SSVAL(iov[0].iov_base, smb_mid, state->mid);
473         } else {
474                 SSVAL(iov[0].iov_base, smb_mid, cli_alloc_mid(state->cli));
475         }
476
477         smb_setlen((char *)iov[0].iov_base, iov_len(iov, iov_count) - 4);
478
479         status = cli_signv(state->cli, iov, iov_count, &state->seqnum);
480
481         if (!NT_STATUS_IS_OK(status)) {
482                 return status;
483         }
484
485         if (cli_encryption_on(state->cli)) {
486                 char *buf, *enc_buf;
487
488                 buf = (char *)iov_concat(talloc_tos(), iov, iov_count);
489                 if (buf == NULL) {
490                         return NT_STATUS_NO_MEMORY;
491                 }
492                 status = cli_encrypt_message(state->cli, (char *)buf,
493                                              &enc_buf);
494                 TALLOC_FREE(buf);
495                 if (!NT_STATUS_IS_OK(status)) {
496                         DEBUG(0, ("Error in encrypting client message: %s\n",
497                                   nt_errstr(status)));
498                         return status;
499                 }
500                 buf = (char *)talloc_memdup(state, enc_buf,
501                                             smb_len(enc_buf)+4);
502                 SAFE_FREE(enc_buf);
503                 if (buf == NULL) {
504                         return NT_STATUS_NO_MEMORY;
505                 }
506                 iov[0].iov_base = (void *)buf;
507                 iov[0].iov_len = talloc_get_size(buf);
508                 subreq = writev_send(state, state->ev, state->cli->outgoing,
509                                      state->cli->fd, false, iov, 1);
510         } else {
511                 subreq = writev_send(state, state->ev, state->cli->outgoing,
512                                      state->cli->fd, false, iov, iov_count);
513         }
514         if (subreq == NULL) {
515                 return NT_STATUS_NO_MEMORY;
516         }
517         tevent_req_set_callback(subreq, cli_smb_sent, req);
518         return NT_STATUS_OK;
519 }
520
521 NTSTATUS cli_smb_req_send(struct tevent_req *req)
522 {
523         struct cli_smb_state *state = tevent_req_data(
524                 req, struct cli_smb_state);
525
526         return cli_smb_req_iov_send(req, state, state->iov, state->iov_count);
527 }
528
529 struct tevent_req *cli_smb_send(TALLOC_CTX *mem_ctx,
530                                 struct event_context *ev,
531                                 struct cli_state *cli,
532                                 uint8_t smb_command,
533                                 uint8_t additional_flags,
534                                 uint8_t wct, uint16_t *vwv,
535                                 uint32_t num_bytes,
536                                 const uint8_t *bytes)
537 {
538         struct tevent_req *req;
539         struct iovec iov;
540         NTSTATUS status;
541
542         iov.iov_base = CONST_DISCARD(void *, bytes);
543         iov.iov_len = num_bytes;
544
545         req = cli_smb_req_create(mem_ctx, ev, cli, smb_command,
546                                  additional_flags, wct, vwv, 1, &iov);
547         if (req == NULL) {
548                 return NULL;
549         }
550
551         status = cli_smb_req_send(req);
552         if (!NT_STATUS_IS_OK(status)) {
553                 tevent_req_nterror(req, status);
554                 return tevent_req_post(req, ev);
555         }
556         return req;
557 }
558
559 static void cli_smb_sent(struct tevent_req *subreq)
560 {
561         struct tevent_req *req = tevent_req_callback_data(
562                 subreq, struct tevent_req);
563         struct cli_smb_state *state = tevent_req_data(
564                 req, struct cli_smb_state);
565         ssize_t nwritten;
566         int err;
567
568         nwritten = writev_recv(subreq, &err);
569         TALLOC_FREE(subreq);
570         if (nwritten == -1) {
571                 if (state->cli->fd != -1) {
572                         close(state->cli->fd);
573                         state->cli->fd = -1;
574                 }
575                 tevent_req_nterror(req, map_nt_error_from_unix(err));
576                 return;
577         }
578
579         switch (CVAL(state->header, smb_com)) {
580         case SMBtranss:
581         case SMBtranss2:
582         case SMBnttranss:
583         case SMBntcancel:
584                 state->inbuf = NULL;
585                 tevent_req_done(req);
586                 return;
587         case SMBlockingX:
588                 if ((CVAL(state->header, smb_wct) == 8) &&
589                     (CVAL(state->vwv+3, 0) == LOCKING_ANDX_OPLOCK_RELEASE)) {
590                         state->inbuf = NULL;
591                         tevent_req_done(req);
592                         return;
593                 }
594         }
595
596         if (!cli_smb_req_set_pending(req)) {
597                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
598                 return;
599         }
600 }
601
602 static void cli_smb_received(struct tevent_req *subreq)
603 {
604         struct cli_state *cli = tevent_req_callback_data(
605                 subreq, struct cli_state);
606         struct tevent_req *req;
607         struct cli_smb_state *state;
608         struct tevent_context *ev;
609         NTSTATUS status;
610         uint8_t *inbuf;
611         ssize_t received;
612         int num_pending;
613         int i, err;
614         uint16_t mid;
615         bool oplock_break;
616
617         received = read_smb_recv(subreq, talloc_tos(), &inbuf, &err);
618         TALLOC_FREE(subreq);
619         if (received == -1) {
620                 if (cli->fd != -1) {
621                         close(cli->fd);
622                         cli->fd = -1;
623                 }
624                 status = map_nt_error_from_unix(err);
625                 goto fail;
626         }
627
628         if ((IVAL(inbuf, 4) != 0x424d53ff) /* 0xFF"SMB" */
629             && (SVAL(inbuf, 4) != 0x45ff)) /* 0xFF"E" */ {
630                 DEBUG(10, ("Got non-SMB PDU\n"));
631                 status = NT_STATUS_INVALID_NETWORK_RESPONSE;
632                 goto fail;
633         }
634
635         if (cli_encryption_on(cli) && (CVAL(inbuf, 0) == 0)) {
636                 uint16_t enc_ctx_num;
637
638                 status = get_enc_ctx_num(inbuf, &enc_ctx_num);
639                 if (!NT_STATUS_IS_OK(status)) {
640                         DEBUG(10, ("get_enc_ctx_num returned %s\n",
641                                    nt_errstr(status)));
642                         goto fail;
643                 }
644
645                 if (enc_ctx_num != cli->trans_enc_state->enc_ctx_num) {
646                         DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
647                                    enc_ctx_num,
648                                    cli->trans_enc_state->enc_ctx_num));
649                         status = NT_STATUS_INVALID_HANDLE;
650                         goto fail;
651                 }
652
653                 status = common_decrypt_buffer(cli->trans_enc_state,
654                                                (char *)inbuf);
655                 if (!NT_STATUS_IS_OK(status)) {
656                         DEBUG(10, ("common_decrypt_buffer returned %s\n",
657                                    nt_errstr(status)));
658                         goto fail;
659                 }
660         }
661
662         mid = SVAL(inbuf, smb_mid);
663         num_pending = talloc_array_length(cli->pending);
664
665         for (i=0; i<num_pending; i++) {
666                 if (mid == cli_smb_req_mid(cli->pending[i])) {
667                         break;
668                 }
669         }
670         if (i == num_pending) {
671                 /* Dump unexpected reply */
672                 TALLOC_FREE(inbuf);
673                 goto done;
674         }
675
676         oplock_break = false;
677
678         if (mid == 0xffff) {
679                 /*
680                  * Paranoia checks that this is really an oplock break request.
681                  */
682                 oplock_break = (smb_len(inbuf) == 51); /* hdr + 8 words */
683                 oplock_break &= ((CVAL(inbuf, smb_flg) & FLAG_REPLY) == 0);
684                 oplock_break &= (CVAL(inbuf, smb_com) == SMBlockingX);
685                 oplock_break &= (SVAL(inbuf, smb_vwv6) == 0);
686                 oplock_break &= (SVAL(inbuf, smb_vwv7) == 0);
687
688                 if (!oplock_break) {
689                         /* Dump unexpected reply */
690                         TALLOC_FREE(inbuf);
691                         goto done;
692                 }
693         }
694
695         req = cli->pending[i];
696         state = tevent_req_data(req, struct cli_smb_state);
697         ev = state->ev;
698
699         if (!oplock_break /* oplock breaks are not signed */
700             && !cli_check_sign_mac(cli, (char *)inbuf, state->seqnum+1)) {
701                 DEBUG(10, ("cli_check_sign_mac failed\n"));
702                 TALLOC_FREE(inbuf);
703                 status = NT_STATUS_ACCESS_DENIED;
704                 goto fail;
705         }
706
707         if (state->chained_requests == NULL) {
708                 state->inbuf = talloc_move(state, &inbuf);
709                 talloc_set_destructor(req, NULL);
710                 cli_smb_req_destructor(req);
711                 tevent_req_done(req);
712         } else {
713                 struct tevent_req **chain = talloc_move(
714                         talloc_tos(), &state->chained_requests);
715                 int num_chained = talloc_array_length(chain);
716
717                 for (i=0; i<num_chained; i++) {
718                         state = tevent_req_data(chain[i], struct
719                                                 cli_smb_state);
720                         state->inbuf = inbuf;
721                         state->chain_num = i;
722                         tevent_req_done(chain[i]);
723                 }
724                 TALLOC_FREE(inbuf);
725                 TALLOC_FREE(chain);
726         }
727  done:
728         if (talloc_array_length(cli->pending) > 0) {
729                 /*
730                  * Set up another read request for the other pending cli_smb
731                  * requests
732                  */
733                 state = tevent_req_data(cli->pending[0], struct cli_smb_state);
734                 subreq = read_smb_send(cli->pending, state->ev, cli->fd);
735                 if (subreq == NULL) {
736                         status = NT_STATUS_NO_MEMORY;
737                         goto fail;
738                 }
739                 tevent_req_set_callback(subreq, cli_smb_received, cli);
740         }
741         return;
742  fail:
743         /*
744          * Cancel all pending requests. We don't do a for-loop walking
745          * cli->pending because that array changes in
746          * cli_smb_req_destructor().
747          */
748         while (talloc_array_length(cli->pending) > 0) {
749                 req = cli->pending[0];
750                 talloc_set_destructor(req, NULL);
751                 cli_smb_req_destructor(req);
752                 tevent_req_nterror(req, status);
753         }
754 }
755
756 NTSTATUS cli_smb_recv(struct tevent_req *req, uint8_t min_wct,
757                       uint8_t *pwct, uint16_t **pvwv,
758                       uint32_t *pnum_bytes, uint8_t **pbytes)
759 {
760         struct cli_smb_state *state = tevent_req_data(
761                 req, struct cli_smb_state);
762         NTSTATUS status = NT_STATUS_OK;
763         uint8_t cmd, wct;
764         uint16_t num_bytes;
765         size_t wct_ofs, bytes_offset;
766         int i;
767
768         if (tevent_req_is_nterror(req, &status)) {
769                 return status;
770         }
771
772         if (state->inbuf == NULL) {
773                 /* This was a request without a reply */
774                 return NT_STATUS_OK;
775         }
776
777         wct_ofs = smb_wct;
778         cmd = CVAL(state->inbuf, smb_com);
779
780         for (i=0; i<state->chain_num; i++) {
781                 if (i < state->chain_num-1) {
782                         if (cmd == 0xff) {
783                                 return NT_STATUS_REQUEST_ABORTED;
784                         }
785                         if (!is_andx_req(cmd)) {
786                                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
787                         }
788                 }
789
790                 if (!have_andx_command((char *)state->inbuf, wct_ofs)) {
791                         /*
792                          * This request was not completed because a previous
793                          * request in the chain had received an error.
794                          */
795                         return NT_STATUS_REQUEST_ABORTED;
796                 }
797
798                 wct_ofs = SVAL(state->inbuf, wct_ofs + 3);
799
800                 /*
801                  * Skip the all-present length field. No overflow, we've just
802                  * put a 16-bit value into a size_t.
803                  */
804                 wct_ofs += 4;
805
806                 if (wct_ofs+2 > talloc_get_size(state->inbuf)) {
807                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
808                 }
809
810                 cmd = CVAL(state->inbuf, wct_ofs + 1);
811         }
812
813         status = cli_pull_error((char *)state->inbuf);
814
815         if (!have_andx_command((char *)state->inbuf, wct_ofs)
816             && NT_STATUS_IS_ERR(status)) {
817                 /*
818                  * The last command takes the error code. All further commands
819                  * down the requested chain will get a
820                  * NT_STATUS_REQUEST_ABORTED.
821                  */
822                 return status;
823         }
824
825         wct = CVAL(state->inbuf, wct_ofs);
826         bytes_offset = wct_ofs + 1 + wct * sizeof(uint16_t);
827         num_bytes = SVAL(state->inbuf, bytes_offset);
828
829         if (wct < min_wct) {
830                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
831         }
832
833         /*
834          * wct_ofs is a 16-bit value plus 4, wct is a 8-bit value, num_bytes
835          * is a 16-bit value. So bytes_offset being size_t should be far from
836          * wrapping.
837          */
838         if ((bytes_offset + 2 > talloc_get_size(state->inbuf))
839             || (bytes_offset > 0xffff)) {
840                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
841         }
842
843         if (pwct != NULL) {
844                 *pwct = wct;
845         }
846         if (pvwv != NULL) {
847                 *pvwv = (uint16_t *)(state->inbuf + wct_ofs + 1);
848         }
849         if (pnum_bytes != NULL) {
850                 *pnum_bytes = num_bytes;
851         }
852         if (pbytes != NULL) {
853                 *pbytes = (uint8_t *)state->inbuf + bytes_offset + 2;
854         }
855
856         return NT_STATUS_OK;
857 }
858
859 size_t cli_smb_wct_ofs(struct tevent_req **reqs, int num_reqs)
860 {
861         size_t wct_ofs;
862         int i;
863
864         wct_ofs = smb_wct - 4;
865
866         for (i=0; i<num_reqs; i++) {
867                 struct cli_smb_state *state;
868                 state = tevent_req_data(reqs[i], struct cli_smb_state);
869                 wct_ofs += iov_len(state->iov+1, state->iov_count-1);
870                 wct_ofs = (wct_ofs + 3) & ~3;
871         }
872         return wct_ofs;
873 }
874
875 NTSTATUS cli_smb_chain_send(struct tevent_req **reqs, int num_reqs)
876 {
877         struct cli_smb_state *first_state = tevent_req_data(
878                 reqs[0], struct cli_smb_state);
879         struct cli_smb_state *last_state = tevent_req_data(
880                 reqs[num_reqs-1], struct cli_smb_state);
881         struct cli_smb_state *state;
882         size_t wct_offset;
883         size_t chain_padding = 0;
884         int i, iovlen;
885         struct iovec *iov = NULL;
886         struct iovec *this_iov;
887         NTSTATUS status;
888
889         iovlen = 0;
890         for (i=0; i<num_reqs; i++) {
891                 state = tevent_req_data(reqs[i], struct cli_smb_state);
892                 iovlen += state->iov_count;
893         }
894
895         iov = talloc_array(last_state, struct iovec, iovlen);
896         if (iov == NULL) {
897                 return NT_STATUS_NO_MEMORY;
898         }
899
900         first_state->chained_requests = (struct tevent_req **)talloc_memdup(
901                 last_state, reqs, sizeof(*reqs) * num_reqs);
902         if (first_state->chained_requests == NULL) {
903                 TALLOC_FREE(iov);
904                 return NT_STATUS_NO_MEMORY;
905         }
906
907         wct_offset = smb_wct - 4;
908         this_iov = iov;
909
910         for (i=0; i<num_reqs; i++) {
911                 size_t next_padding = 0;
912                 uint16_t *vwv;
913
914                 state = tevent_req_data(reqs[i], struct cli_smb_state);
915
916                 if (i < num_reqs-1) {
917                         if (!is_andx_req(CVAL(state->header, smb_com))
918                             || CVAL(state->header, smb_wct) < 2) {
919                                 TALLOC_FREE(iov);
920                                 TALLOC_FREE(first_state->chained_requests);
921                                 return NT_STATUS_INVALID_PARAMETER;
922                         }
923                 }
924
925                 wct_offset += iov_len(state->iov+1, state->iov_count-1) + 1;
926                 if ((wct_offset % 4) != 0) {
927                         next_padding = 4 - (wct_offset % 4);
928                 }
929                 wct_offset += next_padding;
930                 vwv = state->vwv;
931
932                 if (i < num_reqs-1) {
933                         struct cli_smb_state *next_state = tevent_req_data(
934                                 reqs[i+1], struct cli_smb_state);
935                         SCVAL(vwv+0, 0, CVAL(next_state->header, smb_com));
936                         SCVAL(vwv+0, 1, 0);
937                         SSVAL(vwv+1, 0, wct_offset);
938                 } else if (is_andx_req(CVAL(state->header, smb_com))) {
939                         /* properly end the chain */
940                         SCVAL(vwv+0, 0, 0xff);
941                         SCVAL(vwv+0, 1, 0xff);
942                         SSVAL(vwv+1, 0, 0);
943                 }
944
945                 if (i == 0) {
946                         this_iov[0] = state->iov[0];
947                 } else {
948                         /*
949                          * This one is a bit subtle. We have to add
950                          * chain_padding bytes between the requests, and we
951                          * have to also include the wct field of the
952                          * subsequent requests. We use the subsequent header
953                          * for the padding, it contains the wct field in its
954                          * last byte.
955                          */
956                         this_iov[0].iov_len = chain_padding+1;
957                         this_iov[0].iov_base = (void *)&state->header[
958                                 sizeof(state->header) - this_iov[0].iov_len];
959                         memset(this_iov[0].iov_base, 0, this_iov[0].iov_len-1);
960                 }
961                 memcpy(this_iov+1, state->iov+1,
962                        sizeof(struct iovec) * (state->iov_count-1));
963                 this_iov += state->iov_count;
964                 chain_padding = next_padding;
965         }
966
967         status = cli_smb_req_iov_send(reqs[0], last_state, iov, iovlen);
968         if (!NT_STATUS_IS_OK(status)) {
969                 TALLOC_FREE(iov);
970                 TALLOC_FREE(first_state->chained_requests);
971                 return status;
972         }
973
974         return NT_STATUS_OK;
975 }
976
977 uint8_t *cli_smb_inbuf(struct tevent_req *req)
978 {
979         struct cli_smb_state *state = tevent_req_data(
980                 req, struct cli_smb_state);
981         return state->inbuf;
982 }
983
984 bool cli_has_async_calls(struct cli_state *cli)
985 {
986         return ((tevent_queue_length(cli->outgoing) != 0)
987                 || (talloc_array_length(cli->pending) != 0));
988 }
989
990 struct cli_smb_oplock_break_waiter_state {
991         uint16_t fnum;
992         uint8_t level;
993 };
994
995 static void cli_smb_oplock_break_waiter_done(struct tevent_req *subreq);
996
997 struct tevent_req *cli_smb_oplock_break_waiter_send(TALLOC_CTX *mem_ctx,
998                                                     struct event_context *ev,
999                                                     struct cli_state *cli)
1000 {
1001         struct tevent_req *req, *subreq;
1002         struct cli_smb_oplock_break_waiter_state *state;
1003         struct cli_smb_state *smb_state;
1004
1005         req = tevent_req_create(mem_ctx, &state,
1006                                 struct cli_smb_oplock_break_waiter_state);
1007         if (req == NULL) {
1008                 return NULL;
1009         }
1010
1011         /*
1012          * Create a fake SMB request that we will never send out. This is only
1013          * used to be set into the pending queue with the right mid.
1014          */
1015         subreq = cli_smb_req_create(mem_ctx, ev, cli, 0, 0, 0, NULL, 0, NULL);
1016         if (tevent_req_nomem(subreq, req)) {
1017                 return tevent_req_post(req, ev);
1018         }
1019         smb_state = tevent_req_data(subreq, struct cli_smb_state);
1020         SSVAL(smb_state->header, smb_mid, 0xffff);
1021
1022         if (!cli_smb_req_set_pending(subreq)) {
1023                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
1024                 return tevent_req_post(req, ev);
1025         }
1026         tevent_req_set_callback(subreq, cli_smb_oplock_break_waiter_done, req);
1027         return req;
1028 }
1029
1030 static void cli_smb_oplock_break_waiter_done(struct tevent_req *subreq)
1031 {
1032         struct tevent_req *req = tevent_req_callback_data(
1033                 subreq, struct tevent_req);
1034         struct cli_smb_oplock_break_waiter_state *state = tevent_req_data(
1035                 req, struct cli_smb_oplock_break_waiter_state);
1036         uint8_t wct;
1037         uint16_t *vwv;
1038         uint32_t num_bytes;
1039         uint8_t *bytes;
1040         NTSTATUS status;
1041
1042         status = cli_smb_recv(subreq, 8, &wct, &vwv, &num_bytes, &bytes);
1043         if (!NT_STATUS_IS_OK(status)) {
1044                 TALLOC_FREE(subreq);
1045                 tevent_req_nterror(req, status);
1046                 return;
1047         }
1048         state->fnum = SVAL(vwv+2, 0);
1049         state->level = CVAL(vwv+3, 1);
1050         tevent_req_done(req);
1051 }
1052
1053 NTSTATUS cli_smb_oplock_break_waiter_recv(struct tevent_req *req,
1054                                           uint16_t *pfnum,
1055                                           uint8_t *plevel)
1056 {
1057         struct cli_smb_oplock_break_waiter_state *state = tevent_req_data(
1058                 req, struct cli_smb_oplock_break_waiter_state);
1059         NTSTATUS status;
1060
1061         if (tevent_req_is_nterror(req, &status)) {
1062                 return status;
1063         }
1064         *pfnum = state->fnum;
1065         *plevel = state->level;
1066         return NT_STATUS_OK;
1067 }