s3:auth: remove unused auth_server.c
[Samba/gebeck_regimport.git] / source3 / smbd / filename.c
blobac218a16fec63313aacb3deb8c953eeb3e83203f
1 /*
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.
27 #include "includes.h"
28 #include "system/filesys.h"
29 #include "fake_file.h"
30 #include "smbd/smbd.h"
32 static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx,
33 connection_struct *conn,
34 const char *orig_path,
35 struct smb_filename *smb_fname);
37 /****************************************************************************
38 Mangle the 2nd name and check if it is then equal to the first name.
39 ****************************************************************************/
41 static bool mangled_equal(const char *name1,
42 const char *name2,
43 const struct share_params *p)
45 char mname[13];
47 if (!name_to_8_3(name2, mname, False, p)) {
48 return False;
50 return strequal(name1, mname);
53 /****************************************************************************
54 Cope with the differing wildcard and non-wildcard error cases.
55 ****************************************************************************/
57 static NTSTATUS determine_path_error(const char *name,
58 bool allow_wcard_last_component)
60 const char *p;
62 if (!allow_wcard_last_component) {
63 /* Error code within a pathname. */
64 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
67 /* We're terminating here so we
68 * can be a little slower and get
69 * the error code right. Windows
70 * treats the last part of the pathname
71 * separately I think, so if the last
72 * component is a wildcard then we treat
73 * this ./ as "end of component" */
75 p = strchr(name, '/');
77 if (!p && (ms_has_wild(name) || ISDOT(name))) {
78 /* Error code at the end of a pathname. */
79 return NT_STATUS_OBJECT_NAME_INVALID;
80 } else {
81 /* Error code within a pathname. */
82 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
86 static NTSTATUS check_for_dot_component(const struct smb_filename *smb_fname)
88 /* Ensure we catch all names with in "/."
89 this is disallowed under Windows and
90 in POSIX they've already been removed. */
91 const char *p = strstr(smb_fname->base_name, "/."); /*mb safe*/
92 if (p) {
93 if (p[2] == '/') {
94 /* Error code within a pathname. */
95 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
96 } else if (p[2] == '\0') {
97 /* Error code at the end of a pathname. */
98 return NT_STATUS_OBJECT_NAME_INVALID;
101 return NT_STATUS_OK;
104 /****************************************************************************
105 Optimization for common case where the missing part
106 is in the last component and the client already
107 sent the correct case.
108 Returns NT_STATUS_OK to mean continue the tree walk
109 (possibly with modified start pointer).
110 Any other NT_STATUS_XXX error means terminate the path
111 lookup here.
112 ****************************************************************************/
114 static NTSTATUS check_parent_exists(TALLOC_CTX *ctx,
115 connection_struct *conn,
116 bool posix_pathnames,
117 const struct smb_filename *smb_fname,
118 char **pp_dirpath,
119 char **pp_start)
121 struct smb_filename parent_fname;
122 const char *last_component = NULL;
123 NTSTATUS status;
124 int ret;
126 ZERO_STRUCT(parent_fname);
127 if (!parent_dirname(ctx, smb_fname->base_name,
128 &parent_fname.base_name,
129 &last_component)) {
130 return NT_STATUS_NO_MEMORY;
134 * If there was no parent component in
135 * smb_fname->base_name of the parent name
136 * contained a wildcard then don't do this
137 * optimization.
139 if ((smb_fname->base_name == last_component) ||
140 ms_has_wild(parent_fname.base_name)) {
141 return NT_STATUS_OK;
144 if (posix_pathnames) {
145 ret = SMB_VFS_LSTAT(conn, &parent_fname);
146 } else {
147 ret = SMB_VFS_STAT(conn, &parent_fname);
150 /* If the parent stat failed, just continue
151 with the normal tree walk. */
153 if (ret == -1) {
154 return NT_STATUS_OK;
157 status = check_for_dot_component(&parent_fname);
158 if (!NT_STATUS_IS_OK(status)) {
159 return status;
162 /* Parent exists - set "start" to be the
163 * last compnent to shorten the tree walk. */
166 * Safe to use discard_const_p
167 * here as last_component points
168 * into our smb_fname->base_name.
170 *pp_start = discard_const_p(char, last_component);
172 /* Update dirpath. */
173 TALLOC_FREE(*pp_dirpath);
174 *pp_dirpath = talloc_strdup(ctx, parent_fname.base_name);
175 if (!*pp_dirpath) {
176 return NT_STATUS_NO_MEMORY;
179 DEBUG(5,("check_parent_exists: name "
180 "= %s, dirpath = %s, "
181 "start = %s\n",
182 smb_fname->base_name,
183 *pp_dirpath,
184 *pp_start));
186 return NT_STATUS_OK;
189 /****************************************************************************
190 This routine is called to convert names from the dos namespace to unix
191 namespace. It needs to handle any case conversions, mangling, format changes,
192 streams etc.
194 We assume that we have already done a chdir() to the right "root" directory
195 for this service.
197 The function will return an NTSTATUS error if some part of the name except for
198 the last part cannot be resolved, else NT_STATUS_OK.
200 Note NT_STATUS_OK doesn't mean the name exists or is valid, just that we
201 didn't get any fatal errors that should immediately terminate the calling SMB
202 processing whilst resolving.
204 If the UCF_SAVE_LCOMP flag is passed in, then the unmodified last component
205 of the pathname is set in smb_filename->original_lcomp.
207 If UCF_ALWAYS_ALLOW_WCARD_LCOMP is passed in, then a MS wildcard was detected
208 and should be allowed in the last component of the path only.
210 If the orig_path was a stream, smb_filename->base_name will point to the base
211 filename, and smb_filename->stream_name will point to the stream name. If
212 orig_path was not a stream, then smb_filename->stream_name will be NULL.
214 On exit from unix_convert, the smb_filename->st stat struct will be populated
215 if the file exists and was found, if not this stat struct will be filled with
216 zeros (and this can be detected by checking for nlinks = 0, which can never be
217 true for any file).
218 ****************************************************************************/
220 NTSTATUS unix_convert(TALLOC_CTX *ctx,
221 connection_struct *conn,
222 const char *orig_path,
223 struct smb_filename **smb_fname_out,
224 uint32_t ucf_flags)
226 struct smb_filename *smb_fname = NULL;
227 char *start, *end;
228 char *dirpath = NULL;
229 char *stream = NULL;
230 bool component_was_mangled = False;
231 bool name_has_wildcard = False;
232 bool posix_pathnames = false;
233 bool allow_wcard_last_component =
234 (ucf_flags & UCF_ALWAYS_ALLOW_WCARD_LCOMP);
235 bool save_last_component = ucf_flags & UCF_SAVE_LCOMP;
236 NTSTATUS status;
237 int ret = -1;
239 *smb_fname_out = NULL;
241 smb_fname = talloc_zero(ctx, struct smb_filename);
242 if (smb_fname == NULL) {
243 return NT_STATUS_NO_MEMORY;
246 if (conn->printer) {
247 /* we don't ever use the filenames on a printer share as a
248 filename - so don't convert them */
249 if (!(smb_fname->base_name = talloc_strdup(smb_fname,
250 orig_path))) {
251 status = NT_STATUS_NO_MEMORY;
252 goto err;
254 goto done;
257 DEBUG(5, ("unix_convert called on file \"%s\"\n", orig_path));
260 * Conversion to basic unix format is already done in
261 * check_path_syntax().
265 * Names must be relative to the root of the service - any leading /.
266 * and trailing /'s should have been trimmed by check_path_syntax().
269 #ifdef DEVELOPER
270 SMB_ASSERT(*orig_path != '/');
271 #endif
274 * If we trimmed down to a single '\0' character
275 * then we should use the "." directory to avoid
276 * searching the cache, but not if we are in a
277 * printing share.
278 * As we know this is valid we can return true here.
281 if (!*orig_path) {
282 if (!(smb_fname->base_name = talloc_strdup(smb_fname, "."))) {
283 status = NT_STATUS_NO_MEMORY;
284 goto err;
286 if (SMB_VFS_STAT(conn, smb_fname) != 0) {
287 status = map_nt_error_from_unix(errno);
288 goto err;
290 DEBUG(5, ("conversion finished \"\" -> %s\n",
291 smb_fname->base_name));
292 goto done;
295 if (orig_path[0] == '.' && (orig_path[1] == '/' ||
296 orig_path[1] == '\0')) {
297 /* Start of pathname can't be "." only. */
298 if (orig_path[1] == '\0' || orig_path[2] == '\0') {
299 status = NT_STATUS_OBJECT_NAME_INVALID;
300 } else {
301 status =determine_path_error(&orig_path[2],
302 allow_wcard_last_component);
304 goto err;
307 /* Start with the full orig_path as given by the caller. */
308 if (!(smb_fname->base_name = talloc_strdup(smb_fname, orig_path))) {
309 DEBUG(0, ("talloc_strdup failed\n"));
310 status = NT_STATUS_NO_MEMORY;
311 goto err;
315 * Large directory fix normalization. If we're case sensitive, and
316 * the case preserving parameters are set to "no", normalize the case of
317 * the incoming filename from the client WHETHER IT EXISTS OR NOT !
318 * This is in conflict with the current (3.0.20) man page, but is
319 * what people expect from the "large directory howto". I'll update
320 * the man page. Thanks to jht@samba.org for finding this. JRA.
323 if (conn->case_sensitive && !conn->case_preserve &&
324 !conn->short_case_preserve) {
325 strnorm(smb_fname->base_name, lp_defaultcase(SNUM(conn)));
329 * Ensure saved_last_component is valid even if file exists.
332 if(save_last_component) {
333 end = strrchr_m(smb_fname->base_name, '/');
334 if (end) {
335 smb_fname->original_lcomp = talloc_strdup(smb_fname,
336 end + 1);
337 } else {
338 smb_fname->original_lcomp =
339 talloc_strdup(smb_fname, smb_fname->base_name);
341 if (smb_fname->original_lcomp == NULL) {
342 status = NT_STATUS_NO_MEMORY;
343 goto err;
347 posix_pathnames = (lp_posix_pathnames() ||
348 (ucf_flags & UCF_POSIX_PATHNAMES));
351 * Strip off the stream, and add it back when we're done with the
352 * base_name.
354 if (!posix_pathnames) {
355 stream = strchr_m(smb_fname->base_name, ':');
357 if (stream != NULL) {
358 char *tmp = talloc_strdup(smb_fname, stream);
359 if (tmp == NULL) {
360 status = NT_STATUS_NO_MEMORY;
361 goto err;
364 * Since this is actually pointing into
365 * smb_fname->base_name this truncates base_name.
367 *stream = '\0';
368 stream = tmp;
372 start = smb_fname->base_name;
375 * If we're providing case insensitive semantics or
376 * the underlying filesystem is case insensitive,
377 * then a case-normalized hit in the stat-cache is
378 * authoratitive. JRA.
380 * Note: We're only checking base_name. The stream_name will be
381 * added and verified in build_stream_path().
384 if((!conn->case_sensitive || !(conn->fs_capabilities &
385 FILE_CASE_SENSITIVE_SEARCH)) &&
386 stat_cache_lookup(conn, posix_pathnames, &smb_fname->base_name, &dirpath, &start,
387 &smb_fname->st)) {
388 goto done;
392 * Make sure "dirpath" is an allocated string, we use this for
393 * building the directories with talloc_asprintf and free it.
396 if ((dirpath == NULL) && (!(dirpath = talloc_strdup(ctx,"")))) {
397 DEBUG(0, ("talloc_strdup failed\n"));
398 status = NT_STATUS_NO_MEMORY;
399 goto err;
403 * If we have a wildcard we must walk the path to
404 * find where the error is, even if case sensitive
405 * is true.
408 name_has_wildcard = ms_has_wild(smb_fname->base_name);
409 if (name_has_wildcard && !allow_wcard_last_component) {
410 /* Wildcard not valid anywhere. */
411 status = NT_STATUS_OBJECT_NAME_INVALID;
412 goto fail;
415 DEBUG(5,("unix_convert begin: name = %s, dirpath = %s, start = %s\n",
416 smb_fname->base_name, dirpath, start));
418 if (!name_has_wildcard) {
420 * stat the name - if it exists then we can add the stream back (if
421 * there was one) and be done!
424 if (posix_pathnames) {
425 ret = SMB_VFS_LSTAT(conn, smb_fname);
426 } else {
427 ret = SMB_VFS_STAT(conn, smb_fname);
430 if (ret == 0) {
431 status = check_for_dot_component(smb_fname);
432 if (!NT_STATUS_IS_OK(status)) {
433 goto fail;
435 /* Add the path (not including the stream) to the cache. */
436 stat_cache_add(orig_path, smb_fname->base_name,
437 conn->case_sensitive);
438 DEBUG(5,("conversion of base_name finished %s -> %s\n",
439 orig_path, smb_fname->base_name));
440 goto done;
443 /* Stat failed - ensure we don't use it. */
444 SET_STAT_INVALID(smb_fname->st);
446 if (errno == ENOENT) {
447 /* Optimization when creating a new file - only
448 the last component doesn't exist. */
449 status = check_parent_exists(ctx,
450 conn,
451 posix_pathnames,
452 smb_fname,
453 &dirpath,
454 &start);
455 if (!NT_STATUS_IS_OK(status)) {
456 goto fail;
461 * A special case - if we don't have any wildcards or mangling chars and are case
462 * sensitive or the underlying filesystem is case insensitive then searching
463 * won't help.
466 if ((conn->case_sensitive || !(conn->fs_capabilities &
467 FILE_CASE_SENSITIVE_SEARCH)) &&
468 !mangle_is_mangled(smb_fname->base_name, conn->params)) {
470 status = check_for_dot_component(smb_fname);
471 if (!NT_STATUS_IS_OK(status)) {
472 goto fail;
476 * The stat failed. Could be ok as it could be
477 * a new file.
480 if (errno == ENOTDIR || errno == ELOOP) {
481 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
482 goto fail;
483 } else if (errno == ENOENT) {
485 * Was it a missing last component ?
486 * or a missing intermediate component ?
488 struct smb_filename parent_fname;
489 const char *last_component = NULL;
491 ZERO_STRUCT(parent_fname);
492 if (!parent_dirname(ctx, smb_fname->base_name,
493 &parent_fname.base_name,
494 &last_component)) {
495 status = NT_STATUS_NO_MEMORY;
496 goto fail;
498 if (posix_pathnames) {
499 ret = SMB_VFS_LSTAT(conn, &parent_fname);
500 } else {
501 ret = SMB_VFS_STAT(conn, &parent_fname);
503 if (ret == -1) {
504 if (errno == ENOTDIR ||
505 errno == ENOENT ||
506 errno == ELOOP) {
507 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
508 goto fail;
513 * Missing last component is ok - new file.
514 * Also deal with permission denied elsewhere.
515 * Just drop out to done.
517 goto done;
520 } else {
522 * We have a wildcard in the pathname.
524 * Optimization for common case where the wildcard
525 * is in the last component and the client already
526 * sent the correct case.
528 status = check_parent_exists(ctx,
529 conn,
530 posix_pathnames,
531 smb_fname,
532 &dirpath,
533 &start);
534 if (!NT_STATUS_IS_OK(status)) {
535 goto fail;
540 * is_mangled() was changed to look at an entire pathname, not
541 * just a component. JRA.
544 if (mangle_is_mangled(start, conn->params)) {
545 component_was_mangled = True;
549 * Now we need to recursively match the name against the real
550 * directory structure.
554 * Match each part of the path name separately, trying the names
555 * as is first, then trying to scan the directory for matching names.
558 for (; start ; start = (end?end+1:(char *)NULL)) {
560 * Pinpoint the end of this section of the filename.
562 /* mb safe. '/' can't be in any encoded char. */
563 end = strchr(start, '/');
566 * Chop the name at this point.
568 if (end) {
569 *end = 0;
572 if (save_last_component) {
573 TALLOC_FREE(smb_fname->original_lcomp);
574 smb_fname->original_lcomp = talloc_strdup(smb_fname,
575 end ? end + 1 : start);
576 if (!smb_fname->original_lcomp) {
577 DEBUG(0, ("talloc failed\n"));
578 status = NT_STATUS_NO_MEMORY;
579 goto err;
583 /* The name cannot have a component of "." */
585 if (ISDOT(start)) {
586 if (!end) {
587 /* Error code at the end of a pathname. */
588 status = NT_STATUS_OBJECT_NAME_INVALID;
589 } else {
590 status = determine_path_error(end+1,
591 allow_wcard_last_component);
593 goto fail;
596 /* The name cannot have a wildcard if it's not
597 the last component. */
599 name_has_wildcard = ms_has_wild(start);
601 /* Wildcards never valid within a pathname. */
602 if (name_has_wildcard && end) {
603 status = NT_STATUS_OBJECT_NAME_INVALID;
604 goto fail;
607 /* Skip the stat call if it's a wildcard end. */
608 if (name_has_wildcard) {
609 DEBUG(5,("Wildcard %s\n",start));
610 goto done;
614 * Check if the name exists up to this point.
617 if (posix_pathnames) {
618 ret = SMB_VFS_LSTAT(conn, smb_fname);
619 } else {
620 ret = SMB_VFS_STAT(conn, smb_fname);
623 if (ret == 0) {
625 * It exists. it must either be a directory or this must
626 * be the last part of the path for it to be OK.
628 if (end && !S_ISDIR(smb_fname->st.st_ex_mode)) {
630 * An intermediate part of the name isn't
631 * a directory.
633 DEBUG(5,("Not a dir %s\n",start));
634 *end = '/';
636 * We need to return the fact that the
637 * intermediate name resolution failed. This
638 * is used to return an error of ERRbadpath
639 * rather than ERRbadfile. Some Windows
640 * applications depend on the difference between
641 * these two errors.
643 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
644 goto fail;
647 } else {
648 char *found_name = NULL;
650 /* Stat failed - ensure we don't use it. */
651 SET_STAT_INVALID(smb_fname->st);
654 * Reset errno so we can detect
655 * directory open errors.
657 errno = 0;
660 * Try to find this part of the path in the directory.
663 if (name_has_wildcard ||
664 (get_real_filename(conn, dirpath, start,
665 talloc_tos(),
666 &found_name) == -1)) {
667 char *unmangled;
669 if (end) {
671 * An intermediate part of the name
672 * can't be found.
674 DEBUG(5,("Intermediate not found %s\n",
675 start));
676 *end = '/';
679 * We need to return the fact that the
680 * intermediate name resolution failed.
681 * This is used to return an error of
682 * ERRbadpath rather than ERRbadfile.
683 * Some Windows applications depend on
684 * the difference between these two
685 * errors.
689 * ENOENT, ENOTDIR and ELOOP all map
690 * to NT_STATUS_OBJECT_PATH_NOT_FOUND
691 * in the filename walk.
694 if (errno == ENOENT ||
695 errno == ENOTDIR ||
696 errno == ELOOP) {
697 status =
698 NT_STATUS_OBJECT_PATH_NOT_FOUND;
700 else {
701 status =
702 map_nt_error_from_unix(errno);
704 goto fail;
708 * ENOENT/EACCESS are the only valid errors
709 * here. EACCESS needs handling here for
710 * "dropboxes", i.e. directories where users
711 * can only put stuff with permission -wx.
713 if ((errno != 0) && (errno != ENOENT)
714 && (errno != EACCES)) {
716 * ENOTDIR and ELOOP both map to
717 * NT_STATUS_OBJECT_PATH_NOT_FOUND
718 * in the filename walk.
720 if (errno == ENOTDIR ||
721 errno == ELOOP) {
722 status =
723 NT_STATUS_OBJECT_PATH_NOT_FOUND;
724 } else {
725 status =
726 map_nt_error_from_unix(errno);
728 goto fail;
732 * Just the last part of the name doesn't exist.
733 * We need to strupper() or strlower() it as
734 * this conversion may be used for file creation
735 * purposes. Fix inspired by
736 * Thomas Neumann <t.neumann@iku-ag.de>.
738 if (!conn->case_preserve ||
739 (mangle_is_8_3(start, False,
740 conn->params) &&
741 !conn->short_case_preserve)) {
742 strnorm(start,
743 lp_defaultcase(SNUM(conn)));
747 * check on the mangled stack to see if we can
748 * recover the base of the filename.
751 if (mangle_is_mangled(start, conn->params)
752 && mangle_lookup_name_from_8_3(ctx,
753 start,
754 &unmangled,
755 conn->params)) {
756 char *tmp;
757 size_t start_ofs =
758 start - smb_fname->base_name;
760 if (*dirpath != '\0') {
761 tmp = talloc_asprintf(
762 smb_fname, "%s/%s",
763 dirpath, unmangled);
764 TALLOC_FREE(unmangled);
766 else {
767 tmp = unmangled;
769 if (tmp == NULL) {
770 DEBUG(0, ("talloc failed\n"));
771 status = NT_STATUS_NO_MEMORY;
772 goto err;
774 TALLOC_FREE(smb_fname->base_name);
775 smb_fname->base_name = tmp;
776 start =
777 smb_fname->base_name + start_ofs;
778 end = start + strlen(start);
781 DEBUG(5,("New file %s\n",start));
782 goto done;
787 * Restore the rest of the string. If the string was
788 * mangled the size may have changed.
790 if (end) {
791 char *tmp;
792 size_t start_ofs =
793 start - smb_fname->base_name;
795 if (*dirpath != '\0') {
796 tmp = talloc_asprintf(smb_fname,
797 "%s/%s/%s", dirpath,
798 found_name, end+1);
800 else {
801 tmp = talloc_asprintf(smb_fname,
802 "%s/%s", found_name,
803 end+1);
805 if (tmp == NULL) {
806 DEBUG(0, ("talloc_asprintf failed\n"));
807 status = NT_STATUS_NO_MEMORY;
808 goto err;
810 TALLOC_FREE(smb_fname->base_name);
811 smb_fname->base_name = tmp;
812 start = smb_fname->base_name + start_ofs;
813 end = start + strlen(found_name);
814 *end = '\0';
815 } else {
816 char *tmp;
817 size_t start_ofs =
818 start - smb_fname->base_name;
820 if (*dirpath != '\0') {
821 tmp = talloc_asprintf(smb_fname,
822 "%s/%s", dirpath,
823 found_name);
824 } else {
825 tmp = talloc_strdup(smb_fname,
826 found_name);
828 if (tmp == NULL) {
829 DEBUG(0, ("talloc failed\n"));
830 status = NT_STATUS_NO_MEMORY;
831 goto err;
833 TALLOC_FREE(smb_fname->base_name);
834 smb_fname->base_name = tmp;
835 start = smb_fname->base_name + start_ofs;
838 * We just scanned for, and found the end of
839 * the path. We must return a valid stat struct
840 * if it exists. JRA.
843 if (posix_pathnames) {
844 ret = SMB_VFS_LSTAT(conn, smb_fname);
845 } else {
846 ret = SMB_VFS_STAT(conn, smb_fname);
849 if (ret != 0) {
850 SET_STAT_INVALID(smb_fname->st);
854 TALLOC_FREE(found_name);
855 } /* end else */
857 #ifdef DEVELOPER
859 * This sucks!
860 * We should never provide different behaviors
861 * depending on DEVELOPER!!!
863 if (VALID_STAT(smb_fname->st)) {
864 bool delete_pending;
865 uint32_t name_hash;
867 status = file_name_hash(conn,
868 smb_fname_str_dbg(smb_fname),
869 &name_hash);
870 if (!NT_STATUS_IS_OK(status)) {
871 goto fail;
874 get_file_infos(vfs_file_id_from_sbuf(conn,
875 &smb_fname->st),
876 name_hash,
877 &delete_pending, NULL);
878 if (delete_pending) {
879 status = NT_STATUS_DELETE_PENDING;
880 goto fail;
883 #endif
886 * Add to the dirpath that we have resolved so far.
889 if (*dirpath != '\0') {
890 char *tmp = talloc_asprintf(ctx,
891 "%s/%s", dirpath, start);
892 if (!tmp) {
893 DEBUG(0, ("talloc_asprintf failed\n"));
894 status = NT_STATUS_NO_MEMORY;
895 goto err;
897 TALLOC_FREE(dirpath);
898 dirpath = tmp;
900 else {
901 TALLOC_FREE(dirpath);
902 if (!(dirpath = talloc_strdup(ctx,start))) {
903 DEBUG(0, ("talloc_strdup failed\n"));
904 status = NT_STATUS_NO_MEMORY;
905 goto err;
910 * Cache the dirpath thus far. Don't cache a name with mangled
911 * or wildcard components as this can change the size.
913 if(!component_was_mangled && !name_has_wildcard) {
914 stat_cache_add(orig_path, dirpath,
915 conn->case_sensitive);
919 * Restore the / that we wiped out earlier.
921 if (end) {
922 *end = '/';
927 * Cache the full path. Don't cache a name with mangled or wildcard
928 * components as this can change the size.
931 if(!component_was_mangled && !name_has_wildcard) {
932 stat_cache_add(orig_path, smb_fname->base_name,
933 conn->case_sensitive);
937 * The name has been resolved.
940 DEBUG(5,("conversion finished %s -> %s\n", orig_path,
941 smb_fname->base_name));
943 done:
944 /* Add back the stream if one was stripped off originally. */
945 if (stream != NULL) {
946 smb_fname->stream_name = stream;
948 /* Check path now that the base_name has been converted. */
949 status = build_stream_path(ctx, conn, orig_path, smb_fname);
950 if (!NT_STATUS_IS_OK(status)) {
951 goto fail;
954 TALLOC_FREE(dirpath);
955 *smb_fname_out = smb_fname;
956 return NT_STATUS_OK;
957 fail:
958 DEBUG(10, ("dirpath = [%s] start = [%s]\n", dirpath, start));
959 if (*dirpath != '\0') {
960 smb_fname->base_name = talloc_asprintf(smb_fname, "%s/%s",
961 dirpath, start);
962 } else {
963 smb_fname->base_name = talloc_strdup(smb_fname, start);
965 if (!smb_fname->base_name) {
966 DEBUG(0, ("talloc_asprintf failed\n"));
967 status = NT_STATUS_NO_MEMORY;
968 goto err;
971 *smb_fname_out = smb_fname;
972 TALLOC_FREE(dirpath);
973 return status;
974 err:
975 TALLOC_FREE(smb_fname);
976 return status;
979 /****************************************************************************
980 Ensure a path is not vetod.
981 ****************************************************************************/
983 NTSTATUS check_veto_path(connection_struct *conn, const char *name)
985 if (IS_VETO_PATH(conn, name)) {
986 /* Is it not dot or dot dot. */
987 if (!(ISDOT(name) || ISDOTDOT(name))) {
988 DEBUG(5,("check_veto_path: file path name %s vetoed\n",
989 name));
990 return map_nt_error_from_unix(ENOENT);
993 return NT_STATUS_OK;
996 /****************************************************************************
997 Check a filename - possibly calling check_reduced_name.
998 This is called by every routine before it allows an operation on a filename.
999 It does any final confirmation necessary to ensure that the filename is
1000 a valid one for the user to access.
1001 ****************************************************************************/
1003 NTSTATUS check_name(connection_struct *conn, const char *name)
1005 NTSTATUS status = check_veto_path(conn, name);
1007 if (!NT_STATUS_IS_OK(status)) {
1008 return status;
1011 if (!lp_widelinks(SNUM(conn)) || !lp_symlinks(SNUM(conn))) {
1012 status = check_reduced_name(conn,name);
1013 if (!NT_STATUS_IS_OK(status)) {
1014 DEBUG(5,("check_name: name %s failed with %s\n",name,
1015 nt_errstr(status)));
1016 return status;
1020 return NT_STATUS_OK;
1023 /****************************************************************************
1024 Must be called as root. Creates the struct privilege_paths
1025 attached to the struct smb_request if this call is successful.
1026 ****************************************************************************/
1028 static NTSTATUS check_name_with_privilege(connection_struct *conn,
1029 struct smb_request *smbreq,
1030 const char *name)
1032 NTSTATUS status = check_veto_path(conn, name);
1034 if (!NT_STATUS_IS_OK(status)) {
1035 return status;
1037 return check_reduced_name_with_privilege(conn,
1038 name,
1039 smbreq);
1042 /****************************************************************************
1043 Check if two filenames are equal.
1044 This needs to be careful about whether we are case sensitive.
1045 ****************************************************************************/
1047 static bool fname_equal(const char *name1, const char *name2,
1048 bool case_sensitive)
1050 /* Normal filename handling */
1051 if (case_sensitive) {
1052 return(strcmp(name1,name2) == 0);
1055 return(strequal(name1,name2));
1058 /****************************************************************************
1059 Scan a directory to find a filename, matching without case sensitivity.
1060 If the name looks like a mangled name then try via the mangling functions
1061 ****************************************************************************/
1063 static int get_real_filename_full_scan(connection_struct *conn,
1064 const char *path, const char *name,
1065 bool mangled,
1066 TALLOC_CTX *mem_ctx, char **found_name)
1068 struct smb_Dir *cur_dir;
1069 const char *dname = NULL;
1070 char *talloced = NULL;
1071 char *unmangled_name = NULL;
1072 long curpos;
1074 /* handle null paths */
1075 if ((path == NULL) || (*path == 0)) {
1076 path = ".";
1079 /* If we have a case-sensitive filesystem, it doesn't do us any
1080 * good to search for a name. If a case variation of the name was
1081 * there, then the original stat(2) would have found it.
1083 if (!mangled && !(conn->fs_capabilities & FILE_CASE_SENSITIVE_SEARCH)) {
1084 errno = ENOENT;
1085 return -1;
1089 * The incoming name can be mangled, and if we de-mangle it
1090 * here it will not compare correctly against the filename (name2)
1091 * read from the directory and then mangled by the name_to_8_3()
1092 * call. We need to mangle both names or neither.
1093 * (JRA).
1095 * Fix for bug found by Dina Fine. If in case sensitive mode then
1096 * the mangle cache is no good (3 letter extension could be wrong
1097 * case - so don't demangle in this case - leave as mangled and
1098 * allow the mangling of the directory entry read (which is done
1099 * case insensitively) to match instead. This will lead to more
1100 * false positive matches but we fail completely without it. JRA.
1103 if (mangled && !conn->case_sensitive) {
1104 mangled = !mangle_lookup_name_from_8_3(talloc_tos(), name,
1105 &unmangled_name,
1106 conn->params);
1107 if (!mangled) {
1108 /* Name is now unmangled. */
1109 name = unmangled_name;
1113 /* open the directory */
1114 if (!(cur_dir = OpenDir(talloc_tos(), conn, path, NULL, 0))) {
1115 DEBUG(3,("scan dir didn't open dir [%s]\n",path));
1116 TALLOC_FREE(unmangled_name);
1117 return -1;
1120 /* now scan for matching names */
1121 curpos = 0;
1122 while ((dname = ReadDirName(cur_dir, &curpos, NULL, &talloced))) {
1124 /* Is it dot or dot dot. */
1125 if (ISDOT(dname) || ISDOTDOT(dname)) {
1126 TALLOC_FREE(talloced);
1127 continue;
1131 * At this point dname is the unmangled name.
1132 * name is either mangled or not, depending on the state
1133 * of the "mangled" variable. JRA.
1137 * Check mangled name against mangled name, or unmangled name
1138 * against unmangled name.
1141 if ((mangled && mangled_equal(name,dname,conn->params)) ||
1142 fname_equal(name, dname, conn->case_sensitive)) {
1143 /* we've found the file, change it's name and return */
1144 *found_name = talloc_strdup(mem_ctx, dname);
1145 TALLOC_FREE(unmangled_name);
1146 TALLOC_FREE(cur_dir);
1147 if (!*found_name) {
1148 errno = ENOMEM;
1149 TALLOC_FREE(talloced);
1150 return -1;
1152 TALLOC_FREE(talloced);
1153 return 0;
1155 TALLOC_FREE(talloced);
1158 TALLOC_FREE(unmangled_name);
1159 TALLOC_FREE(cur_dir);
1160 errno = ENOENT;
1161 return -1;
1164 /****************************************************************************
1165 Wrapper around the vfs get_real_filename and the full directory scan
1166 fallback.
1167 ****************************************************************************/
1169 int get_real_filename(connection_struct *conn, const char *path,
1170 const char *name, TALLOC_CTX *mem_ctx,
1171 char **found_name)
1173 int ret;
1174 bool mangled;
1176 mangled = mangle_is_mangled(name, conn->params);
1178 if (mangled) {
1179 return get_real_filename_full_scan(conn, path, name, mangled,
1180 mem_ctx, found_name);
1183 /* Try the vfs first to take advantage of case-insensitive stat. */
1184 ret = SMB_VFS_GET_REAL_FILENAME(conn, path, name, mem_ctx, found_name);
1187 * If the case-insensitive stat was successful, or returned an error
1188 * other than EOPNOTSUPP then there is no need to fall back on the
1189 * full directory scan.
1191 if (ret == 0 || (ret == -1 && errno != EOPNOTSUPP)) {
1192 return ret;
1195 return get_real_filename_full_scan(conn, path, name, mangled, mem_ctx,
1196 found_name);
1199 static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx,
1200 connection_struct *conn,
1201 const char *orig_path,
1202 struct smb_filename *smb_fname)
1204 NTSTATUS status;
1205 unsigned int i, num_streams = 0;
1206 struct stream_struct *streams = NULL;
1208 if (SMB_VFS_STAT(conn, smb_fname) == 0) {
1209 DEBUG(10, ("'%s' exists\n", smb_fname_str_dbg(smb_fname)));
1210 return NT_STATUS_OK;
1213 if (errno != ENOENT) {
1214 DEBUG(10, ("vfs_stat failed: %s\n", strerror(errno)));
1215 status = map_nt_error_from_unix(errno);
1216 goto fail;
1219 /* Fall back to a case-insensitive scan of all streams on the file. */
1220 status = vfs_streaminfo(conn, NULL, smb_fname->base_name, mem_ctx,
1221 &num_streams, &streams);
1223 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
1224 SET_STAT_INVALID(smb_fname->st);
1225 return NT_STATUS_OK;
1228 if (!NT_STATUS_IS_OK(status)) {
1229 DEBUG(10, ("vfs_streaminfo failed: %s\n", nt_errstr(status)));
1230 goto fail;
1233 for (i=0; i<num_streams; i++) {
1234 DEBUG(10, ("comparing [%s] and [%s]: ",
1235 smb_fname->stream_name, streams[i].name));
1236 if (fname_equal(smb_fname->stream_name, streams[i].name,
1237 conn->case_sensitive)) {
1238 DEBUGADD(10, ("equal\n"));
1239 break;
1241 DEBUGADD(10, ("not equal\n"));
1244 /* Couldn't find the stream. */
1245 if (i == num_streams) {
1246 SET_STAT_INVALID(smb_fname->st);
1247 TALLOC_FREE(streams);
1248 return NT_STATUS_OK;
1251 DEBUG(10, ("case insensitive stream. requested: %s, actual: %s\n",
1252 smb_fname->stream_name, streams[i].name));
1255 TALLOC_FREE(smb_fname->stream_name);
1256 smb_fname->stream_name = talloc_strdup(smb_fname, streams[i].name);
1257 if (smb_fname->stream_name == NULL) {
1258 status = NT_STATUS_NO_MEMORY;
1259 goto fail;
1262 SET_STAT_INVALID(smb_fname->st);
1264 if (SMB_VFS_STAT(conn, smb_fname) == 0) {
1265 DEBUG(10, ("'%s' exists\n", smb_fname_str_dbg(smb_fname)));
1267 status = NT_STATUS_OK;
1268 fail:
1269 TALLOC_FREE(streams);
1270 return status;
1274 * Go through all the steps to validate a filename.
1276 * @param ctx talloc_ctx to allocate memory with.
1277 * @param conn connection struct for vfs calls.
1278 * @param dfs_path Whether this path requires dfs resolution.
1279 * @param smbreq SMB request if we're using privileges.
1280 * @param name_in The unconverted name.
1281 * @param ucf_flags flags to pass through to unix_convert().
1282 * UCF_ALWAYS_ALLOW_WCARD_LCOMP will be OR'd in if
1283 * p_cont_wcard != NULL and is true and
1284 * UCF_COND_ALLOW_WCARD_LCOMP.
1285 * @param p_cont_wcard If not NULL, will be set to true if the dfs path
1286 * resolution detects a wildcard.
1287 * @param pp_smb_fname The final converted name will be allocated if the
1288 * return is NT_STATUS_OK.
1290 * @return NT_STATUS_OK if all operations completed succesfully, appropriate
1291 * error otherwise.
1293 static NTSTATUS filename_convert_internal(TALLOC_CTX *ctx,
1294 connection_struct *conn,
1295 bool dfs_path,
1296 struct smb_request *smbreq,
1297 const char *name_in,
1298 uint32_t ucf_flags,
1299 bool *ppath_contains_wcard,
1300 struct smb_filename **pp_smb_fname)
1302 NTSTATUS status;
1303 bool allow_wcards = (ucf_flags & (UCF_COND_ALLOW_WCARD_LCOMP|UCF_ALWAYS_ALLOW_WCARD_LCOMP));
1304 char *fname = NULL;
1306 *pp_smb_fname = NULL;
1308 status = resolve_dfspath_wcard(ctx, conn,
1309 dfs_path,
1310 name_in,
1311 allow_wcards,
1312 &fname,
1313 ppath_contains_wcard);
1314 if (!NT_STATUS_IS_OK(status)) {
1315 DEBUG(10,("filename_convert_internal: resolve_dfspath failed "
1316 "for name %s with %s\n",
1317 name_in,
1318 nt_errstr(status) ));
1319 return status;
1322 if (is_fake_file_path(name_in)) {
1323 SMB_STRUCT_STAT st;
1324 ZERO_STRUCT(st);
1325 st.st_ex_nlink = 1;
1326 status = create_synthetic_smb_fname_split(ctx,
1327 name_in,
1328 &st,
1329 pp_smb_fname);
1330 return status;
1334 * If the caller conditionally allows wildcard lookups, only add the
1335 * always allow if the path actually does contain a wildcard.
1337 if (ucf_flags & UCF_COND_ALLOW_WCARD_LCOMP &&
1338 ppath_contains_wcard != NULL && *ppath_contains_wcard) {
1339 ucf_flags |= UCF_ALWAYS_ALLOW_WCARD_LCOMP;
1342 status = unix_convert(ctx, conn, fname, pp_smb_fname, ucf_flags);
1343 if (!NT_STATUS_IS_OK(status)) {
1344 DEBUG(10,("filename_convert_internal: unix_convert failed "
1345 "for name %s with %s\n",
1346 fname,
1347 nt_errstr(status) ));
1348 return status;
1351 if ((ucf_flags & UCF_UNIX_NAME_LOOKUP) &&
1352 VALID_STAT((*pp_smb_fname)->st) &&
1353 S_ISLNK((*pp_smb_fname)->st.st_ex_mode)) {
1354 return check_veto_path(conn, (*pp_smb_fname)->base_name);
1357 if (!smbreq) {
1358 status = check_name(conn, (*pp_smb_fname)->base_name);
1359 } else {
1360 status = check_name_with_privilege(conn, smbreq, (*pp_smb_fname)->base_name);
1362 if (!NT_STATUS_IS_OK(status)) {
1363 DEBUG(3,("filename_convert_internal: check_name failed "
1364 "for name %s with %s\n",
1365 smb_fname_str_dbg(*pp_smb_fname),
1366 nt_errstr(status) ));
1367 TALLOC_FREE(*pp_smb_fname);
1368 return status;
1371 return status;
1375 * Go through all the steps to validate a filename.
1376 * Non-root version.
1379 NTSTATUS filename_convert(TALLOC_CTX *ctx,
1380 connection_struct *conn,
1381 bool dfs_path,
1382 const char *name_in,
1383 uint32_t ucf_flags,
1384 bool *ppath_contains_wcard,
1385 struct smb_filename **pp_smb_fname)
1387 return filename_convert_internal(ctx,
1388 conn,
1389 dfs_path,
1390 NULL,
1391 name_in,
1392 ucf_flags,
1393 ppath_contains_wcard,
1394 pp_smb_fname);
1398 * Go through all the steps to validate a filename.
1399 * root (privileged) version.
1402 NTSTATUS filename_convert_with_privilege(TALLOC_CTX *ctx,
1403 connection_struct *conn,
1404 struct smb_request *smbreq,
1405 const char *name_in,
1406 uint32_t ucf_flags,
1407 bool *ppath_contains_wcard,
1408 struct smb_filename **pp_smb_fname)
1410 return filename_convert_internal(ctx,
1411 conn,
1412 smbreq->flags2 & FLAGS2_DFS_PATHNAMES,
1413 smbreq,
1414 name_in,
1415 ucf_flags,
1416 ppath_contains_wcard,
1417 pp_smb_fname);