patch-2.4.19 linux-2.4.19/fs/msdos/namei.c
Next file: linux-2.4.19/fs/namei.c
Previous file: linux-2.4.19/fs/lockd/svcproc.c
Back to the patch index
Back to the overall index
- Lines: 69
- Date:
Fri Aug 2 17:39:45 2002
- Orig file:
linux-2.4.18/fs/msdos/namei.c
- Orig date:
Fri Oct 12 13:48:42 2001
diff -urN linux-2.4.18/fs/msdos/namei.c linux-2.4.19/fs/msdos/namei.c
@@ -45,9 +45,10 @@
/***** Formats an MS-DOS file name. Rejects invalid names. */
static int msdos_format_name(const char *name,int len,
char *res,struct fat_mount_options *opts)
- /* conv is relaxed/normal/strict, name is proposed name,
- * len is the length of the proposed name, res is the result name,
- * dotsOK is if hidden files get dots.
+ /* name is the proposed name, len is its length, res is
+ * the resulting name, opts->name_check is either (r)elaxed,
+ * (n)ormal or (s)trict, opts->dotsOK allows dots at the
+ * beginning of name (for hidden files)
*/
{
char *walk;
@@ -69,11 +70,11 @@
for (walk = res; len && walk-res < 8; walk++) {
c = *name++;
len--;
- if (opts->conversion != 'r' && strchr(bad_chars,c))
+ if (opts->name_check != 'r' && strchr(bad_chars,c))
return -EINVAL;
- if (opts->conversion == 's' && strchr(bad_if_strict(opts),c))
+ if (opts->name_check == 's' && strchr(bad_if_strict(opts),c))
return -EINVAL;
- if (c >= 'A' && c <= 'Z' && opts->conversion == 's')
+ if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
return -EINVAL;
if (c < ' ' || c == ':' || c == '\\') return -EINVAL;
/* 0xE5 is legal as a first character, but we must substitute 0x05 */
@@ -86,7 +87,7 @@
*walk = (!opts->nocase && c >= 'a' && c <= 'z') ? c-32 : c;
}
if (space) return -EINVAL;
- if (opts->conversion == 's' && len && c != '.') {
+ if (opts->name_check == 's' && len && c != '.') {
c = *name++;
len--;
if (c != '.') return -EINVAL;
@@ -97,25 +98,25 @@
while (len > 0 && walk-res < MSDOS_NAME) {
c = *name++;
len--;
- if (opts->conversion != 'r' && strchr(bad_chars,c))
+ if (opts->name_check != 'r' && strchr(bad_chars,c))
return -EINVAL;
- if (opts->conversion == 's' &&
+ if (opts->name_check == 's' &&
strchr(bad_if_strict(opts),c))
return -EINVAL;
if (c < ' ' || c == ':' || c == '\\')
return -EINVAL;
if (c == '.') {
- if (opts->conversion == 's')
+ if (opts->name_check == 's')
return -EINVAL;
break;
}
- if (c >= 'A' && c <= 'Z' && opts->conversion == 's')
+ if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
return -EINVAL;
space = c == ' ';
*walk++ = (!opts->nocase && c >= 'a' && c <= 'z') ? c-32 : c;
}
if (space) return -EINVAL;
- if (opts->conversion == 's' && len) return -EINVAL;
+ if (opts->name_check == 's' && len) return -EINVAL;
}
while (walk-res < MSDOS_NAME) *walk++ = ' ';
if (!opts->atari)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)