Remove more uses of global_loadparm.
[jelmer/samba4-debian.git] / source / ntvfs / posix / pvfs_resolve.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend - filename resolution
5
6    Copyright (C) Andrew Tridgell 2004
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 /*
23   this is the core code for converting a filename from the format as
24   given by a client to a posix filename, including any case-matching
25   required, and checks for legal characters
26 */
27
28
29 #include "includes.h"
30 #include "vfs_posix.h"
31 #include "system/dir.h"
32 #include "param/param.h"
33
34 /**
35   compare two filename components. This is where the name mangling hook will go
36 */
37 static int component_compare(struct pvfs_state *pvfs, const char *comp, const char *name)
38 {
39         int ret;
40
41         ret = strcasecmp_m(comp, name);
42
43         if (ret != 0) {
44                 char *shortname = pvfs_short_name_component(pvfs, name);
45                 if (shortname) {
46                         ret = strcasecmp_m(comp, shortname);
47                         talloc_free(shortname);
48                 }
49         }
50
51         return ret;
52 }
53
54 /*
55   search for a filename in a case insensitive fashion
56
57   TODO: add a cache for previously resolved case-insensitive names
58   TODO: add mangled name support
59 */
60 static NTSTATUS pvfs_case_search(struct pvfs_state *pvfs, struct pvfs_filename *name)
61 {
62         /* break into a series of components */
63         int num_components;
64         char **components;
65         char *p, *partial_name;
66         int i;
67
68         /* break up the full name info pathname components */
69         num_components=2;
70         p = name->full_name + strlen(pvfs->base_directory) + 1;
71
72         for (;*p;p++) {
73                 if (*p == '/') {
74                         num_components++;
75                 }
76         }
77
78         components = talloc_array(name, char *, num_components);
79         p = name->full_name + strlen(pvfs->base_directory);
80         *p++ = 0;
81
82         components[0] = name->full_name;
83
84         for (i=1;i<num_components;i++) {
85                 components[i] = p;
86                 p = strchr(p, '/');
87                 if (p) *p++ = 0;
88                 if (pvfs_is_reserved_name(pvfs, components[i])) {
89                         return NT_STATUS_ACCESS_DENIED;
90                 }
91         }
92
93         partial_name = talloc_strdup(name, components[0]);
94         if (!partial_name) {
95                 return NT_STATUS_NO_MEMORY;
96         }
97
98         /* for each component, check if it exists as-is, and if not then
99            do a directory scan */
100         for (i=1;i<num_components;i++) {
101                 char *test_name;
102                 DIR *dir;
103                 struct dirent *de;
104                 char *long_component;
105
106                 /* possibly remap from the short name cache */
107                 long_component = pvfs_mangled_lookup(pvfs, name, components[i]);
108                 if (long_component) {
109                         components[i] = long_component;
110                 }
111
112                 test_name = talloc_asprintf(name, "%s/%s", partial_name, components[i]);
113                 if (!test_name) {
114                         return NT_STATUS_NO_MEMORY;
115                 }
116
117                 /* check if this component exists as-is */
118                 if (stat(test_name, &name->st) == 0) {
119                         if (i<num_components-1 && !S_ISDIR(name->st.st_mode)) {
120                                 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
121                         }
122                         talloc_free(partial_name);
123                         partial_name = test_name;
124                         if (i == num_components - 1) {
125                                 name->exists = true;
126                         }
127                         continue;
128                 }
129
130                 /* the filesystem might be case insensitive, in which
131                    case a search is pointless unless the name is
132                    mangled */
133                 if ((pvfs->flags & PVFS_FLAG_CI_FILESYSTEM) &&
134                     !pvfs_is_mangled_component(pvfs, components[i])) {
135                         if (i < num_components-1) {
136                                 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
137                         }
138                         partial_name = test_name;
139                         continue;
140                 }
141                 
142                 dir = opendir(partial_name);
143                 if (!dir) {
144                         return pvfs_map_errno(pvfs, errno);
145                 }
146
147                 while ((de = readdir(dir))) {
148                         if (component_compare(pvfs, components[i], de->d_name) == 0) {
149                                 break;
150                         }
151                 }
152
153                 if (!de) {
154                         if (i < num_components-1) {
155                                 closedir(dir);
156                                 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
157                         }
158                 } else {
159                         components[i] = talloc_strdup(name, de->d_name);
160                 }
161                 test_name = talloc_asprintf(name, "%s/%s", partial_name, components[i]);
162                 talloc_free(partial_name);
163                 partial_name = test_name;
164
165                 closedir(dir);
166         }
167
168         if (!name->exists) {
169                 if (stat(partial_name, &name->st) == 0) {
170                         name->exists = true;
171                 }
172         }
173
174         talloc_free(name->full_name);
175         name->full_name = partial_name;
176
177         if (name->exists) {
178                 return pvfs_fill_dos_info(pvfs, name, -1);
179         }
180
181         return NT_STATUS_OK;
182 }
183
184 /*
185   parse a alternate data stream name
186 */
187 static NTSTATUS parse_stream_name(struct pvfs_filename *name, const char *s)
188 {
189         char *p;
190         name->stream_name = talloc_strdup(name, s+1);
191         if (name->stream_name == NULL) {
192                 return NT_STATUS_NO_MEMORY;
193         }
194         p = strchr_m(name->stream_name, ':');
195         if (p == NULL) {
196                 name->stream_id = pvfs_name_hash(name->stream_name, 
197                                                  strlen(name->stream_name));
198                 return NT_STATUS_OK;
199         }
200         if (strcasecmp_m(p, ":$DATA") != 0) {
201                 return NT_STATUS_OBJECT_NAME_INVALID;
202         }
203         *p = 0;
204         if (strcmp(name->stream_name, "") == 0) {
205                 name->stream_name = NULL;
206                 name->stream_id = 0;
207         } else {
208                 name->stream_id = pvfs_name_hash(name->stream_name, 
209                                                  strlen(name->stream_name));
210         }
211                                                  
212         return NT_STATUS_OK;    
213 }
214
215
216 /*
217   convert a CIFS pathname to a unix pathname. Note that this does NOT
218   take into account case insensitivity, and in fact does not access
219   the filesystem at all. It is merely a reformatting and charset
220   checking routine.
221
222   errors are returned if the filename is illegal given the flags
223 */
224 static NTSTATUS pvfs_unix_path(struct pvfs_state *pvfs, const char *cifs_name,
225                                uint_t flags, struct pvfs_filename *name)
226 {
227         char *ret, *p, *p_start;
228         NTSTATUS status;
229
230         name->original_name = talloc_strdup(name, cifs_name);
231         name->stream_name = NULL;
232         name->stream_id = 0;
233         name->has_wildcard = false;
234
235         while (*cifs_name == '\\') {
236                 cifs_name++;
237         }
238
239         if (*cifs_name == 0) {
240                 name->full_name = talloc_asprintf(name, "%s/.", pvfs->base_directory);
241                 if (name->full_name == NULL) {
242                         return NT_STATUS_NO_MEMORY;
243                 }
244                 return NT_STATUS_OK;
245         }
246
247         ret = talloc_asprintf(name, "%s/%s", pvfs->base_directory, cifs_name);
248         if (ret == NULL) {
249                 return NT_STATUS_NO_MEMORY;
250         }
251
252         p = ret + strlen(pvfs->base_directory) + 1;
253
254         /* now do an in-place conversion of '\' to '/', checking
255            for legal characters */
256         p_start = p;
257
258         while (*p) {
259                 size_t c_size;
260                 codepoint_t c = next_codepoint(lp_iconv_convenience(pvfs->ntvfs->ctx->lp_ctx), p, &c_size);
261                 switch (c) {
262                 case '\\':
263                         if (name->has_wildcard) {
264                                 /* wildcards are only allowed in the last part
265                                    of a name */
266                                 return NT_STATUS_ILLEGAL_CHARACTER;
267                         }
268                         if (p > p_start && p[1] == 0) {
269                                 *p = 0;
270                         } else {
271                                 *p = '/';
272                         }
273                         break;
274                 case ':':
275                         if (!(flags & PVFS_RESOLVE_STREAMS)) {
276                                 return NT_STATUS_ILLEGAL_CHARACTER;
277                         }
278                         if (name->has_wildcard) {
279                                 return NT_STATUS_ILLEGAL_CHARACTER;
280                         }
281                         status = parse_stream_name(name, p);
282                         if (!NT_STATUS_IS_OK(status)) {
283                                 return status;
284                         }
285                         *p-- = 0;
286                         break;
287                 case '*':
288                 case '>':
289                 case '<':
290                 case '?':
291                 case '"':
292                         if (!(flags & PVFS_RESOLVE_WILDCARD)) {
293                                 return NT_STATUS_OBJECT_NAME_INVALID;
294                         }
295                         name->has_wildcard = true;
296                         break;
297                 case '/':
298                 case '|':
299                         return NT_STATUS_ILLEGAL_CHARACTER;
300                 case '.':
301                         /* see if it is definately a .. or
302                            . component. If it is then fail here, and
303                            let the next layer up try again after
304                            pvfs_reduce_name() if it wants to. This is
305                            much more efficient on average than always
306                            scanning for these separately */
307                         if (p[1] == '.' && 
308                             (p[2] == 0 || p[2] == '\\') &&
309                             (p == p_start || p[-1] == '/')) {
310                                 return NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
311                         }
312                         if ((p[1] == 0 || p[1] == '\\') &&
313                             (p == p_start || p[-1] == '/')) {
314                                 return NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
315                         }
316                         break;
317                 }
318
319                 p += c_size;
320         }
321
322         name->full_name = ret;
323
324         return NT_STATUS_OK;
325 }
326
327
328 /*
329   reduce a name that contains .. components or repeated \ separators
330   return NULL if it can't be reduced
331 */
332 static NTSTATUS pvfs_reduce_name(TALLOC_CTX *mem_ctx, const char **fname, uint_t flags)
333 {
334         codepoint_t c;
335         size_t c_size, len;
336         int i, num_components, err_count;
337         char **components;
338         char *p, *s, *ret;
339         struct smb_iconv_convenience *iconv_convenience = lp_iconv_convenience(global_loadparm);
340
341         s = talloc_strdup(mem_ctx, *fname);
342         if (s == NULL) return NT_STATUS_NO_MEMORY;
343
344         for (num_components=1, p=s; *p; p += c_size) {
345                 c = next_codepoint(iconv_convenience, p, &c_size);
346                 if (c == '\\') num_components++;
347         }
348
349         components = talloc_array(s, char *, num_components+1);
350         if (components == NULL) {
351                 talloc_free(s);
352                 return NT_STATUS_NO_MEMORY;
353         }
354
355         components[0] = s;
356         for (i=0, p=s; *p; p += c_size) {
357                 c = next_codepoint(iconv_convenience, p, &c_size);
358                 if (c == '\\') {
359                         *p = 0;
360                         components[++i] = p+1;
361                 }
362         }
363         components[i+1] = NULL;
364
365         /*
366           rather bizarre!
367
368           '.' components are not allowed, but the rules for what error
369           code to give don't seem to make sense. This is a close
370           approximation.
371         */
372         for (err_count=i=0;components[i];i++) {
373                 if (strcmp(components[i], "") == 0) {
374                         continue;
375                 }
376                 if (ISDOT(components[i]) || err_count) {
377                         err_count++;
378                 }
379         }
380         if (err_count) {
381                 if (flags & PVFS_RESOLVE_WILDCARD) err_count--;
382
383                 if (err_count==1) {
384                         return NT_STATUS_OBJECT_NAME_INVALID;
385                 } else {
386                         return NT_STATUS_OBJECT_PATH_NOT_FOUND;
387                 }
388         }
389
390         /* remove any null components */
391         for (i=0;components[i];i++) {
392                 if (strcmp(components[i], "") == 0) {
393                         memmove(&components[i], &components[i+1], 
394                                 sizeof(char *)*(num_components-i));
395                         i--;
396                         continue;
397                 }
398                 if (ISDOTDOT(components[i])) {
399                         if (i < 1) return NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
400                         memmove(&components[i-1], &components[i+1], 
401                                 sizeof(char *)*(num_components-(i+1)));
402                         i -= 2;
403                         continue;
404                 }
405         }
406
407         if (components[0] == NULL) {
408                 talloc_free(s);
409                 *fname = talloc_strdup(mem_ctx, "\\");
410                 return NT_STATUS_OK;
411         }
412
413         for (len=i=0;components[i];i++) {
414                 len += strlen(components[i]) + 1;
415         }
416
417         /* rebuild the name */
418         ret = talloc_size(mem_ctx, len+1);
419         if (ret == NULL) {
420                 talloc_free(s);
421                 return NT_STATUS_NO_MEMORY;
422         }
423
424         for (len=0,i=0;components[i];i++) {
425                 size_t len1 = strlen(components[i]);
426                 ret[len] = '\\';
427                 memcpy(ret+len+1, components[i], len1);
428                 len += len1 + 1;
429         }       
430         ret[len] = 0;
431
432         talloc_free(s);
433
434         *fname = ret;
435         
436         return NT_STATUS_OK;
437 }
438
439
440 /*
441   resolve a name from relative client format to a struct pvfs_filename
442   the memory for the filename is made as a talloc child of 'name'
443
444   flags include:
445      PVFS_RESOLVE_NO_WILDCARD = wildcards are considered illegal characters
446      PVFS_RESOLVE_STREAMS     = stream names are allowed
447
448      TODO: ../ collapsing, and outside share checking
449 */
450 NTSTATUS pvfs_resolve_name(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
451                            const char *cifs_name,
452                            uint_t flags, struct pvfs_filename **name)
453 {
454         NTSTATUS status;
455
456         *name = talloc(mem_ctx, struct pvfs_filename);
457         if (*name == NULL) {
458                 return NT_STATUS_NO_MEMORY;
459         }
460
461         (*name)->exists = false;
462         (*name)->stream_exists = false;
463
464         if (!(pvfs->fs_attribs & FS_ATTR_NAMED_STREAMS)) {
465                 flags &= ~PVFS_RESOLVE_STREAMS;
466         }
467
468         /* do the basic conversion to a unix formatted path,
469            also checking for allowable characters */
470         status = pvfs_unix_path(pvfs, cifs_name, flags, *name);
471
472         if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_PATH_SYNTAX_BAD)) {
473                 /* it might contain .. components which need to be reduced */
474                 status = pvfs_reduce_name(*name, &cifs_name, flags);
475                 if (!NT_STATUS_IS_OK(status)) {
476                         return status;
477                 }
478                 status = pvfs_unix_path(pvfs, cifs_name, flags, *name);
479         }
480
481         if (!NT_STATUS_IS_OK(status)) {
482                 return status;
483         }
484
485         /* if it has a wildcard then no point doing a stat() of the
486            full name. Instead We need check if the directory exists 
487          */
488         if ((*name)->has_wildcard) {
489                 const char *p;
490                 char *dir_name, *saved_name;
491                 p = strrchr((*name)->full_name, '/');
492                 if (p == NULL) {
493                         /* root directory wildcard is OK */
494                         return NT_STATUS_OK;
495                 }
496                 dir_name = talloc_strndup(*name, (*name)->full_name, (p-(*name)->full_name));
497                 if (stat(dir_name, &(*name)->st) == 0) {
498                         talloc_free(dir_name);
499                         return NT_STATUS_OK;
500                 }
501                 /* we need to search for a matching name */
502                 saved_name = (*name)->full_name;
503                 (*name)->full_name = dir_name;
504                 status = pvfs_case_search(pvfs, *name);
505                 if (!NT_STATUS_IS_OK(status)) {
506                         /* the directory doesn't exist */
507                         (*name)->full_name = saved_name;
508                         return status;
509                 }
510                 /* it does exist, but might need a case change */
511                 if (dir_name != (*name)->full_name) {
512                         (*name)->full_name = talloc_asprintf(*name, "%s%s",
513                                                              (*name)->full_name, p);
514                         NT_STATUS_HAVE_NO_MEMORY((*name)->full_name);
515                 } else {
516                         (*name)->full_name = saved_name;
517                         talloc_free(dir_name);
518                 }
519                 return NT_STATUS_OK;
520         }
521
522         /* if we can stat() the full name now then we are done */
523         if (stat((*name)->full_name, &(*name)->st) == 0) {
524                 (*name)->exists = true;
525                 return pvfs_fill_dos_info(pvfs, *name, -1);
526         }
527
528         /* search for a matching filename */
529         status = pvfs_case_search(pvfs, *name);
530
531         return status;
532 }
533
534
535 /*
536   do a partial resolve, returning a pvfs_filename structure given a
537   base path and a relative component. It is an error if the file does
538   not exist. No case-insensitive matching is done.
539
540   this is used in places like directory searching where we need a pvfs_filename
541   to pass to a function, but already know the unix base directory and component
542 */
543 NTSTATUS pvfs_resolve_partial(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
544                               const char *unix_dir, const char *fname,
545                               struct pvfs_filename **name)
546 {
547         NTSTATUS status;
548
549         *name = talloc(mem_ctx, struct pvfs_filename);
550         if (*name == NULL) {
551                 return NT_STATUS_NO_MEMORY;
552         }
553
554         (*name)->full_name = talloc_asprintf(*name, "%s/%s", unix_dir, fname);
555         if ((*name)->full_name == NULL) {
556                 return NT_STATUS_NO_MEMORY;
557         }
558
559         if (stat((*name)->full_name, &(*name)->st) == -1) {
560                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
561         }
562
563         (*name)->exists = true;
564         (*name)->stream_exists = true;
565         (*name)->has_wildcard = false;
566         (*name)->original_name = talloc_strdup(*name, fname);
567         (*name)->stream_name = NULL;
568         (*name)->stream_id = 0;
569
570         status = pvfs_fill_dos_info(pvfs, *name, -1);
571
572         return status;
573 }
574
575
576 /*
577   fill in the pvfs_filename info for an open file, given the current
578   info for a (possibly) non-open file. This is used by places that need
579   to update the pvfs_filename stat information, and by pvfs_open()
580 */
581 NTSTATUS pvfs_resolve_name_fd(struct pvfs_state *pvfs, int fd,
582                               struct pvfs_filename *name)
583 {
584         dev_t device = (dev_t)0;
585         ino_t inode = 0;
586
587         if (name->exists) {
588                 device = name->st.st_dev;
589                 inode = name->st.st_ino;
590         }
591
592         if (fd == -1) {
593                 if (stat(name->full_name, &name->st) == -1) {
594                         return NT_STATUS_INVALID_HANDLE;
595                 }
596         } else {
597                 if (fstat(fd, &name->st) == -1) {
598                         return NT_STATUS_INVALID_HANDLE;
599                 }
600         }
601
602         if (name->exists &&
603             (device != name->st.st_dev || inode != name->st.st_ino)) {
604                 /* the file we are looking at has changed! this could
605                  be someone trying to exploit a race
606                  condition. Certainly we don't want to continue
607                  operating on this file */
608                 DEBUG(0,("pvfs: WARNING: file '%s' changed during resolve - failing\n",
609                          name->full_name));
610                 return NT_STATUS_UNEXPECTED_IO_ERROR;
611         }
612
613         name->exists = true;
614         
615         return pvfs_fill_dos_info(pvfs, name, fd);
616 }
617
618
619 /*
620   resolve the parent of a given name
621 */
622 NTSTATUS pvfs_resolve_parent(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
623                              const struct pvfs_filename *child,
624                              struct pvfs_filename **name)
625 {
626         NTSTATUS status;
627         char *p;
628
629         *name = talloc(mem_ctx, struct pvfs_filename);
630         if (*name == NULL) {
631                 return NT_STATUS_NO_MEMORY;
632         }
633
634         (*name)->full_name = talloc_strdup(*name, child->full_name);
635         if ((*name)->full_name == NULL) {
636                 return NT_STATUS_NO_MEMORY;
637         }
638
639         p = strrchr_m((*name)->full_name, '/');
640         if (p == NULL) {
641                 return NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
642         }
643
644         /* this handles the root directory */
645         if (p == (*name)->full_name) {
646                 p[1] = 0;
647         } else {
648                 p[0] = 0;
649         }
650
651         if (stat((*name)->full_name, &(*name)->st) == -1) {
652                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
653         }
654
655         (*name)->exists = true;
656         (*name)->stream_exists = true;
657         (*name)->has_wildcard = false;
658         /* we can't get the correct 'original_name', but for the purposes
659            of this call this is close enough */
660         (*name)->original_name = talloc_reference(*name, child->original_name);
661         (*name)->stream_name = NULL;
662         (*name)->stream_id = 0;
663
664         status = pvfs_fill_dos_info(pvfs, *name, -1);
665
666         return status;
667 }