libsmb: Make cli_ntcreate cancellable
[Samba.git] / source3 / libsmb / clidfs.c
blob80fba23f67bb376c147a52055d2b7dfe9454541e
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
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.
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.
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/>.
22 #include "includes.h"
23 #include "libsmb/libsmb.h"
24 #include "libsmb/clirap.h"
25 #include "msdfs.h"
26 #include "trans2.h"
27 #include "libsmb/nmblib.h"
28 #include "../libcli/smb/smbXcli_base.h"
30 /********************************************************************
31 Important point.
33 DFS paths are *always* of the form \server\share\<pathname> (the \ characters
34 are not C escaped here).
36 - but if we're using POSIX paths then <pathname> may contain
37 '/' separators, not '\\' separators. So cope with '\\' or '/'
38 as a separator when looking at the pathname part.... JRA.
39 ********************************************************************/
41 /********************************************************************
42 Ensure a connection is encrypted.
43 ********************************************************************/
45 NTSTATUS cli_cm_force_encryption(struct cli_state *c,
46 const char *username,
47 const char *password,
48 const char *domain,
49 const char *sharename)
51 NTSTATUS status;
53 if (smbXcli_conn_protocol(c->conn) >= PROTOCOL_SMB2_02) {
54 status = smb2cli_session_encryption_on(c->smb2.session);
55 if (NT_STATUS_EQUAL(status,NT_STATUS_NOT_SUPPORTED)) {
56 d_printf("Encryption required and "
57 "server doesn't support "
58 "SMB3 encryption - failing connect\n");
59 } else if (!NT_STATUS_IS_OK(status)) {
60 d_printf("Encryption required and "
61 "setup failed with error %s.\n",
62 nt_errstr(status));
64 return status;
67 status = cli_force_encryption(c,
68 username,
69 password,
70 domain);
72 if (NT_STATUS_EQUAL(status,NT_STATUS_NOT_SUPPORTED)) {
73 d_printf("Encryption required and "
74 "server that doesn't support "
75 "UNIX extensions - failing connect\n");
76 } else if (NT_STATUS_EQUAL(status,NT_STATUS_UNKNOWN_REVISION)) {
77 d_printf("Encryption required and "
78 "can't get UNIX CIFS extensions "
79 "version from server.\n");
80 } else if (NT_STATUS_EQUAL(status,NT_STATUS_UNSUPPORTED_COMPRESSION)) {
81 d_printf("Encryption required and "
82 "share %s doesn't support "
83 "encryption.\n", sharename);
84 } else if (!NT_STATUS_IS_OK(status)) {
85 d_printf("Encryption required and "
86 "setup failed with error %s.\n",
87 nt_errstr(status));
90 return status;
93 /********************************************************************
94 Return a connection to a server.
95 ********************************************************************/
97 static NTSTATUS do_connect(TALLOC_CTX *ctx,
98 const char *server,
99 const char *share,
100 const struct user_auth_info *auth_info,
101 bool show_sessetup,
102 bool force_encrypt,
103 int max_protocol,
104 int port,
105 int name_type,
106 struct cli_state **pcli)
108 struct cli_state *c = NULL;
109 char *servicename;
110 char *sharename;
111 char *newserver, *newshare;
112 const char *username;
113 const char *password;
114 NTSTATUS status;
115 int flags = 0;
117 /* make a copy so we don't modify the global string 'service' */
118 servicename = talloc_strdup(ctx,share);
119 if (!servicename) {
120 return NT_STATUS_NO_MEMORY;
122 sharename = servicename;
123 if (*sharename == '\\') {
124 sharename += 2;
125 if (server == NULL) {
126 server = sharename;
128 sharename = strchr_m(sharename,'\\');
129 if (!sharename) {
130 return NT_STATUS_NO_MEMORY;
132 *sharename = 0;
133 sharename++;
135 if (server == NULL) {
136 return NT_STATUS_INVALID_PARAMETER;
139 if (get_cmdline_auth_info_use_kerberos(auth_info)) {
140 flags |= CLI_FULL_CONNECTION_USE_KERBEROS;
142 if (get_cmdline_auth_info_fallback_after_kerberos(auth_info)) {
143 flags |= CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS;
145 if (get_cmdline_auth_info_use_ccache(auth_info)) {
146 flags |= CLI_FULL_CONNECTION_USE_CCACHE;
148 if (get_cmdline_auth_info_use_pw_nt_hash(auth_info)) {
149 flags |= CLI_FULL_CONNECTION_USE_NT_HASH;
152 status = cli_connect_nb(
153 server, NULL, port, name_type, NULL,
154 get_cmdline_auth_info_signing_state(auth_info),
155 flags, &c);
157 if (!NT_STATUS_IS_OK(status)) {
158 d_printf("Connection to %s failed (Error %s)\n",
159 server,
160 nt_errstr(status));
161 return status;
164 if (max_protocol == 0) {
165 max_protocol = PROTOCOL_NT1;
167 DEBUG(4,(" session request ok\n"));
169 status = smbXcli_negprot(c->conn, c->timeout,
170 lp_client_min_protocol(),
171 max_protocol);
173 if (!NT_STATUS_IS_OK(status)) {
174 d_printf("protocol negotiation failed: %s\n",
175 nt_errstr(status));
176 cli_shutdown(c);
177 return status;
180 if (smbXcli_conn_protocol(c->conn) >= PROTOCOL_SMB2_02) {
181 /* Ensure we ask for some initial credits. */
182 smb2cli_conn_set_max_credits(c->conn, DEFAULT_SMB2_MAX_CREDITS);
185 username = get_cmdline_auth_info_username(auth_info);
186 password = get_cmdline_auth_info_password(auth_info);
188 status = cli_session_setup(c, username,
189 password, strlen(password),
190 password, strlen(password),
191 lp_workgroup());
192 if (!NT_STATUS_IS_OK(status)) {
193 /* If a password was not supplied then
194 * try again with a null username. */
195 if (password[0] || !username[0] ||
196 get_cmdline_auth_info_use_kerberos(auth_info) ||
197 !NT_STATUS_IS_OK(status = cli_session_setup(c, "",
198 "", 0,
199 "", 0,
200 lp_workgroup()))) {
201 d_printf("session setup failed: %s\n",
202 nt_errstr(status));
203 if (NT_STATUS_EQUAL(status,
204 NT_STATUS_MORE_PROCESSING_REQUIRED))
205 d_printf("did you forget to run kinit?\n");
206 cli_shutdown(c);
207 return status;
209 d_printf("Anonymous login successful\n");
210 status = cli_init_creds(c, "", lp_workgroup(), "");
211 } else {
212 status = cli_init_creds(c, username, lp_workgroup(), password);
215 if (!NT_STATUS_IS_OK(status)) {
216 DEBUG(10,("cli_init_creds() failed: %s\n", nt_errstr(status)));
217 cli_shutdown(c);
218 return status;
221 if ( show_sessetup ) {
222 if (*c->server_domain) {
223 DEBUG(0,("Domain=[%s] OS=[%s] Server=[%s]\n",
224 c->server_domain,c->server_os,c->server_type));
225 } else if (*c->server_os || *c->server_type) {
226 DEBUG(0,("OS=[%s] Server=[%s]\n",
227 c->server_os,c->server_type));
230 DEBUG(4,(" session setup ok\n"));
232 /* here's the fun part....to support 'msdfs proxy' shares
233 (on Samba or windows) we have to issues a TRANS_GET_DFS_REFERRAL
234 here before trying to connect to the original share.
235 cli_check_msdfs_proxy() will fail if it is a normal share. */
237 if (smbXcli_conn_dfs_supported(c->conn) &&
238 cli_check_msdfs_proxy(ctx, c, sharename,
239 &newserver, &newshare,
240 force_encrypt,
241 username,
242 password,
243 lp_workgroup())) {
244 cli_shutdown(c);
245 return do_connect(ctx, newserver,
246 newshare, auth_info, false,
247 force_encrypt, max_protocol,
248 port, name_type, pcli);
251 /* must be a normal share */
253 status = cli_tree_connect(c, sharename, "?????",
254 password, strlen(password)+1);
255 if (!NT_STATUS_IS_OK(status)) {
256 d_printf("tree connect failed: %s\n", nt_errstr(status));
257 cli_shutdown(c);
258 return status;
261 if (force_encrypt) {
262 status = cli_cm_force_encryption(c,
263 username,
264 password,
265 lp_workgroup(),
266 sharename);
267 if (!NT_STATUS_IS_OK(status)) {
268 cli_shutdown(c);
269 return status;
273 DEBUG(4,(" tconx ok\n"));
274 *pcli = c;
275 return NT_STATUS_OK;
278 /****************************************************************************
279 ****************************************************************************/
281 static void cli_set_mntpoint(struct cli_state *cli, const char *mnt)
283 char *name = clean_name(NULL, mnt);
284 if (!name) {
285 return;
287 TALLOC_FREE(cli->dfs_mountpoint);
288 cli->dfs_mountpoint = talloc_strdup(cli, name);
289 TALLOC_FREE(name);
292 /********************************************************************
293 Add a new connection to the list.
294 referring_cli == NULL means a new initial connection.
295 ********************************************************************/
297 static NTSTATUS cli_cm_connect(TALLOC_CTX *ctx,
298 struct cli_state *referring_cli,
299 const char *server,
300 const char *share,
301 const struct user_auth_info *auth_info,
302 bool show_hdr,
303 bool force_encrypt,
304 int max_protocol,
305 int port,
306 int name_type,
307 struct cli_state **pcli)
309 struct cli_state *cli;
310 NTSTATUS status;
312 status = do_connect(ctx, server, share,
313 auth_info,
314 show_hdr, force_encrypt, max_protocol,
315 port, name_type, &cli);
317 if (!NT_STATUS_IS_OK(status)) {
318 return status;
321 /* Enter into the list. */
322 if (referring_cli) {
323 DLIST_ADD_END(referring_cli, cli, struct cli_state *);
326 if (referring_cli && referring_cli->requested_posix_capabilities) {
327 uint16 major, minor;
328 uint32 caplow, caphigh;
329 status = cli_unix_extensions_version(cli, &major, &minor,
330 &caplow, &caphigh);
331 if (NT_STATUS_IS_OK(status)) {
332 cli_set_unix_extensions_capabilities(cli,
333 major, minor,
334 caplow, caphigh);
338 *pcli = cli;
339 return NT_STATUS_OK;
342 /********************************************************************
343 Return a connection to a server on a particular share.
344 ********************************************************************/
346 static struct cli_state *cli_cm_find(struct cli_state *cli,
347 const char *server,
348 const char *share)
350 struct cli_state *p;
352 if (cli == NULL) {
353 return NULL;
356 /* Search to the start of the list. */
357 for (p = cli; p; p = DLIST_PREV(p)) {
358 const char *remote_name =
359 smbXcli_conn_remote_name(p->conn);
361 if (strequal(server, remote_name) &&
362 strequal(share,p->share)) {
363 return p;
367 /* Search to the end of the list. */
368 for (p = cli->next; p; p = p->next) {
369 const char *remote_name =
370 smbXcli_conn_remote_name(p->conn);
372 if (strequal(server, remote_name) &&
373 strequal(share,p->share)) {
374 return p;
378 return NULL;
381 /****************************************************************************
382 Open a client connection to a \\server\share.
383 ****************************************************************************/
385 NTSTATUS cli_cm_open(TALLOC_CTX *ctx,
386 struct cli_state *referring_cli,
387 const char *server,
388 const char *share,
389 const struct user_auth_info *auth_info,
390 bool show_hdr,
391 bool force_encrypt,
392 int max_protocol,
393 int port,
394 int name_type,
395 struct cli_state **pcli)
397 /* Try to reuse an existing connection in this list. */
398 struct cli_state *c = cli_cm_find(referring_cli, server, share);
399 NTSTATUS status;
401 if (c) {
402 *pcli = c;
403 return NT_STATUS_OK;
406 if (auth_info == NULL) {
407 /* Can't do a new connection
408 * without auth info. */
409 d_printf("cli_cm_open() Unable to open connection [\\%s\\%s] "
410 "without auth info\n",
411 server, share );
412 return NT_STATUS_INVALID_PARAMETER;
415 status = cli_cm_connect(ctx,
416 referring_cli,
417 server,
418 share,
419 auth_info,
420 show_hdr,
421 force_encrypt,
422 max_protocol,
423 port,
424 name_type,
425 &c);
426 if (!NT_STATUS_IS_OK(status)) {
427 return status;
429 *pcli = c;
430 return NT_STATUS_OK;
433 /****************************************************************************
434 ****************************************************************************/
436 void cli_cm_display(struct cli_state *cli)
438 int i;
440 for (i=0; cli; cli = cli->next,i++ ) {
441 d_printf("%d:\tserver=%s, share=%s\n",
442 i, smbXcli_conn_remote_name(cli->conn), cli->share);
446 /****************************************************************************
447 ****************************************************************************/
449 /****************************************************************************
450 ****************************************************************************/
452 #if 0
453 void cli_cm_set_credentials(struct user_auth_info *auth_info)
455 SAFE_FREE(cm_creds.username);
456 cm_creds.username = SMB_STRDUP(get_cmdline_auth_info_username(
457 auth_info));
459 if (get_cmdline_auth_info_got_pass(auth_info)) {
460 cm_set_password(get_cmdline_auth_info_password(auth_info));
463 cm_creds.use_kerberos = get_cmdline_auth_info_use_kerberos(auth_info);
464 cm_creds.fallback_after_kerberos = false;
465 cm_creds.signing_state = get_cmdline_auth_info_signing_state(auth_info);
467 #endif
469 /**********************************************************************
470 split a dfs path into the server, share name, and extrapath components
471 **********************************************************************/
473 static bool split_dfs_path(TALLOC_CTX *ctx,
474 const char *nodepath,
475 char **pp_server,
476 char **pp_share,
477 char **pp_extrapath)
479 char *p, *q;
480 char *path;
482 *pp_server = NULL;
483 *pp_share = NULL;
484 *pp_extrapath = NULL;
486 path = talloc_strdup(ctx, nodepath);
487 if (!path) {
488 goto fail;
491 if ( path[0] != '\\' ) {
492 goto fail;
495 p = strchr_m( path + 1, '\\' );
496 if ( !p ) {
497 goto fail;
500 *p = '\0';
501 p++;
503 /* Look for any extra/deep path */
504 q = strchr_m(p, '\\');
505 if (q != NULL) {
506 *q = '\0';
507 q++;
508 *pp_extrapath = talloc_strdup(ctx, q);
509 } else {
510 *pp_extrapath = talloc_strdup(ctx, "");
512 if (*pp_extrapath == NULL) {
513 goto fail;
516 *pp_share = talloc_strdup(ctx, p);
517 if (*pp_share == NULL) {
518 goto fail;
521 *pp_server = talloc_strdup(ctx, &path[1]);
522 if (*pp_server == NULL) {
523 goto fail;
526 TALLOC_FREE(path);
527 return true;
529 fail:
530 TALLOC_FREE(*pp_share);
531 TALLOC_FREE(*pp_extrapath);
532 TALLOC_FREE(path);
533 return false;
536 /****************************************************************************
537 Return the original path truncated at the directory component before
538 the first wildcard character. Trust the caller to provide a NULL
539 terminated string
540 ****************************************************************************/
542 static char *clean_path(TALLOC_CTX *ctx, const char *path)
544 size_t len;
545 char *p1, *p2, *p;
546 char *path_out;
548 /* No absolute paths. */
549 while (IS_DIRECTORY_SEP(*path)) {
550 path++;
553 path_out = talloc_strdup(ctx, path);
554 if (!path_out) {
555 return NULL;
558 p1 = strchr_m(path_out, '*');
559 p2 = strchr_m(path_out, '?');
561 if (p1 || p2) {
562 if (p1 && p2) {
563 p = MIN(p1,p2);
564 } else if (!p1) {
565 p = p2;
566 } else {
567 p = p1;
569 *p = '\0';
571 /* Now go back to the start of this component. */
572 p1 = strrchr_m(path_out, '/');
573 p2 = strrchr_m(path_out, '\\');
574 p = MAX(p1,p2);
575 if (p) {
576 *p = '\0';
580 /* Strip any trailing separator */
582 len = strlen(path_out);
583 if ( (len > 0) && IS_DIRECTORY_SEP(path_out[len-1])) {
584 path_out[len-1] = '\0';
587 return path_out;
590 /****************************************************************************
591 ****************************************************************************/
593 static char *cli_dfs_make_full_path(TALLOC_CTX *ctx,
594 struct cli_state *cli,
595 const char *dir)
597 char path_sep = '\\';
599 /* Ensure the extrapath doesn't start with a separator. */
600 while (IS_DIRECTORY_SEP(*dir)) {
601 dir++;
604 if (cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
605 path_sep = '/';
607 return talloc_asprintf(ctx, "%c%s%c%s%c%s",
608 path_sep,
609 smbXcli_conn_remote_name(cli->conn),
610 path_sep,
611 cli->share,
612 path_sep,
613 dir);
616 /********************************************************************
617 check for dfs referral
618 ********************************************************************/
620 static bool cli_dfs_check_error(struct cli_state *cli, NTSTATUS expected,
621 NTSTATUS status)
623 /* only deal with DS when we negotiated NT_STATUS codes and UNICODE */
625 if (!(smbXcli_conn_use_unicode(cli->conn))) {
626 return false;
628 if (!(smb1cli_conn_capabilities(cli->conn) & CAP_STATUS32)) {
629 return false;
631 if (NT_STATUS_EQUAL(status, expected)) {
632 return true;
634 return false;
637 /********************************************************************
638 Get the dfs referral link.
639 ********************************************************************/
641 NTSTATUS cli_dfs_get_referral(TALLOC_CTX *ctx,
642 struct cli_state *cli,
643 const char *path,
644 struct client_dfs_referral **refs,
645 size_t *num_refs,
646 size_t *consumed)
648 unsigned int param_len = 0;
649 uint16_t recv_flags2;
650 uint8_t *param = NULL;
651 uint8_t *rdata = NULL;
652 char *p;
653 char *endp;
654 smb_ucs2_t *path_ucs;
655 char *consumed_path = NULL;
656 uint16_t consumed_ucs;
657 uint16 num_referrals;
658 struct client_dfs_referral *referrals = NULL;
659 NTSTATUS status;
660 TALLOC_CTX *frame = talloc_stackframe();
662 *num_refs = 0;
663 *refs = NULL;
665 param = talloc_array(talloc_tos(), uint8_t, 2);
666 if (!param) {
667 status = NT_STATUS_NO_MEMORY;
668 goto out;
670 SSVAL(param, 0, 0x03); /* max referral level */
672 param = trans2_bytes_push_str(param, smbXcli_conn_use_unicode(cli->conn),
673 path, strlen(path)+1,
674 NULL);
675 if (!param) {
676 status = NT_STATUS_NO_MEMORY;
677 goto out;
679 param_len = talloc_get_size(param);
680 path_ucs = (smb_ucs2_t *)&param[2];
682 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
683 DATA_BLOB in_input_buffer;
684 DATA_BLOB in_output_buffer = data_blob_null;
685 DATA_BLOB out_input_buffer = data_blob_null;
686 DATA_BLOB out_output_buffer = data_blob_null;
688 in_input_buffer.data = param;
689 in_input_buffer.length = param_len;
691 status = smb2cli_ioctl(cli->conn,
692 cli->timeout,
693 cli->smb2.session,
694 cli->smb2.tcon,
695 UINT64_MAX, /* in_fid_persistent */
696 UINT64_MAX, /* in_fid_volatile */
697 FSCTL_DFS_GET_REFERRALS,
698 0, /* in_max_input_length */
699 &in_input_buffer,
700 CLI_BUFFER_SIZE, /* in_max_output_length */
701 &in_output_buffer,
702 SMB2_IOCTL_FLAG_IS_FSCTL,
703 talloc_tos(),
704 &out_input_buffer,
705 &out_output_buffer);
706 if (!NT_STATUS_IS_OK(status)) {
707 goto out;
710 if (out_output_buffer.length < 4) {
711 status = NT_STATUS_INVALID_NETWORK_RESPONSE;
712 goto out;
715 recv_flags2 = FLAGS2_UNICODE_STRINGS;
716 rdata = out_output_buffer.data;
717 endp = (char *)rdata + out_output_buffer.length;
718 } else {
719 unsigned int data_len = 0;
720 uint16_t setup[1];
722 SSVAL(setup, 0, TRANSACT2_GET_DFS_REFERRAL);
724 status = cli_trans(talloc_tos(), cli, SMBtrans2,
725 NULL, 0xffff, 0, 0,
726 setup, 1, 0,
727 param, param_len, 2,
728 NULL, 0, CLI_BUFFER_SIZE,
729 &recv_flags2,
730 NULL, 0, NULL, /* rsetup */
731 NULL, 0, NULL,
732 &rdata, 4, &data_len);
733 if (!NT_STATUS_IS_OK(status)) {
734 goto out;
737 endp = (char *)rdata + data_len;
740 consumed_ucs = SVAL(rdata, 0);
741 num_referrals = SVAL(rdata, 2);
743 /* consumed_ucs is the number of bytes
744 * of the UCS2 path consumed not counting any
745 * terminating null. We need to convert
746 * back to unix charset and count again
747 * to get the number of bytes consumed from
748 * the incoming path. */
750 errno = 0;
751 if (pull_string_talloc(talloc_tos(),
752 NULL,
754 &consumed_path,
755 path_ucs,
756 consumed_ucs,
757 STR_UNICODE) == 0) {
758 if (errno != 0) {
759 status = map_nt_error_from_unix(errno);
760 } else {
761 status = NT_STATUS_INVALID_NETWORK_RESPONSE;
763 goto out;
765 if (consumed_path == NULL) {
766 status = map_nt_error_from_unix(errno);
767 goto out;
769 *consumed = strlen(consumed_path);
771 if (num_referrals != 0) {
772 uint16 ref_version;
773 uint16 ref_size;
774 int i;
775 uint16 node_offset;
777 referrals = talloc_array(ctx, struct client_dfs_referral,
778 num_referrals);
780 if (!referrals) {
781 status = NT_STATUS_NO_MEMORY;
782 goto out;
784 /* start at the referrals array */
786 p = (char *)rdata+8;
787 for (i=0; i<num_referrals && p < endp; i++) {
788 if (p + 18 > endp) {
789 goto out;
791 ref_version = SVAL(p, 0);
792 ref_size = SVAL(p, 2);
793 node_offset = SVAL(p, 16);
795 if (ref_version != 3) {
796 p += ref_size;
797 continue;
800 referrals[i].proximity = SVAL(p, 8);
801 referrals[i].ttl = SVAL(p, 10);
803 if (p + node_offset > endp) {
804 status = NT_STATUS_INVALID_NETWORK_RESPONSE;
805 goto out;
807 clistr_pull_talloc(referrals,
808 (const char *)rdata,
809 recv_flags2,
810 &referrals[i].dfspath,
811 p+node_offset,
812 PTR_DIFF(endp, p+node_offset),
813 STR_TERMINATE|STR_UNICODE);
815 if (!referrals[i].dfspath) {
816 status = map_nt_error_from_unix(errno);
817 goto out;
819 p += ref_size;
821 if (i < num_referrals) {
822 status = NT_STATUS_INVALID_NETWORK_RESPONSE;
823 goto out;
827 *num_refs = num_referrals;
828 *refs = referrals;
830 out:
832 TALLOC_FREE(frame);
833 return status;
836 /********************************************************************
837 ********************************************************************/
839 NTSTATUS cli_resolve_path(TALLOC_CTX *ctx,
840 const char *mountpt,
841 const struct user_auth_info *dfs_auth_info,
842 struct cli_state *rootcli,
843 const char *path,
844 struct cli_state **targetcli,
845 char **pp_targetpath)
847 struct client_dfs_referral *refs = NULL;
848 size_t num_refs = 0;
849 size_t consumed = 0;
850 struct cli_state *cli_ipc = NULL;
851 char *dfs_path = NULL;
852 char *cleanpath = NULL;
853 char *extrapath = NULL;
854 int pathlen;
855 char *server = NULL;
856 char *share = NULL;
857 struct cli_state *newcli = NULL;
858 char *newpath = NULL;
859 char *newmount = NULL;
860 char *ppath = NULL;
861 SMB_STRUCT_STAT sbuf;
862 uint32 attributes;
863 NTSTATUS status;
864 struct smbXcli_tcon *root_tcon = NULL;
865 struct smbXcli_tcon *target_tcon = NULL;
867 if ( !rootcli || !path || !targetcli ) {
868 return NT_STATUS_INVALID_PARAMETER;
871 /* Don't do anything if this is not a DFS root. */
873 if (smbXcli_conn_protocol(rootcli->conn) >= PROTOCOL_SMB2_02) {
874 root_tcon = rootcli->smb2.tcon;
875 } else {
876 root_tcon = rootcli->smb1.tcon;
879 if (!smbXcli_tcon_is_dfs_share(root_tcon)) {
880 *targetcli = rootcli;
881 *pp_targetpath = talloc_strdup(ctx, path);
882 if (!*pp_targetpath) {
883 return NT_STATUS_NO_MEMORY;
885 return NT_STATUS_OK;
888 *targetcli = NULL;
890 /* Send a trans2_query_path_info to check for a referral. */
892 cleanpath = clean_path(ctx, path);
893 if (!cleanpath) {
894 return NT_STATUS_NO_MEMORY;
897 dfs_path = cli_dfs_make_full_path(ctx, rootcli, cleanpath);
898 if (!dfs_path) {
899 return NT_STATUS_NO_MEMORY;
902 status = cli_qpathinfo_basic( rootcli, dfs_path, &sbuf, &attributes);
903 if (NT_STATUS_IS_OK(status)) {
904 /* This is an ordinary path, just return it. */
905 *targetcli = rootcli;
906 *pp_targetpath = talloc_strdup(ctx, path);
907 if (!*pp_targetpath) {
908 return NT_STATUS_NO_MEMORY;
910 goto done;
913 /* Special case where client asked for a path that does not exist */
915 if (cli_dfs_check_error(rootcli, NT_STATUS_OBJECT_NAME_NOT_FOUND,
916 status)) {
917 *targetcli = rootcli;
918 *pp_targetpath = talloc_strdup(ctx, path);
919 if (!*pp_targetpath) {
920 return NT_STATUS_NO_MEMORY;
922 goto done;
925 /* We got an error, check for DFS referral. */
927 if (!cli_dfs_check_error(rootcli, NT_STATUS_PATH_NOT_COVERED,
928 status)) {
929 return status;
932 /* Check for the referral. */
934 status = cli_cm_open(ctx,
935 rootcli,
936 smbXcli_conn_remote_name(rootcli->conn),
937 "IPC$",
938 dfs_auth_info,
939 false,
940 smb1cli_conn_encryption_on(rootcli->conn),
941 smbXcli_conn_protocol(rootcli->conn),
943 0x20,
944 &cli_ipc);
945 if (!NT_STATUS_IS_OK(status)) {
946 return status;
949 status = cli_dfs_get_referral(ctx, cli_ipc, dfs_path, &refs,
950 &num_refs, &consumed);
951 if (!NT_STATUS_IS_OK(status) || !num_refs) {
952 return status;
955 /* Just store the first referral for now. */
957 if (!refs[0].dfspath) {
958 return NT_STATUS_NOT_FOUND;
960 if (!split_dfs_path(ctx, refs[0].dfspath, &server, &share,
961 &extrapath)) {
962 return NT_STATUS_NOT_FOUND;
965 /* Make sure to recreate the original string including any wildcards. */
967 dfs_path = cli_dfs_make_full_path(ctx, rootcli, path);
968 if (!dfs_path) {
969 return NT_STATUS_NO_MEMORY;
971 pathlen = strlen(dfs_path);
972 consumed = MIN(pathlen, consumed);
973 *pp_targetpath = talloc_strdup(ctx, &dfs_path[consumed]);
974 if (!*pp_targetpath) {
975 return NT_STATUS_NO_MEMORY;
977 dfs_path[consumed] = '\0';
980 * *pp_targetpath is now the unconsumed part of the path.
981 * dfs_path is now the consumed part of the path
982 * (in \server\share\path format).
985 /* Open the connection to the target server & share */
986 status = cli_cm_open(ctx, rootcli,
987 server,
988 share,
989 dfs_auth_info,
990 false,
991 smb1cli_conn_encryption_on(rootcli->conn),
992 smbXcli_conn_protocol(rootcli->conn),
994 0x20,
995 targetcli);
996 if (!NT_STATUS_IS_OK(status)) {
997 d_printf("Unable to follow dfs referral [\\%s\\%s]\n",
998 server, share );
999 return status;
1002 if (extrapath && strlen(extrapath) > 0) {
1003 /* EMC Celerra NAS version 5.6.50 (at least) doesn't appear to */
1004 /* put the trailing \ on the path, so to be save we put one in if needed */
1005 if (extrapath[strlen(extrapath)-1] != '\\' && **pp_targetpath != '\\') {
1006 *pp_targetpath = talloc_asprintf(ctx,
1007 "%s\\%s",
1008 extrapath,
1009 *pp_targetpath);
1010 } else {
1011 *pp_targetpath = talloc_asprintf(ctx,
1012 "%s%s",
1013 extrapath,
1014 *pp_targetpath);
1016 if (!*pp_targetpath) {
1017 return NT_STATUS_NO_MEMORY;
1021 /* parse out the consumed mount path */
1022 /* trim off the \server\share\ */
1024 ppath = dfs_path;
1026 if (*ppath != '\\') {
1027 d_printf("cli_resolve_path: "
1028 "dfs_path (%s) not in correct format.\n",
1029 dfs_path );
1030 return NT_STATUS_NOT_FOUND;
1033 ppath++; /* Now pointing at start of server name. */
1035 if ((ppath = strchr_m( dfs_path, '\\' )) == NULL) {
1036 return NT_STATUS_NOT_FOUND;
1039 ppath++; /* Now pointing at start of share name. */
1041 if ((ppath = strchr_m( ppath+1, '\\' )) == NULL) {
1042 return NT_STATUS_NOT_FOUND;
1045 ppath++; /* Now pointing at path component. */
1047 newmount = talloc_asprintf(ctx, "%s\\%s", mountpt, ppath );
1048 if (!newmount) {
1049 return NT_STATUS_NOT_FOUND;
1052 cli_set_mntpoint(*targetcli, newmount);
1054 /* Check for another dfs referral, note that we are not
1055 checking for loops here. */
1057 if (!strequal(*pp_targetpath, "\\") && !strequal(*pp_targetpath, "/")) {
1058 status = cli_resolve_path(ctx,
1059 newmount,
1060 dfs_auth_info,
1061 *targetcli,
1062 *pp_targetpath,
1063 &newcli,
1064 &newpath);
1065 if (NT_STATUS_IS_OK(status)) {
1067 * When cli_resolve_path returns true here it's always
1068 * returning the complete path in newpath, so we're done
1069 * here.
1071 *targetcli = newcli;
1072 *pp_targetpath = newpath;
1073 return status;
1077 done:
1079 if (smbXcli_conn_protocol((*targetcli)->conn) >= PROTOCOL_SMB2_02) {
1080 target_tcon = (*targetcli)->smb2.tcon;
1081 } else {
1082 target_tcon = (*targetcli)->smb1.tcon;
1085 /* If returning true ensure we return a dfs root full path. */
1086 if (smbXcli_tcon_is_dfs_share(target_tcon)) {
1087 dfs_path = talloc_strdup(ctx, *pp_targetpath);
1088 if (!dfs_path) {
1089 return NT_STATUS_NO_MEMORY;
1091 *pp_targetpath = cli_dfs_make_full_path(ctx, *targetcli, dfs_path);
1092 if (*pp_targetpath == NULL) {
1093 return NT_STATUS_NO_MEMORY;
1097 return NT_STATUS_OK;
1100 /********************************************************************
1101 ********************************************************************/
1103 bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
1104 struct cli_state *cli,
1105 const char *sharename,
1106 char **pp_newserver,
1107 char **pp_newshare,
1108 bool force_encrypt,
1109 const char *username,
1110 const char *password,
1111 const char *domain)
1113 struct client_dfs_referral *refs = NULL;
1114 size_t num_refs = 0;
1115 size_t consumed = 0;
1116 char *fullpath = NULL;
1117 bool res;
1118 uint16 cnum;
1119 char *newextrapath = NULL;
1120 NTSTATUS status;
1121 const char *remote_name;
1123 if (!cli || !sharename) {
1124 return false;
1127 remote_name = smbXcli_conn_remote_name(cli->conn);
1128 cnum = cli_state_get_tid(cli);
1130 /* special case. never check for a referral on the IPC$ share */
1132 if (strequal(sharename, "IPC$")) {
1133 return false;
1136 /* send a trans2_query_path_info to check for a referral */
1138 fullpath = talloc_asprintf(ctx, "\\%s\\%s", remote_name, sharename);
1139 if (!fullpath) {
1140 return false;
1143 /* check for the referral */
1145 if (!NT_STATUS_IS_OK(cli_tree_connect(cli, "IPC$", "IPC", NULL, 0))) {
1146 return false;
1149 if (force_encrypt) {
1150 status = cli_cm_force_encryption(cli,
1151 username,
1152 password,
1153 lp_workgroup(),
1154 "IPC$");
1155 if (!NT_STATUS_IS_OK(status)) {
1156 return false;
1160 status = cli_dfs_get_referral(ctx, cli, fullpath, &refs,
1161 &num_refs, &consumed);
1162 res = NT_STATUS_IS_OK(status);
1164 status = cli_tdis(cli);
1165 if (!NT_STATUS_IS_OK(status)) {
1166 return false;
1169 cli_state_set_tid(cli, cnum);
1171 if (!res || !num_refs) {
1172 return false;
1175 if (!refs[0].dfspath) {
1176 return false;
1179 if (!split_dfs_path(ctx, refs[0].dfspath, pp_newserver,
1180 pp_newshare, &newextrapath)) {
1181 return false;
1184 /* check that this is not a self-referral */
1186 if (strequal(remote_name, *pp_newserver) &&
1187 strequal(sharename, *pp_newshare)) {
1188 return false;
1191 return true;