More const fixes for compiler warnings from the waf build.
[metze/samba/wip.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 #include "../lib/async_req/async_sock.h"
22 #include "../lib/util/tevent_ntstatus.h"
23 #include "../lib/util/tevent_unix.h"
24 #include "async_smb.h"
25 #include "smb_crypt.h"
26 #include "libsmb/nmblib.h"
27
28 /*
29  * Read an smb packet asynchronously, discard keepalives
30  */
31
32 struct read_smb_state {
33         struct tevent_context *ev;
34         int fd;
35         uint8_t *buf;
36 };
37
38 static ssize_t read_smb_more(uint8_t *buf, size_t buflen, void *private_data);
39 static void read_smb_done(struct tevent_req *subreq);
40
41 static struct tevent_req *read_smb_send(TALLOC_CTX *mem_ctx,
42                                         struct tevent_context *ev,
43                                         int fd)
44 {
45         struct tevent_req *result, *subreq;
46         struct read_smb_state *state;
47
48         result = tevent_req_create(mem_ctx, &state, struct read_smb_state);
49         if (result == NULL) {
50                 return NULL;
51         }
52         state->ev = ev;
53         state->fd = fd;
54
55         subreq = read_packet_send(state, ev, fd, 4, read_smb_more, NULL);
56         if (subreq == NULL) {
57                 goto fail;
58         }
59         tevent_req_set_callback(subreq, read_smb_done, result);
60         return result;
61  fail:
62         TALLOC_FREE(result);
63         return NULL;
64 }
65
66 static ssize_t read_smb_more(uint8_t *buf, size_t buflen, void *private_data)
67 {
68         if (buflen > 4) {
69                 return 0;       /* We've been here, we're done */
70         }
71         return smb_len_large(buf);
72 }
73
74 static void read_smb_done(struct tevent_req *subreq)
75 {
76         struct tevent_req *req = tevent_req_callback_data(
77                 subreq, struct tevent_req);
78         struct read_smb_state *state = tevent_req_data(
79                 req, struct read_smb_state);
80         ssize_t len;
81         int err;
82
83         len = read_packet_recv(subreq, state, &state->buf, &err);
84         TALLOC_FREE(subreq);
85         if (len == -1) {
86                 tevent_req_error(req, err);
87                 return;
88         }
89
90         if (CVAL(state->buf, 0) == SMBkeepalive) {
91                 subreq = read_packet_send(state, state->ev, state->fd, 4,
92                                           read_smb_more, NULL);
93                 if (tevent_req_nomem(subreq, req)) {
94                         return;
95                 }
96                 tevent_req_set_callback(subreq, read_smb_done, req);
97                 return;
98         }
99         tevent_req_done(req);
100 }
101
102 static ssize_t read_smb_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
103                              uint8_t **pbuf, int *perrno)
104 {
105         struct read_smb_state *state = tevent_req_data(
106                 req, struct read_smb_state);
107
108         if (tevent_req_is_unix_error(req, perrno)) {
109                 return -1;
110         }
111         *pbuf = talloc_move(mem_ctx, &state->buf);
112         return talloc_get_size(*pbuf);
113 }
114
115 /**
116  * Fetch an error out of a NBT packet
117  * @param[in] buf       The SMB packet
118  * @retval              The error, converted to NTSTATUS
119  */
120
121 NTSTATUS cli_pull_error(char *buf)
122 {
123         uint32_t flags2 = SVAL(buf, smb_flg2);
124
125         if (flags2 & FLAGS2_32_BIT_ERROR_CODES) {
126                 return NT_STATUS(IVAL(buf, smb_rcls));
127         }
128
129         return dos_to_ntstatus(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         int chain_length;
205         struct tevent_req **chained_requests;
206 };
207
208 static uint16_t cli_alloc_mid(struct cli_state *cli)
209 {
210         int num_pending = talloc_array_length(cli->pending);
211         uint16_t result;
212
213         while (true) {
214                 int i;
215
216                 result = cli->mid++;
217                 if ((result == 0) || (result == 0xffff)) {
218                         continue;
219                 }
220
221                 for (i=0; i<num_pending; i++) {
222                         if (result == cli_smb_req_mid(cli->pending[i])) {
223                                 break;
224                         }
225                 }
226
227                 if (i == num_pending) {
228                         return result;
229                 }
230         }
231 }
232
233 void cli_smb_req_unset_pending(struct tevent_req *req)
234 {
235         struct cli_smb_state *state = tevent_req_data(
236                 req, struct cli_smb_state);
237         struct cli_state *cli = state->cli;
238         int num_pending = talloc_array_length(cli->pending);
239         int i;
240
241         if (num_pending == 1) {
242                 /*
243                  * The pending read_smb tevent_req is a child of
244                  * cli->pending. So if nothing is pending anymore, we need to
245                  * delete the socket read fde.
246                  */
247                 TALLOC_FREE(cli->pending);
248                 return;
249         }
250
251         for (i=0; i<num_pending; i++) {
252                 if (req == cli->pending[i]) {
253                         break;
254                 }
255         }
256         if (i == num_pending) {
257                 /*
258                  * Something's seriously broken. Just returning here is the
259                  * right thing nevertheless, the point of this routine is to
260                  * remove ourselves from cli->pending.
261                  */
262                 return;
263         }
264
265         /*
266          * Remove ourselves from the cli->pending array
267          */
268         if (num_pending > 1) {
269                 cli->pending[i] = cli->pending[num_pending-1];
270         }
271
272         /*
273          * No NULL check here, we're shrinking by sizeof(void *), and
274          * talloc_realloc just adjusts the size for this.
275          */
276         cli->pending = talloc_realloc(NULL, cli->pending, struct tevent_req *,
277                                       num_pending - 1);
278         return;
279 }
280
281 static int cli_smb_req_destructor(struct tevent_req *req)
282 {
283         cli_smb_req_unset_pending(req);
284         return 0;
285 }
286
287 static void cli_smb_received(struct tevent_req *subreq);
288
289 bool cli_smb_req_set_pending(struct tevent_req *req)
290 {
291         struct cli_smb_state *state = tevent_req_data(
292                 req, struct cli_smb_state);
293         struct cli_state *cli;
294         struct tevent_req **pending;
295         int num_pending;
296         struct tevent_req *subreq;
297
298         cli = state->cli;
299         num_pending = talloc_array_length(cli->pending);
300
301         pending = talloc_realloc(cli, cli->pending, struct tevent_req *,
302                                  num_pending+1);
303         if (pending == NULL) {
304                 return false;
305         }
306         pending[num_pending] = req;
307         cli->pending = pending;
308         talloc_set_destructor(req, cli_smb_req_destructor);
309
310         if (num_pending > 0) {
311                 return true;
312         }
313
314         /*
315          * We're the first ones, add the read_smb request that waits for the
316          * answer from the server
317          */
318         subreq = read_smb_send(cli->pending, state->ev, cli->fd);
319         if (subreq == NULL) {
320                 cli_smb_req_unset_pending(req);
321                 return false;
322         }
323         tevent_req_set_callback(subreq, cli_smb_received, cli);
324         return true;
325 }
326
327 /*
328  * Fetch a smb request's mid. Only valid after the request has been sent by
329  * cli_smb_req_send().
330  */
331 uint16_t cli_smb_req_mid(struct tevent_req *req)
332 {
333         struct cli_smb_state *state = tevent_req_data(
334                 req, struct cli_smb_state);
335         return SVAL(state->header, smb_mid);
336 }
337
338 void cli_smb_req_set_mid(struct tevent_req *req, uint16_t mid)
339 {
340         struct cli_smb_state *state = tevent_req_data(
341                 req, struct cli_smb_state);
342         state->mid = mid;
343 }
344
345 static size_t iov_len(const struct iovec *iov, int count)
346 {
347         size_t result = 0;
348         int i;
349         for (i=0; i<count; i++) {
350                 result += iov[i].iov_len;
351         }
352         return result;
353 }
354
355 static uint8_t *iov_concat(TALLOC_CTX *mem_ctx, const struct iovec *iov,
356                            int count)
357 {
358         size_t len = iov_len(iov, count);
359         size_t copied;
360         uint8_t *buf;
361         int i;
362
363         buf = talloc_array(mem_ctx, uint8_t, len);
364         if (buf == NULL) {
365                 return NULL;
366         }
367         copied = 0;
368         for (i=0; i<count; i++) {
369                 memcpy(buf+copied, iov[i].iov_base, iov[i].iov_len);
370                 copied += iov[i].iov_len;
371         }
372         return buf;
373 }
374
375 struct tevent_req *cli_smb_req_create(TALLOC_CTX *mem_ctx,
376                                       struct event_context *ev,
377                                       struct cli_state *cli,
378                                       uint8_t smb_command,
379                                       uint8_t additional_flags,
380                                       uint8_t wct, uint16_t *vwv,
381                                       int iov_count,
382                                       struct iovec *bytes_iov)
383 {
384         struct tevent_req *result;
385         struct cli_smb_state *state;
386         struct timeval endtime;
387
388         if (iov_count > MAX_SMB_IOV) {
389                 /*
390                  * Should not happen :-)
391                  */
392                 return NULL;
393         }
394
395         result = tevent_req_create(mem_ctx, &state, struct cli_smb_state);
396         if (result == NULL) {
397                 return NULL;
398         }
399         state->ev = ev;
400         state->cli = cli;
401         state->mid = 0;         /* Set to auto-choose in cli_smb_req_send */
402         state->chain_num = 0;
403         state->chained_requests = NULL;
404
405         cli_setup_packet_buf(cli, (char *)state->header);
406         SCVAL(state->header, smb_com, smb_command);
407         SSVAL(state->header, smb_tid, cli->cnum);
408         SCVAL(state->header, smb_wct, wct);
409
410         state->vwv = vwv;
411
412         SSVAL(state->bytecount_buf, 0, iov_len(bytes_iov, iov_count));
413
414         state->iov[0].iov_base = (void *)state->header;
415         state->iov[0].iov_len  = sizeof(state->header);
416         state->iov[1].iov_base = (void *)state->vwv;
417         state->iov[1].iov_len  = wct * sizeof(uint16_t);
418         state->iov[2].iov_base = (void *)state->bytecount_buf;
419         state->iov[2].iov_len  = sizeof(uint16_t);
420
421         if (iov_count != 0) {
422                 memcpy(&state->iov[3], bytes_iov,
423                        iov_count * sizeof(*bytes_iov));
424         }
425         state->iov_count = iov_count + 3;
426
427         if (cli->timeout) {
428                 endtime = timeval_current_ofs(0, cli->timeout * 1000);
429                 if (!tevent_req_set_endtime(result, ev, endtime)) {
430                         tevent_req_nomem(NULL, result);
431                 }
432         }
433         return result;
434 }
435
436 static NTSTATUS cli_signv(struct cli_state *cli, struct iovec *iov, int count,
437                           uint32_t *seqnum)
438 {
439         uint8_t *buf;
440
441         /*
442          * Obvious optimization: Make cli_calculate_sign_mac work with struct
443          * iovec directly. MD5Update would do that just fine.
444          */
445
446         if ((count <= 0) || (iov[0].iov_len < smb_wct)) {
447                 return NT_STATUS_INVALID_PARAMETER;
448         }
449
450         buf = iov_concat(talloc_tos(), iov, count);
451         if (buf == NULL) {
452                 return NT_STATUS_NO_MEMORY;
453         }
454
455         cli_calculate_sign_mac(cli, (char *)buf, seqnum);
456         memcpy(iov[0].iov_base, buf, iov[0].iov_len);
457
458         TALLOC_FREE(buf);
459         return NT_STATUS_OK;
460 }
461
462 static void cli_smb_sent(struct tevent_req *subreq);
463
464 static NTSTATUS cli_smb_req_iov_send(struct tevent_req *req,
465                                      struct cli_smb_state *state,
466                                      struct iovec *iov, int iov_count)
467 {
468         struct tevent_req *subreq;
469         NTSTATUS status;
470
471         if (state->cli->fd == -1) {
472                 return NT_STATUS_CONNECTION_INVALID;
473         }
474
475         if (iov[0].iov_len < smb_wct) {
476                 return NT_STATUS_INVALID_PARAMETER;
477         }
478
479         if (state->mid != 0) {
480                 SSVAL(iov[0].iov_base, smb_mid, state->mid);
481         } else {
482                 uint16_t mid = cli_alloc_mid(state->cli);
483                 SSVAL(iov[0].iov_base, smb_mid, mid);
484         }
485
486         smb_setlen((char *)iov[0].iov_base, iov_len(iov, iov_count) - 4);
487
488         status = cli_signv(state->cli, iov, iov_count, &state->seqnum);
489
490         if (!NT_STATUS_IS_OK(status)) {
491                 return status;
492         }
493
494         if (cli_encryption_on(state->cli)) {
495                 char *buf, *enc_buf;
496
497                 buf = (char *)iov_concat(talloc_tos(), iov, iov_count);
498                 if (buf == NULL) {
499                         return NT_STATUS_NO_MEMORY;
500                 }
501                 status = cli_encrypt_message(state->cli, (char *)buf,
502                                              &enc_buf);
503                 TALLOC_FREE(buf);
504                 if (!NT_STATUS_IS_OK(status)) {
505                         DEBUG(0, ("Error in encrypting client message: %s\n",
506                                   nt_errstr(status)));
507                         return status;
508                 }
509                 buf = (char *)talloc_memdup(state, enc_buf,
510                                             smb_len(enc_buf)+4);
511                 SAFE_FREE(enc_buf);
512                 if (buf == NULL) {
513                         return NT_STATUS_NO_MEMORY;
514                 }
515                 iov[0].iov_base = (void *)buf;
516                 iov[0].iov_len = talloc_get_size(buf);
517                 iov_count = 1;
518         }
519         subreq = writev_send(state, state->ev, state->cli->outgoing,
520                              state->cli->fd, false, iov, iov_count);
521         if (subreq == NULL) {
522                 return NT_STATUS_NO_MEMORY;
523         }
524         tevent_req_set_callback(subreq, cli_smb_sent, req);
525         return NT_STATUS_OK;
526 }
527
528 NTSTATUS cli_smb_req_send(struct tevent_req *req)
529 {
530         struct cli_smb_state *state = tevent_req_data(
531                 req, struct cli_smb_state);
532
533         return cli_smb_req_iov_send(req, state, state->iov, state->iov_count);
534 }
535
536 struct tevent_req *cli_smb_send(TALLOC_CTX *mem_ctx,
537                                 struct event_context *ev,
538                                 struct cli_state *cli,
539                                 uint8_t smb_command,
540                                 uint8_t additional_flags,
541                                 uint8_t wct, uint16_t *vwv,
542                                 uint32_t num_bytes,
543                                 const uint8_t *bytes)
544 {
545         struct tevent_req *req;
546         struct iovec iov;
547         NTSTATUS status;
548
549         iov.iov_base = discard_const_p(void, bytes);
550         iov.iov_len = num_bytes;
551
552         req = cli_smb_req_create(mem_ctx, ev, cli, smb_command,
553                                  additional_flags, wct, vwv, 1, &iov);
554         if (req == NULL) {
555                 return NULL;
556         }
557
558         status = cli_smb_req_send(req);
559         if (!NT_STATUS_IS_OK(status)) {
560                 tevent_req_nterror(req, status);
561                 return tevent_req_post(req, ev);
562         }
563         return req;
564 }
565
566 static void cli_smb_sent(struct tevent_req *subreq)
567 {
568         struct tevent_req *req = tevent_req_callback_data(
569                 subreq, struct tevent_req);
570         struct cli_smb_state *state = tevent_req_data(
571                 req, struct cli_smb_state);
572         ssize_t nwritten;
573         int err;
574
575         nwritten = writev_recv(subreq, &err);
576         TALLOC_FREE(subreq);
577         if (nwritten == -1) {
578                 if (state->cli->fd != -1) {
579                         close(state->cli->fd);
580                         state->cli->fd = -1;
581                 }
582                 tevent_req_nterror(req, map_nt_error_from_unix(err));
583                 return;
584         }
585
586         switch (CVAL(state->header, smb_com)) {
587         case SMBtranss:
588         case SMBtranss2:
589         case SMBnttranss:
590         case SMBntcancel:
591                 state->inbuf = NULL;
592                 tevent_req_done(req);
593                 return;
594         case SMBlockingX:
595                 if ((CVAL(state->header, smb_wct) == 8) &&
596                     (CVAL(state->vwv+3, 0) == LOCKING_ANDX_OPLOCK_RELEASE)) {
597                         state->inbuf = NULL;
598                         tevent_req_done(req);
599                         return;
600                 }
601         }
602
603         if (!cli_smb_req_set_pending(req)) {
604                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
605                 return;
606         }
607 }
608
609 static void cli_smb_received(struct tevent_req *subreq)
610 {
611         struct cli_state *cli = tevent_req_callback_data(
612                 subreq, struct cli_state);
613         struct tevent_req *req;
614         struct cli_smb_state *state;
615         NTSTATUS status;
616         uint8_t *inbuf;
617         ssize_t received;
618         int num_pending;
619         int i, err;
620         uint16_t mid;
621         bool oplock_break;
622
623         received = read_smb_recv(subreq, talloc_tos(), &inbuf, &err);
624         TALLOC_FREE(subreq);
625         if (received == -1) {
626                 if (cli->fd != -1) {
627                         close(cli->fd);
628                         cli->fd = -1;
629                 }
630                 status = map_nt_error_from_unix(err);
631                 goto fail;
632         }
633
634         if ((IVAL(inbuf, 4) != 0x424d53ff) /* 0xFF"SMB" */
635             && (SVAL(inbuf, 4) != 0x45ff)) /* 0xFF"E" */ {
636                 DEBUG(10, ("Got non-SMB PDU\n"));
637                 status = NT_STATUS_INVALID_NETWORK_RESPONSE;
638                 goto fail;
639         }
640
641         if (cli_encryption_on(cli) && (CVAL(inbuf, 0) == 0)) {
642                 uint16_t enc_ctx_num;
643
644                 status = get_enc_ctx_num(inbuf, &enc_ctx_num);
645                 if (!NT_STATUS_IS_OK(status)) {
646                         DEBUG(10, ("get_enc_ctx_num returned %s\n",
647                                    nt_errstr(status)));
648                         goto fail;
649                 }
650
651                 if (enc_ctx_num != cli->trans_enc_state->enc_ctx_num) {
652                         DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
653                                    enc_ctx_num,
654                                    cli->trans_enc_state->enc_ctx_num));
655                         status = NT_STATUS_INVALID_HANDLE;
656                         goto fail;
657                 }
658
659                 status = common_decrypt_buffer(cli->trans_enc_state,
660                                                (char *)inbuf);
661                 if (!NT_STATUS_IS_OK(status)) {
662                         DEBUG(10, ("common_decrypt_buffer returned %s\n",
663                                    nt_errstr(status)));
664                         goto fail;
665                 }
666         }
667
668         mid = SVAL(inbuf, smb_mid);
669         num_pending = talloc_array_length(cli->pending);
670
671         for (i=0; i<num_pending; i++) {
672                 if (mid == cli_smb_req_mid(cli->pending[i])) {
673                         break;
674                 }
675         }
676         if (i == num_pending) {
677                 /* Dump unexpected reply */
678                 TALLOC_FREE(inbuf);
679                 goto done;
680         }
681
682         oplock_break = false;
683
684         if (mid == 0xffff) {
685                 /*
686                  * Paranoia checks that this is really an oplock break request.
687                  */
688                 oplock_break = (smb_len(inbuf) == 51); /* hdr + 8 words */
689                 oplock_break &= ((CVAL(inbuf, smb_flg) & FLAG_REPLY) == 0);
690                 oplock_break &= (CVAL(inbuf, smb_com) == SMBlockingX);
691                 oplock_break &= (SVAL(inbuf, smb_vwv6) == 0);
692                 oplock_break &= (SVAL(inbuf, smb_vwv7) == 0);
693
694                 if (!oplock_break) {
695                         /* Dump unexpected reply */
696                         TALLOC_FREE(inbuf);
697                         goto done;
698                 }
699         }
700
701         req = cli->pending[i];
702         state = tevent_req_data(req, struct cli_smb_state);
703
704         if (!oplock_break /* oplock breaks are not signed */
705             && !cli_check_sign_mac(cli, (char *)inbuf, state->seqnum+1)) {
706                 DEBUG(10, ("cli_check_sign_mac failed\n"));
707                 TALLOC_FREE(inbuf);
708                 status = NT_STATUS_ACCESS_DENIED;
709                 close(cli->fd);
710                 cli->fd = -1;
711                 goto fail;
712         }
713
714         if (state->chained_requests == NULL) {
715                 state->inbuf = talloc_move(state, &inbuf);
716                 talloc_set_destructor(req, NULL);
717                 cli_smb_req_destructor(req);
718                 state->chain_num = 0;
719                 state->chain_length = 1;
720                 tevent_req_done(req);
721         } else {
722                 struct tevent_req **chain = talloc_move(
723                         talloc_tos(), &state->chained_requests);
724                 int num_chained = talloc_array_length(chain);
725
726                 for (i=0; i<num_chained; i++) {
727                         state = tevent_req_data(chain[i], struct
728                                                 cli_smb_state);
729                         state->inbuf = inbuf;
730                         state->chain_num = i;
731                         state->chain_length = num_chained;
732                         tevent_req_done(chain[i]);
733                 }
734                 TALLOC_FREE(inbuf);
735                 TALLOC_FREE(chain);
736         }
737  done:
738         if (talloc_array_length(cli->pending) > 0) {
739                 /*
740                  * Set up another read request for the other pending cli_smb
741                  * requests
742                  */
743                 state = tevent_req_data(cli->pending[0], struct cli_smb_state);
744                 subreq = read_smb_send(cli->pending, state->ev, cli->fd);
745                 if (subreq == NULL) {
746                         status = NT_STATUS_NO_MEMORY;
747                         goto fail;
748                 }
749                 tevent_req_set_callback(subreq, cli_smb_received, cli);
750         }
751         return;
752  fail:
753         /*
754          * Cancel all pending requests. We don't do a for-loop walking
755          * cli->pending because that array changes in
756          * cli_smb_req_destructor().
757          */
758         while (talloc_array_length(cli->pending) > 0) {
759                 req = cli->pending[0];
760                 talloc_set_destructor(req, NULL);
761                 cli_smb_req_destructor(req);
762                 tevent_req_nterror(req, status);
763         }
764 }
765
766 NTSTATUS cli_smb_recv(struct tevent_req *req,
767                       TALLOC_CTX *mem_ctx, uint8_t **pinbuf,
768                       uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
769                       uint32_t *pnum_bytes, uint8_t **pbytes)
770 {
771         struct cli_smb_state *state = tevent_req_data(
772                 req, struct cli_smb_state);
773         NTSTATUS status = NT_STATUS_OK;
774         uint8_t cmd, wct;
775         uint16_t num_bytes;
776         size_t wct_ofs, bytes_offset;
777         int i;
778
779         if (tevent_req_is_nterror(req, &status)) {
780                 return status;
781         }
782
783         if (state->inbuf == NULL) {
784                 /* This was a request without a reply */
785                 return NT_STATUS_OK;
786         }
787
788         wct_ofs = smb_wct;
789         cmd = CVAL(state->inbuf, smb_com);
790
791         for (i=0; i<state->chain_num; i++) {
792                 if (i < state->chain_num-1) {
793                         if (cmd == 0xff) {
794                                 return NT_STATUS_REQUEST_ABORTED;
795                         }
796                         if (!is_andx_req(cmd)) {
797                                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
798                         }
799                 }
800
801                 if (!have_andx_command((char *)state->inbuf, wct_ofs)) {
802                         /*
803                          * This request was not completed because a previous
804                          * request in the chain had received an error.
805                          */
806                         return NT_STATUS_REQUEST_ABORTED;
807                 }
808
809                 wct_ofs = SVAL(state->inbuf, wct_ofs + 3);
810
811                 /*
812                  * Skip the all-present length field. No overflow, we've just
813                  * put a 16-bit value into a size_t.
814                  */
815                 wct_ofs += 4;
816
817                 if (wct_ofs+2 > talloc_get_size(state->inbuf)) {
818                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
819                 }
820
821                 cmd = CVAL(state->inbuf, wct_ofs + 1);
822         }
823
824         status = cli_pull_error((char *)state->inbuf);
825
826         if (!have_andx_command((char *)state->inbuf, wct_ofs)) {
827
828                 if ((cmd == SMBsesssetupX)
829                     && NT_STATUS_EQUAL(
830                             status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
831                         /*
832                          * NT_STATUS_MORE_PROCESSING_REQUIRED is a
833                          * valid return code for session setup
834                          */
835                         goto no_err;
836                 }
837
838                 if (NT_STATUS_IS_ERR(status)) {
839                         /*
840                          * The last command takes the error code. All
841                          * further commands down the requested chain
842                          * will get a NT_STATUS_REQUEST_ABORTED.
843                          */
844                         return status;
845                 }
846         }
847
848 no_err:
849
850         wct = CVAL(state->inbuf, wct_ofs);
851         bytes_offset = wct_ofs + 1 + wct * sizeof(uint16_t);
852         num_bytes = SVAL(state->inbuf, bytes_offset);
853
854         if (wct < min_wct) {
855                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
856         }
857
858         /*
859          * wct_ofs is a 16-bit value plus 4, wct is a 8-bit value, num_bytes
860          * is a 16-bit value. So bytes_offset being size_t should be far from
861          * wrapping.
862          */
863         if ((bytes_offset + 2 > talloc_get_size(state->inbuf))
864             || (bytes_offset > 0xffff)) {
865                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
866         }
867
868         if (pwct != NULL) {
869                 *pwct = wct;
870         }
871         if (pvwv != NULL) {
872                 *pvwv = (uint16_t *)(state->inbuf + wct_ofs + 1);
873         }
874         if (pnum_bytes != NULL) {
875                 *pnum_bytes = num_bytes;
876         }
877         if (pbytes != NULL) {
878                 *pbytes = (uint8_t *)state->inbuf + bytes_offset + 2;
879         }
880         if ((mem_ctx != NULL) && (pinbuf != NULL)) {
881                 if (state->chain_num == state->chain_length-1) {
882                         *pinbuf = talloc_move(mem_ctx, &state->inbuf);
883                 } else {
884                         *pinbuf = state->inbuf;
885                 }
886         }
887
888         return status;
889 }
890
891 size_t cli_smb_wct_ofs(struct tevent_req **reqs, int num_reqs)
892 {
893         size_t wct_ofs;
894         int i;
895
896         wct_ofs = smb_wct - 4;
897
898         for (i=0; i<num_reqs; i++) {
899                 struct cli_smb_state *state;
900                 state = tevent_req_data(reqs[i], struct cli_smb_state);
901                 wct_ofs += iov_len(state->iov+1, state->iov_count-1);
902                 wct_ofs = (wct_ofs + 3) & ~3;
903         }
904         return wct_ofs;
905 }
906
907 NTSTATUS cli_smb_chain_send(struct tevent_req **reqs, int num_reqs)
908 {
909         struct cli_smb_state *first_state = tevent_req_data(
910                 reqs[0], struct cli_smb_state);
911         struct cli_smb_state *last_state = tevent_req_data(
912                 reqs[num_reqs-1], struct cli_smb_state);
913         struct cli_smb_state *state;
914         size_t wct_offset;
915         size_t chain_padding = 0;
916         int i, iovlen;
917         struct iovec *iov = NULL;
918         struct iovec *this_iov;
919         NTSTATUS status;
920
921         iovlen = 0;
922         for (i=0; i<num_reqs; i++) {
923                 state = tevent_req_data(reqs[i], struct cli_smb_state);
924                 iovlen += state->iov_count;
925         }
926
927         iov = talloc_array(last_state, struct iovec, iovlen);
928         if (iov == NULL) {
929                 return NT_STATUS_NO_MEMORY;
930         }
931
932         first_state->chained_requests = (struct tevent_req **)talloc_memdup(
933                 last_state, reqs, sizeof(*reqs) * num_reqs);
934         if (first_state->chained_requests == NULL) {
935                 TALLOC_FREE(iov);
936                 return NT_STATUS_NO_MEMORY;
937         }
938
939         wct_offset = smb_wct - 4;
940         this_iov = iov;
941
942         for (i=0; i<num_reqs; i++) {
943                 size_t next_padding = 0;
944                 uint16_t *vwv;
945
946                 state = tevent_req_data(reqs[i], struct cli_smb_state);
947
948                 if (i < num_reqs-1) {
949                         if (!is_andx_req(CVAL(state->header, smb_com))
950                             || CVAL(state->header, smb_wct) < 2) {
951                                 TALLOC_FREE(iov);
952                                 TALLOC_FREE(first_state->chained_requests);
953                                 return NT_STATUS_INVALID_PARAMETER;
954                         }
955                 }
956
957                 wct_offset += iov_len(state->iov+1, state->iov_count-1) + 1;
958                 if ((wct_offset % 4) != 0) {
959                         next_padding = 4 - (wct_offset % 4);
960                 }
961                 wct_offset += next_padding;
962                 vwv = state->vwv;
963
964                 if (i < num_reqs-1) {
965                         struct cli_smb_state *next_state = tevent_req_data(
966                                 reqs[i+1], struct cli_smb_state);
967                         SCVAL(vwv+0, 0, CVAL(next_state->header, smb_com));
968                         SCVAL(vwv+0, 1, 0);
969                         SSVAL(vwv+1, 0, wct_offset);
970                 } else if (is_andx_req(CVAL(state->header, smb_com))) {
971                         /* properly end the chain */
972                         SCVAL(vwv+0, 0, 0xff);
973                         SCVAL(vwv+0, 1, 0xff);
974                         SSVAL(vwv+1, 0, 0);
975                 }
976
977                 if (i == 0) {
978                         this_iov[0] = state->iov[0];
979                 } else {
980                         /*
981                          * This one is a bit subtle. We have to add
982                          * chain_padding bytes between the requests, and we
983                          * have to also include the wct field of the
984                          * subsequent requests. We use the subsequent header
985                          * for the padding, it contains the wct field in its
986                          * last byte.
987                          */
988                         this_iov[0].iov_len = chain_padding+1;
989                         this_iov[0].iov_base = (void *)&state->header[
990                                 sizeof(state->header) - this_iov[0].iov_len];
991                         memset(this_iov[0].iov_base, 0, this_iov[0].iov_len-1);
992                 }
993                 memcpy(this_iov+1, state->iov+1,
994                        sizeof(struct iovec) * (state->iov_count-1));
995                 this_iov += state->iov_count;
996                 chain_padding = next_padding;
997         }
998
999         status = cli_smb_req_iov_send(reqs[0], last_state, iov, iovlen);
1000         if (!NT_STATUS_IS_OK(status)) {
1001                 TALLOC_FREE(iov);
1002                 TALLOC_FREE(first_state->chained_requests);
1003                 return status;
1004         }
1005
1006         return NT_STATUS_OK;
1007 }
1008
1009 uint8_t *cli_smb_inbuf(struct tevent_req *req)
1010 {
1011         struct cli_smb_state *state = tevent_req_data(
1012                 req, struct cli_smb_state);
1013         return state->inbuf;
1014 }
1015
1016 bool cli_has_async_calls(struct cli_state *cli)
1017 {
1018         return ((tevent_queue_length(cli->outgoing) != 0)
1019                 || (talloc_array_length(cli->pending) != 0));
1020 }
1021
1022 struct cli_smb_oplock_break_waiter_state {
1023         uint16_t fnum;
1024         uint8_t level;
1025 };
1026
1027 static void cli_smb_oplock_break_waiter_done(struct tevent_req *subreq);
1028
1029 struct tevent_req *cli_smb_oplock_break_waiter_send(TALLOC_CTX *mem_ctx,
1030                                                     struct event_context *ev,
1031                                                     struct cli_state *cli)
1032 {
1033         struct tevent_req *req, *subreq;
1034         struct cli_smb_oplock_break_waiter_state *state;
1035         struct cli_smb_state *smb_state;
1036
1037         req = tevent_req_create(mem_ctx, &state,
1038                                 struct cli_smb_oplock_break_waiter_state);
1039         if (req == NULL) {
1040                 return NULL;
1041         }
1042
1043         /*
1044          * Create a fake SMB request that we will never send out. This is only
1045          * used to be set into the pending queue with the right mid.
1046          */
1047         subreq = cli_smb_req_create(mem_ctx, ev, cli, 0, 0, 0, NULL, 0, NULL);
1048         if (tevent_req_nomem(subreq, req)) {
1049                 return tevent_req_post(req, ev);
1050         }
1051         smb_state = tevent_req_data(subreq, struct cli_smb_state);
1052         SSVAL(smb_state->header, smb_mid, 0xffff);
1053
1054         if (!cli_smb_req_set_pending(subreq)) {
1055                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
1056                 return tevent_req_post(req, ev);
1057         }
1058         tevent_req_set_callback(subreq, cli_smb_oplock_break_waiter_done, req);
1059         return req;
1060 }
1061
1062 static void cli_smb_oplock_break_waiter_done(struct tevent_req *subreq)
1063 {
1064         struct tevent_req *req = tevent_req_callback_data(
1065                 subreq, struct tevent_req);
1066         struct cli_smb_oplock_break_waiter_state *state = tevent_req_data(
1067                 req, struct cli_smb_oplock_break_waiter_state);
1068         uint8_t wct;
1069         uint16_t *vwv;
1070         uint32_t num_bytes;
1071         uint8_t *bytes;
1072         uint8_t *inbuf;
1073         NTSTATUS status;
1074
1075         status = cli_smb_recv(subreq, state, &inbuf, 8, &wct, &vwv,
1076                               &num_bytes, &bytes);
1077         TALLOC_FREE(subreq);
1078         if (!NT_STATUS_IS_OK(status)) {
1079                 tevent_req_nterror(req, status);
1080                 return;
1081         }
1082         state->fnum = SVAL(vwv+2, 0);
1083         state->level = CVAL(vwv+3, 1);
1084         tevent_req_done(req);
1085 }
1086
1087 NTSTATUS cli_smb_oplock_break_waiter_recv(struct tevent_req *req,
1088                                           uint16_t *pfnum,
1089                                           uint8_t *plevel)
1090 {
1091         struct cli_smb_oplock_break_waiter_state *state = tevent_req_data(
1092                 req, struct cli_smb_oplock_break_waiter_state);
1093         NTSTATUS status;
1094
1095         if (tevent_req_is_nterror(req, &status)) {
1096                 return status;
1097         }
1098         *pfnum = state->fnum;
1099         *plevel = state->level;
1100         return NT_STATUS_OK;
1101 }
1102
1103
1104 struct cli_session_request_state {
1105         struct tevent_context *ev;
1106         int sock;
1107         uint32 len_hdr;
1108         struct iovec iov[3];
1109         uint8_t nb_session_response;
1110 };
1111
1112 static void cli_session_request_sent(struct tevent_req *subreq);
1113 static void cli_session_request_recvd(struct tevent_req *subreq);
1114
1115 struct tevent_req *cli_session_request_send(TALLOC_CTX *mem_ctx,
1116                                             struct tevent_context *ev,
1117                                             int sock,
1118                                             const struct nmb_name *called,
1119                                             const struct nmb_name *calling)
1120 {
1121         struct tevent_req *req, *subreq;
1122         struct cli_session_request_state *state;
1123
1124         req = tevent_req_create(mem_ctx, &state,
1125                                 struct cli_session_request_state);
1126         if (req == NULL) {
1127                 return NULL;
1128         }
1129         state->ev = ev;
1130         state->sock = sock;
1131
1132         state->iov[1].iov_base = name_mangle(
1133                 state, called->name, called->name_type);
1134         if (tevent_req_nomem(state->iov[1].iov_base, req)) {
1135                 return tevent_req_post(req, ev);
1136         }
1137         state->iov[1].iov_len = name_len(
1138                 (unsigned char *)state->iov[1].iov_base,
1139                 talloc_get_size(state->iov[1].iov_base));
1140
1141         state->iov[2].iov_base = name_mangle(
1142                 state, calling->name, calling->name_type);
1143         if (tevent_req_nomem(state->iov[2].iov_base, req)) {
1144                 return tevent_req_post(req, ev);
1145         }
1146         state->iov[2].iov_len = name_len(
1147                 (unsigned char *)state->iov[2].iov_base,
1148                 talloc_get_size(state->iov[2].iov_base));
1149
1150         _smb_setlen(((char *)&state->len_hdr),
1151                     state->iov[1].iov_len + state->iov[2].iov_len);
1152         SCVAL((char *)&state->len_hdr, 0, 0x81);
1153
1154         state->iov[0].iov_base = &state->len_hdr;
1155         state->iov[0].iov_len = sizeof(state->len_hdr);
1156
1157         subreq = writev_send(state, ev, NULL, sock, true, state->iov, 3);
1158         if (tevent_req_nomem(subreq, req)) {
1159                 return tevent_req_post(req, ev);
1160         }
1161         tevent_req_set_callback(subreq, cli_session_request_sent, req);
1162         return req;
1163 }
1164
1165 static void cli_session_request_sent(struct tevent_req *subreq)
1166 {
1167         struct tevent_req *req = tevent_req_callback_data(
1168                 subreq, struct tevent_req);
1169         struct cli_session_request_state *state = tevent_req_data(
1170                 req, struct cli_session_request_state);
1171         ssize_t ret;
1172         int err;
1173
1174         ret = writev_recv(subreq, &err);
1175         TALLOC_FREE(subreq);
1176         if (ret == -1) {
1177                 tevent_req_error(req, err);
1178                 return;
1179         }
1180         subreq = read_smb_send(state, state->ev, state->sock);
1181         if (tevent_req_nomem(subreq, req)) {
1182                 return;
1183         }
1184         tevent_req_set_callback(subreq, cli_session_request_recvd, req);
1185 }
1186
1187 static void cli_session_request_recvd(struct tevent_req *subreq)
1188 {
1189         struct tevent_req *req = tevent_req_callback_data(
1190                 subreq, struct tevent_req);
1191         struct cli_session_request_state *state = tevent_req_data(
1192                 req, struct cli_session_request_state);
1193         uint8_t *buf;
1194         ssize_t ret;
1195         int err;
1196
1197         ret = read_smb_recv(subreq, talloc_tos(), &buf, &err);
1198         TALLOC_FREE(subreq);
1199
1200         if (ret < 4) {
1201                 ret = -1;
1202                 err = EIO;
1203         }
1204         if (ret == -1) {
1205                 tevent_req_error(req, err);
1206                 return;
1207         }
1208         /*
1209          * In case of an error there is more information in the data
1210          * portion according to RFC1002. We're not subtle enough to
1211          * respond to the different error conditions, so drop the
1212          * error info here.
1213          */
1214         state->nb_session_response = CVAL(buf, 0);
1215         tevent_req_done(req);
1216 }
1217
1218 bool cli_session_request_recv(struct tevent_req *req, int *err, uint8_t *resp)
1219 {
1220         struct cli_session_request_state *state = tevent_req_data(
1221                 req, struct cli_session_request_state);
1222
1223         if (tevent_req_is_unix_error(req, err)) {
1224                 return false;
1225         }
1226         *resp = state->nb_session_response;
1227         return true;
1228 }