2 Unix SMB/CIFS implementation.
3 Infrastructure for async SMB client requests
4 Copyright (C) Volker Lendecke 2008
5 Copyright (C) Stefan Metzmacher 2011
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "system/network.h"
23 #include "../lib/async_req/async_sock.h"
24 #include "../lib/util/tevent_ntstatus.h"
25 #include "../lib/util/tevent_unix.h"
26 #include "lib/util/util_net.h"
27 #include "lib/util/dlinklist.h"
28 #include "../libcli/smb/smb_common.h"
29 #include "../libcli/smb/smb_seal.h"
30 #include "../libcli/smb/smb_signing.h"
31 #include "../libcli/smb/read_smb.h"
32 #include "smbXcli_base.h"
33 #include "librpc/ndr/libndr.h"
37 struct smbXcli_session
;
43 struct sockaddr_storage local_ss
;
44 struct sockaddr_storage remote_ss
;
45 const char *remote_name
;
47 struct tevent_queue
*outgoing
;
48 struct tevent_req
**pending
;
49 struct tevent_req
*read_smb_req
;
51 enum protocol_types protocol
;
54 bool mandatory_signing
;
57 * The incoming dispatch function should return:
58 * - NT_STATUS_RETRY, if more incoming PDUs are expected.
59 * - NT_STATUS_OK, if no more processing is desired, e.g.
60 * the dispatch function called
62 * - All other return values disconnect the connection.
64 NTSTATUS (*dispatch_incoming
)(struct smbXcli_conn
*conn
,
70 uint32_t capabilities
;
75 uint32_t capabilities
;
78 uint16_t security_mode
;
87 const char *workgroup
;
93 uint32_t capabilities
;
98 struct smb_signing_state
*signing
;
99 struct smb_trans_enc_state
*trans_enc
;
101 struct tevent_req
*read_braw_req
;
106 uint32_t capabilities
;
107 uint16_t security_mode
;
112 uint32_t capabilities
;
113 uint16_t security_mode
;
115 uint32_t max_trans_size
;
116 uint32_t max_read_size
;
117 uint32_t max_write_size
;
124 uint16_t cur_credits
;
125 uint16_t max_credits
;
128 struct smbXcli_session
*sessions
;
131 struct smb2cli_session
{
133 uint16_t session_flags
;
134 DATA_BLOB application_key
;
135 DATA_BLOB signing_key
;
138 DATA_BLOB encryption_key
;
139 DATA_BLOB decryption_key
;
142 uint16_t channel_sequence
;
145 struct smbXcli_session
{
146 struct smbXcli_session
*prev
, *next
;
147 struct smbXcli_conn
*conn
;
151 DATA_BLOB application_key
;
155 struct smb2cli_session
*smb2
;
158 DATA_BLOB signing_key
;
162 * this should be a short term hack
163 * until the upper layers have implemented
166 bool disconnect_expired
;
169 struct smbXcli_tcon
{
172 uint16_t optional_support
;
173 uint32_t maximal_access
;
174 uint32_t guest_maximal_access
;
183 uint32_t capabilities
;
184 uint32_t maximal_access
;
189 struct smbXcli_req_state
{
190 struct tevent_context
*ev
;
191 struct smbXcli_conn
*conn
;
192 struct smbXcli_session
*session
; /* maybe NULL */
193 struct smbXcli_tcon
*tcon
; /* maybe NULL */
195 uint8_t length_hdr
[4];
202 /* Space for the header including the wct */
203 uint8_t hdr
[HDR_VWV
];
206 * For normal requests, smb1cli_req_send chooses a mid.
207 * SecondaryV trans requests need to use the mid of the primary
208 * request, so we need a place to store it.
209 * Assume it is set if != 0.
214 uint8_t bytecount_buf
[2];
216 #define MAX_SMB_IOV 10
217 /* length_hdr, hdr, words, byte_count, buffers */
218 struct iovec iov
[1 + 3 + MAX_SMB_IOV
];
223 struct tevent_req
**chained_requests
;
226 NTSTATUS recv_status
;
227 /* always an array of 3 talloc elements */
228 struct iovec
*recv_iov
;
232 const uint8_t *fixed
;
237 uint8_t transform
[SMB2_TF_HDR_SIZE
];
238 uint8_t hdr
[SMB2_HDR_BODY
];
239 uint8_t pad
[7]; /* padding space for compounding */
242 * always an array of 3 talloc elements
243 * (without a SMB2_TRANSFORM header!)
247 struct iovec
*recv_iov
;
249 uint16_t credit_charge
;
253 uint64_t encryption_session_id
;
255 bool signing_skipped
;
261 static int smbXcli_conn_destructor(struct smbXcli_conn
*conn
)
264 * NT_STATUS_OK, means we do not notify the callers
266 smbXcli_conn_disconnect(conn
, NT_STATUS_OK
);
268 while (conn
->sessions
) {
269 conn
->sessions
->conn
= NULL
;
270 DLIST_REMOVE(conn
->sessions
, conn
->sessions
);
273 if (conn
->smb1
.trans_enc
) {
274 TALLOC_FREE(conn
->smb1
.trans_enc
);
280 struct smbXcli_conn
*smbXcli_conn_create(TALLOC_CTX
*mem_ctx
,
282 const char *remote_name
,
283 enum smb_signing_setting signing_state
,
284 uint32_t smb1_capabilities
,
285 struct GUID
*client_guid
,
286 uint32_t smb2_capabilities
)
288 struct smbXcli_conn
*conn
= NULL
;
290 struct sockaddr
*sa
= NULL
;
294 conn
= talloc_zero(mem_ctx
, struct smbXcli_conn
);
300 conn
->write_fd
= dup(fd
);
301 if (conn
->write_fd
== -1) {
305 conn
->remote_name
= talloc_strdup(conn
, remote_name
);
306 if (conn
->remote_name
== NULL
) {
311 ss
= (void *)&conn
->local_ss
;
312 sa
= (struct sockaddr
*)ss
;
313 sa_length
= sizeof(conn
->local_ss
);
314 ret
= getsockname(fd
, sa
, &sa_length
);
318 ss
= (void *)&conn
->remote_ss
;
319 sa
= (struct sockaddr
*)ss
;
320 sa_length
= sizeof(conn
->remote_ss
);
321 ret
= getpeername(fd
, sa
, &sa_length
);
326 conn
->outgoing
= tevent_queue_create(conn
, "smbXcli_outgoing");
327 if (conn
->outgoing
== NULL
) {
330 conn
->pending
= NULL
;
332 conn
->protocol
= PROTOCOL_NONE
;
334 switch (signing_state
) {
335 case SMB_SIGNING_OFF
:
337 conn
->allow_signing
= false;
338 conn
->desire_signing
= false;
339 conn
->mandatory_signing
= false;
341 case SMB_SIGNING_DEFAULT
:
342 case SMB_SIGNING_IF_REQUIRED
:
343 /* if the server requires it */
344 conn
->allow_signing
= true;
345 conn
->desire_signing
= false;
346 conn
->mandatory_signing
= false;
348 case SMB_SIGNING_REQUIRED
:
350 conn
->allow_signing
= true;
351 conn
->desire_signing
= true;
352 conn
->mandatory_signing
= true;
356 conn
->smb1
.client
.capabilities
= smb1_capabilities
;
357 conn
->smb1
.client
.max_xmit
= UINT16_MAX
;
359 conn
->smb1
.capabilities
= conn
->smb1
.client
.capabilities
;
360 conn
->smb1
.max_xmit
= 1024;
364 /* initialise signing */
365 conn
->smb1
.signing
= smb_signing_init(conn
,
367 conn
->desire_signing
,
368 conn
->mandatory_signing
);
369 if (!conn
->smb1
.signing
) {
373 conn
->smb2
.client
.security_mode
= SMB2_NEGOTIATE_SIGNING_ENABLED
;
374 if (conn
->mandatory_signing
) {
375 conn
->smb2
.client
.security_mode
|= SMB2_NEGOTIATE_SIGNING_REQUIRED
;
378 conn
->smb2
.client
.guid
= *client_guid
;
380 conn
->smb2
.client
.capabilities
= smb2_capabilities
;
382 conn
->smb2
.cur_credits
= 1;
383 conn
->smb2
.max_credits
= 0;
385 talloc_set_destructor(conn
, smbXcli_conn_destructor
);
389 if (conn
->write_fd
!= -1) {
390 close(conn
->write_fd
);
396 bool smbXcli_conn_is_connected(struct smbXcli_conn
*conn
)
402 if (conn
->read_fd
== -1) {
409 enum protocol_types
smbXcli_conn_protocol(struct smbXcli_conn
*conn
)
411 return conn
->protocol
;
414 bool smbXcli_conn_use_unicode(struct smbXcli_conn
*conn
)
416 if (conn
->protocol
>= PROTOCOL_SMB2_02
) {
420 if (conn
->smb1
.capabilities
& CAP_UNICODE
) {
427 void smbXcli_conn_set_sockopt(struct smbXcli_conn
*conn
, const char *options
)
429 set_socket_options(conn
->read_fd
, options
);
432 const struct sockaddr_storage
*smbXcli_conn_local_sockaddr(struct smbXcli_conn
*conn
)
434 return &conn
->local_ss
;
437 const struct sockaddr_storage
*smbXcli_conn_remote_sockaddr(struct smbXcli_conn
*conn
)
439 return &conn
->remote_ss
;
442 const char *smbXcli_conn_remote_name(struct smbXcli_conn
*conn
)
444 return conn
->remote_name
;
447 uint16_t smbXcli_conn_max_requests(struct smbXcli_conn
*conn
)
449 if (conn
->protocol
>= PROTOCOL_SMB2_02
) {
456 return conn
->smb1
.server
.max_mux
;
459 NTTIME
smbXcli_conn_server_system_time(struct smbXcli_conn
*conn
)
461 if (conn
->protocol
>= PROTOCOL_SMB2_02
) {
462 return conn
->smb2
.server
.system_time
;
465 return conn
->smb1
.server
.system_time
;
468 const DATA_BLOB
*smbXcli_conn_server_gss_blob(struct smbXcli_conn
*conn
)
470 if (conn
->protocol
>= PROTOCOL_SMB2_02
) {
471 return &conn
->smb2
.server
.gss_blob
;
474 return &conn
->smb1
.server
.gss_blob
;
477 const struct GUID
*smbXcli_conn_server_guid(struct smbXcli_conn
*conn
)
479 if (conn
->protocol
>= PROTOCOL_SMB2_02
) {
480 return &conn
->smb2
.server
.guid
;
483 return &conn
->smb1
.server
.guid
;
486 struct smbXcli_conn_samba_suicide_state
{
487 struct smbXcli_conn
*conn
;
492 static void smbXcli_conn_samba_suicide_done(struct tevent_req
*subreq
);
494 struct tevent_req
*smbXcli_conn_samba_suicide_send(TALLOC_CTX
*mem_ctx
,
495 struct tevent_context
*ev
,
496 struct smbXcli_conn
*conn
,
499 struct tevent_req
*req
, *subreq
;
500 struct smbXcli_conn_samba_suicide_state
*state
;
502 req
= tevent_req_create(mem_ctx
, &state
,
503 struct smbXcli_conn_samba_suicide_state
);
508 SIVAL(state
->buf
, 4, 0x74697865);
509 SCVAL(state
->buf
, 8, exitcode
);
510 _smb_setlen_nbt(state
->buf
, sizeof(state
->buf
)-4);
512 state
->iov
.iov_base
= state
->buf
;
513 state
->iov
.iov_len
= sizeof(state
->buf
);
515 subreq
= writev_send(state
, ev
, conn
->outgoing
, conn
->write_fd
,
516 false, &state
->iov
, 1);
517 if (tevent_req_nomem(subreq
, req
)) {
518 return tevent_req_post(req
, ev
);
520 tevent_req_set_callback(subreq
, smbXcli_conn_samba_suicide_done
, req
);
524 static void smbXcli_conn_samba_suicide_done(struct tevent_req
*subreq
)
526 struct tevent_req
*req
= tevent_req_callback_data(
527 subreq
, struct tevent_req
);
528 struct smbXcli_conn_samba_suicide_state
*state
= tevent_req_data(
529 req
, struct smbXcli_conn_samba_suicide_state
);
533 nwritten
= writev_recv(subreq
, &err
);
535 if (nwritten
== -1) {
536 NTSTATUS status
= map_nt_error_from_unix_common(err
);
537 smbXcli_conn_disconnect(state
->conn
, status
);
540 tevent_req_done(req
);
543 NTSTATUS
smbXcli_conn_samba_suicide_recv(struct tevent_req
*req
)
545 return tevent_req_simple_recv_ntstatus(req
);
548 NTSTATUS
smbXcli_conn_samba_suicide(struct smbXcli_conn
*conn
,
551 TALLOC_CTX
*frame
= talloc_stackframe();
552 struct tevent_context
*ev
;
553 struct tevent_req
*req
;
554 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
557 if (smbXcli_conn_has_async_calls(conn
)) {
559 * Can't use sync call while an async call is in flight
561 status
= NT_STATUS_INVALID_PARAMETER_MIX
;
564 ev
= samba_tevent_context_init(frame
);
568 req
= smbXcli_conn_samba_suicide_send(frame
, ev
, conn
, exitcode
);
572 ok
= tevent_req_poll(req
, ev
);
574 status
= map_nt_error_from_unix_common(errno
);
577 status
= smbXcli_conn_samba_suicide_recv(req
);
583 uint32_t smb1cli_conn_capabilities(struct smbXcli_conn
*conn
)
585 return conn
->smb1
.capabilities
;
588 uint32_t smb1cli_conn_max_xmit(struct smbXcli_conn
*conn
)
590 return conn
->smb1
.max_xmit
;
593 uint32_t smb1cli_conn_server_session_key(struct smbXcli_conn
*conn
)
595 return conn
->smb1
.server
.session_key
;
598 const uint8_t *smb1cli_conn_server_challenge(struct smbXcli_conn
*conn
)
600 return conn
->smb1
.server
.challenge
;
603 uint16_t smb1cli_conn_server_security_mode(struct smbXcli_conn
*conn
)
605 return conn
->smb1
.server
.security_mode
;
608 bool smb1cli_conn_server_readbraw(struct smbXcli_conn
*conn
)
610 return conn
->smb1
.server
.readbraw
;
613 bool smb1cli_conn_server_writebraw(struct smbXcli_conn
*conn
)
615 return conn
->smb1
.server
.writebraw
;
618 bool smb1cli_conn_server_lockread(struct smbXcli_conn
*conn
)
620 return conn
->smb1
.server
.lockread
;
623 bool smb1cli_conn_server_writeunlock(struct smbXcli_conn
*conn
)
625 return conn
->smb1
.server
.writeunlock
;
628 int smb1cli_conn_server_time_zone(struct smbXcli_conn
*conn
)
630 return conn
->smb1
.server
.time_zone
;
633 bool smb1cli_conn_activate_signing(struct smbXcli_conn
*conn
,
634 const DATA_BLOB user_session_key
,
635 const DATA_BLOB response
)
637 return smb_signing_activate(conn
->smb1
.signing
,
642 bool smb1cli_conn_check_signing(struct smbXcli_conn
*conn
,
643 const uint8_t *buf
, uint32_t seqnum
)
645 const uint8_t *hdr
= buf
+ NBT_HDR_SIZE
;
646 size_t len
= smb_len_nbt(buf
);
648 return smb_signing_check_pdu(conn
->smb1
.signing
, hdr
, len
, seqnum
);
651 bool smb1cli_conn_signing_is_active(struct smbXcli_conn
*conn
)
653 return smb_signing_is_active(conn
->smb1
.signing
);
656 void smb1cli_conn_set_encryption(struct smbXcli_conn
*conn
,
657 struct smb_trans_enc_state
*es
)
659 /* Replace the old state, if any. */
660 if (conn
->smb1
.trans_enc
) {
661 TALLOC_FREE(conn
->smb1
.trans_enc
);
663 conn
->smb1
.trans_enc
= es
;
666 bool smb1cli_conn_encryption_on(struct smbXcli_conn
*conn
)
668 return common_encryption_on(conn
->smb1
.trans_enc
);
672 static NTSTATUS
smb1cli_pull_raw_error(const uint8_t *hdr
)
674 uint32_t flags2
= SVAL(hdr
, HDR_FLG2
);
675 NTSTATUS status
= NT_STATUS(IVAL(hdr
, HDR_RCLS
));
677 if (NT_STATUS_IS_OK(status
)) {
681 if (flags2
& FLAGS2_32_BIT_ERROR_CODES
) {
685 return NT_STATUS_DOS(CVAL(hdr
, HDR_RCLS
), SVAL(hdr
, HDR_ERR
));
689 * Is the SMB command able to hold an AND_X successor
690 * @param[in] cmd The SMB command in question
691 * @retval Can we add a chained request after "cmd"?
693 bool smb1cli_is_andx_req(uint8_t cmd
)
713 static uint16_t smb1cli_alloc_mid(struct smbXcli_conn
*conn
)
715 size_t num_pending
= talloc_array_length(conn
->pending
);
721 result
= conn
->smb1
.mid
++;
722 if ((result
== 0) || (result
== 0xffff)) {
726 for (i
=0; i
<num_pending
; i
++) {
727 if (result
== smb1cli_req_mid(conn
->pending
[i
])) {
732 if (i
== num_pending
) {
738 void smbXcli_req_unset_pending(struct tevent_req
*req
)
740 struct smbXcli_req_state
*state
=
742 struct smbXcli_req_state
);
743 struct smbXcli_conn
*conn
= state
->conn
;
744 size_t num_pending
= talloc_array_length(conn
->pending
);
747 if (state
->smb1
.mid
!= 0) {
749 * This is a [nt]trans[2] request which waits
750 * for more than one reply.
755 talloc_set_destructor(req
, NULL
);
757 if (num_pending
== 1) {
759 * The pending read_smb tevent_req is a child of
760 * conn->pending. So if nothing is pending anymore, we need to
761 * delete the socket read fde.
763 TALLOC_FREE(conn
->pending
);
764 conn
->read_smb_req
= NULL
;
768 for (i
=0; i
<num_pending
; i
++) {
769 if (req
== conn
->pending
[i
]) {
773 if (i
== num_pending
) {
775 * Something's seriously broken. Just returning here is the
776 * right thing nevertheless, the point of this routine is to
777 * remove ourselves from conn->pending.
783 * Remove ourselves from the conn->pending array
785 for (; i
< (num_pending
- 1); i
++) {
786 conn
->pending
[i
] = conn
->pending
[i
+1];
790 * No NULL check here, we're shrinking by sizeof(void *), and
791 * talloc_realloc just adjusts the size for this.
793 conn
->pending
= talloc_realloc(NULL
, conn
->pending
, struct tevent_req
*,
798 static int smbXcli_req_destructor(struct tevent_req
*req
)
800 struct smbXcli_req_state
*state
=
802 struct smbXcli_req_state
);
805 * Make sure we really remove it from
806 * the pending array on destruction.
809 smbXcli_req_unset_pending(req
);
813 static bool smb1cli_req_cancel(struct tevent_req
*req
);
814 static bool smb2cli_req_cancel(struct tevent_req
*req
);
816 static bool smbXcli_req_cancel(struct tevent_req
*req
)
818 struct smbXcli_req_state
*state
=
820 struct smbXcli_req_state
);
822 if (!smbXcli_conn_is_connected(state
->conn
)) {
826 if (state
->conn
->protocol
== PROTOCOL_NONE
) {
830 if (state
->conn
->protocol
>= PROTOCOL_SMB2_02
) {
831 return smb2cli_req_cancel(req
);
834 return smb1cli_req_cancel(req
);
837 static bool smbXcli_conn_receive_next(struct smbXcli_conn
*conn
);
839 bool smbXcli_req_set_pending(struct tevent_req
*req
)
841 struct smbXcli_req_state
*state
=
843 struct smbXcli_req_state
);
844 struct smbXcli_conn
*conn
;
845 struct tevent_req
**pending
;
850 if (!smbXcli_conn_is_connected(conn
)) {
854 num_pending
= talloc_array_length(conn
->pending
);
856 pending
= talloc_realloc(conn
, conn
->pending
, struct tevent_req
*,
858 if (pending
== NULL
) {
861 pending
[num_pending
] = req
;
862 conn
->pending
= pending
;
863 talloc_set_destructor(req
, smbXcli_req_destructor
);
864 tevent_req_set_cancel_fn(req
, smbXcli_req_cancel
);
866 if (!smbXcli_conn_receive_next(conn
)) {
868 * the caller should notify the current request
870 * And all other pending requests get notified
871 * by smbXcli_conn_disconnect().
873 smbXcli_req_unset_pending(req
);
874 smbXcli_conn_disconnect(conn
, NT_STATUS_NO_MEMORY
);
881 static void smbXcli_conn_received(struct tevent_req
*subreq
);
883 static bool smbXcli_conn_receive_next(struct smbXcli_conn
*conn
)
885 size_t num_pending
= talloc_array_length(conn
->pending
);
886 struct tevent_req
*req
;
887 struct smbXcli_req_state
*state
;
889 if (conn
->read_smb_req
!= NULL
) {
893 if (num_pending
== 0) {
894 if (conn
->smb2
.mid
< UINT64_MAX
) {
895 /* no more pending requests, so we are done for now */
900 * If there are no more SMB2 requests possible,
901 * because we are out of message ids,
902 * we need to disconnect.
904 smbXcli_conn_disconnect(conn
, NT_STATUS_CONNECTION_ABORTED
);
908 req
= conn
->pending
[0];
909 state
= tevent_req_data(req
, struct smbXcli_req_state
);
912 * We're the first ones, add the read_smb request that waits for the
913 * answer from the server
915 conn
->read_smb_req
= read_smb_send(conn
->pending
,
918 if (conn
->read_smb_req
== NULL
) {
921 tevent_req_set_callback(conn
->read_smb_req
, smbXcli_conn_received
, conn
);
925 void smbXcli_conn_disconnect(struct smbXcli_conn
*conn
, NTSTATUS status
)
927 struct smbXcli_session
*session
;
929 tevent_queue_stop(conn
->outgoing
);
931 if (conn
->read_fd
!= -1) {
932 close(conn
->read_fd
);
934 if (conn
->write_fd
!= -1) {
935 close(conn
->write_fd
);
940 session
= conn
->sessions
;
941 if (talloc_array_length(conn
->pending
) == 0) {
943 * if we do not have pending requests
944 * there is no need to update the channel_sequence
948 for (; session
; session
= session
->next
) {
949 smb2cli_session_increment_channel_sequence(session
);
953 * Cancel all pending requests. We do not do a for-loop walking
954 * conn->pending because that array changes in
955 * smbXcli_req_unset_pending.
957 while (talloc_array_length(conn
->pending
) > 0) {
958 struct tevent_req
*req
;
959 struct smbXcli_req_state
*state
;
960 struct tevent_req
**chain
;
964 req
= conn
->pending
[0];
965 state
= tevent_req_data(req
, struct smbXcli_req_state
);
967 if (state
->smb1
.chained_requests
== NULL
) {
969 * We're dead. No point waiting for trans2
974 smbXcli_req_unset_pending(req
);
976 if (NT_STATUS_IS_OK(status
)) {
977 /* do not notify the callers */
982 * we need to defer the callback, because we may notify
983 * more then one caller.
985 tevent_req_defer_callback(req
, state
->ev
);
986 tevent_req_nterror(req
, status
);
990 chain
= talloc_move(conn
, &state
->smb1
.chained_requests
);
991 num_chained
= talloc_array_length(chain
);
993 for (i
=0; i
<num_chained
; i
++) {
995 state
= tevent_req_data(req
, struct smbXcli_req_state
);
998 * We're dead. No point waiting for trans2
1001 state
->smb1
.mid
= 0;
1003 smbXcli_req_unset_pending(req
);
1005 if (NT_STATUS_IS_OK(status
)) {
1006 /* do not notify the callers */
1011 * we need to defer the callback, because we may notify
1012 * more than one caller.
1014 tevent_req_defer_callback(req
, state
->ev
);
1015 tevent_req_nterror(req
, status
);
1022 * Fetch a smb request's mid. Only valid after the request has been sent by
1023 * smb1cli_req_send().
1025 uint16_t smb1cli_req_mid(struct tevent_req
*req
)
1027 struct smbXcli_req_state
*state
=
1028 tevent_req_data(req
,
1029 struct smbXcli_req_state
);
1031 if (state
->smb1
.mid
!= 0) {
1032 return state
->smb1
.mid
;
1035 return SVAL(state
->smb1
.hdr
, HDR_MID
);
1038 void smb1cli_req_set_mid(struct tevent_req
*req
, uint16_t mid
)
1040 struct smbXcli_req_state
*state
=
1041 tevent_req_data(req
,
1042 struct smbXcli_req_state
);
1044 state
->smb1
.mid
= mid
;
1047 uint32_t smb1cli_req_seqnum(struct tevent_req
*req
)
1049 struct smbXcli_req_state
*state
=
1050 tevent_req_data(req
,
1051 struct smbXcli_req_state
);
1053 return state
->smb1
.seqnum
;
1056 void smb1cli_req_set_seqnum(struct tevent_req
*req
, uint32_t seqnum
)
1058 struct smbXcli_req_state
*state
=
1059 tevent_req_data(req
,
1060 struct smbXcli_req_state
);
1062 state
->smb1
.seqnum
= seqnum
;
1065 static size_t smbXcli_iov_len(const struct iovec
*iov
, int count
)
1069 for (i
=0; i
<count
; i
++) {
1070 result
+= iov
[i
].iov_len
;
1075 static uint8_t *smbXcli_iov_concat(TALLOC_CTX
*mem_ctx
,
1076 const struct iovec
*iov
,
1079 size_t len
= smbXcli_iov_len(iov
, count
);
1084 buf
= talloc_array(mem_ctx
, uint8_t, len
);
1089 for (i
=0; i
<count
; i
++) {
1090 memcpy(buf
+copied
, iov
[i
].iov_base
, iov
[i
].iov_len
);
1091 copied
+= iov
[i
].iov_len
;
1096 static void smb1cli_req_flags(enum protocol_types protocol
,
1097 uint32_t smb1_capabilities
,
1098 uint8_t smb_command
,
1099 uint8_t additional_flags
,
1100 uint8_t clear_flags
,
1102 uint16_t additional_flags2
,
1103 uint16_t clear_flags2
,
1107 uint16_t flags2
= 0;
1109 if (protocol
>= PROTOCOL_LANMAN1
) {
1110 flags
|= FLAG_CASELESS_PATHNAMES
;
1111 flags
|= FLAG_CANONICAL_PATHNAMES
;
1114 if (protocol
>= PROTOCOL_LANMAN2
) {
1115 flags2
|= FLAGS2_LONG_PATH_COMPONENTS
;
1116 flags2
|= FLAGS2_EXTENDED_ATTRIBUTES
;
1119 if (protocol
>= PROTOCOL_NT1
) {
1120 flags2
|= FLAGS2_IS_LONG_NAME
;
1122 if (smb1_capabilities
& CAP_UNICODE
) {
1123 flags2
|= FLAGS2_UNICODE_STRINGS
;
1125 if (smb1_capabilities
& CAP_STATUS32
) {
1126 flags2
|= FLAGS2_32_BIT_ERROR_CODES
;
1128 if (smb1_capabilities
& CAP_EXTENDED_SECURITY
) {
1129 flags2
|= FLAGS2_EXTENDED_SECURITY
;
1133 flags
|= additional_flags
;
1134 flags
&= ~clear_flags
;
1135 flags2
|= additional_flags2
;
1136 flags2
&= ~clear_flags2
;
1142 static void smb1cli_req_cancel_done(struct tevent_req
*subreq
);
1144 static bool smb1cli_req_cancel(struct tevent_req
*req
)
1146 struct smbXcli_req_state
*state
=
1147 tevent_req_data(req
,
1148 struct smbXcli_req_state
);
1153 struct tevent_req
*subreq
;
1156 flags
= CVAL(state
->smb1
.hdr
, HDR_FLG
);
1157 flags2
= SVAL(state
->smb1
.hdr
, HDR_FLG2
);
1158 pid
= SVAL(state
->smb1
.hdr
, HDR_PID
);
1159 pid
|= SVAL(state
->smb1
.hdr
, HDR_PIDHIGH
)<<16;
1160 mid
= SVAL(state
->smb1
.hdr
, HDR_MID
);
1162 subreq
= smb1cli_req_create(state
, state
->ev
,
1172 0, NULL
); /* bytes */
1173 if (subreq
== NULL
) {
1176 smb1cli_req_set_mid(subreq
, mid
);
1178 status
= smb1cli_req_chain_submit(&subreq
, 1);
1179 if (!NT_STATUS_IS_OK(status
)) {
1180 TALLOC_FREE(subreq
);
1183 smb1cli_req_set_mid(subreq
, 0);
1185 tevent_req_set_callback(subreq
, smb1cli_req_cancel_done
, NULL
);
1190 static void smb1cli_req_cancel_done(struct tevent_req
*subreq
)
1192 /* we do not care about the result */
1193 TALLOC_FREE(subreq
);
1196 struct tevent_req
*smb1cli_req_create(TALLOC_CTX
*mem_ctx
,
1197 struct tevent_context
*ev
,
1198 struct smbXcli_conn
*conn
,
1199 uint8_t smb_command
,
1200 uint8_t additional_flags
,
1201 uint8_t clear_flags
,
1202 uint16_t additional_flags2
,
1203 uint16_t clear_flags2
,
1204 uint32_t timeout_msec
,
1206 struct smbXcli_tcon
*tcon
,
1207 struct smbXcli_session
*session
,
1208 uint8_t wct
, uint16_t *vwv
,
1210 struct iovec
*bytes_iov
)
1212 struct tevent_req
*req
;
1213 struct smbXcli_req_state
*state
;
1215 uint16_t flags2
= 0;
1219 if (iov_count
> MAX_SMB_IOV
) {
1221 * Should not happen :-)
1226 req
= tevent_req_create(mem_ctx
, &state
,
1227 struct smbXcli_req_state
);
1233 state
->session
= session
;
1237 uid
= session
->smb1
.session_id
;
1241 tid
= tcon
->smb1
.tcon_id
;
1244 state
->smb1
.recv_cmd
= 0xFF;
1245 state
->smb1
.recv_status
= NT_STATUS_INTERNAL_ERROR
;
1246 state
->smb1
.recv_iov
= talloc_zero_array(state
, struct iovec
, 3);
1247 if (state
->smb1
.recv_iov
== NULL
) {
1252 smb1cli_req_flags(conn
->protocol
,
1253 conn
->smb1
.capabilities
,
1262 SIVAL(state
->smb1
.hdr
, 0, SMB_MAGIC
);
1263 SCVAL(state
->smb1
.hdr
, HDR_COM
, smb_command
);
1264 SIVAL(state
->smb1
.hdr
, HDR_RCLS
, NT_STATUS_V(NT_STATUS_OK
));
1265 SCVAL(state
->smb1
.hdr
, HDR_FLG
, flags
);
1266 SSVAL(state
->smb1
.hdr
, HDR_FLG2
, flags2
);
1267 SSVAL(state
->smb1
.hdr
, HDR_PIDHIGH
, pid
>> 16);
1268 SSVAL(state
->smb1
.hdr
, HDR_TID
, tid
);
1269 SSVAL(state
->smb1
.hdr
, HDR_PID
, pid
);
1270 SSVAL(state
->smb1
.hdr
, HDR_UID
, uid
);
1271 SSVAL(state
->smb1
.hdr
, HDR_MID
, 0); /* this comes later */
1272 SCVAL(state
->smb1
.hdr
, HDR_WCT
, wct
);
1274 state
->smb1
.vwv
= vwv
;
1276 SSVAL(state
->smb1
.bytecount_buf
, 0, smbXcli_iov_len(bytes_iov
, iov_count
));
1278 state
->smb1
.iov
[0].iov_base
= (void *)state
->length_hdr
;
1279 state
->smb1
.iov
[0].iov_len
= sizeof(state
->length_hdr
);
1280 state
->smb1
.iov
[1].iov_base
= (void *)state
->smb1
.hdr
;
1281 state
->smb1
.iov
[1].iov_len
= sizeof(state
->smb1
.hdr
);
1282 state
->smb1
.iov
[2].iov_base
= (void *)state
->smb1
.vwv
;
1283 state
->smb1
.iov
[2].iov_len
= wct
* sizeof(uint16_t);
1284 state
->smb1
.iov
[3].iov_base
= (void *)state
->smb1
.bytecount_buf
;
1285 state
->smb1
.iov
[3].iov_len
= sizeof(uint16_t);
1287 if (iov_count
!= 0) {
1288 memcpy(&state
->smb1
.iov
[4], bytes_iov
,
1289 iov_count
* sizeof(*bytes_iov
));
1291 state
->smb1
.iov_count
= iov_count
+ 4;
1293 if (timeout_msec
> 0) {
1294 struct timeval endtime
;
1296 endtime
= timeval_current_ofs_msec(timeout_msec
);
1297 if (!tevent_req_set_endtime(req
, ev
, endtime
)) {
1302 switch (smb_command
) {
1306 state
->one_way
= true;
1309 state
->one_way
= true;
1310 state
->smb1
.one_way_seqnum
= true;
1314 (CVAL(vwv
+3, 0) == LOCKING_ANDX_OPLOCK_RELEASE
)) {
1315 state
->one_way
= true;
1323 static NTSTATUS
smb1cli_conn_signv(struct smbXcli_conn
*conn
,
1324 struct iovec
*iov
, int iov_count
,
1326 bool one_way_seqnum
)
1328 TALLOC_CTX
*frame
= NULL
;
1332 * Obvious optimization: Make cli_calculate_sign_mac work with struct
1333 * iovec directly. MD5Update would do that just fine.
1336 if (iov_count
< 4) {
1337 return NT_STATUS_INVALID_PARAMETER_MIX
;
1339 if (iov
[0].iov_len
!= NBT_HDR_SIZE
) {
1340 return NT_STATUS_INVALID_PARAMETER_MIX
;
1342 if (iov
[1].iov_len
!= (MIN_SMB_SIZE
-sizeof(uint16_t))) {
1343 return NT_STATUS_INVALID_PARAMETER_MIX
;
1345 if (iov
[2].iov_len
> (0xFF * sizeof(uint16_t))) {
1346 return NT_STATUS_INVALID_PARAMETER_MIX
;
1348 if (iov
[3].iov_len
!= sizeof(uint16_t)) {
1349 return NT_STATUS_INVALID_PARAMETER_MIX
;
1352 frame
= talloc_stackframe();
1354 buf
= smbXcli_iov_concat(frame
, &iov
[1], iov_count
- 1);
1356 return NT_STATUS_NO_MEMORY
;
1359 *seqnum
= smb_signing_next_seqnum(conn
->smb1
.signing
,
1361 smb_signing_sign_pdu(conn
->smb1
.signing
,
1362 buf
, talloc_get_size(buf
),
1364 memcpy(iov
[1].iov_base
, buf
, iov
[1].iov_len
);
1367 return NT_STATUS_OK
;
1370 static void smb1cli_req_writev_done(struct tevent_req
*subreq
);
1371 static NTSTATUS
smb1cli_conn_dispatch_incoming(struct smbXcli_conn
*conn
,
1372 TALLOC_CTX
*tmp_mem
,
1375 static NTSTATUS
smb1cli_req_writev_submit(struct tevent_req
*req
,
1376 struct smbXcli_req_state
*state
,
1377 struct iovec
*iov
, int iov_count
)
1379 struct tevent_req
*subreq
;
1384 if (!smbXcli_conn_is_connected(state
->conn
)) {
1385 return NT_STATUS_CONNECTION_DISCONNECTED
;
1388 if (state
->conn
->protocol
> PROTOCOL_NT1
) {
1389 return NT_STATUS_REVISION_MISMATCH
;
1392 if (iov_count
< 4) {
1393 return NT_STATUS_INVALID_PARAMETER_MIX
;
1395 if (iov
[0].iov_len
!= NBT_HDR_SIZE
) {
1396 return NT_STATUS_INVALID_PARAMETER_MIX
;
1398 if (iov
[1].iov_len
!= (MIN_SMB_SIZE
-sizeof(uint16_t))) {
1399 return NT_STATUS_INVALID_PARAMETER_MIX
;
1401 if (iov
[2].iov_len
> (0xFF * sizeof(uint16_t))) {
1402 return NT_STATUS_INVALID_PARAMETER_MIX
;
1404 if (iov
[3].iov_len
!= sizeof(uint16_t)) {
1405 return NT_STATUS_INVALID_PARAMETER_MIX
;
1408 cmd
= CVAL(iov
[1].iov_base
, HDR_COM
);
1409 if (cmd
== SMBreadBraw
) {
1410 if (smbXcli_conn_has_async_calls(state
->conn
)) {
1411 return NT_STATUS_INVALID_PARAMETER_MIX
;
1413 state
->conn
->smb1
.read_braw_req
= req
;
1416 if (state
->smb1
.mid
!= 0) {
1417 mid
= state
->smb1
.mid
;
1419 mid
= smb1cli_alloc_mid(state
->conn
);
1421 SSVAL(iov
[1].iov_base
, HDR_MID
, mid
);
1423 _smb_setlen_nbt(iov
[0].iov_base
, smbXcli_iov_len(&iov
[1], iov_count
-1));
1425 status
= smb1cli_conn_signv(state
->conn
, iov
, iov_count
,
1426 &state
->smb1
.seqnum
,
1427 state
->smb1
.one_way_seqnum
);
1429 if (!NT_STATUS_IS_OK(status
)) {
1434 * If we supported multiple encrytion contexts
1435 * here we'd look up based on tid.
1437 if (common_encryption_on(state
->conn
->smb1
.trans_enc
)) {
1438 char *buf
, *enc_buf
;
1440 buf
= (char *)smbXcli_iov_concat(talloc_tos(), iov
, iov_count
);
1442 return NT_STATUS_NO_MEMORY
;
1444 status
= common_encrypt_buffer(state
->conn
->smb1
.trans_enc
,
1445 (char *)buf
, &enc_buf
);
1447 if (!NT_STATUS_IS_OK(status
)) {
1448 DEBUG(0, ("Error in encrypting client message: %s\n",
1449 nt_errstr(status
)));
1452 buf
= (char *)talloc_memdup(state
, enc_buf
,
1453 smb_len_nbt(enc_buf
)+4);
1456 return NT_STATUS_NO_MEMORY
;
1458 iov
[0].iov_base
= (void *)buf
;
1459 iov
[0].iov_len
= talloc_get_size(buf
);
1463 if (state
->conn
->dispatch_incoming
== NULL
) {
1464 state
->conn
->dispatch_incoming
= smb1cli_conn_dispatch_incoming
;
1467 tevent_req_set_cancel_fn(req
, smbXcli_req_cancel
);
1469 subreq
= writev_send(state
, state
->ev
, state
->conn
->outgoing
,
1470 state
->conn
->write_fd
, false, iov
, iov_count
);
1471 if (subreq
== NULL
) {
1472 return NT_STATUS_NO_MEMORY
;
1474 tevent_req_set_callback(subreq
, smb1cli_req_writev_done
, req
);
1475 return NT_STATUS_OK
;
1478 struct tevent_req
*smb1cli_req_send(TALLOC_CTX
*mem_ctx
,
1479 struct tevent_context
*ev
,
1480 struct smbXcli_conn
*conn
,
1481 uint8_t smb_command
,
1482 uint8_t additional_flags
,
1483 uint8_t clear_flags
,
1484 uint16_t additional_flags2
,
1485 uint16_t clear_flags2
,
1486 uint32_t timeout_msec
,
1488 struct smbXcli_tcon
*tcon
,
1489 struct smbXcli_session
*session
,
1490 uint8_t wct
, uint16_t *vwv
,
1492 const uint8_t *bytes
)
1494 struct tevent_req
*req
;
1498 iov
.iov_base
= discard_const_p(void, bytes
);
1499 iov
.iov_len
= num_bytes
;
1501 req
= smb1cli_req_create(mem_ctx
, ev
, conn
, smb_command
,
1502 additional_flags
, clear_flags
,
1503 additional_flags2
, clear_flags2
,
1510 if (!tevent_req_is_in_progress(req
)) {
1511 return tevent_req_post(req
, ev
);
1513 status
= smb1cli_req_chain_submit(&req
, 1);
1514 if (tevent_req_nterror(req
, status
)) {
1515 return tevent_req_post(req
, ev
);
1520 static void smb1cli_req_writev_done(struct tevent_req
*subreq
)
1522 struct tevent_req
*req
=
1523 tevent_req_callback_data(subreq
,
1525 struct smbXcli_req_state
*state
=
1526 tevent_req_data(req
,
1527 struct smbXcli_req_state
);
1531 nwritten
= writev_recv(subreq
, &err
);
1532 TALLOC_FREE(subreq
);
1533 if (nwritten
== -1) {
1534 NTSTATUS status
= map_nt_error_from_unix_common(err
);
1535 smbXcli_conn_disconnect(state
->conn
, status
);
1539 if (state
->one_way
) {
1540 state
->inbuf
= NULL
;
1541 tevent_req_done(req
);
1545 if (!smbXcli_req_set_pending(req
)) {
1546 tevent_req_nterror(req
, NT_STATUS_NO_MEMORY
);
1551 static void smbXcli_conn_received(struct tevent_req
*subreq
)
1553 struct smbXcli_conn
*conn
=
1554 tevent_req_callback_data(subreq
,
1555 struct smbXcli_conn
);
1556 TALLOC_CTX
*frame
= talloc_stackframe();
1562 if (subreq
!= conn
->read_smb_req
) {
1563 DEBUG(1, ("Internal error: cli_smb_received called with "
1564 "unexpected subreq\n"));
1565 status
= NT_STATUS_INTERNAL_ERROR
;
1566 smbXcli_conn_disconnect(conn
, status
);
1570 conn
->read_smb_req
= NULL
;
1572 received
= read_smb_recv(subreq
, frame
, &inbuf
, &err
);
1573 TALLOC_FREE(subreq
);
1574 if (received
== -1) {
1575 status
= map_nt_error_from_unix_common(err
);
1576 smbXcli_conn_disconnect(conn
, status
);
1581 status
= conn
->dispatch_incoming(conn
, frame
, inbuf
);
1583 if (NT_STATUS_IS_OK(status
)) {
1585 * We should not do any more processing
1586 * as the dispatch function called
1587 * tevent_req_done().
1590 } else if (!NT_STATUS_EQUAL(status
, NT_STATUS_RETRY
)) {
1592 * We got an error, so notify all pending requests
1594 smbXcli_conn_disconnect(conn
, status
);
1599 * We got NT_STATUS_RETRY, so we may ask for a
1600 * next incoming pdu.
1602 if (!smbXcli_conn_receive_next(conn
)) {
1603 smbXcli_conn_disconnect(conn
, NT_STATUS_NO_MEMORY
);
1607 static NTSTATUS
smb1cli_inbuf_parse_chain(uint8_t *buf
, TALLOC_CTX
*mem_ctx
,
1608 struct iovec
**piov
, int *pnum_iov
)
1619 size_t min_size
= MIN_SMB_SIZE
;
1621 buflen
= smb_len_tcp(buf
);
1624 hdr
= buf
+ NBT_HDR_SIZE
;
1626 status
= smb1cli_pull_raw_error(hdr
);
1627 if (NT_STATUS_IS_ERR(status
)) {
1629 * This is an ugly hack to support OS/2
1630 * which skips the byte_count in the DATA block
1631 * on some error responses.
1635 min_size
-= sizeof(uint16_t);
1638 if (buflen
< min_size
) {
1639 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
1643 * This returns iovec elements in the following order:
1658 iov
= talloc_array(mem_ctx
, struct iovec
, num_iov
);
1660 return NT_STATUS_NO_MEMORY
;
1662 iov
[0].iov_base
= hdr
;
1663 iov
[0].iov_len
= HDR_WCT
;
1666 cmd
= CVAL(hdr
, HDR_COM
);
1670 size_t len
= buflen
- taken
;
1672 struct iovec
*iov_tmp
;
1679 * we need at least WCT
1681 needed
= sizeof(uint8_t);
1683 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1684 __location__
, (int)len
, (int)needed
));
1689 * Now we check if the specified words are there
1691 wct
= CVAL(hdr
, wct_ofs
);
1692 needed
+= wct
* sizeof(uint16_t);
1694 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1695 __location__
, (int)len
, (int)needed
));
1699 if ((num_iov
== 1) &&
1701 NT_STATUS_IS_ERR(status
))
1704 * This is an ugly hack to support OS/2
1705 * which skips the byte_count in the DATA block
1706 * on some error responses.
1710 iov_tmp
= talloc_realloc(mem_ctx
, iov
, struct iovec
,
1712 if (iov_tmp
== NULL
) {
1714 return NT_STATUS_NO_MEMORY
;
1717 cur
= &iov
[num_iov
];
1721 cur
[0].iov_base
= hdr
+ (wct_ofs
+ sizeof(uint8_t));
1723 cur
[1].iov_base
= cur
[0].iov_base
;
1730 * we need at least BCC
1732 needed
+= sizeof(uint16_t);
1734 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1735 __location__
, (int)len
, (int)needed
));
1740 * Now we check if the specified bytes are there
1742 bcc_ofs
= wct_ofs
+ sizeof(uint8_t) + wct
* sizeof(uint16_t);
1743 bcc
= SVAL(hdr
, bcc_ofs
);
1744 needed
+= bcc
* sizeof(uint8_t);
1746 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1747 __location__
, (int)len
, (int)needed
));
1752 * we allocate 2 iovec structures for words and bytes
1754 iov_tmp
= talloc_realloc(mem_ctx
, iov
, struct iovec
,
1756 if (iov_tmp
== NULL
) {
1758 return NT_STATUS_NO_MEMORY
;
1761 cur
= &iov
[num_iov
];
1764 cur
[0].iov_len
= wct
* sizeof(uint16_t);
1765 cur
[0].iov_base
= hdr
+ (wct_ofs
+ sizeof(uint8_t));
1766 cur
[1].iov_len
= bcc
* sizeof(uint8_t);
1767 cur
[1].iov_base
= hdr
+ (bcc_ofs
+ sizeof(uint16_t));
1771 if (!smb1cli_is_andx_req(cmd
)) {
1773 * If the current command does not have AndX chanining
1779 if (wct
== 0 && bcc
== 0) {
1781 * An empty response also ends the chain,
1782 * most likely with an error.
1788 DEBUG(10, ("%s: wct[%d] < 2 for cmd[0x%02X]\n",
1789 __location__
, (int)wct
, (int)cmd
));
1792 cmd
= CVAL(cur
[0].iov_base
, 0);
1795 * If it is the end of the chain we are also done.
1799 wct_ofs
= SVAL(cur
[0].iov_base
, 2);
1801 if (wct_ofs
< taken
) {
1802 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
1804 if (wct_ofs
> buflen
) {
1805 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
1809 * we consumed everything up to the start of the next
1815 remaining
= buflen
- taken
;
1817 if (remaining
> 0 && num_iov
>= 3) {
1819 * The last DATA block gets the remaining
1820 * bytes, this is needed to support
1821 * CAP_LARGE_WRITEX and CAP_LARGE_READX.
1823 iov
[num_iov
-1].iov_len
+= remaining
;
1827 *pnum_iov
= num_iov
;
1828 return NT_STATUS_OK
;
1832 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
1835 static NTSTATUS
smb1cli_conn_dispatch_incoming(struct smbXcli_conn
*conn
,
1836 TALLOC_CTX
*tmp_mem
,
1839 struct tevent_req
*req
;
1840 struct smbXcli_req_state
*state
;
1847 uint8_t *inhdr
= inbuf
+ NBT_HDR_SIZE
;
1848 size_t len
= smb_len_tcp(inbuf
);
1849 struct iovec
*iov
= NULL
;
1851 struct tevent_req
**chain
= NULL
;
1852 size_t num_chained
= 0;
1853 size_t num_responses
= 0;
1855 if (conn
->smb1
.read_braw_req
!= NULL
) {
1856 req
= conn
->smb1
.read_braw_req
;
1857 conn
->smb1
.read_braw_req
= NULL
;
1858 state
= tevent_req_data(req
, struct smbXcli_req_state
);
1860 smbXcli_req_unset_pending(req
);
1862 if (state
->smb1
.recv_iov
== NULL
) {
1864 * For requests with more than
1865 * one response, we have to readd the
1868 state
->smb1
.recv_iov
= talloc_zero_array(state
,
1871 if (tevent_req_nomem(state
->smb1
.recv_iov
, req
)) {
1872 return NT_STATUS_OK
;
1876 state
->smb1
.recv_iov
[0].iov_base
= (void *)(inhdr
);
1877 state
->smb1
.recv_iov
[0].iov_len
= len
;
1878 ZERO_STRUCT(state
->smb1
.recv_iov
[1]);
1879 ZERO_STRUCT(state
->smb1
.recv_iov
[2]);
1881 state
->smb1
.recv_cmd
= SMBreadBraw
;
1882 state
->smb1
.recv_status
= NT_STATUS_OK
;
1883 state
->inbuf
= talloc_move(state
->smb1
.recv_iov
, &inbuf
);
1885 tevent_req_done(req
);
1886 return NT_STATUS_OK
;
1889 if ((IVAL(inhdr
, 0) != SMB_MAGIC
) /* 0xFF"SMB" */
1890 && (SVAL(inhdr
, 0) != 0x45ff)) /* 0xFF"E" */ {
1891 DEBUG(10, ("Got non-SMB PDU\n"));
1892 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
1896 * If we supported multiple encrytion contexts
1897 * here we'd look up based on tid.
1899 if (common_encryption_on(conn
->smb1
.trans_enc
)
1900 && (CVAL(inbuf
, 0) == 0)) {
1901 uint16_t enc_ctx_num
;
1903 status
= get_enc_ctx_num(inbuf
, &enc_ctx_num
);
1904 if (!NT_STATUS_IS_OK(status
)) {
1905 DEBUG(10, ("get_enc_ctx_num returned %s\n",
1906 nt_errstr(status
)));
1910 if (enc_ctx_num
!= conn
->smb1
.trans_enc
->enc_ctx_num
) {
1911 DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
1913 conn
->smb1
.trans_enc
->enc_ctx_num
));
1914 return NT_STATUS_INVALID_HANDLE
;
1917 status
= common_decrypt_buffer(conn
->smb1
.trans_enc
,
1919 if (!NT_STATUS_IS_OK(status
)) {
1920 DEBUG(10, ("common_decrypt_buffer returned %s\n",
1921 nt_errstr(status
)));
1924 inhdr
= inbuf
+ NBT_HDR_SIZE
;
1925 len
= smb_len_nbt(inbuf
);
1928 mid
= SVAL(inhdr
, HDR_MID
);
1929 num_pending
= talloc_array_length(conn
->pending
);
1931 for (i
=0; i
<num_pending
; i
++) {
1932 if (mid
== smb1cli_req_mid(conn
->pending
[i
])) {
1936 if (i
== num_pending
) {
1937 /* Dump unexpected reply */
1938 return NT_STATUS_RETRY
;
1941 oplock_break
= false;
1943 if (mid
== 0xffff) {
1945 * Paranoia checks that this is really an oplock break request.
1947 oplock_break
= (len
== 51); /* hdr + 8 words */
1948 oplock_break
&= ((CVAL(inhdr
, HDR_FLG
) & FLAG_REPLY
) == 0);
1949 oplock_break
&= (CVAL(inhdr
, HDR_COM
) == SMBlockingX
);
1950 oplock_break
&= (SVAL(inhdr
, HDR_VWV
+VWV(6)) == 0);
1951 oplock_break
&= (SVAL(inhdr
, HDR_VWV
+VWV(7)) == 0);
1953 if (!oplock_break
) {
1954 /* Dump unexpected reply */
1955 return NT_STATUS_RETRY
;
1959 req
= conn
->pending
[i
];
1960 state
= tevent_req_data(req
, struct smbXcli_req_state
);
1962 if (!oplock_break
/* oplock breaks are not signed */
1963 && !smb_signing_check_pdu(conn
->smb1
.signing
,
1964 inhdr
, len
, state
->smb1
.seqnum
+1)) {
1965 DEBUG(10, ("cli_check_sign_mac failed\n"));
1966 return NT_STATUS_ACCESS_DENIED
;
1969 status
= smb1cli_inbuf_parse_chain(inbuf
, tmp_mem
,
1971 if (!NT_STATUS_IS_OK(status
)) {
1972 DEBUG(10,("smb1cli_inbuf_parse_chain - %s\n",
1973 nt_errstr(status
)));
1977 cmd
= CVAL(inhdr
, HDR_COM
);
1978 status
= smb1cli_pull_raw_error(inhdr
);
1980 if (NT_STATUS_EQUAL(status
, NT_STATUS_NETWORK_SESSION_EXPIRED
) &&
1981 (state
->session
!= NULL
) && state
->session
->disconnect_expired
)
1984 * this should be a short term hack
1985 * until the upper layers have implemented
1986 * re-authentication.
1991 if (state
->smb1
.chained_requests
== NULL
) {
1993 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
1996 smbXcli_req_unset_pending(req
);
1998 if (state
->smb1
.recv_iov
== NULL
) {
2000 * For requests with more than
2001 * one response, we have to readd the
2004 state
->smb1
.recv_iov
= talloc_zero_array(state
,
2007 if (tevent_req_nomem(state
->smb1
.recv_iov
, req
)) {
2008 return NT_STATUS_OK
;
2012 state
->smb1
.recv_cmd
= cmd
;
2013 state
->smb1
.recv_status
= status
;
2014 state
->inbuf
= talloc_move(state
->smb1
.recv_iov
, &inbuf
);
2016 state
->smb1
.recv_iov
[0] = iov
[0];
2017 state
->smb1
.recv_iov
[1] = iov
[1];
2018 state
->smb1
.recv_iov
[2] = iov
[2];
2020 if (talloc_array_length(conn
->pending
) == 0) {
2021 tevent_req_done(req
);
2022 return NT_STATUS_OK
;
2025 tevent_req_defer_callback(req
, state
->ev
);
2026 tevent_req_done(req
);
2027 return NT_STATUS_RETRY
;
2030 chain
= talloc_move(tmp_mem
, &state
->smb1
.chained_requests
);
2031 num_chained
= talloc_array_length(chain
);
2032 num_responses
= (num_iov
- 1)/2;
2034 if (num_responses
> num_chained
) {
2035 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
2038 for (i
=0; i
<num_chained
; i
++) {
2039 size_t iov_idx
= 1 + (i
*2);
2040 struct iovec
*cur
= &iov
[iov_idx
];
2044 state
= tevent_req_data(req
, struct smbXcli_req_state
);
2046 smbXcli_req_unset_pending(req
);
2049 * as we finish multiple requests here
2050 * we need to defer the callbacks as
2051 * they could destroy our current stack state.
2053 tevent_req_defer_callback(req
, state
->ev
);
2055 if (i
>= num_responses
) {
2056 tevent_req_nterror(req
, NT_STATUS_REQUEST_ABORTED
);
2060 if (state
->smb1
.recv_iov
== NULL
) {
2062 * For requests with more than
2063 * one response, we have to readd the
2066 state
->smb1
.recv_iov
= talloc_zero_array(state
,
2069 if (tevent_req_nomem(state
->smb1
.recv_iov
, req
)) {
2074 state
->smb1
.recv_cmd
= cmd
;
2076 if (i
== (num_responses
- 1)) {
2078 * The last request in the chain gets the status
2080 state
->smb1
.recv_status
= status
;
2082 cmd
= CVAL(cur
[0].iov_base
, 0);
2083 state
->smb1
.recv_status
= NT_STATUS_OK
;
2086 state
->inbuf
= inbuf
;
2089 * Note: here we use talloc_reference() in a way
2090 * that does not expose it to the caller.
2092 inbuf_ref
= talloc_reference(state
->smb1
.recv_iov
, inbuf
);
2093 if (tevent_req_nomem(inbuf_ref
, req
)) {
2097 /* copy the related buffers */
2098 state
->smb1
.recv_iov
[0] = iov
[0];
2099 state
->smb1
.recv_iov
[1] = cur
[0];
2100 state
->smb1
.recv_iov
[2] = cur
[1];
2102 tevent_req_done(req
);
2105 return NT_STATUS_RETRY
;
2108 NTSTATUS
smb1cli_req_recv(struct tevent_req
*req
,
2109 TALLOC_CTX
*mem_ctx
,
2110 struct iovec
**piov
,
2114 uint32_t *pvwv_offset
,
2115 uint32_t *pnum_bytes
,
2117 uint32_t *pbytes_offset
,
2119 const struct smb1cli_req_expected_response
*expected
,
2120 size_t num_expected
)
2122 struct smbXcli_req_state
*state
=
2123 tevent_req_data(req
,
2124 struct smbXcli_req_state
);
2125 NTSTATUS status
= NT_STATUS_OK
;
2126 struct iovec
*recv_iov
= NULL
;
2127 uint8_t *hdr
= NULL
;
2129 uint32_t vwv_offset
= 0;
2130 uint16_t *vwv
= NULL
;
2131 uint32_t num_bytes
= 0;
2132 uint32_t bytes_offset
= 0;
2133 uint8_t *bytes
= NULL
;
2135 bool found_status
= false;
2136 bool found_size
= false;
2150 if (pvwv_offset
!= NULL
) {
2153 if (pnum_bytes
!= NULL
) {
2156 if (pbytes
!= NULL
) {
2159 if (pbytes_offset
!= NULL
) {
2162 if (pinbuf
!= NULL
) {
2166 if (state
->inbuf
!= NULL
) {
2167 recv_iov
= state
->smb1
.recv_iov
;
2168 state
->smb1
.recv_iov
= NULL
;
2169 if (state
->smb1
.recv_cmd
!= SMBreadBraw
) {
2170 hdr
= (uint8_t *)recv_iov
[0].iov_base
;
2171 wct
= recv_iov
[1].iov_len
/2;
2172 vwv
= (uint16_t *)recv_iov
[1].iov_base
;
2173 vwv_offset
= PTR_DIFF(vwv
, hdr
);
2174 num_bytes
= recv_iov
[2].iov_len
;
2175 bytes
= (uint8_t *)recv_iov
[2].iov_base
;
2176 bytes_offset
= PTR_DIFF(bytes
, hdr
);
2180 if (tevent_req_is_nterror(req
, &status
)) {
2181 for (i
=0; i
< num_expected
; i
++) {
2182 if (NT_STATUS_EQUAL(status
, expected
[i
].status
)) {
2183 found_status
= true;
2189 return NT_STATUS_UNEXPECTED_NETWORK_ERROR
;
2195 if (num_expected
== 0) {
2196 found_status
= true;
2200 status
= state
->smb1
.recv_status
;
2202 for (i
=0; i
< num_expected
; i
++) {
2203 if (!NT_STATUS_EQUAL(status
, expected
[i
].status
)) {
2207 found_status
= true;
2208 if (expected
[i
].wct
== 0) {
2213 if (expected
[i
].wct
== wct
) {
2219 if (!found_status
) {
2224 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
2228 *piov
= talloc_move(mem_ctx
, &recv_iov
);
2240 if (pvwv_offset
!= NULL
) {
2241 *pvwv_offset
= vwv_offset
;
2243 if (pnum_bytes
!= NULL
) {
2244 *pnum_bytes
= num_bytes
;
2246 if (pbytes
!= NULL
) {
2249 if (pbytes_offset
!= NULL
) {
2250 *pbytes_offset
= bytes_offset
;
2252 if (pinbuf
!= NULL
) {
2253 *pinbuf
= state
->inbuf
;
2259 size_t smb1cli_req_wct_ofs(struct tevent_req
**reqs
, int num_reqs
)
2266 for (i
=0; i
<num_reqs
; i
++) {
2267 struct smbXcli_req_state
*state
;
2268 state
= tevent_req_data(reqs
[i
], struct smbXcli_req_state
);
2269 wct_ofs
+= smbXcli_iov_len(state
->smb1
.iov
+2,
2270 state
->smb1
.iov_count
-2);
2271 wct_ofs
= (wct_ofs
+ 3) & ~3;
2276 NTSTATUS
smb1cli_req_chain_submit(struct tevent_req
**reqs
, int num_reqs
)
2278 struct smbXcli_req_state
*first_state
=
2279 tevent_req_data(reqs
[0],
2280 struct smbXcli_req_state
);
2281 struct smbXcli_req_state
*state
;
2283 size_t chain_padding
= 0;
2285 struct iovec
*iov
= NULL
;
2286 struct iovec
*this_iov
;
2290 if (num_reqs
== 1) {
2291 return smb1cli_req_writev_submit(reqs
[0], first_state
,
2292 first_state
->smb1
.iov
,
2293 first_state
->smb1
.iov_count
);
2297 for (i
=0; i
<num_reqs
; i
++) {
2298 if (!tevent_req_is_in_progress(reqs
[i
])) {
2299 return NT_STATUS_INTERNAL_ERROR
;
2302 state
= tevent_req_data(reqs
[i
], struct smbXcli_req_state
);
2304 if (state
->smb1
.iov_count
< 4) {
2305 return NT_STATUS_INVALID_PARAMETER_MIX
;
2310 * The NBT and SMB header
2323 iovlen
+= state
->smb1
.iov_count
- 2;
2326 iov
= talloc_zero_array(first_state
, struct iovec
, iovlen
);
2328 return NT_STATUS_NO_MEMORY
;
2331 first_state
->smb1
.chained_requests
= (struct tevent_req
**)talloc_memdup(
2332 first_state
, reqs
, sizeof(*reqs
) * num_reqs
);
2333 if (first_state
->smb1
.chained_requests
== NULL
) {
2335 return NT_STATUS_NO_MEMORY
;
2338 wct_offset
= HDR_WCT
;
2341 for (i
=0; i
<num_reqs
; i
++) {
2342 size_t next_padding
= 0;
2345 state
= tevent_req_data(reqs
[i
], struct smbXcli_req_state
);
2347 if (i
< num_reqs
-1) {
2348 if (!smb1cli_is_andx_req(CVAL(state
->smb1
.hdr
, HDR_COM
))
2349 || CVAL(state
->smb1
.hdr
, HDR_WCT
) < 2) {
2351 TALLOC_FREE(first_state
->smb1
.chained_requests
);
2352 return NT_STATUS_INVALID_PARAMETER_MIX
;
2356 wct_offset
+= smbXcli_iov_len(state
->smb1
.iov
+2,
2357 state
->smb1
.iov_count
-2) + 1;
2358 if ((wct_offset
% 4) != 0) {
2359 next_padding
= 4 - (wct_offset
% 4);
2361 wct_offset
+= next_padding
;
2362 vwv
= state
->smb1
.vwv
;
2364 if (i
< num_reqs
-1) {
2365 struct smbXcli_req_state
*next_state
=
2366 tevent_req_data(reqs
[i
+1],
2367 struct smbXcli_req_state
);
2368 SCVAL(vwv
+0, 0, CVAL(next_state
->smb1
.hdr
, HDR_COM
));
2370 SSVAL(vwv
+1, 0, wct_offset
);
2371 } else if (smb1cli_is_andx_req(CVAL(state
->smb1
.hdr
, HDR_COM
))) {
2372 /* properly end the chain */
2373 SCVAL(vwv
+0, 0, 0xff);
2374 SCVAL(vwv
+0, 1, 0xff);
2380 * The NBT and SMB header
2382 this_iov
[0] = state
->smb1
.iov
[0];
2383 this_iov
[1] = state
->smb1
.iov
[1];
2387 * This one is a bit subtle. We have to add
2388 * chain_padding bytes between the requests, and we
2389 * have to also include the wct field of the
2390 * subsequent requests. We use the subsequent header
2391 * for the padding, it contains the wct field in its
2394 this_iov
[0].iov_len
= chain_padding
+1;
2395 this_iov
[0].iov_base
= (void *)&state
->smb1
.hdr
[
2396 sizeof(state
->smb1
.hdr
) - this_iov
[0].iov_len
];
2397 memset(this_iov
[0].iov_base
, 0, this_iov
[0].iov_len
-1);
2402 * copy the words and bytes
2404 memcpy(this_iov
, state
->smb1
.iov
+2,
2405 sizeof(struct iovec
) * (state
->smb1
.iov_count
-2));
2406 this_iov
+= state
->smb1
.iov_count
- 2;
2407 chain_padding
= next_padding
;
2410 nbt_len
= smbXcli_iov_len(&iov
[1], iovlen
-1);
2411 if (nbt_len
> first_state
->conn
->smb1
.max_xmit
) {
2413 TALLOC_FREE(first_state
->smb1
.chained_requests
);
2414 return NT_STATUS_INVALID_PARAMETER_MIX
;
2417 status
= smb1cli_req_writev_submit(reqs
[0], first_state
, iov
, iovlen
);
2418 if (!NT_STATUS_IS_OK(status
)) {
2420 TALLOC_FREE(first_state
->smb1
.chained_requests
);
2424 return NT_STATUS_OK
;
2427 bool smbXcli_conn_has_async_calls(struct smbXcli_conn
*conn
)
2429 return ((tevent_queue_length(conn
->outgoing
) != 0)
2430 || (talloc_array_length(conn
->pending
) != 0));
2433 uint32_t smb2cli_conn_server_capabilities(struct smbXcli_conn
*conn
)
2435 return conn
->smb2
.server
.capabilities
;
2438 uint16_t smb2cli_conn_server_security_mode(struct smbXcli_conn
*conn
)
2440 return conn
->smb2
.server
.security_mode
;
2443 uint32_t smb2cli_conn_max_trans_size(struct smbXcli_conn
*conn
)
2445 return conn
->smb2
.server
.max_trans_size
;
2448 uint32_t smb2cli_conn_max_read_size(struct smbXcli_conn
*conn
)
2450 return conn
->smb2
.server
.max_read_size
;
2453 uint32_t smb2cli_conn_max_write_size(struct smbXcli_conn
*conn
)
2455 return conn
->smb2
.server
.max_write_size
;
2458 void smb2cli_conn_set_max_credits(struct smbXcli_conn
*conn
,
2459 uint16_t max_credits
)
2461 conn
->smb2
.max_credits
= max_credits
;
2464 static void smb2cli_req_cancel_done(struct tevent_req
*subreq
);
2466 static bool smb2cli_req_cancel(struct tevent_req
*req
)
2468 struct smbXcli_req_state
*state
=
2469 tevent_req_data(req
,
2470 struct smbXcli_req_state
);
2471 uint32_t flags
= IVAL(state
->smb2
.hdr
, SMB2_HDR_FLAGS
);
2472 uint64_t mid
= BVAL(state
->smb2
.hdr
, SMB2_HDR_MESSAGE_ID
);
2473 uint64_t aid
= BVAL(state
->smb2
.hdr
, SMB2_HDR_ASYNC_ID
);
2474 struct smbXcli_tcon
*tcon
= state
->tcon
;
2475 struct smbXcli_session
*session
= state
->session
;
2476 uint8_t *fixed
= state
->smb2
.pad
;
2477 uint16_t fixed_len
= 4;
2478 struct tevent_req
*subreq
;
2479 struct smbXcli_req_state
*substate
;
2482 SSVAL(fixed
, 0, 0x04);
2485 subreq
= smb2cli_req_create(state
, state
->ev
,
2493 if (subreq
== NULL
) {
2496 substate
= tevent_req_data(subreq
, struct smbXcli_req_state
);
2499 * clear everything but the SMB2_HDR_FLAG_ASYNC flag
2500 * e.g. if SMB2_HDR_FLAG_CHAINED is set we get INVALID_PARAMETER back
2502 flags
&= SMB2_HDR_FLAG_ASYNC
;
2504 if (flags
& SMB2_HDR_FLAG_ASYNC
) {
2508 SIVAL(substate
->smb2
.hdr
, SMB2_HDR_FLAGS
, flags
);
2509 SBVAL(substate
->smb2
.hdr
, SMB2_HDR_MESSAGE_ID
, mid
);
2510 SBVAL(substate
->smb2
.hdr
, SMB2_HDR_ASYNC_ID
, aid
);
2512 status
= smb2cli_req_compound_submit(&subreq
, 1);
2513 if (!NT_STATUS_IS_OK(status
)) {
2514 TALLOC_FREE(subreq
);
2518 tevent_req_set_callback(subreq
, smb2cli_req_cancel_done
, NULL
);
2523 static void smb2cli_req_cancel_done(struct tevent_req
*subreq
)
2525 /* we do not care about the result */
2526 TALLOC_FREE(subreq
);
2529 struct tevent_req
*smb2cli_req_create(TALLOC_CTX
*mem_ctx
,
2530 struct tevent_context
*ev
,
2531 struct smbXcli_conn
*conn
,
2533 uint32_t additional_flags
,
2534 uint32_t clear_flags
,
2535 uint32_t timeout_msec
,
2536 struct smbXcli_tcon
*tcon
,
2537 struct smbXcli_session
*session
,
2538 const uint8_t *fixed
,
2543 struct tevent_req
*req
;
2544 struct smbXcli_req_state
*state
;
2548 bool use_channel_sequence
= false;
2549 uint16_t channel_sequence
= 0;
2551 req
= tevent_req_create(mem_ctx
, &state
,
2552 struct smbXcli_req_state
);
2559 state
->session
= session
;
2562 if (conn
->smb2
.server
.capabilities
& SMB2_CAP_PERSISTENT_HANDLES
) {
2563 use_channel_sequence
= true;
2564 } else if (conn
->smb2
.server
.capabilities
& SMB2_CAP_MULTI_CHANNEL
) {
2565 use_channel_sequence
= true;
2569 uid
= session
->smb2
->session_id
;
2571 if (use_channel_sequence
) {
2572 channel_sequence
= session
->smb2
->channel_sequence
;
2575 state
->smb2
.should_sign
= session
->smb2
->should_sign
;
2576 state
->smb2
.should_encrypt
= session
->smb2
->should_encrypt
;
2578 if (cmd
== SMB2_OP_SESSSETUP
&&
2579 session
->smb2
->signing_key
.length
!= 0) {
2580 state
->smb2
.should_sign
= true;
2583 if (cmd
== SMB2_OP_SESSSETUP
&&
2584 session
->smb2_channel
.signing_key
.length
== 0) {
2585 state
->smb2
.should_encrypt
= false;
2590 tid
= tcon
->smb2
.tcon_id
;
2592 if (tcon
->smb2
.should_encrypt
) {
2593 state
->smb2
.should_encrypt
= true;
2597 if (state
->smb2
.should_encrypt
) {
2598 state
->smb2
.should_sign
= false;
2601 state
->smb2
.recv_iov
= talloc_zero_array(state
, struct iovec
, 3);
2602 if (state
->smb2
.recv_iov
== NULL
) {
2607 flags
|= additional_flags
;
2608 flags
&= ~clear_flags
;
2610 state
->smb2
.fixed
= fixed
;
2611 state
->smb2
.fixed_len
= fixed_len
;
2612 state
->smb2
.dyn
= dyn
;
2613 state
->smb2
.dyn_len
= dyn_len
;
2615 if (state
->smb2
.should_encrypt
) {
2616 SIVAL(state
->smb2
.transform
, SMB2_TF_PROTOCOL_ID
, SMB2_TF_MAGIC
);
2617 SBVAL(state
->smb2
.transform
, SMB2_TF_SESSION_ID
, uid
);
2620 SIVAL(state
->smb2
.hdr
, SMB2_HDR_PROTOCOL_ID
, SMB2_MAGIC
);
2621 SSVAL(state
->smb2
.hdr
, SMB2_HDR_LENGTH
, SMB2_HDR_BODY
);
2622 SSVAL(state
->smb2
.hdr
, SMB2_HDR_OPCODE
, cmd
);
2623 SSVAL(state
->smb2
.hdr
, SMB2_HDR_CHANNEL_SEQUENCE
, channel_sequence
);
2624 SIVAL(state
->smb2
.hdr
, SMB2_HDR_FLAGS
, flags
);
2625 SIVAL(state
->smb2
.hdr
, SMB2_HDR_PID
, 0); /* reserved */
2626 SIVAL(state
->smb2
.hdr
, SMB2_HDR_TID
, tid
);
2627 SBVAL(state
->smb2
.hdr
, SMB2_HDR_SESSION_ID
, uid
);
2630 case SMB2_OP_CANCEL
:
2631 state
->one_way
= true;
2635 * If this is a dummy request, it will have
2636 * UINT64_MAX as message id.
2637 * If we send on break acknowledgement,
2638 * this gets overwritten later.
2640 SBVAL(state
->smb2
.hdr
, SMB2_HDR_MESSAGE_ID
, UINT64_MAX
);
2644 if (timeout_msec
> 0) {
2645 struct timeval endtime
;
2647 endtime
= timeval_current_ofs_msec(timeout_msec
);
2648 if (!tevent_req_set_endtime(req
, ev
, endtime
)) {
2656 void smb2cli_req_set_notify_async(struct tevent_req
*req
)
2658 struct smbXcli_req_state
*state
=
2659 tevent_req_data(req
,
2660 struct smbXcli_req_state
);
2662 state
->smb2
.notify_async
= true;
2665 static void smb2cli_req_writev_done(struct tevent_req
*subreq
);
2666 static NTSTATUS
smb2cli_conn_dispatch_incoming(struct smbXcli_conn
*conn
,
2667 TALLOC_CTX
*tmp_mem
,
2670 NTSTATUS
smb2cli_req_compound_submit(struct tevent_req
**reqs
,
2673 struct smbXcli_req_state
*state
;
2674 struct tevent_req
*subreq
;
2676 int i
, num_iov
, nbt_len
;
2678 const DATA_BLOB
*encryption_key
= NULL
;
2679 uint64_t encryption_session_id
= 0;
2682 * 1 for the nbt length, optional TRANSFORM
2683 * per request: HDR, fixed, dyn, padding
2684 * -1 because the last one does not need padding
2687 iov
= talloc_array(reqs
[0], struct iovec
, 1 + 1 + 4*num_reqs
- 1);
2689 return NT_STATUS_NO_MEMORY
;
2696 * the session of the first request that requires encryption
2697 * specifies the encryption key.
2699 for (i
=0; i
<num_reqs
; i
++) {
2700 if (!tevent_req_is_in_progress(reqs
[i
])) {
2701 return NT_STATUS_INTERNAL_ERROR
;
2704 state
= tevent_req_data(reqs
[i
], struct smbXcli_req_state
);
2706 if (!smbXcli_conn_is_connected(state
->conn
)) {
2707 return NT_STATUS_CONNECTION_DISCONNECTED
;
2710 if ((state
->conn
->protocol
!= PROTOCOL_NONE
) &&
2711 (state
->conn
->protocol
< PROTOCOL_SMB2_02
)) {
2712 return NT_STATUS_REVISION_MISMATCH
;
2715 if (state
->session
== NULL
) {
2719 if (!state
->smb2
.should_encrypt
) {
2723 encryption_key
= &state
->session
->smb2
->encryption_key
;
2724 if (encryption_key
->length
== 0) {
2725 return NT_STATUS_INVALID_PARAMETER_MIX
;
2728 encryption_session_id
= state
->session
->smb2
->session_id
;
2731 iov
[num_iov
].iov_base
= state
->smb2
.transform
;
2732 iov
[num_iov
].iov_len
= sizeof(state
->smb2
.transform
);
2735 SBVAL(state
->smb2
.transform
, SMB2_TF_PROTOCOL_ID
, SMB2_TF_MAGIC
);
2736 SBVAL(state
->smb2
.transform
, SMB2_TF_NONCE
,
2737 state
->session
->smb2
->nonce_low
);
2738 SBVAL(state
->smb2
.transform
, SMB2_TF_NONCE
+8,
2739 state
->session
->smb2
->nonce_high
);
2740 SBVAL(state
->smb2
.transform
, SMB2_TF_SESSION_ID
,
2741 encryption_session_id
);
2743 state
->session
->smb2
->nonce_low
+= 1;
2744 if (state
->session
->smb2
->nonce_low
== 0) {
2745 state
->session
->smb2
->nonce_high
+= 1;
2746 state
->session
->smb2
->nonce_low
+= 1;
2749 nbt_len
+= SMB2_TF_HDR_SIZE
;
2753 for (i
=0; i
<num_reqs
; i
++) {
2762 const DATA_BLOB
*signing_key
= NULL
;
2764 if (!tevent_req_is_in_progress(reqs
[i
])) {
2765 return NT_STATUS_INTERNAL_ERROR
;
2768 state
= tevent_req_data(reqs
[i
], struct smbXcli_req_state
);
2770 if (!smbXcli_conn_is_connected(state
->conn
)) {
2771 return NT_STATUS_CONNECTION_DISCONNECTED
;
2774 if ((state
->conn
->protocol
!= PROTOCOL_NONE
) &&
2775 (state
->conn
->protocol
< PROTOCOL_SMB2_02
)) {
2776 return NT_STATUS_REVISION_MISMATCH
;
2779 opcode
= SVAL(state
->smb2
.hdr
, SMB2_HDR_OPCODE
);
2780 if (opcode
== SMB2_OP_CANCEL
) {
2784 avail
= UINT64_MAX
- state
->conn
->smb2
.mid
;
2786 return NT_STATUS_CONNECTION_ABORTED
;
2789 if (state
->conn
->smb2
.server
.capabilities
& SMB2_CAP_LARGE_MTU
) {
2790 charge
= (MAX(state
->smb2
.dyn_len
, 1) - 1)/ 65536 + 1;
2795 charge
= MAX(state
->smb2
.credit_charge
, charge
);
2797 avail
= MIN(avail
, state
->conn
->smb2
.cur_credits
);
2798 if (avail
< charge
) {
2799 return NT_STATUS_INTERNAL_ERROR
;
2803 if (state
->conn
->smb2
.max_credits
> state
->conn
->smb2
.cur_credits
) {
2804 credits
= state
->conn
->smb2
.max_credits
-
2805 state
->conn
->smb2
.cur_credits
;
2807 if (state
->conn
->smb2
.max_credits
>= state
->conn
->smb2
.cur_credits
) {
2811 mid
= state
->conn
->smb2
.mid
;
2812 state
->conn
->smb2
.mid
+= charge
;
2813 state
->conn
->smb2
.cur_credits
-= charge
;
2815 if (state
->conn
->smb2
.server
.capabilities
& SMB2_CAP_LARGE_MTU
) {
2816 SSVAL(state
->smb2
.hdr
, SMB2_HDR_CREDIT_CHARGE
, charge
);
2818 SSVAL(state
->smb2
.hdr
, SMB2_HDR_CREDIT
, credits
);
2819 SBVAL(state
->smb2
.hdr
, SMB2_HDR_MESSAGE_ID
, mid
);
2822 if (state
->session
&& encryption_key
== NULL
) {
2824 * We prefer the channel signing key if it is
2827 if (state
->smb2
.should_sign
) {
2828 signing_key
= &state
->session
->smb2_channel
.signing_key
;
2832 * If it is a channel binding, we already have the main
2833 * signing key and try that one.
2835 if (signing_key
&& signing_key
->length
== 0) {
2836 signing_key
= &state
->session
->smb2
->signing_key
;
2840 * If we do not have any session key yet, we skip the
2841 * signing of SMB2_OP_SESSSETUP requests.
2843 if (signing_key
&& signing_key
->length
== 0) {
2849 iov
[num_iov
].iov_base
= state
->smb2
.hdr
;
2850 iov
[num_iov
].iov_len
= sizeof(state
->smb2
.hdr
);
2853 iov
[num_iov
].iov_base
= discard_const(state
->smb2
.fixed
);
2854 iov
[num_iov
].iov_len
= state
->smb2
.fixed_len
;
2857 if (state
->smb2
.dyn
!= NULL
) {
2858 iov
[num_iov
].iov_base
= discard_const(state
->smb2
.dyn
);
2859 iov
[num_iov
].iov_len
= state
->smb2
.dyn_len
;
2863 reqlen
= sizeof(state
->smb2
.hdr
);
2864 reqlen
+= state
->smb2
.fixed_len
;
2865 reqlen
+= state
->smb2
.dyn_len
;
2867 if (i
< num_reqs
-1) {
2868 if ((reqlen
% 8) > 0) {
2869 uint8_t pad
= 8 - (reqlen
% 8);
2870 iov
[num_iov
].iov_base
= state
->smb2
.pad
;
2871 iov
[num_iov
].iov_len
= pad
;
2875 SIVAL(state
->smb2
.hdr
, SMB2_HDR_NEXT_COMMAND
, reqlen
);
2878 state
->smb2
.encryption_session_id
= encryption_session_id
;
2880 if (signing_key
!= NULL
) {
2883 status
= smb2_signing_sign_pdu(*signing_key
,
2884 state
->session
->conn
->protocol
,
2885 &iov
[hdr_iov
], num_iov
- hdr_iov
);
2886 if (!NT_STATUS_IS_OK(status
)) {
2893 ret
= smbXcli_req_set_pending(reqs
[i
]);
2895 return NT_STATUS_NO_MEMORY
;
2899 state
= tevent_req_data(reqs
[0], struct smbXcli_req_state
);
2900 _smb_setlen_tcp(state
->length_hdr
, nbt_len
);
2901 iov
[0].iov_base
= state
->length_hdr
;
2902 iov
[0].iov_len
= sizeof(state
->length_hdr
);
2904 if (encryption_key
!= NULL
) {
2906 size_t buflen
= nbt_len
- SMB2_TF_HDR_SIZE
;
2910 buf
= talloc_array(iov
, uint8_t, buflen
);
2912 return NT_STATUS_NO_MEMORY
;
2916 * We copy the buffers before encrypting them,
2917 * this is at least currently needed for the
2918 * to keep state->smb2.hdr.
2920 * Also the callers may expect there buffers
2923 for (vi
= tf_iov
+ 1; vi
< num_iov
; vi
++) {
2924 struct iovec
*v
= &iov
[vi
];
2925 const uint8_t *o
= (const uint8_t *)v
->iov_base
;
2927 memcpy(buf
, o
, v
->iov_len
);
2928 v
->iov_base
= (void *)buf
;
2932 status
= smb2_signing_encrypt_pdu(*encryption_key
,
2933 state
->conn
->protocol
,
2934 &iov
[tf_iov
], num_iov
- tf_iov
);
2935 if (!NT_STATUS_IS_OK(status
)) {
2940 if (state
->conn
->dispatch_incoming
== NULL
) {
2941 state
->conn
->dispatch_incoming
= smb2cli_conn_dispatch_incoming
;
2944 subreq
= writev_send(state
, state
->ev
, state
->conn
->outgoing
,
2945 state
->conn
->write_fd
, false, iov
, num_iov
);
2946 if (subreq
== NULL
) {
2947 return NT_STATUS_NO_MEMORY
;
2949 tevent_req_set_callback(subreq
, smb2cli_req_writev_done
, reqs
[0]);
2950 return NT_STATUS_OK
;
2953 void smb2cli_req_set_credit_charge(struct tevent_req
*req
, uint16_t charge
)
2955 struct smbXcli_req_state
*state
=
2956 tevent_req_data(req
,
2957 struct smbXcli_req_state
);
2959 state
->smb2
.credit_charge
= charge
;
2962 struct tevent_req
*smb2cli_req_send(TALLOC_CTX
*mem_ctx
,
2963 struct tevent_context
*ev
,
2964 struct smbXcli_conn
*conn
,
2966 uint32_t additional_flags
,
2967 uint32_t clear_flags
,
2968 uint32_t timeout_msec
,
2969 struct smbXcli_tcon
*tcon
,
2970 struct smbXcli_session
*session
,
2971 const uint8_t *fixed
,
2976 struct tevent_req
*req
;
2979 req
= smb2cli_req_create(mem_ctx
, ev
, conn
, cmd
,
2980 additional_flags
, clear_flags
,
2983 fixed
, fixed_len
, dyn
, dyn_len
);
2987 if (!tevent_req_is_in_progress(req
)) {
2988 return tevent_req_post(req
, ev
);
2990 status
= smb2cli_req_compound_submit(&req
, 1);
2991 if (tevent_req_nterror(req
, status
)) {
2992 return tevent_req_post(req
, ev
);
2997 static void smb2cli_req_writev_done(struct tevent_req
*subreq
)
2999 struct tevent_req
*req
=
3000 tevent_req_callback_data(subreq
,
3002 struct smbXcli_req_state
*state
=
3003 tevent_req_data(req
,
3004 struct smbXcli_req_state
);
3008 nwritten
= writev_recv(subreq
, &err
);
3009 TALLOC_FREE(subreq
);
3010 if (nwritten
== -1) {
3011 /* here, we need to notify all pending requests */
3012 NTSTATUS status
= map_nt_error_from_unix_common(err
);
3013 smbXcli_conn_disconnect(state
->conn
, status
);
3018 static NTSTATUS
smb2cli_inbuf_parse_compound(struct smbXcli_conn
*conn
,
3021 TALLOC_CTX
*mem_ctx
,
3022 struct iovec
**piov
, int *pnum_iov
)
3027 uint8_t *first_hdr
= buf
;
3028 size_t verified_buflen
= 0;
3032 iov
= talloc_array(mem_ctx
, struct iovec
, num_iov
);
3034 return NT_STATUS_NO_MEMORY
;
3037 while (taken
< buflen
) {
3038 size_t len
= buflen
- taken
;
3039 uint8_t *hdr
= first_hdr
+ taken
;
3042 size_t next_command_ofs
;
3044 struct iovec
*iov_tmp
;
3046 if (verified_buflen
> taken
) {
3047 len
= verified_buflen
- taken
;
3054 DEBUG(10, ("%d bytes left, expected at least %d\n",
3058 if (IVAL(hdr
, 0) == SMB2_TF_MAGIC
) {
3059 struct smbXcli_session
*s
;
3061 struct iovec tf_iov
[2];
3065 if (len
< SMB2_TF_HDR_SIZE
) {
3066 DEBUG(10, ("%d bytes left, expected at least %d\n",
3067 (int)len
, SMB2_TF_HDR_SIZE
));
3071 tf_len
= SMB2_TF_HDR_SIZE
;
3074 hdr
= first_hdr
+ taken
;
3075 enc_len
= IVAL(tf
, SMB2_TF_MSG_SIZE
);
3076 uid
= BVAL(tf
, SMB2_TF_SESSION_ID
);
3078 if (len
< SMB2_TF_HDR_SIZE
+ enc_len
) {
3079 DEBUG(10, ("%d bytes left, expected at least %d\n",
3081 (int)(SMB2_TF_HDR_SIZE
+ enc_len
)));
3086 for (; s
; s
= s
->next
) {
3087 if (s
->smb2
->session_id
!= uid
) {
3094 DEBUG(10, ("unknown session_id %llu\n",
3095 (unsigned long long)uid
));
3099 tf_iov
[0].iov_base
= (void *)tf
;
3100 tf_iov
[0].iov_len
= tf_len
;
3101 tf_iov
[1].iov_base
= (void *)hdr
;
3102 tf_iov
[1].iov_len
= enc_len
;
3104 status
= smb2_signing_decrypt_pdu(s
->smb2
->decryption_key
,
3107 if (!NT_STATUS_IS_OK(status
)) {
3112 verified_buflen
= taken
+ enc_len
;
3117 * We need the header plus the body length field
3120 if (len
< SMB2_HDR_BODY
+ 2) {
3121 DEBUG(10, ("%d bytes left, expected at least %d\n",
3122 (int)len
, SMB2_HDR_BODY
));
3125 if (IVAL(hdr
, 0) != SMB2_MAGIC
) {
3126 DEBUG(10, ("Got non-SMB2 PDU: %x\n",
3130 if (SVAL(hdr
, 4) != SMB2_HDR_BODY
) {
3131 DEBUG(10, ("Got HDR len %d, expected %d\n",
3132 SVAL(hdr
, 4), SMB2_HDR_BODY
));
3137 next_command_ofs
= IVAL(hdr
, SMB2_HDR_NEXT_COMMAND
);
3138 body_size
= SVAL(hdr
, SMB2_HDR_BODY
);
3140 if (next_command_ofs
!= 0) {
3141 if (next_command_ofs
< (SMB2_HDR_BODY
+ 2)) {
3144 if (next_command_ofs
> full_size
) {
3147 full_size
= next_command_ofs
;
3149 if (body_size
< 2) {
3152 body_size
&= 0xfffe;
3154 if (body_size
> (full_size
- SMB2_HDR_BODY
)) {
3158 iov_tmp
= talloc_realloc(mem_ctx
, iov
, struct iovec
,
3160 if (iov_tmp
== NULL
) {
3162 return NT_STATUS_NO_MEMORY
;
3165 cur
= &iov
[num_iov
];
3168 cur
[0].iov_base
= tf
;
3169 cur
[0].iov_len
= tf_len
;
3170 cur
[1].iov_base
= hdr
;
3171 cur
[1].iov_len
= SMB2_HDR_BODY
;
3172 cur
[2].iov_base
= hdr
+ SMB2_HDR_BODY
;
3173 cur
[2].iov_len
= body_size
;
3174 cur
[3].iov_base
= hdr
+ SMB2_HDR_BODY
+ body_size
;
3175 cur
[3].iov_len
= full_size
- (SMB2_HDR_BODY
+ body_size
);
3181 *pnum_iov
= num_iov
;
3182 return NT_STATUS_OK
;
3186 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
3189 static struct tevent_req
*smb2cli_conn_find_pending(struct smbXcli_conn
*conn
,
3192 size_t num_pending
= talloc_array_length(conn
->pending
);
3195 for (i
=0; i
<num_pending
; i
++) {
3196 struct tevent_req
*req
= conn
->pending
[i
];
3197 struct smbXcli_req_state
*state
=
3198 tevent_req_data(req
,
3199 struct smbXcli_req_state
);
3201 if (mid
== BVAL(state
->smb2
.hdr
, SMB2_HDR_MESSAGE_ID
)) {
3208 static NTSTATUS
smb2cli_conn_dispatch_incoming(struct smbXcli_conn
*conn
,
3209 TALLOC_CTX
*tmp_mem
,
3212 struct tevent_req
*req
;
3213 struct smbXcli_req_state
*state
= NULL
;
3218 struct smbXcli_session
*last_session
= NULL
;
3219 size_t inbuf_len
= smb_len_tcp(inbuf
);
3221 status
= smb2cli_inbuf_parse_compound(conn
,
3222 inbuf
+ NBT_HDR_SIZE
,
3226 if (!NT_STATUS_IS_OK(status
)) {
3230 for (i
=0; i
<num_iov
; i
+=4) {
3231 uint8_t *inbuf_ref
= NULL
;
3232 struct iovec
*cur
= &iov
[i
];
3233 uint8_t *inhdr
= (uint8_t *)cur
[1].iov_base
;
3234 uint16_t opcode
= SVAL(inhdr
, SMB2_HDR_OPCODE
);
3235 uint32_t flags
= IVAL(inhdr
, SMB2_HDR_FLAGS
);
3236 uint64_t mid
= BVAL(inhdr
, SMB2_HDR_MESSAGE_ID
);
3237 uint16_t req_opcode
;
3239 uint16_t credits
= SVAL(inhdr
, SMB2_HDR_CREDIT
);
3240 uint32_t new_credits
;
3241 struct smbXcli_session
*session
= NULL
;
3242 const DATA_BLOB
*signing_key
= NULL
;
3243 bool was_encrypted
= false;
3245 new_credits
= conn
->smb2
.cur_credits
;
3246 new_credits
+= credits
;
3247 if (new_credits
> UINT16_MAX
) {
3248 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
3250 conn
->smb2
.cur_credits
+= credits
;
3252 req
= smb2cli_conn_find_pending(conn
, mid
);
3254 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
3256 state
= tevent_req_data(req
, struct smbXcli_req_state
);
3258 state
->smb2
.got_async
= false;
3260 req_opcode
= SVAL(state
->smb2
.hdr
, SMB2_HDR_OPCODE
);
3261 if (opcode
!= req_opcode
) {
3262 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
3264 req_flags
= SVAL(state
->smb2
.hdr
, SMB2_HDR_FLAGS
);
3266 if (!(flags
& SMB2_HDR_FLAG_REDIRECT
)) {
3267 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
3270 status
= NT_STATUS(IVAL(inhdr
, SMB2_HDR_STATUS
));
3271 if ((flags
& SMB2_HDR_FLAG_ASYNC
) &&
3272 NT_STATUS_EQUAL(status
, STATUS_PENDING
)) {
3273 uint64_t async_id
= BVAL(inhdr
, SMB2_HDR_ASYNC_ID
);
3276 * async interim responses are not signed,
3277 * even if the SMB2_HDR_FLAG_SIGNED flag
3280 req_flags
|= SMB2_HDR_FLAG_ASYNC
;
3281 SBVAL(state
->smb2
.hdr
, SMB2_HDR_FLAGS
, req_flags
);
3282 SBVAL(state
->smb2
.hdr
, SMB2_HDR_ASYNC_ID
, async_id
);
3284 if (state
->smb2
.notify_async
) {
3285 state
->smb2
.got_async
= true;
3286 tevent_req_defer_callback(req
, state
->ev
);
3287 tevent_req_notify_callback(req
);
3292 session
= state
->session
;
3293 if (req_flags
& SMB2_HDR_FLAG_CHAINED
) {
3294 session
= last_session
;
3296 last_session
= session
;
3298 if (state
->smb2
.should_sign
) {
3299 if (!(flags
& SMB2_HDR_FLAG_SIGNED
)) {
3300 return NT_STATUS_ACCESS_DENIED
;
3304 if (flags
& SMB2_HDR_FLAG_SIGNED
) {
3305 uint64_t uid
= BVAL(inhdr
, SMB2_HDR_SESSION_ID
);
3307 if (session
== NULL
) {
3308 struct smbXcli_session
*s
;
3310 s
= state
->conn
->sessions
;
3311 for (; s
; s
= s
->next
) {
3312 if (s
->smb2
->session_id
!= uid
) {
3321 if (session
== NULL
) {
3322 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
3325 last_session
= session
;
3326 signing_key
= &session
->smb2_channel
.signing_key
;
3329 if (opcode
== SMB2_OP_SESSSETUP
) {
3331 * We prefer the channel signing key, if it is
3334 * If we do not have a channel signing key yet,
3335 * we try the main signing key, if it is not
3336 * the final response.
3338 if (signing_key
&& signing_key
->length
== 0 &&
3339 !NT_STATUS_IS_OK(status
)) {
3340 signing_key
= &session
->smb2
->signing_key
;
3343 if (signing_key
&& signing_key
->length
== 0) {
3345 * If we do not have a session key to
3346 * verify the signature, we defer the
3347 * signing check to the caller.
3349 * The caller gets NT_STATUS_OK, it
3351 * smb2cli_session_set_session_key()
3353 * smb2cli_session_set_channel_key()
3354 * which will check the signature
3355 * with the channel signing key.
3361 if (cur
[0].iov_len
== SMB2_TF_HDR_SIZE
) {
3362 const uint8_t *tf
= (const uint8_t *)cur
[0].iov_base
;
3363 uint64_t uid
= BVAL(tf
, SMB2_TF_SESSION_ID
);
3366 * If the response was encrypted in a SMB2_TRANSFORM
3367 * pdu, which belongs to the correct session,
3368 * we do not need to do signing checks
3370 * It could be the session the response belongs to
3371 * or the session that was used to encrypt the
3372 * SMB2_TRANSFORM request.
3374 if ((session
&& session
->smb2
->session_id
== uid
) ||
3375 (state
->smb2
.encryption_session_id
== uid
)) {
3377 was_encrypted
= true;
3381 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_SESSION_DELETED
)) {
3383 * if the server returns NT_STATUS_USER_SESSION_DELETED
3384 * the response is not signed and we should
3385 * propagate the NT_STATUS_USER_SESSION_DELETED
3386 * status to the caller.
3388 state
->smb2
.signing_skipped
= true;
3392 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_PARAMETER
)) {
3394 * if the server returns
3395 * NT_STATUS_INVALID_PARAMETER
3396 * the response might not be encrypted.
3398 if (state
->smb2
.should_encrypt
&& !was_encrypted
) {
3399 state
->smb2
.signing_skipped
= true;
3404 if (state
->smb2
.should_encrypt
&& !was_encrypted
) {
3405 if (!state
->smb2
.signing_skipped
) {
3406 return NT_STATUS_ACCESS_DENIED
;
3410 if (NT_STATUS_EQUAL(status
, NT_STATUS_NETWORK_NAME_DELETED
) ||
3411 NT_STATUS_EQUAL(status
, NT_STATUS_FILE_CLOSED
) ||
3412 NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_PARAMETER
)) {
3414 * if the server returns
3415 * NT_STATUS_NETWORK_NAME_DELETED
3416 * NT_STATUS_FILE_CLOSED
3417 * NT_STATUS_INVALID_PARAMETER
3418 * the response might not be signed
3419 * as this happens before the signing checks.
3421 * If server echos the signature (or all zeros)
3422 * we should report the status from the server
3428 cmp
= memcmp(inhdr
+SMB2_HDR_SIGNATURE
,
3429 state
->smb2
.hdr
+SMB2_HDR_SIGNATURE
,
3432 state
->smb2
.signing_skipped
= true;
3438 static const uint8_t zeros
[16];
3440 cmp
= memcmp(inhdr
+SMB2_HDR_SIGNATURE
,
3444 state
->smb2
.signing_skipped
= true;
3451 status
= smb2_signing_check_pdu(*signing_key
,
3452 state
->conn
->protocol
,
3454 if (!NT_STATUS_IS_OK(status
)) {
3456 * If the signing check fails, we disconnect
3463 if (NT_STATUS_EQUAL(status
, NT_STATUS_NETWORK_SESSION_EXPIRED
) &&
3464 (session
!= NULL
) && session
->disconnect_expired
)
3467 * this should be a short term hack
3468 * until the upper layers have implemented
3469 * re-authentication.
3474 smbXcli_req_unset_pending(req
);
3477 * There might be more than one response
3478 * we need to defer the notifications
3480 if ((num_iov
== 5) && (talloc_array_length(conn
->pending
) == 0)) {
3485 tevent_req_defer_callback(req
, state
->ev
);
3489 * Note: here we use talloc_reference() in a way
3490 * that does not expose it to the caller.
3492 inbuf_ref
= talloc_reference(state
->smb2
.recv_iov
, inbuf
);
3493 if (tevent_req_nomem(inbuf_ref
, req
)) {
3497 /* copy the related buffers */
3498 state
->smb2
.recv_iov
[0] = cur
[1];
3499 state
->smb2
.recv_iov
[1] = cur
[2];
3500 state
->smb2
.recv_iov
[2] = cur
[3];
3502 tevent_req_done(req
);
3506 return NT_STATUS_RETRY
;
3509 return NT_STATUS_OK
;
3512 NTSTATUS
smb2cli_req_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
3513 struct iovec
**piov
,
3514 const struct smb2cli_req_expected_response
*expected
,
3515 size_t num_expected
)
3517 struct smbXcli_req_state
*state
=
3518 tevent_req_data(req
,
3519 struct smbXcli_req_state
);
3522 bool found_status
= false;
3523 bool found_size
= false;
3530 if (state
->smb2
.got_async
) {
3531 return STATUS_PENDING
;
3534 if (tevent_req_is_nterror(req
, &status
)) {
3535 for (i
=0; i
< num_expected
; i
++) {
3536 if (NT_STATUS_EQUAL(status
, expected
[i
].status
)) {
3537 found_status
= true;
3543 return NT_STATUS_UNEXPECTED_NETWORK_ERROR
;
3549 if (num_expected
== 0) {
3550 found_status
= true;
3554 status
= NT_STATUS(IVAL(state
->smb2
.recv_iov
[0].iov_base
, SMB2_HDR_STATUS
));
3555 body_size
= SVAL(state
->smb2
.recv_iov
[1].iov_base
, 0);
3557 for (i
=0; i
< num_expected
; i
++) {
3558 if (!NT_STATUS_EQUAL(status
, expected
[i
].status
)) {
3562 found_status
= true;
3563 if (expected
[i
].body_size
== 0) {
3568 if (expected
[i
].body_size
== body_size
) {
3574 if (!found_status
) {
3578 if (state
->smb2
.signing_skipped
) {
3579 if (num_expected
> 0) {
3580 return NT_STATUS_ACCESS_DENIED
;
3582 if (!NT_STATUS_IS_ERR(status
)) {
3583 return NT_STATUS_ACCESS_DENIED
;
3588 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
3592 *piov
= talloc_move(mem_ctx
, &state
->smb2
.recv_iov
);
3598 static const struct {
3599 enum protocol_types proto
;
3600 const char *smb1_name
;
3601 } smb1cli_prots
[] = {
3602 {PROTOCOL_CORE
, "PC NETWORK PROGRAM 1.0"},
3603 {PROTOCOL_COREPLUS
, "MICROSOFT NETWORKS 1.03"},
3604 {PROTOCOL_LANMAN1
, "MICROSOFT NETWORKS 3.0"},
3605 {PROTOCOL_LANMAN1
, "LANMAN1.0"},
3606 {PROTOCOL_LANMAN2
, "LM1.2X002"},
3607 {PROTOCOL_LANMAN2
, "DOS LANMAN2.1"},
3608 {PROTOCOL_LANMAN2
, "LANMAN2.1"},
3609 {PROTOCOL_LANMAN2
, "Samba"},
3610 {PROTOCOL_NT1
, "NT LANMAN 1.0"},
3611 {PROTOCOL_NT1
, "NT LM 0.12"},
3612 {PROTOCOL_SMB2_02
, "SMB 2.002"},
3613 {PROTOCOL_SMB2_10
, "SMB 2.???"},
3616 static const struct {
3617 enum protocol_types proto
;
3618 uint16_t smb2_dialect
;
3619 } smb2cli_prots
[] = {
3620 {PROTOCOL_SMB2_02
, SMB2_DIALECT_REVISION_202
},
3621 {PROTOCOL_SMB2_10
, SMB2_DIALECT_REVISION_210
},
3622 {PROTOCOL_SMB2_22
, SMB2_DIALECT_REVISION_222
},
3623 {PROTOCOL_SMB2_24
, SMB2_DIALECT_REVISION_224
},
3624 {PROTOCOL_SMB3_00
, SMB3_DIALECT_REVISION_300
},
3627 struct smbXcli_negprot_state
{
3628 struct smbXcli_conn
*conn
;
3629 struct tevent_context
*ev
;
3630 uint32_t timeout_msec
;
3631 enum protocol_types min_protocol
;
3632 enum protocol_types max_protocol
;
3636 uint8_t dyn
[ARRAY_SIZE(smb2cli_prots
)*2];
3640 static void smbXcli_negprot_invalid_done(struct tevent_req
*subreq
);
3641 static struct tevent_req
*smbXcli_negprot_smb1_subreq(struct smbXcli_negprot_state
*state
);
3642 static void smbXcli_negprot_smb1_done(struct tevent_req
*subreq
);
3643 static struct tevent_req
*smbXcli_negprot_smb2_subreq(struct smbXcli_negprot_state
*state
);
3644 static void smbXcli_negprot_smb2_done(struct tevent_req
*subreq
);
3645 static NTSTATUS
smbXcli_negprot_dispatch_incoming(struct smbXcli_conn
*conn
,
3649 struct tevent_req
*smbXcli_negprot_send(TALLOC_CTX
*mem_ctx
,
3650 struct tevent_context
*ev
,
3651 struct smbXcli_conn
*conn
,
3652 uint32_t timeout_msec
,
3653 enum protocol_types min_protocol
,
3654 enum protocol_types max_protocol
)
3656 struct tevent_req
*req
, *subreq
;
3657 struct smbXcli_negprot_state
*state
;
3659 req
= tevent_req_create(mem_ctx
, &state
,
3660 struct smbXcli_negprot_state
);
3666 state
->timeout_msec
= timeout_msec
;
3667 state
->min_protocol
= min_protocol
;
3668 state
->max_protocol
= max_protocol
;
3670 if (min_protocol
== PROTOCOL_NONE
) {
3671 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER_MIX
);
3672 return tevent_req_post(req
, ev
);
3675 if (max_protocol
== PROTOCOL_NONE
) {
3676 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER_MIX
);
3677 return tevent_req_post(req
, ev
);
3680 if (min_protocol
> max_protocol
) {
3681 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER_MIX
);
3682 return tevent_req_post(req
, ev
);
3685 if ((min_protocol
< PROTOCOL_SMB2_02
) &&
3686 (max_protocol
< PROTOCOL_SMB2_02
)) {
3690 conn
->dispatch_incoming
= smb1cli_conn_dispatch_incoming
;
3692 subreq
= smbXcli_negprot_smb1_subreq(state
);
3693 if (tevent_req_nomem(subreq
, req
)) {
3694 return tevent_req_post(req
, ev
);
3696 tevent_req_set_callback(subreq
, smbXcli_negprot_smb1_done
, req
);
3700 if ((min_protocol
>= PROTOCOL_SMB2_02
) &&
3701 (max_protocol
>= PROTOCOL_SMB2_02
)) {
3705 conn
->dispatch_incoming
= smb2cli_conn_dispatch_incoming
;
3707 subreq
= smbXcli_negprot_smb2_subreq(state
);
3708 if (tevent_req_nomem(subreq
, req
)) {
3709 return tevent_req_post(req
, ev
);
3711 tevent_req_set_callback(subreq
, smbXcli_negprot_smb2_done
, req
);
3716 * We send an SMB1 negprot with the SMB2 dialects
3717 * and expect a SMB1 or a SMB2 response.
3719 * smbXcli_negprot_dispatch_incoming() will fix the
3720 * callback to match protocol of the response.
3722 conn
->dispatch_incoming
= smbXcli_negprot_dispatch_incoming
;
3724 subreq
= smbXcli_negprot_smb1_subreq(state
);
3725 if (tevent_req_nomem(subreq
, req
)) {
3726 return tevent_req_post(req
, ev
);
3728 tevent_req_set_callback(subreq
, smbXcli_negprot_invalid_done
, req
);
3732 static void smbXcli_negprot_invalid_done(struct tevent_req
*subreq
)
3734 struct tevent_req
*req
=
3735 tevent_req_callback_data(subreq
,
3740 * we just want the low level error
3742 status
= tevent_req_simple_recv_ntstatus(subreq
);
3743 TALLOC_FREE(subreq
);
3744 if (tevent_req_nterror(req
, status
)) {
3748 /* this should never happen */
3749 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
3752 static struct tevent_req
*smbXcli_negprot_smb1_subreq(struct smbXcli_negprot_state
*state
)
3755 DATA_BLOB bytes
= data_blob_null
;
3759 /* setup the protocol strings */
3760 for (i
=0; i
< ARRAY_SIZE(smb1cli_prots
); i
++) {
3764 if (smb1cli_prots
[i
].proto
< state
->min_protocol
) {
3768 if (smb1cli_prots
[i
].proto
> state
->max_protocol
) {
3772 ok
= data_blob_append(state
, &bytes
, &c
, sizeof(c
));
3778 * We now it is already ascii and
3779 * we want NULL termination.
3781 ok
= data_blob_append(state
, &bytes
,
3782 smb1cli_prots
[i
].smb1_name
,
3783 strlen(smb1cli_prots
[i
].smb1_name
)+1);
3789 smb1cli_req_flags(state
->max_protocol
,
3790 state
->conn
->smb1
.client
.capabilities
,
3795 return smb1cli_req_send(state
, state
->ev
, state
->conn
,
3799 state
->timeout_msec
,
3800 0xFFFE, 0, NULL
, /* pid, tid, session */
3801 0, NULL
, /* wct, vwv */
3802 bytes
.length
, bytes
.data
);
3805 static void smbXcli_negprot_smb1_done(struct tevent_req
*subreq
)
3807 struct tevent_req
*req
=
3808 tevent_req_callback_data(subreq
,
3810 struct smbXcli_negprot_state
*state
=
3811 tevent_req_data(req
,
3812 struct smbXcli_negprot_state
);
3813 struct smbXcli_conn
*conn
= state
->conn
;
3814 struct iovec
*recv_iov
= NULL
;
3823 size_t num_prots
= 0;
3825 uint32_t client_capabilities
= conn
->smb1
.client
.capabilities
;
3826 uint32_t both_capabilities
;
3827 uint32_t server_capabilities
= 0;
3828 uint32_t capabilities
;
3829 uint32_t client_max_xmit
= conn
->smb1
.client
.max_xmit
;
3830 uint32_t server_max_xmit
= 0;
3832 uint32_t server_max_mux
= 0;
3833 uint16_t server_security_mode
= 0;
3834 uint32_t server_session_key
= 0;
3835 bool server_readbraw
= false;
3836 bool server_writebraw
= false;
3837 bool server_lockread
= false;
3838 bool server_writeunlock
= false;
3839 struct GUID server_guid
= GUID_zero();
3840 DATA_BLOB server_gss_blob
= data_blob_null
;
3841 uint8_t server_challenge
[8];
3842 char *server_workgroup
= NULL
;
3843 char *server_name
= NULL
;
3844 int server_time_zone
= 0;
3845 NTTIME server_system_time
= 0;
3846 static const struct smb1cli_req_expected_response expected
[] = {
3848 .status
= NT_STATUS_OK
,
3849 .wct
= 0x11, /* NT1 */
3852 .status
= NT_STATUS_OK
,
3853 .wct
= 0x0D, /* LM */
3856 .status
= NT_STATUS_OK
,
3857 .wct
= 0x01, /* CORE */
3861 ZERO_STRUCT(server_challenge
);
3863 status
= smb1cli_req_recv(subreq
, state
,
3868 NULL
, /* pvwv_offset */
3871 NULL
, /* pbytes_offset */
3873 expected
, ARRAY_SIZE(expected
));
3874 TALLOC_FREE(subreq
);
3875 if (tevent_req_nterror(req
, status
)) {
3879 flags
= CVAL(inhdr
, HDR_FLG
);
3881 protnum
= SVAL(vwv
, 0);
3883 for (i
=0; i
< ARRAY_SIZE(smb1cli_prots
); i
++) {
3884 if (smb1cli_prots
[i
].proto
< state
->min_protocol
) {
3888 if (smb1cli_prots
[i
].proto
> state
->max_protocol
) {
3892 if (protnum
!= num_prots
) {
3897 conn
->protocol
= smb1cli_prots
[i
].proto
;
3901 if (conn
->protocol
== PROTOCOL_NONE
) {
3902 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
3906 if ((conn
->protocol
< PROTOCOL_NT1
) && conn
->mandatory_signing
) {
3907 DEBUG(0,("smbXcli_negprot: SMB signing is mandatory "
3908 "and the selected protocol level doesn't support it.\n"));
3909 tevent_req_nterror(req
, NT_STATUS_ACCESS_DENIED
);
3913 if (flags
& FLAG_SUPPORT_LOCKREAD
) {
3914 server_lockread
= true;
3915 server_writeunlock
= true;
3918 if (conn
->protocol
>= PROTOCOL_NT1
) {
3919 const char *client_signing
= NULL
;
3920 bool server_mandatory
= false;
3921 bool server_allowed
= false;
3922 const char *server_signing
= NULL
;
3927 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
3932 server_security_mode
= CVAL(vwv
+ 1, 0);
3933 server_max_mux
= SVAL(vwv
+ 1, 1);
3934 server_max_xmit
= IVAL(vwv
+ 3, 1);
3935 server_session_key
= IVAL(vwv
+ 7, 1);
3936 server_time_zone
= SVALS(vwv
+ 15, 1);
3937 server_time_zone
*= 60;
3938 /* this time arrives in real GMT */
3939 server_system_time
= BVAL(vwv
+ 11, 1);
3940 server_capabilities
= IVAL(vwv
+ 9, 1);
3942 key_len
= CVAL(vwv
+ 16, 1);
3944 if (server_capabilities
& CAP_RAW_MODE
) {
3945 server_readbraw
= true;
3946 server_writebraw
= true;
3948 if (server_capabilities
& CAP_LOCK_AND_READ
) {
3949 server_lockread
= true;
3952 if (server_capabilities
& CAP_EXTENDED_SECURITY
) {
3953 DATA_BLOB blob1
, blob2
;
3955 if (num_bytes
< 16) {
3956 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
3960 blob1
= data_blob_const(bytes
, 16);
3961 status
= GUID_from_data_blob(&blob1
, &server_guid
);
3962 if (tevent_req_nterror(req
, status
)) {
3966 blob1
= data_blob_const(bytes
+16, num_bytes
-16);
3967 blob2
= data_blob_dup_talloc(state
, blob1
);
3968 if (blob1
.length
> 0 &&
3969 tevent_req_nomem(blob2
.data
, req
)) {
3972 server_gss_blob
= blob2
;
3974 DATA_BLOB blob1
, blob2
;
3976 if (num_bytes
< key_len
) {
3977 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
3981 if (key_len
!= 0 && key_len
!= 8) {
3982 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
3987 memcpy(server_challenge
, bytes
, 8);
3990 blob1
= data_blob_const(bytes
+key_len
, num_bytes
-key_len
);
3991 blob2
= data_blob_const(bytes
+key_len
, num_bytes
-key_len
);
3992 if (blob1
.length
> 0) {
3995 len
= utf16_len_n(blob1
.data
,
3999 ok
= convert_string_talloc(state
,
4007 status
= map_nt_error_from_unix_common(errno
);
4008 tevent_req_nterror(req
, status
);
4013 blob2
.data
+= blob1
.length
;
4014 blob2
.length
-= blob1
.length
;
4015 if (blob2
.length
> 0) {
4018 len
= utf16_len_n(blob1
.data
,
4022 ok
= convert_string_talloc(state
,
4030 status
= map_nt_error_from_unix_common(errno
);
4031 tevent_req_nterror(req
, status
);
4037 client_signing
= "disabled";
4038 if (conn
->allow_signing
) {
4039 client_signing
= "allowed";
4041 if (conn
->mandatory_signing
) {
4042 client_signing
= "required";
4045 server_signing
= "not supported";
4046 if (server_security_mode
& NEGOTIATE_SECURITY_SIGNATURES_ENABLED
) {
4047 server_signing
= "supported";
4048 server_allowed
= true;
4049 } else if (conn
->mandatory_signing
) {
4051 * We have mandatory signing as client
4052 * lets assume the server will look at our
4053 * FLAGS2_SMB_SECURITY_SIGNATURES_REQUIRED
4054 * flag in the session setup
4056 server_signing
= "not announced";
4057 server_allowed
= true;
4059 if (server_security_mode
& NEGOTIATE_SECURITY_SIGNATURES_REQUIRED
) {
4060 server_signing
= "required";
4061 server_mandatory
= true;
4064 ok
= smb_signing_set_negotiated(conn
->smb1
.signing
,
4068 DEBUG(1,("cli_negprot: SMB signing is required, "
4069 "but client[%s] and server[%s] mismatch\n",
4070 client_signing
, server_signing
));
4071 tevent_req_nterror(req
, NT_STATUS_ACCESS_DENIED
);
4075 } else if (conn
->protocol
>= PROTOCOL_LANMAN1
) {
4081 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4085 server_security_mode
= SVAL(vwv
+ 1, 0);
4086 server_max_xmit
= SVAL(vwv
+ 2, 0);
4087 server_max_mux
= SVAL(vwv
+ 3, 0);
4088 server_readbraw
= ((SVAL(vwv
+ 5, 0) & 0x1) != 0);
4089 server_writebraw
= ((SVAL(vwv
+ 5, 0) & 0x2) != 0);
4090 server_session_key
= IVAL(vwv
+ 6, 0);
4091 server_time_zone
= SVALS(vwv
+ 10, 0);
4092 server_time_zone
*= 60;
4093 /* this time is converted to GMT by make_unix_date */
4094 t
= pull_dos_date((const uint8_t *)(vwv
+ 8), server_time_zone
);
4095 unix_to_nt_time(&server_system_time
, t
);
4096 key_len
= SVAL(vwv
+ 11, 0);
4098 if (num_bytes
< key_len
) {
4099 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4103 if (key_len
!= 0 && key_len
!= 8) {
4104 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4109 memcpy(server_challenge
, bytes
, 8);
4112 blob1
= data_blob_const(bytes
+key_len
, num_bytes
-key_len
);
4113 if (blob1
.length
> 0) {
4117 len
= utf16_len_n(blob1
.data
,
4121 ok
= convert_string_talloc(state
,
4129 status
= map_nt_error_from_unix_common(errno
);
4130 tevent_req_nterror(req
, status
);
4136 /* the old core protocol */
4137 server_time_zone
= get_time_zone(time(NULL
));
4138 server_max_xmit
= 1024;
4142 if (server_max_xmit
< 1024) {
4143 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4147 if (server_max_mux
< 1) {
4148 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4153 * Now calculate the negotiated capabilities
4154 * based on the mask for:
4155 * - client only flags
4156 * - flags used in both directions
4157 * - server only flags
4159 both_capabilities
= client_capabilities
& server_capabilities
;
4160 capabilities
= client_capabilities
& SMB_CAP_CLIENT_MASK
;
4161 capabilities
|= both_capabilities
& SMB_CAP_BOTH_MASK
;
4162 capabilities
|= server_capabilities
& SMB_CAP_SERVER_MASK
;
4164 max_xmit
= MIN(client_max_xmit
, server_max_xmit
);
4166 conn
->smb1
.server
.capabilities
= server_capabilities
;
4167 conn
->smb1
.capabilities
= capabilities
;
4169 conn
->smb1
.server
.max_xmit
= server_max_xmit
;
4170 conn
->smb1
.max_xmit
= max_xmit
;
4172 conn
->smb1
.server
.max_mux
= server_max_mux
;
4174 conn
->smb1
.server
.security_mode
= server_security_mode
;
4176 conn
->smb1
.server
.readbraw
= server_readbraw
;
4177 conn
->smb1
.server
.writebraw
= server_writebraw
;
4178 conn
->smb1
.server
.lockread
= server_lockread
;
4179 conn
->smb1
.server
.writeunlock
= server_writeunlock
;
4181 conn
->smb1
.server
.session_key
= server_session_key
;
4183 talloc_steal(conn
, server_gss_blob
.data
);
4184 conn
->smb1
.server
.gss_blob
= server_gss_blob
;
4185 conn
->smb1
.server
.guid
= server_guid
;
4186 memcpy(conn
->smb1
.server
.challenge
, server_challenge
, 8);
4187 conn
->smb1
.server
.workgroup
= talloc_move(conn
, &server_workgroup
);
4188 conn
->smb1
.server
.name
= talloc_move(conn
, &server_name
);
4190 conn
->smb1
.server
.time_zone
= server_time_zone
;
4191 conn
->smb1
.server
.system_time
= server_system_time
;
4193 tevent_req_done(req
);
4196 static struct tevent_req
*smbXcli_negprot_smb2_subreq(struct smbXcli_negprot_state
*state
)
4200 uint16_t dialect_count
= 0;
4202 buf
= state
->smb2
.dyn
;
4203 for (i
=0; i
< ARRAY_SIZE(smb2cli_prots
); i
++) {
4204 if (smb2cli_prots
[i
].proto
< state
->min_protocol
) {
4208 if (smb2cli_prots
[i
].proto
> state
->max_protocol
) {
4212 SSVAL(buf
, dialect_count
*2, smb2cli_prots
[i
].smb2_dialect
);
4216 buf
= state
->smb2
.fixed
;
4218 SSVAL(buf
, 2, dialect_count
);
4219 SSVAL(buf
, 4, state
->conn
->smb2
.client
.security_mode
);
4220 SSVAL(buf
, 6, 0); /* Reserved */
4221 if (state
->max_protocol
>= PROTOCOL_SMB2_22
) {
4222 SIVAL(buf
, 8, state
->conn
->smb2
.client
.capabilities
);
4224 SIVAL(buf
, 8, 0); /* Capabilities */
4226 if (state
->max_protocol
>= PROTOCOL_SMB2_10
) {
4230 status
= GUID_to_ndr_blob(&state
->conn
->smb2
.client
.guid
,
4232 if (!NT_STATUS_IS_OK(status
)) {
4235 memcpy(buf
+12, blob
.data
, 16); /* ClientGuid */
4237 memset(buf
+12, 0, 16); /* ClientGuid */
4239 SBVAL(buf
, 28, 0); /* ClientStartTime */
4241 return smb2cli_req_send(state
, state
->ev
,
4242 state
->conn
, SMB2_OP_NEGPROT
,
4244 state
->timeout_msec
,
4245 NULL
, NULL
, /* tcon, session */
4246 state
->smb2
.fixed
, sizeof(state
->smb2
.fixed
),
4247 state
->smb2
.dyn
, dialect_count
*2);
4250 static void smbXcli_negprot_smb2_done(struct tevent_req
*subreq
)
4252 struct tevent_req
*req
=
4253 tevent_req_callback_data(subreq
,
4255 struct smbXcli_negprot_state
*state
=
4256 tevent_req_data(req
,
4257 struct smbXcli_negprot_state
);
4258 struct smbXcli_conn
*conn
= state
->conn
;
4259 size_t security_offset
, security_length
;
4265 uint16_t dialect_revision
;
4266 static const struct smb2cli_req_expected_response expected
[] = {
4268 .status
= NT_STATUS_OK
,
4273 status
= smb2cli_req_recv(subreq
, state
, &iov
,
4274 expected
, ARRAY_SIZE(expected
));
4275 TALLOC_FREE(subreq
);
4276 if (tevent_req_nterror(req
, status
)) {
4280 body
= (uint8_t *)iov
[1].iov_base
;
4282 dialect_revision
= SVAL(body
, 4);
4284 for (i
=0; i
< ARRAY_SIZE(smb2cli_prots
); i
++) {
4285 if (smb2cli_prots
[i
].proto
< state
->min_protocol
) {
4289 if (smb2cli_prots
[i
].proto
> state
->max_protocol
) {
4293 if (smb2cli_prots
[i
].smb2_dialect
!= dialect_revision
) {
4297 conn
->protocol
= smb2cli_prots
[i
].proto
;
4301 if (conn
->protocol
== PROTOCOL_NONE
) {
4302 if (state
->min_protocol
>= PROTOCOL_SMB2_02
) {
4303 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4307 if (dialect_revision
!= SMB2_DIALECT_REVISION_2FF
) {
4308 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4312 /* make sure we do not loop forever */
4313 state
->min_protocol
= PROTOCOL_SMB2_02
;
4316 * send a SMB2 negprot, in order to negotiate
4319 subreq
= smbXcli_negprot_smb2_subreq(state
);
4320 if (tevent_req_nomem(subreq
, req
)) {
4323 tevent_req_set_callback(subreq
, smbXcli_negprot_smb2_done
, req
);
4327 conn
->smb2
.server
.security_mode
= SVAL(body
, 2);
4329 blob
= data_blob_const(body
+ 8, 16);
4330 status
= GUID_from_data_blob(&blob
, &conn
->smb2
.server
.guid
);
4331 if (tevent_req_nterror(req
, status
)) {
4335 conn
->smb2
.server
.capabilities
= IVAL(body
, 24);
4336 conn
->smb2
.server
.max_trans_size
= IVAL(body
, 28);
4337 conn
->smb2
.server
.max_read_size
= IVAL(body
, 32);
4338 conn
->smb2
.server
.max_write_size
= IVAL(body
, 36);
4339 conn
->smb2
.server
.system_time
= BVAL(body
, 40);
4340 conn
->smb2
.server
.start_time
= BVAL(body
, 48);
4342 security_offset
= SVAL(body
, 56);
4343 security_length
= SVAL(body
, 58);
4345 if (security_offset
!= SMB2_HDR_BODY
+ iov
[1].iov_len
) {
4346 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4350 if (security_length
> iov
[2].iov_len
) {
4351 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
4355 conn
->smb2
.server
.gss_blob
= data_blob_talloc(conn
,
4358 if (tevent_req_nomem(conn
->smb2
.server
.gss_blob
.data
, req
)) {
4362 tevent_req_done(req
);
4365 static NTSTATUS
smbXcli_negprot_dispatch_incoming(struct smbXcli_conn
*conn
,
4366 TALLOC_CTX
*tmp_mem
,
4369 size_t num_pending
= talloc_array_length(conn
->pending
);
4370 struct tevent_req
*subreq
;
4371 struct smbXcli_req_state
*substate
;
4372 struct tevent_req
*req
;
4373 uint32_t protocol_magic
;
4374 size_t inbuf_len
= smb_len_nbt(inbuf
);
4376 if (num_pending
!= 1) {
4377 return NT_STATUS_INTERNAL_ERROR
;
4380 if (inbuf_len
< 4) {
4381 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
4384 subreq
= conn
->pending
[0];
4385 substate
= tevent_req_data(subreq
, struct smbXcli_req_state
);
4386 req
= tevent_req_callback_data(subreq
, struct tevent_req
);
4388 protocol_magic
= IVAL(inbuf
, 4);
4390 switch (protocol_magic
) {
4392 tevent_req_set_callback(subreq
, smbXcli_negprot_smb1_done
, req
);
4393 conn
->dispatch_incoming
= smb1cli_conn_dispatch_incoming
;
4394 return smb1cli_conn_dispatch_incoming(conn
, tmp_mem
, inbuf
);
4397 if (substate
->smb2
.recv_iov
== NULL
) {
4399 * For the SMB1 negprot we have move it.
4401 substate
->smb2
.recv_iov
= substate
->smb1
.recv_iov
;
4402 substate
->smb1
.recv_iov
= NULL
;
4406 * we got an SMB2 answer, which consumed sequence number 0
4407 * so we need to use 1 as the next one.
4409 * we also need to set the current credits to 0
4410 * as we consumed the initial one. The SMB2 answer
4411 * hopefully grant us a new credit.
4414 conn
->smb2
.cur_credits
= 0;
4415 tevent_req_set_callback(subreq
, smbXcli_negprot_smb2_done
, req
);
4416 conn
->dispatch_incoming
= smb2cli_conn_dispatch_incoming
;
4417 return smb2cli_conn_dispatch_incoming(conn
, tmp_mem
, inbuf
);
4420 DEBUG(10, ("Got non-SMB PDU\n"));
4421 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
4424 NTSTATUS
smbXcli_negprot_recv(struct tevent_req
*req
)
4426 return tevent_req_simple_recv_ntstatus(req
);
4429 NTSTATUS
smbXcli_negprot(struct smbXcli_conn
*conn
,
4430 uint32_t timeout_msec
,
4431 enum protocol_types min_protocol
,
4432 enum protocol_types max_protocol
)
4434 TALLOC_CTX
*frame
= talloc_stackframe();
4435 struct tevent_context
*ev
;
4436 struct tevent_req
*req
;
4437 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
4440 if (smbXcli_conn_has_async_calls(conn
)) {
4442 * Can't use sync call while an async call is in flight
4444 status
= NT_STATUS_INVALID_PARAMETER_MIX
;
4447 ev
= samba_tevent_context_init(frame
);
4451 req
= smbXcli_negprot_send(frame
, ev
, conn
, timeout_msec
,
4452 min_protocol
, max_protocol
);
4456 ok
= tevent_req_poll(req
, ev
);
4458 status
= map_nt_error_from_unix_common(errno
);
4461 status
= smbXcli_negprot_recv(req
);
4467 static int smbXcli_session_destructor(struct smbXcli_session
*session
)
4469 if (session
->conn
== NULL
) {
4473 DLIST_REMOVE(session
->conn
->sessions
, session
);
4477 struct smbXcli_session
*smbXcli_session_create(TALLOC_CTX
*mem_ctx
,
4478 struct smbXcli_conn
*conn
)
4480 struct smbXcli_session
*session
;
4482 session
= talloc_zero(mem_ctx
, struct smbXcli_session
);
4483 if (session
== NULL
) {
4486 session
->smb2
= talloc_zero(session
, struct smb2cli_session
);
4487 if (session
->smb2
== NULL
) {
4488 talloc_free(session
);
4491 talloc_set_destructor(session
, smbXcli_session_destructor
);
4493 DLIST_ADD_END(conn
->sessions
, session
, struct smbXcli_session
*);
4494 session
->conn
= conn
;
4499 struct smbXcli_session
*smbXcli_session_copy(TALLOC_CTX
*mem_ctx
,
4500 struct smbXcli_session
*src
)
4502 struct smbXcli_session
*session
;
4504 session
= talloc_zero(mem_ctx
, struct smbXcli_session
);
4505 if (session
== NULL
) {
4508 session
->smb2
= talloc_zero(session
, struct smb2cli_session
);
4509 if (session
->smb2
== NULL
) {
4510 talloc_free(session
);
4514 session
->conn
= src
->conn
;
4515 *session
->smb2
= *src
->smb2
;
4516 session
->smb2_channel
= src
->smb2_channel
;
4517 session
->disconnect_expired
= src
->disconnect_expired
;
4519 DLIST_ADD_END(src
->conn
->sessions
, session
, struct smbXcli_session
*);
4520 talloc_set_destructor(session
, smbXcli_session_destructor
);
4526 NTSTATUS
smbXcli_session_application_key(struct smbXcli_session
*session
,
4527 TALLOC_CTX
*mem_ctx
,
4530 const DATA_BLOB
*application_key
;
4532 *key
= data_blob_null
;
4534 if (session
->conn
== NULL
) {
4535 return NT_STATUS_NO_USER_SESSION_KEY
;
4538 if (session
->conn
->protocol
>= PROTOCOL_SMB2_02
) {
4539 application_key
= &session
->smb2
->application_key
;
4541 application_key
= &session
->smb1
.application_key
;
4544 if (application_key
->length
== 0) {
4545 return NT_STATUS_NO_USER_SESSION_KEY
;
4548 *key
= data_blob_dup_talloc(mem_ctx
, *application_key
);
4549 if (key
->data
== NULL
) {
4550 return NT_STATUS_NO_MEMORY
;
4553 return NT_STATUS_OK
;
4556 void smbXcli_session_set_disconnect_expired(struct smbXcli_session
*session
)
4558 session
->disconnect_expired
= true;
4561 uint16_t smb1cli_session_current_id(struct smbXcli_session
*session
)
4563 return session
->smb1
.session_id
;
4566 void smb1cli_session_set_id(struct smbXcli_session
*session
,
4567 uint16_t session_id
)
4569 session
->smb1
.session_id
= session_id
;
4572 NTSTATUS
smb1cli_session_set_session_key(struct smbXcli_session
*session
,
4573 const DATA_BLOB _session_key
)
4575 struct smbXcli_conn
*conn
= session
->conn
;
4576 uint8_t session_key
[16];
4579 return NT_STATUS_INVALID_PARAMETER_MIX
;
4582 if (session
->smb1
.application_key
.length
!= 0) {
4584 * TODO: do not allow this...
4586 * return NT_STATUS_INVALID_PARAMETER_MIX;
4588 data_blob_clear_free(&session
->smb1
.application_key
);
4589 session
->smb1
.protected_key
= false;
4592 if (_session_key
.length
== 0) {
4593 return NT_STATUS_OK
;
4596 ZERO_STRUCT(session_key
);
4597 memcpy(session_key
, _session_key
.data
,
4598 MIN(_session_key
.length
, sizeof(session_key
)));
4600 session
->smb1
.application_key
= data_blob_talloc(session
,
4602 sizeof(session_key
));
4603 ZERO_STRUCT(session_key
);
4604 if (session
->smb1
.application_key
.data
== NULL
) {
4605 return NT_STATUS_NO_MEMORY
;
4608 session
->smb1
.protected_key
= false;
4610 return NT_STATUS_OK
;
4613 NTSTATUS
smb1cli_session_protect_session_key(struct smbXcli_session
*session
)
4615 if (session
->smb1
.protected_key
) {
4616 /* already protected */
4617 return NT_STATUS_OK
;
4620 if (session
->smb1
.application_key
.length
!= 16) {
4621 return NT_STATUS_INVALID_PARAMETER_MIX
;
4624 smb_key_derivation(session
->smb1
.application_key
.data
,
4625 session
->smb1
.application_key
.length
,
4626 session
->smb1
.application_key
.data
);
4628 session
->smb1
.protected_key
= true;
4630 return NT_STATUS_OK
;
4633 uint8_t smb2cli_session_security_mode(struct smbXcli_session
*session
)
4635 struct smbXcli_conn
*conn
= session
->conn
;
4636 uint8_t security_mode
= 0;
4639 return security_mode
;
4642 security_mode
= SMB2_NEGOTIATE_SIGNING_ENABLED
;
4643 if (conn
->mandatory_signing
) {
4644 security_mode
|= SMB2_NEGOTIATE_SIGNING_REQUIRED
;
4647 return security_mode
;
4650 uint64_t smb2cli_session_current_id(struct smbXcli_session
*session
)
4652 return session
->smb2
->session_id
;
4655 uint16_t smb2cli_session_get_flags(struct smbXcli_session
*session
)
4657 return session
->smb2
->session_flags
;
4660 void smb2cli_session_set_id_and_flags(struct smbXcli_session
*session
,
4661 uint64_t session_id
,
4662 uint16_t session_flags
)
4664 session
->smb2
->session_id
= session_id
;
4665 session
->smb2
->session_flags
= session_flags
;
4668 void smb2cli_session_increment_channel_sequence(struct smbXcli_session
*session
)
4670 session
->smb2
->channel_sequence
+= 1;
4673 NTSTATUS
smb2cli_session_set_session_key(struct smbXcli_session
*session
,
4674 const DATA_BLOB _session_key
,
4675 const struct iovec
*recv_iov
)
4677 struct smbXcli_conn
*conn
= session
->conn
;
4678 uint16_t no_sign_flags
;
4679 uint8_t session_key
[16];
4683 return NT_STATUS_INVALID_PARAMETER_MIX
;
4686 no_sign_flags
= SMB2_SESSION_FLAG_IS_GUEST
| SMB2_SESSION_FLAG_IS_NULL
;
4688 if (session
->smb2
->session_flags
& no_sign_flags
) {
4689 session
->smb2
->should_sign
= false;
4690 return NT_STATUS_OK
;
4693 if (session
->smb2
->signing_key
.length
!= 0) {
4694 return NT_STATUS_INVALID_PARAMETER_MIX
;
4697 ZERO_STRUCT(session_key
);
4698 memcpy(session_key
, _session_key
.data
,
4699 MIN(_session_key
.length
, sizeof(session_key
)));
4701 session
->smb2
->signing_key
= data_blob_talloc(session
,
4703 sizeof(session_key
));
4704 if (session
->smb2
->signing_key
.data
== NULL
) {
4705 ZERO_STRUCT(session_key
);
4706 return NT_STATUS_NO_MEMORY
;
4709 if (conn
->protocol
>= PROTOCOL_SMB2_24
) {
4710 const DATA_BLOB label
= data_blob_string_const_null("SMB2AESCMAC");
4711 const DATA_BLOB context
= data_blob_string_const_null("SmbSign");
4713 smb2_key_derivation(session_key
, sizeof(session_key
),
4714 label
.data
, label
.length
,
4715 context
.data
, context
.length
,
4716 session
->smb2
->signing_key
.data
);
4719 session
->smb2
->encryption_key
= data_blob_dup_talloc(session
,
4720 session
->smb2
->signing_key
);
4721 if (session
->smb2
->encryption_key
.data
== NULL
) {
4722 ZERO_STRUCT(session_key
);
4723 return NT_STATUS_NO_MEMORY
;
4726 if (conn
->protocol
>= PROTOCOL_SMB2_24
) {
4727 const DATA_BLOB label
= data_blob_string_const_null("SMB2AESCCM");
4728 const DATA_BLOB context
= data_blob_string_const_null("ServerIn ");
4730 smb2_key_derivation(session_key
, sizeof(session_key
),
4731 label
.data
, label
.length
,
4732 context
.data
, context
.length
,
4733 session
->smb2
->encryption_key
.data
);
4736 session
->smb2
->decryption_key
= data_blob_dup_talloc(session
,
4737 session
->smb2
->signing_key
);
4738 if (session
->smb2
->decryption_key
.data
== NULL
) {
4739 ZERO_STRUCT(session_key
);
4740 return NT_STATUS_NO_MEMORY
;
4743 if (conn
->protocol
>= PROTOCOL_SMB2_24
) {
4744 const DATA_BLOB label
= data_blob_string_const_null("SMB2AESCCM");
4745 const DATA_BLOB context
= data_blob_string_const_null("ServerOut");
4747 smb2_key_derivation(session_key
, sizeof(session_key
),
4748 label
.data
, label
.length
,
4749 context
.data
, context
.length
,
4750 session
->smb2
->decryption_key
.data
);
4753 session
->smb2
->application_key
= data_blob_dup_talloc(session
,
4754 session
->smb2
->signing_key
);
4755 if (session
->smb2
->application_key
.data
== NULL
) {
4756 ZERO_STRUCT(session_key
);
4757 return NT_STATUS_NO_MEMORY
;
4760 if (conn
->protocol
>= PROTOCOL_SMB2_24
) {
4761 const DATA_BLOB label
= data_blob_string_const_null("SMB2APP");
4762 const DATA_BLOB context
= data_blob_string_const_null("SmbRpc");
4764 smb2_key_derivation(session_key
, sizeof(session_key
),
4765 label
.data
, label
.length
,
4766 context
.data
, context
.length
,
4767 session
->smb2
->application_key
.data
);
4769 ZERO_STRUCT(session_key
);
4771 session
->smb2_channel
.signing_key
= data_blob_dup_talloc(session
,
4772 session
->smb2
->signing_key
);
4773 if (session
->smb2_channel
.signing_key
.data
== NULL
) {
4774 return NT_STATUS_NO_MEMORY
;
4777 status
= smb2_signing_check_pdu(session
->smb2_channel
.signing_key
,
4778 session
->conn
->protocol
,
4780 if (!NT_STATUS_IS_OK(status
)) {
4784 session
->smb2
->should_sign
= false;
4785 session
->smb2
->should_encrypt
= false;
4787 if (conn
->desire_signing
) {
4788 session
->smb2
->should_sign
= true;
4791 if (conn
->smb2
.server
.security_mode
& SMB2_NEGOTIATE_SIGNING_REQUIRED
) {
4792 session
->smb2
->should_sign
= true;
4795 if (session
->smb2
->session_flags
& SMB2_SESSION_FLAG_ENCRYPT_DATA
) {
4796 session
->smb2
->should_encrypt
= true;
4799 if (conn
->protocol
< PROTOCOL_SMB2_24
) {
4800 session
->smb2
->should_encrypt
= false;
4803 if (!(conn
->smb2
.server
.capabilities
& SMB2_CAP_ENCRYPTION
)) {
4804 session
->smb2
->should_encrypt
= false;
4807 generate_random_buffer((uint8_t *)&session
->smb2
->nonce_high
,
4808 sizeof(session
->smb2
->nonce_high
));
4809 session
->smb2
->nonce_low
= 1;
4811 return NT_STATUS_OK
;
4814 NTSTATUS
smb2cli_session_create_channel(TALLOC_CTX
*mem_ctx
,
4815 struct smbXcli_session
*session1
,
4816 struct smbXcli_conn
*conn
,
4817 struct smbXcli_session
**_session2
)
4819 struct smbXcli_session
*session2
;
4821 if (session1
->smb2
->signing_key
.length
== 0) {
4822 return NT_STATUS_INVALID_PARAMETER_MIX
;
4826 return NT_STATUS_INVALID_PARAMETER_MIX
;
4829 session2
= talloc_zero(mem_ctx
, struct smbXcli_session
);
4830 if (session2
== NULL
) {
4831 return NT_STATUS_NO_MEMORY
;
4833 session2
->smb2
= talloc_reference(session2
, session1
->smb2
);
4834 if (session2
->smb2
== NULL
) {
4835 talloc_free(session2
);
4836 return NT_STATUS_NO_MEMORY
;
4839 talloc_set_destructor(session2
, smbXcli_session_destructor
);
4840 DLIST_ADD_END(conn
->sessions
, session2
, struct smbXcli_session
*);
4841 session2
->conn
= conn
;
4843 *_session2
= session2
;
4844 return NT_STATUS_OK
;
4847 NTSTATUS
smb2cli_session_set_channel_key(struct smbXcli_session
*session
,
4848 const DATA_BLOB _channel_key
,
4849 const struct iovec
*recv_iov
)
4851 struct smbXcli_conn
*conn
= session
->conn
;
4852 uint8_t channel_key
[16];
4856 return NT_STATUS_INVALID_PARAMETER_MIX
;
4859 if (session
->smb2_channel
.signing_key
.length
!= 0) {
4860 return NT_STATUS_INVALID_PARAMETER_MIX
;
4863 ZERO_STRUCT(channel_key
);
4864 memcpy(channel_key
, _channel_key
.data
,
4865 MIN(_channel_key
.length
, sizeof(channel_key
)));
4867 session
->smb2_channel
.signing_key
= data_blob_talloc(session
,
4869 sizeof(channel_key
));
4870 if (session
->smb2_channel
.signing_key
.data
== NULL
) {
4871 ZERO_STRUCT(channel_key
);
4872 return NT_STATUS_NO_MEMORY
;
4875 if (conn
->protocol
>= PROTOCOL_SMB2_24
) {
4876 const DATA_BLOB label
= data_blob_string_const_null("SMB2AESCMAC");
4877 const DATA_BLOB context
= data_blob_string_const_null("SmbSign");
4879 smb2_key_derivation(channel_key
, sizeof(channel_key
),
4880 label
.data
, label
.length
,
4881 context
.data
, context
.length
,
4882 session
->smb2_channel
.signing_key
.data
);
4884 ZERO_STRUCT(channel_key
);
4886 status
= smb2_signing_check_pdu(session
->smb2_channel
.signing_key
,
4887 session
->conn
->protocol
,
4889 if (!NT_STATUS_IS_OK(status
)) {
4893 return NT_STATUS_OK
;
4896 struct smbXcli_tcon
*smbXcli_tcon_create(TALLOC_CTX
*mem_ctx
)
4898 struct smbXcli_tcon
*tcon
;
4900 tcon
= talloc_zero(mem_ctx
, struct smbXcli_tcon
);
4908 uint16_t smb1cli_tcon_current_id(struct smbXcli_tcon
*tcon
)
4910 return tcon
->smb1
.tcon_id
;
4913 void smb1cli_tcon_set_id(struct smbXcli_tcon
*tcon
, uint16_t tcon_id
)
4915 tcon
->smb1
.tcon_id
= tcon_id
;
4918 bool smb1cli_tcon_set_values(struct smbXcli_tcon
*tcon
,
4920 uint16_t optional_support
,
4921 uint32_t maximal_access
,
4922 uint32_t guest_maximal_access
,
4923 const char *service
,
4924 const char *fs_type
)
4926 tcon
->smb1
.tcon_id
= tcon_id
;
4927 tcon
->smb1
.optional_support
= optional_support
;
4928 tcon
->smb1
.maximal_access
= maximal_access
;
4929 tcon
->smb1
.guest_maximal_access
= guest_maximal_access
;
4931 TALLOC_FREE(tcon
->smb1
.service
);
4932 tcon
->smb1
.service
= talloc_strdup(tcon
, service
);
4933 if (service
!= NULL
&& tcon
->smb1
.service
== NULL
) {
4937 TALLOC_FREE(tcon
->smb1
.fs_type
);
4938 tcon
->smb1
.fs_type
= talloc_strdup(tcon
, fs_type
);
4939 if (fs_type
!= NULL
&& tcon
->smb1
.fs_type
== NULL
) {
4946 uint32_t smb2cli_tcon_current_id(struct smbXcli_tcon
*tcon
)
4948 return tcon
->smb2
.tcon_id
;
4951 uint32_t smb2cli_tcon_capabilities(struct smbXcli_tcon
*tcon
)
4953 return tcon
->smb2
.capabilities
;
4956 void smb2cli_tcon_set_values(struct smbXcli_tcon
*tcon
,
4957 struct smbXcli_session
*session
,
4961 uint32_t capabilities
,
4962 uint32_t maximal_access
)
4964 tcon
->smb2
.tcon_id
= tcon_id
;
4965 tcon
->smb2
.type
= type
;
4966 tcon
->smb2
.flags
= flags
;
4967 tcon
->smb2
.capabilities
= capabilities
;
4968 tcon
->smb2
.maximal_access
= maximal_access
;
4970 tcon
->smb2
.should_encrypt
= false;
4972 if (session
== NULL
) {
4976 tcon
->smb2
.should_encrypt
= session
->smb2
->should_encrypt
;
4978 if (flags
& SMB2_SHAREFLAG_ENCRYPT_DATA
) {
4979 tcon
->smb2
.should_encrypt
= true;