Fix Windows 2008 (Longhorn) join.
[Samba/gebeck_regimport.git] / source3 / libsmb / cliconnect.c
blobde5813df6b5d9254c5553b7033106e93780be8a0
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 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
23 static const struct {
24 int prot;
25 const char *name;
26 } prots[] = {
27 {PROTOCOL_CORE,"PC NETWORK PROGRAM 1.0"},
28 {PROTOCOL_COREPLUS,"MICROSOFT NETWORKS 1.03"},
29 {PROTOCOL_LANMAN1,"MICROSOFT NETWORKS 3.0"},
30 {PROTOCOL_LANMAN1,"LANMAN1.0"},
31 {PROTOCOL_LANMAN2,"LM1.2X002"},
32 {PROTOCOL_LANMAN2,"DOS LANMAN2.1"},
33 {PROTOCOL_LANMAN2,"LANMAN2.1"},
34 {PROTOCOL_LANMAN2,"Samba"},
35 {PROTOCOL_NT1,"NT LANMAN 1.0"},
36 {PROTOCOL_NT1,"NT LM 0.12"},
37 {-1,NULL}
40 static const char *star_smbserver_name = "*SMBSERVER";
42 /**
43 * Set the user session key for a connection
44 * @param cli The cli structure to add it too
45 * @param session_key The session key used. (A copy of this is taken for the cli struct)
49 static void cli_set_session_key (struct cli_state *cli, const DATA_BLOB session_key)
51 cli->user_session_key = data_blob(session_key.data, session_key.length);
54 /****************************************************************************
55 Do an old lanman2 style session setup.
56 ****************************************************************************/
58 static NTSTATUS cli_session_setup_lanman2(struct cli_state *cli,
59 const char *user,
60 const char *pass, size_t passlen,
61 const char *workgroup)
63 DATA_BLOB session_key = data_blob_null;
64 DATA_BLOB lm_response = data_blob_null;
65 fstring pword;
66 char *p;
68 if (passlen > sizeof(pword)-1) {
69 return NT_STATUS_INVALID_PARAMETER;
72 /* LANMAN servers predate NT status codes and Unicode and ignore those
73 smb flags so we must disable the corresponding default capabilities
74 that would otherwise cause the Unicode and NT Status flags to be
75 set (and even returned by the server) */
77 cli->capabilities &= ~(CAP_UNICODE | CAP_STATUS32);
79 /* if in share level security then don't send a password now */
80 if (!(cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL))
81 passlen = 0;
83 if (passlen > 0 && (cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen != 24) {
84 /* Encrypted mode needed, and non encrypted password supplied. */
85 lm_response = data_blob(NULL, 24);
86 if (!SMBencrypt(pass, cli->secblob.data,(uchar *)lm_response.data)) {
87 DEBUG(1, ("Password is > 14 chars in length, and is therefore incompatible with Lanman authentication\n"));
88 return NT_STATUS_ACCESS_DENIED;
90 } else if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen == 24) {
91 /* Encrypted mode needed, and encrypted password supplied. */
92 lm_response = data_blob(pass, passlen);
93 } else if (passlen > 0) {
94 /* Plaintext mode needed, assume plaintext supplied. */
95 passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
96 lm_response = data_blob(pass, passlen);
99 /* send a session setup command */
100 memset(cli->outbuf,'\0',smb_size);
101 cli_set_message(cli->outbuf,10, 0, True);
102 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
103 cli_setup_packet(cli);
105 SCVAL(cli->outbuf,smb_vwv0,0xFF);
106 SSVAL(cli->outbuf,smb_vwv2,cli->max_xmit);
107 SSVAL(cli->outbuf,smb_vwv3,2);
108 SSVAL(cli->outbuf,smb_vwv4,1);
109 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
110 SSVAL(cli->outbuf,smb_vwv7,lm_response.length);
112 p = smb_buf(cli->outbuf);
113 memcpy(p,lm_response.data,lm_response.length);
114 p += lm_response.length;
115 p += clistr_push(cli, p, user, -1, STR_TERMINATE|STR_UPPER);
116 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE|STR_UPPER);
117 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
118 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
119 cli_setup_bcc(cli, p);
121 if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
122 return cli_nt_error(cli);
125 show_msg(cli->inbuf);
127 if (cli_is_error(cli)) {
128 return cli_nt_error(cli);
131 /* use the returned vuid from now on */
132 cli->vuid = SVAL(cli->inbuf,smb_uid);
133 fstrcpy(cli->user_name, user);
135 if (session_key.data) {
136 /* Have plaintext orginal */
137 cli_set_session_key(cli, session_key);
140 return NT_STATUS_OK;
143 /****************************************************************************
144 Work out suitable capabilities to offer the server.
145 ****************************************************************************/
147 static uint32 cli_session_setup_capabilities(struct cli_state *cli)
149 uint32 capabilities = CAP_NT_SMBS;
151 if (!cli->force_dos_errors)
152 capabilities |= CAP_STATUS32;
154 if (cli->use_level_II_oplocks)
155 capabilities |= CAP_LEVEL_II_OPLOCKS;
157 capabilities |= (cli->capabilities & (CAP_UNICODE|CAP_LARGE_FILES|CAP_LARGE_READX|CAP_LARGE_WRITEX|CAP_DFS));
158 return capabilities;
161 /****************************************************************************
162 Do a NT1 guest session setup.
163 ****************************************************************************/
165 static NTSTATUS cli_session_setup_guest(struct cli_state *cli)
167 char *p;
168 uint32 capabilities = cli_session_setup_capabilities(cli);
170 memset(cli->outbuf, '\0', smb_size);
171 cli_set_message(cli->outbuf,13,0,True);
172 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
173 cli_setup_packet(cli);
175 SCVAL(cli->outbuf,smb_vwv0,0xFF);
176 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
177 SSVAL(cli->outbuf,smb_vwv3,2);
178 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
179 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
180 SSVAL(cli->outbuf,smb_vwv7,0);
181 SSVAL(cli->outbuf,smb_vwv8,0);
182 SIVAL(cli->outbuf,smb_vwv11,capabilities);
183 p = smb_buf(cli->outbuf);
184 p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* username */
185 p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* workgroup */
186 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
187 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
188 cli_setup_bcc(cli, p);
190 if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
191 return cli_nt_error(cli);
194 show_msg(cli->inbuf);
196 if (cli_is_error(cli)) {
197 return cli_nt_error(cli);
200 cli->vuid = SVAL(cli->inbuf,smb_uid);
202 p = smb_buf(cli->inbuf);
203 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
204 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
205 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
207 if (strstr(cli->server_type, "Samba")) {
208 cli->is_samba = True;
211 fstrcpy(cli->user_name, "");
213 return NT_STATUS_OK;
216 /****************************************************************************
217 Do a NT1 plaintext session setup.
218 ****************************************************************************/
220 static NTSTATUS cli_session_setup_plaintext(struct cli_state *cli,
221 const char *user, const char *pass,
222 const char *workgroup)
224 uint32 capabilities = cli_session_setup_capabilities(cli);
225 char *p;
226 fstring lanman;
228 fstr_sprintf( lanman, "Samba %s", SAMBA_VERSION_STRING);
230 memset(cli->outbuf, '\0', smb_size);
231 cli_set_message(cli->outbuf,13,0,True);
232 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
233 cli_setup_packet(cli);
235 SCVAL(cli->outbuf,smb_vwv0,0xFF);
236 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
237 SSVAL(cli->outbuf,smb_vwv3,2);
238 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
239 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
240 SSVAL(cli->outbuf,smb_vwv8,0);
241 SIVAL(cli->outbuf,smb_vwv11,capabilities);
242 p = smb_buf(cli->outbuf);
244 /* check wether to send the ASCII or UNICODE version of the password */
246 if ( (capabilities & CAP_UNICODE) == 0 ) {
247 p += clistr_push(cli, p, pass, -1, STR_TERMINATE); /* password */
248 SSVAL(cli->outbuf,smb_vwv7,PTR_DIFF(p, smb_buf(cli->outbuf)));
250 else {
251 p += clistr_push(cli, p, pass, -1, STR_UNICODE|STR_TERMINATE); /* unicode password */
252 SSVAL(cli->outbuf,smb_vwv8,PTR_DIFF(p, smb_buf(cli->outbuf)));
255 p += clistr_push(cli, p, user, -1, STR_TERMINATE); /* username */
256 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE); /* workgroup */
257 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
258 p += clistr_push(cli, p, lanman, -1, STR_TERMINATE);
259 cli_setup_bcc(cli, p);
261 if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
262 return cli_nt_error(cli);
265 show_msg(cli->inbuf);
267 if (cli_is_error(cli)) {
268 return cli_nt_error(cli);
271 cli->vuid = SVAL(cli->inbuf,smb_uid);
272 p = smb_buf(cli->inbuf);
273 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
274 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
275 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
276 fstrcpy(cli->user_name, user);
278 if (strstr(cli->server_type, "Samba")) {
279 cli->is_samba = True;
282 return NT_STATUS_OK;
285 /****************************************************************************
286 do a NT1 NTLM/LM encrypted session setup - for when extended security
287 is not negotiated.
288 @param cli client state to create do session setup on
289 @param user username
290 @param pass *either* cleartext password (passlen !=24) or LM response.
291 @param ntpass NT response, implies ntpasslen >=24, implies pass is not clear
292 @param workgroup The user's domain.
293 ****************************************************************************/
295 static NTSTATUS cli_session_setup_nt1(struct cli_state *cli, const char *user,
296 const char *pass, size_t passlen,
297 const char *ntpass, size_t ntpasslen,
298 const char *workgroup)
300 uint32 capabilities = cli_session_setup_capabilities(cli);
301 DATA_BLOB lm_response = data_blob_null;
302 DATA_BLOB nt_response = data_blob_null;
303 DATA_BLOB session_key = data_blob_null;
304 NTSTATUS result;
305 char *p;
307 if (passlen == 0) {
308 /* do nothing - guest login */
309 } else if (passlen != 24) {
310 if (lp_client_ntlmv2_auth()) {
311 DATA_BLOB server_chal;
312 DATA_BLOB names_blob;
313 server_chal = data_blob(cli->secblob.data, MIN(cli->secblob.length, 8));
315 /* note that the 'workgroup' here is a best guess - we don't know
316 the server's domain at this point. The 'server name' is also
317 dodgy...
319 names_blob = NTLMv2_generate_names_blob(cli->called.name, workgroup);
321 if (!SMBNTLMv2encrypt(user, workgroup, pass, &server_chal,
322 &names_blob,
323 &lm_response, &nt_response, &session_key)) {
324 data_blob_free(&names_blob);
325 data_blob_free(&server_chal);
326 return NT_STATUS_ACCESS_DENIED;
328 data_blob_free(&names_blob);
329 data_blob_free(&server_chal);
331 } else {
332 uchar nt_hash[16];
333 E_md4hash(pass, nt_hash);
335 #ifdef LANMAN_ONLY
336 nt_response = data_blob_null;
337 #else
338 nt_response = data_blob(NULL, 24);
339 SMBNTencrypt(pass,cli->secblob.data,nt_response.data);
340 #endif
341 /* non encrypted password supplied. Ignore ntpass. */
342 if (lp_client_lanman_auth()) {
343 lm_response = data_blob(NULL, 24);
344 if (!SMBencrypt(pass,cli->secblob.data, lm_response.data)) {
345 /* Oops, the LM response is invalid, just put
346 the NT response there instead */
347 data_blob_free(&lm_response);
348 lm_response = data_blob(nt_response.data, nt_response.length);
350 } else {
351 /* LM disabled, place NT# in LM field instead */
352 lm_response = data_blob(nt_response.data, nt_response.length);
355 session_key = data_blob(NULL, 16);
356 #ifdef LANMAN_ONLY
357 E_deshash(pass, session_key.data);
358 memset(&session_key.data[8], '\0', 8);
359 #else
360 SMBsesskeygen_ntv1(nt_hash, NULL, session_key.data);
361 #endif
363 #ifdef LANMAN_ONLY
364 cli_simple_set_signing(cli, session_key, lm_response);
365 #else
366 cli_simple_set_signing(cli, session_key, nt_response);
367 #endif
368 } else {
369 /* pre-encrypted password supplied. Only used for
370 security=server, can't do
371 signing because we don't have original key */
373 lm_response = data_blob(pass, passlen);
374 nt_response = data_blob(ntpass, ntpasslen);
377 /* send a session setup command */
378 memset(cli->outbuf,'\0',smb_size);
380 cli_set_message(cli->outbuf,13,0,True);
381 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
382 cli_setup_packet(cli);
384 SCVAL(cli->outbuf,smb_vwv0,0xFF);
385 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
386 SSVAL(cli->outbuf,smb_vwv3,2);
387 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
388 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
389 SSVAL(cli->outbuf,smb_vwv7,lm_response.length);
390 SSVAL(cli->outbuf,smb_vwv8,nt_response.length);
391 SIVAL(cli->outbuf,smb_vwv11,capabilities);
392 p = smb_buf(cli->outbuf);
393 if (lm_response.length) {
394 memcpy(p,lm_response.data, lm_response.length); p += lm_response.length;
396 if (nt_response.length) {
397 memcpy(p,nt_response.data, nt_response.length); p += nt_response.length;
399 p += clistr_push(cli, p, user, -1, STR_TERMINATE);
401 /* Upper case here might help some NTLMv2 implementations */
402 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE|STR_UPPER);
403 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
404 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
405 cli_setup_bcc(cli, p);
407 if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
408 result = cli_nt_error(cli);
409 goto end;
412 /* show_msg(cli->inbuf); */
414 if (cli_is_error(cli)) {
415 result = cli_nt_error(cli);
416 goto end;
419 /* use the returned vuid from now on */
420 cli->vuid = SVAL(cli->inbuf,smb_uid);
422 p = smb_buf(cli->inbuf);
423 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
424 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
425 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
427 if (strstr(cli->server_type, "Samba")) {
428 cli->is_samba = True;
431 fstrcpy(cli->user_name, user);
433 if (session_key.data) {
434 /* Have plaintext orginal */
435 cli_set_session_key(cli, session_key);
438 result = NT_STATUS_OK;
439 end:
440 data_blob_free(&lm_response);
441 data_blob_free(&nt_response);
442 data_blob_free(&session_key);
443 return result;
446 /****************************************************************************
447 Send a extended security session setup blob
448 ****************************************************************************/
450 static bool cli_session_setup_blob_send(struct cli_state *cli, DATA_BLOB blob)
452 uint32 capabilities = cli_session_setup_capabilities(cli);
453 char *p;
455 capabilities |= CAP_EXTENDED_SECURITY;
457 /* send a session setup command */
458 memset(cli->outbuf,'\0',smb_size);
460 cli_set_message(cli->outbuf,12,0,True);
461 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
463 cli_setup_packet(cli);
465 SCVAL(cli->outbuf,smb_vwv0,0xFF);
466 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
467 SSVAL(cli->outbuf,smb_vwv3,2);
468 SSVAL(cli->outbuf,smb_vwv4,1);
469 SIVAL(cli->outbuf,smb_vwv5,0);
470 SSVAL(cli->outbuf,smb_vwv7,blob.length);
471 SIVAL(cli->outbuf,smb_vwv10,capabilities);
472 p = smb_buf(cli->outbuf);
473 memcpy(p, blob.data, blob.length);
474 p += blob.length;
475 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
476 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
477 cli_setup_bcc(cli, p);
478 return cli_send_smb(cli);
481 /****************************************************************************
482 Send a extended security session setup blob, returning a reply blob.
483 ****************************************************************************/
485 static DATA_BLOB cli_session_setup_blob_receive(struct cli_state *cli)
487 DATA_BLOB blob2 = data_blob_null;
488 char *p;
489 size_t len;
491 if (!cli_receive_smb(cli))
492 return blob2;
494 show_msg(cli->inbuf);
496 if (cli_is_error(cli) && !NT_STATUS_EQUAL(cli_nt_error(cli),
497 NT_STATUS_MORE_PROCESSING_REQUIRED)) {
498 return blob2;
501 /* use the returned vuid from now on */
502 cli->vuid = SVAL(cli->inbuf,smb_uid);
504 p = smb_buf(cli->inbuf);
506 blob2 = data_blob(p, SVAL(cli->inbuf, smb_vwv3));
508 p += blob2.length;
509 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
511 /* w2k with kerberos doesn't properly null terminate this field */
512 len = smb_buflen(cli->inbuf) - PTR_DIFF(p, smb_buf(cli->inbuf));
513 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), len, 0);
515 return blob2;
518 #ifdef HAVE_KRB5
519 /****************************************************************************
520 Send a extended security session setup blob, returning a reply blob.
521 ****************************************************************************/
523 /* The following is calculated from :
524 * (smb_size-4) = 35
525 * (smb_wcnt * 2) = 24 (smb_wcnt == 12 in cli_session_setup_blob_send() )
526 * (strlen("Unix") + 1 + strlen("Samba") + 1) * 2 = 22 (unicode strings at
527 * end of packet.
530 #define BASE_SESSSETUP_BLOB_PACKET_SIZE (35 + 24 + 22)
532 static bool cli_session_setup_blob(struct cli_state *cli, DATA_BLOB blob, DATA_BLOB session_key_krb5)
534 int32 remaining = blob.length;
535 int32 cur = 0;
536 DATA_BLOB send_blob = data_blob_null;
537 int32 max_blob_size = 0;
538 DATA_BLOB receive_blob = data_blob_null;
540 if (cli->max_xmit < BASE_SESSSETUP_BLOB_PACKET_SIZE + 1) {
541 DEBUG(0,("cli_session_setup_blob: cli->max_xmit too small "
542 "(was %u, need minimum %u)\n",
543 (unsigned int)cli->max_xmit,
544 BASE_SESSSETUP_BLOB_PACKET_SIZE));
545 cli_set_nt_error(cli, NT_STATUS_INVALID_PARAMETER);
546 return False;
549 max_blob_size = cli->max_xmit - BASE_SESSSETUP_BLOB_PACKET_SIZE;
551 while ( remaining > 0) {
552 if (remaining >= max_blob_size) {
553 send_blob.length = max_blob_size;
554 remaining -= max_blob_size;
555 } else {
556 DATA_BLOB null_blob = data_blob_null;
558 send_blob.length = remaining;
559 remaining = 0;
561 /* This is the last packet in the sequence - turn signing on. */
562 cli_simple_set_signing(cli, session_key_krb5, null_blob);
565 send_blob.data = &blob.data[cur];
566 cur += send_blob.length;
568 DEBUG(10, ("cli_session_setup_blob: Remaining (%u) sending (%u) current (%u)\n",
569 (unsigned int)remaining,
570 (unsigned int)send_blob.length,
571 (unsigned int)cur ));
573 if (!cli_session_setup_blob_send(cli, send_blob)) {
574 DEBUG(0, ("cli_session_setup_blob: send failed\n"));
575 return False;
578 receive_blob = cli_session_setup_blob_receive(cli);
579 data_blob_free(&receive_blob);
581 if (cli_is_error(cli) &&
582 !NT_STATUS_EQUAL( cli_get_nt_error(cli),
583 NT_STATUS_MORE_PROCESSING_REQUIRED)) {
584 DEBUG(0, ("cli_session_setup_blob: recieve failed (%s)\n",
585 nt_errstr(cli_get_nt_error(cli)) ));
586 cli->vuid = 0;
587 return False;
591 return True;
594 /****************************************************************************
595 Use in-memory credentials cache
596 ****************************************************************************/
598 static void use_in_memory_ccache(void) {
599 setenv(KRB5_ENV_CCNAME, "MEMORY:cliconnect", 1);
602 /****************************************************************************
603 Do a spnego/kerberos encrypted session setup.
604 ****************************************************************************/
606 static ADS_STATUS cli_session_setup_kerberos(struct cli_state *cli, const char *principal, const char *workgroup)
608 DATA_BLOB negTokenTarg;
609 DATA_BLOB session_key_krb5;
610 int rc;
612 DEBUG(2,("Doing kerberos session setup\n"));
614 /* generate the encapsulated kerberos5 ticket */
615 rc = spnego_gen_negTokenTarg(principal, 0, &negTokenTarg, &session_key_krb5, 0, NULL);
617 if (rc) {
618 DEBUG(1, ("cli_session_setup_kerberos: spnego_gen_negTokenTarg failed: %s\n",
619 error_message(rc)));
620 return ADS_ERROR_KRB5(rc);
623 #if 0
624 file_save("negTokenTarg.dat", negTokenTarg.data, negTokenTarg.length);
625 #endif
627 if (!cli_session_setup_blob(cli, negTokenTarg, session_key_krb5)) {
628 data_blob_free(&negTokenTarg);
629 data_blob_free(&session_key_krb5);
630 ADS_ERROR_NT(cli_nt_error(cli));
633 cli_set_session_key(cli, session_key_krb5);
635 data_blob_free(&negTokenTarg);
636 data_blob_free(&session_key_krb5);
638 if (cli_is_error(cli)) {
639 if (NT_STATUS_IS_OK(cli_nt_error(cli))) {
640 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
643 return ADS_ERROR_NT(cli_nt_error(cli));
645 #endif /* HAVE_KRB5 */
648 /****************************************************************************
649 Do a spnego/NTLMSSP encrypted session setup.
650 ****************************************************************************/
652 static NTSTATUS cli_session_setup_ntlmssp(struct cli_state *cli, const char *user,
653 const char *pass, const char *domain)
655 struct ntlmssp_state *ntlmssp_state;
656 NTSTATUS nt_status;
657 int turn = 1;
658 DATA_BLOB msg1;
659 DATA_BLOB blob = data_blob_null;
660 DATA_BLOB blob_in = data_blob_null;
661 DATA_BLOB blob_out = data_blob_null;
663 cli_temp_set_signing(cli);
665 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_client_start(&ntlmssp_state))) {
666 return nt_status;
668 ntlmssp_want_feature(ntlmssp_state, NTLMSSP_FEATURE_SESSION_KEY);
670 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_username(ntlmssp_state, user))) {
671 return nt_status;
673 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_domain(ntlmssp_state, domain))) {
674 return nt_status;
676 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_password(ntlmssp_state, pass))) {
677 return nt_status;
680 do {
681 nt_status = ntlmssp_update(ntlmssp_state,
682 blob_in, &blob_out);
683 data_blob_free(&blob_in);
684 if (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED) || NT_STATUS_IS_OK(nt_status)) {
685 if (turn == 1) {
686 /* and wrap it in a SPNEGO wrapper */
687 msg1 = gen_negTokenInit(OID_NTLMSSP, blob_out);
688 } else {
689 /* wrap it in SPNEGO */
690 msg1 = spnego_gen_auth(blob_out);
693 /* now send that blob on its way */
694 if (!cli_session_setup_blob_send(cli, msg1)) {
695 DEBUG(3, ("Failed to send NTLMSSP/SPNEGO blob to server!\n"));
696 nt_status = NT_STATUS_UNSUCCESSFUL;
697 } else {
698 blob = cli_session_setup_blob_receive(cli);
700 nt_status = cli_nt_error(cli);
701 if (cli_is_error(cli) && NT_STATUS_IS_OK(nt_status)) {
702 if (cli->smb_rw_error == SMB_READ_BAD_SIG) {
703 nt_status = NT_STATUS_ACCESS_DENIED;
704 } else {
705 nt_status = NT_STATUS_UNSUCCESSFUL;
709 data_blob_free(&msg1);
712 if (!blob.length) {
713 if (NT_STATUS_IS_OK(nt_status)) {
714 nt_status = NT_STATUS_UNSUCCESSFUL;
716 } else if ((turn == 1) &&
717 NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
718 DATA_BLOB tmp_blob = data_blob_null;
719 /* the server might give us back two challenges */
720 if (!spnego_parse_challenge(blob, &blob_in,
721 &tmp_blob)) {
722 DEBUG(3,("Failed to parse challenges\n"));
723 nt_status = NT_STATUS_INVALID_PARAMETER;
725 data_blob_free(&tmp_blob);
726 } else {
727 if (!spnego_parse_auth_response(blob, nt_status, OID_NTLMSSP,
728 &blob_in)) {
729 DEBUG(3,("Failed to parse auth response\n"));
730 if (NT_STATUS_IS_OK(nt_status)
731 || NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED))
732 nt_status = NT_STATUS_INVALID_PARAMETER;
735 data_blob_free(&blob);
736 data_blob_free(&blob_out);
737 turn++;
738 } while (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED));
740 data_blob_free(&blob_in);
742 if (NT_STATUS_IS_OK(nt_status)) {
744 DATA_BLOB key = data_blob(ntlmssp_state->session_key.data,
745 ntlmssp_state->session_key.length);
746 DATA_BLOB null_blob = data_blob_null;
747 bool res;
749 fstrcpy(cli->server_domain, ntlmssp_state->server_domain);
750 cli_set_session_key(cli, ntlmssp_state->session_key);
752 res = cli_simple_set_signing(cli, key, null_blob);
754 data_blob_free(&key);
756 if (res) {
758 /* 'resign' the last message, so we get the right sequence numbers
759 for checking the first reply from the server */
760 cli_calculate_sign_mac(cli);
762 if (!cli_check_sign_mac(cli)) {
763 nt_status = NT_STATUS_ACCESS_DENIED;
768 /* we have a reference conter on ntlmssp_state, if we are signing
769 then the state will be kept by the signing engine */
771 ntlmssp_end(&ntlmssp_state);
773 if (!NT_STATUS_IS_OK(nt_status)) {
774 cli->vuid = 0;
776 return nt_status;
779 /****************************************************************************
780 Do a spnego encrypted session setup.
781 ****************************************************************************/
783 ADS_STATUS cli_session_setup_spnego(struct cli_state *cli, const char *user,
784 const char *pass, const char *domain)
786 char *principal;
787 char *OIDs[ASN1_MAX_OIDS];
788 int i;
789 bool got_kerberos_mechanism = False;
790 DATA_BLOB blob;
792 DEBUG(3,("Doing spnego session setup (blob length=%lu)\n", (unsigned long)cli->secblob.length));
794 /* the server might not even do spnego */
795 if (cli->secblob.length <= 16) {
796 DEBUG(3,("server didn't supply a full spnego negprot\n"));
797 goto ntlmssp;
800 #if 0
801 file_save("negprot.dat", cli->secblob.data, cli->secblob.length);
802 #endif
804 /* there is 16 bytes of GUID before the real spnego packet starts */
805 blob = data_blob(cli->secblob.data+16, cli->secblob.length-16);
807 /* the server sent us the first part of the SPNEGO exchange in the negprot
808 reply */
809 if (!spnego_parse_negTokenInit(blob, OIDs, &principal)) {
810 data_blob_free(&blob);
811 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER);
813 data_blob_free(&blob);
815 /* make sure the server understands kerberos */
816 for (i=0;OIDs[i];i++) {
817 DEBUG(3,("got OID=%s\n", OIDs[i]));
818 if (strcmp(OIDs[i], OID_KERBEROS5_OLD) == 0 ||
819 strcmp(OIDs[i], OID_KERBEROS5) == 0) {
820 got_kerberos_mechanism = True;
822 free(OIDs[i]);
825 DEBUG(3,("got principal=%s\n", principal ? principal : "<null>"));
827 if (got_kerberos_mechanism && (principal == NULL)) {
829 * It is WRONG to depend on the principal sent in the negprot
830 * reply, but right now we do it. So for safety (don't
831 * segfault later) disable Kerberos when no principal was
832 * sent. -- VL
834 DEBUG(1, ("Kerberos mech was offered, but no principal was "
835 "sent, disabling Kerberos\n"));
836 cli->use_kerberos = False;
839 fstrcpy(cli->user_name, user);
841 #ifdef HAVE_KRB5
842 /* If password is set we reauthenticate to kerberos server
843 * and do not store results */
845 if (got_kerberos_mechanism && cli->use_kerberos) {
846 ADS_STATUS rc;
848 if (pass && *pass) {
849 int ret;
851 use_in_memory_ccache();
852 ret = kerberos_kinit_password(user, pass, 0 /* no time correction for now */, NULL);
854 if (ret){
855 SAFE_FREE(principal);
856 DEBUG(0, ("Kinit failed: %s\n", error_message(ret)));
857 if (cli->fallback_after_kerberos)
858 goto ntlmssp;
859 return ADS_ERROR_KRB5(ret);
863 /* If we get a bad principal, try to guess it if
864 we have a valid host NetBIOS name.
866 if (strequal(principal, ADS_IGNORE_PRINCIPAL)) {
867 SAFE_FREE(principal);
870 if (principal == NULL &&
871 !is_ipaddress(cli->desthost) &&
872 !strequal(star_smbserver_name,
873 cli->desthost)) {
874 char *realm = NULL;
875 char *machine = NULL;
876 char *host = NULL;
877 DEBUG(3,("cli_session_setup_spnego: got a "
878 "bad server principal, trying to guess ...\n"));
880 host = strchr(cli->desthost, '.');
881 if (host) {
882 machine = SMB_STRNDUP(cli->desthost,
883 host - cli->desthost);
884 } else {
885 machine = SMB_STRDUP(cli->desthost);
887 if (machine == NULL) {
888 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
891 realm = kerberos_get_default_realm_from_ccache();
892 if (realm && *realm) {
893 if (asprintf(&principal, "%s$@%s",
894 machine, realm) < 0) {
895 SAFE_FREE(realm);
896 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
898 DEBUG(3,("cli_session_setup_spnego: guessed "
899 "server principal=%s\n",
900 principal ? principal : "<null>"));
902 SAFE_FREE(machine);
903 SAFE_FREE(realm);
906 if (principal) {
907 rc = cli_session_setup_kerberos(cli, principal, domain);
908 if (ADS_ERR_OK(rc) || !cli->fallback_after_kerberos) {
909 SAFE_FREE(principal);
910 return rc;
914 #endif
916 SAFE_FREE(principal);
918 ntlmssp:
920 return ADS_ERROR_NT(cli_session_setup_ntlmssp(cli, user, pass, domain));
923 /****************************************************************************
924 Send a session setup. The username and workgroup is in UNIX character
925 format and must be converted to DOS codepage format before sending. If the
926 password is in plaintext, the same should be done.
927 ****************************************************************************/
929 NTSTATUS cli_session_setup(struct cli_state *cli,
930 const char *user,
931 const char *pass, int passlen,
932 const char *ntpass, int ntpasslen,
933 const char *workgroup)
935 char *p;
936 fstring user2;
938 if (user) {
939 fstrcpy(user2, user);
940 } else {
941 user2[0] ='\0';
944 if (!workgroup) {
945 workgroup = "";
948 /* allow for workgroups as part of the username */
949 if ((p=strchr_m(user2,'\\')) || (p=strchr_m(user2,'/')) ||
950 (p=strchr_m(user2,*lp_winbind_separator()))) {
951 *p = 0;
952 user = p+1;
953 workgroup = user2;
956 if (cli->protocol < PROTOCOL_LANMAN1) {
957 return NT_STATUS_OK;
960 /* now work out what sort of session setup we are going to
961 do. I have split this into separate functions to make the
962 flow a bit easier to understand (tridge) */
964 /* if its an older server then we have to use the older request format */
966 if (cli->protocol < PROTOCOL_NT1) {
967 if (!lp_client_lanman_auth() && passlen != 24 && (*pass)) {
968 DEBUG(1, ("Server requested LM password but 'client lanman auth'"
969 " is disabled\n"));
970 return NT_STATUS_ACCESS_DENIED;
973 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) == 0 &&
974 !lp_client_plaintext_auth() && (*pass)) {
975 DEBUG(1, ("Server requested plaintext password but "
976 "'client plaintext auth' is disabled\n"));
977 return NT_STATUS_ACCESS_DENIED;
980 return cli_session_setup_lanman2(cli, user, pass, passlen,
981 workgroup);
984 /* if no user is supplied then we have to do an anonymous connection.
985 passwords are ignored */
987 if (!user || !*user)
988 return cli_session_setup_guest(cli);
990 /* if the server is share level then send a plaintext null
991 password at this point. The password is sent in the tree
992 connect */
994 if ((cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) == 0)
995 return cli_session_setup_plaintext(cli, user, "", workgroup);
997 /* if the server doesn't support encryption then we have to use
998 plaintext. The second password is ignored */
1000 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) == 0) {
1001 if (!lp_client_plaintext_auth() && (*pass)) {
1002 DEBUG(1, ("Server requested plaintext password but "
1003 "'client plaintext auth' is disabled\n"));
1004 return NT_STATUS_ACCESS_DENIED;
1006 return cli_session_setup_plaintext(cli, user, pass, workgroup);
1009 /* if the server supports extended security then use SPNEGO */
1011 if (cli->capabilities & CAP_EXTENDED_SECURITY) {
1012 ADS_STATUS status = cli_session_setup_spnego(cli, user, pass, workgroup);
1013 if (!ADS_ERR_OK(status)) {
1014 DEBUG(3, ("SPNEGO login failed: %s\n", ads_errstr(status)));
1015 return ads_ntstatus(status);
1017 } else {
1018 NTSTATUS status;
1020 /* otherwise do a NT1 style session setup */
1021 status = cli_session_setup_nt1(cli, user, pass, passlen,
1022 ntpass, ntpasslen, workgroup);
1023 if (!NT_STATUS_IS_OK(status)) {
1024 DEBUG(3,("cli_session_setup: NT1 session setup "
1025 "failed: %s\n", nt_errstr(status)));
1026 return status;
1030 if (strstr(cli->server_type, "Samba")) {
1031 cli->is_samba = True;
1034 return NT_STATUS_OK;
1038 /****************************************************************************
1039 Send a uloggoff.
1040 *****************************************************************************/
1042 bool cli_ulogoff(struct cli_state *cli)
1044 memset(cli->outbuf,'\0',smb_size);
1045 cli_set_message(cli->outbuf,2,0,True);
1046 SCVAL(cli->outbuf,smb_com,SMBulogoffX);
1047 cli_setup_packet(cli);
1048 SSVAL(cli->outbuf,smb_vwv0,0xFF);
1049 SSVAL(cli->outbuf,smb_vwv2,0); /* no additional info */
1051 cli_send_smb(cli);
1052 if (!cli_receive_smb(cli))
1053 return False;
1055 if (cli_is_error(cli)) {
1056 return False;
1059 cli->cnum = -1;
1060 return True;
1063 /****************************************************************************
1064 Send a tconX.
1065 ****************************************************************************/
1067 bool cli_send_tconX(struct cli_state *cli,
1068 const char *share, const char *dev, const char *pass, int passlen)
1070 fstring fullshare, pword;
1071 char *p;
1072 memset(cli->outbuf,'\0',smb_size);
1073 memset(cli->inbuf,'\0',smb_size);
1075 fstrcpy(cli->share, share);
1077 /* in user level security don't send a password now */
1078 if (cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) {
1079 passlen = 1;
1080 pass = "";
1081 } else if (!pass) {
1082 DEBUG(1, ("Server not using user level security and no password supplied.\n"));
1083 return False;
1086 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) &&
1087 *pass && passlen != 24) {
1088 if (!lp_client_lanman_auth()) {
1089 DEBUG(1, ("Server requested LANMAN password (share-level security) but 'client use lanman auth'"
1090 " is disabled\n"));
1091 return False;
1095 * Non-encrypted passwords - convert to DOS codepage before encryption.
1097 passlen = 24;
1098 SMBencrypt(pass,cli->secblob.data,(uchar *)pword);
1099 } else {
1100 if((cli->sec_mode & (NEGOTIATE_SECURITY_USER_LEVEL|NEGOTIATE_SECURITY_CHALLENGE_RESPONSE)) == 0) {
1101 if (!lp_client_plaintext_auth() && (*pass)) {
1102 DEBUG(1, ("Server requested plaintext "
1103 "password but 'client plaintext "
1104 "auth' is disabled\n"));
1105 return False;
1109 * Non-encrypted passwords - convert to DOS codepage before using.
1111 passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
1113 } else {
1114 if (passlen) {
1115 memcpy(pword, pass, passlen);
1120 slprintf(fullshare, sizeof(fullshare)-1,
1121 "\\\\%s\\%s", cli->desthost, share);
1123 cli_set_message(cli->outbuf,4, 0, True);
1124 SCVAL(cli->outbuf,smb_com,SMBtconX);
1125 cli_setup_packet(cli);
1127 SSVAL(cli->outbuf,smb_vwv0,0xFF);
1128 SSVAL(cli->outbuf,smb_vwv2,TCONX_FLAG_EXTENDED_RESPONSE);
1129 SSVAL(cli->outbuf,smb_vwv3,passlen);
1131 p = smb_buf(cli->outbuf);
1132 if (passlen) {
1133 memcpy(p,pword,passlen);
1135 p += passlen;
1136 p += clistr_push(cli, p, fullshare, -1, STR_TERMINATE |STR_UPPER);
1137 p += clistr_push(cli, p, dev, -1, STR_TERMINATE |STR_UPPER | STR_ASCII);
1139 cli_setup_bcc(cli, p);
1141 cli_send_smb(cli);
1142 if (!cli_receive_smb(cli))
1143 return False;
1145 if (cli_is_error(cli))
1146 return False;
1148 clistr_pull(cli, cli->dev, smb_buf(cli->inbuf), sizeof(fstring), -1, STR_TERMINATE|STR_ASCII);
1150 if (cli->protocol >= PROTOCOL_NT1 &&
1151 smb_buflen(cli->inbuf) == 3) {
1152 /* almost certainly win95 - enable bug fixes */
1153 cli->win95 = True;
1156 /* Make sure that we have the optional support 16-bit field. WCT > 2 */
1157 /* Avoids issues when connecting to Win9x boxes sharing files */
1159 cli->dfsroot = False;
1160 if ( (CVAL(cli->inbuf, smb_wct))>2 && cli->protocol >= PROTOCOL_LANMAN2 )
1161 cli->dfsroot = (SVAL( cli->inbuf, smb_vwv2 ) & SMB_SHARE_IN_DFS) ? True : False;
1163 cli->cnum = SVAL(cli->inbuf,smb_tid);
1164 return True;
1167 /****************************************************************************
1168 Send a tree disconnect.
1169 ****************************************************************************/
1171 bool cli_tdis(struct cli_state *cli)
1173 memset(cli->outbuf,'\0',smb_size);
1174 cli_set_message(cli->outbuf,0,0,True);
1175 SCVAL(cli->outbuf,smb_com,SMBtdis);
1176 SSVAL(cli->outbuf,smb_tid,cli->cnum);
1177 cli_setup_packet(cli);
1179 cli_send_smb(cli);
1180 if (!cli_receive_smb(cli))
1181 return False;
1183 if (cli_is_error(cli)) {
1184 return False;
1187 cli->cnum = -1;
1188 return True;
1191 /****************************************************************************
1192 Send a negprot command.
1193 ****************************************************************************/
1195 void cli_negprot_send(struct cli_state *cli)
1197 char *p;
1198 int numprots;
1200 if (cli->protocol < PROTOCOL_NT1)
1201 cli->use_spnego = False;
1203 memset(cli->outbuf,'\0',smb_size);
1205 /* setup the protocol strings */
1206 cli_set_message(cli->outbuf,0,0,True);
1208 p = smb_buf(cli->outbuf);
1209 for (numprots=0;
1210 prots[numprots].name && prots[numprots].prot<=cli->protocol;
1211 numprots++) {
1212 *p++ = 2;
1213 p += clistr_push(cli, p, prots[numprots].name, -1, STR_TERMINATE);
1216 SCVAL(cli->outbuf,smb_com,SMBnegprot);
1217 cli_setup_bcc(cli, p);
1218 cli_setup_packet(cli);
1220 SCVAL(smb_buf(cli->outbuf),0,2);
1222 cli_send_smb(cli);
1225 /****************************************************************************
1226 Send a negprot command.
1227 ****************************************************************************/
1229 bool cli_negprot(struct cli_state *cli)
1231 char *p;
1232 int numprots;
1233 int plength;
1235 if (cli->protocol < PROTOCOL_NT1)
1236 cli->use_spnego = False;
1238 memset(cli->outbuf,'\0',smb_size);
1240 /* setup the protocol strings */
1241 for (plength=0,numprots=0;
1242 prots[numprots].name && prots[numprots].prot<=cli->protocol;
1243 numprots++)
1244 plength += strlen(prots[numprots].name)+2;
1246 cli_set_message(cli->outbuf,0,plength,True);
1248 p = smb_buf(cli->outbuf);
1249 for (numprots=0;
1250 prots[numprots].name && prots[numprots].prot<=cli->protocol;
1251 numprots++) {
1252 *p++ = 2;
1253 p += clistr_push(cli, p, prots[numprots].name, -1, STR_TERMINATE);
1256 SCVAL(cli->outbuf,smb_com,SMBnegprot);
1257 cli_setup_packet(cli);
1259 SCVAL(smb_buf(cli->outbuf),0,2);
1261 cli_send_smb(cli);
1262 if (!cli_receive_smb(cli))
1263 return False;
1265 show_msg(cli->inbuf);
1267 if (cli_is_error(cli) ||
1268 ((int)SVAL(cli->inbuf,smb_vwv0) >= numprots)) {
1269 return(False);
1272 cli->protocol = prots[SVAL(cli->inbuf,smb_vwv0)].prot;
1274 if ((cli->protocol < PROTOCOL_NT1) && cli->sign_info.mandatory_signing) {
1275 DEBUG(0,("cli_negprot: SMB signing is mandatory and the selected protocol level doesn't support it.\n"));
1276 return False;
1279 if (cli->protocol >= PROTOCOL_NT1) {
1280 struct timespec ts;
1281 /* NT protocol */
1282 cli->sec_mode = CVAL(cli->inbuf,smb_vwv1);
1283 cli->max_mux = SVAL(cli->inbuf, smb_vwv1+1);
1284 cli->max_xmit = IVAL(cli->inbuf,smb_vwv3+1);
1285 cli->sesskey = IVAL(cli->inbuf,smb_vwv7+1);
1286 cli->serverzone = SVALS(cli->inbuf,smb_vwv15+1);
1287 cli->serverzone *= 60;
1288 /* this time arrives in real GMT */
1289 ts = interpret_long_date(cli->inbuf+smb_vwv11+1);
1290 cli->servertime = ts.tv_sec;
1291 cli->secblob = data_blob(smb_buf(cli->inbuf),smb_buflen(cli->inbuf));
1292 cli->capabilities = IVAL(cli->inbuf,smb_vwv9+1);
1293 if (cli->capabilities & CAP_RAW_MODE) {
1294 cli->readbraw_supported = True;
1295 cli->writebraw_supported = True;
1297 /* work out if they sent us a workgroup */
1298 if (!(cli->capabilities & CAP_EXTENDED_SECURITY) &&
1299 smb_buflen(cli->inbuf) > 8) {
1300 clistr_pull(cli, cli->server_domain,
1301 smb_buf(cli->inbuf)+8, sizeof(cli->server_domain),
1302 smb_buflen(cli->inbuf)-8, STR_UNICODE|STR_NOALIGN);
1306 * As signing is slow we only turn it on if either the client or
1307 * the server require it. JRA.
1310 if (cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_REQUIRED) {
1311 /* Fail if server says signing is mandatory and we don't want to support it. */
1312 if (!cli->sign_info.allow_smb_signing) {
1313 DEBUG(0,("cli_negprot: SMB signing is mandatory and we have disabled it.\n"));
1314 return False;
1316 cli->sign_info.negotiated_smb_signing = True;
1317 cli->sign_info.mandatory_signing = True;
1318 } else if (cli->sign_info.mandatory_signing && cli->sign_info.allow_smb_signing) {
1319 /* Fail if client says signing is mandatory and the server doesn't support it. */
1320 if (!(cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED)) {
1321 DEBUG(1,("cli_negprot: SMB signing is mandatory and the server doesn't support it.\n"));
1322 return False;
1324 cli->sign_info.negotiated_smb_signing = True;
1325 cli->sign_info.mandatory_signing = True;
1326 } else if (cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED) {
1327 cli->sign_info.negotiated_smb_signing = True;
1330 if (cli->capabilities & (CAP_LARGE_READX|CAP_LARGE_WRITEX)) {
1331 SAFE_FREE(cli->outbuf);
1332 SAFE_FREE(cli->inbuf);
1333 cli->outbuf = (char *)SMB_MALLOC(CLI_SAMBA_MAX_LARGE_READX_SIZE+SAFETY_MARGIN);
1334 cli->inbuf = (char *)SMB_MALLOC(CLI_SAMBA_MAX_LARGE_READX_SIZE+SAFETY_MARGIN);
1335 cli->bufsize = CLI_SAMBA_MAX_LARGE_READX_SIZE;
1338 } else if (cli->protocol >= PROTOCOL_LANMAN1) {
1339 cli->use_spnego = False;
1340 cli->sec_mode = SVAL(cli->inbuf,smb_vwv1);
1341 cli->max_xmit = SVAL(cli->inbuf,smb_vwv2);
1342 cli->max_mux = SVAL(cli->inbuf, smb_vwv3);
1343 cli->sesskey = IVAL(cli->inbuf,smb_vwv6);
1344 cli->serverzone = SVALS(cli->inbuf,smb_vwv10);
1345 cli->serverzone *= 60;
1346 /* this time is converted to GMT by make_unix_date */
1347 cli->servertime = cli_make_unix_date(cli,cli->inbuf+smb_vwv8);
1348 cli->readbraw_supported = ((SVAL(cli->inbuf,smb_vwv5) & 0x1) != 0);
1349 cli->writebraw_supported = ((SVAL(cli->inbuf,smb_vwv5) & 0x2) != 0);
1350 cli->secblob = data_blob(smb_buf(cli->inbuf),smb_buflen(cli->inbuf));
1351 } else {
1352 /* the old core protocol */
1353 cli->use_spnego = False;
1354 cli->sec_mode = 0;
1355 cli->serverzone = get_time_zone(time(NULL));
1358 cli->max_xmit = MIN(cli->max_xmit, CLI_BUFFER_SIZE);
1360 /* a way to force ascii SMB */
1361 if (getenv("CLI_FORCE_ASCII"))
1362 cli->capabilities &= ~CAP_UNICODE;
1364 return True;
1367 /****************************************************************************
1368 Send a session request. See rfc1002.txt 4.3 and 4.3.2.
1369 ****************************************************************************/
1371 bool cli_session_request(struct cli_state *cli,
1372 struct nmb_name *calling, struct nmb_name *called)
1374 char *p;
1375 int len = 4;
1377 memcpy(&(cli->calling), calling, sizeof(*calling));
1378 memcpy(&(cli->called ), called , sizeof(*called ));
1380 /* put in the destination name */
1381 p = cli->outbuf+len;
1382 name_mangle(cli->called .name, p, cli->called .name_type);
1383 len += name_len(p);
1385 /* and my name */
1386 p = cli->outbuf+len;
1387 name_mangle(cli->calling.name, p, cli->calling.name_type);
1388 len += name_len(p);
1390 /* 445 doesn't have session request */
1391 if (cli->port == 445)
1392 return True;
1394 /* send a session request (RFC 1002) */
1395 /* setup the packet length
1396 * Remove four bytes from the length count, since the length
1397 * field in the NBT Session Service header counts the number
1398 * of bytes which follow. The cli_send_smb() function knows
1399 * about this and accounts for those four bytes.
1400 * CRH.
1402 len -= 4;
1403 _smb_setlen(cli->outbuf,len);
1404 SCVAL(cli->outbuf,0,0x81);
1406 cli_send_smb(cli);
1407 DEBUG(5,("Sent session request\n"));
1409 if (!cli_receive_smb(cli))
1410 return False;
1412 if (CVAL(cli->inbuf,0) == 0x84) {
1413 /* C. Hoch 9/14/95 Start */
1414 /* For information, here is the response structure.
1415 * We do the byte-twiddling to for portability.
1416 struct RetargetResponse{
1417 unsigned char type;
1418 unsigned char flags;
1419 int16 length;
1420 int32 ip_addr;
1421 int16 port;
1424 uint16_t port = (CVAL(cli->inbuf,8)<<8)+CVAL(cli->inbuf,9);
1425 struct in_addr dest_ip;
1427 /* SESSION RETARGET */
1428 putip((char *)&dest_ip,cli->inbuf+4);
1429 in_addr_to_sockaddr_storage(&cli->dest_ss, dest_ip);
1431 cli->fd = open_socket_out(SOCK_STREAM,
1432 &cli->dest_ss,
1433 port,
1434 LONG_CONNECT_TIMEOUT);
1435 if (cli->fd == -1)
1436 return False;
1438 DEBUG(3,("Retargeted\n"));
1440 set_socket_options(cli->fd, lp_socket_options());
1442 /* Try again */
1444 static int depth;
1445 bool ret;
1446 if (depth > 4) {
1447 DEBUG(0,("Retarget recursion - failing\n"));
1448 return False;
1450 depth++;
1451 ret = cli_session_request(cli, calling, called);
1452 depth--;
1453 return ret;
1455 } /* C. Hoch 9/14/95 End */
1457 if (CVAL(cli->inbuf,0) != 0x82) {
1458 /* This is the wrong place to put the error... JRA. */
1459 cli->rap_error = CVAL(cli->inbuf,4);
1460 return False;
1462 return(True);
1465 /****************************************************************************
1466 Open the client sockets.
1467 ****************************************************************************/
1469 NTSTATUS cli_connect(struct cli_state *cli,
1470 const char *host,
1471 struct sockaddr_storage *dest_ss)
1474 int name_type = 0x20;
1475 TALLOC_CTX *frame = talloc_stackframe();
1476 unsigned int num_addrs = 0;
1477 unsigned int i = 0;
1478 struct sockaddr_storage *ss_arr = NULL;
1479 char *p = NULL;
1481 /* reasonable default hostname */
1482 if (!host) {
1483 host = star_smbserver_name;
1486 fstrcpy(cli->desthost, host);
1488 /* allow hostnames of the form NAME#xx and do a netbios lookup */
1489 if ((p = strchr(cli->desthost, '#'))) {
1490 name_type = strtol(p+1, NULL, 16);
1491 *p = 0;
1494 if (!dest_ss || is_zero_addr(dest_ss)) {
1495 NTSTATUS status =resolve_name_list(frame,
1496 cli->desthost,
1497 name_type,
1498 &ss_arr,
1499 &num_addrs);
1500 if (!NT_STATUS_IS_OK(status)) {
1501 TALLOC_FREE(frame);
1502 return NT_STATUS_BAD_NETWORK_NAME;
1504 } else {
1505 num_addrs = 1;
1506 ss_arr = TALLOC_P(frame, struct sockaddr_storage);
1507 if (!ss_arr) {
1508 TALLOC_FREE(frame);
1509 return NT_STATUS_NO_MEMORY;
1511 *ss_arr = *dest_ss;
1514 for (i = 0; i < num_addrs; i++) {
1515 cli->dest_ss = ss_arr[i];
1516 if (getenv("LIBSMB_PROG")) {
1517 cli->fd = sock_exec(getenv("LIBSMB_PROG"));
1518 } else {
1519 /* try 445 first, then 139 */
1520 uint16_t port = cli->port?cli->port:445;
1521 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ss,
1522 port, cli->timeout);
1523 if (cli->fd == -1 && cli->port == 0) {
1524 port = 139;
1525 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ss,
1526 port, cli->timeout);
1528 if (cli->fd != -1) {
1529 cli->port = port;
1532 if (cli->fd == -1) {
1533 char addr[INET6_ADDRSTRLEN];
1534 print_sockaddr(addr, sizeof(addr), &ss_arr[i]);
1535 DEBUG(2,("Error connecting to %s (%s)\n",
1536 dest_ss?addr:host,strerror(errno)));
1537 } else {
1538 /* Exit from loop on first connection. */
1539 break;
1543 if (cli->fd == -1) {
1544 TALLOC_FREE(frame);
1545 return map_nt_error_from_unix(errno);
1548 if (dest_ss) {
1549 *dest_ss = cli->dest_ss;
1552 set_socket_options(cli->fd, lp_socket_options());
1554 TALLOC_FREE(frame);
1555 return NT_STATUS_OK;
1559 establishes a connection to after the negprot.
1560 @param output_cli A fully initialised cli structure, non-null only on success
1561 @param dest_host The netbios name of the remote host
1562 @param dest_ss (optional) The the destination IP, NULL for name based lookup
1563 @param port (optional) The destination port (0 for default)
1564 @param retry bool. Did this connection fail with a retryable error ?
1567 NTSTATUS cli_start_connection(struct cli_state **output_cli,
1568 const char *my_name,
1569 const char *dest_host,
1570 struct sockaddr_storage *dest_ss, int port,
1571 int signing_state, int flags,
1572 bool *retry)
1574 NTSTATUS nt_status;
1575 struct nmb_name calling;
1576 struct nmb_name called;
1577 struct cli_state *cli;
1578 struct sockaddr_storage ss;
1580 if (retry)
1581 *retry = False;
1583 if (!my_name)
1584 my_name = global_myname();
1586 if (!(cli = cli_initialise())) {
1587 return NT_STATUS_NO_MEMORY;
1590 make_nmb_name(&calling, my_name, 0x0);
1591 make_nmb_name(&called , dest_host, 0x20);
1593 if (cli_set_port(cli, port) != port) {
1594 cli_shutdown(cli);
1595 return NT_STATUS_UNSUCCESSFUL;
1598 cli_set_timeout(cli, 10000); /* 10 seconds. */
1600 if (dest_ss) {
1601 ss = *dest_ss;
1602 } else {
1603 zero_addr(&ss);
1606 again:
1608 DEBUG(3,("Connecting to host=%s\n", dest_host));
1610 nt_status = cli_connect(cli, dest_host, &ss);
1611 if (!NT_STATUS_IS_OK(nt_status)) {
1612 char addr[INET6_ADDRSTRLEN];
1613 print_sockaddr(addr, sizeof(addr), &ss);
1614 DEBUG(1,("cli_start_connection: failed to connect to %s (%s). Error %s\n",
1615 nmb_namestr(&called), addr, nt_errstr(nt_status) ));
1616 cli_shutdown(cli);
1617 return nt_status;
1620 if (retry)
1621 *retry = True;
1623 if (!cli_session_request(cli, &calling, &called)) {
1624 char *p;
1625 DEBUG(1,("session request to %s failed (%s)\n",
1626 called.name, cli_errstr(cli)));
1627 if ((p=strchr(called.name, '.')) && !is_ipaddress(called.name)) {
1628 *p = 0;
1629 goto again;
1631 if (strcmp(called.name, star_smbserver_name)) {
1632 make_nmb_name(&called , star_smbserver_name, 0x20);
1633 goto again;
1635 return NT_STATUS_BAD_NETWORK_NAME;
1638 cli_setup_signing_state(cli, signing_state);
1640 if (flags & CLI_FULL_CONNECTION_DONT_SPNEGO)
1641 cli->use_spnego = False;
1642 else if (flags & CLI_FULL_CONNECTION_USE_KERBEROS)
1643 cli->use_kerberos = True;
1645 if (!cli_negprot(cli)) {
1646 DEBUG(1,("failed negprot\n"));
1647 nt_status = cli_nt_error(cli);
1648 if (NT_STATUS_IS_OK(nt_status)) {
1649 nt_status = NT_STATUS_UNSUCCESSFUL;
1651 cli_shutdown(cli);
1652 return nt_status;
1655 *output_cli = cli;
1656 return NT_STATUS_OK;
1661 establishes a connection right up to doing tconX, password specified.
1662 @param output_cli A fully initialised cli structure, non-null only on success
1663 @param dest_host The netbios name of the remote host
1664 @param dest_ip (optional) The the destination IP, NULL for name based lookup
1665 @param port (optional) The destination port (0 for default)
1666 @param service (optional) The share to make the connection to. Should be 'unqualified' in any way.
1667 @param service_type The 'type' of serivice.
1668 @param user Username, unix string
1669 @param domain User's domain
1670 @param password User's password, unencrypted unix string.
1671 @param retry bool. Did this connection fail with a retryable error ?
1674 NTSTATUS cli_full_connection(struct cli_state **output_cli,
1675 const char *my_name,
1676 const char *dest_host,
1677 struct sockaddr_storage *dest_ss, int port,
1678 const char *service, const char *service_type,
1679 const char *user, const char *domain,
1680 const char *password, int flags,
1681 int signing_state,
1682 bool *retry)
1684 NTSTATUS nt_status;
1685 struct cli_state *cli = NULL;
1686 int pw_len = password ? strlen(password)+1 : 0;
1688 *output_cli = NULL;
1690 if (password == NULL) {
1691 password = "";
1694 nt_status = cli_start_connection(&cli, my_name, dest_host,
1695 dest_ss, port, signing_state,
1696 flags, retry);
1698 if (!NT_STATUS_IS_OK(nt_status)) {
1699 return nt_status;
1702 nt_status = cli_session_setup(cli, user, password, pw_len, password,
1703 pw_len, domain);
1704 if (!NT_STATUS_IS_OK(nt_status)) {
1706 if (!(flags & CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK)) {
1707 DEBUG(1,("failed session setup with %s\n",
1708 nt_errstr(nt_status)));
1709 cli_shutdown(cli);
1710 return nt_status;
1713 nt_status = cli_session_setup(cli, "", "", 0, "", 0, domain);
1714 if (!NT_STATUS_IS_OK(nt_status)) {
1715 DEBUG(1,("anonymous failed session setup with %s\n",
1716 nt_errstr(nt_status)));
1717 cli_shutdown(cli);
1718 return nt_status;
1722 if (service) {
1723 if (!cli_send_tconX(cli, service, service_type, password, pw_len)) {
1724 nt_status = cli_nt_error(cli);
1725 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(nt_status)));
1726 cli_shutdown(cli);
1727 if (NT_STATUS_IS_OK(nt_status)) {
1728 nt_status = NT_STATUS_UNSUCCESSFUL;
1730 return nt_status;
1734 cli_init_creds(cli, user, domain, password);
1736 *output_cli = cli;
1737 return NT_STATUS_OK;
1740 /****************************************************************************
1741 Attempt a NetBIOS session request, falling back to *SMBSERVER if needed.
1742 ****************************************************************************/
1744 bool attempt_netbios_session_request(struct cli_state **ppcli, const char *srchost, const char *desthost,
1745 struct sockaddr_storage *pdest_ss)
1747 struct nmb_name calling, called;
1749 make_nmb_name(&calling, srchost, 0x0);
1752 * If the called name is an IP address
1753 * then use *SMBSERVER immediately.
1756 if(is_ipaddress(desthost)) {
1757 make_nmb_name(&called, star_smbserver_name, 0x20);
1758 } else {
1759 make_nmb_name(&called, desthost, 0x20);
1762 if (!cli_session_request(*ppcli, &calling, &called)) {
1763 NTSTATUS status;
1764 struct nmb_name smbservername;
1766 make_nmb_name(&smbservername, star_smbserver_name, 0x20);
1769 * If the name wasn't *SMBSERVER then
1770 * try with *SMBSERVER if the first name fails.
1773 if (nmb_name_equal(&called, &smbservername)) {
1776 * The name used was *SMBSERVER, don't bother with another name.
1779 DEBUG(0,("attempt_netbios_session_request: %s rejected the session for name *SMBSERVER \
1780 with error %s.\n", desthost, cli_errstr(*ppcli) ));
1781 return False;
1784 /* Try again... */
1785 cli_shutdown(*ppcli);
1787 *ppcli = cli_initialise();
1788 if (!*ppcli) {
1789 /* Out of memory... */
1790 return False;
1793 status = cli_connect(*ppcli, desthost, pdest_ss);
1794 if (!NT_STATUS_IS_OK(status) ||
1795 !cli_session_request(*ppcli, &calling, &smbservername)) {
1796 DEBUG(0,("attempt_netbios_session_request: %s rejected the session for \
1797 name *SMBSERVER with error %s\n", desthost, cli_errstr(*ppcli) ));
1798 return False;
1802 return True;
1805 /****************************************************************************
1806 Send an old style tcon.
1807 ****************************************************************************/
1808 NTSTATUS cli_raw_tcon(struct cli_state *cli,
1809 const char *service, const char *pass, const char *dev,
1810 uint16 *max_xmit, uint16 *tid)
1812 char *p;
1814 if (!lp_client_plaintext_auth() && (*pass)) {
1815 DEBUG(1, ("Server requested plaintext password but 'client "
1816 "plaintext auth' is disabled\n"));
1817 return NT_STATUS_ACCESS_DENIED;
1820 memset(cli->outbuf,'\0',smb_size);
1821 memset(cli->inbuf,'\0',smb_size);
1823 cli_set_message(cli->outbuf, 0, 0, True);
1824 SCVAL(cli->outbuf,smb_com,SMBtcon);
1825 cli_setup_packet(cli);
1827 p = smb_buf(cli->outbuf);
1828 *p++ = 4; p += clistr_push(cli, p, service, -1, STR_TERMINATE | STR_NOALIGN);
1829 *p++ = 4; p += clistr_push(cli, p, pass, -1, STR_TERMINATE | STR_NOALIGN);
1830 *p++ = 4; p += clistr_push(cli, p, dev, -1, STR_TERMINATE | STR_NOALIGN);
1832 cli_setup_bcc(cli, p);
1834 cli_send_smb(cli);
1835 if (!cli_receive_smb(cli)) {
1836 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
1839 if (cli_is_error(cli)) {
1840 return cli_nt_error(cli);
1843 *max_xmit = SVAL(cli->inbuf, smb_vwv0);
1844 *tid = SVAL(cli->inbuf, smb_vwv1);
1846 return NT_STATUS_OK;
1849 /* Return a cli_state pointing at the IPC$ share for the given server */
1851 struct cli_state *get_ipc_connect(char *server,
1852 struct sockaddr_storage *server_ss,
1853 const struct user_auth_info *user_info)
1855 struct cli_state *cli;
1856 NTSTATUS nt_status;
1858 nt_status = cli_full_connection(&cli, NULL, server, server_ss, 0, "IPC$", "IPC",
1859 user_info->username ? user_info->username : "",
1860 lp_workgroup(),
1861 user_info->password ? user_info->password : "",
1862 CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK, Undefined, NULL);
1864 if (NT_STATUS_IS_OK(nt_status)) {
1865 return cli;
1866 } else if (is_ipaddress(server)) {
1867 /* windows 9* needs a correct NMB name for connections */
1868 fstring remote_name;
1870 if (name_status_find("*", 0, 0, server_ss, remote_name)) {
1871 cli = get_ipc_connect(remote_name, server_ss, user_info);
1872 if (cli)
1873 return cli;
1876 return NULL;
1880 * Given the IP address of a master browser on the network, return its
1881 * workgroup and connect to it.
1883 * This function is provided to allow additional processing beyond what
1884 * get_ipc_connect_master_ip_bcast() does, e.g. to retrieve the list of master
1885 * browsers and obtain each master browsers' list of domains (in case the
1886 * first master browser is recently on the network and has not yet
1887 * synchronized with other master browsers and therefore does not yet have the
1888 * entire network browse list)
1891 struct cli_state *get_ipc_connect_master_ip(TALLOC_CTX *ctx,
1892 struct ip_service *mb_ip,
1893 const struct user_auth_info *user_info,
1894 char **pp_workgroup_out)
1896 char addr[INET6_ADDRSTRLEN];
1897 fstring name;
1898 struct cli_state *cli;
1899 struct sockaddr_storage server_ss;
1901 *pp_workgroup_out = NULL;
1903 print_sockaddr(addr, sizeof(addr), &mb_ip->ss);
1904 DEBUG(99, ("Looking up name of master browser %s\n",
1905 addr));
1908 * Do a name status query to find out the name of the master browser.
1909 * We use <01><02>__MSBROWSE__<02>#01 if *#00 fails because a domain
1910 * master browser will not respond to a wildcard query (or, at least,
1911 * an NT4 server acting as the domain master browser will not).
1913 * We might be able to use ONLY the query on MSBROWSE, but that's not
1914 * yet been tested with all Windows versions, so until it is, leave
1915 * the original wildcard query as the first choice and fall back to
1916 * MSBROWSE if the wildcard query fails.
1918 if (!name_status_find("*", 0, 0x1d, &mb_ip->ss, name) &&
1919 !name_status_find(MSBROWSE, 1, 0x1d, &mb_ip->ss, name)) {
1921 DEBUG(99, ("Could not retrieve name status for %s\n",
1922 addr));
1923 return NULL;
1926 if (!find_master_ip(name, &server_ss)) {
1927 DEBUG(99, ("Could not find master ip for %s\n", name));
1928 return NULL;
1931 *pp_workgroup_out = talloc_strdup(ctx, name);
1933 DEBUG(4, ("found master browser %s, %s\n", name, addr));
1935 print_sockaddr(addr, sizeof(addr), &server_ss);
1936 cli = get_ipc_connect(addr, &server_ss, user_info);
1938 return cli;
1942 * Return the IP address and workgroup of a master browser on the network, and
1943 * connect to it.
1946 struct cli_state *get_ipc_connect_master_ip_bcast(TALLOC_CTX *ctx,
1947 const struct user_auth_info *user_info,
1948 char **pp_workgroup_out)
1950 struct ip_service *ip_list;
1951 struct cli_state *cli;
1952 int i, count;
1954 *pp_workgroup_out = NULL;
1956 DEBUG(99, ("Do broadcast lookup for workgroups on local network\n"));
1958 /* Go looking for workgroups by broadcasting on the local network */
1960 if (!NT_STATUS_IS_OK(name_resolve_bcast(MSBROWSE, 1, &ip_list,
1961 &count))) {
1962 DEBUG(99, ("No master browsers responded\n"));
1963 return False;
1966 for (i = 0; i < count; i++) {
1967 char addr[INET6_ADDRSTRLEN];
1968 print_sockaddr(addr, sizeof(addr), &ip_list[i].ss);
1969 DEBUG(99, ("Found master browser %s\n", addr));
1971 cli = get_ipc_connect_master_ip(ctx, &ip_list[i],
1972 user_info, pp_workgroup_out);
1973 if (cli)
1974 return(cli);
1977 return NULL;