4 * Written 1992,1993 by Werner Almesberger
5 * VFAT extensions by Gordon Chaffee, merged with msdos fs by Henrik Storner
6 * Rewritten for the constant inumbers support by Al Viro
10 * Max Cohan: Fixed invalid FSINFO offset when info_sector is 0
13 #include <linux/module.h>
14 #include <linux/time.h>
15 #include <linux/slab.h>
16 #include <linux/smp_lock.h>
17 #include <linux/seq_file.h>
18 #include <linux/msdos_fs.h>
19 #include <linux/pagemap.h>
20 #include <linux/buffer_head.h>
21 #include <linux/mount.h>
22 #include <linux/vfs.h>
23 #include <linux/parser.h>
24 #include <asm/unaligned.h>
26 #ifndef CONFIG_FAT_DEFAULT_IOCHARSET
27 /* if user don't select VFAT, this is undefined. */
28 #define CONFIG_FAT_DEFAULT_IOCHARSET ""
31 static int fat_default_codepage
= CONFIG_FAT_DEFAULT_CODEPAGE
;
32 static char fat_default_iocharset
[] = CONFIG_FAT_DEFAULT_IOCHARSET
;
35 * New FAT inode stuff. We do the following:
36 * a) i_ino is constant and has nothing with on-disk location.
37 * b) FAT manages its own cache of directory entries.
38 * c) *This* cache is indexed by on-disk location.
39 * d) inode has an associated directory entry, all right, but
41 * e) currently entries are stored within struct inode. That should
43 * f) we deal with races in the following way:
44 * 1. readdir() and lookup() do FAT-dir-cache lookup.
45 * 2. rename() unhashes the F-d-c entry and rehashes it in
47 * 3. unlink() and rmdir() unhash F-d-c entry.
48 * 4. fat_write_inode() checks whether the thing is unhashed.
49 * If it is we silently return. If it isn't we do bread(),
50 * check if the location is still valid and retry if it
51 * isn't. Otherwise we do changes.
52 * 5. Spinlock is used to protect hash/unhash/location check/lookup
53 * 6. fat_clear_inode() unhashes the F-d-c entry.
54 * 7. lookup() and readdir() do igrab() if they find a F-d-c entry
55 * and consider negative result as cache miss.
58 #define FAT_HASH_BITS 8
59 #define FAT_HASH_SIZE (1UL << FAT_HASH_BITS)
60 #define FAT_HASH_MASK (FAT_HASH_SIZE-1)
61 static struct list_head fat_inode_hashtable
[FAT_HASH_SIZE
];
62 static spinlock_t fat_inode_lock
= SPIN_LOCK_UNLOCKED
;
64 void fat_hash_init(void)
67 for(i
= 0; i
< FAT_HASH_SIZE
; i
++) {
68 INIT_LIST_HEAD(&fat_inode_hashtable
[i
]);
72 static inline unsigned long fat_hash(struct super_block
*sb
, loff_t i_pos
)
74 unsigned long tmp
= (unsigned long)i_pos
| (unsigned long) sb
;
75 tmp
= tmp
+ (tmp
>> FAT_HASH_BITS
) + (tmp
>> FAT_HASH_BITS
* 2);
76 return tmp
& FAT_HASH_MASK
;
79 void fat_attach(struct inode
*inode
, loff_t i_pos
)
81 spin_lock(&fat_inode_lock
);
82 MSDOS_I(inode
)->i_pos
= i_pos
;
83 list_add(&MSDOS_I(inode
)->i_fat_hash
,
84 fat_inode_hashtable
+ fat_hash(inode
->i_sb
, i_pos
));
85 spin_unlock(&fat_inode_lock
);
88 void fat_detach(struct inode
*inode
)
90 spin_lock(&fat_inode_lock
);
91 MSDOS_I(inode
)->i_pos
= 0;
92 list_del_init(&MSDOS_I(inode
)->i_fat_hash
);
93 spin_unlock(&fat_inode_lock
);
96 struct inode
*fat_iget(struct super_block
*sb
, loff_t i_pos
)
98 struct list_head
*p
= fat_inode_hashtable
+ fat_hash(sb
, i_pos
);
99 struct list_head
*walk
;
100 struct msdos_inode_info
*i
;
101 struct inode
*inode
= NULL
;
103 spin_lock(&fat_inode_lock
);
104 list_for_each(walk
, p
) {
105 i
= list_entry(walk
, struct msdos_inode_info
, i_fat_hash
);
106 if (i
->vfs_inode
.i_sb
!= sb
)
108 if (i
->i_pos
!= i_pos
)
110 inode
= igrab(&i
->vfs_inode
);
114 spin_unlock(&fat_inode_lock
);
118 static int fat_fill_inode(struct inode
*inode
, struct msdos_dir_entry
*de
);
120 struct inode
*fat_build_inode(struct super_block
*sb
,
121 struct msdos_dir_entry
*de
, loff_t i_pos
, int *res
)
125 inode
= fat_iget(sb
, i_pos
);
128 inode
= new_inode(sb
);
132 inode
->i_ino
= iunique(sb
, MSDOS_ROOT_INO
);
133 inode
->i_version
= 1;
134 *res
= fat_fill_inode(inode
, de
);
140 fat_attach(inode
, i_pos
);
141 insert_inode_hash(inode
);
146 void fat_delete_inode(struct inode
*inode
)
148 if (!is_bad_inode(inode
)) {
155 void fat_clear_inode(struct inode
*inode
)
157 if (is_bad_inode(inode
))
160 spin_lock(&fat_inode_lock
);
161 fat_cache_inval_inode(inode
);
162 list_del_init(&MSDOS_I(inode
)->i_fat_hash
);
163 spin_unlock(&fat_inode_lock
);
167 void fat_put_super(struct super_block
*sb
)
169 struct msdos_sb_info
*sbi
= MSDOS_SB(sb
);
171 if (!(sb
->s_flags
& MS_RDONLY
))
172 fat_clusters_flush(sb
);
175 unload_nls(sbi
->nls_disk
);
176 sbi
->nls_disk
= NULL
;
177 sbi
->options
.codepage
= fat_default_codepage
;
180 unload_nls(sbi
->nls_io
);
183 if (sbi
->options
.iocharset
!= fat_default_iocharset
) {
184 kfree(sbi
->options
.iocharset
);
185 sbi
->options
.iocharset
= fat_default_iocharset
;
188 sb
->s_fs_info
= NULL
;
192 static int fat_show_options(struct seq_file
*m
, struct vfsmount
*mnt
)
194 struct msdos_sb_info
*sbi
= MSDOS_SB(mnt
->mnt_sb
);
195 struct fat_mount_options
*opts
= &sbi
->options
;
196 int isvfat
= opts
->isvfat
;
198 if (opts
->fs_uid
!= 0)
199 seq_printf(m
, ",uid=%u", opts
->fs_uid
);
200 if (opts
->fs_gid
!= 0)
201 seq_printf(m
, ",gid=%u", opts
->fs_gid
);
202 seq_printf(m
, ",fmask=%04o", opts
->fs_fmask
);
203 seq_printf(m
, ",dmask=%04o", opts
->fs_dmask
);
204 if (sbi
->nls_disk
&& opts
->codepage
!= fat_default_codepage
)
205 seq_printf(m
, ",codepage=%s", sbi
->nls_disk
->charset
);
208 strcmp(opts
->iocharset
, fat_default_iocharset
))
209 seq_printf(m
, ",iocharset=%s", sbi
->nls_io
->charset
);
211 switch (opts
->shortname
) {
212 case VFAT_SFN_DISPLAY_WIN95
| VFAT_SFN_CREATE_WIN95
:
213 seq_puts(m
, ",shortname=win95");
215 case VFAT_SFN_DISPLAY_WINNT
| VFAT_SFN_CREATE_WINNT
:
216 seq_puts(m
, ",shortname=winnt");
218 case VFAT_SFN_DISPLAY_WINNT
| VFAT_SFN_CREATE_WIN95
:
219 seq_puts(m
, ",shortname=mixed");
221 case VFAT_SFN_DISPLAY_LOWER
| VFAT_SFN_CREATE_WIN95
:
222 /* seq_puts(m, ",shortname=lower"); */
225 seq_puts(m
, ",shortname=unknown");
229 if (opts
->name_check
!= 'n')
230 seq_printf(m
, ",check=%c", opts
->name_check
);
232 seq_puts(m
, ",quiet");
234 seq_puts(m
, ",showexec");
235 if (opts
->sys_immutable
)
236 seq_puts(m
, ",sys_immutable");
239 seq_puts(m
, ",dotsOK=yes");
241 seq_puts(m
, ",nocase");
244 seq_puts(m
, ",utf8");
245 if (opts
->unicode_xlate
)
246 seq_puts(m
, ",uni_xlate");
248 seq_puts(m
, ",nonumtail");
255 Opt_check_n
, Opt_check_r
, Opt_check_s
, Opt_uid
, Opt_gid
,
256 Opt_umask
, Opt_dmask
, Opt_fmask
, Opt_codepage
, Opt_nocase
,
257 Opt_quiet
, Opt_showexec
, Opt_debug
, Opt_immutable
,
258 Opt_dots
, Opt_nodots
,
259 Opt_charset
, Opt_shortname_lower
, Opt_shortname_win95
,
260 Opt_shortname_winnt
, Opt_shortname_mixed
, Opt_utf8_no
, Opt_utf8_yes
,
261 Opt_uni_xl_no
, Opt_uni_xl_yes
, Opt_nonumtail_no
, Opt_nonumtail_yes
,
262 Opt_obsolate
, Opt_err
,
265 static match_table_t fat_tokens
= {
266 {Opt_check_r
, "check=relaxed"},
267 {Opt_check_s
, "check=strict"},
268 {Opt_check_n
, "check=normal"},
269 {Opt_check_r
, "check=r"},
270 {Opt_check_s
, "check=s"},
271 {Opt_check_n
, "check=n"},
274 {Opt_umask
, "umask=%o"},
275 {Opt_dmask
, "dmask=%o"},
276 {Opt_fmask
, "fmask=%o"},
277 {Opt_codepage
, "codepage=%u"},
278 {Opt_nocase
, "nocase"},
279 {Opt_quiet
, "quiet"},
280 {Opt_showexec
, "showexec"},
281 {Opt_debug
, "debug"},
282 {Opt_immutable
, "sys_immutable"},
283 {Opt_obsolate
, "conv=binary"},
284 {Opt_obsolate
, "conv=text"},
285 {Opt_obsolate
, "conv=auto"},
286 {Opt_obsolate
, "conv=b"},
287 {Opt_obsolate
, "conv=t"},
288 {Opt_obsolate
, "conv=a"},
289 {Opt_obsolate
, "fat=%u"},
290 {Opt_obsolate
, "blocksize=%u"},
291 {Opt_obsolate
, "cvf_format=%20s"},
292 {Opt_obsolate
, "cvf_options=%100s"},
293 {Opt_obsolate
, "posix"},
296 static match_table_t msdos_tokens
= {
297 {Opt_nodots
, "nodots"},
298 {Opt_nodots
, "dotsOK=no"},
300 {Opt_dots
, "dotsOK=yes"},
303 static match_table_t vfat_tokens
= {
304 {Opt_charset
, "iocharset=%s"},
305 {Opt_shortname_lower
, "shortname=lower"},
306 {Opt_shortname_win95
, "shortname=win95"},
307 {Opt_shortname_winnt
, "shortname=winnt"},
308 {Opt_shortname_mixed
, "shortname=mixed"},
309 {Opt_utf8_no
, "utf8=0"}, /* 0 or no or false */
310 {Opt_utf8_no
, "utf8=no"},
311 {Opt_utf8_no
, "utf8=false"},
312 {Opt_utf8_yes
, "utf8=1"}, /* empty or 1 or yes or true */
313 {Opt_utf8_yes
, "utf8=yes"},
314 {Opt_utf8_yes
, "utf8=true"},
315 {Opt_utf8_yes
, "utf8"},
316 {Opt_uni_xl_no
, "uni_xlate=0"}, /* 0 or no or false */
317 {Opt_uni_xl_no
, "uni_xlate=no"},
318 {Opt_uni_xl_no
, "uni_xlate=false"},
319 {Opt_uni_xl_yes
, "uni_xlate=1"}, /* empty or 1 or yes or true */
320 {Opt_uni_xl_yes
, "uni_xlate=yes"},
321 {Opt_uni_xl_yes
, "uni_xlate=true"},
322 {Opt_uni_xl_yes
, "uni_xlate"},
323 {Opt_nonumtail_no
, "nonumtail=0"}, /* 0 or no or false */
324 {Opt_nonumtail_no
, "nonumtail=no"},
325 {Opt_nonumtail_no
, "nonumtail=false"},
326 {Opt_nonumtail_yes
, "nonumtail=1"}, /* empty or 1 or yes or true */
327 {Opt_nonumtail_yes
, "nonumtail=yes"},
328 {Opt_nonumtail_yes
, "nonumtail=true"},
329 {Opt_nonumtail_yes
, "nonumtail"},
333 static int parse_options(char *options
, int is_vfat
, int *debug
,
334 struct fat_mount_options
*opts
)
337 substring_t args
[MAX_OPT_ARGS
];
341 opts
->isvfat
= is_vfat
;
343 opts
->fs_uid
= current
->uid
;
344 opts
->fs_gid
= current
->gid
;
345 opts
->fs_fmask
= opts
->fs_dmask
= current
->fs
->umask
;
346 opts
->codepage
= fat_default_codepage
;
347 opts
->iocharset
= fat_default_iocharset
;
349 opts
->shortname
= VFAT_SFN_DISPLAY_LOWER
|VFAT_SFN_CREATE_WIN95
;
352 opts
->name_check
= 'n';
353 opts
->quiet
= opts
->showexec
= opts
->sys_immutable
= opts
->dotsOK
= 0;
354 opts
->utf8
= opts
->unicode_xlate
= 0;
362 while ((p
= strsep(&options
, ",")) != NULL
) {
367 token
= match_token(p
, fat_tokens
, args
);
368 if (token
== Opt_err
) {
370 token
= match_token(p
, vfat_tokens
, args
);
372 token
= match_token(p
, msdos_tokens
, args
);
376 opts
->name_check
= 's';
379 opts
->name_check
= 'r';
382 opts
->name_check
= 'n';
388 /* for backward compatibility */
389 opts
->shortname
= VFAT_SFN_DISPLAY_WIN95
390 | VFAT_SFN_CREATE_WIN95
;
403 opts
->sys_immutable
= 1;
406 if (match_int(&args
[0], &option
))
408 opts
->fs_uid
= option
;
411 if (match_int(&args
[0], &option
))
413 opts
->fs_gid
= option
;
416 if (match_octal(&args
[0], &option
))
418 opts
->fs_fmask
= opts
->fs_dmask
= option
;
421 if (match_octal(&args
[0], &option
))
423 opts
->fs_dmask
= option
;
426 if (match_octal(&args
[0], &option
))
428 opts
->fs_fmask
= option
;
431 if (match_int(&args
[0], &option
))
433 opts
->codepage
= option
;
446 if (opts
->iocharset
!= fat_default_iocharset
)
447 kfree(opts
->iocharset
);
448 iocharset
= match_strdup(&args
[0]);
451 opts
->iocharset
= iocharset
;
453 case Opt_shortname_lower
:
454 opts
->shortname
= VFAT_SFN_DISPLAY_LOWER
455 | VFAT_SFN_CREATE_WIN95
;
457 case Opt_shortname_win95
:
458 opts
->shortname
= VFAT_SFN_DISPLAY_WIN95
459 | VFAT_SFN_CREATE_WIN95
;
461 case Opt_shortname_winnt
:
462 opts
->shortname
= VFAT_SFN_DISPLAY_WINNT
463 | VFAT_SFN_CREATE_WINNT
;
465 case Opt_shortname_mixed
:
466 opts
->shortname
= VFAT_SFN_DISPLAY_WINNT
467 | VFAT_SFN_CREATE_WIN95
;
469 case Opt_utf8_no
: /* 0 or no or false */
472 case Opt_utf8_yes
: /* empty or 1 or yes or true */
475 case Opt_uni_xl_no
: /* 0 or no or false */
476 opts
->unicode_xlate
= 0;
478 case Opt_uni_xl_yes
: /* empty or 1 or yes or true */
479 opts
->unicode_xlate
= 1;
481 case Opt_nonumtail_no
: /* 0 or no or false */
482 opts
->numtail
= 1; /* negated option */
484 case Opt_nonumtail_yes
: /* empty or 1 or yes or true */
485 opts
->numtail
= 0; /* negated option */
488 /* obsolete mount options */
490 printk(KERN_INFO
"FAT: \"%s\" option is obsolete, "
491 "not supported now\n", p
);
495 printk(KERN_ERR
"FAT: Unrecognized mount option \"%s\" "
496 "or missing value\n", p
);
500 /* UTF8 doesn't provide FAT semantics */
501 if (!strcmp(opts
->iocharset
, "utf8")) {
502 printk(KERN_ERR
"FAT: utf8 is not a recommended IO charset"
503 " for FAT filesystems, filesystem will be case sensitive!\n");
506 if (opts
->unicode_xlate
)
512 static int fat_calc_dir_size(struct inode
*inode
)
514 struct msdos_sb_info
*sbi
= MSDOS_SB(inode
->i_sb
);
515 int ret
, fclus
, dclus
;
518 if (MSDOS_I(inode
)->i_start
== 0)
521 ret
= fat_get_cluster(inode
, FAT_ENT_EOF
, &fclus
, &dclus
);
524 inode
->i_size
= (fclus
+ 1) << sbi
->cluster_bits
;
529 static int fat_read_root(struct inode
*inode
)
531 struct super_block
*sb
= inode
->i_sb
;
532 struct msdos_sb_info
*sbi
= MSDOS_SB(sb
);
535 MSDOS_I(inode
)->file_cluster
= MSDOS_I(inode
)->disk_cluster
= 0;
536 MSDOS_I(inode
)->i_pos
= 0;
537 inode
->i_uid
= sbi
->options
.fs_uid
;
538 inode
->i_gid
= sbi
->options
.fs_gid
;
540 inode
->i_generation
= 0;
541 inode
->i_mode
= (S_IRWXUGO
& ~sbi
->options
.fs_dmask
) | S_IFDIR
;
542 inode
->i_op
= sbi
->dir_ops
;
543 inode
->i_fop
= &fat_dir_operations
;
544 if (sbi
->fat_bits
== 32) {
545 MSDOS_I(inode
)->i_start
= sbi
->root_cluster
;
546 error
= fat_calc_dir_size(inode
);
550 MSDOS_I(inode
)->i_start
= 0;
551 inode
->i_size
= sbi
->dir_entries
* sizeof(struct msdos_dir_entry
);
553 inode
->i_blksize
= sbi
->cluster_size
;
554 inode
->i_blocks
= ((inode
->i_size
+ (sbi
->cluster_size
- 1))
555 & ~((loff_t
)sbi
->cluster_size
- 1)) >> 9;
556 MSDOS_I(inode
)->i_logstart
= 0;
557 MSDOS_I(inode
)->mmu_private
= inode
->i_size
;
559 MSDOS_I(inode
)->i_attrs
= 0;
560 inode
->i_mtime
.tv_sec
= inode
->i_atime
.tv_sec
= inode
->i_ctime
.tv_sec
= 0;
561 inode
->i_mtime
.tv_nsec
= inode
->i_atime
.tv_nsec
= inode
->i_ctime
.tv_nsec
= 0;
562 MSDOS_I(inode
)->i_ctime_ms
= 0;
563 inode
->i_nlink
= fat_subdirs(inode
)+2;
569 * a FAT file handle with fhtype 3 is
570 * 0/ i_ino - for fast, reliable lookup if still in the cache
571 * 1/ i_generation - to see if i_ino is still valid
572 * bit 0 == 0 iff directory
573 * 2/ i_pos(8-39) - if ino has changed, but still in cache
574 * 3/ i_pos(4-7)|i_logstart - to semi-verify inode found at i_pos
575 * 4/ i_pos(0-3)|parent->i_logstart - maybe used to hunt for the file on disc
577 * Hack for NFSv2: Maximum FAT entry number is 28bits and maximum
578 * i_pos is 40bits (blocknr(32) + dir offset(8)), so two 4bits
579 * of i_logstart is used to store the directory entry offset.
582 static struct dentry
*
583 fat_decode_fh(struct super_block
*sb
, __u32
*fh
, int len
, int fhtype
,
584 int (*acceptable
)(void *context
, struct dentry
*de
),
588 return ERR_PTR(-ESTALE
);
590 return ERR_PTR(-ESTALE
);
592 return sb
->s_export_op
->find_exported_dentry(sb
, fh
, NULL
, acceptable
, context
);
595 static struct dentry
*fat_get_dentry(struct super_block
*sb
, void *inump
)
597 struct inode
*inode
= NULL
;
598 struct dentry
*result
;
601 inode
= iget(sb
, fh
[0]);
602 if (!inode
|| is_bad_inode(inode
) || inode
->i_generation
!= fh
[1]) {
609 int i_logstart
= fh
[3] & 0x0fffffff;
611 i_pos
= (loff_t
)fh
[2] << 8;
612 i_pos
|= ((fh
[3] >> 24) & 0xf0) | (fh
[4] >> 28);
614 /* try 2 - see if i_pos is in F-d-c
615 * require i_logstart to be the same
616 * Will fail if you truncate and then re-write
619 inode
= fat_iget(sb
, i_pos
);
620 if (inode
&& MSDOS_I(inode
)->i_logstart
!= i_logstart
) {
626 /* For now, do nothing
627 * What we could do is:
628 * follow the file starting at fh[4], and record
629 * the ".." entry, and the name of the fh[2] entry.
630 * The follow the ".." file finding the next step up.
631 * This way we build a path to the root of
632 * the tree. If this works, we lookup the path and so
633 * get this inode into the cache.
634 * Finally try the fat_iget lookup again
635 * If that fails, then weare totally out of luck
636 * But all that is for another day
640 return ERR_PTR(-ESTALE
);
643 /* now to find a dentry.
644 * If possible, get a well-connected one
646 result
= d_alloc_anon(inode
);
647 if (result
== NULL
) {
649 return ERR_PTR(-ENOMEM
);
651 result
->d_op
= sb
->s_root
->d_op
;
656 fat_encode_fh(struct dentry
*de
, __u32
*fh
, int *lenp
, int connectable
)
659 struct inode
*inode
= de
->d_inode
;
660 u32 ipos_h
, ipos_m
, ipos_l
;
663 return 255; /* no room */
665 ipos_h
= MSDOS_I(inode
)->i_pos
>> 8;
666 ipos_m
= (MSDOS_I(inode
)->i_pos
& 0xf0) << 24;
667 ipos_l
= (MSDOS_I(inode
)->i_pos
& 0x0f) << 28;
669 fh
[0] = inode
->i_ino
;
670 fh
[1] = inode
->i_generation
;
672 fh
[3] = ipos_m
| MSDOS_I(inode
)->i_logstart
;
673 spin_lock(&de
->d_lock
);
674 fh
[4] = ipos_l
| MSDOS_I(de
->d_parent
->d_inode
)->i_logstart
;
675 spin_unlock(&de
->d_lock
);
679 static struct dentry
*fat_get_parent(struct dentry
*child
)
681 struct buffer_head
*bh
=NULL
;
682 struct msdos_dir_entry
*de
= NULL
;
683 struct dentry
*parent
= NULL
;
689 res
= fat_scan(child
->d_inode
, MSDOS_DOTDOT
, &bh
, &de
, &i_pos
);
693 inode
= fat_build_inode(child
->d_sb
, de
, i_pos
, &res
);
699 parent
= d_alloc_anon(inode
);
716 /*===prince debug delete
717 static kmem_cache_t *fat_inode_cachep;
720 static struct msdos_inode_info
*ei
;
723 static struct inode
*fat_alloc_inode(struct super_block
*sb
)
725 /*=========prince debug delete
726 struct msdos_inode_info *ei;
727 ei = (struct msdos_inode_info *)kmem_cache_alloc(fat_inode_cachep, SLAB_KERNEL);
728 =======================*/
730 ei
= (struct msdod_inode_info
*)kmalloc(sizeof(struct msdos_inode_info
),GFP_KERNEL
|GFP_DMA
);
734 return &ei
->vfs_inode
;
737 static void fat_destroy_inode(struct inode
*inode
)
739 /*==========prince debug delete
740 kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
741 ==============================*/
747 /*======prince debug delete
748 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
750 struct msdos_inode_info *ei = (struct msdos_inode_info *) foo;
752 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
753 SLAB_CTOR_CONSTRUCTOR) {
754 INIT_LIST_HEAD(&ei->i_fat_hash);
755 inode_init_once(&ei->vfs_inode);
758 ========================*/
760 int __init
fat_init_inodecache(void)
762 /*========prince debug delete
763 fat_inode_cachep = kmem_cache_create("fat_inode_cache",
764 sizeof(struct msdos_inode_info),
765 0, SLAnit_inodecacheB_RECLAIM_ACCOUNT,
767 if (fat_inode_cachep == NULL)
769 =============================*/
774 void __exit
fat_destroy_inodecache(void)
776 if (kmem_cache_destroy(fat_inode_cachep
))
777 printk(KERN_INFO
"fat_inode_cache: not all structures were freed\n");
780 static int fat_remount(struct super_block
*sb
, int *flags
, char *data
)
782 *flags
|= MS_NODIRATIME
;
786 static struct super_operations fat_sops
= {
787 .alloc_inode
= fat_alloc_inode
,
788 .destroy_inode
= fat_destroy_inode
,
789 .write_inode
= fat_write_inode
,
790 .delete_inode
= fat_delete_inode
,
791 .put_super
= fat_put_super
,
792 .statfs
= fat_statfs
,
793 .clear_inode
= fat_clear_inode
,
794 .remount_fs
= fat_remount
,
796 .read_inode
= make_bad_inode
,
798 .show_options
= fat_show_options
,
801 static struct export_operations fat_export_ops
= {
802 .decode_fh
= fat_decode_fh
,
803 .encode_fh
= fat_encode_fh
,
804 .get_dentry
= fat_get_dentry
,
805 .get_parent
= fat_get_parent
,
809 * Read the super block of an MS-DOS FS.
811 int fat_fill_super(struct super_block
*sb
, void *data
, int silent
,
812 struct inode_operations
*fs_dir_inode_ops
, int isvfat
)
814 struct inode
*root_inode
= NULL
;
815 struct buffer_head
*bh
;
816 struct fat_boot_sector
*b
;
817 struct msdos_sb_info
*sbi
;
818 u16 logical_sector_size
;
819 u32 total_sectors
, total_clusters
, fat_clusters
, rootdir_sectors
;
825 sbi
= kmalloc(sizeof(struct msdos_sb_info
), GFP_KERNEL
);
829 memset(sbi
, 0, sizeof(struct msdos_sb_info
));
831 sb
->s_flags
|= MS_NODIRATIME
;
832 sb
->s_magic
= MSDOS_SUPER_MAGIC
;
833 sb
->s_op
= &fat_sops
;
834 sb
->s_export_op
= &fat_export_ops
;
835 sbi
->dir_ops
= fs_dir_inode_ops
;
837 error
= parse_options(data
, isvfat
, &debug
, &sbi
->options
);
842 /* set up enough so that it can read an inode */
843 init_MUTEX(&sbi
->fat_lock
);
846 sb_min_blocksize(sb
, 512);
847 bh
= sb_bread(sb
, 0);
849 printk(KERN_ERR
"FAT: unable to read boot sector\n");
853 b
= (struct fat_boot_sector
*) bh
->b_data
;
856 printk(KERN_ERR
"FAT: bogus number of reserved sectors\n");
862 printk(KERN_ERR
"FAT: bogus number of FAT structure\n");
868 * Earlier we checked here that b->secs_track and b->head are nonzero,
869 * but it turns out valid FAT filesystems can have zero there.
873 if (!FAT_VALID_MEDIA(media
)) {
875 printk(KERN_ERR
"FAT: invalid media value (0x%02x)\n",
880 logical_sector_size
= CF_LE_W(get_unaligned((__le16
*)&b
->sector_size
));
881 if (!logical_sector_size
882 || (logical_sector_size
& (logical_sector_size
- 1))
883 || (logical_sector_size
< 512)
884 || (PAGE_CACHE_SIZE
< logical_sector_size
)) {
886 printk(KERN_ERR
"FAT: bogus logical sector size %u\n",
887 logical_sector_size
);
891 sbi
->sec_per_clus
= b
->sec_per_clus
;
892 if (!sbi
->sec_per_clus
893 || (sbi
->sec_per_clus
& (sbi
->sec_per_clus
- 1))) {
895 printk(KERN_ERR
"FAT: bogus sectors per cluster %u\n",
901 if (logical_sector_size
< sb
->s_blocksize
) {
902 printk(KERN_ERR
"FAT: logical sector size too small for device"
903 " (logical sector size = %u)\n", logical_sector_size
);
907 if (logical_sector_size
> sb
->s_blocksize
) {
910 if (!sb_set_blocksize(sb
, logical_sector_size
)) {
911 printk(KERN_ERR
"FAT: unable to set blocksize %u\n",
912 logical_sector_size
);
915 bh
= sb_bread(sb
, 0);
917 printk(KERN_ERR
"FAT: unable to read boot sector"
918 " (logical sector size = %lu)\n",
922 b
= (struct fat_boot_sector
*) bh
->b_data
;
925 sbi
->cluster_size
= sb
->s_blocksize
* sbi
->sec_per_clus
;
926 sbi
->cluster_bits
= ffs(sbi
->cluster_size
) - 1;
928 sbi
->fat_bits
= 0; /* Don't know yet */
929 sbi
->fat_start
= CF_LE_W(b
->reserved
);
930 sbi
->fat_length
= CF_LE_W(b
->fat_length
);
931 sbi
->root_cluster
= 0;
932 sbi
->free_clusters
= -1; /* Don't know yet */
935 if (!sbi
->fat_length
&& b
->fat32_length
) {
936 struct fat_boot_fsinfo
*fsinfo
;
937 struct buffer_head
*fsinfo_bh
;
941 sbi
->fat_length
= CF_LE_L(b
->fat32_length
);
942 sbi
->root_cluster
= CF_LE_L(b
->root_cluster
);
944 sb
->s_maxbytes
= 0xffffffff;
946 /* MC - if info_sector is 0, don't multiply by 0 */
947 sbi
->fsinfo_sector
= CF_LE_W(b
->info_sector
);
948 if (sbi
->fsinfo_sector
== 0)
949 sbi
->fsinfo_sector
= 1;
951 fsinfo_bh
= sb_bread(sb
, sbi
->fsinfo_sector
);
952 if (fsinfo_bh
== NULL
) {
953 printk(KERN_ERR
"FAT: bread failed, FSINFO block"
954 " (sector = %lu)\n", sbi
->fsinfo_sector
);
959 fsinfo
= (struct fat_boot_fsinfo
*)fsinfo_bh
->b_data
;
960 if (!IS_FSINFO(fsinfo
)) {
962 "FAT: Did not find valid FSINFO signature.\n"
963 " Found signature1 0x%08x signature2 0x%08x"
965 CF_LE_L(fsinfo
->signature1
),
966 CF_LE_L(fsinfo
->signature2
),
969 sbi
->free_clusters
= CF_LE_L(fsinfo
->free_clusters
);
970 sbi
->prev_free
= CF_LE_L(fsinfo
->next_cluster
);
976 sbi
->dir_per_block
= sb
->s_blocksize
/ sizeof(struct msdos_dir_entry
);
977 sbi
->dir_per_block_bits
= ffs(sbi
->dir_per_block
) - 1;
979 sbi
->dir_start
= sbi
->fat_start
+ sbi
->fats
* sbi
->fat_length
;
980 sbi
->dir_entries
= CF_LE_W(get_unaligned((__le16
*)&b
->dir_entries
));
981 if (sbi
->dir_entries
& (sbi
->dir_per_block
- 1)) {
983 printk(KERN_ERR
"FAT: bogus directroy-entries per block"
984 " (%u)\n", sbi
->dir_entries
);
989 rootdir_sectors
= sbi
->dir_entries
990 * sizeof(struct msdos_dir_entry
) / sb
->s_blocksize
;
991 sbi
->data_start
= sbi
->dir_start
+ rootdir_sectors
;
992 total_sectors
= CF_LE_W(get_unaligned((__le16
*)&b
->sectors
));
993 if (total_sectors
== 0)
994 total_sectors
= CF_LE_L(b
->total_sect
);
996 total_clusters
= (total_sectors
- sbi
->data_start
) / sbi
->sec_per_clus
;
998 if (sbi
->fat_bits
!= 32)
999 sbi
->fat_bits
= (total_clusters
> MAX_FAT12
) ? 16 : 12;
1001 /* check that FAT table does not overflow */
1002 fat_clusters
= sbi
->fat_length
* sb
->s_blocksize
* 8 / sbi
->fat_bits
;
1003 total_clusters
= min(total_clusters
, fat_clusters
- 2);
1004 if (total_clusters
> MAX_FAT(sb
)) {
1006 printk(KERN_ERR
"FAT: count of clusters too big (%u)\n",
1012 sbi
->clusters
= total_clusters
;
1016 /* validity check of FAT */
1017 first
= __fat_access(sb
, 0, -1);
1022 if (FAT_FIRST_ENT(sb
, media
) == first
) {
1023 /* all is as it should be */
1024 } else if (media
== 0xf8 && FAT_FIRST_ENT(sb
, 0xfe) == first
) {
1025 /* bad, reported on pc9800 */
1026 } else if (media
== 0xf0 && FAT_FIRST_ENT(sb
, 0xf8) == first
) {
1027 /* bad, reported with a MO disk on win95/me */
1028 } else if (first
== 0) {
1029 /* bad, reported with a SmartMedia card */
1032 printk(KERN_ERR
"FAT: invalid first entry of FAT "
1034 FAT_FIRST_ENT(sb
, media
), first
);
1039 sprintf(buf
, "cp%d", sbi
->options
.codepage
);
1040 sbi
->nls_disk
= load_nls(buf
);
1041 if (!sbi
->nls_disk
) {
1042 printk(KERN_ERR
"FAT: codepage %s not found\n", buf
);
1046 /* FIXME: utf8 is using iocharset for upper/lower conversion */
1047 if (sbi
->options
.isvfat
) {
1048 sbi
->nls_io
= load_nls(sbi
->options
.iocharset
);
1050 printk(KERN_ERR
"FAT: IO charset %s not found\n",
1051 sbi
->options
.iocharset
);
1057 root_inode
= new_inode(sb
);
1060 root_inode
->i_ino
= MSDOS_ROOT_INO
;
1061 root_inode
->i_version
= 1;
1062 error
= fat_read_root(root_inode
);
1066 insert_inode_hash(root_inode
);
1067 sb
->s_root
= d_alloc_root(root_inode
);
1069 printk(KERN_ERR
"FAT: get root inode failed\n");
1078 printk(KERN_INFO
"VFS: Can't find a valid FAT filesystem"
1079 " on dev %s.\n", sb
->s_id
);
1085 unload_nls(sbi
->nls_io
);
1087 unload_nls(sbi
->nls_disk
);
1088 if (sbi
->options
.iocharset
!= fat_default_iocharset
)
1089 kfree(sbi
->options
.iocharset
);
1090 sb
->s_fs_info
= NULL
;
1095 int fat_statfs(struct super_block
*sb
, struct kstatfs
*buf
)
1099 if (MSDOS_SB(sb
)->free_clusters
!= -1)
1100 free
= MSDOS_SB(sb
)->free_clusters
;
1103 if (MSDOS_SB(sb
)->free_clusters
!= -1)
1104 free
= MSDOS_SB(sb
)->free_clusters
;
1107 for (nr
= 2; nr
< MSDOS_SB(sb
)->clusters
+ 2; nr
++) {
1108 ret
= fat_access(sb
, nr
, -1);
1112 } else if (ret
== FAT_ENT_FREE
)
1115 MSDOS_SB(sb
)->free_clusters
= free
;
1120 buf
->f_type
= sb
->s_magic
;
1121 buf
->f_bsize
= MSDOS_SB(sb
)->cluster_size
;
1122 buf
->f_blocks
= MSDOS_SB(sb
)->clusters
;
1123 buf
->f_bfree
= free
;
1124 buf
->f_bavail
= free
;
1125 buf
->f_namelen
= MSDOS_SB(sb
)->options
.isvfat
? 260 : 12;
1130 static int is_exec(unsigned char *extension
)
1132 unsigned char *exe_extensions
= "EXECOMBAT", *walk
;
1134 for (walk
= exe_extensions
; *walk
; walk
+= 3)
1135 if (!strncmp(extension
, walk
, 3))
1140 static int fat_writepage(struct page
*page
, struct writeback_control
*wbc
)
1142 return block_write_full_page(page
,fat_get_block
, wbc
);
1144 static int fat_readpage(struct file
*file
, struct page
*page
)
1146 return block_read_full_page(page
,fat_get_block
);
1150 fat_prepare_write(struct file
*file
, struct page
*page
,
1151 unsigned from
, unsigned to
)
1154 return cont_prepare_write(page
,from
,to
,fat_get_block
,
1155 &MSDOS_I(page
->mapping
->host
)->mmu_private
);
1159 fat_commit_write(struct file
*file
, struct page
*page
,
1160 unsigned from
, unsigned to
)
1163 return generic_commit_write(file
, page
, from
, to
);
1166 static sector_t
_fat_bmap(struct address_space
*mapping
, sector_t block
)
1168 return generic_block_bmap(mapping
,block
,fat_get_block
);
1170 static struct address_space_operations fat_aops
= {
1171 .readpage
= fat_readpage
,
1172 .writepage
= fat_writepage
,
1173 .sync_page
= block_sync_page
,
1174 .prepare_write
= fat_prepare_write
,
1175 .commit_write
= fat_commit_write
,
1179 /* doesn't deal with root inode */
1180 static int fat_fill_inode(struct inode
*inode
, struct msdos_dir_entry
*de
)
1182 struct super_block
*sb
= inode
->i_sb
;
1183 struct msdos_sb_info
*sbi
= MSDOS_SB(sb
);
1186 MSDOS_I(inode
)->file_cluster
= MSDOS_I(inode
)->disk_cluster
= 0;
1187 MSDOS_I(inode
)->i_pos
= 0;
1188 inode
->i_uid
= sbi
->options
.fs_uid
;
1189 inode
->i_gid
= sbi
->options
.fs_gid
;
1191 inode
->i_generation
= get_seconds();
1193 if ((de
->attr
& ATTR_DIR
) && !IS_FREE(de
->name
)) {
1194 inode
->i_generation
&= ~1;
1195 inode
->i_mode
= MSDOS_MKMODE(de
->attr
,
1196 S_IRWXUGO
& ~sbi
->options
.fs_dmask
) | S_IFDIR
;
1197 inode
->i_op
= sbi
->dir_ops
;
1198 inode
->i_fop
= &fat_dir_operations
;
1200 MSDOS_I(inode
)->i_start
= CF_LE_W(de
->start
);
1201 if (sbi
->fat_bits
== 32)
1202 MSDOS_I(inode
)->i_start
|= (CF_LE_W(de
->starthi
) << 16);
1204 MSDOS_I(inode
)->i_logstart
= MSDOS_I(inode
)->i_start
;
1205 error
= fat_calc_dir_size(inode
);
1208 MSDOS_I(inode
)->mmu_private
= inode
->i_size
;
1210 inode
->i_nlink
= fat_subdirs(inode
);
1211 } else { /* not a directory */
1212 inode
->i_generation
|= 1;
1213 inode
->i_mode
= MSDOS_MKMODE(de
->attr
,
1214 ((sbi
->options
.showexec
&&
1216 ? S_IRUGO
|S_IWUGO
: S_IRWXUGO
)
1217 & ~sbi
->options
.fs_fmask
) | S_IFREG
;
1218 MSDOS_I(inode
)->i_start
= CF_LE_W(de
->start
);
1219 if (sbi
->fat_bits
== 32)
1220 MSDOS_I(inode
)->i_start
|= (CF_LE_W(de
->starthi
) << 16);
1222 MSDOS_I(inode
)->i_logstart
= MSDOS_I(inode
)->i_start
;
1223 inode
->i_size
= CF_LE_L(de
->size
);
1224 inode
->i_op
= &fat_file_inode_operations
;
1225 inode
->i_fop
= &fat_file_operations
;
1226 inode
->i_mapping
->a_ops
= &fat_aops
;
1227 MSDOS_I(inode
)->mmu_private
= inode
->i_size
;
1229 if(de
->attr
& ATTR_SYS
)
1230 if (sbi
->options
.sys_immutable
)
1231 inode
->i_flags
|= S_IMMUTABLE
;
1232 MSDOS_I(inode
)->i_attrs
= de
->attr
& ATTR_UNUSED
;
1233 /* this is as close to the truth as we can get ... */
1234 inode
->i_blksize
= sbi
->cluster_size
;
1235 inode
->i_blocks
= ((inode
->i_size
+ (sbi
->cluster_size
- 1))
1236 & ~((loff_t
)sbi
->cluster_size
- 1)) >> 9;
1237 inode
->i_mtime
.tv_sec
= inode
->i_atime
.tv_sec
=
1238 date_dos2unix(CF_LE_W(de
->time
),CF_LE_W(de
->date
));
1239 inode
->i_mtime
.tv_nsec
= inode
->i_atime
.tv_nsec
= 0;
1240 inode
->i_ctime
.tv_sec
=
1241 MSDOS_SB(sb
)->options
.isvfat
1242 ? date_dos2unix(CF_LE_W(de
->ctime
),CF_LE_W(de
->cdate
))
1243 : inode
->i_mtime
.tv_sec
;
1244 inode
->i_ctime
.tv_nsec
= de
->ctime_ms
* 1000000;
1245 MSDOS_I(inode
)->i_ctime_ms
= de
->ctime_ms
;
1250 int fat_write_inode(struct inode
*inode
, int wait
)
1252 struct super_block
*sb
= inode
->i_sb
;
1253 struct buffer_head
*bh
;
1254 struct msdos_dir_entry
*raw_entry
;
1258 i_pos
= MSDOS_I(inode
)->i_pos
;
1259 if (inode
->i_ino
== MSDOS_ROOT_INO
|| !i_pos
) {
1263 if (!(bh
= sb_bread(sb
, i_pos
>> MSDOS_SB(sb
)->dir_per_block_bits
))) {
1264 printk(KERN_ERR
"FAT: unable to read inode block "
1265 "for updating (i_pos %lld)\n", i_pos
);
1269 spin_lock(&fat_inode_lock
);
1270 if (i_pos
!= MSDOS_I(inode
)->i_pos
) {
1271 spin_unlock(&fat_inode_lock
);
1277 raw_entry
= &((struct msdos_dir_entry
*) (bh
->b_data
))
1278 [i_pos
& (MSDOS_SB(sb
)->dir_per_block
- 1)];
1279 if (S_ISDIR(inode
->i_mode
)) {
1280 raw_entry
->attr
= ATTR_DIR
;
1281 raw_entry
->size
= 0;
1284 raw_entry
->attr
= ATTR_NONE
;
1285 raw_entry
->size
= CT_LE_L(inode
->i_size
);
1287 raw_entry
->attr
|= MSDOS_MKATTR(inode
->i_mode
) |
1288 MSDOS_I(inode
)->i_attrs
;
1289 raw_entry
->start
= CT_LE_W(MSDOS_I(inode
)->i_logstart
);
1290 raw_entry
->starthi
= CT_LE_W(MSDOS_I(inode
)->i_logstart
>> 16);
1291 fat_date_unix2dos(inode
->i_mtime
.tv_sec
, &raw_entry
->time
, &raw_entry
->date
);
1292 if (MSDOS_SB(sb
)->options
.isvfat
) {
1293 fat_date_unix2dos(inode
->i_ctime
.tv_sec
,&raw_entry
->ctime
,&raw_entry
->cdate
);
1294 raw_entry
->ctime_ms
= MSDOS_I(inode
)->i_ctime_ms
; /* use i_ctime.tv_nsec? */
1296 spin_unlock(&fat_inode_lock
);
1297 mark_buffer_dirty(bh
);
1304 int fat_notify_change(struct dentry
* dentry
, struct iattr
* attr
)
1306 struct msdos_sb_info
*sbi
= MSDOS_SB(dentry
->d_sb
);
1307 struct inode
*inode
= dentry
->d_inode
;
1308 int mask
, error
= 0;
1312 /* FAT cannot truncate to a longer file */
1313 if (attr
->ia_valid
& ATTR_SIZE
) {
1314 if (attr
->ia_size
> inode
->i_size
) {
1320 error
= inode_change_ok(inode
, attr
);
1322 if (sbi
->options
.quiet
)
1327 if (((attr
->ia_valid
& ATTR_UID
) &&
1328 (attr
->ia_uid
!= sbi
->options
.fs_uid
)) ||
1329 ((attr
->ia_valid
& ATTR_GID
) &&
1330 (attr
->ia_gid
!= sbi
->options
.fs_gid
)) ||
1331 ((attr
->ia_valid
& ATTR_MODE
) &&
1332 (attr
->ia_mode
& ~MSDOS_VALID_MODE
)))
1336 if (sbi
->options
.quiet
)
1340 error
= inode_setattr(inode
, attr
);
1344 if (S_ISDIR(inode
->i_mode
))
1345 mask
= sbi
->options
.fs_dmask
;
1347 mask
= sbi
->options
.fs_fmask
;
1348 inode
->i_mode
&= S_IFMT
| (S_IRWXUGO
& ~mask
);
1353 MODULE_LICENSE("GPL");