blob: 4afc4d9d2e4127debe45cb51b5f1fc17d16fee4d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/fat/dir.c
3 *
4 * directory handling functions for fat-based filesystems
5 *
6 * Written 1992,1993 by Werner Almesberger
7 *
8 * Hidden files 1995 by Albert Cahalan <albert@ccs.neu.edu> <adc@coe.neu.edu>
9 *
10 * VFAT extensions by Gordon Chaffee <chaffee@plateau.cs.berkeley.edu>
11 * Merged with msdos fs by Henrik Storner <storner@osiris.ping.dk>
12 * Rewritten for constant inumbers. Plugged buffer overrun in readdir(). AV
13 * Short name translation 1999, 2001 by Wolfram Pienkoss <wp@bszh.de>
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/slab.h>
David Howells188f83d2006-08-31 12:50:04 +020017#include <linux/compat.h>
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -070018#include <linux/uaccess.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080019#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Alan Stern74675a52009-04-30 10:08:18 -040021/*
22 * Maximum buffer size of short name.
23 * [(MSDOS_NAME + '.') * max one char + nul]
24 * For msdos style, ['.' (hidden) + MSDOS_NAME + '.' + nul]
25 */
26#define FAT_MAX_SHORT_SIZE ((MSDOS_NAME + 1) * NLS_MAX_CHARSET_SIZE + 1)
27/*
28 * Maximum buffer size of unicode chars from slots.
29 * [(max longname slots * 13 (size in a slot) + nul) * sizeof(wchar_t)]
30 */
31#define FAT_MAX_UNI_CHARS ((MSDOS_SLOTS - 1) * 13 + 1)
32#define FAT_MAX_UNI_SIZE (FAT_MAX_UNI_CHARS * sizeof(wchar_t))
33
Steven J. Magnanideb82742012-07-30 14:42:16 -070034static inline unsigned char fat_tolower(unsigned char c)
35{
36 return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
37}
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static inline loff_t fat_make_i_pos(struct super_block *sb,
40 struct buffer_head *bh,
41 struct msdos_dir_entry *de)
42{
43 return ((loff_t)bh->b_blocknr << MSDOS_SB(sb)->dir_per_block_bits)
44 | (de - (struct msdos_dir_entry *)bh->b_data);
45}
46
Karsten Wiesef3ef6f62005-09-06 15:17:12 -070047static inline void fat_dir_readahead(struct inode *dir, sector_t iblock,
48 sector_t phys)
49{
50 struct super_block *sb = dir->i_sb;
51 struct msdos_sb_info *sbi = MSDOS_SB(sb);
52 struct buffer_head *bh;
53 int sec;
54
55 /* This is not a first sector of cluster, or sec_per_clus == 1 */
56 if ((iblock & (sbi->sec_per_clus - 1)) || sbi->sec_per_clus == 1)
57 return;
58 /* root dir of FAT12/FAT16 */
59 if ((sbi->fat_bits != 32) && (dir->i_ino == MSDOS_ROOT_INO))
60 return;
61
OGAWA Hirofumi83b7c992006-01-08 01:02:09 -080062 bh = sb_find_get_block(sb, phys);
63 if (bh == NULL || !buffer_uptodate(bh)) {
Karsten Wiesef3ef6f62005-09-06 15:17:12 -070064 for (sec = 0; sec < sbi->sec_per_clus; sec++)
65 sb_breadahead(sb, phys + sec);
66 }
67 brelse(bh);
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* Returns the inode number of the directory entry at offset pos. If bh is
71 non-NULL, it is brelse'd before. Pos is incremented. The buffer header is
72 returned in bh.
73 AV. Most often we do it item-by-item. Makes sense to optimize.
74 AV. OK, there we go: if both bh and de are non-NULL we assume that we just
75 AV. want the next entry (took one explicit de=NULL in vfat/namei.c).
76 AV. It's done in fat_get_entry() (inlined), here the slow case lives.
77 AV. Additionally, when we return -1 (i.e. reached the end of directory)
78 AV. we make bh NULL.
79 */
80static int fat__get_entry(struct inode *dir, loff_t *pos,
81 struct buffer_head **bh, struct msdos_dir_entry **de)
82{
83 struct super_block *sb = dir->i_sb;
84 sector_t phys, iblock;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080085 unsigned long mapped_blocks;
86 int err, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88next:
89 if (*bh)
90 brelse(*bh);
91
92 *bh = NULL;
93 iblock = *pos >> sb->s_blocksize_bits;
OGAWA Hirofumi2bdf67e2008-11-06 12:53:57 -080094 err = fat_bmap(dir, iblock, &phys, &mapped_blocks, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (err || !phys)
96 return -1; /* beyond EOF or error */
97
Karsten Wiesef3ef6f62005-09-06 15:17:12 -070098 fat_dir_readahead(dir, iblock, phys);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *bh = sb_bread(sb, phys);
101 if (*bh == NULL) {
Namjae Jeonf0aac612012-05-31 16:26:14 -0700102 fat_msg_ratelimit(sb, KERN_ERR,
103 "Directory bread(block %llu) failed", (llu)phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 /* skip this block */
105 *pos = (iblock + 1) << sb->s_blocksize_bits;
106 goto next;
107 }
108
109 offset = *pos & (sb->s_blocksize - 1);
110 *pos += sizeof(struct msdos_dir_entry);
111 *de = (struct msdos_dir_entry *)((*bh)->b_data + offset);
112
113 return 0;
114}
115
116static inline int fat_get_entry(struct inode *dir, loff_t *pos,
117 struct buffer_head **bh,
118 struct msdos_dir_entry **de)
119{
120 /* Fast stuff first */
121 if (*bh && *de &&
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700122 (*de - (struct msdos_dir_entry *)(*bh)->b_data) <
123 MSDOS_SB(dir->i_sb)->dir_per_block - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *pos += sizeof(struct msdos_dir_entry);
125 (*de)++;
126 return 0;
127 }
128 return fat__get_entry(dir, pos, bh, de);
129}
130
131/*
Alexey Dobriyan4de151d2006-03-22 00:13:35 +0100132 * Convert Unicode 16 to UTF-8, translated Unicode, or ASCII.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * If uni_xlate is enabled and we can't get a 1:1 conversion, use a
134 * colon as an escape character since it is normally invalid on the vfat
135 * filesystem. The following four characters are the hexadecimal digits
136 * of Unicode value. This lets us do a full dump and restore of Unicode
137 * filenames. We could get into some trouble with long Unicode names,
138 * but ignore that right now.
139 * Ahem... Stack smashing in ring 0 isn't fun. Fixed.
140 */
Alexey Fisher869f58c2011-04-12 21:08:38 +0900141static int uni16_to_x8(struct super_block *sb, unsigned char *ascii,
142 const wchar_t *uni, int len, struct nls_table *nls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Alexey Fisher869f58c2011-04-12 21:08:38 +0900144 int uni_xlate = MSDOS_SB(sb)->options.unicode_xlate;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700145 const wchar_t *ip;
146 wchar_t ec;
Andy Shevchenko3ed3dec2010-03-16 05:48:08 +0900147 unsigned char *op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 int charlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 ip = uni;
151 op = ascii;
152
Keith Mokf22032b2008-04-28 02:16:29 -0700153 while (*ip && ((len - NLS_MAX_CHARSET_SIZE) > 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 ec = *ip++;
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700155 charlen = nls->uni2char(ec, op, NLS_MAX_CHARSET_SIZE);
156 if (charlen > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 op += charlen;
Keith Mokf22032b2008-04-28 02:16:29 -0700158 len -= charlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 } else {
160 if (uni_xlate == 1) {
Andy Shevchenko3ed3dec2010-03-16 05:48:08 +0900161 *op++ = ':';
Andy Shevchenko0a90e0f2011-10-31 17:12:57 -0700162 op = hex_byte_pack(op, ec >> 8);
163 op = hex_byte_pack(op, ec);
Keith Mokf22032b2008-04-28 02:16:29 -0700164 len -= 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 } else {
166 *op++ = '?';
Keith Mokf22032b2008-04-28 02:16:29 -0700167 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
Keith Mokf22032b2008-04-28 02:16:29 -0700171
172 if (unlikely(*ip)) {
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700173 fat_msg(sb, KERN_WARNING,
174 "filename was truncated while converting.");
Keith Mokf22032b2008-04-28 02:16:29 -0700175 }
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 *op = 0;
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700178 return op - ascii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Alexey Fisher869f58c2011-04-12 21:08:38 +0900181static inline int fat_uni_to_x8(struct super_block *sb, const wchar_t *uni,
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700182 unsigned char *buf, int size)
183{
Alexey Fisher869f58c2011-04-12 21:08:38 +0900184 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700185 if (sbi->options.utf8)
Alan Stern74675a52009-04-30 10:08:18 -0400186 return utf16s_to_utf8s(uni, FAT_MAX_UNI_CHARS,
187 UTF16_HOST_ENDIAN, buf, size);
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700188 else
Alexey Fisher869f58c2011-04-12 21:08:38 +0900189 return uni16_to_x8(sb, buf, uni, size, sbi->nls_io);
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static inline int
193fat_short2uni(struct nls_table *t, unsigned char *c, int clen, wchar_t *uni)
194{
195 int charlen;
196
197 charlen = t->char2uni(c, clen, uni);
198 if (charlen < 0) {
199 *uni = 0x003f; /* a question mark */
200 charlen = 1;
201 }
202 return charlen;
203}
204
205static inline int
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700206fat_short2lower_uni(struct nls_table *t, unsigned char *c,
207 int clen, wchar_t *uni)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 int charlen;
210 wchar_t wc;
211
212 charlen = t->char2uni(c, clen, &wc);
213 if (charlen < 0) {
214 *uni = 0x003f; /* a question mark */
215 charlen = 1;
216 } else if (charlen <= 1) {
217 unsigned char nc = t->charset2lower[*c];
218
219 if (!nc)
220 nc = *c;
221
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700222 charlen = t->char2uni(&nc, 1, uni);
223 if (charlen < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *uni = 0x003f; /* a question mark */
225 charlen = 1;
226 }
227 } else
228 *uni = wc;
229
230 return charlen;
231}
232
233static inline int
234fat_shortname2uni(struct nls_table *nls, unsigned char *buf, int buf_size,
235 wchar_t *uni_buf, unsigned short opt, int lower)
236{
237 int len = 0;
238
239 if (opt & VFAT_SFN_DISPLAY_LOWER)
240 len = fat_short2lower_uni(nls, buf, buf_size, uni_buf);
241 else if (opt & VFAT_SFN_DISPLAY_WIN95)
242 len = fat_short2uni(nls, buf, buf_size, uni_buf);
243 else if (opt & VFAT_SFN_DISPLAY_WINNT) {
244 if (lower)
245 len = fat_short2lower_uni(nls, buf, buf_size, uni_buf);
246 else
247 len = fat_short2uni(nls, buf, buf_size, uni_buf);
248 } else
249 len = fat_short2uni(nls, buf, buf_size, uni_buf);
250
251 return len;
252}
253
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700254static inline int fat_name_match(struct msdos_sb_info *sbi,
255 const unsigned char *a, int a_len,
256 const unsigned char *b, int b_len)
257{
258 if (a_len != b_len)
259 return 0;
260
261 if (sbi->options.name_check != 's')
262 return !nls_strnicmp(sbi->nls_io, a, b, a_len);
263 else
264 return !memcmp(a, b, a_len);
265}
266
Pekka Enbergad2c1602005-10-30 15:03:50 -0800267enum { PARSE_INVALID = 1, PARSE_NOT_LONGNAME, PARSE_EOF, };
268
269/**
270 * fat_parse_long - Parse extended directory entry.
271 *
272 * This function returns zero on success, negative value on error, or one of
273 * the following:
274 *
275 * %PARSE_INVALID - Directory entry is invalid.
276 * %PARSE_NOT_LONGNAME - Directory entry does not contain longname.
277 * %PARSE_EOF - Directory has no more entries.
278 */
279static int fat_parse_long(struct inode *dir, loff_t *pos,
280 struct buffer_head **bh, struct msdos_dir_entry **de,
281 wchar_t **unicode, unsigned char *nr_slots)
282{
283 struct msdos_dir_slot *ds;
284 unsigned char id, slot, slots, alias_checksum;
285
286 if (!*unicode) {
OGAWA Hirofumic7a6c4e2008-04-28 02:16:29 -0700287 *unicode = __getname();
Pekka Enbergad2c1602005-10-30 15:03:50 -0800288 if (!*unicode) {
289 brelse(*bh);
290 return -ENOMEM;
291 }
292 }
293parse_long:
294 slots = 0;
295 ds = (struct msdos_dir_slot *)*de;
296 id = ds->id;
297 if (!(id & 0x40))
298 return PARSE_INVALID;
299 slots = id & ~0x40;
300 if (slots > 20 || !slots) /* ceil(256 * 2 / 26) */
301 return PARSE_INVALID;
302 *nr_slots = slots;
303 alias_checksum = ds->alias_checksum;
304
305 slot = slots;
306 while (1) {
307 int offset;
308
309 slot--;
310 offset = slot * 13;
311 fat16_towchar(*unicode + offset, ds->name0_4, 5);
312 fat16_towchar(*unicode + offset + 5, ds->name5_10, 6);
313 fat16_towchar(*unicode + offset + 11, ds->name11_12, 2);
314
315 if (ds->id & 0x40)
316 (*unicode)[offset + 13] = 0;
317 if (fat_get_entry(dir, pos, bh, de) < 0)
318 return PARSE_EOF;
319 if (slot == 0)
320 break;
321 ds = (struct msdos_dir_slot *)*de;
322 if (ds->attr != ATTR_EXT)
323 return PARSE_NOT_LONGNAME;
324 if ((ds->id & ~0x40) != slot)
325 goto parse_long;
326 if (ds->alias_checksum != alias_checksum)
327 goto parse_long;
328 }
329 if ((*de)->name[0] == DELETED_FLAG)
330 return PARSE_INVALID;
331 if ((*de)->attr == ATTR_EXT)
332 goto parse_long;
333 if (IS_FREE((*de)->name) || ((*de)->attr & ATTR_VOLUME))
334 return PARSE_INVALID;
335 if (fat_checksum((*de)->name) != alias_checksum)
336 *nr_slots = 0;
337
338 return 0;
339}
340
Steven J. Magnanideb82742012-07-30 14:42:16 -0700341/**
342 * fat_parse_short - Parse MS-DOS (short) directory entry.
343 * @sb: superblock
344 * @de: directory entry to parse
345 * @name: FAT_MAX_SHORT_SIZE array in which to place extracted name
346 * @dot_hidden: Nonzero == prepend '.' to names with ATTR_HIDDEN
347 *
348 * Returns the number of characters extracted into 'name'.
349 */
350static int fat_parse_short(struct super_block *sb,
351 const struct msdos_dir_entry *de,
352 unsigned char *name, int dot_hidden)
353{
354 const struct msdos_sb_info *sbi = MSDOS_SB(sb);
355 int isvfat = sbi->options.isvfat;
356 int nocase = sbi->options.nocase;
357 unsigned short opt_shortname = sbi->options.shortname;
358 struct nls_table *nls_disk = sbi->nls_disk;
359 wchar_t uni_name[14];
360 unsigned char c, work[MSDOS_NAME];
361 unsigned char *ptname = name;
362 int chi, chl, i, j, k;
363 int dotoffset = 0;
364 int name_len = 0, uni_len = 0;
365
366 if (!isvfat && dot_hidden && (de->attr & ATTR_HIDDEN)) {
367 *ptname++ = '.';
368 dotoffset = 1;
369 }
370
371 memcpy(work, de->name, sizeof(work));
372 /* see namei.c, msdos_format_name */
373 if (work[0] == 0x05)
374 work[0] = 0xE5;
375
376 /* Filename */
377 for (i = 0, j = 0; i < 8;) {
378 c = work[i];
379 if (!c)
380 break;
381 chl = fat_shortname2uni(nls_disk, &work[i], 8 - i,
382 &uni_name[j++], opt_shortname,
383 de->lcase & CASE_LOWER_BASE);
384 if (chl <= 1) {
385 if (!isvfat)
386 ptname[i] = nocase ? c : fat_tolower(c);
387 i++;
388 if (c != ' ') {
389 name_len = i;
390 uni_len = j;
391 }
392 } else {
393 uni_len = j;
394 if (isvfat)
395 i += min(chl, 8-i);
396 else {
397 for (chi = 0; chi < chl && i < 8; chi++, i++)
398 ptname[i] = work[i];
399 }
400 if (chl)
401 name_len = i;
402 }
403 }
404
405 i = name_len;
406 j = uni_len;
407 fat_short2uni(nls_disk, ".", 1, &uni_name[j++]);
408 if (!isvfat)
409 ptname[i] = '.';
410 i++;
411
412 /* Extension */
413 for (k = 8; k < MSDOS_NAME;) {
414 c = work[k];
415 if (!c)
416 break;
417 chl = fat_shortname2uni(nls_disk, &work[k], MSDOS_NAME - k,
418 &uni_name[j++], opt_shortname,
419 de->lcase & CASE_LOWER_EXT);
420 if (chl <= 1) {
421 k++;
422 if (!isvfat)
423 ptname[i] = nocase ? c : fat_tolower(c);
424 i++;
425 if (c != ' ') {
426 name_len = i;
427 uni_len = j;
428 }
429 } else {
430 uni_len = j;
431 if (isvfat) {
432 int offset = min(chl, MSDOS_NAME-k);
433 k += offset;
434 i += offset;
435 } else {
436 for (chi = 0; chi < chl && k < MSDOS_NAME;
437 chi++, i++, k++) {
438 ptname[i] = work[k];
439 }
440 }
441 if (chl)
442 name_len = i;
443 }
444 }
445
446 if (name_len > 0) {
447 name_len += dotoffset;
448
449 if (sbi->options.isvfat) {
450 uni_name[uni_len] = 0x0000;
451 name_len = fat_uni_to_x8(sb, uni_name, name,
452 FAT_MAX_SHORT_SIZE);
453 }
454 }
455
456 return name_len;
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/*
Ravishankar Nc39540c2012-12-20 15:05:46 -0800460 * Return values: negative -> error/not found, 0 -> found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
462int fat_search_long(struct inode *inode, const unsigned char *name,
463 int name_len, struct fat_slot_info *sinfo)
464{
465 struct super_block *sb = inode->i_sb;
466 struct msdos_sb_info *sbi = MSDOS_SB(sb);
467 struct buffer_head *bh = NULL;
468 struct msdos_dir_entry *de;
Keith Mokf22032b2008-04-28 02:16:29 -0700469 unsigned char nr_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 wchar_t *unicode = NULL;
OGAWA Hirofumi98a15162008-07-25 01:46:44 -0700471 unsigned char bufname[FAT_MAX_SHORT_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 loff_t cpos = 0;
Steven J. Magnanideb82742012-07-30 14:42:16 -0700473 int err, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 err = -ENOENT;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700476 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700478 goto end_of_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479parse_record:
480 nr_slots = 0;
481 if (de->name[0] == DELETED_FLAG)
482 continue;
483 if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
484 continue;
485 if (de->attr != ATTR_EXT && IS_FREE(de->name))
486 continue;
487 if (de->attr == ATTR_EXT) {
Pekka Enbergad2c1602005-10-30 15:03:50 -0800488 int status = fat_parse_long(inode, &cpos, &bh, &de,
489 &unicode, &nr_slots);
Darren Jenkins52e9d9f2008-11-06 12:53:48 -0800490 if (status < 0) {
491 err = status;
492 goto end_of_dir;
493 } else if (status == PARSE_INVALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 continue;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800495 else if (status == PARSE_NOT_LONGNAME)
496 goto parse_record;
497 else if (status == PARSE_EOF)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700498 goto end_of_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
Steven J. Magnanideb82742012-07-30 14:42:16 -0700501 /* Never prepend '.' to hidden files here.
502 * That is done only for msdos mounts (and only when
503 * 'dotsOK=yes'); if we are executing here, it is in the
504 * context of a vfat mount.
505 */
506 len = fat_parse_short(sb, de, bufname, 0);
507 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 continue;
509
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700510 /* Compare shortname */
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700511 if (fat_name_match(sbi, name, name_len, bufname, len))
512 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 if (nr_slots) {
OGAWA Hirofumi98a15162008-07-25 01:46:44 -0700515 void *longname = unicode + FAT_MAX_UNI_CHARS;
516 int size = PATH_MAX - FAT_MAX_UNI_SIZE;
517
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700518 /* Compare longname */
Alexey Fisher869f58c2011-04-12 21:08:38 +0900519 len = fat_uni_to_x8(sb, unicode, longname, size);
OGAWA Hirofumi98a15162008-07-25 01:46:44 -0700520 if (fat_name_match(sbi, name, name_len, longname, len))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700521 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 }
524
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700525found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 nr_slots++; /* include the de */
527 sinfo->slot_off = cpos - nr_slots * sizeof(*de);
528 sinfo->nr_slots = nr_slots;
529 sinfo->de = de;
530 sinfo->bh = bh;
531 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
532 err = 0;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700533end_of_dir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (unicode)
OGAWA Hirofumic7a6c4e2008-04-28 02:16:29 -0700535 __putname(unicode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 return err;
538}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800539EXPORT_SYMBOL_GPL(fat_search_long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541struct fat_ioctl_filldir_callback {
Al Viro2c6a2472013-05-22 18:37:16 -0400542 struct dir_context ctx;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700543 void __user *dirent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int result;
545 /* for dir ioctl */
546 const char *longname;
547 int long_len;
548 const char *shortname;
549 int short_len;
550};
551
Al Viro2c6a2472013-05-22 18:37:16 -0400552static int __fat_readdir(struct inode *inode, struct file *file,
553 struct dir_context *ctx, int short_only,
554 struct fat_ioctl_filldir_callback *both)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 struct super_block *sb = inode->i_sb;
557 struct msdos_sb_info *sbi = MSDOS_SB(sb);
558 struct buffer_head *bh;
559 struct msdos_dir_entry *de;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700560 unsigned char nr_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 wchar_t *unicode = NULL;
Steven J. Magnanideb82742012-07-30 14:42:16 -0700562 unsigned char bufname[FAT_MAX_SHORT_SIZE];
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700563 int isvfat = sbi->options.isvfat;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700564 const char *fill_name = NULL;
Al Viro2c6a2472013-05-22 18:37:16 -0400565 int fake_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 loff_t cpos;
Steven J. Magnanideb82742012-07-30 14:42:16 -0700567 int short_len = 0, fill_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int ret = 0;
569
Marco Stornellie40b34c2012-10-06 12:40:03 +0200570 mutex_lock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Al Viro2c6a2472013-05-22 18:37:16 -0400572 cpos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* Fake . and .. for the root directory. */
574 if (inode->i_ino == MSDOS_ROOT_INO) {
Al Viro2c6a2472013-05-22 18:37:16 -0400575 if (!dir_emit_dots(file, ctx))
576 goto out;
577 if (ctx->pos == 2) {
578 fake_offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 cpos = 0;
580 }
581 }
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700582 if (cpos & (sizeof(struct msdos_dir_entry) - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 ret = -ENOENT;
584 goto out;
585 }
586
587 bh = NULL;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700588get_new:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700590 goto end_of_dir;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800591parse_record:
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700592 nr_slots = 0;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700593 /*
594 * Check for long filename entry, but if short_only, we don't
595 * need to parse long filename.
596 */
597 if (isvfat && !short_only) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (de->name[0] == DELETED_FLAG)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700599 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700601 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (de->attr != ATTR_EXT && IS_FREE(de->name))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700603 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 } else {
605 if ((de->attr & ATTR_VOLUME) || IS_FREE(de->name))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700606 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
609 if (isvfat && de->attr == ATTR_EXT) {
Pekka Enbergad2c1602005-10-30 15:03:50 -0800610 int status = fat_parse_long(inode, &cpos, &bh, &de,
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700611 &unicode, &nr_slots);
Pekka Enbergad2c1602005-10-30 15:03:50 -0800612 if (status < 0) {
Al Viro2c6a2472013-05-22 18:37:16 -0400613 ctx->pos = cpos;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800614 ret = status;
615 goto out;
616 } else if (status == PARSE_INVALID)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700617 goto record_end;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800618 else if (status == PARSE_NOT_LONGNAME)
619 goto parse_record;
620 else if (status == PARSE_EOF)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700621 goto end_of_dir;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700622
623 if (nr_slots) {
624 void *longname = unicode + FAT_MAX_UNI_CHARS;
625 int size = PATH_MAX - FAT_MAX_UNI_SIZE;
Alexey Fisher869f58c2011-04-12 21:08:38 +0900626 int len = fat_uni_to_x8(sb, unicode, longname, size);
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700627
628 fill_name = longname;
629 fill_len = len;
630 /* !both && !short_only, so we don't need shortname. */
631 if (!both)
632 goto start_filldir;
Al Viro2c6a2472013-05-22 18:37:16 -0400633
634 short_len = fat_parse_short(sb, de, bufname,
635 sbi->options.dotsOK);
636 if (short_len == 0)
637 goto record_end;
638 /* hack for fat_ioctl_filldir() */
639 both->longname = fill_name;
640 both->long_len = fill_len;
641 both->shortname = bufname;
642 both->short_len = short_len;
643 fill_name = NULL;
644 fill_len = 0;
645 goto start_filldir;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Steven J. Magnanideb82742012-07-30 14:42:16 -0700649 short_len = fat_parse_short(sb, de, bufname, sbi->options.dotsOK);
650 if (short_len == 0)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700651 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Al Viro2c6a2472013-05-22 18:37:16 -0400653 fill_name = bufname;
654 fill_len = short_len;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700655
656start_filldir:
Al Viro2c6a2472013-05-22 18:37:16 -0400657 if (!fake_offset)
658 ctx->pos = cpos - (nr_slots + 1) * sizeof(struct msdos_dir_entry);
659
660 if (!memcmp(de->name, MSDOS_DOT, MSDOS_NAME)) {
661 if (!dir_emit_dot(file, ctx))
662 goto fill_failed;
663 } else if (!memcmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
664 if (!dir_emit_dotdot(file, ctx))
665 goto fill_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 } else {
Al Viro2c6a2472013-05-22 18:37:16 -0400667 unsigned long inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 loff_t i_pos = fat_make_i_pos(sb, bh, de);
669 struct inode *tmp = fat_iget(sb, i_pos);
670 if (tmp) {
671 inum = tmp->i_ino;
672 iput(tmp);
673 } else
674 inum = iunique(sb, MSDOS_ROOT_INO);
Al Viro2c6a2472013-05-22 18:37:16 -0400675 if (!dir_emit(ctx, fill_name, fill_len, inum,
676 (de->attr & ATTR_DIR) ? DT_DIR : DT_REG))
677 goto fill_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700680record_end:
Al Viro2c6a2472013-05-22 18:37:16 -0400681 fake_offset = 0;
682 ctx->pos = cpos;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700683 goto get_new;
684end_of_dir:
Al Viro2c6a2472013-05-22 18:37:16 -0400685 ctx->pos = cpos;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700686fill_failed:
Karsten Wiesef3ef6f62005-09-06 15:17:12 -0700687 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (unicode)
OGAWA Hirofumic7a6c4e2008-04-28 02:16:29 -0700689 __putname(unicode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200691 mutex_unlock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return ret;
693}
694
Al Viro2c6a2472013-05-22 18:37:16 -0400695static int fat_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Al Viro2c6a2472013-05-22 18:37:16 -0400697 return __fat_readdir(file_inode(file), file, ctx, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700700#define FAT_IOCTL_FILLDIR_FUNC(func, dirent_type) \
Miklos Szerediac7576f2014-10-30 17:37:34 +0100701static int func(struct dir_context *ctx, const char *name, int name_len, \
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700702 loff_t offset, u64 ino, unsigned int d_type) \
703{ \
Miklos Szerediac7576f2014-10-30 17:37:34 +0100704 struct fat_ioctl_filldir_callback *buf = \
705 container_of(ctx, struct fat_ioctl_filldir_callback, ctx); \
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700706 struct dirent_type __user *d1 = buf->dirent; \
707 struct dirent_type __user *d2 = d1 + 1; \
708 \
709 if (buf->result) \
710 return -EINVAL; \
711 buf->result++; \
712 \
713 if (name != NULL) { \
714 /* dirent has only short name */ \
715 if (name_len >= sizeof(d1->d_name)) \
716 name_len = sizeof(d1->d_name) - 1; \
717 \
718 if (put_user(0, d2->d_name) || \
719 put_user(0, &d2->d_reclen) || \
720 copy_to_user(d1->d_name, name, name_len) || \
721 put_user(0, d1->d_name + name_len) || \
722 put_user(name_len, &d1->d_reclen)) \
723 goto efault; \
724 } else { \
725 /* dirent has short and long name */ \
726 const char *longname = buf->longname; \
727 int long_len = buf->long_len; \
728 const char *shortname = buf->shortname; \
729 int short_len = buf->short_len; \
730 \
731 if (long_len >= sizeof(d1->d_name)) \
732 long_len = sizeof(d1->d_name) - 1; \
733 if (short_len >= sizeof(d1->d_name)) \
734 short_len = sizeof(d1->d_name) - 1; \
735 \
736 if (copy_to_user(d2->d_name, longname, long_len) || \
737 put_user(0, d2->d_name + long_len) || \
738 put_user(long_len, &d2->d_reclen) || \
739 put_user(ino, &d2->d_ino) || \
740 put_user(offset, &d2->d_off) || \
741 copy_to_user(d1->d_name, shortname, short_len) || \
742 put_user(0, d1->d_name + short_len) || \
743 put_user(short_len, &d1->d_reclen)) \
744 goto efault; \
745 } \
746 return 0; \
747efault: \
748 buf->result = -EFAULT; \
749 return -EFAULT; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Adrian Bunk531f7102008-07-25 01:46:43 -0700752FAT_IOCTL_FILLDIR_FUNC(fat_ioctl_filldir, __fat_dirent)
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700753
Al Viro2c6a2472013-05-22 18:37:16 -0400754static int fat_ioctl_readdir(struct inode *inode, struct file *file,
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700755 void __user *dirent, filldir_t filldir,
756 int short_only, int both)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Al Viro2c6a2472013-05-22 18:37:16 -0400758 struct fat_ioctl_filldir_callback buf = {
759 .ctx.actor = filldir,
760 .dirent = dirent
761 };
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700762 int ret;
763
764 buf.dirent = dirent;
765 buf.result = 0;
766 mutex_lock(&inode->i_mutex);
Al Viro2c6a2472013-05-22 18:37:16 -0400767 buf.ctx.pos = file->f_pos;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700768 ret = -ENOENT;
769 if (!IS_DEADDIR(inode)) {
Al Viro2c6a2472013-05-22 18:37:16 -0400770 ret = __fat_readdir(inode, file, &buf.ctx,
771 short_only, both ? &buf : NULL);
772 file->f_pos = buf.ctx.pos;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700773 }
774 mutex_unlock(&inode->i_mutex);
775 if (ret >= 0)
776 ret = buf.result;
777 return ret;
778}
779
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900780static long fat_dir_ioctl(struct file *filp, unsigned int cmd,
781 unsigned long arg)
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700782{
Al Viro496ad9a2013-01-23 17:07:38 -0500783 struct inode *inode = file_inode(filp);
Adrian Bunk531f7102008-07-25 01:46:43 -0700784 struct __fat_dirent __user *d1 = (struct __fat_dirent __user *)arg;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700785 int short_only, both;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 switch (cmd) {
788 case VFAT_IOCTL_READDIR_SHORT:
789 short_only = 1;
790 both = 0;
791 break;
792 case VFAT_IOCTL_READDIR_BOTH:
793 short_only = 0;
794 both = 1;
795 break;
796 default:
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900797 return fat_generic_ioctl(filp, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
Adrian Bunk531f7102008-07-25 01:46:43 -0700800 if (!access_ok(VERIFY_WRITE, d1, sizeof(struct __fat_dirent[2])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return -EFAULT;
802 /*
803 * Yes, we don't need this put_user() absolutely. However old
804 * code didn't return the right value. So, app use this value,
805 * in order to check whether it is EOF.
806 */
807 if (put_user(0, &d1->d_reclen))
808 return -EFAULT;
809
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700810 return fat_ioctl_readdir(inode, filp, d1, fat_ioctl_filldir,
811 short_only, both);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
David Howells188f83d2006-08-31 12:50:04 +0200814#ifdef CONFIG_COMPAT
815#define VFAT_IOCTL_READDIR_BOTH32 _IOR('r', 1, struct compat_dirent[2])
816#define VFAT_IOCTL_READDIR_SHORT32 _IOR('r', 2, struct compat_dirent[2])
817
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700818FAT_IOCTL_FILLDIR_FUNC(fat_compat_ioctl_filldir, compat_dirent)
David Howells188f83d2006-08-31 12:50:04 +0200819
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700820static long fat_compat_dir_ioctl(struct file *filp, unsigned cmd,
David Howells188f83d2006-08-31 12:50:04 +0200821 unsigned long arg)
822{
Al Viro496ad9a2013-01-23 17:07:38 -0500823 struct inode *inode = file_inode(filp);
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700824 struct compat_dirent __user *d1 = compat_ptr(arg);
825 int short_only, both;
David Howells188f83d2006-08-31 12:50:04 +0200826
827 switch (cmd) {
David Howells188f83d2006-08-31 12:50:04 +0200828 case VFAT_IOCTL_READDIR_SHORT32:
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700829 short_only = 1;
830 both = 0;
831 break;
832 case VFAT_IOCTL_READDIR_BOTH32:
833 short_only = 0;
834 both = 1;
David Howells188f83d2006-08-31 12:50:04 +0200835 break;
836 default:
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900837 return fat_generic_ioctl(filp, cmd, (unsigned long)arg);
David Howells188f83d2006-08-31 12:50:04 +0200838 }
839
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700840 if (!access_ok(VERIFY_WRITE, d1, sizeof(struct compat_dirent[2])))
841 return -EFAULT;
842 /*
843 * Yes, we don't need this put_user() absolutely. However old
844 * code didn't return the right value. So, app use this value,
845 * in order to check whether it is EOF.
846 */
847 if (put_user(0, &d1->d_reclen))
848 return -EFAULT;
849
850 return fat_ioctl_readdir(inode, filp, d1, fat_compat_ioctl_filldir,
851 short_only, both);
David Howells188f83d2006-08-31 12:50:04 +0200852}
853#endif /* CONFIG_COMPAT */
854
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800855const struct file_operations fat_dir_operations = {
OGAWA Hirofumi53472bc2008-11-06 12:53:47 -0800856 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 .read = generic_read_dir,
Al Viro2c6a2472013-05-22 18:37:16 -0400858 .iterate = fat_readdir,
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900859 .unlocked_ioctl = fat_dir_ioctl,
David Howells188f83d2006-08-31 12:50:04 +0200860#ifdef CONFIG_COMPAT
861 .compat_ioctl = fat_compat_dir_ioctl,
862#endif
Al Virob5224122009-06-07 13:44:36 -0400863 .fsync = fat_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864};
865
866static int fat_get_short_entry(struct inode *dir, loff_t *pos,
867 struct buffer_head **bh,
868 struct msdos_dir_entry **de)
869{
870 while (fat_get_entry(dir, pos, bh, de) >= 0) {
871 /* free entry or long name entry or volume label */
872 if (!IS_FREE((*de)->name) && !((*de)->attr & ATTR_VOLUME))
873 return 0;
874 }
875 return -ENOENT;
876}
877
878/*
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700879 * The ".." entry can not provide the "struct fat_slot_info" information
880 * for inode, nor a usable i_pos. So, this function provides some information
881 * only.
882 *
883 * Since this function walks through the on-disk inodes within a directory,
884 * callers are responsible for taking any locks necessary to prevent the
885 * directory from changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 */
887int fat_get_dotdot_entry(struct inode *dir, struct buffer_head **bh,
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700888 struct msdos_dir_entry **de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700890 loff_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700892 *de = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 while (fat_get_short_entry(dir, &offset, bh, de) >= 0) {
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700894 if (!strncmp((*de)->name, MSDOS_DOTDOT, MSDOS_NAME))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897 return -ENOENT;
898}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800899EXPORT_SYMBOL_GPL(fat_get_dotdot_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901/* See if directory is empty */
902int fat_dir_empty(struct inode *dir)
903{
904 struct buffer_head *bh;
905 struct msdos_dir_entry *de;
906 loff_t cpos;
907 int result = 0;
908
909 bh = NULL;
910 cpos = 0;
911 while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
912 if (strncmp(de->name, MSDOS_DOT , MSDOS_NAME) &&
913 strncmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
914 result = -ENOTEMPTY;
915 break;
916 }
917 }
918 brelse(bh);
919 return result;
920}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800921EXPORT_SYMBOL_GPL(fat_dir_empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923/*
924 * fat_subdirs counts the number of sub-directories of dir. It can be run
925 * on directories being created.
926 */
927int fat_subdirs(struct inode *dir)
928{
929 struct buffer_head *bh;
930 struct msdos_dir_entry *de;
931 loff_t cpos;
932 int count = 0;
933
934 bh = NULL;
935 cpos = 0;
936 while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
937 if (de->attr & ATTR_DIR)
938 count++;
939 }
940 brelse(bh);
941 return count;
942}
943
944/*
945 * Scans a directory for a given file (name points to its formatted name).
946 * Returns an error code or zero.
947 */
948int fat_scan(struct inode *dir, const unsigned char *name,
949 struct fat_slot_info *sinfo)
950{
951 struct super_block *sb = dir->i_sb;
952
953 sinfo->slot_off = 0;
954 sinfo->bh = NULL;
955 while (fat_get_short_entry(dir, &sinfo->slot_off, &sinfo->bh,
956 &sinfo->de) >= 0) {
957 if (!strncmp(sinfo->de->name, name, MSDOS_NAME)) {
958 sinfo->slot_off -= sizeof(*sinfo->de);
959 sinfo->nr_slots = 1;
960 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
961 return 0;
962 }
963 }
964 return -ENOENT;
965}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800966EXPORT_SYMBOL_GPL(fat_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Namjae Jeonf1e6fb02013-04-29 16:21:14 -0700968/*
969 * Scans a directory for a given logstart.
970 * Returns an error code or zero.
971 */
972int fat_scan_logstart(struct inode *dir, int i_logstart,
973 struct fat_slot_info *sinfo)
974{
975 struct super_block *sb = dir->i_sb;
976
977 sinfo->slot_off = 0;
978 sinfo->bh = NULL;
979 while (fat_get_short_entry(dir, &sinfo->slot_off, &sinfo->bh,
980 &sinfo->de) >= 0) {
981 if (fat_get_start(MSDOS_SB(sb), sinfo->de) == i_logstart) {
982 sinfo->slot_off -= sizeof(*sinfo->de);
983 sinfo->nr_slots = 1;
984 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
985 return 0;
986 }
987 }
988 return -ENOENT;
989}
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991static int __fat_remove_entries(struct inode *dir, loff_t pos, int nr_slots)
992{
993 struct super_block *sb = dir->i_sb;
994 struct buffer_head *bh;
995 struct msdos_dir_entry *de, *endp;
996 int err = 0, orig_slots;
997
998 while (nr_slots) {
999 bh = NULL;
1000 if (fat_get_entry(dir, &pos, &bh, &de) < 0) {
1001 err = -EIO;
1002 break;
1003 }
1004
1005 orig_slots = nr_slots;
1006 endp = (struct msdos_dir_entry *)(bh->b_data + sb->s_blocksize);
1007 while (nr_slots && de < endp) {
1008 de->name[0] = DELETED_FLAG;
1009 de++;
1010 nr_slots--;
1011 }
Al Virob5224122009-06-07 13:44:36 -04001012 mark_buffer_dirty_inode(bh, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (IS_DIRSYNC(dir))
1014 err = sync_dirty_buffer(bh);
1015 brelse(bh);
1016 if (err)
1017 break;
1018
1019 /* pos is *next* de's position, so this does `- sizeof(de)' */
1020 pos += ((orig_slots - nr_slots) * sizeof(*de)) - sizeof(*de);
1021 }
1022
1023 return err;
1024}
1025
1026int fat_remove_entries(struct inode *dir, struct fat_slot_info *sinfo)
1027{
Alexey Fisher869f58c2011-04-12 21:08:38 +09001028 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 struct msdos_dir_entry *de;
1030 struct buffer_head *bh;
1031 int err = 0, nr_slots;
1032
1033 /*
1034 * First stage: Remove the shortname. By this, the directory
1035 * entry is removed.
1036 */
1037 nr_slots = sinfo->nr_slots;
1038 de = sinfo->de;
1039 sinfo->de = NULL;
1040 bh = sinfo->bh;
1041 sinfo->bh = NULL;
1042 while (nr_slots && de >= (struct msdos_dir_entry *)bh->b_data) {
1043 de->name[0] = DELETED_FLAG;
1044 de--;
1045 nr_slots--;
1046 }
Al Virob5224122009-06-07 13:44:36 -04001047 mark_buffer_dirty_inode(bh, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (IS_DIRSYNC(dir))
1049 err = sync_dirty_buffer(bh);
1050 brelse(bh);
1051 if (err)
1052 return err;
1053 dir->i_version++;
1054
1055 if (nr_slots) {
1056 /*
1057 * Second stage: remove the remaining longname slots.
1058 * (This directory entry is already removed, and so return
1059 * the success)
1060 */
1061 err = __fat_remove_entries(dir, sinfo->slot_off, nr_slots);
1062 if (err) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001063 fat_msg(sb, KERN_WARNING,
1064 "Couldn't remove the long name slots");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066 }
1067
1068 dir->i_mtime = dir->i_atime = CURRENT_TIME_SEC;
1069 if (IS_DIRSYNC(dir))
1070 (void)fat_sync_inode(dir);
1071 else
1072 mark_inode_dirty(dir);
1073
1074 return 0;
1075}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001076EXPORT_SYMBOL_GPL(fat_remove_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078static int fat_zeroed_cluster(struct inode *dir, sector_t blknr, int nr_used,
1079 struct buffer_head **bhs, int nr_bhs)
1080{
1081 struct super_block *sb = dir->i_sb;
1082 sector_t last_blknr = blknr + MSDOS_SB(sb)->sec_per_clus;
1083 int err, i, n;
1084
1085 /* Zeroing the unused blocks on this cluster */
1086 blknr += nr_used;
1087 n = nr_used;
1088 while (blknr < last_blknr) {
1089 bhs[n] = sb_getblk(sb, blknr);
1090 if (!bhs[n]) {
1091 err = -ENOMEM;
1092 goto error;
1093 }
1094 memset(bhs[n]->b_data, 0, sb->s_blocksize);
1095 set_buffer_uptodate(bhs[n]);
Al Virob5224122009-06-07 13:44:36 -04001096 mark_buffer_dirty_inode(bhs[n], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 n++;
1099 blknr++;
1100 if (n == nr_bhs) {
1101 if (IS_DIRSYNC(dir)) {
1102 err = fat_sync_bhs(bhs, n);
1103 if (err)
1104 goto error;
1105 }
1106 for (i = 0; i < n; i++)
1107 brelse(bhs[i]);
1108 n = 0;
1109 }
1110 }
1111 if (IS_DIRSYNC(dir)) {
1112 err = fat_sync_bhs(bhs, n);
1113 if (err)
1114 goto error;
1115 }
1116 for (i = 0; i < n; i++)
1117 brelse(bhs[i]);
1118
1119 return 0;
1120
1121error:
1122 for (i = 0; i < n; i++)
1123 bforget(bhs[i]);
1124 return err;
1125}
1126
1127int fat_alloc_new_dir(struct inode *dir, struct timespec *ts)
1128{
1129 struct super_block *sb = dir->i_sb;
1130 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1131 struct buffer_head *bhs[MAX_BUF_PER_PAGE];
1132 struct msdos_dir_entry *de;
1133 sector_t blknr;
1134 __le16 date, time;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001135 u8 time_cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 int err, cluster;
1137
1138 err = fat_alloc_clusters(dir, &cluster, 1);
1139 if (err)
1140 goto error;
1141
1142 blknr = fat_clus_to_blknr(sbi, cluster);
1143 bhs[0] = sb_getblk(sb, blknr);
1144 if (!bhs[0]) {
1145 err = -ENOMEM;
1146 goto error_free;
1147 }
1148
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001149 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 de = (struct msdos_dir_entry *)bhs[0]->b_data;
1152 /* filling the new directory slots ("." and ".." entries) */
1153 memcpy(de[0].name, MSDOS_DOT, MSDOS_NAME);
1154 memcpy(de[1].name, MSDOS_DOTDOT, MSDOS_NAME);
1155 de->attr = de[1].attr = ATTR_DIR;
1156 de[0].lcase = de[1].lcase = 0;
1157 de[0].time = de[1].time = time;
1158 de[0].date = de[1].date = date;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (sbi->options.isvfat) {
1160 /* extra timestamps */
1161 de[0].ctime = de[1].ctime = time;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001162 de[0].ctime_cs = de[1].ctime_cs = time_cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date;
1164 } else {
1165 de[0].ctime = de[1].ctime = 0;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001166 de[0].ctime_cs = de[1].ctime_cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = 0;
1168 }
Namjae Jeon4b637092012-10-04 17:14:41 -07001169 fat_set_start(&de[0], cluster);
1170 fat_set_start(&de[1], MSDOS_I(dir)->i_logstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 de[0].size = de[1].size = 0;
1172 memset(de + 2, 0, sb->s_blocksize - 2 * sizeof(*de));
1173 set_buffer_uptodate(bhs[0]);
Al Virob5224122009-06-07 13:44:36 -04001174 mark_buffer_dirty_inode(bhs[0], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 err = fat_zeroed_cluster(dir, blknr, 1, bhs, MAX_BUF_PER_PAGE);
1177 if (err)
1178 goto error_free;
1179
1180 return cluster;
1181
1182error_free:
1183 fat_free_clusters(dir, cluster);
1184error:
1185 return err;
1186}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001187EXPORT_SYMBOL_GPL(fat_alloc_new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189static int fat_add_new_entries(struct inode *dir, void *slots, int nr_slots,
1190 int *nr_cluster, struct msdos_dir_entry **de,
1191 struct buffer_head **bh, loff_t *i_pos)
1192{
1193 struct super_block *sb = dir->i_sb;
1194 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1195 struct buffer_head *bhs[MAX_BUF_PER_PAGE];
1196 sector_t blknr, start_blknr, last_blknr;
1197 unsigned long size, copy;
1198 int err, i, n, offset, cluster[2];
1199
1200 /*
1201 * The minimum cluster size is 512bytes, and maximum entry
1202 * size is 32*slots (672bytes). So, iff the cluster size is
1203 * 512bytes, we may need two clusters.
1204 */
1205 size = nr_slots * sizeof(struct msdos_dir_entry);
1206 *nr_cluster = (size + (sbi->cluster_size - 1)) >> sbi->cluster_bits;
1207 BUG_ON(*nr_cluster > 2);
1208
1209 err = fat_alloc_clusters(dir, cluster, *nr_cluster);
1210 if (err)
1211 goto error;
1212
1213 /*
1214 * First stage: Fill the directory entry. NOTE: This cluster
1215 * is not referenced from any inode yet, so updates order is
1216 * not important.
1217 */
1218 i = n = copy = 0;
1219 do {
1220 start_blknr = blknr = fat_clus_to_blknr(sbi, cluster[i]);
1221 last_blknr = start_blknr + sbi->sec_per_clus;
1222 while (blknr < last_blknr) {
1223 bhs[n] = sb_getblk(sb, blknr);
1224 if (!bhs[n]) {
1225 err = -ENOMEM;
1226 goto error_nomem;
1227 }
1228
1229 /* fill the directory entry */
1230 copy = min(size, sb->s_blocksize);
1231 memcpy(bhs[n]->b_data, slots, copy);
1232 slots += copy;
1233 size -= copy;
1234 set_buffer_uptodate(bhs[n]);
Al Virob5224122009-06-07 13:44:36 -04001235 mark_buffer_dirty_inode(bhs[n], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (!size)
1237 break;
1238 n++;
1239 blknr++;
1240 }
1241 } while (++i < *nr_cluster);
1242
1243 memset(bhs[n]->b_data + copy, 0, sb->s_blocksize - copy);
1244 offset = copy - sizeof(struct msdos_dir_entry);
1245 get_bh(bhs[n]);
1246 *bh = bhs[n];
1247 *de = (struct msdos_dir_entry *)((*bh)->b_data + offset);
1248 *i_pos = fat_make_i_pos(sb, *bh, *de);
1249
1250 /* Second stage: clear the rest of cluster, and write outs */
1251 err = fat_zeroed_cluster(dir, start_blknr, ++n, bhs, MAX_BUF_PER_PAGE);
1252 if (err)
1253 goto error_free;
1254
1255 return cluster[0];
1256
1257error_free:
1258 brelse(*bh);
1259 *bh = NULL;
1260 n = 0;
1261error_nomem:
1262 for (i = 0; i < n; i++)
1263 bforget(bhs[i]);
1264 fat_free_clusters(dir, cluster[0]);
1265error:
1266 return err;
1267}
1268
1269int fat_add_entries(struct inode *dir, void *slots, int nr_slots,
1270 struct fat_slot_info *sinfo)
1271{
1272 struct super_block *sb = dir->i_sb;
1273 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1274 struct buffer_head *bh, *prev, *bhs[3]; /* 32*slots (672bytes) */
Jonas Aberg8c320c02011-08-17 19:10:06 +09001275 struct msdos_dir_entry *uninitialized_var(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 int err, free_slots, i, nr_bhs;
1277 loff_t pos, i_pos;
1278
1279 sinfo->nr_slots = nr_slots;
1280
Ravishankar Nc39540c2012-12-20 15:05:46 -08001281 /* First stage: search free directory entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 free_slots = nr_bhs = 0;
1283 bh = prev = NULL;
1284 pos = 0;
1285 err = -ENOSPC;
1286 while (fat_get_entry(dir, &pos, &bh, &de) > -1) {
1287 /* check the maximum size of directory */
1288 if (pos >= FAT_MAX_DIR_SIZE)
1289 goto error;
1290
1291 if (IS_FREE(de->name)) {
1292 if (prev != bh) {
1293 get_bh(bh);
1294 bhs[nr_bhs] = prev = bh;
1295 nr_bhs++;
1296 }
1297 free_slots++;
1298 if (free_slots == nr_slots)
1299 goto found;
1300 } else {
1301 for (i = 0; i < nr_bhs; i++)
1302 brelse(bhs[i]);
1303 prev = NULL;
1304 free_slots = nr_bhs = 0;
1305 }
1306 }
1307 if (dir->i_ino == MSDOS_ROOT_INO) {
1308 if (sbi->fat_bits != 32)
1309 goto error;
1310 } else if (MSDOS_I(dir)->i_start == 0) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001311 fat_msg(sb, KERN_ERR, "Corrupted directory (i_pos %lld)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 MSDOS_I(dir)->i_pos);
1313 err = -EIO;
1314 goto error;
1315 }
1316
1317found:
1318 err = 0;
1319 pos -= free_slots * sizeof(*de);
1320 nr_slots -= free_slots;
1321 if (free_slots) {
1322 /*
1323 * Second stage: filling the free entries with new entries.
1324 * NOTE: If this slots has shortname, first, we write
1325 * the long name slots, then write the short name.
1326 */
1327 int size = free_slots * sizeof(*de);
1328 int offset = pos & (sb->s_blocksize - 1);
1329 int long_bhs = nr_bhs - (nr_slots == 0);
1330
1331 /* Fill the long name slots. */
1332 for (i = 0; i < long_bhs; i++) {
1333 int copy = min_t(int, sb->s_blocksize - offset, size);
1334 memcpy(bhs[i]->b_data + offset, slots, copy);
Al Virob5224122009-06-07 13:44:36 -04001335 mark_buffer_dirty_inode(bhs[i], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 offset = 0;
1337 slots += copy;
1338 size -= copy;
1339 }
1340 if (long_bhs && IS_DIRSYNC(dir))
1341 err = fat_sync_bhs(bhs, long_bhs);
1342 if (!err && i < nr_bhs) {
1343 /* Fill the short name slot. */
1344 int copy = min_t(int, sb->s_blocksize - offset, size);
1345 memcpy(bhs[i]->b_data + offset, slots, copy);
Al Virob5224122009-06-07 13:44:36 -04001346 mark_buffer_dirty_inode(bhs[i], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (IS_DIRSYNC(dir))
1348 err = sync_dirty_buffer(bhs[i]);
1349 }
1350 for (i = 0; i < nr_bhs; i++)
1351 brelse(bhs[i]);
1352 if (err)
1353 goto error_remove;
1354 }
1355
1356 if (nr_slots) {
1357 int cluster, nr_cluster;
1358
1359 /*
1360 * Third stage: allocate the cluster for new entries.
1361 * And initialize the cluster with new entries, then
1362 * add the cluster to dir.
1363 */
1364 cluster = fat_add_new_entries(dir, slots, nr_slots, &nr_cluster,
1365 &de, &bh, &i_pos);
1366 if (cluster < 0) {
1367 err = cluster;
1368 goto error_remove;
1369 }
1370 err = fat_chain_add(dir, cluster, nr_cluster);
1371 if (err) {
1372 fat_free_clusters(dir, cluster);
1373 goto error_remove;
1374 }
1375 if (dir->i_size & (sbi->cluster_size - 1)) {
Denis Karpov85c78592009-06-04 02:34:22 +09001376 fat_fs_error(sb, "Odd directory size");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 dir->i_size = (dir->i_size + sbi->cluster_size - 1)
1378 & ~((loff_t)sbi->cluster_size - 1);
1379 }
1380 dir->i_size += nr_cluster << sbi->cluster_bits;
1381 MSDOS_I(dir)->mmu_private += nr_cluster << sbi->cluster_bits;
1382 }
1383 sinfo->slot_off = pos;
1384 sinfo->de = de;
1385 sinfo->bh = bh;
1386 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
1387
1388 return 0;
1389
1390error:
1391 brelse(bh);
1392 for (i = 0; i < nr_bhs; i++)
1393 brelse(bhs[i]);
1394 return err;
1395
1396error_remove:
1397 brelse(bh);
1398 if (free_slots)
1399 __fat_remove_entries(dir, pos, free_slots);
1400 return err;
1401}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001402EXPORT_SYMBOL_GPL(fat_add_entries);