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/>.
24 /********************************************************************
27 DFS paths are *always* of the form \server\share\<pathname> (the \ characters
28 are not C escaped here).
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 ********************************************************************/
35 static bool cli_check_msdfs_proxy(TALLOC_CTX
*ctx
,
36 struct cli_state
*cli
,
37 const char *sharename
,
45 /********************************************************************
46 Ensure a connection is encrypted.
47 ********************************************************************/
49 NTSTATUS
cli_cm_force_encryption(struct cli_state
*c
,
53 const char *sharename
)
55 NTSTATUS status
= cli_force_encryption(c
,
60 if (NT_STATUS_EQUAL(status
,NT_STATUS_NOT_SUPPORTED
)) {
61 d_printf("Encryption required and "
62 "server that doesn't support "
63 "UNIX extensions - failing connect\n");
64 } else if (NT_STATUS_EQUAL(status
,NT_STATUS_UNKNOWN_REVISION
)) {
65 d_printf("Encryption required and "
66 "can't get UNIX CIFS extensions "
67 "version from server.\n");
68 } else if (NT_STATUS_EQUAL(status
,NT_STATUS_UNSUPPORTED_COMPRESSION
)) {
69 d_printf("Encryption required and "
70 "share %s doesn't support "
71 "encryption.\n", sharename
);
72 } else if (!NT_STATUS_IS_OK(status
)) {
73 d_printf("Encryption required and "
74 "setup failed with error %s.\n",
81 /********************************************************************
82 Return a connection to a server.
83 ********************************************************************/
85 static struct cli_state
*do_connect(TALLOC_CTX
*ctx
,
88 const struct user_auth_info
*auth_info
,
95 struct cli_state
*c
= NULL
;
96 struct nmb_name called
, calling
;
97 const char *called_str
;
99 struct sockaddr_storage ss
;
102 char *newserver
, *newshare
;
103 const char *username
;
104 const char *password
;
107 /* make a copy so we don't modify the global string 'service' */
108 servicename
= talloc_strdup(ctx
,share
);
112 sharename
= servicename
;
113 if (*sharename
== '\\') {
115 called_str
= sharename
;
116 if (server
== NULL
) {
119 sharename
= strchr_m(sharename
,'\\');
133 make_nmb_name(&calling
, global_myname(), 0x0);
134 make_nmb_name(&called
, called_str
, name_type
);
139 /* have to open a new connection */
140 if (!(c
=cli_initialise_ex(get_cmdline_auth_info_signing_state(auth_info
)))) {
141 d_printf("Connection to %s failed\n", server_n
);
148 cli_set_port(c
, port
);
151 status
= cli_connect(c
, server_n
, &ss
);
152 if (!NT_STATUS_IS_OK(status
)) {
153 d_printf("Connection to %s failed (Error %s)\n",
160 if (max_protocol
== 0) {
161 max_protocol
= PROTOCOL_NT1
;
163 c
->protocol
= max_protocol
;
164 c
->use_kerberos
= get_cmdline_auth_info_use_kerberos(auth_info
);
165 c
->fallback_after_kerberos
=
166 get_cmdline_auth_info_fallback_after_kerberos(auth_info
);
168 if (!cli_session_request(c
, &calling
, &called
)) {
170 d_printf("session request to %s failed (%s)\n",
171 called
.name
, cli_errstr(c
));
174 if ((p
=strchr_m(called
.name
, '.'))) {
178 if (strcmp(called
.name
, "*SMBSERVER")) {
179 make_nmb_name(&called
, "*SMBSERVER", 0x20);
185 DEBUG(4,(" session request ok\n"));
187 status
= cli_negprot(c
);
189 if (!NT_STATUS_IS_OK(status
)) {
190 d_printf("protocol negotiation failed: %s\n",
196 username
= get_cmdline_auth_info_username(auth_info
);
197 password
= get_cmdline_auth_info_password(auth_info
);
199 if (!NT_STATUS_IS_OK(cli_session_setup(c
, username
,
200 password
, strlen(password
),
201 password
, strlen(password
),
203 /* If a password was not supplied then
204 * try again with a null username. */
205 if (password
[0] || !username
[0] ||
206 get_cmdline_auth_info_use_kerberos(auth_info
) ||
207 !NT_STATUS_IS_OK(cli_session_setup(c
, "",
211 d_printf("session setup failed: %s\n", cli_errstr(c
));
212 if (NT_STATUS_V(cli_nt_error(c
)) ==
213 NT_STATUS_V(NT_STATUS_MORE_PROCESSING_REQUIRED
))
214 d_printf("did you forget to run kinit?\n");
218 d_printf("Anonymous login successful\n");
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 check_dfs_proxy() will fail if it is a normal share. */
237 if ((c
->capabilities
& CAP_DFS
) &&
238 cli_check_msdfs_proxy(ctx
, c
, sharename
,
239 &newserver
, &newshare
,
245 return do_connect(ctx
, newserver
,
246 newshare
, auth_info
, false,
247 force_encrypt
, max_protocol
,
251 /* must be a normal share */
253 status
= cli_tcon_andx(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
));
262 status
= cli_cm_force_encryption(c
,
267 if (!NT_STATUS_IS_OK(status
)) {
273 DEBUG(4,(" tconx ok\n"));
277 /****************************************************************************
278 ****************************************************************************/
280 static void cli_set_mntpoint(struct cli_state
*cli
, const char *mnt
)
282 char *name
= clean_name(NULL
, mnt
);
286 TALLOC_FREE(cli
->dfs_mountpoint
);
287 cli
->dfs_mountpoint
= talloc_strdup(cli
, name
);
291 /********************************************************************
292 Add a new connection to the list.
293 referring_cli == NULL means a new initial connection.
294 ********************************************************************/
296 static struct cli_state
*cli_cm_connect(TALLOC_CTX
*ctx
,
297 struct cli_state
*referring_cli
,
300 const struct user_auth_info
*auth_info
,
307 struct cli_state
*cli
;
309 cli
= do_connect(ctx
, server
, share
,
311 show_hdr
, force_encrypt
, max_protocol
,
318 /* Enter into the list. */
320 DLIST_ADD_END(referring_cli
, cli
, struct cli_state
*);
323 if (referring_cli
&& referring_cli
->posix_capabilities
) {
325 uint32 caplow
, caphigh
;
326 if (cli_unix_extensions_version(cli
, &major
,
327 &minor
, &caplow
, &caphigh
)) {
328 cli_set_unix_extensions_capabilities(cli
,
337 /********************************************************************
338 Return a connection to a server on a particular share.
339 ********************************************************************/
341 static struct cli_state
*cli_cm_find(struct cli_state
*cli
,
351 /* Search to the start of the list. */
352 for (p
= cli
; p
; p
= p
->prev
) {
353 if (strequal(server
, p
->desthost
) &&
354 strequal(share
,p
->share
)) {
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
)) {
370 /****************************************************************************
371 Open a client connection to a \\server\share.
372 ****************************************************************************/
374 struct cli_state
*cli_cm_open(TALLOC_CTX
*ctx
,
375 struct cli_state
*referring_cli
,
378 const struct user_auth_info
*auth_info
,
385 /* Try to reuse an existing connection in this list. */
386 struct cli_state
*c
= cli_cm_find(referring_cli
, server
, share
);
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",
401 return cli_cm_connect(ctx
,
413 /****************************************************************************
414 ****************************************************************************/
416 void cli_cm_display(const struct cli_state
*cli
)
420 for (i
=0; cli
; cli
= cli
->next
,i
++ ) {
421 d_printf("%d:\tserver=%s, share=%s\n",
422 i
, cli
->desthost
, cli
->share
);
426 /****************************************************************************
427 ****************************************************************************/
429 /****************************************************************************
430 ****************************************************************************/
433 void cli_cm_set_credentials(struct user_auth_info
*auth_info
)
435 SAFE_FREE(cm_creds
.username
);
436 cm_creds
.username
= SMB_STRDUP(get_cmdline_auth_info_username(
439 if (get_cmdline_auth_info_got_pass(auth_info
)) {
440 cm_set_password(get_cmdline_auth_info_password(auth_info
));
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
);
449 /**********************************************************************
450 split a dfs path into the server, share name, and extrapath components
451 **********************************************************************/
453 static void split_dfs_path(TALLOC_CTX
*ctx
,
454 const char *nodepath
,
464 *pp_extrapath
= NULL
;
466 path
= talloc_strdup(ctx
, nodepath
);
471 if ( path
[0] != '\\' ) {
475 p
= strchr_m( path
+ 1, '\\' );
483 /* Look for any extra/deep path */
484 q
= strchr_m(p
, '\\');
488 *pp_extrapath
= talloc_strdup(ctx
, q
);
490 *pp_extrapath
= talloc_strdup(ctx
, "");
493 *pp_share
= talloc_strdup(ctx
, p
);
494 *pp_server
= talloc_strdup(ctx
, &path
[1]);
497 /****************************************************************************
498 Return the original path truncated at the directory component before
499 the first wildcard character. Trust the caller to provide a NULL
501 ****************************************************************************/
503 static char *clean_path(TALLOC_CTX
*ctx
, const char *path
)
509 /* No absolute paths. */
510 while (IS_DIRECTORY_SEP(*path
)) {
514 path_out
= talloc_strdup(ctx
, path
);
519 p1
= strchr_m(path_out
, '*');
520 p2
= strchr_m(path_out
, '?');
532 /* Now go back to the start of this component. */
533 p1
= strrchr_m(path_out
, '/');
534 p2
= strrchr_m(path_out
, '\\');
541 /* Strip any trailing separator */
543 len
= strlen(path_out
);
544 if ( (len
> 0) && IS_DIRECTORY_SEP(path_out
[len
-1])) {
545 path_out
[len
-1] = '\0';
551 /****************************************************************************
552 ****************************************************************************/
554 static char *cli_dfs_make_full_path(TALLOC_CTX
*ctx
,
555 struct cli_state
*cli
,
558 char path_sep
= '\\';
560 /* Ensure the extrapath doesn't start with a separator. */
561 while (IS_DIRECTORY_SEP(*dir
)) {
565 if (cli
->posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
568 return talloc_asprintf(ctx
, "%c%s%c%s%c%s",
577 /********************************************************************
578 check for dfs referral
579 ********************************************************************/
581 static bool cli_dfs_check_error( struct cli_state
*cli
, NTSTATUS status
)
583 uint32 flgs2
= SVAL(cli
->inbuf
,smb_flg2
);
585 /* only deal with DS when we negotiated NT_STATUS codes and UNICODE */
587 if (!((flgs2
&FLAGS2_32_BIT_ERROR_CODES
) &&
588 (flgs2
&FLAGS2_UNICODE_STRINGS
)))
591 if (NT_STATUS_EQUAL(status
, NT_STATUS(IVAL(cli
->inbuf
,smb_rcls
))))
597 /********************************************************************
598 Get the dfs referral link.
599 ********************************************************************/
601 bool cli_dfs_get_referral(TALLOC_CTX
*ctx
,
602 struct cli_state
*cli
,
604 CLIENT_DFS_REFERRAL
**refs
,
608 unsigned int data_len
= 0;
609 unsigned int param_len
= 0;
610 uint16 setup
= TRANSACT2_GET_DFS_REFERRAL
;
612 char *rparam
=NULL
, *rdata
=NULL
;
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 CLIENT_DFS_REFERRAL
*referrals
= NULL
;
626 param
= SMB_MALLOC_ARRAY(char, 2+pathlen
+2);
630 SSVAL(param
, 0, 0x03); /* max referral level */
633 path_ucs
= (smb_ucs2_t
*)p
;
634 p
+= clistr_push(cli
, p
, path
, pathlen
, STR_TERMINATE
);
635 param_len
= PTR_DIFF(p
, param
);
637 if (!cli_send_trans(cli
, SMBtrans2
,
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 */
647 if (!cli_receive_trans(cli
, SMBtrans2
,
649 &rdata
, &data_len
)) {
657 endp
= rdata
+ data_len
;
659 consumed_ucs
= SVAL(rdata
, 0);
660 num_referrals
= SVAL(rdata
, 2);
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. */
669 if (pull_string_talloc(talloc_tos(),
678 if (consumed_path
== NULL
) {
681 *consumed
= strlen(consumed_path
);
683 if (num_referrals
!= 0) {
689 referrals
= TALLOC_ARRAY(ctx
, CLIENT_DFS_REFERRAL
,
695 /* start at the referrals array */
698 for (i
=0; i
<num_referrals
&& p
< endp
; i
++) {
702 ref_version
= SVAL(p
, 0);
703 ref_size
= SVAL(p
, 2);
704 node_offset
= SVAL(p
, 16);
706 if (ref_version
!= 3) {
711 referrals
[i
].proximity
= SVAL(p
, 8);
712 referrals
[i
].ttl
= SVAL(p
, 10);
714 if (p
+ node_offset
> endp
) {
717 clistr_pull_talloc(ctx
, cli
->inbuf
,
718 &referrals
[i
].dfspath
,
720 STR_TERMINATE
|STR_UNICODE
);
722 if (!referrals
[i
].dfspath
) {
727 if (i
< num_referrals
) {
734 *num_refs
= num_referrals
;
739 TALLOC_FREE(consumed_path
);
746 /********************************************************************
747 ********************************************************************/
749 bool cli_resolve_path(TALLOC_CTX
*ctx
,
751 const struct user_auth_info
*dfs_auth_info
,
752 struct cli_state
*rootcli
,
754 struct cli_state
**targetcli
,
755 char **pp_targetpath
)
757 CLIENT_DFS_REFERRAL
*refs
= NULL
;
760 struct cli_state
*cli_ipc
= NULL
;
761 char *dfs_path
= NULL
;
762 char *cleanpath
= NULL
;
763 char *extrapath
= NULL
;
767 struct cli_state
*newcli
= NULL
;
768 char *newpath
= NULL
;
769 char *newmount
= NULL
;
771 SMB_STRUCT_STAT sbuf
;
774 if ( !rootcli
|| !path
|| !targetcli
) {
778 /* Don't do anything if this is not a DFS root. */
780 if ( !rootcli
->dfsroot
) {
781 *targetcli
= rootcli
;
782 *pp_targetpath
= talloc_strdup(ctx
, path
);
783 if (!*pp_targetpath
) {
791 /* Send a trans2_query_path_info to check for a referral. */
793 cleanpath
= clean_path(ctx
, path
);
798 dfs_path
= cli_dfs_make_full_path(ctx
, rootcli
, cleanpath
);
803 if (cli_qpathinfo_basic( rootcli
, dfs_path
, &sbuf
, &attributes
)) {
804 /* This is an ordinary path, just return it. */
805 *targetcli
= rootcli
;
806 *pp_targetpath
= talloc_strdup(ctx
, path
);
807 if (!*pp_targetpath
) {
813 /* Special case where client asked for a path that does not exist */
815 if (cli_dfs_check_error(rootcli
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
816 *targetcli
= rootcli
;
817 *pp_targetpath
= talloc_strdup(ctx
, path
);
818 if (!*pp_targetpath
) {
824 /* We got an error, check for DFS referral. */
826 if (!cli_dfs_check_error(rootcli
, NT_STATUS_PATH_NOT_COVERED
)) {
830 /* Check for the referral. */
832 if (!(cli_ipc
= cli_cm_open(ctx
,
838 (rootcli
->trans_enc_state
!= NULL
),
845 if (!cli_dfs_get_referral(ctx
, cli_ipc
, dfs_path
, &refs
,
846 &num_refs
, &consumed
) || !num_refs
) {
850 /* Just store the first referral for now. */
852 if (!refs
[0].dfspath
) {
855 split_dfs_path(ctx
, refs
[0].dfspath
, &server
, &share
, &extrapath
);
857 if (!server
|| !share
) {
861 /* Make sure to recreate the original string including any wildcards. */
863 dfs_path
= cli_dfs_make_full_path(ctx
, rootcli
, path
);
867 pathlen
= strlen(dfs_path
);
868 consumed
= MIN(pathlen
, consumed
);
869 *pp_targetpath
= talloc_strdup(ctx
, &dfs_path
[consumed
]);
870 if (!*pp_targetpath
) {
873 dfs_path
[consumed
] = '\0';
876 * *pp_targetpath is now the unconsumed part of the path.
877 * dfs_path is now the consumed part of the path
878 * (in \server\share\path format).
881 /* Open the connection to the target server & share */
882 if ((*targetcli
= cli_cm_open(ctx
, rootcli
,
887 (rootcli
->trans_enc_state
!= NULL
),
891 d_printf("Unable to follow dfs referral [\\%s\\%s]\n",
896 if (extrapath
&& strlen(extrapath
) > 0) {
897 *pp_targetpath
= talloc_asprintf(ctx
,
901 if (!*pp_targetpath
) {
906 /* parse out the consumed mount path */
907 /* trim off the \server\share\ */
911 if (*ppath
!= '\\') {
912 d_printf("cli_resolve_path: "
913 "dfs_path (%s) not in correct format.\n",
918 ppath
++; /* Now pointing at start of server name. */
920 if ((ppath
= strchr_m( dfs_path
, '\\' )) == NULL
) {
924 ppath
++; /* Now pointing at start of share name. */
926 if ((ppath
= strchr_m( ppath
+1, '\\' )) == NULL
) {
930 ppath
++; /* Now pointing at path component. */
932 newmount
= talloc_asprintf(ctx
, "%s\\%s", mountpt
, ppath
);
937 cli_set_mntpoint(*targetcli
, newmount
);
939 /* Check for another dfs referral, note that we are not
940 checking for loops here. */
942 if (!strequal(*pp_targetpath
, "\\") && !strequal(*pp_targetpath
, "/")) {
943 if (cli_resolve_path(ctx
,
951 * When cli_resolve_path returns true here it's always
952 * returning the complete path in newpath, so we're done
956 *pp_targetpath
= newpath
;
963 /* If returning true ensure we return a dfs root full path. */
964 if ((*targetcli
)->dfsroot
) {
965 dfs_path
= talloc_strdup(ctx
, *pp_targetpath
);
969 *pp_targetpath
= cli_dfs_make_full_path(ctx
, *targetcli
, dfs_path
);
975 /********************************************************************
976 ********************************************************************/
978 static bool cli_check_msdfs_proxy(TALLOC_CTX
*ctx
,
979 struct cli_state
*cli
,
980 const char *sharename
,
984 const char *username
,
985 const char *password
,
988 CLIENT_DFS_REFERRAL
*refs
= NULL
;
991 char *fullpath
= NULL
;
994 char *newextrapath
= NULL
;
996 if (!cli
|| !sharename
) {
1002 /* special case. never check for a referral on the IPC$ share */
1004 if (strequal(sharename
, "IPC$")) {
1008 /* send a trans2_query_path_info to check for a referral */
1010 fullpath
= talloc_asprintf(ctx
, "\\%s\\%s", cli
->desthost
, sharename
);
1015 /* check for the referral */
1017 if (!NT_STATUS_IS_OK(cli_tcon_andx(cli
, "IPC$", "IPC", NULL
, 0))) {
1021 if (force_encrypt
) {
1022 NTSTATUS status
= cli_cm_force_encryption(cli
,
1027 if (!NT_STATUS_IS_OK(status
)) {
1032 res
= cli_dfs_get_referral(ctx
, cli
, fullpath
, &refs
, &num_refs
, &consumed
);
1034 if (!cli_tdis(cli
)) {
1040 if (!res
|| !num_refs
) {
1044 if (!refs
[0].dfspath
) {
1048 split_dfs_path(ctx
, refs
[0].dfspath
, pp_newserver
,
1049 pp_newshare
, &newextrapath
);
1051 if ((*pp_newserver
== NULL
) || (*pp_newshare
== NULL
)) {
1055 /* check that this is not a self-referral */
1057 if (strequal(cli
->desthost
, *pp_newserver
) &&
1058 strequal(sharename
, *pp_newshare
)) {