2 Unix SMB/Netbios implementation.
4 filename handling routines
5 Copyright (C) Andrew Tridgell 1992-1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 extern int DEBUGLEVEL;
25 extern BOOL case_sensitive;
26 extern BOOL case_preserve;
27 extern BOOL short_case_preserve;
28 extern fstring remote_machine;
29 extern BOOL use_mangled_map;
31 static BOOL scan_directory(char *path, char *name,connection_struct *conn,BOOL docache);
33 /****************************************************************************
34 Check if two filenames are equal.
35 This needs to be careful about whether we are case sensitive.
36 ****************************************************************************/
37 static BOOL fname_equal(char *name1, char *name2)
39 int l1 = strlen(name1);
40 int l2 = strlen(name2);
42 /* handle filenames ending in a single dot */
43 if (l1-l2 == 1 && name1[l1-1] == '.' && lp_strip_dot())
47 ret = fname_equal(name1,name2);
52 if (l2-l1 == 1 && name2[l2-1] == '.' && lp_strip_dot())
56 ret = fname_equal(name1,name2);
61 /* now normal filename handling */
63 return(strcmp(name1,name2) == 0);
65 return(strequal(name1,name2));
69 /****************************************************************************
70 Mangle the 2nd name and check if it is then equal to the first name.
71 ****************************************************************************/
72 static BOOL mangled_equal(char *name1, char *name2)
76 if (is_8_3(name2, True))
79 pstrcpy(tmpname,name2);
80 mangle_name_83(tmpname);
82 return(strequal(name1,tmpname));
85 /****************************************************************************
86 Stat cache code used in unix_convert.
87 *****************************************************************************/
89 static int global_stat_cache_lookups;
90 static int global_stat_cache_misses;
91 static int global_stat_cache_hits;
93 /****************************************************************************
94 Stat cache statistics code.
95 *****************************************************************************/
97 void print_stat_cache_statistics(void)
99 double eff = (100.0* (double)global_stat_cache_hits)/(double)global_stat_cache_lookups;
101 DEBUG(0,("stat cache stats: lookups = %d, hits = %d, misses = %d, \
102 stat cache was %f%% effective.\n", global_stat_cache_lookups,
103 global_stat_cache_hits, global_stat_cache_misses, eff ));
110 pstring translated_name;
113 #define MAX_STAT_CACHE_SIZE 50
115 static ubi_dlList stat_cache = { NULL, (ubi_dlNodePtr)&stat_cache, 0};
117 /****************************************************************************
118 Compare a pathname to a name in the stat cache - of a given length.
119 Note - this code always checks that the next character in the pathname
120 is either a '/' character, or a '\0' character - to ensure we only
121 match *full* pathname components. Note we don't need to handle case
122 here, if we're case insensitive the stat cache orig names are all upper
124 *****************************************************************************/
126 static BOOL stat_name_equal_len( char *stat_name, char *orig_name, int len)
128 BOOL matched = (memcmp( stat_name, orig_name, len) == 0);
129 if(orig_name[len] != '/' && orig_name[len] != '\0')
135 /****************************************************************************
136 Add an entry into the stat cache.
137 *****************************************************************************/
139 static void stat_cache_add( char *full_orig_name, char *orig_translated_path)
141 stat_cache_entry *scp;
143 pstring translated_path;
146 if (!lp_stat_cache()) return;
148 namelen = strlen(orig_translated_path);
151 * Don't cache trivial valid directory entries.
153 if((strcmp(full_orig_name, ".") == 0) || (strcmp(full_orig_name, "..") == 0))
157 * If we are in case insentive mode, we need to
158 * store names that need no translation - else, it
162 if(case_sensitive && (strcmp(full_orig_name, orig_translated_path) == 0))
166 * Remove any trailing '/' characters from the
170 pstrcpy(translated_path, orig_translated_path);
171 if(translated_path[namelen-1] == '/') {
172 translated_path[namelen-1] = '\0';
177 * We will only replace namelen characters
179 * StrnCpy always null terminates.
182 StrnCpy(orig_name, full_orig_name, namelen);
184 strupper( orig_name );
187 * Check this name doesn't exist in the cache before we
191 for( scp = (stat_cache_entry *)ubi_dlFirst( &stat_cache); scp;
192 scp = (stat_cache_entry *)ubi_dlNext( scp )) {
193 if((strcmp( scp->orig_name, orig_name) == 0) &&
194 (strcmp( scp->translated_name, translated_path) == 0)) {
196 * Name does exist - promote it.
198 if( (stat_cache_entry *)ubi_dlFirst( &stat_cache) != scp ) {
199 ubi_dlRemThis( &stat_cache, scp);
200 ubi_dlAddHead( &stat_cache, scp);
206 if((scp = (stat_cache_entry *)malloc(sizeof(stat_cache_entry))) == NULL) {
207 DEBUG(0,("stat_cache_add: Out of memory !\n"));
211 pstrcpy(scp->orig_name, orig_name);
212 pstrcpy(scp->translated_name, translated_path);
213 scp->name_len = namelen;
215 ubi_dlAddHead( &stat_cache, scp);
217 DEBUG(10,("stat_cache_add: Added entry %s -> %s\n", scp->orig_name, scp->translated_name ));
219 if(ubi_dlCount(&stat_cache) > lp_stat_cache_size()) {
220 scp = (stat_cache_entry *)ubi_dlRemTail( &stat_cache );
226 /****************************************************************************
227 Look through the stat cache for an entry - promote it to the top if found.
228 Return True if we translated (and did a scuccessful stat on) the entire name.
229 *****************************************************************************/
231 static BOOL stat_cache_lookup( char *name, char *dirpath, char **start, SMB_STRUCT_STAT *pst)
233 stat_cache_entry *scp;
234 stat_cache_entry *longest_hit = NULL;
238 if (!lp_stat_cache()) return False;
240 namelen = strlen(name);
243 global_stat_cache_lookups++;
246 * Don't lookup trivial valid directory entries.
248 if((strcmp(name, ".") == 0) || (strcmp(name, "..") == 0)) {
249 global_stat_cache_misses++;
253 pstrcpy(chk_name, name);
255 strupper( chk_name );
257 for( scp = (stat_cache_entry *)ubi_dlFirst( &stat_cache); scp;
258 scp = (stat_cache_entry *)ubi_dlNext( scp )) {
259 if(scp->name_len <= namelen) {
260 if(stat_name_equal_len(scp->orig_name, chk_name, scp->name_len)) {
261 if((longest_hit == NULL) || (longest_hit->name_len <= scp->name_len))
267 if(longest_hit == NULL) {
268 DEBUG(10,("stat_cache_lookup: cache miss on %s\n", name));
269 global_stat_cache_misses++;
273 global_stat_cache_hits++;
275 DEBUG(10,("stat_cache_lookup: cache hit for name %s. %s -> %s\n",
276 name, longest_hit->orig_name, longest_hit->translated_name ));
279 * longest_hit is the longest match we got in the list.
280 * Check it exists - if so, overwrite the original name
281 * and then promote it to the top.
284 if(dos_stat( longest_hit->translated_name, pst) != 0) {
286 * Discard this entry.
288 ubi_dlRemThis( &stat_cache, longest_hit);
289 free((char *)longest_hit);
293 memcpy(name, longest_hit->translated_name, longest_hit->name_len);
294 if( (stat_cache_entry *)ubi_dlFirst( &stat_cache) != longest_hit ) {
295 ubi_dlRemThis( &stat_cache, longest_hit);
296 ubi_dlAddHead( &stat_cache, longest_hit);
299 *start = &name[longest_hit->name_len];
303 StrnCpy( dirpath, longest_hit->translated_name, name - (*start));
305 return (namelen == longest_hit->name_len);
308 /****************************************************************************
309 This routine is called to convert names from the dos namespace to unix
310 namespace. It needs to handle any case conversions, mangling, format
313 We assume that we have already done a chdir() to the right "root" directory
316 The function will return False if some part of the name except for the last
317 part cannot be resolved
319 If the saved_last_component != 0, then the unmodified last component
320 of the pathname is returned there. This is used in an exceptional
321 case in reply_mv (so far). If saved_last_component == 0 then nothing
324 The bad_path arg is set to True if the filename walk failed. This is
325 used to pick the correct error code to return between ENOENT and ENOTDIR
326 as Windows applications depend on ERRbadpath being returned if a component
327 of a pathname does not exist.
328 ****************************************************************************/
330 BOOL unix_convert(char *name,connection_struct *conn,char *saved_last_component,
331 BOOL *bad_path, SMB_STRUCT_STAT *pst)
334 char *start, *end, *orig_start;
338 BOOL component_was_mangled = False;
339 BOOL name_has_wildcard = False;
341 /* Andrew's conservative code... JRA. */
342 extern char magic_char;
351 if(saved_last_component)
352 *saved_last_component = 0;
355 * Convert to basic unix format - removing \ chars and cleaning it up.
359 unix_clean_name(name);
362 * Names must be relative to the root of the service - trim any leading /.
363 * also trim trailing /'s.
366 trim_string(name,"/","/");
369 * Ensure saved_last_component is valid even if file exists.
372 if(saved_last_component) {
373 end = strrchr(name, '/');
375 pstrcpy(saved_last_component, end + 1);
377 pstrcpy(saved_last_component, name);
380 if (!case_sensitive &&
381 (!case_preserve || (is_8_3(name, False) && !short_case_preserve)))
385 * Check if it's a printer file.
388 if ((! *name) || strchr(name,'/') || !is_8_3(name, True)) {
391 slprintf(name2,sizeof(name2)-1,"%.6s.XXXXXX",remote_machine);
397 for (s=name2 ; *s ; s++)
398 if (!issafe(*s)) *s = '_';
399 pstrcpy(name,(char *)mktemp(name2));
405 while (strncmp(start,"./",2) == 0)
408 pstrcpy(orig_path, name);
410 if(stat_cache_lookup( name, dirpath, &start, &st)) {
417 * stat the name - if it exists then we are all done!
420 if (dos_stat(name,&st) == 0) {
421 stat_cache_add(orig_path, name);
422 DEBUG(5,("conversion finished %s -> %s\n",orig_path, name));
430 DEBUG(5,("unix_convert begin: name = %s, dirpath = %s, start = %s\n",
431 name, dirpath, start));
434 * A special case - if we don't have any mangling chars and are case
435 * sensitive then searching won't help.
438 if (case_sensitive && !is_mangled(name) &&
439 !lp_strip_dot() && !use_mangled_map && (saved_errno != ENOENT))
442 if(strchr(start,'?') || strchr(start,'*'))
443 name_has_wildcard = True;
446 * is_mangled() was changed to look at an entire pathname, not
447 * just a component. JRA.
450 if(is_mangled(start))
451 component_was_mangled = True;
454 /* Keep Andrew's conservative code around, just in case. JRA. */
455 /* this is an extremely conservative test for mangled names. */
456 if (strchr(start,magic_char))
457 component_was_mangled = True;
461 * Now we need to recursively match the name against the real
462 * directory structure.
466 * Match each part of the path name separately, trying the names
467 * as is first, then trying to scan the directory for matching names.
470 for (orig_start = start; start ; start = (end?end+1:(char *)NULL)) {
472 * Pinpoint the end of this section of the filename.
474 end = strchr(start, '/');
477 * Chop the name at this point.
482 if(saved_last_component != 0)
483 pstrcpy(saved_last_component, end ? end + 1 : start);
486 * Check if the name exists up to this point.
488 if (dos_stat(name, &st) == 0) {
490 * It exists. it must either be a directory or this must be
491 * the last part of the path for it to be OK.
493 if (end && !(st.st_mode & S_IFDIR)) {
495 * An intermediate part of the name isn't a directory.
497 DEBUG(5,("Not a dir %s\n",start));
508 * Remember the rest of the pathname so it can be restored
516 * Try to find this part of the path in the directory.
519 if (strchr(start,'?') || strchr(start,'*') ||
520 !scan_directory(dirpath, start, conn, end?True:False)) {
523 * An intermediate part of the name can't be found.
525 DEBUG(5,("Intermediate not found %s\n",start));
529 * We need to return the fact that the intermediate
530 * name resolution failed. This is used to return an
531 * error of ERRbadpath rather than ERRbadfile. Some
532 * Windows applications depend on the difference between
540 * Just the last part of the name doesn't exist.
541 * We may need to strupper() or strlower() it in case
542 * this conversion is being used for file creation
543 * purposes. If the filename is of mixed case then
544 * don't normalise it.
547 if (!case_preserve && (!strhasupper(start) || !strhaslower(start)))
551 * check on the mangled stack to see if we can recover the
552 * base of the filename.
555 if (is_mangled(start)) {
556 check_mangled_cache( start );
559 DEBUG(5,("New file %s\n",start));
564 * Restore the rest of the string.
567 pstrcpy(start+strlen(start)+1,rest);
568 end = start + strlen(start);
573 * Add to the dirpath that we have resolved so far.
576 pstrcat(dirpath,"/");
578 pstrcat(dirpath,start);
581 * Don't cache a name with mangled or wildcard components
582 * as this can change the size.
585 if(!component_was_mangled && !name_has_wildcard)
586 stat_cache_add(orig_path, dirpath);
589 * Restore the / that we wiped out earlier.
596 * Don't cache a name with mangled or wildcard components
597 * as this can change the size.
600 if(!component_was_mangled && !name_has_wildcard)
601 stat_cache_add(orig_path, name);
604 * The name has been resolved.
607 DEBUG(5,("conversion finished %s -> %s\n",orig_path, name));
612 /****************************************************************************
613 check a filename - possibly caling reducename
615 This is called by every routine before it allows an operation on a filename.
616 It does any final confirmation necessary to ensure that the filename is
617 a valid one for the user to access.
618 ****************************************************************************/
619 BOOL check_name(char *name,connection_struct *conn)
625 if (IS_VETO_PATH(conn, name)) {
626 DEBUG(5,("file path name %s vetoed\n",name));
630 ret = reduce_name(name,conn->connectpath,lp_widelinks(SNUM(conn)));
632 /* Check if we are allowing users to follow symlinks */
633 /* Patch from David Clerc <David.Clerc@cui.unige.ch>
634 University of Geneva */
637 if (!lp_symlinks(SNUM(conn)))
639 SMB_STRUCT_STAT statbuf;
640 if ( (dos_lstat(name,&statbuf) != -1) &&
641 (S_ISLNK(statbuf.st_mode)) )
643 DEBUG(3,("check_name: denied: file path name %s is a symlink\n",name));
650 DEBUG(5,("check_name on %s failed\n",name));
656 /****************************************************************************
657 scan a directory to find a filename, matching without case sensitivity
659 If the name looks like a mangled name then try via the mangling functions
660 ****************************************************************************/
661 static BOOL scan_directory(char *path, char *name,connection_struct *conn,BOOL docache)
668 mangled = is_mangled(name);
670 /* handle null paths */
674 if (docache && (dname = DirCacheCheck(path,name,SNUM(conn)))) {
675 pstrcpy(name, dname);
680 * The incoming name can be mangled, and if we de-mangle it
681 * here it will not compare correctly against the filename (name2)
682 * read from the directory and then mangled by the name_map_mangle()
683 * call. We need to mangle both names or neither.
687 mangled = !check_mangled_cache( name );
689 /* open the directory */
690 if (!(cur_dir = OpenDir(conn, path, True)))
692 DEBUG(3,("scan dir didn't open dir [%s]\n",path));
696 /* now scan for matching names */
697 while ((dname = ReadDirName(cur_dir)))
700 (strequal(dname,".") || strequal(dname,"..")))
703 pstrcpy(name2,dname);
704 if (!name_map_mangle(name2,False,SNUM(conn))) continue;
706 if ((mangled && mangled_equal(name,name2))
707 || fname_equal(name, name2))
709 /* we've found the file, change it's name and return */
710 if (docache) DirCacheAdd(path,name,dname,SNUM(conn));
711 pstrcpy(name, dname);