libcli/smb: support broken OS/2 error responses bug #9096
[samba.git] / libcli / smb / smbXcli_base.c
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
6
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.
11
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.
16
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/>.
19 */
20
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 "../libcli/smb/smb_common.h"
29 #include "../libcli/smb/smb_seal.h"
30 #include "../libcli/smb/smb_signing.h"
31 #include "../libcli/smb/read_smb.h"
32 #include "smbXcli_base.h"
33 #include "librpc/ndr/libndr.h"
34
35 struct smbXcli_conn;
36 struct smbXcli_req;
37 struct smbXcli_session;
38 struct smbXcli_tcon;
39
40 struct smbXcli_conn {
41         int read_fd;
42         int write_fd;
43         struct sockaddr_storage local_ss;
44         struct sockaddr_storage remote_ss;
45         const char *remote_name;
46
47         struct tevent_queue *outgoing;
48         struct tevent_req **pending;
49         struct tevent_req *read_smb_req;
50
51         enum protocol_types protocol;
52         bool allow_signing;
53         bool desire_signing;
54         bool mandatory_signing;
55
56         /*
57          * The incoming dispatch function should return:
58          * - NT_STATUS_RETRY, if more incoming PDUs are expected.
59          * - NT_STATUS_OK, if no more processing is desired, e.g.
60          *                 the dispatch function called
61          *                 tevent_req_done().
62          * - All other return values disconnect the connection.
63          */
64         NTSTATUS (*dispatch_incoming)(struct smbXcli_conn *conn,
65                                       TALLOC_CTX *tmp_mem,
66                                       uint8_t *inbuf);
67
68         struct {
69                 struct {
70                         uint32_t capabilities;
71                         uint32_t max_xmit;
72                 } client;
73
74                 struct {
75                         uint32_t capabilities;
76                         uint32_t max_xmit;
77                         uint16_t max_mux;
78                         uint16_t security_mode;
79                         bool readbraw;
80                         bool writebraw;
81                         bool lockread;
82                         bool writeunlock;
83                         uint32_t session_key;
84                         struct GUID guid;
85                         DATA_BLOB gss_blob;
86                         uint8_t challenge[8];
87                         const char *workgroup;
88                         const char *name;
89                         int time_zone;
90                         NTTIME system_time;
91                 } server;
92
93                 uint32_t capabilities;
94                 uint32_t max_xmit;
95
96                 uint16_t mid;
97
98                 struct smb_signing_state *signing;
99                 struct smb_trans_enc_state *trans_enc;
100
101                 struct tevent_req *read_braw_req;
102         } smb1;
103
104         struct {
105                 struct {
106                         uint32_t capabilities;
107                         uint16_t security_mode;
108                         struct GUID guid;
109                 } client;
110
111                 struct {
112                         uint32_t capabilities;
113                         uint16_t security_mode;
114                         struct GUID guid;
115                         uint32_t max_trans_size;
116                         uint32_t max_read_size;
117                         uint32_t max_write_size;
118                         NTTIME system_time;
119                         NTTIME start_time;
120                         DATA_BLOB gss_blob;
121                 } server;
122
123                 uint64_t mid;
124                 uint16_t cur_credits;
125                 uint16_t max_credits;
126         } smb2;
127
128         struct smbXcli_session *sessions;
129 };
130
131 struct smb2cli_session {
132         uint64_t session_id;
133         uint16_t session_flags;
134         DATA_BLOB application_key;
135         DATA_BLOB signing_key;
136         bool should_sign;
137         bool should_encrypt;
138         DATA_BLOB encryption_key;
139         DATA_BLOB decryption_key;
140         uint64_t nonce_high;
141         uint64_t nonce_low;
142         uint16_t channel_sequence;
143 };
144
145 struct smbXcli_session {
146         struct smbXcli_session *prev, *next;
147         struct smbXcli_conn *conn;
148
149         struct {
150                 uint16_t session_id;
151                 DATA_BLOB application_key;
152                 bool protected_key;
153         } smb1;
154
155         struct smb2cli_session *smb2;
156
157         struct {
158                 DATA_BLOB signing_key;
159         } smb2_channel;
160 };
161
162 struct smbXcli_tcon {
163         struct {
164                 uint16_t tcon_id;
165                 uint16_t optional_support;
166                 uint32_t maximal_access;
167                 uint32_t guest_maximal_access;
168                 char *service;
169                 char *fs_type;
170         } smb1;
171
172         struct {
173                 uint32_t tcon_id;
174                 uint8_t type;
175                 uint32_t flags;
176                 uint32_t capabilities;
177                 uint32_t maximal_access;
178                 bool should_encrypt;
179         } smb2;
180 };
181
182 struct smbXcli_req_state {
183         struct tevent_context *ev;
184         struct smbXcli_conn *conn;
185         struct smbXcli_session *session; /* maybe NULL */
186         struct smbXcli_tcon *tcon; /* maybe NULL */
187
188         uint8_t length_hdr[4];
189
190         bool one_way;
191
192         uint8_t *inbuf;
193
194         struct {
195                 /* Space for the header including the wct */
196                 uint8_t hdr[HDR_VWV];
197
198                 /*
199                  * For normal requests, smb1cli_req_send chooses a mid.
200                  * SecondaryV trans requests need to use the mid of the primary
201                  * request, so we need a place to store it.
202                  * Assume it is set if != 0.
203                  */
204                 uint16_t mid;
205
206                 uint16_t *vwv;
207                 uint8_t bytecount_buf[2];
208
209 #define MAX_SMB_IOV 10
210                 /* length_hdr, hdr, words, byte_count, buffers */
211                 struct iovec iov[1 + 3 + MAX_SMB_IOV];
212                 int iov_count;
213
214                 bool one_way_seqnum;
215                 uint32_t seqnum;
216                 struct tevent_req **chained_requests;
217
218                 uint8_t recv_cmd;
219                 NTSTATUS recv_status;
220                 /* always an array of 3 talloc elements */
221                 struct iovec *recv_iov;
222         } smb1;
223
224         struct {
225                 const uint8_t *fixed;
226                 uint16_t fixed_len;
227                 const uint8_t *dyn;
228                 uint32_t dyn_len;
229
230                 uint8_t transform[SMB2_TF_HDR_SIZE];
231                 uint8_t hdr[SMB2_HDR_BODY];
232                 uint8_t pad[7]; /* padding space for compounding */
233
234                 /*
235                  * always an array of 3 talloc elements
236                  * (without a SMB2_TRANSFORM header!)
237                  *
238                  * HDR, BODY, DYN
239                  */
240                 struct iovec *recv_iov;
241
242                 uint16_t credit_charge;
243
244                 bool should_sign;
245                 bool should_encrypt;
246                 uint64_t encryption_session_id;
247
248                 bool signing_skipped;
249                 bool notify_async;
250                 bool got_async;
251         } smb2;
252 };
253
254 static int smbXcli_conn_destructor(struct smbXcli_conn *conn)
255 {
256         /*
257          * NT_STATUS_OK, means we do not notify the callers
258          */
259         smbXcli_conn_disconnect(conn, NT_STATUS_OK);
260
261         while (conn->sessions) {
262                 conn->sessions->conn = NULL;
263                 DLIST_REMOVE(conn->sessions, conn->sessions);
264         }
265
266         if (conn->smb1.trans_enc) {
267                 TALLOC_FREE(conn->smb1.trans_enc);
268         }
269
270         return 0;
271 }
272
273 struct smbXcli_conn *smbXcli_conn_create(TALLOC_CTX *mem_ctx,
274                                          int fd,
275                                          const char *remote_name,
276                                          enum smb_signing_setting signing_state,
277                                          uint32_t smb1_capabilities,
278                                          struct GUID *client_guid,
279                                          uint32_t smb2_capabilities)
280 {
281         struct smbXcli_conn *conn = NULL;
282         void *ss = NULL;
283         struct sockaddr *sa = NULL;
284         socklen_t sa_length;
285         int ret;
286
287         conn = talloc_zero(mem_ctx, struct smbXcli_conn);
288         if (!conn) {
289                 return NULL;
290         }
291
292         conn->read_fd = fd;
293         conn->write_fd = dup(fd);
294         if (conn->write_fd == -1) {
295                 goto error;
296         }
297
298         conn->remote_name = talloc_strdup(conn, remote_name);
299         if (conn->remote_name == NULL) {
300                 goto error;
301         }
302
303
304         ss = (void *)&conn->local_ss;
305         sa = (struct sockaddr *)ss;
306         sa_length = sizeof(conn->local_ss);
307         ret = getsockname(fd, sa, &sa_length);
308         if (ret == -1) {
309                 goto error;
310         }
311         ss = (void *)&conn->remote_ss;
312         sa = (struct sockaddr *)ss;
313         sa_length = sizeof(conn->remote_ss);
314         ret = getpeername(fd, sa, &sa_length);
315         if (ret == -1) {
316                 goto error;
317         }
318
319         conn->outgoing = tevent_queue_create(conn, "smbXcli_outgoing");
320         if (conn->outgoing == NULL) {
321                 goto error;
322         }
323         conn->pending = NULL;
324
325         conn->protocol = PROTOCOL_NONE;
326
327         switch (signing_state) {
328         case SMB_SIGNING_OFF:
329                 /* never */
330                 conn->allow_signing = false;
331                 conn->desire_signing = false;
332                 conn->mandatory_signing = false;
333                 break;
334         case SMB_SIGNING_DEFAULT:
335         case SMB_SIGNING_IF_REQUIRED:
336                 /* if the server requires it */
337                 conn->allow_signing = true;
338                 conn->desire_signing = false;
339                 conn->mandatory_signing = false;
340                 break;
341         case SMB_SIGNING_REQUIRED:
342                 /* always */
343                 conn->allow_signing = true;
344                 conn->desire_signing = true;
345                 conn->mandatory_signing = true;
346                 break;
347         }
348
349         conn->smb1.client.capabilities = smb1_capabilities;
350         conn->smb1.client.max_xmit = UINT16_MAX;
351
352         conn->smb1.capabilities = conn->smb1.client.capabilities;
353         conn->smb1.max_xmit = 1024;
354
355         conn->smb1.mid = 1;
356
357         /* initialise signing */
358         conn->smb1.signing = smb_signing_init(conn,
359                                               conn->allow_signing,
360                                               conn->desire_signing,
361                                               conn->mandatory_signing);
362         if (!conn->smb1.signing) {
363                 goto error;
364         }
365
366         conn->smb2.client.security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
367         if (conn->mandatory_signing) {
368                 conn->smb2.client.security_mode |= SMB2_NEGOTIATE_SIGNING_REQUIRED;
369         }
370         if (client_guid) {
371                 conn->smb2.client.guid = *client_guid;
372         }
373         conn->smb2.client.capabilities = smb2_capabilities;
374
375         conn->smb2.cur_credits = 1;
376         conn->smb2.max_credits = 0;
377
378         talloc_set_destructor(conn, smbXcli_conn_destructor);
379         return conn;
380
381  error:
382         if (conn->write_fd != -1) {
383                 close(conn->write_fd);
384         }
385         TALLOC_FREE(conn);
386         return NULL;
387 }
388
389 bool smbXcli_conn_is_connected(struct smbXcli_conn *conn)
390 {
391         if (conn == NULL) {
392                 return false;
393         }
394
395         if (conn->read_fd == -1) {
396                 return false;
397         }
398
399         return true;
400 }
401
402 enum protocol_types smbXcli_conn_protocol(struct smbXcli_conn *conn)
403 {
404         return conn->protocol;
405 }
406
407 bool smbXcli_conn_use_unicode(struct smbXcli_conn *conn)
408 {
409         if (conn->protocol >= PROTOCOL_SMB2_02) {
410                 return true;
411         }
412
413         if (conn->smb1.capabilities & CAP_UNICODE) {
414                 return true;
415         }
416
417         return false;
418 }
419
420 void smbXcli_conn_set_sockopt(struct smbXcli_conn *conn, const char *options)
421 {
422         set_socket_options(conn->read_fd, options);
423 }
424
425 const struct sockaddr_storage *smbXcli_conn_local_sockaddr(struct smbXcli_conn *conn)
426 {
427         return &conn->local_ss;
428 }
429
430 const struct sockaddr_storage *smbXcli_conn_remote_sockaddr(struct smbXcli_conn *conn)
431 {
432         return &conn->remote_ss;
433 }
434
435 const char *smbXcli_conn_remote_name(struct smbXcli_conn *conn)
436 {
437         return conn->remote_name;
438 }
439
440 uint16_t smbXcli_conn_max_requests(struct smbXcli_conn *conn)
441 {
442         if (conn->protocol >= PROTOCOL_SMB2_02) {
443                 /*
444                  * TODO...
445                  */
446                 return 1;
447         }
448
449         return conn->smb1.server.max_mux;
450 }
451
452 NTTIME smbXcli_conn_server_system_time(struct smbXcli_conn *conn)
453 {
454         if (conn->protocol >= PROTOCOL_SMB2_02) {
455                 return conn->smb2.server.system_time;
456         }
457
458         return conn->smb1.server.system_time;
459 }
460
461 const DATA_BLOB *smbXcli_conn_server_gss_blob(struct smbXcli_conn *conn)
462 {
463         if (conn->protocol >= PROTOCOL_SMB2_02) {
464                 return &conn->smb2.server.gss_blob;
465         }
466
467         return &conn->smb1.server.gss_blob;
468 }
469
470 const struct GUID *smbXcli_conn_server_guid(struct smbXcli_conn *conn)
471 {
472         if (conn->protocol >= PROTOCOL_SMB2_02) {
473                 return &conn->smb2.server.guid;
474         }
475
476         return &conn->smb1.server.guid;
477 }
478
479 struct smbXcli_conn_samba_suicide_state {
480         struct smbXcli_conn *conn;
481         struct iovec iov;
482         uint8_t buf[9];
483 };
484
485 static void smbXcli_conn_samba_suicide_done(struct tevent_req *subreq);
486
487 struct tevent_req *smbXcli_conn_samba_suicide_send(TALLOC_CTX *mem_ctx,
488                                                    struct tevent_context *ev,
489                                                    struct smbXcli_conn *conn,
490                                                    uint8_t exitcode)
491 {
492         struct tevent_req *req, *subreq;
493         struct smbXcli_conn_samba_suicide_state *state;
494
495         req = tevent_req_create(mem_ctx, &state,
496                                 struct smbXcli_conn_samba_suicide_state);
497         if (req == NULL) {
498                 return NULL;
499         }
500         state->conn = conn;
501         SIVAL(state->buf, 4, 0x74697865);
502         SCVAL(state->buf, 8, exitcode);
503         _smb_setlen_nbt(state->buf, sizeof(state->buf)-4);
504
505         state->iov.iov_base = state->buf;
506         state->iov.iov_len = sizeof(state->buf);
507
508         subreq = writev_send(state, ev, conn->outgoing, conn->write_fd,
509                              false, &state->iov, 1);
510         if (tevent_req_nomem(subreq, req)) {
511                 return tevent_req_post(req, ev);
512         }
513         tevent_req_set_callback(subreq, smbXcli_conn_samba_suicide_done, req);
514         return req;
515 }
516
517 static void smbXcli_conn_samba_suicide_done(struct tevent_req *subreq)
518 {
519         struct tevent_req *req = tevent_req_callback_data(
520                 subreq, struct tevent_req);
521         struct smbXcli_conn_samba_suicide_state *state = tevent_req_data(
522                 req, struct smbXcli_conn_samba_suicide_state);
523         ssize_t nwritten;
524         int err;
525
526         nwritten = writev_recv(subreq, &err);
527         TALLOC_FREE(subreq);
528         if (nwritten == -1) {
529                 NTSTATUS status = map_nt_error_from_unix_common(err);
530                 smbXcli_conn_disconnect(state->conn, status);
531                 return;
532         }
533         tevent_req_done(req);
534 }
535
536 NTSTATUS smbXcli_conn_samba_suicide_recv(struct tevent_req *req)
537 {
538         return tevent_req_simple_recv_ntstatus(req);
539 }
540
541 NTSTATUS smbXcli_conn_samba_suicide(struct smbXcli_conn *conn,
542                                     uint8_t exitcode)
543 {
544         TALLOC_CTX *frame = talloc_stackframe();
545         struct tevent_context *ev;
546         struct tevent_req *req;
547         NTSTATUS status = NT_STATUS_NO_MEMORY;
548         bool ok;
549
550         if (smbXcli_conn_has_async_calls(conn)) {
551                 /*
552                  * Can't use sync call while an async call is in flight
553                  */
554                 status = NT_STATUS_INVALID_PARAMETER_MIX;
555                 goto fail;
556         }
557         ev = tevent_context_init(frame);
558         if (ev == NULL) {
559                 goto fail;
560         }
561         req = smbXcli_conn_samba_suicide_send(frame, ev, conn, exitcode);
562         if (req == NULL) {
563                 goto fail;
564         }
565         ok = tevent_req_poll(req, ev);
566         if (!ok) {
567                 status = map_nt_error_from_unix_common(errno);
568                 goto fail;
569         }
570         status = smbXcli_conn_samba_suicide_recv(req);
571  fail:
572         TALLOC_FREE(frame);
573         return status;
574 }
575
576 uint32_t smb1cli_conn_capabilities(struct smbXcli_conn *conn)
577 {
578         return conn->smb1.capabilities;
579 }
580
581 uint32_t smb1cli_conn_max_xmit(struct smbXcli_conn *conn)
582 {
583         return conn->smb1.max_xmit;
584 }
585
586 uint32_t smb1cli_conn_server_session_key(struct smbXcli_conn *conn)
587 {
588         return conn->smb1.server.session_key;
589 }
590
591 const uint8_t *smb1cli_conn_server_challenge(struct smbXcli_conn *conn)
592 {
593         return conn->smb1.server.challenge;
594 }
595
596 uint16_t smb1cli_conn_server_security_mode(struct smbXcli_conn *conn)
597 {
598         return conn->smb1.server.security_mode;
599 }
600
601 bool smb1cli_conn_server_readbraw(struct smbXcli_conn *conn)
602 {
603         return conn->smb1.server.readbraw;
604 }
605
606 bool smb1cli_conn_server_writebraw(struct smbXcli_conn *conn)
607 {
608         return conn->smb1.server.writebraw;
609 }
610
611 bool smb1cli_conn_server_lockread(struct smbXcli_conn *conn)
612 {
613         return conn->smb1.server.lockread;
614 }
615
616 bool smb1cli_conn_server_writeunlock(struct smbXcli_conn *conn)
617 {
618         return conn->smb1.server.writeunlock;
619 }
620
621 int smb1cli_conn_server_time_zone(struct smbXcli_conn *conn)
622 {
623         return conn->smb1.server.time_zone;
624 }
625
626 bool smb1cli_conn_activate_signing(struct smbXcli_conn *conn,
627                                    const DATA_BLOB user_session_key,
628                                    const DATA_BLOB response)
629 {
630         return smb_signing_activate(conn->smb1.signing,
631                                     user_session_key,
632                                     response);
633 }
634
635 bool smb1cli_conn_check_signing(struct smbXcli_conn *conn,
636                                 const uint8_t *buf, uint32_t seqnum)
637 {
638         const uint8_t *hdr = buf + NBT_HDR_SIZE;
639         size_t len = smb_len_nbt(buf);
640
641         return smb_signing_check_pdu(conn->smb1.signing, hdr, len, seqnum);
642 }
643
644 bool smb1cli_conn_signing_is_active(struct smbXcli_conn *conn)
645 {
646         return smb_signing_is_active(conn->smb1.signing);
647 }
648
649 void smb1cli_conn_set_encryption(struct smbXcli_conn *conn,
650                                  struct smb_trans_enc_state *es)
651 {
652         /* Replace the old state, if any. */
653         if (conn->smb1.trans_enc) {
654                 TALLOC_FREE(conn->smb1.trans_enc);
655         }
656         conn->smb1.trans_enc = es;
657 }
658
659 bool smb1cli_conn_encryption_on(struct smbXcli_conn *conn)
660 {
661         return common_encryption_on(conn->smb1.trans_enc);
662 }
663
664
665 static NTSTATUS smb1cli_pull_raw_error(const uint8_t *hdr)
666 {
667         uint32_t flags2 = SVAL(hdr, HDR_FLG2);
668         NTSTATUS status = NT_STATUS(IVAL(hdr, HDR_RCLS));
669
670         if (NT_STATUS_IS_OK(status)) {
671                 return NT_STATUS_OK;
672         }
673
674         if (flags2 & FLAGS2_32_BIT_ERROR_CODES) {
675                 return status;
676         }
677
678         return NT_STATUS_DOS(CVAL(hdr, HDR_RCLS), SVAL(hdr, HDR_ERR));
679 }
680
681 /**
682  * Is the SMB command able to hold an AND_X successor
683  * @param[in] cmd       The SMB command in question
684  * @retval Can we add a chained request after "cmd"?
685  */
686 bool smb1cli_is_andx_req(uint8_t cmd)
687 {
688         switch (cmd) {
689         case SMBtconX:
690         case SMBlockingX:
691         case SMBopenX:
692         case SMBreadX:
693         case SMBwriteX:
694         case SMBsesssetupX:
695         case SMBulogoffX:
696         case SMBntcreateX:
697                 return true;
698                 break;
699         default:
700                 break;
701         }
702
703         return false;
704 }
705
706 static uint16_t smb1cli_alloc_mid(struct smbXcli_conn *conn)
707 {
708         size_t num_pending = talloc_array_length(conn->pending);
709         uint16_t result;
710
711         while (true) {
712                 size_t i;
713
714                 result = conn->smb1.mid++;
715                 if ((result == 0) || (result == 0xffff)) {
716                         continue;
717                 }
718
719                 for (i=0; i<num_pending; i++) {
720                         if (result == smb1cli_req_mid(conn->pending[i])) {
721                                 break;
722                         }
723                 }
724
725                 if (i == num_pending) {
726                         return result;
727                 }
728         }
729 }
730
731 void smbXcli_req_unset_pending(struct tevent_req *req)
732 {
733         struct smbXcli_req_state *state =
734                 tevent_req_data(req,
735                 struct smbXcli_req_state);
736         struct smbXcli_conn *conn = state->conn;
737         size_t num_pending = talloc_array_length(conn->pending);
738         size_t i;
739
740         if (state->smb1.mid != 0) {
741                 /*
742                  * This is a [nt]trans[2] request which waits
743                  * for more than one reply.
744                  */
745                 return;
746         }
747
748         talloc_set_destructor(req, NULL);
749
750         if (num_pending == 1) {
751                 /*
752                  * The pending read_smb tevent_req is a child of
753                  * conn->pending. So if nothing is pending anymore, we need to
754                  * delete the socket read fde.
755                  */
756                 TALLOC_FREE(conn->pending);
757                 conn->read_smb_req = NULL;
758                 return;
759         }
760
761         for (i=0; i<num_pending; i++) {
762                 if (req == conn->pending[i]) {
763                         break;
764                 }
765         }
766         if (i == num_pending) {
767                 /*
768                  * Something's seriously broken. Just returning here is the
769                  * right thing nevertheless, the point of this routine is to
770                  * remove ourselves from conn->pending.
771                  */
772                 return;
773         }
774
775         /*
776          * Remove ourselves from the conn->pending array
777          */
778         for (; i < (num_pending - 1); i++) {
779                 conn->pending[i] = conn->pending[i+1];
780         }
781
782         /*
783          * No NULL check here, we're shrinking by sizeof(void *), and
784          * talloc_realloc just adjusts the size for this.
785          */
786         conn->pending = talloc_realloc(NULL, conn->pending, struct tevent_req *,
787                                        num_pending - 1);
788         return;
789 }
790
791 static int smbXcli_req_destructor(struct tevent_req *req)
792 {
793         struct smbXcli_req_state *state =
794                 tevent_req_data(req,
795                 struct smbXcli_req_state);
796
797         /*
798          * Make sure we really remove it from
799          * the pending array on destruction.
800          */
801         state->smb1.mid = 0;
802         smbXcli_req_unset_pending(req);
803         return 0;
804 }
805
806 static bool smb1cli_req_cancel(struct tevent_req *req);
807 static bool smb2cli_req_cancel(struct tevent_req *req);
808
809 static bool smbXcli_req_cancel(struct tevent_req *req)
810 {
811         struct smbXcli_req_state *state =
812                 tevent_req_data(req,
813                 struct smbXcli_req_state);
814
815         if (!smbXcli_conn_is_connected(state->conn)) {
816                 return false;
817         }
818
819         if (state->conn->protocol == PROTOCOL_NONE) {
820                 return false;
821         }
822
823         if (state->conn->protocol >= PROTOCOL_SMB2_02) {
824                 return smb2cli_req_cancel(req);
825         }
826
827         return smb1cli_req_cancel(req);
828 }
829
830 static bool smbXcli_conn_receive_next(struct smbXcli_conn *conn);
831
832 bool smbXcli_req_set_pending(struct tevent_req *req)
833 {
834         struct smbXcli_req_state *state =
835                 tevent_req_data(req,
836                 struct smbXcli_req_state);
837         struct smbXcli_conn *conn;
838         struct tevent_req **pending;
839         size_t num_pending;
840
841         conn = state->conn;
842
843         if (!smbXcli_conn_is_connected(conn)) {
844                 return false;
845         }
846
847         num_pending = talloc_array_length(conn->pending);
848
849         pending = talloc_realloc(conn, conn->pending, struct tevent_req *,
850                                  num_pending+1);
851         if (pending == NULL) {
852                 return false;
853         }
854         pending[num_pending] = req;
855         conn->pending = pending;
856         talloc_set_destructor(req, smbXcli_req_destructor);
857         tevent_req_set_cancel_fn(req, smbXcli_req_cancel);
858
859         if (!smbXcli_conn_receive_next(conn)) {
860                 /*
861                  * the caller should notify the current request
862                  *
863                  * And all other pending requests get notified
864                  * by smbXcli_conn_disconnect().
865                  */
866                 smbXcli_req_unset_pending(req);
867                 smbXcli_conn_disconnect(conn, NT_STATUS_NO_MEMORY);
868                 return false;
869         }
870
871         return true;
872 }
873
874 static void smbXcli_conn_received(struct tevent_req *subreq);
875
876 static bool smbXcli_conn_receive_next(struct smbXcli_conn *conn)
877 {
878         size_t num_pending = talloc_array_length(conn->pending);
879         struct tevent_req *req;
880         struct smbXcli_req_state *state;
881
882         if (conn->read_smb_req != NULL) {
883                 return true;
884         }
885
886         if (num_pending == 0) {
887                 if (conn->smb2.mid < UINT64_MAX) {
888                         /* no more pending requests, so we are done for now */
889                         return true;
890                 }
891
892                 /*
893                  * If there are no more SMB2 requests possible,
894                  * because we are out of message ids,
895                  * we need to disconnect.
896                  */
897                 smbXcli_conn_disconnect(conn, NT_STATUS_CONNECTION_ABORTED);
898                 return true;
899         }
900
901         req = conn->pending[0];
902         state = tevent_req_data(req, struct smbXcli_req_state);
903
904         /*
905          * We're the first ones, add the read_smb request that waits for the
906          * answer from the server
907          */
908         conn->read_smb_req = read_smb_send(conn->pending,
909                                            state->ev,
910                                            conn->read_fd);
911         if (conn->read_smb_req == NULL) {
912                 return false;
913         }
914         tevent_req_set_callback(conn->read_smb_req, smbXcli_conn_received, conn);
915         return true;
916 }
917
918 void smbXcli_conn_disconnect(struct smbXcli_conn *conn, NTSTATUS status)
919 {
920         struct smbXcli_session *session;
921
922         tevent_queue_stop(conn->outgoing);
923
924         if (conn->read_fd != -1) {
925                 close(conn->read_fd);
926         }
927         if (conn->write_fd != -1) {
928                 close(conn->write_fd);
929         }
930         conn->read_fd = -1;
931         conn->write_fd = -1;
932
933         session = conn->sessions;
934         if (talloc_array_length(conn->pending) == 0) {
935                 /*
936                  * if we do not have pending requests
937                  * there is no need to update the channel_sequence
938                  */
939                 session = NULL;
940         }
941         for (; session; session = session->next) {
942                 smb2cli_session_increment_channel_sequence(session);
943         }
944
945         /*
946          * Cancel all pending requests. We do not do a for-loop walking
947          * conn->pending because that array changes in
948          * smbXcli_req_unset_pending.
949          */
950         while (talloc_array_length(conn->pending) > 0) {
951                 struct tevent_req *req;
952                 struct smbXcli_req_state *state;
953                 struct tevent_req **chain;
954                 size_t num_chained;
955                 size_t i;
956
957                 req = conn->pending[0];
958                 state = tevent_req_data(req, struct smbXcli_req_state);
959
960                 if (state->smb1.chained_requests == NULL) {
961                         /*
962                          * We're dead. No point waiting for trans2
963                          * replies.
964                          */
965                         state->smb1.mid = 0;
966
967                         smbXcli_req_unset_pending(req);
968
969                         if (NT_STATUS_IS_OK(status)) {
970                                 /* do not notify the callers */
971                                 continue;
972                         }
973
974                         /*
975                          * we need to defer the callback, because we may notify
976                          * more then one caller.
977                          */
978                         tevent_req_defer_callback(req, state->ev);
979                         tevent_req_nterror(req, status);
980                         continue;
981                 }
982
983                 chain = talloc_move(conn, &state->smb1.chained_requests);
984                 num_chained = talloc_array_length(chain);
985
986                 for (i=0; i<num_chained; i++) {
987                         req = chain[i];
988                         state = tevent_req_data(req, struct smbXcli_req_state);
989
990                         /*
991                          * We're dead. No point waiting for trans2
992                          * replies.
993                          */
994                         state->smb1.mid = 0;
995
996                         smbXcli_req_unset_pending(req);
997
998                         if (NT_STATUS_IS_OK(status)) {
999                                 /* do not notify the callers */
1000                                 continue;
1001                         }
1002
1003                         /*
1004                          * we need to defer the callback, because we may notify
1005                          * more than one caller.
1006                          */
1007                         tevent_req_defer_callback(req, state->ev);
1008                         tevent_req_nterror(req, status);
1009                 }
1010                 TALLOC_FREE(chain);
1011         }
1012 }
1013
1014 /*
1015  * Fetch a smb request's mid. Only valid after the request has been sent by
1016  * smb1cli_req_send().
1017  */
1018 uint16_t smb1cli_req_mid(struct tevent_req *req)
1019 {
1020         struct smbXcli_req_state *state =
1021                 tevent_req_data(req,
1022                 struct smbXcli_req_state);
1023
1024         if (state->smb1.mid != 0) {
1025                 return state->smb1.mid;
1026         }
1027
1028         return SVAL(state->smb1.hdr, HDR_MID);
1029 }
1030
1031 void smb1cli_req_set_mid(struct tevent_req *req, uint16_t mid)
1032 {
1033         struct smbXcli_req_state *state =
1034                 tevent_req_data(req,
1035                 struct smbXcli_req_state);
1036
1037         state->smb1.mid = mid;
1038 }
1039
1040 uint32_t smb1cli_req_seqnum(struct tevent_req *req)
1041 {
1042         struct smbXcli_req_state *state =
1043                 tevent_req_data(req,
1044                 struct smbXcli_req_state);
1045
1046         return state->smb1.seqnum;
1047 }
1048
1049 void smb1cli_req_set_seqnum(struct tevent_req *req, uint32_t seqnum)
1050 {
1051         struct smbXcli_req_state *state =
1052                 tevent_req_data(req,
1053                 struct smbXcli_req_state);
1054
1055         state->smb1.seqnum = seqnum;
1056 }
1057
1058 static size_t smbXcli_iov_len(const struct iovec *iov, int count)
1059 {
1060         size_t result = 0;
1061         int i;
1062         for (i=0; i<count; i++) {
1063                 result += iov[i].iov_len;
1064         }
1065         return result;
1066 }
1067
1068 static uint8_t *smbXcli_iov_concat(TALLOC_CTX *mem_ctx,
1069                                    const struct iovec *iov,
1070                                    int count)
1071 {
1072         size_t len = smbXcli_iov_len(iov, count);
1073         size_t copied;
1074         uint8_t *buf;
1075         int i;
1076
1077         buf = talloc_array(mem_ctx, uint8_t, len);
1078         if (buf == NULL) {
1079                 return NULL;
1080         }
1081         copied = 0;
1082         for (i=0; i<count; i++) {
1083                 memcpy(buf+copied, iov[i].iov_base, iov[i].iov_len);
1084                 copied += iov[i].iov_len;
1085         }
1086         return buf;
1087 }
1088
1089 static void smb1cli_req_flags(enum protocol_types protocol,
1090                               uint32_t smb1_capabilities,
1091                               uint8_t smb_command,
1092                               uint8_t additional_flags,
1093                               uint8_t clear_flags,
1094                               uint8_t *_flags,
1095                               uint16_t additional_flags2,
1096                               uint16_t clear_flags2,
1097                               uint16_t *_flags2)
1098 {
1099         uint8_t flags = 0;
1100         uint16_t flags2 = 0;
1101
1102         if (protocol >= PROTOCOL_LANMAN1) {
1103                 flags |= FLAG_CASELESS_PATHNAMES;
1104                 flags |= FLAG_CANONICAL_PATHNAMES;
1105         }
1106
1107         if (protocol >= PROTOCOL_LANMAN2) {
1108                 flags2 |= FLAGS2_LONG_PATH_COMPONENTS;
1109                 flags2 |= FLAGS2_EXTENDED_ATTRIBUTES;
1110         }
1111
1112         if (protocol >= PROTOCOL_NT1) {
1113                 flags2 |= FLAGS2_IS_LONG_NAME;
1114
1115                 if (smb1_capabilities & CAP_UNICODE) {
1116                         flags2 |= FLAGS2_UNICODE_STRINGS;
1117                 }
1118                 if (smb1_capabilities & CAP_STATUS32) {
1119                         flags2 |= FLAGS2_32_BIT_ERROR_CODES;
1120                 }
1121                 if (smb1_capabilities & CAP_EXTENDED_SECURITY) {
1122                         flags2 |= FLAGS2_EXTENDED_SECURITY;
1123                 }
1124         }
1125
1126         flags |= additional_flags;
1127         flags &= ~clear_flags;
1128         flags2 |= additional_flags2;
1129         flags2 &= ~clear_flags2;
1130
1131         *_flags = flags;
1132         *_flags2 = flags2;
1133 }
1134
1135 static void smb1cli_req_cancel_done(struct tevent_req *subreq);
1136
1137 static bool smb1cli_req_cancel(struct tevent_req *req)
1138 {
1139         struct smbXcli_req_state *state =
1140                 tevent_req_data(req,
1141                 struct smbXcli_req_state);
1142         uint8_t flags;
1143         uint16_t flags2;
1144         uint32_t pid;
1145         uint16_t mid;
1146         struct tevent_req *subreq;
1147         NTSTATUS status;
1148
1149         flags = CVAL(state->smb1.hdr, HDR_FLG);
1150         flags2 = SVAL(state->smb1.hdr, HDR_FLG2);
1151         pid  = SVAL(state->smb1.hdr, HDR_PID);
1152         pid |= SVAL(state->smb1.hdr, HDR_PIDHIGH)<<16;
1153         mid = SVAL(state->smb1.hdr, HDR_MID);
1154
1155         subreq = smb1cli_req_create(state, state->ev,
1156                                     state->conn,
1157                                     SMBntcancel,
1158                                     flags, 0,
1159                                     flags2, 0,
1160                                     0, /* timeout */
1161                                     pid,
1162                                     state->tcon,
1163                                     state->session,
1164                                     0, NULL, /* vwv */
1165                                     0, NULL); /* bytes */
1166         if (subreq == NULL) {
1167                 return false;
1168         }
1169         smb1cli_req_set_mid(subreq, mid);
1170
1171         status = smb1cli_req_chain_submit(&subreq, 1);
1172         if (!NT_STATUS_IS_OK(status)) {
1173                 TALLOC_FREE(subreq);
1174                 return false;
1175         }
1176         smb1cli_req_set_mid(subreq, 0);
1177
1178         tevent_req_set_callback(subreq, smb1cli_req_cancel_done, NULL);
1179
1180         return true;
1181 }
1182
1183 static void smb1cli_req_cancel_done(struct tevent_req *subreq)
1184 {
1185         /* we do not care about the result */
1186         TALLOC_FREE(subreq);
1187 }
1188
1189 struct tevent_req *smb1cli_req_create(TALLOC_CTX *mem_ctx,
1190                                       struct tevent_context *ev,
1191                                       struct smbXcli_conn *conn,
1192                                       uint8_t smb_command,
1193                                       uint8_t additional_flags,
1194                                       uint8_t clear_flags,
1195                                       uint16_t additional_flags2,
1196                                       uint16_t clear_flags2,
1197                                       uint32_t timeout_msec,
1198                                       uint32_t pid,
1199                                       struct smbXcli_tcon *tcon,
1200                                       struct smbXcli_session *session,
1201                                       uint8_t wct, uint16_t *vwv,
1202                                       int iov_count,
1203                                       struct iovec *bytes_iov)
1204 {
1205         struct tevent_req *req;
1206         struct smbXcli_req_state *state;
1207         uint8_t flags = 0;
1208         uint16_t flags2 = 0;
1209         uint16_t uid = 0;
1210         uint16_t tid = 0;
1211
1212         if (iov_count > MAX_SMB_IOV) {
1213                 /*
1214                  * Should not happen :-)
1215                  */
1216                 return NULL;
1217         }
1218
1219         req = tevent_req_create(mem_ctx, &state,
1220                                 struct smbXcli_req_state);
1221         if (req == NULL) {
1222                 return NULL;
1223         }
1224         state->ev = ev;
1225         state->conn = conn;
1226         state->session = session;
1227         state->tcon = tcon;
1228
1229         if (session) {
1230                 uid = session->smb1.session_id;
1231         }
1232
1233         if (tcon) {
1234                 tid = tcon->smb1.tcon_id;
1235         }
1236
1237         state->smb1.recv_cmd = 0xFF;
1238         state->smb1.recv_status = NT_STATUS_INTERNAL_ERROR;
1239         state->smb1.recv_iov = talloc_zero_array(state, struct iovec, 3);
1240         if (state->smb1.recv_iov == NULL) {
1241                 TALLOC_FREE(req);
1242                 return NULL;
1243         }
1244
1245         smb1cli_req_flags(conn->protocol,
1246                           conn->smb1.capabilities,
1247                           smb_command,
1248                           additional_flags,
1249                           clear_flags,
1250                           &flags,
1251                           additional_flags2,
1252                           clear_flags2,
1253                           &flags2);
1254
1255         SIVAL(state->smb1.hdr, 0,           SMB_MAGIC);
1256         SCVAL(state->smb1.hdr, HDR_COM,     smb_command);
1257         SIVAL(state->smb1.hdr, HDR_RCLS,    NT_STATUS_V(NT_STATUS_OK));
1258         SCVAL(state->smb1.hdr, HDR_FLG,     flags);
1259         SSVAL(state->smb1.hdr, HDR_FLG2,    flags2);
1260         SSVAL(state->smb1.hdr, HDR_PIDHIGH, pid >> 16);
1261         SSVAL(state->smb1.hdr, HDR_TID,     tid);
1262         SSVAL(state->smb1.hdr, HDR_PID,     pid);
1263         SSVAL(state->smb1.hdr, HDR_UID,     uid);
1264         SSVAL(state->smb1.hdr, HDR_MID,     0); /* this comes later */
1265         SCVAL(state->smb1.hdr, HDR_WCT,     wct);
1266
1267         state->smb1.vwv = vwv;
1268
1269         SSVAL(state->smb1.bytecount_buf, 0, smbXcli_iov_len(bytes_iov, iov_count));
1270
1271         state->smb1.iov[0].iov_base = (void *)state->length_hdr;
1272         state->smb1.iov[0].iov_len  = sizeof(state->length_hdr);
1273         state->smb1.iov[1].iov_base = (void *)state->smb1.hdr;
1274         state->smb1.iov[1].iov_len  = sizeof(state->smb1.hdr);
1275         state->smb1.iov[2].iov_base = (void *)state->smb1.vwv;
1276         state->smb1.iov[2].iov_len  = wct * sizeof(uint16_t);
1277         state->smb1.iov[3].iov_base = (void *)state->smb1.bytecount_buf;
1278         state->smb1.iov[3].iov_len  = sizeof(uint16_t);
1279
1280         if (iov_count != 0) {
1281                 memcpy(&state->smb1.iov[4], bytes_iov,
1282                        iov_count * sizeof(*bytes_iov));
1283         }
1284         state->smb1.iov_count = iov_count + 4;
1285
1286         if (timeout_msec > 0) {
1287                 struct timeval endtime;
1288
1289                 endtime = timeval_current_ofs_msec(timeout_msec);
1290                 if (!tevent_req_set_endtime(req, ev, endtime)) {
1291                         return req;
1292                 }
1293         }
1294
1295         switch (smb_command) {
1296         case SMBtranss:
1297         case SMBtranss2:
1298         case SMBnttranss:
1299                 state->one_way = true;
1300                 break;
1301         case SMBntcancel:
1302                 state->one_way = true;
1303                 state->smb1.one_way_seqnum = true;
1304                 break;
1305         case SMBlockingX:
1306                 if ((wct == 8) &&
1307                     (CVAL(vwv+3, 0) == LOCKING_ANDX_OPLOCK_RELEASE)) {
1308                         state->one_way = true;
1309                 }
1310                 break;
1311         }
1312
1313         return req;
1314 }
1315
1316 static NTSTATUS smb1cli_conn_signv(struct smbXcli_conn *conn,
1317                                    struct iovec *iov, int iov_count,
1318                                    uint32_t *seqnum,
1319                                    bool one_way_seqnum)
1320 {
1321         TALLOC_CTX *frame = NULL;
1322         uint8_t *buf;
1323
1324         /*
1325          * Obvious optimization: Make cli_calculate_sign_mac work with struct
1326          * iovec directly. MD5Update would do that just fine.
1327          */
1328
1329         if (iov_count < 4) {
1330                 return NT_STATUS_INVALID_PARAMETER_MIX;
1331         }
1332         if (iov[0].iov_len != NBT_HDR_SIZE) {
1333                 return NT_STATUS_INVALID_PARAMETER_MIX;
1334         }
1335         if (iov[1].iov_len != (MIN_SMB_SIZE-sizeof(uint16_t))) {
1336                 return NT_STATUS_INVALID_PARAMETER_MIX;
1337         }
1338         if (iov[2].iov_len > (0xFF * sizeof(uint16_t))) {
1339                 return NT_STATUS_INVALID_PARAMETER_MIX;
1340         }
1341         if (iov[3].iov_len != sizeof(uint16_t)) {
1342                 return NT_STATUS_INVALID_PARAMETER_MIX;
1343         }
1344
1345         frame = talloc_stackframe();
1346
1347         buf = smbXcli_iov_concat(frame, &iov[1], iov_count - 1);
1348         if (buf == NULL) {
1349                 return NT_STATUS_NO_MEMORY;
1350         }
1351
1352         *seqnum = smb_signing_next_seqnum(conn->smb1.signing,
1353                                           one_way_seqnum);
1354         smb_signing_sign_pdu(conn->smb1.signing,
1355                              buf, talloc_get_size(buf),
1356                              *seqnum);
1357         memcpy(iov[1].iov_base, buf, iov[1].iov_len);
1358
1359         TALLOC_FREE(frame);
1360         return NT_STATUS_OK;
1361 }
1362
1363 static void smb1cli_req_writev_done(struct tevent_req *subreq);
1364 static NTSTATUS smb1cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
1365                                                TALLOC_CTX *tmp_mem,
1366                                                uint8_t *inbuf);
1367
1368 static NTSTATUS smb1cli_req_writev_submit(struct tevent_req *req,
1369                                           struct smbXcli_req_state *state,
1370                                           struct iovec *iov, int iov_count)
1371 {
1372         struct tevent_req *subreq;
1373         NTSTATUS status;
1374         uint8_t cmd;
1375         uint16_t mid;
1376
1377         if (!smbXcli_conn_is_connected(state->conn)) {
1378                 return NT_STATUS_CONNECTION_DISCONNECTED;
1379         }
1380
1381         if (state->conn->protocol > PROTOCOL_NT1) {
1382                 return NT_STATUS_REVISION_MISMATCH;
1383         }
1384
1385         if (iov_count < 4) {
1386                 return NT_STATUS_INVALID_PARAMETER_MIX;
1387         }
1388         if (iov[0].iov_len != NBT_HDR_SIZE) {
1389                 return NT_STATUS_INVALID_PARAMETER_MIX;
1390         }
1391         if (iov[1].iov_len != (MIN_SMB_SIZE-sizeof(uint16_t))) {
1392                 return NT_STATUS_INVALID_PARAMETER_MIX;
1393         }
1394         if (iov[2].iov_len > (0xFF * sizeof(uint16_t))) {
1395                 return NT_STATUS_INVALID_PARAMETER_MIX;
1396         }
1397         if (iov[3].iov_len != sizeof(uint16_t)) {
1398                 return NT_STATUS_INVALID_PARAMETER_MIX;
1399         }
1400
1401         cmd = CVAL(iov[1].iov_base, HDR_COM);
1402         if (cmd == SMBreadBraw) {
1403                 if (smbXcli_conn_has_async_calls(state->conn)) {
1404                         return NT_STATUS_INVALID_PARAMETER_MIX;
1405                 }
1406                 state->conn->smb1.read_braw_req = req;
1407         }
1408
1409         if (state->smb1.mid != 0) {
1410                 mid = state->smb1.mid;
1411         } else {
1412                 mid = smb1cli_alloc_mid(state->conn);
1413         }
1414         SSVAL(iov[1].iov_base, HDR_MID, mid);
1415
1416         _smb_setlen_nbt(iov[0].iov_base, smbXcli_iov_len(&iov[1], iov_count-1));
1417
1418         status = smb1cli_conn_signv(state->conn, iov, iov_count,
1419                                     &state->smb1.seqnum,
1420                                     state->smb1.one_way_seqnum);
1421
1422         if (!NT_STATUS_IS_OK(status)) {
1423                 return status;
1424         }
1425
1426         /*
1427          * If we supported multiple encrytion contexts
1428          * here we'd look up based on tid.
1429          */
1430         if (common_encryption_on(state->conn->smb1.trans_enc)) {
1431                 char *buf, *enc_buf;
1432
1433                 buf = (char *)smbXcli_iov_concat(talloc_tos(), iov, iov_count);
1434                 if (buf == NULL) {
1435                         return NT_STATUS_NO_MEMORY;
1436                 }
1437                 status = common_encrypt_buffer(state->conn->smb1.trans_enc,
1438                                                (char *)buf, &enc_buf);
1439                 TALLOC_FREE(buf);
1440                 if (!NT_STATUS_IS_OK(status)) {
1441                         DEBUG(0, ("Error in encrypting client message: %s\n",
1442                                   nt_errstr(status)));
1443                         return status;
1444                 }
1445                 buf = (char *)talloc_memdup(state, enc_buf,
1446                                             smb_len_nbt(enc_buf)+4);
1447                 SAFE_FREE(enc_buf);
1448                 if (buf == NULL) {
1449                         return NT_STATUS_NO_MEMORY;
1450                 }
1451                 iov[0].iov_base = (void *)buf;
1452                 iov[0].iov_len = talloc_get_size(buf);
1453                 iov_count = 1;
1454         }
1455
1456         if (state->conn->dispatch_incoming == NULL) {
1457                 state->conn->dispatch_incoming = smb1cli_conn_dispatch_incoming;
1458         }
1459
1460         tevent_req_set_cancel_fn(req, smbXcli_req_cancel);
1461
1462         subreq = writev_send(state, state->ev, state->conn->outgoing,
1463                              state->conn->write_fd, false, iov, iov_count);
1464         if (subreq == NULL) {
1465                 return NT_STATUS_NO_MEMORY;
1466         }
1467         tevent_req_set_callback(subreq, smb1cli_req_writev_done, req);
1468         return NT_STATUS_OK;
1469 }
1470
1471 struct tevent_req *smb1cli_req_send(TALLOC_CTX *mem_ctx,
1472                                     struct tevent_context *ev,
1473                                     struct smbXcli_conn *conn,
1474                                     uint8_t smb_command,
1475                                     uint8_t additional_flags,
1476                                     uint8_t clear_flags,
1477                                     uint16_t additional_flags2,
1478                                     uint16_t clear_flags2,
1479                                     uint32_t timeout_msec,
1480                                     uint32_t pid,
1481                                     struct smbXcli_tcon *tcon,
1482                                     struct smbXcli_session *session,
1483                                     uint8_t wct, uint16_t *vwv,
1484                                     uint32_t num_bytes,
1485                                     const uint8_t *bytes)
1486 {
1487         struct tevent_req *req;
1488         struct iovec iov;
1489         NTSTATUS status;
1490
1491         iov.iov_base = discard_const_p(void, bytes);
1492         iov.iov_len = num_bytes;
1493
1494         req = smb1cli_req_create(mem_ctx, ev, conn, smb_command,
1495                                  additional_flags, clear_flags,
1496                                  additional_flags2, clear_flags2,
1497                                  timeout_msec,
1498                                  pid, tcon, session,
1499                                  wct, vwv, 1, &iov);
1500         if (req == NULL) {
1501                 return NULL;
1502         }
1503         if (!tevent_req_is_in_progress(req)) {
1504                 return tevent_req_post(req, ev);
1505         }
1506         status = smb1cli_req_chain_submit(&req, 1);
1507         if (tevent_req_nterror(req, status)) {
1508                 return tevent_req_post(req, ev);
1509         }
1510         return req;
1511 }
1512
1513 static void smb1cli_req_writev_done(struct tevent_req *subreq)
1514 {
1515         struct tevent_req *req =
1516                 tevent_req_callback_data(subreq,
1517                 struct tevent_req);
1518         struct smbXcli_req_state *state =
1519                 tevent_req_data(req,
1520                 struct smbXcli_req_state);
1521         ssize_t nwritten;
1522         int err;
1523
1524         nwritten = writev_recv(subreq, &err);
1525         TALLOC_FREE(subreq);
1526         if (nwritten == -1) {
1527                 NTSTATUS status = map_nt_error_from_unix_common(err);
1528                 smbXcli_conn_disconnect(state->conn, status);
1529                 return;
1530         }
1531
1532         if (state->one_way) {
1533                 state->inbuf = NULL;
1534                 tevent_req_done(req);
1535                 return;
1536         }
1537
1538         if (!smbXcli_req_set_pending(req)) {
1539                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
1540                 return;
1541         }
1542 }
1543
1544 static void smbXcli_conn_received(struct tevent_req *subreq)
1545 {
1546         struct smbXcli_conn *conn =
1547                 tevent_req_callback_data(subreq,
1548                 struct smbXcli_conn);
1549         TALLOC_CTX *frame = talloc_stackframe();
1550         NTSTATUS status;
1551         uint8_t *inbuf;
1552         ssize_t received;
1553         int err;
1554
1555         if (subreq != conn->read_smb_req) {
1556                 DEBUG(1, ("Internal error: cli_smb_received called with "
1557                           "unexpected subreq\n"));
1558                 status = NT_STATUS_INTERNAL_ERROR;
1559                 smbXcli_conn_disconnect(conn, status);
1560                 TALLOC_FREE(frame);
1561                 return;
1562         }
1563         conn->read_smb_req = NULL;
1564
1565         received = read_smb_recv(subreq, frame, &inbuf, &err);
1566         TALLOC_FREE(subreq);
1567         if (received == -1) {
1568                 status = map_nt_error_from_unix_common(err);
1569                 smbXcli_conn_disconnect(conn, status);
1570                 TALLOC_FREE(frame);
1571                 return;
1572         }
1573
1574         status = conn->dispatch_incoming(conn, frame, inbuf);
1575         TALLOC_FREE(frame);
1576         if (NT_STATUS_IS_OK(status)) {
1577                 /*
1578                  * We should not do any more processing
1579                  * as the dispatch function called
1580                  * tevent_req_done().
1581                  */
1582                 return;
1583         } else if (!NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
1584                 /*
1585                  * We got an error, so notify all pending requests
1586                  */
1587                 smbXcli_conn_disconnect(conn, status);
1588                 return;
1589         }
1590
1591         /*
1592          * We got NT_STATUS_RETRY, so we may ask for a
1593          * next incoming pdu.
1594          */
1595         if (!smbXcli_conn_receive_next(conn)) {
1596                 smbXcli_conn_disconnect(conn, NT_STATUS_NO_MEMORY);
1597         }
1598 }
1599
1600 static NTSTATUS smb1cli_inbuf_parse_chain(uint8_t *buf, TALLOC_CTX *mem_ctx,
1601                                           struct iovec **piov, int *pnum_iov)
1602 {
1603         struct iovec *iov;
1604         int num_iov;
1605         size_t buflen;
1606         size_t taken;
1607         size_t remaining;
1608         uint8_t *hdr;
1609         uint8_t cmd;
1610         uint32_t wct_ofs;
1611         NTSTATUS status;
1612         size_t min_size = MIN_SMB_SIZE;
1613
1614         buflen = smb_len_nbt(buf);
1615         taken = 0;
1616
1617         hdr = buf + NBT_HDR_SIZE;
1618
1619         status = smb1cli_pull_raw_error(hdr);
1620         if (NT_STATUS_IS_ERR(status)) {
1621                 /*
1622                  * This is an ugly hack to support OS/2
1623                  * which skips the byte_count in the DATA block
1624                  * on some error responses.
1625                  *
1626                  * See bug #9096
1627                  */
1628                 min_size -= sizeof(uint16_t);
1629         }
1630
1631         if (buflen < min_size) {
1632                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
1633         }
1634
1635         /*
1636          * This returns iovec elements in the following order:
1637          *
1638          * - SMB header
1639          *
1640          * - Parameter Block
1641          * - Data Block
1642          *
1643          * - Parameter Block
1644          * - Data Block
1645          *
1646          * - Parameter Block
1647          * - Data Block
1648          */
1649         num_iov = 1;
1650
1651         iov = talloc_array(mem_ctx, struct iovec, num_iov);
1652         if (iov == NULL) {
1653                 return NT_STATUS_NO_MEMORY;
1654         }
1655         iov[0].iov_base = hdr;
1656         iov[0].iov_len = HDR_WCT;
1657         taken += HDR_WCT;
1658
1659         cmd = CVAL(hdr, HDR_COM);
1660         wct_ofs = HDR_WCT;
1661
1662         while (true) {
1663                 size_t len = buflen - taken;
1664                 struct iovec *cur;
1665                 struct iovec *iov_tmp;
1666                 uint8_t wct;
1667                 uint32_t bcc_ofs;
1668                 uint16_t bcc;
1669                 size_t needed;
1670
1671                 /*
1672                  * we need at least WCT
1673                  */
1674                 needed = sizeof(uint8_t);
1675                 if (len < needed) {
1676                         DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1677                                    __location__, (int)len, (int)needed));
1678                         goto inval;
1679                 }
1680
1681                 /*
1682                  * Now we check if the specified words are there
1683                  */
1684                 wct = CVAL(hdr, wct_ofs);
1685                 needed += wct * sizeof(uint16_t);
1686                 if (len < needed) {
1687                         DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1688                                    __location__, (int)len, (int)needed));
1689                         goto inval;
1690                 }
1691
1692                 if ((num_iov == 1) &&
1693                     (len == needed) &&
1694                     NT_STATUS_IS_ERR(status))
1695                 {
1696                         /*
1697                          * This is an ugly hack to support OS/2
1698                          * which skips the byte_count in the DATA block
1699                          * on some error responses.
1700                          *
1701                          * See bug #9096
1702                          */
1703                         iov_tmp = talloc_realloc(mem_ctx, iov, struct iovec,
1704                                                  num_iov + 2);
1705                         if (iov_tmp == NULL) {
1706                                 TALLOC_FREE(iov);
1707                                 return NT_STATUS_NO_MEMORY;
1708                         }
1709                         iov = iov_tmp;
1710                         cur = &iov[num_iov];
1711                         num_iov += 2;
1712
1713                         cur[0].iov_len = 0;
1714                         cur[0].iov_base = hdr + (wct_ofs + sizeof(uint8_t));
1715                         cur[1].iov_len = 0;
1716                         cur[1].iov_base = cur[0].iov_base;
1717
1718                         taken += needed;
1719                         break;
1720                 }
1721
1722                 /*
1723                  * we need at least BCC
1724                  */
1725                 needed += sizeof(uint16_t);
1726                 if (len < needed) {
1727                         DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1728                                    __location__, (int)len, (int)needed));
1729                         goto inval;
1730                 }
1731
1732                 /*
1733                  * Now we check if the specified bytes are there
1734                  */
1735                 bcc_ofs = wct_ofs + sizeof(uint8_t) + wct * sizeof(uint16_t);
1736                 bcc = SVAL(hdr, bcc_ofs);
1737                 needed += bcc * sizeof(uint8_t);
1738                 if (len < needed) {
1739                         DEBUG(10, ("%s: %d bytes left, expected at least %d\n",
1740                                    __location__, (int)len, (int)needed));
1741                         goto inval;
1742                 }
1743
1744                 /*
1745                  * we allocate 2 iovec structures for words and bytes
1746                  */
1747                 iov_tmp = talloc_realloc(mem_ctx, iov, struct iovec,
1748                                          num_iov + 2);
1749                 if (iov_tmp == NULL) {
1750                         TALLOC_FREE(iov);
1751                         return NT_STATUS_NO_MEMORY;
1752                 }
1753                 iov = iov_tmp;
1754                 cur = &iov[num_iov];
1755                 num_iov += 2;
1756
1757                 cur[0].iov_len = wct * sizeof(uint16_t);
1758                 cur[0].iov_base = hdr + (wct_ofs + sizeof(uint8_t));
1759                 cur[1].iov_len = bcc * sizeof(uint8_t);
1760                 cur[1].iov_base = hdr + (bcc_ofs + sizeof(uint16_t));
1761
1762                 taken += needed;
1763
1764                 if (!smb1cli_is_andx_req(cmd)) {
1765                         /*
1766                          * If the current command does not have AndX chanining
1767                          * we are done.
1768                          */
1769                         break;
1770                 }
1771
1772                 if (wct == 0 && bcc == 0) {
1773                         /*
1774                          * An empty response also ends the chain,
1775                          * most likely with an error.
1776                          */
1777                         break;
1778                 }
1779
1780                 if (wct < 2) {
1781                         DEBUG(10, ("%s: wct[%d] < 2 for cmd[0x%02X]\n",
1782                                    __location__, (int)wct, (int)cmd));
1783                         goto inval;
1784                 }
1785                 cmd = CVAL(cur[0].iov_base, 0);
1786                 if (cmd == 0xFF) {
1787                         /*
1788                          * If it is the end of the chain we are also done.
1789                          */
1790                         break;
1791                 }
1792                 wct_ofs = SVAL(cur[0].iov_base, 2);
1793
1794                 if (wct_ofs < taken) {
1795                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
1796                 }
1797                 if (wct_ofs > buflen) {
1798                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
1799                 }
1800
1801                 /*
1802                  * we consumed everything up to the start of the next
1803                  * parameter block.
1804                  */
1805                 taken = wct_ofs;
1806         }
1807
1808         remaining = buflen - taken;
1809
1810         if (remaining > 0 && num_iov >= 3) {
1811                 /*
1812                  * The last DATA block gets the remaining
1813                  * bytes, this is needed to support
1814                  * CAP_LARGE_WRITEX and CAP_LARGE_READX.
1815                  */
1816                 iov[num_iov-1].iov_len += remaining;
1817         }
1818
1819         *piov = iov;
1820         *pnum_iov = num_iov;
1821         return NT_STATUS_OK;
1822
1823 inval:
1824         TALLOC_FREE(iov);
1825         return NT_STATUS_INVALID_NETWORK_RESPONSE;
1826 }
1827
1828 static NTSTATUS smb1cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
1829                                                TALLOC_CTX *tmp_mem,
1830                                                uint8_t *inbuf)
1831 {
1832         struct tevent_req *req;
1833         struct smbXcli_req_state *state;
1834         NTSTATUS status;
1835         size_t num_pending;
1836         size_t i;
1837         uint8_t cmd;
1838         uint16_t mid;
1839         bool oplock_break;
1840         uint8_t *inhdr = inbuf + NBT_HDR_SIZE;
1841         size_t len = smb_len_nbt(inbuf);
1842         struct iovec *iov = NULL;
1843         int num_iov = 0;
1844         struct tevent_req **chain = NULL;
1845         size_t num_chained = 0;
1846         size_t num_responses = 0;
1847
1848         if (conn->smb1.read_braw_req != NULL) {
1849                 req = conn->smb1.read_braw_req;
1850                 conn->smb1.read_braw_req = NULL;
1851                 state = tevent_req_data(req, struct smbXcli_req_state);
1852
1853                 smbXcli_req_unset_pending(req);
1854
1855                 if (state->smb1.recv_iov == NULL) {
1856                         /*
1857                          * For requests with more than
1858                          * one response, we have to readd the
1859                          * recv_iov array.
1860                          */
1861                         state->smb1.recv_iov = talloc_zero_array(state,
1862                                                                  struct iovec,
1863                                                                  3);
1864                         if (tevent_req_nomem(state->smb1.recv_iov, req)) {
1865                                 return NT_STATUS_OK;
1866                         }
1867                 }
1868
1869                 state->smb1.recv_iov[0].iov_base = (void *)(inhdr);
1870                 state->smb1.recv_iov[0].iov_len = len;
1871                 ZERO_STRUCT(state->smb1.recv_iov[1]);
1872                 ZERO_STRUCT(state->smb1.recv_iov[2]);
1873
1874                 state->smb1.recv_cmd = SMBreadBraw;
1875                 state->smb1.recv_status = NT_STATUS_OK;
1876                 state->inbuf = talloc_move(state->smb1.recv_iov, &inbuf);
1877
1878                 tevent_req_done(req);
1879                 return NT_STATUS_OK;
1880         }
1881
1882         if ((IVAL(inhdr, 0) != SMB_MAGIC) /* 0xFF"SMB" */
1883             && (SVAL(inhdr, 0) != 0x45ff)) /* 0xFF"E" */ {
1884                 DEBUG(10, ("Got non-SMB PDU\n"));
1885                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
1886         }
1887
1888         /*
1889          * If we supported multiple encrytion contexts
1890          * here we'd look up based on tid.
1891          */
1892         if (common_encryption_on(conn->smb1.trans_enc)
1893             && (CVAL(inbuf, 0) == 0)) {
1894                 uint16_t enc_ctx_num;
1895
1896                 status = get_enc_ctx_num(inbuf, &enc_ctx_num);
1897                 if (!NT_STATUS_IS_OK(status)) {
1898                         DEBUG(10, ("get_enc_ctx_num returned %s\n",
1899                                    nt_errstr(status)));
1900                         return status;
1901                 }
1902
1903                 if (enc_ctx_num != conn->smb1.trans_enc->enc_ctx_num) {
1904                         DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
1905                                    enc_ctx_num,
1906                                    conn->smb1.trans_enc->enc_ctx_num));
1907                         return NT_STATUS_INVALID_HANDLE;
1908                 }
1909
1910                 status = common_decrypt_buffer(conn->smb1.trans_enc,
1911                                                (char *)inbuf);
1912                 if (!NT_STATUS_IS_OK(status)) {
1913                         DEBUG(10, ("common_decrypt_buffer returned %s\n",
1914                                    nt_errstr(status)));
1915                         return status;
1916                 }
1917                 inhdr = inbuf + NBT_HDR_SIZE;
1918                 len = smb_len_nbt(inbuf);
1919         }
1920
1921         mid = SVAL(inhdr, HDR_MID);
1922         num_pending = talloc_array_length(conn->pending);
1923
1924         for (i=0; i<num_pending; i++) {
1925                 if (mid == smb1cli_req_mid(conn->pending[i])) {
1926                         break;
1927                 }
1928         }
1929         if (i == num_pending) {
1930                 /* Dump unexpected reply */
1931                 return NT_STATUS_RETRY;
1932         }
1933
1934         oplock_break = false;
1935
1936         if (mid == 0xffff) {
1937                 /*
1938                  * Paranoia checks that this is really an oplock break request.
1939                  */
1940                 oplock_break = (len == 51); /* hdr + 8 words */
1941                 oplock_break &= ((CVAL(inhdr, HDR_FLG) & FLAG_REPLY) == 0);
1942                 oplock_break &= (CVAL(inhdr, HDR_COM) == SMBlockingX);
1943                 oplock_break &= (SVAL(inhdr, HDR_VWV+VWV(6)) == 0);
1944                 oplock_break &= (SVAL(inhdr, HDR_VWV+VWV(7)) == 0);
1945
1946                 if (!oplock_break) {
1947                         /* Dump unexpected reply */
1948                         return NT_STATUS_RETRY;
1949                 }
1950         }
1951
1952         req = conn->pending[i];
1953         state = tevent_req_data(req, struct smbXcli_req_state);
1954
1955         if (!oplock_break /* oplock breaks are not signed */
1956             && !smb_signing_check_pdu(conn->smb1.signing,
1957                                       inhdr, len, state->smb1.seqnum+1)) {
1958                 DEBUG(10, ("cli_check_sign_mac failed\n"));
1959                 return NT_STATUS_ACCESS_DENIED;
1960         }
1961
1962         status = smb1cli_inbuf_parse_chain(inbuf, tmp_mem,
1963                                            &iov, &num_iov);
1964         if (!NT_STATUS_IS_OK(status)) {
1965                 DEBUG(10,("smb1cli_inbuf_parse_chain - %s\n",
1966                           nt_errstr(status)));
1967                 return status;
1968         }
1969
1970         cmd = CVAL(inhdr, HDR_COM);
1971         status = smb1cli_pull_raw_error(inhdr);
1972
1973         if (state->smb1.chained_requests == NULL) {
1974                 if (num_iov != 3) {
1975                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
1976                 }
1977
1978                 smbXcli_req_unset_pending(req);
1979
1980                 if (state->smb1.recv_iov == NULL) {
1981                         /*
1982                          * For requests with more than
1983                          * one response, we have to readd the
1984                          * recv_iov array.
1985                          */
1986                         state->smb1.recv_iov = talloc_zero_array(state,
1987                                                                  struct iovec,
1988                                                                  3);
1989                         if (tevent_req_nomem(state->smb1.recv_iov, req)) {
1990                                 return NT_STATUS_OK;
1991                         }
1992                 }
1993
1994                 state->smb1.recv_cmd = cmd;
1995                 state->smb1.recv_status = status;
1996                 state->inbuf = talloc_move(state->smb1.recv_iov, &inbuf);
1997
1998                 state->smb1.recv_iov[0] = iov[0];
1999                 state->smb1.recv_iov[1] = iov[1];
2000                 state->smb1.recv_iov[2] = iov[2];
2001
2002                 if (talloc_array_length(conn->pending) == 0) {
2003                         tevent_req_done(req);
2004                         return NT_STATUS_OK;
2005                 }
2006
2007                 tevent_req_defer_callback(req, state->ev);
2008                 tevent_req_done(req);
2009                 return NT_STATUS_RETRY;
2010         }
2011
2012         chain = talloc_move(tmp_mem, &state->smb1.chained_requests);
2013         num_chained = talloc_array_length(chain);
2014         num_responses = (num_iov - 1)/2;
2015
2016         if (num_responses > num_chained) {
2017                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2018         }
2019
2020         for (i=0; i<num_chained; i++) {
2021                 size_t iov_idx = 1 + (i*2);
2022                 struct iovec *cur = &iov[iov_idx];
2023                 uint8_t *inbuf_ref;
2024
2025                 req = chain[i];
2026                 state = tevent_req_data(req, struct smbXcli_req_state);
2027
2028                 smbXcli_req_unset_pending(req);
2029
2030                 /*
2031                  * as we finish multiple requests here
2032                  * we need to defer the callbacks as
2033                  * they could destroy our current stack state.
2034                  */
2035                 tevent_req_defer_callback(req, state->ev);
2036
2037                 if (i >= num_responses) {
2038                         tevent_req_nterror(req, NT_STATUS_REQUEST_ABORTED);
2039                         continue;
2040                 }
2041
2042                 if (state->smb1.recv_iov == NULL) {
2043                         /*
2044                          * For requests with more than
2045                          * one response, we have to readd the
2046                          * recv_iov array.
2047                          */
2048                         state->smb1.recv_iov = talloc_zero_array(state,
2049                                                                  struct iovec,
2050                                                                  3);
2051                         if (tevent_req_nomem(state->smb1.recv_iov, req)) {
2052                                 continue;
2053                         }
2054                 }
2055
2056                 state->smb1.recv_cmd = cmd;
2057
2058                 if (i == (num_responses - 1)) {
2059                         /*
2060                          * The last request in the chain gets the status
2061                          */
2062                         state->smb1.recv_status = status;
2063                 } else {
2064                         cmd = CVAL(cur[0].iov_base, 0);
2065                         state->smb1.recv_status = NT_STATUS_OK;
2066                 }
2067
2068                 state->inbuf = inbuf;
2069
2070                 /*
2071                  * Note: here we use talloc_reference() in a way
2072                  *       that does not expose it to the caller.
2073                  */
2074                 inbuf_ref = talloc_reference(state->smb1.recv_iov, inbuf);
2075                 if (tevent_req_nomem(inbuf_ref, req)) {
2076                         continue;
2077                 }
2078
2079                 /* copy the related buffers */
2080                 state->smb1.recv_iov[0] = iov[0];
2081                 state->smb1.recv_iov[1] = cur[0];
2082                 state->smb1.recv_iov[2] = cur[1];
2083
2084                 tevent_req_done(req);
2085         }
2086
2087         return NT_STATUS_RETRY;
2088 }
2089
2090 NTSTATUS smb1cli_req_recv(struct tevent_req *req,
2091                           TALLOC_CTX *mem_ctx,
2092                           struct iovec **piov,
2093                           uint8_t **phdr,
2094                           uint8_t *pwct,
2095                           uint16_t **pvwv,
2096                           uint32_t *pvwv_offset,
2097                           uint32_t *pnum_bytes,
2098                           uint8_t **pbytes,
2099                           uint32_t *pbytes_offset,
2100                           uint8_t **pinbuf,
2101                           const struct smb1cli_req_expected_response *expected,
2102                           size_t num_expected)
2103 {
2104         struct smbXcli_req_state *state =
2105                 tevent_req_data(req,
2106                 struct smbXcli_req_state);
2107         NTSTATUS status = NT_STATUS_OK;
2108         struct iovec *recv_iov = NULL;
2109         uint8_t *hdr = NULL;
2110         uint8_t wct = 0;
2111         uint32_t vwv_offset = 0;
2112         uint16_t *vwv = NULL;
2113         uint32_t num_bytes = 0;
2114         uint32_t bytes_offset = 0;
2115         uint8_t *bytes = NULL;
2116         size_t i;
2117         bool found_status = false;
2118         bool found_size = false;
2119
2120         if (piov != NULL) {
2121                 *piov = NULL;
2122         }
2123         if (phdr != NULL) {
2124                 *phdr = 0;
2125         }
2126         if (pwct != NULL) {
2127                 *pwct = 0;
2128         }
2129         if (pvwv != NULL) {
2130                 *pvwv = NULL;
2131         }
2132         if (pvwv_offset != NULL) {
2133                 *pvwv_offset = 0;
2134         }
2135         if (pnum_bytes != NULL) {
2136                 *pnum_bytes = 0;
2137         }
2138         if (pbytes != NULL) {
2139                 *pbytes = NULL;
2140         }
2141         if (pbytes_offset != NULL) {
2142                 *pbytes_offset = 0;
2143         }
2144         if (pinbuf != NULL) {
2145                 *pinbuf = NULL;
2146         }
2147
2148         if (state->inbuf != NULL) {
2149                 recv_iov = state->smb1.recv_iov;
2150                 state->smb1.recv_iov = NULL;
2151                 if (state->smb1.recv_cmd != SMBreadBraw) {
2152                         hdr = (uint8_t *)recv_iov[0].iov_base;
2153                         wct = recv_iov[1].iov_len/2;
2154                         vwv = (uint16_t *)recv_iov[1].iov_base;
2155                         vwv_offset = PTR_DIFF(vwv, hdr);
2156                         num_bytes = recv_iov[2].iov_len;
2157                         bytes = (uint8_t *)recv_iov[2].iov_base;
2158                         bytes_offset = PTR_DIFF(bytes, hdr);
2159                 }
2160         }
2161
2162         if (tevent_req_is_nterror(req, &status)) {
2163                 for (i=0; i < num_expected; i++) {
2164                         if (NT_STATUS_EQUAL(status, expected[i].status)) {
2165                                 found_status = true;
2166                                 break;
2167                         }
2168                 }
2169
2170                 if (found_status) {
2171                         return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
2172                 }
2173
2174                 return status;
2175         }
2176
2177         if (num_expected == 0) {
2178                 found_status = true;
2179                 found_size = true;
2180         }
2181
2182         status = state->smb1.recv_status;
2183
2184         for (i=0; i < num_expected; i++) {
2185                 if (!NT_STATUS_EQUAL(status, expected[i].status)) {
2186                         continue;
2187                 }
2188
2189                 found_status = true;
2190                 if (expected[i].wct == 0) {
2191                         found_size = true;
2192                         break;
2193                 }
2194
2195                 if (expected[i].wct == wct) {
2196                         found_size = true;
2197                         break;
2198                 }
2199         }
2200
2201         if (!found_status) {
2202                 return status;
2203         }
2204
2205         if (!found_size) {
2206                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
2207         }
2208
2209         if (piov != NULL) {
2210                 *piov = talloc_move(mem_ctx, &recv_iov);
2211         }
2212
2213         if (phdr != NULL) {
2214                 *phdr = hdr;
2215         }
2216         if (pwct != NULL) {
2217                 *pwct = wct;
2218         }
2219         if (pvwv != NULL) {
2220                 *pvwv = vwv;
2221         }
2222         if (pvwv_offset != NULL) {
2223                 *pvwv_offset = vwv_offset;
2224         }
2225         if (pnum_bytes != NULL) {
2226                 *pnum_bytes = num_bytes;
2227         }
2228         if (pbytes != NULL) {
2229                 *pbytes = bytes;
2230         }
2231         if (pbytes_offset != NULL) {
2232                 *pbytes_offset = bytes_offset;
2233         }
2234         if (pinbuf != NULL) {
2235                 *pinbuf = state->inbuf;
2236         }
2237
2238         return status;
2239 }
2240
2241 size_t smb1cli_req_wct_ofs(struct tevent_req **reqs, int num_reqs)
2242 {
2243         size_t wct_ofs;
2244         int i;
2245
2246         wct_ofs = HDR_WCT;
2247
2248         for (i=0; i<num_reqs; i++) {
2249                 struct smbXcli_req_state *state;
2250                 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2251                 wct_ofs += smbXcli_iov_len(state->smb1.iov+2,
2252                                            state->smb1.iov_count-2);
2253                 wct_ofs = (wct_ofs + 3) & ~3;
2254         }
2255         return wct_ofs;
2256 }
2257
2258 NTSTATUS smb1cli_req_chain_submit(struct tevent_req **reqs, int num_reqs)
2259 {
2260         struct smbXcli_req_state *first_state =
2261                 tevent_req_data(reqs[0],
2262                 struct smbXcli_req_state);
2263         struct smbXcli_req_state *state;
2264         size_t wct_offset;
2265         size_t chain_padding = 0;
2266         int i, iovlen;
2267         struct iovec *iov = NULL;
2268         struct iovec *this_iov;
2269         NTSTATUS status;
2270         size_t nbt_len;
2271
2272         if (num_reqs == 1) {
2273                 return smb1cli_req_writev_submit(reqs[0], first_state,
2274                                                  first_state->smb1.iov,
2275                                                  first_state->smb1.iov_count);
2276         }
2277
2278         iovlen = 0;
2279         for (i=0; i<num_reqs; i++) {
2280                 if (!tevent_req_is_in_progress(reqs[i])) {
2281                         return NT_STATUS_INTERNAL_ERROR;
2282                 }
2283
2284                 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2285
2286                 if (state->smb1.iov_count < 4) {
2287                         return NT_STATUS_INVALID_PARAMETER_MIX;
2288                 }
2289
2290                 if (i == 0) {
2291                         /*
2292                          * The NBT and SMB header
2293                          */
2294                         iovlen += 2;
2295                 } else {
2296                         /*
2297                          * Chain padding
2298                          */
2299                         iovlen += 1;
2300                 }
2301
2302                 /*
2303                  * words and bytes
2304                  */
2305                 iovlen += state->smb1.iov_count - 2;
2306         }
2307
2308         iov = talloc_zero_array(first_state, struct iovec, iovlen);
2309         if (iov == NULL) {
2310                 return NT_STATUS_NO_MEMORY;
2311         }
2312
2313         first_state->smb1.chained_requests = (struct tevent_req **)talloc_memdup(
2314                 first_state, reqs, sizeof(*reqs) * num_reqs);
2315         if (first_state->smb1.chained_requests == NULL) {
2316                 TALLOC_FREE(iov);
2317                 return NT_STATUS_NO_MEMORY;
2318         }
2319
2320         wct_offset = HDR_WCT;
2321         this_iov = iov;
2322
2323         for (i=0; i<num_reqs; i++) {
2324                 size_t next_padding = 0;
2325                 uint16_t *vwv;
2326
2327                 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2328
2329                 if (i < num_reqs-1) {
2330                         if (!smb1cli_is_andx_req(CVAL(state->smb1.hdr, HDR_COM))
2331                             || CVAL(state->smb1.hdr, HDR_WCT) < 2) {
2332                                 TALLOC_FREE(iov);
2333                                 TALLOC_FREE(first_state->smb1.chained_requests);
2334                                 return NT_STATUS_INVALID_PARAMETER_MIX;
2335                         }
2336                 }
2337
2338                 wct_offset += smbXcli_iov_len(state->smb1.iov+2,
2339                                               state->smb1.iov_count-2) + 1;
2340                 if ((wct_offset % 4) != 0) {
2341                         next_padding = 4 - (wct_offset % 4);
2342                 }
2343                 wct_offset += next_padding;
2344                 vwv = state->smb1.vwv;
2345
2346                 if (i < num_reqs-1) {
2347                         struct smbXcli_req_state *next_state =
2348                                 tevent_req_data(reqs[i+1],
2349                                 struct smbXcli_req_state);
2350                         SCVAL(vwv+0, 0, CVAL(next_state->smb1.hdr, HDR_COM));
2351                         SCVAL(vwv+0, 1, 0);
2352                         SSVAL(vwv+1, 0, wct_offset);
2353                 } else if (smb1cli_is_andx_req(CVAL(state->smb1.hdr, HDR_COM))) {
2354                         /* properly end the chain */
2355                         SCVAL(vwv+0, 0, 0xff);
2356                         SCVAL(vwv+0, 1, 0xff);
2357                         SSVAL(vwv+1, 0, 0);
2358                 }
2359
2360                 if (i == 0) {
2361                         /*
2362                          * The NBT and SMB header
2363                          */
2364                         this_iov[0] = state->smb1.iov[0];
2365                         this_iov[1] = state->smb1.iov[1];
2366                         this_iov += 2;
2367                 } else {
2368                         /*
2369                          * This one is a bit subtle. We have to add
2370                          * chain_padding bytes between the requests, and we
2371                          * have to also include the wct field of the
2372                          * subsequent requests. We use the subsequent header
2373                          * for the padding, it contains the wct field in its
2374                          * last byte.
2375                          */
2376                         this_iov[0].iov_len = chain_padding+1;
2377                         this_iov[0].iov_base = (void *)&state->smb1.hdr[
2378                                 sizeof(state->smb1.hdr) - this_iov[0].iov_len];
2379                         memset(this_iov[0].iov_base, 0, this_iov[0].iov_len-1);
2380                         this_iov += 1;
2381                 }
2382
2383                 /*
2384                  * copy the words and bytes
2385                  */
2386                 memcpy(this_iov, state->smb1.iov+2,
2387                        sizeof(struct iovec) * (state->smb1.iov_count-2));
2388                 this_iov += state->smb1.iov_count - 2;
2389                 chain_padding = next_padding;
2390         }
2391
2392         nbt_len = smbXcli_iov_len(&iov[1], iovlen-1);
2393         if (nbt_len > first_state->conn->smb1.max_xmit) {
2394                 TALLOC_FREE(iov);
2395                 TALLOC_FREE(first_state->smb1.chained_requests);
2396                 return NT_STATUS_INVALID_PARAMETER_MIX;
2397         }
2398
2399         status = smb1cli_req_writev_submit(reqs[0], first_state, iov, iovlen);
2400         if (!NT_STATUS_IS_OK(status)) {
2401                 TALLOC_FREE(iov);
2402                 TALLOC_FREE(first_state->smb1.chained_requests);
2403                 return status;
2404         }
2405
2406         return NT_STATUS_OK;
2407 }
2408
2409 bool smbXcli_conn_has_async_calls(struct smbXcli_conn *conn)
2410 {
2411         return ((tevent_queue_length(conn->outgoing) != 0)
2412                 || (talloc_array_length(conn->pending) != 0));
2413 }
2414
2415 uint32_t smb2cli_conn_server_capabilities(struct smbXcli_conn *conn)
2416 {
2417         return conn->smb2.server.capabilities;
2418 }
2419
2420 uint16_t smb2cli_conn_server_security_mode(struct smbXcli_conn *conn)
2421 {
2422         return conn->smb2.server.security_mode;
2423 }
2424
2425 uint32_t smb2cli_conn_max_trans_size(struct smbXcli_conn *conn)
2426 {
2427         return conn->smb2.server.max_trans_size;
2428 }
2429
2430 uint32_t smb2cli_conn_max_read_size(struct smbXcli_conn *conn)
2431 {
2432         return conn->smb2.server.max_read_size;
2433 }
2434
2435 uint32_t smb2cli_conn_max_write_size(struct smbXcli_conn *conn)
2436 {
2437         return conn->smb2.server.max_write_size;
2438 }
2439
2440 void smb2cli_conn_set_max_credits(struct smbXcli_conn *conn,
2441                                   uint16_t max_credits)
2442 {
2443         conn->smb2.max_credits = max_credits;
2444 }
2445
2446 static void smb2cli_req_cancel_done(struct tevent_req *subreq);
2447
2448 static bool smb2cli_req_cancel(struct tevent_req *req)
2449 {
2450         struct smbXcli_req_state *state =
2451                 tevent_req_data(req,
2452                 struct smbXcli_req_state);
2453         uint32_t flags = IVAL(state->smb2.hdr, SMB2_HDR_FLAGS);
2454         uint64_t mid = BVAL(state->smb2.hdr, SMB2_HDR_MESSAGE_ID);
2455         uint64_t aid = BVAL(state->smb2.hdr, SMB2_HDR_ASYNC_ID);
2456         struct smbXcli_tcon *tcon = state->tcon;
2457         struct smbXcli_session *session = state->session;
2458         uint8_t *fixed = state->smb2.pad;
2459         uint16_t fixed_len = 4;
2460         struct tevent_req *subreq;
2461         struct smbXcli_req_state *substate;
2462         NTSTATUS status;
2463
2464         SSVAL(fixed, 0, 0x04);
2465         SSVAL(fixed, 2, 0);
2466
2467         subreq = smb2cli_req_create(state, state->ev,
2468                                     state->conn,
2469                                     SMB2_OP_CANCEL,
2470                                     flags, 0,
2471                                     0, /* timeout */
2472                                     tcon, session,
2473                                     fixed, fixed_len,
2474                                     NULL, 0);
2475         if (subreq == NULL) {
2476                 return false;
2477         }
2478         substate = tevent_req_data(subreq, struct smbXcli_req_state);
2479
2480         /*
2481          * clear everything but the SMB2_HDR_FLAG_ASYNC flag
2482          * e.g. if SMB2_HDR_FLAG_CHAINED is set we get INVALID_PARAMETER back
2483          */
2484         flags &= SMB2_HDR_FLAG_ASYNC;
2485
2486         if (flags & SMB2_HDR_FLAG_ASYNC) {
2487                 mid = 0;
2488         }
2489
2490         SIVAL(substate->smb2.hdr, SMB2_HDR_FLAGS, flags);
2491         SBVAL(substate->smb2.hdr, SMB2_HDR_MESSAGE_ID, mid);
2492         SBVAL(substate->smb2.hdr, SMB2_HDR_ASYNC_ID, aid);
2493
2494         status = smb2cli_req_compound_submit(&subreq, 1);
2495         if (!NT_STATUS_IS_OK(status)) {
2496                 TALLOC_FREE(subreq);
2497                 return false;
2498         }
2499
2500         tevent_req_set_callback(subreq, smb2cli_req_cancel_done, NULL);
2501
2502         return true;
2503 }
2504
2505 static void smb2cli_req_cancel_done(struct tevent_req *subreq)
2506 {
2507         /* we do not care about the result */
2508         TALLOC_FREE(subreq);
2509 }
2510
2511 struct tevent_req *smb2cli_req_create(TALLOC_CTX *mem_ctx,
2512                                       struct tevent_context *ev,
2513                                       struct smbXcli_conn *conn,
2514                                       uint16_t cmd,
2515                                       uint32_t additional_flags,
2516                                       uint32_t clear_flags,
2517                                       uint32_t timeout_msec,
2518                                       struct smbXcli_tcon *tcon,
2519                                       struct smbXcli_session *session,
2520                                       const uint8_t *fixed,
2521                                       uint16_t fixed_len,
2522                                       const uint8_t *dyn,
2523                                       uint32_t dyn_len)
2524 {
2525         struct tevent_req *req;
2526         struct smbXcli_req_state *state;
2527         uint32_t flags = 0;
2528         uint32_t tid = 0;
2529         uint64_t uid = 0;
2530         bool use_channel_sequence = false;
2531         uint16_t channel_sequence = 0;
2532
2533         req = tevent_req_create(mem_ctx, &state,
2534                                 struct smbXcli_req_state);
2535         if (req == NULL) {
2536                 return NULL;
2537         }
2538
2539         state->ev = ev;
2540         state->conn = conn;
2541         state->session = session;
2542         state->tcon = tcon;
2543
2544         if (conn->smb2.server.capabilities & SMB2_CAP_PERSISTENT_HANDLES) {
2545                 use_channel_sequence = true;
2546         } else if (conn->smb2.server.capabilities & SMB2_CAP_MULTI_CHANNEL) {
2547                 use_channel_sequence = true;
2548         }
2549
2550         if (session) {
2551                 uid = session->smb2->session_id;
2552
2553                 if (use_channel_sequence) {
2554                         channel_sequence = session->smb2->channel_sequence;
2555                 }
2556
2557                 state->smb2.should_sign = session->smb2->should_sign;
2558                 state->smb2.should_encrypt = session->smb2->should_encrypt;
2559
2560                 if (cmd == SMB2_OP_SESSSETUP &&
2561                     session->smb2->signing_key.length != 0) {
2562                         state->smb2.should_sign = true;
2563                 }
2564
2565                 if (cmd == SMB2_OP_SESSSETUP &&
2566                     session->smb2_channel.signing_key.length == 0) {
2567                         state->smb2.should_encrypt = false;
2568                 }
2569         }
2570
2571         if (tcon) {
2572                 tid = tcon->smb2.tcon_id;
2573
2574                 if (tcon->smb2.should_encrypt) {
2575                         state->smb2.should_encrypt = true;
2576                 }
2577         }
2578
2579         if (state->smb2.should_encrypt) {
2580                 state->smb2.should_sign = false;
2581         }
2582
2583         state->smb2.recv_iov = talloc_zero_array(state, struct iovec, 3);
2584         if (state->smb2.recv_iov == NULL) {
2585                 TALLOC_FREE(req);
2586                 return NULL;
2587         }
2588
2589         flags |= additional_flags;
2590         flags &= ~clear_flags;
2591
2592         state->smb2.fixed = fixed;
2593         state->smb2.fixed_len = fixed_len;
2594         state->smb2.dyn = dyn;
2595         state->smb2.dyn_len = dyn_len;
2596
2597         if (state->smb2.should_encrypt) {
2598                 SIVAL(state->smb2.transform, SMB2_TF_PROTOCOL_ID, SMB2_TF_MAGIC);
2599                 SBVAL(state->smb2.transform, SMB2_TF_SESSION_ID, uid);
2600         }
2601
2602         SIVAL(state->smb2.hdr, SMB2_HDR_PROTOCOL_ID,    SMB2_MAGIC);
2603         SSVAL(state->smb2.hdr, SMB2_HDR_LENGTH,         SMB2_HDR_BODY);
2604         SSVAL(state->smb2.hdr, SMB2_HDR_OPCODE,         cmd);
2605         SSVAL(state->smb2.hdr, SMB2_HDR_CHANNEL_SEQUENCE, channel_sequence);
2606         SIVAL(state->smb2.hdr, SMB2_HDR_FLAGS,          flags);
2607         SIVAL(state->smb2.hdr, SMB2_HDR_PID,            0); /* reserved */
2608         SIVAL(state->smb2.hdr, SMB2_HDR_TID,            tid);
2609         SBVAL(state->smb2.hdr, SMB2_HDR_SESSION_ID,     uid);
2610
2611         switch (cmd) {
2612         case SMB2_OP_CANCEL:
2613                 state->one_way = true;
2614                 break;
2615         case SMB2_OP_BREAK:
2616                 /*
2617                  * If this is a dummy request, it will have
2618                  * UINT64_MAX as message id.
2619                  * If we send on break acknowledgement,
2620                  * this gets overwritten later.
2621                  */
2622                 SBVAL(state->smb2.hdr, SMB2_HDR_MESSAGE_ID, UINT64_MAX);
2623                 break;
2624         }
2625
2626         if (timeout_msec > 0) {
2627                 struct timeval endtime;
2628
2629                 endtime = timeval_current_ofs_msec(timeout_msec);
2630                 if (!tevent_req_set_endtime(req, ev, endtime)) {
2631                         return req;
2632                 }
2633         }
2634
2635         return req;
2636 }
2637
2638 void smb2cli_req_set_notify_async(struct tevent_req *req)
2639 {
2640         struct smbXcli_req_state *state =
2641                 tevent_req_data(req,
2642                 struct smbXcli_req_state);
2643
2644         state->smb2.notify_async = true;
2645 }
2646
2647 static void smb2cli_req_writev_done(struct tevent_req *subreq);
2648 static NTSTATUS smb2cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
2649                                                TALLOC_CTX *tmp_mem,
2650                                                uint8_t *inbuf);
2651
2652 NTSTATUS smb2cli_req_compound_submit(struct tevent_req **reqs,
2653                                      int num_reqs)
2654 {
2655         struct smbXcli_req_state *state;
2656         struct tevent_req *subreq;
2657         struct iovec *iov;
2658         int i, num_iov, nbt_len;
2659         int tf_iov = -1;
2660         const DATA_BLOB *encryption_key = NULL;
2661         uint64_t encryption_session_id = 0;
2662
2663         /*
2664          * 1 for the nbt length, optional TRANSFORM
2665          * per request: HDR, fixed, dyn, padding
2666          * -1 because the last one does not need padding
2667          */
2668
2669         iov = talloc_array(reqs[0], struct iovec, 1 + 1 + 4*num_reqs - 1);
2670         if (iov == NULL) {
2671                 return NT_STATUS_NO_MEMORY;
2672         }
2673
2674         num_iov = 1;
2675         nbt_len = 0;
2676
2677         /*
2678          * the session of the first request that requires encryption
2679          * specifies the encryption key.
2680          */
2681         for (i=0; i<num_reqs; i++) {
2682                 if (!tevent_req_is_in_progress(reqs[i])) {
2683                         return NT_STATUS_INTERNAL_ERROR;
2684                 }
2685
2686                 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2687
2688                 if (!smbXcli_conn_is_connected(state->conn)) {
2689                         return NT_STATUS_CONNECTION_DISCONNECTED;
2690                 }
2691
2692                 if ((state->conn->protocol != PROTOCOL_NONE) &&
2693                     (state->conn->protocol < PROTOCOL_SMB2_02)) {
2694                         return NT_STATUS_REVISION_MISMATCH;
2695                 }
2696
2697                 if (state->session == NULL) {
2698                         continue;
2699                 }
2700
2701                 if (!state->smb2.should_encrypt) {
2702                         continue;
2703                 }
2704
2705                 encryption_key = &state->session->smb2->encryption_key;
2706                 if (encryption_key->length == 0) {
2707                         return NT_STATUS_INVALID_PARAMETER_MIX;
2708                 }
2709
2710                 encryption_session_id = state->session->smb2->session_id;
2711
2712                 tf_iov = num_iov;
2713                 iov[num_iov].iov_base = state->smb2.transform;
2714                 iov[num_iov].iov_len  = sizeof(state->smb2.transform);
2715                 num_iov += 1;
2716
2717                 SBVAL(state->smb2.transform, SMB2_TF_PROTOCOL_ID, SMB2_TF_MAGIC);
2718                 SBVAL(state->smb2.transform, SMB2_TF_NONCE,
2719                       state->session->smb2->nonce_low);
2720                 SBVAL(state->smb2.transform, SMB2_TF_NONCE+8,
2721                       state->session->smb2->nonce_high);
2722                 SBVAL(state->smb2.transform, SMB2_TF_SESSION_ID,
2723                       encryption_session_id);
2724
2725                 state->session->smb2->nonce_low += 1;
2726                 if (state->session->smb2->nonce_low == 0) {
2727                         state->session->smb2->nonce_high += 1;
2728                         state->session->smb2->nonce_low += 1;
2729                 }
2730
2731                 nbt_len += SMB2_TF_HDR_SIZE;
2732                 break;
2733         }
2734
2735         for (i=0; i<num_reqs; i++) {
2736                 int hdr_iov;
2737                 size_t reqlen;
2738                 bool ret;
2739                 uint16_t opcode;
2740                 uint64_t avail;
2741                 uint16_t charge;
2742                 uint16_t credits;
2743                 uint64_t mid;
2744                 const DATA_BLOB *signing_key = NULL;
2745
2746                 if (!tevent_req_is_in_progress(reqs[i])) {
2747                         return NT_STATUS_INTERNAL_ERROR;
2748                 }
2749
2750                 state = tevent_req_data(reqs[i], struct smbXcli_req_state);
2751
2752                 if (!smbXcli_conn_is_connected(state->conn)) {
2753                         return NT_STATUS_CONNECTION_DISCONNECTED;
2754                 }
2755
2756                 if ((state->conn->protocol != PROTOCOL_NONE) &&
2757                     (state->conn->protocol < PROTOCOL_SMB2_02)) {
2758                         return NT_STATUS_REVISION_MISMATCH;
2759                 }
2760
2761                 opcode = SVAL(state->smb2.hdr, SMB2_HDR_OPCODE);
2762                 if (opcode == SMB2_OP_CANCEL) {
2763                         goto skip_credits;
2764                 }
2765
2766                 avail = UINT64_MAX - state->conn->smb2.mid;
2767                 if (avail < 1) {
2768                         return NT_STATUS_CONNECTION_ABORTED;
2769                 }
2770
2771                 if (state->conn->smb2.server.capabilities & SMB2_CAP_LARGE_MTU) {
2772                         charge = (MAX(state->smb2.dyn_len, 1) - 1)/ 65536 + 1;
2773                 } else {
2774                         charge = 1;
2775                 }
2776
2777                 charge = MAX(state->smb2.credit_charge, charge);
2778
2779                 avail = MIN(avail, state->conn->smb2.cur_credits);
2780                 if (avail < charge) {
2781                         return NT_STATUS_INTERNAL_ERROR;
2782                 }
2783
2784                 credits = 0;
2785                 if (state->conn->smb2.max_credits > state->conn->smb2.cur_credits) {
2786                         credits = state->conn->smb2.max_credits -
2787                                   state->conn->smb2.cur_credits;
2788                 }
2789                 if (state->conn->smb2.max_credits >= state->conn->smb2.cur_credits) {
2790                         credits += 1;
2791                 }
2792
2793                 mid = state->conn->smb2.mid;
2794                 state->conn->smb2.mid += charge;
2795                 state->conn->smb2.cur_credits -= charge;
2796
2797                 if (state->conn->smb2.server.capabilities & SMB2_CAP_LARGE_MTU) {
2798                         SSVAL(state->smb2.hdr, SMB2_HDR_CREDIT_CHARGE, charge);
2799                 }
2800                 SSVAL(state->smb2.hdr, SMB2_HDR_CREDIT, credits);
2801                 SBVAL(state->smb2.hdr, SMB2_HDR_MESSAGE_ID, mid);
2802
2803 skip_credits:
2804                 if (state->session && encryption_key == NULL) {
2805                         /*
2806                          * We prefer the channel signing key if it is
2807                          * already there.
2808                          */
2809                         if (state->smb2.should_sign) {
2810                                 signing_key = &state->session->smb2_channel.signing_key;
2811                         }
2812
2813                         /*
2814                          * If it is a channel binding, we already have the main
2815                          * signing key and try that one.
2816                          */
2817                         if (signing_key && signing_key->length == 0) {
2818                                 signing_key = &state->session->smb2->signing_key;
2819                         }
2820
2821                         /*
2822                          * If we do not have any session key yet, we skip the
2823                          * signing of SMB2_OP_SESSSETUP requests.
2824                          */
2825                         if (signing_key && signing_key->length == 0) {
2826                                 signing_key = NULL;
2827                         }
2828                 }
2829
2830                 hdr_iov = num_iov;
2831                 iov[num_iov].iov_base = state->smb2.hdr;
2832                 iov[num_iov].iov_len  = sizeof(state->smb2.hdr);
2833                 num_iov += 1;
2834
2835                 iov[num_iov].iov_base = discard_const(state->smb2.fixed);
2836                 iov[num_iov].iov_len  = state->smb2.fixed_len;
2837                 num_iov += 1;
2838
2839                 if (state->smb2.dyn != NULL) {
2840                         iov[num_iov].iov_base = discard_const(state->smb2.dyn);
2841                         iov[num_iov].iov_len  = state->smb2.dyn_len;
2842                         num_iov += 1;
2843                 }
2844
2845                 reqlen  = sizeof(state->smb2.hdr);
2846                 reqlen += state->smb2.fixed_len;
2847                 reqlen += state->smb2.dyn_len;
2848
2849                 if (i < num_reqs-1) {
2850                         if ((reqlen % 8) > 0) {
2851                                 uint8_t pad = 8 - (reqlen % 8);
2852                                 iov[num_iov].iov_base = state->smb2.pad;
2853                                 iov[num_iov].iov_len = pad;
2854                                 num_iov += 1;
2855                                 reqlen += pad;
2856                         }
2857                         SIVAL(state->smb2.hdr, SMB2_HDR_NEXT_COMMAND, reqlen);
2858                 }
2859
2860                 state->smb2.encryption_session_id = encryption_session_id;
2861
2862                 if (signing_key != NULL) {
2863                         NTSTATUS status;
2864
2865                         status = smb2_signing_sign_pdu(*signing_key,
2866                                                        state->session->conn->protocol,
2867                                                        &iov[hdr_iov], num_iov - hdr_iov);
2868                         if (!NT_STATUS_IS_OK(status)) {
2869                                 return status;
2870                         }
2871                 }
2872
2873                 nbt_len += reqlen;
2874
2875                 ret = smbXcli_req_set_pending(reqs[i]);
2876                 if (!ret) {
2877                         return NT_STATUS_NO_MEMORY;
2878                 }
2879         }
2880
2881         state = tevent_req_data(reqs[0], struct smbXcli_req_state);
2882         _smb_setlen_tcp(state->length_hdr, nbt_len);
2883         iov[0].iov_base = state->length_hdr;
2884         iov[0].iov_len  = sizeof(state->length_hdr);
2885
2886         if (encryption_key != NULL) {
2887                 NTSTATUS status;
2888                 size_t buflen = nbt_len - SMB2_TF_HDR_SIZE;
2889                 uint8_t *buf;
2890                 int vi;
2891
2892                 buf = talloc_array(iov, uint8_t, buflen);
2893                 if (buf == NULL) {
2894                         return NT_STATUS_NO_MEMORY;
2895                 }
2896
2897                 /*
2898                  * We copy the buffers before encrypting them,
2899                  * this is at least currently needed for the
2900                  * to keep state->smb2.hdr.
2901                  *
2902                  * Also the callers may expect there buffers
2903                  * to be const.
2904                  */
2905                 for (vi = tf_iov + 1; vi < num_iov; vi++) {
2906                         struct iovec *v = &iov[vi];
2907                         const uint8_t *o = (const uint8_t *)v->iov_base;
2908
2909                         memcpy(buf, o, v->iov_len);
2910                         v->iov_base = (void *)buf;
2911                         buf += v->iov_len;
2912                 }
2913
2914                 status = smb2_signing_encrypt_pdu(*encryption_key,
2915                                         state->conn->protocol,
2916                                         &iov[tf_iov], num_iov - tf_iov);
2917                 if (!NT_STATUS_IS_OK(status)) {
2918                         return status;
2919                 }
2920         }
2921
2922         if (state->conn->dispatch_incoming == NULL) {
2923                 state->conn->dispatch_incoming = smb2cli_conn_dispatch_incoming;
2924         }
2925
2926         subreq = writev_send(state, state->ev, state->conn->outgoing,
2927                              state->conn->write_fd, false, iov, num_iov);
2928         if (subreq == NULL) {
2929                 return NT_STATUS_NO_MEMORY;
2930         }
2931         tevent_req_set_callback(subreq, smb2cli_req_writev_done, reqs[0]);
2932         return NT_STATUS_OK;
2933 }
2934
2935 void smb2cli_req_set_credit_charge(struct tevent_req *req, uint16_t charge)
2936 {
2937         struct smbXcli_req_state *state =
2938                 tevent_req_data(req,
2939                 struct smbXcli_req_state);
2940
2941         state->smb2.credit_charge = charge;
2942 }
2943
2944 struct tevent_req *smb2cli_req_send(TALLOC_CTX *mem_ctx,
2945                                     struct tevent_context *ev,
2946                                     struct smbXcli_conn *conn,
2947                                     uint16_t cmd,
2948                                     uint32_t additional_flags,
2949                                     uint32_t clear_flags,
2950                                     uint32_t timeout_msec,
2951                                     struct smbXcli_tcon *tcon,
2952                                     struct smbXcli_session *session,
2953                                     const uint8_t *fixed,
2954                                     uint16_t fixed_len,
2955                                     const uint8_t *dyn,
2956                                     uint32_t dyn_len)
2957 {
2958         struct tevent_req *req;
2959         NTSTATUS status;
2960
2961         req = smb2cli_req_create(mem_ctx, ev, conn, cmd,
2962                                  additional_flags, clear_flags,
2963                                  timeout_msec,
2964                                  tcon, session,
2965                                  fixed, fixed_len, dyn, dyn_len);
2966         if (req == NULL) {
2967                 return NULL;
2968         }
2969         if (!tevent_req_is_in_progress(req)) {
2970                 return tevent_req_post(req, ev);
2971         }
2972         status = smb2cli_req_compound_submit(&req, 1);
2973         if (tevent_req_nterror(req, status)) {
2974                 return tevent_req_post(req, ev);
2975         }
2976         return req;
2977 }
2978
2979 static void smb2cli_req_writev_done(struct tevent_req *subreq)
2980 {
2981         struct tevent_req *req =
2982                 tevent_req_callback_data(subreq,
2983                 struct tevent_req);
2984         struct smbXcli_req_state *state =
2985                 tevent_req_data(req,
2986                 struct smbXcli_req_state);
2987         ssize_t nwritten;
2988         int err;
2989
2990         nwritten = writev_recv(subreq, &err);
2991         TALLOC_FREE(subreq);
2992         if (nwritten == -1) {
2993                 /* here, we need to notify all pending requests */
2994                 NTSTATUS status = map_nt_error_from_unix_common(err);
2995                 smbXcli_conn_disconnect(state->conn, status);
2996                 return;
2997         }
2998 }
2999
3000 static NTSTATUS smb2cli_inbuf_parse_compound(struct smbXcli_conn *conn,
3001                                              uint8_t *buf,
3002                                              size_t buflen,
3003                                              TALLOC_CTX *mem_ctx,
3004                                              struct iovec **piov, int *pnum_iov)
3005 {
3006         struct iovec *iov;
3007         int num_iov = 0;
3008         size_t taken = 0;
3009         uint8_t *first_hdr = buf;
3010         size_t verified_buflen = 0;
3011         uint8_t *tf = NULL;
3012         size_t tf_len = 0;
3013
3014         iov = talloc_array(mem_ctx, struct iovec, num_iov);
3015         if (iov == NULL) {
3016                 return NT_STATUS_NO_MEMORY;
3017         }
3018
3019         while (taken < buflen) {
3020                 size_t len = buflen - taken;
3021                 uint8_t *hdr = first_hdr + taken;
3022                 struct iovec *cur;
3023                 size_t full_size;
3024                 size_t next_command_ofs;
3025                 uint16_t body_size;
3026                 struct iovec *iov_tmp;
3027
3028                 if (verified_buflen > taken) {
3029                         len = verified_buflen - taken;
3030                 } else {
3031                         tf = NULL;
3032                         tf_len = 0;
3033                 }
3034
3035                 if (len < 4) {
3036                         DEBUG(10, ("%d bytes left, expected at least %d\n",
3037                                    (int)len, 4));
3038                         goto inval;
3039                 }
3040                 if (IVAL(hdr, 0) == SMB2_TF_MAGIC) {
3041                         struct smbXcli_session *s;
3042                         uint64_t uid;
3043                         struct iovec tf_iov[2];
3044                         NTSTATUS status;
3045
3046                         if (len < SMB2_TF_HDR_SIZE) {
3047                                 DEBUG(10, ("%d bytes left, expected at least %d\n",
3048                                            (int)len, SMB2_TF_HDR_SIZE));
3049                                 goto inval;
3050                         }
3051                         tf = hdr;
3052                         tf_len = SMB2_TF_HDR_SIZE;
3053                         taken += tf_len;
3054
3055                         hdr = first_hdr + taken;
3056                         len = IVAL(tf, SMB2_TF_MSG_SIZE);
3057                         uid = BVAL(tf, SMB2_TF_SESSION_ID);
3058
3059                         s = conn->sessions;
3060                         for (; s; s = s->next) {
3061                                 if (s->smb2->session_id != uid) {
3062                                         continue;
3063                                 }
3064                                 break;
3065                         }
3066
3067                         if (s == NULL) {
3068                                 DEBUG(10, ("unknown session_id %llu\n",
3069                                            (unsigned long long)uid));
3070                                 goto inval;
3071                         }
3072
3073                         tf_iov[0].iov_base = (void *)tf;
3074                         tf_iov[0].iov_len = tf_len;
3075                         tf_iov[1].iov_base = (void *)hdr;
3076                         tf_iov[1].iov_len = len;
3077
3078                         status = smb2_signing_decrypt_pdu(s->smb2->decryption_key,
3079                                                           conn->protocol,
3080                                                           tf_iov, 2);
3081                         if (!NT_STATUS_IS_OK(status)) {
3082                                 TALLOC_FREE(iov);
3083                                 return status;
3084                         }
3085
3086                         verified_buflen = taken + len;
3087                 }
3088
3089                 /*
3090                  * We need the header plus the body length field
3091                  */
3092
3093                 if (len < SMB2_HDR_BODY + 2) {
3094                         DEBUG(10, ("%d bytes left, expected at least %d\n",
3095                                    (int)len, SMB2_HDR_BODY));
3096                         goto inval;
3097                 }
3098                 if (IVAL(hdr, 0) != SMB2_MAGIC) {
3099                         DEBUG(10, ("Got non-SMB2 PDU: %x\n",
3100                                    IVAL(hdr, 0)));
3101                         goto inval;
3102                 }
3103                 if (SVAL(hdr, 4) != SMB2_HDR_BODY) {
3104                         DEBUG(10, ("Got HDR len %d, expected %d\n",
3105                                    SVAL(hdr, 4), SMB2_HDR_BODY));
3106                         goto inval;
3107                 }
3108
3109                 full_size = len;
3110                 next_command_ofs = IVAL(hdr, SMB2_HDR_NEXT_COMMAND);
3111                 body_size = SVAL(hdr, SMB2_HDR_BODY);
3112
3113                 if (next_command_ofs != 0) {
3114                         if (next_command_ofs < (SMB2_HDR_BODY + 2)) {
3115                                 goto inval;
3116                         }
3117                         if (next_command_ofs > full_size) {
3118                                 goto inval;
3119                         }
3120                         full_size = next_command_ofs;
3121                 }
3122                 if (body_size < 2) {
3123                         goto inval;
3124                 }
3125                 body_size &= 0xfffe;
3126
3127                 if (body_size > (full_size - SMB2_HDR_BODY)) {
3128                         goto inval;
3129                 }
3130
3131                 iov_tmp = talloc_realloc(mem_ctx, iov, struct iovec,
3132                                          num_iov + 4);
3133                 if (iov_tmp == NULL) {
3134                         TALLOC_FREE(iov);
3135                         return NT_STATUS_NO_MEMORY;
3136                 }
3137                 iov = iov_tmp;
3138                 cur = &iov[num_iov];
3139                 num_iov += 4;
3140
3141                 cur[0].iov_base = tf;
3142                 cur[0].iov_len  = tf_len;
3143                 cur[1].iov_base = hdr;
3144                 cur[1].iov_len  = SMB2_HDR_BODY;
3145                 cur[2].iov_base = hdr + SMB2_HDR_BODY;
3146                 cur[2].iov_len  = body_size;
3147                 cur[3].iov_base = hdr + SMB2_HDR_BODY + body_size;
3148                 cur[3].iov_len  = full_size - (SMB2_HDR_BODY + body_size);
3149
3150                 taken += full_size;
3151         }
3152
3153         *piov = iov;
3154         *pnum_iov = num_iov;
3155         return NT_STATUS_OK;
3156
3157 inval:
3158         TALLOC_FREE(iov);
3159         return NT_STATUS_INVALID_NETWORK_RESPONSE;
3160 }
3161
3162 static struct tevent_req *smb2cli_conn_find_pending(struct smbXcli_conn *conn,
3163                                                     uint64_t mid)
3164 {
3165         size_t num_pending = talloc_array_length(conn->pending);
3166         size_t i;
3167
3168         for (i=0; i<num_pending; i++) {
3169                 struct tevent_req *req = conn->pending[i];
3170                 struct smbXcli_req_state *state =
3171                         tevent_req_data(req,
3172                         struct smbXcli_req_state);
3173
3174                 if (mid == BVAL(state->smb2.hdr, SMB2_HDR_MESSAGE_ID)) {
3175                         return req;
3176                 }
3177         }
3178         return NULL;
3179 }
3180
3181 static NTSTATUS smb2cli_conn_dispatch_incoming(struct smbXcli_conn *conn,
3182                                                TALLOC_CTX *tmp_mem,
3183                                                uint8_t *inbuf)
3184 {
3185         struct tevent_req *req;
3186         struct smbXcli_req_state *state = NULL;
3187         struct iovec *iov;
3188         int i, num_iov;
3189         NTSTATUS status;
3190         bool defer = true;
3191         struct smbXcli_session *last_session = NULL;
3192         size_t inbuf_len = smb_len_tcp(inbuf);
3193
3194         status = smb2cli_inbuf_parse_compound(conn,
3195                                               inbuf + NBT_HDR_SIZE,
3196                                               inbuf_len,
3197                                               tmp_mem,
3198                                               &iov, &num_iov);
3199         if (!NT_STATUS_IS_OK(status)) {
3200                 return status;
3201         }
3202
3203         for (i=0; i<num_iov; i+=4) {
3204                 uint8_t *inbuf_ref = NULL;
3205                 struct iovec *cur = &iov[i];
3206                 uint8_t *inhdr = (uint8_t *)cur[1].iov_base;
3207                 uint16_t opcode = SVAL(inhdr, SMB2_HDR_OPCODE);
3208                 uint32_t flags = IVAL(inhdr, SMB2_HDR_FLAGS);
3209                 uint64_t mid = BVAL(inhdr, SMB2_HDR_MESSAGE_ID);
3210                 uint16_t req_opcode;
3211                 uint32_t req_flags;
3212                 uint16_t credits = SVAL(inhdr, SMB2_HDR_CREDIT);
3213                 uint32_t new_credits;
3214                 struct smbXcli_session *session = NULL;
3215                 const DATA_BLOB *signing_key = NULL;
3216                 bool was_encrypted = false;
3217
3218                 new_credits = conn->smb2.cur_credits;
3219                 new_credits += credits;
3220                 if (new_credits > UINT16_MAX) {
3221                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
3222                 }
3223                 conn->smb2.cur_credits += credits;
3224
3225                 req = smb2cli_conn_find_pending(conn, mid);
3226                 if (req == NULL) {
3227                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
3228                 }
3229                 state = tevent_req_data(req, struct smbXcli_req_state);
3230
3231                 state->smb2.got_async = false;
3232
3233                 req_opcode = SVAL(state->smb2.hdr, SMB2_HDR_OPCODE);
3234                 if (opcode != req_opcode) {
3235                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
3236                 }
3237                 req_flags = SVAL(state->smb2.hdr, SMB2_HDR_FLAGS);
3238
3239                 if (!(flags & SMB2_HDR_FLAG_REDIRECT)) {
3240                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
3241                 }
3242
3243                 status = NT_STATUS(IVAL(inhdr, SMB2_HDR_STATUS));
3244                 if ((flags & SMB2_HDR_FLAG_ASYNC) &&
3245                     NT_STATUS_EQUAL(status, STATUS_PENDING)) {
3246                         uint64_t async_id = BVAL(inhdr, SMB2_HDR_ASYNC_ID);
3247
3248                         /*
3249                          * async interim responses are not signed,
3250                          * even if the SMB2_HDR_FLAG_SIGNED flag
3251                          * is set.
3252                          */
3253                         req_flags |= SMB2_HDR_FLAG_ASYNC;
3254                         SBVAL(state->smb2.hdr, SMB2_HDR_FLAGS, req_flags);
3255                         SBVAL(state->smb2.hdr, SMB2_HDR_ASYNC_ID, async_id);
3256
3257                         if (state->smb2.notify_async) {
3258                                 state->smb2.got_async = true;
3259                                 tevent_req_defer_callback(req, state->ev);
3260                                 tevent_req_notify_callback(req);
3261                         }
3262                         continue;
3263                 }
3264
3265                 session = state->session;
3266                 if (req_flags & SMB2_HDR_FLAG_CHAINED) {
3267                         session = last_session;
3268                 }
3269                 last_session = session;
3270
3271                 if (state->smb2.should_sign) {
3272                         if (!(flags & SMB2_HDR_FLAG_SIGNED)) {
3273                                 return NT_STATUS_ACCESS_DENIED;
3274                         }
3275                 }
3276
3277                 if (flags & SMB2_HDR_FLAG_SIGNED) {
3278                         uint64_t uid = BVAL(inhdr, SMB2_HDR_SESSION_ID);
3279
3280                         if (session == NULL) {
3281                                 struct smbXcli_session *s;
3282
3283                                 s = state->conn->sessions;
3284                                 for (; s; s = s->next) {
3285                                         if (s->smb2->session_id != uid) {
3286                                                 continue;
3287                                         }
3288
3289                                         session = s;
3290                                         break;
3291                                 }
3292                         }
3293
3294                         if (session == NULL) {
3295                                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3296                         }
3297
3298                         last_session = session;
3299                         signing_key = &session->smb2_channel.signing_key;
3300                 }
3301
3302                 if (opcode == SMB2_OP_SESSSETUP) {
3303                         /*
3304                          * We prefer the channel signing key, if it is
3305                          * already there.
3306                          *
3307                          * If we do not have a channel signing key yet,
3308                          * we try the main signing key, if it is not
3309                          * the final response.
3310                          */
3311                         if (signing_key && signing_key->length == 0 &&
3312                             !NT_STATUS_IS_OK(status)) {
3313                                 signing_key = &session->smb2->signing_key;
3314                         }
3315
3316                         if (signing_key && signing_key->length == 0) {
3317                                 /*
3318                                  * If we do not have a session key to
3319                                  * verify the signature, we defer the
3320                                  * signing check to the caller.
3321                                  *
3322                                  * The caller gets NT_STATUS_OK, it
3323                                  * has to call
3324                                  * smb2cli_session_set_session_key()
3325                                  * or
3326                                  * smb2cli_session_set_channel_key()
3327                                  * which will check the signature
3328                                  * with the channel signing key.
3329                                  */
3330                                 signing_key = NULL;
3331                         }
3332                 }
3333
3334                 if (cur[0].iov_len == SMB2_TF_HDR_SIZE) {
3335                         const uint8_t *tf = (const uint8_t *)cur[0].iov_base;
3336                         uint64_t uid = BVAL(tf, SMB2_TF_SESSION_ID);
3337
3338                         /*
3339                          * If the response was encrypted in a SMB2_TRANSFORM
3340                          * pdu, which belongs to the correct session,
3341                          * we do not need to do signing checks
3342                          *
3343                          * It could be the session the response belongs to
3344                          * or the session that was used to encrypt the
3345                          * SMB2_TRANSFORM request.
3346                          */
3347                         if ((session && session->smb2->session_id == uid) ||
3348                             (state->smb2.encryption_session_id == uid)) {
3349                                 signing_key = NULL;
3350                                 was_encrypted = true;
3351                         }
3352                 }
3353
3354                 if (NT_STATUS_EQUAL(status, NT_STATUS_USER_SESSION_DELETED)) {
3355                         /*
3356                          * if the server returns NT_STATUS_USER_SESSION_DELETED
3357                          * the response is not signed and we should
3358                          * propagate the NT_STATUS_USER_SESSION_DELETED
3359                          * status to the caller.
3360                          */
3361                         state->smb2.signing_skipped = true;
3362                         signing_key = NULL;
3363                 }
3364
3365                 if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER)) {
3366                         /*
3367                          * if the server returns
3368                          * NT_STATUS_INVALID_PARAMETER
3369                          * the response might not be encrypted.
3370                          */
3371                         if (state->smb2.should_encrypt && !was_encrypted) {
3372                                 state->smb2.signing_skipped = true;
3373                                 signing_key = NULL;
3374                         }
3375                 }
3376
3377                 if (state->smb2.should_encrypt && !was_encrypted) {
3378                         if (!state->smb2.signing_skipped) {
3379                                 return NT_STATUS_ACCESS_DENIED;
3380                         }
3381                 }
3382
3383                 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_NAME_DELETED) ||
3384                     NT_STATUS_EQUAL(status, NT_STATUS_FILE_CLOSED) ||
3385                     NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER)) {
3386                         /*
3387                          * if the server returns
3388                          * NT_STATUS_NETWORK_NAME_DELETED
3389                          * NT_STATUS_FILE_CLOSED
3390                          * NT_STATUS_INVALID_PARAMETER
3391                          * the response might not be signed
3392                          * as this happens before the signing checks.
3393                          *
3394                          * If server echos the signature (or all zeros)
3395                          * we should report the status from the server
3396                          * to the caller.
3397                          */
3398                         if (signing_key) {
3399                                 int cmp;
3400
3401                                 cmp = memcmp(inhdr+SMB2_HDR_SIGNATURE,
3402                                              state->smb2.hdr+SMB2_HDR_SIGNATURE,
3403                                              16);
3404                                 if (cmp == 0) {
3405                                         state->smb2.signing_skipped = true;
3406                                         signing_key = NULL;
3407                                 }
3408                         }
3409                         if (signing_key) {
3410                                 int cmp;
3411                                 static const uint8_t zeros[16];
3412
3413                                 cmp = memcmp(inhdr+SMB2_HDR_SIGNATURE,
3414                                              zeros,
3415                                              16);
3416                                 if (cmp == 0) {
3417                                         state->smb2.signing_skipped = true;
3418                                         signing_key = NULL;
3419                                 }
3420                         }
3421                 }
3422
3423                 if (signing_key) {
3424                         status = smb2_signing_check_pdu(*signing_key,
3425                                                         state->conn->protocol,
3426                                                         &cur[1], 3);
3427                         if (!NT_STATUS_IS_OK(status)) {
3428                                 /*
3429                                  * If the signing check fails, we disconnect
3430                                  * the connection.
3431                                  */
3432                                 return status;
3433                         }
3434                 }
3435
3436                 smbXcli_req_unset_pending(req);
3437
3438                 /*
3439                  * There might be more than one response
3440                  * we need to defer the notifications
3441                  */
3442                 if ((num_iov == 5) && (talloc_array_length(conn->pending) == 0)) {
3443                         defer = false;
3444                 }
3445
3446                 if (defer) {
3447                         tevent_req_defer_callback(req, state->ev);
3448                 }
3449
3450                 /*
3451                  * Note: here we use talloc_reference() in a way
3452                  *       that does not expose it to the caller.
3453                  */
3454                 inbuf_ref = talloc_reference(state->smb2.recv_iov, inbuf);
3455                 if (tevent_req_nomem(inbuf_ref, req)) {
3456                         continue;
3457                 }
3458
3459                 /* copy the related buffers */
3460                 state->smb2.recv_iov[0] = cur[1];
3461                 state->smb2.recv_iov[1] = cur[2];
3462                 state->smb2.recv_iov[2] = cur[3];
3463
3464                 tevent_req_done(req);
3465         }
3466
3467         if (defer) {
3468                 return NT_STATUS_RETRY;
3469         }
3470
3471         return NT_STATUS_OK;
3472 }
3473
3474 NTSTATUS smb2cli_req_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
3475                           struct iovec **piov,
3476                           const struct smb2cli_req_expected_response *expected,
3477                           size_t num_expected)
3478 {
3479         struct smbXcli_req_state *state =
3480                 tevent_req_data(req,
3481                 struct smbXcli_req_state);
3482         NTSTATUS status;
3483         size_t body_size;
3484         bool found_status = false;
3485         bool found_size = false;
3486         size_t i;
3487
3488         if (piov != NULL) {
3489                 *piov = NULL;
3490         }
3491
3492         if (state->smb2.got_async) {
3493                 return STATUS_PENDING;
3494         }
3495
3496         if (tevent_req_is_nterror(req, &status)) {
3497                 for (i=0; i < num_expected; i++) {
3498                         if (NT_STATUS_EQUAL(status, expected[i].status)) {
3499                                 found_status = true;
3500                                 break;
3501                         }
3502                 }
3503
3504                 if (found_status) {
3505                         return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
3506                 }
3507
3508                 return status;
3509         }
3510
3511         if (num_expected == 0) {
3512                 found_status = true;
3513                 found_size = true;
3514         }
3515
3516         status = NT_STATUS(IVAL(state->smb2.recv_iov[0].iov_base, SMB2_HDR_STATUS));
3517         body_size = SVAL(state->smb2.recv_iov[1].iov_base, 0);
3518
3519         for (i=0; i < num_expected; i++) {
3520                 if (!NT_STATUS_EQUAL(status, expected[i].status)) {
3521                         continue;
3522                 }
3523
3524                 found_status = true;
3525                 if (expected[i].body_size == 0) {
3526                         found_size = true;
3527                         break;
3528                 }
3529
3530                 if (expected[i].body_size == body_size) {
3531                         found_size = true;
3532                         break;
3533                 }
3534         }
3535
3536         if (!found_status) {
3537                 return status;
3538         }
3539
3540         if (state->smb2.signing_skipped) {
3541                 if (num_expected > 0) {
3542                         return NT_STATUS_ACCESS_DENIED;
3543                 }
3544                 if (!NT_STATUS_IS_ERR(status)) {
3545                         return NT_STATUS_ACCESS_DENIED;
3546                 }
3547         }
3548
3549         if (!found_size) {
3550                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
3551         }
3552
3553         if (piov != NULL) {
3554                 *piov = talloc_move(mem_ctx, &state->smb2.recv_iov);
3555         }
3556
3557         return status;
3558 }
3559
3560 static const struct {
3561         enum protocol_types proto;
3562         const char *smb1_name;
3563 } smb1cli_prots[] = {
3564         {PROTOCOL_CORE,         "PC NETWORK PROGRAM 1.0"},
3565         {PROTOCOL_COREPLUS,     "MICROSOFT NETWORKS 1.03"},
3566         {PROTOCOL_LANMAN1,      "MICROSOFT NETWORKS 3.0"},
3567         {PROTOCOL_LANMAN1,      "LANMAN1.0"},
3568         {PROTOCOL_LANMAN2,      "LM1.2X002"},
3569         {PROTOCOL_LANMAN2,      "DOS LANMAN2.1"},
3570         {PROTOCOL_LANMAN2,      "LANMAN2.1"},
3571         {PROTOCOL_LANMAN2,      "Samba"},
3572         {PROTOCOL_NT1,          "NT LANMAN 1.0"},
3573         {PROTOCOL_NT1,          "NT LM 0.12"},
3574         {PROTOCOL_SMB2_02,      "SMB 2.002"},
3575         {PROTOCOL_SMB2_10,      "SMB 2.???"},
3576 };
3577
3578 static const struct {
3579         enum protocol_types proto;
3580         uint16_t smb2_dialect;
3581 } smb2cli_prots[] = {
3582         {PROTOCOL_SMB2_02,      SMB2_DIALECT_REVISION_202},
3583         {PROTOCOL_SMB2_10,      SMB2_DIALECT_REVISION_210},
3584         {PROTOCOL_SMB2_22,      SMB2_DIALECT_REVISION_222},
3585         {PROTOCOL_SMB2_24,      SMB2_DIALECT_REVISION_224},
3586         {PROTOCOL_SMB3_00,      SMB3_DIALECT_REVISION_300},
3587 };
3588
3589 struct smbXcli_negprot_state {
3590         struct smbXcli_conn *conn;
3591         struct tevent_context *ev;
3592         uint32_t timeout_msec;
3593         enum protocol_types min_protocol;
3594         enum protocol_types max_protocol;
3595
3596         struct {
3597                 uint8_t fixed[36];
3598                 uint8_t dyn[ARRAY_SIZE(smb2cli_prots)*2];
3599         } smb2;
3600 };
3601
3602 static void smbXcli_negprot_invalid_done(struct tevent_req *subreq);
3603 static struct tevent_req *smbXcli_negprot_smb1_subreq(struct smbXcli_negprot_state *state);
3604 static void smbXcli_negprot_smb1_done(struct tevent_req *subreq);
3605 static struct tevent_req *smbXcli_negprot_smb2_subreq(struct smbXcli_negprot_state *state);
3606 static void smbXcli_negprot_smb2_done(struct tevent_req *subreq);
3607 static NTSTATUS smbXcli_negprot_dispatch_incoming(struct smbXcli_conn *conn,
3608                                                   TALLOC_CTX *frame,
3609                                                   uint8_t *inbuf);
3610
3611 struct tevent_req *smbXcli_negprot_send(TALLOC_CTX *mem_ctx,
3612                                         struct tevent_context *ev,
3613                                         struct smbXcli_conn *conn,
3614                                         uint32_t timeout_msec,
3615                                         enum protocol_types min_protocol,
3616                                         enum protocol_types max_protocol)
3617 {
3618         struct tevent_req *req, *subreq;
3619         struct smbXcli_negprot_state *state;
3620
3621         req = tevent_req_create(mem_ctx, &state,
3622                                 struct smbXcli_negprot_state);
3623         if (req == NULL) {
3624                 return NULL;
3625         }
3626         state->conn = conn;
3627         state->ev = ev;
3628         state->timeout_msec = timeout_msec;
3629         state->min_protocol = min_protocol;
3630         state->max_protocol = max_protocol;
3631
3632         if (min_protocol == PROTOCOL_NONE) {
3633                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER_MIX);
3634                 return tevent_req_post(req, ev);
3635         }
3636
3637         if (max_protocol == PROTOCOL_NONE) {
3638                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER_MIX);
3639                 return tevent_req_post(req, ev);
3640         }
3641
3642         if (min_protocol > max_protocol) {
3643                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER_MIX);
3644                 return tevent_req_post(req, ev);
3645         }
3646
3647         if ((min_protocol < PROTOCOL_SMB2_02) &&
3648             (max_protocol < PROTOCOL_SMB2_02)) {
3649                 /*
3650                  * SMB1 only...
3651                  */
3652                 conn->dispatch_incoming = smb1cli_conn_dispatch_incoming;
3653
3654                 subreq = smbXcli_negprot_smb1_subreq(state);
3655                 if (tevent_req_nomem(subreq, req)) {
3656                         return tevent_req_post(req, ev);
3657                 }
3658                 tevent_req_set_callback(subreq, smbXcli_negprot_smb1_done, req);
3659                 return req;
3660         }
3661
3662         if ((min_protocol >= PROTOCOL_SMB2_02) &&
3663             (max_protocol >= PROTOCOL_SMB2_02)) {
3664                 /*
3665                  * SMB2 only...
3666                  */
3667                 conn->dispatch_incoming = smb2cli_conn_dispatch_incoming;
3668
3669                 subreq = smbXcli_negprot_smb2_subreq(state);
3670                 if (tevent_req_nomem(subreq, req)) {
3671                         return tevent_req_post(req, ev);
3672                 }
3673                 tevent_req_set_callback(subreq, smbXcli_negprot_smb2_done, req);
3674                 return req;
3675         }
3676
3677         /*
3678          * We send an SMB1 negprot with the SMB2 dialects
3679          * and expect a SMB1 or a SMB2 response.
3680          *
3681          * smbXcli_negprot_dispatch_incoming() will fix the
3682          * callback to match protocol of the response.
3683          */
3684         conn->dispatch_incoming = smbXcli_negprot_dispatch_incoming;
3685
3686         subreq = smbXcli_negprot_smb1_subreq(state);
3687         if (tevent_req_nomem(subreq, req)) {
3688                 return tevent_req_post(req, ev);
3689         }
3690         tevent_req_set_callback(subreq, smbXcli_negprot_invalid_done, req);
3691         return req;
3692 }
3693
3694 static void smbXcli_negprot_invalid_done(struct tevent_req *subreq)
3695 {
3696         struct tevent_req *req =
3697                 tevent_req_callback_data(subreq,
3698                 struct tevent_req);
3699         NTSTATUS status;
3700
3701         /*
3702          * we just want the low level error
3703          */
3704         status = tevent_req_simple_recv_ntstatus(subreq);
3705         TALLOC_FREE(subreq);
3706         if (tevent_req_nterror(req, status)) {
3707                 return;
3708         }
3709
3710         /* this should never happen */
3711         tevent_req_nterror(req, NT_STATUS_INTERNAL_ERROR);
3712 }
3713
3714 static struct tevent_req *smbXcli_negprot_smb1_subreq(struct smbXcli_negprot_state *state)
3715 {
3716         size_t i;
3717         DATA_BLOB bytes = data_blob_null;
3718         uint8_t flags;
3719         uint16_t flags2;
3720
3721         /* setup the protocol strings */
3722         for (i=0; i < ARRAY_SIZE(smb1cli_prots); i++) {
3723                 uint8_t c = 2;
3724                 bool ok;
3725
3726                 if (smb1cli_prots[i].proto < state->min_protocol) {
3727                         continue;
3728                 }
3729
3730                 if (smb1cli_prots[i].proto > state->max_protocol) {
3731                         continue;
3732                 }
3733
3734                 ok = data_blob_append(state, &bytes, &c, sizeof(c));
3735                 if (!ok) {
3736                         return NULL;
3737                 }
3738
3739                 /*
3740                  * We now it is already ascii and
3741                  * we want NULL termination.
3742                  */
3743                 ok = data_blob_append(state, &bytes,
3744                                       smb1cli_prots[i].smb1_name,
3745                                       strlen(smb1cli_prots[i].smb1_name)+1);
3746                 if (!ok) {
3747                         return NULL;
3748                 }
3749         }
3750
3751         smb1cli_req_flags(state->max_protocol,
3752                           state->conn->smb1.client.capabilities,
3753                           SMBnegprot,
3754                           0, 0, &flags,
3755                           0, 0, &flags2);
3756
3757         return smb1cli_req_send(state, state->ev, state->conn,
3758                                 SMBnegprot,
3759                                 flags, ~flags,
3760                                 flags2, ~flags2,
3761                                 state->timeout_msec,
3762                                 0xFFFE, 0, NULL, /* pid, tid, session */
3763                                 0, NULL, /* wct, vwv */
3764                                 bytes.length, bytes.data);
3765 }
3766
3767 static void smbXcli_negprot_smb1_done(struct tevent_req *subreq)
3768 {
3769         struct tevent_req *req =
3770                 tevent_req_callback_data(subreq,
3771                 struct tevent_req);
3772         struct smbXcli_negprot_state *state =
3773                 tevent_req_data(req,
3774                 struct smbXcli_negprot_state);
3775         struct smbXcli_conn *conn = state->conn;
3776         struct iovec *recv_iov = NULL;
3777         uint8_t *inhdr;
3778         uint8_t wct;
3779         uint16_t *vwv;
3780         uint32_t num_bytes;
3781         uint8_t *bytes;
3782         NTSTATUS status;
3783         uint16_t protnum;
3784         size_t i;
3785         size_t num_prots = 0;
3786         uint8_t flags;
3787         uint32_t client_capabilities = conn->smb1.client.capabilities;
3788         uint32_t both_capabilities;
3789         uint32_t server_capabilities = 0;
3790         uint32_t capabilities;
3791         uint32_t client_max_xmit = conn->smb1.client.max_xmit;
3792         uint32_t server_max_xmit = 0;
3793         uint32_t max_xmit;
3794         uint32_t server_max_mux = 0;
3795         uint16_t server_security_mode = 0;
3796         uint32_t server_session_key = 0;
3797         bool server_readbraw = false;
3798         bool server_writebraw = false;
3799         bool server_lockread = false;
3800         bool server_writeunlock = false;
3801         struct GUID server_guid = GUID_zero();
3802         DATA_BLOB server_gss_blob = data_blob_null;
3803         uint8_t server_challenge[8];
3804         char *server_workgroup = NULL;
3805         char *server_name = NULL;
3806         int server_time_zone = 0;
3807         NTTIME server_system_time = 0;
3808         static const struct smb1cli_req_expected_response expected[] = {
3809         {
3810                 .status = NT_STATUS_OK,
3811                 .wct = 0x11, /* NT1 */
3812         },
3813         {
3814                 .status = NT_STATUS_OK,
3815                 .wct = 0x0D, /* LM */
3816         },
3817         {
3818                 .status = NT_STATUS_OK,
3819                 .wct = 0x01, /* CORE */
3820         }
3821         };
3822
3823         ZERO_STRUCT(server_challenge);
3824
3825         status = smb1cli_req_recv(subreq, state,
3826                                   &recv_iov,
3827                                   &inhdr,
3828                                   &wct,
3829                                   &vwv,
3830                                   NULL, /* pvwv_offset */
3831                                   &num_bytes,
3832                                   &bytes,
3833                                   NULL, /* pbytes_offset */
3834                                   NULL, /* pinbuf */
3835                                   expected, ARRAY_SIZE(expected));
3836         TALLOC_FREE(subreq);
3837         if (tevent_req_nterror(req, status)) {
3838                 return;
3839         }
3840
3841         flags = CVAL(inhdr, HDR_FLG);
3842
3843         protnum = SVAL(vwv, 0);
3844
3845         for (i=0; i < ARRAY_SIZE(smb1cli_prots); i++) {
3846                 if (smb1cli_prots[i].proto < state->min_protocol) {
3847                         continue;
3848                 }
3849
3850                 if (smb1cli_prots[i].proto > state->max_protocol) {
3851                         continue;
3852                 }
3853
3854                 if (protnum != num_prots) {
3855                         num_prots++;
3856                         continue;
3857                 }
3858
3859                 conn->protocol = smb1cli_prots[i].proto;
3860                 break;
3861         }
3862
3863         if (conn->protocol == PROTOCOL_NONE) {
3864                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
3865                 return;
3866         }
3867
3868         if ((conn->protocol < PROTOCOL_NT1) && conn->mandatory_signing) {
3869                 DEBUG(0,("smbXcli_negprot: SMB signing is mandatory "
3870                          "and the selected protocol level doesn't support it.\n"));
3871                 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
3872                 return;
3873         }
3874
3875         if (flags & FLAG_SUPPORT_LOCKREAD) {
3876                 server_lockread = true;
3877                 server_writeunlock = true;
3878         }
3879
3880         if (conn->protocol >= PROTOCOL_NT1) {
3881                 const char *client_signing = NULL;
3882                 bool server_mandatory = false;
3883                 bool server_allowed = false;
3884                 const char *server_signing = NULL;
3885                 bool ok;
3886                 uint8_t key_len;
3887
3888                 if (wct != 0x11) {
3889                         tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
3890                         return;
3891                 }
3892
3893                 /* NT protocol */
3894                 server_security_mode = CVAL(vwv + 1, 0);
3895                 server_max_mux = SVAL(vwv + 1, 1);
3896                 server_max_xmit = IVAL(vwv + 3, 1);
3897                 server_session_key = IVAL(vwv + 7, 1);
3898                 server_time_zone = SVALS(vwv + 15, 1);
3899                 server_time_zone *= 60;
3900                 /* this time arrives in real GMT */
3901                 server_system_time = BVAL(vwv + 11, 1);
3902                 server_capabilities = IVAL(vwv + 9, 1);
3903
3904                 key_len = CVAL(vwv + 16, 1);
3905
3906                 if (server_capabilities & CAP_RAW_MODE) {
3907                         server_readbraw = true;
3908                         server_writebraw = true;
3909                 }
3910                 if (server_capabilities & CAP_LOCK_AND_READ) {
3911                         server_lockread = true;
3912                 }
3913
3914                 if (server_capabilities & CAP_EXTENDED_SECURITY) {
3915                         DATA_BLOB blob1, blob2;
3916
3917                         if (num_bytes < 16) {
3918                                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
3919                                 return;
3920                         }
3921
3922                         blob1 = data_blob_const(bytes, 16);
3923                         status = GUID_from_data_blob(&blob1, &server_guid);
3924                         if (tevent_req_nterror(req, status)) {
3925                                 return;
3926                         }
3927
3928                         blob1 = data_blob_const(bytes+16, num_bytes-16);
3929                         blob2 = data_blob_dup_talloc(state, blob1);
3930                         if (blob1.length > 0 &&
3931                             tevent_req_nomem(blob2.data, req)) {
3932                                 return;
3933                         }
3934                         server_gss_blob = blob2;
3935                 } else {
3936                         DATA_BLOB blob1, blob2;
3937
3938                         if (num_bytes < key_len) {
3939                                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
3940                                 return;
3941                         }
3942
3943                         if (key_len != 0 && key_len != 8) {
3944                                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
3945                                 return;
3946                         }
3947
3948                         if (key_len == 8) {
3949                                 memcpy(server_challenge, bytes, 8);
3950                         }
3951
3952                         blob1 = data_blob_const(bytes+key_len, num_bytes-key_len);
3953                         blob2 = data_blob_const(bytes+key_len, num_bytes-key_len);
3954                         if (blob1.length > 0) {
3955                                 size_t len;
3956
3957                                 len = utf16_len_n(blob1.data,
3958                                                   blob1.length);
3959                                 blob1.length = len;
3960
3961                                 ok = convert_string_talloc(state,
3962                                                            CH_UTF16LE,
3963                                                            CH_UNIX,
3964                                                            blob1.data,
3965                                                            blob1.length,
3966                                                            &server_workgroup,
3967                                                            &len);
3968                                 if (!ok) {
3969                                         status = map_nt_error_from_unix_common(errno);
3970                                         tevent_req_nterror(req, status);
3971                                         return;
3972                                 }
3973                         }
3974
3975                         blob2.data += blob1.length;
3976                         blob2.length -= blob1.length;
3977                         if (blob2.length > 0) {
3978                                 size_t len;
3979
3980                                 len = utf16_len_n(blob1.data,
3981                                                   blob1.length);
3982                                 blob1.length = len;
3983
3984                                 ok = convert_string_talloc(state,
3985                                                            CH_UTF16LE,
3986                                                            CH_UNIX,
3987                                                            blob2.data,
3988                                                            blob2.length,
3989                                                            &server_name,
3990                                                            &len);
3991                                 if (!ok) {
3992                                         status = map_nt_error_from_unix_common(errno);
3993                                         tevent_req_nterror(req, status);
3994                                         return;
3995                                 }
3996                         }
3997                 }
3998
3999                 client_signing = "disabled";
4000                 if (conn->allow_signing) {
4001                         client_signing = "allowed";
4002                 }
4003                 if (conn->mandatory_signing) {
4004                         client_signing = "required";
4005                 }
4006
4007                 server_signing = "not supported";
4008                 if (server_security_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED) {
4009                         server_signing = "supported";
4010                         server_allowed = true;
4011                 }
4012                 if (server_security_mode & NEGOTIATE_SECURITY_SIGNATURES_REQUIRED) {
4013                         server_signing = "required";
4014                         server_mandatory = true;
4015                 }
4016
4017                 ok = smb_signing_set_negotiated(conn->smb1.signing,
4018                                                 server_allowed,
4019                                                 server_mandatory);
4020                 if (!ok) {
4021                         DEBUG(1,("cli_negprot: SMB signing is required, "
4022                                  "but client[%s] and server[%s] mismatch\n",
4023                                  client_signing, server_signing));
4024                         tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
4025                         return;
4026                 }
4027
4028         } else if (conn->protocol >= PROTOCOL_LANMAN1) {
4029                 DATA_BLOB blob1;
4030                 uint8_t key_len;
4031                 time_t t;
4032
4033                 if (wct != 0x0D) {
4034                         tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4035                         return;
4036                 }
4037
4038                 server_security_mode = SVAL(vwv + 1, 0);
4039                 server_max_xmit = SVAL(vwv + 2, 0);
4040                 server_max_mux = SVAL(vwv + 3, 0);
4041                 server_readbraw = ((SVAL(vwv + 5, 0) & 0x1) != 0);
4042                 server_writebraw = ((SVAL(vwv + 5, 0) & 0x2) != 0);
4043                 server_session_key = IVAL(vwv + 6, 0);
4044                 server_time_zone = SVALS(vwv + 10, 0);
4045                 server_time_zone *= 60;
4046                 /* this time is converted to GMT by make_unix_date */
4047                 t = pull_dos_date((const uint8_t *)(vwv + 8), server_time_zone);
4048                 unix_to_nt_time(&server_system_time, t);
4049                 key_len = SVAL(vwv + 11, 0);
4050
4051                 if (num_bytes < key_len) {
4052                         tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4053                         return;
4054                 }
4055
4056                 if (key_len != 0 && key_len != 8) {
4057                         tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4058                         return;
4059                 }
4060
4061                 if (key_len == 8) {
4062                         memcpy(server_challenge, bytes, 8);
4063                 }
4064
4065                 blob1 = data_blob_const(bytes+key_len, num_bytes-key_len);
4066                 if (blob1.length > 0) {
4067                         size_t len;
4068                         bool ok;
4069
4070                         len = utf16_len_n(blob1.data,
4071                                           blob1.length);
4072                         blob1.length = len;
4073
4074                         ok = convert_string_talloc(state,
4075                                                    CH_DOS,
4076                                                    CH_UNIX,
4077                                                    blob1.data,
4078                                                    blob1.length,
4079                                                    &server_workgroup,
4080                                                    &len);
4081                         if (!ok) {
4082                                 status = map_nt_error_from_unix_common(errno);
4083                                 tevent_req_nterror(req, status);
4084                                 return;
4085                         }
4086                 }
4087
4088         } else {
4089                 /* the old core protocol */
4090                 server_time_zone = get_time_zone(time(NULL));
4091                 server_max_xmit = 1024;
4092                 server_max_mux = 1;
4093         }
4094
4095         if (server_max_xmit < 1024) {
4096                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4097                 return;
4098         }
4099
4100         if (server_max_mux < 1) {
4101                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4102                 return;
4103         }
4104
4105         /*
4106          * Now calculate the negotiated capabilities
4107          * based on the mask for:
4108          * - client only flags
4109          * - flags used in both directions
4110          * - server only flags
4111          */
4112         both_capabilities = client_capabilities & server_capabilities;
4113         capabilities = client_capabilities & SMB_CAP_CLIENT_MASK;
4114         capabilities |= both_capabilities & SMB_CAP_BOTH_MASK;
4115         capabilities |= server_capabilities & SMB_CAP_SERVER_MASK;
4116
4117         max_xmit = MIN(client_max_xmit, server_max_xmit);
4118
4119         conn->smb1.server.capabilities = server_capabilities;
4120         conn->smb1.capabilities = capabilities;
4121
4122         conn->smb1.server.max_xmit = server_max_xmit;
4123         conn->smb1.max_xmit = max_xmit;
4124
4125         conn->smb1.server.max_mux = server_max_mux;
4126
4127         conn->smb1.server.security_mode = server_security_mode;
4128
4129         conn->smb1.server.readbraw = server_readbraw;
4130         conn->smb1.server.writebraw = server_writebraw;
4131         conn->smb1.server.lockread = server_lockread;
4132         conn->smb1.server.writeunlock = server_writeunlock;
4133
4134         conn->smb1.server.session_key = server_session_key;
4135
4136         talloc_steal(conn, server_gss_blob.data);
4137         conn->smb1.server.gss_blob = server_gss_blob;
4138         conn->smb1.server.guid = server_guid;
4139         memcpy(conn->smb1.server.challenge, server_challenge, 8);
4140         conn->smb1.server.workgroup = talloc_move(conn, &server_workgroup);
4141         conn->smb1.server.name = talloc_move(conn, &server_name);
4142
4143         conn->smb1.server.time_zone = server_time_zone;
4144         conn->smb1.server.system_time = server_system_time;
4145
4146         tevent_req_done(req);
4147 }
4148
4149 static struct tevent_req *smbXcli_negprot_smb2_subreq(struct smbXcli_negprot_state *state)
4150 {
4151         size_t i;
4152         uint8_t *buf;
4153         uint16_t dialect_count = 0;
4154
4155         buf = state->smb2.dyn;
4156         for (i=0; i < ARRAY_SIZE(smb2cli_prots); i++) {
4157                 if (smb2cli_prots[i].proto < state->min_protocol) {
4158                         continue;
4159                 }
4160
4161                 if (smb2cli_prots[i].proto > state->max_protocol) {
4162                         continue;
4163                 }
4164
4165                 SSVAL(buf, dialect_count*2, smb2cli_prots[i].smb2_dialect);
4166                 dialect_count++;
4167         }
4168
4169         buf = state->smb2.fixed;
4170         SSVAL(buf, 0, 36);
4171         SSVAL(buf, 2, dialect_count);
4172         SSVAL(buf, 4, state->conn->smb2.client.security_mode);
4173         SSVAL(buf, 6, 0);       /* Reserved */
4174         if (state->max_protocol >= PROTOCOL_SMB2_22) {
4175                 SIVAL(buf, 8, state->conn->smb2.client.capabilities);
4176         } else {
4177                 SIVAL(buf, 8, 0);       /* Capabilities */
4178         }
4179         if (state->max_protocol >= PROTOCOL_SMB2_10) {
4180                 NTSTATUS status;
4181                 DATA_BLOB blob;
4182
4183                 status = GUID_to_ndr_blob(&state->conn->smb2.client.guid,
4184                                           state, &blob);
4185                 if (!NT_STATUS_IS_OK(status)) {
4186                         return NULL;
4187                 }
4188                 memcpy(buf+12, blob.data, 16); /* ClientGuid */
4189         } else {
4190                 memset(buf+12, 0, 16);  /* ClientGuid */
4191         }
4192         SBVAL(buf, 28, 0);      /* ClientStartTime */
4193
4194         return smb2cli_req_send(state, state->ev,
4195                                 state->conn, SMB2_OP_NEGPROT,
4196                                 0, 0, /* flags */
4197                                 state->timeout_msec,
4198                                 NULL, NULL, /* tcon, session */
4199                                 state->smb2.fixed, sizeof(state->smb2.fixed),
4200                                 state->smb2.dyn, dialect_count*2);
4201 }
4202
4203 static void smbXcli_negprot_smb2_done(struct tevent_req *subreq)
4204 {
4205         struct tevent_req *req =
4206                 tevent_req_callback_data(subreq,
4207                 struct tevent_req);
4208         struct smbXcli_negprot_state *state =
4209                 tevent_req_data(req,
4210                 struct smbXcli_negprot_state);
4211         struct smbXcli_conn *conn = state->conn;
4212         size_t security_offset, security_length;
4213         DATA_BLOB blob;
4214         NTSTATUS status;
4215         struct iovec *iov;
4216         uint8_t *body;
4217         size_t i;
4218         uint16_t dialect_revision;
4219         static const struct smb2cli_req_expected_response expected[] = {
4220         {
4221                 .status = NT_STATUS_OK,
4222                 .body_size = 0x41
4223         }
4224         };
4225
4226         status = smb2cli_req_recv(subreq, state, &iov,
4227                                   expected, ARRAY_SIZE(expected));
4228         TALLOC_FREE(subreq);
4229         if (tevent_req_nterror(req, status)) {
4230                 return;
4231         }
4232
4233         body = (uint8_t *)iov[1].iov_base;
4234
4235         dialect_revision = SVAL(body, 4);
4236
4237         for (i=0; i < ARRAY_SIZE(smb2cli_prots); i++) {
4238                 if (smb2cli_prots[i].proto < state->min_protocol) {
4239                         continue;
4240                 }
4241
4242                 if (smb2cli_prots[i].proto > state->max_protocol) {
4243                         continue;
4244                 }
4245
4246                 if (smb2cli_prots[i].smb2_dialect != dialect_revision) {
4247                         continue;
4248                 }
4249
4250                 conn->protocol = smb2cli_prots[i].proto;
4251                 break;
4252         }
4253
4254         if (conn->protocol == PROTOCOL_NONE) {
4255                 if (state->min_protocol >= PROTOCOL_SMB2_02) {
4256                         tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4257                         return;
4258                 }
4259
4260                 if (dialect_revision != SMB2_DIALECT_REVISION_2FF) {
4261                         tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4262                         return;
4263                 }
4264
4265                 /* make sure we do not loop forever */
4266                 state->min_protocol = PROTOCOL_SMB2_02;
4267
4268                 /*
4269                  * send a SMB2 negprot, in order to negotiate
4270                  * the SMB2 dialect.
4271                  */
4272                 subreq = smbXcli_negprot_smb2_subreq(state);
4273                 if (tevent_req_nomem(subreq, req)) {
4274                         return;
4275                 }
4276                 tevent_req_set_callback(subreq, smbXcli_negprot_smb2_done, req);
4277                 return;
4278         }
4279
4280         conn->smb2.server.security_mode = SVAL(body, 2);
4281
4282         blob = data_blob_const(body + 8, 16);
4283         status = GUID_from_data_blob(&blob, &conn->smb2.server.guid);
4284         if (tevent_req_nterror(req, status)) {
4285                 return;
4286         }
4287
4288         conn->smb2.server.capabilities  = IVAL(body, 24);
4289         conn->smb2.server.max_trans_size= IVAL(body, 28);
4290         conn->smb2.server.max_read_size = IVAL(body, 32);
4291         conn->smb2.server.max_write_size= IVAL(body, 36);
4292         conn->smb2.server.system_time   = BVAL(body, 40);
4293         conn->smb2.server.start_time    = BVAL(body, 48);
4294
4295         security_offset = SVAL(body, 56);
4296         security_length = SVAL(body, 58);
4297
4298         if (security_offset != SMB2_HDR_BODY + iov[1].iov_len) {
4299                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4300                 return;
4301         }
4302
4303         if (security_length > iov[2].iov_len) {
4304                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
4305                 return;
4306         }
4307
4308         conn->smb2.server.gss_blob = data_blob_talloc(conn,
4309                                                 iov[2].iov_base,
4310                                                 security_length);
4311         if (tevent_req_nomem(conn->smb2.server.gss_blob.data, req)) {
4312                 return;
4313         }
4314
4315         tevent_req_done(req);
4316 }
4317
4318 static NTSTATUS smbXcli_negprot_dispatch_incoming(struct smbXcli_conn *conn,
4319                                                   TALLOC_CTX *tmp_mem,
4320                                                   uint8_t *inbuf)
4321 {
4322         size_t num_pending = talloc_array_length(conn->pending);
4323         struct tevent_req *subreq;
4324         struct smbXcli_req_state *substate;
4325         struct tevent_req *req;
4326         uint32_t protocol_magic;
4327         size_t inbuf_len = smb_len_nbt(inbuf);
4328
4329         if (num_pending != 1) {
4330                 return NT_STATUS_INTERNAL_ERROR;
4331         }
4332
4333         if (inbuf_len < 4) {
4334                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
4335         }
4336
4337         subreq = conn->pending[0];
4338         substate = tevent_req_data(subreq, struct smbXcli_req_state);
4339         req = tevent_req_callback_data(subreq, struct tevent_req);
4340
4341         protocol_magic = IVAL(inbuf, 4);
4342
4343         switch (protocol_magic) {
4344         case SMB_MAGIC:
4345                 tevent_req_set_callback(subreq, smbXcli_negprot_smb1_done, req);
4346                 conn->dispatch_incoming = smb1cli_conn_dispatch_incoming;
4347                 return smb1cli_conn_dispatch_incoming(conn, tmp_mem, inbuf);
4348
4349         case SMB2_MAGIC:
4350                 if (substate->smb2.recv_iov == NULL) {
4351                         /*
4352                          * For the SMB1 negprot we have move it.
4353                          */
4354                         substate->smb2.recv_iov = substate->smb1.recv_iov;
4355                         substate->smb1.recv_iov = NULL;
4356                 }
4357
4358                 /*
4359                  * we got an SMB2 answer, which consumed sequence number 0
4360                  * so we need to use 1 as the next one
4361                  */
4362                 conn->smb2.mid = 1;
4363                 tevent_req_set_callback(subreq, smbXcli_negprot_smb2_done, req);
4364                 conn->dispatch_incoming = smb2cli_conn_dispatch_incoming;
4365                 return smb2cli_conn_dispatch_incoming(conn, tmp_mem, inbuf);
4366         }
4367
4368         DEBUG(10, ("Got non-SMB PDU\n"));
4369         return NT_STATUS_INVALID_NETWORK_RESPONSE;
4370 }
4371
4372 NTSTATUS smbXcli_negprot_recv(struct tevent_req *req)
4373 {
4374         return tevent_req_simple_recv_ntstatus(req);
4375 }
4376
4377 NTSTATUS smbXcli_negprot(struct smbXcli_conn *conn,
4378                          uint32_t timeout_msec,
4379                          enum protocol_types min_protocol,
4380                          enum protocol_types max_protocol)
4381 {
4382         TALLOC_CTX *frame = talloc_stackframe();
4383         struct tevent_context *ev;
4384         struct tevent_req *req;
4385         NTSTATUS status = NT_STATUS_NO_MEMORY;
4386         bool ok;
4387
4388         if (smbXcli_conn_has_async_calls(conn)) {
4389                 /*
4390                  * Can't use sync call while an async call is in flight
4391                  */
4392                 status = NT_STATUS_INVALID_PARAMETER_MIX;
4393                 goto fail;
4394         }
4395         ev = tevent_context_init(frame);
4396         if (ev == NULL) {
4397                 goto fail;
4398         }
4399         req = smbXcli_negprot_send(frame, ev, conn, timeout_msec,
4400                                    min_protocol, max_protocol);
4401         if (req == NULL) {
4402                 goto fail;
4403         }
4404         ok = tevent_req_poll(req, ev);
4405         if (!ok) {
4406                 status = map_nt_error_from_unix_common(errno);
4407                 goto fail;
4408         }
4409         status = smbXcli_negprot_recv(req);
4410  fail:
4411         TALLOC_FREE(frame);
4412         return status;
4413 }
4414
4415 static int smbXcli_session_destructor(struct smbXcli_session *session)
4416 {
4417         if (session->conn == NULL) {
4418                 return 0;
4419         }
4420
4421         DLIST_REMOVE(session->conn->sessions, session);
4422         return 0;
4423 }
4424
4425 struct smbXcli_session *smbXcli_session_create(TALLOC_CTX *mem_ctx,
4426                                                struct smbXcli_conn *conn)
4427 {
4428         struct smbXcli_session *session;
4429
4430         session = talloc_zero(mem_ctx, struct smbXcli_session);
4431         if (session == NULL) {
4432                 return NULL;
4433         }
4434         session->smb2 = talloc_zero(session, struct smb2cli_session);
4435         if (session->smb2 == NULL) {
4436                 talloc_free(session);
4437                 return NULL;
4438         }
4439         talloc_set_destructor(session, smbXcli_session_destructor);
4440
4441         DLIST_ADD_END(conn->sessions, session, struct smbXcli_session *);
4442         session->conn = conn;
4443
4444         return session;
4445 }
4446
4447 NTSTATUS smbXcli_session_application_key(struct smbXcli_session *session,
4448                                          TALLOC_CTX *mem_ctx,
4449                                          DATA_BLOB *key)
4450 {
4451         const DATA_BLOB *application_key;
4452
4453         *key = data_blob_null;
4454
4455         if (session->conn == NULL) {
4456                 return NT_STATUS_NO_USER_SESSION_KEY;
4457         }
4458
4459         if (session->conn->protocol >= PROTOCOL_SMB2_02) {
4460                 application_key = &session->smb2->application_key;
4461         } else {
4462                 application_key = &session->smb1.application_key;
4463         }
4464
4465         if (application_key->length == 0) {
4466                 return NT_STATUS_NO_USER_SESSION_KEY;
4467         }
4468
4469         *key = data_blob_dup_talloc(mem_ctx, *application_key);
4470         if (key->data == NULL) {
4471                 return NT_STATUS_NO_MEMORY;
4472         }
4473
4474         return NT_STATUS_OK;
4475 }
4476
4477 uint16_t smb1cli_session_current_id(struct smbXcli_session *session)
4478 {
4479         return session->smb1.session_id;
4480 }
4481
4482 void smb1cli_session_set_id(struct smbXcli_session *session,
4483                             uint16_t session_id)
4484 {
4485         session->smb1.session_id = session_id;
4486 }
4487
4488 NTSTATUS smb1cli_session_set_session_key(struct smbXcli_session *session,
4489                                          const DATA_BLOB _session_key)
4490 {
4491         struct smbXcli_conn *conn = session->conn;
4492         uint8_t session_key[16];
4493
4494         if (conn == NULL) {
4495                 return NT_STATUS_INVALID_PARAMETER_MIX;
4496         }
4497
4498         if (session->smb1.application_key.length != 0) {
4499                 /*
4500                  * TODO: do not allow this...
4501                  *
4502                  * return NT_STATUS_INVALID_PARAMETER_MIX;
4503                  */
4504                 data_blob_clear_free(&session->smb1.application_key);
4505                 session->smb1.protected_key = false;
4506         }
4507
4508         if (_session_key.length == 0) {
4509                 return NT_STATUS_OK;
4510         }
4511
4512         ZERO_STRUCT(session_key);
4513         memcpy(session_key, _session_key.data,
4514                MIN(_session_key.length, sizeof(session_key)));
4515
4516         session->smb1.application_key = data_blob_talloc(session,
4517                                                          session_key,
4518                                                          sizeof(session_key));
4519         ZERO_STRUCT(session_key);
4520         if (session->smb1.application_key.data == NULL) {
4521                 return NT_STATUS_NO_MEMORY;
4522         }
4523
4524         session->smb1.protected_key = false;
4525
4526         return NT_STATUS_OK;
4527 }
4528
4529 NTSTATUS smb1cli_session_protect_session_key(struct smbXcli_session *session)
4530 {
4531         if (session->smb1.protected_key) {
4532                 /* already protected */
4533                 return NT_STATUS_OK;
4534         }
4535
4536         if (session->smb1.application_key.length != 16) {
4537                 return NT_STATUS_INVALID_PARAMETER_MIX;
4538         }
4539
4540         smb_key_derivation(session->smb1.application_key.data,
4541                            session->smb1.application_key.length,
4542                            session->smb1.application_key.data);
4543
4544         session->smb1.protected_key = true;
4545
4546         return NT_STATUS_OK;
4547 }
4548
4549 uint8_t smb2cli_session_security_mode(struct smbXcli_session *session)
4550 {
4551         struct smbXcli_conn *conn = session->conn;
4552         uint8_t security_mode = 0;
4553
4554         if (conn == NULL) {
4555                 return security_mode;
4556         }
4557
4558         security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
4559         if (conn->mandatory_signing) {
4560                 security_mode |= SMB2_NEGOTIATE_SIGNING_REQUIRED;
4561         }
4562
4563         return security_mode;
4564 }
4565
4566 uint64_t smb2cli_session_current_id(struct smbXcli_session *session)
4567 {
4568         return session->smb2->session_id;
4569 }
4570
4571 uint16_t smb2cli_session_get_flags(struct smbXcli_session *session)
4572 {
4573         return session->smb2->session_flags;
4574 }
4575
4576 void smb2cli_session_set_id_and_flags(struct smbXcli_session *session,
4577                                       uint64_t session_id,
4578                                       uint16_t session_flags)
4579 {
4580         session->smb2->session_id = session_id;
4581         session->smb2->session_flags = session_flags;
4582 }
4583
4584 void smb2cli_session_increment_channel_sequence(struct smbXcli_session *session)
4585 {
4586         session->smb2->channel_sequence += 1;
4587 }
4588
4589 NTSTATUS smb2cli_session_set_session_key(struct smbXcli_session *session,
4590                                          const DATA_BLOB _session_key,
4591                                          const struct iovec *recv_iov)
4592 {
4593         struct smbXcli_conn *conn = session->conn;
4594         uint16_t no_sign_flags;
4595         uint8_t session_key[16];
4596         NTSTATUS status;
4597
4598         if (conn == NULL) {
4599                 return NT_STATUS_INVALID_PARAMETER_MIX;
4600         }
4601
4602         no_sign_flags = SMB2_SESSION_FLAG_IS_GUEST | SMB2_SESSION_FLAG_IS_NULL;
4603
4604         if (session->smb2->session_flags & no_sign_flags) {
4605                 session->smb2->should_sign = false;
4606                 return NT_STATUS_OK;
4607         }
4608
4609         if (session->smb2->signing_key.length != 0) {
4610                 return NT_STATUS_INVALID_PARAMETER_MIX;
4611         }
4612
4613         ZERO_STRUCT(session_key);
4614         memcpy(session_key, _session_key.data,
4615                MIN(_session_key.length, sizeof(session_key)));
4616
4617         session->smb2->signing_key = data_blob_talloc(session,
4618                                                      session_key,
4619                                                      sizeof(session_key));
4620         if (session->smb2->signing_key.data == NULL) {
4621                 ZERO_STRUCT(session_key);
4622                 return NT_STATUS_NO_MEMORY;
4623         }
4624
4625         if (conn->protocol >= PROTOCOL_SMB2_24) {
4626                 const DATA_BLOB label = data_blob_string_const_null("SMB2AESCMAC");
4627                 const DATA_BLOB context = data_blob_string_const_null("SmbSign");
4628
4629                 smb2_key_derivation(session_key, sizeof(session_key),
4630                                     label.data, label.length,
4631                                     context.data, context.length,
4632                                     session->smb2->signing_key.data);
4633         }
4634
4635         session->smb2->encryption_key = data_blob_dup_talloc(session,
4636                                                 session->smb2->signing_key);
4637         if (session->smb2->encryption_key.data == NULL) {
4638                 ZERO_STRUCT(session_key);
4639                 return NT_STATUS_NO_MEMORY;
4640         }
4641
4642         if (conn->protocol >= PROTOCOL_SMB2_24) {
4643                 const DATA_BLOB label = data_blob_string_const_null("SMB2AESCCM");
4644                 const DATA_BLOB context = data_blob_string_const_null("ServerIn ");
4645
4646                 smb2_key_derivation(session_key, sizeof(session_key),
4647                                     label.data, label.length,
4648                                     context.data, context.length,
4649                                     session->smb2->encryption_key.data);
4650         }
4651
4652         session->smb2->decryption_key = data_blob_dup_talloc(session,
4653                                                 session->smb2->signing_key);
4654         if (session->smb2->decryption_key.data == NULL) {
4655                 ZERO_STRUCT(session_key);
4656                 return NT_STATUS_NO_MEMORY;
4657         }
4658
4659         if (conn->protocol >= PROTOCOL_SMB2_24) {
4660                 const DATA_BLOB label = data_blob_string_const_null("SMB2AESCCM");
4661                 const DATA_BLOB context = data_blob_string_const_null("ServerOut");
4662
4663                 smb2_key_derivation(session_key, sizeof(session_key),
4664                                     label.data, label.length,
4665                                     context.data, context.length,
4666                                     session->smb2->decryption_key.data);
4667         }
4668
4669         session->smb2->application_key = data_blob_dup_talloc(session,
4670                                                 session->smb2->signing_key);
4671         if (session->smb2->application_key.data == NULL) {
4672                 ZERO_STRUCT(session_key);
4673                 return NT_STATUS_NO_MEMORY;
4674         }
4675
4676         if (conn->protocol >= PROTOCOL_SMB2_24) {
4677                 const DATA_BLOB label = data_blob_string_const_null("SMB2APP");
4678                 const DATA_BLOB context = data_blob_string_const_null("SmbRpc");
4679
4680                 smb2_key_derivation(session_key, sizeof(session_key),
4681                                     label.data, label.length,
4682                                     context.data, context.length,
4683                                     session->smb2->application_key.data);
4684         }
4685         ZERO_STRUCT(session_key);
4686
4687         session->smb2_channel.signing_key = data_blob_dup_talloc(session,
4688                                                 session->smb2->signing_key);
4689         if (session->smb2_channel.signing_key.data == NULL) {
4690                 return NT_STATUS_NO_MEMORY;
4691         }
4692
4693         status = smb2_signing_check_pdu(session->smb2_channel.signing_key,
4694                                         session->conn->protocol,
4695                                         recv_iov, 3);
4696         if (!NT_STATUS_IS_OK(status)) {
4697                 return status;
4698         }
4699
4700         session->smb2->should_sign = false;
4701         session->smb2->should_encrypt = false;
4702
4703         if (conn->desire_signing) {
4704                 session->smb2->should_sign = true;
4705         }
4706
4707         if (conn->smb2.server.security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) {
4708                 session->smb2->should_sign = true;
4709         }
4710
4711         if (session->smb2->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) {
4712                 session->smb2->should_encrypt = true;
4713         }
4714
4715         if (conn->protocol < PROTOCOL_SMB2_24) {
4716                 session->smb2->should_encrypt = false;
4717         }
4718
4719         if (!(conn->smb2.server.capabilities & SMB2_CAP_ENCRYPTION)) {
4720                 session->smb2->should_encrypt = false;
4721         }
4722
4723         generate_random_buffer((uint8_t *)&session->smb2->nonce_high,
4724                                sizeof(session->smb2->nonce_high));
4725         session->smb2->nonce_low = 1;
4726
4727         return NT_STATUS_OK;
4728 }
4729
4730 NTSTATUS smb2cli_session_create_channel(TALLOC_CTX *mem_ctx,
4731                                         struct smbXcli_session *session1,
4732                                         struct smbXcli_conn *conn,
4733                                         struct smbXcli_session **_session2)
4734 {
4735         struct smbXcli_session *session2;
4736
4737         if (session1->smb2->signing_key.length == 0) {
4738                 return NT_STATUS_INVALID_PARAMETER_MIX;
4739         }
4740
4741         if (conn == NULL) {
4742                 return NT_STATUS_INVALID_PARAMETER_MIX;
4743         }
4744
4745         session2 = talloc_zero(mem_ctx, struct smbXcli_session);
4746         if (session2 == NULL) {
4747                 return NT_STATUS_NO_MEMORY;
4748         }
4749         session2->smb2 = talloc_reference(session2, session1->smb2);
4750         if (session2->smb2 == NULL) {
4751                 talloc_free(session2);
4752                 return NT_STATUS_NO_MEMORY;
4753         }
4754
4755         talloc_set_destructor(session2, smbXcli_session_destructor);
4756         DLIST_ADD_END(conn->sessions, session2, struct smbXcli_session *);
4757         session2->conn = conn;
4758
4759         *_session2 = session2;
4760         return NT_STATUS_OK;
4761 }
4762
4763 NTSTATUS smb2cli_session_set_channel_key(struct smbXcli_session *session,
4764                                          const DATA_BLOB _channel_key,
4765                                          const struct iovec *recv_iov)
4766 {
4767         struct smbXcli_conn *conn = session->conn;
4768         uint8_t channel_key[16];
4769         NTSTATUS status;
4770
4771         if (conn == NULL) {
4772                 return NT_STATUS_INVALID_PARAMETER_MIX;
4773         }
4774
4775         if (session->smb2_channel.signing_key.length != 0) {
4776                 return NT_STATUS_INVALID_PARAMETER_MIX;
4777         }
4778
4779         ZERO_STRUCT(channel_key);
4780         memcpy(channel_key, _channel_key.data,
4781                MIN(_channel_key.length, sizeof(channel_key)));
4782
4783         session->smb2_channel.signing_key = data_blob_talloc(session,
4784                                                 channel_key,
4785                                                 sizeof(channel_key));
4786         if (session->smb2_channel.signing_key.data == NULL) {
4787                 ZERO_STRUCT(channel_key);
4788                 return NT_STATUS_NO_MEMORY;
4789         }
4790
4791         if (conn->protocol >= PROTOCOL_SMB2_24) {
4792                 const DATA_BLOB label = data_blob_string_const_null("SMB2AESCMAC");
4793                 const DATA_BLOB context = data_blob_string_const_null("SmbSign");
4794
4795                 smb2_key_derivation(channel_key, sizeof(channel_key),
4796                                     label.data, label.length,
4797                                     context.data, context.length,
4798                                     session->smb2_channel.signing_key.data);
4799         }
4800         ZERO_STRUCT(channel_key);
4801
4802         status = smb2_signing_check_pdu(session->smb2_channel.signing_key,
4803                                         session->conn->protocol,
4804                                         recv_iov, 3);
4805         if (!NT_STATUS_IS_OK(status)) {
4806                 return status;
4807         }
4808
4809         return NT_STATUS_OK;
4810 }
4811
4812 struct smbXcli_tcon *smbXcli_tcon_create(TALLOC_CTX *mem_ctx)
4813 {
4814         struct smbXcli_tcon *tcon;
4815
4816         tcon = talloc_zero(mem_ctx, struct smbXcli_tcon);
4817         if (tcon == NULL) {
4818                 return NULL;
4819         }
4820
4821         return tcon;
4822 }
4823
4824 uint16_t smb1cli_tcon_current_id(struct smbXcli_tcon *tcon)
4825 {
4826         return tcon->smb1.tcon_id;
4827 }
4828
4829 void smb1cli_tcon_set_id(struct smbXcli_tcon *tcon, uint16_t tcon_id)
4830 {
4831         tcon->smb1.tcon_id = tcon_id;
4832 }
4833
4834 bool smb1cli_tcon_set_values(struct smbXcli_tcon *tcon,
4835                              uint16_t tcon_id,
4836                              uint16_t optional_support,
4837                              uint32_t maximal_access,
4838                              uint32_t guest_maximal_access,
4839                              const char *service,
4840                              const char *fs_type)
4841 {
4842         tcon->smb1.tcon_id = tcon_id;
4843         tcon->smb1.optional_support = optional_support;
4844         tcon->smb1.maximal_access = maximal_access;
4845         tcon->smb1.guest_maximal_access = guest_maximal_access;
4846
4847         TALLOC_FREE(tcon->smb1.service);
4848         tcon->smb1.service = talloc_strdup(tcon, service);
4849         if (service != NULL && tcon->smb1.service == NULL) {
4850                 return false;
4851         }
4852
4853         TALLOC_FREE(tcon->smb1.fs_type);
4854         tcon->smb1.fs_type = talloc_strdup(tcon, fs_type);
4855         if (fs_type != NULL && tcon->smb1.fs_type == NULL) {
4856                 return false;
4857         }
4858
4859         return true;
4860 }
4861
4862 uint32_t smb2cli_tcon_current_id(struct smbXcli_tcon *tcon)
4863 {
4864         return tcon->smb2.tcon_id;
4865 }
4866
4867 uint32_t smb2cli_tcon_capabilities(struct smbXcli_tcon *tcon)
4868 {
4869         return tcon->smb2.capabilities;
4870 }
4871
4872 void smb2cli_tcon_set_values(struct smbXcli_tcon *tcon,
4873                              struct smbXcli_session *session,
4874                              uint32_t tcon_id,
4875                              uint8_t type,
4876                              uint32_t flags,
4877                              uint32_t capabilities,
4878                              uint32_t maximal_access)
4879 {
4880         tcon->smb2.tcon_id = tcon_id;
4881         tcon->smb2.type = type;
4882         tcon->smb2.flags = flags;
4883         tcon->smb2.capabilities = capabilities;
4884         tcon->smb2.maximal_access = maximal_access;
4885
4886         tcon->smb2.should_encrypt = false;
4887
4888         if (session == NULL) {
4889                 return;
4890         }
4891
4892         tcon->smb2.should_encrypt = session->smb2->should_encrypt;
4893
4894         if (flags & SMB2_SHAREFLAG_ENCRYPT_DATA) {
4895                 tcon->smb2.should_encrypt = true;
4896         }
4897 }