include/dlinklist.h: Added '{' '}' around DLIST_PROMOTE so it can be used as a single
[Samba.git] / source / smbd / mangle.c
blob1cc602dc0514ad189ed69c5271f77e96c0a2830b
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 Name mangling
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.
22 /* -------------------------------------------------------------------------- **
23 * Notable problems...
25 * March/April 1998 CRH
26 * - Many of the functions in this module overwrite string buffers passed to
27 * them. This causes a variety of problems and is, generally speaking,
28 * dangerous and scarry. See the kludge notes in name_map_mangle()
29 * below.
30 * - It seems that something is calling name_map_mangle() twice. The
31 * first call is probably some sort of test. Names which contain
32 * illegal characters are being doubly mangled. I'm not sure, but
33 * I'm guessing the problem is in server.c.
35 * -------------------------------------------------------------------------- **
38 /* -------------------------------------------------------------------------- **
39 * History...
41 * March/April 1998 CRH
42 * Updated a bit. Rewrote is_mangled() to be a bit more selective.
43 * Rewrote the mangled name cache. Added comments here and there.
44 * &c.
45 * -------------------------------------------------------------------------- **
48 #include "includes.h"
51 /* -------------------------------------------------------------------------- **
52 * External Variables...
55 extern int DEBUGLEVEL; /* Global debug level. */
56 extern int case_default; /* Are conforming 8.3 names all upper or lower? */
57 extern BOOL case_mangle; /* If true, all chars in 8.3 should be same case. */
59 /* -------------------------------------------------------------------------- **
60 * Other stuff...
62 * magic_char - This is the magic char used for mangling. It's
63 * global. There is a call to lp_magicchar() in server.c
64 * that is used to override the initial value.
66 * MANGLE_BASE - This is the number of characters we use for name mangling.
68 * basechars - The set characters used for name mangling. This
69 * is static (scope is this file only).
71 * mangle() - Macro used to select a character from basechars (i.e.,
72 * mangle(n) will return the nth digit, modulo MANGLE_BASE).
74 * chartest - array 0..255. The index range is the set of all possible
75 * values of a byte. For each byte value, the content is a
76 * two nibble pair. See BASECHAR_MASK and ILLEGAL_MASK,
77 * below.
79 * ct_initialized - False until the chartest array has been initialized via
80 * a call to init_chartest().
82 * BASECHAR_MASK - Masks the upper nibble of a one-byte value.
84 * ILLEGAL_MASK - Masks the lower nibble of a one-byte value.
86 * isbasecahr() - Given a character, check the chartest array to see
87 * if that character is in the basechars set. This is
88 * faster than using strchr().
90 * isillegal() - Given a character, check the chartest array to see
91 * if that character is in the illegal characters set.
92 * This is faster than using strchr().
94 * mangled_cache - Cache header used for storing mangled -> original
95 * reverse maps.
97 * mc_initialized - False until the mangled_cache structure has been
98 * initialized via a call to reset_mangled_cache().
100 * MANGLED_CACHE_MAX_ENTRIES - Default maximum number of entries for the
101 * cache. A value of 0 indicates "infinite".
103 * MANGLED_CACHE_MAX_MEMORY - Default maximum amount of memory for the
104 * cache. When the cache was kept as an array of 256
105 * byte strings, the default cache size was 50 entries.
106 * This required a fixed 12.5Kbytes of memory. The
107 * mangled stack parameter is no longer used (though
108 * this might change). We're now using a fixed 16Kbyte
109 * maximum cache size. This will probably be much more
110 * than 50 entries.
113 char magic_char = '~';
115 static char basechars[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_-!@#$%";
116 #define MANGLE_BASE (sizeof(basechars)/sizeof(char)-1)
118 static unsigned char chartest[256] = { 0 };
119 static BOOL ct_initialized = False;
121 #define mangle(V) ((char)(basechars[(V) % MANGLE_BASE]))
122 #define BASECHAR_MASK 0xf0
123 #define ILLEGAL_MASK 0x0f
124 #define isbasechar(C) ( (chartest[ ((C) & 0xff) ]) & BASECHAR_MASK )
125 #define isillegal(C) ( (chartest[ ((C) & 0xff) ]) & ILLEGAL_MASK )
127 static ubi_cacheRoot mangled_cache[1] = { { { 0, 0, 0, 0 }, 0, 0, 0, 0, 0, 0 } };
128 static BOOL mc_initialized = False;
129 #define MANGLED_CACHE_MAX_ENTRIES 0
130 #define MANGLED_CACHE_MAX_MEMORY 16384
133 /* -------------------------------------------------------------------------- **
134 * Functions...
137 /* ************************************************************************** **
138 * Initialize the static character test array.
140 * Input: none
142 * Output: none
144 * Notes: This function changes (loads) the contents of the <chartest>
145 * array. The scope of <chartest> is this file.
147 * ************************************************************************** **
149 static void init_chartest( void )
151 char *illegalchars = "*\\/?<>|\":";
152 unsigned char *s;
154 memset( (char *)chartest, '\0', 256 );
156 for( s = (unsigned char *)illegalchars; *s; s++ )
157 chartest[*s] = ILLEGAL_MASK;
159 for( s = (unsigned char *)basechars; *s; s++ )
160 chartest[*s] |= BASECHAR_MASK;
162 ct_initialized = True;
163 } /* init_chartest */
165 /* ************************************************************************** **
166 * Return True if a name is a special msdos reserved name.
168 * Input: fname - String containing the name to be tested.
170 * Output: True, if the name matches one of the list of reserved names.
172 * Notes: This is a static function called by is_8_3(), below.
174 * ************************************************************************** **
176 static BOOL is_reserved_msdos( char *fname )
178 char upperFname[13];
179 char *p;
181 StrnCpy (upperFname, fname, 12);
183 /* lpt1.txt and con.txt etc are also illegal */
184 p = strchr(upperFname,'.');
185 if( p )
186 *p = '\0';
188 strupper( upperFname );
189 p = upperFname + 1;
190 switch( upperFname[0] )
192 case 'A':
193 if( 0 == strcmp( p, "UX" ) )
194 return( True );
195 break;
196 case 'C':
197 if( (0 == strcmp( p, "LOCK$" ))
198 || (0 == strcmp( p, "ON" ))
199 || (0 == strcmp( p, "OM1" ))
200 || (0 == strcmp( p, "OM2" ))
201 || (0 == strcmp( p, "OM3" ))
202 || (0 == strcmp( p, "OM4" ))
204 return( True );
205 break;
206 case 'L':
207 if( (0 == strcmp( p, "PT1" ))
208 || (0 == strcmp( p, "PT2" ))
209 || (0 == strcmp( p, "PT3" ))
211 return( True );
212 break;
213 case 'N':
214 if( 0 == strcmp( p, "UL" ) )
215 return( True );
216 break;
217 case 'P':
218 if( 0 == strcmp( p, "RN" ) )
219 return( True );
220 break;
223 return( False );
224 } /* is_reserved_msdos */
226 /* ************************************************************************** **
227 * Determine whether or not a given name contains illegal characters, even
228 * long names.
230 * Input: name - The name to be tested.
232 * Output: True if an illegal character was found in <name>, else False.
234 * Notes: This is used to test a name on the host system, long or short,
235 * for characters that would be illegal on most client systems,
236 * particularly DOS and Windows systems. Unix and AmigaOS, for
237 * example, allow a filenames which contain such oddities as
238 * quotes ("). If a name is found which does contain an illegal
239 * character, it is mangled even if it conforms to the 8.3
240 * format.
242 * ************************************************************************** **
244 static BOOL is_illegal_name( char *name )
246 unsigned char *s;
247 int skip;
249 if( !name )
250 return( True );
252 if( !ct_initialized )
253 init_chartest();
255 s = (unsigned char *)name;
256 while( *s )
258 skip = get_character_len( *s );
259 if( skip != 0 )
261 s += skip;
263 else
265 if( isillegal( *s ) )
266 return( True );
267 else
268 s++;
272 return( False );
273 } /* is_illegal_name */
275 /* ************************************************************************** **
276 * Return True if the name *could be* a mangled name.
278 * Input: s - A path name - in UNIX pathname format.
280 * Output: True if the name matches the pattern described below in the
281 * notes, else False.
283 * Notes: The input name is *not* tested for 8.3 compliance. This must be
284 * done separately. This function returns true if the name contains
285 * a magic character followed by excactly two characters from the
286 * basechars list (above), which in turn are followed either by the
287 * nul (end of string) byte or a dot (extension) or by a '/' (end of
288 * a directory name).
290 * ************************************************************************** **
292 BOOL is_mangled( char *s )
294 char *magic;
296 if( !ct_initialized )
297 init_chartest();
299 magic = strchr( s, magic_char );
300 while( magic && magic[1] && magic[2] ) /* 3 chars, 1st is magic. */
302 if( ('.' == magic[3] || '/' == magic[3] || !(magic[3])) /* Ends with '.' or nul or '/' ? */
303 && isbasechar( toupper(magic[1]) ) /* is 2nd char basechar? */
304 && isbasechar( toupper(magic[2]) ) ) /* is 3rd char basechar? */
305 return( True ); /* If all above, then true, */
306 magic = strchr( magic+1, magic_char ); /* else seek next magic. */
308 return( False );
309 } /* is_mangled */
311 /* ************************************************************************** **
312 * Return True if the name is a valid DOS name in 8.3 DOS format.
314 * Input: fname - File name to be checked.
315 * check_case - If True, and if case_mangle is True, then the
316 * name will be checked to see if all characters
317 * are the correct case. See case_mangle and
318 * case_default above.
320 * Output: True if the name is a valid DOS name, else FALSE.
322 * ************************************************************************** **
324 BOOL is_8_3( char *fname, BOOL check_case )
326 int len;
327 int l;
328 int skip;
329 char *p;
330 char *dot_pos;
331 char *slash_pos = strrchr( fname, '/' );
333 /* If there is a directory path, skip it. */
334 if( slash_pos )
335 fname = slash_pos + 1;
336 len = strlen( fname );
338 DEBUG( 5, ( "Checking %s for 8.3\n", fname ) );
340 /* Can't be 0 chars or longer than 12 chars */
341 if( (len == 0) || (len > 12) )
342 return( False );
344 /* Mustn't be an MS-DOS Special file such as lpt1 or even lpt1.txt */
345 if( is_reserved_msdos( fname ) )
346 return( False );
348 /* Check that all characters are the correct case, if asked to do so. */
349 if( check_case && case_mangle )
351 switch( case_default )
353 case CASE_LOWER:
354 if( strhasupper( fname ) )
355 return(False);
356 break;
357 case CASE_UPPER:
358 if( strhaslower( fname ) )
359 return(False);
360 break;
364 /* Can't contain invalid dos chars */
365 /* Windows use the ANSI charset.
366 But filenames are translated in the PC charset.
367 This Translation may be more or less relaxed depending
368 the Windows application. */
370 /* %%% A nice improvment to name mangling would be to translate
371 filename to ANSI charset on the smb server host */
373 p = fname;
374 dot_pos = NULL;
375 while( *p )
377 if( (skip = get_character_len( *p )) != 0 )
378 p += skip;
379 else
381 if( *p == '.' && !dot_pos )
382 dot_pos = (char *)p;
383 else
384 if( !isdoschar( *p ) )
385 return( False );
386 p++;
390 /* no dot and less than 9 means OK */
391 if( !dot_pos )
392 return( len <= 8 );
394 l = PTR_DIFF( dot_pos, fname );
396 /* base must be at least 1 char except special cases . and .. */
397 if( l == 0 )
398 return( 0 == strcmp( fname, "." ) || 0 == strcmp( fname, ".." ) );
400 /* base can't be greater than 8 */
401 if( l > 8 )
402 return( False );
404 /* see smb.conf(5) for a description of the 'strip dot' parameter. */
405 if( lp_strip_dot()
406 && len - l == 1
407 && !strchr( dot_pos + 1, '.' ) )
409 *dot_pos = 0;
410 return( True );
413 /* extension must be between 1 and 3 */
414 if( (len - l < 2 ) || (len - l > 4) )
415 return( False );
417 /* extensions may not have a dot */
418 if( strchr( dot_pos+1, '.' ) )
419 return( False );
421 /* must be in 8.3 format */
422 return( True );
423 } /* is_8_3 */
426 /* ************************************************************************** **
427 * Compare two cache keys and return a value indicating their ordinal
428 * relationship.
430 * Input: ItemPtr - Pointer to a comparison key. In this case, this will
431 * be a mangled name string.
432 * NodePtr - Pointer to a node in the cache. The node structure
433 * will be followed in memory by a mangled name string.
435 * Output: A signed integer, as follows:
436 * (x < 0) <==> Key1 less than Key2
437 * (x == 0) <==> Key1 equals Key2
438 * (x > 0) <==> Key1 greater than Key2
440 * Notes: This is a ubiqx-style comparison routine. See ubi_BinTree for
441 * more info.
443 * ************************************************************************** **
445 static signed int cache_compare( ubi_btItemPtr ItemPtr, ubi_btNodePtr NodePtr )
447 char *Key1 = (char *)ItemPtr;
448 char *Key2 = (char *)(((ubi_cacheEntryPtr)NodePtr) + 1);
450 return( StrCaseCmp( Key1, Key2 ) );
451 } /* cache_compare */
453 /* ************************************************************************** **
454 * Free a cache entry.
456 * Input: WarrenZevon - Pointer to the entry that is to be returned to
457 * Nirvana.
458 * Output: none.
460 * Notes: This function gets around the possibility that the standard
461 * free() function may be implemented as a macro, or other evil
462 * subversions (oh, so much fun).
464 * ************************************************************************** **
466 static void cache_free_entry( ubi_trNodePtr WarrenZevon )
468 ZERO_STRUCTP(WarrenZevon);
469 free( WarrenZevon );
470 } /* cache_free_entry */
472 /* ************************************************************************** **
473 * Initializes or clears the mangled cache.
475 * Input: none.
476 * Output: none.
478 * Notes: There is a section below that is commented out. It shows how
479 * one might use lp_ calls to set the maximum memory and entry size
480 * of the cache. You might also want to remove the constants used
481 * in ubi_cacheInit() and replace them with lp_ calls. If so, then
482 * the calls to ubi_cacheSetMax*() would be moved into the else
483 * clause. Another option would be to pass in the max_entries and
484 * max_memory values as parameters. crh 09-Apr-1998.
486 * ************************************************************************** **
488 void reset_mangled_cache( void )
490 if( !mc_initialized )
492 (void)ubi_cacheInit( mangled_cache,
493 cache_compare,
494 cache_free_entry,
495 MANGLED_CACHE_MAX_ENTRIES,
496 MANGLED_CACHE_MAX_MEMORY );
497 mc_initialized = True;
499 else
501 (void)ubi_cacheClear( mangled_cache );
505 (void)ubi_cacheSetMaxEntries( mangled_cache, lp_mangled_cache_entries() );
506 (void)ubi_cacheSetMaxMemory( mangled_cache, lp_mangled_cache_memory() );
508 } /* reset_mangled_cache */
511 /* ************************************************************************** **
512 * Add a mangled name into the cache.
514 * Notes: If the mangled cache has not been initialized, then the
515 * function will simply fail. It could initialize the cache,
516 * but that's not the way it was done before I changed the
517 * cache mechanism, so I'm sticking with the old method.
519 * If the extension of the raw name maps directly to the
520 * extension of the mangled name, then we'll store both names
521 * *without* extensions. That way, we can provide consistent
522 * reverse mangling for all names that match. The test here is
523 * a bit more careful than the one done in earlier versions of
524 * mangle.c:
526 * - the extension must exist on the raw name,
527 * - it must be all lower case
528 * - it must match the mangled extension (to prove that no
529 * mangling occurred).
531 * crh 07-Apr-1998
533 * ************************************************************************** **
535 static void cache_mangled_name( char *mangled_name, char *raw_name )
537 ubi_cacheEntryPtr new_entry;
538 char *s1;
539 char *s2;
540 size_t mangled_len;
541 size_t raw_len;
542 size_t i;
544 /* If the cache isn't initialized, give up. */
545 if( !mc_initialized )
546 return;
548 /* Init the string lengths. */
549 mangled_len = strlen( mangled_name );
550 raw_len = strlen( raw_name );
552 /* See if the extensions are unmangled. If so, store the entry
553 * without the extension, thus creating a "group" reverse map.
555 s1 = strrchr( mangled_name, '.' );
556 if( s1 && (s2 = strrchr( raw_name, '.' )) )
558 i = 1;
559 while( s1[i] && (tolower( s1[1] ) == s2[i]) )
560 i++;
561 if( !s1[i] && !s2[i] )
563 mangled_len -= i;
564 raw_len -= i;
568 /* Allocate a new cache entry. If the allocation fails, just return. */
569 i = sizeof( ubi_cacheEntry ) + mangled_len + raw_len + 2;
570 new_entry = malloc( i );
571 if( !new_entry )
572 return;
574 /* Fill the new cache entry, and add it to the cache. */
575 s1 = (char *)(new_entry + 1);
576 s2 = (char *)&(s1[mangled_len + 1]);
577 (void)StrnCpy( s1, mangled_name, mangled_len );
578 (void)StrnCpy( s2, raw_name, raw_len );
579 ubi_cachePut( mangled_cache, i, new_entry, s1 );
580 } /* cache_mangled_name */
582 /* ************************************************************************** **
583 * Check for a name on the mangled name stack
585 * Input: s - Input *and* output string buffer.
587 * Output: True if the name was found in the cache, else False.
589 * Notes: If a reverse map is found, the function will overwrite the string
590 * space indicated by the input pointer <s>. This is frightening.
591 * It should be rewritten to return NULL if the long name was not
592 * found, and a pointer to the long name if it was found.
594 * ************************************************************************** **
597 BOOL check_mangled_cache( char *s )
599 ubi_cacheEntryPtr FoundPtr;
600 char *ext_start = NULL;
601 char *found_name;
602 char *saved_ext = NULL;
604 /* If the cache isn't initialized, give up. */
605 if( !mc_initialized )
606 return( False );
608 FoundPtr = ubi_cacheGet( mangled_cache, (ubi_trItemPtr)s );
610 /* If we didn't find the name *with* the extension, try without. */
611 if( !FoundPtr )
613 ext_start = strrchr( s, '.' );
614 if( ext_start )
616 if((saved_ext = strdup(ext_start)) == NULL)
617 return False;
619 *ext_start = '\0';
620 FoundPtr = ubi_cacheGet( mangled_cache, (ubi_trItemPtr)s );
622 * At this point s is the name without the
623 * extension. We re-add the extension if saved_ext
624 * is not null, before freeing saved_ext.
629 /* Okay, if we haven't found it we're done. */
630 if( !FoundPtr )
632 if(saved_ext)
634 /* Replace the saved_ext as it was truncated. */
635 (void)pstrcat( s, saved_ext );
636 free(saved_ext);
638 return( False );
641 /* If we *did* find it, we need to copy it into the string buffer. */
642 found_name = (char *)(FoundPtr + 1);
643 found_name += (strlen( found_name ) + 1);
645 DEBUG( 3, ("Found %s on mangled stack ", s) );
647 (void)pstrcpy( s, found_name );
648 if( saved_ext )
650 /* Replace the saved_ext as it was truncated. */
651 (void)pstrcat( s, saved_ext );
652 free(saved_ext);
655 DEBUG( 3, ("as %s\n", s) );
657 return( True );
658 } /* check_mangled_cache */
661 /* ************************************************************************** **
662 * Used only in do_fwd_mangled_map(), below.
663 * ************************************************************************** **
665 static char *map_filename( char *s, /* This is null terminated */
666 char *pattern, /* This isn't. */
667 int len ) /* This is the length of pattern. */
669 static pstring matching_bit; /* The bit of the string which matches */
670 /* a * in pattern if indeed there is a * */
671 char *sp; /* Pointer into s. */
672 char *pp; /* Pointer into p. */
673 char *match_start; /* Where the matching bit starts. */
674 pstring pat;
676 StrnCpy( pat, pattern, len ); /* Get pattern into a proper string! */
677 pstrcpy( matching_bit, "" ); /* Match but no star gets this. */
678 pp = pat; /* Initialize the pointers. */
679 sp = s;
681 if( strequal(s, ".") || strequal(s, ".."))
683 return NULL; /* Do not map '.' and '..' */
686 if( (len == 1) && (*pattern == '*') )
688 return NULL; /* Impossible, too ambiguous for */
689 } /* words! */
691 while( (*sp) /* Not the end of the string. */
692 && (*pp) /* Not the end of the pattern. */
693 && (*sp == *pp) /* The two match. */
694 && (*pp != '*') ) /* No wildcard. */
696 sp++; /* Keep looking. */
697 pp++;
700 if( !*sp && !*pp ) /* End of pattern. */
701 return( matching_bit ); /* Simple match. Return empty string. */
703 if( *pp == '*' )
705 pp++; /* Always interrested in the chacter */
706 /* after the '*' */
707 if( !*pp ) /* It is at the end of the pattern. */
709 StrnCpy( matching_bit, s, sp-s );
710 return( matching_bit );
712 else
714 /* The next character in pattern must match a character further */
715 /* along s than sp so look for that character. */
716 match_start = sp;
717 while( (*sp) /* Not the end of s. */
718 && (*sp != *pp) ) /* Not the same */
719 sp++; /* Keep looking. */
720 if( !*sp ) /* Got to the end without a match. */
722 return( NULL );
723 } /* Still hope for a match. */
724 else
726 /* Now sp should point to a matching character. */
727 StrnCpy(matching_bit, match_start, sp-match_start);
728 /* Back to needing a stright match again. */
729 while( (*sp) /* Not the end of the string. */
730 && (*pp) /* Not the end of the pattern. */
731 && (*sp == *pp) ) /* The two match. */
733 sp++; /* Keep looking. */
734 pp++;
736 if( !*sp && !*pp ) /* Both at end so it matched */
737 return( matching_bit );
738 else
739 return( NULL );
743 return( NULL ); /* No match. */
744 } /* map_filename */
747 /* ************************************************************************** **
748 * MangledMap is a series of name pairs in () separated by spaces.
749 * If s matches the first of the pair then the name given is the
750 * second of the pair. A * means any number of any character and if
751 * present in the second of the pair as well as the first the
752 * matching part of the first string takes the place of the * in the
753 * second.
755 * I wanted this so that we could have RCS files which can be used
756 * by UNIX and DOS programs. My mapping string is (RCS rcs) which
757 * converts the UNIX RCS file subdirectory to lowercase thus
758 * preventing mangling.
760 * (I think Andrew wrote the above, but I'm not sure. -- CRH)
762 * See 'mangled map' in smb.conf(5).
764 * ************************************************************************** **
766 static void do_fwd_mangled_map(char *s, char *MangledMap)
768 char *start=MangledMap; /* Use this to search for mappings. */
769 char *end; /* Used to find the end of strings. */
770 char *match_string;
771 pstring new_string; /* Make up the result here. */
772 char *np; /* Points into new_string. */
774 DEBUG( 5, ("Mangled Mapping '%s' map '%s'\n", s, MangledMap) );
775 while( *start )
777 while( (*start) && (*start != '(') )
778 start++;
779 if( !*start )
780 continue; /* Always check for the end. */
781 start++; /* Skip the ( */
782 end = start; /* Search for the ' ' or a ')' */
783 DEBUG( 5, ("Start of first in pair '%s'\n", start) );
784 while( (*end) && !((*end == ' ') || (*end == ')')) )
785 end++;
786 if( !*end )
788 start = end;
789 continue; /* Always check for the end. */
791 DEBUG( 5, ("End of first in pair '%s'\n", end) );
792 if( (match_string = map_filename( s, start, end-start )) )
794 DEBUG( 5, ("Found a match\n") );
795 /* Found a match. */
796 start = end + 1; /* Point to start of what it is to become. */
797 DEBUG( 5, ("Start of second in pair '%s'\n", start) );
798 end = start;
799 np = new_string;
800 while( (*end) /* Not the end of string. */
801 && (*end != ')') /* Not the end of the pattern. */
802 && (*end != '*') ) /* Not a wildcard. */
803 *np++ = *end++;
804 if( !*end )
806 start = end;
807 continue; /* Always check for the end. */
809 if( *end == '*' )
811 pstrcpy( np, match_string );
812 np += strlen( match_string );
813 end++; /* Skip the '*' */
814 while( (*end) /* Not the end of string. */
815 && (*end != ')') /* Not the end of the pattern. */
816 && (*end != '*') ) /* Not a wildcard. */
817 *np++ = *end++;
819 if( !*end )
821 start = end;
822 continue; /* Always check for the end. */
824 *np++ = '\0'; /* NULL terminate it. */
825 DEBUG(5,("End of second in pair '%s'\n", end));
826 pstrcpy( s, new_string ); /* Substitute with the new name. */
827 DEBUG( 5, ("s is now '%s'\n", s) );
829 start = end; /* Skip a bit which cannot be wanted anymore. */
830 start++;
832 } /* do_fwd_mangled_map */
834 /*****************************************************************************
835 * do the actual mangling to 8.3 format
836 * the buffer must be able to hold 13 characters (including the null)
837 *****************************************************************************
839 void mangle_name_83( char *s)
841 int csum;
842 char *p;
843 char extension[4];
844 char base[9];
845 int baselen = 0;
846 int extlen = 0;
847 int skip;
849 extension[0] = 0;
850 base[0] = 0;
852 p = strrchr(s,'.');
853 if( p && (strlen(p+1) < (size_t)4) )
855 BOOL all_normal = ( strisnormal(p+1) ); /* XXXXXXXXX */
857 if( all_normal && p[1] != 0 )
859 *p = 0;
860 csum = str_checksum( s );
861 *p = '.';
863 else
864 csum = str_checksum(s);
866 else
867 csum = str_checksum(s);
869 strupper( s );
871 DEBUG( 5, ("Mangling name %s to ",s) );
873 if( p )
875 if( p == s )
876 safe_strcpy( extension, "___", 3 );
877 else
879 *p++ = 0;
880 while( *p && extlen < 3 )
882 skip = get_character_len( *p );
883 switch( skip )
885 case 2:
886 if( extlen < 2 )
888 extension[extlen++] = p[0];
889 extension[extlen++] = p[1];
891 else
893 extension[extlen++] = mangle( (unsigned char)*p );
895 p += 2;
896 break;
897 case 1:
898 extension[extlen++] = p[0];
899 p++;
900 break;
901 default:
902 if( isdoschar (*p) && *p != '.' )
903 extension[extlen++] = p[0];
904 p++;
905 break;
908 extension[extlen] = 0;
912 p = s;
914 while( *p && baselen < 5 )
916 skip = get_character_len(*p);
917 switch( skip )
919 case 2:
920 if( baselen < 4 )
922 base[baselen++] = p[0];
923 base[baselen++] = p[1];
925 else
927 base[baselen++] = mangle( (unsigned char)*p );
929 p += 2;
930 break;
931 case 1:
932 base[baselen++] = p[0];
933 p++;
934 break;
935 default:
936 if( isdoschar( *p ) && *p != '.' )
937 base[baselen++] = p[0];
938 p++;
939 break;
942 base[baselen] = 0;
944 csum = csum % (MANGLE_BASE*MANGLE_BASE);
946 (void)slprintf(s, 12, "%s%c%c%c",
947 base, magic_char, mangle( csum/MANGLE_BASE ), mangle( csum ) );
949 if( *extension )
951 (void)pstrcat( s, "." );
952 (void)pstrcat( s, extension );
955 DEBUG( 5, ( "%s\n", s ) );
957 } /* mangle_name_83 */
959 /*****************************************************************************
960 * Convert a filename to DOS format. Return True if successful.
962 * Input: OutName - Source *and* destination buffer.
964 * NOTE that OutName must point to a memory space that
965 * is at least 13 bytes in size!
967 * need83 - If False, name mangling will be skipped unless the
968 * name contains illegal characters. Mapping will still
969 * be done, if appropriate. This is probably used to
970 * signal that a client does not require name mangling,
971 * thus skipping the name mangling even on shares which
972 * have name-mangling turned on.
973 * cache83 - If False, the mangled name cache will not be updated.
974 * This is usually used to prevent that we overwrite
975 * a conflicting cache entry prematurely, i.e. before
976 * we know whether the client is really interested in the
977 * current name. (See PR#13758). UKD.
978 * snum - Share number. This identifies the share in which the
979 * name exists.
981 * Output: Returns False only if the name wanted mangling but the share does
982 * not have name mangling turned on.
984 * ****************************************************************************
986 BOOL name_map_mangle(char *OutName, BOOL need83, BOOL cache83, int snum)
988 char *map;
989 DEBUG(5,("name_map_mangle( %s, need83 = %s, cache83 = %s, %d )\n", OutName,
990 need83 ? "TRUE" : "FALSE", cache83 ? "TRUE" : "FALSE", snum));
992 #ifdef MANGLE_LONG_FILENAMES
993 if( !need83 && is_illegal_name(OutName) )
994 need83 = True;
995 #endif
997 /* apply any name mappings */
998 map = lp_mangled_map(snum);
1000 if (map && *map) {
1001 do_fwd_mangled_map( OutName, map );
1004 /* check if it's already in 8.3 format */
1005 if (need83 && !is_8_3(OutName, True)) {
1006 char *tmp = NULL;
1008 if (!lp_manglednames(snum)) {
1009 return(False);
1012 /* mangle it into 8.3 */
1013 if (cache83)
1014 tmp = strdup(OutName);
1016 mangle_name_83(OutName);
1018 if(tmp != NULL) {
1019 cache_mangled_name(OutName, tmp);
1020 free(tmp);
1024 DEBUG(5,("name_map_mangle() ==> [%s]\n", OutName));
1025 return(True);
1026 } /* name_map_mangle */