blob: efb8c40c9d27467d0d58d10dd5b1ba313c06d9d6 [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>
Jeff Layton2489dba2017-12-11 06:35:09 -050010#include <linux/iversion.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080011#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013/* Characters that are undesirable in an MS-DOS file name */
14static unsigned char bad_chars[] = "*?<>|\"";
Rene Scharfe7557bc62008-07-25 01:46:45 -070015static unsigned char bad_if_strict[] = "+=,; ";
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/***** Formats an MS-DOS file name. Rejects invalid names. */
18static int msdos_format_name(const unsigned char *name, int len,
19 unsigned char *res, struct fat_mount_options *opts)
20 /*
21 * name is the proposed name, len is its length, res is
22 * the resulting name, opts->name_check is either (r)elaxed,
23 * (n)ormal or (s)trict, opts->dotsOK allows dots at the
24 * beginning of name (for hidden files)
25 */
26{
27 unsigned char *walk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 unsigned char c;
29 int space;
30
31 if (name[0] == '.') { /* dotfile because . and .. already done */
32 if (opts->dotsOK) {
33 /* Get rid of dot - test for it elsewhere */
34 name++;
35 len--;
Rene Scharfe7557bc62008-07-25 01:46:45 -070036 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 return -EINVAL;
38 }
39 /*
Rene Scharfe7557bc62008-07-25 01:46:45 -070040 * disallow names that _really_ start with a dot
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Rene Scharfe7557bc62008-07-25 01:46:45 -070042 space = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 c = 0;
44 for (walk = res; len && walk - res < 8; walk++) {
45 c = *name++;
46 len--;
47 if (opts->name_check != 'r' && strchr(bad_chars, c))
48 return -EINVAL;
Rene Scharfe7557bc62008-07-25 01:46:45 -070049 if (opts->name_check == 's' && strchr(bad_if_strict, c))
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 return -EINVAL;
51 if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
52 return -EINVAL;
53 if (c < ' ' || c == ':' || c == '\\')
54 return -EINVAL;
55 /*
56 * 0xE5 is legal as a first character, but we must substitute
57 * 0x05 because 0xE5 marks deleted files. Yes, DOS really
58 * does this.
59 * It seems that Microsoft hacked DOS to support non-US
60 * characters after the 0xE5 character was already in use to
61 * mark deleted files.
62 */
63 if ((res == walk) && (c == 0xE5))
64 c = 0x05;
65 if (c == '.')
66 break;
67 space = (c == ' ');
68 *walk = (!opts->nocase && c >= 'a' && c <= 'z') ? c - 32 : c;
69 }
70 if (space)
71 return -EINVAL;
72 if (opts->name_check == 's' && len && c != '.') {
73 c = *name++;
74 len--;
75 if (c != '.')
76 return -EINVAL;
77 }
78 while (c != '.' && len--)
79 c = *name++;
80 if (c == '.') {
81 while (walk - res < 8)
82 *walk++ = ' ';
83 while (len > 0 && walk - res < MSDOS_NAME) {
84 c = *name++;
85 len--;
86 if (opts->name_check != 'r' && strchr(bad_chars, c))
87 return -EINVAL;
88 if (opts->name_check == 's' &&
Rene Scharfe7557bc62008-07-25 01:46:45 -070089 strchr(bad_if_strict, c))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return -EINVAL;
91 if (c < ' ' || c == ':' || c == '\\')
92 return -EINVAL;
93 if (c == '.') {
94 if (opts->name_check == 's')
95 return -EINVAL;
96 break;
97 }
98 if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
99 return -EINVAL;
100 space = c == ' ';
101 if (!opts->nocase && c >= 'a' && c <= 'z')
102 *walk++ = c - 32;
103 else
104 *walk++ = c;
105 }
106 if (space)
107 return -EINVAL;
108 if (opts->name_check == 's' && len)
109 return -EINVAL;
110 }
111 while (walk - res < MSDOS_NAME)
112 *walk++ = ' ';
OGAWA Hirofumi094e3202006-03-31 02:30:53 -0800113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115}
116
117/***** Locates a directory entry. Uses unformatted name. */
118static int msdos_find(struct inode *dir, const unsigned char *name, int len,
119 struct fat_slot_info *sinfo)
120{
121 struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
122 unsigned char msdos_name[MSDOS_NAME];
123 int err;
124
125 err = msdos_format_name(name, len, msdos_name, &sbi->options);
126 if (err)
127 return -ENOENT;
128
129 err = fat_scan(dir, msdos_name, sinfo);
130 if (!err && sbi->options.dotsOK) {
131 if (name[0] == '.') {
132 if (!(sinfo->de->attr & ATTR_HIDDEN))
133 err = -ENOENT;
134 } else {
135 if (sinfo->de->attr & ATTR_HIDDEN)
136 err = -ENOENT;
137 }
138 if (err)
139 brelse(sinfo->bh);
140 }
141 return err;
142}
143
144/*
145 * Compute the hash for the msdos name corresponding to the dentry.
146 * Note: if the name is invalid, we leave the hash code unchanged so
147 * that the existing dentry can be used. The msdos fs routines will
148 * return ENOENT or EINVAL as appropriate.
149 */
Linus Torvaldsda53be12013-05-21 15:22:44 -0700150static int msdos_hash(const struct dentry *dentry, struct qstr *qstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options;
153 unsigned char msdos_name[MSDOS_NAME];
154 int error;
155
156 error = msdos_format_name(qstr->name, qstr->len, msdos_name, options);
157 if (!error)
Linus Torvalds8387ff22016-06-10 07:51:30 -0700158 qstr->hash = full_name_hash(dentry, msdos_name, MSDOS_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return 0;
160}
161
162/*
163 * Compare two msdos names. If either of the names are invalid,
164 * we fall back to doing the standard name comparison.
165 */
Al Viro6fa67e72016-07-31 16:37:25 -0400166static int msdos_cmp(const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100167 unsigned int len, const char *str, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Al Virod3fe1982016-07-29 18:23:59 -0400169 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 unsigned char a_msdos_name[MSDOS_NAME], b_msdos_name[MSDOS_NAME];
171 int error;
172
Nick Piggin621e1552011-01-07 17:49:27 +1100173 error = msdos_format_name(name->name, name->len, a_msdos_name, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (error)
175 goto old_compare;
Nick Piggin621e1552011-01-07 17:49:27 +1100176 error = msdos_format_name(str, len, b_msdos_name, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (error)
178 goto old_compare;
179 error = memcmp(a_msdos_name, b_msdos_name, MSDOS_NAME);
180out:
181 return error;
182
183old_compare:
184 error = 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100185 if (name->len == len)
186 error = memcmp(name->name, str, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 goto out;
188}
189
Al Viroce6cdc42009-02-20 05:59:46 +0000190static const struct dentry_operations msdos_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .d_hash = msdos_hash,
192 .d_compare = msdos_cmp,
193};
194
195/*
196 * AV. Wrappers for FAT sb operations. Is it wise?
197 */
198
199/***** Get inode using directory and name */
200static struct dentry *msdos_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400201 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 struct super_block *sb = dir->i_sb;
204 struct fat_slot_info sinfo;
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800205 struct inode *inode;
206 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Marco Stornellie40b34c2012-10-06 12:40:03 +0200208 mutex_lock(&MSDOS_SB(sb)->s_lock);
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800209 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
Al Viroa9049372011-07-08 21:20:11 -0400210 switch (err) {
211 case -ENOENT:
212 inode = NULL;
213 break;
214 case 0:
215 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
216 brelse(sinfo.bh);
217 break;
218 default:
219 inode = ERR_PTR(err);
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800220 }
Marco Stornellie40b34c2012-10-06 12:40:03 +0200221 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Al Viro3d239852010-12-18 10:44:00 -0500222 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225/***** Creates a directory entry (name is already formatted). */
226static int msdos_add_entry(struct inode *dir, const unsigned char *name,
227 int is_dir, int is_hid, int cluster,
Arnd Bergmannf4234202018-08-21 21:59:48 -0700228 struct timespec64 *ts, struct fat_slot_info *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Joe Petersonb271e062008-07-25 01:46:47 -0700230 struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 struct msdos_dir_entry de;
232 __le16 time, date;
233 int err;
234
235 memcpy(de.name, name, MSDOS_NAME);
236 de.attr = is_dir ? ATTR_DIR : ATTR_ARCH;
237 if (is_hid)
238 de.attr |= ATTR_HIDDEN;
239 de.lcase = 0;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800240 fat_time_unix2fat(sbi, ts, &time, &date, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 de.cdate = de.adate = 0;
242 de.ctime = 0;
243 de.ctime_cs = 0;
244 de.time = time;
245 de.date = date;
Steven J. Magnania943ed72012-07-30 14:42:13 -0700246 fat_set_start(&de, cluster);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 de.size = 0;
248
249 err = fat_add_entries(dir, &de, 1, sinfo);
250 if (err)
251 return err;
252
Arnd Bergmannf4234202018-08-21 21:59:48 -0700253 dir->i_ctime = dir->i_mtime = *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (IS_DIRSYNC(dir))
255 (void)fat_sync_inode(dir);
256 else
257 mark_inode_dirty(dir);
258
259 return 0;
260}
261
262/***** Create a file */
Al Viro4acdaf22011-07-26 01:42:34 -0400263static int msdos_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400264 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 struct super_block *sb = dir->i_sb;
Chris Masonae78bf92006-09-29 02:00:03 -0700267 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct fat_slot_info sinfo;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700269 struct timespec64 ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 unsigned char msdos_name[MSDOS_NAME];
271 int err, is_hid;
272
Marco Stornellie40b34c2012-10-06 12:40:03 +0200273 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
276 msdos_name, &MSDOS_SB(sb)->options);
277 if (err)
278 goto out;
279 is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
280 /* Have to do it due to foo vs. .foo conflicts */
281 if (!fat_scan(dir, msdos_name, &sinfo)) {
282 brelse(sinfo.bh);
283 err = -EINVAL;
284 goto out;
285 }
286
Deepa Dinamani02027d42016-09-14 07:48:05 -0700287 ts = current_time(dir);
Arnd Bergmannf4234202018-08-21 21:59:48 -0700288 err = msdos_add_entry(dir, msdos_name, 0, is_hid, 0, &ts, &sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (err)
290 goto out;
291 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
292 brelse(sinfo.bh);
293 if (IS_ERR(inode)) {
294 err = PTR_ERR(inode);
295 goto out;
296 }
297 inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
298 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
299
300 d_instantiate(dentry, inode);
301out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200302 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700303 if (!err)
304 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return err;
306}
307
308/***** Remove a directory */
309static int msdos_rmdir(struct inode *dir, struct dentry *dentry)
310{
Linus Torvalds8f593422008-05-19 19:53:01 -0700311 struct super_block *sb = dir->i_sb;
David Howells2b0143b2015-03-17 22:25:59 +0000312 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct fat_slot_info sinfo;
314 int err;
315
Marco Stornellie40b34c2012-10-06 12:40:03 +0200316 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 err = fat_dir_empty(inode);
318 if (err)
319 goto out;
320 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
321 if (err)
322 goto out;
323
324 err = fat_remove_entries(dir, &sinfo); /* and releases bh */
325 if (err)
326 goto out;
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700327 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Dave Hansence71ec32006-09-30 23:29:06 -0700329 clear_nlink(inode);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700330 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 fat_detach(inode);
332out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200333 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700334 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700335 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 return err;
338}
339
340/***** Make a directory */
Al Viro18bb1db2011-07-26 01:41:39 -0400341static int msdos_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct super_block *sb = dir->i_sb;
344 struct fat_slot_info sinfo;
345 struct inode *inode;
346 unsigned char msdos_name[MSDOS_NAME];
Deepa Dinamani95582b02018-05-08 19:36:02 -0700347 struct timespec64 ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int err, is_hid, cluster;
349
Marco Stornellie40b34c2012-10-06 12:40:03 +0200350 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
353 msdos_name, &MSDOS_SB(sb)->options);
354 if (err)
355 goto out;
356 is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
357 /* foo vs .foo situation */
358 if (!fat_scan(dir, msdos_name, &sinfo)) {
359 brelse(sinfo.bh);
360 err = -EINVAL;
361 goto out;
362 }
363
Deepa Dinamani02027d42016-09-14 07:48:05 -0700364 ts = current_time(dir);
Arnd Bergmannf4234202018-08-21 21:59:48 -0700365 cluster = fat_alloc_new_dir(dir, &ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (cluster < 0) {
367 err = cluster;
368 goto out;
369 }
Arnd Bergmannf4234202018-08-21 21:59:48 -0700370 err = msdos_add_entry(dir, msdos_name, 1, is_hid, cluster, &ts, &sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (err)
372 goto out_free;
Dave Hansend8c76e62006-09-30 23:29:04 -0700373 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
376 brelse(sinfo.bh);
377 if (IS_ERR(inode)) {
378 err = PTR_ERR(inode);
379 /* the directory was completed, just return a error */
380 goto out;
381 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200382 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
384 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
385
386 d_instantiate(dentry, inode);
387
Marco Stornellie40b34c2012-10-06 12:40:03 +0200388 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700389 fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 0;
391
392out_free:
393 fat_free_clusters(dir, cluster);
394out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200395 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return err;
397}
398
399/***** Unlink a file */
400static int msdos_unlink(struct inode *dir, struct dentry *dentry)
401{
David Howells2b0143b2015-03-17 22:25:59 +0000402 struct inode *inode = d_inode(dentry);
Cruz Julian Bishop85cb9bf2012-10-04 17:14:47 -0700403 struct super_block *sb = inode->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct fat_slot_info sinfo;
405 int err;
406
Marco Stornellie40b34c2012-10-06 12:40:03 +0200407 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
409 if (err)
410 goto out;
411
412 err = fat_remove_entries(dir, &sinfo); /* and releases bh */
413 if (err)
414 goto out;
Dave Hansence71ec32006-09-30 23:29:06 -0700415 clear_nlink(inode);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700416 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 fat_detach(inode);
418out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200419 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700420 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700421 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 return err;
424}
425
426static int do_msdos_rename(struct inode *old_dir, unsigned char *old_name,
427 struct dentry *old_dentry,
428 struct inode *new_dir, unsigned char *new_name,
429 struct dentry *new_dentry, int is_hid)
430{
431 struct buffer_head *dotdot_bh;
432 struct msdos_dir_entry *dotdot_de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct inode *old_inode, *new_inode;
434 struct fat_slot_info old_sinfo, sinfo;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700435 struct timespec64 ts;
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700436 loff_t new_i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int err, old_attrs, is_dir, update_dotdot, corrupt = 0;
438
439 old_sinfo.bh = sinfo.bh = dotdot_bh = NULL;
David Howells2b0143b2015-03-17 22:25:59 +0000440 old_inode = d_inode(old_dentry);
441 new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 err = fat_scan(old_dir, old_name, &old_sinfo);
444 if (err) {
445 err = -EIO;
446 goto out;
447 }
448
449 is_dir = S_ISDIR(old_inode->i_mode);
450 update_dotdot = (is_dir && old_dir != new_dir);
451 if (update_dotdot) {
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700452 if (fat_get_dotdot_entry(old_inode, &dotdot_bh, &dotdot_de)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 err = -EIO;
454 goto out;
455 }
456 }
457
458 old_attrs = MSDOS_I(old_inode)->i_attrs;
459 err = fat_scan(new_dir, new_name, &sinfo);
460 if (!err) {
461 if (!new_inode) {
462 /* "foo" -> ".foo" case. just change the ATTR_HIDDEN */
463 if (sinfo.de != old_sinfo.de) {
464 err = -EINVAL;
465 goto out;
466 }
467 if (is_hid)
468 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
469 else
470 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
471 if (IS_DIRSYNC(old_dir)) {
472 err = fat_sync_inode(old_inode);
473 if (err) {
474 MSDOS_I(old_inode)->i_attrs = old_attrs;
475 goto out;
476 }
477 } else
478 mark_inode_dirty(old_inode);
479
Jeff Layton2489dba2017-12-11 06:35:09 -0500480 inode_inc_iversion(old_dir);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700481 old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (IS_DIRSYNC(old_dir))
483 (void)fat_sync_inode(old_dir);
484 else
485 mark_inode_dirty(old_dir);
486 goto out;
487 }
488 }
489
Deepa Dinamani02027d42016-09-14 07:48:05 -0700490 ts = current_time(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (new_inode) {
492 if (err)
493 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (is_dir) {
495 err = fat_dir_empty(new_inode);
496 if (err)
497 goto out;
498 }
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800499 new_i_pos = MSDOS_I(new_inode)->i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 fat_detach(new_inode);
501 } else {
502 err = msdos_add_entry(new_dir, new_name, is_dir, is_hid, 0,
Arnd Bergmannf4234202018-08-21 21:59:48 -0700503 &ts, &sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (err)
505 goto out;
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800506 new_i_pos = sinfo.i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Jeff Layton2489dba2017-12-11 06:35:09 -0500508 inode_inc_iversion(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 fat_detach(old_inode);
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800511 fat_attach(old_inode, new_i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (is_hid)
513 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
514 else
515 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
516 if (IS_DIRSYNC(new_dir)) {
517 err = fat_sync_inode(old_inode);
518 if (err)
519 goto error_inode;
520 } else
521 mark_inode_dirty(old_inode);
522
523 if (update_dotdot) {
Steven J. Magnania943ed72012-07-30 14:42:13 -0700524 fat_set_start(dotdot_de, MSDOS_I(new_dir)->i_logstart);
Al Virob5224122009-06-07 13:44:36 -0400525 mark_buffer_dirty_inode(dotdot_bh, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (IS_DIRSYNC(new_dir)) {
527 err = sync_dirty_buffer(dotdot_bh);
528 if (err)
529 goto error_dotdot;
530 }
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700531 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (!new_inode)
Dave Hansend8c76e62006-09-30 23:29:04 -0700533 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
536 err = fat_remove_entries(old_dir, &old_sinfo); /* and releases bh */
537 old_sinfo.bh = NULL;
538 if (err)
539 goto error_dotdot;
Jeff Layton2489dba2017-12-11 06:35:09 -0500540 inode_inc_iversion(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 old_dir->i_ctime = old_dir->i_mtime = ts;
542 if (IS_DIRSYNC(old_dir))
543 (void)fat_sync_inode(old_dir);
544 else
545 mark_inode_dirty(old_dir);
546
547 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700548 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (is_dir)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700550 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 new_inode->i_ctime = ts;
552 }
553out:
554 brelse(sinfo.bh);
555 brelse(dotdot_bh);
556 brelse(old_sinfo.bh);
557 return err;
558
559error_dotdot:
560 /* data cluster is shared, serious corruption */
561 corrupt = 1;
562
563 if (update_dotdot) {
Steven J. Magnania943ed72012-07-30 14:42:13 -0700564 fat_set_start(dotdot_de, MSDOS_I(old_dir)->i_logstart);
Al Virob5224122009-06-07 13:44:36 -0400565 mark_buffer_dirty_inode(dotdot_bh, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 corrupt |= sync_dirty_buffer(dotdot_bh);
567 }
568error_inode:
569 fat_detach(old_inode);
570 fat_attach(old_inode, old_sinfo.i_pos);
571 MSDOS_I(old_inode)->i_attrs = old_attrs;
572 if (new_inode) {
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800573 fat_attach(new_inode, new_i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (corrupt)
575 corrupt |= fat_sync_inode(new_inode);
576 } else {
577 /*
578 * If new entry was not sharing the data cluster, it
579 * shouldn't be serious corruption.
580 */
581 int err2 = fat_remove_entries(new_dir, &sinfo);
582 if (corrupt)
583 corrupt |= err2;
584 sinfo.bh = NULL;
585 }
586 if (corrupt < 0) {
Denis Karpov85c78592009-06-04 02:34:22 +0900587 fat_fs_error(new_dir->i_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 "%s: Filesystem corrupted (i_pos %lld)",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700589 __func__, sinfo.i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591 goto out;
592}
593
594/***** Rename, a wrapper for rename_same_dir & rename_diff_dir */
595static int msdos_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200596 struct inode *new_dir, struct dentry *new_dentry,
597 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Linus Torvalds8f593422008-05-19 19:53:01 -0700599 struct super_block *sb = old_dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 unsigned char old_msdos_name[MSDOS_NAME], new_msdos_name[MSDOS_NAME];
601 int err, is_hid;
602
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200603 if (flags & ~RENAME_NOREPLACE)
604 return -EINVAL;
605
Marco Stornellie40b34c2012-10-06 12:40:03 +0200606 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 err = msdos_format_name(old_dentry->d_name.name,
609 old_dentry->d_name.len, old_msdos_name,
610 &MSDOS_SB(old_dir->i_sb)->options);
611 if (err)
612 goto out;
613 err = msdos_format_name(new_dentry->d_name.name,
614 new_dentry->d_name.len, new_msdos_name,
615 &MSDOS_SB(new_dir->i_sb)->options);
616 if (err)
617 goto out;
618
619 is_hid =
620 (new_dentry->d_name.name[0] == '.') && (new_msdos_name[0] != '.');
621
622 err = do_msdos_rename(old_dir, old_msdos_name, old_dentry,
623 new_dir, new_msdos_name, new_dentry, is_hid);
624out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200625 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700626 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700627 err = fat_flush_inodes(sb, old_dir, new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return err;
629}
630
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800631static const struct inode_operations msdos_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 .create = msdos_create,
633 .lookup = msdos_lookup,
634 .unlink = msdos_unlink,
635 .mkdir = msdos_mkdir,
636 .rmdir = msdos_rmdir,
637 .rename = msdos_rename,
OGAWA Hirofumi1278fdd2008-04-28 02:16:25 -0700638 .setattr = fat_setattr,
OGAWA Hirofumida63fc72006-11-16 01:19:28 -0800639 .getattr = fat_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640};
641
Al Viro3d239852010-12-18 10:44:00 -0500642static void setup(struct super_block *sb)
643{
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +0900644 MSDOS_SB(sb)->dir_ops = &msdos_dir_inode_operations;
Al Viro3d239852010-12-18 10:44:00 -0500645 sb->s_d_op = &msdos_dentry_operations;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800646 sb->s_flags |= SB_NOATIME;
Al Viro3d239852010-12-18 10:44:00 -0500647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649static int msdos_fill_super(struct super_block *sb, void *data, int silent)
650{
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +0900651 return fat_fill_super(sb, data, silent, 0, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Al Viro152a0832010-07-25 00:46:55 +0400654static struct dentry *msdos_mount(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -0700655 int flags, const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +0400656 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Al Viro152a0832010-07-25 00:46:55 +0400658 return mount_bdev(fs_type, flags, dev_name, data, msdos_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661static struct file_system_type msdos_fs_type = {
662 .owner = THIS_MODULE,
663 .name = "msdos",
Al Viro152a0832010-07-25 00:46:55 +0400664 .mount = msdos_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 .kill_sb = kill_block_super,
666 .fs_flags = FS_REQUIRES_DEV,
667};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800668MODULE_ALIAS_FS("msdos");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670static int __init init_msdos_fs(void)
671{
672 return register_filesystem(&msdos_fs_type);
673}
674
675static void __exit exit_msdos_fs(void)
676{
677 unregister_filesystem(&msdos_fs_type);
678}
679
680MODULE_LICENSE("GPL");
681MODULE_AUTHOR("Werner Almesberger");
682MODULE_DESCRIPTION("MS-DOS filesystem support");
683
684module_init(init_msdos_fs)
685module_exit(exit_msdos_fs)