open_socket_out is always used with SOCK_STREAM, remove argument "type"
[samba.git] / source3 / libsmb / cliconnect.c
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
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22
23 static const struct {
24         int prot;
25         const char name[24];
26 } prots[10] = {
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 };
38
39 #define STAR_SMBSERVER "*SMBSERVER"
40
41 /**
42  * Set the user session key for a connection
43  * @param cli The cli structure to add it too
44  * @param session_key The session key used.  (A copy of this is taken for the cli struct)
45  *
46  */
47
48 static void cli_set_session_key (struct cli_state *cli, const DATA_BLOB session_key) 
49 {
50         cli->user_session_key = data_blob(session_key.data, session_key.length);
51 }
52
53 /****************************************************************************
54  Do an old lanman2 style session setup.
55 ****************************************************************************/
56
57 static NTSTATUS cli_session_setup_lanman2(struct cli_state *cli,
58                                           const char *user, 
59                                           const char *pass, size_t passlen,
60                                           const char *workgroup)
61 {
62         DATA_BLOB session_key = data_blob_null;
63         DATA_BLOB lm_response = data_blob_null;
64         fstring pword;
65         char *p;
66
67         if (passlen > sizeof(pword)-1) {
68                 return NT_STATUS_INVALID_PARAMETER;
69         }
70
71         /* LANMAN servers predate NT status codes and Unicode and ignore those 
72            smb flags so we must disable the corresponding default capabilities  
73            that would otherwise cause the Unicode and NT Status flags to be
74            set (and even returned by the server) */
75
76         cli->capabilities &= ~(CAP_UNICODE | CAP_STATUS32);
77
78         /* if in share level security then don't send a password now */
79         if (!(cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL))
80                 passlen = 0;
81
82         if (passlen > 0 && (cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen != 24) {
83                 /* Encrypted mode needed, and non encrypted password supplied. */
84                 lm_response = data_blob(NULL, 24);
85                 if (!SMBencrypt(pass, cli->secblob.data,(uchar *)lm_response.data)) {
86                         DEBUG(1, ("Password is > 14 chars in length, and is therefore incompatible with Lanman authentication\n"));
87                         return NT_STATUS_ACCESS_DENIED;
88                 }
89         } else if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && passlen == 24) {
90                 /* Encrypted mode needed, and encrypted password supplied. */
91                 lm_response = data_blob(pass, passlen);
92         } else if (passlen > 0) {
93                 /* Plaintext mode needed, assume plaintext supplied. */
94                 passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
95                 lm_response = data_blob(pass, passlen);
96         }
97
98         /* send a session setup command */
99         memset(cli->outbuf,'\0',smb_size);
100         cli_set_message(cli->outbuf,10, 0, True);
101         SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
102         cli_setup_packet(cli);
103         
104         SCVAL(cli->outbuf,smb_vwv0,0xFF);
105         SSVAL(cli->outbuf,smb_vwv2,cli->max_xmit);
106         SSVAL(cli->outbuf,smb_vwv3,2);
107         SSVAL(cli->outbuf,smb_vwv4,1);
108         SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
109         SSVAL(cli->outbuf,smb_vwv7,lm_response.length);
110
111         p = smb_buf(cli->outbuf);
112         memcpy(p,lm_response.data,lm_response.length);
113         p += lm_response.length;
114         p += clistr_push(cli, p, user, -1, STR_TERMINATE|STR_UPPER);
115         p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE|STR_UPPER);
116         p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
117         p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
118         cli_setup_bcc(cli, p);
119
120         if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
121                 return cli_nt_error(cli);
122         }
123
124         show_msg(cli->inbuf);
125
126         if (cli_is_error(cli)) {
127                 return cli_nt_error(cli);
128         }
129         
130         /* use the returned vuid from now on */
131         cli->vuid = SVAL(cli->inbuf,smb_uid);   
132         fstrcpy(cli->user_name, user);
133
134         if (session_key.data) {
135                 /* Have plaintext orginal */
136                 cli_set_session_key(cli, session_key);
137         }
138
139         return NT_STATUS_OK;
140 }
141
142 /****************************************************************************
143  Work out suitable capabilities to offer the server.
144 ****************************************************************************/
145
146 static uint32 cli_session_setup_capabilities(struct cli_state *cli)
147 {
148         uint32 capabilities = CAP_NT_SMBS;
149
150         if (!cli->force_dos_errors)
151                 capabilities |= CAP_STATUS32;
152
153         if (cli->use_level_II_oplocks)
154                 capabilities |= CAP_LEVEL_II_OPLOCKS;
155
156         capabilities |= (cli->capabilities & (CAP_UNICODE|CAP_LARGE_FILES|CAP_LARGE_READX|CAP_LARGE_WRITEX|CAP_DFS));
157         return capabilities;
158 }
159
160 /****************************************************************************
161  Do a NT1 guest session setup.
162 ****************************************************************************/
163
164 static NTSTATUS cli_session_setup_guest(struct cli_state *cli)
165 {
166         char *p;
167         uint32 capabilities = cli_session_setup_capabilities(cli);
168
169         memset(cli->outbuf, '\0', smb_size);
170         cli_set_message(cli->outbuf,13,0,True);
171         SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
172         cli_setup_packet(cli);
173                         
174         SCVAL(cli->outbuf,smb_vwv0,0xFF);
175         SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
176         SSVAL(cli->outbuf,smb_vwv3,2);
177         SSVAL(cli->outbuf,smb_vwv4,cli->pid);
178         SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
179         SSVAL(cli->outbuf,smb_vwv7,0);
180         SSVAL(cli->outbuf,smb_vwv8,0);
181         SIVAL(cli->outbuf,smb_vwv11,capabilities); 
182         p = smb_buf(cli->outbuf);
183         p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* username */
184         p += clistr_push(cli, p, "", -1, STR_TERMINATE); /* workgroup */
185         p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
186         p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
187         cli_setup_bcc(cli, p);
188
189         if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
190                 return cli_nt_error(cli);
191         }
192         
193         show_msg(cli->inbuf);
194         
195         if (cli_is_error(cli)) {
196                 return cli_nt_error(cli);
197         }
198
199         cli->vuid = SVAL(cli->inbuf,smb_uid);
200
201         p = smb_buf(cli->inbuf);
202         p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
203         p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
204         p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
205
206         if (strstr(cli->server_type, "Samba")) {
207                 cli->is_samba = True;
208         }
209
210         fstrcpy(cli->user_name, "");
211
212         return NT_STATUS_OK;
213 }
214
215 /****************************************************************************
216  Do a NT1 plaintext session setup.
217 ****************************************************************************/
218
219 static NTSTATUS cli_session_setup_plaintext(struct cli_state *cli,
220                                             const char *user, const char *pass,
221                                             const char *workgroup)
222 {
223         uint32 capabilities = cli_session_setup_capabilities(cli);
224         char *p;
225         fstring lanman;
226         
227         fstr_sprintf( lanman, "Samba %s", SAMBA_VERSION_STRING);
228
229         memset(cli->outbuf, '\0', smb_size);
230         cli_set_message(cli->outbuf,13,0,True);
231         SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
232         cli_setup_packet(cli);
233                         
234         SCVAL(cli->outbuf,smb_vwv0,0xFF);
235         SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
236         SSVAL(cli->outbuf,smb_vwv3,2);
237         SSVAL(cli->outbuf,smb_vwv4,cli->pid);
238         SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
239         SSVAL(cli->outbuf,smb_vwv8,0);
240         SIVAL(cli->outbuf,smb_vwv11,capabilities); 
241         p = smb_buf(cli->outbuf);
242         
243         /* check wether to send the ASCII or UNICODE version of the password */
244         
245         if ( (capabilities & CAP_UNICODE) == 0 ) {
246                 p += clistr_push(cli, p, pass, -1, STR_TERMINATE); /* password */
247                 SSVAL(cli->outbuf,smb_vwv7,PTR_DIFF(p, smb_buf(cli->outbuf)));
248         }
249         else {
250                 /* For ucs2 passwords clistr_push calls ucs2_align, which causes
251                  * the space taken by the unicode password to be one byte too
252                  * long (as we're on an odd byte boundary here). Reduce the
253                  * count by 1 to cope with this. Fixes smbclient against NetApp
254                  * servers which can't cope. Fix from
255                  * bryan.kolodziej@allenlund.com in bug #3840.
256                  */
257                 p += clistr_push(cli, p, pass, -1, STR_UNICODE|STR_TERMINATE); /* unicode password */
258                 SSVAL(cli->outbuf,smb_vwv8,PTR_DIFF(p, smb_buf(cli->outbuf))-1);        
259         }
260         
261         p += clistr_push(cli, p, user, -1, STR_TERMINATE); /* username */
262         p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE); /* workgroup */
263         p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
264         p += clistr_push(cli, p, lanman, -1, STR_TERMINATE);
265         cli_setup_bcc(cli, p);
266
267         if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
268                 return cli_nt_error(cli);
269         }
270         
271         show_msg(cli->inbuf);
272         
273         if (cli_is_error(cli)) {
274                 return cli_nt_error(cli);
275         }
276
277         cli->vuid = SVAL(cli->inbuf,smb_uid);
278         p = smb_buf(cli->inbuf);
279         p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
280         p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
281         p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
282         fstrcpy(cli->user_name, user);
283
284         if (strstr(cli->server_type, "Samba")) {
285                 cli->is_samba = True;
286         }
287
288         return NT_STATUS_OK;
289 }
290
291 /****************************************************************************
292    do a NT1 NTLM/LM encrypted session setup - for when extended security
293    is not negotiated.
294    @param cli client state to create do session setup on
295    @param user username
296    @param pass *either* cleartext password (passlen !=24) or LM response.
297    @param ntpass NT response, implies ntpasslen >=24, implies pass is not clear
298    @param workgroup The user's domain.
299 ****************************************************************************/
300
301 static NTSTATUS cli_session_setup_nt1(struct cli_state *cli, const char *user, 
302                                       const char *pass, size_t passlen,
303                                       const char *ntpass, size_t ntpasslen,
304                                       const char *workgroup)
305 {
306         uint32 capabilities = cli_session_setup_capabilities(cli);
307         DATA_BLOB lm_response = data_blob_null;
308         DATA_BLOB nt_response = data_blob_null;
309         DATA_BLOB session_key = data_blob_null;
310         NTSTATUS result;
311         char *p;
312
313         if (passlen == 0) {
314                 /* do nothing - guest login */
315         } else if (passlen != 24) {
316                 if (lp_client_ntlmv2_auth()) {
317                         DATA_BLOB server_chal;
318                         DATA_BLOB names_blob;
319                         server_chal = data_blob(cli->secblob.data, MIN(cli->secblob.length, 8)); 
320
321                         /* note that the 'workgroup' here is a best guess - we don't know
322                            the server's domain at this point.  The 'server name' is also
323                            dodgy... 
324                         */
325                         names_blob = NTLMv2_generate_names_blob(cli->called.name, workgroup);
326
327                         if (!SMBNTLMv2encrypt(user, workgroup, pass, &server_chal, 
328                                               &names_blob,
329                                               &lm_response, &nt_response, &session_key)) {
330                                 data_blob_free(&names_blob);
331                                 data_blob_free(&server_chal);
332                                 return NT_STATUS_ACCESS_DENIED;
333                         }
334                         data_blob_free(&names_blob);
335                         data_blob_free(&server_chal);
336
337                 } else {
338                         uchar nt_hash[16];
339                         E_md4hash(pass, nt_hash);
340
341 #ifdef LANMAN_ONLY
342                         nt_response = data_blob_null;
343 #else
344                         nt_response = data_blob(NULL, 24);
345                         SMBNTencrypt(pass,cli->secblob.data,nt_response.data);
346 #endif
347                         /* non encrypted password supplied. Ignore ntpass. */
348                         if (lp_client_lanman_auth()) {
349                                 lm_response = data_blob(NULL, 24);
350                                 if (!SMBencrypt(pass,cli->secblob.data, lm_response.data)) {
351                                         /* Oops, the LM response is invalid, just put 
352                                            the NT response there instead */
353                                         data_blob_free(&lm_response);
354                                         lm_response = data_blob(nt_response.data, nt_response.length);
355                                 }
356                         } else {
357                                 /* LM disabled, place NT# in LM field instead */
358                                 lm_response = data_blob(nt_response.data, nt_response.length);
359                         }
360
361                         session_key = data_blob(NULL, 16);
362 #ifdef LANMAN_ONLY
363                         E_deshash(pass, session_key.data);
364                         memset(&session_key.data[8], '\0', 8);
365 #else
366                         SMBsesskeygen_ntv1(nt_hash, NULL, session_key.data);
367 #endif
368                 }
369 #ifdef LANMAN_ONLY
370                 cli_simple_set_signing(cli, session_key, lm_response); 
371 #else
372                 cli_simple_set_signing(cli, session_key, nt_response); 
373 #endif
374         } else {
375                 /* pre-encrypted password supplied.  Only used for 
376                    security=server, can't do
377                    signing because we don't have original key */
378
379                 lm_response = data_blob(pass, passlen);
380                 nt_response = data_blob(ntpass, ntpasslen);
381         }
382
383         /* send a session setup command */
384         memset(cli->outbuf,'\0',smb_size);
385
386         cli_set_message(cli->outbuf,13,0,True);
387         SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
388         cli_setup_packet(cli);
389                         
390         SCVAL(cli->outbuf,smb_vwv0,0xFF);
391         SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
392         SSVAL(cli->outbuf,smb_vwv3,2);
393         SSVAL(cli->outbuf,smb_vwv4,cli->pid);
394         SIVAL(cli->outbuf,smb_vwv5,cli->sesskey);
395         SSVAL(cli->outbuf,smb_vwv7,lm_response.length);
396         SSVAL(cli->outbuf,smb_vwv8,nt_response.length);
397         SIVAL(cli->outbuf,smb_vwv11,capabilities); 
398         p = smb_buf(cli->outbuf);
399         if (lm_response.length) {
400                 memcpy(p,lm_response.data, lm_response.length); p += lm_response.length;
401         }
402         if (nt_response.length) {
403                 memcpy(p,nt_response.data, nt_response.length); p += nt_response.length;
404         }
405         p += clistr_push(cli, p, user, -1, STR_TERMINATE);
406
407         /* Upper case here might help some NTLMv2 implementations */
408         p += clistr_push(cli, p, workgroup, -1, STR_TERMINATE|STR_UPPER);
409         p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
410         p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
411         cli_setup_bcc(cli, p);
412
413         if (!cli_send_smb(cli) || !cli_receive_smb(cli)) {
414                 result = cli_nt_error(cli);
415                 goto end;
416         }
417
418         /* show_msg(cli->inbuf); */
419
420         if (cli_is_error(cli)) {
421                 result = cli_nt_error(cli);
422                 goto end;
423         }
424
425         /* use the returned vuid from now on */
426         cli->vuid = SVAL(cli->inbuf,smb_uid);
427         
428         p = smb_buf(cli->inbuf);
429         p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
430         p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), -1, STR_TERMINATE);
431         p += clistr_pull(cli, cli->server_domain, p, sizeof(fstring), -1, STR_TERMINATE);
432
433         if (strstr(cli->server_type, "Samba")) {
434                 cli->is_samba = True;
435         }
436
437         fstrcpy(cli->user_name, user);
438
439         if (session_key.data) {
440                 /* Have plaintext orginal */
441                 cli_set_session_key(cli, session_key);
442         }
443
444         result = NT_STATUS_OK;
445 end:    
446         data_blob_free(&lm_response);
447         data_blob_free(&nt_response);
448         data_blob_free(&session_key);
449         return result;
450 }
451
452 /****************************************************************************
453  Send a extended security session setup blob
454 ****************************************************************************/
455
456 static bool cli_session_setup_blob_send(struct cli_state *cli, DATA_BLOB blob)
457 {
458         uint32 capabilities = cli_session_setup_capabilities(cli);
459         char *p;
460
461         capabilities |= CAP_EXTENDED_SECURITY;
462
463         /* send a session setup command */
464         memset(cli->outbuf,'\0',smb_size);
465
466         cli_set_message(cli->outbuf,12,0,True);
467         SCVAL(cli->outbuf,smb_com,SMBsesssetupX);
468
469         cli_setup_packet(cli);
470
471         SCVAL(cli->outbuf,smb_vwv0,0xFF);
472         SSVAL(cli->outbuf,smb_vwv2,CLI_BUFFER_SIZE);
473         SSVAL(cli->outbuf,smb_vwv3,2);
474         SSVAL(cli->outbuf,smb_vwv4,1);
475         SIVAL(cli->outbuf,smb_vwv5,0);
476         SSVAL(cli->outbuf,smb_vwv7,blob.length);
477         SIVAL(cli->outbuf,smb_vwv10,capabilities); 
478         p = smb_buf(cli->outbuf);
479         memcpy(p, blob.data, blob.length);
480         p += blob.length;
481         p += clistr_push(cli, p, "Unix", -1, STR_TERMINATE);
482         p += clistr_push(cli, p, "Samba", -1, STR_TERMINATE);
483         cli_setup_bcc(cli, p);
484         return cli_send_smb(cli);
485 }
486
487 /****************************************************************************
488  Send a extended security session setup blob, returning a reply blob.
489 ****************************************************************************/
490
491 static DATA_BLOB cli_session_setup_blob_receive(struct cli_state *cli)
492 {
493         DATA_BLOB blob2 = data_blob_null;
494         char *p;
495         size_t len;
496
497         if (!cli_receive_smb(cli))
498                 return blob2;
499
500         show_msg(cli->inbuf);
501
502         if (cli_is_error(cli) && !NT_STATUS_EQUAL(cli_nt_error(cli),
503                                                   NT_STATUS_MORE_PROCESSING_REQUIRED)) {
504                 return blob2;
505         }
506
507         /* use the returned vuid from now on */
508         cli->vuid = SVAL(cli->inbuf,smb_uid);
509
510         p = smb_buf(cli->inbuf);
511
512         blob2 = data_blob(p, SVAL(cli->inbuf, smb_vwv3));
513
514         p += blob2.length;
515         p += clistr_pull(cli, cli->server_os, p, sizeof(fstring), -1, STR_TERMINATE);
516
517         /* w2k with kerberos doesn't properly null terminate this field */
518         len = smb_bufrem(cli->inbuf, p);
519         p += clistr_pull(cli, cli->server_type, p, sizeof(fstring), len, 0);
520
521         return blob2;
522 }
523
524 #ifdef HAVE_KRB5
525 /****************************************************************************
526  Send a extended security session setup blob, returning a reply blob.
527 ****************************************************************************/
528
529 /* The following is calculated from :
530  * (smb_size-4) = 35
531  * (smb_wcnt * 2) = 24 (smb_wcnt == 12 in cli_session_setup_blob_send() )
532  * (strlen("Unix") + 1 + strlen("Samba") + 1) * 2 = 22 (unicode strings at
533  * end of packet.
534  */
535
536 #define BASE_SESSSETUP_BLOB_PACKET_SIZE (35 + 24 + 22)
537
538 static bool cli_session_setup_blob(struct cli_state *cli, DATA_BLOB blob, DATA_BLOB session_key_krb5)
539 {
540         int32 remaining = blob.length;
541         int32 cur = 0;
542         DATA_BLOB send_blob = data_blob_null;
543         int32 max_blob_size = 0;
544         DATA_BLOB receive_blob = data_blob_null;
545
546         if (cli->max_xmit < BASE_SESSSETUP_BLOB_PACKET_SIZE + 1) {
547                 DEBUG(0,("cli_session_setup_blob: cli->max_xmit too small "
548                         "(was %u, need minimum %u)\n",
549                         (unsigned int)cli->max_xmit,
550                         BASE_SESSSETUP_BLOB_PACKET_SIZE));
551                 cli_set_nt_error(cli, NT_STATUS_INVALID_PARAMETER);
552                 return False;
553         }
554
555         max_blob_size = cli->max_xmit - BASE_SESSSETUP_BLOB_PACKET_SIZE;
556
557         while ( remaining > 0) {
558                 if (remaining >= max_blob_size) {
559                         send_blob.length = max_blob_size;
560                         remaining -= max_blob_size;
561                 } else {
562                         DATA_BLOB null_blob = data_blob_null;
563
564                         send_blob.length = remaining; 
565                         remaining = 0;
566
567                         /* This is the last packet in the sequence - turn signing on. */
568                         cli_simple_set_signing(cli, session_key_krb5, null_blob); 
569                 }
570
571                 send_blob.data =  &blob.data[cur];
572                 cur += send_blob.length;
573
574                 DEBUG(10, ("cli_session_setup_blob: Remaining (%u) sending (%u) current (%u)\n", 
575                         (unsigned int)remaining,
576                         (unsigned int)send_blob.length,
577                         (unsigned int)cur ));
578
579                 if (!cli_session_setup_blob_send(cli, send_blob)) {
580                         DEBUG(0, ("cli_session_setup_blob: send failed\n"));
581                         return False;
582                 }
583
584                 receive_blob = cli_session_setup_blob_receive(cli);
585                 data_blob_free(&receive_blob);
586
587                 if (cli_is_error(cli) &&
588                                 !NT_STATUS_EQUAL( cli_get_nt_error(cli), 
589                                         NT_STATUS_MORE_PROCESSING_REQUIRED)) {
590                         DEBUG(0, ("cli_session_setup_blob: receive failed "
591                                   "(%s)\n", nt_errstr(cli_get_nt_error(cli))));
592                         cli->vuid = 0;
593                         return False;
594                 }
595         }
596
597         return True;
598 }
599
600 /****************************************************************************
601  Use in-memory credentials cache
602 ****************************************************************************/
603
604 static void use_in_memory_ccache(void) {
605         setenv(KRB5_ENV_CCNAME, "MEMORY:cliconnect", 1);
606 }
607
608 /****************************************************************************
609  Do a spnego/kerberos encrypted session setup.
610 ****************************************************************************/
611
612 static ADS_STATUS cli_session_setup_kerberos(struct cli_state *cli, const char *principal, const char *workgroup)
613 {
614         DATA_BLOB negTokenTarg;
615         DATA_BLOB session_key_krb5;
616         int rc;
617
618         DEBUG(2,("Doing kerberos session setup\n"));
619
620         /* generate the encapsulated kerberos5 ticket */
621         rc = spnego_gen_negTokenTarg(principal, 0, &negTokenTarg, &session_key_krb5, 0, NULL);
622
623         if (rc) {
624                 DEBUG(1, ("cli_session_setup_kerberos: spnego_gen_negTokenTarg failed: %s\n",
625                         error_message(rc)));
626                 return ADS_ERROR_KRB5(rc);
627         }
628
629 #if 0
630         file_save("negTokenTarg.dat", negTokenTarg.data, negTokenTarg.length);
631 #endif
632
633         if (!cli_session_setup_blob(cli, negTokenTarg, session_key_krb5)) {
634                 data_blob_free(&negTokenTarg);
635                 data_blob_free(&session_key_krb5);
636                 return ADS_ERROR_NT(cli_nt_error(cli));
637         }
638
639         cli_set_session_key(cli, session_key_krb5);
640
641         data_blob_free(&negTokenTarg);
642         data_blob_free(&session_key_krb5);
643
644         if (cli_is_error(cli)) {
645                 if (NT_STATUS_IS_OK(cli_nt_error(cli))) {
646                         return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
647                 }
648         } 
649         return ADS_ERROR_NT(cli_nt_error(cli));
650 }
651 #endif  /* HAVE_KRB5 */
652
653
654 /****************************************************************************
655  Do a spnego/NTLMSSP encrypted session setup.
656 ****************************************************************************/
657
658 static NTSTATUS cli_session_setup_ntlmssp(struct cli_state *cli, const char *user, 
659                                           const char *pass, const char *domain)
660 {
661         struct ntlmssp_state *ntlmssp_state;
662         NTSTATUS nt_status;
663         int turn = 1;
664         DATA_BLOB msg1;
665         DATA_BLOB blob = data_blob_null;
666         DATA_BLOB blob_in = data_blob_null;
667         DATA_BLOB blob_out = data_blob_null;
668
669         cli_temp_set_signing(cli);
670
671         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_client_start(&ntlmssp_state))) {
672                 return nt_status;
673         }
674         ntlmssp_want_feature(ntlmssp_state, NTLMSSP_FEATURE_SESSION_KEY);
675
676         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_username(ntlmssp_state, user))) {
677                 return nt_status;
678         }
679         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_domain(ntlmssp_state, domain))) {
680                 return nt_status;
681         }
682         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_password(ntlmssp_state, pass))) {
683                 return nt_status;
684         }
685
686         do {
687                 nt_status = ntlmssp_update(ntlmssp_state, 
688                                                   blob_in, &blob_out);
689                 data_blob_free(&blob_in);
690                 if (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED) || NT_STATUS_IS_OK(nt_status)) {
691                         if (turn == 1) {
692                                 /* and wrap it in a SPNEGO wrapper */
693                                 msg1 = gen_negTokenInit(OID_NTLMSSP, blob_out);
694                         } else {
695                                 /* wrap it in SPNEGO */
696                                 msg1 = spnego_gen_auth(blob_out);
697                         }
698
699                         /* now send that blob on its way */
700                         if (!cli_session_setup_blob_send(cli, msg1)) {
701                                 DEBUG(3, ("Failed to send NTLMSSP/SPNEGO blob to server!\n"));
702                                 nt_status = NT_STATUS_UNSUCCESSFUL;
703                         } else {
704                                 blob = cli_session_setup_blob_receive(cli);
705
706                                 nt_status = cli_nt_error(cli);
707                                 if (cli_is_error(cli) && NT_STATUS_IS_OK(nt_status)) {
708                                         if (cli->smb_rw_error == SMB_READ_BAD_SIG) {
709                                                 nt_status = NT_STATUS_ACCESS_DENIED;
710                                         } else {
711                                                 nt_status = NT_STATUS_UNSUCCESSFUL;
712                                         }
713                                 }
714                         }
715                         data_blob_free(&msg1);
716                 }
717
718                 if (!blob.length) {
719                         if (NT_STATUS_IS_OK(nt_status)) {
720                                 nt_status = NT_STATUS_UNSUCCESSFUL;
721                         }
722                 } else if ((turn == 1) && 
723                            NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
724                         DATA_BLOB tmp_blob = data_blob_null;
725                         /* the server might give us back two challenges */
726                         if (!spnego_parse_challenge(blob, &blob_in, 
727                                                     &tmp_blob)) {
728                                 DEBUG(3,("Failed to parse challenges\n"));
729                                 nt_status = NT_STATUS_INVALID_PARAMETER;
730                         }
731                         data_blob_free(&tmp_blob);
732                 } else {
733                         if (!spnego_parse_auth_response(blob, nt_status, OID_NTLMSSP, 
734                                                         &blob_in)) {
735                                 DEBUG(3,("Failed to parse auth response\n"));
736                                 if (NT_STATUS_IS_OK(nt_status) 
737                                     || NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) 
738                                         nt_status = NT_STATUS_INVALID_PARAMETER;
739                         }
740                 }
741                 data_blob_free(&blob);
742                 data_blob_free(&blob_out);
743                 turn++;
744         } while (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED));
745
746         data_blob_free(&blob_in);
747
748         if (NT_STATUS_IS_OK(nt_status)) {
749
750                 fstrcpy(cli->server_domain, ntlmssp_state->server_domain);
751                 cli_set_session_key(cli, ntlmssp_state->session_key);
752
753                 if (cli_simple_set_signing(
754                             cli, ntlmssp_state->session_key, data_blob_null)) {
755
756                         /* 'resign' the last message, so we get the right sequence numbers
757                            for checking the first reply from the server */
758                         cli_calculate_sign_mac(cli, cli->outbuf);
759
760                         if (!cli_check_sign_mac(cli, cli->inbuf)) {
761                                 nt_status = NT_STATUS_ACCESS_DENIED;
762                         }
763                 }
764         }
765
766         /* we have a reference conter on ntlmssp_state, if we are signing
767            then the state will be kept by the signing engine */
768
769         ntlmssp_end(&ntlmssp_state);
770
771         if (!NT_STATUS_IS_OK(nt_status)) {
772                 cli->vuid = 0;
773         }
774         return nt_status;
775 }
776
777 /****************************************************************************
778  Do a spnego encrypted session setup.
779
780  user_domain: The shortname of the domain the user/machine is a member of.
781  dest_realm: The realm we're connecting to, if NULL we use our default realm.
782 ****************************************************************************/
783
784 ADS_STATUS cli_session_setup_spnego(struct cli_state *cli, const char *user, 
785                               const char *pass, const char *user_domain,
786                               const char * dest_realm)
787 {
788         char *principal = NULL;
789         char *OIDs[ASN1_MAX_OIDS];
790         int i;
791         DATA_BLOB blob;
792         const char *p = NULL;
793         char *account = NULL;
794
795         DEBUG(3,("Doing spnego session setup (blob length=%lu)\n", (unsigned long)cli->secblob.length));
796
797         /* the server might not even do spnego */
798         if (cli->secblob.length <= 16) {
799                 DEBUG(3,("server didn't supply a full spnego negprot\n"));
800                 goto ntlmssp;
801         }
802
803 #if 0
804         file_save("negprot.dat", cli->secblob.data, cli->secblob.length);
805 #endif
806
807         /* there is 16 bytes of GUID before the real spnego packet starts */
808         blob = data_blob(cli->secblob.data+16, cli->secblob.length-16);
809
810         /* The server sent us the first part of the SPNEGO exchange in the
811          * negprot reply. It is WRONG to depend on the principal sent in the
812          * negprot reply, but right now we do it. If we don't receive one,
813          * we try to best guess, then fall back to NTLM.  */
814         if (!spnego_parse_negTokenInit(blob, OIDs, &principal)) {
815                 data_blob_free(&blob);
816                 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER);
817         }
818         data_blob_free(&blob);
819
820         /* make sure the server understands kerberos */
821         for (i=0;OIDs[i];i++) {
822                 DEBUG(3,("got OID=%s\n", OIDs[i]));
823                 if (strcmp(OIDs[i], OID_KERBEROS5_OLD) == 0 ||
824                     strcmp(OIDs[i], OID_KERBEROS5) == 0) {
825                         cli->got_kerberos_mechanism = True;
826                 }
827                 talloc_free(OIDs[i]);
828         }
829
830         DEBUG(3,("got principal=%s\n", principal ? principal : "<null>"));
831
832         fstrcpy(cli->user_name, user);
833
834 #ifdef HAVE_KRB5
835         /* If password is set we reauthenticate to kerberos server
836          * and do not store results */
837
838         if (cli->got_kerberos_mechanism && cli->use_kerberos) {
839                 ADS_STATUS rc;
840
841                 if (pass && *pass) {
842                         int ret;
843
844                         use_in_memory_ccache();
845                         ret = kerberos_kinit_password(user, pass, 0 /* no time correction for now */, NULL);
846
847                         if (ret){
848                                 TALLOC_FREE(principal);
849                                 DEBUG(0, ("Kinit failed: %s\n", error_message(ret)));
850                                 if (cli->fallback_after_kerberos)
851                                         goto ntlmssp;
852                                 return ADS_ERROR_KRB5(ret);
853                         }
854                 }
855
856                 /* If we get a bad principal, try to guess it if
857                    we have a valid host NetBIOS name.
858                  */
859                 if (strequal(principal, ADS_IGNORE_PRINCIPAL)) {
860                         TALLOC_FREE(principal);
861                 }
862
863                 if (principal == NULL &&
864                         !is_ipaddress(cli->desthost) &&
865                         !strequal(STAR_SMBSERVER,
866                                 cli->desthost)) {
867                         char *realm = NULL;
868                         char *machine = NULL;
869                         char *host = NULL;
870                         DEBUG(3,("cli_session_setup_spnego: got a "
871                                 "bad server principal, trying to guess ...\n"));
872
873                         host = strchr_m(cli->desthost, '.');
874                         if (host) {
875                                 machine = SMB_STRNDUP(cli->desthost,
876                                         host - cli->desthost);
877                         } else {
878                                 machine = SMB_STRDUP(cli->desthost);
879                         }
880                         if (machine == NULL) {
881                                 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
882                         }
883
884                         if (dest_realm) {
885                                 realm = SMB_STRDUP(dest_realm);
886                                 strupper_m(realm);
887                         } else {
888                                 realm = kerberos_get_default_realm_from_ccache();
889                         }
890                         if (realm && *realm) {
891                                 principal = talloc_asprintf(NULL, "%s$@%s",
892                                                         machine, realm);
893                                 if (!principal) {
894                                         SAFE_FREE(machine);
895                                         SAFE_FREE(realm);
896                                         return ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
897                                 }
898                                 DEBUG(3,("cli_session_setup_spnego: guessed "
899                                         "server principal=%s\n",
900                                         principal ? principal : "<null>"));
901                         }
902                         SAFE_FREE(machine);
903                         SAFE_FREE(realm);
904                 }
905
906                 if (principal) {
907                         rc = cli_session_setup_kerberos(cli, principal,
908                                 dest_realm);
909                         if (ADS_ERR_OK(rc) || !cli->fallback_after_kerberos) {
910                                 TALLOC_FREE(principal);
911                                 return rc;
912                         }
913                 }
914         }
915 #endif
916
917         TALLOC_FREE(principal);
918
919 ntlmssp:
920
921         account = talloc_strdup(talloc_tos(), user);
922         if (!account) {
923                 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
924         }
925
926         /* when falling back to ntlmssp while authenticating with a machine
927          * account strip off the realm - gd */
928
929         if ((p = strchr_m(user, '@')) != NULL) {
930                 account[PTR_DIFF(p,user)] = '\0';
931         }
932
933         return ADS_ERROR_NT(cli_session_setup_ntlmssp(cli, account, pass, user_domain));
934 }
935
936 /****************************************************************************
937  Send a session setup. The username and workgroup is in UNIX character
938  format and must be converted to DOS codepage format before sending. If the
939  password is in plaintext, the same should be done.
940 ****************************************************************************/
941
942 NTSTATUS cli_session_setup(struct cli_state *cli,
943                            const char *user,
944                            const char *pass, int passlen,
945                            const char *ntpass, int ntpasslen,
946                            const char *workgroup)
947 {
948         char *p;
949         fstring user2;
950
951         if (user) {
952                 fstrcpy(user2, user);
953         } else {
954                 user2[0] ='\0';
955         }
956
957         if (!workgroup) {
958                 workgroup = "";
959         }
960
961         /* allow for workgroups as part of the username */
962         if ((p=strchr_m(user2,'\\')) || (p=strchr_m(user2,'/')) ||
963             (p=strchr_m(user2,*lp_winbind_separator()))) {
964                 *p = 0;
965                 user = p+1;
966                 workgroup = user2;
967         }
968
969         if (cli->protocol < PROTOCOL_LANMAN1) {
970                 return NT_STATUS_OK;
971         }
972
973         /* now work out what sort of session setup we are going to
974            do. I have split this into separate functions to make the
975            flow a bit easier to understand (tridge) */
976
977         /* if its an older server then we have to use the older request format */
978
979         if (cli->protocol < PROTOCOL_NT1) {
980                 if (!lp_client_lanman_auth() && passlen != 24 && (*pass)) {
981                         DEBUG(1, ("Server requested LM password but 'client lanman auth'"
982                                   " is disabled\n"));
983                         return NT_STATUS_ACCESS_DENIED;
984                 }
985
986                 if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) == 0 &&
987                     !lp_client_plaintext_auth() && (*pass)) {
988                         DEBUG(1, ("Server requested plaintext password but "
989                                   "'client plaintext auth' is disabled\n"));
990                         return NT_STATUS_ACCESS_DENIED;
991                 }
992
993                 return cli_session_setup_lanman2(cli, user, pass, passlen,
994                                                  workgroup);
995         }
996
997         /* if no user is supplied then we have to do an anonymous connection.
998            passwords are ignored */
999
1000         if (!user || !*user)
1001                 return cli_session_setup_guest(cli);
1002
1003         /* if the server is share level then send a plaintext null
1004            password at this point. The password is sent in the tree
1005            connect */
1006
1007         if ((cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) == 0) 
1008                 return cli_session_setup_plaintext(cli, user, "", workgroup);
1009
1010         /* if the server doesn't support encryption then we have to use 
1011            plaintext. The second password is ignored */
1012
1013         if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) == 0) {
1014                 if (!lp_client_plaintext_auth() && (*pass)) {
1015                         DEBUG(1, ("Server requested plaintext password but "
1016                                   "'client plaintext auth' is disabled\n"));
1017                         return NT_STATUS_ACCESS_DENIED;
1018                 }
1019                 return cli_session_setup_plaintext(cli, user, pass, workgroup);
1020         }
1021
1022         /* if the server supports extended security then use SPNEGO */
1023
1024         if (cli->capabilities & CAP_EXTENDED_SECURITY) {
1025                 ADS_STATUS status = cli_session_setup_spnego(cli, user, pass,
1026                                                              workgroup, NULL);
1027                 if (!ADS_ERR_OK(status)) {
1028                         DEBUG(3, ("SPNEGO login failed: %s\n", ads_errstr(status)));
1029                         return ads_ntstatus(status);
1030                 }
1031         } else {
1032                 NTSTATUS status;
1033
1034                 /* otherwise do a NT1 style session setup */
1035                 status = cli_session_setup_nt1(cli, user, pass, passlen,
1036                                                ntpass, ntpasslen, workgroup);
1037                 if (!NT_STATUS_IS_OK(status)) {
1038                         DEBUG(3,("cli_session_setup: NT1 session setup "
1039                                  "failed: %s\n", nt_errstr(status)));
1040                         return status;
1041                 }
1042         }
1043
1044         if (strstr(cli->server_type, "Samba")) {
1045                 cli->is_samba = True;
1046         }
1047
1048         return NT_STATUS_OK;
1049 }
1050
1051 /****************************************************************************
1052  Send a uloggoff.
1053 *****************************************************************************/
1054
1055 bool cli_ulogoff(struct cli_state *cli)
1056 {
1057         memset(cli->outbuf,'\0',smb_size);
1058         cli_set_message(cli->outbuf,2,0,True);
1059         SCVAL(cli->outbuf,smb_com,SMBulogoffX);
1060         cli_setup_packet(cli);
1061         SSVAL(cli->outbuf,smb_vwv0,0xFF);
1062         SSVAL(cli->outbuf,smb_vwv2,0);  /* no additional info */
1063
1064         cli_send_smb(cli);
1065         if (!cli_receive_smb(cli))
1066                 return False;
1067
1068         if (cli_is_error(cli)) {
1069                 return False;
1070         }
1071
1072         cli->cnum = -1;
1073         return True;
1074 }
1075
1076 /****************************************************************************
1077  Send a tconX.
1078 ****************************************************************************/
1079
1080 bool cli_send_tconX(struct cli_state *cli, 
1081                     const char *share, const char *dev, const char *pass, int passlen)
1082 {
1083         fstring fullshare, pword;
1084         char *p;
1085         memset(cli->outbuf,'\0',smb_size);
1086         memset(cli->inbuf,'\0',smb_size);
1087
1088         fstrcpy(cli->share, share);
1089
1090         /* in user level security don't send a password now */
1091         if (cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) {
1092                 passlen = 1;
1093                 pass = "";
1094         } else if (!pass) {
1095                 DEBUG(1, ("Server not using user level security and no password supplied.\n"));
1096                 return False;
1097         }
1098
1099         if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) &&
1100             *pass && passlen != 24) {
1101                 if (!lp_client_lanman_auth()) {
1102                         DEBUG(1, ("Server requested LANMAN password "
1103                                   "(share-level security) but "
1104                                   "'client lanman auth' is disabled\n"));
1105                         return False;
1106                 }
1107
1108                 /*
1109                  * Non-encrypted passwords - convert to DOS codepage before encryption.
1110                  */
1111                 passlen = 24;
1112                 SMBencrypt(pass,cli->secblob.data,(uchar *)pword);
1113         } else {
1114                 if((cli->sec_mode & (NEGOTIATE_SECURITY_USER_LEVEL|NEGOTIATE_SECURITY_CHALLENGE_RESPONSE)) == 0) {
1115                         if (!lp_client_plaintext_auth() && (*pass)) {
1116                                 DEBUG(1, ("Server requested plaintext "
1117                                           "password but 'client plaintext "
1118                                           "auth' is disabled\n"));
1119                                 return False;
1120                         }
1121
1122                         /*
1123                          * Non-encrypted passwords - convert to DOS codepage before using.
1124                          */
1125                         passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE);
1126
1127                 } else {
1128                         if (passlen) {
1129                                 memcpy(pword, pass, passlen);
1130                         }
1131                 }
1132         }
1133
1134         slprintf(fullshare, sizeof(fullshare)-1,
1135                  "\\\\%s\\%s", cli->desthost, share);
1136
1137         cli_set_message(cli->outbuf,4, 0, True);
1138         SCVAL(cli->outbuf,smb_com,SMBtconX);
1139         cli_setup_packet(cli);
1140
1141         SSVAL(cli->outbuf,smb_vwv0,0xFF);
1142         SSVAL(cli->outbuf,smb_vwv2,TCONX_FLAG_EXTENDED_RESPONSE);
1143         SSVAL(cli->outbuf,smb_vwv3,passlen);
1144
1145         p = smb_buf(cli->outbuf);
1146         if (passlen) {
1147                 memcpy(p,pword,passlen);
1148         }
1149         p += passlen;
1150         p += clistr_push(cli, p, fullshare, -1, STR_TERMINATE |STR_UPPER);
1151         p += clistr_push(cli, p, dev, -1, STR_TERMINATE |STR_UPPER | STR_ASCII);
1152
1153         cli_setup_bcc(cli, p);
1154
1155         cli_send_smb(cli);
1156         if (!cli_receive_smb(cli))
1157                 return False;
1158
1159         if (cli_is_error(cli))
1160                 return False;
1161
1162         clistr_pull(cli, cli->dev, smb_buf(cli->inbuf), sizeof(fstring), -1, STR_TERMINATE|STR_ASCII);
1163
1164         if (cli->protocol >= PROTOCOL_NT1 &&
1165             smb_buflen(cli->inbuf) == 3) {
1166                 /* almost certainly win95 - enable bug fixes */
1167                 cli->win95 = True;
1168         }
1169
1170         /* Make sure that we have the optional support 16-bit field.  WCT > 2 */
1171         /* Avoids issues when connecting to Win9x boxes sharing files */
1172
1173         cli->dfsroot = False;
1174         if ( (CVAL(cli->inbuf, smb_wct))>2 && cli->protocol >= PROTOCOL_LANMAN2 )
1175                 cli->dfsroot = (SVAL( cli->inbuf, smb_vwv2 ) & SMB_SHARE_IN_DFS) ? True : False;
1176
1177         cli->cnum = SVAL(cli->inbuf,smb_tid);
1178         return True;
1179 }
1180
1181 /****************************************************************************
1182  Send a tree disconnect.
1183 ****************************************************************************/
1184
1185 bool cli_tdis(struct cli_state *cli)
1186 {
1187         memset(cli->outbuf,'\0',smb_size);
1188         cli_set_message(cli->outbuf,0,0,True);
1189         SCVAL(cli->outbuf,smb_com,SMBtdis);
1190         SSVAL(cli->outbuf,smb_tid,cli->cnum);
1191         cli_setup_packet(cli);
1192
1193         cli_send_smb(cli);
1194         if (!cli_receive_smb(cli))
1195                 return False;
1196
1197         if (cli_is_error(cli)) {
1198                 return False;
1199         }
1200
1201         cli->cnum = -1;
1202         return True;
1203 }
1204
1205 /****************************************************************************
1206  Send a negprot command.
1207 ****************************************************************************/
1208
1209 void cli_negprot_sendsync(struct cli_state *cli)
1210 {
1211         char *p;
1212         int numprots;
1213
1214         if (cli->protocol < PROTOCOL_NT1)
1215                 cli->use_spnego = False;
1216
1217         memset(cli->outbuf,'\0',smb_size);
1218
1219         /* setup the protocol strings */
1220         cli_set_message(cli->outbuf,0,0,True);
1221
1222         p = smb_buf(cli->outbuf);
1223         for (numprots=0; numprots < ARRAY_SIZE(prots); numprots++) {
1224                 if (prots[numprots].prot > cli->protocol) {
1225                         break;
1226                 }
1227                 *p++ = 2;
1228                 p += clistr_push(cli, p, prots[numprots].name, -1, STR_TERMINATE);
1229         }
1230
1231         SCVAL(cli->outbuf,smb_com,SMBnegprot);
1232         cli_setup_bcc(cli, p);
1233         cli_setup_packet(cli);
1234
1235         SCVAL(smb_buf(cli->outbuf),0,2);
1236
1237         cli_send_smb(cli);
1238 }
1239
1240 /****************************************************************************
1241  Send a negprot command.
1242 ****************************************************************************/
1243
1244 struct async_req *cli_negprot_send(TALLOC_CTX *mem_ctx,
1245                                    struct event_context *ev,
1246                                    struct cli_state *cli)
1247 {
1248         struct async_req *result;
1249         uint8_t *bytes = NULL;
1250         int numprots;
1251
1252         if (cli->protocol < PROTOCOL_NT1)
1253                 cli->use_spnego = False;
1254
1255         /* setup the protocol strings */
1256         for (numprots=0; numprots < ARRAY_SIZE(prots); numprots++) {
1257                 uint8_t c = 2;
1258                 if (prots[numprots].prot > cli->protocol) {
1259                         break;
1260                 }
1261                 bytes = (uint8_t *)talloc_append_blob(
1262                         talloc_tos(), bytes, data_blob_const(&c, sizeof(c)));
1263                 if (bytes == NULL) {
1264                         return NULL;
1265                 }
1266                 bytes = smb_bytes_push_str(bytes, false, prots[numprots].name);
1267                 if (bytes == NULL) {
1268                         return NULL;
1269                 }
1270         }
1271
1272         result = cli_request_send(mem_ctx, ev, cli, SMBnegprot, 0, 0, NULL, 0,
1273                                   talloc_get_size(bytes), bytes);
1274         TALLOC_FREE(bytes);
1275         return result;
1276 }
1277
1278 NTSTATUS cli_negprot_recv(struct async_req *req)
1279 {
1280         struct cli_request *cli_req = talloc_get_type_abort(
1281                 req->private_data, struct cli_request);
1282         struct cli_state *cli = cli_req->cli;
1283         uint8_t wct;
1284         uint16_t *vwv;
1285         uint16_t num_bytes;
1286         uint8_t *bytes;
1287         NTSTATUS status;
1288         uint16_t protnum;
1289
1290         if (async_req_is_error(req, &status)) {
1291                 return status;
1292         }
1293
1294         status = cli_pull_reply(req, &wct, &vwv, &num_bytes, &bytes);
1295         if (!NT_STATUS_IS_OK(status)) {
1296                 return status;
1297         }
1298
1299         protnum = SVAL(vwv, 0);
1300
1301         if ((protnum >= ARRAY_SIZE(prots))
1302             || (prots[protnum].prot > cli_req->cli->protocol)) {
1303                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
1304         }
1305
1306         cli->protocol = prots[protnum].prot;
1307
1308         if ((cli->protocol < PROTOCOL_NT1) && cli->sign_info.mandatory_signing) {
1309                 DEBUG(0,("cli_negprot: SMB signing is mandatory and the selected protocol level doesn't support it.\n"));
1310                 return NT_STATUS_ACCESS_DENIED;
1311         }
1312
1313         if (cli->protocol >= PROTOCOL_NT1) {    
1314                 struct timespec ts;
1315                 /* NT protocol */
1316                 cli->sec_mode = CVAL(vwv + 1, 0);
1317                 cli->max_mux = SVAL(vwv + 1, 1);
1318                 cli->max_xmit = IVAL(vwv + 3, 1);
1319                 cli->sesskey = IVAL(vwv + 7, 1);
1320                 cli->serverzone = SVALS(vwv + 15, 1);
1321                 cli->serverzone *= 60;
1322                 /* this time arrives in real GMT */
1323                 ts = interpret_long_date(((char *)(vwv+11))+1);
1324                 cli->servertime = ts.tv_sec;
1325                 cli->secblob = data_blob(bytes, num_bytes);
1326                 cli->capabilities = IVAL(vwv + 9, 1);
1327                 if (cli->capabilities & CAP_RAW_MODE) {
1328                         cli->readbraw_supported = True;
1329                         cli->writebraw_supported = True;      
1330                 }
1331                 /* work out if they sent us a workgroup */
1332                 if (!(cli->capabilities & CAP_EXTENDED_SECURITY) &&
1333                     smb_buflen(cli->inbuf) > 8) {
1334                         clistr_pull(cli, cli->server_domain,
1335                                     bytes+8, sizeof(cli->server_domain),
1336                                     num_bytes-8,
1337                                     STR_UNICODE|STR_NOALIGN);
1338                 }
1339
1340                 /*
1341                  * As signing is slow we only turn it on if either the client or
1342                  * the server require it. JRA.
1343                  */
1344
1345                 if (cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_REQUIRED) {
1346                         /* Fail if server says signing is mandatory and we don't want to support it. */
1347                         if (!cli->sign_info.allow_smb_signing) {
1348                                 DEBUG(0,("cli_negprot: SMB signing is mandatory and we have disabled it.\n"));
1349                                 return NT_STATUS_ACCESS_DENIED;
1350                         }
1351                         cli->sign_info.negotiated_smb_signing = True;
1352                         cli->sign_info.mandatory_signing = True;
1353                 } else if (cli->sign_info.mandatory_signing && cli->sign_info.allow_smb_signing) {
1354                         /* Fail if client says signing is mandatory and the server doesn't support it. */
1355                         if (!(cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED)) {
1356                                 DEBUG(1,("cli_negprot: SMB signing is mandatory and the server doesn't support it.\n"));
1357                                 return NT_STATUS_ACCESS_DENIED;
1358                         }
1359                         cli->sign_info.negotiated_smb_signing = True;
1360                         cli->sign_info.mandatory_signing = True;
1361                 } else if (cli->sec_mode & NEGOTIATE_SECURITY_SIGNATURES_ENABLED) {
1362                         cli->sign_info.negotiated_smb_signing = True;
1363                 }
1364
1365                 if (cli->capabilities & (CAP_LARGE_READX|CAP_LARGE_WRITEX)) {
1366                         SAFE_FREE(cli->outbuf);
1367                         SAFE_FREE(cli->inbuf);
1368                         cli->outbuf = (char *)SMB_MALLOC(CLI_SAMBA_MAX_LARGE_READX_SIZE+LARGE_WRITEX_HDR_SIZE+SAFETY_MARGIN);
1369                         cli->inbuf = (char *)SMB_MALLOC(CLI_SAMBA_MAX_LARGE_READX_SIZE+LARGE_WRITEX_HDR_SIZE+SAFETY_MARGIN);
1370                         cli->bufsize = CLI_SAMBA_MAX_LARGE_READX_SIZE + LARGE_WRITEX_HDR_SIZE;
1371                 }
1372
1373         } else if (cli->protocol >= PROTOCOL_LANMAN1) {
1374                 cli->use_spnego = False;
1375                 cli->sec_mode = SVAL(vwv + 1, 0);
1376                 cli->max_xmit = SVAL(vwv + 2, 0);
1377                 cli->max_mux = SVAL(vwv + 3, 0);
1378                 cli->sesskey = IVAL(vwv + 6, 0);
1379                 cli->serverzone = SVALS(vwv + 10, 0);
1380                 cli->serverzone *= 60;
1381                 /* this time is converted to GMT by make_unix_date */
1382                 cli->servertime = cli_make_unix_date(
1383                         cli, (char *)(vwv + 8));
1384                 cli->readbraw_supported = ((SVAL(vwv + 5, 0) & 0x1) != 0);
1385                 cli->writebraw_supported = ((SVAL(vwv + 5, 0) & 0x2) != 0);
1386                 cli->secblob = data_blob(bytes, num_bytes);
1387         } else {
1388                 /* the old core protocol */
1389                 cli->use_spnego = False;
1390                 cli->sec_mode = 0;
1391                 cli->serverzone = get_time_zone(time(NULL));
1392         }
1393
1394         cli->max_xmit = MIN(cli->max_xmit, CLI_BUFFER_SIZE);
1395
1396         /* a way to force ascii SMB */
1397         if (getenv("CLI_FORCE_ASCII"))
1398                 cli->capabilities &= ~CAP_UNICODE;
1399
1400         return NT_STATUS_OK;
1401 }
1402
1403 NTSTATUS cli_negprot(struct cli_state *cli)
1404 {
1405         TALLOC_CTX *frame = talloc_stackframe();
1406         struct event_context *ev;
1407         struct async_req *req;
1408         NTSTATUS status = NT_STATUS_NO_MEMORY;
1409
1410         if (cli->fd_event != NULL) {
1411                 /*
1412                  * Can't use sync call while an async call is in flight
1413                  */
1414                 cli_set_error(cli, NT_STATUS_INVALID_PARAMETER);
1415                 goto fail;
1416         }
1417
1418         ev = event_context_init(frame);
1419         if (ev == NULL) {
1420                 goto fail;
1421         }
1422
1423         req = cli_negprot_send(frame, ev, cli);
1424         if (req == NULL) {
1425                 goto fail;
1426         }
1427
1428         while (req->state < ASYNC_REQ_DONE) {
1429                 event_loop_once(ev);
1430         }
1431
1432         status = cli_negprot_recv(req);
1433  fail:
1434         TALLOC_FREE(frame);
1435         return status;
1436 }
1437
1438 /****************************************************************************
1439  Send a session request. See rfc1002.txt 4.3 and 4.3.2.
1440 ****************************************************************************/
1441
1442 bool cli_session_request(struct cli_state *cli,
1443                          struct nmb_name *calling, struct nmb_name *called)
1444 {
1445         char *p;
1446         int len = 4;
1447
1448         /* 445 doesn't have session request */
1449         if (cli->port == 445)
1450                 return True;
1451
1452         memcpy(&(cli->calling), calling, sizeof(*calling));
1453         memcpy(&(cli->called ), called , sizeof(*called ));
1454
1455         /* put in the destination name */
1456         p = cli->outbuf+len;
1457         name_mangle(cli->called .name, p, cli->called .name_type);
1458         len += name_len(p);
1459
1460         /* and my name */
1461         p = cli->outbuf+len;
1462         name_mangle(cli->calling.name, p, cli->calling.name_type);
1463         len += name_len(p);
1464
1465         /* send a session request (RFC 1002) */
1466         /* setup the packet length
1467          * Remove four bytes from the length count, since the length
1468          * field in the NBT Session Service header counts the number
1469          * of bytes which follow.  The cli_send_smb() function knows
1470          * about this and accounts for those four bytes.
1471          * CRH.
1472          */
1473         len -= 4;
1474         _smb_setlen(cli->outbuf,len);
1475         SCVAL(cli->outbuf,0,0x81);
1476
1477         cli_send_smb(cli);
1478         DEBUG(5,("Sent session request\n"));
1479
1480         if (!cli_receive_smb(cli))
1481                 return False;
1482
1483         if (CVAL(cli->inbuf,0) == 0x84) {
1484                 /* C. Hoch  9/14/95 Start */
1485                 /* For information, here is the response structure.
1486                  * We do the byte-twiddling to for portability.
1487                 struct RetargetResponse{
1488                 unsigned char type;
1489                 unsigned char flags;
1490                 int16 length;
1491                 int32 ip_addr;
1492                 int16 port;
1493                 };
1494                 */
1495                 uint16_t port = (CVAL(cli->inbuf,8)<<8)+CVAL(cli->inbuf,9);
1496                 struct in_addr dest_ip;
1497
1498                 /* SESSION RETARGET */
1499                 putip((char *)&dest_ip,cli->inbuf+4);
1500                 in_addr_to_sockaddr_storage(&cli->dest_ss, dest_ip);
1501
1502                 cli->fd = open_socket_out(&cli->dest_ss, port,
1503                                           LONG_CONNECT_TIMEOUT);
1504                 if (cli->fd == -1)
1505                         return False;
1506
1507                 DEBUG(3,("Retargeted\n"));
1508
1509                 set_socket_options(cli->fd, lp_socket_options());
1510
1511                 /* Try again */
1512                 {
1513                         static int depth;
1514                         bool ret;
1515                         if (depth > 4) {
1516                                 DEBUG(0,("Retarget recursion - failing\n"));
1517                                 return False;
1518                         }
1519                         depth++;
1520                         ret = cli_session_request(cli, calling, called);
1521                         depth--;
1522                         return ret;
1523                 }
1524         } /* C. Hoch 9/14/95 End */
1525
1526         if (CVAL(cli->inbuf,0) != 0x82) {
1527                 /* This is the wrong place to put the error... JRA. */
1528                 cli->rap_error = CVAL(cli->inbuf,4);
1529                 return False;
1530         }
1531         return(True);
1532 }
1533
1534 /****************************************************************************
1535  Open the client sockets.
1536 ****************************************************************************/
1537
1538 NTSTATUS cli_connect(struct cli_state *cli,
1539                 const char *host,
1540                 struct sockaddr_storage *dest_ss)
1541
1542 {
1543         int name_type = 0x20;
1544         TALLOC_CTX *frame = talloc_stackframe();
1545         unsigned int num_addrs = 0;
1546         unsigned int i = 0;
1547         struct sockaddr_storage *ss_arr = NULL;
1548         char *p = NULL;
1549
1550         /* reasonable default hostname */
1551         if (!host) {
1552                 host = STAR_SMBSERVER;
1553         }
1554
1555         fstrcpy(cli->desthost, host);
1556
1557         /* allow hostnames of the form NAME#xx and do a netbios lookup */
1558         if ((p = strchr(cli->desthost, '#'))) {
1559                 name_type = strtol(p+1, NULL, 16);
1560                 *p = 0;
1561         }
1562
1563         if (!dest_ss || is_zero_addr((struct sockaddr *)dest_ss)) {
1564                 NTSTATUS status =resolve_name_list(frame,
1565                                         cli->desthost,
1566                                         name_type,
1567                                         &ss_arr,
1568                                         &num_addrs);
1569                 if (!NT_STATUS_IS_OK(status)) {
1570                         TALLOC_FREE(frame);
1571                         return NT_STATUS_BAD_NETWORK_NAME;
1572                 }
1573         } else {
1574                 num_addrs = 1;
1575                 ss_arr = TALLOC_P(frame, struct sockaddr_storage);
1576                 if (!ss_arr) {
1577                         TALLOC_FREE(frame);
1578                         return NT_STATUS_NO_MEMORY;
1579                 }
1580                 *ss_arr = *dest_ss;
1581         }
1582
1583         for (i = 0; i < num_addrs; i++) {
1584                 cli->dest_ss = ss_arr[i];
1585                 if (getenv("LIBSMB_PROG")) {
1586                         cli->fd = sock_exec(getenv("LIBSMB_PROG"));
1587                 } else {
1588                         /* try 445 first, then 139 */
1589                         uint16_t port = cli->port?cli->port:445;
1590                         cli->fd = open_socket_out(&cli->dest_ss, port,
1591                                                   cli->timeout);
1592                         if (cli->fd == -1 && cli->port == 0) {
1593                                 port = 139;
1594                                 cli->fd = open_socket_out(&cli->dest_ss,
1595                                                           port, cli->timeout);
1596                         }
1597                         if (cli->fd != -1) {
1598                                 cli->port = port;
1599                         }
1600                 }
1601                 if (cli->fd == -1) {
1602                         char addr[INET6_ADDRSTRLEN];
1603                         print_sockaddr(addr, sizeof(addr), &ss_arr[i]);
1604                         DEBUG(2,("Error connecting to %s (%s)\n",
1605                                  dest_ss?addr:host,strerror(errno)));
1606                 } else {
1607                         /* Exit from loop on first connection. */
1608                         break;
1609                 }
1610         }
1611
1612         if (cli->fd == -1) {
1613                 TALLOC_FREE(frame);
1614                 return map_nt_error_from_unix(errno);
1615         }
1616
1617         if (dest_ss) {
1618                 *dest_ss = cli->dest_ss;
1619         }
1620
1621         set_socket_options(cli->fd, lp_socket_options());
1622
1623         TALLOC_FREE(frame);
1624         return NT_STATUS_OK;
1625 }
1626
1627 /**
1628    establishes a connection to after the negprot. 
1629    @param output_cli A fully initialised cli structure, non-null only on success
1630    @param dest_host The netbios name of the remote host
1631    @param dest_ss (optional) The the destination IP, NULL for name based lookup
1632    @param port (optional) The destination port (0 for default)
1633    @param retry bool. Did this connection fail with a retryable error ?
1634
1635 */
1636 NTSTATUS cli_start_connection(struct cli_state **output_cli, 
1637                               const char *my_name, 
1638                               const char *dest_host, 
1639                               struct sockaddr_storage *dest_ss, int port,
1640                               int signing_state, int flags,
1641                               bool *retry) 
1642 {
1643         NTSTATUS nt_status;
1644         struct nmb_name calling;
1645         struct nmb_name called;
1646         struct cli_state *cli;
1647         struct sockaddr_storage ss;
1648
1649         if (retry)
1650                 *retry = False;
1651
1652         if (!my_name) 
1653                 my_name = global_myname();
1654
1655         if (!(cli = cli_initialise())) {
1656                 return NT_STATUS_NO_MEMORY;
1657         }
1658
1659         make_nmb_name(&calling, my_name, 0x0);
1660         make_nmb_name(&called , dest_host, 0x20);
1661
1662         if (cli_set_port(cli, port) != port) {
1663                 cli_shutdown(cli);
1664                 return NT_STATUS_UNSUCCESSFUL;
1665         }
1666
1667         cli_set_timeout(cli, 10000); /* 10 seconds. */
1668
1669         if (dest_ss) {
1670                 ss = *dest_ss;
1671         } else {
1672                 zero_sockaddr(&ss);
1673         }
1674
1675 again:
1676
1677         DEBUG(3,("Connecting to host=%s\n", dest_host));
1678
1679         nt_status = cli_connect(cli, dest_host, &ss);
1680         if (!NT_STATUS_IS_OK(nt_status)) {
1681                 char addr[INET6_ADDRSTRLEN];
1682                 print_sockaddr(addr, sizeof(addr), &ss);
1683                 DEBUG(1,("cli_start_connection: failed to connect to %s (%s). Error %s\n",
1684                          nmb_namestr(&called), addr, nt_errstr(nt_status) ));
1685                 cli_shutdown(cli);
1686                 return nt_status;
1687         }
1688
1689         if (retry)
1690                 *retry = True;
1691
1692         if (!cli_session_request(cli, &calling, &called)) {
1693                 char *p;
1694                 DEBUG(1,("session request to %s failed (%s)\n",
1695                          called.name, cli_errstr(cli)));
1696                 if ((p=strchr(called.name, '.')) && !is_ipaddress(called.name)) {
1697                         *p = 0;
1698                         goto again;
1699                 }
1700                 if (strcmp(called.name, STAR_SMBSERVER)) {
1701                         make_nmb_name(&called , STAR_SMBSERVER, 0x20);
1702                         goto again;
1703                 }
1704                 return NT_STATUS_BAD_NETWORK_NAME;
1705         }
1706
1707         cli_setup_signing_state(cli, signing_state);
1708
1709         if (flags & CLI_FULL_CONNECTION_DONT_SPNEGO)
1710                 cli->use_spnego = False;
1711         else if (flags & CLI_FULL_CONNECTION_USE_KERBEROS)
1712                 cli->use_kerberos = True;
1713
1714         if ((flags & CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS) &&
1715              cli->use_kerberos) {
1716                 cli->fallback_after_kerberos = true;
1717         }
1718
1719         nt_status = cli_negprot(cli);
1720         if (!NT_STATUS_IS_OK(nt_status)) {
1721                 DEBUG(1, ("failed negprot: %s\n", nt_errstr(nt_status)));
1722                 cli_shutdown(cli);
1723                 return nt_status;
1724         }
1725
1726         *output_cli = cli;
1727         return NT_STATUS_OK;
1728 }
1729
1730
1731 /**
1732    establishes a connection right up to doing tconX, password specified.
1733    @param output_cli A fully initialised cli structure, non-null only on success
1734    @param dest_host The netbios name of the remote host
1735    @param dest_ip (optional) The the destination IP, NULL for name based lookup
1736    @param port (optional) The destination port (0 for default)
1737    @param service (optional) The share to make the connection to.  Should be 'unqualified' in any way.
1738    @param service_type The 'type' of serivice. 
1739    @param user Username, unix string
1740    @param domain User's domain
1741    @param password User's password, unencrypted unix string.
1742    @param retry bool. Did this connection fail with a retryable error ?
1743 */
1744
1745 NTSTATUS cli_full_connection(struct cli_state **output_cli, 
1746                              const char *my_name, 
1747                              const char *dest_host, 
1748                              struct sockaddr_storage *dest_ss, int port,
1749                              const char *service, const char *service_type,
1750                              const char *user, const char *domain, 
1751                              const char *password, int flags,
1752                              int signing_state,
1753                              bool *retry) 
1754 {
1755         NTSTATUS nt_status;
1756         struct cli_state *cli = NULL;
1757         int pw_len = password ? strlen(password)+1 : 0;
1758
1759         *output_cli = NULL;
1760
1761         if (password == NULL) {
1762                 password = "";
1763         }
1764
1765         nt_status = cli_start_connection(&cli, my_name, dest_host,
1766                                          dest_ss, port, signing_state,
1767                                          flags, retry);
1768
1769         if (!NT_STATUS_IS_OK(nt_status)) {
1770                 return nt_status;
1771         }
1772
1773         nt_status = cli_session_setup(cli, user, password, pw_len, password,
1774                                       pw_len, domain);
1775         if (!NT_STATUS_IS_OK(nt_status)) {
1776
1777                 if (!(flags & CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK)) {
1778                         DEBUG(1,("failed session setup with %s\n",
1779                                  nt_errstr(nt_status)));
1780                         cli_shutdown(cli);
1781                         return nt_status;
1782                 }
1783
1784                 nt_status = cli_session_setup(cli, "", "", 0, "", 0, domain);
1785                 if (!NT_STATUS_IS_OK(nt_status)) {
1786                         DEBUG(1,("anonymous failed session setup with %s\n",
1787                                  nt_errstr(nt_status)));
1788                         cli_shutdown(cli);
1789                         return nt_status;
1790                 }
1791         }
1792
1793         if (service) {
1794                 if (!cli_send_tconX(cli, service, service_type, password, pw_len)) {
1795                         nt_status = cli_nt_error(cli);
1796                         DEBUG(1,("failed tcon_X with %s\n", nt_errstr(nt_status)));
1797                         cli_shutdown(cli);
1798                         if (NT_STATUS_IS_OK(nt_status)) {
1799                                 nt_status = NT_STATUS_UNSUCCESSFUL;
1800                         }
1801                         return nt_status;
1802                 }
1803         }
1804
1805         cli_init_creds(cli, user, domain, password);
1806
1807         *output_cli = cli;
1808         return NT_STATUS_OK;
1809 }
1810
1811 /****************************************************************************
1812  Attempt a NetBIOS session request, falling back to *SMBSERVER if needed.
1813 ****************************************************************************/
1814
1815 bool attempt_netbios_session_request(struct cli_state **ppcli, const char *srchost, const char *desthost,
1816                                      struct sockaddr_storage *pdest_ss)
1817 {
1818         struct nmb_name calling, called;
1819
1820         make_nmb_name(&calling, srchost, 0x0);
1821
1822         /*
1823          * If the called name is an IP address
1824          * then use *SMBSERVER immediately.
1825          */
1826
1827         if(is_ipaddress(desthost)) {
1828                 make_nmb_name(&called, STAR_SMBSERVER, 0x20);
1829         } else {
1830                 make_nmb_name(&called, desthost, 0x20);
1831         }
1832
1833         if (!cli_session_request(*ppcli, &calling, &called)) {
1834                 NTSTATUS status;
1835                 struct nmb_name smbservername;
1836
1837                 make_nmb_name(&smbservername, STAR_SMBSERVER, 0x20);
1838
1839                 /*
1840                  * If the name wasn't *SMBSERVER then
1841                  * try with *SMBSERVER if the first name fails.
1842                  */
1843
1844                 if (nmb_name_equal(&called, &smbservername)) {
1845
1846                         /*
1847                          * The name used was *SMBSERVER, don't bother with another name.
1848                          */
1849
1850                         DEBUG(0,("attempt_netbios_session_request: %s rejected the session for name *SMBSERVER \
1851 with error %s.\n", desthost, cli_errstr(*ppcli) ));
1852                         return False;
1853                 }
1854
1855                 /* Try again... */
1856                 cli_shutdown(*ppcli);
1857
1858                 *ppcli = cli_initialise();
1859                 if (!*ppcli) {
1860                         /* Out of memory... */
1861                         return False;
1862                 }
1863
1864                 status = cli_connect(*ppcli, desthost, pdest_ss);
1865                 if (!NT_STATUS_IS_OK(status) ||
1866                                 !cli_session_request(*ppcli, &calling, &smbservername)) {
1867                         DEBUG(0,("attempt_netbios_session_request: %s rejected the session for \
1868 name *SMBSERVER with error %s\n", desthost, cli_errstr(*ppcli) ));
1869                         return False;
1870                 }
1871         }
1872
1873         return True;
1874 }
1875
1876 /****************************************************************************
1877  Send an old style tcon.
1878 ****************************************************************************/
1879 NTSTATUS cli_raw_tcon(struct cli_state *cli, 
1880                       const char *service, const char *pass, const char *dev,
1881                       uint16 *max_xmit, uint16 *tid)
1882 {
1883         char *p;
1884
1885         if (!lp_client_plaintext_auth() && (*pass)) {
1886                 DEBUG(1, ("Server requested plaintext password but 'client "
1887                           "plaintext auth' is disabled\n"));
1888                 return NT_STATUS_ACCESS_DENIED;
1889         }
1890
1891         memset(cli->outbuf,'\0',smb_size);
1892         memset(cli->inbuf,'\0',smb_size);
1893
1894         cli_set_message(cli->outbuf, 0, 0, True);
1895         SCVAL(cli->outbuf,smb_com,SMBtcon);
1896         cli_setup_packet(cli);
1897
1898         p = smb_buf(cli->outbuf);
1899         *p++ = 4; p += clistr_push(cli, p, service, -1, STR_TERMINATE | STR_NOALIGN);
1900         *p++ = 4; p += clistr_push(cli, p, pass, -1, STR_TERMINATE | STR_NOALIGN);
1901         *p++ = 4; p += clistr_push(cli, p, dev, -1, STR_TERMINATE | STR_NOALIGN);
1902
1903         cli_setup_bcc(cli, p);
1904
1905         cli_send_smb(cli);
1906         if (!cli_receive_smb(cli)) {
1907                 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
1908         }
1909
1910         if (cli_is_error(cli)) {
1911                 return cli_nt_error(cli);
1912         }
1913
1914         *max_xmit = SVAL(cli->inbuf, smb_vwv0);
1915         *tid = SVAL(cli->inbuf, smb_vwv1);
1916
1917         return NT_STATUS_OK;
1918 }
1919
1920 /* Return a cli_state pointing at the IPC$ share for the given server */
1921
1922 struct cli_state *get_ipc_connect(char *server,
1923                                 struct sockaddr_storage *server_ss,
1924                                 const struct user_auth_info *user_info)
1925 {
1926         struct cli_state *cli;
1927         NTSTATUS nt_status;
1928         uint32_t flags = CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK;
1929
1930         if (user_info->use_kerberos) {
1931                 flags |= CLI_FULL_CONNECTION_USE_KERBEROS;
1932         }
1933
1934         nt_status = cli_full_connection(&cli, NULL, server, server_ss, 0, "IPC$", "IPC", 
1935                                         user_info->username ? user_info->username : "",
1936                                         lp_workgroup(),
1937                                         user_info->password ? user_info->password : "",
1938                                         flags,
1939                                         Undefined, NULL);
1940
1941         if (NT_STATUS_IS_OK(nt_status)) {
1942                 return cli;
1943         } else if (is_ipaddress(server)) {
1944             /* windows 9* needs a correct NMB name for connections */
1945             fstring remote_name;
1946
1947             if (name_status_find("*", 0, 0, server_ss, remote_name)) {
1948                 cli = get_ipc_connect(remote_name, server_ss, user_info);
1949                 if (cli)
1950                     return cli;
1951             }
1952         }
1953         return NULL;
1954 }
1955
1956 /*
1957  * Given the IP address of a master browser on the network, return its
1958  * workgroup and connect to it.
1959  *
1960  * This function is provided to allow additional processing beyond what
1961  * get_ipc_connect_master_ip_bcast() does, e.g. to retrieve the list of master
1962  * browsers and obtain each master browsers' list of domains (in case the
1963  * first master browser is recently on the network and has not yet
1964  * synchronized with other master browsers and therefore does not yet have the
1965  * entire network browse list)
1966  */
1967
1968 struct cli_state *get_ipc_connect_master_ip(TALLOC_CTX *ctx,
1969                                 struct ip_service *mb_ip,
1970                                 const struct user_auth_info *user_info,
1971                                 char **pp_workgroup_out)
1972 {
1973         char addr[INET6_ADDRSTRLEN];
1974         fstring name;
1975         struct cli_state *cli;
1976         struct sockaddr_storage server_ss;
1977
1978         *pp_workgroup_out = NULL;
1979
1980         print_sockaddr(addr, sizeof(addr), &mb_ip->ss);
1981         DEBUG(99, ("Looking up name of master browser %s\n",
1982                    addr));
1983
1984         /*
1985          * Do a name status query to find out the name of the master browser.
1986          * We use <01><02>__MSBROWSE__<02>#01 if *#00 fails because a domain
1987          * master browser will not respond to a wildcard query (or, at least,
1988          * an NT4 server acting as the domain master browser will not).
1989          *
1990          * We might be able to use ONLY the query on MSBROWSE, but that's not
1991          * yet been tested with all Windows versions, so until it is, leave
1992          * the original wildcard query as the first choice and fall back to
1993          * MSBROWSE if the wildcard query fails.
1994          */
1995         if (!name_status_find("*", 0, 0x1d, &mb_ip->ss, name) &&
1996             !name_status_find(MSBROWSE, 1, 0x1d, &mb_ip->ss, name)) {
1997
1998                 DEBUG(99, ("Could not retrieve name status for %s\n",
1999                            addr));
2000                 return NULL;
2001         }
2002
2003         if (!find_master_ip(name, &server_ss)) {
2004                 DEBUG(99, ("Could not find master ip for %s\n", name));
2005                 return NULL;
2006         }
2007
2008         *pp_workgroup_out = talloc_strdup(ctx, name);
2009
2010         DEBUG(4, ("found master browser %s, %s\n", name, addr));
2011
2012         print_sockaddr(addr, sizeof(addr), &server_ss);
2013         cli = get_ipc_connect(addr, &server_ss, user_info);
2014
2015         return cli;
2016 }
2017
2018 /*
2019  * Return the IP address and workgroup of a master browser on the network, and
2020  * connect to it.
2021  */
2022
2023 struct cli_state *get_ipc_connect_master_ip_bcast(TALLOC_CTX *ctx,
2024                                         const struct user_auth_info *user_info,
2025                                         char **pp_workgroup_out)
2026 {
2027         struct ip_service *ip_list;
2028         struct cli_state *cli;
2029         int i, count;
2030
2031         *pp_workgroup_out = NULL;
2032
2033         DEBUG(99, ("Do broadcast lookup for workgroups on local network\n"));
2034
2035         /* Go looking for workgroups by broadcasting on the local network */
2036
2037         if (!NT_STATUS_IS_OK(name_resolve_bcast(MSBROWSE, 1, &ip_list,
2038                                                 &count))) {
2039                 DEBUG(99, ("No master browsers responded\n"));
2040                 return False;
2041         }
2042
2043         for (i = 0; i < count; i++) {
2044                 char addr[INET6_ADDRSTRLEN];
2045                 print_sockaddr(addr, sizeof(addr), &ip_list[i].ss);
2046                 DEBUG(99, ("Found master browser %s\n", addr));
2047
2048                 cli = get_ipc_connect_master_ip(ctx, &ip_list[i],
2049                                 user_info, pp_workgroup_out);
2050                 if (cli)
2051                         return(cli);
2052         }
2053
2054         return NULL;
2055 }