2 * linux/fs/vfat/namei.c
4 * Written 1992,1993 by Werner Almesberger
6 * Windows95/Windows NT compatible extended MSDOS filesystem
7 * by Gordon Chaffee Copyright (C) 1995. Send bug reports for the
8 * VFAT filesystem to <chaffee@cs.berkeley.edu>. Specify
9 * what file operation caused you trouble and if you can duplicate
10 * the problem, send a script that demonstrates it.
12 * Short name translation 1999, 2001 by Wolfram Pienkoss <wp@bszh.de>
14 * Support Multibyte characters and cleanup by
15 * OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18 #include <linux/module.h>
19 #include <linux/jiffies.h>
20 #include <linux/ctype.h>
21 #include <linux/slab.h>
22 #include <linux/buffer_head.h>
23 #include <linux/namei.h>
27 * If new entry was created in the parent, it could create the 8.3
28 * alias (the shortname of logname). So, the parent may have the
29 * negative-dentry which matches the created 8.3 alias.
31 * If it happened, the negative dentry isn't actually negative
32 * anymore. So, drop it.
34 static int vfat_revalidate_shortname(struct dentry
*dentry
)
37 spin_lock(&dentry
->d_lock
);
38 if (dentry
->d_time
!= dentry
->d_parent
->d_inode
->i_version
)
40 spin_unlock(&dentry
->d_lock
);
44 static int vfat_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
46 /* This is not negative dentry. Always valid. */
49 return vfat_revalidate_shortname(dentry
);
52 static int vfat_revalidate_ci(struct dentry
*dentry
, struct nameidata
*nd
)
55 * This is not negative dentry. Always valid.
57 * Note, rename() to existing directory entry will have ->d_inode,
58 * and will use existing name which isn't specified name by user.
60 * We may be able to drop this positive dentry here. But dropping
61 * positive dentry isn't good idea. So it's unsupported like
62 * rename("filename", "FILENAME") for now.
68 * This may be nfsd (or something), anyway, we can't see the
69 * intent of this. So, since this can be for creation, drop it.
75 * Drop the negative dentry, in order to make sure to use the
76 * case sensitive name which is specified by user if this is
79 if (!(nd
->flags
& (LOOKUP_CONTINUE
| LOOKUP_PARENT
))) {
80 if (nd
->flags
& (LOOKUP_CREATE
| LOOKUP_RENAME_TARGET
))
84 return vfat_revalidate_shortname(dentry
);
87 /* returns the length of a struct qstr, ignoring trailing dots */
88 static unsigned int vfat_striptail_len(struct qstr
*qstr
)
90 unsigned int len
= qstr
->len
;
92 while (len
&& qstr
->name
[len
- 1] == '.')
98 * Compute the hash for the vfat name corresponding to the dentry.
99 * Note: if the name is invalid, we leave the hash code unchanged so
100 * that the existing dentry can be used. The vfat fs routines will
101 * return ENOENT or EINVAL as appropriate.
103 static int vfat_hash(struct dentry
*dentry
, struct qstr
*qstr
)
105 qstr
->hash
= full_name_hash(qstr
->name
, vfat_striptail_len(qstr
));
110 * Compute the hash for the vfat name corresponding to the dentry.
111 * Note: if the name is invalid, we leave the hash code unchanged so
112 * that the existing dentry can be used. The vfat fs routines will
113 * return ENOENT or EINVAL as appropriate.
115 static int vfat_hashi(struct dentry
*dentry
, struct qstr
*qstr
)
117 struct nls_table
*t
= MSDOS_SB(dentry
->d_inode
->i_sb
)->nls_io
;
118 const unsigned char *name
;
123 len
= vfat_striptail_len(qstr
);
125 hash
= init_name_hash();
127 hash
= partial_name_hash(nls_tolower(t
, *name
++), hash
);
128 qstr
->hash
= end_name_hash(hash
);
134 * Case insensitive compare of two vfat names.
136 static int vfat_cmpi(struct dentry
*dentry
, struct qstr
*a
, struct qstr
*b
)
138 struct nls_table
*t
= MSDOS_SB(dentry
->d_inode
->i_sb
)->nls_io
;
139 unsigned int alen
, blen
;
141 /* A filename cannot end in '.' or we treat it like it has none */
142 alen
= vfat_striptail_len(a
);
143 blen
= vfat_striptail_len(b
);
145 if (nls_strnicmp(t
, a
->name
, b
->name
, alen
) == 0)
152 * Case sensitive compare of two vfat names.
154 static int vfat_cmp(struct dentry
*dentry
, struct qstr
*a
, struct qstr
*b
)
156 unsigned int alen
, blen
;
158 /* A filename cannot end in '.' or we treat it like it has none */
159 alen
= vfat_striptail_len(a
);
160 blen
= vfat_striptail_len(b
);
162 if (strncmp(a
->name
, b
->name
, alen
) == 0)
168 static const struct dentry_operations vfat_ci_dentry_ops
= {
169 .d_revalidate
= vfat_revalidate_ci
,
170 .d_hash
= vfat_hashi
,
171 .d_compare
= vfat_cmpi
,
174 static const struct dentry_operations vfat_dentry_ops
= {
175 .d_revalidate
= vfat_revalidate
,
177 .d_compare
= vfat_cmp
,
180 /* Characters that are undesirable in an MS-DOS file name */
182 static inline wchar_t vfat_bad_char(wchar_t w
)
185 || (w
== '*') || (w
== '?') || (w
== '<') || (w
== '>')
186 || (w
== '|') || (w
== '"') || (w
== ':') || (w
== '/')
190 static inline wchar_t vfat_replace_char(wchar_t w
)
192 return (w
== '[') || (w
== ']') || (w
== ';') || (w
== ',')
193 || (w
== '+') || (w
== '=');
196 static wchar_t vfat_skip_char(wchar_t w
)
198 return (w
== '.') || (w
== ' ');
201 static inline int vfat_is_used_badchars(const wchar_t *s
, int len
)
205 for (i
= 0; i
< len
; i
++)
206 if (vfat_bad_char(s
[i
]))
209 if (s
[i
- 1] == ' ') /* last character cannot be space */
215 static int vfat_find_form(struct inode
*dir
, unsigned char *name
)
217 struct fat_slot_info sinfo
;
218 int err
= fat_scan(dir
, name
, &sinfo
);
226 * 1) Valid characters for the 8.3 format alias are any combination of
227 * letters, uppercase alphabets, digits, any of the
228 * following special characters:
229 * $ % ' ` - @ { } ~ ! # ( ) & _ ^
230 * In this case Longfilename is not stored in disk.
233 * File name and extension name is contain uppercase/lowercase
234 * only. And it is expressed by CASE_LOWER_BASE and CASE_LOWER_EXT.
236 * 2) File name is 8.3 format, but it contain the uppercase and
237 * lowercase char, muliti bytes char, etc. In this case numtail is not
238 * added, but Longfilename is stored.
240 * 3) When the one except for the above, or the following special
241 * character are contained:
243 * numtail is added, and Longfilename must be stored in disk .
245 struct shortname_info
{
246 unsigned char lower
:1,
250 #define INIT_SHORTNAME_INFO(x) do { \
256 static inline int to_shortname_char(struct nls_table
*nls
,
257 unsigned char *buf
, int buf_size
,
258 wchar_t *src
, struct shortname_info
*info
)
262 if (vfat_skip_char(*src
)) {
266 if (vfat_replace_char(*src
)) {
272 len
= nls
->uni2char(*src
, buf
, buf_size
);
277 } else if (len
== 1) {
278 unsigned char prev
= buf
[0];
280 if (buf
[0] >= 0x7F) {
285 buf
[0] = nls_toupper(nls
, buf
[0]);
286 if (isalpha(buf
[0])) {
301 * Given a valid longname, create a unique shortname. Make sure the
302 * shortname does not exist
303 * Returns negative number on error, 0 for a normal
304 * return, and 1 for valid shortname
306 static int vfat_create_shortname(struct inode
*dir
, struct nls_table
*nls
,
307 wchar_t *uname
, int ulen
,
308 unsigned char *name_res
, unsigned char *lcase
)
310 struct fat_mount_options
*opts
= &MSDOS_SB(dir
->i_sb
)->options
;
311 wchar_t *ip
, *ext_start
, *end
, *name_start
;
312 unsigned char base
[9], ext
[4], buf
[8], *p
;
313 unsigned char charbuf
[NLS_MAX_CHARSET_SIZE
];
315 int sz
= 0, extlen
, baselen
, i
, numtail_baselen
, numtail2_baselen
;
317 struct shortname_info base_info
, ext_info
;
320 INIT_SHORTNAME_INFO(&base_info
);
321 INIT_SHORTNAME_INFO(&ext_info
);
323 /* Now, we need to create a shortname from the long name */
324 ext_start
= end
= &uname
[ulen
];
325 while (--ext_start
>= uname
) {
326 if (*ext_start
== 0x002E) { /* is `.' */
327 if (ext_start
== end
- 1) {
335 if (ext_start
== uname
- 1) {
338 } else if (ext_start
) {
340 * Names which start with a dot could be just
341 * an extension eg. "...test". In this case Win95
342 * uses the extension as the name and sets no extension.
344 name_start
= &uname
[0];
345 while (name_start
< ext_start
) {
346 if (!vfat_skip_char(*name_start
))
350 if (name_start
!= ext_start
) {
351 sz
= ext_start
- uname
;
360 numtail2_baselen
= 2;
361 for (baselen
= i
= 0, p
= base
, ip
= uname
; i
< sz
; i
++, ip
++) {
362 chl
= to_shortname_char(nls
, charbuf
, sizeof(charbuf
),
367 if (baselen
< 2 && (baselen
+ chl
) > 2)
368 numtail2_baselen
= baselen
;
369 if (baselen
< 6 && (baselen
+ chl
) > 6)
370 numtail_baselen
= baselen
;
371 for (chi
= 0; chi
< chl
; chi
++) {
378 if ((chi
< chl
- 1) || (ip
+ 1) - uname
< sz
)
389 for (p
= ext
, ip
= ext_start
; extlen
< 3 && ip
< end
; ip
++) {
390 chl
= to_shortname_char(nls
, charbuf
, sizeof(charbuf
),
395 if ((extlen
+ chl
) > 3) {
399 for (chi
= 0; chi
< chl
; chi
++) {
411 base
[baselen
] = '\0';
413 /* Yes, it can happen. ".\xe5" would do it. */
414 if (base
[0] == DELETED_FLAG
)
417 /* OK, at this point we know that base is not longer than 8 symbols,
418 * ext is not longer than 3, base is nonempty, both don't contain
419 * any bad symbols (lowercase transformed to uppercase).
422 memset(name_res
, ' ', MSDOS_NAME
);
423 memcpy(name_res
, base
, baselen
);
424 memcpy(name_res
+ 8, ext
, extlen
);
426 if (is_shortname
&& base_info
.valid
&& ext_info
.valid
) {
427 if (vfat_find_form(dir
, name_res
) == 0)
430 if (opts
->shortname
& VFAT_SFN_CREATE_WIN95
) {
431 return (base_info
.upper
&& ext_info
.upper
);
432 } else if (opts
->shortname
& VFAT_SFN_CREATE_WINNT
) {
433 if ((base_info
.upper
|| base_info
.lower
) &&
434 (ext_info
.upper
|| ext_info
.lower
)) {
435 if (!base_info
.upper
&& base_info
.lower
)
436 *lcase
|= CASE_LOWER_BASE
;
437 if (!ext_info
.upper
&& ext_info
.lower
)
438 *lcase
|= CASE_LOWER_EXT
;
447 if (opts
->numtail
== 0)
448 if (vfat_find_form(dir
, name_res
) < 0)
452 * Try to find a unique extension. This used to
453 * iterate through all possibilities sequentially,
454 * but that gave extremely bad performance. Windows
455 * only tries a few cases before using random
456 * values for part of the base.
460 baselen
= numtail_baselen
;
463 name_res
[baselen
] = '~';
464 for (i
= 1; i
< 10; i
++) {
465 name_res
[baselen
+ 1] = i
+ '0';
466 if (vfat_find_form(dir
, name_res
) < 0)
470 i
= jiffies
& 0xffff;
471 sz
= (jiffies
>> 16) & 0x7;
473 baselen
= numtail2_baselen
;
476 name_res
[baselen
+ 4] = '~';
477 name_res
[baselen
+ 5] = '1' + sz
;
479 sprintf(buf
, "%04X", i
);
480 memcpy(&name_res
[baselen
], buf
, 4);
481 if (vfat_find_form(dir
, name_res
) < 0)
488 /* Translate a string, including coded sequences into Unicode */
490 xlate_to_uni(const unsigned char *name
, int len
, unsigned char *outname
,
491 int *longlen
, int *outlen
, int escape
, int utf8
,
492 struct nls_table
*nls
)
494 const unsigned char *ip
;
502 *outlen
= utf8s_to_utf16s(name
, len
, (wchar_t *)outname
);
505 else if (*outlen
> 255)
506 return -ENAMETOOLONG
;
508 op
= &outname
[*outlen
* sizeof(wchar_t)];
511 for (i
= 0, ip
= name
, op
= outname
, *outlen
= 0;
512 i
< len
&& *outlen
<= 255;
515 if (escape
&& (*ip
== ':')) {
519 for (k
= 1; k
< 5; k
++) {
522 if (nc
>= '0' && nc
<= '9') {
526 if (nc
>= 'a' && nc
<= 'f') {
527 ec
|= nc
- ('a' - 10);
530 if (nc
>= 'A' && nc
<= 'F') {
531 ec
|= nc
- ('A' - 10);
541 if ((charlen
= nls
->char2uni(ip
, len
- i
, (wchar_t *)op
)) < 0)
549 return -ENAMETOOLONG
;
551 for (i
= 0, ip
= name
, op
= outname
, *outlen
= 0;
552 i
< len
&& *outlen
<= 255;
559 return -ENAMETOOLONG
;
569 fill
= 13 - (*outlen
% 13);
570 for (i
= 0; i
< fill
; i
++) {
581 static int vfat_build_slots(struct inode
*dir
, const unsigned char *name
,
582 int len
, int is_dir
, int cluster
,
584 struct msdos_dir_slot
*slots
, int *nr_slots
)
586 struct msdos_sb_info
*sbi
= MSDOS_SB(dir
->i_sb
);
587 struct fat_mount_options
*opts
= &sbi
->options
;
588 struct msdos_dir_slot
*ps
;
589 struct msdos_dir_entry
*de
;
590 unsigned char cksum
, lcase
;
591 unsigned char msdos_name
[MSDOS_NAME
];
595 int err
, ulen
, usize
, i
;
604 err
= xlate_to_uni(name
, len
, (unsigned char *)uname
, &ulen
, &usize
,
605 opts
->unicode_xlate
, opts
->utf8
, sbi
->nls_io
);
609 err
= vfat_is_used_badchars(uname
, ulen
);
613 err
= vfat_create_shortname(dir
, sbi
->nls_disk
, uname
, ulen
,
618 de
= (struct msdos_dir_entry
*)slots
;
623 /* build the entry of long file name */
624 cksum
= fat_checksum(msdos_name
);
626 *nr_slots
= usize
/ 13;
627 for (ps
= slots
, i
= *nr_slots
; i
> 0; i
--, ps
++) {
631 ps
->alias_checksum
= cksum
;
633 offset
= (i
- 1) * 13;
634 fatwchar_to16(ps
->name0_4
, uname
+ offset
, 5);
635 fatwchar_to16(ps
->name5_10
, uname
+ offset
+ 5, 6);
636 fatwchar_to16(ps
->name11_12
, uname
+ offset
+ 11, 2);
639 de
= (struct msdos_dir_entry
*)ps
;
642 /* build the entry of 8.3 alias name */
644 memcpy(de
->name
, msdos_name
, MSDOS_NAME
);
645 de
->attr
= is_dir
? ATTR_DIR
: ATTR_ARCH
;
647 fat_time_unix2fat(sbi
, ts
, &time
, &date
, &time_cs
);
648 de
->time
= de
->ctime
= time
;
649 de
->date
= de
->cdate
= de
->adate
= date
;
650 de
->ctime_cs
= time_cs
;
651 de
->start
= cpu_to_le16(cluster
);
652 de
->starthi
= cpu_to_le16(cluster
>> 16);
659 static int vfat_add_entry(struct inode
*dir
, struct qstr
*qname
, int is_dir
,
660 int cluster
, struct timespec
*ts
,
661 struct fat_slot_info
*sinfo
)
663 struct msdos_dir_slot
*slots
;
667 len
= vfat_striptail_len(qname
);
671 slots
= kmalloc(sizeof(*slots
) * MSDOS_SLOTS
, GFP_NOFS
);
675 err
= vfat_build_slots(dir
, qname
->name
, len
, is_dir
, cluster
, ts
,
680 err
= fat_add_entries(dir
, slots
, nr_slots
, sinfo
);
684 /* update timestamp */
685 dir
->i_ctime
= dir
->i_mtime
= dir
->i_atime
= *ts
;
687 (void)fat_sync_inode(dir
);
689 mark_inode_dirty(dir
);
695 static int vfat_find(struct inode
*dir
, struct qstr
*qname
,
696 struct fat_slot_info
*sinfo
)
698 unsigned int len
= vfat_striptail_len(qname
);
701 return fat_search_long(dir
, qname
->name
, len
, sinfo
);
704 static struct dentry
*vfat_lookup(struct inode
*dir
, struct dentry
*dentry
,
705 struct nameidata
*nd
)
707 struct super_block
*sb
= dir
->i_sb
;
708 struct fat_slot_info sinfo
;
710 struct dentry
*alias
;
715 err
= vfat_find(dir
, &dentry
->d_name
, &sinfo
);
717 if (err
== -ENOENT
) {
724 inode
= fat_build_inode(sb
, sinfo
.de
, sinfo
.i_pos
);
727 err
= PTR_ERR(inode
);
731 alias
= d_find_alias(inode
);
732 if (alias
&& !(alias
->d_flags
& DCACHE_DISCONNECTED
)) {
734 * This inode has non DCACHE_DISCONNECTED dentry. This
735 * means, the user did ->lookup() by an another name
736 * (longname vs 8.3 alias of it) in past.
738 * Switch to new one for reason of locality if possible.
740 BUG_ON(d_unhashed(alias
));
741 if (!S_ISDIR(inode
->i_mode
))
742 d_move(alias
, dentry
);
749 dentry
->d_op
= sb
->s_root
->d_op
;
750 dentry
->d_time
= dentry
->d_parent
->d_inode
->i_version
;
751 dentry
= d_splice_alias(inode
, dentry
);
753 dentry
->d_op
= sb
->s_root
->d_op
;
754 dentry
->d_time
= dentry
->d_parent
->d_inode
->i_version
;
763 static int vfat_create(struct inode
*dir
, struct dentry
*dentry
, int mode
,
764 struct nameidata
*nd
)
766 struct super_block
*sb
= dir
->i_sb
;
768 struct fat_slot_info sinfo
;
774 ts
= CURRENT_TIME_SEC
;
775 err
= vfat_add_entry(dir
, &dentry
->d_name
, 0, 0, &ts
, &sinfo
);
780 inode
= fat_build_inode(sb
, sinfo
.de
, sinfo
.i_pos
);
783 err
= PTR_ERR(inode
);
787 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= ts
;
788 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
790 dentry
->d_time
= dentry
->d_parent
->d_inode
->i_version
;
791 d_instantiate(dentry
, inode
);
797 static int vfat_rmdir(struct inode
*dir
, struct dentry
*dentry
)
799 struct inode
*inode
= dentry
->d_inode
;
800 struct super_block
*sb
= dir
->i_sb
;
801 struct fat_slot_info sinfo
;
806 err
= fat_dir_empty(inode
);
809 err
= vfat_find(dir
, &dentry
->d_name
, &sinfo
);
813 err
= fat_remove_entries(dir
, &sinfo
); /* and releases bh */
819 inode
->i_mtime
= inode
->i_atime
= CURRENT_TIME_SEC
;
827 static int vfat_unlink(struct inode
*dir
, struct dentry
*dentry
)
829 struct inode
*inode
= dentry
->d_inode
;
830 struct super_block
*sb
= dir
->i_sb
;
831 struct fat_slot_info sinfo
;
836 err
= vfat_find(dir
, &dentry
->d_name
, &sinfo
);
840 err
= fat_remove_entries(dir
, &sinfo
); /* and releases bh */
844 inode
->i_mtime
= inode
->i_atime
= CURRENT_TIME_SEC
;
852 static int vfat_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
854 struct super_block
*sb
= dir
->i_sb
;
856 struct fat_slot_info sinfo
;
862 ts
= CURRENT_TIME_SEC
;
863 cluster
= fat_alloc_new_dir(dir
, &ts
);
868 err
= vfat_add_entry(dir
, &dentry
->d_name
, 1, cluster
, &ts
, &sinfo
);
874 inode
= fat_build_inode(sb
, sinfo
.de
, sinfo
.i_pos
);
877 err
= PTR_ERR(inode
);
878 /* the directory was completed, just return a error */
883 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= ts
;
884 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
886 dentry
->d_time
= dentry
->d_parent
->d_inode
->i_version
;
887 d_instantiate(dentry
, inode
);
893 fat_free_clusters(dir
, cluster
);
899 static int vfat_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
900 struct inode
*new_dir
, struct dentry
*new_dentry
)
902 struct buffer_head
*dotdot_bh
;
903 struct msdos_dir_entry
*dotdot_de
;
904 struct inode
*old_inode
, *new_inode
;
905 struct fat_slot_info old_sinfo
, sinfo
;
907 loff_t dotdot_i_pos
, new_i_pos
;
908 int err
, is_dir
, update_dotdot
, corrupt
= 0;
909 struct super_block
*sb
= old_dir
->i_sb
;
911 old_sinfo
.bh
= sinfo
.bh
= dotdot_bh
= NULL
;
912 old_inode
= old_dentry
->d_inode
;
913 new_inode
= new_dentry
->d_inode
;
915 err
= vfat_find(old_dir
, &old_dentry
->d_name
, &old_sinfo
);
919 is_dir
= S_ISDIR(old_inode
->i_mode
);
920 update_dotdot
= (is_dir
&& old_dir
!= new_dir
);
922 if (fat_get_dotdot_entry(old_inode
, &dotdot_bh
, &dotdot_de
,
923 &dotdot_i_pos
) < 0) {
929 ts
= CURRENT_TIME_SEC
;
932 err
= fat_dir_empty(new_inode
);
936 new_i_pos
= MSDOS_I(new_inode
)->i_pos
;
937 fat_detach(new_inode
);
939 err
= vfat_add_entry(new_dir
, &new_dentry
->d_name
, is_dir
, 0,
943 new_i_pos
= sinfo
.i_pos
;
945 new_dir
->i_version
++;
947 fat_detach(old_inode
);
948 fat_attach(old_inode
, new_i_pos
);
949 if (IS_DIRSYNC(new_dir
)) {
950 err
= fat_sync_inode(old_inode
);
954 mark_inode_dirty(old_inode
);
957 int start
= MSDOS_I(new_dir
)->i_logstart
;
958 dotdot_de
->start
= cpu_to_le16(start
);
959 dotdot_de
->starthi
= cpu_to_le16(start
>> 16);
960 mark_buffer_dirty_inode(dotdot_bh
, old_inode
);
961 if (IS_DIRSYNC(new_dir
)) {
962 err
= sync_dirty_buffer(dotdot_bh
);
971 err
= fat_remove_entries(old_dir
, &old_sinfo
); /* and releases bh */
975 old_dir
->i_version
++;
976 old_dir
->i_ctime
= old_dir
->i_mtime
= ts
;
977 if (IS_DIRSYNC(old_dir
))
978 (void)fat_sync_inode(old_dir
);
980 mark_inode_dirty(old_dir
);
983 drop_nlink(new_inode
);
985 drop_nlink(new_inode
);
986 new_inode
->i_ctime
= ts
;
991 brelse(old_sinfo
.bh
);
997 /* data cluster is shared, serious corruption */
1000 if (update_dotdot
) {
1001 int start
= MSDOS_I(old_dir
)->i_logstart
;
1002 dotdot_de
->start
= cpu_to_le16(start
);
1003 dotdot_de
->starthi
= cpu_to_le16(start
>> 16);
1004 mark_buffer_dirty_inode(dotdot_bh
, old_inode
);
1005 corrupt
|= sync_dirty_buffer(dotdot_bh
);
1008 fat_detach(old_inode
);
1009 fat_attach(old_inode
, old_sinfo
.i_pos
);
1011 fat_attach(new_inode
, new_i_pos
);
1013 corrupt
|= fat_sync_inode(new_inode
);
1016 * If new entry was not sharing the data cluster, it
1017 * shouldn't be serious corruption.
1019 int err2
= fat_remove_entries(new_dir
, &sinfo
);
1025 fat_fs_error(new_dir
->i_sb
,
1026 "%s: Filesystem corrupted (i_pos %lld)",
1027 __func__
, sinfo
.i_pos
);
1032 static const struct inode_operations vfat_dir_inode_operations
= {
1033 .create
= vfat_create
,
1034 .lookup
= vfat_lookup
,
1035 .unlink
= vfat_unlink
,
1036 .mkdir
= vfat_mkdir
,
1037 .rmdir
= vfat_rmdir
,
1038 .rename
= vfat_rename
,
1039 .setattr
= fat_setattr
,
1040 .getattr
= fat_getattr
,
1043 static int vfat_fill_super(struct super_block
*sb
, void *data
, int silent
)
1047 res
= fat_fill_super(sb
, data
, silent
, &vfat_dir_inode_operations
, 1);
1051 if (MSDOS_SB(sb
)->options
.name_check
!= 's')
1052 sb
->s_root
->d_op
= &vfat_ci_dentry_ops
;
1054 sb
->s_root
->d_op
= &vfat_dentry_ops
;
1059 static int vfat_get_sb(struct file_system_type
*fs_type
,
1060 int flags
, const char *dev_name
,
1061 void *data
, struct vfsmount
*mnt
)
1063 return get_sb_bdev(fs_type
, flags
, dev_name
, data
, vfat_fill_super
,
1067 static struct file_system_type vfat_fs_type
= {
1068 .owner
= THIS_MODULE
,
1070 .get_sb
= vfat_get_sb
,
1071 .kill_sb
= kill_block_super
,
1072 .fs_flags
= FS_REQUIRES_DEV
,
1075 static int __init
init_vfat_fs(void)
1077 return register_filesystem(&vfat_fs_type
);
1080 static void __exit
exit_vfat_fs(void)
1082 unregister_filesystem(&vfat_fs_type
);
1085 MODULE_LICENSE("GPL");
1086 MODULE_DESCRIPTION("VFAT filesystem support");
1087 MODULE_AUTHOR("Gordon Chaffee");
1089 module_init(init_vfat_fs
)
1090 module_exit(exit_vfat_fs
)