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