selftest: generate a ramdon domain sid during provision and export as SAMSID/[TRUST_...
[Samba.git] / libcli / smb / smbXcli_base.c
blobe9fdc1dc32a83e2efae12b3df393b28a8079817d
1 /*
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/>.
21 #include "includes.h"
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 "lib/util/iov_buf.h"
29 #include "../libcli/smb/smb_common.h"
30 #include "../libcli/smb/smb_seal.h"
31 #include "../libcli/smb/smb_signing.h"
32 #include "../libcli/smb/read_smb.h"
33 #include "smbXcli_base.h"
34 #include "librpc/ndr/libndr.h"
35 #include "libcli/smb/smb2_negotiate_context.h"
36 #include "lib/crypto/sha512.h"
37 #include "lib/crypto/aes.h"
38 #include "lib/crypto/aes_ccm_128.h"
39 #include "lib/crypto/aes_gcm_128.h"
41 struct smbXcli_conn;
42 struct smbXcli_req;
43 struct smbXcli_session;
44 struct smbXcli_tcon;
46 struct smbXcli_conn {
47 int sock_fd;
48 struct sockaddr_storage local_ss;
49 struct sockaddr_storage remote_ss;
50 const char *remote_name;
52 struct tevent_queue *outgoing;
53 struct tevent_req **pending;
54 struct tevent_req *read_smb_req;
55 struct tevent_req *suicide_req;
57 enum protocol_types min_protocol;
58 enum protocol_types max_protocol;
59 enum protocol_types protocol;
60 bool allow_signing;
61 bool desire_signing;
62 bool mandatory_signing;
65 * The incoming dispatch function should return:
66 * - NT_STATUS_RETRY, if more incoming PDUs are expected.
67 * - NT_STATUS_OK, if no more processing is desired, e.g.
68 * the dispatch function called
69 * tevent_req_done().
70 * - All other return values disconnect the connection.
72 NTSTATUS (*dispatch_incoming)(struct smbXcli_conn *conn,
73 TALLOC_CTX *tmp_mem,
74 uint8_t *inbuf);
76 struct {
77 struct {
78 uint32_t capabilities;
79 uint32_t max_xmit;
80 } client;
82 struct {
83 uint32_t capabilities;
84 uint32_t max_xmit;
85 uint16_t max_mux;
86 uint16_t security_mode;
87 bool readbraw;
88 bool writebraw;
89 bool lockread;
90 bool writeunlock;
91 uint32_t session_key;
92 struct GUID guid;
93 DATA_BLOB gss_blob;
94 uint8_t challenge[8];
95 const char *workgroup;
96 const char *name;
97 int time_zone;
98 NTTIME system_time;
99 } server;
101 uint32_t capabilities;
102 uint32_t max_xmit;
104 uint16_t mid;
106 struct smb_signing_state *signing;
107 struct smb_trans_enc_state *trans_enc;
109 struct tevent_req *read_braw_req;
110 } smb1;
112 struct {
113 struct {
114 uint32_t capabilities;
115 uint16_t security_mode;
116 struct GUID guid;
117 } client;
119 struct {
120 uint32_t capabilities;
121 uint16_t security_mode;
122 struct GUID guid;
123 uint32_t max_trans_size;
124 uint32_t max_read_size;
125 uint32_t max_write_size;
126 NTTIME system_time;
127 NTTIME start_time;
128 DATA_BLOB gss_blob;
129 uint16_t cipher;
130 } server;
132 uint64_t mid;
133 uint16_t cur_credits;
134 uint16_t max_credits;
136 uint32_t cc_chunk_len;
137 uint32_t cc_max_chunks;
139 uint8_t io_priority;
141 bool force_channel_sequence;
143 uint8_t preauth_sha512[64];
144 } smb2;
146 struct smbXcli_session *sessions;
149 struct smb2cli_session {
150 uint64_t session_id;
151 uint16_t session_flags;
152 DATA_BLOB application_key;
153 DATA_BLOB signing_key;
154 bool should_sign;
155 bool should_encrypt;
156 DATA_BLOB encryption_key;
157 DATA_BLOB decryption_key;
158 uint64_t nonce_high_random;
159 uint64_t nonce_high_max;
160 uint64_t nonce_high;
161 uint64_t nonce_low;
162 uint16_t channel_sequence;
163 bool replay_active;
166 struct smbXcli_session {
167 struct smbXcli_session *prev, *next;
168 struct smbXcli_conn *conn;
170 struct {
171 uint16_t session_id;
172 uint16_t action;
173 DATA_BLOB application_key;
174 bool protected_key;
175 } smb1;
177 struct smb2cli_session *smb2;
179 struct {
180 DATA_BLOB signing_key;
181 uint8_t preauth_sha512[64];
182 } smb2_channel;
185 * this should be a short term hack
186 * until the upper layers have implemented
187 * re-authentication.
189 bool disconnect_expired;
192 struct smbXcli_tcon {
193 bool is_smb1;
194 uint32_t fs_attributes;
196 struct {
197 uint16_t tcon_id;
198 uint16_t optional_support;
199 uint32_t maximal_access;
200 uint32_t guest_maximal_access;
201 char *service;
202 char *fs_type;
203 } smb1;
205 struct {
206 uint32_t tcon_id;
207 uint8_t type;
208 uint32_t flags;
209 uint32_t capabilities;
210 uint32_t maximal_access;
211 bool should_sign;
212 bool should_encrypt;
213 } smb2;
216 struct smbXcli_req_state {
217 struct tevent_context *ev;
218 struct smbXcli_conn *conn;
219 struct smbXcli_session *session; /* maybe NULL */
220 struct smbXcli_tcon *tcon; /* maybe NULL */
222 uint8_t length_hdr[4];
224 bool one_way;
226 uint8_t *inbuf;
228 struct tevent_req *write_req;
230 struct {
231 /* Space for the header including the wct */
232 uint8_t hdr[HDR_VWV];
235 * For normal requests, smb1cli_req_send chooses a mid.
236 * SecondaryV trans requests need to use the mid of the primary
237 * request, so we need a place to store it.
238 * Assume it is set if != 0.
240 uint16_t mid;
242 uint16_t *vwv;
243 uint8_t bytecount_buf[2];
245 #define MAX_SMB_IOV 10
246 /* length_hdr, hdr, words, byte_count, buffers */
247 struct iovec iov[1 + 3 + MAX_SMB_IOV];
248 int iov_count;
250 bool one_way_seqnum;
251 uint32_t seqnum;
252 struct tevent_req **chained_requests;
254 uint8_t recv_cmd;
255 NTSTATUS recv_status;
256 /* always an array of 3 talloc elements */
257 struct iovec *recv_iov;
258 } smb1;
260 struct {
261 const uint8_t *fixed;
262 uint16_t fixed_len;
263 const uint8_t *dyn;
264 uint32_t dyn_len;
266 uint8_t transform[SMB2_TF_HDR_SIZE];
267 uint8_t hdr[SMB2_HDR_BODY];
268 uint8_t pad[7]; /* padding space for compounding */
271 * always an array of 3 talloc elements
272 * (without a SMB2_TRANSFORM header!)
274 * HDR, BODY, DYN
276 struct iovec *recv_iov;
279 * the expected max for the response dyn_len
281 uint32_t max_dyn_len;
283 uint16_t credit_charge;
285 bool should_sign;
286 bool should_encrypt;
287 uint64_t encryption_session_id;
289 bool signing_skipped;
290 bool notify_async;
291 bool got_async;
292 uint16_t cancel_flags;
293 uint64_t cancel_mid;
294 uint64_t cancel_aid;
295 } smb2;
298 static int smbXcli_conn_destructor(struct smbXcli_conn *conn)
301 * NT_STATUS_OK, means we do not notify the callers
303 smbXcli_conn_disconnect(conn, NT_STATUS_OK);
305 while (conn->sessions) {
306 conn->sessions->conn = NULL;
307 DLIST_REMOVE(conn->sessions, conn->sessions);
310 if (conn->smb1.trans_enc) {
311 TALLOC_FREE(conn->smb1.trans_enc);
314 return 0;
317 struct smbXcli_conn *smbXcli_conn_create(TALLOC_CTX *mem_ctx,
318 int fd,
319 const char *remote_name,
320 enum smb_signing_setting signing_state,
321 uint32_t smb1_capabilities,
322 struct GUID *client_guid,
323 uint32_t smb2_capabilities)
325 struct smbXcli_conn *conn = NULL;
326 void *ss = NULL;
327 struct sockaddr *sa = NULL;
328 socklen_t sa_length;
329 int ret;
331 conn = talloc_zero(mem_ctx, struct smbXcli_conn);
332 if (!conn) {
333 return NULL;
336 conn->sock_fd = fd;
338 conn->remote_name = talloc_strdup(conn, remote_name);
339 if (conn->remote_name == NULL) {
340 goto error;
343 ss = (void *)&conn->local_ss;
344 sa = (struct sockaddr *)ss;
345 sa_length = sizeof(conn->local_ss);
346 ret = getsockname(fd, sa, &sa_length);
347 if (ret == -1) {
348 goto error;
350 ss = (void *)&conn->remote_ss;
351 sa = (struct sockaddr *)ss;
352 sa_length = sizeof(conn->remote_ss);
353 ret = getpeername(fd, sa, &sa_length);
354 if (ret == -1) {
355 goto error;
358 conn->outgoing = tevent_queue_create(conn, "smbXcli_outgoing");
359 if (conn->outgoing == NULL) {
360 goto error;
362 conn->pending = NULL;
364 conn->min_protocol = PROTOCOL_NONE;
365 conn->max_protocol = PROTOCOL_NONE;
366 conn->protocol = PROTOCOL_NONE;
368 switch (signing_state) {
369 case SMB_SIGNING_OFF:
370 /* never */
371 conn->allow_signing = false;
372 conn->desire_signing = false;
373 conn->mandatory_signing = false;
374 break;
375 case SMB_SIGNING_DEFAULT:
376 case SMB_SIGNING_IF_REQUIRED:
377 /* if the server requires it */
378 conn->allow_signing = true;
379 conn->desire_signing = false;
380 conn->mandatory_signing = false;
381 break;
382 case SMB_SIGNING_DESIRED:
383 /* if the server desires it */
384 conn->allow_signing = true;
385 conn->desire_signing = true;
386 conn->mandatory_signing = false;
387 break;
388 case SMB_SIGNING_IPC_DEFAULT:
389 case SMB_SIGNING_REQUIRED:
390 /* always */
391 conn->allow_signing = true;
392 conn->desire_signing = true;
393 conn->mandatory_signing = true;
394 break;
397 conn->smb1.client.capabilities = smb1_capabilities;
398 conn->smb1.client.max_xmit = UINT16_MAX;
400 conn->smb1.capabilities = conn->smb1.client.capabilities;
401 conn->smb1.max_xmit = 1024;
403 conn->smb1.mid = 1;
405 /* initialise signing */
406 conn->smb1.signing = smb_signing_init(conn,
407 conn->allow_signing,
408 conn->desire_signing,
409 conn->mandatory_signing);
410 if (!conn->smb1.signing) {
411 goto error;
414 conn->smb2.client.security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
415 if (conn->mandatory_signing) {
416 conn->smb2.client.security_mode |= SMB2_NEGOTIATE_SIGNING_REQUIRED;
418 if (client_guid) {
419 conn->smb2.client.guid = *client_guid;
421 conn->smb2.client.capabilities = smb2_capabilities;
423 conn->smb2.cur_credits = 1;
424 conn->smb2.max_credits = 0;
425 conn->smb2.io_priority = 1;
428 * Samba and Windows servers accept a maximum of 16 MiB with a maximum
429 * chunk length of 1 MiB.
431 conn->smb2.cc_chunk_len = 1024 * 1024;
432 conn->smb2.cc_max_chunks = 16;
434 talloc_set_destructor(conn, smbXcli_conn_destructor);
435 return conn;
437 error:
438 TALLOC_FREE(conn);
439 return NULL;
442 bool smbXcli_conn_is_connected(struct smbXcli_conn *conn)
444 if (conn == NULL) {
445 return false;
448 if (conn->sock_fd == -1) {
449 return false;
452 return true;
455 enum protocol_types smbXcli_conn_protocol(struct smbXcli_conn *conn)
457 return conn->protocol;
460 bool smbXcli_conn_use_unicode(struct smbXcli_conn *conn)
462 if (conn->protocol >= PROTOCOL_SMB2_02) {
463 return true;
466 if (conn->smb1.capabilities & CAP_UNICODE) {
467 return true;
470 return false;
473 bool smbXcli_conn_signing_mandatory(struct smbXcli_conn *conn)
475 return conn->mandatory_signing;
479 * [MS-SMB] 2.2.2.3.5 - SMB1 support for passing through
480 * query/set commands to the file system
482 bool smbXcli_conn_support_passthrough(struct smbXcli_conn *conn)
484 if (conn->protocol >= PROTOCOL_SMB2_02) {
485 return true;
488 if (conn->smb1.capabilities & CAP_W2K_SMBS) {
489 return true;
492 return false;
495 void smbXcli_conn_set_sockopt(struct smbXcli_conn *conn, const char *options)
497 set_socket_options(conn->sock_fd, options);
500 const struct sockaddr_storage *smbXcli_conn_local_sockaddr(struct smbXcli_conn *conn)
502 return &conn->local_ss;
505 const struct sockaddr_storage *smbXcli_conn_remote_sockaddr(struct smbXcli_conn *conn)
507 return &conn->remote_ss;
510 const char *smbXcli_conn_remote_name(struct smbXcli_conn *conn)
512 return conn->remote_name;
515 uint16_t smbXcli_conn_max_requests(struct smbXcli_conn *conn)
517 if (conn->protocol >= PROTOCOL_SMB2_02) {
519 * TODO...
521 return 1;
524 return conn->smb1.server.max_mux;
527 NTTIME smbXcli_conn_server_system_time(struct smbXcli_conn *conn)
529 if (conn->protocol >= PROTOCOL_SMB2_02) {
530 return conn->smb2.server.system_time;
533 return conn->smb1.server.system_time;
536 const DATA_BLOB *smbXcli_conn_server_gss_blob(struct smbXcli_conn *conn)
538 if (conn->protocol >= PROTOCOL_SMB2_02) {
539 return &conn->smb2.server.gss_blob;
542 return &conn->smb1.server.gss_blob;
545 const struct GUID *smbXcli_conn_server_guid(struct smbXcli_conn *conn)
547 if (conn->protocol >= PROTOCOL_SMB2_02) {
548 return &conn->smb2.server.guid;
551 return &conn->smb1.server.guid;
554 bool smbXcli_conn_get_force_channel_sequence(struct smbXcli_conn *conn)
556 return conn->smb2.force_channel_sequence;
559 void smbXcli_conn_set_force_channel_sequence(struct smbXcli_conn *conn,
560 bool v)
562 conn->smb2.force_channel_sequence = v;
565 struct smbXcli_conn_samba_suicide_state {
566 struct smbXcli_conn *conn;
567 struct iovec iov;
568 uint8_t buf[9];
569 struct tevent_req *write_req;
572 static void smbXcli_conn_samba_suicide_cleanup(struct tevent_req *req,
573 enum tevent_req_state req_state);
574 static void smbXcli_conn_samba_suicide_done(struct tevent_req *subreq);
576 struct tevent_req *smbXcli_conn_samba_suicide_send(TALLOC_CTX *mem_ctx,
577 struct tevent_context *ev,
578 struct smbXcli_conn *conn,
579 uint8_t exitcode)
581 struct tevent_req *req, *subreq;
582 struct smbXcli_conn_samba_suicide_state *state;
584 req = tevent_req_create(mem_ctx, &state,
585 struct smbXcli_conn_samba_suicide_state);
586 if (req == NULL) {
587 return NULL;
589 state->conn = conn;
590 SIVAL(state->buf, 4, 0x74697865);
591 SCVAL(state->buf, 8, exitcode);
592 _smb_setlen_nbt(state->buf, sizeof(state->buf)-4);
594 if (conn->suicide_req != NULL) {
595 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
596 return tevent_req_post(req, ev);
599 state->iov.iov_base = state->buf;
600 state->iov.iov_len = sizeof(state->buf);
602 subreq = writev_send(state, ev, conn->outgoing, conn->sock_fd,
603 false, &state->iov, 1);
604 if (tevent_req_nomem(subreq, req)) {
605 return tevent_req_post(req, ev);
607 tevent_req_set_callback(subreq, smbXcli_conn_samba_suicide_done, req);
608 state->write_req = subreq;
610 tevent_req_set_cleanup_fn(req, smbXcli_conn_samba_suicide_cleanup);
613 * We need to use tevent_req_defer_callback()
614 * in order to allow smbXcli_conn_disconnect()
615 * to do a safe cleanup.
617 tevent_req_defer_callback(req, ev);
618 conn->suicide_req = req;
620 return req;
623 static void smbXcli_conn_samba_suicide_cleanup(struct tevent_req *req,
624 enum tevent_req_state req_state)
626 struct smbXcli_conn_samba_suicide_state *state = tevent_req_data(
627 req, struct smbXcli_conn_samba_suicide_state);
629 TALLOC_FREE(state->write_req);
631 if (state->conn == NULL) {
632 return;
635 if (state->conn->suicide_req == req) {
636 state->conn->suicide_req = NULL;
638 state->conn = NULL;
641 static void smbXcli_conn_samba_suicide_done(struct tevent_req *subreq)
643 struct tevent_req *req = tevent_req_callback_data(
644 subreq, struct tevent_req);
645 struct smbXcli_conn_samba_suicide_state *state = tevent_req_data(
646 req, struct smbXcli_conn_samba_suicide_state);
647 ssize_t nwritten;
648 int err;
650 state->write_req = NULL;
652 nwritten = writev_recv(subreq, &err);
653 TALLOC_FREE(subreq);
654 if (nwritten == -1) {
655 /* here, we need to notify all pending requests */
656 NTSTATUS status = map_nt_error_from_unix_common(err);
657 smbXcli_conn_disconnect(state->conn, status);
658 return;
660 tevent_req_done(req);
663 NTSTATUS smbXcli_conn_samba_suicide_recv(struct tevent_req *req)
665 return tevent_req_simple_recv_ntstatus(req);
668 NTSTATUS smbXcli_conn_samba_suicide(struct smbXcli_conn *conn,
669 uint8_t exitcode)
671 TALLOC_CTX *frame = talloc_stackframe();
672 struct tevent_context *ev;
673 struct tevent_req *req;
674 NTSTATUS status = NT_STATUS_NO_MEMORY;
675 bool ok;
677 if (smbXcli_conn_has_async_calls(conn)) {
679 * Can't use sync call while an async call is in flight
681 status = NT_STATUS_INVALID_PARAMETER_MIX;
682 goto fail;
684 ev = samba_tevent_context_init(frame);
685 if (ev == NULL) {
686 goto fail;
688 req = smbXcli_conn_samba_suicide_send(frame, ev, conn, exitcode);
689 if (req == NULL) {
690 goto fail;
692 ok = tevent_req_poll_ntstatus(req, ev, &status);
693 if (!ok) {
694 goto fail;
696 status = smbXcli_conn_samba_suicide_recv(req);
697 fail:
698 TALLOC_FREE(frame);
699 return status;
702 uint32_t smb1cli_conn_capabilities(struct smbXcli_conn *conn)
704 return conn->smb1.capabilities;
707 uint32_t smb1cli_conn_max_xmit(struct smbXcli_conn *conn)
709 return conn->smb1.max_xmit;
712 bool smb1cli_conn_req_possible(struct smbXcli_conn *conn)
714 size_t pending = talloc_array_length(conn->pending);
715 uint16_t possible = conn->smb1.server.max_mux;
717 if (pending >= possible) {
718 return false;
721 return true;
724 uint32_t smb1cli_conn_server_session_key(struct smbXcli_conn *conn)
726 return conn->smb1.server.session_key;
729 const uint8_t *smb1cli_conn_server_challenge(struct smbXcli_conn *conn)
731 return conn->smb1.server.challenge;
734 uint16_t smb1cli_conn_server_security_mode(struct smbXcli_conn *conn)
736 return conn->smb1.server.security_mode;
739 bool smb1cli_conn_server_readbraw(struct smbXcli_conn *conn)
741 return conn->smb1.server.readbraw;
744 bool smb1cli_conn_server_writebraw(struct smbXcli_conn *conn)
746 return conn->smb1.server.writebraw;
749 bool smb1cli_conn_server_lockread(struct smbXcli_conn *conn)
751 return conn->smb1.server.lockread;
754 bool smb1cli_conn_server_writeunlock(struct smbXcli_conn *conn)
756 return conn->smb1.server.writeunlock;
759 int smb1cli_conn_server_time_zone(struct smbXcli_conn *conn)
761 return conn->smb1.server.time_zone;
764 bool smb1cli_conn_activate_signing(struct smbXcli_conn *conn,
765 const DATA_BLOB user_session_key,
766 const DATA_BLOB response)
768 return smb_signing_activate(conn->smb1.signing,
769 user_session_key,
770 response);
773 bool smb1cli_conn_check_signing(struct smbXcli_conn *conn,
774 const uint8_t *buf, uint32_t seqnum)
776 const uint8_t *hdr = buf + NBT_HDR_SIZE;
777 size_t len = smb_len_nbt(buf);
779 return smb_signing_check_pdu(conn->smb1.signing, hdr, len, seqnum);
782 bool smb1cli_conn_signing_is_active(struct smbXcli_conn *conn)
784 return smb_signing_is_active(conn->smb1.signing);
787 void smb1cli_conn_set_encryption(struct smbXcli_conn *conn,
788 struct smb_trans_enc_state *es)
790 /* Replace the old state, if any. */
791 if (conn->smb1.trans_enc) {
792 TALLOC_FREE(conn->smb1.trans_enc);
794 conn->smb1.trans_enc = es;
797 bool smb1cli_conn_encryption_on(struct smbXcli_conn *conn)
799 return common_encryption_on(conn->smb1.trans_enc);
803 static NTSTATUS smb1cli_pull_raw_error(const uint8_t *hdr)
805 uint32_t flags2 = SVAL(hdr, HDR_FLG2);
806 NTSTATUS status = NT_STATUS(IVAL(hdr, HDR_RCLS));
808 if (NT_STATUS_IS_OK(status)) {
809 return NT_STATUS_OK;
812 if (flags2 & FLAGS2_32_BIT_ERROR_CODES) {
813 return status;
816 return NT_STATUS_DOS(CVAL(hdr, HDR_RCLS), SVAL(hdr, HDR_ERR));
820 * Is the SMB command able to hold an AND_X successor
821 * @param[in] cmd The SMB command in question
822 * @retval Can we add a chained request after "cmd"?
824 bool smb1cli_is_andx_req(uint8_t cmd)
826 switch (cmd) {
827 case SMBtconX:
828 case SMBlockingX:
829 case SMBopenX:
830 case SMBreadX:
831 case SMBwriteX:
832 case SMBsesssetupX:
833 case SMBulogoffX:
834 case SMBntcreateX:
835 return true;
836 break;
837 default:
838 break;
841 return false;
844 static uint16_t smb1cli_alloc_mid(struct smbXcli_conn *conn)
846 size_t num_pending = talloc_array_length(conn->pending);
847 uint16_t result;
849 if (conn->protocol == PROTOCOL_NONE) {
851 * This is what windows sends on the SMB1 Negprot request
852 * and some vendors reuse the SMB1 MID as SMB2 sequence number.
854 return 0;
857 while (true) {
858 size_t i;
860 result = conn->smb1.mid++;
861 if ((result == 0) || (result == 0xffff)) {
862 continue;
865 for (i=0; i<num_pending; i++) {
866 if (result == smb1cli_req_mid(conn->pending[i])) {
867 break;
871 if (i == num_pending) {
872 return result;
877 static NTSTATUS smbXcli_req_cancel_write_req(struct tevent_req *req)
879 struct smbXcli_req_state *state =
880 tevent_req_data(req,
881 struct smbXcli_req_state);
882 struct smbXcli_conn *conn = state->conn;
883 size_t num_pending = talloc_array_length(conn->pending);
884 ssize_t ret;
885 int err;
886 bool ok;
888 if (state->write_req == NULL) {
889 return NT_STATUS_OK;
893 * Check if it's possible to cancel the request.
894 * If the result is true it's not too late.
895 * See writev_cancel().
897 ok = tevent_req_cancel(state->write_req);
898 if (ok) {
899 TALLOC_FREE(state->write_req);
901 if (conn->protocol >= PROTOCOL_SMB2_02) {
903 * SMB2 has a sane signing state.
905 return NT_STATUS_OK;
908 if (num_pending > 1) {
910 * We have more pending requests following us. This
911 * means the signing state will be broken for them.
913 * As a solution we could add the requests directly to
914 * our outgoing queue and do the signing in the trigger
915 * function and then use writev_send() without passing a
916 * queue. That way we'll only sign packets we're most
917 * likely send to the wire.
919 return NT_STATUS_REQUEST_OUT_OF_SEQUENCE;
923 * If we're the only request that's
924 * pending, we're able to recover the signing
925 * state.
927 smb_signing_cancel_reply(conn->smb1.signing,
928 state->smb1.one_way_seqnum);
929 return NT_STATUS_OK;
932 ret = writev_recv(state->write_req, &err);
933 TALLOC_FREE(state->write_req);
934 if (ret == -1) {
935 return map_nt_error_from_unix_common(err);
938 return NT_STATUS_OK;
941 void smbXcli_req_unset_pending(struct tevent_req *req)
943 struct smbXcli_req_state *state =
944 tevent_req_data(req,
945 struct smbXcli_req_state);
946 struct smbXcli_conn *conn = state->conn;
947 size_t num_pending = talloc_array_length(conn->pending);
948 size_t i;
949 NTSTATUS cancel_status;
951 cancel_status = smbXcli_req_cancel_write_req(req);
953 if (state->smb1.mid != 0) {
955 * This is a [nt]trans[2] request which waits
956 * for more than one reply.
958 if (!NT_STATUS_IS_OK(cancel_status)) {
960 * If the write_req cancel didn't work
961 * we can't use the connection anymore.
963 smbXcli_conn_disconnect(conn, cancel_status);
964 return;
966 return;
969 tevent_req_set_cleanup_fn(req, NULL);
971 if (num_pending == 1) {
973 * The pending read_smb tevent_req is a child of
974 * conn->pending. So if nothing is pending anymore, we need to
975 * delete the socket read fde.
977 /* TODO: smbXcli_conn_cancel_read_req */
978 TALLOC_FREE(conn->pending);
979 conn->read_smb_req = NULL;
981 if (!NT_STATUS_IS_OK(cancel_status)) {
983 * If the write_req cancel didn't work
984 * we can't use the connection anymore.
986 smbXcli_conn_disconnect(conn, cancel_status);
987 return;
989 return;
992 for (i=0; i<num_pending; i++) {
993 if (req == conn->pending[i]) {
994 break;
997 if (i == num_pending) {
999 * Something's seriously broken. Just returning here is the
1000 * right thing nevertheless, the point of this routine is to
1001 * remove ourselves from conn->pending.
1004 if (!NT_STATUS_IS_OK(cancel_status)) {
1006 * If the write_req cancel didn't work
1007 * we can't use the connection anymore.
1009 smbXcli_conn_disconnect(conn, cancel_status);
1010 return;
1012 return;
1016 * Remove ourselves from the conn->pending array
1018 for (; i < (num_pending - 1); i++) {
1019 conn->pending[i] = conn->pending[i+1];
1023 * No NULL check here, we're shrinking by sizeof(void *), and
1024 * talloc_realloc just adjusts the size for this.
1026 conn->pending = talloc_realloc(NULL, conn->pending, struct tevent_req *,
1027 num_pending - 1);
1029 if (!NT_STATUS_IS_OK(cancel_status)) {
1031 * If the write_req cancel didn't work
1032 * we can't use the connection anymore.
1034 smbXcli_conn_disconnect(conn, cancel_status);
1035 return;
1037 return;
1040 static void smbXcli_req_cleanup(struct tevent_req *req,
1041 enum tevent_req_state req_state)
1043 struct smbXcli_req_state *state =
1044 tevent_req_data(req,
1045 struct smbXcli_req_state);
1046 struct smbXcli_conn *conn = state->conn;
1047 NTSTATUS cancel_status;
1049 switch (req_state) {
1050 case TEVENT_REQ_RECEIVED:
1052 * Make sure we really remove it from
1053 * the pending array on destruction.
1055 * smbXcli_req_unset_pending() calls
1056 * smbXcli_req_cancel_write_req() internal
1058 state->smb1.mid = 0;
1059 smbXcli_req_unset_pending(req);
1060 return;
1061 default:
1062 cancel_status = smbXcli_req_cancel_write_req(req);
1063 if (!NT_STATUS_IS_OK(cancel_status)) {
1065 * If the write_req cancel didn't work
1066 * we can't use the connection anymore.
1068 smbXcli_conn_disconnect(conn, cancel_status);
1069 return;
1071 return;
1075 static bool smb1cli_req_cancel(struct tevent_req *req);
1076 static bool smb2cli_req_cancel(struct tevent_req *req);
1078 static bool smbXcli_req_cancel(struct tevent_req *req)
1080 struct smbXcli_req_state *state =
1081 tevent_req_data(req,
1082 struct smbXcli_req_state);
1084 if (!smbXcli_conn_is_connected(state->conn)) {
1085 return false;
1088 if (state->conn->protocol == PROTOCOL_NONE) {
1089 return false;
1092 if (state->conn->protocol >= PROTOCOL_SMB2_02) {
1093 return smb2cli_req_cancel(req);
1096 return smb1cli_req_cancel(req);
1099 static bool smbXcli_conn_receive_next(struct smbXcli_conn *conn);
1101 bool smbXcli_req_set_pending(struct tevent_req *req)
1103 struct smbXcli_req_state *state =
1104 tevent_req_data(req,
1105 struct smbXcli_req_state);
1106 struct smbXcli_conn *conn;
1107 struct tevent_req **pending;
1108 size_t num_pending;
1110 conn = state->conn;
1112 if (!smbXcli_conn_is_connected(conn)) {
1113 return false;
1116 num_pending = talloc_array_length(conn->pending);
1118 pending = talloc_realloc(conn, conn->pending, struct tevent_req *,
1119 num_pending+1);
1120 if (pending == NULL) {
1121 return false;
1123 pending[num_pending] = req;
1124 conn->pending = pending;
1125 tevent_req_set_cleanup_fn(req, smbXcli_req_cleanup);
1126 tevent_req_set_cancel_fn(req, smbXcli_req_cancel);
1128 if (!smbXcli_conn_receive_next(conn)) {
1130 * the caller should notify the current request
1132 * And all other pending requests get notified
1133 * by smbXcli_conn_disconnect().
1135 smbXcli_req_unset_pending(req);
1136 smbXcli_conn_disconnect(conn, NT_STATUS_NO_MEMORY);
1137 return false;
1140 return true;
1143 static void smbXcli_conn_received(struct tevent_req *subreq);
1145 static bool smbXcli_conn_receive_next(struct smbXcli_conn *conn)
1147 size_t num_pending = talloc_array_length(conn->pending);
1148 struct tevent_req *req;
1149 struct smbXcli_req_state *state;
1151 if (conn->read_smb_req != NULL) {
1152 return true;
1155 if (num_pending == 0) {
1156 if (conn->smb2.mid < UINT64_MAX) {
1157 /* no more pending requests, so we are done for now */
1158 return true;
1162 * If there are no more SMB2 requests possible,
1163 * because we are out of message ids,
1164 * we need to disconnect.
1166 smbXcli_conn_disconnect(conn, NT_STATUS_CONNECTION_ABORTED);
1167 return true;
1170 req = conn->pending[0];
1171 state = tevent_req_data(req, struct smbXcli_req_state);
1174 * We're the first ones, add the read_smb request that waits for the
1175 * answer from the server
1177 conn->read_smb_req = read_smb_send(conn->pending,
1178 state->ev,
1179 conn->sock_fd);
1180 if (conn->read_smb_req == NULL) {
1181 return false;
1183 tevent_req_set_callback(conn->read_smb_req, smbXcli_conn_received, conn);
1184 return true;
1187 void smbXcli_conn_disconnect(struct smbXcli_conn *conn, NTSTATUS status)
1189 struct smbXcli_session *session;
1190 int sock_fd = conn->sock_fd;
1192 tevent_queue_stop(conn->outgoing);
1194 conn->sock_fd = -1;
1196 session = conn->sessions;
1197 if (talloc_array_length(conn->pending) == 0) {
1199 * if we do not have pending requests
1200 * there is no need to update the channel_sequence
1202 session = NULL;
1204 for (; session; session = session->next) {
1205 smb2cli_session_increment_channel_sequence(session);
1208 if (conn->suicide_req != NULL) {
1210 * smbXcli_conn_samba_suicide_send()
1211 * used tevent_req_defer_callback() already.
1213 if (!NT_STATUS_IS_OK(status)) {
1214 tevent_req_nterror(conn->suicide_req, status);
1216 conn->suicide_req = NULL;
1220 * Cancel all pending requests. We do not do a for-loop walking
1221 * conn->pending because that array changes in
1222 * smbXcli_req_unset_pending.
1224 while (talloc_array_length(conn->pending) > 0) {
1225 struct tevent_req *req;
1226 struct smbXcli_req_state *state;
1227 struct tevent_req **chain;
1228 size_t num_chained;
1229 size_t i;
1231 req = conn->pending[0];
1232 state = tevent_req_data(req, struct smbXcli_req_state);
1234 if (state->smb1.chained_requests == NULL) {
1235 bool in_progress;
1238 * We're dead. No point waiting for trans2
1239 * replies.
1241 state->smb1.mid = 0;
1243 smbXcli_req_unset_pending(req);
1245 if (NT_STATUS_IS_OK(status)) {
1246 /* do not notify the callers */
1247 continue;
1250 in_progress = tevent_req_is_in_progress(req);
1251 if (!in_progress) {
1253 * already finished
1255 continue;
1259 * we need to defer the callback, because we may notify
1260 * more then one caller.
1262 tevent_req_defer_callback(req, state->ev);
1263 tevent_req_nterror(req, status);
1264 continue;
1267 chain = talloc_move(conn, &state->smb1.chained_requests);
1268 num_chained = talloc_array_length(chain);
1270 for (i=0; i<num_chained; i++) {
1271 bool in_progress;
1273 req = chain[i];
1274 state = tevent_req_data(req, struct smbXcli_req_state);
1277 * We're dead. No point waiting for trans2
1278 * replies.
1280 state->smb1.mid = 0;
1282 smbXcli_req_unset_pending(req);
1284 if (NT_STATUS_IS_OK(status)) {
1285 /* do not notify the callers */
1286 continue;
1289 in_progress = tevent_req_is_in_progress(req);
1290 if (!in_progress) {
1292 * already finished
1294 continue;
1298 * we need to defer the callback, because we may notify
1299 * more than one caller.
1301 tevent_req_defer_callback(req, state->ev);
1302 tevent_req_nterror(req, status);
1304 TALLOC_FREE(chain);
1307 if (sock_fd != -1) {
1308 close(sock_fd);
1313 * Fetch a smb request's mid. Only valid after the request has been sent by
1314 * smb1cli_req_send().
1316 uint16_t smb1cli_req_mid(struct tevent_req *req)
1318 struct smbXcli_req_state *state =
1319 tevent_req_data(req,
1320 struct smbXcli_req_state);
1322 if (state->smb1.mid != 0) {
1323 return state->smb1.mid;
1326 return SVAL(state->smb1.hdr, HDR_MID);
1329 void smb1cli_req_set_mid(struct tevent_req *req, uint16_t mid)
1331 struct smbXcli_req_state *state =
1332 tevent_req_data(req,
1333 struct smbXcli_req_state);
1335 state->smb1.mid = mid;
1338 uint32_t smb1cli_req_seqnum(struct tevent_req *req)
1340 struct smbXcli_req_state *state =
1341 tevent_req_data(req,
1342 struct smbXcli_req_state);
1344 return state->smb1.seqnum;
1347 void smb1cli_req_set_seqnum(struct tevent_req *req, uint32_t seqnum)
1349 struct smbXcli_req_state *state =
1350 tevent_req_data(req,
1351 struct smbXcli_req_state);
1353 state->smb1.seqnum = seqnum;
1356 static size_t smbXcli_iov_len(const struct iovec *iov, int count)
1358 ssize_t ret = iov_buflen(iov, count);
1360 /* Ignore the overflow case for now ... */
1361 return ret;
1364 static void smb1cli_req_flags(enum protocol_types protocol,
1365 uint32_t smb1_capabilities,
1366 uint8_t smb_command,
1367 uint8_t additional_flags,
1368 uint8_t clear_flags,
1369 uint8_t *_flags,
1370 uint16_t additional_flags2,
1371 uint16_t clear_flags2,
1372 uint16_t *_flags2)
1374 uint8_t flags = 0;
1375 uint16_t flags2 = 0;
1377 if (protocol >= PROTOCOL_LANMAN1) {
1378 flags |= FLAG_CASELESS_PATHNAMES;
1379 flags |= FLAG_CANONICAL_PATHNAMES;
1382 if (protocol >= PROTOCOL_LANMAN2) {
1383 flags2 |= FLAGS2_LONG_PATH_COMPONENTS;
1384 flags2 |= FLAGS2_EXTENDED_ATTRIBUTES;
1387 if (protocol >= PROTOCOL_NT1) {
1388 flags2 |= FLAGS2_IS_LONG_NAME;
1390 if (smb1_capabilities & CAP_UNICODE) {
1391 flags2 |= FLAGS2_UNICODE_STRINGS;
1393 if (smb1_capabilities & CAP_STATUS32) {
1394 flags2 |= FLAGS2_32_BIT_ERROR_CODES;
1396 if (smb1_capabilities & CAP_EXTENDED_SECURITY) {
1397 flags2 |= FLAGS2_EXTENDED_SECURITY;
1401 flags |= additional_flags;
1402 flags &= ~clear_flags;
1403 flags2 |= additional_flags2;
1404 flags2 &= ~clear_flags2;
1406 *_flags = flags;
1407 *_flags2 = flags2;
1410 static void smb1cli_req_cancel_done(struct tevent_req *subreq);
1412 static bool smb1cli_req_cancel(struct tevent_req *req)
1414 struct smbXcli_req_state *state =
1415 tevent_req_data(req,
1416 struct smbXcli_req_state);
1417 uint8_t flags;
1418 uint16_t flags2;
1419 uint32_t pid;
1420 uint16_t mid;
1421 struct tevent_req *subreq;
1422 NTSTATUS status;
1424 flags = CVAL(state->smb1.hdr, HDR_FLG);
1425 flags2 = SVAL(state->smb1.hdr, HDR_FLG2);
1426 pid = SVAL(state->smb1.hdr, HDR_PID);
1427 pid |= SVAL(state->smb1.hdr, HDR_PIDHIGH)<<16;
1428 mid = SVAL(state->smb1.hdr, HDR_MID);
1430 subreq = smb1cli_req_create(state, state->ev,
1431 state->conn,
1432 SMBntcancel,
1433 flags, 0,
1434 flags2, 0,
1435 0, /* timeout */
1436 pid,
1437 state->tcon,
1438 state->session,
1439 0, NULL, /* vwv */
1440 0, NULL); /* bytes */
1441 if (subreq == NULL) {
1442 return false;
1444 smb1cli_req_set_mid(subreq, mid);
1446 status = smb1cli_req_chain_submit(&subreq, 1);
1447 if (!NT_STATUS_IS_OK(status)) {
1448 TALLOC_FREE(subreq);
1449 return false;
1451 smb1cli_req_set_mid(subreq, 0);
1453 tevent_req_set_callback(subreq, smb1cli_req_cancel_done, NULL);
1455 return true;
1458 static void smb1cli_req_cancel_done(struct tevent_req *subreq)
1460 /* we do not care about the result */
1461 TALLOC_FREE(subreq);
1464 struct tevent_req *smb1cli_req_create(TALLOC_CTX *mem_ctx,
1465 struct tevent_context *ev,
1466 struct smbXcli_conn *conn,
1467 uint8_t smb_command,
1468 uint8_t additional_flags,
1469 uint8_t clear_flags,
1470 uint16_t additional_flags2,
1471 uint16_t clear_flags2,
1472 uint32_t timeout_msec,
1473 uint32_t pid,
1474 struct smbXcli_tcon *tcon,
1475 struct smbXcli_session *session,
1476 uint8_t wct, uint16_t *vwv,
1477 int iov_count,
1478 struct iovec *bytes_iov)
1480 struct tevent_req *req;
1481 struct smbXcli_req_state *state;
1482 uint8_t flags = 0;
1483 uint16_t flags2 = 0;
1484 uint16_t uid = 0;
1485 uint16_t tid = 0;
1486 ssize_t num_bytes;
1488 if (iov_count > MAX_SMB_IOV) {
1490 * Should not happen :-)
1492 return NULL;
1495 req = tevent_req_create(mem_ctx, &state,
1496 struct smbXcli_req_state);
1497 if (req == NULL) {
1498 return NULL;
1500 state->ev = ev;
1501 state->conn = conn;
1502 state->session = session;
1503 state->tcon = tcon;
1505 if (session) {
1506 uid = session->smb1.session_id;
1509 if (tcon) {
1510 tid = tcon->smb1.tcon_id;
1512 if (tcon->fs_attributes & FILE_CASE_SENSITIVE_SEARCH) {
1513 clear_flags |= FLAG_CASELESS_PATHNAMES;
1514 } else {
1515 /* Default setting, case insensitive. */
1516 additional_flags |= FLAG_CASELESS_PATHNAMES;
1519 if (smbXcli_conn_dfs_supported(conn) &&
1520 smbXcli_tcon_is_dfs_share(tcon))
1522 additional_flags2 |= FLAGS2_DFS_PATHNAMES;
1526 state->smb1.recv_cmd = 0xFF;
1527 state->smb1.recv_status = NT_STATUS_INTERNAL_ERROR;
1528 state->smb1.recv_iov = talloc_zero_array(state, struct iovec, 3);
1529 if (state->smb1.recv_iov == NULL) {
1530 TALLOC_FREE(req);
1531 return NULL;
1534 smb1cli_req_flags(conn->protocol,
1535 conn->smb1.capabilities,
1536 smb_command,
1537 additional_flags,
1538 clear_flags,
1539 &flags,
1540 additional_flags2,
1541 clear_flags2,
1542 &flags2);
1544 SIVAL(state->smb1.hdr, 0, SMB_MAGIC);
1545 SCVAL(state->smb1.hdr, HDR_COM, smb_command);
1546 SIVAL(state->smb1.hdr, HDR_RCLS, NT_STATUS_V(NT_STATUS_OK));
1547 SCVAL(state->smb1.hdr, HDR_FLG, flags);
1548 SSVAL(state->smb1.hdr, HDR_FLG2, flags2);
1549 SSVAL(state->smb1.hdr, HDR_PIDHIGH, pid >> 16);
1550 SSVAL(state->smb1.hdr, HDR_TID, tid);
1551 SSVAL(state->smb1.hdr, HDR_PID, pid);
1552 SSVAL(state->smb1.hdr, HDR_UID, uid);
1553 SSVAL(state->smb1.hdr, HDR_MID, 0); /* this comes later */
1554 SCVAL(state->smb1.hdr, HDR_WCT, wct);
1556 state->smb1.vwv = vwv;
1558 num_bytes = iov_buflen(bytes_iov, iov_count);
1559 if (num_bytes == -1) {
1561 * I'd love to add a check for num_bytes<=UINT16_MAX here, but
1562 * the smbclient->samba connections can lie and transfer more.
1564 TALLOC_FREE(req);
1565 return NULL;
1568 SSVAL(state->smb1.bytecount_buf, 0, num_bytes);
1570 state->smb1.iov[0].iov_base = (void *)state->length_hdr;
1571 state->smb1.iov[0].iov_len = sizeof(state->length_hdr);
1572 state->smb1.iov[1].iov_base = (void *)state->smb1.hdr;
1573 state->smb1.iov[1].iov_len = sizeof(state->smb1.hdr);
1574 state->smb1.iov[2].iov_base = (void *)state->smb1.vwv;
1575 state->smb1.iov[2].iov_len = wct * sizeof(uint16_t);
1576 state->smb1.iov[3].iov_base = (void *)state->smb1.bytecount_buf;
1577 state->smb1.iov[3].iov_len = sizeof(uint16_t);
1579 if (iov_count != 0) {
1580 memcpy(&state->smb1.iov[4], bytes_iov,
1581 iov_count * sizeof(*bytes_iov));
1583 state->smb1.iov_count = iov_count + 4;
1585 if (timeout_msec > 0) {
1586 struct timeval endtime;
1588 endtime = timeval_current_ofs_msec(timeout_msec);
1589 if (!tevent_req_set_endtime(req, ev, endtime)) {
1590 return req;
1594 switch (smb_command) {
1595 case SMBtranss:
1596 case SMBtranss2:
1597 case SMBnttranss:
1598 state->one_way = true;
1599 break;
1600 case SMBntcancel:
1601 state->one_way = true;
1602 state->smb1.one_way_seqnum = true;
1603 break;
1604 case SMBlockingX:
1605 if ((wct == 8) &&
1606 (CVAL(vwv+3, 0) == LOCKING_ANDX_OPLOCK_RELEASE)) {
1607 state->one_way = true;
1609 break;
1612 return req;
1615 static NTSTATUS smb1cli_conn_signv(struct smbXcli_conn *conn,
1616 struct iovec *iov, int iov_count,
1617 uint32_t *seqnum,
1618 bool one_way_seqnum)
1620 TALLOC_CTX *frame = NULL;
1621 uint8_t *buf;
1624 * Obvious optimization: Make cli_calculate_sign_mac work with struct
1625 * iovec directly. MD5Update would do that just fine.
1628 if (iov_count < 4) {
1629 return NT_STATUS_INVALID_PARAMETER_MIX;
1631 if (iov[0].iov_len != NBT_HDR_SIZE) {
1632 return NT_STATUS_INVALID_PARAMETER_MIX;
1634 if (iov[1].iov_len != (MIN_SMB_SIZE-sizeof(uint16_t))) {
1635 return NT_STATUS_INVALID_PARAMETER_MIX;
1637 if (iov[2].iov_len > (0xFF * sizeof(uint16_t))) {
1638 return NT_STATUS_INVALID_PARAMETER_MIX;
1640 if (iov[3].iov_len != sizeof(uint16_t)) {
1641 return NT_STATUS_INVALID_PARAMETER_MIX;
1644 frame = talloc_stackframe();
1646 buf = iov_concat(frame, &iov[1], iov_count - 1);
1647 if (buf == NULL) {
1648 return NT_STATUS_NO_MEMORY;
1651 *seqnum = smb_signing_next_seqnum(conn->smb1.signing,
1652 one_way_seqnum);
1653 smb_signing_sign_pdu(conn->smb1.signing,
1654 buf, talloc_get_size(buf),
1655 *seqnum);
1656 memcpy(iov[1].iov_base, buf, iov[1].iov_len);
1658 TALLOC_FREE(frame);
1659 return NT_STATUS_OK;
1662 static void smb1cli_req_writev_done(struct tevent_req *subreq);
1663 static NTSTATUS smb1cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
1664 TALLOC_CTX *tmp_mem,
1665 uint8_t *inbuf);
1667 static NTSTATUS smb1cli_req_writev_submit(struct tevent_req *req,
1668 struct smbXcli_req_state *state,
1669 struct iovec *iov, int iov_count)
1671 struct tevent_req *subreq;
1672 NTSTATUS status;
1673 uint8_t cmd;
1674 uint16_t mid;
1675 ssize_t nbtlen;
1677 if (!smbXcli_conn_is_connected(state->conn)) {
1678 return NT_STATUS_CONNECTION_DISCONNECTED;
1681 if (state->conn->protocol > PROTOCOL_NT1) {
1682 DBG_ERR("called for dialect[%s] server[%s]\n",
1683 smb_protocol_types_string(state->conn->protocol),
1684 smbXcli_conn_remote_name(state->conn));
1685 return NT_STATUS_REVISION_MISMATCH;
1688 if (iov_count < 4) {
1689 return NT_STATUS_INVALID_PARAMETER_MIX;
1691 if (iov[0].iov_len != NBT_HDR_SIZE) {
1692 return NT_STATUS_INVALID_PARAMETER_MIX;
1694 if (iov[1].iov_len != (MIN_SMB_SIZE-sizeof(uint16_t))) {
1695 return NT_STATUS_INVALID_PARAMETER_MIX;
1697 if (iov[2].iov_len > (0xFF * sizeof(uint16_t))) {
1698 return NT_STATUS_INVALID_PARAMETER_MIX;
1700 if (iov[3].iov_len != sizeof(uint16_t)) {
1701 return NT_STATUS_INVALID_PARAMETER_MIX;
1704 cmd = CVAL(iov[1].iov_base, HDR_COM);
1705 if (cmd == SMBreadBraw) {
1706 if (smbXcli_conn_has_async_calls(state->conn)) {
1707 return NT_STATUS_INVALID_PARAMETER_MIX;
1709 state->conn->smb1.read_braw_req = req;
1712 if (state->smb1.mid != 0) {
1713 mid = state->smb1.mid;
1714 } else {
1715 mid = smb1cli_alloc_mid(state->conn);
1717 SSVAL(iov[1].iov_base, HDR_MID, mid);
1719 nbtlen = iov_buflen(&iov[1], iov_count-1);
1720 if ((nbtlen == -1) || (nbtlen > 0x1FFFF)) {
1721 return NT_STATUS_INVALID_PARAMETER_MIX;
1724 _smb_setlen_nbt(iov[0].iov_base, nbtlen);
1726 status = smb1cli_conn_signv(state->conn, iov, iov_count,
1727 &state->smb1.seqnum,
1728 state->smb1.one_way_seqnum);
1730 if (!NT_STATUS_IS_OK(status)) {
1731 return status;
1735 * If we supported multiple encrytion contexts
1736 * here we'd look up based on tid.
1738 if (common_encryption_on(state->conn->smb1.trans_enc)) {
1739 char *buf, *enc_buf;
1741 buf = (char *)iov_concat(talloc_tos(), iov, iov_count);
1742 if (buf == NULL) {
1743 return NT_STATUS_NO_MEMORY;
1745 status = common_encrypt_buffer(state->conn->smb1.trans_enc,
1746 (char *)buf, &enc_buf);
1747 TALLOC_FREE(buf);
1748 if (!NT_STATUS_IS_OK(status)) {
1749 DEBUG(0, ("Error in encrypting client message: %s\n",
1750 nt_errstr(status)));
1751 return status;
1753 buf = (char *)talloc_memdup(state, enc_buf,
1754 smb_len_nbt(enc_buf)+4);
1755 SAFE_FREE(enc_buf);
1756 if (buf == NULL) {
1757 return NT_STATUS_NO_MEMORY;
1759 iov[0].iov_base = (void *)buf;
1760 iov[0].iov_len = talloc_get_size(buf);
1761 iov_count = 1;
1764 if (state->conn->dispatch_incoming == NULL) {
1765 state->conn->dispatch_incoming = smb1cli_conn_dispatch_incoming;
1768 if (!smbXcli_req_set_pending(req)) {
1769 return NT_STATUS_NO_MEMORY;
1772 tevent_req_set_cancel_fn(req, smbXcli_req_cancel);
1774 subreq = writev_send(state, state->ev, state->conn->outgoing,
1775 state->conn->sock_fd, false, iov, iov_count);
1776 if (subreq == NULL) {
1777 return NT_STATUS_NO_MEMORY;
1779 tevent_req_set_callback(subreq, smb1cli_req_writev_done, req);
1780 state->write_req = subreq;
1782 return NT_STATUS_OK;
1785 struct tevent_req *smb1cli_req_send(TALLOC_CTX *mem_ctx,
1786 struct tevent_context *ev,
1787 struct smbXcli_conn *conn,
1788 uint8_t smb_command,
1789 uint8_t additional_flags,
1790 uint8_t clear_flags,
1791 uint16_t additional_flags2,
1792 uint16_t clear_flags2,
1793 uint32_t timeout_msec,
1794 uint32_t pid,
1795 struct smbXcli_tcon *tcon,
1796 struct smbXcli_session *session,
1797 uint8_t wct, uint16_t *vwv,
1798 uint32_t num_bytes,
1799 const uint8_t *bytes)
1801 struct tevent_req *req;
1802 struct iovec iov;
1803 NTSTATUS status;
1805 iov.iov_base = discard_const_p(void, bytes);
1806 iov.iov_len = num_bytes;
1808 req = smb1cli_req_create(mem_ctx, ev, conn, smb_command,
1809 additional_flags, clear_flags,
1810 additional_flags2, clear_flags2,
1811 timeout_msec,
1812 pid, tcon, session,
1813 wct, vwv, 1, &iov);
1814 if (req == NULL) {
1815 return NULL;
1817 if (!tevent_req_is_in_progress(req)) {
1818 return tevent_req_post(req, ev);
1820 status = smb1cli_req_chain_submit(&req, 1);
1821 if (tevent_req_nterror(req, status)) {
1822 return tevent_req_post(req, ev);
1824 return req;
1827 static void smb1cli_req_writev_done(struct tevent_req *subreq)
1829 struct tevent_req *req =
1830 tevent_req_callback_data(subreq,
1831 struct tevent_req);
1832 struct smbXcli_req_state *state =
1833 tevent_req_data(req,
1834 struct smbXcli_req_state);
1835 ssize_t nwritten;
1836 int err;
1838 state->write_req = NULL;
1840 nwritten = writev_recv(subreq, &err);
1841 TALLOC_FREE(subreq);
1842 if (nwritten == -1) {
1843 /* here, we need to notify all pending requests */
1844 NTSTATUS status = map_nt_error_from_unix_common(err);
1845 smbXcli_conn_disconnect(state->conn, status);
1846 return;
1849 if (state->one_way) {
1850 state->inbuf = NULL;
1851 tevent_req_done(req);
1852 return;
1856 static void smbXcli_conn_received(struct tevent_req *subreq)
1858 struct smbXcli_conn *conn =
1859 tevent_req_callback_data(subreq,
1860 struct smbXcli_conn);
1861 TALLOC_CTX *frame = talloc_stackframe();
1862 NTSTATUS status;
1863 uint8_t *inbuf;
1864 ssize_t received;
1865 int err;
1867 if (subreq != conn->read_smb_req) {
1868 DEBUG(1, ("Internal error: cli_smb_received called with "
1869 "unexpected subreq\n"));
1870 smbXcli_conn_disconnect(conn, NT_STATUS_INTERNAL_ERROR);
1871 TALLOC_FREE(frame);
1872 return;
1874 conn->read_smb_req = NULL;
1876 received = read_smb_recv(subreq, frame, &inbuf, &err);
1877 TALLOC_FREE(subreq);
1878 if (received == -1) {
1879 status = map_nt_error_from_unix_common(err);
1880 smbXcli_conn_disconnect(conn, status);
1881 TALLOC_FREE(frame);
1882 return;
1885 status = conn->dispatch_incoming(conn, frame, inbuf);
1886 TALLOC_FREE(frame);
1887 if (NT_STATUS_IS_OK(status)) {
1889 * We should not do any more processing
1890 * as the dispatch function called
1891 * tevent_req_done().
1893 return;
1896 if (!NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
1898 * We got an error, so notify all pending requests
1900 smbXcli_conn_disconnect(conn, status);
1901 return;
1905 * We got NT_STATUS_RETRY, so we may ask for a
1906 * next incoming pdu.
1908 if (!smbXcli_conn_receive_next(conn)) {
1909 smbXcli_conn_disconnect(conn, NT_STATUS_NO_MEMORY);
1913 static NTSTATUS smb1cli_inbuf_parse_chain(uint8_t *buf, TALLOC_CTX *mem_ctx,
1914 struct iovec **piov, int *pnum_iov)
1916 struct iovec *iov;
1917 int num_iov;
1918 size_t buflen;
1919 size_t taken;
1920 size_t remaining;
1921 uint8_t *hdr;
1922 uint8_t cmd;
1923 uint32_t wct_ofs;
1924 NTSTATUS status;
1925 size_t min_size = MIN_SMB_SIZE;
1927 buflen = smb_len_tcp(buf);
1928 taken = 0;
1930 hdr = buf + NBT_HDR_SIZE;
1932 status = smb1cli_pull_raw_error(hdr);
1933 if (NT_STATUS_IS_ERR(status)) {
1935 * This is an ugly hack to support OS/2
1936 * which skips the byte_count in the DATA block
1937 * on some error responses.
1939 * See bug #9096
1941 min_size -= sizeof(uint16_t);
1944 if (buflen < min_size) {
1945 return NT_STATUS_INVALID_NETWORK_RESPONSE;
1949 * This returns iovec elements in the following order:
1951 * - SMB header
1953 * - Parameter Block
1954 * - Data Block
1956 * - Parameter Block
1957 * - Data Block
1959 * - Parameter Block
1960 * - Data Block
1962 num_iov = 1;
1964 iov = talloc_array(mem_ctx, struct iovec, num_iov);
1965 if (iov == NULL) {
1966 return NT_STATUS_NO_MEMORY;
1968 iov[0].iov_base = hdr;
1969 iov[0].iov_len = HDR_WCT;
1970 taken += HDR_WCT;
1972 cmd = CVAL(hdr, HDR_COM);
1973 wct_ofs = HDR_WCT;
1975 while (true) {
1976 size_t len = buflen - taken;
1977 struct iovec *cur;
1978 struct iovec *iov_tmp;
1979 uint8_t wct;
1980 uint32_t bcc_ofs;
1981 uint16_t bcc;
1982 size_t needed;
1985 * we need at least WCT
1987 needed = sizeof(uint8_t);
1988 if (len < needed) {
1989 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1990 __location__, (int)len, (int)needed));
1991 goto inval;
1995 * Now we check if the specified words are there
1997 wct = CVAL(hdr, wct_ofs);
1998 needed += wct * sizeof(uint16_t);
1999 if (len < needed) {
2000 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
2001 __location__, (int)len, (int)needed));
2002 goto inval;
2005 if ((num_iov == 1) &&
2006 (len == needed) &&
2007 NT_STATUS_IS_ERR(status))
2010 * This is an ugly hack to support OS/2
2011 * which skips the byte_count in the DATA block
2012 * on some error responses.
2014 * See bug #9096
2016 iov_tmp = talloc_realloc(mem_ctx, iov, struct iovec,
2017 num_iov + 2);
2018 if (iov_tmp == NULL) {
2019 TALLOC_FREE(iov);
2020 return NT_STATUS_NO_MEMORY;
2022 iov = iov_tmp;
2023 cur = &iov[num_iov];
2024 num_iov += 2;
2026 cur[0].iov_len = 0;
2027 cur[0].iov_base = hdr + (wct_ofs + sizeof(uint8_t));
2028 cur[1].iov_len = 0;
2029 cur[1].iov_base = cur[0].iov_base;
2031 taken += needed;
2032 break;
2036 * we need at least BCC
2038 needed += sizeof(uint16_t);
2039 if (len < needed) {
2040 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
2041 __location__, (int)len, (int)needed));
2042 goto inval;
2046 * Now we check if the specified bytes are there
2048 bcc_ofs = wct_ofs + sizeof(uint8_t) + wct * sizeof(uint16_t);
2049 bcc = SVAL(hdr, bcc_ofs);
2050 needed += bcc * sizeof(uint8_t);
2051 if (len < needed) {
2052 DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
2053 __location__, (int)len, (int)needed));
2054 goto inval;
2058 * we allocate 2 iovec structures for words and bytes
2060 iov_tmp = talloc_realloc(mem_ctx, iov, struct iovec,
2061 num_iov + 2);
2062 if (iov_tmp == NULL) {
2063 TALLOC_FREE(iov);
2064 return NT_STATUS_NO_MEMORY;
2066 iov = iov_tmp;
2067 cur = &iov[num_iov];
2068 num_iov += 2;
2070 cur[0].iov_len = wct * sizeof(uint16_t);
2071 cur[0].iov_base = hdr + (wct_ofs + sizeof(uint8_t));
2072 cur[1].iov_len = bcc * sizeof(uint8_t);
2073 cur[1].iov_base = hdr + (bcc_ofs + sizeof(uint16_t));
2075 taken += needed;
2077 if (!smb1cli_is_andx_req(cmd)) {
2079 * If the current command does not have AndX chanining
2080 * we are done.
2082 break;
2085 if (wct == 0 && bcc == 0) {
2087 * An empty response also ends the chain,
2088 * most likely with an error.
2090 break;
2093 if (wct < 2) {
2094 DEBUG(10, ("%s: wct[%d] < 2 for cmd[0x%02X]\n",
2095 __location__, (int)wct, (int)cmd));
2096 goto inval;
2098 cmd = CVAL(cur[0].iov_base, 0);
2099 if (cmd == 0xFF) {
2101 * If it is the end of the chain we are also done.
2103 break;
2105 wct_ofs = SVAL(cur[0].iov_base, 2);
2107 if (wct_ofs < taken) {
2108 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2110 if (wct_ofs > buflen) {
2111 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2115 * we consumed everything up to the start of the next
2116 * parameter block.
2118 taken = wct_ofs;
2121 remaining = buflen - taken;
2123 if (remaining > 0 && num_iov >= 3) {
2125 * The last DATA block gets the remaining
2126 * bytes, this is needed to support
2127 * CAP_LARGE_WRITEX and CAP_LARGE_READX.
2129 iov[num_iov-1].iov_len += remaining;
2132 *piov = iov;
2133 *pnum_iov = num_iov;
2134 return NT_STATUS_OK;
2136 inval:
2137 TALLOC_FREE(iov);
2138 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2141 static NTSTATUS smb1cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
2142 TALLOC_CTX *tmp_mem,
2143 uint8_t *inbuf)
2145 struct tevent_req *req;
2146 struct smbXcli_req_state *state;
2147 NTSTATUS status;
2148 size_t num_pending;
2149 size_t i;
2150 uint8_t cmd;
2151 uint16_t mid;
2152 bool oplock_break;
2153 uint8_t *inhdr = inbuf + NBT_HDR_SIZE;
2154 size_t len = smb_len_tcp(inbuf);
2155 struct iovec *iov = NULL;
2156 int num_iov = 0;
2157 struct tevent_req **chain = NULL;
2158 size_t num_chained = 0;
2159 size_t num_responses = 0;
2161 if (conn->smb1.read_braw_req != NULL) {
2162 req = conn->smb1.read_braw_req;
2163 conn->smb1.read_braw_req = NULL;
2164 state = tevent_req_data(req, struct smbXcli_req_state);
2166 smbXcli_req_unset_pending(req);
2168 if (state->smb1.recv_iov == NULL) {
2170 * For requests with more than
2171 * one response, we have to readd the
2172 * recv_iov array.
2174 state->smb1.recv_iov = talloc_zero_array(state,
2175 struct iovec,
2177 if (tevent_req_nomem(state->smb1.recv_iov, req)) {
2178 return NT_STATUS_OK;
2182 state->smb1.recv_iov[0].iov_base = (void *)(inhdr);
2183 state->smb1.recv_iov[0].iov_len = len;
2184 ZERO_STRUCT(state->smb1.recv_iov[1]);
2185 ZERO_STRUCT(state->smb1.recv_iov[2]);
2187 state->smb1.recv_cmd = SMBreadBraw;
2188 state->smb1.recv_status = NT_STATUS_OK;
2189 state->inbuf = talloc_move(state->smb1.recv_iov, &inbuf);
2191 tevent_req_done(req);
2192 return NT_STATUS_OK;
2195 if ((IVAL(inhdr, 0) != SMB_MAGIC) /* 0xFF"SMB" */
2196 && (SVAL(inhdr, 0) != 0x45ff)) /* 0xFF"E" */ {
2197 DEBUG(10, ("Got non-SMB PDU\n"));
2198 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2202 * If we supported multiple encrytion contexts
2203 * here we'd look up based on tid.
2205 if (common_encryption_on(conn->smb1.trans_enc)
2206 && (CVAL(inbuf, 0) == 0)) {
2207 uint16_t enc_ctx_num;
2209 status = get_enc_ctx_num(inbuf, &enc_ctx_num);
2210 if (!NT_STATUS_IS_OK(status)) {
2211 DEBUG(10, ("get_enc_ctx_num returned %s\n",
2212 nt_errstr(status)));
2213 return status;
2216 if (enc_ctx_num != conn->smb1.trans_enc->enc_ctx_num) {
2217 DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
2218 enc_ctx_num,
2219 conn->smb1.trans_enc->enc_ctx_num));
2220 return NT_STATUS_INVALID_HANDLE;
2223 status = common_decrypt_buffer(conn->smb1.trans_enc,
2224 (char *)inbuf);
2225 if (!NT_STATUS_IS_OK(status)) {
2226 DEBUG(10, ("common_decrypt_buffer returned %s\n",
2227 nt_errstr(status)));
2228 return status;
2230 inhdr = inbuf + NBT_HDR_SIZE;
2231 len = smb_len_nbt(inbuf);
2234 mid = SVAL(inhdr, HDR_MID);
2235 num_pending = talloc_array_length(conn->pending);
2237 for (i=0; i<num_pending; i++) {
2238 if (mid == smb1cli_req_mid(conn->pending[i])) {
2239 break;
2242 if (i == num_pending) {
2243 /* Dump unexpected reply */
2244 return NT_STATUS_RETRY;
2247 oplock_break = false;
2249 if (mid == 0xffff) {
2251 * Paranoia checks that this is really an oplock break request.
2253 oplock_break = (len == 51); /* hdr + 8 words */
2254 oplock_break &= ((CVAL(inhdr, HDR_FLG) & FLAG_REPLY) == 0);
2255 oplock_break &= (CVAL(inhdr, HDR_COM) == SMBlockingX);
2256 oplock_break &= (SVAL(inhdr, HDR_VWV+VWV(6)) == 0);
2257 oplock_break &= (SVAL(inhdr, HDR_VWV+VWV(7)) == 0);
2259 if (!oplock_break) {
2260 /* Dump unexpected reply */
2261 return NT_STATUS_RETRY;
2265 req = conn->pending[i];
2266 state = tevent_req_data(req, struct smbXcli_req_state);
2268 if (!oplock_break /* oplock breaks are not signed */
2269 && !smb_signing_check_pdu(conn->smb1.signing,
2270 inhdr, len, state->smb1.seqnum+1)) {
2271 DEBUG(10, ("cli_check_sign_mac failed\n"));
2272 return NT_STATUS_ACCESS_DENIED;
2275 status = smb1cli_inbuf_parse_chain(inbuf, tmp_mem,
2276 &iov, &num_iov);
2277 if (!NT_STATUS_IS_OK(status)) {
2278 DEBUG(10,("smb1cli_inbuf_parse_chain - %s\n",
2279 nt_errstr(status)));
2280 return status;
2283 cmd = CVAL(inhdr, HDR_COM);
2284 status = smb1cli_pull_raw_error(inhdr);
2286 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED) &&
2287 (state->session != NULL) && state->session->disconnect_expired)
2290 * this should be a short term hack
2291 * until the upper layers have implemented
2292 * re-authentication.
2294 return status;
2297 if (state->smb1.chained_requests == NULL) {
2298 if (num_iov != 3) {
2299 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2302 smbXcli_req_unset_pending(req);
2304 if (state->smb1.recv_iov == NULL) {
2306 * For requests with more than
2307 * one response, we have to readd the
2308 * recv_iov array.
2310 state->smb1.recv_iov = talloc_zero_array(state,
2311 struct iovec,
2313 if (tevent_req_nomem(state->smb1.recv_iov, req)) {
2314 return NT_STATUS_OK;
2318 state->smb1.recv_cmd = cmd;
2319 state->smb1.recv_status = status;
2320 state->inbuf = talloc_move(state->smb1.recv_iov, &inbuf);
2322 state->smb1.recv_iov[0] = iov[0];
2323 state->smb1.recv_iov[1] = iov[1];
2324 state->smb1.recv_iov[2] = iov[2];
2326 if (talloc_array_length(conn->pending) == 0) {
2327 tevent_req_done(req);
2328 return NT_STATUS_OK;
2331 tevent_req_defer_callback(req, state->ev);
2332 tevent_req_done(req);
2333 return NT_STATUS_RETRY;
2336 chain = talloc_move(tmp_mem, &state->smb1.chained_requests);
2337 num_chained = talloc_array_length(chain);
2338 num_responses = (num_iov - 1)/2;
2340 if (num_responses > num_chained) {
2341 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2344 for (i=0; i<num_chained; i++) {
2345 size_t iov_idx = 1 + (i*2);
2346 struct iovec *cur = &iov[iov_idx];
2347 uint8_t *inbuf_ref;
2349 req = chain[i];
2350 state = tevent_req_data(req, struct smbXcli_req_state);
2352 smbXcli_req_unset_pending(req);
2355 * as we finish multiple requests here
2356 * we need to defer the callbacks as
2357 * they could destroy our current stack state.
2359 tevent_req_defer_callback(req, state->ev);
2361 if (i >= num_responses) {
2362 tevent_req_nterror(req, NT_STATUS_REQUEST_ABORTED);
2363 continue;
2366 if (state->smb1.recv_iov == NULL) {
2368 * For requests with more than
2369 * one response, we have to readd the
2370 * recv_iov array.
2372 state->smb1.recv_iov = talloc_zero_array(state,
2373 struct iovec,
2375 if (tevent_req_nomem(state->smb1.recv_iov, req)) {
2376 continue;
2380 state->smb1.recv_cmd = cmd;
2382 if (i == (num_responses - 1)) {
2384 * The last request in the chain gets the status
2386 state->smb1.recv_status = status;
2387 } else {
2388 cmd = CVAL(cur[0].iov_base, 0);
2389 state->smb1.recv_status = NT_STATUS_OK;
2392 state->inbuf = inbuf;
2395 * Note: here we use talloc_reference() in a way
2396 * that does not expose it to the caller.
2398 inbuf_ref = talloc_reference(state->smb1.recv_iov, inbuf);
2399 if (tevent_req_nomem(inbuf_ref, req)) {
2400 continue;
2403 /* copy the related buffers */
2404 state->smb1.recv_iov[0] = iov[0];
2405 state->smb1.recv_iov[1] = cur[0];
2406 state->smb1.recv_iov[2] = cur[1];
2408 tevent_req_done(req);
2411 return NT_STATUS_RETRY;
2414 NTSTATUS smb1cli_req_recv(struct tevent_req *req,
2415 TALLOC_CTX *mem_ctx,
2416 struct iovec **piov,
2417 uint8_t **phdr,
2418 uint8_t *pwct,
2419 uint16_t **pvwv,
2420 uint32_t *pvwv_offset,
2421 uint32_t *pnum_bytes,
2422 uint8_t **pbytes,
2423 uint32_t *pbytes_offset,
2424 uint8_t **pinbuf,
2425 const struct smb1cli_req_expected_response *expected,
2426 size_t num_expected)
2428 struct smbXcli_req_state *state =
2429 tevent_req_data(req,
2430 struct smbXcli_req_state);
2431 NTSTATUS status = NT_STATUS_OK;
2432 struct iovec *recv_iov = NULL;
2433 uint8_t *hdr = NULL;
2434 uint8_t wct = 0;
2435 uint32_t vwv_offset = 0;
2436 uint16_t *vwv = NULL;
2437 uint32_t num_bytes = 0;
2438 uint32_t bytes_offset = 0;
2439 uint8_t *bytes = NULL;
2440 size_t i;
2441 bool found_status = false;
2442 bool found_size = false;
2444 if (piov != NULL) {
2445 *piov = NULL;
2447 if (phdr != NULL) {
2448 *phdr = 0;
2450 if (pwct != NULL) {
2451 *pwct = 0;
2453 if (pvwv != NULL) {
2454 *pvwv = NULL;
2456 if (pvwv_offset != NULL) {
2457 *pvwv_offset = 0;
2459 if (pnum_bytes != NULL) {
2460 *pnum_bytes = 0;
2462 if (pbytes != NULL) {
2463 *pbytes = NULL;
2465 if (pbytes_offset != NULL) {
2466 *pbytes_offset = 0;
2468 if (pinbuf != NULL) {
2469 *pinbuf = NULL;
2472 if (state->inbuf != NULL) {
2473 recv_iov = state->smb1.recv_iov;
2474 state->smb1.recv_iov = NULL;
2475 if (state->smb1.recv_cmd != SMBreadBraw) {
2476 hdr = (uint8_t *)recv_iov[0].iov_base;
2477 wct = recv_iov[1].iov_len/2;
2478 vwv = (uint16_t *)recv_iov[1].iov_base;
2479 vwv_offset = PTR_DIFF(vwv, hdr);
2480 num_bytes = recv_iov[2].iov_len;
2481 bytes = (uint8_t *)recv_iov[2].iov_base;
2482 bytes_offset = PTR_DIFF(bytes, hdr);
2486 if (tevent_req_is_nterror(req, &status)) {
2487 for (i=0; i < num_expected; i++) {
2488 if (NT_STATUS_EQUAL(status, expected[i].status)) {
2489 found_status = true;
2490 break;
2494 if (found_status) {
2495 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
2498 return status;
2501 if (num_expected == 0) {
2502 found_status = true;
2503 found_size = true;
2506 status = state->smb1.recv_status;
2508 for (i=0; i < num_expected; i++) {
2509 if (!NT_STATUS_EQUAL(status, expected[i].status)) {
2510 continue;
2513 found_status = true;
2514 if (expected[i].wct == 0) {
2515 found_size = true;
2516 break;
2519 if (expected[i].wct == wct) {
2520 found_size = true;
2521 break;
2525 if (!found_status) {
2526 return status;
2529 if (!found_size) {
2530 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2533 if (piov != NULL) {
2534 *piov = talloc_move(mem_ctx, &recv_iov);
2537 if (phdr != NULL) {
2538 *phdr = hdr;
2540 if (pwct != NULL) {
2541 *pwct = wct;
2543 if (pvwv != NULL) {
2544 *pvwv = vwv;
2546 if (pvwv_offset != NULL) {
2547 *pvwv_offset = vwv_offset;
2549 if (pnum_bytes != NULL) {
2550 *pnum_bytes = num_bytes;
2552 if (pbytes != NULL) {
2553 *pbytes = bytes;
2555 if (pbytes_offset != NULL) {
2556 *pbytes_offset = bytes_offset;
2558 if (pinbuf != NULL) {
2559 *pinbuf = state->inbuf;
2562 return status;
2565 size_t smb1cli_req_wct_ofs(struct tevent_req **reqs, int num_reqs)
2567 size_t wct_ofs;
2568 int i;
2570 wct_ofs = HDR_WCT;
2572 for (i=0; i<num_reqs; i++) {
2573 struct smbXcli_req_state *state;
2574 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2575 wct_ofs += smbXcli_iov_len(state->smb1.iov+2,
2576 state->smb1.iov_count-2);
2577 wct_ofs = (wct_ofs + 3) & ~3;
2579 return wct_ofs;
2582 NTSTATUS smb1cli_req_chain_submit(struct tevent_req **reqs, int num_reqs)
2584 struct smbXcli_req_state *first_state =
2585 tevent_req_data(reqs[0],
2586 struct smbXcli_req_state);
2587 struct smbXcli_req_state *state;
2588 size_t wct_offset;
2589 size_t chain_padding = 0;
2590 int i, iovlen;
2591 struct iovec *iov = NULL;
2592 struct iovec *this_iov;
2593 NTSTATUS status;
2594 ssize_t nbt_len;
2596 if (num_reqs == 1) {
2597 return smb1cli_req_writev_submit(reqs[0], first_state,
2598 first_state->smb1.iov,
2599 first_state->smb1.iov_count);
2602 iovlen = 0;
2603 for (i=0; i<num_reqs; i++) {
2604 if (!tevent_req_is_in_progress(reqs[i])) {
2605 return NT_STATUS_INTERNAL_ERROR;
2608 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2610 if (state->smb1.iov_count < 4) {
2611 return NT_STATUS_INVALID_PARAMETER_MIX;
2614 if (i == 0) {
2616 * The NBT and SMB header
2618 iovlen += 2;
2619 } else {
2621 * Chain padding
2623 iovlen += 1;
2627 * words and bytes
2629 iovlen += state->smb1.iov_count - 2;
2632 iov = talloc_zero_array(first_state, struct iovec, iovlen);
2633 if (iov == NULL) {
2634 return NT_STATUS_NO_MEMORY;
2637 first_state->smb1.chained_requests = (struct tevent_req **)talloc_memdup(
2638 first_state, reqs, sizeof(*reqs) * num_reqs);
2639 if (first_state->smb1.chained_requests == NULL) {
2640 TALLOC_FREE(iov);
2641 return NT_STATUS_NO_MEMORY;
2644 wct_offset = HDR_WCT;
2645 this_iov = iov;
2647 for (i=0; i<num_reqs; i++) {
2648 size_t next_padding = 0;
2649 uint16_t *vwv;
2651 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2653 if (i < num_reqs-1) {
2654 if (!smb1cli_is_andx_req(CVAL(state->smb1.hdr, HDR_COM))
2655 || CVAL(state->smb1.hdr, HDR_WCT) < 2) {
2656 TALLOC_FREE(iov);
2657 TALLOC_FREE(first_state->smb1.chained_requests);
2658 return NT_STATUS_INVALID_PARAMETER_MIX;
2662 wct_offset += smbXcli_iov_len(state->smb1.iov+2,
2663 state->smb1.iov_count-2) + 1;
2664 if ((wct_offset % 4) != 0) {
2665 next_padding = 4 - (wct_offset % 4);
2667 wct_offset += next_padding;
2668 vwv = state->smb1.vwv;
2670 if (i < num_reqs-1) {
2671 struct smbXcli_req_state *next_state =
2672 tevent_req_data(reqs[i+1],
2673 struct smbXcli_req_state);
2674 SCVAL(vwv+0, 0, CVAL(next_state->smb1.hdr, HDR_COM));
2675 SCVAL(vwv+0, 1, 0);
2676 SSVAL(vwv+1, 0, wct_offset);
2677 } else if (smb1cli_is_andx_req(CVAL(state->smb1.hdr, HDR_COM))) {
2678 /* properly end the chain */
2679 SCVAL(vwv+0, 0, 0xff);
2680 SCVAL(vwv+0, 1, 0xff);
2681 SSVAL(vwv+1, 0, 0);
2684 if (i == 0) {
2686 * The NBT and SMB header
2688 this_iov[0] = state->smb1.iov[0];
2689 this_iov[1] = state->smb1.iov[1];
2690 this_iov += 2;
2691 } else {
2693 * This one is a bit subtle. We have to add
2694 * chain_padding bytes between the requests, and we
2695 * have to also include the wct field of the
2696 * subsequent requests. We use the subsequent header
2697 * for the padding, it contains the wct field in its
2698 * last byte.
2700 this_iov[0].iov_len = chain_padding+1;
2701 this_iov[0].iov_base = (void *)&state->smb1.hdr[
2702 sizeof(state->smb1.hdr) - this_iov[0].iov_len];
2703 memset(this_iov[0].iov_base, 0, this_iov[0].iov_len-1);
2704 this_iov += 1;
2708 * copy the words and bytes
2710 memcpy(this_iov, state->smb1.iov+2,
2711 sizeof(struct iovec) * (state->smb1.iov_count-2));
2712 this_iov += state->smb1.iov_count - 2;
2713 chain_padding = next_padding;
2716 nbt_len = iov_buflen(&iov[1], iovlen-1);
2717 if ((nbt_len == -1) || (nbt_len > first_state->conn->smb1.max_xmit)) {
2718 TALLOC_FREE(iov);
2719 TALLOC_FREE(first_state->smb1.chained_requests);
2720 return NT_STATUS_INVALID_PARAMETER_MIX;
2723 status = smb1cli_req_writev_submit(reqs[0], first_state, iov, iovlen);
2724 if (!NT_STATUS_IS_OK(status)) {
2725 TALLOC_FREE(iov);
2726 TALLOC_FREE(first_state->smb1.chained_requests);
2727 return status;
2730 return NT_STATUS_OK;
2733 bool smbXcli_conn_has_async_calls(struct smbXcli_conn *conn)
2735 return ((tevent_queue_length(conn->outgoing) != 0)
2736 || (talloc_array_length(conn->pending) != 0));
2739 bool smbXcli_conn_dfs_supported(struct smbXcli_conn *conn)
2741 if (conn->protocol >= PROTOCOL_SMB2_02) {
2742 return (smb2cli_conn_server_capabilities(conn) & SMB2_CAP_DFS);
2745 return (smb1cli_conn_capabilities(conn) & CAP_DFS);
2748 bool smb2cli_conn_req_possible(struct smbXcli_conn *conn, uint32_t *max_dyn_len)
2750 uint16_t credits = 1;
2752 if (conn->smb2.cur_credits == 0) {
2753 if (max_dyn_len != NULL) {
2754 *max_dyn_len = 0;
2756 return false;
2759 if (conn->smb2.server.capabilities & SMB2_CAP_LARGE_MTU) {
2760 credits = conn->smb2.cur_credits;
2763 if (max_dyn_len != NULL) {
2764 *max_dyn_len = credits * 65536;
2767 return true;
2770 uint32_t smb2cli_conn_server_capabilities(struct smbXcli_conn *conn)
2772 return conn->smb2.server.capabilities;
2775 uint16_t smb2cli_conn_server_security_mode(struct smbXcli_conn *conn)
2777 return conn->smb2.server.security_mode;
2780 uint32_t smb2cli_conn_max_trans_size(struct smbXcli_conn *conn)
2782 return conn->smb2.server.max_trans_size;
2785 uint32_t smb2cli_conn_max_read_size(struct smbXcli_conn *conn)
2787 return conn->smb2.server.max_read_size;
2790 uint32_t smb2cli_conn_max_write_size(struct smbXcli_conn *conn)
2792 return conn->smb2.server.max_write_size;
2795 void smb2cli_conn_set_max_credits(struct smbXcli_conn *conn,
2796 uint16_t max_credits)
2798 conn->smb2.max_credits = max_credits;
2801 uint16_t smb2cli_conn_get_cur_credits(struct smbXcli_conn *conn)
2803 return conn->smb2.cur_credits;
2806 uint8_t smb2cli_conn_get_io_priority(struct smbXcli_conn *conn)
2808 if (conn->protocol < PROTOCOL_SMB3_11) {
2809 return 0;
2812 return conn->smb2.io_priority;
2815 void smb2cli_conn_set_io_priority(struct smbXcli_conn *conn,
2816 uint8_t io_priority)
2818 conn->smb2.io_priority = io_priority;
2821 uint32_t smb2cli_conn_cc_chunk_len(struct smbXcli_conn *conn)
2823 return conn->smb2.cc_chunk_len;
2826 void smb2cli_conn_set_cc_chunk_len(struct smbXcli_conn *conn,
2827 uint32_t chunk_len)
2829 conn->smb2.cc_chunk_len = chunk_len;
2832 uint32_t smb2cli_conn_cc_max_chunks(struct smbXcli_conn *conn)
2834 return conn->smb2.cc_max_chunks;
2837 void smb2cli_conn_set_cc_max_chunks(struct smbXcli_conn *conn,
2838 uint32_t max_chunks)
2840 conn->smb2.cc_max_chunks = max_chunks;
2843 static void smb2cli_req_cancel_done(struct tevent_req *subreq);
2845 static bool smb2cli_req_cancel(struct tevent_req *req)
2847 struct smbXcli_req_state *state =
2848 tevent_req_data(req,
2849 struct smbXcli_req_state);
2850 struct smbXcli_tcon *tcon = state->tcon;
2851 struct smbXcli_session *session = state->session;
2852 uint8_t *fixed = state->smb2.pad;
2853 uint16_t fixed_len = 4;
2854 struct tevent_req *subreq;
2855 struct smbXcli_req_state *substate;
2856 NTSTATUS status;
2858 SSVAL(fixed, 0, 0x04);
2859 SSVAL(fixed, 2, 0);
2861 subreq = smb2cli_req_create(state, state->ev,
2862 state->conn,
2863 SMB2_OP_CANCEL,
2864 0, 0, /* flags */
2865 0, /* timeout */
2866 tcon, session,
2867 fixed, fixed_len,
2868 NULL, 0, 0);
2869 if (subreq == NULL) {
2870 return false;
2872 substate = tevent_req_data(subreq, struct smbXcli_req_state);
2874 SIVAL(substate->smb2.hdr, SMB2_HDR_FLAGS, state->smb2.cancel_flags);
2875 SBVAL(substate->smb2.hdr, SMB2_HDR_MESSAGE_ID, state->smb2.cancel_mid);
2876 SBVAL(substate->smb2.hdr, SMB2_HDR_ASYNC_ID, state->smb2.cancel_aid);
2878 status = smb2cli_req_compound_submit(&subreq, 1);
2879 if (!NT_STATUS_IS_OK(status)) {
2880 TALLOC_FREE(subreq);
2881 return false;
2884 tevent_req_set_callback(subreq, smb2cli_req_cancel_done, NULL);
2886 return true;
2889 static void smb2cli_req_cancel_done(struct tevent_req *subreq)
2891 /* we do not care about the result */
2892 TALLOC_FREE(subreq);
2895 struct tevent_req *smb2cli_req_create(TALLOC_CTX *mem_ctx,
2896 struct tevent_context *ev,
2897 struct smbXcli_conn *conn,
2898 uint16_t cmd,
2899 uint32_t additional_flags,
2900 uint32_t clear_flags,
2901 uint32_t timeout_msec,
2902 struct smbXcli_tcon *tcon,
2903 struct smbXcli_session *session,
2904 const uint8_t *fixed,
2905 uint16_t fixed_len,
2906 const uint8_t *dyn,
2907 uint32_t dyn_len,
2908 uint32_t max_dyn_len)
2910 struct tevent_req *req;
2911 struct smbXcli_req_state *state;
2912 uint32_t flags = 0;
2913 uint32_t tid = 0;
2914 uint64_t uid = 0;
2915 bool use_channel_sequence = conn->smb2.force_channel_sequence;
2916 uint16_t channel_sequence = 0;
2917 bool use_replay_flag = false;
2919 req = tevent_req_create(mem_ctx, &state,
2920 struct smbXcli_req_state);
2921 if (req == NULL) {
2922 return NULL;
2925 state->ev = ev;
2926 state->conn = conn;
2927 state->session = session;
2928 state->tcon = tcon;
2930 if (conn->smb2.server.capabilities & SMB2_CAP_PERSISTENT_HANDLES) {
2931 use_channel_sequence = true;
2932 } else if (conn->smb2.server.capabilities & SMB2_CAP_MULTI_CHANNEL) {
2933 use_channel_sequence = true;
2936 if (smbXcli_conn_protocol(conn) >= PROTOCOL_SMB3_00) {
2937 use_replay_flag = true;
2940 if (smbXcli_conn_protocol(conn) >= PROTOCOL_SMB3_11) {
2941 flags |= SMB2_PRIORITY_VALUE_TO_MASK(conn->smb2.io_priority);
2944 if (session) {
2945 uid = session->smb2->session_id;
2947 if (use_channel_sequence) {
2948 channel_sequence = session->smb2->channel_sequence;
2951 if (use_replay_flag && session->smb2->replay_active) {
2952 additional_flags |= SMB2_HDR_FLAG_REPLAY_OPERATION;
2955 state->smb2.should_sign = session->smb2->should_sign;
2956 state->smb2.should_encrypt = session->smb2->should_encrypt;
2958 if (cmd == SMB2_OP_SESSSETUP &&
2959 session->smb2_channel.signing_key.length == 0 &&
2960 session->smb2->signing_key.length != 0)
2963 * a session bind needs to be signed
2965 state->smb2.should_sign = true;
2968 if (cmd == SMB2_OP_SESSSETUP &&
2969 session->smb2_channel.signing_key.length == 0) {
2970 state->smb2.should_encrypt = false;
2973 if (additional_flags & SMB2_HDR_FLAG_SIGNED) {
2974 if (session->smb2_channel.signing_key.length == 0) {
2975 tevent_req_nterror(req, NT_STATUS_NO_USER_SESSION_KEY);
2976 return req;
2979 additional_flags &= ~SMB2_HDR_FLAG_SIGNED;
2980 state->smb2.should_sign = true;
2984 if (tcon) {
2985 tid = tcon->smb2.tcon_id;
2987 if (tcon->smb2.should_sign) {
2988 state->smb2.should_sign = true;
2990 if (tcon->smb2.should_encrypt) {
2991 state->smb2.should_encrypt = true;
2995 if (state->smb2.should_encrypt) {
2996 state->smb2.should_sign = false;
2999 state->smb2.recv_iov = talloc_zero_array(state, struct iovec, 3);
3000 if (state->smb2.recv_iov == NULL) {
3001 TALLOC_FREE(req);
3002 return NULL;
3005 flags |= additional_flags;
3006 flags &= ~clear_flags;
3008 state->smb2.fixed = fixed;
3009 state->smb2.fixed_len = fixed_len;
3010 state->smb2.dyn = dyn;
3011 state->smb2.dyn_len = dyn_len;
3012 state->smb2.max_dyn_len = max_dyn_len;
3014 if (state->smb2.should_encrypt) {
3015 SIVAL(state->smb2.transform, SMB2_TF_PROTOCOL_ID, SMB2_TF_MAGIC);
3016 SBVAL(state->smb2.transform, SMB2_TF_SESSION_ID, uid);
3019 SIVAL(state->smb2.hdr, SMB2_HDR_PROTOCOL_ID, SMB2_MAGIC);
3020 SSVAL(state->smb2.hdr, SMB2_HDR_LENGTH, SMB2_HDR_BODY);
3021 SSVAL(state->smb2.hdr, SMB2_HDR_OPCODE, cmd);
3022 SSVAL(state->smb2.hdr, SMB2_HDR_CHANNEL_SEQUENCE, channel_sequence);
3023 SIVAL(state->smb2.hdr, SMB2_HDR_FLAGS, flags);
3024 SIVAL(state->smb2.hdr, SMB2_HDR_PID, 0); /* reserved */
3025 SIVAL(state->smb2.hdr, SMB2_HDR_TID, tid);
3026 SBVAL(state->smb2.hdr, SMB2_HDR_SESSION_ID, uid);
3028 switch (cmd) {
3029 case SMB2_OP_CANCEL:
3030 state->one_way = true;
3031 break;
3032 case SMB2_OP_BREAK:
3034 * If this is a dummy request, it will have
3035 * UINT64_MAX as message id.
3036 * If we send on break acknowledgement,
3037 * this gets overwritten later.
3039 SBVAL(state->smb2.hdr, SMB2_HDR_MESSAGE_ID, UINT64_MAX);
3040 break;
3043 if (timeout_msec > 0) {
3044 struct timeval endtime;
3046 endtime = timeval_current_ofs_msec(timeout_msec);
3047 if (!tevent_req_set_endtime(req, ev, endtime)) {
3048 return req;
3052 return req;
3055 void smb2cli_req_set_notify_async(struct tevent_req *req)
3057 struct smbXcli_req_state *state =
3058 tevent_req_data(req,
3059 struct smbXcli_req_state);
3061 state->smb2.notify_async = true;
3064 static void smb2cli_req_writev_done(struct tevent_req *subreq);
3065 static NTSTATUS smb2cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
3066 TALLOC_CTX *tmp_mem,
3067 uint8_t *inbuf);
3069 NTSTATUS smb2cli_req_compound_submit(struct tevent_req **reqs,
3070 int num_reqs)
3072 struct smbXcli_req_state *state;
3073 struct tevent_req *subreq;
3074 struct iovec *iov;
3075 int i, num_iov, nbt_len;
3076 int tf_iov = -1;
3077 const DATA_BLOB *encryption_key = NULL;
3078 uint64_t encryption_session_id = 0;
3079 uint64_t nonce_high = UINT64_MAX;
3080 uint64_t nonce_low = UINT64_MAX;
3083 * 1 for the nbt length, optional TRANSFORM
3084 * per request: HDR, fixed, dyn, padding
3085 * -1 because the last one does not need padding
3088 iov = talloc_array(reqs[0], struct iovec, 1 + 1 + 4*num_reqs - 1);
3089 if (iov == NULL) {
3090 return NT_STATUS_NO_MEMORY;
3093 num_iov = 1;
3094 nbt_len = 0;
3097 * the session of the first request that requires encryption
3098 * specifies the encryption key.
3100 for (i=0; i<num_reqs; i++) {
3101 if (!tevent_req_is_in_progress(reqs[i])) {
3102 return NT_STATUS_INTERNAL_ERROR;
3105 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
3107 if (!smbXcli_conn_is_connected(state->conn)) {
3108 return NT_STATUS_CONNECTION_DISCONNECTED;
3111 if ((state->conn->protocol != PROTOCOL_NONE) &&
3112 (state->conn->protocol < PROTOCOL_SMB2_02)) {
3113 return NT_STATUS_REVISION_MISMATCH;
3116 if (state->session == NULL) {
3117 continue;
3120 if (!state->smb2.should_encrypt) {
3121 continue;
3124 encryption_key = &state->session->smb2->encryption_key;
3125 if (encryption_key->length == 0) {
3126 return NT_STATUS_INVALID_PARAMETER_MIX;
3129 encryption_session_id = state->session->smb2->session_id;
3131 state->session->smb2->nonce_low += 1;
3132 if (state->session->smb2->nonce_low == 0) {
3133 state->session->smb2->nonce_high += 1;
3134 state->session->smb2->nonce_low += 1;
3138 * CCM and GCM algorithms must never have their
3139 * nonce wrap, or the security of the whole
3140 * communication and the keys is destroyed.
3141 * We must drop the connection once we have
3142 * transfered too much data.
3144 * NOTE: We assume nonces greater than 8 bytes.
3146 if (state->session->smb2->nonce_high >=
3147 state->session->smb2->nonce_high_max)
3149 return NT_STATUS_ENCRYPTION_FAILED;
3152 nonce_high = state->session->smb2->nonce_high_random;
3153 nonce_high += state->session->smb2->nonce_high;
3154 nonce_low = state->session->smb2->nonce_low;
3156 tf_iov = num_iov;
3157 iov[num_iov].iov_base = state->smb2.transform;
3158 iov[num_iov].iov_len = sizeof(state->smb2.transform);
3159 num_iov += 1;
3161 SBVAL(state->smb2.transform, SMB2_TF_PROTOCOL_ID, SMB2_TF_MAGIC);
3162 SBVAL(state->smb2.transform, SMB2_TF_NONCE,
3163 nonce_low);
3164 SBVAL(state->smb2.transform, SMB2_TF_NONCE+8,
3165 nonce_high);
3166 SBVAL(state->smb2.transform, SMB2_TF_SESSION_ID,
3167 encryption_session_id);
3169 nbt_len += SMB2_TF_HDR_SIZE;
3170 break;
3173 for (i=0; i<num_reqs; i++) {
3174 int hdr_iov;
3175 size_t reqlen;
3176 bool ret;
3177 uint16_t opcode;
3178 uint64_t avail;
3179 uint16_t charge;
3180 uint16_t credits;
3181 uint64_t mid;
3182 const DATA_BLOB *signing_key = NULL;
3184 if (!tevent_req_is_in_progress(reqs[i])) {
3185 return NT_STATUS_INTERNAL_ERROR;
3188 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
3190 if (!smbXcli_conn_is_connected(state->conn)) {
3191 return NT_STATUS_CONNECTION_DISCONNECTED;
3194 if ((state->conn->protocol != PROTOCOL_NONE) &&
3195 (state->conn->protocol < PROTOCOL_SMB2_02)) {
3196 return NT_STATUS_REVISION_MISMATCH;
3199 opcode = SVAL(state->smb2.hdr, SMB2_HDR_OPCODE);
3200 if (opcode == SMB2_OP_CANCEL) {
3201 goto skip_credits;
3204 avail = UINT64_MAX - state->conn->smb2.mid;
3205 if (avail < 1) {
3206 return NT_STATUS_CONNECTION_ABORTED;
3209 if (state->conn->smb2.server.capabilities & SMB2_CAP_LARGE_MTU) {
3210 uint32_t max_dyn_len = 1;
3212 max_dyn_len = MAX(max_dyn_len, state->smb2.dyn_len);
3213 max_dyn_len = MAX(max_dyn_len, state->smb2.max_dyn_len);
3215 charge = (max_dyn_len - 1)/ 65536 + 1;
3216 } else {
3217 charge = 1;
3220 charge = MAX(state->smb2.credit_charge, charge);
3222 avail = MIN(avail, state->conn->smb2.cur_credits);
3223 if (avail < charge) {
3224 return NT_STATUS_INTERNAL_ERROR;
3227 credits = 0;
3228 if (state->conn->smb2.max_credits > state->conn->smb2.cur_credits) {
3229 credits = state->conn->smb2.max_credits -
3230 state->conn->smb2.cur_credits;
3232 if (state->conn->smb2.max_credits >= state->conn->smb2.cur_credits) {
3233 credits += 1;
3236 mid = state->conn->smb2.mid;
3237 state->conn->smb2.mid += charge;
3238 state->conn->smb2.cur_credits -= charge;
3240 if (state->conn->smb2.server.capabilities & SMB2_CAP_LARGE_MTU) {
3241 SSVAL(state->smb2.hdr, SMB2_HDR_CREDIT_CHARGE, charge);
3243 SSVAL(state->smb2.hdr, SMB2_HDR_CREDIT, credits);
3244 SBVAL(state->smb2.hdr, SMB2_HDR_MESSAGE_ID, mid);
3246 state->smb2.cancel_flags = 0;
3247 state->smb2.cancel_mid = mid;
3248 state->smb2.cancel_aid = 0;
3250 skip_credits:
3251 if (state->session && encryption_key == NULL) {
3253 * We prefer the channel signing key if it is
3254 * already there.
3256 if (state->smb2.should_sign) {
3257 signing_key = &state->session->smb2_channel.signing_key;
3261 * If it is a channel binding, we already have the main
3262 * signing key and try that one.
3264 if (signing_key && signing_key->length == 0) {
3265 signing_key = &state->session->smb2->signing_key;
3269 * If we do not have any session key yet, we skip the
3270 * signing of SMB2_OP_SESSSETUP requests.
3272 if (signing_key && signing_key->length == 0) {
3273 signing_key = NULL;
3277 hdr_iov = num_iov;
3278 iov[num_iov].iov_base = state->smb2.hdr;
3279 iov[num_iov].iov_len = sizeof(state->smb2.hdr);
3280 num_iov += 1;
3282 iov[num_iov].iov_base = discard_const(state->smb2.fixed);
3283 iov[num_iov].iov_len = state->smb2.fixed_len;
3284 num_iov += 1;
3286 if (state->smb2.dyn != NULL) {
3287 iov[num_iov].iov_base = discard_const(state->smb2.dyn);
3288 iov[num_iov].iov_len = state->smb2.dyn_len;
3289 num_iov += 1;
3292 reqlen = sizeof(state->smb2.hdr);
3293 reqlen += state->smb2.fixed_len;
3294 reqlen += state->smb2.dyn_len;
3296 if (i < num_reqs-1) {
3297 if ((reqlen % 8) > 0) {
3298 uint8_t pad = 8 - (reqlen % 8);
3299 iov[num_iov].iov_base = state->smb2.pad;
3300 iov[num_iov].iov_len = pad;
3301 num_iov += 1;
3302 reqlen += pad;
3304 SIVAL(state->smb2.hdr, SMB2_HDR_NEXT_COMMAND, reqlen);
3307 state->smb2.encryption_session_id = encryption_session_id;
3309 if (signing_key != NULL) {
3310 NTSTATUS status;
3312 status = smb2_signing_sign_pdu(*signing_key,
3313 state->session->conn->protocol,
3314 &iov[hdr_iov], num_iov - hdr_iov);
3315 if (!NT_STATUS_IS_OK(status)) {
3316 return status;
3320 nbt_len += reqlen;
3322 ret = smbXcli_req_set_pending(reqs[i]);
3323 if (!ret) {
3324 return NT_STATUS_NO_MEMORY;
3328 state = tevent_req_data(reqs[0], struct smbXcli_req_state);
3329 _smb_setlen_tcp(state->length_hdr, nbt_len);
3330 iov[0].iov_base = state->length_hdr;
3331 iov[0].iov_len = sizeof(state->length_hdr);
3333 if (encryption_key != NULL) {
3334 NTSTATUS status;
3335 size_t buflen = nbt_len - SMB2_TF_HDR_SIZE;
3336 uint8_t *buf;
3337 int vi;
3339 buf = talloc_array(iov, uint8_t, buflen);
3340 if (buf == NULL) {
3341 return NT_STATUS_NO_MEMORY;
3345 * We copy the buffers before encrypting them,
3346 * this is at least currently needed for the
3347 * to keep state->smb2.hdr.
3349 * Also the callers may expect there buffers
3350 * to be const.
3352 for (vi = tf_iov + 1; vi < num_iov; vi++) {
3353 struct iovec *v = &iov[vi];
3354 const uint8_t *o = (const uint8_t *)v->iov_base;
3356 memcpy(buf, o, v->iov_len);
3357 v->iov_base = (void *)buf;
3358 buf += v->iov_len;
3361 status = smb2_signing_encrypt_pdu(*encryption_key,
3362 state->conn->smb2.server.cipher,
3363 &iov[tf_iov], num_iov - tf_iov);
3364 if (!NT_STATUS_IS_OK(status)) {
3365 return status;
3369 if (state->conn->dispatch_incoming == NULL) {
3370 state->conn->dispatch_incoming = smb2cli_conn_dispatch_incoming;
3373 subreq = writev_send(state, state->ev, state->conn->outgoing,
3374 state->conn->sock_fd, false, iov, num_iov);
3375 if (subreq == NULL) {
3376 return NT_STATUS_NO_MEMORY;
3378 tevent_req_set_callback(subreq, smb2cli_req_writev_done, reqs[0]);
3379 state->write_req = subreq;
3381 return NT_STATUS_OK;
3384 void smb2cli_req_set_credit_charge(struct tevent_req *req, uint16_t charge)
3386 struct smbXcli_req_state *state =
3387 tevent_req_data(req,
3388 struct smbXcli_req_state);
3390 state->smb2.credit_charge = charge;
3393 struct tevent_req *smb2cli_req_send(TALLOC_CTX *mem_ctx,
3394 struct tevent_context *ev,
3395 struct smbXcli_conn *conn,
3396 uint16_t cmd,
3397 uint32_t additional_flags,
3398 uint32_t clear_flags,
3399 uint32_t timeout_msec,
3400 struct smbXcli_tcon *tcon,
3401 struct smbXcli_session *session,
3402 const uint8_t *fixed,
3403 uint16_t fixed_len,
3404 const uint8_t *dyn,
3405 uint32_t dyn_len,
3406 uint32_t max_dyn_len)
3408 struct tevent_req *req;
3409 NTSTATUS status;
3411 req = smb2cli_req_create(mem_ctx, ev, conn, cmd,
3412 additional_flags, clear_flags,
3413 timeout_msec,
3414 tcon, session,
3415 fixed, fixed_len,
3416 dyn, dyn_len,
3417 max_dyn_len);
3418 if (req == NULL) {
3419 return NULL;
3421 if (!tevent_req_is_in_progress(req)) {
3422 return tevent_req_post(req, ev);
3424 status = smb2cli_req_compound_submit(&req, 1);
3425 if (tevent_req_nterror(req, status)) {
3426 return tevent_req_post(req, ev);
3428 return req;
3431 static void smb2cli_req_writev_done(struct tevent_req *subreq)
3433 struct tevent_req *req =
3434 tevent_req_callback_data(subreq,
3435 struct tevent_req);
3436 struct smbXcli_req_state *state =
3437 tevent_req_data(req,
3438 struct smbXcli_req_state);
3439 ssize_t nwritten;
3440 int err;
3442 state->write_req = NULL;
3444 nwritten = writev_recv(subreq, &err);
3445 TALLOC_FREE(subreq);
3446 if (nwritten == -1) {
3447 /* here, we need to notify all pending requests */
3448 NTSTATUS status = map_nt_error_from_unix_common(err);
3449 smbXcli_conn_disconnect(state->conn, status);
3450 return;
3454 static struct smbXcli_session* smbXcli_session_by_uid(struct smbXcli_conn *conn,
3455 uint64_t uid)
3457 struct smbXcli_session *s = conn->sessions;
3459 for (; s; s = s->next) {
3460 if (s->smb2->session_id != uid) {
3461 continue;
3463 break;
3466 return s;
3469 static NTSTATUS smb2cli_inbuf_parse_compound(struct smbXcli_conn *conn,
3470 uint8_t *buf,
3471 size_t buflen,
3472 TALLOC_CTX *mem_ctx,
3473 struct iovec **piov, int *pnum_iov)
3475 struct iovec *iov;
3476 int num_iov = 0;
3477 size_t taken = 0;
3478 uint8_t *first_hdr = buf;
3479 size_t verified_buflen = 0;
3480 uint8_t *tf = NULL;
3481 size_t tf_len = 0;
3483 iov = talloc_array(mem_ctx, struct iovec, num_iov);
3484 if (iov == NULL) {
3485 return NT_STATUS_NO_MEMORY;
3488 while (taken < buflen) {
3489 size_t len = buflen - taken;
3490 uint8_t *hdr = first_hdr + taken;
3491 struct iovec *cur;
3492 size_t full_size;
3493 size_t next_command_ofs;
3494 uint16_t body_size;
3495 struct iovec *iov_tmp;
3497 if (verified_buflen > taken) {
3498 len = verified_buflen - taken;
3499 } else {
3500 tf = NULL;
3501 tf_len = 0;
3504 if (len < 4) {
3505 DEBUG(10, ("%d bytes left, expected at least %d\n",
3506 (int)len, 4));
3507 goto inval;
3509 if (IVAL(hdr, 0) == SMB2_TF_MAGIC) {
3510 struct smbXcli_session *s;
3511 uint64_t uid;
3512 struct iovec tf_iov[2];
3513 size_t enc_len;
3514 NTSTATUS status;
3516 if (len < SMB2_TF_HDR_SIZE) {
3517 DEBUG(10, ("%d bytes left, expected at least %d\n",
3518 (int)len, SMB2_TF_HDR_SIZE));
3519 goto inval;
3521 tf = hdr;
3522 tf_len = SMB2_TF_HDR_SIZE;
3523 taken += tf_len;
3525 hdr = first_hdr + taken;
3526 enc_len = IVAL(tf, SMB2_TF_MSG_SIZE);
3527 uid = BVAL(tf, SMB2_TF_SESSION_ID);
3529 if (len < SMB2_TF_HDR_SIZE + enc_len) {
3530 DEBUG(10, ("%d bytes left, expected at least %d\n",
3531 (int)len,
3532 (int)(SMB2_TF_HDR_SIZE + enc_len)));
3533 goto inval;
3536 s = smbXcli_session_by_uid(conn, uid);
3537 if (s == NULL) {
3538 DEBUG(10, ("unknown session_id %llu\n",
3539 (unsigned long long)uid));
3540 goto inval;
3543 tf_iov[0].iov_base = (void *)tf;
3544 tf_iov[0].iov_len = tf_len;
3545 tf_iov[1].iov_base = (void *)hdr;
3546 tf_iov[1].iov_len = enc_len;
3548 status = smb2_signing_decrypt_pdu(s->smb2->decryption_key,
3549 conn->smb2.server.cipher,
3550 tf_iov, 2);
3551 if (!NT_STATUS_IS_OK(status)) {
3552 TALLOC_FREE(iov);
3553 return status;
3556 verified_buflen = taken + enc_len;
3557 len = enc_len;
3561 * We need the header plus the body length field
3564 if (len < SMB2_HDR_BODY + 2) {
3565 DEBUG(10, ("%d bytes left, expected at least %d\n",
3566 (int)len, SMB2_HDR_BODY));
3567 goto inval;
3569 if (IVAL(hdr, 0) != SMB2_MAGIC) {
3570 DEBUG(10, ("Got non-SMB2 PDU: %x\n",
3571 IVAL(hdr, 0)));
3572 goto inval;
3574 if (SVAL(hdr, 4) != SMB2_HDR_BODY) {
3575 DEBUG(10, ("Got HDR len %d, expected %d\n",
3576 SVAL(hdr, 4), SMB2_HDR_BODY));
3577 goto inval;
3580 full_size = len;
3581 next_command_ofs = IVAL(hdr, SMB2_HDR_NEXT_COMMAND);
3582 body_size = SVAL(hdr, SMB2_HDR_BODY);
3584 if (next_command_ofs != 0) {
3585 if (next_command_ofs < (SMB2_HDR_BODY + 2)) {
3586 goto inval;
3588 if (next_command_ofs > full_size) {
3589 goto inval;
3591 full_size = next_command_ofs;
3593 if (body_size < 2) {
3594 goto inval;
3596 body_size &= 0xfffe;
3598 if (body_size > (full_size - SMB2_HDR_BODY)) {
3599 goto inval;
3602 iov_tmp = talloc_realloc(mem_ctx, iov, struct iovec,
3603 num_iov + 4);
3604 if (iov_tmp == NULL) {
3605 TALLOC_FREE(iov);
3606 return NT_STATUS_NO_MEMORY;
3608 iov = iov_tmp;
3609 cur = &iov[num_iov];
3610 num_iov += 4;
3612 cur[0].iov_base = tf;
3613 cur[0].iov_len = tf_len;
3614 cur[1].iov_base = hdr;
3615 cur[1].iov_len = SMB2_HDR_BODY;
3616 cur[2].iov_base = hdr + SMB2_HDR_BODY;
3617 cur[2].iov_len = body_size;
3618 cur[3].iov_base = hdr + SMB2_HDR_BODY + body_size;
3619 cur[3].iov_len = full_size - (SMB2_HDR_BODY + body_size);
3621 taken += full_size;
3624 *piov = iov;
3625 *pnum_iov = num_iov;
3626 return NT_STATUS_OK;
3628 inval:
3629 TALLOC_FREE(iov);
3630 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3633 static struct tevent_req *smb2cli_conn_find_pending(struct smbXcli_conn *conn,
3634 uint64_t mid)
3636 size_t num_pending = talloc_array_length(conn->pending);
3637 size_t i;
3639 for (i=0; i<num_pending; i++) {
3640 struct tevent_req *req = conn->pending[i];
3641 struct smbXcli_req_state *state =
3642 tevent_req_data(req,
3643 struct smbXcli_req_state);
3645 if (mid == BVAL(state->smb2.hdr, SMB2_HDR_MESSAGE_ID)) {
3646 return req;
3649 return NULL;
3652 static NTSTATUS smb2cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
3653 TALLOC_CTX *tmp_mem,
3654 uint8_t *inbuf)
3656 struct tevent_req *req;
3657 struct smbXcli_req_state *state = NULL;
3658 struct iovec *iov = NULL;
3659 int i, num_iov = 0;
3660 NTSTATUS status;
3661 bool defer = true;
3662 struct smbXcli_session *last_session = NULL;
3663 size_t inbuf_len = smb_len_tcp(inbuf);
3665 status = smb2cli_inbuf_parse_compound(conn,
3666 inbuf + NBT_HDR_SIZE,
3667 inbuf_len,
3668 tmp_mem,
3669 &iov, &num_iov);
3670 if (!NT_STATUS_IS_OK(status)) {
3671 return status;
3674 for (i=0; i<num_iov; i+=4) {
3675 uint8_t *inbuf_ref = NULL;
3676 struct iovec *cur = &iov[i];
3677 uint8_t *inhdr = (uint8_t *)cur[1].iov_base;
3678 uint16_t opcode = SVAL(inhdr, SMB2_HDR_OPCODE);
3679 uint32_t flags = IVAL(inhdr, SMB2_HDR_FLAGS);
3680 uint64_t mid = BVAL(inhdr, SMB2_HDR_MESSAGE_ID);
3681 uint16_t req_opcode;
3682 uint32_t req_flags;
3683 uint16_t credits = SVAL(inhdr, SMB2_HDR_CREDIT);
3684 uint32_t new_credits;
3685 struct smbXcli_session *session = NULL;
3686 const DATA_BLOB *signing_key = NULL;
3687 bool was_encrypted = false;
3689 new_credits = conn->smb2.cur_credits;
3690 new_credits += credits;
3691 if (new_credits > UINT16_MAX) {
3692 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3694 conn->smb2.cur_credits += credits;
3696 req = smb2cli_conn_find_pending(conn, mid);
3697 if (req == NULL) {
3698 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3700 state = tevent_req_data(req, struct smbXcli_req_state);
3702 req_opcode = SVAL(state->smb2.hdr, SMB2_HDR_OPCODE);
3703 if (opcode != req_opcode) {
3704 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3706 req_flags = SVAL(state->smb2.hdr, SMB2_HDR_FLAGS);
3708 if (!(flags & SMB2_HDR_FLAG_REDIRECT)) {
3709 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3712 status = NT_STATUS(IVAL(inhdr, SMB2_HDR_STATUS));
3713 if ((flags & SMB2_HDR_FLAG_ASYNC) &&
3714 NT_STATUS_EQUAL(status, STATUS_PENDING)) {
3715 uint64_t async_id = BVAL(inhdr, SMB2_HDR_ASYNC_ID);
3717 if (state->smb2.got_async) {
3718 /* We only expect one STATUS_PENDING response */
3719 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3721 state->smb2.got_async = true;
3724 * async interim responses are not signed,
3725 * even if the SMB2_HDR_FLAG_SIGNED flag
3726 * is set.
3728 state->smb2.cancel_flags = SMB2_HDR_FLAG_ASYNC;
3729 state->smb2.cancel_mid = 0;
3730 state->smb2.cancel_aid = async_id;
3732 if (state->smb2.notify_async) {
3733 tevent_req_defer_callback(req, state->ev);
3734 tevent_req_notify_callback(req);
3736 continue;
3739 session = state->session;
3740 if (req_flags & SMB2_HDR_FLAG_CHAINED) {
3741 session = last_session;
3743 last_session = session;
3745 if (state->smb2.should_sign) {
3746 if (!(flags & SMB2_HDR_FLAG_SIGNED)) {
3747 return NT_STATUS_ACCESS_DENIED;
3751 if (flags & SMB2_HDR_FLAG_SIGNED) {
3752 uint64_t uid = BVAL(inhdr, SMB2_HDR_SESSION_ID);
3754 if (session == NULL) {
3755 session = smbXcli_session_by_uid(state->conn,
3756 uid);
3759 if (session == NULL) {
3760 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3763 last_session = session;
3764 signing_key = &session->smb2_channel.signing_key;
3767 if (opcode == SMB2_OP_SESSSETUP) {
3769 * We prefer the channel signing key, if it is
3770 * already there.
3772 * If we do not have a channel signing key yet,
3773 * we try the main signing key, if it is not
3774 * the final response.
3776 if (signing_key && signing_key->length == 0 &&
3777 !NT_STATUS_IS_OK(status)) {
3778 signing_key = &session->smb2->signing_key;
3781 if (signing_key && signing_key->length == 0) {
3783 * If we do not have a session key to
3784 * verify the signature, we defer the
3785 * signing check to the caller.
3787 * The caller gets NT_STATUS_OK, it
3788 * has to call
3789 * smb2cli_session_set_session_key()
3790 * or
3791 * smb2cli_session_set_channel_key()
3792 * which will check the signature
3793 * with the channel signing key.
3795 signing_key = NULL;
3799 if (cur[0].iov_len == SMB2_TF_HDR_SIZE) {
3800 const uint8_t *tf = (const uint8_t *)cur[0].iov_base;
3801 uint64_t uid = BVAL(tf, SMB2_TF_SESSION_ID);
3804 * If the response was encrypted in a SMB2_TRANSFORM
3805 * pdu, which belongs to the correct session,
3806 * we do not need to do signing checks
3808 * It could be the session the response belongs to
3809 * or the session that was used to encrypt the
3810 * SMB2_TRANSFORM request.
3812 if ((session && session->smb2->session_id == uid) ||
3813 (state->smb2.encryption_session_id == uid)) {
3814 signing_key = NULL;
3815 was_encrypted = true;
3819 if (NT_STATUS_EQUAL(status, NT_STATUS_USER_SESSION_DELETED)) {
3821 * if the server returns NT_STATUS_USER_SESSION_DELETED
3822 * the response is not signed and we should
3823 * propagate the NT_STATUS_USER_SESSION_DELETED
3824 * status to the caller.
3826 state->smb2.signing_skipped = true;
3827 signing_key = NULL;
3830 if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER)) {
3832 * if the server returns
3833 * NT_STATUS_INVALID_PARAMETER
3834 * the response might not be encrypted.
3836 if (state->smb2.should_encrypt && !was_encrypted) {
3837 state->smb2.signing_skipped = true;
3838 signing_key = NULL;
3842 if (state->smb2.should_encrypt && !was_encrypted) {
3843 if (!state->smb2.signing_skipped) {
3844 return NT_STATUS_ACCESS_DENIED;
3848 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_NAME_DELETED) ||
3849 NT_STATUS_EQUAL(status, NT_STATUS_FILE_CLOSED) ||
3850 NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER)) {
3852 * if the server returns
3853 * NT_STATUS_NETWORK_NAME_DELETED
3854 * NT_STATUS_FILE_CLOSED
3855 * NT_STATUS_INVALID_PARAMETER
3856 * the response might not be signed
3857 * as this happens before the signing checks.
3859 * If server echos the signature (or all zeros)
3860 * we should report the status from the server
3861 * to the caller.
3863 if (signing_key) {
3864 int cmp;
3866 cmp = memcmp(inhdr+SMB2_HDR_SIGNATURE,
3867 state->smb2.hdr+SMB2_HDR_SIGNATURE,
3868 16);
3869 if (cmp == 0) {
3870 state->smb2.signing_skipped = true;
3871 signing_key = NULL;
3874 if (signing_key) {
3875 bool zero;
3876 zero = all_zero(inhdr+SMB2_HDR_SIGNATURE, 16);
3877 if (zero) {
3878 state->smb2.signing_skipped = true;
3879 signing_key = NULL;
3884 if (signing_key) {
3885 status = smb2_signing_check_pdu(*signing_key,
3886 state->conn->protocol,
3887 &cur[1], 3);
3888 if (!NT_STATUS_IS_OK(status)) {
3890 * If the signing check fails, we disconnect
3891 * the connection.
3893 return status;
3897 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED) &&
3898 (session != NULL) && session->disconnect_expired)
3901 * this should be a short term hack
3902 * until the upper layers have implemented
3903 * re-authentication.
3905 return status;
3908 smbXcli_req_unset_pending(req);
3911 * There might be more than one response
3912 * we need to defer the notifications
3914 if ((num_iov == 5) && (talloc_array_length(conn->pending) == 0)) {
3915 defer = false;
3918 if (defer) {
3919 tevent_req_defer_callback(req, state->ev);
3923 * Note: here we use talloc_reference() in a way
3924 * that does not expose it to the caller.
3926 inbuf_ref = talloc_reference(state->smb2.recv_iov, inbuf);
3927 if (tevent_req_nomem(inbuf_ref, req)) {
3928 continue;
3931 /* copy the related buffers */
3932 state->smb2.recv_iov[0] = cur[1];
3933 state->smb2.recv_iov[1] = cur[2];
3934 state->smb2.recv_iov[2] = cur[3];
3936 tevent_req_done(req);
3939 if (defer) {
3940 return NT_STATUS_RETRY;
3943 return NT_STATUS_OK;
3946 NTSTATUS smb2cli_req_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
3947 struct iovec **piov,
3948 const struct smb2cli_req_expected_response *expected,
3949 size_t num_expected)
3951 struct smbXcli_req_state *state =
3952 tevent_req_data(req,
3953 struct smbXcli_req_state);
3954 NTSTATUS status;
3955 size_t body_size;
3956 bool found_status = false;
3957 bool found_size = false;
3958 size_t i;
3960 if (piov != NULL) {
3961 *piov = NULL;
3964 if (tevent_req_is_in_progress(req) && state->smb2.got_async) {
3965 return STATUS_PENDING;
3968 if (tevent_req_is_nterror(req, &status)) {
3969 for (i=0; i < num_expected; i++) {
3970 if (NT_STATUS_EQUAL(status, expected[i].status)) {
3971 found_status = true;
3972 break;
3976 if (found_status) {
3977 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
3980 return status;
3983 if (num_expected == 0) {
3984 found_status = true;
3985 found_size = true;
3988 status = NT_STATUS(IVAL(state->smb2.recv_iov[0].iov_base, SMB2_HDR_STATUS));
3989 body_size = SVAL(state->smb2.recv_iov[1].iov_base, 0);
3991 for (i=0; i < num_expected; i++) {
3992 if (!NT_STATUS_EQUAL(status, expected[i].status)) {
3993 continue;
3996 found_status = true;
3997 if (expected[i].body_size == 0) {
3998 found_size = true;
3999 break;
4002 if (expected[i].body_size == body_size) {
4003 found_size = true;
4004 break;
4008 if (!found_status) {
4009 return status;
4012 if (state->smb2.signing_skipped) {
4013 if (num_expected > 0) {
4014 return NT_STATUS_ACCESS_DENIED;
4016 if (!NT_STATUS_IS_ERR(status)) {
4017 return NT_STATUS_ACCESS_DENIED;
4021 if (!found_size) {
4022 return NT_STATUS_INVALID_NETWORK_RESPONSE;
4025 if (piov != NULL) {
4026 *piov = talloc_move(mem_ctx, &state->smb2.recv_iov);
4029 return status;
4032 NTSTATUS smb2cli_req_get_sent_iov(struct tevent_req *req,
4033 struct iovec *sent_iov)
4035 struct smbXcli_req_state *state =
4036 tevent_req_data(req,
4037 struct smbXcli_req_state);
4039 if (tevent_req_is_in_progress(req)) {
4040 return STATUS_PENDING;
4043 sent_iov[0].iov_base = state->smb2.hdr;
4044 sent_iov[0].iov_len = sizeof(state->smb2.hdr);
4046 sent_iov[1].iov_base = discard_const(state->smb2.fixed);
4047 sent_iov[1].iov_len = state->smb2.fixed_len;
4049 if (state->smb2.dyn != NULL) {
4050 sent_iov[2].iov_base = discard_const(state->smb2.dyn);
4051 sent_iov[2].iov_len = state->smb2.dyn_len;
4052 } else {
4053 sent_iov[2].iov_base = NULL;
4054 sent_iov[2].iov_len = 0;
4057 return NT_STATUS_OK;
4060 static const struct {
4061 enum protocol_types proto;
4062 const char *smb1_name;
4063 } smb1cli_prots[] = {
4064 {PROTOCOL_CORE, "PC NETWORK PROGRAM 1.0"},
4065 {PROTOCOL_COREPLUS, "MICROSOFT NETWORKS 1.03"},
4066 {PROTOCOL_LANMAN1, "MICROSOFT NETWORKS 3.0"},
4067 {PROTOCOL_LANMAN1, "LANMAN1.0"},
4068 {PROTOCOL_LANMAN2, "LM1.2X002"},
4069 {PROTOCOL_LANMAN2, "DOS LANMAN2.1"},
4070 {PROTOCOL_LANMAN2, "LANMAN2.1"},
4071 {PROTOCOL_LANMAN2, "Samba"},
4072 {PROTOCOL_NT1, "NT LANMAN 1.0"},
4073 {PROTOCOL_NT1, "NT LM 0.12"},
4074 {PROTOCOL_SMB2_02, "SMB 2.002"},
4075 {PROTOCOL_SMB2_10, "SMB 2.???"},
4078 static const struct {
4079 enum protocol_types proto;
4080 uint16_t smb2_dialect;
4081 } smb2cli_prots[] = {
4082 {PROTOCOL_SMB2_02, SMB2_DIALECT_REVISION_202},
4083 {PROTOCOL_SMB2_10, SMB2_DIALECT_REVISION_210},
4084 {PROTOCOL_SMB2_22, SMB2_DIALECT_REVISION_222},
4085 {PROTOCOL_SMB2_24, SMB2_DIALECT_REVISION_224},
4086 {PROTOCOL_SMB3_00, SMB3_DIALECT_REVISION_300},
4087 {PROTOCOL_SMB3_02, SMB3_DIALECT_REVISION_302},
4088 {PROTOCOL_SMB3_10, SMB3_DIALECT_REVISION_310},
4089 {PROTOCOL_SMB3_11, SMB3_DIALECT_REVISION_311},
4092 struct smbXcli_negprot_state {
4093 struct smbXcli_conn *conn;
4094 struct tevent_context *ev;
4095 uint32_t timeout_msec;
4097 struct {
4098 uint8_t fixed[36];
4099 } smb2;
4102 static void smbXcli_negprot_invalid_done(struct tevent_req *subreq);
4103 static struct tevent_req *smbXcli_negprot_smb1_subreq(struct smbXcli_negprot_state *state);
4104 static void smbXcli_negprot_smb1_done(struct tevent_req *subreq);
4105 static struct tevent_req *smbXcli_negprot_smb2_subreq(struct smbXcli_negprot_state *state);
4106 static void smbXcli_negprot_smb2_done(struct tevent_req *subreq);
4107 static NTSTATUS smbXcli_negprot_dispatch_incoming(struct smbXcli_conn *conn,
4108 TALLOC_CTX *frame,
4109 uint8_t *inbuf);
4111 struct tevent_req *smbXcli_negprot_send(TALLOC_CTX *mem_ctx,
4112 struct tevent_context *ev,
4113 struct smbXcli_conn *conn,
4114 uint32_t timeout_msec,
4115 enum protocol_types min_protocol,
4116 enum protocol_types max_protocol,
4117 uint16_t max_credits)
4119 struct tevent_req *req, *subreq;
4120 struct smbXcli_negprot_state *state;
4122 req = tevent_req_create(mem_ctx, &state,
4123 struct smbXcli_negprot_state);
4124 if (req == NULL) {
4125 return NULL;
4127 state->conn = conn;
4128 state->ev = ev;
4129 state->timeout_msec = timeout_msec;
4131 if (min_protocol == PROTOCOL_NONE) {
4132 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER_MIX);
4133 return tevent_req_post(req, ev);
4136 if (max_protocol == PROTOCOL_NONE) {
4137 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER_MIX);
4138 return tevent_req_post(req, ev);
4141 if (min_protocol > max_protocol) {
4142 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER_MIX);
4143 return tevent_req_post(req, ev);
4146 conn->min_protocol = min_protocol;
4147 conn->max_protocol = max_protocol;
4148 conn->protocol = PROTOCOL_NONE;
4150 if (max_protocol >= PROTOCOL_SMB2_02) {
4151 conn->smb2.max_credits = max_credits;
4154 if ((min_protocol < PROTOCOL_SMB2_02) &&
4155 (max_protocol < PROTOCOL_SMB2_02)) {
4157 * SMB1 only...
4159 conn->dispatch_incoming = smb1cli_conn_dispatch_incoming;
4161 subreq = smbXcli_negprot_smb1_subreq(state);
4162 if (tevent_req_nomem(subreq, req)) {
4163 return tevent_req_post(req, ev);
4165 tevent_req_set_callback(subreq, smbXcli_negprot_smb1_done, req);
4166 return req;
4169 if ((min_protocol >= PROTOCOL_SMB2_02) &&
4170 (max_protocol >= PROTOCOL_SMB2_02)) {
4172 * SMB2 only...
4174 conn->dispatch_incoming = smb2cli_conn_dispatch_incoming;
4176 subreq = smbXcli_negprot_smb2_subreq(state);
4177 if (tevent_req_nomem(subreq, req)) {
4178 return tevent_req_post(req, ev);
4180 tevent_req_set_callback(subreq, smbXcli_negprot_smb2_done, req);
4181 return req;
4185 * We send an SMB1 negprot with the SMB2 dialects
4186 * and expect a SMB1 or a SMB2 response.
4188 * smbXcli_negprot_dispatch_incoming() will fix the
4189 * callback to match protocol of the response.
4191 conn->dispatch_incoming = smbXcli_negprot_dispatch_incoming;
4193 subreq = smbXcli_negprot_smb1_subreq(state);
4194 if (tevent_req_nomem(subreq, req)) {
4195 return tevent_req_post(req, ev);
4197 tevent_req_set_callback(subreq, smbXcli_negprot_invalid_done, req);
4198 return req;
4201 static void smbXcli_negprot_invalid_done(struct tevent_req *subreq)
4203 struct tevent_req *req =
4204 tevent_req_callback_data(subreq,
4205 struct tevent_req);
4206 NTSTATUS status;
4209 * we just want the low level error
4211 status = tevent_req_simple_recv_ntstatus(subreq);
4212 TALLOC_FREE(subreq);
4213 if (tevent_req_nterror(req, status)) {
4214 return;
4217 /* this should never happen */
4218 tevent_req_nterror(req, NT_STATUS_INTERNAL_ERROR);
4221 static struct tevent_req *smbXcli_negprot_smb1_subreq(struct smbXcli_negprot_state *state)
4223 size_t i;
4224 DATA_BLOB bytes = data_blob_null;
4225 uint8_t flags;
4226 uint16_t flags2;
4228 /* setup the protocol strings */
4229 for (i=0; i < ARRAY_SIZE(smb1cli_prots); i++) {
4230 uint8_t c = 2;
4231 bool ok;
4233 if (smb1cli_prots[i].proto < state->conn->min_protocol) {
4234 continue;
4237 if (smb1cli_prots[i].proto > state->conn->max_protocol) {
4238 continue;
4241 ok = data_blob_append(state, &bytes, &c, sizeof(c));
4242 if (!ok) {
4243 return NULL;
4247 * We now it is already ascii and
4248 * we want NULL termination.
4250 ok = data_blob_append(state, &bytes,
4251 smb1cli_prots[i].smb1_name,
4252 strlen(smb1cli_prots[i].smb1_name)+1);
4253 if (!ok) {
4254 return NULL;
4258 smb1cli_req_flags(state->conn->max_protocol,
4259 state->conn->smb1.client.capabilities,
4260 SMBnegprot,
4261 0, 0, &flags,
4262 0, 0, &flags2);
4264 return smb1cli_req_send(state, state->ev, state->conn,
4265 SMBnegprot,
4266 flags, ~flags,
4267 flags2, ~flags2,
4268 state->timeout_msec,
4269 0xFFFE, 0, NULL, /* pid, tid, session */
4270 0, NULL, /* wct, vwv */
4271 bytes.length, bytes.data);
4274 static void smbXcli_negprot_smb1_done(struct tevent_req *subreq)
4276 struct tevent_req *req =
4277 tevent_req_callback_data(subreq,
4278 struct tevent_req);
4279 struct smbXcli_negprot_state *state =
4280 tevent_req_data(req,
4281 struct smbXcli_negprot_state);
4282 struct smbXcli_conn *conn = state->conn;
4283 struct iovec *recv_iov = NULL;
4284 uint8_t *inhdr;
4285 uint8_t wct;
4286 uint16_t *vwv;
4287 uint32_t num_bytes;
4288 uint8_t *bytes;
4289 NTSTATUS status;
4290 uint16_t protnum;
4291 size_t i;
4292 size_t num_prots = 0;
4293 uint8_t flags;
4294 uint32_t client_capabilities = conn->smb1.client.capabilities;
4295 uint32_t both_capabilities;
4296 uint32_t server_capabilities = 0;
4297 uint32_t capabilities;
4298 uint32_t client_max_xmit = conn->smb1.client.max_xmit;
4299 uint32_t server_max_xmit = 0;
4300 uint32_t max_xmit;
4301 uint32_t server_max_mux = 0;
4302 uint16_t server_security_mode = 0;
4303 uint32_t server_session_key = 0;
4304 bool server_readbraw = false;
4305 bool server_writebraw = false;
4306 bool server_lockread = false;
4307 bool server_writeunlock = false;
4308 struct GUID server_guid = GUID_zero();
4309 DATA_BLOB server_gss_blob = data_blob_null;
4310 uint8_t server_challenge[8];
4311 char *server_workgroup = NULL;
4312 char *server_name = NULL;
4313 int server_time_zone = 0;
4314 NTTIME server_system_time = 0;
4315 static const struct smb1cli_req_expected_response expected[] = {
4317 .status = NT_STATUS_OK,
4318 .wct = 0x11, /* NT1 */
4321 .status = NT_STATUS_OK,
4322 .wct = 0x0D, /* LM */
4325 .status = NT_STATUS_OK,
4326 .wct = 0x01, /* CORE */
4330 ZERO_STRUCT(server_challenge);
4332 status = smb1cli_req_recv(subreq, state,
4333 &recv_iov,
4334 &inhdr,
4335 &wct,
4336 &vwv,
4337 NULL, /* pvwv_offset */
4338 &num_bytes,
4339 &bytes,
4340 NULL, /* pbytes_offset */
4341 NULL, /* pinbuf */
4342 expected, ARRAY_SIZE(expected));
4343 TALLOC_FREE(subreq);
4344 if (tevent_req_nterror(req, status)) {
4345 return;
4348 flags = CVAL(inhdr, HDR_FLG);
4350 protnum = SVAL(vwv, 0);
4352 for (i=0; i < ARRAY_SIZE(smb1cli_prots); i++) {
4353 if (smb1cli_prots[i].proto < state->conn->min_protocol) {
4354 continue;
4357 if (smb1cli_prots[i].proto > state->conn->max_protocol) {
4358 continue;
4361 if (protnum != num_prots) {
4362 num_prots++;
4363 continue;
4366 conn->protocol = smb1cli_prots[i].proto;
4367 break;
4370 if (conn->protocol == PROTOCOL_NONE) {
4371 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4372 return;
4375 if ((conn->protocol < PROTOCOL_NT1) && conn->mandatory_signing) {
4376 DEBUG(0,("smbXcli_negprot: SMB signing is mandatory "
4377 "and the selected protocol level doesn't support it.\n"));
4378 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
4379 return;
4382 if (flags & FLAG_SUPPORT_LOCKREAD) {
4383 server_lockread = true;
4384 server_writeunlock = true;
4387 if (conn->protocol >= PROTOCOL_NT1) {
4388 const char *client_signing = NULL;
4389 bool server_mandatory = false;
4390 bool server_allowed = false;
4391 const char *server_signing = NULL;
4392 bool ok;
4393 uint8_t key_len;
4395 if (wct != 0x11) {
4396 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4397 return;
4400 /* NT protocol */
4401 server_security_mode = CVAL(vwv + 1, 0);
4402 server_max_mux = SVAL(vwv + 1, 1);
4403 server_max_xmit = IVAL(vwv + 3, 1);
4404 server_session_key = IVAL(vwv + 7, 1);
4405 server_time_zone = SVALS(vwv + 15, 1);
4406 server_time_zone *= 60;
4407 /* this time arrives in real GMT */
4408 server_system_time = BVAL(vwv + 11, 1);
4409 server_capabilities = IVAL(vwv + 9, 1);
4411 key_len = CVAL(vwv + 16, 1);
4413 if (server_capabilities & CAP_RAW_MODE) {
4414 server_readbraw = true;
4415 server_writebraw = true;
4417 if (server_capabilities & CAP_LOCK_AND_READ) {
4418 server_lockread = true;
4421 if (server_capabilities & CAP_EXTENDED_SECURITY) {
4422 DATA_BLOB blob1, blob2;
4424 if (num_bytes < 16) {
4425 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4426 return;
4429 blob1 = data_blob_const(bytes, 16);
4430 status = GUID_from_data_blob(&blob1, &server_guid);
4431 if (tevent_req_nterror(req, status)) {
4432 return;
4435 blob1 = data_blob_const(bytes+16, num_bytes-16);
4436 blob2 = data_blob_dup_talloc(state, blob1);
4437 if (blob1.length > 0 &&
4438 tevent_req_nomem(blob2.data, req)) {
4439 return;
4441 server_gss_blob = blob2;
4442 } else {
4443 DATA_BLOB blob1, blob2;
4445 if (num_bytes < key_len) {
4446 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4447 return;
4450 if (key_len != 0 && key_len != 8) {
4451 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4452 return;
4455 if (key_len == 8) {
4456 memcpy(server_challenge, bytes, 8);
4459 blob1 = data_blob_const(bytes+key_len, num_bytes-key_len);
4460 blob2 = data_blob_const(bytes+key_len, num_bytes-key_len);
4461 if (blob1.length > 0) {
4462 size_t len;
4464 len = utf16_len_n(blob1.data,
4465 blob1.length);
4466 blob1.length = len;
4468 ok = convert_string_talloc(state,
4469 CH_UTF16LE,
4470 CH_UNIX,
4471 blob1.data,
4472 blob1.length,
4473 &server_workgroup,
4474 &len);
4475 if (!ok) {
4476 status = map_nt_error_from_unix_common(errno);
4477 tevent_req_nterror(req, status);
4478 return;
4482 blob2.data += blob1.length;
4483 blob2.length -= blob1.length;
4484 if (blob2.length > 0) {
4485 size_t len;
4487 len = utf16_len_n(blob1.data,
4488 blob1.length);
4489 blob1.length = len;
4491 ok = convert_string_talloc(state,
4492 CH_UTF16LE,
4493 CH_UNIX,
4494 blob2.data,
4495 blob2.length,
4496 &server_name,
4497 &len);
4498 if (!ok) {
4499 status = map_nt_error_from_unix_common(errno);
4500 tevent_req_nterror(req, status);
4501 return;
4506 client_signing = "disabled";
4507 if (conn->allow_signing) {
4508 client_signing = "allowed";
4510 if (conn->mandatory_signing) {
4511 client_signing = "required";
4514 server_signing = "not supported";
4515 if (server_security_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED) {
4516 server_signing = "supported";
4517 server_allowed = true;
4518 } else if (conn->mandatory_signing) {
4520 * We have mandatory signing as client
4521 * lets assume the server will look at our
4522 * FLAGS2_SMB_SECURITY_SIGNATURES_REQUIRED
4523 * flag in the session setup
4525 server_signing = "not announced";
4526 server_allowed = true;
4528 if (server_security_mode & NEGOTIATE_SECURITY_SIGNATURES_REQUIRED) {
4529 server_signing = "required";
4530 server_mandatory = true;
4533 ok = smb_signing_set_negotiated(conn->smb1.signing,
4534 server_allowed,
4535 server_mandatory);
4536 if (!ok) {
4537 DEBUG(1,("cli_negprot: SMB signing is required, "
4538 "but client[%s] and server[%s] mismatch\n",
4539 client_signing, server_signing));
4540 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
4541 return;
4544 } else if (conn->protocol >= PROTOCOL_LANMAN1) {
4545 DATA_BLOB blob1;
4546 uint8_t key_len;
4547 time_t t;
4549 if (wct != 0x0D) {
4550 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4551 return;
4554 server_security_mode = SVAL(vwv + 1, 0);
4555 server_max_xmit = SVAL(vwv + 2, 0);
4556 server_max_mux = SVAL(vwv + 3, 0);
4557 server_readbraw = ((SVAL(vwv + 5, 0) & 0x1) != 0);
4558 server_writebraw = ((SVAL(vwv + 5, 0) & 0x2) != 0);
4559 server_session_key = IVAL(vwv + 6, 0);
4560 server_time_zone = SVALS(vwv + 10, 0);
4561 server_time_zone *= 60;
4562 /* this time is converted to GMT by make_unix_date */
4563 t = pull_dos_date((const uint8_t *)(vwv + 8), server_time_zone);
4564 unix_to_nt_time(&server_system_time, t);
4565 key_len = SVAL(vwv + 11, 0);
4567 if (num_bytes < key_len) {
4568 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4569 return;
4572 if (key_len != 0 && key_len != 8) {
4573 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4574 return;
4577 if (key_len == 8) {
4578 memcpy(server_challenge, bytes, 8);
4581 blob1 = data_blob_const(bytes+key_len, num_bytes-key_len);
4582 if (blob1.length > 0) {
4583 size_t len;
4584 bool ok;
4586 len = utf16_len_n(blob1.data,
4587 blob1.length);
4588 blob1.length = len;
4590 ok = convert_string_talloc(state,
4591 CH_DOS,
4592 CH_UNIX,
4593 blob1.data,
4594 blob1.length,
4595 &server_workgroup,
4596 &len);
4597 if (!ok) {
4598 status = map_nt_error_from_unix_common(errno);
4599 tevent_req_nterror(req, status);
4600 return;
4604 } else {
4605 /* the old core protocol */
4606 server_time_zone = get_time_zone(time(NULL));
4607 server_max_xmit = 1024;
4608 server_max_mux = 1;
4611 if (server_max_xmit < 1024) {
4612 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4613 return;
4616 if (server_max_mux < 1) {
4617 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4618 return;
4622 * Now calculate the negotiated capabilities
4623 * based on the mask for:
4624 * - client only flags
4625 * - flags used in both directions
4626 * - server only flags
4628 both_capabilities = client_capabilities & server_capabilities;
4629 capabilities = client_capabilities & SMB_CAP_CLIENT_MASK;
4630 capabilities |= both_capabilities & SMB_CAP_BOTH_MASK;
4631 capabilities |= server_capabilities & SMB_CAP_SERVER_MASK;
4633 max_xmit = MIN(client_max_xmit, server_max_xmit);
4635 conn->smb1.server.capabilities = server_capabilities;
4636 conn->smb1.capabilities = capabilities;
4638 conn->smb1.server.max_xmit = server_max_xmit;
4639 conn->smb1.max_xmit = max_xmit;
4641 conn->smb1.server.max_mux = server_max_mux;
4643 conn->smb1.server.security_mode = server_security_mode;
4645 conn->smb1.server.readbraw = server_readbraw;
4646 conn->smb1.server.writebraw = server_writebraw;
4647 conn->smb1.server.lockread = server_lockread;
4648 conn->smb1.server.writeunlock = server_writeunlock;
4650 conn->smb1.server.session_key = server_session_key;
4652 talloc_steal(conn, server_gss_blob.data);
4653 conn->smb1.server.gss_blob = server_gss_blob;
4654 conn->smb1.server.guid = server_guid;
4655 memcpy(conn->smb1.server.challenge, server_challenge, 8);
4656 conn->smb1.server.workgroup = talloc_move(conn, &server_workgroup);
4657 conn->smb1.server.name = talloc_move(conn, &server_name);
4659 conn->smb1.server.time_zone = server_time_zone;
4660 conn->smb1.server.system_time = server_system_time;
4662 tevent_req_done(req);
4665 static size_t smbXcli_padding_helper(uint32_t offset, size_t n)
4667 if ((offset & (n-1)) == 0) return 0;
4668 return n - (offset & (n-1));
4671 static struct tevent_req *smbXcli_negprot_smb2_subreq(struct smbXcli_negprot_state *state)
4673 size_t i;
4674 uint8_t *buf;
4675 uint16_t dialect_count = 0;
4676 DATA_BLOB dyn = data_blob_null;
4678 for (i=0; i < ARRAY_SIZE(smb2cli_prots); i++) {
4679 bool ok;
4680 uint8_t val[2];
4682 if (smb2cli_prots[i].proto < state->conn->min_protocol) {
4683 continue;
4686 if (smb2cli_prots[i].proto > state->conn->max_protocol) {
4687 continue;
4690 SSVAL(val, 0, smb2cli_prots[i].smb2_dialect);
4692 ok = data_blob_append(state, &dyn, val, sizeof(val));
4693 if (!ok) {
4694 return NULL;
4697 dialect_count++;
4700 buf = state->smb2.fixed;
4701 SSVAL(buf, 0, 36);
4702 SSVAL(buf, 2, dialect_count);
4703 SSVAL(buf, 4, state->conn->smb2.client.security_mode);
4704 SSVAL(buf, 6, 0); /* Reserved */
4705 if (state->conn->max_protocol >= PROTOCOL_SMB2_22) {
4706 SIVAL(buf, 8, state->conn->smb2.client.capabilities);
4707 } else {
4708 SIVAL(buf, 8, 0); /* Capabilities */
4710 if (state->conn->max_protocol >= PROTOCOL_SMB2_10) {
4711 NTSTATUS status;
4712 DATA_BLOB blob;
4714 status = GUID_to_ndr_blob(&state->conn->smb2.client.guid,
4715 state, &blob);
4716 if (!NT_STATUS_IS_OK(status)) {
4717 return NULL;
4719 memcpy(buf+12, blob.data, 16); /* ClientGuid */
4720 } else {
4721 memset(buf+12, 0, 16); /* ClientGuid */
4724 if (state->conn->max_protocol >= PROTOCOL_SMB3_10) {
4725 NTSTATUS status;
4726 struct smb2_negotiate_contexts c = { .num_contexts = 0, };
4727 uint32_t offset;
4728 DATA_BLOB b;
4729 uint8_t p[38];
4730 const uint8_t zeros[8] = {0, };
4731 size_t pad;
4732 bool ok;
4734 SSVAL(p, 0, 1); /* HashAlgorithmCount */
4735 SSVAL(p, 2, 32); /* SaltLength */
4736 SSVAL(p, 4, SMB2_PREAUTH_INTEGRITY_SHA512);
4737 generate_random_buffer(p + 6, 32);
4739 b = data_blob_const(p, 38);
4740 status = smb2_negotiate_context_add(state, &c,
4741 SMB2_PREAUTH_INTEGRITY_CAPABILITIES, b);
4742 if (!NT_STATUS_IS_OK(status)) {
4743 return NULL;
4746 SSVAL(p, 0, 2); /* ChiperCount */
4748 * For now we preferr CCM because our implementation
4749 * is faster than GCM, see bug #11451.
4751 SSVAL(p, 2, SMB2_ENCRYPTION_AES128_CCM);
4752 SSVAL(p, 4, SMB2_ENCRYPTION_AES128_GCM);
4754 b = data_blob_const(p, 6);
4755 status = smb2_negotiate_context_add(state, &c,
4756 SMB2_ENCRYPTION_CAPABILITIES, b);
4757 if (!NT_STATUS_IS_OK(status)) {
4758 return NULL;
4761 status = smb2_negotiate_context_push(state, &b, c);
4762 if (!NT_STATUS_IS_OK(status)) {
4763 return NULL;
4766 offset = SMB2_HDR_BODY + sizeof(state->smb2.fixed) + dyn.length;
4767 pad = smbXcli_padding_helper(offset, 8);
4769 ok = data_blob_append(state, &dyn, zeros, pad);
4770 if (!ok) {
4771 return NULL;
4773 offset += pad;
4775 ok = data_blob_append(state, &dyn, b.data, b.length);
4776 if (!ok) {
4777 return NULL;
4780 SIVAL(buf, 28, offset); /* NegotiateContextOffset */
4781 SSVAL(buf, 32, c.num_contexts); /* NegotiateContextCount */
4782 SSVAL(buf, 34, 0); /* Reserved */
4783 } else {
4784 SBVAL(buf, 28, 0); /* Reserved/ClientStartTime */
4787 return smb2cli_req_send(state, state->ev,
4788 state->conn, SMB2_OP_NEGPROT,
4789 0, 0, /* flags */
4790 state->timeout_msec,
4791 NULL, NULL, /* tcon, session */
4792 state->smb2.fixed, sizeof(state->smb2.fixed),
4793 dyn.data, dyn.length,
4794 UINT16_MAX); /* max_dyn_len */
4797 static void smbXcli_negprot_smb2_done(struct tevent_req *subreq)
4799 struct tevent_req *req =
4800 tevent_req_callback_data(subreq,
4801 struct tevent_req);
4802 struct smbXcli_negprot_state *state =
4803 tevent_req_data(req,
4804 struct smbXcli_negprot_state);
4805 struct smbXcli_conn *conn = state->conn;
4806 size_t security_offset, security_length;
4807 DATA_BLOB blob;
4808 NTSTATUS status;
4809 struct iovec *iov;
4810 uint8_t *body;
4811 size_t i;
4812 uint16_t dialect_revision;
4813 struct smb2_negotiate_contexts c = { .num_contexts = 0, };
4814 uint32_t negotiate_context_offset = 0;
4815 uint16_t negotiate_context_count = 0;
4816 DATA_BLOB negotiate_context_blob = data_blob_null;
4817 size_t avail;
4818 size_t ctx_ofs;
4819 size_t needed;
4820 struct smb2_negotiate_context *preauth = NULL;
4821 uint16_t hash_count;
4822 uint16_t salt_length;
4823 uint16_t hash_selected;
4824 struct hc_sha512state sctx;
4825 struct smb2_negotiate_context *cipher = NULL;
4826 struct iovec sent_iov[3];
4827 static const struct smb2cli_req_expected_response expected[] = {
4829 .status = NT_STATUS_OK,
4830 .body_size = 0x41
4834 status = smb2cli_req_recv(subreq, state, &iov,
4835 expected, ARRAY_SIZE(expected));
4836 if (tevent_req_nterror(req, status)) {
4837 return;
4840 body = (uint8_t *)iov[1].iov_base;
4842 dialect_revision = SVAL(body, 4);
4844 for (i=0; i < ARRAY_SIZE(smb2cli_prots); i++) {
4845 if (smb2cli_prots[i].proto < state->conn->min_protocol) {
4846 continue;
4849 if (smb2cli_prots[i].proto > state->conn->max_protocol) {
4850 continue;
4853 if (smb2cli_prots[i].smb2_dialect != dialect_revision) {
4854 continue;
4857 conn->protocol = smb2cli_prots[i].proto;
4858 break;
4861 if (conn->protocol == PROTOCOL_NONE) {
4862 TALLOC_FREE(subreq);
4864 if (state->conn->min_protocol >= PROTOCOL_SMB2_02) {
4865 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4866 return;
4869 if (dialect_revision != SMB2_DIALECT_REVISION_2FF) {
4870 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4871 return;
4874 /* make sure we do not loop forever */
4875 state->conn->min_protocol = PROTOCOL_SMB2_02;
4878 * send a SMB2 negprot, in order to negotiate
4879 * the SMB2 dialect.
4881 subreq = smbXcli_negprot_smb2_subreq(state);
4882 if (tevent_req_nomem(subreq, req)) {
4883 return;
4885 tevent_req_set_callback(subreq, smbXcli_negprot_smb2_done, req);
4886 return;
4889 conn->smb2.server.security_mode = SVAL(body, 2);
4890 if (conn->protocol >= PROTOCOL_SMB3_10) {
4891 negotiate_context_count = SVAL(body, 6);
4894 blob = data_blob_const(body + 8, 16);
4895 status = GUID_from_data_blob(&blob, &conn->smb2.server.guid);
4896 if (tevent_req_nterror(req, status)) {
4897 return;
4900 conn->smb2.server.capabilities = IVAL(body, 24);
4901 conn->smb2.server.max_trans_size= IVAL(body, 28);
4902 conn->smb2.server.max_read_size = IVAL(body, 32);
4903 conn->smb2.server.max_write_size= IVAL(body, 36);
4904 conn->smb2.server.system_time = BVAL(body, 40);
4905 conn->smb2.server.start_time = BVAL(body, 48);
4907 security_offset = SVAL(body, 56);
4908 security_length = SVAL(body, 58);
4910 if (security_offset != SMB2_HDR_BODY + iov[1].iov_len) {
4911 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4912 return;
4915 if (security_length > iov[2].iov_len) {
4916 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4917 return;
4920 conn->smb2.server.gss_blob = data_blob_talloc(conn,
4921 iov[2].iov_base,
4922 security_length);
4923 if (tevent_req_nomem(conn->smb2.server.gss_blob.data, req)) {
4924 return;
4927 if (conn->protocol < PROTOCOL_SMB3_10) {
4928 TALLOC_FREE(subreq);
4930 if (conn->smb2.server.capabilities & SMB2_CAP_ENCRYPTION) {
4931 conn->smb2.server.cipher = SMB2_ENCRYPTION_AES128_CCM;
4933 tevent_req_done(req);
4934 return;
4938 * Here we are now at SMB3_11, so encryption should be
4939 * negotiated via context, not capabilities.
4942 if (conn->smb2.server.capabilities & SMB2_CAP_ENCRYPTION) {
4944 * Server set SMB2_CAP_ENCRYPTION capability,
4945 * but *SHOULD* not, not *MUST* not. Just mask it off.
4946 * NetApp seems to do this:
4947 * BUG: https://bugzilla.samba.org/show_bug.cgi?id=13009
4949 conn->smb2.server.capabilities &= ~SMB2_CAP_ENCRYPTION;
4952 negotiate_context_offset = IVAL(body, 60);
4953 if (negotiate_context_offset < security_offset) {
4954 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4955 return;
4958 ctx_ofs = negotiate_context_offset - security_offset;
4959 if (ctx_ofs > iov[2].iov_len) {
4960 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4961 return;
4963 avail = iov[2].iov_len - security_length;
4964 needed = iov[2].iov_len - ctx_ofs;
4965 if (needed > avail) {
4966 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4967 return;
4970 negotiate_context_blob.data = (uint8_t *)iov[2].iov_base;
4971 negotiate_context_blob.length = iov[2].iov_len;
4973 negotiate_context_blob.data += ctx_ofs;
4974 negotiate_context_blob.length -= ctx_ofs;
4976 status = smb2_negotiate_context_parse(state, negotiate_context_blob, &c);
4977 if (tevent_req_nterror(req, status)) {
4978 return;
4981 if (negotiate_context_count != c.num_contexts) {
4982 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4983 return;
4986 preauth = smb2_negotiate_context_find(&c,
4987 SMB2_PREAUTH_INTEGRITY_CAPABILITIES);
4988 if (preauth == NULL) {
4989 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4990 return;
4993 if (preauth->data.length < 6) {
4994 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4995 return;
4998 hash_count = SVAL(preauth->data.data, 0);
4999 salt_length = SVAL(preauth->data.data, 2);
5000 hash_selected = SVAL(preauth->data.data, 4);
5002 if (hash_count != 1) {
5003 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
5004 return;
5007 if (preauth->data.length != (6 + salt_length)) {
5008 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
5009 return;
5012 if (hash_selected != SMB2_PREAUTH_INTEGRITY_SHA512) {
5013 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
5014 return;
5017 cipher = smb2_negotiate_context_find(&c, SMB2_ENCRYPTION_CAPABILITIES);
5018 if (cipher != NULL) {
5019 uint16_t cipher_count;
5021 if (cipher->data.length < 2) {
5022 tevent_req_nterror(req,
5023 NT_STATUS_INVALID_NETWORK_RESPONSE);
5024 return;
5027 cipher_count = SVAL(cipher->data.data, 0);
5029 if (cipher_count > 1) {
5030 tevent_req_nterror(req,
5031 NT_STATUS_INVALID_NETWORK_RESPONSE);
5032 return;
5035 if (cipher->data.length != (2 + 2 * cipher_count)) {
5036 tevent_req_nterror(req,
5037 NT_STATUS_INVALID_NETWORK_RESPONSE);
5038 return;
5041 if (cipher_count == 1) {
5042 uint16_t cipher_selected;
5044 cipher_selected = SVAL(cipher->data.data, 2);
5046 switch (cipher_selected) {
5047 case SMB2_ENCRYPTION_AES128_GCM:
5048 case SMB2_ENCRYPTION_AES128_CCM:
5049 conn->smb2.server.cipher = cipher_selected;
5050 break;
5055 /* First we hash the request */
5056 smb2cli_req_get_sent_iov(subreq, sent_iov);
5057 samba_SHA512_Init(&sctx);
5058 samba_SHA512_Update(&sctx, conn->smb2.preauth_sha512,
5059 sizeof(conn->smb2.preauth_sha512));
5060 for (i = 0; i < 3; i++) {
5061 samba_SHA512_Update(&sctx, sent_iov[i].iov_base, sent_iov[i].iov_len);
5063 samba_SHA512_Final(conn->smb2.preauth_sha512, &sctx);
5064 TALLOC_FREE(subreq);
5066 /* And now we hash the response */
5067 samba_SHA512_Init(&sctx);
5068 samba_SHA512_Update(&sctx, conn->smb2.preauth_sha512,
5069 sizeof(conn->smb2.preauth_sha512));
5070 for (i = 0; i < 3; i++) {
5071 samba_SHA512_Update(&sctx, iov[i].iov_base, iov[i].iov_len);
5073 samba_SHA512_Final(conn->smb2.preauth_sha512, &sctx);
5075 tevent_req_done(req);
5078 static NTSTATUS smbXcli_negprot_dispatch_incoming(struct smbXcli_conn *conn,
5079 TALLOC_CTX *tmp_mem,
5080 uint8_t *inbuf)
5082 size_t num_pending = talloc_array_length(conn->pending);
5083 struct tevent_req *subreq;
5084 struct smbXcli_req_state *substate;
5085 struct tevent_req *req;
5086 uint32_t protocol_magic;
5087 size_t inbuf_len = smb_len_nbt(inbuf);
5089 if (num_pending != 1) {
5090 return NT_STATUS_INTERNAL_ERROR;
5093 if (inbuf_len < 4) {
5094 return NT_STATUS_INVALID_NETWORK_RESPONSE;
5097 subreq = conn->pending[0];
5098 substate = tevent_req_data(subreq, struct smbXcli_req_state);
5099 req = tevent_req_callback_data(subreq, struct tevent_req);
5101 protocol_magic = IVAL(inbuf, 4);
5103 switch (protocol_magic) {
5104 case SMB_MAGIC:
5105 tevent_req_set_callback(subreq, smbXcli_negprot_smb1_done, req);
5106 conn->dispatch_incoming = smb1cli_conn_dispatch_incoming;
5107 return smb1cli_conn_dispatch_incoming(conn, tmp_mem, inbuf);
5109 case SMB2_MAGIC:
5110 if (substate->smb2.recv_iov == NULL) {
5112 * For the SMB1 negprot we have move it.
5114 substate->smb2.recv_iov = substate->smb1.recv_iov;
5115 substate->smb1.recv_iov = NULL;
5119 * we got an SMB2 answer, which consumed sequence number 0
5120 * so we need to use 1 as the next one.
5122 * we also need to set the current credits to 0
5123 * as we consumed the initial one. The SMB2 answer
5124 * hopefully grant us a new credit.
5126 conn->smb2.mid = 1;
5127 conn->smb2.cur_credits = 0;
5128 tevent_req_set_callback(subreq, smbXcli_negprot_smb2_done, req);
5129 conn->dispatch_incoming = smb2cli_conn_dispatch_incoming;
5130 return smb2cli_conn_dispatch_incoming(conn, tmp_mem, inbuf);
5133 DEBUG(10, ("Got non-SMB PDU\n"));
5134 return NT_STATUS_INVALID_NETWORK_RESPONSE;
5137 NTSTATUS smbXcli_negprot_recv(struct tevent_req *req)
5139 return tevent_req_simple_recv_ntstatus(req);
5142 NTSTATUS smbXcli_negprot(struct smbXcli_conn *conn,
5143 uint32_t timeout_msec,
5144 enum protocol_types min_protocol,
5145 enum protocol_types max_protocol)
5147 TALLOC_CTX *frame = talloc_stackframe();
5148 struct tevent_context *ev;
5149 struct tevent_req *req;
5150 NTSTATUS status = NT_STATUS_NO_MEMORY;
5151 bool ok;
5153 if (smbXcli_conn_has_async_calls(conn)) {
5155 * Can't use sync call while an async call is in flight
5157 status = NT_STATUS_INVALID_PARAMETER_MIX;
5158 goto fail;
5160 ev = samba_tevent_context_init(frame);
5161 if (ev == NULL) {
5162 goto fail;
5164 req = smbXcli_negprot_send(frame, ev, conn, timeout_msec,
5165 min_protocol, max_protocol,
5166 WINDOWS_CLIENT_PURE_SMB2_NEGPROT_INITIAL_CREDIT_ASK);
5167 if (req == NULL) {
5168 goto fail;
5170 ok = tevent_req_poll_ntstatus(req, ev, &status);
5171 if (!ok) {
5172 goto fail;
5174 status = smbXcli_negprot_recv(req);
5175 fail:
5176 TALLOC_FREE(frame);
5177 return status;
5180 struct smb2cli_validate_negotiate_info_state {
5181 struct smbXcli_conn *conn;
5182 DATA_BLOB in_input_buffer;
5183 DATA_BLOB in_output_buffer;
5184 DATA_BLOB out_input_buffer;
5185 DATA_BLOB out_output_buffer;
5186 uint16_t dialect;
5189 static void smb2cli_validate_negotiate_info_done(struct tevent_req *subreq);
5191 struct tevent_req *smb2cli_validate_negotiate_info_send(TALLOC_CTX *mem_ctx,
5192 struct tevent_context *ev,
5193 struct smbXcli_conn *conn,
5194 uint32_t timeout_msec,
5195 struct smbXcli_session *session,
5196 struct smbXcli_tcon *tcon)
5198 struct tevent_req *req;
5199 struct smb2cli_validate_negotiate_info_state *state;
5200 uint8_t *buf;
5201 uint16_t dialect_count = 0;
5202 struct tevent_req *subreq;
5203 bool _save_should_sign;
5204 size_t i;
5206 req = tevent_req_create(mem_ctx, &state,
5207 struct smb2cli_validate_negotiate_info_state);
5208 if (req == NULL) {
5209 return NULL;
5211 state->conn = conn;
5213 state->in_input_buffer = data_blob_talloc_zero(state,
5214 4 + 16 + 1 + 1 + 2);
5215 if (tevent_req_nomem(state->in_input_buffer.data, req)) {
5216 return tevent_req_post(req, ev);
5218 buf = state->in_input_buffer.data;
5220 if (state->conn->max_protocol >= PROTOCOL_SMB2_22) {
5221 SIVAL(buf, 0, conn->smb2.client.capabilities);
5222 } else {
5223 SIVAL(buf, 0, 0); /* Capabilities */
5225 if (state->conn->max_protocol >= PROTOCOL_SMB2_10) {
5226 NTSTATUS status;
5227 DATA_BLOB blob;
5229 status = GUID_to_ndr_blob(&conn->smb2.client.guid,
5230 state, &blob);
5231 if (!NT_STATUS_IS_OK(status)) {
5232 return NULL;
5234 memcpy(buf+4, blob.data, 16); /* ClientGuid */
5235 } else {
5236 memset(buf+4, 0, 16); /* ClientGuid */
5238 if (state->conn->min_protocol >= PROTOCOL_SMB2_02) {
5239 SCVAL(buf, 20, conn->smb2.client.security_mode);
5240 } else {
5241 SCVAL(buf, 20, 0);
5243 SCVAL(buf, 21, 0); /* reserved */
5245 for (i=0; i < ARRAY_SIZE(smb2cli_prots); i++) {
5246 bool ok;
5247 size_t ofs;
5249 if (smb2cli_prots[i].proto < state->conn->min_protocol) {
5250 continue;
5253 if (smb2cli_prots[i].proto > state->conn->max_protocol) {
5254 continue;
5257 if (smb2cli_prots[i].proto == state->conn->protocol) {
5258 state->dialect = smb2cli_prots[i].smb2_dialect;
5261 ofs = state->in_input_buffer.length;
5262 ok = data_blob_realloc(state, &state->in_input_buffer,
5263 ofs + 2);
5264 if (!ok) {
5265 tevent_req_oom(req);
5266 return tevent_req_post(req, ev);
5269 buf = state->in_input_buffer.data;
5270 SSVAL(buf, ofs, smb2cli_prots[i].smb2_dialect);
5272 dialect_count++;
5274 buf = state->in_input_buffer.data;
5275 SSVAL(buf, 22, dialect_count);
5277 _save_should_sign = smb2cli_tcon_is_signing_on(tcon);
5278 smb2cli_tcon_should_sign(tcon, true);
5279 subreq = smb2cli_ioctl_send(state, ev, conn,
5280 timeout_msec, session, tcon,
5281 UINT64_MAX, /* in_fid_persistent */
5282 UINT64_MAX, /* in_fid_volatile */
5283 FSCTL_VALIDATE_NEGOTIATE_INFO,
5284 0, /* in_max_input_length */
5285 &state->in_input_buffer,
5286 24, /* in_max_output_length */
5287 &state->in_output_buffer,
5288 SMB2_IOCTL_FLAG_IS_FSCTL);
5289 smb2cli_tcon_should_sign(tcon, _save_should_sign);
5290 if (tevent_req_nomem(subreq, req)) {
5291 return tevent_req_post(req, ev);
5293 tevent_req_set_callback(subreq,
5294 smb2cli_validate_negotiate_info_done,
5295 req);
5297 return req;
5300 static void smb2cli_validate_negotiate_info_done(struct tevent_req *subreq)
5302 struct tevent_req *req =
5303 tevent_req_callback_data(subreq,
5304 struct tevent_req);
5305 struct smb2cli_validate_negotiate_info_state *state =
5306 tevent_req_data(req,
5307 struct smb2cli_validate_negotiate_info_state);
5308 NTSTATUS status;
5309 const uint8_t *buf;
5310 uint32_t capabilities;
5311 DATA_BLOB guid_blob;
5312 struct GUID server_guid;
5313 uint16_t security_mode;
5314 uint16_t dialect;
5316 status = smb2cli_ioctl_recv(subreq, state,
5317 &state->out_input_buffer,
5318 &state->out_output_buffer);
5319 TALLOC_FREE(subreq);
5320 if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_CLOSED)) {
5322 * The response was signed, but not supported
5324 * Older Windows and Samba releases return
5325 * NT_STATUS_FILE_CLOSED.
5327 tevent_req_done(req);
5328 return;
5330 if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_DEVICE_REQUEST)) {
5332 * The response was signed, but not supported
5334 * This is returned by the NTVFS based Samba 4.x file server
5335 * for file shares.
5337 tevent_req_done(req);
5338 return;
5340 if (NT_STATUS_EQUAL(status, NT_STATUS_FS_DRIVER_REQUIRED)) {
5342 * The response was signed, but not supported
5344 * This is returned by the NTVFS based Samba 4.x file server
5345 * for ipc shares.
5347 tevent_req_done(req);
5348 return;
5350 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
5352 * The response was signed, but not supported
5354 * This might be returned by older Windows versions or by
5355 * NetApp SMB server implementations.
5357 * See
5359 * https://blogs.msdn.microsoft.com/openspecification/2012/06/28/smb3-secure-dialect-negotiation/
5362 tevent_req_done(req);
5363 return;
5365 if (tevent_req_nterror(req, status)) {
5366 return;
5369 if (state->out_output_buffer.length != 24) {
5370 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
5371 return;
5374 buf = state->out_output_buffer.data;
5376 capabilities = IVAL(buf, 0);
5377 guid_blob = data_blob_const(buf + 4, 16);
5378 status = GUID_from_data_blob(&guid_blob, &server_guid);
5379 if (tevent_req_nterror(req, status)) {
5380 return;
5382 security_mode = CVAL(buf, 20);
5383 dialect = SVAL(buf, 22);
5385 if (capabilities != state->conn->smb2.server.capabilities) {
5386 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
5387 return;
5390 if (!GUID_equal(&server_guid, &state->conn->smb2.server.guid)) {
5391 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
5392 return;
5395 if (security_mode != state->conn->smb2.server.security_mode) {
5396 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
5397 return;
5400 if (dialect != state->dialect) {
5401 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
5402 return;
5405 tevent_req_done(req);
5408 NTSTATUS smb2cli_validate_negotiate_info_recv(struct tevent_req *req)
5410 return tevent_req_simple_recv_ntstatus(req);
5413 static int smbXcli_session_destructor(struct smbXcli_session *session)
5415 if (session->conn == NULL) {
5416 return 0;
5419 DLIST_REMOVE(session->conn->sessions, session);
5420 return 0;
5423 struct smbXcli_session *smbXcli_session_create(TALLOC_CTX *mem_ctx,
5424 struct smbXcli_conn *conn)
5426 struct smbXcli_session *session;
5428 session = talloc_zero(mem_ctx, struct smbXcli_session);
5429 if (session == NULL) {
5430 return NULL;
5432 session->smb2 = talloc_zero(session, struct smb2cli_session);
5433 if (session->smb2 == NULL) {
5434 talloc_free(session);
5435 return NULL;
5437 talloc_set_destructor(session, smbXcli_session_destructor);
5439 DLIST_ADD_END(conn->sessions, session);
5440 session->conn = conn;
5442 memcpy(session->smb2_channel.preauth_sha512,
5443 conn->smb2.preauth_sha512,
5444 sizeof(session->smb2_channel.preauth_sha512));
5446 return session;
5449 struct smbXcli_session *smbXcli_session_copy(TALLOC_CTX *mem_ctx,
5450 struct smbXcli_session *src)
5452 struct smbXcli_session *session;
5454 session = talloc_zero(mem_ctx, struct smbXcli_session);
5455 if (session == NULL) {
5456 return NULL;
5458 session->smb2 = talloc_zero(session, struct smb2cli_session);
5459 if (session->smb2 == NULL) {
5460 talloc_free(session);
5461 return NULL;
5464 session->conn = src->conn;
5465 *session->smb2 = *src->smb2;
5466 session->smb2_channel = src->smb2_channel;
5467 session->disconnect_expired = src->disconnect_expired;
5469 DLIST_ADD_END(src->conn->sessions, session);
5470 talloc_set_destructor(session, smbXcli_session_destructor);
5472 return session;
5475 bool smbXcli_session_is_guest(struct smbXcli_session *session)
5477 if (session == NULL) {
5478 return false;
5481 if (session->conn == NULL) {
5482 return false;
5485 if (session->conn->mandatory_signing) {
5486 return false;
5489 if (session->conn->protocol >= PROTOCOL_SMB2_02) {
5490 if (session->smb2->session_flags & SMB2_SESSION_FLAG_IS_GUEST) {
5491 return true;
5493 return false;
5496 if (session->smb1.action & SMB_SETUP_GUEST) {
5497 return true;
5500 return false;
5503 bool smbXcli_session_is_authenticated(struct smbXcli_session *session)
5505 const DATA_BLOB *application_key;
5507 if (session == NULL) {
5508 return false;
5511 if (session->conn == NULL) {
5512 return false;
5516 * If we have an application key we had a session key negotiated
5517 * at auth time.
5519 if (session->conn->protocol >= PROTOCOL_SMB2_02) {
5520 application_key = &session->smb2->application_key;
5521 } else {
5522 application_key = &session->smb1.application_key;
5525 if (application_key->length == 0) {
5526 return false;
5529 return true;
5532 NTSTATUS smbXcli_session_application_key(struct smbXcli_session *session,
5533 TALLOC_CTX *mem_ctx,
5534 DATA_BLOB *key)
5536 const DATA_BLOB *application_key;
5538 *key = data_blob_null;
5540 if (session->conn == NULL) {
5541 return NT_STATUS_NO_USER_SESSION_KEY;
5544 if (session->conn->protocol >= PROTOCOL_SMB2_02) {
5545 application_key = &session->smb2->application_key;
5546 } else {
5547 application_key = &session->smb1.application_key;
5550 if (application_key->length == 0) {
5551 return NT_STATUS_NO_USER_SESSION_KEY;
5554 *key = data_blob_dup_talloc(mem_ctx, *application_key);
5555 if (key->data == NULL) {
5556 return NT_STATUS_NO_MEMORY;
5559 return NT_STATUS_OK;
5562 void smbXcli_session_set_disconnect_expired(struct smbXcli_session *session)
5564 session->disconnect_expired = true;
5567 uint16_t smb1cli_session_current_id(struct smbXcli_session *session)
5569 return session->smb1.session_id;
5572 void smb1cli_session_set_id(struct smbXcli_session *session,
5573 uint16_t session_id)
5575 session->smb1.session_id = session_id;
5578 void smb1cli_session_set_action(struct smbXcli_session *session,
5579 uint16_t action)
5581 session->smb1.action = action;
5584 NTSTATUS smb1cli_session_set_session_key(struct smbXcli_session *session,
5585 const DATA_BLOB _session_key)
5587 struct smbXcli_conn *conn = session->conn;
5588 uint8_t session_key[16];
5590 if (conn == NULL) {
5591 return NT_STATUS_INVALID_PARAMETER_MIX;
5594 if (session->smb1.application_key.length != 0) {
5596 * TODO: do not allow this...
5598 * return NT_STATUS_INVALID_PARAMETER_MIX;
5600 data_blob_clear_free(&session->smb1.application_key);
5601 session->smb1.protected_key = false;
5604 if (_session_key.length == 0) {
5605 return NT_STATUS_OK;
5608 ZERO_STRUCT(session_key);
5609 memcpy(session_key, _session_key.data,
5610 MIN(_session_key.length, sizeof(session_key)));
5612 session->smb1.application_key = data_blob_talloc(session,
5613 session_key,
5614 sizeof(session_key));
5615 ZERO_STRUCT(session_key);
5616 if (session->smb1.application_key.data == NULL) {
5617 return NT_STATUS_NO_MEMORY;
5620 session->smb1.protected_key = false;
5622 return NT_STATUS_OK;
5625 NTSTATUS smb1cli_session_protect_session_key(struct smbXcli_session *session)
5627 if (session->smb1.protected_key) {
5628 /* already protected */
5629 return NT_STATUS_OK;
5632 if (session->smb1.application_key.length != 16) {
5633 return NT_STATUS_INVALID_PARAMETER_MIX;
5636 smb_key_derivation(session->smb1.application_key.data,
5637 session->smb1.application_key.length,
5638 session->smb1.application_key.data);
5640 session->smb1.protected_key = true;
5642 return NT_STATUS_OK;
5645 uint8_t smb2cli_session_security_mode(struct smbXcli_session *session)
5647 struct smbXcli_conn *conn = session->conn;
5648 uint8_t security_mode = 0;
5650 if (conn == NULL) {
5651 return security_mode;
5654 security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
5655 if (conn->mandatory_signing) {
5656 security_mode |= SMB2_NEGOTIATE_SIGNING_REQUIRED;
5658 if (session->smb2->should_sign) {
5659 security_mode |= SMB2_NEGOTIATE_SIGNING_REQUIRED;
5662 return security_mode;
5665 uint64_t smb2cli_session_current_id(struct smbXcli_session *session)
5667 return session->smb2->session_id;
5670 uint16_t smb2cli_session_get_flags(struct smbXcli_session *session)
5672 return session->smb2->session_flags;
5675 void smb2cli_session_set_id_and_flags(struct smbXcli_session *session,
5676 uint64_t session_id,
5677 uint16_t session_flags)
5679 session->smb2->session_id = session_id;
5680 session->smb2->session_flags = session_flags;
5683 void smb2cli_session_increment_channel_sequence(struct smbXcli_session *session)
5685 session->smb2->channel_sequence += 1;
5688 uint16_t smb2cli_session_reset_channel_sequence(struct smbXcli_session *session,
5689 uint16_t channel_sequence)
5691 uint16_t prev_cs;
5693 prev_cs = session->smb2->channel_sequence;
5694 session->smb2->channel_sequence = channel_sequence;
5696 return prev_cs;
5699 uint16_t smb2cli_session_current_channel_sequence(struct smbXcli_session *session)
5701 return session->smb2->channel_sequence;
5704 void smb2cli_session_start_replay(struct smbXcli_session *session)
5706 session->smb2->replay_active = true;
5709 void smb2cli_session_stop_replay(struct smbXcli_session *session)
5711 session->smb2->replay_active = false;
5714 NTSTATUS smb2cli_session_update_preauth(struct smbXcli_session *session,
5715 const struct iovec *iov)
5717 struct hc_sha512state sctx;
5718 size_t i;
5720 if (session->conn == NULL) {
5721 return NT_STATUS_INTERNAL_ERROR;
5724 if (session->conn->protocol < PROTOCOL_SMB3_10) {
5725 return NT_STATUS_OK;
5728 if (session->smb2_channel.signing_key.length != 0) {
5729 return NT_STATUS_OK;
5732 samba_SHA512_Init(&sctx);
5733 samba_SHA512_Update(&sctx, session->smb2_channel.preauth_sha512,
5734 sizeof(session->smb2_channel.preauth_sha512));
5735 for (i = 0; i < 3; i++) {
5736 samba_SHA512_Update(&sctx, iov[i].iov_base, iov[i].iov_len);
5738 samba_SHA512_Final(session->smb2_channel.preauth_sha512, &sctx);
5740 return NT_STATUS_OK;
5743 NTSTATUS smb2cli_session_set_session_key(struct smbXcli_session *session,
5744 const DATA_BLOB _session_key,
5745 const struct iovec *recv_iov)
5747 struct smbXcli_conn *conn = session->conn;
5748 uint16_t no_sign_flags = 0;
5749 uint8_t session_key[16];
5750 bool check_signature = true;
5751 uint32_t hdr_flags;
5752 NTSTATUS status;
5753 struct _derivation {
5754 DATA_BLOB label;
5755 DATA_BLOB context;
5757 struct {
5758 struct _derivation signing;
5759 struct _derivation encryption;
5760 struct _derivation decryption;
5761 struct _derivation application;
5762 } derivation = { };
5763 size_t nonce_size = 0;
5765 if (conn == NULL) {
5766 return NT_STATUS_INVALID_PARAMETER_MIX;
5769 if (recv_iov[0].iov_len != SMB2_HDR_BODY) {
5770 return NT_STATUS_INVALID_PARAMETER_MIX;
5773 if (!conn->mandatory_signing) {
5775 * only allow guest sessions without
5776 * mandatory signing.
5778 * If we try an authentication with username != ""
5779 * and the server let us in without verifying the
5780 * password we don't have a negotiated session key
5781 * for signing.
5783 no_sign_flags = SMB2_SESSION_FLAG_IS_GUEST;
5786 if (session->smb2->session_flags & no_sign_flags) {
5787 session->smb2->should_sign = false;
5788 return NT_STATUS_OK;
5791 if (session->smb2->signing_key.length != 0) {
5792 return NT_STATUS_INVALID_PARAMETER_MIX;
5795 if (conn->protocol >= PROTOCOL_SMB3_10) {
5796 struct _derivation *d;
5797 DATA_BLOB p;
5799 p = data_blob_const(session->smb2_channel.preauth_sha512,
5800 sizeof(session->smb2_channel.preauth_sha512));
5802 d = &derivation.signing;
5803 d->label = data_blob_string_const_null("SMBSigningKey");
5804 d->context = p;
5806 d = &derivation.encryption;
5807 d->label = data_blob_string_const_null("SMBC2SCipherKey");
5808 d->context = p;
5810 d = &derivation.decryption;
5811 d->label = data_blob_string_const_null("SMBS2CCipherKey");
5812 d->context = p;
5814 d = &derivation.application;
5815 d->label = data_blob_string_const_null("SMBAppKey");
5816 d->context = p;
5818 } else if (conn->protocol >= PROTOCOL_SMB2_24) {
5819 struct _derivation *d;
5821 d = &derivation.signing;
5822 d->label = data_blob_string_const_null("SMB2AESCMAC");
5823 d->context = data_blob_string_const_null("SmbSign");
5825 d = &derivation.encryption;
5826 d->label = data_blob_string_const_null("SMB2AESCCM");
5827 d->context = data_blob_string_const_null("ServerIn ");
5829 d = &derivation.decryption;
5830 d->label = data_blob_string_const_null("SMB2AESCCM");
5831 d->context = data_blob_string_const_null("ServerOut");
5833 d = &derivation.application;
5834 d->label = data_blob_string_const_null("SMB2APP");
5835 d->context = data_blob_string_const_null("SmbRpc");
5838 ZERO_STRUCT(session_key);
5839 memcpy(session_key, _session_key.data,
5840 MIN(_session_key.length, sizeof(session_key)));
5842 session->smb2->signing_key = data_blob_talloc(session,
5843 session_key,
5844 sizeof(session_key));
5845 if (session->smb2->signing_key.data == NULL) {
5846 ZERO_STRUCT(session_key);
5847 return NT_STATUS_NO_MEMORY;
5850 if (conn->protocol >= PROTOCOL_SMB2_24) {
5851 struct _derivation *d = &derivation.signing;
5853 smb2_key_derivation(session_key, sizeof(session_key),
5854 d->label.data, d->label.length,
5855 d->context.data, d->context.length,
5856 session->smb2->signing_key.data);
5859 session->smb2->encryption_key = data_blob_dup_talloc(session,
5860 session->smb2->signing_key);
5861 if (session->smb2->encryption_key.data == NULL) {
5862 ZERO_STRUCT(session_key);
5863 return NT_STATUS_NO_MEMORY;
5866 if (conn->protocol >= PROTOCOL_SMB2_24) {
5867 struct _derivation *d = &derivation.encryption;
5869 smb2_key_derivation(session_key, sizeof(session_key),
5870 d->label.data, d->label.length,
5871 d->context.data, d->context.length,
5872 session->smb2->encryption_key.data);
5875 session->smb2->decryption_key = data_blob_dup_talloc(session,
5876 session->smb2->signing_key);
5877 if (session->smb2->decryption_key.data == NULL) {
5878 ZERO_STRUCT(session_key);
5879 return NT_STATUS_NO_MEMORY;
5882 if (conn->protocol >= PROTOCOL_SMB2_24) {
5883 struct _derivation *d = &derivation.decryption;
5885 smb2_key_derivation(session_key, sizeof(session_key),
5886 d->label.data, d->label.length,
5887 d->context.data, d->context.length,
5888 session->smb2->decryption_key.data);
5891 session->smb2->application_key = data_blob_dup_talloc(session,
5892 session->smb2->signing_key);
5893 if (session->smb2->application_key.data == NULL) {
5894 ZERO_STRUCT(session_key);
5895 return NT_STATUS_NO_MEMORY;
5898 if (conn->protocol >= PROTOCOL_SMB2_24) {
5899 struct _derivation *d = &derivation.application;
5901 smb2_key_derivation(session_key, sizeof(session_key),
5902 d->label.data, d->label.length,
5903 d->context.data, d->context.length,
5904 session->smb2->application_key.data);
5906 ZERO_STRUCT(session_key);
5908 session->smb2_channel.signing_key = data_blob_dup_talloc(session,
5909 session->smb2->signing_key);
5910 if (session->smb2_channel.signing_key.data == NULL) {
5911 return NT_STATUS_NO_MEMORY;
5914 check_signature = conn->mandatory_signing;
5916 hdr_flags = IVAL(recv_iov[0].iov_base, SMB2_HDR_FLAGS);
5917 if (hdr_flags & SMB2_HDR_FLAG_SIGNED) {
5919 * Sadly some vendors don't sign the
5920 * final SMB2 session setup response
5922 * At least Windows and Samba are always doing this
5923 * if there's a session key available.
5925 * We only check the signature if it's mandatory
5926 * or SMB2_HDR_FLAG_SIGNED is provided.
5928 check_signature = true;
5931 if (conn->protocol >= PROTOCOL_SMB3_10) {
5932 check_signature = true;
5935 if (check_signature) {
5936 status = smb2_signing_check_pdu(session->smb2_channel.signing_key,
5937 session->conn->protocol,
5938 recv_iov, 3);
5939 if (!NT_STATUS_IS_OK(status)) {
5940 return status;
5944 session->smb2->should_sign = false;
5945 session->smb2->should_encrypt = false;
5947 if (conn->desire_signing) {
5948 session->smb2->should_sign = true;
5951 if (conn->smb2.server.security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) {
5952 session->smb2->should_sign = true;
5955 if (session->smb2->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) {
5956 session->smb2->should_encrypt = true;
5959 if (conn->protocol < PROTOCOL_SMB2_24) {
5960 session->smb2->should_encrypt = false;
5963 if (conn->smb2.server.cipher == 0) {
5964 session->smb2->should_encrypt = false;
5968 * CCM and GCM algorithms must never have their
5969 * nonce wrap, or the security of the whole
5970 * communication and the keys is destroyed.
5971 * We must drop the connection once we have
5972 * transfered too much data.
5974 * NOTE: We assume nonces greater than 8 bytes.
5976 generate_random_buffer((uint8_t *)&session->smb2->nonce_high_random,
5977 sizeof(session->smb2->nonce_high_random));
5978 switch (conn->smb2.server.cipher) {
5979 case SMB2_ENCRYPTION_AES128_CCM:
5980 nonce_size = AES_CCM_128_NONCE_SIZE;
5981 break;
5982 case SMB2_ENCRYPTION_AES128_GCM:
5983 nonce_size = AES_GCM_128_IV_SIZE;
5984 break;
5985 default:
5986 nonce_size = 0;
5987 break;
5989 session->smb2->nonce_high_max = SMB2_NONCE_HIGH_MAX(nonce_size);
5990 session->smb2->nonce_high = 0;
5991 session->smb2->nonce_low = 0;
5993 return NT_STATUS_OK;
5996 NTSTATUS smb2cli_session_create_channel(TALLOC_CTX *mem_ctx,
5997 struct smbXcli_session *session1,
5998 struct smbXcli_conn *conn,
5999 struct smbXcli_session **_session2)
6001 struct smbXcli_session *session2;
6003 if (session1->smb2->signing_key.length == 0) {
6004 return NT_STATUS_INVALID_PARAMETER_MIX;
6007 if (conn == NULL) {
6008 return NT_STATUS_INVALID_PARAMETER_MIX;
6011 session2 = talloc_zero(mem_ctx, struct smbXcli_session);
6012 if (session2 == NULL) {
6013 return NT_STATUS_NO_MEMORY;
6015 session2->smb2 = talloc_reference(session2, session1->smb2);
6016 if (session2->smb2 == NULL) {
6017 talloc_free(session2);
6018 return NT_STATUS_NO_MEMORY;
6021 talloc_set_destructor(session2, smbXcli_session_destructor);
6022 DLIST_ADD_END(conn->sessions, session2);
6023 session2->conn = conn;
6025 memcpy(session2->smb2_channel.preauth_sha512,
6026 conn->smb2.preauth_sha512,
6027 sizeof(session2->smb2_channel.preauth_sha512));
6029 *_session2 = session2;
6030 return NT_STATUS_OK;
6033 NTSTATUS smb2cli_session_set_channel_key(struct smbXcli_session *session,
6034 const DATA_BLOB _channel_key,
6035 const struct iovec *recv_iov)
6037 struct smbXcli_conn *conn = session->conn;
6038 uint8_t channel_key[16];
6039 NTSTATUS status;
6040 struct _derivation {
6041 DATA_BLOB label;
6042 DATA_BLOB context;
6044 struct {
6045 struct _derivation signing;
6046 } derivation = { };
6048 if (conn == NULL) {
6049 return NT_STATUS_INVALID_PARAMETER_MIX;
6052 if (session->smb2_channel.signing_key.length != 0) {
6053 return NT_STATUS_INVALID_PARAMETER_MIX;
6056 if (conn->protocol >= PROTOCOL_SMB3_10) {
6057 struct _derivation *d;
6058 DATA_BLOB p;
6060 p = data_blob_const(session->smb2_channel.preauth_sha512,
6061 sizeof(session->smb2_channel.preauth_sha512));
6063 d = &derivation.signing;
6064 d->label = data_blob_string_const_null("SMBSigningKey");
6065 d->context = p;
6066 } else if (conn->protocol >= PROTOCOL_SMB2_24) {
6067 struct _derivation *d;
6069 d = &derivation.signing;
6070 d->label = data_blob_string_const_null("SMB2AESCMAC");
6071 d->context = data_blob_string_const_null("SmbSign");
6074 ZERO_STRUCT(channel_key);
6075 memcpy(channel_key, _channel_key.data,
6076 MIN(_channel_key.length, sizeof(channel_key)));
6078 session->smb2_channel.signing_key = data_blob_talloc(session,
6079 channel_key,
6080 sizeof(channel_key));
6081 if (session->smb2_channel.signing_key.data == NULL) {
6082 ZERO_STRUCT(channel_key);
6083 return NT_STATUS_NO_MEMORY;
6086 if (conn->protocol >= PROTOCOL_SMB2_24) {
6087 struct _derivation *d = &derivation.signing;
6089 smb2_key_derivation(channel_key, sizeof(channel_key),
6090 d->label.data, d->label.length,
6091 d->context.data, d->context.length,
6092 session->smb2_channel.signing_key.data);
6094 ZERO_STRUCT(channel_key);
6096 status = smb2_signing_check_pdu(session->smb2_channel.signing_key,
6097 session->conn->protocol,
6098 recv_iov, 3);
6099 if (!NT_STATUS_IS_OK(status)) {
6100 return status;
6103 return NT_STATUS_OK;
6106 NTSTATUS smb2cli_session_encryption_on(struct smbXcli_session *session)
6108 if (!session->smb2->should_sign) {
6110 * We need required signing on the session
6111 * in order to prevent man in the middle attacks.
6113 return NT_STATUS_INVALID_PARAMETER_MIX;
6116 if (session->smb2->should_encrypt) {
6117 return NT_STATUS_OK;
6120 if (session->conn->protocol < PROTOCOL_SMB2_24) {
6121 return NT_STATUS_NOT_SUPPORTED;
6124 if (session->conn->smb2.server.cipher == 0) {
6125 return NT_STATUS_NOT_SUPPORTED;
6128 if (session->smb2->signing_key.data == NULL) {
6129 return NT_STATUS_NOT_SUPPORTED;
6131 session->smb2->should_encrypt = true;
6132 return NT_STATUS_OK;
6135 struct smbXcli_tcon *smbXcli_tcon_create(TALLOC_CTX *mem_ctx)
6137 struct smbXcli_tcon *tcon;
6139 tcon = talloc_zero(mem_ctx, struct smbXcli_tcon);
6140 if (tcon == NULL) {
6141 return NULL;
6144 return tcon;
6148 * Return a deep structure copy of a struct smbXcli_tcon *
6151 struct smbXcli_tcon *smbXcli_tcon_copy(TALLOC_CTX *mem_ctx,
6152 const struct smbXcli_tcon *tcon_in)
6154 struct smbXcli_tcon *tcon;
6156 tcon = talloc_memdup(mem_ctx, tcon_in, sizeof(struct smbXcli_tcon));
6157 if (tcon == NULL) {
6158 return NULL;
6161 /* Deal with the SMB1 strings. */
6162 if (tcon_in->smb1.service != NULL) {
6163 tcon->smb1.service = talloc_strdup(tcon, tcon_in->smb1.service);
6164 if (tcon->smb1.service == NULL) {
6165 TALLOC_FREE(tcon);
6166 return NULL;
6169 if (tcon->smb1.fs_type != NULL) {
6170 tcon->smb1.fs_type = talloc_strdup(tcon, tcon_in->smb1.fs_type);
6171 if (tcon->smb1.fs_type == NULL) {
6172 TALLOC_FREE(tcon);
6173 return NULL;
6176 return tcon;
6179 void smbXcli_tcon_set_fs_attributes(struct smbXcli_tcon *tcon,
6180 uint32_t fs_attributes)
6182 tcon->fs_attributes = fs_attributes;
6185 uint32_t smbXcli_tcon_get_fs_attributes(struct smbXcli_tcon *tcon)
6187 return tcon->fs_attributes;
6190 bool smbXcli_tcon_is_dfs_share(struct smbXcli_tcon *tcon)
6192 if (tcon == NULL) {
6193 return false;
6196 if (tcon->is_smb1) {
6197 if (tcon->smb1.optional_support & SMB_SHARE_IN_DFS) {
6198 return true;
6201 return false;
6204 if (tcon->smb2.capabilities & SMB2_SHARE_CAP_DFS) {
6205 return true;
6208 return false;
6211 uint16_t smb1cli_tcon_current_id(struct smbXcli_tcon *tcon)
6213 return tcon->smb1.tcon_id;
6216 void smb1cli_tcon_set_id(struct smbXcli_tcon *tcon, uint16_t tcon_id)
6218 tcon->is_smb1 = true;
6219 tcon->smb1.tcon_id = tcon_id;
6222 bool smb1cli_tcon_set_values(struct smbXcli_tcon *tcon,
6223 uint16_t tcon_id,
6224 uint16_t optional_support,
6225 uint32_t maximal_access,
6226 uint32_t guest_maximal_access,
6227 const char *service,
6228 const char *fs_type)
6230 tcon->is_smb1 = true;
6231 tcon->fs_attributes = 0;
6232 tcon->smb1.tcon_id = tcon_id;
6233 tcon->smb1.optional_support = optional_support;
6234 tcon->smb1.maximal_access = maximal_access;
6235 tcon->smb1.guest_maximal_access = guest_maximal_access;
6237 TALLOC_FREE(tcon->smb1.service);
6238 tcon->smb1.service = talloc_strdup(tcon, service);
6239 if (service != NULL && tcon->smb1.service == NULL) {
6240 return false;
6243 TALLOC_FREE(tcon->smb1.fs_type);
6244 tcon->smb1.fs_type = talloc_strdup(tcon, fs_type);
6245 if (fs_type != NULL && tcon->smb1.fs_type == NULL) {
6246 return false;
6249 return true;
6252 uint32_t smb2cli_tcon_current_id(struct smbXcli_tcon *tcon)
6254 return tcon->smb2.tcon_id;
6257 void smb2cli_tcon_set_id(struct smbXcli_tcon *tcon, uint32_t tcon_id)
6259 tcon->smb2.tcon_id = tcon_id;
6262 uint32_t smb2cli_tcon_capabilities(struct smbXcli_tcon *tcon)
6264 return tcon->smb2.capabilities;
6267 uint32_t smb2cli_tcon_flags(struct smbXcli_tcon *tcon)
6269 return tcon->smb2.flags;
6272 void smb2cli_tcon_set_values(struct smbXcli_tcon *tcon,
6273 struct smbXcli_session *session,
6274 uint32_t tcon_id,
6275 uint8_t type,
6276 uint32_t flags,
6277 uint32_t capabilities,
6278 uint32_t maximal_access)
6280 tcon->is_smb1 = false;
6281 tcon->fs_attributes = 0;
6282 tcon->smb2.tcon_id = tcon_id;
6283 tcon->smb2.type = type;
6284 tcon->smb2.flags = flags;
6285 tcon->smb2.capabilities = capabilities;
6286 tcon->smb2.maximal_access = maximal_access;
6288 tcon->smb2.should_sign = false;
6289 tcon->smb2.should_encrypt = false;
6291 if (session == NULL) {
6292 return;
6295 tcon->smb2.should_sign = session->smb2->should_sign;
6296 tcon->smb2.should_encrypt = session->smb2->should_encrypt;
6298 if (flags & SMB2_SHAREFLAG_ENCRYPT_DATA) {
6299 tcon->smb2.should_encrypt = true;
6303 void smb2cli_tcon_should_sign(struct smbXcli_tcon *tcon,
6304 bool should_sign)
6306 tcon->smb2.should_sign = should_sign;
6309 bool smb2cli_tcon_is_signing_on(struct smbXcli_tcon *tcon)
6311 if (tcon->smb2.should_encrypt) {
6312 return true;
6315 return tcon->smb2.should_sign;
6318 void smb2cli_tcon_should_encrypt(struct smbXcli_tcon *tcon,
6319 bool should_encrypt)
6321 tcon->smb2.should_encrypt = should_encrypt;
6324 bool smb2cli_tcon_is_encryption_on(struct smbXcli_tcon *tcon)
6326 return tcon->smb2.should_encrypt;
6329 void smb2cli_conn_set_mid(struct smbXcli_conn *conn, uint64_t mid)
6331 conn->smb2.mid = mid;
6334 uint64_t smb2cli_conn_get_mid(struct smbXcli_conn *conn)
6336 return conn->smb2.mid;