added a simple test for the old SMBtcon interface
[Samba/gebeck_regimport.git] / source / libsmb / cliconnect.c
blob75dcd62c2f37e88a62689a86c3b31bba49d9265a
1 /*
2 Unix SMB/CIFS implementation.
3 client connect/disconnect routines
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Andrew Bartlett 2001-2003
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 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #define NO_SYSLOG
24 #include "includes.h"
27 static const struct {
28 int prot;
29 const char *name;
30 } prots[] = {
31 {PROTOCOL_CORE,"PC NETWORK PROGRAM 1.0"},
32 {PROTOCOL_COREPLUS,"MICROSOFT NETWORKS 1.03"},
33 {PROTOCOL_LANMAN1,"MICROSOFT NETWORKS 3.0"},
34 {PROTOCOL_LANMAN1,"LANMAN1.0"},
35 {PROTOCOL_LANMAN2,"LM1.2X002"},
36 {PROTOCOL_LANMAN2,"DOS LANMAN2.1"},
37 {PROTOCOL_LANMAN2,"Samba"},
38 {PROTOCOL_NT1,"NT LANMAN 1.0"},
39 {PROTOCOL_NT1,"NT LM 0.12"},
40 {-1,NULL}
43 /****************************************************************************
44 Do an old lanman2 style session setup.
45 ****************************************************************************/
47 static BOOL cli_session_setup_lanman2(struct cli_state *cli, const char *user,
48 const char *pass, size_t passlen, const char *workgroup)
50 fstring pword;
51 char *p;
53 if (passlen > sizeof(pword)-1)
54 return False;
56 /* if in share level security then don't send a password now */
57 if (!(cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL))
58 passlen = 0;
60 if (passlen > 0 && (cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen != 24) {
61 /* Encrypted mode needed, and non encrypted password supplied. */
62 passlen = 24;
63 SMBencrypt(pass,cli->secblob.data,(uchar *)pword);
64 } else if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen == 24) {
65 /* Encrypted mode needed, and encrypted password supplied. */
66 memcpy(pword, pass, passlen);
67 } else if (passlen > 0) {
68 /* Plaintext mode needed, assume plaintext supplied. */
69 passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
72 /* send a session setup command */
73 memset(cli->outbuf,'\0',smb_size);
74 set_message(cli->outbuf,10, 0, True);
75 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
76 cli_setup_packet(cli);
78 SCVAL(cli->outbuf,smb_vwv0,0xFF);
79 SSVAL(cli->outbuf,smb_vwv2,cli->max_xmit);
80 SSVAL(cli->outbuf,smb_vwv3,2);
81 SSVAL(cli->outbuf,smb_vwv4,1);
82 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
83 SSVAL(cli->outbuf,smb_vwv7,passlen);
85 p = smb_buf(cli->outbuf);
86 memcpy(p,pword,passlen);
87 p += passlen;
88 p += clistr_push(cli, p, user, -1, STR_TERMINATE|STR_UPPER);
89 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE|STR_UPPER);
90 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
91 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
92 cli_setup_bcc(cli, p);
94 cli_send_smb(cli);
95 if (!cli_receive_smb(cli))
96 return False;
98 show_msg(cli->inbuf);
100 if (cli_is_error(cli))
101 return False;
103 /* use the returned vuid from now on */
104 cli->vuid = SVAL(cli->inbuf,smb_uid);
105 fstrcpy(cli->user_name, user);
107 return True;
110 /****************************************************************************
111 Work out suitable capabilities to offer the server.
112 ****************************************************************************/
114 static uint32 cli_session_setup_capabilities(struct cli_state *cli)
116 uint32 capabilities = CAP_NT_SMBS;
118 if (!cli->force_dos_errors)
119 capabilities |= CAP_STATUS32;
121 if (cli->use_level_II_oplocks)
122 capabilities |= CAP_LEVEL_II_OPLOCKS;
124 if (cli->capabilities & CAP_UNICODE)
125 capabilities |= CAP_UNICODE;
127 if (cli->capabilities & CAP_LARGE_FILES)
128 capabilities |= CAP_LARGE_FILES;
130 return capabilities;
133 /****************************************************************************
134 Do a NT1 guest session setup.
135 ****************************************************************************/
137 static BOOL cli_session_setup_guest(struct cli_state *cli)
139 char *p;
140 uint32 capabilities = cli_session_setup_capabilities(cli);
142 set_message(cli->outbuf,13,0,True);
143 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
144 cli_setup_packet(cli);
146 SCVAL(cli->outbuf,smb_vwv0,0xFF);
147 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
148 SSVAL(cli->outbuf,smb_vwv3,2);
149 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
150 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
151 SSVAL(cli->outbuf,smb_vwv7,0);
152 SSVAL(cli->outbuf,smb_vwv8,0);
153 SIVAL(cli->outbuf,smb_vwv11,capabilities);
154 p = smb_buf(cli->outbuf);
155 p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* username */
156 p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* workgroup */
157 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
158 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
159 cli_setup_bcc(cli, p);
161 cli_send_smb(cli);
162 if (!cli_receive_smb(cli))
163 return False;
165 show_msg(cli->inbuf);
167 if (cli_is_error(cli))
168 return False;
170 cli->vuid = SVAL(cli->inbuf,smb_uid);
172 p = smb_buf(cli->inbuf);
173 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
174 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
175 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
177 fstrcpy(cli->user_name, "");
179 return True;
182 /****************************************************************************
183 Do a NT1 plaintext session setup.
184 ****************************************************************************/
186 static BOOL cli_session_setup_plaintext(struct cli_state *cli, const char *user,
187 const char *pass, const char *workgroup)
189 uint32 capabilities = cli_session_setup_capabilities(cli);
190 char *p;
192 set_message(cli->outbuf,13,0,True);
193 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
194 cli_setup_packet(cli);
196 SCVAL(cli->outbuf,smb_vwv0,0xFF);
197 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
198 SSVAL(cli->outbuf,smb_vwv3,2);
199 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
200 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
201 SSVAL(cli->outbuf,smb_vwv8,0);
202 SIVAL(cli->outbuf,smb_vwv11,capabilities);
203 p = smb_buf(cli->outbuf);
204 p += clistr_push(cli, p, pass, -1, STR_TERMINATE); /* password */
205 SSVAL(cli->outbuf,smb_vwv7,PTR_DIFF(p, smb_buf(cli->outbuf)));
206 p += clistr_push(cli, p, user, -1, STR_TERMINATE); /* username */
207 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE); /* workgroup */
208 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
209 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
210 cli_setup_bcc(cli, p);
212 cli_send_smb(cli);
213 if (!cli_receive_smb(cli))
214 return False;
216 show_msg(cli->inbuf);
218 if (cli_is_error(cli))
219 return False;
221 cli->vuid = SVAL(cli->inbuf,smb_uid);
222 p = smb_buf(cli->inbuf);
223 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
224 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
225 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
226 fstrcpy(cli->user_name, user);
228 return True;
231 static void set_cli_session_key (struct cli_state *cli, DATA_BLOB session_key)
233 memcpy(cli->user_session_key, session_key.data, MIN(session_key.length, sizeof(cli->user_session_key)));
236 /****************************************************************************
237 do a NT1 NTLM/LM encrypted session setup
238 @param cli client state to create do session setup on
239 @param user username
240 @param pass *either* cleartext password (passlen !=24) or LM response.
241 @param ntpass NT response, implies ntpasslen >=24, implies pass is not clear
242 @param workgroup The user's domain.
243 ****************************************************************************/
245 static BOOL cli_session_setup_nt1(struct cli_state *cli, const char *user,
246 const char *pass, size_t passlen,
247 const char *ntpass, size_t ntpasslen,
248 const char *workgroup)
250 uint32 capabilities = cli_session_setup_capabilities(cli);
251 DATA_BLOB lm_response = data_blob(NULL, 0);
252 DATA_BLOB nt_response = data_blob(NULL, 0);
253 DATA_BLOB session_key = data_blob(NULL, 0);
254 BOOL ret = False;
255 char *p;
257 if (passlen != 24) {
258 if (lp_client_ntlmv2_auth()) {
259 DATA_BLOB server_chal;
261 server_chal = data_blob(cli->secblob.data, MIN(cli->secblob.length, 8));
263 if (!SMBNTLMv2encrypt(user, workgroup, pass, server_chal,
264 &lm_response, &nt_response, &session_key)) {
265 data_blob_free(&server_chal);
266 return False;
268 data_blob_free(&server_chal);
270 } else {
271 uchar nt_hash[16];
272 E_md4hash(pass, nt_hash);
274 /* non encrypted password supplied. Ignore ntpass. */
275 if (lp_client_lanman_auth()) {
276 lm_response = data_blob(NULL, 24);
277 SMBencrypt(pass,cli->secblob.data,lm_response.data);
280 nt_response = data_blob(NULL, 24);
281 SMBNTencrypt(pass,cli->secblob.data,nt_response.data);
282 session_key = data_blob(NULL, 16);
283 SMBsesskeygen_ntv1(nt_hash, NULL, session_key.data);
285 cli_simple_set_signing(cli, session_key.data, nt_response);
286 } else {
287 /* pre-encrypted password supplied. Only used for
288 security=server, can't do
289 signing becouse we don't have oringial key */
291 lm_response = data_blob(pass, passlen);
292 nt_response = data_blob(ntpass, ntpasslen);
295 /* send a session setup command */
296 memset(cli->outbuf,'\0',smb_size);
298 set_message(cli->outbuf,13,0,True);
299 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
300 cli_setup_packet(cli);
302 SCVAL(cli->outbuf,smb_vwv0,0xFF);
303 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
304 SSVAL(cli->outbuf,smb_vwv3,2);
305 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
306 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
307 SSVAL(cli->outbuf,smb_vwv7,lm_response.length);
308 SSVAL(cli->outbuf,smb_vwv8,nt_response.length);
309 SIVAL(cli->outbuf,smb_vwv11,capabilities);
310 p = smb_buf(cli->outbuf);
311 if (lm_response.length) {
312 memcpy(p,lm_response.data, lm_response.length); p += lm_response.length;
314 if (nt_response.length) {
315 memcpy(p,nt_response.data, nt_response.length); p += nt_response.length;
317 p += clistr_push(cli, p, user, -1, STR_TERMINATE);
318 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE);
319 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
320 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
321 cli_setup_bcc(cli, p);
323 if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
324 ret = False;
325 goto end;
328 show_msg(cli->inbuf);
330 if (cli_is_error(cli)) {
331 ret = False;
332 goto end;
335 /* use the returned vuid from now on */
336 cli->vuid = SVAL(cli->inbuf,smb_uid);
338 p = smb_buf(cli->inbuf);
339 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
340 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
341 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
343 fstrcpy(cli->user_name, user);
345 if (session_key.data) {
346 /* Have plaintext orginal */
347 set_cli_session_key(cli, session_key);
350 ret = True;
351 end:
352 data_blob_free(&lm_response);
353 data_blob_free(&nt_response);
354 data_blob_free(&session_key);
355 return ret;
358 /****************************************************************************
359 Send a extended security session setup blob
360 ****************************************************************************/
362 static BOOL cli_session_setup_blob_send(struct cli_state *cli, DATA_BLOB blob)
364 uint32 capabilities = cli_session_setup_capabilities(cli);
365 char *p;
367 capabilities |= CAP_EXTENDED_SECURITY;
369 /* send a session setup command */
370 memset(cli->outbuf,'\0',smb_size);
372 set_message(cli->outbuf,12,0,True);
373 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
375 cli_setup_packet(cli);
377 SCVAL(cli->outbuf,smb_vwv0,0xFF);
378 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
379 SSVAL(cli->outbuf,smb_vwv3,2);
380 SSVAL(cli->outbuf,smb_vwv4,1);
381 SIVAL(cli->outbuf,smb_vwv5,0);
382 SSVAL(cli->outbuf,smb_vwv7,blob.length);
383 SIVAL(cli->outbuf,smb_vwv10,capabilities);
384 p = smb_buf(cli->outbuf);
385 memcpy(p, blob.data, blob.length);
386 p += blob.length;
387 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
388 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
389 cli_setup_bcc(cli, p);
390 return cli_send_smb(cli);
393 /****************************************************************************
394 Send a extended security session setup blob, returning a reply blob.
395 ****************************************************************************/
397 static DATA_BLOB cli_session_setup_blob_receive(struct cli_state *cli)
399 DATA_BLOB blob2 = data_blob(NULL, 0);
400 char *p;
401 size_t len;
403 if (!cli_receive_smb(cli))
404 return blob2;
406 show_msg(cli->inbuf);
408 if (cli_is_error(cli) && !NT_STATUS_EQUAL(cli_nt_error(cli),
409 NT_STATUS_MORE_PROCESSING_REQUIRED)) {
410 return blob2;
413 /* use the returned vuid from now on */
414 cli->vuid = SVAL(cli->inbuf,smb_uid);
416 p = smb_buf(cli->inbuf);
418 blob2 = data_blob(p, SVAL(cli->inbuf, smb_vwv3));
420 p += blob2.length;
421 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
423 /* w2k with kerberos doesn't properly null terminate this field */
424 len = smb_buflen(cli->inbuf) - PTR_DIFF(p, smb_buf(cli->inbuf));
425 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), len, 0);
427 return blob2;
430 /****************************************************************************
431 Send a extended security session setup blob, returning a reply blob.
432 ****************************************************************************/
434 static DATA_BLOB cli_session_setup_blob(struct cli_state *cli, DATA_BLOB blob)
436 DATA_BLOB blob2 = data_blob(NULL, 0);
437 if (!cli_session_setup_blob_send(cli, blob)) {
438 return blob2;
441 return cli_session_setup_blob_receive(cli);
444 #ifdef HAVE_KRB5
445 /****************************************************************************
446 Use in-memory credentials cache
447 ****************************************************************************/
448 static void use_in_memory_ccache(void) {
449 setenv(KRB5_ENV_CCNAME, "MEMORY:cliconnect", 1);
452 /****************************************************************************
453 Do a spnego/kerberos encrypted session setup.
454 ****************************************************************************/
456 static BOOL cli_session_setup_kerberos(struct cli_state *cli, const char *principal, const char *workgroup)
458 DATA_BLOB blob2, negTokenTarg;
460 DEBUG(2,("Doing kerberos session setup\n"));
462 /* generate the encapsulated kerberos5 ticket */
463 negTokenTarg = spnego_gen_negTokenTarg(principal, 0);
465 if (!negTokenTarg.data) return False;
467 #if 0
468 file_save("negTokenTarg.dat", negTokenTarg.data, negTokenTarg.length);
469 #endif
471 blob2 = cli_session_setup_blob(cli, negTokenTarg);
473 /* we don't need this blob for kerberos */
474 data_blob_free(&blob2);
476 data_blob_free(&negTokenTarg);
478 return !cli_is_error(cli);
480 #endif
482 /****************************************************************************
483 Do a spnego/NTLMSSP encrypted session setup.
484 ****************************************************************************/
486 static BOOL cli_session_setup_ntlmssp(struct cli_state *cli, const char *user,
487 const char *pass, const char *workgroup)
489 struct ntlmssp_client_state *ntlmssp_state;
490 NTSTATUS nt_status;
491 int turn = 1;
492 DATA_BLOB msg1;
493 DATA_BLOB blob;
494 DATA_BLOB blob_in = data_blob(NULL, 0);
495 DATA_BLOB blob_out;
497 cli_temp_set_signing(cli);
499 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_client_start(&ntlmssp_state))) {
500 return False;
503 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_username(ntlmssp_state, user))) {
504 return False;
506 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_domain(ntlmssp_state, workgroup))) {
507 return False;
509 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_password(ntlmssp_state, pass))) {
510 return False;
513 ntlmssp_state->use_ntlmv2 = lp_client_ntlmv2_auth();
515 do {
516 nt_status = ntlmssp_client_update(ntlmssp_state,
517 blob_in, &blob_out);
518 data_blob_free(&blob_in);
519 if (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
520 if (turn == 1) {
521 /* and wrap it in a SPNEGO wrapper */
522 msg1 = gen_negTokenInit(OID_NTLMSSP, blob_out);
523 } else {
524 /* wrap it in SPNEGO */
525 msg1 = spnego_gen_auth(blob_out);
528 /* now send that blob on its way */
529 if (!cli_session_setup_blob_send(cli, msg1)) {
530 return False;
532 data_blob_free(&msg1);
534 cli_ntlmssp_set_signing(cli, ntlmssp_state);
536 blob = cli_session_setup_blob_receive(cli);
538 nt_status = cli_nt_error(cli);
541 if (!blob.length) {
542 if (NT_STATUS_IS_OK(nt_status)) {
543 nt_status = NT_STATUS_UNSUCCESSFUL;
545 } else if ((turn == 1) &&
546 NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
547 DATA_BLOB tmp_blob = data_blob(NULL, 0);
548 /* the server might give us back two challenges */
549 if (!spnego_parse_challenge(blob, &blob_in,
550 &tmp_blob)) {
551 DEBUG(3,("Failed to parse challenges\n"));
552 nt_status = NT_STATUS_INVALID_PARAMETER;
554 data_blob_free(&tmp_blob);
555 } else {
556 /* the server might give us back two challenges */
557 if (!spnego_parse_auth_response(blob, nt_status,
558 &blob_in)) {
559 DEBUG(3,("Failed to parse auth response\n"));
560 if (NT_STATUS_IS_OK(nt_status)
561 || NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED))
562 nt_status = NT_STATUS_INVALID_PARAMETER;
565 data_blob_free(&blob);
566 data_blob_free(&blob_out);
567 turn++;
568 } while (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED));
570 if (NT_STATUS_IS_OK(nt_status)) {
571 set_cli_session_key(cli, ntlmssp_state->session_key);
574 /* we have a reference conter on ntlmssp_state, if we are signing
575 then the state will be kept by the signing engine */
577 if (!NT_STATUS_IS_OK(ntlmssp_client_end(&ntlmssp_state))) {
578 return False;
581 return (NT_STATUS_IS_OK(nt_status));
584 /****************************************************************************
585 Do a spnego encrypted session setup.
586 ****************************************************************************/
588 static BOOL cli_session_setup_spnego(struct cli_state *cli, const char *user,
589 const char *pass, const char *workgroup)
591 char *principal;
592 char *OIDs[ASN1_MAX_OIDS];
593 int i;
594 BOOL got_kerberos_mechanism = False;
595 DATA_BLOB blob;
597 DEBUG(2,("Doing spnego session setup (blob length=%d)\n", cli->secblob.length));
599 /* the server might not even do spnego */
600 if (cli->secblob.length <= 16) {
601 DEBUG(3,("server didn't supply a full spnego negprot\n"));
602 goto ntlmssp;
605 #if 0
606 file_save("negprot.dat", cli->secblob.data, cli->secblob.length);
607 #endif
609 /* there is 16 bytes of GUID before the real spnego packet starts */
610 blob = data_blob(cli->secblob.data+16, cli->secblob.length-16);
612 /* the server sent us the first part of the SPNEGO exchange in the negprot
613 reply */
614 if (!spnego_parse_negTokenInit(blob, OIDs, &principal)) {
615 data_blob_free(&blob);
616 return False;
618 data_blob_free(&blob);
620 /* make sure the server understands kerberos */
621 for (i=0;OIDs[i];i++) {
622 DEBUG(3,("got OID=%s\n", OIDs[i]));
623 if (strcmp(OIDs[i], OID_KERBEROS5_OLD) == 0 ||
624 strcmp(OIDs[i], OID_KERBEROS5) == 0) {
625 got_kerberos_mechanism = True;
627 free(OIDs[i]);
629 DEBUG(3,("got principal=%s\n", principal));
631 fstrcpy(cli->user_name, user);
633 #ifdef HAVE_KRB5
634 /* If password is set we reauthenticate to kerberos server
635 * and do not store results */
637 if (got_kerberos_mechanism && cli->use_kerberos) {
638 if (*pass) {
639 int ret;
641 use_in_memory_ccache();
642 ret = kerberos_kinit_password(user, pass, 0 /* no time correction for now */);
644 if (ret){
645 DEBUG(0, ("Kinit failed: %s\n", error_message(ret)));
646 return False;
650 return cli_session_setup_kerberos(cli, principal, workgroup);
652 #endif
654 free(principal);
656 ntlmssp:
658 return cli_session_setup_ntlmssp(cli, user, pass, workgroup);
661 /****************************************************************************
662 Send a session setup. The username and workgroup is in UNIX character
663 format and must be converted to DOS codepage format before sending. If the
664 password is in plaintext, the same should be done.
665 ****************************************************************************/
667 BOOL cli_session_setup(struct cli_state *cli,
668 const char *user,
669 const char *pass, int passlen,
670 const char *ntpass, int ntpasslen,
671 const char *workgroup)
673 char *p;
674 fstring user2;
676 /* allow for workgroups as part of the username */
677 fstrcpy(user2, user);
678 if ((p=strchr_m(user2,'\\')) || (p=strchr_m(user2,'/')) ||
679 (p=strchr_m(user2,*lp_winbind_separator()))) {
680 *p = 0;
681 user = p+1;
682 workgroup = user2;
685 if (cli->protocol < PROTOCOL_LANMAN1)
686 return True;
688 /* now work out what sort of session setup we are going to
689 do. I have split this into separate functions to make the
690 flow a bit easier to understand (tridge) */
692 /* if its an older server then we have to use the older request format */
694 if (cli->protocol < PROTOCOL_NT1)
695 return cli_session_setup_lanman2(cli, user, pass, passlen, workgroup);
697 /* if no user is supplied then we have to do an anonymous connection.
698 passwords are ignored */
700 if (!user || !*user)
701 return cli_session_setup_guest(cli);
703 /* if the server is share level then send a plaintext null
704 password at this point. The password is sent in the tree
705 connect */
707 if ((cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) == 0)
708 return cli_session_setup_plaintext(cli, user, "", workgroup);
710 /* if the server doesn't support encryption then we have to use
711 plaintext. The second password is ignored */
713 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) == 0)
714 return cli_session_setup_plaintext(cli, user, pass, workgroup);
716 /* Indidicate signing */
718 /* if the server supports extended security then use SPNEGO */
720 if (cli->capabilities & CAP_EXTENDED_SECURITY)
721 return cli_session_setup_spnego(cli, user, pass, workgroup);
723 /* otherwise do a NT1 style session setup */
725 return cli_session_setup_nt1(cli, user,
726 pass, passlen, ntpass, ntpasslen,
727 workgroup);
730 /****************************************************************************
731 Send a uloggoff.
732 *****************************************************************************/
734 BOOL cli_ulogoff(struct cli_state *cli)
736 memset(cli->outbuf,'\0',smb_size);
737 set_message(cli->outbuf,2,0,True);
738 SCVAL(cli->outbuf,smb_com,SMBulogoffX);
739 cli_setup_packet(cli);
740 SSVAL(cli->outbuf,smb_vwv0,0xFF);
741 SSVAL(cli->outbuf,smb_vwv2,0); /* no additional info */
743 cli_send_smb(cli);
744 if (!cli_receive_smb(cli))
745 return False;
747 return !cli_is_error(cli);
750 /****************************************************************************
751 Send a tconX.
752 ****************************************************************************/
753 BOOL cli_send_tconX(struct cli_state *cli,
754 const char *share, const char *dev, const char *pass, int passlen)
756 fstring fullshare, pword;
757 char *p;
758 memset(cli->outbuf,'\0',smb_size);
759 memset(cli->inbuf,'\0',smb_size);
761 fstrcpy(cli->share, share);
763 /* in user level security don't send a password now */
764 if (cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) {
765 passlen = 1;
766 pass = "";
769 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && *pass && passlen != 24) {
771 * Non-encrypted passwords - convert to DOS codepage before encryption.
773 passlen = 24;
774 SMBencrypt(pass,cli->secblob.data,(uchar *)pword);
775 } else {
776 if((cli->sec_mode & (NEGOTIATE_SECURITY_USER_LEVEL|NEGOTIATE_SECURITY_CHALLENGE_RESPONSE)) == 0) {
778 * Non-encrypted passwords - convert to DOS codepage before using.
780 passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
781 } else {
782 memcpy(pword, pass, passlen);
786 slprintf(fullshare, sizeof(fullshare)-1,
787 "\\\\%s\\%s", cli->desthost, share);
789 set_message(cli->outbuf,4, 0, True);
790 SCVAL(cli->outbuf,smb_com,SMBtconX);
791 cli_setup_packet(cli);
793 SSVAL(cli->outbuf,smb_vwv0,0xFF);
794 SSVAL(cli->outbuf,smb_vwv3,passlen);
796 p = smb_buf(cli->outbuf);
797 memcpy(p,pword,passlen);
798 p += passlen;
799 p += clistr_push(cli, p, fullshare, -1, STR_TERMINATE |STR_UPPER);
800 fstrcpy(p, dev); p += strlen(dev)+1;
802 cli_setup_bcc(cli, p);
804 cli_send_smb(cli);
805 if (!cli_receive_smb(cli))
806 return False;
808 if (cli_is_error(cli))
809 return False;
811 clistr_pull(cli, cli->dev, smb_buf(cli->inbuf), sizeof(fstring), -1, STR_TERMINATE|STR_ASCII);
813 if (strcasecmp(share,"IPC$")==0)
814 fstrcpy(cli->dev, "IPC");
816 if (cli->protocol >= PROTOCOL_NT1 &&
817 smb_buflen(cli->inbuf) == 3) {
818 /* almost certainly win95 - enable bug fixes */
819 cli->win95 = True;
822 cli->cnum = SVAL(cli->inbuf,smb_tid);
823 return True;
826 /****************************************************************************
827 Send a tree disconnect.
828 ****************************************************************************/
830 BOOL cli_tdis(struct cli_state *cli)
832 memset(cli->outbuf,'\0',smb_size);
833 set_message(cli->outbuf,0,0,True);
834 SCVAL(cli->outbuf,smb_com,SMBtdis);
835 SSVAL(cli->outbuf,smb_tid,cli->cnum);
836 cli_setup_packet(cli);
838 cli_send_smb(cli);
839 if (!cli_receive_smb(cli))
840 return False;
842 return !cli_is_error(cli);
845 /****************************************************************************
846 Send a negprot command.
847 ****************************************************************************/
849 void cli_negprot_send(struct cli_state *cli)
851 char *p;
852 int numprots;
854 if (cli->protocol < PROTOCOL_NT1)
855 cli->use_spnego = False;
857 memset(cli->outbuf,'\0',smb_size);
859 /* setup the protocol strings */
860 set_message(cli->outbuf,0,0,True);
862 p = smb_buf(cli->outbuf);
863 for (numprots=0;
864 prots[numprots].name && prots[numprots].prot<=cli->protocol;
865 numprots++) {
866 *p++ = 2;
867 p += clistr_push(cli, p, prots[numprots].name, -1, STR_TERMINATE);
870 SCVAL(cli->outbuf,smb_com,SMBnegprot);
871 cli_setup_bcc(cli, p);
872 cli_setup_packet(cli);
874 SCVAL(smb_buf(cli->outbuf),0,2);
876 cli_send_smb(cli);
879 /****************************************************************************
880 Send a negprot command.
881 ****************************************************************************/
883 BOOL cli_negprot(struct cli_state *cli)
885 char *p;
886 int numprots;
887 int plength;
889 if (cli->protocol < PROTOCOL_NT1)
890 cli->use_spnego = False;
892 memset(cli->outbuf,'\0',smb_size);
894 /* setup the protocol strings */
895 for (plength=0,numprots=0;
896 prots[numprots].name && prots[numprots].prot<=cli->protocol;
897 numprots++)
898 plength += strlen(prots[numprots].name)+2;
900 set_message(cli->outbuf,0,plength,True);
902 p = smb_buf(cli->outbuf);
903 for (numprots=0;
904 prots[numprots].name && prots[numprots].prot<=cli->protocol;
905 numprots++) {
906 *p++ = 2;
907 p += clistr_push(cli, p, prots[numprots].name, -1, STR_TERMINATE);
910 SCVAL(cli->outbuf,smb_com,SMBnegprot);
911 cli_setup_packet(cli);
913 SCVAL(smb_buf(cli->outbuf),0,2);
915 cli_send_smb(cli);
916 if (!cli_receive_smb(cli))
917 return False;
919 show_msg(cli->inbuf);
921 if (cli_is_error(cli) ||
922 ((int)SVAL(cli->inbuf,smb_vwv0) >= numprots)) {
923 return(False);
926 cli->protocol = prots[SVAL(cli->inbuf,smb_vwv0)].prot;
928 if (cli->protocol >= PROTOCOL_NT1) {
929 /* NT protocol */
930 cli->sec_mode = CVAL(cli->inbuf,smb_vwv1);
931 cli->max_mux = SVAL(cli->inbuf, smb_vwv1+1);
932 cli->max_xmit = IVAL(cli->inbuf,smb_vwv3+1);
933 cli->sesskey = IVAL(cli->inbuf,smb_vwv7+1);
934 cli->serverzone = SVALS(cli->inbuf,smb_vwv15+1);
935 cli->serverzone *= 60;
936 /* this time arrives in real GMT */
937 cli->servertime = interpret_long_date(cli->inbuf+smb_vwv11+1);
938 cli->secblob = data_blob(smb_buf(cli->inbuf),smb_buflen(cli->inbuf));
939 cli->capabilities = IVAL(cli->inbuf,smb_vwv9+1);
940 if (cli->capabilities & CAP_RAW_MODE) {
941 cli->readbraw_supported = True;
942 cli->writebraw_supported = True;
944 /* work out if they sent us a workgroup */
945 if (!(cli->capabilities & CAP_EXTENDED_SECURITY) &&
946 smb_buflen(cli->inbuf) > 8) {
947 clistr_pull(cli, cli->server_domain,
948 smb_buf(cli->inbuf)+8, sizeof(cli->server_domain),
949 smb_buflen(cli->inbuf)-8, STR_UNICODE|STR_NOALIGN);
952 if ((cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_REQUIRED))
953 cli->sign_info.negotiated_smb_signing = True;
955 if ((cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED) && cli->sign_info.allow_smb_signing)
956 cli->sign_info.negotiated_smb_signing = True;
958 } else if (cli->protocol >= PROTOCOL_LANMAN1) {
959 cli->use_spnego = False;
960 cli->sec_mode = SVAL(cli->inbuf,smb_vwv1);
961 cli->max_xmit = SVAL(cli->inbuf,smb_vwv2);
962 cli->sesskey = IVAL(cli->inbuf,smb_vwv6);
963 cli->serverzone = SVALS(cli->inbuf,smb_vwv10);
964 cli->serverzone *= 60;
965 /* this time is converted to GMT by make_unix_date */
966 cli->servertime = make_unix_date(cli->inbuf+smb_vwv8);
967 cli->readbraw_supported = ((SVAL(cli->inbuf,smb_vwv5) & 0x1) != 0);
968 cli->writebraw_supported = ((SVAL(cli->inbuf,smb_vwv5) & 0x2) != 0);
969 cli->secblob = data_blob(smb_buf(cli->inbuf),smb_buflen(cli->inbuf));
970 } else {
971 /* the old core protocol */
972 cli->use_spnego = False;
973 cli->sec_mode = 0;
974 cli->serverzone = TimeDiff(time(NULL));
977 cli->max_xmit = MIN(cli->max_xmit, CLI_BUFFER_SIZE);
979 /* a way to force ascii SMB */
980 if (getenv("CLI_FORCE_ASCII"))
981 cli->capabilities &= ~CAP_UNICODE;
983 return True;
986 /****************************************************************************
987 Send a session request. See rfc1002.txt 4.3 and 4.3.2.
988 ****************************************************************************/
990 BOOL cli_session_request(struct cli_state *cli,
991 struct nmb_name *calling, struct nmb_name *called)
993 char *p;
994 int len = 4;
995 extern pstring user_socket_options;
997 memcpy(&(cli->calling), calling, sizeof(*calling));
998 memcpy(&(cli->called ), called , sizeof(*called ));
1000 /* put in the destination name */
1001 p = cli->outbuf+len;
1002 name_mangle(cli->called .name, p, cli->called .name_type);
1003 len += name_len(p);
1005 /* and my name */
1006 p = cli->outbuf+len;
1007 name_mangle(cli->calling.name, p, cli->calling.name_type);
1008 len += name_len(p);
1010 /* 445 doesn't have session request */
1011 if (cli->port == 445)
1012 return True;
1014 /* send a session request (RFC 1002) */
1015 /* setup the packet length
1016 * Remove four bytes from the length count, since the length
1017 * field in the NBT Session Service header counts the number
1018 * of bytes which follow. The cli_send_smb() function knows
1019 * about this and accounts for those four bytes.
1020 * CRH.
1022 len -= 4;
1023 _smb_setlen(cli->outbuf,len);
1024 SCVAL(cli->outbuf,0,0x81);
1026 cli_send_smb(cli);
1027 DEBUG(5,("Sent session request\n"));
1029 if (!cli_receive_smb(cli))
1030 return False;
1032 if (CVAL(cli->inbuf,0) == 0x84) {
1033 /* C. Hoch 9/14/95 Start */
1034 /* For information, here is the response structure.
1035 * We do the byte-twiddling to for portability.
1036 struct RetargetResponse{
1037 unsigned char type;
1038 unsigned char flags;
1039 int16 length;
1040 int32 ip_addr;
1041 int16 port;
1044 int port = (CVAL(cli->inbuf,8)<<8)+CVAL(cli->inbuf,9);
1045 /* SESSION RETARGET */
1046 putip((char *)&cli->dest_ip,cli->inbuf+4);
1048 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ip, port, LONG_CONNECT_TIMEOUT);
1049 if (cli->fd == -1)
1050 return False;
1052 DEBUG(3,("Retargeted\n"));
1054 set_socket_options(cli->fd,user_socket_options);
1056 /* Try again */
1058 static int depth;
1059 BOOL ret;
1060 if (depth > 4) {
1061 DEBUG(0,("Retarget recursion - failing\n"));
1062 return False;
1064 depth++;
1065 ret = cli_session_request(cli, calling, called);
1066 depth--;
1067 return ret;
1069 } /* C. Hoch 9/14/95 End */
1071 if (CVAL(cli->inbuf,0) != 0x82) {
1072 /* This is the wrong place to put the error... JRA. */
1073 cli->rap_error = CVAL(cli->inbuf,4);
1074 return False;
1076 return(True);
1079 /****************************************************************************
1080 Open the client sockets.
1081 ****************************************************************************/
1083 BOOL cli_connect(struct cli_state *cli, const char *host, struct in_addr *ip)
1085 extern pstring user_socket_options;
1086 int name_type = 0x20;
1087 char *p;
1089 /* reasonable default hostname */
1090 if (!host) host = "*SMBSERVER";
1092 fstrcpy(cli->desthost, host);
1094 /* allow hostnames of the form NAME#xx and do a netbios lookup */
1095 if ((p = strchr(cli->desthost, '#'))) {
1096 name_type = strtol(p+1, NULL, 16);
1097 *p = 0;
1100 if (!ip || is_zero_ip(*ip)) {
1101 if (!resolve_name(cli->desthost, &cli->dest_ip, name_type)) {
1102 return False;
1104 if (ip) *ip = cli->dest_ip;
1105 } else {
1106 cli->dest_ip = *ip;
1109 if (getenv("LIBSMB_PROG")) {
1110 cli->fd = sock_exec(getenv("LIBSMB_PROG"));
1111 } else {
1112 /* try 445 first, then 139 */
1113 int port = cli->port?cli->port:445;
1114 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ip,
1115 port, cli->timeout);
1116 if (cli->fd == -1 && cli->port == 0) {
1117 port = 139;
1118 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ip,
1119 port, cli->timeout);
1121 if (cli->fd != -1)
1122 cli->port = port;
1124 if (cli->fd == -1) {
1125 DEBUG(1,("Error connecting to %s (%s)\n",
1126 ip?inet_ntoa(*ip):host,strerror(errno)));
1127 return False;
1130 set_socket_options(cli->fd,user_socket_options);
1132 return True;
1135 /****************************************************************************
1136 Initialise client credentials for authenticated pipe access.
1137 ****************************************************************************/
1139 static void init_creds(struct ntuser_creds *creds, const char* username,
1140 const char* domain, const char* password)
1142 ZERO_STRUCTP(creds);
1144 pwd_set_cleartext(&creds->pwd, password);
1146 fstrcpy(creds->user_name, username);
1147 fstrcpy(creds->domain, domain);
1149 if (!*username) {
1150 creds->pwd.null_pwd = True;
1155 establishes a connection right up to doing tconX, password specified.
1156 @param output_cli A fully initialised cli structure, non-null only on success
1157 @param dest_host The netbios name of the remote host
1158 @param dest_ip (optional) The the destination IP, NULL for name based lookup
1159 @param port (optional) The destination port (0 for default)
1160 @param service (optional) The share to make the connection to. Should be 'unqualified' in any way.
1161 @param service_type The 'type' of serivice.
1162 @param user Username, unix string
1163 @param domain User's domain
1164 @param password User's password, unencrypted unix string.
1165 @param retry BOOL. Did this connection fail with a retryable error ?
1168 NTSTATUS cli_full_connection(struct cli_state **output_cli,
1169 const char *my_name,
1170 const char *dest_host,
1171 struct in_addr *dest_ip, int port,
1172 const char *service, const char *service_type,
1173 const char *user, const char *domain,
1174 const char *password, int flags,
1175 BOOL *retry)
1177 struct ntuser_creds creds;
1178 NTSTATUS nt_status;
1179 struct nmb_name calling;
1180 struct nmb_name called;
1181 struct cli_state *cli;
1182 struct in_addr ip;
1184 if (retry)
1185 *retry = False;
1187 if (!my_name)
1188 my_name = global_myname();
1190 if (!(cli = cli_initialise(NULL)))
1191 return NT_STATUS_NO_MEMORY;
1193 make_nmb_name(&calling, my_name, 0x0);
1194 make_nmb_name(&called , dest_host, 0x20);
1196 if (cli_set_port(cli, port) != port) {
1197 cli_shutdown(cli);
1198 return NT_STATUS_UNSUCCESSFUL;
1201 cli_set_timeout(cli, 10000); /* 10 seconds. */
1203 if (dest_ip)
1204 ip = *dest_ip;
1205 else
1206 ZERO_STRUCT(ip);
1208 again:
1210 DEBUG(3,("Connecting to host=%s share=%s\n", dest_host, service));
1212 if (!cli_connect(cli, dest_host, &ip)) {
1213 DEBUG(1,("cli_full_connection: failed to connect to %s (%s)\n",
1214 nmb_namestr(&called), inet_ntoa(ip)));
1215 cli_shutdown(cli);
1216 return NT_STATUS_UNSUCCESSFUL;
1219 if (retry)
1220 *retry = True;
1222 if (!cli_session_request(cli, &calling, &called)) {
1223 char *p;
1224 DEBUG(1,("session request to %s failed (%s)\n",
1225 called.name, cli_errstr(cli)));
1226 if ((p=strchr(called.name, '.')) && !is_ipaddress(called.name)) {
1227 *p = 0;
1228 goto again;
1230 if (strcmp(called.name, "*SMBSERVER")) {
1231 make_nmb_name(&called , "*SMBSERVER", 0x20);
1232 goto again;
1234 return NT_STATUS_UNSUCCESSFUL;
1237 if (flags & CLI_FULL_CONNECTION_DONT_SPNEGO)
1238 cli->use_spnego = False;
1239 else if (flags & CLI_FULL_CONNECTION_USE_KERBEROS)
1240 cli->use_kerberos = True;
1242 if (!cli_negprot(cli)) {
1243 DEBUG(1,("failed negprot\n"));
1244 nt_status = NT_STATUS_UNSUCCESSFUL;
1245 cli_shutdown(cli);
1246 return nt_status;
1249 if (!cli_session_setup(cli, user, password, strlen(password)+1,
1250 password, strlen(password)+1,
1251 domain)) {
1252 if ((flags & CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK)
1253 && cli_session_setup(cli, "", "", 0, "", 0, domain)) {
1254 } else {
1255 nt_status = cli_nt_error(cli);
1256 DEBUG(1,("failed session setup with %s\n", nt_errstr(nt_status)));
1257 cli_shutdown(cli);
1258 if (NT_STATUS_IS_OK(nt_status))
1259 nt_status = NT_STATUS_UNSUCCESSFUL;
1260 return nt_status;
1264 if (service) {
1265 if (!cli_send_tconX(cli, service, service_type,
1266 password, strlen(password)+1)) {
1267 nt_status = cli_nt_error(cli);
1268 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(nt_status)));
1269 cli_shutdown(cli);
1270 if (NT_STATUS_IS_OK(nt_status)) {
1271 nt_status = NT_STATUS_UNSUCCESSFUL;
1273 return nt_status;
1277 init_creds(&creds, user, domain, password);
1278 cli_init_creds(cli, &creds);
1280 *output_cli = cli;
1281 return NT_STATUS_OK;
1284 /****************************************************************************
1285 Attempt a NetBIOS session request, falling back to *SMBSERVER if needed.
1286 ****************************************************************************/
1288 BOOL attempt_netbios_session_request(struct cli_state *cli, const char *srchost, const char *desthost,
1289 struct in_addr *pdest_ip)
1291 struct nmb_name calling, called;
1293 make_nmb_name(&calling, srchost, 0x0);
1296 * If the called name is an IP address
1297 * then use *SMBSERVER immediately.
1300 if(is_ipaddress(desthost))
1301 make_nmb_name(&called, "*SMBSERVER", 0x20);
1302 else
1303 make_nmb_name(&called, desthost, 0x20);
1305 if (!cli_session_request(cli, &calling, &called)) {
1306 struct nmb_name smbservername;
1308 make_nmb_name(&smbservername , "*SMBSERVER", 0x20);
1311 * If the name wasn't *SMBSERVER then
1312 * try with *SMBSERVER if the first name fails.
1315 if (nmb_name_equal(&called, &smbservername)) {
1318 * The name used was *SMBSERVER, don't bother with another name.
1321 DEBUG(0,("attempt_netbios_session_request: %s rejected the session for name *SMBSERVER \
1322 with error %s.\n", desthost, cli_errstr(cli) ));
1323 return False;
1327 * We need to close the connection here but can't call cli_shutdown as
1328 * will free an allocated cli struct. cli_close_connection was invented
1329 * for this purpose. JRA. Based on work by "Kim R. Pedersen" <krp@filanet.dk>.
1332 cli_close_connection(cli);
1334 if (!cli_initialise(cli) ||
1335 !cli_connect(cli, desthost, pdest_ip) ||
1336 !cli_session_request(cli, &calling, &smbservername)) {
1337 DEBUG(0,("attempt_netbios_session_request: %s rejected the session for \
1338 name *SMBSERVER with error %s\n", desthost, cli_errstr(cli) ));
1339 return False;
1343 return True;
1350 /****************************************************************************
1351 Send an old style tcon.
1352 ****************************************************************************/
1353 NTSTATUS cli_raw_tcon(struct cli_state *cli,
1354 const char *service, const char *pass, const char *dev,
1355 uint16 *max_xmit, uint16 *tid)
1357 char *p;
1359 memset(cli->outbuf,'\0',smb_size);
1360 memset(cli->inbuf,'\0',smb_size);
1362 set_message(cli->outbuf, 0, 0, True);
1363 SCVAL(cli->outbuf,smb_com,SMBtcon);
1364 cli_setup_packet(cli);
1366 p = smb_buf(cli->outbuf);
1367 *p++ = 4; p += clistr_push(cli, p, service, -1, STR_TERMINATE | STR_NOALIGN);
1368 *p++ = 4; p += clistr_push(cli, p, pass, -1, STR_TERMINATE | STR_NOALIGN);
1369 *p++ = 4; p += clistr_push(cli, p, dev, -1, STR_TERMINATE | STR_NOALIGN);
1371 cli_setup_bcc(cli, p);
1373 cli_send_smb(cli);
1374 if (!cli_receive_smb(cli)) {
1375 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
1378 if (cli_is_error(cli)) {
1379 return cli_nt_error(cli);
1382 *max_xmit = SVAL(cli->inbuf, smb_vwv0);
1383 *tid = SVAL(cli->inbuf, smb_vwv1);
1385 return NT_STATUS_OK;