r10909: Give better shutdown messages
[Samba/nascimento.git] / source3 / smbd / mangle.c
blobed69a6210e88fd40311c8e872a3a7f15b233f5dc
1 /*
2 Unix SMB/CIFS implementation.
3 Name mangling interface
4 Copyright (C) Andrew Tridgell 2002
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 static struct mangle_fns *mangle_fns;
25 /* this allows us to add more mangling backends */
26 static const struct {
27 const char *name;
28 struct mangle_fns *(*init_fn)(void);
29 } mangle_backends[] = {
30 { "hash", mangle_hash_init },
31 { "hash2", mangle_hash2_init },
32 { "posix", posix_mangle_init },
33 /*{ "tdb", mangle_tdb_init }, */
34 { NULL, NULL }
38 initialise the mangling subsystem
40 static void mangle_init(void)
42 int i;
43 const char *method;
45 if (mangle_fns)
46 return;
48 method = lp_mangling_method();
50 /* find the first mangling method that manages to initialise and
51 matches the "mangling method" parameter */
52 for (i=0; mangle_backends[i].name && !mangle_fns; i++) {
53 if (!method || !*method || strcmp(method, mangle_backends[i].name) == 0) {
54 mangle_fns = mangle_backends[i].init_fn();
58 if (!mangle_fns) {
59 DEBUG(0,("Failed to initialise mangling system '%s'\n", method));
60 exit_server("mangling init failed");
66 reset the cache. This is called when smb.conf has been reloaded
68 void mangle_reset_cache(void)
70 mangle_init();
71 mangle_fns->reset();
74 void mangle_change_to_posix(void)
76 mangle_fns = NULL;
77 lp_set_mangling_method("posix");
78 mangle_reset_cache();
82 see if a filename has come out of our mangling code
84 BOOL mangle_is_mangled(const char *s, int snum)
86 return mangle_fns->is_mangled(s, snum);
90 see if a filename matches the rules of a 8.3 filename
92 BOOL mangle_is_8_3(const char *fname, BOOL check_case, int snum)
94 return mangle_fns->is_8_3(fname, check_case, False, snum);
97 BOOL mangle_is_8_3_wildcards(const char *fname, BOOL check_case, int snum)
99 return mangle_fns->is_8_3(fname, check_case, True, snum);
103 try to reverse map a 8.3 name to the original filename. This doesn't have to
104 always succeed, as the directory handling code in smbd will scan the directory
105 looking for a matching name if it doesn't. It should succeed most of the time
106 or there will be a huge performance penalty
108 BOOL mangle_check_cache(char *s, size_t maxlen, int snum)
110 return mangle_fns->check_cache(s, maxlen, snum);
114 map a long filename to a 8.3 name.
117 void mangle_map(pstring OutName, BOOL need83, BOOL cache83, int snum)
119 /* name mangling can be disabled for speed, in which case
120 we just truncate the string */
121 if (!lp_manglednames(snum)) {
122 if (need83) {
123 string_truncate(OutName, 12);
125 return;
128 /* invoke the inane "mangled map" code */
129 mangle_map_filename(OutName, snum);
130 mangle_fns->name_map(OutName, need83, cache83, lp_defaultcase(snum), snum);