blob: 9d062886fbc19d10dbb81cd2dc5f1cc19f5fbc24 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/msdos/namei.c
4 *
5 * Written 1992,1993 by Werner Almesberger
6 * Hidden files 1995 by Albert Cahalan <albert@ccs.neu.edu> <adc@coe.neu.edu>
7 * Rewritten for constant inumbers 1999 by Al Viro
8 */
9
10#include <linux/module.h>
Jeff Layton2489dba2017-12-11 06:35:09 -050011#include <linux/iversion.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 */
Linus Torvaldsda53be12013-05-21 15:22:44 -0700151static int msdos_hash(const struct dentry *dentry, struct qstr *qstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options;
154 unsigned char msdos_name[MSDOS_NAME];
155 int error;
156
157 error = msdos_format_name(qstr->name, qstr->len, msdos_name, options);
158 if (!error)
Linus Torvalds8387ff22016-06-10 07:51:30 -0700159 qstr->hash = full_name_hash(dentry, msdos_name, MSDOS_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return 0;
161}
162
163/*
164 * Compare two msdos names. If either of the names are invalid,
165 * we fall back to doing the standard name comparison.
166 */
Al Viro6fa67e72016-07-31 16:37:25 -0400167static int msdos_cmp(const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100168 unsigned int len, const char *str, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Al Virod3fe1982016-07-29 18:23:59 -0400170 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 unsigned char a_msdos_name[MSDOS_NAME], b_msdos_name[MSDOS_NAME];
172 int error;
173
Nick Piggin621e1552011-01-07 17:49:27 +1100174 error = msdos_format_name(name->name, name->len, a_msdos_name, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (error)
176 goto old_compare;
Nick Piggin621e1552011-01-07 17:49:27 +1100177 error = msdos_format_name(str, len, b_msdos_name, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (error)
179 goto old_compare;
180 error = memcmp(a_msdos_name, b_msdos_name, MSDOS_NAME);
181out:
182 return error;
183
184old_compare:
185 error = 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100186 if (name->len == len)
187 error = memcmp(name->name, str, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto out;
189}
190
Al Viroce6cdc42009-02-20 05:59:46 +0000191static const struct dentry_operations msdos_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 .d_hash = msdos_hash,
193 .d_compare = msdos_cmp,
194};
195
196/*
197 * AV. Wrappers for FAT sb operations. Is it wise?
198 */
199
200/***** Get inode using directory and name */
201static struct dentry *msdos_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400202 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 struct super_block *sb = dir->i_sb;
205 struct fat_slot_info sinfo;
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800206 struct inode *inode;
207 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Marco Stornellie40b34c2012-10-06 12:40:03 +0200209 mutex_lock(&MSDOS_SB(sb)->s_lock);
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800210 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
Al Viroa9049372011-07-08 21:20:11 -0400211 switch (err) {
212 case -ENOENT:
213 inode = NULL;
214 break;
215 case 0:
216 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
217 brelse(sinfo.bh);
218 break;
219 default:
220 inode = ERR_PTR(err);
OGAWA Hirofumi45cfbe32008-11-06 12:53:53 -0800221 }
Marco Stornellie40b34c2012-10-06 12:40:03 +0200222 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Al Viro3d239852010-12-18 10:44:00 -0500223 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/***** Creates a directory entry (name is already formatted). */
227static int msdos_add_entry(struct inode *dir, const unsigned char *name,
228 int is_dir, int is_hid, int cluster,
Arnd Bergmannf4234202018-08-21 21:59:48 -0700229 struct timespec64 *ts, struct fat_slot_info *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Joe Petersonb271e062008-07-25 01:46:47 -0700231 struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct msdos_dir_entry de;
233 __le16 time, date;
234 int err;
235
236 memcpy(de.name, name, MSDOS_NAME);
237 de.attr = is_dir ? ATTR_DIR : ATTR_ARCH;
238 if (is_hid)
239 de.attr |= ATTR_HIDDEN;
240 de.lcase = 0;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800241 fat_time_unix2fat(sbi, ts, &time, &date, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 de.cdate = de.adate = 0;
243 de.ctime = 0;
244 de.ctime_cs = 0;
245 de.time = time;
246 de.date = date;
Steven J. Magnania943ed72012-07-30 14:42:13 -0700247 fat_set_start(&de, cluster);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 de.size = 0;
249
250 err = fat_add_entries(dir, &de, 1, sinfo);
251 if (err)
252 return err;
253
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700254 fat_truncate_time(dir, ts, S_CTIME|S_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (IS_DIRSYNC(dir))
256 (void)fat_sync_inode(dir);
257 else
258 mark_inode_dirty(dir);
259
260 return 0;
261}
262
263/***** Create a file */
Al Viro4acdaf22011-07-26 01:42:34 -0400264static int msdos_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400265 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct super_block *sb = dir->i_sb;
Chris Masonae78bf92006-09-29 02:00:03 -0700268 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 struct fat_slot_info sinfo;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700270 struct timespec64 ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 unsigned char msdos_name[MSDOS_NAME];
272 int err, is_hid;
273
Marco Stornellie40b34c2012-10-06 12:40:03 +0200274 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
277 msdos_name, &MSDOS_SB(sb)->options);
278 if (err)
279 goto out;
280 is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
281 /* Have to do it due to foo vs. .foo conflicts */
282 if (!fat_scan(dir, msdos_name, &sinfo)) {
283 brelse(sinfo.bh);
284 err = -EINVAL;
285 goto out;
286 }
287
Deepa Dinamani02027d42016-09-14 07:48:05 -0700288 ts = current_time(dir);
Arnd Bergmannf4234202018-08-21 21:59:48 -0700289 err = msdos_add_entry(dir, msdos_name, 0, is_hid, 0, &ts, &sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (err)
291 goto out;
292 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
293 brelse(sinfo.bh);
294 if (IS_ERR(inode)) {
295 err = PTR_ERR(inode);
296 goto out;
297 }
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700298 fat_truncate_time(inode, &ts, S_ATIME|S_CTIME|S_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
300
301 d_instantiate(dentry, inode);
302out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200303 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700304 if (!err)
305 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return err;
307}
308
309/***** Remove a directory */
310static int msdos_rmdir(struct inode *dir, struct dentry *dentry)
311{
Linus Torvalds8f593422008-05-19 19:53:01 -0700312 struct super_block *sb = dir->i_sb;
David Howells2b0143b2015-03-17 22:25:59 +0000313 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct fat_slot_info sinfo;
315 int err;
316
Marco Stornellie40b34c2012-10-06 12:40:03 +0200317 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 err = fat_dir_empty(inode);
319 if (err)
320 goto out;
321 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
322 if (err)
323 goto out;
324
325 err = fat_remove_entries(dir, &sinfo); /* and releases bh */
326 if (err)
327 goto out;
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700328 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Dave Hansence71ec32006-09-30 23:29:06 -0700330 clear_nlink(inode);
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700331 fat_truncate_time(inode, NULL, S_CTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 fat_detach(inode);
333out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200334 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700335 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700336 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 return err;
339}
340
341/***** Make a directory */
Al Viro18bb1db2011-07-26 01:41:39 -0400342static int msdos_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct super_block *sb = dir->i_sb;
345 struct fat_slot_info sinfo;
346 struct inode *inode;
347 unsigned char msdos_name[MSDOS_NAME];
Deepa Dinamani95582b02018-05-08 19:36:02 -0700348 struct timespec64 ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 int err, is_hid, cluster;
350
Marco Stornellie40b34c2012-10-06 12:40:03 +0200351 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
354 msdos_name, &MSDOS_SB(sb)->options);
355 if (err)
356 goto out;
357 is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
358 /* foo vs .foo situation */
359 if (!fat_scan(dir, msdos_name, &sinfo)) {
360 brelse(sinfo.bh);
361 err = -EINVAL;
362 goto out;
363 }
364
Deepa Dinamani02027d42016-09-14 07:48:05 -0700365 ts = current_time(dir);
Arnd Bergmannf4234202018-08-21 21:59:48 -0700366 cluster = fat_alloc_new_dir(dir, &ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (cluster < 0) {
368 err = cluster;
369 goto out;
370 }
Arnd Bergmannf4234202018-08-21 21:59:48 -0700371 err = msdos_add_entry(dir, msdos_name, 1, is_hid, cluster, &ts, &sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (err)
373 goto out_free;
Dave Hansend8c76e62006-09-30 23:29:04 -0700374 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
377 brelse(sinfo.bh);
378 if (IS_ERR(inode)) {
379 err = PTR_ERR(inode);
380 /* the directory was completed, just return a error */
381 goto out;
382 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200383 set_nlink(inode, 2);
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700384 fat_truncate_time(inode, &ts, S_ATIME|S_CTIME|S_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* timestamp is already written, so mark_inode_dirty() is unneeded. */
386
387 d_instantiate(dentry, inode);
388
Marco Stornellie40b34c2012-10-06 12:40:03 +0200389 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700390 fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392
393out_free:
394 fat_free_clusters(dir, cluster);
395out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200396 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return err;
398}
399
400/***** Unlink a file */
401static int msdos_unlink(struct inode *dir, struct dentry *dentry)
402{
David Howells2b0143b2015-03-17 22:25:59 +0000403 struct inode *inode = d_inode(dentry);
Cruz Julian Bishop85cb9bf2012-10-04 17:14:47 -0700404 struct super_block *sb = inode->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 struct fat_slot_info sinfo;
406 int err;
407
Marco Stornellie40b34c2012-10-06 12:40:03 +0200408 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
410 if (err)
411 goto out;
412
413 err = fat_remove_entries(dir, &sinfo); /* and releases bh */
414 if (err)
415 goto out;
Dave Hansence71ec32006-09-30 23:29:06 -0700416 clear_nlink(inode);
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700417 fat_truncate_time(inode, NULL, S_CTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 fat_detach(inode);
419out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200420 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700421 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700422 err = fat_flush_inodes(sb, dir, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 return err;
425}
426
427static int do_msdos_rename(struct inode *old_dir, unsigned char *old_name,
428 struct dentry *old_dentry,
429 struct inode *new_dir, unsigned char *new_name,
430 struct dentry *new_dentry, int is_hid)
431{
432 struct buffer_head *dotdot_bh;
433 struct msdos_dir_entry *dotdot_de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct inode *old_inode, *new_inode;
435 struct fat_slot_info old_sinfo, sinfo;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700436 struct timespec64 ts;
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700437 loff_t new_i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int err, old_attrs, is_dir, update_dotdot, corrupt = 0;
439
440 old_sinfo.bh = sinfo.bh = dotdot_bh = NULL;
David Howells2b0143b2015-03-17 22:25:59 +0000441 old_inode = d_inode(old_dentry);
442 new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 err = fat_scan(old_dir, old_name, &old_sinfo);
445 if (err) {
446 err = -EIO;
447 goto out;
448 }
449
450 is_dir = S_ISDIR(old_inode->i_mode);
451 update_dotdot = (is_dir && old_dir != new_dir);
452 if (update_dotdot) {
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700453 if (fat_get_dotdot_entry(old_inode, &dotdot_bh, &dotdot_de)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 err = -EIO;
455 goto out;
456 }
457 }
458
459 old_attrs = MSDOS_I(old_inode)->i_attrs;
460 err = fat_scan(new_dir, new_name, &sinfo);
461 if (!err) {
462 if (!new_inode) {
463 /* "foo" -> ".foo" case. just change the ATTR_HIDDEN */
464 if (sinfo.de != old_sinfo.de) {
465 err = -EINVAL;
466 goto out;
467 }
468 if (is_hid)
469 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
470 else
471 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
472 if (IS_DIRSYNC(old_dir)) {
473 err = fat_sync_inode(old_inode);
474 if (err) {
475 MSDOS_I(old_inode)->i_attrs = old_attrs;
476 goto out;
477 }
478 } else
479 mark_inode_dirty(old_inode);
480
Jeff Layton2489dba2017-12-11 06:35:09 -0500481 inode_inc_iversion(old_dir);
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700482 fat_truncate_time(old_dir, NULL, S_CTIME|S_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (IS_DIRSYNC(old_dir))
484 (void)fat_sync_inode(old_dir);
485 else
486 mark_inode_dirty(old_dir);
487 goto out;
488 }
489 }
490
Deepa Dinamani02027d42016-09-14 07:48:05 -0700491 ts = current_time(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (new_inode) {
493 if (err)
494 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (is_dir) {
496 err = fat_dir_empty(new_inode);
497 if (err)
498 goto out;
499 }
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800500 new_i_pos = MSDOS_I(new_inode)->i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 fat_detach(new_inode);
502 } else {
503 err = msdos_add_entry(new_dir, new_name, is_dir, is_hid, 0,
Arnd Bergmannf4234202018-08-21 21:59:48 -0700504 &ts, &sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (err)
506 goto out;
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800507 new_i_pos = sinfo.i_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Jeff Layton2489dba2017-12-11 06:35:09 -0500509 inode_inc_iversion(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 fat_detach(old_inode);
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800512 fat_attach(old_inode, new_i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (is_hid)
514 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
515 else
516 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
517 if (IS_DIRSYNC(new_dir)) {
518 err = fat_sync_inode(old_inode);
519 if (err)
520 goto error_inode;
521 } else
522 mark_inode_dirty(old_inode);
523
524 if (update_dotdot) {
Steven J. Magnania943ed72012-07-30 14:42:13 -0700525 fat_set_start(dotdot_de, MSDOS_I(new_dir)->i_logstart);
Al Virob5224122009-06-07 13:44:36 -0400526 mark_buffer_dirty_inode(dotdot_bh, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (IS_DIRSYNC(new_dir)) {
528 err = sync_dirty_buffer(dotdot_bh);
529 if (err)
530 goto error_dotdot;
531 }
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700532 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!new_inode)
Dave Hansend8c76e62006-09-30 23:29:04 -0700534 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
537 err = fat_remove_entries(old_dir, &old_sinfo); /* and releases bh */
538 old_sinfo.bh = NULL;
539 if (err)
540 goto error_dotdot;
Jeff Layton2489dba2017-12-11 06:35:09 -0500541 inode_inc_iversion(old_dir);
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700542 fat_truncate_time(old_dir, &ts, S_CTIME|S_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (IS_DIRSYNC(old_dir))
544 (void)fat_sync_inode(old_dir);
545 else
546 mark_inode_dirty(old_dir);
547
548 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700549 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (is_dir)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700551 drop_nlink(new_inode);
Frank Sorensoncd83f6b2018-10-30 15:06:57 -0700552 fat_truncate_time(new_inode, &ts, S_CTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554out:
555 brelse(sinfo.bh);
556 brelse(dotdot_bh);
557 brelse(old_sinfo.bh);
558 return err;
559
560error_dotdot:
561 /* data cluster is shared, serious corruption */
562 corrupt = 1;
563
564 if (update_dotdot) {
Steven J. Magnania943ed72012-07-30 14:42:13 -0700565 fat_set_start(dotdot_de, MSDOS_I(old_dir)->i_logstart);
Al Virob5224122009-06-07 13:44:36 -0400566 mark_buffer_dirty_inode(dotdot_bh, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 corrupt |= sync_dirty_buffer(dotdot_bh);
568 }
569error_inode:
570 fat_detach(old_inode);
571 fat_attach(old_inode, old_sinfo.i_pos);
572 MSDOS_I(old_inode)->i_attrs = old_attrs;
573 if (new_inode) {
OGAWA Hirofumi9131dd42005-10-30 15:03:50 -0800574 fat_attach(new_inode, new_i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (corrupt)
576 corrupt |= fat_sync_inode(new_inode);
577 } else {
578 /*
579 * If new entry was not sharing the data cluster, it
580 * shouldn't be serious corruption.
581 */
582 int err2 = fat_remove_entries(new_dir, &sinfo);
583 if (corrupt)
584 corrupt |= err2;
585 sinfo.bh = NULL;
586 }
587 if (corrupt < 0) {
Denis Karpov85c78592009-06-04 02:34:22 +0900588 fat_fs_error(new_dir->i_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 "%s: Filesystem corrupted (i_pos %lld)",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700590 __func__, sinfo.i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592 goto out;
593}
594
595/***** Rename, a wrapper for rename_same_dir & rename_diff_dir */
596static int msdos_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200597 struct inode *new_dir, struct dentry *new_dentry,
598 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Linus Torvalds8f593422008-05-19 19:53:01 -0700600 struct super_block *sb = old_dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 unsigned char old_msdos_name[MSDOS_NAME], new_msdos_name[MSDOS_NAME];
602 int err, is_hid;
603
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200604 if (flags & ~RENAME_NOREPLACE)
605 return -EINVAL;
606
Marco Stornellie40b34c2012-10-06 12:40:03 +0200607 mutex_lock(&MSDOS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 err = msdos_format_name(old_dentry->d_name.name,
610 old_dentry->d_name.len, old_msdos_name,
611 &MSDOS_SB(old_dir->i_sb)->options);
612 if (err)
613 goto out;
614 err = msdos_format_name(new_dentry->d_name.name,
615 new_dentry->d_name.len, new_msdos_name,
616 &MSDOS_SB(new_dir->i_sb)->options);
617 if (err)
618 goto out;
619
620 is_hid =
621 (new_dentry->d_name.name[0] == '.') && (new_msdos_name[0] != '.');
622
623 err = do_msdos_rename(old_dir, old_msdos_name, old_dentry,
624 new_dir, new_msdos_name, new_dentry, is_hid);
625out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200626 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Chris Masonae78bf92006-09-29 02:00:03 -0700627 if (!err)
Linus Torvalds8f593422008-05-19 19:53:01 -0700628 err = fat_flush_inodes(sb, old_dir, new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return err;
630}
631
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800632static const struct inode_operations msdos_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 .create = msdos_create,
634 .lookup = msdos_lookup,
635 .unlink = msdos_unlink,
636 .mkdir = msdos_mkdir,
637 .rmdir = msdos_rmdir,
638 .rename = msdos_rename,
OGAWA Hirofumi1278fdd2008-04-28 02:16:25 -0700639 .setattr = fat_setattr,
OGAWA Hirofumida63fc72006-11-16 01:19:28 -0800640 .getattr = fat_getattr,
Frank Sorenson6bb885e2018-10-30 15:06:53 -0700641 .update_time = fat_update_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642};
643
Al Viro3d239852010-12-18 10:44:00 -0500644static void setup(struct super_block *sb)
645{
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +0900646 MSDOS_SB(sb)->dir_ops = &msdos_dir_inode_operations;
Al Viro3d239852010-12-18 10:44:00 -0500647 sb->s_d_op = &msdos_dentry_operations;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800648 sb->s_flags |= SB_NOATIME;
Al Viro3d239852010-12-18 10:44:00 -0500649}
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651static int msdos_fill_super(struct super_block *sb, void *data, int silent)
652{
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +0900653 return fat_fill_super(sb, data, silent, 0, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Al Viro152a0832010-07-25 00:46:55 +0400656static struct dentry *msdos_mount(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -0700657 int flags, const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +0400658 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Al Viro152a0832010-07-25 00:46:55 +0400660 return mount_bdev(fs_type, flags, dev_name, data, msdos_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663static struct file_system_type msdos_fs_type = {
664 .owner = THIS_MODULE,
665 .name = "msdos",
Al Viro152a0832010-07-25 00:46:55 +0400666 .mount = msdos_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .kill_sb = kill_block_super,
668 .fs_flags = FS_REQUIRES_DEV,
669};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800670MODULE_ALIAS_FS("msdos");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
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)