s3: Fix a typo
[Samba.git] / source3 / libsmb / async_smb.c
blob8af5aa10461cbf05d3979da5082d52c79f53f6d6
1 /*
2 Unix SMB/CIFS implementation.
3 Infrastructure for async SMB client requests
4 Copyright (C) Volker Lendecke 2008
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.
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.
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/>.
20 #include "includes.h"
21 #include "../lib/async_req/async_sock.h"
22 #include "async_smb.h"
23 #include "smb_crypt.h"
24 #include "libsmb/nmblib.h"
27 * Read an smb packet asynchronously, discard keepalives
30 struct read_smb_state {
31 struct tevent_context *ev;
32 int fd;
33 uint8_t *buf;
36 static ssize_t read_smb_more(uint8_t *buf, size_t buflen, void *private_data);
37 static void read_smb_done(struct tevent_req *subreq);
39 static struct tevent_req *read_smb_send(TALLOC_CTX *mem_ctx,
40 struct tevent_context *ev,
41 int fd)
43 struct tevent_req *result, *subreq;
44 struct read_smb_state *state;
46 result = tevent_req_create(mem_ctx, &state, struct read_smb_state);
47 if (result == NULL) {
48 return NULL;
50 state->ev = ev;
51 state->fd = fd;
53 subreq = read_packet_send(state, ev, fd, 4, read_smb_more, NULL);
54 if (subreq == NULL) {
55 goto fail;
57 tevent_req_set_callback(subreq, read_smb_done, result);
58 return result;
59 fail:
60 TALLOC_FREE(result);
61 return NULL;
64 static ssize_t read_smb_more(uint8_t *buf, size_t buflen, void *private_data)
66 if (buflen > 4) {
67 return 0; /* We've been here, we're done */
69 return smb_len_large(buf);
72 static void read_smb_done(struct tevent_req *subreq)
74 struct tevent_req *req = tevent_req_callback_data(
75 subreq, struct tevent_req);
76 struct read_smb_state *state = tevent_req_data(
77 req, struct read_smb_state);
78 ssize_t len;
79 int err;
81 len = read_packet_recv(subreq, state, &state->buf, &err);
82 TALLOC_FREE(subreq);
83 if (len == -1) {
84 tevent_req_error(req, err);
85 return;
88 if (CVAL(state->buf, 0) == SMBkeepalive) {
89 subreq = read_packet_send(state, state->ev, state->fd, 4,
90 read_smb_more, NULL);
91 if (tevent_req_nomem(subreq, req)) {
92 return;
94 tevent_req_set_callback(subreq, read_smb_done, req);
95 return;
97 tevent_req_done(req);
100 static ssize_t read_smb_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
101 uint8_t **pbuf, int *perrno)
103 struct read_smb_state *state = tevent_req_data(
104 req, struct read_smb_state);
106 if (tevent_req_is_unix_error(req, perrno)) {
107 return -1;
109 *pbuf = talloc_move(mem_ctx, &state->buf);
110 return talloc_get_size(*pbuf);
114 * Fetch an error out of a NBT packet
115 * @param[in] buf The SMB packet
116 * @retval The error, converted to NTSTATUS
119 NTSTATUS cli_pull_error(char *buf)
121 uint32_t flags2 = SVAL(buf, smb_flg2);
123 if (flags2 & FLAGS2_32_BIT_ERROR_CODES) {
124 return NT_STATUS(IVAL(buf, smb_rcls));
127 return dos_to_ntstatus(CVAL(buf, smb_rcls), SVAL(buf,smb_err));
131 * Compatibility helper for the sync APIs: Fake NTSTATUS in cli->inbuf
132 * @param[in] cli The client connection that just received an error
133 * @param[in] status The error to set on "cli"
136 void cli_set_error(struct cli_state *cli, NTSTATUS status)
138 uint32_t flags2 = SVAL(cli->inbuf, smb_flg2);
140 if (NT_STATUS_IS_DOS(status)) {
141 SSVAL(cli->inbuf, smb_flg2,
142 flags2 & ~FLAGS2_32_BIT_ERROR_CODES);
143 SCVAL(cli->inbuf, smb_rcls, NT_STATUS_DOS_CLASS(status));
144 SSVAL(cli->inbuf, smb_err, NT_STATUS_DOS_CODE(status));
145 return;
148 SSVAL(cli->inbuf, smb_flg2, flags2 | FLAGS2_32_BIT_ERROR_CODES);
149 SIVAL(cli->inbuf, smb_rcls, NT_STATUS_V(status));
150 return;
154 * Figure out if there is an andx command behind the current one
155 * @param[in] buf The smb buffer to look at
156 * @param[in] ofs The offset to the wct field that is followed by the cmd
157 * @retval Is there a command following?
160 static bool have_andx_command(const char *buf, uint16_t ofs)
162 uint8_t wct;
163 size_t buflen = talloc_get_size(buf);
165 if ((ofs == buflen-1) || (ofs == buflen)) {
166 return false;
169 wct = CVAL(buf, ofs);
170 if (wct < 2) {
172 * Not enough space for the command and a following pointer
174 return false;
176 return (CVAL(buf, ofs+1) != 0xff);
179 #define MAX_SMB_IOV 5
181 struct cli_smb_state {
182 struct tevent_context *ev;
183 struct cli_state *cli;
184 uint8_t header[smb_wct+1]; /* Space for the header including the wct */
187 * For normal requests, cli_smb_req_send chooses a mid. Secondary
188 * trans requests need to use the mid of the primary request, so we
189 * need a place to store it. Assume it's set if != 0.
191 uint16_t mid;
193 uint16_t *vwv;
194 uint8_t bytecount_buf[2];
196 struct iovec iov[MAX_SMB_IOV+3];
197 int iov_count;
199 uint8_t *inbuf;
200 uint32_t seqnum;
201 int chain_num;
202 int chain_length;
203 struct tevent_req **chained_requests;
206 static uint16_t cli_alloc_mid(struct cli_state *cli)
208 int num_pending = talloc_array_length(cli->pending);
209 uint16_t result;
211 while (true) {
212 int i;
214 result = cli->mid++;
215 if ((result == 0) || (result == 0xffff)) {
216 continue;
219 for (i=0; i<num_pending; i++) {
220 if (result == cli_smb_req_mid(cli->pending[i])) {
221 break;
225 if (i == num_pending) {
226 return result;
231 void cli_smb_req_unset_pending(struct tevent_req *req)
233 struct cli_smb_state *state = tevent_req_data(
234 req, struct cli_smb_state);
235 struct cli_state *cli = state->cli;
236 int num_pending = talloc_array_length(cli->pending);
237 int i;
239 if (num_pending == 1) {
241 * The pending read_smb tevent_req is a child of
242 * cli->pending. So if nothing is pending anymore, we need to
243 * delete the socket read fde.
245 TALLOC_FREE(cli->pending);
246 return;
249 for (i=0; i<num_pending; i++) {
250 if (req == cli->pending[i]) {
251 break;
254 if (i == num_pending) {
256 * Something's seriously broken. Just returning here is the
257 * right thing nevertheless, the point of this routine is to
258 * remove ourselves from cli->pending.
260 return;
264 * Remove ourselves from the cli->pending array
266 if (num_pending > 1) {
267 cli->pending[i] = cli->pending[num_pending-1];
271 * No NULL check here, we're shrinking by sizeof(void *), and
272 * talloc_realloc just adjusts the size for this.
274 cli->pending = talloc_realloc(NULL, cli->pending, struct tevent_req *,
275 num_pending - 1);
276 return;
279 static int cli_smb_req_destructor(struct tevent_req *req)
281 cli_smb_req_unset_pending(req);
282 return 0;
285 static void cli_smb_received(struct tevent_req *subreq);
287 bool cli_smb_req_set_pending(struct tevent_req *req)
289 struct cli_smb_state *state = tevent_req_data(
290 req, struct cli_smb_state);
291 struct cli_state *cli;
292 struct tevent_req **pending;
293 int num_pending;
294 struct tevent_req *subreq;
296 cli = state->cli;
297 num_pending = talloc_array_length(cli->pending);
299 pending = talloc_realloc(cli, cli->pending, struct tevent_req *,
300 num_pending+1);
301 if (pending == NULL) {
302 return false;
304 pending[num_pending] = req;
305 cli->pending = pending;
306 talloc_set_destructor(req, cli_smb_req_destructor);
308 if (num_pending > 0) {
309 return true;
313 * We're the first ones, add the read_smb request that waits for the
314 * answer from the server
316 subreq = read_smb_send(cli->pending, state->ev, cli->fd);
317 if (subreq == NULL) {
318 cli_smb_req_unset_pending(req);
319 return false;
321 tevent_req_set_callback(subreq, cli_smb_received, cli);
322 return true;
326 * Fetch a smb request's mid. Only valid after the request has been sent by
327 * cli_smb_req_send().
329 uint16_t cli_smb_req_mid(struct tevent_req *req)
331 struct cli_smb_state *state = tevent_req_data(
332 req, struct cli_smb_state);
333 return SVAL(state->header, smb_mid);
336 void cli_smb_req_set_mid(struct tevent_req *req, uint16_t mid)
338 struct cli_smb_state *state = tevent_req_data(
339 req, struct cli_smb_state);
340 state->mid = mid;
343 static size_t iov_len(const struct iovec *iov, int count)
345 size_t result = 0;
346 int i;
347 for (i=0; i<count; i++) {
348 result += iov[i].iov_len;
350 return result;
353 static uint8_t *iov_concat(TALLOC_CTX *mem_ctx, const struct iovec *iov,
354 int count)
356 size_t len = iov_len(iov, count);
357 size_t copied;
358 uint8_t *buf;
359 int i;
361 buf = talloc_array(mem_ctx, uint8_t, len);
362 if (buf == NULL) {
363 return NULL;
365 copied = 0;
366 for (i=0; i<count; i++) {
367 memcpy(buf+copied, iov[i].iov_base, iov[i].iov_len);
368 copied += iov[i].iov_len;
370 return buf;
373 struct tevent_req *cli_smb_req_create(TALLOC_CTX *mem_ctx,
374 struct event_context *ev,
375 struct cli_state *cli,
376 uint8_t smb_command,
377 uint8_t additional_flags,
378 uint8_t wct, uint16_t *vwv,
379 int iov_count,
380 struct iovec *bytes_iov)
382 struct tevent_req *result;
383 struct cli_smb_state *state;
384 struct timeval endtime;
386 if (iov_count > MAX_SMB_IOV) {
388 * Should not happen :-)
390 return NULL;
393 result = tevent_req_create(mem_ctx, &state, struct cli_smb_state);
394 if (result == NULL) {
395 return NULL;
397 state->ev = ev;
398 state->cli = cli;
399 state->mid = 0; /* Set to auto-choose in cli_smb_req_send */
400 state->chain_num = 0;
401 state->chained_requests = NULL;
403 cli_setup_packet_buf(cli, (char *)state->header);
404 SCVAL(state->header, smb_com, smb_command);
405 SSVAL(state->header, smb_tid, cli->cnum);
406 SCVAL(state->header, smb_wct, wct);
408 state->vwv = vwv;
410 SSVAL(state->bytecount_buf, 0, iov_len(bytes_iov, iov_count));
412 state->iov[0].iov_base = (void *)state->header;
413 state->iov[0].iov_len = sizeof(state->header);
414 state->iov[1].iov_base = (void *)state->vwv;
415 state->iov[1].iov_len = wct * sizeof(uint16_t);
416 state->iov[2].iov_base = (void *)state->bytecount_buf;
417 state->iov[2].iov_len = sizeof(uint16_t);
419 if (iov_count != 0) {
420 memcpy(&state->iov[3], bytes_iov,
421 iov_count * sizeof(*bytes_iov));
423 state->iov_count = iov_count + 3;
425 if (cli->timeout) {
426 endtime = timeval_current_ofs(0, cli->timeout * 1000);
427 if (!tevent_req_set_endtime(result, ev, endtime)) {
428 tevent_req_nomem(NULL, result);
431 return result;
434 static NTSTATUS cli_signv(struct cli_state *cli, struct iovec *iov, int count,
435 uint32_t *seqnum)
437 uint8_t *buf;
440 * Obvious optimization: Make cli_calculate_sign_mac work with struct
441 * iovec directly. MD5Update would do that just fine.
444 if ((count <= 0) || (iov[0].iov_len < smb_wct)) {
445 return NT_STATUS_INVALID_PARAMETER;
448 buf = iov_concat(talloc_tos(), iov, count);
449 if (buf == NULL) {
450 return NT_STATUS_NO_MEMORY;
453 cli_calculate_sign_mac(cli, (char *)buf, seqnum);
454 memcpy(iov[0].iov_base, buf, iov[0].iov_len);
456 TALLOC_FREE(buf);
457 return NT_STATUS_OK;
460 static void cli_smb_sent(struct tevent_req *subreq);
462 static NTSTATUS cli_smb_req_iov_send(struct tevent_req *req,
463 struct cli_smb_state *state,
464 struct iovec *iov, int iov_count)
466 struct tevent_req *subreq;
467 NTSTATUS status;
469 if (state->cli->fd == -1) {
470 return NT_STATUS_CONNECTION_INVALID;
473 if (iov[0].iov_len < smb_wct) {
474 return NT_STATUS_INVALID_PARAMETER;
477 if (state->mid != 0) {
478 SSVAL(iov[0].iov_base, smb_mid, state->mid);
479 } else {
480 uint16_t mid = cli_alloc_mid(state->cli);
481 SSVAL(iov[0].iov_base, smb_mid, mid);
484 smb_setlen((char *)iov[0].iov_base, iov_len(iov, iov_count) - 4);
486 status = cli_signv(state->cli, iov, iov_count, &state->seqnum);
488 if (!NT_STATUS_IS_OK(status)) {
489 return status;
492 if (cli_encryption_on(state->cli)) {
493 char *buf, *enc_buf;
495 buf = (char *)iov_concat(talloc_tos(), iov, iov_count);
496 if (buf == NULL) {
497 return NT_STATUS_NO_MEMORY;
499 status = cli_encrypt_message(state->cli, (char *)buf,
500 &enc_buf);
501 TALLOC_FREE(buf);
502 if (!NT_STATUS_IS_OK(status)) {
503 DEBUG(0, ("Error in encrypting client message: %s\n",
504 nt_errstr(status)));
505 return status;
507 buf = (char *)talloc_memdup(state, enc_buf,
508 smb_len(enc_buf)+4);
509 SAFE_FREE(enc_buf);
510 if (buf == NULL) {
511 return NT_STATUS_NO_MEMORY;
513 iov[0].iov_base = (void *)buf;
514 iov[0].iov_len = talloc_get_size(buf);
515 iov_count = 1;
517 subreq = writev_send(state, state->ev, state->cli->outgoing,
518 state->cli->fd, false, iov, iov_count);
519 if (subreq == NULL) {
520 return NT_STATUS_NO_MEMORY;
522 tevent_req_set_callback(subreq, cli_smb_sent, req);
523 return NT_STATUS_OK;
526 NTSTATUS cli_smb_req_send(struct tevent_req *req)
528 struct cli_smb_state *state = tevent_req_data(
529 req, struct cli_smb_state);
531 return cli_smb_req_iov_send(req, state, state->iov, state->iov_count);
534 struct tevent_req *cli_smb_send(TALLOC_CTX *mem_ctx,
535 struct event_context *ev,
536 struct cli_state *cli,
537 uint8_t smb_command,
538 uint8_t additional_flags,
539 uint8_t wct, uint16_t *vwv,
540 uint32_t num_bytes,
541 const uint8_t *bytes)
543 struct tevent_req *req;
544 struct iovec iov;
545 NTSTATUS status;
547 iov.iov_base = CONST_DISCARD(void *, bytes);
548 iov.iov_len = num_bytes;
550 req = cli_smb_req_create(mem_ctx, ev, cli, smb_command,
551 additional_flags, wct, vwv, 1, &iov);
552 if (req == NULL) {
553 return NULL;
556 status = cli_smb_req_send(req);
557 if (!NT_STATUS_IS_OK(status)) {
558 tevent_req_nterror(req, status);
559 return tevent_req_post(req, ev);
561 return req;
564 static void cli_smb_sent(struct tevent_req *subreq)
566 struct tevent_req *req = tevent_req_callback_data(
567 subreq, struct tevent_req);
568 struct cli_smb_state *state = tevent_req_data(
569 req, struct cli_smb_state);
570 ssize_t nwritten;
571 int err;
573 nwritten = writev_recv(subreq, &err);
574 TALLOC_FREE(subreq);
575 if (nwritten == -1) {
576 if (state->cli->fd != -1) {
577 close(state->cli->fd);
578 state->cli->fd = -1;
580 tevent_req_nterror(req, map_nt_error_from_unix(err));
581 return;
584 switch (CVAL(state->header, smb_com)) {
585 case SMBtranss:
586 case SMBtranss2:
587 case SMBnttranss:
588 case SMBntcancel:
589 state->inbuf = NULL;
590 tevent_req_done(req);
591 return;
592 case SMBlockingX:
593 if ((CVAL(state->header, smb_wct) == 8) &&
594 (CVAL(state->vwv+3, 0) == LOCKING_ANDX_OPLOCK_RELEASE)) {
595 state->inbuf = NULL;
596 tevent_req_done(req);
597 return;
601 if (!cli_smb_req_set_pending(req)) {
602 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
603 return;
607 static void cli_smb_received(struct tevent_req *subreq)
609 struct cli_state *cli = tevent_req_callback_data(
610 subreq, struct cli_state);
611 struct tevent_req *req;
612 struct cli_smb_state *state;
613 NTSTATUS status;
614 uint8_t *inbuf;
615 ssize_t received;
616 int num_pending;
617 int i, err;
618 uint16_t mid;
619 bool oplock_break;
621 received = read_smb_recv(subreq, talloc_tos(), &inbuf, &err);
622 TALLOC_FREE(subreq);
623 if (received == -1) {
624 if (cli->fd != -1) {
625 close(cli->fd);
626 cli->fd = -1;
628 status = map_nt_error_from_unix(err);
629 goto fail;
632 if ((IVAL(inbuf, 4) != 0x424d53ff) /* 0xFF"SMB" */
633 && (SVAL(inbuf, 4) != 0x45ff)) /* 0xFF"E" */ {
634 DEBUG(10, ("Got non-SMB PDU\n"));
635 status = NT_STATUS_INVALID_NETWORK_RESPONSE;
636 goto fail;
639 if (cli_encryption_on(cli) && (CVAL(inbuf, 0) == 0)) {
640 uint16_t enc_ctx_num;
642 status = get_enc_ctx_num(inbuf, &enc_ctx_num);
643 if (!NT_STATUS_IS_OK(status)) {
644 DEBUG(10, ("get_enc_ctx_num returned %s\n",
645 nt_errstr(status)));
646 goto fail;
649 if (enc_ctx_num != cli->trans_enc_state->enc_ctx_num) {
650 DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
651 enc_ctx_num,
652 cli->trans_enc_state->enc_ctx_num));
653 status = NT_STATUS_INVALID_HANDLE;
654 goto fail;
657 status = common_decrypt_buffer(cli->trans_enc_state,
658 (char *)inbuf);
659 if (!NT_STATUS_IS_OK(status)) {
660 DEBUG(10, ("common_decrypt_buffer returned %s\n",
661 nt_errstr(status)));
662 goto fail;
666 mid = SVAL(inbuf, smb_mid);
667 num_pending = talloc_array_length(cli->pending);
669 for (i=0; i<num_pending; i++) {
670 if (mid == cli_smb_req_mid(cli->pending[i])) {
671 break;
674 if (i == num_pending) {
675 /* Dump unexpected reply */
676 TALLOC_FREE(inbuf);
677 goto done;
680 oplock_break = false;
682 if (mid == 0xffff) {
684 * Paranoia checks that this is really an oplock break request.
686 oplock_break = (smb_len(inbuf) == 51); /* hdr + 8 words */
687 oplock_break &= ((CVAL(inbuf, smb_flg) & FLAG_REPLY) == 0);
688 oplock_break &= (CVAL(inbuf, smb_com) == SMBlockingX);
689 oplock_break &= (SVAL(inbuf, smb_vwv6) == 0);
690 oplock_break &= (SVAL(inbuf, smb_vwv7) == 0);
692 if (!oplock_break) {
693 /* Dump unexpected reply */
694 TALLOC_FREE(inbuf);
695 goto done;
699 req = cli->pending[i];
700 state = tevent_req_data(req, struct cli_smb_state);
702 if (!oplock_break /* oplock breaks are not signed */
703 && !cli_check_sign_mac(cli, (char *)inbuf, state->seqnum+1)) {
704 DEBUG(10, ("cli_check_sign_mac failed\n"));
705 TALLOC_FREE(inbuf);
706 status = NT_STATUS_ACCESS_DENIED;
707 close(cli->fd);
708 cli->fd = -1;
709 goto fail;
712 if (state->chained_requests == NULL) {
713 state->inbuf = talloc_move(state, &inbuf);
714 talloc_set_destructor(req, NULL);
715 cli_smb_req_destructor(req);
716 state->chain_num = 0;
717 state->chain_length = 1;
718 tevent_req_done(req);
719 } else {
720 struct tevent_req **chain = talloc_move(
721 talloc_tos(), &state->chained_requests);
722 int num_chained = talloc_array_length(chain);
724 for (i=0; i<num_chained; i++) {
725 state = tevent_req_data(chain[i], struct
726 cli_smb_state);
727 state->inbuf = inbuf;
728 state->chain_num = i;
729 state->chain_length = num_chained;
730 tevent_req_done(chain[i]);
732 TALLOC_FREE(inbuf);
733 TALLOC_FREE(chain);
735 done:
736 if (talloc_array_length(cli->pending) > 0) {
738 * Set up another read request for the other pending cli_smb
739 * requests
741 state = tevent_req_data(cli->pending[0], struct cli_smb_state);
742 subreq = read_smb_send(cli->pending, state->ev, cli->fd);
743 if (subreq == NULL) {
744 status = NT_STATUS_NO_MEMORY;
745 goto fail;
747 tevent_req_set_callback(subreq, cli_smb_received, cli);
749 return;
750 fail:
752 * Cancel all pending requests. We don't do a for-loop walking
753 * cli->pending because that array changes in
754 * cli_smb_req_destructor().
756 while (talloc_array_length(cli->pending) > 0) {
757 req = cli->pending[0];
758 talloc_set_destructor(req, NULL);
759 cli_smb_req_destructor(req);
760 tevent_req_nterror(req, status);
764 NTSTATUS cli_smb_recv(struct tevent_req *req,
765 TALLOC_CTX *mem_ctx, uint8_t **pinbuf,
766 uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
767 uint32_t *pnum_bytes, uint8_t **pbytes)
769 struct cli_smb_state *state = tevent_req_data(
770 req, struct cli_smb_state);
771 NTSTATUS status = NT_STATUS_OK;
772 uint8_t cmd, wct;
773 uint16_t num_bytes;
774 size_t wct_ofs, bytes_offset;
775 int i;
777 if (tevent_req_is_nterror(req, &status)) {
778 return status;
781 if (state->inbuf == NULL) {
782 /* This was a request without a reply */
783 return NT_STATUS_OK;
786 wct_ofs = smb_wct;
787 cmd = CVAL(state->inbuf, smb_com);
789 for (i=0; i<state->chain_num; i++) {
790 if (i < state->chain_num-1) {
791 if (cmd == 0xff) {
792 return NT_STATUS_REQUEST_ABORTED;
794 if (!is_andx_req(cmd)) {
795 return NT_STATUS_INVALID_NETWORK_RESPONSE;
799 if (!have_andx_command((char *)state->inbuf, wct_ofs)) {
801 * This request was not completed because a previous
802 * request in the chain had received an error.
804 return NT_STATUS_REQUEST_ABORTED;
807 wct_ofs = SVAL(state->inbuf, wct_ofs + 3);
810 * Skip the all-present length field. No overflow, we've just
811 * put a 16-bit value into a size_t.
813 wct_ofs += 4;
815 if (wct_ofs+2 > talloc_get_size(state->inbuf)) {
816 return NT_STATUS_INVALID_NETWORK_RESPONSE;
819 cmd = CVAL(state->inbuf, wct_ofs + 1);
822 status = cli_pull_error((char *)state->inbuf);
824 if (!have_andx_command((char *)state->inbuf, wct_ofs)) {
826 if ((cmd == SMBsesssetupX)
827 && NT_STATUS_EQUAL(
828 status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
830 * NT_STATUS_MORE_PROCESSING_REQUIRED is a
831 * valid return code for session setup
833 goto no_err;
836 if (NT_STATUS_IS_ERR(status)) {
838 * The last command takes the error code. All
839 * further commands down the requested chain
840 * will get a NT_STATUS_REQUEST_ABORTED.
842 return status;
846 no_err:
848 wct = CVAL(state->inbuf, wct_ofs);
849 bytes_offset = wct_ofs + 1 + wct * sizeof(uint16_t);
850 num_bytes = SVAL(state->inbuf, bytes_offset);
852 if (wct < min_wct) {
853 return NT_STATUS_INVALID_NETWORK_RESPONSE;
857 * wct_ofs is a 16-bit value plus 4, wct is a 8-bit value, num_bytes
858 * is a 16-bit value. So bytes_offset being size_t should be far from
859 * wrapping.
861 if ((bytes_offset + 2 > talloc_get_size(state->inbuf))
862 || (bytes_offset > 0xffff)) {
863 return NT_STATUS_INVALID_NETWORK_RESPONSE;
866 if (pwct != NULL) {
867 *pwct = wct;
869 if (pvwv != NULL) {
870 *pvwv = (uint16_t *)(state->inbuf + wct_ofs + 1);
872 if (pnum_bytes != NULL) {
873 *pnum_bytes = num_bytes;
875 if (pbytes != NULL) {
876 *pbytes = (uint8_t *)state->inbuf + bytes_offset + 2;
878 if ((mem_ctx != NULL) && (pinbuf != NULL)) {
879 if (state->chain_num == state->chain_length-1) {
880 *pinbuf = talloc_move(mem_ctx, &state->inbuf);
881 } else {
882 *pinbuf = state->inbuf;
886 return status;
889 size_t cli_smb_wct_ofs(struct tevent_req **reqs, int num_reqs)
891 size_t wct_ofs;
892 int i;
894 wct_ofs = smb_wct - 4;
896 for (i=0; i<num_reqs; i++) {
897 struct cli_smb_state *state;
898 state = tevent_req_data(reqs[i], struct cli_smb_state);
899 wct_ofs += iov_len(state->iov+1, state->iov_count-1);
900 wct_ofs = (wct_ofs + 3) & ~3;
902 return wct_ofs;
905 NTSTATUS cli_smb_chain_send(struct tevent_req **reqs, int num_reqs)
907 struct cli_smb_state *first_state = tevent_req_data(
908 reqs[0], struct cli_smb_state);
909 struct cli_smb_state *last_state = tevent_req_data(
910 reqs[num_reqs-1], struct cli_smb_state);
911 struct cli_smb_state *state;
912 size_t wct_offset;
913 size_t chain_padding = 0;
914 int i, iovlen;
915 struct iovec *iov = NULL;
916 struct iovec *this_iov;
917 NTSTATUS status;
919 iovlen = 0;
920 for (i=0; i<num_reqs; i++) {
921 state = tevent_req_data(reqs[i], struct cli_smb_state);
922 iovlen += state->iov_count;
925 iov = talloc_array(last_state, struct iovec, iovlen);
926 if (iov == NULL) {
927 return NT_STATUS_NO_MEMORY;
930 first_state->chained_requests = (struct tevent_req **)talloc_memdup(
931 last_state, reqs, sizeof(*reqs) * num_reqs);
932 if (first_state->chained_requests == NULL) {
933 TALLOC_FREE(iov);
934 return NT_STATUS_NO_MEMORY;
937 wct_offset = smb_wct - 4;
938 this_iov = iov;
940 for (i=0; i<num_reqs; i++) {
941 size_t next_padding = 0;
942 uint16_t *vwv;
944 state = tevent_req_data(reqs[i], struct cli_smb_state);
946 if (i < num_reqs-1) {
947 if (!is_andx_req(CVAL(state->header, smb_com))
948 || CVAL(state->header, smb_wct) < 2) {
949 TALLOC_FREE(iov);
950 TALLOC_FREE(first_state->chained_requests);
951 return NT_STATUS_INVALID_PARAMETER;
955 wct_offset += iov_len(state->iov+1, state->iov_count-1) + 1;
956 if ((wct_offset % 4) != 0) {
957 next_padding = 4 - (wct_offset % 4);
959 wct_offset += next_padding;
960 vwv = state->vwv;
962 if (i < num_reqs-1) {
963 struct cli_smb_state *next_state = tevent_req_data(
964 reqs[i+1], struct cli_smb_state);
965 SCVAL(vwv+0, 0, CVAL(next_state->header, smb_com));
966 SCVAL(vwv+0, 1, 0);
967 SSVAL(vwv+1, 0, wct_offset);
968 } else if (is_andx_req(CVAL(state->header, smb_com))) {
969 /* properly end the chain */
970 SCVAL(vwv+0, 0, 0xff);
971 SCVAL(vwv+0, 1, 0xff);
972 SSVAL(vwv+1, 0, 0);
975 if (i == 0) {
976 this_iov[0] = state->iov[0];
977 } else {
979 * This one is a bit subtle. We have to add
980 * chain_padding bytes between the requests, and we
981 * have to also include the wct field of the
982 * subsequent requests. We use the subsequent header
983 * for the padding, it contains the wct field in its
984 * last byte.
986 this_iov[0].iov_len = chain_padding+1;
987 this_iov[0].iov_base = (void *)&state->header[
988 sizeof(state->header) - this_iov[0].iov_len];
989 memset(this_iov[0].iov_base, 0, this_iov[0].iov_len-1);
991 memcpy(this_iov+1, state->iov+1,
992 sizeof(struct iovec) * (state->iov_count-1));
993 this_iov += state->iov_count;
994 chain_padding = next_padding;
997 status = cli_smb_req_iov_send(reqs[0], last_state, iov, iovlen);
998 if (!NT_STATUS_IS_OK(status)) {
999 TALLOC_FREE(iov);
1000 TALLOC_FREE(first_state->chained_requests);
1001 return status;
1004 return NT_STATUS_OK;
1007 uint8_t *cli_smb_inbuf(struct tevent_req *req)
1009 struct cli_smb_state *state = tevent_req_data(
1010 req, struct cli_smb_state);
1011 return state->inbuf;
1014 bool cli_has_async_calls(struct cli_state *cli)
1016 return ((tevent_queue_length(cli->outgoing) != 0)
1017 || (talloc_array_length(cli->pending) != 0));
1020 struct cli_smb_oplock_break_waiter_state {
1021 uint16_t fnum;
1022 uint8_t level;
1025 static void cli_smb_oplock_break_waiter_done(struct tevent_req *subreq);
1027 struct tevent_req *cli_smb_oplock_break_waiter_send(TALLOC_CTX *mem_ctx,
1028 struct event_context *ev,
1029 struct cli_state *cli)
1031 struct tevent_req *req, *subreq;
1032 struct cli_smb_oplock_break_waiter_state *state;
1033 struct cli_smb_state *smb_state;
1035 req = tevent_req_create(mem_ctx, &state,
1036 struct cli_smb_oplock_break_waiter_state);
1037 if (req == NULL) {
1038 return NULL;
1042 * Create a fake SMB request that we will never send out. This is only
1043 * used to be set into the pending queue with the right mid.
1045 subreq = cli_smb_req_create(mem_ctx, ev, cli, 0, 0, 0, NULL, 0, NULL);
1046 if (tevent_req_nomem(subreq, req)) {
1047 return tevent_req_post(req, ev);
1049 smb_state = tevent_req_data(subreq, struct cli_smb_state);
1050 SSVAL(smb_state->header, smb_mid, 0xffff);
1052 if (!cli_smb_req_set_pending(subreq)) {
1053 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
1054 return tevent_req_post(req, ev);
1056 tevent_req_set_callback(subreq, cli_smb_oplock_break_waiter_done, req);
1057 return req;
1060 static void cli_smb_oplock_break_waiter_done(struct tevent_req *subreq)
1062 struct tevent_req *req = tevent_req_callback_data(
1063 subreq, struct tevent_req);
1064 struct cli_smb_oplock_break_waiter_state *state = tevent_req_data(
1065 req, struct cli_smb_oplock_break_waiter_state);
1066 uint8_t wct;
1067 uint16_t *vwv;
1068 uint32_t num_bytes;
1069 uint8_t *bytes;
1070 uint8_t *inbuf;
1071 NTSTATUS status;
1073 status = cli_smb_recv(subreq, state, &inbuf, 8, &wct, &vwv,
1074 &num_bytes, &bytes);
1075 TALLOC_FREE(subreq);
1076 if (!NT_STATUS_IS_OK(status)) {
1077 tevent_req_nterror(req, status);
1078 return;
1080 state->fnum = SVAL(vwv+2, 0);
1081 state->level = CVAL(vwv+3, 1);
1082 tevent_req_done(req);
1085 NTSTATUS cli_smb_oplock_break_waiter_recv(struct tevent_req *req,
1086 uint16_t *pfnum,
1087 uint8_t *plevel)
1089 struct cli_smb_oplock_break_waiter_state *state = tevent_req_data(
1090 req, struct cli_smb_oplock_break_waiter_state);
1091 NTSTATUS status;
1093 if (tevent_req_is_nterror(req, &status)) {
1094 return status;
1096 *pfnum = state->fnum;
1097 *plevel = state->level;
1098 return NT_STATUS_OK;
1102 struct cli_session_request_state {
1103 struct tevent_context *ev;
1104 int sock;
1105 uint32 len_hdr;
1106 struct iovec iov[3];
1107 uint8_t nb_session_response;
1110 static void cli_session_request_sent(struct tevent_req *subreq);
1111 static void cli_session_request_recvd(struct tevent_req *subreq);
1113 struct tevent_req *cli_session_request_send(TALLOC_CTX *mem_ctx,
1114 struct tevent_context *ev,
1115 int sock,
1116 const struct nmb_name *called,
1117 const struct nmb_name *calling)
1119 struct tevent_req *req, *subreq;
1120 struct cli_session_request_state *state;
1122 req = tevent_req_create(mem_ctx, &state,
1123 struct cli_session_request_state);
1124 if (req == NULL) {
1125 return NULL;
1127 state->ev = ev;
1128 state->sock = sock;
1130 state->iov[1].iov_base = name_mangle(
1131 state, called->name, called->name_type);
1132 if (tevent_req_nomem(state->iov[1].iov_base, req)) {
1133 return tevent_req_post(req, ev);
1135 state->iov[1].iov_len = name_len(
1136 (unsigned char *)state->iov[1].iov_base,
1137 talloc_get_size(state->iov[1].iov_base));
1139 state->iov[2].iov_base = name_mangle(
1140 state, calling->name, calling->name_type);
1141 if (tevent_req_nomem(state->iov[2].iov_base, req)) {
1142 return tevent_req_post(req, ev);
1144 state->iov[2].iov_len = name_len(
1145 (unsigned char *)state->iov[2].iov_base,
1146 talloc_get_size(state->iov[2].iov_base));
1148 _smb_setlen(((char *)&state->len_hdr),
1149 state->iov[1].iov_len + state->iov[2].iov_len);
1150 SCVAL((char *)&state->len_hdr, 0, 0x81);
1152 state->iov[0].iov_base = &state->len_hdr;
1153 state->iov[0].iov_len = sizeof(state->len_hdr);
1155 subreq = writev_send(state, ev, NULL, sock, true, state->iov, 3);
1156 if (tevent_req_nomem(subreq, req)) {
1157 return tevent_req_post(req, ev);
1159 tevent_req_set_callback(subreq, cli_session_request_sent, req);
1160 return req;
1163 static void cli_session_request_sent(struct tevent_req *subreq)
1165 struct tevent_req *req = tevent_req_callback_data(
1166 subreq, struct tevent_req);
1167 struct cli_session_request_state *state = tevent_req_data(
1168 req, struct cli_session_request_state);
1169 ssize_t ret;
1170 int err;
1172 ret = writev_recv(subreq, &err);
1173 TALLOC_FREE(subreq);
1174 if (ret == -1) {
1175 tevent_req_error(req, err);
1176 return;
1178 subreq = read_smb_send(state, state->ev, state->sock);
1179 if (tevent_req_nomem(subreq, req)) {
1180 return;
1182 tevent_req_set_callback(subreq, cli_session_request_recvd, req);
1185 static void cli_session_request_recvd(struct tevent_req *subreq)
1187 struct tevent_req *req = tevent_req_callback_data(
1188 subreq, struct tevent_req);
1189 struct cli_session_request_state *state = tevent_req_data(
1190 req, struct cli_session_request_state);
1191 uint8_t *buf;
1192 ssize_t ret;
1193 int err;
1195 ret = read_smb_recv(subreq, talloc_tos(), &buf, &err);
1196 TALLOC_FREE(subreq);
1198 if (ret < 4) {
1199 ret = -1;
1200 err = EIO;
1202 if (ret == -1) {
1203 tevent_req_error(req, err);
1204 return;
1207 * In case of an error there is more information in the data
1208 * portion according to RFC1002. We're not subtle enough to
1209 * respond to the different error conditions, so drop the
1210 * error info here.
1212 state->nb_session_response = CVAL(buf, 0);
1213 tevent_req_done(req);
1216 bool cli_session_request_recv(struct tevent_req *req, int *err, uint8_t *resp)
1218 struct cli_session_request_state *state = tevent_req_data(
1219 req, struct cli_session_request_state);
1221 if (tevent_req_is_unix_error(req, err)) {
1222 return false;
1224 *resp = state->nb_session_response;
1225 return true;