r5555: current with 3.0 tree as of r5548; getting ready for 3.0.12pre1
[Samba.git] / source / libsmb / cliconnect.c
blob01a92a89ba4884dca7f5314f2487d73b75938348
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 * Set the user session key for a connection
45 * @param cli The cli structure to add it too
46 * @param session_key The session key used. (A copy of this is taken for the cli struct)
50 static void cli_set_session_key (struct cli_state *cli, const DATA_BLOB session_key)
52 cli->user_session_key = data_blob(session_key.data, session_key.length);
55 /****************************************************************************
56 Do an old lanman2 style session setup.
57 ****************************************************************************/
59 static BOOL cli_session_setup_lanman2(struct cli_state *cli, const char *user,
60 const char *pass, size_t passlen, const char *workgroup)
62 DATA_BLOB session_key = data_blob(NULL, 0);
63 DATA_BLOB lm_response = data_blob(NULL, 0);
64 fstring pword;
65 char *p;
67 if (passlen > sizeof(pword)-1)
68 return False;
70 /* LANMAN servers predate NT status codes and Unicode and ignore those
71 smb flags so we must disable the corresponding default capabilities
72 that would otherwise cause the Unicode and NT Status flags to be
73 set (and even returned by the server) */
75 cli->capabilities &= ~(CAP_UNICODE | CAP_STATUS32);
77 /* if in share level security then don't send a password now */
78 if (!(cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL))
79 passlen = 0;
81 if (passlen > 0 && (cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen != 24) {
82 /* Encrypted mode needed, and non encrypted password supplied. */
83 lm_response = data_blob(NULL, 24);
84 if (!SMBencrypt(pass, cli->secblob.data,(uchar *)lm_response.data)) {
85 DEBUG(1, ("Password is > 14 chars in length, and is therefore incompatible with Lanman authentication\n"));
86 return False;
88 } else if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen == 24) {
89 /* Encrypted mode needed, and encrypted password supplied. */
90 lm_response = data_blob(pass, passlen);
91 } else if (passlen > 0) {
92 /* Plaintext mode needed, assume plaintext supplied. */
93 passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
94 lm_response = data_blob(pass, passlen);
97 /* send a session setup command */
98 memset(cli->outbuf,'\0',smb_size);
99 set_message(cli->outbuf,10, 0, True);
100 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
101 cli_setup_packet(cli);
103 SCVAL(cli->outbuf,smb_vwv0,0xFF);
104 SSVAL(cli->outbuf,smb_vwv2,cli->max_xmit);
105 SSVAL(cli->outbuf,smb_vwv3,2);
106 SSVAL(cli->outbuf,smb_vwv4,1);
107 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
108 SSVAL(cli->outbuf,smb_vwv7,lm_response.length);
110 p = smb_buf(cli->outbuf);
111 memcpy(p,lm_response.data,lm_response.length);
112 p += lm_response.length;
113 p += clistr_push(cli, p, user, -1, STR_TERMINATE|STR_UPPER);
114 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE|STR_UPPER);
115 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
116 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
117 cli_setup_bcc(cli, p);
119 cli_send_smb(cli);
120 if (!cli_receive_smb(cli))
121 return False;
123 show_msg(cli->inbuf);
125 if (cli_is_error(cli))
126 return False;
128 /* use the returned vuid from now on */
129 cli->vuid = SVAL(cli->inbuf,smb_uid);
130 fstrcpy(cli->user_name, user);
132 if (session_key.data) {
133 /* Have plaintext orginal */
134 cli_set_session_key(cli, session_key);
137 return True;
140 /****************************************************************************
141 Work out suitable capabilities to offer the server.
142 ****************************************************************************/
144 static uint32 cli_session_setup_capabilities(struct cli_state *cli)
146 uint32 capabilities = CAP_NT_SMBS;
148 if (!cli->force_dos_errors)
149 capabilities |= CAP_STATUS32;
151 if (cli->use_level_II_oplocks)
152 capabilities |= CAP_LEVEL_II_OPLOCKS;
154 capabilities |= (cli->capabilities & (CAP_UNICODE|CAP_LARGE_FILES|CAP_LARGE_READX|CAP_LARGE_WRITEX|CAP_DFS));
155 return capabilities;
158 /****************************************************************************
159 Do a NT1 guest session setup.
160 ****************************************************************************/
162 static BOOL cli_session_setup_guest(struct cli_state *cli)
164 char *p;
165 uint32 capabilities = cli_session_setup_capabilities(cli);
167 set_message(cli->outbuf,13,0,True);
168 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
169 cli_setup_packet(cli);
171 SCVAL(cli->outbuf,smb_vwv0,0xFF);
172 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
173 SSVAL(cli->outbuf,smb_vwv3,2);
174 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
175 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
176 SSVAL(cli->outbuf,smb_vwv7,0);
177 SSVAL(cli->outbuf,smb_vwv8,0);
178 SIVAL(cli->outbuf,smb_vwv11,capabilities);
179 p = smb_buf(cli->outbuf);
180 p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* username */
181 p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* workgroup */
182 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
183 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
184 cli_setup_bcc(cli, p);
186 cli_send_smb(cli);
187 if (!cli_receive_smb(cli))
188 return False;
190 show_msg(cli->inbuf);
192 if (cli_is_error(cli))
193 return False;
195 cli->vuid = SVAL(cli->inbuf,smb_uid);
197 p = smb_buf(cli->inbuf);
198 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
199 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
200 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
202 fstrcpy(cli->user_name, "");
204 return True;
207 /****************************************************************************
208 Do a NT1 plaintext session setup.
209 ****************************************************************************/
211 static BOOL cli_session_setup_plaintext(struct cli_state *cli, const char *user,
212 const char *pass, const char *workgroup)
214 uint32 capabilities = cli_session_setup_capabilities(cli);
215 char *p;
216 fstring lanman;
218 fstr_sprintf( lanman, "Samba %s", SAMBA_VERSION_STRING);
220 set_message(cli->outbuf,13,0,True);
221 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
222 cli_setup_packet(cli);
224 SCVAL(cli->outbuf,smb_vwv0,0xFF);
225 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
226 SSVAL(cli->outbuf,smb_vwv3,2);
227 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
228 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
229 SSVAL(cli->outbuf,smb_vwv8,0);
230 SIVAL(cli->outbuf,smb_vwv11,capabilities);
231 p = smb_buf(cli->outbuf);
233 /* check wether to send the ASCII or UNICODE version of the password */
235 if ( (capabilities & CAP_UNICODE) == 0 ) {
236 p += clistr_push(cli, p, pass, -1, STR_TERMINATE); /* password */
237 SSVAL(cli->outbuf,smb_vwv7,PTR_DIFF(p, smb_buf(cli->outbuf)));
239 else {
240 p += clistr_push(cli, p, pass, -1, STR_UNICODE|STR_TERMINATE); /* unicode password */
241 SSVAL(cli->outbuf,smb_vwv8,PTR_DIFF(p, smb_buf(cli->outbuf)));
244 p += clistr_push(cli, p, user, -1, STR_TERMINATE); /* username */
245 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE); /* workgroup */
246 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
247 p += clistr_push(cli, p, lanman, -1, STR_TERMINATE);
248 cli_setup_bcc(cli, p);
250 cli_send_smb(cli);
251 if (!cli_receive_smb(cli))
252 return False;
254 show_msg(cli->inbuf);
256 if (cli_is_error(cli))
257 return False;
259 cli->vuid = SVAL(cli->inbuf,smb_uid);
260 p = smb_buf(cli->inbuf);
261 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
262 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
263 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
264 fstrcpy(cli->user_name, user);
266 return True;
269 /****************************************************************************
270 do a NT1 NTLM/LM encrypted session setup - for when extended security
271 is not negotiated.
272 @param cli client state to create do session setup on
273 @param user username
274 @param pass *either* cleartext password (passlen !=24) or LM response.
275 @param ntpass NT response, implies ntpasslen >=24, implies pass is not clear
276 @param workgroup The user's domain.
277 ****************************************************************************/
279 static BOOL cli_session_setup_nt1(struct cli_state *cli, const char *user,
280 const char *pass, size_t passlen,
281 const char *ntpass, size_t ntpasslen,
282 const char *workgroup)
284 uint32 capabilities = cli_session_setup_capabilities(cli);
285 DATA_BLOB lm_response = data_blob(NULL, 0);
286 DATA_BLOB nt_response = data_blob(NULL, 0);
287 DATA_BLOB session_key = data_blob(NULL, 0);
288 BOOL ret = False;
289 char *p;
291 if (passlen == 0) {
292 /* do nothing - guest login */
293 } else if (passlen != 24) {
294 if (lp_client_ntlmv2_auth()) {
295 DATA_BLOB server_chal;
296 DATA_BLOB names_blob;
297 server_chal = data_blob(cli->secblob.data, MIN(cli->secblob.length, 8));
299 /* note that the 'workgroup' here is a best guess - we don't know
300 the server's domain at this point. The 'server name' is also
301 dodgy...
303 names_blob = NTLMv2_generate_names_blob(cli->called.name, workgroup);
305 if (!SMBNTLMv2encrypt(user, workgroup, pass, &server_chal,
306 &names_blob,
307 &lm_response, &nt_response, &session_key)) {
308 data_blob_free(&names_blob);
309 data_blob_free(&server_chal);
310 return False;
312 data_blob_free(&names_blob);
313 data_blob_free(&server_chal);
315 } else {
316 uchar nt_hash[16];
317 E_md4hash(pass, nt_hash);
319 #ifdef LANMAN_ONLY
320 nt_response = data_blob(NULL, 0);
321 #else
322 nt_response = data_blob(NULL, 24);
323 SMBNTencrypt(pass,cli->secblob.data,nt_response.data);
324 #endif
325 /* non encrypted password supplied. Ignore ntpass. */
326 if (lp_client_lanman_auth()) {
327 lm_response = data_blob(NULL, 24);
328 if (!SMBencrypt(pass,cli->secblob.data, lm_response.data)) {
329 /* Oops, the LM response is invalid, just put
330 the NT response there instead */
331 data_blob_free(&lm_response);
332 lm_response = data_blob(nt_response.data, nt_response.length);
334 } else {
335 /* LM disabled, place NT# in LM field instead */
336 lm_response = data_blob(nt_response.data, nt_response.length);
339 session_key = data_blob(NULL, 16);
340 #ifdef LANMAN_ONLY
341 E_deshash(pass, session_key.data);
342 memset(&session_key.data[8], '\0', 8);
343 #else
344 SMBsesskeygen_ntv1(nt_hash, NULL, session_key.data);
345 #endif
347 #ifdef LANMAN_ONLY
348 cli_simple_set_signing(cli, session_key, lm_response);
349 #else
350 cli_simple_set_signing(cli, session_key, nt_response);
351 #endif
352 } else {
353 /* pre-encrypted password supplied. Only used for
354 security=server, can't do
355 signing because we don't have original key */
357 lm_response = data_blob(pass, passlen);
358 nt_response = data_blob(ntpass, ntpasslen);
361 /* send a session setup command */
362 memset(cli->outbuf,'\0',smb_size);
364 set_message(cli->outbuf,13,0,True);
365 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
366 cli_setup_packet(cli);
368 SCVAL(cli->outbuf,smb_vwv0,0xFF);
369 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
370 SSVAL(cli->outbuf,smb_vwv3,2);
371 SSVAL(cli->outbuf,smb_vwv4,cli->pid);
372 SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
373 SSVAL(cli->outbuf,smb_vwv7,lm_response.length);
374 SSVAL(cli->outbuf,smb_vwv8,nt_response.length);
375 SIVAL(cli->outbuf,smb_vwv11,capabilities);
376 p = smb_buf(cli->outbuf);
377 if (lm_response.length) {
378 memcpy(p,lm_response.data, lm_response.length); p += lm_response.length;
380 if (nt_response.length) {
381 memcpy(p,nt_response.data, nt_response.length); p += nt_response.length;
383 p += clistr_push(cli, p, user, -1, STR_TERMINATE);
385 /* Upper case here might help some NTLMv2 implementations */
386 p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE|STR_UPPER);
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);
391 if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
392 ret = False;
393 goto end;
396 /* show_msg(cli->inbuf); */
398 if (cli_is_error(cli)) {
399 ret = False;
400 goto end;
403 /* use the returned vuid from now on */
404 cli->vuid = SVAL(cli->inbuf,smb_uid);
406 p = smb_buf(cli->inbuf);
407 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
408 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
409 p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
411 fstrcpy(cli->user_name, user);
413 if (session_key.data) {
414 /* Have plaintext orginal */
415 cli_set_session_key(cli, session_key);
418 ret = True;
419 end:
420 data_blob_free(&lm_response);
421 data_blob_free(&nt_response);
422 data_blob_free(&session_key);
423 return ret;
426 /****************************************************************************
427 Send a extended security session setup blob
428 ****************************************************************************/
430 static BOOL cli_session_setup_blob_send(struct cli_state *cli, DATA_BLOB blob)
432 uint32 capabilities = cli_session_setup_capabilities(cli);
433 char *p;
435 capabilities |= CAP_EXTENDED_SECURITY;
437 /* send a session setup command */
438 memset(cli->outbuf,'\0',smb_size);
440 set_message(cli->outbuf,12,0,True);
441 SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
443 cli_setup_packet(cli);
445 SCVAL(cli->outbuf,smb_vwv0,0xFF);
446 SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
447 SSVAL(cli->outbuf,smb_vwv3,2);
448 SSVAL(cli->outbuf,smb_vwv4,1);
449 SIVAL(cli->outbuf,smb_vwv5,0);
450 SSVAL(cli->outbuf,smb_vwv7,blob.length);
451 SIVAL(cli->outbuf,smb_vwv10,capabilities);
452 p = smb_buf(cli->outbuf);
453 memcpy(p, blob.data, blob.length);
454 p += blob.length;
455 p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
456 p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
457 cli_setup_bcc(cli, p);
458 return cli_send_smb(cli);
461 /****************************************************************************
462 Send a extended security session setup blob, returning a reply blob.
463 ****************************************************************************/
465 static DATA_BLOB cli_session_setup_blob_receive(struct cli_state *cli)
467 DATA_BLOB blob2 = data_blob(NULL, 0);
468 char *p;
469 size_t len;
471 if (!cli_receive_smb(cli))
472 return blob2;
474 show_msg(cli->inbuf);
476 if (cli_is_error(cli) && !NT_STATUS_EQUAL(cli_nt_error(cli),
477 NT_STATUS_MORE_PROCESSING_REQUIRED)) {
478 return blob2;
481 /* use the returned vuid from now on */
482 cli->vuid = SVAL(cli->inbuf,smb_uid);
484 p = smb_buf(cli->inbuf);
486 blob2 = data_blob(p, SVAL(cli->inbuf, smb_vwv3));
488 p += blob2.length;
489 p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
491 /* w2k with kerberos doesn't properly null terminate this field */
492 len = smb_buflen(cli->inbuf) - PTR_DIFF(p, smb_buf(cli->inbuf));
493 p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), len, 0);
495 return blob2;
498 #ifdef HAVE_KRB5
500 /****************************************************************************
501 Send a extended security session setup blob, returning a reply blob.
502 ****************************************************************************/
504 static DATA_BLOB cli_session_setup_blob(struct cli_state *cli, DATA_BLOB blob)
506 DATA_BLOB blob2 = data_blob(NULL, 0);
507 if (!cli_session_setup_blob_send(cli, blob)) {
508 return blob2;
511 return cli_session_setup_blob_receive(cli);
514 /****************************************************************************
515 Use in-memory credentials cache
516 ****************************************************************************/
518 static void use_in_memory_ccache(void) {
519 setenv(KRB5_ENV_CCNAME, "MEMORY:cliconnect", 1);
522 /****************************************************************************
523 Do a spnego/kerberos encrypted session setup.
524 ****************************************************************************/
526 static ADS_STATUS cli_session_setup_kerberos(struct cli_state *cli, const char *principal, const char *workgroup)
528 DATA_BLOB blob2, negTokenTarg;
529 DATA_BLOB session_key_krb5;
530 DATA_BLOB null_blob = data_blob(NULL, 0);
531 int rc;
533 DEBUG(2,("Doing kerberos session setup\n"));
535 /* generate the encapsulated kerberos5 ticket */
536 rc = spnego_gen_negTokenTarg(principal, 0, &negTokenTarg, &session_key_krb5);
538 if (rc) {
539 DEBUG(1, ("spnego_gen_negTokenTarg failed: %s\n", error_message(rc)));
540 return ADS_ERROR_KRB5(rc);
543 #if 0
544 file_save("negTokenTarg.dat", negTokenTarg.data, negTokenTarg.length);
545 #endif
547 cli_simple_set_signing(cli, session_key_krb5, null_blob);
549 blob2 = cli_session_setup_blob(cli, negTokenTarg);
551 /* we don't need this blob for kerberos */
552 data_blob_free(&blob2);
554 cli_set_session_key(cli, session_key_krb5);
556 data_blob_free(&negTokenTarg);
557 data_blob_free(&session_key_krb5);
559 if (cli_is_error(cli)) {
560 if (NT_STATUS_IS_OK(cli_nt_error(cli))) {
561 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
564 return ADS_ERROR_NT(cli_nt_error(cli));
566 #endif /* HAVE_KRB5 */
569 /****************************************************************************
570 Do a spnego/NTLMSSP encrypted session setup.
571 ****************************************************************************/
573 static NTSTATUS cli_session_setup_ntlmssp(struct cli_state *cli, const char *user,
574 const char *pass, const char *domain)
576 struct ntlmssp_state *ntlmssp_state;
577 NTSTATUS nt_status;
578 int turn = 1;
579 DATA_BLOB msg1;
580 DATA_BLOB blob = data_blob(NULL, 0);
581 DATA_BLOB blob_in = data_blob(NULL, 0);
582 DATA_BLOB blob_out = data_blob(NULL, 0);
584 cli_temp_set_signing(cli);
586 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_client_start(&ntlmssp_state))) {
587 return nt_status;
590 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_username(ntlmssp_state, user))) {
591 return nt_status;
593 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_domain(ntlmssp_state, domain))) {
594 return nt_status;
596 if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_password(ntlmssp_state, pass))) {
597 return nt_status;
600 do {
601 nt_status = ntlmssp_update(ntlmssp_state,
602 blob_in, &blob_out);
603 data_blob_free(&blob_in);
604 if (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
605 if (turn == 1) {
606 /* and wrap it in a SPNEGO wrapper */
607 msg1 = gen_negTokenInit(OID_NTLMSSP, blob_out);
608 } else {
609 /* wrap it in SPNEGO */
610 msg1 = spnego_gen_auth(blob_out);
613 /* now send that blob on its way */
614 if (!cli_session_setup_blob_send(cli, msg1)) {
615 DEBUG(3, ("Failed to send NTLMSSP/SPNEGO blob to server!\n"));
616 nt_status = NT_STATUS_UNSUCCESSFUL;
617 } else {
618 data_blob_free(&msg1);
620 blob = cli_session_setup_blob_receive(cli);
622 nt_status = cli_nt_error(cli);
623 if (cli_is_error(cli) && NT_STATUS_IS_OK(nt_status)) {
624 if (cli->smb_rw_error == READ_BAD_SIG) {
625 nt_status = NT_STATUS_ACCESS_DENIED;
626 } else {
627 nt_status = NT_STATUS_UNSUCCESSFUL;
633 if (!blob.length) {
634 if (NT_STATUS_IS_OK(nt_status)) {
635 nt_status = NT_STATUS_UNSUCCESSFUL;
637 } else if ((turn == 1) &&
638 NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
639 DATA_BLOB tmp_blob = data_blob(NULL, 0);
640 /* the server might give us back two challenges */
641 if (!spnego_parse_challenge(blob, &blob_in,
642 &tmp_blob)) {
643 DEBUG(3,("Failed to parse challenges\n"));
644 nt_status = NT_STATUS_INVALID_PARAMETER;
646 data_blob_free(&tmp_blob);
647 } else {
648 if (!spnego_parse_auth_response(blob, nt_status,
649 &blob_in)) {
650 DEBUG(3,("Failed to parse auth response\n"));
651 if (NT_STATUS_IS_OK(nt_status)
652 || NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED))
653 nt_status = NT_STATUS_INVALID_PARAMETER;
656 data_blob_free(&blob);
657 data_blob_free(&blob_out);
658 turn++;
659 } while (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED));
661 if (NT_STATUS_IS_OK(nt_status)) {
663 DATA_BLOB key = data_blob(ntlmssp_state->session_key.data,
664 ntlmssp_state->session_key.length);
665 DATA_BLOB null_blob = data_blob(NULL, 0);
666 BOOL res;
668 fstrcpy(cli->server_domain, ntlmssp_state->server_domain);
669 cli_set_session_key(cli, ntlmssp_state->session_key);
671 res = cli_simple_set_signing(cli, key, null_blob);
673 data_blob_free(&key);
675 if (res) {
677 /* 'resign' the last message, so we get the right sequence numbers
678 for checking the first reply from the server */
679 cli_calculate_sign_mac(cli);
681 if (!cli_check_sign_mac(cli)) {
682 nt_status = NT_STATUS_ACCESS_DENIED;
687 /* we have a reference conter on ntlmssp_state, if we are signing
688 then the state will be kept by the signing engine */
690 ntlmssp_end(&ntlmssp_state);
692 return nt_status;
695 /****************************************************************************
696 Do a spnego encrypted session setup.
697 ****************************************************************************/
699 ADS_STATUS cli_session_setup_spnego(struct cli_state *cli, const char *user,
700 const char *pass, const char *domain)
702 char *principal;
703 char *OIDs[ASN1_MAX_OIDS];
704 int i;
705 BOOL got_kerberos_mechanism = False;
706 DATA_BLOB blob;
708 DEBUG(3,("Doing spnego session setup (blob length=%lu)\n", (unsigned long)cli->secblob.length));
710 /* the server might not even do spnego */
711 if (cli->secblob.length <= 16) {
712 DEBUG(3,("server didn't supply a full spnego negprot\n"));
713 goto ntlmssp;
716 #if 0
717 file_save("negprot.dat", cli->secblob.data, cli->secblob.length);
718 #endif
720 /* there is 16 bytes of GUID before the real spnego packet starts */
721 blob = data_blob(cli->secblob.data+16, cli->secblob.length-16);
723 /* the server sent us the first part of the SPNEGO exchange in the negprot
724 reply */
725 if (!spnego_parse_negTokenInit(blob, OIDs, &principal)) {
726 data_blob_free(&blob);
727 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER);
729 data_blob_free(&blob);
731 /* make sure the server understands kerberos */
732 for (i=0;OIDs[i];i++) {
733 DEBUG(3,("got OID=%s\n", OIDs[i]));
734 if (strcmp(OIDs[i], OID_KERBEROS5_OLD) == 0 ||
735 strcmp(OIDs[i], OID_KERBEROS5) == 0) {
736 got_kerberos_mechanism = True;
738 free(OIDs[i]);
740 DEBUG(3,("got principal=%s\n", principal));
742 fstrcpy(cli->user_name, user);
744 #ifdef HAVE_KRB5
745 /* If password is set we reauthenticate to kerberos server
746 * and do not store results */
748 if (got_kerberos_mechanism && cli->use_kerberos) {
749 ADS_STATUS rc;
751 if (pass && *pass) {
752 int ret;
754 use_in_memory_ccache();
755 ret = kerberos_kinit_password(user, pass, 0 /* no time correction for now */, NULL, NULL);
757 if (ret){
758 SAFE_FREE(principal);
759 DEBUG(0, ("Kinit failed: %s\n", error_message(ret)));
760 if (cli->fallback_after_kerberos)
761 goto ntlmssp;
762 return ADS_ERROR_KRB5(ret);
766 rc = cli_session_setup_kerberos(cli, principal, domain);
767 if (ADS_ERR_OK(rc) || !cli->fallback_after_kerberos) {
768 SAFE_FREE(principal);
769 return rc;
772 #endif
774 SAFE_FREE(principal);
776 ntlmssp:
778 return ADS_ERROR_NT(cli_session_setup_ntlmssp(cli, user, pass, domain));
781 /****************************************************************************
782 Send a session setup. The username and workgroup is in UNIX character
783 format and must be converted to DOS codepage format before sending. If the
784 password is in plaintext, the same should be done.
785 ****************************************************************************/
787 BOOL cli_session_setup(struct cli_state *cli,
788 const char *user,
789 const char *pass, int passlen,
790 const char *ntpass, int ntpasslen,
791 const char *workgroup)
793 char *p;
794 fstring user2;
796 /* allow for workgroups as part of the username */
797 fstrcpy(user2, user);
798 if ((p=strchr_m(user2,'\\')) || (p=strchr_m(user2,'/')) ||
799 (p=strchr_m(user2,*lp_winbind_separator()))) {
800 *p = 0;
801 user = p+1;
802 workgroup = user2;
805 if (cli->protocol < PROTOCOL_LANMAN1)
806 return True;
808 /* now work out what sort of session setup we are going to
809 do. I have split this into separate functions to make the
810 flow a bit easier to understand (tridge) */
812 /* if its an older server then we have to use the older request format */
814 if (cli->protocol < PROTOCOL_NT1) {
815 if (!lp_client_lanman_auth() && passlen != 24 && (*pass)) {
816 DEBUG(1, ("Server requested LM password but 'client lanman auth'"
817 " is disabled\n"));
818 return False;
821 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) == 0 &&
822 !lp_client_plaintext_auth() && (*pass)) {
823 DEBUG(1, ("Server requested plaintext password but 'client use plaintext auth'"
824 " is disabled\n"));
825 return False;
828 return cli_session_setup_lanman2(cli, user, pass, passlen, workgroup);
831 /* if no user is supplied then we have to do an anonymous connection.
832 passwords are ignored */
834 if (!user || !*user)
835 return cli_session_setup_guest(cli);
837 /* if the server is share level then send a plaintext null
838 password at this point. The password is sent in the tree
839 connect */
841 if ((cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) == 0)
842 return cli_session_setup_plaintext(cli, user, "", workgroup);
844 /* if the server doesn't support encryption then we have to use
845 plaintext. The second password is ignored */
847 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) == 0) {
848 if (!lp_client_plaintext_auth() && (*pass)) {
849 DEBUG(1, ("Server requested plaintext password but 'client use plaintext auth'"
850 " is disabled\n"));
851 return False;
853 return cli_session_setup_plaintext(cli, user, pass, workgroup);
856 /* if the server supports extended security then use SPNEGO */
858 if (cli->capabilities & CAP_EXTENDED_SECURITY) {
859 ADS_STATUS status = cli_session_setup_spnego(cli, user, pass, workgroup);
860 if (!ADS_ERR_OK(status)) {
861 DEBUG(3, ("SPNEGO login failed: %s\n", ads_errstr(status)));
862 return False;
864 return True;
867 /* otherwise do a NT1 style session setup */
869 return cli_session_setup_nt1(cli, user,
870 pass, passlen, ntpass, ntpasslen,
871 workgroup);
874 /****************************************************************************
875 Send a uloggoff.
876 *****************************************************************************/
878 BOOL cli_ulogoff(struct cli_state *cli)
880 memset(cli->outbuf,'\0',smb_size);
881 set_message(cli->outbuf,2,0,True);
882 SCVAL(cli->outbuf,smb_com,SMBulogoffX);
883 cli_setup_packet(cli);
884 SSVAL(cli->outbuf,smb_vwv0,0xFF);
885 SSVAL(cli->outbuf,smb_vwv2,0); /* no additional info */
887 cli_send_smb(cli);
888 if (!cli_receive_smb(cli))
889 return False;
891 return !cli_is_error(cli);
894 /****************************************************************************
895 Send a tconX.
896 ****************************************************************************/
897 BOOL cli_send_tconX(struct cli_state *cli,
898 const char *share, const char *dev, const char *pass, int passlen)
900 fstring fullshare, pword;
901 char *p;
902 memset(cli->outbuf,'\0',smb_size);
903 memset(cli->inbuf,'\0',smb_size);
905 fstrcpy(cli->share, share);
907 /* in user level security don't send a password now */
908 if (cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) {
909 passlen = 1;
910 pass = "";
913 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && *pass && passlen != 24) {
914 if (!lp_client_lanman_auth()) {
915 DEBUG(1, ("Server requested LANMAN password (share-level security) but 'client use lanman auth'"
916 " is disabled\n"));
917 return False;
921 * Non-encrypted passwords - convert to DOS codepage before encryption.
923 passlen = 24;
924 SMBencrypt(pass,cli->secblob.data,(uchar *)pword);
925 } else {
926 if((cli->sec_mode & (NEGOTIATE_SECURITY_USER_LEVEL|NEGOTIATE_SECURITY_CHALLENGE_RESPONSE)) == 0) {
927 if (!lp_client_plaintext_auth() && (*pass)) {
928 DEBUG(1, ("Server requested plaintext password but 'client use plaintext auth'"
929 " is disabled\n"));
930 return False;
934 * Non-encrypted passwords - convert to DOS codepage before using.
936 passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
938 } else {
939 memcpy(pword, pass, passlen);
943 slprintf(fullshare, sizeof(fullshare)-1,
944 "\\\\%s\\%s", cli->desthost, share);
946 set_message(cli->outbuf,4, 0, True);
947 SCVAL(cli->outbuf,smb_com,SMBtconX);
948 cli_setup_packet(cli);
950 SSVAL(cli->outbuf,smb_vwv0,0xFF);
951 SSVAL(cli->outbuf,smb_vwv3,passlen);
953 p = smb_buf(cli->outbuf);
954 memcpy(p,pword,passlen);
955 p += passlen;
956 p += clistr_push(cli, p, fullshare, -1, STR_TERMINATE |STR_UPPER);
957 p += clistr_push(cli, p, dev, -1, STR_TERMINATE |STR_UPPER | STR_ASCII);
959 cli_setup_bcc(cli, p);
961 cli_send_smb(cli);
962 if (!cli_receive_smb(cli))
963 return False;
965 if (cli_is_error(cli))
966 return False;
968 clistr_pull(cli, cli->dev, smb_buf(cli->inbuf), sizeof(fstring), -1, STR_TERMINATE|STR_ASCII);
970 if (cli->protocol >= PROTOCOL_NT1 &&
971 smb_buflen(cli->inbuf) == 3) {
972 /* almost certainly win95 - enable bug fixes */
973 cli->win95 = True;
976 if ( cli->protocol >= PROTOCOL_LANMAN2 )
977 cli->dfsroot = (SVAL( cli->inbuf, smb_vwv2 ) & SMB_SHARE_IN_DFS);
979 cli->cnum = SVAL(cli->inbuf,smb_tid);
980 return True;
983 /****************************************************************************
984 Send a tree disconnect.
985 ****************************************************************************/
987 BOOL cli_tdis(struct cli_state *cli)
989 memset(cli->outbuf,'\0',smb_size);
990 set_message(cli->outbuf,0,0,True);
991 SCVAL(cli->outbuf,smb_com,SMBtdis);
992 SSVAL(cli->outbuf,smb_tid,cli->cnum);
993 cli_setup_packet(cli);
995 cli_send_smb(cli);
996 if (!cli_receive_smb(cli))
997 return False;
999 if (cli_is_error(cli)) {
1000 return False;
1003 cli->cnum = -1;
1004 return True;
1007 /****************************************************************************
1008 Send a negprot command.
1009 ****************************************************************************/
1011 void cli_negprot_send(struct cli_state *cli)
1013 char *p;
1014 int numprots;
1016 if (cli->protocol < PROTOCOL_NT1)
1017 cli->use_spnego = False;
1019 memset(cli->outbuf,'\0',smb_size);
1021 /* setup the protocol strings */
1022 set_message(cli->outbuf,0,0,True);
1024 p = smb_buf(cli->outbuf);
1025 for (numprots=0;
1026 prots[numprots].name && prots[numprots].prot<=cli->protocol;
1027 numprots++) {
1028 *p++ = 2;
1029 p += clistr_push(cli, p, prots[numprots].name, -1, STR_TERMINATE);
1032 SCVAL(cli->outbuf,smb_com,SMBnegprot);
1033 cli_setup_bcc(cli, p);
1034 cli_setup_packet(cli);
1036 SCVAL(smb_buf(cli->outbuf),0,2);
1038 cli_send_smb(cli);
1041 /****************************************************************************
1042 Send a negprot command.
1043 ****************************************************************************/
1045 BOOL cli_negprot(struct cli_state *cli)
1047 char *p;
1048 int numprots;
1049 int plength;
1051 if (cli->protocol < PROTOCOL_NT1)
1052 cli->use_spnego = False;
1054 memset(cli->outbuf,'\0',smb_size);
1056 /* setup the protocol strings */
1057 for (plength=0,numprots=0;
1058 prots[numprots].name && prots[numprots].prot<=cli->protocol;
1059 numprots++)
1060 plength += strlen(prots[numprots].name)+2;
1062 set_message(cli->outbuf,0,plength,True);
1064 p = smb_buf(cli->outbuf);
1065 for (numprots=0;
1066 prots[numprots].name && prots[numprots].prot<=cli->protocol;
1067 numprots++) {
1068 *p++ = 2;
1069 p += clistr_push(cli, p, prots[numprots].name, -1, STR_TERMINATE);
1072 SCVAL(cli->outbuf,smb_com,SMBnegprot);
1073 cli_setup_packet(cli);
1075 SCVAL(smb_buf(cli->outbuf),0,2);
1077 cli_send_smb(cli);
1078 if (!cli_receive_smb(cli))
1079 return False;
1081 show_msg(cli->inbuf);
1083 if (cli_is_error(cli) ||
1084 ((int)SVAL(cli->inbuf,smb_vwv0) >= numprots)) {
1085 return(False);
1088 cli->protocol = prots[SVAL(cli->inbuf,smb_vwv0)].prot;
1090 if ((cli->protocol < PROTOCOL_NT1) && cli->sign_info.mandatory_signing) {
1091 DEBUG(0,("cli_negprot: SMB signing is mandatory and the selected protocol level doesn't support it.\n"));
1092 return False;
1095 if (cli->protocol >= PROTOCOL_NT1) {
1096 /* NT protocol */
1097 cli->sec_mode = CVAL(cli->inbuf,smb_vwv1);
1098 cli->max_mux = SVAL(cli->inbuf, smb_vwv1+1);
1099 cli->max_xmit = IVAL(cli->inbuf,smb_vwv3+1);
1100 cli->sesskey = IVAL(cli->inbuf,smb_vwv7+1);
1101 cli->serverzone = SVALS(cli->inbuf,smb_vwv15+1);
1102 cli->serverzone *= 60;
1103 /* this time arrives in real GMT */
1104 cli->servertime = interpret_long_date(cli->inbuf+smb_vwv11+1);
1105 cli->secblob = data_blob(smb_buf(cli->inbuf),smb_buflen(cli->inbuf));
1106 cli->capabilities = IVAL(cli->inbuf,smb_vwv9+1);
1107 if (cli->capabilities & CAP_RAW_MODE) {
1108 cli->readbraw_supported = True;
1109 cli->writebraw_supported = True;
1111 /* work out if they sent us a workgroup */
1112 if (!(cli->capabilities & CAP_EXTENDED_SECURITY) &&
1113 smb_buflen(cli->inbuf) > 8) {
1114 clistr_pull(cli, cli->server_domain,
1115 smb_buf(cli->inbuf)+8, sizeof(cli->server_domain),
1116 smb_buflen(cli->inbuf)-8, STR_UNICODE|STR_NOALIGN);
1120 * As signing is slow we only turn it on if either the client or
1121 * the server require it. JRA.
1124 if (cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_REQUIRED) {
1125 /* Fail if server says signing is mandatory and we don't want to support it. */
1126 if (!cli->sign_info.allow_smb_signing) {
1127 DEBUG(0,("cli_negprot: SMB signing is mandatory and we have disabled it.\n"));
1128 return False;
1130 cli->sign_info.negotiated_smb_signing = True;
1131 cli->sign_info.mandatory_signing = True;
1132 } else if (cli->sign_info.mandatory_signing && cli->sign_info.allow_smb_signing) {
1133 /* Fail if client says signing is mandatory and the server doesn't support it. */
1134 if (!(cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED)) {
1135 DEBUG(1,("cli_negprot: SMB signing is mandatory and the server doesn't support it.\n"));
1136 return False;
1138 cli->sign_info.negotiated_smb_signing = True;
1139 cli->sign_info.mandatory_signing = True;
1140 } else if (cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED) {
1141 cli->sign_info.negotiated_smb_signing = True;
1144 if (cli->capabilities & (CAP_LARGE_READX|CAP_LARGE_WRITEX)) {
1145 SAFE_FREE(cli->outbuf);
1146 SAFE_FREE(cli->inbuf);
1147 cli->outbuf = (char *)SMB_MALLOC(CLI_MAX_LARGE_READX_SIZE+SAFETY_MARGIN);
1148 cli->inbuf = (char *)SMB_MALLOC(CLI_MAX_LARGE_READX_SIZE+SAFETY_MARGIN);
1149 cli->bufsize = CLI_MAX_LARGE_READX_SIZE;
1152 } else if (cli->protocol >= PROTOCOL_LANMAN1) {
1153 cli->use_spnego = False;
1154 cli->sec_mode = SVAL(cli->inbuf,smb_vwv1);
1155 cli->max_xmit = SVAL(cli->inbuf,smb_vwv2);
1156 cli->max_mux = SVAL(cli->inbuf, smb_vwv3);
1157 cli->sesskey = IVAL(cli->inbuf,smb_vwv6);
1158 cli->serverzone = SVALS(cli->inbuf,smb_vwv10);
1159 cli->serverzone *= 60;
1160 /* this time is converted to GMT by make_unix_date */
1161 cli->servertime = make_unix_date(cli->inbuf+smb_vwv8);
1162 cli->readbraw_supported = ((SVAL(cli->inbuf,smb_vwv5) & 0x1) != 0);
1163 cli->writebraw_supported = ((SVAL(cli->inbuf,smb_vwv5) & 0x2) != 0);
1164 cli->secblob = data_blob(smb_buf(cli->inbuf),smb_buflen(cli->inbuf));
1165 } else {
1166 /* the old core protocol */
1167 cli->use_spnego = False;
1168 cli->sec_mode = 0;
1169 cli->serverzone = TimeDiff(time(NULL));
1172 cli->max_xmit = MIN(cli->max_xmit, CLI_BUFFER_SIZE);
1174 /* a way to force ascii SMB */
1175 if (getenv("CLI_FORCE_ASCII"))
1176 cli->capabilities &= ~CAP_UNICODE;
1178 return True;
1181 /****************************************************************************
1182 Send a session request. See rfc1002.txt 4.3 and 4.3.2.
1183 ****************************************************************************/
1185 BOOL cli_session_request(struct cli_state *cli,
1186 struct nmb_name *calling, struct nmb_name *called)
1188 char *p;
1189 int len = 4;
1190 extern pstring user_socket_options;
1192 memcpy(&(cli->calling), calling, sizeof(*calling));
1193 memcpy(&(cli->called ), called , sizeof(*called ));
1195 /* put in the destination name */
1196 p = cli->outbuf+len;
1197 name_mangle(cli->called .name, p, cli->called .name_type);
1198 len += name_len(p);
1200 /* and my name */
1201 p = cli->outbuf+len;
1202 name_mangle(cli->calling.name, p, cli->calling.name_type);
1203 len += name_len(p);
1205 /* 445 doesn't have session request */
1206 if (cli->port == 445)
1207 return True;
1209 /* send a session request (RFC 1002) */
1210 /* setup the packet length
1211 * Remove four bytes from the length count, since the length
1212 * field in the NBT Session Service header counts the number
1213 * of bytes which follow. The cli_send_smb() function knows
1214 * about this and accounts for those four bytes.
1215 * CRH.
1217 len -= 4;
1218 _smb_setlen(cli->outbuf,len);
1219 SCVAL(cli->outbuf,0,0x81);
1221 cli_send_smb(cli);
1222 DEBUG(5,("Sent session request\n"));
1224 if (!cli_receive_smb(cli))
1225 return False;
1227 if (CVAL(cli->inbuf,0) == 0x84) {
1228 /* C. Hoch 9/14/95 Start */
1229 /* For information, here is the response structure.
1230 * We do the byte-twiddling to for portability.
1231 struct RetargetResponse{
1232 unsigned char type;
1233 unsigned char flags;
1234 int16 length;
1235 int32 ip_addr;
1236 int16 port;
1239 int port = (CVAL(cli->inbuf,8)<<8)+CVAL(cli->inbuf,9);
1240 /* SESSION RETARGET */
1241 putip((char *)&cli->dest_ip,cli->inbuf+4);
1243 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ip, port, LONG_CONNECT_TIMEOUT);
1244 if (cli->fd == -1)
1245 return False;
1247 DEBUG(3,("Retargeted\n"));
1249 set_socket_options(cli->fd,user_socket_options);
1251 /* Try again */
1253 static int depth;
1254 BOOL ret;
1255 if (depth > 4) {
1256 DEBUG(0,("Retarget recursion - failing\n"));
1257 return False;
1259 depth++;
1260 ret = cli_session_request(cli, calling, called);
1261 depth--;
1262 return ret;
1264 } /* C. Hoch 9/14/95 End */
1266 if (CVAL(cli->inbuf,0) != 0x82) {
1267 /* This is the wrong place to put the error... JRA. */
1268 cli->rap_error = CVAL(cli->inbuf,4);
1269 return False;
1271 return(True);
1274 /****************************************************************************
1275 Open the client sockets.
1276 ****************************************************************************/
1278 BOOL cli_connect(struct cli_state *cli, const char *host, struct in_addr *ip)
1280 extern pstring user_socket_options;
1281 int name_type = 0x20;
1282 char *p;
1284 /* reasonable default hostname */
1285 if (!host) host = "*SMBSERVER";
1287 fstrcpy(cli->desthost, host);
1289 /* allow hostnames of the form NAME#xx and do a netbios lookup */
1290 if ((p = strchr(cli->desthost, '#'))) {
1291 name_type = strtol(p+1, NULL, 16);
1292 *p = 0;
1295 if (!ip || is_zero_ip(*ip)) {
1296 if (!resolve_name(cli->desthost, &cli->dest_ip, name_type)) {
1297 return False;
1299 if (ip) *ip = cli->dest_ip;
1300 } else {
1301 cli->dest_ip = *ip;
1304 if (getenv("LIBSMB_PROG")) {
1305 cli->fd = sock_exec(getenv("LIBSMB_PROG"));
1306 } else {
1307 /* try 445 first, then 139 */
1308 int port = cli->port?cli->port:445;
1309 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ip,
1310 port, cli->timeout);
1311 if (cli->fd == -1 && cli->port == 0) {
1312 port = 139;
1313 cli->fd = open_socket_out(SOCK_STREAM, &cli->dest_ip,
1314 port, cli->timeout);
1316 if (cli->fd != -1)
1317 cli->port = port;
1319 if (cli->fd == -1) {
1320 DEBUG(1,("Error connecting to %s (%s)\n",
1321 ip?inet_ntoa(*ip):host,strerror(errno)));
1322 return False;
1325 set_socket_options(cli->fd,user_socket_options);
1327 return True;
1330 /****************************************************************************
1331 Initialise client credentials for authenticated pipe access.
1332 ****************************************************************************/
1334 void init_creds(struct ntuser_creds *creds, const char* username,
1335 const char* domain, const char* password)
1337 ZERO_STRUCTP(creds);
1339 pwd_set_cleartext(&creds->pwd, password);
1341 fstrcpy(creds->user_name, username);
1342 fstrcpy(creds->domain, domain);
1344 if (!*username) {
1345 creds->pwd.null_pwd = True;
1350 establishes a connection to after the negprot.
1351 @param output_cli A fully initialised cli structure, non-null only on success
1352 @param dest_host The netbios name of the remote host
1353 @param dest_ip (optional) The the destination IP, NULL for name based lookup
1354 @param port (optional) The destination port (0 for default)
1355 @param retry BOOL. Did this connection fail with a retryable error ?
1358 NTSTATUS cli_start_connection(struct cli_state **output_cli,
1359 const char *my_name,
1360 const char *dest_host,
1361 struct in_addr *dest_ip, int port,
1362 int signing_state, int flags,
1363 BOOL *retry)
1365 NTSTATUS nt_status;
1366 struct nmb_name calling;
1367 struct nmb_name called;
1368 struct cli_state *cli;
1369 struct in_addr ip;
1371 if (retry)
1372 *retry = False;
1374 if (!my_name)
1375 my_name = global_myname();
1377 if (!(cli = cli_initialise(NULL)))
1378 return NT_STATUS_NO_MEMORY;
1380 make_nmb_name(&calling, my_name, 0x0);
1381 make_nmb_name(&called , dest_host, 0x20);
1383 if (cli_set_port(cli, port) != port) {
1384 cli_shutdown(cli);
1385 return NT_STATUS_UNSUCCESSFUL;
1388 cli_set_timeout(cli, 10000); /* 10 seconds. */
1390 if (dest_ip)
1391 ip = *dest_ip;
1392 else
1393 ZERO_STRUCT(ip);
1395 again:
1397 DEBUG(3,("Connecting to host=%s\n", dest_host));
1399 if (!cli_connect(cli, dest_host, &ip)) {
1400 DEBUG(1,("cli_full_connection: failed to connect to %s (%s)\n",
1401 nmb_namestr(&called), inet_ntoa(ip)));
1402 cli_shutdown(cli);
1403 return NT_STATUS_UNSUCCESSFUL;
1406 if (retry)
1407 *retry = True;
1409 if (!cli_session_request(cli, &calling, &called)) {
1410 char *p;
1411 DEBUG(1,("session request to %s failed (%s)\n",
1412 called.name, cli_errstr(cli)));
1413 if ((p=strchr(called.name, '.')) && !is_ipaddress(called.name)) {
1414 *p = 0;
1415 goto again;
1417 if (strcmp(called.name, "*SMBSERVER")) {
1418 make_nmb_name(&called , "*SMBSERVER", 0x20);
1419 goto again;
1421 return NT_STATUS_UNSUCCESSFUL;
1424 cli_setup_signing_state(cli, signing_state);
1426 if (flags & CLI_FULL_CONNECTION_DONT_SPNEGO)
1427 cli->use_spnego = False;
1428 else if (flags & CLI_FULL_CONNECTION_USE_KERBEROS)
1429 cli->use_kerberos = True;
1431 if (!cli_negprot(cli)) {
1432 DEBUG(1,("failed negprot\n"));
1433 nt_status = NT_STATUS_UNSUCCESSFUL;
1434 cli_shutdown(cli);
1435 return nt_status;
1438 *output_cli = cli;
1439 return NT_STATUS_OK;
1444 establishes a connection right up to doing tconX, password specified.
1445 @param output_cli A fully initialised cli structure, non-null only on success
1446 @param dest_host The netbios name of the remote host
1447 @param dest_ip (optional) The the destination IP, NULL for name based lookup
1448 @param port (optional) The destination port (0 for default)
1449 @param service (optional) The share to make the connection to. Should be 'unqualified' in any way.
1450 @param service_type The 'type' of serivice.
1451 @param user Username, unix string
1452 @param domain User's domain
1453 @param password User's password, unencrypted unix string.
1454 @param retry BOOL. Did this connection fail with a retryable error ?
1457 NTSTATUS cli_full_connection(struct cli_state **output_cli,
1458 const char *my_name,
1459 const char *dest_host,
1460 struct in_addr *dest_ip, int port,
1461 const char *service, const char *service_type,
1462 const char *user, const char *domain,
1463 const char *password, int flags,
1464 int signing_state,
1465 BOOL *retry)
1467 struct ntuser_creds creds;
1468 NTSTATUS nt_status;
1469 struct cli_state *cli = NULL;
1471 nt_status = cli_start_connection(&cli, my_name, dest_host,
1472 dest_ip, port, signing_state, flags, retry);
1474 if (!NT_STATUS_IS_OK(nt_status)) {
1475 return nt_status;
1478 if (!cli_session_setup(cli, user, password, strlen(password)+1,
1479 password, strlen(password)+1,
1480 domain)) {
1481 if ((flags & CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK)
1482 && cli_session_setup(cli, "", "", 0, "", 0, domain)) {
1483 } else {
1484 nt_status = cli_nt_error(cli);
1485 DEBUG(1,("failed session setup with %s\n", nt_errstr(nt_status)));
1486 cli_shutdown(cli);
1487 if (NT_STATUS_IS_OK(nt_status))
1488 nt_status = NT_STATUS_UNSUCCESSFUL;
1489 return nt_status;
1493 if (service) {
1494 if (!cli_send_tconX(cli, service, service_type,
1495 password, strlen(password)+1)) {
1496 nt_status = cli_nt_error(cli);
1497 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(nt_status)));
1498 cli_shutdown(cli);
1499 if (NT_STATUS_IS_OK(nt_status)) {
1500 nt_status = NT_STATUS_UNSUCCESSFUL;
1502 return nt_status;
1506 init_creds(&creds, user, domain, password);
1507 cli_init_creds(cli, &creds);
1509 *output_cli = cli;
1510 return NT_STATUS_OK;
1513 /****************************************************************************
1514 Attempt a NetBIOS session request, falling back to *SMBSERVER if needed.
1515 ****************************************************************************/
1517 BOOL attempt_netbios_session_request(struct cli_state *cli, const char *srchost, const char *desthost,
1518 struct in_addr *pdest_ip)
1520 struct nmb_name calling, called;
1522 make_nmb_name(&calling, srchost, 0x0);
1525 * If the called name is an IP address
1526 * then use *SMBSERVER immediately.
1529 if(is_ipaddress(desthost))
1530 make_nmb_name(&called, "*SMBSERVER", 0x20);
1531 else
1532 make_nmb_name(&called, desthost, 0x20);
1534 if (!cli_session_request(cli, &calling, &called)) {
1535 struct nmb_name smbservername;
1537 make_nmb_name(&smbservername , "*SMBSERVER", 0x20);
1540 * If the name wasn't *SMBSERVER then
1541 * try with *SMBSERVER if the first name fails.
1544 if (nmb_name_equal(&called, &smbservername)) {
1547 * The name used was *SMBSERVER, don't bother with another name.
1550 DEBUG(0,("attempt_netbios_session_request: %s rejected the session for name *SMBSERVER \
1551 with error %s.\n", desthost, cli_errstr(cli) ));
1552 return False;
1556 * We need to close the connection here but can't call cli_shutdown as
1557 * will free an allocated cli struct. cli_close_connection was invented
1558 * for this purpose. JRA. Based on work by "Kim R. Pedersen" <krp@filanet.dk>.
1561 cli_close_connection(cli);
1563 if (!cli_initialise(cli) ||
1564 !cli_connect(cli, desthost, pdest_ip) ||
1565 !cli_session_request(cli, &calling, &smbservername)) {
1566 DEBUG(0,("attempt_netbios_session_request: %s rejected the session for \
1567 name *SMBSERVER with error %s\n", desthost, cli_errstr(cli) ));
1568 return False;
1572 return True;
1579 /****************************************************************************
1580 Send an old style tcon.
1581 ****************************************************************************/
1582 NTSTATUS cli_raw_tcon(struct cli_state *cli,
1583 const char *service, const char *pass, const char *dev,
1584 uint16 *max_xmit, uint16 *tid)
1586 char *p;
1588 if (!lp_client_plaintext_auth() && (*pass)) {
1589 DEBUG(1, ("Server requested plaintext password but 'client use plaintext auth'"
1590 " is disabled\n"));
1591 return NT_STATUS_ACCESS_DENIED;
1594 memset(cli->outbuf,'\0',smb_size);
1595 memset(cli->inbuf,'\0',smb_size);
1597 set_message(cli->outbuf, 0, 0, True);
1598 SCVAL(cli->outbuf,smb_com,SMBtcon);
1599 cli_setup_packet(cli);
1601 p = smb_buf(cli->outbuf);
1602 *p++ = 4; p += clistr_push(cli, p, service, -1, STR_TERMINATE | STR_NOALIGN);
1603 *p++ = 4; p += clistr_push(cli, p, pass, -1, STR_TERMINATE | STR_NOALIGN);
1604 *p++ = 4; p += clistr_push(cli, p, dev, -1, STR_TERMINATE | STR_NOALIGN);
1606 cli_setup_bcc(cli, p);
1608 cli_send_smb(cli);
1609 if (!cli_receive_smb(cli)) {
1610 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
1613 if (cli_is_error(cli)) {
1614 return cli_nt_error(cli);
1617 *max_xmit = SVAL(cli->inbuf, smb_vwv0);
1618 *tid = SVAL(cli->inbuf, smb_vwv1);
1620 return NT_STATUS_OK;
1623 /* Return a cli_state pointing at the IPC$ share for the given server */
1625 struct cli_state *get_ipc_connect(char *server, struct in_addr *server_ip,
1626 struct user_auth_info *user_info)
1628 struct cli_state *cli;
1629 pstring myname;
1630 NTSTATUS nt_status;
1632 get_myname(myname);
1634 nt_status = cli_full_connection(&cli, myname, server, server_ip, 0, "IPC$", "IPC",
1635 user_info->username, lp_workgroup(), user_info->password,
1636 CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK, Undefined, NULL);
1638 if (NT_STATUS_IS_OK(nt_status)) {
1639 return cli;
1640 } else if (is_ipaddress(server)) {
1641 /* windows 9* needs a correct NMB name for connections */
1642 fstring remote_name;
1644 if (name_status_find("*", 0, 0, *server_ip, remote_name)) {
1645 cli = get_ipc_connect(remote_name, server_ip, user_info);
1646 if (cli)
1647 return cli;
1650 return NULL;
1654 * Given the IP address of a master browser on the network, return its
1655 * workgroup and connect to it.
1657 * This function is provided to allow additional processing beyond what
1658 * get_ipc_connect_master_ip_bcast() does, e.g. to retrieve the list of master
1659 * browsers and obtain each master browsers' list of domains (in case the
1660 * first master browser is recently on the network and has not yet
1661 * synchronized with other master browsers and therefore does not yet have the
1662 * entire network browse list)
1665 struct cli_state *get_ipc_connect_master_ip(struct ip_service * mb_ip, pstring workgroup, struct user_auth_info *user_info)
1667 static fstring name;
1668 struct cli_state *cli;
1669 struct in_addr server_ip;
1671 DEBUG(99, ("Looking up name of master browser %s\n",
1672 inet_ntoa(mb_ip->ip)));
1675 * Do a name status query to find out the name of the master browser.
1676 * We use <01><02>__MSBROWSE__<02>#01 if *#00 fails because a domain
1677 * master browser will not respond to a wildcard query (or, at least,
1678 * an NT4 server acting as the domain master browser will not).
1680 * We might be able to use ONLY the query on MSBROWSE, but that's not
1681 * yet been tested with all Windows versions, so until it is, leave
1682 * the original wildcard query as the first choice and fall back to
1683 * MSBROWSE if the wildcard query fails.
1685 if (!name_status_find("*", 0, 0x1d, mb_ip->ip, name) &&
1686 !name_status_find(MSBROWSE, 1, 0x1d, mb_ip->ip, name)) {
1688 DEBUG(99, ("Could not retrieve name status for %s\n",
1689 inet_ntoa(mb_ip->ip)));
1690 return NULL;
1693 if (!find_master_ip(name, &server_ip)) {
1694 DEBUG(99, ("Could not find master ip for %s\n", name));
1695 return NULL;
1698 pstrcpy(workgroup, name);
1700 DEBUG(4, ("found master browser %s, %s\n",
1701 name, inet_ntoa(mb_ip->ip)));
1703 cli = get_ipc_connect(inet_ntoa(server_ip), &server_ip, user_info);
1705 return cli;
1710 * Return the IP address and workgroup of a master browser on the network, and
1711 * connect to it.
1714 struct cli_state *get_ipc_connect_master_ip_bcast(pstring workgroup, struct user_auth_info *user_info)
1716 struct ip_service *ip_list;
1717 struct cli_state *cli;
1718 int i, count;
1720 DEBUG(99, ("Do broadcast lookup for workgroups on local network\n"));
1722 /* Go looking for workgroups by broadcasting on the local network */
1724 if (!name_resolve_bcast(MSBROWSE, 1, &ip_list, &count)) {
1725 DEBUG(99, ("No master browsers responded\n"));
1726 return False;
1729 for (i = 0; i < count; i++) {
1730 DEBUG(99, ("Found master browser %s\n", inet_ntoa(ip_list[i].ip)));
1732 cli = get_ipc_connect_master_ip(&ip_list[i], workgroup, user_info);
1733 if (cli)
1734 return(cli);
1737 return NULL;