blob: e2cfda94a28d249fd85961747b625a3c8b5bd100 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/msdos/namei.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 * Hidden files 1995 by Albert Cahalan <albert@ccs.neu.edu> <adc@coe.neu.edu>
6 * Rewritten for constant inumbers 1999 by Al Viro
7 */
8
9#include <linux/module.h>
10#include <linux/time.h>
11#include <linux/buffer_head.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080012#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/* Characters that are undesirable in an MS-DOS file name */
15static unsigned char bad_chars[] = "*?<>|\"";
Rene Scharfe7557bc62008-07-25 01:46:45 -070016static unsigned char bad_if_strict[] = "+=,; ";
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/***** Formats an MS-DOS file name. Rejects invalid names. */
19static int msdos_format_name(const unsigned char *name, int len,
20 unsigned char *res, struct fat_mount_options *opts)
21 /*
22 * name is the proposed name, len is its length, res is
23 * the resulting name, opts->name_check is either (r)elaxed,
24 * (n)ormal or (s)trict, opts->dotsOK allows dots at the
25 * beginning of name (for hidden files)
26 */
27{
28 unsigned char *walk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 unsigned char c;
30 int space;
31
32 if (name[0] == '.') { /* dotfile because . and .. already done */
33 if (opts->dotsOK) {
34 /* Get rid of dot - test for it elsewhere */
35 name++;
36 len--;
Rene Scharfe7557bc62008-07-25 01:46:45 -070037 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 return -EINVAL;
39 }
40 /*
Rene Scharfe7557bc62008-07-25 01:46:45 -070041 * disallow names that _really_ start with a dot
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
Rene Scharfe7557bc62008-07-25 01:46:45 -070043 space = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 c = 0;
45 for (walk = res; len && walk - res < 8; walk++) {
46 c = *name++;
47 len--;
48 if (opts->name_check != 'r' && strchr(bad_chars, c))
49 return -EINVAL;
Rene Scharfe7557bc62008-07-25 01:46:45 -070050 if (opts->name_check == 's' && strchr(bad_if_strict, c))
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return -EINVAL;
52 if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
53 return -EINVAL;
54 if (c < ' ' || c == ':' || c == '\\')
55 return -EINVAL;
56 /*
57 * 0xE5 is legal as a first character, but we must substitute
58 * 0x05 because 0xE5 marks deleted files. Yes, DOS really
59 * does this.
60 * It seems that Microsoft hacked DOS to support non-US
61 * characters after the 0xE5 character was already in use to
62 * mark deleted files.
63 */
64 if ((res == walk) && (c == 0xE5))
65 c = 0x05;
66 if (c == '.')
67 break;
68 space = (c == ' ');
69 *walk = (!opts->nocase && c >= 'a' && c <= 'z') ? c - 32 : c;
70 }
71 if (space)
72 return -EINVAL;
73 if (opts->name_check == 's' && len && c != '.') {
74 c = *name++;
75 len--;
76 if (c != '.')
77 return -EINVAL;
78 }
79 while (c != '.' && len--)
80 c = *name++;
81 if (c == '.') {
82 while (walk - res < 8)
83 *walk++ = ' ';
84 while (len > 0 && walk - res < MSDOS_NAME) {
85 c = *name++;
86 len--;
87 if (opts->name_check != 'r' && strchr(bad_chars, c))
88 return -EINVAL;
89 if (opts->name_check == 's' &&
Rene Scharfe7557bc62008-07-25 01:46:45 -070090 strchr(bad_if_strict, c))
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return -EINVAL;
92 if (c < ' ' || c == ':' || c == '\\')
93 return -EINVAL;
94 if (c == '.') {
95 if (opts->name_check == 's')
96 return -EINVAL;
97 break;
98 }
99 if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
100 return -EINVAL;
101 space = c == ' ';
102 if (!opts->nocase && c >= 'a' && c <= 'z')
103 *walk++ = c - 32;
104 else
105 *walk++ = c;
106 }
107 if (space)
108 return -EINVAL;
109 if (opts->name_check == 's' && len)
110 return -EINVAL;
111 }
112 while (walk - res < MSDOS_NAME)
113 *walk++ = ' ';
OGAWA Hirofumi094e3202006-03-31 02:30:53 -0800114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return 0;
116}
117
118/***** Locates a directory entry. Uses unformatted name. */
119static int msdos_find(struct inode *dir, const unsigned char *name, int len,
120 struct fat_slot_info *sinfo)
121{
122 struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
123 unsigned char msdos_name[MSDOS_NAME];
124 int err;
125
126 err = msdos_format_name(name, len, msdos_name, &sbi->options);
127 if (err)
128 return -ENOENT;
129
130 err = fat_scan(dir, msdos_name, sinfo);
131 if (!err && sbi->options.dotsOK) {
132 if (name[0] == '.') {
133 if (!(sinfo->de->attr & ATTR_HIDDEN))
134 err = -ENOENT;
135 } else {
136 if (sinfo->de->attr & ATTR_HIDDEN)
137 err = -ENOENT;
138 }
139 if (err)
140 brelse(sinfo->bh);
141 }
142 return err;
143}
144
145/*
146 * Compute the hash for the msdos name corresponding to the dentry.
147 * Note: if the name is invalid, we leave the hash code unchanged so
148 * that the existing dentry can be used. The msdos fs routines will
149 * return ENOENT or EINVAL as appropriate.
150 */
Nick Pigginb1e6a012011-01-07 17:49:28 +1100151static int msdos_hash(const struct dentry *dentry, const struct inode *inode,
152 struct qstr *qstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options;
155 unsigned char msdos_name[MSDOS_NAME];
156 int error;
157
158 error = msdos_format_name(qstr->name, qstr->len, msdos_name, options);
159 if (!error)
160 qstr->hash = full_name_hash(msdos_name, MSDOS_NAME);
161 return 0;
162}
163
164/*
165 * Compare two msdos names. If either of the names are invalid,
166 * we fall back to doing the standard name comparison.
167 */
Nick Piggin621e1552011-01-07 17:49:27 +1100168static int msdos_cmp(const struct dentry *parent, const struct inode *pinode,
169 const struct dentry *dentry, const struct inode *inode,
170 unsigned int len, const char *str, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Nick Piggin621e1552011-01-07 17:49:27 +1100172 struct fat_mount_options *options = &MSDOS_SB(parent->d_sb)->options;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 unsigned char a_msdos_name[MSDOS_NAME], b_msdos_name[MSDOS_NAME];
174 int error;
175
Nick Piggin621e1552011-01-07 17:49:27 +1100176 error = msdos_format_name(name->name, name->len, a_msdos_name, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (error)
178 goto old_compare;
Nick Piggin621e1552011-01-07 17:49:27 +1100179 error = msdos_format_name(str, len, b_msdos_name, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (error)
181 goto old_compare;
182 error = memcmp(a_msdos_name, b_msdos_name, MSDOS_NAME);
183out:
184 return error;
185
186old_compare:
187 error = 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100188 if (name->len == len)
189 error = memcmp(name->name, str, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 goto out;
191}
192
Al Viroce6cdc42009-02-20 05:59:46 +0000193static const struct dentry_operations msdos_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 .d_hash = msdos_hash,
195 .d_compare = msdos_cmp,
196};
197
198/*
199 * AV. Wrappers for FAT sb operations. Is it wise?
200 */
201
202/***** Get inode using directory and name */
203static struct dentry *msdos_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400204 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 struct super_block *sb = dir->i_sb;
207 struct fat_slot_info sinfo;
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800208 struct inode *inode;
209 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Marco Stornellie40b34c2012-10-06 12:40:03 +0200211 mutex_lock(&MSDOS_SB(sb)->s_lock);
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800212 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
Al Viroa9049372011-07-08 21:20:11 -0400213 switch (err) {
214 case -ENOENT:
215 inode = NULL;
216 break;
217 case 0:
218 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
219 brelse(sinfo.bh);
220 break;
221 default:
222 inode = ERR_PTR(err);
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800223 }
Marco Stornellie40b34c2012-10-06 12:40:03 +0200224 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Al Viro3d239852010-12-18 10:44:00 -0500225 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228/***** Creates a directory entry (name is already formatted). */
229static int msdos_add_entry(struct inode *dir, const unsigned char *name,
230 int is_dir, int is_hid, int cluster,
231 struct timespec *ts, struct fat_slot_info *sinfo)
232{
Joe Petersonb271e062008-07-25 01:46:47 -0700233 struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 struct msdos_dir_entry de;
235 __le16 time, date;
236 int err;
237
238 memcpy(de.name, name, MSDOS_NAME);
239 de.attr = is_dir ? ATTR_DIR : ATTR_ARCH;
240 if (is_hid)
241 de.attr |= ATTR_HIDDEN;
242 de.lcase = 0;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800243 fat_time_unix2fat(sbi, ts, &time, &date, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 de.cdate = de.adate = 0;
245 de.ctime = 0;
246 de.ctime_cs = 0;
247 de.time = time;
248 de.date = date;
Steven J. Magnania943ed72012-07-30 14:42:13 -0700249 fat_set_start(&de, cluster);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 de.size = 0;
251
252 err = fat_add_entries(dir, &de, 1, sinfo);
253 if (err)
254 return err;
255
256 dir->i_ctime = dir->i_mtime = *ts;
257 if (IS_DIRSYNC(dir))
258 (void)fat_sync_inode(dir);
259 else
260 mark_inode_dirty(dir);
261
262 return 0;
263}
264
265/***** Create a file */
Al Viro4acdaf22011-07-26 01:42:34 -0400266static int msdos_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400267 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct super_block *sb = dir->i_sb;
Chris Masonae78bf92006-09-29 02:00:03 -0700270 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct fat_slot_info sinfo;
272 struct timespec ts;
273 unsigned char msdos_name[MSDOS_NAME];
274 int err, is_hid;
275
Marco Stornellie40b34c2012-10-06 12:40:03 +0200276 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
279 msdos_name, &MSDOS_SB(sb)->options);
280 if (err)
281 goto out;
282 is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
283 /* Have to do it due to foo vs. .foo conflicts */
284 if (!fat_scan(dir, msdos_name, &sinfo)) {
285 brelse(sinfo.bh);
286 err = -EINVAL;
287 goto out;
288 }
289
290 ts = CURRENT_TIME_SEC;
291 err = msdos_add_entry(dir, msdos_name, 0, is_hid, 0, &ts, &sinfo);
292 if (err)
293 goto out;
294 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
295 brelse(sinfo.bh);
296 if (IS_ERR(inode)) {
297 err = PTR_ERR(inode);
298 goto out;
299 }
300 inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
301 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
302
303 d_instantiate(dentry, inode);
304out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200305 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700306 if (!err)
307 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return err;
309}
310
311/***** Remove a directory */
312static int msdos_rmdir(struct inode *dir, struct dentry *dentry)
313{
Linus Torvalds8f593422008-05-19 19:53:01 -0700314 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct inode *inode = dentry->d_inode;
316 struct fat_slot_info sinfo;
317 int err;
318
Marco Stornellie40b34c2012-10-06 12:40:03 +0200319 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /*
321 * Check whether the directory is not in use, then check
322 * whether it is empty.
323 */
324 err = fat_dir_empty(inode);
325 if (err)
326 goto out;
327 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
328 if (err)
329 goto out;
330
331 err = fat_remove_entries(dir, &sinfo); /* and releases bh */
332 if (err)
333 goto out;
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700334 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Dave Hansence71ec32006-09-30 23:29:06 -0700336 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 inode->i_ctime = CURRENT_TIME_SEC;
338 fat_detach(inode);
339out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200340 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700341 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700342 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 return err;
345}
346
347/***** Make a directory */
Al Viro18bb1db2011-07-26 01:41:39 -0400348static int msdos_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 struct super_block *sb = dir->i_sb;
351 struct fat_slot_info sinfo;
352 struct inode *inode;
353 unsigned char msdos_name[MSDOS_NAME];
354 struct timespec ts;
355 int err, is_hid, cluster;
356
Marco Stornellie40b34c2012-10-06 12:40:03 +0200357 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
360 msdos_name, &MSDOS_SB(sb)->options);
361 if (err)
362 goto out;
363 is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
364 /* foo vs .foo situation */
365 if (!fat_scan(dir, msdos_name, &sinfo)) {
366 brelse(sinfo.bh);
367 err = -EINVAL;
368 goto out;
369 }
370
371 ts = CURRENT_TIME_SEC;
372 cluster = fat_alloc_new_dir(dir, &ts);
373 if (cluster < 0) {
374 err = cluster;
375 goto out;
376 }
377 err = msdos_add_entry(dir, msdos_name, 1, is_hid, cluster, &ts, &sinfo);
378 if (err)
379 goto out_free;
Dave Hansend8c76e62006-09-30 23:29:04 -0700380 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
383 brelse(sinfo.bh);
384 if (IS_ERR(inode)) {
385 err = PTR_ERR(inode);
386 /* the directory was completed, just return a error */
387 goto out;
388 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200389 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
391 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
392
393 d_instantiate(dentry, inode);
394
Marco Stornellie40b34c2012-10-06 12:40:03 +0200395 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700396 fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return 0;
398
399out_free:
400 fat_free_clusters(dir, cluster);
401out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200402 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return err;
404}
405
406/***** Unlink a file */
407static int msdos_unlink(struct inode *dir, struct dentry *dentry)
408{
409 struct inode *inode = dentry->d_inode;
Cruz Julian Bishop85cb9bf2012-10-04 17:14:47 -0700410 struct super_block *sb = inode->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct fat_slot_info sinfo;
412 int err;
413
Marco Stornellie40b34c2012-10-06 12:40:03 +0200414 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
416 if (err)
417 goto out;
418
419 err = fat_remove_entries(dir, &sinfo); /* and releases bh */
420 if (err)
421 goto out;
Dave Hansence71ec32006-09-30 23:29:06 -0700422 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 inode->i_ctime = CURRENT_TIME_SEC;
424 fat_detach(inode);
425out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200426 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700427 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700428 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 return err;
431}
432
433static int do_msdos_rename(struct inode *old_dir, unsigned char *old_name,
434 struct dentry *old_dentry,
435 struct inode *new_dir, unsigned char *new_name,
436 struct dentry *new_dentry, int is_hid)
437{
438 struct buffer_head *dotdot_bh;
439 struct msdos_dir_entry *dotdot_de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 struct inode *old_inode, *new_inode;
441 struct fat_slot_info old_sinfo, sinfo;
442 struct timespec ts;
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700443 loff_t new_i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 int err, old_attrs, is_dir, update_dotdot, corrupt = 0;
445
446 old_sinfo.bh = sinfo.bh = dotdot_bh = NULL;
447 old_inode = old_dentry->d_inode;
448 new_inode = new_dentry->d_inode;
449
450 err = fat_scan(old_dir, old_name, &old_sinfo);
451 if (err) {
452 err = -EIO;
453 goto out;
454 }
455
456 is_dir = S_ISDIR(old_inode->i_mode);
457 update_dotdot = (is_dir && old_dir != new_dir);
458 if (update_dotdot) {
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700459 if (fat_get_dotdot_entry(old_inode, &dotdot_bh, &dotdot_de)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 err = -EIO;
461 goto out;
462 }
463 }
464
465 old_attrs = MSDOS_I(old_inode)->i_attrs;
466 err = fat_scan(new_dir, new_name, &sinfo);
467 if (!err) {
468 if (!new_inode) {
469 /* "foo" -> ".foo" case. just change the ATTR_HIDDEN */
470 if (sinfo.de != old_sinfo.de) {
471 err = -EINVAL;
472 goto out;
473 }
474 if (is_hid)
475 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
476 else
477 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
478 if (IS_DIRSYNC(old_dir)) {
479 err = fat_sync_inode(old_inode);
480 if (err) {
481 MSDOS_I(old_inode)->i_attrs = old_attrs;
482 goto out;
483 }
484 } else
485 mark_inode_dirty(old_inode);
486
487 old_dir->i_version++;
488 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
489 if (IS_DIRSYNC(old_dir))
490 (void)fat_sync_inode(old_dir);
491 else
492 mark_inode_dirty(old_dir);
493 goto out;
494 }
495 }
496
497 ts = CURRENT_TIME_SEC;
498 if (new_inode) {
499 if (err)
500 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (is_dir) {
502 err = fat_dir_empty(new_inode);
503 if (err)
504 goto out;
505 }
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800506 new_i_pos = MSDOS_I(new_inode)->i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 fat_detach(new_inode);
508 } else {
509 err = msdos_add_entry(new_dir, new_name, is_dir, is_hid, 0,
510 &ts, &sinfo);
511 if (err)
512 goto out;
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800513 new_i_pos = sinfo.i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515 new_dir->i_version++;
516
517 fat_detach(old_inode);
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800518 fat_attach(old_inode, new_i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (is_hid)
520 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
521 else
522 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
523 if (IS_DIRSYNC(new_dir)) {
524 err = fat_sync_inode(old_inode);
525 if (err)
526 goto error_inode;
527 } else
528 mark_inode_dirty(old_inode);
529
530 if (update_dotdot) {
Steven J. Magnania943ed72012-07-30 14:42:13 -0700531 fat_set_start(dotdot_de, MSDOS_I(new_dir)->i_logstart);
Al Virob5224122009-06-07 13:44:36 -0400532 mark_buffer_dirty_inode(dotdot_bh, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (IS_DIRSYNC(new_dir)) {
534 err = sync_dirty_buffer(dotdot_bh);
535 if (err)
536 goto error_dotdot;
537 }
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700538 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!new_inode)
Dave Hansend8c76e62006-09-30 23:29:04 -0700540 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542
543 err = fat_remove_entries(old_dir, &old_sinfo); /* and releases bh */
544 old_sinfo.bh = NULL;
545 if (err)
546 goto error_dotdot;
547 old_dir->i_version++;
548 old_dir->i_ctime = old_dir->i_mtime = ts;
549 if (IS_DIRSYNC(old_dir))
550 (void)fat_sync_inode(old_dir);
551 else
552 mark_inode_dirty(old_dir);
553
554 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700555 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (is_dir)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700557 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 new_inode->i_ctime = ts;
559 }
560out:
561 brelse(sinfo.bh);
562 brelse(dotdot_bh);
563 brelse(old_sinfo.bh);
564 return err;
565
566error_dotdot:
567 /* data cluster is shared, serious corruption */
568 corrupt = 1;
569
570 if (update_dotdot) {
Steven J. Magnania943ed72012-07-30 14:42:13 -0700571 fat_set_start(dotdot_de, MSDOS_I(old_dir)->i_logstart);
Al Virob5224122009-06-07 13:44:36 -0400572 mark_buffer_dirty_inode(dotdot_bh, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 corrupt |= sync_dirty_buffer(dotdot_bh);
574 }
575error_inode:
576 fat_detach(old_inode);
577 fat_attach(old_inode, old_sinfo.i_pos);
578 MSDOS_I(old_inode)->i_attrs = old_attrs;
579 if (new_inode) {
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800580 fat_attach(new_inode, new_i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (corrupt)
582 corrupt |= fat_sync_inode(new_inode);
583 } else {
584 /*
585 * If new entry was not sharing the data cluster, it
586 * shouldn't be serious corruption.
587 */
588 int err2 = fat_remove_entries(new_dir, &sinfo);
589 if (corrupt)
590 corrupt |= err2;
591 sinfo.bh = NULL;
592 }
593 if (corrupt < 0) {
Denis Karpov85c78592009-06-04 02:34:22 +0900594 fat_fs_error(new_dir->i_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 "%s: Filesystem corrupted (i_pos %lld)",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700596 __func__, sinfo.i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598 goto out;
599}
600
601/***** Rename, a wrapper for rename_same_dir & rename_diff_dir */
602static int msdos_rename(struct inode *old_dir, struct dentry *old_dentry,
603 struct inode *new_dir, struct dentry *new_dentry)
604{
Linus Torvalds8f593422008-05-19 19:53:01 -0700605 struct super_block *sb = old_dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 unsigned char old_msdos_name[MSDOS_NAME], new_msdos_name[MSDOS_NAME];
607 int err, is_hid;
608
Marco Stornellie40b34c2012-10-06 12:40:03 +0200609 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 err = msdos_format_name(old_dentry->d_name.name,
612 old_dentry->d_name.len, old_msdos_name,
613 &MSDOS_SB(old_dir->i_sb)->options);
614 if (err)
615 goto out;
616 err = msdos_format_name(new_dentry->d_name.name,
617 new_dentry->d_name.len, new_msdos_name,
618 &MSDOS_SB(new_dir->i_sb)->options);
619 if (err)
620 goto out;
621
622 is_hid =
623 (new_dentry->d_name.name[0] == '.') && (new_msdos_name[0] != '.');
624
625 err = do_msdos_rename(old_dir, old_msdos_name, old_dentry,
626 new_dir, new_msdos_name, new_dentry, is_hid);
627out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200628 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700629 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700630 err = fat_flush_inodes(sb, old_dir, new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return err;
632}
633
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800634static const struct inode_operations msdos_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 .create = msdos_create,
636 .lookup = msdos_lookup,
637 .unlink = msdos_unlink,
638 .mkdir = msdos_mkdir,
639 .rmdir = msdos_rmdir,
640 .rename = msdos_rename,
OGAWA Hirofumi1278fdd2008-04-28 02:16:25 -0700641 .setattr = fat_setattr,
OGAWA Hirofumida63fc72006-11-16 01:19:28 -0800642 .getattr = fat_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643};
644
Al Viro3d239852010-12-18 10:44:00 -0500645static void setup(struct super_block *sb)
646{
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +0900647 MSDOS_SB(sb)->dir_ops = &msdos_dir_inode_operations;
Al Viro3d239852010-12-18 10:44:00 -0500648 sb->s_d_op = &msdos_dentry_operations;
649 sb->s_flags |= MS_NOATIME;
650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652static int msdos_fill_super(struct super_block *sb, void *data, int silent)
653{
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +0900654 return fat_fill_super(sb, data, silent, 0, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Al Viro152a0832010-07-25 00:46:55 +0400657static struct dentry *msdos_mount(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -0700658 int flags, const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +0400659 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Al Viro152a0832010-07-25 00:46:55 +0400661 return mount_bdev(fs_type, flags, dev_name, data, msdos_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664static struct file_system_type msdos_fs_type = {
665 .owner = THIS_MODULE,
666 .name = "msdos",
Al Viro152a0832010-07-25 00:46:55 +0400667 .mount = msdos_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 .kill_sb = kill_block_super,
669 .fs_flags = FS_REQUIRES_DEV,
670};
671
672static int __init init_msdos_fs(void)
673{
674 return register_filesystem(&msdos_fs_type);
675}
676
677static void __exit exit_msdos_fs(void)
678{
679 unregister_filesystem(&msdos_fs_type);
680}
681
682MODULE_LICENSE("GPL");
683MODULE_AUTHOR("Werner Almesberger");
684MODULE_DESCRIPTION("MS-DOS filesystem support");
685
686module_init(init_msdos_fs)
687module_exit(exit_msdos_fs)