source: vendor/current/source3/smbd/filename.c

Last change on this file was 989, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.7

File size: 38.2 KB
Line 
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
8
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.
13
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.
18
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/>.
21*/
22
23/*
24 * New hash table stat cache code added by Ying Chen.
25 */
26
27#include "includes.h"
28#include "system/filesys.h"
29#include "fake_file.h"
30#include "smbd/smbd.h"
31#include "smbd/globals.h"
32
33static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx,
34 connection_struct *conn,
35 struct smb_filename *smb_fname);
36
37/****************************************************************************
38 Mangle the 2nd name and check if it is then equal to the first name.
39****************************************************************************/
40
41static bool mangled_equal(const char *name1,
42 const char *name2,
43 const struct share_params *p)
44{
45 char mname[13];
46
47 if (!name_to_8_3(name2, mname, False, p)) {
48 return False;
49 }
50 return strequal(name1, mname);
51}
52
53/****************************************************************************
54 Cope with the differing wildcard and non-wildcard error cases.
55****************************************************************************/
56
57static NTSTATUS determine_path_error(const char *name,
58 bool allow_wcard_last_component,
59 bool posix_pathnames)
60{
61 const char *p;
62 bool name_has_wild = false;
63
64 if (!allow_wcard_last_component) {
65 /* Error code within a pathname. */
66 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
67 }
68
69 /* We're terminating here so we
70 * can be a little slower and get
71 * the error code right. Windows
72 * treats the last part of the pathname
73 * separately I think, so if the last
74 * component is a wildcard then we treat
75 * this ./ as "end of component" */
76
77 p = strchr(name, '/');
78
79 if (!posix_pathnames) {
80 name_has_wild = ms_has_wild(name);
81 }
82
83 if (!p && (name_has_wild || ISDOT(name))) {
84 /* Error code at the end of a pathname. */
85 return NT_STATUS_OBJECT_NAME_INVALID;
86 } else {
87 /* Error code within a pathname. */
88 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
89 }
90}
91
92static NTSTATUS check_for_dot_component(const struct smb_filename *smb_fname)
93{
94 /* Ensure we catch all names with in "/."
95 this is disallowed under Windows and
96 in POSIX they've already been removed. */
97 const char *p = strstr(smb_fname->base_name, "/."); /*mb safe*/
98 if (p) {
99 if (p[2] == '/') {
100 /* Error code within a pathname. */
101 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
102 } else if (p[2] == '\0') {
103 /* Error code at the end of a pathname. */
104 return NT_STATUS_OBJECT_NAME_INVALID;
105 }
106 }
107 return NT_STATUS_OK;
108}
109
110/****************************************************************************
111 Optimization for common case where the missing part
112 is in the last component and the client already
113 sent the correct case.
114 Returns NT_STATUS_OK to mean continue the tree walk
115 (possibly with modified start pointer).
116 Any other NT_STATUS_XXX error means terminate the path
117 lookup here.
118****************************************************************************/
119
120static NTSTATUS check_parent_exists(TALLOC_CTX *ctx,
121 connection_struct *conn,
122 bool posix_pathnames,
123 const struct smb_filename *smb_fname,
124 char **pp_dirpath,
125 char **pp_start)
126{
127 struct smb_filename parent_fname;
128 const char *last_component = NULL;
129 NTSTATUS status;
130 int ret;
131 bool parent_fname_has_wild = false;
132
133 ZERO_STRUCT(parent_fname);
134 if (!parent_dirname(ctx, smb_fname->base_name,
135 &parent_fname.base_name,
136 &last_component)) {
137 return NT_STATUS_NO_MEMORY;
138 }
139
140 if (!posix_pathnames) {
141 parent_fname_has_wild = ms_has_wild(parent_fname.base_name);
142 }
143
144 /*
145 * If there was no parent component in
146 * smb_fname->base_name of the parent name
147 * contained a wildcard then don't do this
148 * optimization.
149 */
150 if ((smb_fname->base_name == last_component) ||
151 parent_fname_has_wild) {
152 return NT_STATUS_OK;
153 }
154
155 if (posix_pathnames) {
156 ret = SMB_VFS_LSTAT(conn, &parent_fname);
157 } else {
158 ret = SMB_VFS_STAT(conn, &parent_fname);
159 }
160
161 /* If the parent stat failed, just continue
162 with the normal tree walk. */
163
164 if (ret == -1) {
165 return NT_STATUS_OK;
166 }
167
168 status = check_for_dot_component(&parent_fname);
169 if (!NT_STATUS_IS_OK(status)) {
170 return status;
171 }
172
173 /* Parent exists - set "start" to be the
174 * last component to shorten the tree walk. */
175
176 /*
177 * Safe to use discard_const_p
178 * here as last_component points
179 * into our smb_fname->base_name.
180 */
181 *pp_start = discard_const_p(char, last_component);
182
183 /* Update dirpath. */
184 TALLOC_FREE(*pp_dirpath);
185 *pp_dirpath = talloc_strdup(ctx, parent_fname.base_name);
186 if (!*pp_dirpath) {
187 return NT_STATUS_NO_MEMORY;
188 }
189
190 DEBUG(5,("check_parent_exists: name "
191 "= %s, dirpath = %s, "
192 "start = %s\n",
193 smb_fname->base_name,
194 *pp_dirpath,
195 *pp_start));
196
197 return NT_STATUS_OK;
198}
199
200/****************************************************************************
201This routine is called to convert names from the dos namespace to unix
202namespace. It needs to handle any case conversions, mangling, format changes,
203streams etc.
204
205We assume that we have already done a chdir() to the right "root" directory
206for this service.
207
208The function will return an NTSTATUS error if some part of the name except for
209the last part cannot be resolved, else NT_STATUS_OK.
210
211Note NT_STATUS_OK doesn't mean the name exists or is valid, just that we
212didn't get any fatal errors that should immediately terminate the calling SMB
213processing whilst resolving.
214
215If the UCF_SAVE_LCOMP flag is passed in, then the unmodified last component
216of the pathname is set in smb_filename->original_lcomp.
217
218If UCF_ALWAYS_ALLOW_WCARD_LCOMP is passed in, then a MS wildcard was detected
219and should be allowed in the last component of the path only.
220
221If the orig_path was a stream, smb_filename->base_name will point to the base
222filename, and smb_filename->stream_name will point to the stream name. If
223orig_path was not a stream, then smb_filename->stream_name will be NULL.
224
225On exit from unix_convert, the smb_filename->st stat struct will be populated
226if the file exists and was found, if not this stat struct will be filled with
227zeros (and this can be detected by checking for nlinks = 0, which can never be
228true for any file).
229****************************************************************************/
230
231NTSTATUS unix_convert(TALLOC_CTX *ctx,
232 connection_struct *conn,
233 const char *orig_path,
234 struct smb_filename **smb_fname_out,
235 uint32_t ucf_flags)
236{
237 struct smb_filename *smb_fname = NULL;
238
239 /*
240 * This looks strange. But we need "start" initialized to "" here but
241 * it can't be a const char *, so 'char *start = "";' does not work.
242 */
243 char cnull = '\0';
244 char *start = &cnull;
245
246 char *end;
247 char *dirpath = NULL;
248 char *stream = NULL;
249 bool component_was_mangled = False;
250 bool name_has_wildcard = False;
251 bool posix_pathnames = (ucf_flags & UCF_POSIX_PATHNAMES);
252 bool allow_wcard_last_component =
253 (ucf_flags & UCF_ALWAYS_ALLOW_WCARD_LCOMP);
254 bool save_last_component = ucf_flags & UCF_SAVE_LCOMP;
255 NTSTATUS status;
256 int ret = -1;
257
258 *smb_fname_out = NULL;
259
260 smb_fname = talloc_zero(ctx, struct smb_filename);
261 if (smb_fname == NULL) {
262 return NT_STATUS_NO_MEMORY;
263 }
264
265 if (conn->printer) {
266 /* we don't ever use the filenames on a printer share as a
267 filename - so don't convert them */
268 if (!(smb_fname->base_name = talloc_strdup(smb_fname,
269 orig_path))) {
270 status = NT_STATUS_NO_MEMORY;
271 goto err;
272 }
273 goto done;
274 }
275
276 DEBUG(5, ("unix_convert called on file \"%s\"\n", orig_path));
277
278 /*
279 * Conversion to basic unix format is already done in
280 * check_path_syntax().
281 */
282
283 /*
284 * Names must be relative to the root of the service - any leading /.
285 * and trailing /'s should have been trimmed by check_path_syntax().
286 */
287
288#ifdef DEVELOPER
289 SMB_ASSERT(*orig_path != '/');
290#endif
291
292 /*
293 * If we trimmed down to a single '\0' character
294 * then we should use the "." directory to avoid
295 * searching the cache, but not if we are in a
296 * printing share.
297 * As we know this is valid we can return true here.
298 */
299
300 if (!*orig_path) {
301 if (!(smb_fname->base_name = talloc_strdup(smb_fname, "."))) {
302 status = NT_STATUS_NO_MEMORY;
303 goto err;
304 }
305 if (SMB_VFS_STAT(conn, smb_fname) != 0) {
306 status = map_nt_error_from_unix(errno);
307 goto err;
308 }
309 DEBUG(5, ("conversion finished \"\" -> %s\n",
310 smb_fname->base_name));
311 goto done;
312 }
313
314 if (orig_path[0] == '.' && (orig_path[1] == '/' ||
315 orig_path[1] == '\0')) {
316 /* Start of pathname can't be "." only. */
317 if (orig_path[1] == '\0' || orig_path[2] == '\0') {
318 status = NT_STATUS_OBJECT_NAME_INVALID;
319 } else {
320 status =determine_path_error(&orig_path[2],
321 allow_wcard_last_component,
322 posix_pathnames);
323 }
324 goto err;
325 }
326
327 /* Start with the full orig_path as given by the caller. */
328 if (!(smb_fname->base_name = talloc_strdup(smb_fname, orig_path))) {
329 DEBUG(0, ("talloc_strdup failed\n"));
330 status = NT_STATUS_NO_MEMORY;
331 goto err;
332 }
333
334 /*
335 * Large directory fix normalization. If we're case sensitive, and
336 * the case preserving parameters are set to "no", normalize the case of
337 * the incoming filename from the client WHETHER IT EXISTS OR NOT !
338 * This is in conflict with the current (3.0.20) man page, but is
339 * what people expect from the "large directory howto". I'll update
340 * the man page. Thanks to jht@samba.org for finding this. JRA.
341 */
342
343 if (conn->case_sensitive && !conn->case_preserve &&
344 !conn->short_case_preserve) {
345 if (!strnorm(smb_fname->base_name, lp_default_case(SNUM(conn)))) {
346 DEBUG(0, ("strnorm %s failed\n", smb_fname->base_name));
347 status = NT_STATUS_INVALID_PARAMETER;
348 goto err;
349 }
350 }
351
352 /*
353 * Ensure saved_last_component is valid even if file exists.
354 */
355
356 if(save_last_component) {
357 end = strrchr_m(smb_fname->base_name, '/');
358 if (end) {
359 smb_fname->original_lcomp = talloc_strdup(smb_fname,
360 end + 1);
361 } else {
362 smb_fname->original_lcomp =
363 talloc_strdup(smb_fname, smb_fname->base_name);
364 }
365 if (smb_fname->original_lcomp == NULL) {
366 status = NT_STATUS_NO_MEMORY;
367 goto err;
368 }
369 }
370
371 /*
372 * Strip off the stream, and add it back when we're done with the
373 * base_name.
374 */
375 if (!posix_pathnames) {
376 stream = strchr_m(smb_fname->base_name, ':');
377
378 if (stream != NULL) {
379 char *tmp = talloc_strdup(smb_fname, stream);
380 if (tmp == NULL) {
381 status = NT_STATUS_NO_MEMORY;
382 goto err;
383 }
384 /*
385 * Since this is actually pointing into
386 * smb_fname->base_name this truncates base_name.
387 */
388 *stream = '\0';
389 stream = tmp;
390
391 if (smb_fname->base_name[0] == '\0') {
392 /*
393 * orig_name was just a stream name.
394 * This is a stream on the root of
395 * the share. Replace base_name with
396 * a "."
397 */
398 smb_fname->base_name =
399 talloc_strdup(smb_fname, ".");
400 if (smb_fname->base_name == NULL) {
401 status = NT_STATUS_NO_MEMORY;
402 goto err;
403 }
404 if (SMB_VFS_STAT(conn, smb_fname) != 0) {
405 status = map_nt_error_from_unix(errno);
406 goto err;
407 }
408 /* dirpath must exist. */
409 dirpath = talloc_strdup(ctx,"");
410 if (dirpath == NULL) {
411 status = NT_STATUS_NO_MEMORY;
412 goto err;
413 }
414 DEBUG(5, ("conversion finished %s -> %s\n",
415 orig_path,
416 smb_fname->base_name));
417 goto done;
418 }
419 }
420 }
421
422 start = smb_fname->base_name;
423
424 /*
425 * If we're providing case insensitive semantics or
426 * the underlying filesystem is case insensitive,
427 * then a case-normalized hit in the stat-cache is
428 * authoratitive. JRA.
429 *
430 * Note: We're only checking base_name. The stream_name will be
431 * added and verified in build_stream_path().
432 */
433
434 if((!conn->case_sensitive || !(conn->fs_capabilities &
435 FILE_CASE_SENSITIVE_SEARCH)) &&
436 stat_cache_lookup(conn, posix_pathnames, &smb_fname->base_name, &dirpath, &start,
437 &smb_fname->st)) {
438 goto done;
439 }
440
441 /*
442 * Make sure "dirpath" is an allocated string, we use this for
443 * building the directories with talloc_asprintf and free it.
444 */
445
446 if ((dirpath == NULL) && (!(dirpath = talloc_strdup(ctx,"")))) {
447 DEBUG(0, ("talloc_strdup failed\n"));
448 status = NT_STATUS_NO_MEMORY;
449 goto err;
450 }
451
452 /*
453 * If we have a wildcard we must walk the path to
454 * find where the error is, even if case sensitive
455 * is true.
456 */
457
458 if (!posix_pathnames) {
459 /* POSIX pathnames have no wildcards. */
460 name_has_wildcard = ms_has_wild(smb_fname->base_name);
461 if (name_has_wildcard && !allow_wcard_last_component) {
462 /* Wildcard not valid anywhere. */
463 status = NT_STATUS_OBJECT_NAME_INVALID;
464 goto fail;
465 }
466 }
467
468 DEBUG(5,("unix_convert begin: name = %s, dirpath = %s, start = %s\n",
469 smb_fname->base_name, dirpath, start));
470
471 if (!name_has_wildcard) {
472 /*
473 * stat the name - if it exists then we can add the stream back (if
474 * there was one) and be done!
475 */
476
477 if (posix_pathnames) {
478 ret = SMB_VFS_LSTAT(conn, smb_fname);
479 } else {
480 ret = SMB_VFS_STAT(conn, smb_fname);
481 }
482
483 if (ret == 0) {
484 status = check_for_dot_component(smb_fname);
485 if (!NT_STATUS_IS_OK(status)) {
486 goto fail;
487 }
488 /* Add the path (not including the stream) to the cache. */
489 stat_cache_add(orig_path, smb_fname->base_name,
490 conn->case_sensitive);
491 DEBUG(5,("conversion of base_name finished %s -> %s\n",
492 orig_path, smb_fname->base_name));
493 goto done;
494 }
495
496 /* Stat failed - ensure we don't use it. */
497 SET_STAT_INVALID(smb_fname->st);
498
499 if (errno == ENOENT) {
500 /* Optimization when creating a new file - only
501 the last component doesn't exist.
502 NOTE : check_parent_exists() doesn't preserve errno.
503 */
504 int saved_errno = errno;
505 status = check_parent_exists(ctx,
506 conn,
507 posix_pathnames,
508 smb_fname,
509 &dirpath,
510 &start);
511 errno = saved_errno;
512 if (!NT_STATUS_IS_OK(status)) {
513 goto fail;
514 }
515 }
516
517 /*
518 * A special case - if we don't have any wildcards or mangling chars and are case
519 * sensitive or the underlying filesystem is case insensitive then searching
520 * won't help.
521 */
522
523 if ((conn->case_sensitive || !(conn->fs_capabilities &
524 FILE_CASE_SENSITIVE_SEARCH)) &&
525 !mangle_is_mangled(smb_fname->base_name, conn->params)) {
526
527 status = check_for_dot_component(smb_fname);
528 if (!NT_STATUS_IS_OK(status)) {
529 goto fail;
530 }
531
532 /*
533 * The stat failed. Could be ok as it could be
534 * a new file.
535 */
536
537 if (errno == ENOTDIR || errno == ELOOP) {
538 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
539 goto fail;
540 } else if (errno == ENOENT) {
541 /*
542 * Was it a missing last component ?
543 * or a missing intermediate component ?
544 */
545 struct smb_filename parent_fname;
546 const char *last_component = NULL;
547
548 ZERO_STRUCT(parent_fname);
549 if (!parent_dirname(ctx, smb_fname->base_name,
550 &parent_fname.base_name,
551 &last_component)) {
552 status = NT_STATUS_NO_MEMORY;
553 goto fail;
554 }
555 if (posix_pathnames) {
556 ret = SMB_VFS_LSTAT(conn, &parent_fname);
557 } else {
558 ret = SMB_VFS_STAT(conn, &parent_fname);
559 }
560 if (ret == -1) {
561 if (errno == ENOTDIR ||
562 errno == ENOENT ||
563 errno == ELOOP) {
564 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
565 goto fail;
566 }
567 }
568
569 /*
570 * Missing last component is ok - new file.
571 * Also deal with permission denied elsewhere.
572 * Just drop out to done.
573 */
574 goto done;
575 }
576 }
577 } else {
578 /*
579 * We have a wildcard in the pathname.
580 *
581 * Optimization for common case where the wildcard
582 * is in the last component and the client already
583 * sent the correct case.
584 * NOTE : check_parent_exists() doesn't preserve errno.
585 */
586 int saved_errno = errno;
587 status = check_parent_exists(ctx,
588 conn,
589 posix_pathnames,
590 smb_fname,
591 &dirpath,
592 &start);
593 errno = saved_errno;
594 if (!NT_STATUS_IS_OK(status)) {
595 goto fail;
596 }
597 }
598
599 /*
600 * is_mangled() was changed to look at an entire pathname, not
601 * just a component. JRA.
602 */
603
604 if (mangle_is_mangled(start, conn->params)) {
605 component_was_mangled = True;
606 }
607
608 /*
609 * Now we need to recursively match the name against the real
610 * directory structure.
611 */
612
613 /*
614 * Match each part of the path name separately, trying the names
615 * as is first, then trying to scan the directory for matching names.
616 */
617
618 for (; start ; start = (end?end+1:(char *)NULL)) {
619 /*
620 * Pinpoint the end of this section of the filename.
621 */
622 /* mb safe. '/' can't be in any encoded char. */
623 end = strchr(start, '/');
624
625 /*
626 * Chop the name at this point.
627 */
628 if (end) {
629 *end = 0;
630 }
631
632 if (save_last_component) {
633 TALLOC_FREE(smb_fname->original_lcomp);
634 smb_fname->original_lcomp = talloc_strdup(smb_fname,
635 end ? end + 1 : start);
636 if (!smb_fname->original_lcomp) {
637 DEBUG(0, ("talloc failed\n"));
638 status = NT_STATUS_NO_MEMORY;
639 goto err;
640 }
641 }
642
643 /* The name cannot have a component of "." */
644
645 if (ISDOT(start)) {
646 if (!end) {
647 /* Error code at the end of a pathname. */
648 status = NT_STATUS_OBJECT_NAME_INVALID;
649 } else {
650 status = determine_path_error(end+1,
651 allow_wcard_last_component,
652 posix_pathnames);
653 }
654 goto fail;
655 }
656
657 /* The name cannot have a wildcard if it's not
658 the last component. */
659
660 if (!posix_pathnames) {
661 name_has_wildcard = ms_has_wild(start);
662 }
663
664 /* Wildcards never valid within a pathname. */
665 if (name_has_wildcard && end) {
666 status = NT_STATUS_OBJECT_NAME_INVALID;
667 goto fail;
668 }
669
670 /* Skip the stat call if it's a wildcard end. */
671 if (name_has_wildcard) {
672 DEBUG(5,("Wildcard %s\n",start));
673 goto done;
674 }
675
676 /*
677 * Check if the name exists up to this point.
678 */
679
680 if (posix_pathnames) {
681 ret = SMB_VFS_LSTAT(conn, smb_fname);
682 } else {
683 ret = SMB_VFS_STAT(conn, smb_fname);
684 }
685
686 if (ret == 0) {
687 /*
688 * It exists. it must either be a directory or this must
689 * be the last part of the path for it to be OK.
690 */
691 if (end && !S_ISDIR(smb_fname->st.st_ex_mode)) {
692 /*
693 * An intermediate part of the name isn't
694 * a directory.
695 */
696 DEBUG(5,("Not a dir %s\n",start));
697 *end = '/';
698 /*
699 * We need to return the fact that the
700 * intermediate name resolution failed. This
701 * is used to return an error of ERRbadpath
702 * rather than ERRbadfile. Some Windows
703 * applications depend on the difference between
704 * these two errors.
705 */
706 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
707 goto fail;
708 }
709
710 } else {
711 char *found_name = NULL;
712
713 /* Stat failed - ensure we don't use it. */
714 SET_STAT_INVALID(smb_fname->st);
715
716 /*
717 * Reset errno so we can detect
718 * directory open errors.
719 */
720 errno = 0;
721
722 /*
723 * Try to find this part of the path in the directory.
724 */
725
726 if (name_has_wildcard ||
727 (get_real_filename(conn, dirpath, start,
728 talloc_tos(),
729 &found_name) == -1)) {
730 char *unmangled;
731
732 if (end) {
733 /*
734 * An intermediate part of the name
735 * can't be found.
736 */
737 DEBUG(5,("Intermediate not found %s\n",
738 start));
739 *end = '/';
740
741 /*
742 * We need to return the fact that the
743 * intermediate name resolution failed.
744 * This is used to return an error of
745 * ERRbadpath rather than ERRbadfile.
746 * Some Windows applications depend on
747 * the difference between these two
748 * errors.
749 */
750
751 /*
752 * ENOENT, ENOTDIR and ELOOP all map
753 * to NT_STATUS_OBJECT_PATH_NOT_FOUND
754 * in the filename walk.
755 */
756
757 if (errno == ENOENT ||
758 errno == ENOTDIR ||
759 errno == ELOOP) {
760 status =
761 NT_STATUS_OBJECT_PATH_NOT_FOUND;
762 }
763 else {
764 status =
765 map_nt_error_from_unix(errno);
766 }
767 goto fail;
768 }
769
770 /*
771 * ENOENT/EACCESS are the only valid errors
772 * here.
773 */
774
775 if (errno == EACCES) {
776 if ((ucf_flags & UCF_PREP_CREATEFILE) == 0) {
777 status = NT_STATUS_ACCESS_DENIED;
778 goto fail;
779 } else {
780 /*
781 * This is the dropbox
782 * behaviour. A dropbox is a
783 * directory with only -wx
784 * permissions, so
785 * get_real_filename fails
786 * with EACCESS, it needs to
787 * list the directory. We
788 * nevertheless want to allow
789 * users creating a file.
790 */
791 errno = 0;
792 }
793 }
794
795 if ((errno != 0) && (errno != ENOENT)) {
796 /*
797 * ENOTDIR and ELOOP both map to
798 * NT_STATUS_OBJECT_PATH_NOT_FOUND
799 * in the filename walk.
800 */
801 if (errno == ENOTDIR ||
802 errno == ELOOP) {
803 status =
804 NT_STATUS_OBJECT_PATH_NOT_FOUND;
805 } else {
806 status =
807 map_nt_error_from_unix(errno);
808 }
809 goto fail;
810 }
811
812 /*
813 * Just the last part of the name doesn't exist.
814 * We need to strupper() or strlower() it as
815 * this conversion may be used for file creation
816 * purposes. Fix inspired by
817 * Thomas Neumann <t.neumann@iku-ag.de>.
818 */
819 if (!conn->case_preserve ||
820 (mangle_is_8_3(start, False,
821 conn->params) &&
822 !conn->short_case_preserve)) {
823 if (!strnorm(start,
824 lp_default_case(SNUM(conn)))) {
825 DEBUG(0, ("strnorm %s failed\n",
826 start));
827 status = NT_STATUS_INVALID_PARAMETER;
828 goto err;
829 }
830 }
831
832 /*
833 * check on the mangled stack to see if we can
834 * recover the base of the filename.
835 */
836
837 if (mangle_is_mangled(start, conn->params)
838 && mangle_lookup_name_from_8_3(ctx,
839 start,
840 &unmangled,
841 conn->params)) {
842 char *tmp;
843 size_t start_ofs =
844 start - smb_fname->base_name;
845
846 if (*dirpath != '\0') {
847 tmp = talloc_asprintf(
848 smb_fname, "%s/%s",
849 dirpath, unmangled);
850 TALLOC_FREE(unmangled);
851 }
852 else {
853 tmp = unmangled;
854 }
855 if (tmp == NULL) {
856 DEBUG(0, ("talloc failed\n"));
857 status = NT_STATUS_NO_MEMORY;
858 goto err;
859 }
860 TALLOC_FREE(smb_fname->base_name);
861 smb_fname->base_name = tmp;
862 start =
863 smb_fname->base_name + start_ofs;
864 end = start + strlen(start);
865 }
866
867 DEBUG(5,("New file %s\n",start));
868 goto done;
869 }
870
871
872 /*
873 * Restore the rest of the string. If the string was
874 * mangled the size may have changed.
875 */
876 if (end) {
877 char *tmp;
878 size_t start_ofs =
879 start - smb_fname->base_name;
880
881 if (*dirpath != '\0') {
882 tmp = talloc_asprintf(smb_fname,
883 "%s/%s/%s", dirpath,
884 found_name, end+1);
885 }
886 else {
887 tmp = talloc_asprintf(smb_fname,
888 "%s/%s", found_name,
889 end+1);
890 }
891 if (tmp == NULL) {
892 DEBUG(0, ("talloc_asprintf failed\n"));
893 status = NT_STATUS_NO_MEMORY;
894 goto err;
895 }
896 TALLOC_FREE(smb_fname->base_name);
897 smb_fname->base_name = tmp;
898 start = smb_fname->base_name + start_ofs;
899 end = start + strlen(found_name);
900 *end = '\0';
901 } else {
902 char *tmp;
903 size_t start_ofs =
904 start - smb_fname->base_name;
905
906 if (*dirpath != '\0') {
907 tmp = talloc_asprintf(smb_fname,
908 "%s/%s", dirpath,
909 found_name);
910 } else {
911 tmp = talloc_strdup(smb_fname,
912 found_name);
913 }
914 if (tmp == NULL) {
915 DEBUG(0, ("talloc failed\n"));
916 status = NT_STATUS_NO_MEMORY;
917 goto err;
918 }
919 TALLOC_FREE(smb_fname->base_name);
920 smb_fname->base_name = tmp;
921 start = smb_fname->base_name + start_ofs;
922
923 /*
924 * We just scanned for, and found the end of
925 * the path. We must return a valid stat struct
926 * if it exists. JRA.
927 */
928
929 if (posix_pathnames) {
930 ret = SMB_VFS_LSTAT(conn, smb_fname);
931 } else {
932 ret = SMB_VFS_STAT(conn, smb_fname);
933 }
934
935 if (ret != 0) {
936 SET_STAT_INVALID(smb_fname->st);
937 }
938 }
939
940 TALLOC_FREE(found_name);
941 } /* end else */
942
943 /*
944 * Add to the dirpath that we have resolved so far.
945 */
946
947 if (*dirpath != '\0') {
948 char *tmp = talloc_asprintf(ctx,
949 "%s/%s", dirpath, start);
950 if (!tmp) {
951 DEBUG(0, ("talloc_asprintf failed\n"));
952 status = NT_STATUS_NO_MEMORY;
953 goto err;
954 }
955 TALLOC_FREE(dirpath);
956 dirpath = tmp;
957 }
958 else {
959 TALLOC_FREE(dirpath);
960 if (!(dirpath = talloc_strdup(ctx,start))) {
961 DEBUG(0, ("talloc_strdup failed\n"));
962 status = NT_STATUS_NO_MEMORY;
963 goto err;
964 }
965 }
966
967 /*
968 * Cache the dirpath thus far. Don't cache a name with mangled
969 * or wildcard components as this can change the size.
970 */
971 if(!component_was_mangled && !name_has_wildcard) {
972 stat_cache_add(orig_path, dirpath,
973 conn->case_sensitive);
974 }
975
976 /*
977 * Restore the / that we wiped out earlier.
978 */
979 if (end) {
980 *end = '/';
981 }
982 }
983
984 /*
985 * Cache the full path. Don't cache a name with mangled or wildcard
986 * components as this can change the size.
987 */
988
989 if(!component_was_mangled && !name_has_wildcard) {
990 stat_cache_add(orig_path, smb_fname->base_name,
991 conn->case_sensitive);
992 }
993
994 /*
995 * The name has been resolved.
996 */
997
998 DEBUG(5,("conversion finished %s -> %s\n", orig_path,
999 smb_fname->base_name));
1000
1001 done:
1002 /* Add back the stream if one was stripped off originally. */
1003 if (stream != NULL) {
1004 smb_fname->stream_name = stream;
1005
1006 /* Check path now that the base_name has been converted. */
1007 status = build_stream_path(ctx, conn, smb_fname);
1008 if (!NT_STATUS_IS_OK(status)) {
1009 goto fail;
1010 }
1011 }
1012 TALLOC_FREE(dirpath);
1013 *smb_fname_out = smb_fname;
1014 return NT_STATUS_OK;
1015 fail:
1016 DEBUG(10, ("dirpath = [%s] start = [%s]\n", dirpath, start));
1017 if (dirpath && *dirpath != '\0') {
1018 smb_fname->base_name = talloc_asprintf(smb_fname, "%s/%s",
1019 dirpath, start);
1020 } else {
1021 smb_fname->base_name = talloc_strdup(smb_fname, start);
1022 }
1023 if (!smb_fname->base_name) {
1024 DEBUG(0, ("talloc_asprintf failed\n"));
1025 status = NT_STATUS_NO_MEMORY;
1026 goto err;
1027 }
1028
1029 *smb_fname_out = smb_fname;
1030 TALLOC_FREE(dirpath);
1031 return status;
1032 err:
1033 TALLOC_FREE(smb_fname);
1034 return status;
1035}
1036
1037/****************************************************************************
1038 Ensure a path is not vetoed.
1039****************************************************************************/
1040
1041static NTSTATUS check_veto_path(connection_struct *conn, const char *name)
1042{
1043 if (IS_VETO_PATH(conn, name)) {
1044 /* Is it not dot or dot dot. */
1045 if (!(ISDOT(name) || ISDOTDOT(name))) {
1046 DEBUG(5,("check_veto_path: file path name %s vetoed\n",
1047 name));
1048 return map_nt_error_from_unix(ENOENT);
1049 }
1050 }
1051 return NT_STATUS_OK;
1052}
1053
1054/****************************************************************************
1055 Check a filename - possibly calling check_reduced_name.
1056 This is called by every routine before it allows an operation on a filename.
1057 It does any final confirmation necessary to ensure that the filename is
1058 a valid one for the user to access.
1059****************************************************************************/
1060
1061NTSTATUS check_name(connection_struct *conn, const char *name)
1062{
1063 NTSTATUS status = check_veto_path(conn, name);
1064
1065 if (!NT_STATUS_IS_OK(status)) {
1066 return status;
1067 }
1068
1069 if (!lp_widelinks(SNUM(conn)) || !lp_follow_symlinks(SNUM(conn))) {
1070 status = check_reduced_name(conn,name);
1071 if (!NT_STATUS_IS_OK(status)) {
1072 DEBUG(5,("check_name: name %s failed with %s\n",name,
1073 nt_errstr(status)));
1074 return status;
1075 }
1076 }
1077
1078 return NT_STATUS_OK;
1079}
1080
1081/****************************************************************************
1082 Must be called as root. Creates the struct privilege_paths
1083 attached to the struct smb_request if this call is successful.
1084****************************************************************************/
1085
1086static NTSTATUS check_name_with_privilege(connection_struct *conn,
1087 struct smb_request *smbreq,
1088 const char *name)
1089{
1090 NTSTATUS status = check_veto_path(conn, name);
1091
1092 if (!NT_STATUS_IS_OK(status)) {
1093 return status;
1094 }
1095 return check_reduced_name_with_privilege(conn,
1096 name,
1097 smbreq);
1098}
1099
1100/****************************************************************************
1101 Check if two filenames are equal.
1102 This needs to be careful about whether we are case sensitive.
1103****************************************************************************/
1104
1105static bool fname_equal(const char *name1, const char *name2,
1106 bool case_sensitive)
1107{
1108 /* Normal filename handling */
1109 if (case_sensitive) {
1110 return(strcmp(name1,name2) == 0);
1111 }
1112
1113 return(strequal(name1,name2));
1114}
1115
1116/****************************************************************************
1117 Scan a directory to find a filename, matching without case sensitivity.
1118 If the name looks like a mangled name then try via the mangling functions
1119****************************************************************************/
1120
1121static int get_real_filename_full_scan(connection_struct *conn,
1122 const char *path, const char *name,
1123 bool mangled,
1124 TALLOC_CTX *mem_ctx, char **found_name)
1125{
1126 struct smb_Dir *cur_dir;
1127 const char *dname = NULL;
1128 char *talloced = NULL;
1129 char *unmangled_name = NULL;
1130 long curpos;
1131
1132 /* handle null paths */
1133 if ((path == NULL) || (*path == 0)) {
1134 path = ".";
1135 }
1136
1137 /* If we have a case-sensitive filesystem, it doesn't do us any
1138 * good to search for a name. If a case variation of the name was
1139 * there, then the original stat(2) would have found it.
1140 */
1141 if (!mangled && !(conn->fs_capabilities & FILE_CASE_SENSITIVE_SEARCH)) {
1142 errno = ENOENT;
1143 return -1;
1144 }
1145
1146 /*
1147 * The incoming name can be mangled, and if we de-mangle it
1148 * here it will not compare correctly against the filename (name2)
1149 * read from the directory and then mangled by the name_to_8_3()
1150 * call. We need to mangle both names or neither.
1151 * (JRA).
1152 *
1153 * Fix for bug found by Dina Fine. If in case sensitive mode then
1154 * the mangle cache is no good (3 letter extension could be wrong
1155 * case - so don't demangle in this case - leave as mangled and
1156 * allow the mangling of the directory entry read (which is done
1157 * case insensitively) to match instead. This will lead to more
1158 * false positive matches but we fail completely without it. JRA.
1159 */
1160
1161 if (mangled && !conn->case_sensitive) {
1162 mangled = !mangle_lookup_name_from_8_3(talloc_tos(), name,
1163 &unmangled_name,
1164 conn->params);
1165 if (!mangled) {
1166 /* Name is now unmangled. */
1167 name = unmangled_name;
1168 }
1169 }
1170
1171 /* open the directory */
1172 if (!(cur_dir = OpenDir(talloc_tos(), conn, path, NULL, 0))) {
1173 DEBUG(3,("scan dir didn't open dir [%s]\n",path));
1174 TALLOC_FREE(unmangled_name);
1175 return -1;
1176 }
1177
1178 /* now scan for matching names */
1179 curpos = 0;
1180 while ((dname = ReadDirName(cur_dir, &curpos, NULL, &talloced))) {
1181
1182 /* Is it dot or dot dot. */
1183 if (ISDOT(dname) || ISDOTDOT(dname)) {
1184 TALLOC_FREE(talloced);
1185 continue;
1186 }
1187
1188 /*
1189 * At this point dname is the unmangled name.
1190 * name is either mangled or not, depending on the state
1191 * of the "mangled" variable. JRA.
1192 */
1193
1194 /*
1195 * Check mangled name against mangled name, or unmangled name
1196 * against unmangled name.
1197 */
1198
1199 if ((mangled && mangled_equal(name,dname,conn->params)) ||
1200 fname_equal(name, dname, conn->case_sensitive)) {
1201 /* we've found the file, change it's name and return */
1202 *found_name = talloc_strdup(mem_ctx, dname);
1203 TALLOC_FREE(unmangled_name);
1204 TALLOC_FREE(cur_dir);
1205 if (!*found_name) {
1206 errno = ENOMEM;
1207 TALLOC_FREE(talloced);
1208 return -1;
1209 }
1210 TALLOC_FREE(talloced);
1211 return 0;
1212 }
1213 TALLOC_FREE(talloced);
1214 }
1215
1216 TALLOC_FREE(unmangled_name);
1217 TALLOC_FREE(cur_dir);
1218 errno = ENOENT;
1219 return -1;
1220}
1221
1222/****************************************************************************
1223 Wrapper around the vfs get_real_filename and the full directory scan
1224 fallback.
1225****************************************************************************/
1226
1227int get_real_filename(connection_struct *conn, const char *path,
1228 const char *name, TALLOC_CTX *mem_ctx,
1229 char **found_name)
1230{
1231 int ret;
1232 bool mangled;
1233
1234 mangled = mangle_is_mangled(name, conn->params);
1235
1236 if (mangled) {
1237 return get_real_filename_full_scan(conn, path, name, mangled,
1238 mem_ctx, found_name);
1239 }
1240
1241 /* Try the vfs first to take advantage of case-insensitive stat. */
1242 ret = SMB_VFS_GET_REAL_FILENAME(conn, path, name, mem_ctx, found_name);
1243
1244 /*
1245 * If the case-insensitive stat was successful, or returned an error
1246 * other than EOPNOTSUPP then there is no need to fall back on the
1247 * full directory scan.
1248 */
1249 if (ret == 0 || (ret == -1 && errno != EOPNOTSUPP)) {
1250 return ret;
1251 }
1252
1253 return get_real_filename_full_scan(conn, path, name, mangled, mem_ctx,
1254 found_name);
1255}
1256
1257static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx,
1258 connection_struct *conn,
1259 struct smb_filename *smb_fname)
1260{
1261 NTSTATUS status;
1262 unsigned int i, num_streams = 0;
1263 struct stream_struct *streams = NULL;
1264
1265 if (SMB_VFS_STAT(conn, smb_fname) == 0) {
1266 DEBUG(10, ("'%s' exists\n", smb_fname_str_dbg(smb_fname)));
1267 return NT_STATUS_OK;
1268 }
1269
1270 if (errno != ENOENT) {
1271 DEBUG(10, ("vfs_stat failed: %s\n", strerror(errno)));
1272 status = map_nt_error_from_unix(errno);
1273 goto fail;
1274 }
1275
1276 /* Fall back to a case-insensitive scan of all streams on the file. */
1277 status = vfs_streaminfo(conn, NULL, smb_fname->base_name, mem_ctx,
1278 &num_streams, &streams);
1279
1280 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
1281 SET_STAT_INVALID(smb_fname->st);
1282 return NT_STATUS_OK;
1283 }
1284
1285 if (!NT_STATUS_IS_OK(status)) {
1286 DEBUG(10, ("vfs_streaminfo failed: %s\n", nt_errstr(status)));
1287 goto fail;
1288 }
1289
1290 for (i=0; i<num_streams; i++) {
1291 DEBUG(10, ("comparing [%s] and [%s]: ",
1292 smb_fname->stream_name, streams[i].name));
1293 if (fname_equal(smb_fname->stream_name, streams[i].name,
1294 conn->case_sensitive)) {
1295 DEBUGADD(10, ("equal\n"));
1296 break;
1297 }
1298 DEBUGADD(10, ("not equal\n"));
1299 }
1300
1301 /* Couldn't find the stream. */
1302 if (i == num_streams) {
1303 SET_STAT_INVALID(smb_fname->st);
1304 TALLOC_FREE(streams);
1305 return NT_STATUS_OK;
1306 }
1307
1308 DEBUG(10, ("case insensitive stream. requested: %s, actual: %s\n",
1309 smb_fname->stream_name, streams[i].name));
1310
1311
1312 TALLOC_FREE(smb_fname->stream_name);
1313 smb_fname->stream_name = talloc_strdup(smb_fname, streams[i].name);
1314 if (smb_fname->stream_name == NULL) {
1315 status = NT_STATUS_NO_MEMORY;
1316 goto fail;
1317 }
1318
1319 SET_STAT_INVALID(smb_fname->st);
1320
1321 if (SMB_VFS_STAT(conn, smb_fname) == 0) {
1322 DEBUG(10, ("'%s' exists\n", smb_fname_str_dbg(smb_fname)));
1323 }
1324 status = NT_STATUS_OK;
1325 fail:
1326 TALLOC_FREE(streams);
1327 return status;
1328}
1329
1330/**
1331 * Go through all the steps to validate a filename.
1332 *
1333 * @param ctx talloc_ctx to allocate memory with.
1334 * @param conn connection struct for vfs calls.
1335 * @param dfs_path Whether this path requires dfs resolution.
1336 * @param smbreq SMB request if we're using privileges.
1337 * @param name_in The unconverted name.
1338 * @param ucf_flags flags to pass through to unix_convert().
1339 * UCF_ALWAYS_ALLOW_WCARD_LCOMP will be OR'd in if
1340 * p_cont_wcard != NULL and is true and
1341 * UCF_COND_ALLOW_WCARD_LCOMP.
1342 * @param p_cont_wcard If not NULL, will be set to true if the dfs path
1343 * resolution detects a wildcard.
1344 * @param pp_smb_fname The final converted name will be allocated if the
1345 * return is NT_STATUS_OK.
1346 *
1347 * @return NT_STATUS_OK if all operations completed succesfully, appropriate
1348 * error otherwise.
1349 */
1350static NTSTATUS filename_convert_internal(TALLOC_CTX *ctx,
1351 connection_struct *conn,
1352 bool dfs_path,
1353 struct smb_request *smbreq,
1354 const char *name_in,
1355 uint32_t ucf_flags,
1356 bool *ppath_contains_wcard,
1357 struct smb_filename **pp_smb_fname)
1358{
1359 NTSTATUS status;
1360 bool allow_wcards = (ucf_flags & (UCF_COND_ALLOW_WCARD_LCOMP|UCF_ALWAYS_ALLOW_WCARD_LCOMP));
1361 char *fname = NULL;
1362
1363 *pp_smb_fname = NULL;
1364
1365 status = resolve_dfspath_wcard(ctx, conn,
1366 dfs_path,
1367 name_in,
1368 allow_wcards,
1369 !conn->sconn->using_smb2,
1370 &fname,
1371 ppath_contains_wcard);
1372 if (!NT_STATUS_IS_OK(status)) {
1373 DEBUG(10,("filename_convert_internal: resolve_dfspath failed "
1374 "for name %s with %s\n",
1375 name_in,
1376 nt_errstr(status) ));
1377 return status;
1378 }
1379
1380 if (is_fake_file_path(name_in)) {
1381 SMB_STRUCT_STAT st;
1382 ZERO_STRUCT(st);
1383 st.st_ex_nlink = 1;
1384 *pp_smb_fname = synthetic_smb_fname_split(ctx,
1385 name_in,
1386 &st);
1387 if (*pp_smb_fname == NULL) {
1388 return NT_STATUS_NO_MEMORY;
1389 }
1390 return NT_STATUS_OK;
1391 }
1392
1393 /*
1394 * If the caller conditionally allows wildcard lookups, only add the
1395 * always allow if the path actually does contain a wildcard.
1396 */
1397 if (ucf_flags & UCF_COND_ALLOW_WCARD_LCOMP &&
1398 ppath_contains_wcard != NULL && *ppath_contains_wcard) {
1399 ucf_flags |= UCF_ALWAYS_ALLOW_WCARD_LCOMP;
1400 }
1401
1402 status = unix_convert(ctx, conn, fname, pp_smb_fname, ucf_flags);
1403 if (!NT_STATUS_IS_OK(status)) {
1404 DEBUG(10,("filename_convert_internal: unix_convert failed "
1405 "for name %s with %s\n",
1406 fname,
1407 nt_errstr(status) ));
1408 return status;
1409 }
1410
1411 if ((ucf_flags & UCF_UNIX_NAME_LOOKUP) &&
1412 VALID_STAT((*pp_smb_fname)->st) &&
1413 S_ISLNK((*pp_smb_fname)->st.st_ex_mode)) {
1414 return check_veto_path(conn, (*pp_smb_fname)->base_name);
1415 }
1416
1417 if (!smbreq) {
1418 status = check_name(conn, (*pp_smb_fname)->base_name);
1419 } else {
1420 status = check_name_with_privilege(conn, smbreq, (*pp_smb_fname)->base_name);
1421 }
1422 if (!NT_STATUS_IS_OK(status)) {
1423 DEBUG(3,("filename_convert_internal: check_name failed "
1424 "for name %s with %s\n",
1425 smb_fname_str_dbg(*pp_smb_fname),
1426 nt_errstr(status) ));
1427 TALLOC_FREE(*pp_smb_fname);
1428 return status;
1429 }
1430
1431 return status;
1432}
1433
1434/*
1435 * Go through all the steps to validate a filename.
1436 * Non-root version.
1437 */
1438
1439NTSTATUS filename_convert(TALLOC_CTX *ctx,
1440 connection_struct *conn,
1441 bool dfs_path,
1442 const char *name_in,
1443 uint32_t ucf_flags,
1444 bool *ppath_contains_wcard,
1445 struct smb_filename **pp_smb_fname)
1446{
1447 return filename_convert_internal(ctx,
1448 conn,
1449 dfs_path,
1450 NULL,
1451 name_in,
1452 ucf_flags,
1453 ppath_contains_wcard,
1454 pp_smb_fname);
1455}
1456
1457/*
1458 * Go through all the steps to validate a filename.
1459 * root (privileged) version.
1460 */
1461
1462NTSTATUS filename_convert_with_privilege(TALLOC_CTX *ctx,
1463 connection_struct *conn,
1464 struct smb_request *smbreq,
1465 const char *name_in,
1466 uint32_t ucf_flags,
1467 bool *ppath_contains_wcard,
1468 struct smb_filename **pp_smb_fname)
1469{
1470 return filename_convert_internal(ctx,
1471 conn,
1472 smbreq->flags2 & FLAGS2_DFS_PATHNAMES,
1473 smbreq,
1474 name_in,
1475 ucf_flags,
1476 ppath_contains_wcard,
1477 pp_smb_fname);
1478}
Note: See TracBrowser for help on using the repository browser.