docs: mention --port in nmbd manpage.
[Samba.git] / source3 / smbd / msdfs.c
blobaede3e6da0b677634568da31423164c481b04a8b
1 /*
2 Unix SMB/Netbios implementation.
3 Version 3.0
4 MSDFS services for Samba
5 Copyright (C) Shirish Kalele 2000
6 Copyright (C) Jeremy Allison 2007
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/>.
23 #define DBGC_CLASS DBGC_MSDFS
24 #include "includes.h"
25 #include "system/filesys.h"
26 #include "smbd/smbd.h"
27 #include "smbd/globals.h"
28 #include "msdfs.h"
29 #include "auth.h"
30 #include "lib/param/loadparm.h"
31 #include "libcli/security/security.h"
32 #include "librpc/gen_ndr/ndr_dfsblobs.h"
34 /**********************************************************************
35 Parse a DFS pathname of the form \hostname\service\reqpath
36 into the dfs_path structure.
37 If POSIX pathnames is true, the pathname may also be of the
38 form /hostname/service/reqpath.
39 We cope with either here.
41 Unfortunately, due to broken clients who might set the
42 SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES bit and then
43 send a local path, we have to cope with that too....
45 If conn != NULL then ensure the provided service is
46 the one pointed to by the connection.
48 This version does everything using pointers within one copy of the
49 pathname string, talloced on the struct dfs_path pointer (which
50 must be talloced). This may be too clever to live....
51 JRA.
52 **********************************************************************/
54 static NTSTATUS parse_dfs_path(connection_struct *conn,
55 const char *pathname,
56 bool allow_wcards,
57 bool allow_broken_path,
58 struct dfs_path *pdp, /* MUST BE TALLOCED */
59 bool *ppath_contains_wcard)
61 char *pathname_local;
62 char *p,*temp;
63 char *servicename;
64 char *eos_ptr;
65 NTSTATUS status = NT_STATUS_OK;
66 char sepchar;
68 ZERO_STRUCTP(pdp);
71 * This is the only talloc we should need to do
72 * on the struct dfs_path. All the pointers inside
73 * it should point to offsets within this string.
76 pathname_local = talloc_strdup(pdp, pathname);
77 if (!pathname_local) {
78 return NT_STATUS_NO_MEMORY;
80 /* Get a pointer to the terminating '\0' */
81 eos_ptr = &pathname_local[strlen(pathname_local)];
82 p = temp = pathname_local;
84 pdp->posix_path = (lp_posix_pathnames() && *pathname == '/');
86 sepchar = pdp->posix_path ? '/' : '\\';
88 if (allow_broken_path && (*pathname != sepchar)) {
89 DEBUG(10,("parse_dfs_path: path %s doesn't start with %c\n",
90 pathname, sepchar ));
92 * Possibly client sent a local path by mistake.
93 * Try and convert to a local path.
96 pdp->hostname = eos_ptr; /* "" */
97 pdp->servicename = eos_ptr; /* "" */
99 /* We've got no info about separators. */
100 pdp->posix_path = lp_posix_pathnames();
101 p = temp;
102 DEBUG(10,("parse_dfs_path: trying to convert %s to a "
103 "local path\n",
104 temp));
105 goto local_path;
109 * Safe to use on talloc'ed string as it only shrinks.
110 * It also doesn't affect the eos_ptr.
112 trim_char(temp,sepchar,sepchar);
114 DEBUG(10,("parse_dfs_path: temp = |%s| after trimming %c's\n",
115 temp, sepchar));
117 /* Now tokenize. */
118 /* Parse out hostname. */
119 p = strchr_m(temp,sepchar);
120 if(p == NULL) {
121 DEBUG(10,("parse_dfs_path: can't parse hostname from path %s\n",
122 temp));
124 * Possibly client sent a local path by mistake.
125 * Try and convert to a local path.
128 pdp->hostname = eos_ptr; /* "" */
129 pdp->servicename = eos_ptr; /* "" */
131 p = temp;
132 DEBUG(10,("parse_dfs_path: trying to convert %s "
133 "to a local path\n",
134 temp));
135 goto local_path;
137 *p = '\0';
138 pdp->hostname = temp;
140 DEBUG(10,("parse_dfs_path: hostname: %s\n",pdp->hostname));
142 /* Parse out servicename. */
143 servicename = p+1;
144 p = strchr_m(servicename,sepchar);
145 if (p) {
146 *p = '\0';
149 /* Is this really our servicename ? */
150 if (conn && !( strequal(servicename, lp_servicename(talloc_tos(), SNUM(conn)))
151 || (strequal(servicename, HOMES_NAME)
152 && strequal(lp_servicename(talloc_tos(), SNUM(conn)),
153 get_current_username()) )) ) {
154 DEBUG(10,("parse_dfs_path: %s is not our servicename\n",
155 servicename));
158 * Possibly client sent a local path by mistake.
159 * Try and convert to a local path.
162 pdp->hostname = eos_ptr; /* "" */
163 pdp->servicename = eos_ptr; /* "" */
165 /* Repair the path - replace the sepchar's
166 we nulled out */
167 servicename--;
168 *servicename = sepchar;
169 if (p) {
170 *p = sepchar;
173 p = temp;
174 DEBUG(10,("parse_dfs_path: trying to convert %s "
175 "to a local path\n",
176 temp));
177 goto local_path;
180 pdp->servicename = servicename;
182 DEBUG(10,("parse_dfs_path: servicename: %s\n",pdp->servicename));
184 if(p == NULL) {
185 /* Client sent self referral \server\share. */
186 pdp->reqpath = eos_ptr; /* "" */
187 return NT_STATUS_OK;
190 p++;
192 local_path:
194 *ppath_contains_wcard = False;
196 pdp->reqpath = p;
198 /* Rest is reqpath. */
199 if (pdp->posix_path) {
200 status = check_path_syntax_posix(pdp->reqpath);
201 } else {
202 if (allow_wcards) {
203 status = check_path_syntax_wcard(pdp->reqpath,
204 ppath_contains_wcard);
205 } else {
206 status = check_path_syntax(pdp->reqpath);
210 if (!NT_STATUS_IS_OK(status)) {
211 DEBUG(10,("parse_dfs_path: '%s' failed with %s\n",
212 p, nt_errstr(status) ));
213 return status;
216 DEBUG(10,("parse_dfs_path: rest of the path: %s\n",pdp->reqpath));
217 return NT_STATUS_OK;
220 /********************************************************
221 Fake up a connection struct for the VFS layer, for use in
222 applications (such as the python bindings), that do not want the
223 global working directory changed under them.
224 *********************************************************/
226 NTSTATUS create_conn_struct(TALLOC_CTX *ctx,
227 struct tevent_context *ev,
228 struct messaging_context *msg,
229 connection_struct **pconn,
230 int snum,
231 const char *path,
232 const struct auth_session_info *session_info)
234 connection_struct *conn;
235 char *connpath;
236 const char *vfs_user;
237 struct smbd_server_connection *sconn;
238 const char *servicename = lp_const_servicename(snum);
240 sconn = talloc_zero(ctx, struct smbd_server_connection);
241 if (sconn == NULL) {
242 return NT_STATUS_NO_MEMORY;
245 sconn->ev_ctx = ev;
246 sconn->msg_ctx = msg;
247 sconn->sock = -1;
248 sconn->smb1.echo_handler.trusted_fd = -1;
249 sconn->smb1.echo_handler.socket_lock_fd = -1;
251 conn = conn_new(sconn);
252 if (conn == NULL) {
253 TALLOC_FREE(sconn);
254 return NT_STATUS_NO_MEMORY;
257 /* Now we have conn, we need to make sconn a child of conn,
258 * for a proper talloc tree */
259 talloc_steal(conn, sconn);
261 if (snum == -1 && servicename == NULL) {
262 servicename = "Unknown Service (snum == -1)";
265 connpath = talloc_strdup(conn, path);
266 if (!connpath) {
267 TALLOC_FREE(conn);
268 return NT_STATUS_NO_MEMORY;
270 connpath = talloc_string_sub(conn,
271 connpath,
272 "%S",
273 servicename);
274 if (!connpath) {
275 TALLOC_FREE(conn);
276 return NT_STATUS_NO_MEMORY;
279 /* needed for smbd_vfs_init() */
281 conn->params->service = snum;
282 conn->cnum = TID_FIELD_INVALID;
284 if (session_info != NULL) {
285 conn->session_info = copy_session_info(conn, session_info);
286 if (conn->session_info == NULL) {
287 DEBUG(0, ("copy_serverinfo failed\n"));
288 TALLOC_FREE(conn);
289 return NT_STATUS_NO_MEMORY;
291 vfs_user = conn->session_info->unix_info->unix_name;
292 } else {
293 /* use current authenticated user in absence of session_info */
294 vfs_user = get_current_username();
297 set_conn_connectpath(conn, connpath);
300 * New code to check if there's a share security descripter
301 * added from NT server manager. This is done after the
302 * smb.conf checks are done as we need a uid and token. JRA.
305 if (conn->session_info) {
306 share_access_check(conn->session_info->security_token,
307 servicename,
308 MAXIMUM_ALLOWED_ACCESS,
309 &conn->share_access);
311 if ((conn->share_access & FILE_WRITE_DATA) == 0) {
312 if ((conn->share_access & FILE_READ_DATA) == 0) {
313 /* No access, read or write. */
314 DEBUG(0,("create_conn_struct: connection to %s "
315 "denied due to security "
316 "descriptor.\n",
317 servicename));
318 conn_free(conn);
319 return NT_STATUS_ACCESS_DENIED;
320 } else {
321 conn->read_only = true;
324 } else {
325 conn->share_access = 0;
326 conn->read_only = true;
329 if (!smbd_vfs_init(conn)) {
330 NTSTATUS status = map_nt_error_from_unix(errno);
331 DEBUG(0,("create_conn_struct: smbd_vfs_init failed.\n"));
332 conn_free(conn);
333 return status;
336 /* this must be the first filesystem operation that we do */
337 if (SMB_VFS_CONNECT(conn, servicename, vfs_user) < 0) {
338 DEBUG(0,("VFS connect failed!\n"));
339 conn_free(conn);
340 return NT_STATUS_UNSUCCESSFUL;
343 conn->fs_capabilities = SMB_VFS_FS_CAPABILITIES(conn, &conn->ts_res);
344 *pconn = conn;
346 return NT_STATUS_OK;
349 /********************************************************
350 Fake up a connection struct for the VFS layer.
351 Note: this performs a vfs connect and CHANGES CWD !!!! JRA.
353 The old working directory is returned on *poldcwd, allocated on ctx.
354 *********************************************************/
356 NTSTATUS create_conn_struct_cwd(TALLOC_CTX *ctx,
357 struct tevent_context *ev,
358 struct messaging_context *msg,
359 connection_struct **pconn,
360 int snum,
361 const char *path,
362 const struct auth_session_info *session_info,
363 char **poldcwd)
365 connection_struct *conn;
366 char *oldcwd;
368 NTSTATUS status = create_conn_struct(ctx, ev,
369 msg, &conn,
370 snum, path,
371 session_info);
372 if (!NT_STATUS_IS_OK(status)) {
373 return status;
377 * Windows seems to insist on doing trans2getdfsreferral() calls on
378 * the IPC$ share as the anonymous user. If we try to chdir as that
379 * user we will fail.... WTF ? JRA.
382 oldcwd = vfs_GetWd(ctx, conn);
383 if (oldcwd == NULL) {
384 status = map_nt_error_from_unix(errno);
385 DEBUG(3, ("vfs_GetWd failed: %s\n", strerror(errno)));
386 conn_free(conn);
387 return status;
390 if (vfs_ChDir(conn,conn->connectpath) != 0) {
391 status = map_nt_error_from_unix(errno);
392 DEBUG(3,("create_conn_struct: Can't ChDir to new conn path %s. "
393 "Error was %s\n",
394 conn->connectpath, strerror(errno) ));
395 conn_free(conn);
396 return status;
399 *pconn = conn;
400 *poldcwd = oldcwd;
402 return NT_STATUS_OK;
405 /**********************************************************************
406 Parse the contents of a symlink to verify if it is an msdfs referral
407 A valid referral is of the form:
409 msdfs:server1\share1,server2\share2
410 msdfs:server1\share1\pathname,server2\share2\pathname
411 msdfs:server1/share1,server2/share2
412 msdfs:server1/share1/pathname,server2/share2/pathname.
414 Note that the alternate paths returned here must be of the canonicalized
415 form:
417 \server\share or
418 \server\share\path\to\file,
420 even in posix path mode. This is because we have no knowledge if the
421 server we're referring to understands posix paths.
422 **********************************************************************/
424 static bool parse_msdfs_symlink(TALLOC_CTX *ctx,
425 const char *target,
426 struct referral **preflist,
427 int *refcount)
429 char *temp = NULL;
430 char *prot;
431 char **alt_path = NULL;
432 int count = 0, i;
433 struct referral *reflist;
434 char *saveptr;
436 temp = talloc_strdup(ctx, target);
437 if (!temp) {
438 return False;
440 prot = strtok_r(temp, ":", &saveptr);
441 if (!prot) {
442 DEBUG(0,("parse_msdfs_symlink: invalid path !\n"));
443 return False;
446 alt_path = talloc_array(ctx, char *, MAX_REFERRAL_COUNT);
447 if (!alt_path) {
448 return False;
451 /* parse out the alternate paths */
452 while((count<MAX_REFERRAL_COUNT) &&
453 ((alt_path[count] = strtok_r(NULL, ",", &saveptr)) != NULL)) {
454 count++;
457 DEBUG(10,("parse_msdfs_symlink: count=%d\n", count));
459 if (count) {
460 reflist = *preflist = talloc_zero_array(ctx,
461 struct referral, count);
462 if(reflist == NULL) {
463 TALLOC_FREE(alt_path);
464 return False;
466 } else {
467 reflist = *preflist = NULL;
470 for(i=0;i<count;i++) {
471 char *p;
473 /* Canonicalize link target.
474 * Replace all /'s in the path by a \ */
475 string_replace(alt_path[i], '/', '\\');
477 /* Remove leading '\\'s */
478 p = alt_path[i];
479 while (*p && (*p == '\\')) {
480 p++;
483 reflist[i].alternate_path = talloc_asprintf(ctx,
484 "\\%s",
486 if (!reflist[i].alternate_path) {
487 return False;
490 reflist[i].proximity = 0;
491 reflist[i].ttl = REFERRAL_TTL;
492 DEBUG(10, ("parse_msdfs_symlink: Created alt path: %s\n",
493 reflist[i].alternate_path));
496 *refcount = count;
498 TALLOC_FREE(alt_path);
499 return True;
502 /**********************************************************************
503 Returns true if the unix path is a valid msdfs symlink and also
504 returns the target string from inside the link.
505 **********************************************************************/
507 static bool is_msdfs_link_internal(TALLOC_CTX *ctx,
508 connection_struct *conn,
509 const char *path,
510 char **pp_link_target,
511 SMB_STRUCT_STAT *sbufp)
513 int referral_len = 0;
514 #if defined(HAVE_BROKEN_READLINK)
515 char link_target_buf[PATH_MAX];
516 #else
517 char link_target_buf[7];
518 #endif
519 size_t bufsize = 0;
520 char *link_target = NULL;
521 struct smb_filename smb_fname;
523 if (pp_link_target) {
524 bufsize = 1024;
525 link_target = talloc_array(ctx, char, bufsize);
526 if (!link_target) {
527 return False;
529 *pp_link_target = link_target;
530 } else {
531 bufsize = sizeof(link_target_buf);
532 link_target = link_target_buf;
535 ZERO_STRUCT(smb_fname);
536 smb_fname.base_name = discard_const_p(char, path);
538 if (SMB_VFS_LSTAT(conn, &smb_fname) != 0) {
539 DEBUG(5,("is_msdfs_link_read_target: %s does not exist.\n",
540 path));
541 goto err;
543 if (!S_ISLNK(smb_fname.st.st_ex_mode)) {
544 DEBUG(5,("is_msdfs_link_read_target: %s is not a link.\n",
545 path));
546 goto err;
548 if (sbufp != NULL) {
549 *sbufp = smb_fname.st;
552 referral_len = SMB_VFS_READLINK(conn, path, link_target, bufsize - 1);
553 if (referral_len == -1) {
554 DEBUG(0,("is_msdfs_link_read_target: Error reading "
555 "msdfs link %s: %s\n",
556 path, strerror(errno)));
557 goto err;
559 link_target[referral_len] = '\0';
561 DEBUG(5,("is_msdfs_link_internal: %s -> %s\n",path,
562 link_target));
564 if (!strnequal(link_target, "msdfs:", 6)) {
565 goto err;
567 return True;
569 err:
571 if (link_target != link_target_buf) {
572 TALLOC_FREE(link_target);
574 return False;
577 /**********************************************************************
578 Returns true if the unix path is a valid msdfs symlink.
579 **********************************************************************/
581 bool is_msdfs_link(connection_struct *conn,
582 const char *path,
583 SMB_STRUCT_STAT *sbufp)
585 return is_msdfs_link_internal(talloc_tos(),
586 conn,
587 path,
588 NULL,
589 sbufp);
592 /*****************************************************************
593 Used by other functions to decide if a dfs path is remote,
594 and to get the list of referred locations for that remote path.
596 search_flag: For findfirsts, dfs links themselves are not
597 redirected, but paths beyond the links are. For normal smb calls,
598 even dfs links need to be redirected.
600 consumedcntp: how much of the dfs path is being redirected. the client
601 should try the remaining path on the redirected server.
603 If this returns NT_STATUS_PATH_NOT_COVERED the contents of the msdfs
604 link redirect are in targetpath.
605 *****************************************************************/
607 static NTSTATUS dfs_path_lookup(TALLOC_CTX *ctx,
608 connection_struct *conn,
609 const char *dfspath, /* Incoming complete dfs path */
610 const struct dfs_path *pdp, /* Parsed out
611 server+share+extrapath. */
612 bool search_flag, /* Called from a findfirst ? */
613 int *consumedcntp,
614 char **pp_targetpath)
616 char *p = NULL;
617 char *q = NULL;
618 NTSTATUS status;
619 struct smb_filename *smb_fname = NULL;
620 char *canon_dfspath = NULL; /* Canonicalized dfs path. (only '/'
621 components). */
623 DEBUG(10,("dfs_path_lookup: Conn path = %s reqpath = %s\n",
624 conn->connectpath, pdp->reqpath));
627 * Note the unix path conversion here we're doing we
628 * throw away. We're looking for a symlink for a dfs
629 * resolution, if we don't find it we'll do another
630 * unix_convert later in the codepath.
633 status = unix_convert(ctx, conn, pdp->reqpath, &smb_fname,
634 search_flag ? UCF_ALWAYS_ALLOW_WCARD_LCOMP : 0);
636 if (!NT_STATUS_IS_OK(status)) {
637 if (!NT_STATUS_EQUAL(status,
638 NT_STATUS_OBJECT_PATH_NOT_FOUND)) {
639 return status;
641 if (smb_fname == NULL || smb_fname->base_name == NULL) {
642 return status;
646 /* Optimization - check if we can redirect the whole path. */
648 if (is_msdfs_link_internal(ctx, conn, smb_fname->base_name,
649 pp_targetpath, NULL)) {
650 if (search_flag) {
651 DEBUG(6,("dfs_path_lookup (FindFirst) No redirection "
652 "for dfs link %s.\n", dfspath));
653 status = NT_STATUS_OK;
654 goto out;
657 DEBUG(6,("dfs_path_lookup: %s resolves to a "
658 "valid dfs link %s.\n", dfspath,
659 pp_targetpath ? *pp_targetpath : ""));
661 if (consumedcntp) {
662 *consumedcntp = strlen(dfspath);
664 status = NT_STATUS_PATH_NOT_COVERED;
665 goto out;
668 /* Prepare to test only for '/' components in the given path,
669 * so if a Windows path replace all '\\' characters with '/'.
670 * For a POSIX DFS path we know all separators are already '/'. */
672 canon_dfspath = talloc_strdup(ctx, dfspath);
673 if (!canon_dfspath) {
674 status = NT_STATUS_NO_MEMORY;
675 goto out;
677 if (!pdp->posix_path) {
678 string_replace(canon_dfspath, '\\', '/');
682 * localpath comes out of unix_convert, so it has
683 * no trailing backslash. Make sure that canon_dfspath hasn't either.
684 * Fix for bug #4860 from Jan Martin <Jan.Martin@rwedea.com>.
687 trim_char(canon_dfspath,0,'/');
690 * Redirect if any component in the path is a link.
691 * We do this by walking backwards through the
692 * local path, chopping off the last component
693 * in both the local path and the canonicalized
694 * DFS path. If we hit a DFS link then we're done.
697 p = strrchr_m(smb_fname->base_name, '/');
698 if (consumedcntp) {
699 q = strrchr_m(canon_dfspath, '/');
702 while (p) {
703 *p = '\0';
704 if (q) {
705 *q = '\0';
708 if (is_msdfs_link_internal(ctx, conn,
709 smb_fname->base_name, pp_targetpath,
710 NULL)) {
711 DEBUG(4, ("dfs_path_lookup: Redirecting %s because "
712 "parent %s is dfs link\n", dfspath,
713 smb_fname_str_dbg(smb_fname)));
715 if (consumedcntp) {
716 *consumedcntp = strlen(canon_dfspath);
717 DEBUG(10, ("dfs_path_lookup: Path consumed: %s "
718 "(%d)\n",
719 canon_dfspath,
720 *consumedcntp));
723 status = NT_STATUS_PATH_NOT_COVERED;
724 goto out;
727 /* Step back on the filesystem. */
728 p = strrchr_m(smb_fname->base_name, '/');
730 if (consumedcntp) {
731 /* And in the canonicalized dfs path. */
732 q = strrchr_m(canon_dfspath, '/');
736 status = NT_STATUS_OK;
737 out:
738 TALLOC_FREE(smb_fname);
739 return status;
742 /*****************************************************************
743 Decides if a dfs pathname should be redirected or not.
744 If not, the pathname is converted to a tcon-relative local unix path
746 search_wcard_flag: this flag performs 2 functions both related
747 to searches. See resolve_dfs_path() and parse_dfs_path_XX()
748 for details.
750 This function can return NT_STATUS_OK, meaning use the returned path as-is
751 (mapped into a local path).
752 or NT_STATUS_NOT_COVERED meaning return a DFS redirect, or
753 any other NT_STATUS error which is a genuine error to be
754 returned to the client.
755 *****************************************************************/
757 static NTSTATUS dfs_redirect(TALLOC_CTX *ctx,
758 connection_struct *conn,
759 const char *path_in,
760 bool search_wcard_flag,
761 bool allow_broken_path,
762 char **pp_path_out,
763 bool *ppath_contains_wcard)
765 NTSTATUS status;
766 struct dfs_path *pdp = talloc(ctx, struct dfs_path);
768 if (!pdp) {
769 return NT_STATUS_NO_MEMORY;
772 status = parse_dfs_path(conn, path_in, search_wcard_flag,
773 allow_broken_path, pdp,
774 ppath_contains_wcard);
775 if (!NT_STATUS_IS_OK(status)) {
776 TALLOC_FREE(pdp);
777 return status;
780 if (pdp->reqpath[0] == '\0') {
781 TALLOC_FREE(pdp);
782 *pp_path_out = talloc_strdup(ctx, "");
783 if (!*pp_path_out) {
784 return NT_STATUS_NO_MEMORY;
786 DEBUG(5,("dfs_redirect: self-referral.\n"));
787 return NT_STATUS_OK;
790 /* If dfs pathname for a non-dfs share, convert to tcon-relative
791 path and return OK */
793 if (!lp_msdfs_root(SNUM(conn))) {
794 *pp_path_out = talloc_strdup(ctx, pdp->reqpath);
795 TALLOC_FREE(pdp);
796 if (!*pp_path_out) {
797 return NT_STATUS_NO_MEMORY;
799 return NT_STATUS_OK;
802 /* If it looked like a local path (zero hostname/servicename)
803 * just treat as a tcon-relative path. */
805 if (pdp->hostname[0] == '\0' && pdp->servicename[0] == '\0') {
806 *pp_path_out = talloc_strdup(ctx, pdp->reqpath);
807 TALLOC_FREE(pdp);
808 if (!*pp_path_out) {
809 return NT_STATUS_NO_MEMORY;
811 return NT_STATUS_OK;
814 if (!( strequal(pdp->servicename, lp_servicename(talloc_tos(), SNUM(conn)))
815 || (strequal(pdp->servicename, HOMES_NAME)
816 && strequal(lp_servicename(talloc_tos(), SNUM(conn)),
817 conn->session_info->unix_info->sanitized_username) )) ) {
819 /* The given sharename doesn't match this connection. */
820 TALLOC_FREE(pdp);
822 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
825 status = dfs_path_lookup(ctx, conn, path_in, pdp,
826 search_wcard_flag, NULL, NULL);
827 if (!NT_STATUS_IS_OK(status)) {
828 if (NT_STATUS_EQUAL(status, NT_STATUS_PATH_NOT_COVERED)) {
829 DEBUG(3,("dfs_redirect: Redirecting %s\n", path_in));
830 } else {
831 DEBUG(10,("dfs_redirect: dfs_path_lookup "
832 "failed for %s with %s\n",
833 path_in, nt_errstr(status) ));
835 return status;
838 DEBUG(3,("dfs_redirect: Not redirecting %s.\n", path_in));
840 /* Form non-dfs tcon-relative path */
841 *pp_path_out = talloc_strdup(ctx, pdp->reqpath);
842 TALLOC_FREE(pdp);
843 if (!*pp_path_out) {
844 return NT_STATUS_NO_MEMORY;
847 DEBUG(3,("dfs_redirect: Path %s converted to non-dfs path %s\n",
848 path_in,
849 *pp_path_out));
851 return NT_STATUS_OK;
854 /**********************************************************************
855 Return a self referral.
856 **********************************************************************/
858 static NTSTATUS self_ref(TALLOC_CTX *ctx,
859 const char *dfs_path,
860 struct junction_map *jucn,
861 int *consumedcntp,
862 bool *self_referralp)
864 struct referral *ref;
866 *self_referralp = True;
868 jucn->referral_count = 1;
869 if((ref = talloc_zero(ctx, struct referral)) == NULL) {
870 return NT_STATUS_NO_MEMORY;
873 ref->alternate_path = talloc_strdup(ctx, dfs_path);
874 if (!ref->alternate_path) {
875 TALLOC_FREE(ref);
876 return NT_STATUS_NO_MEMORY;
878 ref->proximity = 0;
879 ref->ttl = REFERRAL_TTL;
880 jucn->referral_list = ref;
881 *consumedcntp = strlen(dfs_path);
882 return NT_STATUS_OK;
885 /**********************************************************************
886 Gets valid referrals for a dfs path and fills up the
887 junction_map structure.
888 **********************************************************************/
890 NTSTATUS get_referred_path(TALLOC_CTX *ctx,
891 const char *dfs_path,
892 bool allow_broken_path,
893 struct junction_map *jucn,
894 int *consumedcntp,
895 bool *self_referralp)
897 struct connection_struct *conn;
898 char *targetpath = NULL;
899 int snum;
900 NTSTATUS status = NT_STATUS_NOT_FOUND;
901 bool dummy;
902 struct dfs_path *pdp = talloc(ctx, struct dfs_path);
903 char *oldpath;
905 if (!pdp) {
906 return NT_STATUS_NO_MEMORY;
909 *self_referralp = False;
911 status = parse_dfs_path(NULL, dfs_path, False, allow_broken_path,
912 pdp, &dummy);
913 if (!NT_STATUS_IS_OK(status)) {
914 return status;
917 jucn->service_name = talloc_strdup(ctx, pdp->servicename);
918 jucn->volume_name = talloc_strdup(ctx, pdp->reqpath);
919 if (!jucn->service_name || !jucn->volume_name) {
920 TALLOC_FREE(pdp);
921 return NT_STATUS_NO_MEMORY;
924 /* Verify the share is a dfs root */
925 snum = lp_servicenumber(jucn->service_name);
926 if(snum < 0) {
927 char *service_name = NULL;
928 if ((snum = find_service(ctx, jucn->service_name, &service_name)) < 0) {
929 return NT_STATUS_NOT_FOUND;
931 if (!service_name) {
932 return NT_STATUS_NO_MEMORY;
934 TALLOC_FREE(jucn->service_name);
935 jucn->service_name = talloc_strdup(ctx, service_name);
936 if (!jucn->service_name) {
937 TALLOC_FREE(pdp);
938 return NT_STATUS_NO_MEMORY;
942 if (!lp_msdfs_root(snum) && (*lp_msdfs_proxy(talloc_tos(), snum) == '\0')) {
943 DEBUG(3,("get_referred_path: |%s| in dfs path %s is not "
944 "a dfs root.\n",
945 pdp->servicename, dfs_path));
946 TALLOC_FREE(pdp);
947 return NT_STATUS_NOT_FOUND;
951 * Self referrals are tested with a anonymous IPC connection and
952 * a GET_DFS_REFERRAL call to \\server\share. (which means
953 * dp.reqpath[0] points to an empty string). create_conn_struct cd's
954 * into the directory and will fail if it cannot (as the anonymous
955 * user). Cope with this.
958 if (pdp->reqpath[0] == '\0') {
959 char *tmp;
960 struct referral *ref;
961 int refcount;
963 if (*lp_msdfs_proxy(talloc_tos(), snum) == '\0') {
964 TALLOC_FREE(pdp);
965 return self_ref(ctx,
966 dfs_path,
967 jucn,
968 consumedcntp,
969 self_referralp);
973 * It's an msdfs proxy share. Redirect to
974 * the configured target share.
977 tmp = talloc_asprintf(talloc_tos(), "msdfs:%s",
978 lp_msdfs_proxy(talloc_tos(), snum));
979 if (tmp == NULL) {
980 TALLOC_FREE(pdp);
981 return NT_STATUS_NO_MEMORY;
984 if (!parse_msdfs_symlink(ctx, tmp, &ref, &refcount)) {
985 TALLOC_FREE(tmp);
986 TALLOC_FREE(pdp);
987 return NT_STATUS_INVALID_PARAMETER;
989 TALLOC_FREE(tmp);
990 jucn->referral_count = refcount;
991 jucn->referral_list = ref;
992 *consumedcntp = strlen(dfs_path);
993 TALLOC_FREE(pdp);
994 return NT_STATUS_OK;
997 status = create_conn_struct_cwd(ctx,
998 server_event_context(),
999 server_messaging_context(),
1000 &conn, snum,
1001 lp_pathname(talloc_tos(), snum), NULL, &oldpath);
1002 if (!NT_STATUS_IS_OK(status)) {
1003 TALLOC_FREE(pdp);
1004 return status;
1007 /* If this is a DFS path dfs_lookup should return
1008 * NT_STATUS_PATH_NOT_COVERED. */
1010 status = dfs_path_lookup(ctx, conn, dfs_path, pdp,
1011 False, consumedcntp, &targetpath);
1013 if (!NT_STATUS_EQUAL(status, NT_STATUS_PATH_NOT_COVERED)) {
1014 DEBUG(3,("get_referred_path: No valid referrals for path %s\n",
1015 dfs_path));
1016 if (NT_STATUS_IS_OK(status)) {
1018 * We are in an error path here (we
1019 * know it's not a DFS path), but
1020 * dfs_path_lookup() can return
1021 * NT_STATUS_OK. Ensure we always
1022 * return a valid error code.
1024 * #9588 - ACLs are not inherited to directories
1025 * for DFS shares.
1027 status = NT_STATUS_NOT_FOUND;
1029 goto err_exit;
1032 /* We know this is a valid dfs link. Parse the targetpath. */
1033 if (!parse_msdfs_symlink(ctx, targetpath,
1034 &jucn->referral_list,
1035 &jucn->referral_count)) {
1036 DEBUG(3,("get_referred_path: failed to parse symlink "
1037 "target %s\n", targetpath ));
1038 status = NT_STATUS_NOT_FOUND;
1039 goto err_exit;
1042 status = NT_STATUS_OK;
1043 err_exit:
1044 vfs_ChDir(conn, oldpath);
1045 SMB_VFS_DISCONNECT(conn);
1046 conn_free(conn);
1047 TALLOC_FREE(pdp);
1048 return status;
1051 /******************************************************************
1052 Set up the DFS referral for the dfs pathname. This call returns
1053 the amount of the path covered by this server, and where the
1054 client should be redirected to. This is the meat of the
1055 TRANS2_GET_DFS_REFERRAL call.
1056 ******************************************************************/
1058 int setup_dfs_referral(connection_struct *orig_conn,
1059 const char *dfs_path,
1060 int max_referral_level,
1061 char **ppdata, NTSTATUS *pstatus)
1063 char *pdata = *ppdata;
1064 int reply_size = 0;
1065 struct dfs_GetDFSReferral *r;
1066 DATA_BLOB blob = data_blob_null;
1067 NTSTATUS status;
1068 enum ndr_err_code ndr_err;
1070 r = talloc_zero(talloc_tos(), struct dfs_GetDFSReferral);
1071 if (r == NULL) {
1072 *pstatus = NT_STATUS_NO_MEMORY;
1073 return -1;
1076 r->in.req.max_referral_level = max_referral_level;
1077 r->in.req.servername = talloc_strdup(r, dfs_path);
1078 if (r->in.req.servername == NULL) {
1079 talloc_free(r);
1080 *pstatus = NT_STATUS_NO_MEMORY;
1081 return -1;
1084 status = SMB_VFS_GET_DFS_REFERRALS(orig_conn, r);
1085 if (!NT_STATUS_IS_OK(status)) {
1086 talloc_free(r);
1087 *pstatus = status;
1088 return -1;
1091 ndr_err = ndr_push_struct_blob(&blob, r,
1092 r->out.resp,
1093 (ndr_push_flags_fn_t)ndr_push_dfs_referral_resp);
1094 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
1095 TALLOC_FREE(r);
1096 *pstatus = NT_STATUS_INVALID_PARAMETER;
1097 return -1;
1100 pdata = (char *)SMB_REALLOC(pdata, blob.length);
1101 if(pdata == NULL) {
1102 TALLOC_FREE(r);
1103 DEBUG(0,("referral setup:"
1104 "malloc failed for Realloc!\n"));
1105 return -1;
1107 *ppdata = pdata;
1108 reply_size = blob.length;
1109 memcpy(pdata, blob.data, blob.length);
1110 TALLOC_FREE(r);
1112 *pstatus = NT_STATUS_OK;
1113 return reply_size;
1116 /**********************************************************************
1117 The following functions are called by the NETDFS RPC pipe functions
1118 **********************************************************************/
1120 /*********************************************************************
1121 Creates a junction structure from a DFS pathname
1122 **********************************************************************/
1124 bool create_junction(TALLOC_CTX *ctx,
1125 const char *dfs_path,
1126 bool allow_broken_path,
1127 struct junction_map *jucn)
1129 int snum;
1130 bool dummy;
1131 struct dfs_path *pdp = talloc(ctx,struct dfs_path);
1132 NTSTATUS status;
1134 if (!pdp) {
1135 return False;
1137 status = parse_dfs_path(NULL, dfs_path, False, allow_broken_path,
1138 pdp, &dummy);
1139 if (!NT_STATUS_IS_OK(status)) {
1140 return False;
1143 /* check if path is dfs : validate first token */
1144 if (!is_myname_or_ipaddr(pdp->hostname)) {
1145 DEBUG(4,("create_junction: Invalid hostname %s "
1146 "in dfs path %s\n",
1147 pdp->hostname, dfs_path));
1148 TALLOC_FREE(pdp);
1149 return False;
1152 /* Check for a non-DFS share */
1153 snum = lp_servicenumber(pdp->servicename);
1155 if(snum < 0 || !lp_msdfs_root(snum)) {
1156 DEBUG(4,("create_junction: %s is not an msdfs root.\n",
1157 pdp->servicename));
1158 TALLOC_FREE(pdp);
1159 return False;
1162 jucn->service_name = talloc_strdup(ctx, pdp->servicename);
1163 jucn->volume_name = talloc_strdup(ctx, pdp->reqpath);
1164 jucn->comment = lp_comment(ctx, snum);
1166 TALLOC_FREE(pdp);
1167 if (!jucn->service_name || !jucn->volume_name || ! jucn->comment) {
1168 return False;
1170 return True;
1173 /**********************************************************************
1174 Forms a valid Unix pathname from the junction
1175 **********************************************************************/
1177 static bool junction_to_local_path(const struct junction_map *jucn,
1178 char **pp_path_out,
1179 connection_struct **conn_out,
1180 char **oldpath)
1182 int snum;
1183 NTSTATUS status;
1185 snum = lp_servicenumber(jucn->service_name);
1186 if(snum < 0) {
1187 return False;
1189 status = create_conn_struct_cwd(talloc_tos(),
1190 server_event_context(),
1191 server_messaging_context(),
1192 conn_out,
1193 snum, lp_pathname(talloc_tos(), snum), NULL, oldpath);
1194 if (!NT_STATUS_IS_OK(status)) {
1195 return False;
1198 *pp_path_out = talloc_asprintf(*conn_out,
1199 "%s/%s",
1200 lp_pathname(talloc_tos(), snum),
1201 jucn->volume_name);
1202 if (!*pp_path_out) {
1203 vfs_ChDir(*conn_out, *oldpath);
1204 SMB_VFS_DISCONNECT(*conn_out);
1205 conn_free(*conn_out);
1206 return False;
1208 return True;
1211 bool create_msdfs_link(const struct junction_map *jucn)
1213 char *path = NULL;
1214 char *cwd;
1215 char *msdfs_link = NULL;
1216 connection_struct *conn;
1217 int i=0;
1218 bool insert_comma = False;
1219 bool ret = False;
1221 if(!junction_to_local_path(jucn, &path, &conn, &cwd)) {
1222 return False;
1225 /* Form the msdfs_link contents */
1226 msdfs_link = talloc_strdup(conn, "msdfs:");
1227 if (!msdfs_link) {
1228 goto out;
1230 for(i=0; i<jucn->referral_count; i++) {
1231 char *refpath = jucn->referral_list[i].alternate_path;
1233 /* Alternate paths always use Windows separators. */
1234 trim_char(refpath, '\\', '\\');
1235 if(*refpath == '\0') {
1236 if (i == 0) {
1237 insert_comma = False;
1239 continue;
1241 if (i > 0 && insert_comma) {
1242 msdfs_link = talloc_asprintf_append_buffer(msdfs_link,
1243 ",%s",
1244 refpath);
1245 } else {
1246 msdfs_link = talloc_asprintf_append_buffer(msdfs_link,
1247 "%s",
1248 refpath);
1251 if (!msdfs_link) {
1252 goto out;
1254 if (!insert_comma) {
1255 insert_comma = True;
1259 DEBUG(5,("create_msdfs_link: Creating new msdfs link: %s -> %s\n",
1260 path, msdfs_link));
1262 if(SMB_VFS_SYMLINK(conn, msdfs_link, path) < 0) {
1263 if (errno == EEXIST) {
1264 struct smb_filename *smb_fname;
1266 smb_fname = synthetic_smb_fname(talloc_tos(), path,
1267 NULL, NULL);
1268 if (smb_fname == NULL) {
1269 errno = ENOMEM;
1270 goto out;
1273 if(SMB_VFS_UNLINK(conn, smb_fname)!=0) {
1274 TALLOC_FREE(smb_fname);
1275 goto out;
1277 TALLOC_FREE(smb_fname);
1279 if (SMB_VFS_SYMLINK(conn, msdfs_link, path) < 0) {
1280 DEBUG(1,("create_msdfs_link: symlink failed "
1281 "%s -> %s\nError: %s\n",
1282 path, msdfs_link, strerror(errno)));
1283 goto out;
1287 ret = True;
1289 out:
1290 vfs_ChDir(conn, cwd);
1291 SMB_VFS_DISCONNECT(conn);
1292 conn_free(conn);
1293 return ret;
1296 bool remove_msdfs_link(const struct junction_map *jucn)
1298 char *path = NULL;
1299 char *cwd;
1300 connection_struct *conn;
1301 bool ret = False;
1302 struct smb_filename *smb_fname;
1304 if (!junction_to_local_path(jucn, &path, &conn, &cwd)) {
1305 return false;
1308 smb_fname = synthetic_smb_fname(talloc_tos(), path, NULL, NULL);
1309 if (smb_fname == NULL) {
1310 errno = ENOMEM;
1311 return false;
1314 if( SMB_VFS_UNLINK(conn, smb_fname) == 0 ) {
1315 ret = True;
1318 TALLOC_FREE(smb_fname);
1319 vfs_ChDir(conn, cwd);
1320 SMB_VFS_DISCONNECT(conn);
1321 conn_free(conn);
1322 return ret;
1325 /*********************************************************************
1326 Return the number of DFS links at the root of this share.
1327 *********************************************************************/
1329 static int count_dfs_links(TALLOC_CTX *ctx, int snum)
1331 size_t cnt = 0;
1332 DIR *dirp = NULL;
1333 const char *dname = NULL;
1334 char *talloced = NULL;
1335 const char *connect_path = lp_pathname(talloc_tos(), snum);
1336 const char *msdfs_proxy = lp_msdfs_proxy(talloc_tos(), snum);
1337 connection_struct *conn;
1338 NTSTATUS status;
1339 char *cwd;
1341 if(*connect_path == '\0') {
1342 return 0;
1346 * Fake up a connection struct for the VFS layer.
1349 status = create_conn_struct_cwd(talloc_tos(),
1350 server_event_context(),
1351 server_messaging_context(),
1352 &conn,
1353 snum, connect_path, NULL, &cwd);
1354 if (!NT_STATUS_IS_OK(status)) {
1355 DEBUG(3, ("create_conn_struct failed: %s\n",
1356 nt_errstr(status)));
1357 return 0;
1360 /* Count a link for the msdfs root - convention */
1361 cnt = 1;
1363 /* No more links if this is an msdfs proxy. */
1364 if (*msdfs_proxy != '\0') {
1365 goto out;
1368 /* Now enumerate all dfs links */
1369 dirp = SMB_VFS_OPENDIR(conn, ".", NULL, 0);
1370 if(!dirp) {
1371 goto out;
1374 while ((dname = vfs_readdirname(conn, dirp, NULL, &talloced))
1375 != NULL) {
1376 if (is_msdfs_link(conn,
1377 dname,
1378 NULL)) {
1379 cnt++;
1381 TALLOC_FREE(talloced);
1384 SMB_VFS_CLOSEDIR(conn,dirp);
1386 out:
1387 vfs_ChDir(conn, cwd);
1388 SMB_VFS_DISCONNECT(conn);
1389 conn_free(conn);
1390 return cnt;
1393 /*********************************************************************
1394 *********************************************************************/
1396 static int form_junctions(TALLOC_CTX *ctx,
1397 int snum,
1398 struct junction_map *jucn,
1399 size_t jn_remain)
1401 size_t cnt = 0;
1402 DIR *dirp = NULL;
1403 const char *dname = NULL;
1404 char *talloced = NULL;
1405 const char *connect_path = lp_pathname(talloc_tos(), snum);
1406 char *service_name = lp_servicename(talloc_tos(), snum);
1407 const char *msdfs_proxy = lp_msdfs_proxy(talloc_tos(), snum);
1408 connection_struct *conn;
1409 struct referral *ref = NULL;
1410 char *cwd;
1411 NTSTATUS status;
1413 if (jn_remain == 0) {
1414 return 0;
1417 if(*connect_path == '\0') {
1418 return 0;
1422 * Fake up a connection struct for the VFS layer.
1425 status = create_conn_struct_cwd(ctx,
1426 server_event_context(),
1427 server_messaging_context(),
1428 &conn, snum, connect_path, NULL,
1429 &cwd);
1430 if (!NT_STATUS_IS_OK(status)) {
1431 DEBUG(3, ("create_conn_struct failed: %s\n",
1432 nt_errstr(status)));
1433 return 0;
1436 /* form a junction for the msdfs root - convention
1437 DO NOT REMOVE THIS: NT clients will not work with us
1438 if this is not present
1440 jucn[cnt].service_name = talloc_strdup(ctx,service_name);
1441 jucn[cnt].volume_name = talloc_strdup(ctx, "");
1442 if (!jucn[cnt].service_name || !jucn[cnt].volume_name) {
1443 goto out;
1445 jucn[cnt].comment = "";
1446 jucn[cnt].referral_count = 1;
1448 ref = jucn[cnt].referral_list = talloc_zero(ctx, struct referral);
1449 if (jucn[cnt].referral_list == NULL) {
1450 goto out;
1453 ref->proximity = 0;
1454 ref->ttl = REFERRAL_TTL;
1455 if (*msdfs_proxy != '\0') {
1456 ref->alternate_path = talloc_strdup(ctx,
1457 msdfs_proxy);
1458 } else {
1459 ref->alternate_path = talloc_asprintf(ctx,
1460 "\\\\%s\\%s",
1461 get_local_machine_name(),
1462 service_name);
1465 if (!ref->alternate_path) {
1466 goto out;
1468 cnt++;
1470 /* Don't enumerate if we're an msdfs proxy. */
1471 if (*msdfs_proxy != '\0') {
1472 goto out;
1475 /* Now enumerate all dfs links */
1476 dirp = SMB_VFS_OPENDIR(conn, ".", NULL, 0);
1477 if(!dirp) {
1478 goto out;
1481 while ((dname = vfs_readdirname(conn, dirp, NULL, &talloced))
1482 != NULL) {
1483 char *link_target = NULL;
1484 if (cnt >= jn_remain) {
1485 DEBUG(2, ("form_junctions: ran out of MSDFS "
1486 "junction slots"));
1487 TALLOC_FREE(talloced);
1488 goto out;
1490 if (is_msdfs_link_internal(ctx,
1491 conn,
1492 dname, &link_target,
1493 NULL)) {
1494 if (parse_msdfs_symlink(ctx,
1495 link_target,
1496 &jucn[cnt].referral_list,
1497 &jucn[cnt].referral_count)) {
1499 jucn[cnt].service_name = talloc_strdup(ctx,
1500 service_name);
1501 jucn[cnt].volume_name = talloc_strdup(ctx,
1502 dname);
1503 if (!jucn[cnt].service_name ||
1504 !jucn[cnt].volume_name) {
1505 TALLOC_FREE(talloced);
1506 goto out;
1508 jucn[cnt].comment = "";
1509 cnt++;
1511 TALLOC_FREE(link_target);
1513 TALLOC_FREE(talloced);
1516 out:
1518 if (dirp) {
1519 SMB_VFS_CLOSEDIR(conn,dirp);
1522 vfs_ChDir(conn, cwd);
1523 conn_free(conn);
1524 return cnt;
1527 struct junction_map *enum_msdfs_links(TALLOC_CTX *ctx, size_t *p_num_jn)
1529 struct junction_map *jn = NULL;
1530 int i=0;
1531 size_t jn_count = 0;
1532 int sharecount = 0;
1534 *p_num_jn = 0;
1535 if(!lp_host_msdfs()) {
1536 return NULL;
1539 /* Ensure all the usershares are loaded. */
1540 become_root();
1541 load_registry_shares();
1542 sharecount = load_usershare_shares(NULL, connections_snum_used);
1543 unbecome_root();
1545 for(i=0;i < sharecount;i++) {
1546 if(lp_msdfs_root(i)) {
1547 jn_count += count_dfs_links(ctx, i);
1550 if (jn_count == 0) {
1551 return NULL;
1553 jn = talloc_array(ctx, struct junction_map, jn_count);
1554 if (!jn) {
1555 return NULL;
1557 for(i=0; i < sharecount; i++) {
1558 if (*p_num_jn >= jn_count) {
1559 break;
1561 if(lp_msdfs_root(i)) {
1562 *p_num_jn += form_junctions(ctx, i,
1563 &jn[*p_num_jn],
1564 jn_count - *p_num_jn);
1567 return jn;
1570 /******************************************************************************
1571 Core function to resolve a dfs pathname possibly containing a wildcard. If
1572 ppath_contains_wcard != NULL, it will be set to true if a wildcard is
1573 detected during dfs resolution.
1574 ******************************************************************************/
1576 NTSTATUS resolve_dfspath_wcard(TALLOC_CTX *ctx,
1577 connection_struct *conn,
1578 bool dfs_pathnames,
1579 const char *name_in,
1580 bool allow_wcards,
1581 bool allow_broken_path,
1582 char **pp_name_out,
1583 bool *ppath_contains_wcard)
1585 bool path_contains_wcard;
1586 NTSTATUS status = NT_STATUS_OK;
1588 if (dfs_pathnames) {
1589 status = dfs_redirect(ctx,
1590 conn,
1591 name_in,
1592 allow_wcards,
1593 allow_broken_path,
1594 pp_name_out,
1595 &path_contains_wcard);
1597 if (NT_STATUS_IS_OK(status) && ppath_contains_wcard != NULL) {
1598 *ppath_contains_wcard = path_contains_wcard;
1600 } else {
1602 * Cheat and just return a copy of the in ptr.
1603 * Once srvstr_get_path() uses talloc it'll
1604 * be a talloced ptr anyway.
1606 *pp_name_out = discard_const_p(char, name_in);
1608 return status;