s3: Remove some dead code
[mat/samba.git] / source3 / libsmb / clidfs.c
1 /*
2    Unix SMB/CIFS implementation.
3    client connect/disconnect routines
4    Copyright (C) Andrew Tridgell                  1994-1998
5    Copyright (C) Gerald (Jerry) Carter            2004
6    Copyright (C) Jeremy Allison                   2007-2009
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23
24 /********************************************************************
25  Important point.
26
27  DFS paths are *always* of the form \server\share\<pathname> (the \ characters
28  are not C escaped here).
29
30  - but if we're using POSIX paths then <pathname> may contain
31    '/' separators, not '\\' separators. So cope with '\\' or '/'
32    as a separator when looking at the pathname part.... JRA.
33 ********************************************************************/
34
35 /********************************************************************
36  Ensure a connection is encrypted.
37 ********************************************************************/
38
39 NTSTATUS cli_cm_force_encryption(struct cli_state *c,
40                         const char *username,
41                         const char *password,
42                         const char *domain,
43                         const char *sharename)
44 {
45         NTSTATUS status = cli_force_encryption(c,
46                                         username,
47                                         password,
48                                         domain);
49
50         if (NT_STATUS_EQUAL(status,NT_STATUS_NOT_SUPPORTED)) {
51                 d_printf("Encryption required and "
52                         "server that doesn't support "
53                         "UNIX extensions - failing connect\n");
54         } else if (NT_STATUS_EQUAL(status,NT_STATUS_UNKNOWN_REVISION)) {
55                 d_printf("Encryption required and "
56                         "can't get UNIX CIFS extensions "
57                         "version from server.\n");
58         } else if (NT_STATUS_EQUAL(status,NT_STATUS_UNSUPPORTED_COMPRESSION)) {
59                 d_printf("Encryption required and "
60                         "share %s doesn't support "
61                         "encryption.\n", sharename);
62         } else if (!NT_STATUS_IS_OK(status)) {
63                 d_printf("Encryption required and "
64                         "setup failed with error %s.\n",
65                         nt_errstr(status));
66         }
67
68         return status;
69 }
70
71 /********************************************************************
72  Return a connection to a server.
73 ********************************************************************/
74
75 static struct cli_state *do_connect(TALLOC_CTX *ctx,
76                                         const char *server,
77                                         const char *share,
78                                         const struct user_auth_info *auth_info,
79                                         bool show_sessetup,
80                                         bool force_encrypt,
81                                         int max_protocol,
82                                         int port,
83                                         int name_type)
84 {
85         struct cli_state *c = NULL;
86         struct nmb_name called, calling;
87         const char *called_str;
88         const char *server_n;
89         struct sockaddr_storage ss;
90         char *servicename;
91         char *sharename;
92         char *newserver, *newshare;
93         const char *username;
94         const char *password;
95         NTSTATUS status;
96
97         /* make a copy so we don't modify the global string 'service' */
98         servicename = talloc_strdup(ctx,share);
99         if (!servicename) {
100                 return NULL;
101         }
102         sharename = servicename;
103         if (*sharename == '\\') {
104                 sharename += 2;
105                 called_str = sharename;
106                 if (server == NULL) {
107                         server = sharename;
108                 }
109                 sharename = strchr_m(sharename,'\\');
110                 if (!sharename) {
111                         return NULL;
112                 }
113                 *sharename = 0;
114                 sharename++;
115         } else {
116                 called_str = server;
117         }
118
119         server_n = server;
120
121         zero_sockaddr(&ss);
122
123         make_nmb_name(&calling, global_myname(), 0x0);
124         make_nmb_name(&called , called_str, name_type);
125
126  again:
127         zero_sockaddr(&ss);
128
129         /* have to open a new connection */
130         c = cli_initialise_ex(get_cmdline_auth_info_signing_state(auth_info));
131         if (c == NULL) {
132                 d_printf("Connection to %s failed\n", server_n);
133                 return NULL;
134         }
135         if (port) {
136                 cli_set_port(c, port);
137         }
138
139         status = cli_connect(c, server_n, &ss);
140         if (!NT_STATUS_IS_OK(status)) {
141                 d_printf("Connection to %s failed (Error %s)\n",
142                                 server_n,
143                                 nt_errstr(status));
144                 cli_shutdown(c);
145                 return NULL;
146         }
147
148         if (max_protocol == 0) {
149                 max_protocol = PROTOCOL_NT1;
150         }
151         c->protocol = max_protocol;
152         c->use_kerberos = get_cmdline_auth_info_use_kerberos(auth_info);
153         c->fallback_after_kerberos =
154                 get_cmdline_auth_info_fallback_after_kerberos(auth_info);
155         c->use_ccache = get_cmdline_auth_info_use_ccache(auth_info);
156
157         if (!cli_session_request(c, &calling, &called)) {
158                 char *p;
159                 d_printf("session request to %s failed (%s)\n",
160                          called.name, cli_errstr(c));
161                 cli_shutdown(c);
162                 c = NULL;
163                 if ((p=strchr_m(called.name, '.'))) {
164                         *p = 0;
165                         goto again;
166                 }
167                 if (strcmp(called.name, "*SMBSERVER")) {
168                         make_nmb_name(&called , "*SMBSERVER", 0x20);
169                         goto again;
170                 }
171                 return NULL;
172         }
173
174         DEBUG(4,(" session request ok\n"));
175
176         status = cli_negprot(c);
177
178         if (!NT_STATUS_IS_OK(status)) {
179                 d_printf("protocol negotiation failed: %s\n",
180                          nt_errstr(status));
181                 cli_shutdown(c);
182                 return NULL;
183         }
184
185         username = get_cmdline_auth_info_username(auth_info);
186         password = get_cmdline_auth_info_password(auth_info);
187
188         if (!NT_STATUS_IS_OK(cli_session_setup(c, username,
189                                                password, strlen(password),
190                                                password, strlen(password),
191                                                lp_workgroup()))) {
192                 /* If a password was not supplied then
193                  * try again with a null username. */
194                 if (password[0] || !username[0] ||
195                         get_cmdline_auth_info_use_kerberos(auth_info) ||
196                         !NT_STATUS_IS_OK(cli_session_setup(c, "",
197                                                 "", 0,
198                                                 "", 0,
199                                                lp_workgroup()))) {
200                         d_printf("session setup failed: %s\n", cli_errstr(c));
201                         if (NT_STATUS_V(cli_nt_error(c)) ==
202                             NT_STATUS_V(NT_STATUS_MORE_PROCESSING_REQUIRED))
203                                 d_printf("did you forget to run kinit?\n");
204                         cli_shutdown(c);
205                         return NULL;
206                 }
207                 d_printf("Anonymous login successful\n");
208                 status = cli_init_creds(c, "", lp_workgroup(), "");
209         } else {
210                 status = cli_init_creds(c, username, lp_workgroup(), password);
211         }
212
213         if (!NT_STATUS_IS_OK(status)) {
214                 DEBUG(10,("cli_init_creds() failed: %s\n", nt_errstr(status)));
215                 cli_shutdown(c);
216                 return NULL;
217         }
218
219         if ( show_sessetup ) {
220                 if (*c->server_domain) {
221                         DEBUG(0,("Domain=[%s] OS=[%s] Server=[%s]\n",
222                                 c->server_domain,c->server_os,c->server_type));
223                 } else if (*c->server_os || *c->server_type) {
224                         DEBUG(0,("OS=[%s] Server=[%s]\n",
225                                  c->server_os,c->server_type));
226                 }
227         }
228         DEBUG(4,(" session setup ok\n"));
229
230         /* here's the fun part....to support 'msdfs proxy' shares
231            (on Samba or windows) we have to issues a TRANS_GET_DFS_REFERRAL
232            here before trying to connect to the original share.
233            cli_check_msdfs_proxy() will fail if it is a normal share. */
234
235         if ((c->capabilities & CAP_DFS) &&
236                         cli_check_msdfs_proxy(ctx, c, sharename,
237                                 &newserver, &newshare,
238                                 force_encrypt,
239                                 username,
240                                 password,
241                                 lp_workgroup())) {
242                 cli_shutdown(c);
243                 return do_connect(ctx, newserver,
244                                 newshare, auth_info, false,
245                                 force_encrypt, max_protocol,
246                                 port, name_type);
247         }
248
249         /* must be a normal share */
250
251         status = cli_tcon_andx(c, sharename, "?????",
252                                password, strlen(password)+1);
253         if (!NT_STATUS_IS_OK(status)) {
254                 d_printf("tree connect failed: %s\n", nt_errstr(status));
255                 cli_shutdown(c);
256                 return NULL;
257         }
258
259         if (force_encrypt) {
260                 status = cli_cm_force_encryption(c,
261                                         username,
262                                         password,
263                                         lp_workgroup(),
264                                         sharename);
265                 if (!NT_STATUS_IS_OK(status)) {
266                         cli_shutdown(c);
267                         return NULL;
268                 }
269         }
270
271         DEBUG(4,(" tconx ok\n"));
272         return c;
273 }
274
275 /****************************************************************************
276 ****************************************************************************/
277
278 static void cli_set_mntpoint(struct cli_state *cli, const char *mnt)
279 {
280         char *name = clean_name(NULL, mnt);
281         if (!name) {
282                 return;
283         }
284         TALLOC_FREE(cli->dfs_mountpoint);
285         cli->dfs_mountpoint = talloc_strdup(cli, name);
286         TALLOC_FREE(name);
287 }
288
289 /********************************************************************
290  Add a new connection to the list.
291  referring_cli == NULL means a new initial connection.
292 ********************************************************************/
293
294 static struct cli_state *cli_cm_connect(TALLOC_CTX *ctx,
295                                         struct cli_state *referring_cli,
296                                         const char *server,
297                                         const char *share,
298                                         const struct user_auth_info *auth_info,
299                                         bool show_hdr,
300                                         bool force_encrypt,
301                                         int max_protocol,
302                                         int port,
303                                         int name_type)
304 {
305         struct cli_state *cli;
306
307         cli = do_connect(ctx, server, share,
308                                 auth_info,
309                                 show_hdr, force_encrypt, max_protocol,
310                                 port, name_type);
311
312         if (!cli ) {
313                 return NULL;
314         }
315
316         /* Enter into the list. */
317         if (referring_cli) {
318                 DLIST_ADD_END(referring_cli, cli, struct cli_state *);
319         }
320
321         if (referring_cli && referring_cli->requested_posix_capabilities) {
322                 uint16 major, minor;
323                 uint32 caplow, caphigh;
324                 NTSTATUS status;
325                 status = cli_unix_extensions_version(cli, &major, &minor,
326                                                      &caplow, &caphigh);
327                 if (NT_STATUS_IS_OK(status)) {
328                         cli_set_unix_extensions_capabilities(cli,
329                                         major, minor,
330                                         caplow, caphigh);
331                 }
332         }
333
334         return cli;
335 }
336
337 /********************************************************************
338  Return a connection to a server on a particular share.
339 ********************************************************************/
340
341 static struct cli_state *cli_cm_find(struct cli_state *cli,
342                                 const char *server,
343                                 const char *share)
344 {
345         struct cli_state *p;
346
347         if (cli == NULL) {
348                 return NULL;
349         }
350
351         /* Search to the start of the list. */
352         for (p = cli; p; p = DLIST_PREV(p)) {
353                 if (strequal(server, p->desthost) &&
354                                 strequal(share,p->share)) {
355                         return p;
356                 }
357         }
358
359         /* Search to the end of the list. */
360         for (p = cli->next; p; p = p->next) {
361                 if (strequal(server, p->desthost) &&
362                                 strequal(share,p->share)) {
363                         return p;
364                 }
365         }
366
367         return NULL;
368 }
369
370 /****************************************************************************
371  Open a client connection to a \\server\share.
372 ****************************************************************************/
373
374 struct cli_state *cli_cm_open(TALLOC_CTX *ctx,
375                                 struct cli_state *referring_cli,
376                                 const char *server,
377                                 const char *share,
378                                 const struct user_auth_info *auth_info,
379                                 bool show_hdr,
380                                 bool force_encrypt,
381                                 int max_protocol,
382                                 int port,
383                                 int name_type)
384 {
385         /* Try to reuse an existing connection in this list. */
386         struct cli_state *c = cli_cm_find(referring_cli, server, share);
387
388         if (c) {
389                 return c;
390         }
391
392         if (auth_info == NULL) {
393                 /* Can't do a new connection
394                  * without auth info. */
395                 d_printf("cli_cm_open() Unable to open connection [\\%s\\%s] "
396                         "without auth info\n",
397                         server, share );
398                 return NULL;
399         }
400
401         return cli_cm_connect(ctx,
402                                 referring_cli,
403                                 server,
404                                 share,
405                                 auth_info,
406                                 show_hdr,
407                                 force_encrypt,
408                                 max_protocol,
409                                 port,
410                                 name_type);
411 }
412
413 /****************************************************************************
414 ****************************************************************************/
415
416 void cli_cm_display(const struct cli_state *cli)
417 {
418         int i;
419
420         for (i=0; cli; cli = cli->next,i++ ) {
421                 d_printf("%d:\tserver=%s, share=%s\n",
422                         i, cli->desthost, cli->share );
423         }
424 }
425
426 /****************************************************************************
427 ****************************************************************************/
428
429 /****************************************************************************
430 ****************************************************************************/
431
432 #if 0
433 void cli_cm_set_credentials(struct user_auth_info *auth_info)
434 {
435         SAFE_FREE(cm_creds.username);
436         cm_creds.username = SMB_STRDUP(get_cmdline_auth_info_username(
437                                                auth_info));
438
439         if (get_cmdline_auth_info_got_pass(auth_info)) {
440                 cm_set_password(get_cmdline_auth_info_password(auth_info));
441         }
442
443         cm_creds.use_kerberos = get_cmdline_auth_info_use_kerberos(auth_info);
444         cm_creds.fallback_after_kerberos = false;
445         cm_creds.signing_state = get_cmdline_auth_info_signing_state(auth_info);
446 }
447 #endif
448
449 /**********************************************************************
450  split a dfs path into the server, share name, and extrapath components
451 **********************************************************************/
452
453 static void split_dfs_path(TALLOC_CTX *ctx,
454                                 const char *nodepath,
455                                 char **pp_server,
456                                 char **pp_share,
457                                 char **pp_extrapath)
458 {
459         char *p, *q;
460         char *path;
461
462         *pp_server = NULL;
463         *pp_share = NULL;
464         *pp_extrapath = NULL;
465
466         path = talloc_strdup(ctx, nodepath);
467         if (!path) {
468                 return;
469         }
470
471         if ( path[0] != '\\' ) {
472                 return;
473         }
474
475         p = strchr_m( path + 1, '\\' );
476         if ( !p ) {
477                 return;
478         }
479
480         *p = '\0';
481         p++;
482
483         /* Look for any extra/deep path */
484         q = strchr_m(p, '\\');
485         if (q != NULL) {
486                 *q = '\0';
487                 q++;
488                 *pp_extrapath = talloc_strdup(ctx, q);
489         } else {
490                 *pp_extrapath = talloc_strdup(ctx, "");
491         }
492
493         *pp_share = talloc_strdup(ctx, p);
494         *pp_server = talloc_strdup(ctx, &path[1]);
495 }
496
497 /****************************************************************************
498  Return the original path truncated at the directory component before
499  the first wildcard character. Trust the caller to provide a NULL
500  terminated string
501 ****************************************************************************/
502
503 static char *clean_path(TALLOC_CTX *ctx, const char *path)
504 {
505         size_t len;
506         char *p1, *p2, *p;
507         char *path_out;
508
509         /* No absolute paths. */
510         while (IS_DIRECTORY_SEP(*path)) {
511                 path++;
512         }
513
514         path_out = talloc_strdup(ctx, path);
515         if (!path_out) {
516                 return NULL;
517         }
518
519         p1 = strchr_m(path_out, '*');
520         p2 = strchr_m(path_out, '?');
521
522         if (p1 || p2) {
523                 if (p1 && p2) {
524                         p = MIN(p1,p2);
525                 } else if (!p1) {
526                         p = p2;
527                 } else {
528                         p = p1;
529                 }
530                 *p = '\0';
531
532                 /* Now go back to the start of this component. */
533                 p1 = strrchr_m(path_out, '/');
534                 p2 = strrchr_m(path_out, '\\');
535                 p = MAX(p1,p2);
536                 if (p) {
537                         *p = '\0';
538                 }
539         }
540
541         /* Strip any trailing separator */
542
543         len = strlen(path_out);
544         if ( (len > 0) && IS_DIRECTORY_SEP(path_out[len-1])) {
545                 path_out[len-1] = '\0';
546         }
547
548         return path_out;
549 }
550
551 /****************************************************************************
552 ****************************************************************************/
553
554 static char *cli_dfs_make_full_path(TALLOC_CTX *ctx,
555                                         struct cli_state *cli,
556                                         const char *dir)
557 {
558         char path_sep = '\\';
559
560         /* Ensure the extrapath doesn't start with a separator. */
561         while (IS_DIRECTORY_SEP(*dir)) {
562                 dir++;
563         }
564
565         if (cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
566                 path_sep = '/';
567         }
568         return talloc_asprintf(ctx, "%c%s%c%s%c%s",
569                         path_sep,
570                         cli->desthost,
571                         path_sep,
572                         cli->share,
573                         path_sep,
574                         dir);
575 }
576
577 /********************************************************************
578  check for dfs referral
579 ********************************************************************/
580
581 static bool cli_dfs_check_error( struct cli_state *cli, NTSTATUS status )
582 {
583         uint32 flgs2 = SVAL(cli->inbuf,smb_flg2);
584
585         /* only deal with DS when we negotiated NT_STATUS codes and UNICODE */
586
587         if (!((flgs2&FLAGS2_32_BIT_ERROR_CODES) &&
588                                 (flgs2&FLAGS2_UNICODE_STRINGS)))
589                 return false;
590
591         if (NT_STATUS_EQUAL(status, NT_STATUS(IVAL(cli->inbuf,smb_rcls))))
592                 return true;
593
594         return false;
595 }
596
597 /********************************************************************
598  Get the dfs referral link.
599 ********************************************************************/
600
601 bool cli_dfs_get_referral(TALLOC_CTX *ctx,
602                         struct cli_state *cli,
603                         const char *path,
604                         struct client_dfs_referral **refs,
605                         size_t *num_refs,
606                         size_t *consumed)
607 {
608         unsigned int data_len = 0;
609         unsigned int param_len = 0;
610         uint16 setup = TRANSACT2_GET_DFS_REFERRAL;
611         char *param = NULL;
612         char *rparam=NULL, *rdata=NULL;
613         char *p;
614         char *endp;
615         size_t pathlen = 2*(strlen(path)+1);
616         smb_ucs2_t *path_ucs;
617         char *consumed_path = NULL;
618         uint16_t consumed_ucs;
619         uint16 num_referrals;
620         struct client_dfs_referral *referrals = NULL;
621         bool ret = false;
622
623         *num_refs = 0;
624         *refs = NULL;
625
626         param = SMB_MALLOC_ARRAY(char, 2+pathlen+2);
627         if (!param) {
628                 goto out;
629         }
630         SSVAL(param, 0, 0x03);  /* max referral level */
631         p = &param[2];
632
633         path_ucs = (smb_ucs2_t *)p;
634         p += clistr_push(cli, p, path, pathlen, STR_TERMINATE);
635         param_len = PTR_DIFF(p, param);
636
637         if (!cli_send_trans(cli, SMBtrans2,
638                         NULL,                        /* name */
639                         -1, 0,                          /* fid, flags */
640                         &setup, 1, 0,                   /* setup, length, max */
641                         param, param_len, 2,            /* param, length, max */
642                         NULL, 0, cli->max_xmit /* data, length, max */
643                         )) {
644                 goto out;
645         }
646
647         if (!cli_receive_trans(cli, SMBtrans2,
648                 &rparam, &param_len,
649                 &rdata, &data_len)) {
650                 goto out;
651         }
652
653         if (data_len < 4) {
654                 goto out;
655         }
656
657         endp = rdata + data_len;
658
659         consumed_ucs  = SVAL(rdata, 0);
660         num_referrals = SVAL(rdata, 2);
661
662         /* consumed_ucs is the number of bytes
663          * of the UCS2 path consumed not counting any
664          * terminating null. We need to convert
665          * back to unix charset and count again
666          * to get the number of bytes consumed from
667          * the incoming path. */
668
669         if (pull_string_talloc(talloc_tos(),
670                         NULL,
671                         0,
672                         &consumed_path,
673                         path_ucs,
674                         consumed_ucs,
675                         STR_UNICODE) == 0) {
676                 goto out;
677         }
678         if (consumed_path == NULL) {
679                 goto out;
680         }
681         *consumed = strlen(consumed_path);
682
683         if (num_referrals != 0) {
684                 uint16 ref_version;
685                 uint16 ref_size;
686                 int i;
687                 uint16 node_offset;
688
689                 referrals = talloc_array(ctx, struct client_dfs_referral,
690                                          num_referrals);
691
692                 if (!referrals) {
693                         goto out;
694                 }
695                 /* start at the referrals array */
696
697                 p = rdata+8;
698                 for (i=0; i<num_referrals && p < endp; i++) {
699                         if (p + 18 > endp) {
700                                 goto out;
701                         }
702                         ref_version = SVAL(p, 0);
703                         ref_size    = SVAL(p, 2);
704                         node_offset = SVAL(p, 16);
705
706                         if (ref_version != 3) {
707                                 p += ref_size;
708                                 continue;
709                         }
710
711                         referrals[i].proximity = SVAL(p, 8);
712                         referrals[i].ttl       = SVAL(p, 10);
713
714                         if (p + node_offset > endp) {
715                                 goto out;
716                         }
717                         clistr_pull_talloc(ctx, cli->inbuf,
718                                            SVAL(cli->inbuf, smb_flg2),
719                                            &referrals[i].dfspath,
720                                            p+node_offset, -1,
721                                            STR_TERMINATE|STR_UNICODE);
722
723                         if (!referrals[i].dfspath) {
724                                 goto out;
725                         }
726                         p += ref_size;
727                 }
728                 if (i < num_referrals) {
729                         goto out;
730                 }
731         }
732
733         ret = true;
734
735         *num_refs = num_referrals;
736         *refs = referrals;
737
738   out:
739
740         TALLOC_FREE(consumed_path);
741         SAFE_FREE(param);
742         SAFE_FREE(rdata);
743         SAFE_FREE(rparam);
744         return ret;
745 }
746
747 /********************************************************************
748 ********************************************************************/
749
750 bool cli_resolve_path(TALLOC_CTX *ctx,
751                         const char *mountpt,
752                         const struct user_auth_info *dfs_auth_info,
753                         struct cli_state *rootcli,
754                         const char *path,
755                         struct cli_state **targetcli,
756                         char **pp_targetpath)
757 {
758         struct client_dfs_referral *refs = NULL;
759         size_t num_refs = 0;
760         size_t consumed = 0;
761         struct cli_state *cli_ipc = NULL;
762         char *dfs_path = NULL;
763         char *cleanpath = NULL;
764         char *extrapath = NULL;
765         int pathlen;
766         char *server = NULL;
767         char *share = NULL;
768         struct cli_state *newcli = NULL;
769         char *newpath = NULL;
770         char *newmount = NULL;
771         char *ppath = NULL;
772         SMB_STRUCT_STAT sbuf;
773         uint32 attributes;
774         NTSTATUS status;
775
776         if ( !rootcli || !path || !targetcli ) {
777                 return false;
778         }
779
780         /* Don't do anything if this is not a DFS root. */
781
782         if ( !rootcli->dfsroot) {
783                 *targetcli = rootcli;
784                 *pp_targetpath = talloc_strdup(ctx, path);
785                 if (!*pp_targetpath) {
786                         return false;
787                 }
788                 return true;
789         }
790
791         *targetcli = NULL;
792
793         /* Send a trans2_query_path_info to check for a referral. */
794
795         cleanpath = clean_path(ctx, path);
796         if (!cleanpath) {
797                 return false;
798         }
799
800         dfs_path = cli_dfs_make_full_path(ctx, rootcli, cleanpath);
801         if (!dfs_path) {
802                 return false;
803         }
804
805         status = cli_qpathinfo_basic( rootcli, dfs_path, &sbuf, &attributes);
806         if (NT_STATUS_IS_OK(status)) {
807                 /* This is an ordinary path, just return it. */
808                 *targetcli = rootcli;
809                 *pp_targetpath = talloc_strdup(ctx, path);
810                 if (!*pp_targetpath) {
811                         return false;
812                 }
813                 goto done;
814         }
815
816         /* Special case where client asked for a path that does not exist */
817
818         if (cli_dfs_check_error(rootcli, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
819                 *targetcli = rootcli;
820                 *pp_targetpath = talloc_strdup(ctx, path);
821                 if (!*pp_targetpath) {
822                         return false;
823                 }
824                 goto done;
825         }
826
827         /* We got an error, check for DFS referral. */
828
829         if (!cli_dfs_check_error(rootcli, NT_STATUS_PATH_NOT_COVERED)) {
830                 return false;
831         }
832
833         /* Check for the referral. */
834
835         if (!(cli_ipc = cli_cm_open(ctx,
836                                 rootcli,
837                                 rootcli->desthost,
838                                 "IPC$",
839                                 dfs_auth_info,
840                                 false,
841                                 (rootcli->trans_enc_state != NULL),
842                                 rootcli->protocol,
843                                 0,
844                                 0x20))) {
845                 return false;
846         }
847
848         if (!cli_dfs_get_referral(ctx, cli_ipc, dfs_path, &refs,
849                         &num_refs, &consumed) || !num_refs) {
850                 return false;
851         }
852
853         /* Just store the first referral for now. */
854
855         if (!refs[0].dfspath) {
856                 return false;
857         }
858         split_dfs_path(ctx, refs[0].dfspath, &server, &share, &extrapath );
859
860         if (!server || !share) {
861                 return false;
862         }
863
864         /* Make sure to recreate the original string including any wildcards. */
865
866         dfs_path = cli_dfs_make_full_path(ctx, rootcli, path);
867         if (!dfs_path) {
868                 return false;
869         }
870         pathlen = strlen(dfs_path);
871         consumed = MIN(pathlen, consumed);
872         *pp_targetpath = talloc_strdup(ctx, &dfs_path[consumed]);
873         if (!*pp_targetpath) {
874                 return false;
875         }
876         dfs_path[consumed] = '\0';
877
878         /*
879          * *pp_targetpath is now the unconsumed part of the path.
880          * dfs_path is now the consumed part of the path
881          * (in \server\share\path format).
882          */
883
884         /* Open the connection to the target server & share */
885         if ((*targetcli = cli_cm_open(ctx, rootcli,
886                                         server,
887                                         share,
888                                         dfs_auth_info,
889                                         false,
890                                         (rootcli->trans_enc_state != NULL),
891                                         rootcli->protocol,
892                                         0,
893                                         0x20)) == NULL) {
894                 d_printf("Unable to follow dfs referral [\\%s\\%s]\n",
895                         server, share );
896                 return false;
897         }
898
899         if (extrapath && strlen(extrapath) > 0) {
900                 *pp_targetpath = talloc_asprintf(ctx,
901                                                 "%s%s",
902                                                 extrapath,
903                                                 *pp_targetpath);
904                 if (!*pp_targetpath) {
905                         return false;
906                 }
907         }
908
909         /* parse out the consumed mount path */
910         /* trim off the \server\share\ */
911
912         ppath = dfs_path;
913
914         if (*ppath != '\\') {
915                 d_printf("cli_resolve_path: "
916                         "dfs_path (%s) not in correct format.\n",
917                         dfs_path );
918                 return false;
919         }
920
921         ppath++; /* Now pointing at start of server name. */
922
923         if ((ppath = strchr_m( dfs_path, '\\' )) == NULL) {
924                 return false;
925         }
926
927         ppath++; /* Now pointing at start of share name. */
928
929         if ((ppath = strchr_m( ppath+1, '\\' )) == NULL) {
930                 return false;
931         }
932
933         ppath++; /* Now pointing at path component. */
934
935         newmount = talloc_asprintf(ctx, "%s\\%s", mountpt, ppath );
936         if (!newmount) {
937                 return false;
938         }
939
940         cli_set_mntpoint(*targetcli, newmount);
941
942         /* Check for another dfs referral, note that we are not
943            checking for loops here. */
944
945         if (!strequal(*pp_targetpath, "\\") && !strequal(*pp_targetpath, "/")) {
946                 if (cli_resolve_path(ctx,
947                                         newmount,
948                                         dfs_auth_info,
949                                         *targetcli,
950                                         *pp_targetpath,
951                                         &newcli,
952                                         &newpath)) {
953                         /*
954                          * When cli_resolve_path returns true here it's always
955                          * returning the complete path in newpath, so we're done
956                          * here.
957                          */
958                         *targetcli = newcli;
959                         *pp_targetpath = newpath;
960                         return true;
961                 }
962         }
963
964   done:
965
966         /* If returning true ensure we return a dfs root full path. */
967         if ((*targetcli)->dfsroot) {
968                 dfs_path = talloc_strdup(ctx, *pp_targetpath);
969                 if (!dfs_path) {
970                         return false;
971                 }
972                 *pp_targetpath = cli_dfs_make_full_path(ctx, *targetcli, dfs_path);
973         }
974
975         return true;
976 }
977
978 /********************************************************************
979 ********************************************************************/
980
981 bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
982                                 struct cli_state *cli,
983                                 const char *sharename,
984                                 char **pp_newserver,
985                                 char **pp_newshare,
986                                 bool force_encrypt,
987                                 const char *username,
988                                 const char *password,
989                                 const char *domain)
990 {
991         struct client_dfs_referral *refs = NULL;
992         size_t num_refs = 0;
993         size_t consumed = 0;
994         char *fullpath = NULL;
995         bool res;
996         uint16 cnum;
997         char *newextrapath = NULL;
998         NTSTATUS status;
999
1000         if (!cli || !sharename) {
1001                 return false;
1002         }
1003
1004         cnum = cli->cnum;
1005
1006         /* special case.  never check for a referral on the IPC$ share */
1007
1008         if (strequal(sharename, "IPC$")) {
1009                 return false;
1010         }
1011
1012         /* send a trans2_query_path_info to check for a referral */
1013
1014         fullpath = talloc_asprintf(ctx, "\\%s\\%s", cli->desthost, sharename );
1015         if (!fullpath) {
1016                 return false;
1017         }
1018
1019         /* check for the referral */
1020
1021         if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, "IPC$", "IPC", NULL, 0))) {
1022                 return false;
1023         }
1024
1025         if (force_encrypt) {
1026                 status = cli_cm_force_encryption(cli,
1027                                         username,
1028                                         password,
1029                                         lp_workgroup(),
1030                                         "IPC$");
1031                 if (!NT_STATUS_IS_OK(status)) {
1032                         return false;
1033                 }
1034         }
1035
1036         res = cli_dfs_get_referral(ctx, cli, fullpath, &refs, &num_refs, &consumed);
1037
1038         status = cli_tdis(cli);
1039         if (!NT_STATUS_IS_OK(status)) {
1040                 return false;
1041         }
1042
1043         cli->cnum = cnum;
1044
1045         if (!res || !num_refs) {
1046                 return false;
1047         }
1048
1049         if (!refs[0].dfspath) {
1050                 return false;
1051         }
1052
1053         split_dfs_path(ctx, refs[0].dfspath, pp_newserver,
1054                         pp_newshare, &newextrapath );
1055
1056         if ((*pp_newserver == NULL) || (*pp_newshare == NULL)) {
1057                 return false;
1058         }
1059
1060         /* check that this is not a self-referral */
1061
1062         if (strequal(cli->desthost, *pp_newserver) &&
1063                         strequal(sharename, *pp_newshare)) {
1064                 return false;
1065         }
1066
1067         return true;
1068 }