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/>.
23 * Read an smb packet asynchronously, discard keepalives
26 struct read_smb_state
{
27 struct tevent_context
*ev
;
32 static ssize_t
read_smb_more(uint8_t *buf
, size_t buflen
, void *private_data
);
33 static void read_smb_done(struct tevent_req
*subreq
);
35 static struct tevent_req
*read_smb_send(TALLOC_CTX
*mem_ctx
,
36 struct tevent_context
*ev
,
39 struct tevent_req
*result
, *subreq
;
40 struct read_smb_state
*state
;
42 result
= tevent_req_create(mem_ctx
, &state
, struct read_smb_state
);
49 subreq
= read_packet_send(state
, ev
, fd
, 4, read_smb_more
, NULL
);
53 tevent_req_set_callback(subreq
, read_smb_done
, result
);
60 static ssize_t
read_smb_more(uint8_t *buf
, size_t buflen
, void *private_data
)
63 return 0; /* We've been here, we're done */
65 return smb_len_large(buf
);
68 static void read_smb_done(struct tevent_req
*subreq
)
70 struct tevent_req
*req
= tevent_req_callback_data(
71 subreq
, struct tevent_req
);
72 struct read_smb_state
*state
= tevent_req_data(
73 req
, struct read_smb_state
);
77 len
= read_packet_recv(subreq
, state
, &state
->buf
, &err
);
80 tevent_req_error(req
, err
);
84 if (CVAL(state
->buf
, 0) == SMBkeepalive
) {
85 subreq
= read_packet_send(state
, state
->ev
, state
->fd
, 4,
87 if (tevent_req_nomem(subreq
, req
)) {
90 tevent_req_set_callback(subreq
, read_smb_done
, req
);
96 static ssize_t
read_smb_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
97 uint8_t **pbuf
, int *perrno
)
99 struct read_smb_state
*state
= tevent_req_data(
100 req
, struct read_smb_state
);
102 if (tevent_req_is_unix_error(req
, perrno
)) {
105 *pbuf
= talloc_move(mem_ctx
, &state
->buf
);
106 return talloc_get_size(*pbuf
);
110 * Fetch an error out of a NBT packet
111 * @param[in] buf The SMB packet
112 * @retval The error, converted to NTSTATUS
115 NTSTATUS
cli_pull_error(char *buf
)
117 uint32_t flags2
= SVAL(buf
, smb_flg2
);
119 if (flags2
& FLAGS2_32_BIT_ERROR_CODES
) {
120 return NT_STATUS(IVAL(buf
, smb_rcls
));
123 /* if the client uses dos errors, but there is no error,
124 we should return no error here, otherwise it looks
125 like an unknown bad NT_STATUS. jmcd */
126 if (CVAL(buf
, smb_rcls
) == 0)
129 return NT_STATUS_DOS(CVAL(buf
, smb_rcls
), SVAL(buf
,smb_err
));
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"
138 void cli_set_error(struct cli_state
*cli
, NTSTATUS status
)
140 uint32_t flags2
= SVAL(cli
->inbuf
, smb_flg2
);
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
));
150 SSVAL(cli
->inbuf
, smb_flg2
, flags2
| FLAGS2_32_BIT_ERROR_CODES
);
151 SIVAL(cli
->inbuf
, smb_rcls
, NT_STATUS_V(status
));
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?
162 static bool have_andx_command(const char *buf
, uint16_t ofs
)
165 size_t buflen
= talloc_get_size(buf
);
167 if ((ofs
== buflen
-1) || (ofs
== buflen
)) {
171 wct
= CVAL(buf
, ofs
);
174 * Not enough space for the command and a following pointer
178 return (CVAL(buf
, ofs
+1) != 0xff);
181 #define MAX_SMB_IOV 5
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 */
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.
196 uint8_t bytecount_buf
[2];
198 struct iovec iov
[MAX_SMB_IOV
+3];
204 struct tevent_req
**chained_requests
;
207 static uint16_t cli_alloc_mid(struct cli_state
*cli
)
209 int num_pending
= talloc_array_length(cli
->pending
);
216 if ((result
== 0) || (result
== 0xffff)) {
220 for (i
=0; i
<num_pending
; i
++) {
221 if (result
== cli_smb_req_mid(cli
->pending
[i
])) {
226 if (i
== num_pending
) {
232 void cli_smb_req_unset_pending(struct tevent_req
*req
)
234 struct cli_smb_state
*state
= tevent_req_data(
235 req
, struct cli_smb_state
);
236 struct cli_state
*cli
= state
->cli
;
237 int num_pending
= talloc_array_length(cli
->pending
);
240 if (num_pending
== 1) {
242 * The pending read_smb tevent_req is a child of
243 * cli->pending. So if nothing is pending anymore, we need to
244 * delete the socket read fde.
246 TALLOC_FREE(cli
->pending
);
250 for (i
=0; i
<num_pending
; i
++) {
251 if (req
== cli
->pending
[i
]) {
255 if (i
== num_pending
) {
257 * Something's seriously broken. Just returning here is the
258 * right thing nevertheless, the point of this routine is to
259 * remove ourselves from cli->pending.
265 * Remove ourselves from the cli->pending array
267 if (num_pending
> 1) {
268 cli
->pending
[i
] = cli
->pending
[num_pending
-1];
272 * No NULL check here, we're shrinking by sizeof(void *), and
273 * talloc_realloc just adjusts the size for this.
275 cli
->pending
= talloc_realloc(NULL
, cli
->pending
, struct tevent_req
*,
280 static int cli_smb_req_destructor(struct tevent_req
*req
)
282 cli_smb_req_unset_pending(req
);
286 static void cli_smb_received(struct tevent_req
*subreq
);
288 bool cli_smb_req_set_pending(struct tevent_req
*req
)
290 struct cli_smb_state
*state
= tevent_req_data(
291 req
, struct cli_smb_state
);
292 struct cli_state
*cli
;
293 struct tevent_req
**pending
;
295 struct tevent_req
*subreq
;
298 num_pending
= talloc_array_length(cli
->pending
);
300 pending
= talloc_realloc(cli
, cli
->pending
, struct tevent_req
*,
302 if (pending
== NULL
) {
305 pending
[num_pending
] = req
;
306 cli
->pending
= pending
;
307 talloc_set_destructor(req
, cli_smb_req_destructor
);
309 if (num_pending
> 0) {
314 * We're the first ones, add the read_smb request that waits for the
315 * answer from the server
317 subreq
= read_smb_send(cli
->pending
, state
->ev
, cli
->fd
);
318 if (subreq
== NULL
) {
319 cli_smb_req_unset_pending(req
);
322 tevent_req_set_callback(subreq
, cli_smb_received
, cli
);
327 * Fetch a smb request's mid. Only valid after the request has been sent by
328 * cli_smb_req_send().
330 uint16_t cli_smb_req_mid(struct tevent_req
*req
)
332 struct cli_smb_state
*state
= tevent_req_data(
333 req
, struct cli_smb_state
);
334 return SVAL(state
->header
, smb_mid
);
337 void cli_smb_req_set_mid(struct tevent_req
*req
, uint16_t mid
)
339 struct cli_smb_state
*state
= tevent_req_data(
340 req
, struct cli_smb_state
);
344 static size_t iov_len(const struct iovec
*iov
, int count
)
348 for (i
=0; i
<count
; i
++) {
349 result
+= iov
[i
].iov_len
;
354 static uint8_t *iov_concat(TALLOC_CTX
*mem_ctx
, const struct iovec
*iov
,
357 size_t len
= iov_len(iov
, count
);
362 buf
= talloc_array(mem_ctx
, uint8_t, len
);
367 for (i
=0; i
<count
; i
++) {
368 memcpy(buf
+copied
, iov
[i
].iov_base
, iov
[i
].iov_len
);
369 copied
+= iov
[i
].iov_len
;
374 struct tevent_req
*cli_smb_req_create(TALLOC_CTX
*mem_ctx
,
375 struct event_context
*ev
,
376 struct cli_state
*cli
,
378 uint8_t additional_flags
,
379 uint8_t wct
, uint16_t *vwv
,
381 struct iovec
*bytes_iov
)
383 struct tevent_req
*result
;
384 struct cli_smb_state
*state
;
385 struct timeval endtime
;
387 if (iov_count
> MAX_SMB_IOV
) {
389 * Should not happen :-)
394 result
= tevent_req_create(mem_ctx
, &state
, struct cli_smb_state
);
395 if (result
== NULL
) {
400 state
->mid
= 0; /* Set to auto-choose in cli_smb_req_send */
401 state
->chain_num
= 0;
402 state
->chained_requests
= NULL
;
404 cli_setup_packet_buf(cli
, (char *)state
->header
);
405 SCVAL(state
->header
, smb_com
, smb_command
);
406 SSVAL(state
->header
, smb_tid
, cli
->cnum
);
407 SCVAL(state
->header
, smb_wct
, wct
);
411 SSVAL(state
->bytecount_buf
, 0, iov_len(bytes_iov
, iov_count
));
413 state
->iov
[0].iov_base
= (void *)state
->header
;
414 state
->iov
[0].iov_len
= sizeof(state
->header
);
415 state
->iov
[1].iov_base
= (void *)state
->vwv
;
416 state
->iov
[1].iov_len
= wct
* sizeof(uint16_t);
417 state
->iov
[2].iov_base
= (void *)state
->bytecount_buf
;
418 state
->iov
[2].iov_len
= sizeof(uint16_t);
420 if (iov_count
!= 0) {
421 memcpy(&state
->iov
[3], bytes_iov
,
422 iov_count
* sizeof(*bytes_iov
));
424 state
->iov_count
= iov_count
+ 3;
426 endtime
= timeval_current_ofs(0, cli
->timeout
* 1000);
427 if (!tevent_req_set_endtime(result
, ev
, endtime
)) {
428 tevent_req_nomem(NULL
, result
);
433 static NTSTATUS
cli_signv(struct cli_state
*cli
, struct iovec
*iov
, int count
,
439 * Obvious optimization: Make cli_calculate_sign_mac work with struct
440 * iovec directly. MD5Update would do that just fine.
443 if ((count
<= 0) || (iov
[0].iov_len
< smb_wct
)) {
444 return NT_STATUS_INVALID_PARAMETER
;
447 buf
= iov_concat(talloc_tos(), iov
, count
);
449 return NT_STATUS_NO_MEMORY
;
452 cli_calculate_sign_mac(cli
, (char *)buf
, seqnum
);
453 memcpy(iov
[0].iov_base
, buf
, iov
[0].iov_len
);
459 static void cli_smb_sent(struct tevent_req
*subreq
);
461 static NTSTATUS
cli_smb_req_iov_send(struct tevent_req
*req
,
462 struct cli_smb_state
*state
,
463 struct iovec
*iov
, int iov_count
)
465 struct tevent_req
*subreq
;
468 if (state
->cli
->fd
== -1) {
469 return NT_STATUS_CONNECTION_INVALID
;
472 if (iov
[0].iov_len
< smb_wct
) {
473 return NT_STATUS_INVALID_PARAMETER
;
476 if (state
->mid
!= 0) {
477 SSVAL(iov
[0].iov_base
, smb_mid
, state
->mid
);
479 SSVAL(iov
[0].iov_base
, smb_mid
, cli_alloc_mid(state
->cli
));
482 smb_setlen((char *)iov
[0].iov_base
, iov_len(iov
, iov_count
) - 4);
484 status
= cli_signv(state
->cli
, iov
, iov_count
, &state
->seqnum
);
486 if (!NT_STATUS_IS_OK(status
)) {
490 if (cli_encryption_on(state
->cli
)) {
493 buf
= (char *)iov_concat(talloc_tos(), iov
, iov_count
);
495 return NT_STATUS_NO_MEMORY
;
497 status
= cli_encrypt_message(state
->cli
, (char *)buf
,
500 if (!NT_STATUS_IS_OK(status
)) {
501 DEBUG(0, ("Error in encrypting client message: %s\n",
505 buf
= (char *)talloc_memdup(state
, enc_buf
,
509 return NT_STATUS_NO_MEMORY
;
511 iov
[0].iov_base
= (void *)buf
;
512 iov
[0].iov_len
= talloc_get_size(buf
);
515 subreq
= writev_send(state
, state
->ev
, state
->cli
->outgoing
,
516 state
->cli
->fd
, false, iov
, iov_count
);
517 if (subreq
== NULL
) {
518 return NT_STATUS_NO_MEMORY
;
520 tevent_req_set_callback(subreq
, cli_smb_sent
, req
);
524 NTSTATUS
cli_smb_req_send(struct tevent_req
*req
)
526 struct cli_smb_state
*state
= tevent_req_data(
527 req
, struct cli_smb_state
);
529 return cli_smb_req_iov_send(req
, state
, state
->iov
, state
->iov_count
);
532 struct tevent_req
*cli_smb_send(TALLOC_CTX
*mem_ctx
,
533 struct event_context
*ev
,
534 struct cli_state
*cli
,
536 uint8_t additional_flags
,
537 uint8_t wct
, uint16_t *vwv
,
539 const uint8_t *bytes
)
541 struct tevent_req
*req
;
545 iov
.iov_base
= CONST_DISCARD(void *, bytes
);
546 iov
.iov_len
= num_bytes
;
548 req
= cli_smb_req_create(mem_ctx
, ev
, cli
, smb_command
,
549 additional_flags
, wct
, vwv
, 1, &iov
);
554 status
= cli_smb_req_send(req
);
555 if (!NT_STATUS_IS_OK(status
)) {
556 tevent_req_nterror(req
, status
);
557 return tevent_req_post(req
, ev
);
562 static void cli_smb_sent(struct tevent_req
*subreq
)
564 struct tevent_req
*req
= tevent_req_callback_data(
565 subreq
, struct tevent_req
);
566 struct cli_smb_state
*state
= tevent_req_data(
567 req
, struct cli_smb_state
);
571 nwritten
= writev_recv(subreq
, &err
);
573 if (nwritten
== -1) {
574 if (state
->cli
->fd
!= -1) {
575 close(state
->cli
->fd
);
578 tevent_req_nterror(req
, map_nt_error_from_unix(err
));
582 switch (CVAL(state
->header
, smb_com
)) {
588 tevent_req_done(req
);
591 if ((CVAL(state
->header
, smb_wct
) == 8) &&
592 (CVAL(state
->vwv
+3, 0) == LOCKING_ANDX_OPLOCK_RELEASE
)) {
594 tevent_req_done(req
);
599 if (!cli_smb_req_set_pending(req
)) {
600 tevent_req_nterror(req
, NT_STATUS_NO_MEMORY
);
605 static void cli_smb_received(struct tevent_req
*subreq
)
607 struct cli_state
*cli
= tevent_req_callback_data(
608 subreq
, struct cli_state
);
609 struct tevent_req
*req
;
610 struct cli_smb_state
*state
;
619 received
= read_smb_recv(subreq
, talloc_tos(), &inbuf
, &err
);
621 if (received
== -1) {
626 status
= map_nt_error_from_unix(err
);
630 if ((IVAL(inbuf
, 4) != 0x424d53ff) /* 0xFF"SMB" */
631 && (SVAL(inbuf
, 4) != 0x45ff)) /* 0xFF"E" */ {
632 DEBUG(10, ("Got non-SMB PDU\n"));
633 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
637 if (cli_encryption_on(cli
) && (CVAL(inbuf
, 0) == 0)) {
638 uint16_t enc_ctx_num
;
640 status
= get_enc_ctx_num(inbuf
, &enc_ctx_num
);
641 if (!NT_STATUS_IS_OK(status
)) {
642 DEBUG(10, ("get_enc_ctx_num returned %s\n",
647 if (enc_ctx_num
!= cli
->trans_enc_state
->enc_ctx_num
) {
648 DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
650 cli
->trans_enc_state
->enc_ctx_num
));
651 status
= NT_STATUS_INVALID_HANDLE
;
655 status
= common_decrypt_buffer(cli
->trans_enc_state
,
657 if (!NT_STATUS_IS_OK(status
)) {
658 DEBUG(10, ("common_decrypt_buffer returned %s\n",
664 mid
= SVAL(inbuf
, smb_mid
);
665 num_pending
= talloc_array_length(cli
->pending
);
667 for (i
=0; i
<num_pending
; i
++) {
668 if (mid
== cli_smb_req_mid(cli
->pending
[i
])) {
672 if (i
== num_pending
) {
673 /* Dump unexpected reply */
678 oplock_break
= false;
682 * Paranoia checks that this is really an oplock break request.
684 oplock_break
= (smb_len(inbuf
) == 51); /* hdr + 8 words */
685 oplock_break
&= ((CVAL(inbuf
, smb_flg
) & FLAG_REPLY
) == 0);
686 oplock_break
&= (CVAL(inbuf
, smb_com
) == SMBlockingX
);
687 oplock_break
&= (SVAL(inbuf
, smb_vwv6
) == 0);
688 oplock_break
&= (SVAL(inbuf
, smb_vwv7
) == 0);
691 /* Dump unexpected reply */
697 req
= cli
->pending
[i
];
698 state
= tevent_req_data(req
, struct cli_smb_state
);
700 if (!oplock_break
/* oplock breaks are not signed */
701 && !cli_check_sign_mac(cli
, (char *)inbuf
, state
->seqnum
+1)) {
702 DEBUG(10, ("cli_check_sign_mac failed\n"));
704 status
= NT_STATUS_ACCESS_DENIED
;
708 if (state
->chained_requests
== NULL
) {
709 state
->inbuf
= talloc_move(state
, &inbuf
);
710 talloc_set_destructor(req
, NULL
);
711 cli_smb_req_destructor(req
);
712 tevent_req_done(req
);
714 struct tevent_req
**chain
= talloc_move(
715 talloc_tos(), &state
->chained_requests
);
716 int num_chained
= talloc_array_length(chain
);
718 for (i
=0; i
<num_chained
; i
++) {
719 state
= tevent_req_data(chain
[i
], struct
721 state
->inbuf
= inbuf
;
722 state
->chain_num
= i
;
723 tevent_req_done(chain
[i
]);
729 if (talloc_array_length(cli
->pending
) > 0) {
731 * Set up another read request for the other pending cli_smb
734 state
= tevent_req_data(cli
->pending
[0], struct cli_smb_state
);
735 subreq
= read_smb_send(cli
->pending
, state
->ev
, cli
->fd
);
736 if (subreq
== NULL
) {
737 status
= NT_STATUS_NO_MEMORY
;
740 tevent_req_set_callback(subreq
, cli_smb_received
, cli
);
745 * Cancel all pending requests. We don't do a for-loop walking
746 * cli->pending because that array changes in
747 * cli_smb_req_destructor().
749 while (talloc_array_length(cli
->pending
) > 0) {
750 req
= cli
->pending
[0];
751 talloc_set_destructor(req
, NULL
);
752 cli_smb_req_destructor(req
);
753 tevent_req_nterror(req
, status
);
757 NTSTATUS
cli_smb_recv(struct tevent_req
*req
, uint8_t min_wct
,
758 uint8_t *pwct
, uint16_t **pvwv
,
759 uint32_t *pnum_bytes
, uint8_t **pbytes
)
761 struct cli_smb_state
*state
= tevent_req_data(
762 req
, struct cli_smb_state
);
763 NTSTATUS status
= NT_STATUS_OK
;
766 size_t wct_ofs
, bytes_offset
;
769 if (tevent_req_is_nterror(req
, &status
)) {
773 if (state
->inbuf
== NULL
) {
774 /* This was a request without a reply */
779 cmd
= CVAL(state
->inbuf
, smb_com
);
781 for (i
=0; i
<state
->chain_num
; i
++) {
782 if (i
< state
->chain_num
-1) {
784 return NT_STATUS_REQUEST_ABORTED
;
786 if (!is_andx_req(cmd
)) {
787 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
791 if (!have_andx_command((char *)state
->inbuf
, wct_ofs
)) {
793 * This request was not completed because a previous
794 * request in the chain had received an error.
796 return NT_STATUS_REQUEST_ABORTED
;
799 wct_ofs
= SVAL(state
->inbuf
, wct_ofs
+ 3);
802 * Skip the all-present length field. No overflow, we've just
803 * put a 16-bit value into a size_t.
807 if (wct_ofs
+2 > talloc_get_size(state
->inbuf
)) {
808 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
811 cmd
= CVAL(state
->inbuf
, wct_ofs
+ 1);
814 status
= cli_pull_error((char *)state
->inbuf
);
816 if (!have_andx_command((char *)state
->inbuf
, wct_ofs
)) {
818 if ((cmd
== SMBsesssetupX
)
820 status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
822 * NT_STATUS_MORE_PROCESSING_REQUIRED is a
823 * valid return code for session setup
828 if (NT_STATUS_IS_ERR(status
)) {
830 * The last command takes the error code. All
831 * further commands down the requested chain
832 * will get a NT_STATUS_REQUEST_ABORTED.
840 wct
= CVAL(state
->inbuf
, wct_ofs
);
841 bytes_offset
= wct_ofs
+ 1 + wct
* sizeof(uint16_t);
842 num_bytes
= SVAL(state
->inbuf
, bytes_offset
);
845 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
849 * wct_ofs is a 16-bit value plus 4, wct is a 8-bit value, num_bytes
850 * is a 16-bit value. So bytes_offset being size_t should be far from
853 if ((bytes_offset
+ 2 > talloc_get_size(state
->inbuf
))
854 || (bytes_offset
> 0xffff)) {
855 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
862 *pvwv
= (uint16_t *)(state
->inbuf
+ wct_ofs
+ 1);
864 if (pnum_bytes
!= NULL
) {
865 *pnum_bytes
= num_bytes
;
867 if (pbytes
!= NULL
) {
868 *pbytes
= (uint8_t *)state
->inbuf
+ bytes_offset
+ 2;
874 size_t cli_smb_wct_ofs(struct tevent_req
**reqs
, int num_reqs
)
879 wct_ofs
= smb_wct
- 4;
881 for (i
=0; i
<num_reqs
; i
++) {
882 struct cli_smb_state
*state
;
883 state
= tevent_req_data(reqs
[i
], struct cli_smb_state
);
884 wct_ofs
+= iov_len(state
->iov
+1, state
->iov_count
-1);
885 wct_ofs
= (wct_ofs
+ 3) & ~3;
890 NTSTATUS
cli_smb_chain_send(struct tevent_req
**reqs
, int num_reqs
)
892 struct cli_smb_state
*first_state
= tevent_req_data(
893 reqs
[0], struct cli_smb_state
);
894 struct cli_smb_state
*last_state
= tevent_req_data(
895 reqs
[num_reqs
-1], struct cli_smb_state
);
896 struct cli_smb_state
*state
;
898 size_t chain_padding
= 0;
900 struct iovec
*iov
= NULL
;
901 struct iovec
*this_iov
;
905 for (i
=0; i
<num_reqs
; i
++) {
906 state
= tevent_req_data(reqs
[i
], struct cli_smb_state
);
907 iovlen
+= state
->iov_count
;
910 iov
= talloc_array(last_state
, struct iovec
, iovlen
);
912 return NT_STATUS_NO_MEMORY
;
915 first_state
->chained_requests
= (struct tevent_req
**)talloc_memdup(
916 last_state
, reqs
, sizeof(*reqs
) * num_reqs
);
917 if (first_state
->chained_requests
== NULL
) {
919 return NT_STATUS_NO_MEMORY
;
922 wct_offset
= smb_wct
- 4;
925 for (i
=0; i
<num_reqs
; i
++) {
926 size_t next_padding
= 0;
929 state
= tevent_req_data(reqs
[i
], struct cli_smb_state
);
931 if (i
< num_reqs
-1) {
932 if (!is_andx_req(CVAL(state
->header
, smb_com
))
933 || CVAL(state
->header
, smb_wct
) < 2) {
935 TALLOC_FREE(first_state
->chained_requests
);
936 return NT_STATUS_INVALID_PARAMETER
;
940 wct_offset
+= iov_len(state
->iov
+1, state
->iov_count
-1) + 1;
941 if ((wct_offset
% 4) != 0) {
942 next_padding
= 4 - (wct_offset
% 4);
944 wct_offset
+= next_padding
;
947 if (i
< num_reqs
-1) {
948 struct cli_smb_state
*next_state
= tevent_req_data(
949 reqs
[i
+1], struct cli_smb_state
);
950 SCVAL(vwv
+0, 0, CVAL(next_state
->header
, smb_com
));
952 SSVAL(vwv
+1, 0, wct_offset
);
953 } else if (is_andx_req(CVAL(state
->header
, smb_com
))) {
954 /* properly end the chain */
955 SCVAL(vwv
+0, 0, 0xff);
956 SCVAL(vwv
+0, 1, 0xff);
961 this_iov
[0] = state
->iov
[0];
964 * This one is a bit subtle. We have to add
965 * chain_padding bytes between the requests, and we
966 * have to also include the wct field of the
967 * subsequent requests. We use the subsequent header
968 * for the padding, it contains the wct field in its
971 this_iov
[0].iov_len
= chain_padding
+1;
972 this_iov
[0].iov_base
= (void *)&state
->header
[
973 sizeof(state
->header
) - this_iov
[0].iov_len
];
974 memset(this_iov
[0].iov_base
, 0, this_iov
[0].iov_len
-1);
976 memcpy(this_iov
+1, state
->iov
+1,
977 sizeof(struct iovec
) * (state
->iov_count
-1));
978 this_iov
+= state
->iov_count
;
979 chain_padding
= next_padding
;
982 status
= cli_smb_req_iov_send(reqs
[0], last_state
, iov
, iovlen
);
983 if (!NT_STATUS_IS_OK(status
)) {
985 TALLOC_FREE(first_state
->chained_requests
);
992 uint8_t *cli_smb_inbuf(struct tevent_req
*req
)
994 struct cli_smb_state
*state
= tevent_req_data(
995 req
, struct cli_smb_state
);
999 bool cli_has_async_calls(struct cli_state
*cli
)
1001 return ((tevent_queue_length(cli
->outgoing
) != 0)
1002 || (talloc_array_length(cli
->pending
) != 0));
1005 struct cli_smb_oplock_break_waiter_state
{
1010 static void cli_smb_oplock_break_waiter_done(struct tevent_req
*subreq
);
1012 struct tevent_req
*cli_smb_oplock_break_waiter_send(TALLOC_CTX
*mem_ctx
,
1013 struct event_context
*ev
,
1014 struct cli_state
*cli
)
1016 struct tevent_req
*req
, *subreq
;
1017 struct cli_smb_oplock_break_waiter_state
*state
;
1018 struct cli_smb_state
*smb_state
;
1020 req
= tevent_req_create(mem_ctx
, &state
,
1021 struct cli_smb_oplock_break_waiter_state
);
1027 * Create a fake SMB request that we will never send out. This is only
1028 * used to be set into the pending queue with the right mid.
1030 subreq
= cli_smb_req_create(mem_ctx
, ev
, cli
, 0, 0, 0, NULL
, 0, NULL
);
1031 if (tevent_req_nomem(subreq
, req
)) {
1032 return tevent_req_post(req
, ev
);
1034 smb_state
= tevent_req_data(subreq
, struct cli_smb_state
);
1035 SSVAL(smb_state
->header
, smb_mid
, 0xffff);
1037 if (!cli_smb_req_set_pending(subreq
)) {
1038 tevent_req_nterror(req
, NT_STATUS_NO_MEMORY
);
1039 return tevent_req_post(req
, ev
);
1041 tevent_req_set_callback(subreq
, cli_smb_oplock_break_waiter_done
, req
);
1045 static void cli_smb_oplock_break_waiter_done(struct tevent_req
*subreq
)
1047 struct tevent_req
*req
= tevent_req_callback_data(
1048 subreq
, struct tevent_req
);
1049 struct cli_smb_oplock_break_waiter_state
*state
= tevent_req_data(
1050 req
, struct cli_smb_oplock_break_waiter_state
);
1057 status
= cli_smb_recv(subreq
, 8, &wct
, &vwv
, &num_bytes
, &bytes
);
1058 if (!NT_STATUS_IS_OK(status
)) {
1059 TALLOC_FREE(subreq
);
1060 tevent_req_nterror(req
, status
);
1063 state
->fnum
= SVAL(vwv
+2, 0);
1064 state
->level
= CVAL(vwv
+3, 1);
1065 tevent_req_done(req
);
1068 NTSTATUS
cli_smb_oplock_break_waiter_recv(struct tevent_req
*req
,
1072 struct cli_smb_oplock_break_waiter_state
*state
= tevent_req_data(
1073 req
, struct cli_smb_oplock_break_waiter_state
);
1076 if (tevent_req_is_nterror(req
, &status
)) {
1079 *pfnum
= state
->fnum
;
1080 *plevel
= state
->level
;
1081 return NT_STATUS_OK
;