2 Unix SMB/CIFS implementation.
3 filename handling routines
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 1999-2007
6 Copyright (C) Ying Chen 2000
7 Copyright (C) Volker Lendecke 2007
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * New hash table stat cache code added by Ying Chen.
29 static NTSTATUS
build_stream_path(TALLOC_CTX
*mem_ctx
,
30 connection_struct
*conn
,
31 const char *orig_path
,
32 struct smb_filename
*smb_fname
);
34 /****************************************************************************
35 Mangle the 2nd name and check if it is then equal to the first name.
36 ****************************************************************************/
38 static bool mangled_equal(const char *name1
,
40 const struct share_params
*p
)
44 if (!name_to_8_3(name2
, mname
, False
, p
)) {
47 return strequal(name1
, mname
);
50 /****************************************************************************
51 Cope with the differing wildcard and non-wildcard error cases.
52 ****************************************************************************/
54 static NTSTATUS
determine_path_error(const char *name
,
55 bool allow_wcard_last_component
)
59 if (!allow_wcard_last_component
) {
60 /* Error code within a pathname. */
61 return NT_STATUS_OBJECT_PATH_NOT_FOUND
;
64 /* We're terminating here so we
65 * can be a little slower and get
66 * the error code right. Windows
67 * treats the last part of the pathname
68 * separately I think, so if the last
69 * component is a wildcard then we treat
70 * this ./ as "end of component" */
72 p
= strchr(name
, '/');
74 if (!p
&& (ms_has_wild(name
) || ISDOT(name
))) {
75 /* Error code at the end of a pathname. */
76 return NT_STATUS_OBJECT_NAME_INVALID
;
78 /* Error code within a pathname. */
79 return NT_STATUS_OBJECT_PATH_NOT_FOUND
;
83 static NTSTATUS
check_for_dot_component(const struct smb_filename
*smb_fname
)
85 /* Ensure we catch all names with in "/."
86 this is disallowed under Windows and
87 in POSIX they've already been removed. */
88 const char *p
= strstr(smb_fname
->base_name
, "/."); /*mb safe*/
91 /* Error code within a pathname. */
92 return NT_STATUS_OBJECT_PATH_NOT_FOUND
;
93 } else if (p
[2] == '\0') {
94 /* Error code at the end of a pathname. */
95 return NT_STATUS_OBJECT_NAME_INVALID
;
101 /****************************************************************************
102 This routine is called to convert names from the dos namespace to unix
103 namespace. It needs to handle any case conversions, mangling, format changes,
106 We assume that we have already done a chdir() to the right "root" directory
109 The function will return an NTSTATUS error if some part of the name except for
110 the last part cannot be resolved, else NT_STATUS_OK.
112 Note NT_STATUS_OK doesn't mean the name exists or is valid, just that we
113 didn't get any fatal errors that should immediately terminate the calling SMB
114 processing whilst resolving.
116 If the UCF_SAVE_LCOMP flag is passed in, then the unmodified last component
117 of the pathname is set in smb_filename->original_lcomp.
119 If UCF_ALWAYS_ALLOW_WCARD_LCOMP is passed in, then a MS wildcard was detected
120 and should be allowed in the last component of the path only.
122 If the orig_path was a stream, smb_filename->base_name will point to the base
123 filename, and smb_filename->stream_name will point to the stream name. If
124 orig_path was not a stream, then smb_filename->stream_name will be NULL.
126 On exit from unix_convert, the smb_filename->st stat struct will be populated
127 if the file exists and was found, if not this stat struct will be filled with
128 zeros (and this can be detected by checking for nlinks = 0, which can never be
130 ****************************************************************************/
132 NTSTATUS
unix_convert(TALLOC_CTX
*ctx
,
133 connection_struct
*conn
,
134 const char *orig_path
,
135 struct smb_filename
**smb_fname_out
,
138 struct smb_filename
*smb_fname
= NULL
;
140 char *dirpath
= NULL
;
142 bool component_was_mangled
= False
;
143 bool name_has_wildcard
= False
;
144 bool posix_pathnames
= false;
145 bool allow_wcard_last_component
=
146 (ucf_flags
& UCF_ALWAYS_ALLOW_WCARD_LCOMP
);
147 bool save_last_component
= ucf_flags
& UCF_SAVE_LCOMP
;
151 *smb_fname_out
= NULL
;
153 smb_fname
= talloc_zero(ctx
, struct smb_filename
);
154 if (smb_fname
== NULL
) {
155 return NT_STATUS_NO_MEMORY
;
159 /* we don't ever use the filenames on a printer share as a
160 filename - so don't convert them */
161 if (!(smb_fname
->base_name
= talloc_strdup(smb_fname
,
163 status
= NT_STATUS_NO_MEMORY
;
169 DEBUG(5, ("unix_convert called on file \"%s\"\n", orig_path
));
172 * Conversion to basic unix format is already done in
173 * check_path_syntax().
177 * Names must be relative to the root of the service - any leading /.
178 * and trailing /'s should have been trimmed by check_path_syntax().
182 SMB_ASSERT(*orig_path
!= '/');
186 * If we trimmed down to a single '\0' character
187 * then we should use the "." directory to avoid
188 * searching the cache, but not if we are in a
190 * As we know this is valid we can return true here.
194 if (!(smb_fname
->base_name
= talloc_strdup(smb_fname
, "."))) {
195 status
= NT_STATUS_NO_MEMORY
;
198 if (SMB_VFS_STAT(conn
, smb_fname
) != 0) {
199 status
= map_nt_error_from_unix(errno
);
202 DEBUG(5, ("conversion finished \"\" -> %s\n",
203 smb_fname
->base_name
));
207 if (orig_path
[0] == '.' && (orig_path
[1] == '/' ||
208 orig_path
[1] == '\0')) {
209 /* Start of pathname can't be "." only. */
210 if (orig_path
[1] == '\0' || orig_path
[2] == '\0') {
211 status
= NT_STATUS_OBJECT_NAME_INVALID
;
213 status
=determine_path_error(&orig_path
[2],
214 allow_wcard_last_component
);
219 /* Start with the full orig_path as given by the caller. */
220 if (!(smb_fname
->base_name
= talloc_strdup(smb_fname
, orig_path
))) {
221 DEBUG(0, ("talloc_strdup failed\n"));
222 status
= NT_STATUS_NO_MEMORY
;
227 * Large directory fix normalization. If we're case sensitive, and
228 * the case preserving parameters are set to "no", normalize the case of
229 * the incoming filename from the client WHETHER IT EXISTS OR NOT !
230 * This is in conflict with the current (3.0.20) man page, but is
231 * what people expect from the "large directory howto". I'll update
232 * the man page. Thanks to jht@samba.org for finding this. JRA.
235 if (conn
->case_sensitive
&& !conn
->case_preserve
&&
236 !conn
->short_case_preserve
) {
237 strnorm(smb_fname
->base_name
, lp_defaultcase(SNUM(conn
)));
241 * Ensure saved_last_component is valid even if file exists.
244 if(save_last_component
) {
245 end
= strrchr_m(smb_fname
->base_name
, '/');
247 smb_fname
->original_lcomp
= talloc_strdup(smb_fname
,
250 smb_fname
->original_lcomp
=
251 talloc_strdup(smb_fname
, smb_fname
->base_name
);
253 if (smb_fname
->original_lcomp
== NULL
) {
254 status
= NT_STATUS_NO_MEMORY
;
259 posix_pathnames
= (lp_posix_pathnames() ||
260 (ucf_flags
& UCF_POSIX_PATHNAMES
));
263 * Strip off the stream, and add it back when we're done with the
266 if (!posix_pathnames
) {
267 stream
= strchr_m(smb_fname
->base_name
, ':');
269 if (stream
!= NULL
) {
270 char *tmp
= talloc_strdup(smb_fname
, stream
);
272 status
= NT_STATUS_NO_MEMORY
;
276 * Since this is actually pointing into
277 * smb_fname->base_name this truncates base_name.
284 start
= smb_fname
->base_name
;
287 * If we're providing case insentive semantics or
288 * the underlying filesystem is case insensitive,
289 * then a case-normalized hit in the stat-cache is
290 * authoratitive. JRA.
292 * Note: We're only checking base_name. The stream_name will be
293 * added and verified in build_stream_path().
296 if((!conn
->case_sensitive
|| !(conn
->fs_capabilities
&
297 FILE_CASE_SENSITIVE_SEARCH
)) &&
298 stat_cache_lookup(conn
, &smb_fname
->base_name
, &dirpath
, &start
,
304 * Make sure "dirpath" is an allocated string, we use this for
305 * building the directories with asprintf and free it.
308 if ((dirpath
== NULL
) && (!(dirpath
= talloc_strdup(ctx
,"")))) {
309 DEBUG(0, ("talloc_strdup failed\n"));
310 status
= NT_STATUS_NO_MEMORY
;
315 * If we have a wildcard we must walk the path to
316 * find where the error is, even if case sensitive
320 name_has_wildcard
= ms_has_wild(smb_fname
->base_name
);
321 if (name_has_wildcard
&& !allow_wcard_last_component
) {
322 /* Wildcard not valid anywhere. */
323 status
= NT_STATUS_OBJECT_NAME_INVALID
;
327 DEBUG(5,("unix_convert begin: name = %s, dirpath = %s, start = %s\n",
328 smb_fname
->base_name
, dirpath
, start
));
330 if (!name_has_wildcard
) {
332 * stat the name - if it exists then we can add the stream back (if
333 * there was one) and be done!
336 if (posix_pathnames
) {
337 ret
= SMB_VFS_LSTAT(conn
, smb_fname
);
339 ret
= SMB_VFS_STAT(conn
, smb_fname
);
343 status
= check_for_dot_component(smb_fname
);
344 if (!NT_STATUS_IS_OK(status
)) {
347 /* Add the path (not including the stream) to the cache. */
348 stat_cache_add(orig_path
, smb_fname
->base_name
,
349 conn
->case_sensitive
);
350 DEBUG(5,("conversion of base_name finished %s -> %s\n",
351 orig_path
, smb_fname
->base_name
));
356 * A special case - if we don't have any wildcards or mangling chars and are case
357 * sensitive or the underlying filesystem is case insentive then searching
361 if ((conn
->case_sensitive
|| !(conn
->fs_capabilities
&
362 FILE_CASE_SENSITIVE_SEARCH
)) &&
363 !mangle_is_mangled(smb_fname
->base_name
, conn
->params
)) {
365 status
= check_for_dot_component(smb_fname
);
366 if (!NT_STATUS_IS_OK(status
)) {
371 * The stat failed. Could be ok as it could be
375 if (errno
== ENOTDIR
|| errno
== ELOOP
) {
376 status
= NT_STATUS_OBJECT_PATH_NOT_FOUND
;
378 } else if (errno
== ENOENT
) {
380 * Was it a missing last component ?
381 * or a missing intermediate component ?
383 struct smb_filename parent_fname
;
384 ZERO_STRUCT(parent_fname
);
385 if (!parent_dirname(ctx
, smb_fname
->base_name
,
386 &parent_fname
.base_name
,
388 status
= NT_STATUS_NO_MEMORY
;
391 if (posix_pathnames
) {
392 ret
= SMB_VFS_LSTAT(conn
, &parent_fname
);
394 ret
= SMB_VFS_STAT(conn
, &parent_fname
);
397 if (errno
== ENOTDIR
||
400 status
= NT_STATUS_OBJECT_PATH_NOT_FOUND
;
405 * Missing last component is ok - new file.
406 * Also deal with permission denied elsewhere.
407 * Just drop out to done.
415 * is_mangled() was changed to look at an entire pathname, not
416 * just a component. JRA.
419 if (mangle_is_mangled(start
, conn
->params
)) {
420 component_was_mangled
= True
;
424 * Now we need to recursively match the name against the real
425 * directory structure.
429 * Match each part of the path name separately, trying the names
430 * as is first, then trying to scan the directory for matching names.
433 for (; start
; start
= (end
?end
+1:(char *)NULL
)) {
435 * Pinpoint the end of this section of the filename.
437 /* mb safe. '/' can't be in any encoded char. */
438 end
= strchr(start
, '/');
441 * Chop the name at this point.
447 if (save_last_component
) {
448 TALLOC_FREE(smb_fname
->original_lcomp
);
449 smb_fname
->original_lcomp
= talloc_strdup(smb_fname
,
450 end
? end
+ 1 : start
);
451 if (!smb_fname
->original_lcomp
) {
452 DEBUG(0, ("talloc failed\n"));
453 status
= NT_STATUS_NO_MEMORY
;
458 /* The name cannot have a component of "." */
462 /* Error code at the end of a pathname. */
463 status
= NT_STATUS_OBJECT_NAME_INVALID
;
465 status
= determine_path_error(end
+1,
466 allow_wcard_last_component
);
471 /* The name cannot have a wildcard if it's not
472 the last component. */
474 name_has_wildcard
= ms_has_wild(start
);
476 /* Wildcards never valid within a pathname. */
477 if (name_has_wildcard
&& end
) {
478 status
= NT_STATUS_OBJECT_NAME_INVALID
;
483 * Check if the name exists up to this point.
486 if (posix_pathnames
) {
487 ret
= SMB_VFS_LSTAT(conn
, smb_fname
);
489 ret
= SMB_VFS_STAT(conn
, smb_fname
);
494 * It exists. it must either be a directory or this must
495 * be the last part of the path for it to be OK.
497 if (end
&& !S_ISDIR(smb_fname
->st
.st_ex_mode
)) {
499 * An intermediate part of the name isn't
502 DEBUG(5,("Not a dir %s\n",start
));
505 * We need to return the fact that the
506 * intermediate name resolution failed. This
507 * is used to return an error of ERRbadpath
508 * rather than ERRbadfile. Some Windows
509 * applications depend on the difference between
512 status
= NT_STATUS_OBJECT_PATH_NOT_FOUND
;
517 char *found_name
= NULL
;
519 /* Stat failed - ensure we don't use it. */
520 SET_STAT_INVALID(smb_fname
->st
);
523 * Reset errno so we can detect
524 * directory open errors.
529 * Try to find this part of the path in the directory.
532 if (name_has_wildcard
||
533 (get_real_filename(conn
, dirpath
, start
,
535 &found_name
) == -1)) {
540 * An intermediate part of the name
543 DEBUG(5,("Intermediate not found %s\n",
548 * We need to return the fact that the
549 * intermediate name resolution failed.
550 * This is used to return an error of
551 * ERRbadpath rather than ERRbadfile.
552 * Some Windows applications depend on
553 * the difference between these two
558 * ENOENT, ENOTDIR and ELOOP all map
559 * to NT_STATUS_OBJECT_PATH_NOT_FOUND
560 * in the filename walk.
563 if (errno
== ENOENT
||
567 NT_STATUS_OBJECT_PATH_NOT_FOUND
;
571 map_nt_error_from_unix(errno
);
577 * ENOENT/EACCESS are the only valid errors
578 * here. EACCESS needs handling here for
579 * "dropboxes", i.e. directories where users
580 * can only put stuff with permission -wx.
582 if ((errno
!= 0) && (errno
!= ENOENT
)
583 && (errno
!= EACCES
)) {
585 * ENOTDIR and ELOOP both map to
586 * NT_STATUS_OBJECT_PATH_NOT_FOUND
587 * in the filename walk.
589 if (errno
== ENOTDIR
||
592 NT_STATUS_OBJECT_PATH_NOT_FOUND
;
595 map_nt_error_from_unix(errno
);
601 * Just the last part of the name doesn't exist.
602 * We need to strupper() or strlower() it as
603 * this conversion may be used for file creation
604 * purposes. Fix inspired by
605 * Thomas Neumann <t.neumann@iku-ag.de>.
607 if (!conn
->case_preserve
||
608 (mangle_is_8_3(start
, False
,
610 !conn
->short_case_preserve
)) {
612 lp_defaultcase(SNUM(conn
)));
616 * check on the mangled stack to see if we can
617 * recover the base of the filename.
620 if (mangle_is_mangled(start
, conn
->params
)
621 && mangle_lookup_name_from_8_3(ctx
,
627 start
- smb_fname
->base_name
;
629 if (*dirpath
!= '\0') {
630 tmp
= talloc_asprintf(
633 TALLOC_FREE(unmangled
);
639 DEBUG(0, ("talloc failed\n"));
640 status
= NT_STATUS_NO_MEMORY
;
643 TALLOC_FREE(smb_fname
->base_name
);
644 smb_fname
->base_name
= tmp
;
646 smb_fname
->base_name
+ start_ofs
;
647 end
= start
+ strlen(start
);
650 DEBUG(5,("New file %s\n",start
));
656 * Restore the rest of the string. If the string was
657 * mangled the size may have changed.
662 start
- smb_fname
->base_name
;
664 if (*dirpath
!= '\0') {
665 tmp
= talloc_asprintf(smb_fname
,
670 tmp
= talloc_asprintf(smb_fname
,
675 DEBUG(0, ("talloc_asprintf failed\n"));
676 status
= NT_STATUS_NO_MEMORY
;
679 TALLOC_FREE(smb_fname
->base_name
);
680 smb_fname
->base_name
= tmp
;
681 start
= smb_fname
->base_name
+ start_ofs
;
682 end
= start
+ strlen(found_name
);
687 start
- smb_fname
->base_name
;
689 if (*dirpath
!= '\0') {
690 tmp
= talloc_asprintf(smb_fname
,
694 tmp
= talloc_strdup(smb_fname
,
698 DEBUG(0, ("talloc failed\n"));
699 status
= NT_STATUS_NO_MEMORY
;
702 TALLOC_FREE(smb_fname
->base_name
);
703 smb_fname
->base_name
= tmp
;
704 start
= smb_fname
->base_name
+ start_ofs
;
707 * We just scanned for, and found the end of
708 * the path. We must return a valid stat struct
712 if (posix_pathnames
) {
713 ret
= SMB_VFS_LSTAT(conn
, smb_fname
);
715 ret
= SMB_VFS_STAT(conn
, smb_fname
);
719 SET_STAT_INVALID(smb_fname
->st
);
723 TALLOC_FREE(found_name
);
729 * We should never provide different behaviors
730 * depending on DEVELOPER!!!
732 if (VALID_STAT(smb_fname
->st
)) {
734 get_file_infos(vfs_file_id_from_sbuf(conn
,
736 &delete_pending
, NULL
);
737 if (delete_pending
) {
738 status
= NT_STATUS_DELETE_PENDING
;
745 * Add to the dirpath that we have resolved so far.
748 if (*dirpath
!= '\0') {
749 char *tmp
= talloc_asprintf(ctx
,
750 "%s/%s", dirpath
, start
);
752 DEBUG(0, ("talloc_asprintf failed\n"));
753 status
= NT_STATUS_NO_MEMORY
;
756 TALLOC_FREE(dirpath
);
760 TALLOC_FREE(dirpath
);
761 if (!(dirpath
= talloc_strdup(ctx
,start
))) {
762 DEBUG(0, ("talloc_strdup failed\n"));
763 status
= NT_STATUS_NO_MEMORY
;
769 * Cache the dirpath thus far. Don't cache a name with mangled
770 * or wildcard components as this can change the size.
772 if(!component_was_mangled
&& !name_has_wildcard
) {
773 stat_cache_add(orig_path
, dirpath
,
774 conn
->case_sensitive
);
778 * Restore the / that we wiped out earlier.
786 * Cache the full path. Don't cache a name with mangled or wildcard
787 * components as this can change the size.
790 if(!component_was_mangled
&& !name_has_wildcard
) {
791 stat_cache_add(orig_path
, smb_fname
->base_name
,
792 conn
->case_sensitive
);
796 * The name has been resolved.
799 DEBUG(5,("conversion finished %s -> %s\n", orig_path
,
800 smb_fname
->base_name
));
803 /* Add back the stream if one was stripped off originally. */
804 if (stream
!= NULL
) {
805 smb_fname
->stream_name
= stream
;
807 /* Check path now that the base_name has been converted. */
808 status
= build_stream_path(ctx
, conn
, orig_path
, smb_fname
);
809 if (!NT_STATUS_IS_OK(status
)) {
813 TALLOC_FREE(dirpath
);
814 *smb_fname_out
= smb_fname
;
817 DEBUG(10, ("dirpath = [%s] start = [%s]\n", dirpath
, start
));
818 if (*dirpath
!= '\0') {
819 smb_fname
->base_name
= talloc_asprintf(smb_fname
, "%s/%s",
822 smb_fname
->base_name
= talloc_strdup(smb_fname
, start
);
824 if (!smb_fname
->base_name
) {
825 DEBUG(0, ("talloc_asprintf failed\n"));
826 status
= NT_STATUS_NO_MEMORY
;
830 *smb_fname_out
= smb_fname
;
831 TALLOC_FREE(dirpath
);
834 TALLOC_FREE(smb_fname
);
838 /****************************************************************************
839 Check a filename - possibly calling check_reduced_name.
840 This is called by every routine before it allows an operation on a filename.
841 It does any final confirmation necessary to ensure that the filename is
842 a valid one for the user to access.
843 ****************************************************************************/
845 NTSTATUS
check_name(connection_struct
*conn
, const char *name
)
847 if (IS_VETO_PATH(conn
, name
)) {
848 /* Is it not dot or dot dot. */
849 if (!((name
[0] == '.') && (!name
[1] ||
850 (name
[1] == '.' && !name
[2])))) {
851 DEBUG(5,("check_name: file path name %s vetoed\n",
853 return map_nt_error_from_unix(ENOENT
);
857 if (!lp_widelinks(SNUM(conn
)) || !lp_symlinks(SNUM(conn
))) {
858 NTSTATUS status
= check_reduced_name(conn
,name
);
859 if (!NT_STATUS_IS_OK(status
)) {
860 DEBUG(5,("check_name: name %s failed with %s\n",name
,
869 /****************************************************************************
870 Check if two filenames are equal.
871 This needs to be careful about whether we are case sensitive.
872 ****************************************************************************/
874 static bool fname_equal(const char *name1
, const char *name2
,
877 /* Normal filename handling */
878 if (case_sensitive
) {
879 return(strcmp(name1
,name2
) == 0);
882 return(strequal(name1
,name2
));
885 /****************************************************************************
886 Scan a directory to find a filename, matching without case sensitivity.
887 If the name looks like a mangled name then try via the mangling functions
888 ****************************************************************************/
890 static int get_real_filename_full_scan(connection_struct
*conn
,
891 const char *path
, const char *name
,
893 TALLOC_CTX
*mem_ctx
, char **found_name
)
895 struct smb_Dir
*cur_dir
;
896 const char *dname
= NULL
;
897 char *talloced
= NULL
;
898 char *unmangled_name
= NULL
;
901 /* handle null paths */
902 if ((path
== NULL
) || (*path
== 0)) {
906 /* If we have a case-sensitive filesystem, it doesn't do us any
907 * good to search for a name. If a case variation of the name was
908 * there, then the original stat(2) would have found it.
910 if (!mangled
&& !(conn
->fs_capabilities
& FILE_CASE_SENSITIVE_SEARCH
)) {
916 * The incoming name can be mangled, and if we de-mangle it
917 * here it will not compare correctly against the filename (name2)
918 * read from the directory and then mangled by the name_to_8_3()
919 * call. We need to mangle both names or neither.
922 * Fix for bug found by Dina Fine. If in case sensitive mode then
923 * the mangle cache is no good (3 letter extension could be wrong
924 * case - so don't demangle in this case - leave as mangled and
925 * allow the mangling of the directory entry read (which is done
926 * case insensitively) to match instead. This will lead to more
927 * false positive matches but we fail completely without it. JRA.
930 if (mangled
&& !conn
->case_sensitive
) {
931 mangled
= !mangle_lookup_name_from_8_3(talloc_tos(), name
,
935 /* Name is now unmangled. */
936 name
= unmangled_name
;
940 /* open the directory */
941 if (!(cur_dir
= OpenDir(talloc_tos(), conn
, path
, NULL
, 0))) {
942 DEBUG(3,("scan dir didn't open dir [%s]\n",path
));
943 TALLOC_FREE(unmangled_name
);
947 /* now scan for matching names */
949 while ((dname
= ReadDirName(cur_dir
, &curpos
, NULL
, &talloced
))) {
951 /* Is it dot or dot dot. */
952 if (ISDOT(dname
) || ISDOTDOT(dname
)) {
953 TALLOC_FREE(talloced
);
958 * At this point dname is the unmangled name.
959 * name is either mangled or not, depending on the state
960 * of the "mangled" variable. JRA.
964 * Check mangled name against mangled name, or unmangled name
965 * against unmangled name.
968 if ((mangled
&& mangled_equal(name
,dname
,conn
->params
)) ||
969 fname_equal(name
, dname
, conn
->case_sensitive
)) {
970 /* we've found the file, change it's name and return */
971 *found_name
= talloc_strdup(mem_ctx
, dname
);
972 TALLOC_FREE(unmangled_name
);
973 TALLOC_FREE(cur_dir
);
976 TALLOC_FREE(talloced
);
979 TALLOC_FREE(talloced
);
982 TALLOC_FREE(talloced
);
985 TALLOC_FREE(unmangled_name
);
986 TALLOC_FREE(cur_dir
);
991 /****************************************************************************
992 Wrapper around the vfs get_real_filename and the full directory scan
994 ****************************************************************************/
996 int get_real_filename(connection_struct
*conn
, const char *path
,
997 const char *name
, TALLOC_CTX
*mem_ctx
,
1003 mangled
= mangle_is_mangled(name
, conn
->params
);
1006 return get_real_filename_full_scan(conn
, path
, name
, mangled
,
1007 mem_ctx
, found_name
);
1010 /* Try the vfs first to take advantage of case-insensitive stat. */
1011 ret
= SMB_VFS_GET_REAL_FILENAME(conn
, path
, name
, mem_ctx
, found_name
);
1014 * If the case-insensitive stat was successful, or returned an error
1015 * other than EOPNOTSUPP then there is no need to fall back on the
1016 * full directory scan.
1018 if (ret
== 0 || (ret
== -1 && errno
!= EOPNOTSUPP
)) {
1022 return get_real_filename_full_scan(conn
, path
, name
, mangled
, mem_ctx
,
1026 static NTSTATUS
build_stream_path(TALLOC_CTX
*mem_ctx
,
1027 connection_struct
*conn
,
1028 const char *orig_path
,
1029 struct smb_filename
*smb_fname
)
1032 unsigned int i
, num_streams
;
1033 struct stream_struct
*streams
= NULL
;
1035 if (SMB_VFS_STAT(conn
, smb_fname
) == 0) {
1036 DEBUG(10, ("'%s' exists\n", smb_fname_str_dbg(smb_fname
)));
1037 return NT_STATUS_OK
;
1040 if (errno
!= ENOENT
) {
1041 DEBUG(10, ("vfs_stat failed: %s\n", strerror(errno
)));
1042 status
= map_nt_error_from_unix(errno
);
1046 /* Fall back to a case-insensitive scan of all streams on the file. */
1047 status
= SMB_VFS_STREAMINFO(conn
, NULL
, smb_fname
->base_name
, mem_ctx
,
1048 &num_streams
, &streams
);
1050 if (NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
1051 SET_STAT_INVALID(smb_fname
->st
);
1052 return NT_STATUS_OK
;
1055 if (!NT_STATUS_IS_OK(status
)) {
1056 DEBUG(10, ("vfs_streaminfo failed: %s\n", nt_errstr(status
)));
1060 for (i
=0; i
<num_streams
; i
++) {
1061 DEBUG(10, ("comparing [%s] and [%s]: ",
1062 smb_fname
->stream_name
, streams
[i
].name
));
1063 if (fname_equal(smb_fname
->stream_name
, streams
[i
].name
,
1064 conn
->case_sensitive
)) {
1065 DEBUGADD(10, ("equal\n"));
1068 DEBUGADD(10, ("not equal\n"));
1071 /* Couldn't find the stream. */
1072 if (i
== num_streams
) {
1073 SET_STAT_INVALID(smb_fname
->st
);
1074 TALLOC_FREE(streams
);
1075 return NT_STATUS_OK
;
1078 DEBUG(10, ("case insensitive stream. requested: %s, actual: %s\n",
1079 smb_fname
->stream_name
, streams
[i
].name
));
1082 TALLOC_FREE(smb_fname
->stream_name
);
1083 smb_fname
->stream_name
= talloc_strdup(smb_fname
, streams
[i
].name
);
1084 if (smb_fname
->stream_name
== NULL
) {
1085 status
= NT_STATUS_NO_MEMORY
;
1089 SET_STAT_INVALID(smb_fname
->st
);
1091 if (SMB_VFS_STAT(conn
, smb_fname
) == 0) {
1092 DEBUG(10, ("'%s' exists\n", smb_fname_str_dbg(smb_fname
)));
1094 status
= NT_STATUS_OK
;
1096 TALLOC_FREE(streams
);
1101 * Go through all the steps to validate a filename.
1103 * @param ctx talloc_ctx to allocate memory with.
1104 * @param conn connection struct for vfs calls.
1105 * @param dfs_path Whether this path requires dfs resolution.
1106 * @param name_in The unconverted name.
1107 * @param ucf_flags flags to pass through to unix_convert().
1108 * UCF_ALWAYS_ALLOW_WCARD_LCOMP will be OR'd in if
1109 * p_cont_wcard != NULL and is true and
1110 * UCF_COND_ALLOW_WCARD_LCOMP.
1111 * @param p_cont_wcard If not NULL, will be set to true if the dfs path
1112 * resolution detects a wildcard.
1113 * @param pp_smb_fname The final converted name will be allocated if the
1114 * return is NT_STATUS_OK.
1116 * @return NT_STATUS_OK if all operations completed succesfully, appropriate
1119 NTSTATUS
filename_convert(TALLOC_CTX
*ctx
,
1120 connection_struct
*conn
,
1122 const char *name_in
,
1124 bool *ppath_contains_wcard
,
1125 struct smb_filename
**pp_smb_fname
)
1130 *pp_smb_fname
= NULL
;
1132 status
= resolve_dfspath_wcard(ctx
, conn
,
1136 ppath_contains_wcard
);
1137 if (!NT_STATUS_IS_OK(status
)) {
1138 DEBUG(10,("filename_convert: resolve_dfspath failed "
1139 "for name %s with %s\n",
1141 nt_errstr(status
) ));
1145 if (is_fake_file_path(name_in
)) {
1149 status
= create_synthetic_smb_fname_split(ctx
,
1157 * If the caller conditionally allows wildcard lookups, only add the
1158 * always allow if the path actually does contain a wildcard.
1160 if (ucf_flags
& UCF_COND_ALLOW_WCARD_LCOMP
&&
1161 ppath_contains_wcard
!= NULL
&& *ppath_contains_wcard
) {
1162 ucf_flags
|= UCF_ALWAYS_ALLOW_WCARD_LCOMP
;
1165 status
= unix_convert(ctx
, conn
, fname
, pp_smb_fname
, ucf_flags
);
1166 if (!NT_STATUS_IS_OK(status
)) {
1167 DEBUG(10,("filename_convert: unix_convert failed "
1168 "for name %s with %s\n",
1170 nt_errstr(status
) ));
1174 status
= check_name(conn
, (*pp_smb_fname
)->base_name
);
1175 if (!NT_STATUS_IS_OK(status
)) {
1176 DEBUG(3,("filename_convert: check_name failed "
1177 "for name %s with %s\n",
1178 smb_fname_str_dbg(*pp_smb_fname
),
1179 nt_errstr(status
) ));
1180 TALLOC_FREE(*pp_smb_fname
);