blob: c5d6bb939d191d1f7a0219174138fb540a48fdb1 [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
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/buffer_head.h>
David Howells188f83d2006-08-31 12:50:04 +020020#include <linux/compat.h>
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -070021#include <linux/uaccess.h>
Andy Shevchenko3ed3dec2010-03-16 05:48:08 +090022#include <linux/kernel.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080023#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alan Stern74675a52009-04-30 10:08:18 -040025/*
26 * Maximum buffer size of short name.
27 * [(MSDOS_NAME + '.') * max one char + nul]
28 * For msdos style, ['.' (hidden) + MSDOS_NAME + '.' + nul]
29 */
30#define FAT_MAX_SHORT_SIZE ((MSDOS_NAME + 1) * NLS_MAX_CHARSET_SIZE + 1)
31/*
32 * Maximum buffer size of unicode chars from slots.
33 * [(max longname slots * 13 (size in a slot) + nul) * sizeof(wchar_t)]
34 */
35#define FAT_MAX_UNI_CHARS ((MSDOS_SLOTS - 1) * 13 + 1)
36#define FAT_MAX_UNI_SIZE (FAT_MAX_UNI_CHARS * sizeof(wchar_t))
37
Steven J. Magnanideb82742012-07-30 14:42:16 -070038static inline unsigned char fat_tolower(unsigned char c)
39{
40 return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static inline loff_t fat_make_i_pos(struct super_block *sb,
44 struct buffer_head *bh,
45 struct msdos_dir_entry *de)
46{
47 return ((loff_t)bh->b_blocknr << MSDOS_SB(sb)->dir_per_block_bits)
48 | (de - (struct msdos_dir_entry *)bh->b_data);
49}
50
Karsten Wiesef3ef6f62005-09-06 15:17:12 -070051static inline void fat_dir_readahead(struct inode *dir, sector_t iblock,
52 sector_t phys)
53{
54 struct super_block *sb = dir->i_sb;
55 struct msdos_sb_info *sbi = MSDOS_SB(sb);
56 struct buffer_head *bh;
57 int sec;
58
59 /* This is not a first sector of cluster, or sec_per_clus == 1 */
60 if ((iblock & (sbi->sec_per_clus - 1)) || sbi->sec_per_clus == 1)
61 return;
62 /* root dir of FAT12/FAT16 */
63 if ((sbi->fat_bits != 32) && (dir->i_ino == MSDOS_ROOT_INO))
64 return;
65
OGAWA Hirofumi83b7c992006-01-08 01:02:09 -080066 bh = sb_find_get_block(sb, phys);
67 if (bh == NULL || !buffer_uptodate(bh)) {
Karsten Wiesef3ef6f62005-09-06 15:17:12 -070068 for (sec = 0; sec < sbi->sec_per_clus; sec++)
69 sb_breadahead(sb, phys + sec);
70 }
71 brelse(bh);
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* Returns the inode number of the directory entry at offset pos. If bh is
75 non-NULL, it is brelse'd before. Pos is incremented. The buffer header is
76 returned in bh.
77 AV. Most often we do it item-by-item. Makes sense to optimize.
78 AV. OK, there we go: if both bh and de are non-NULL we assume that we just
79 AV. want the next entry (took one explicit de=NULL in vfat/namei.c).
80 AV. It's done in fat_get_entry() (inlined), here the slow case lives.
81 AV. Additionally, when we return -1 (i.e. reached the end of directory)
82 AV. we make bh NULL.
83 */
84static int fat__get_entry(struct inode *dir, loff_t *pos,
85 struct buffer_head **bh, struct msdos_dir_entry **de)
86{
87 struct super_block *sb = dir->i_sb;
88 sector_t phys, iblock;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080089 unsigned long mapped_blocks;
90 int err, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92next:
93 if (*bh)
94 brelse(*bh);
95
96 *bh = NULL;
97 iblock = *pos >> sb->s_blocksize_bits;
OGAWA Hirofumi2bdf67e2008-11-06 12:53:57 -080098 err = fat_bmap(dir, iblock, &phys, &mapped_blocks, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (err || !phys)
100 return -1; /* beyond EOF or error */
101
Karsten Wiesef3ef6f62005-09-06 15:17:12 -0700102 fat_dir_readahead(dir, iblock, phys);
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *bh = sb_bread(sb, phys);
105 if (*bh == NULL) {
Namjae Jeonf0aac612012-05-31 16:26:14 -0700106 fat_msg_ratelimit(sb, KERN_ERR,
107 "Directory bread(block %llu) failed", (llu)phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 /* skip this block */
109 *pos = (iblock + 1) << sb->s_blocksize_bits;
110 goto next;
111 }
112
113 offset = *pos & (sb->s_blocksize - 1);
114 *pos += sizeof(struct msdos_dir_entry);
115 *de = (struct msdos_dir_entry *)((*bh)->b_data + offset);
116
117 return 0;
118}
119
120static inline int fat_get_entry(struct inode *dir, loff_t *pos,
121 struct buffer_head **bh,
122 struct msdos_dir_entry **de)
123{
124 /* Fast stuff first */
125 if (*bh && *de &&
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700126 (*de - (struct msdos_dir_entry *)(*bh)->b_data) <
127 MSDOS_SB(dir->i_sb)->dir_per_block - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 *pos += sizeof(struct msdos_dir_entry);
129 (*de)++;
130 return 0;
131 }
132 return fat__get_entry(dir, pos, bh, de);
133}
134
135/*
Alexey Dobriyan4de151d2006-03-22 00:13:35 +0100136 * Convert Unicode 16 to UTF-8, translated Unicode, or ASCII.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * If uni_xlate is enabled and we can't get a 1:1 conversion, use a
138 * colon as an escape character since it is normally invalid on the vfat
139 * filesystem. The following four characters are the hexadecimal digits
140 * of Unicode value. This lets us do a full dump and restore of Unicode
141 * filenames. We could get into some trouble with long Unicode names,
142 * but ignore that right now.
143 * Ahem... Stack smashing in ring 0 isn't fun. Fixed.
144 */
Alexey Fisher869f58c2011-04-12 21:08:38 +0900145static int uni16_to_x8(struct super_block *sb, unsigned char *ascii,
146 const wchar_t *uni, int len, struct nls_table *nls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Alexey Fisher869f58c2011-04-12 21:08:38 +0900148 int uni_xlate = MSDOS_SB(sb)->options.unicode_xlate;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700149 const wchar_t *ip;
150 wchar_t ec;
Andy Shevchenko3ed3dec2010-03-16 05:48:08 +0900151 unsigned char *op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int charlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 ip = uni;
155 op = ascii;
156
Keith Mokf22032b2008-04-28 02:16:29 -0700157 while (*ip && ((len - NLS_MAX_CHARSET_SIZE) > 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 ec = *ip++;
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700159 charlen = nls->uni2char(ec, op, NLS_MAX_CHARSET_SIZE);
160 if (charlen > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 op += charlen;
Keith Mokf22032b2008-04-28 02:16:29 -0700162 len -= charlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 } else {
164 if (uni_xlate == 1) {
Andy Shevchenko3ed3dec2010-03-16 05:48:08 +0900165 *op++ = ':';
Andy Shevchenko0a90e0f2011-10-31 17:12:57 -0700166 op = hex_byte_pack(op, ec >> 8);
167 op = hex_byte_pack(op, ec);
Keith Mokf22032b2008-04-28 02:16:29 -0700168 len -= 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 } else {
170 *op++ = '?';
Keith Mokf22032b2008-04-28 02:16:29 -0700171 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
Keith Mokf22032b2008-04-28 02:16:29 -0700175
176 if (unlikely(*ip)) {
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700177 fat_msg(sb, KERN_WARNING,
178 "filename was truncated while converting.");
Keith Mokf22032b2008-04-28 02:16:29 -0700179 }
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *op = 0;
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700182 return op - ascii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Alexey Fisher869f58c2011-04-12 21:08:38 +0900185static inline int fat_uni_to_x8(struct super_block *sb, const wchar_t *uni,
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700186 unsigned char *buf, int size)
187{
Alexey Fisher869f58c2011-04-12 21:08:38 +0900188 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700189 if (sbi->options.utf8)
Alan Stern74675a52009-04-30 10:08:18 -0400190 return utf16s_to_utf8s(uni, FAT_MAX_UNI_CHARS,
191 UTF16_HOST_ENDIAN, buf, size);
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700192 else
Alexey Fisher869f58c2011-04-12 21:08:38 +0900193 return uni16_to_x8(sb, buf, uni, size, sbi->nls_io);
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static inline int
197fat_short2uni(struct nls_table *t, unsigned char *c, int clen, wchar_t *uni)
198{
199 int charlen;
200
201 charlen = t->char2uni(c, clen, uni);
202 if (charlen < 0) {
203 *uni = 0x003f; /* a question mark */
204 charlen = 1;
205 }
206 return charlen;
207}
208
209static inline int
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700210fat_short2lower_uni(struct nls_table *t, unsigned char *c,
211 int clen, wchar_t *uni)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 int charlen;
214 wchar_t wc;
215
216 charlen = t->char2uni(c, clen, &wc);
217 if (charlen < 0) {
218 *uni = 0x003f; /* a question mark */
219 charlen = 1;
220 } else if (charlen <= 1) {
221 unsigned char nc = t->charset2lower[*c];
222
223 if (!nc)
224 nc = *c;
225
Cruz Julian Bishopf08b4982012-10-04 17:14:57 -0700226 charlen = t->char2uni(&nc, 1, uni);
227 if (charlen < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 *uni = 0x003f; /* a question mark */
229 charlen = 1;
230 }
231 } else
232 *uni = wc;
233
234 return charlen;
235}
236
237static inline int
238fat_shortname2uni(struct nls_table *nls, unsigned char *buf, int buf_size,
239 wchar_t *uni_buf, unsigned short opt, int lower)
240{
241 int len = 0;
242
243 if (opt & VFAT_SFN_DISPLAY_LOWER)
244 len = fat_short2lower_uni(nls, buf, buf_size, uni_buf);
245 else if (opt & VFAT_SFN_DISPLAY_WIN95)
246 len = fat_short2uni(nls, buf, buf_size, uni_buf);
247 else if (opt & VFAT_SFN_DISPLAY_WINNT) {
248 if (lower)
249 len = fat_short2lower_uni(nls, buf, buf_size, uni_buf);
250 else
251 len = fat_short2uni(nls, buf, buf_size, uni_buf);
252 } else
253 len = fat_short2uni(nls, buf, buf_size, uni_buf);
254
255 return len;
256}
257
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700258static inline int fat_name_match(struct msdos_sb_info *sbi,
259 const unsigned char *a, int a_len,
260 const unsigned char *b, int b_len)
261{
262 if (a_len != b_len)
263 return 0;
264
265 if (sbi->options.name_check != 's')
266 return !nls_strnicmp(sbi->nls_io, a, b, a_len);
267 else
268 return !memcmp(a, b, a_len);
269}
270
Pekka Enbergad2c1602005-10-30 15:03:50 -0800271enum { PARSE_INVALID = 1, PARSE_NOT_LONGNAME, PARSE_EOF, };
272
273/**
274 * fat_parse_long - Parse extended directory entry.
275 *
276 * This function returns zero on success, negative value on error, or one of
277 * the following:
278 *
279 * %PARSE_INVALID - Directory entry is invalid.
280 * %PARSE_NOT_LONGNAME - Directory entry does not contain longname.
281 * %PARSE_EOF - Directory has no more entries.
282 */
283static int fat_parse_long(struct inode *dir, loff_t *pos,
284 struct buffer_head **bh, struct msdos_dir_entry **de,
285 wchar_t **unicode, unsigned char *nr_slots)
286{
287 struct msdos_dir_slot *ds;
288 unsigned char id, slot, slots, alias_checksum;
289
290 if (!*unicode) {
OGAWA Hirofumic7a6c4e2008-04-28 02:16:29 -0700291 *unicode = __getname();
Pekka Enbergad2c1602005-10-30 15:03:50 -0800292 if (!*unicode) {
293 brelse(*bh);
294 return -ENOMEM;
295 }
296 }
297parse_long:
298 slots = 0;
299 ds = (struct msdos_dir_slot *)*de;
300 id = ds->id;
301 if (!(id & 0x40))
302 return PARSE_INVALID;
303 slots = id & ~0x40;
304 if (slots > 20 || !slots) /* ceil(256 * 2 / 26) */
305 return PARSE_INVALID;
306 *nr_slots = slots;
307 alias_checksum = ds->alias_checksum;
308
309 slot = slots;
310 while (1) {
311 int offset;
312
313 slot--;
314 offset = slot * 13;
315 fat16_towchar(*unicode + offset, ds->name0_4, 5);
316 fat16_towchar(*unicode + offset + 5, ds->name5_10, 6);
317 fat16_towchar(*unicode + offset + 11, ds->name11_12, 2);
318
319 if (ds->id & 0x40)
320 (*unicode)[offset + 13] = 0;
321 if (fat_get_entry(dir, pos, bh, de) < 0)
322 return PARSE_EOF;
323 if (slot == 0)
324 break;
325 ds = (struct msdos_dir_slot *)*de;
326 if (ds->attr != ATTR_EXT)
327 return PARSE_NOT_LONGNAME;
328 if ((ds->id & ~0x40) != slot)
329 goto parse_long;
330 if (ds->alias_checksum != alias_checksum)
331 goto parse_long;
332 }
333 if ((*de)->name[0] == DELETED_FLAG)
334 return PARSE_INVALID;
335 if ((*de)->attr == ATTR_EXT)
336 goto parse_long;
337 if (IS_FREE((*de)->name) || ((*de)->attr & ATTR_VOLUME))
338 return PARSE_INVALID;
339 if (fat_checksum((*de)->name) != alias_checksum)
340 *nr_slots = 0;
341
342 return 0;
343}
344
Steven J. Magnanideb82742012-07-30 14:42:16 -0700345/**
346 * fat_parse_short - Parse MS-DOS (short) directory entry.
347 * @sb: superblock
348 * @de: directory entry to parse
349 * @name: FAT_MAX_SHORT_SIZE array in which to place extracted name
350 * @dot_hidden: Nonzero == prepend '.' to names with ATTR_HIDDEN
351 *
352 * Returns the number of characters extracted into 'name'.
353 */
354static int fat_parse_short(struct super_block *sb,
355 const struct msdos_dir_entry *de,
356 unsigned char *name, int dot_hidden)
357{
358 const struct msdos_sb_info *sbi = MSDOS_SB(sb);
359 int isvfat = sbi->options.isvfat;
360 int nocase = sbi->options.nocase;
361 unsigned short opt_shortname = sbi->options.shortname;
362 struct nls_table *nls_disk = sbi->nls_disk;
363 wchar_t uni_name[14];
364 unsigned char c, work[MSDOS_NAME];
365 unsigned char *ptname = name;
366 int chi, chl, i, j, k;
367 int dotoffset = 0;
368 int name_len = 0, uni_len = 0;
369
370 if (!isvfat && dot_hidden && (de->attr & ATTR_HIDDEN)) {
371 *ptname++ = '.';
372 dotoffset = 1;
373 }
374
375 memcpy(work, de->name, sizeof(work));
376 /* see namei.c, msdos_format_name */
377 if (work[0] == 0x05)
378 work[0] = 0xE5;
379
380 /* Filename */
381 for (i = 0, j = 0; i < 8;) {
382 c = work[i];
383 if (!c)
384 break;
385 chl = fat_shortname2uni(nls_disk, &work[i], 8 - i,
386 &uni_name[j++], opt_shortname,
387 de->lcase & CASE_LOWER_BASE);
388 if (chl <= 1) {
389 if (!isvfat)
390 ptname[i] = nocase ? c : fat_tolower(c);
391 i++;
392 if (c != ' ') {
393 name_len = i;
394 uni_len = j;
395 }
396 } else {
397 uni_len = j;
398 if (isvfat)
399 i += min(chl, 8-i);
400 else {
401 for (chi = 0; chi < chl && i < 8; chi++, i++)
402 ptname[i] = work[i];
403 }
404 if (chl)
405 name_len = i;
406 }
407 }
408
409 i = name_len;
410 j = uni_len;
411 fat_short2uni(nls_disk, ".", 1, &uni_name[j++]);
412 if (!isvfat)
413 ptname[i] = '.';
414 i++;
415
416 /* Extension */
417 for (k = 8; k < MSDOS_NAME;) {
418 c = work[k];
419 if (!c)
420 break;
421 chl = fat_shortname2uni(nls_disk, &work[k], MSDOS_NAME - k,
422 &uni_name[j++], opt_shortname,
423 de->lcase & CASE_LOWER_EXT);
424 if (chl <= 1) {
425 k++;
426 if (!isvfat)
427 ptname[i] = nocase ? c : fat_tolower(c);
428 i++;
429 if (c != ' ') {
430 name_len = i;
431 uni_len = j;
432 }
433 } else {
434 uni_len = j;
435 if (isvfat) {
436 int offset = min(chl, MSDOS_NAME-k);
437 k += offset;
438 i += offset;
439 } else {
440 for (chi = 0; chi < chl && k < MSDOS_NAME;
441 chi++, i++, k++) {
442 ptname[i] = work[k];
443 }
444 }
445 if (chl)
446 name_len = i;
447 }
448 }
449
450 if (name_len > 0) {
451 name_len += dotoffset;
452
453 if (sbi->options.isvfat) {
454 uni_name[uni_len] = 0x0000;
455 name_len = fat_uni_to_x8(sb, uni_name, name,
456 FAT_MAX_SHORT_SIZE);
457 }
458 }
459
460 return name_len;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
Ravishankar Nc39540c2012-12-20 15:05:46 -0800464 * Return values: negative -> error/not found, 0 -> found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 */
466int fat_search_long(struct inode *inode, const unsigned char *name,
467 int name_len, struct fat_slot_info *sinfo)
468{
469 struct super_block *sb = inode->i_sb;
470 struct msdos_sb_info *sbi = MSDOS_SB(sb);
471 struct buffer_head *bh = NULL;
472 struct msdos_dir_entry *de;
Keith Mokf22032b2008-04-28 02:16:29 -0700473 unsigned char nr_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 wchar_t *unicode = NULL;
OGAWA Hirofumi98a15162008-07-25 01:46:44 -0700475 unsigned char bufname[FAT_MAX_SHORT_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 loff_t cpos = 0;
Steven J. Magnanideb82742012-07-30 14:42:16 -0700477 int err, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 err = -ENOENT;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700480 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700482 goto end_of_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483parse_record:
484 nr_slots = 0;
485 if (de->name[0] == DELETED_FLAG)
486 continue;
487 if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
488 continue;
489 if (de->attr != ATTR_EXT && IS_FREE(de->name))
490 continue;
491 if (de->attr == ATTR_EXT) {
Pekka Enbergad2c1602005-10-30 15:03:50 -0800492 int status = fat_parse_long(inode, &cpos, &bh, &de,
493 &unicode, &nr_slots);
Darren Jenkins52e9d9f2008-11-06 12:53:48 -0800494 if (status < 0) {
495 err = status;
496 goto end_of_dir;
497 } else if (status == PARSE_INVALID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 continue;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800499 else if (status == PARSE_NOT_LONGNAME)
500 goto parse_record;
501 else if (status == PARSE_EOF)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700502 goto end_of_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Steven J. Magnanideb82742012-07-30 14:42:16 -0700505 /* Never prepend '.' to hidden files here.
506 * That is done only for msdos mounts (and only when
507 * 'dotsOK=yes'); if we are executing here, it is in the
508 * context of a vfat mount.
509 */
510 len = fat_parse_short(sb, de, bufname, 0);
511 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 continue;
513
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700514 /* Compare shortname */
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700515 if (fat_name_match(sbi, name, name_len, bufname, len))
516 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 if (nr_slots) {
OGAWA Hirofumi98a15162008-07-25 01:46:44 -0700519 void *longname = unicode + FAT_MAX_UNI_CHARS;
520 int size = PATH_MAX - FAT_MAX_UNI_SIZE;
521
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700522 /* Compare longname */
Alexey Fisher869f58c2011-04-12 21:08:38 +0900523 len = fat_uni_to_x8(sb, unicode, longname, size);
OGAWA Hirofumi98a15162008-07-25 01:46:44 -0700524 if (fat_name_match(sbi, name, name_len, longname, len))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700525 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527 }
528
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700529found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 nr_slots++; /* include the de */
531 sinfo->slot_off = cpos - nr_slots * sizeof(*de);
532 sinfo->nr_slots = nr_slots;
533 sinfo->de = de;
534 sinfo->bh = bh;
535 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
536 err = 0;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700537end_of_dir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (unicode)
OGAWA Hirofumic7a6c4e2008-04-28 02:16:29 -0700539 __putname(unicode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 return err;
542}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800543EXPORT_SYMBOL_GPL(fat_search_long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545struct fat_ioctl_filldir_callback {
Al Viro2c6a2472013-05-22 18:37:16 -0400546 struct dir_context ctx;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700547 void __user *dirent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 int result;
549 /* for dir ioctl */
550 const char *longname;
551 int long_len;
552 const char *shortname;
553 int short_len;
554};
555
Al Viro2c6a2472013-05-22 18:37:16 -0400556static int __fat_readdir(struct inode *inode, struct file *file,
557 struct dir_context *ctx, int short_only,
558 struct fat_ioctl_filldir_callback *both)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct super_block *sb = inode->i_sb;
561 struct msdos_sb_info *sbi = MSDOS_SB(sb);
562 struct buffer_head *bh;
563 struct msdos_dir_entry *de;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700564 unsigned char nr_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 wchar_t *unicode = NULL;
Steven J. Magnanideb82742012-07-30 14:42:16 -0700566 unsigned char bufname[FAT_MAX_SHORT_SIZE];
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700567 int isvfat = sbi->options.isvfat;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700568 const char *fill_name = NULL;
Al Viro2c6a2472013-05-22 18:37:16 -0400569 int fake_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 loff_t cpos;
Steven J. Magnanideb82742012-07-30 14:42:16 -0700571 int short_len = 0, fill_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int ret = 0;
573
Marco Stornellie40b34c2012-10-06 12:40:03 +0200574 mutex_lock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Al Viro2c6a2472013-05-22 18:37:16 -0400576 cpos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* Fake . and .. for the root directory. */
578 if (inode->i_ino == MSDOS_ROOT_INO) {
Al Viro2c6a2472013-05-22 18:37:16 -0400579 if (!dir_emit_dots(file, ctx))
580 goto out;
581 if (ctx->pos == 2) {
582 fake_offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 cpos = 0;
584 }
585 }
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700586 if (cpos & (sizeof(struct msdos_dir_entry) - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 ret = -ENOENT;
588 goto out;
589 }
590
591 bh = NULL;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700592get_new:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700594 goto end_of_dir;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800595parse_record:
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700596 nr_slots = 0;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700597 /*
598 * Check for long filename entry, but if short_only, we don't
599 * need to parse long filename.
600 */
601 if (isvfat && !short_only) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (de->name[0] == DELETED_FLAG)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700603 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700605 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (de->attr != ATTR_EXT && IS_FREE(de->name))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700607 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 } else {
609 if ((de->attr & ATTR_VOLUME) || IS_FREE(de->name))
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700610 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 if (isvfat && de->attr == ATTR_EXT) {
Pekka Enbergad2c1602005-10-30 15:03:50 -0800614 int status = fat_parse_long(inode, &cpos, &bh, &de,
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700615 &unicode, &nr_slots);
Pekka Enbergad2c1602005-10-30 15:03:50 -0800616 if (status < 0) {
Al Viro2c6a2472013-05-22 18:37:16 -0400617 ctx->pos = cpos;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800618 ret = status;
619 goto out;
620 } else if (status == PARSE_INVALID)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700621 goto record_end;
Pekka Enbergad2c1602005-10-30 15:03:50 -0800622 else if (status == PARSE_NOT_LONGNAME)
623 goto parse_record;
624 else if (status == PARSE_EOF)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700625 goto end_of_dir;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700626
627 if (nr_slots) {
628 void *longname = unicode + FAT_MAX_UNI_CHARS;
629 int size = PATH_MAX - FAT_MAX_UNI_SIZE;
Alexey Fisher869f58c2011-04-12 21:08:38 +0900630 int len = fat_uni_to_x8(sb, unicode, longname, size);
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700631
632 fill_name = longname;
633 fill_len = len;
634 /* !both && !short_only, so we don't need shortname. */
635 if (!both)
636 goto start_filldir;
Al Viro2c6a2472013-05-22 18:37:16 -0400637
638 short_len = fat_parse_short(sb, de, bufname,
639 sbi->options.dotsOK);
640 if (short_len == 0)
641 goto record_end;
642 /* hack for fat_ioctl_filldir() */
643 both->longname = fill_name;
644 both->long_len = fill_len;
645 both->shortname = bufname;
646 both->short_len = short_len;
647 fill_name = NULL;
648 fill_len = 0;
649 goto start_filldir;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652
Steven J. Magnanideb82742012-07-30 14:42:16 -0700653 short_len = fat_parse_short(sb, de, bufname, sbi->options.dotsOK);
654 if (short_len == 0)
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700655 goto record_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Al Viro2c6a2472013-05-22 18:37:16 -0400657 fill_name = bufname;
658 fill_len = short_len;
OGAWA Hirofumidcd8c53f2008-07-25 01:46:44 -0700659
660start_filldir:
Al Viro2c6a2472013-05-22 18:37:16 -0400661 if (!fake_offset)
662 ctx->pos = cpos - (nr_slots + 1) * sizeof(struct msdos_dir_entry);
663
664 if (!memcmp(de->name, MSDOS_DOT, MSDOS_NAME)) {
665 if (!dir_emit_dot(file, ctx))
666 goto fill_failed;
667 } else if (!memcmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
668 if (!dir_emit_dotdot(file, ctx))
669 goto fill_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 } else {
Al Viro2c6a2472013-05-22 18:37:16 -0400671 unsigned long inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 loff_t i_pos = fat_make_i_pos(sb, bh, de);
673 struct inode *tmp = fat_iget(sb, i_pos);
674 if (tmp) {
675 inum = tmp->i_ino;
676 iput(tmp);
677 } else
678 inum = iunique(sb, MSDOS_ROOT_INO);
Al Viro2c6a2472013-05-22 18:37:16 -0400679 if (!dir_emit(ctx, fill_name, fill_len, inum,
680 (de->attr & ATTR_DIR) ? DT_DIR : DT_REG))
681 goto fill_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700684record_end:
Al Viro2c6a2472013-05-22 18:37:16 -0400685 fake_offset = 0;
686 ctx->pos = cpos;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700687 goto get_new;
688end_of_dir:
Al Viro2c6a2472013-05-22 18:37:16 -0400689 ctx->pos = cpos;
OGAWA Hirofumid6886112008-07-25 01:46:43 -0700690fill_failed:
Karsten Wiesef3ef6f62005-09-06 15:17:12 -0700691 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (unicode)
OGAWA Hirofumic7a6c4e2008-04-28 02:16:29 -0700693 __putname(unicode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694out:
Marco Stornellie40b34c2012-10-06 12:40:03 +0200695 mutex_unlock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return ret;
697}
698
Al Viro2c6a2472013-05-22 18:37:16 -0400699static int fat_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Al Viro2c6a2472013-05-22 18:37:16 -0400701 return __fat_readdir(file_inode(file), file, ctx, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700704#define FAT_IOCTL_FILLDIR_FUNC(func, dirent_type) \
Miklos Szerediac7576f2014-10-30 17:37:34 +0100705static int func(struct dir_context *ctx, const char *name, int name_len, \
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700706 loff_t offset, u64 ino, unsigned int d_type) \
707{ \
Miklos Szerediac7576f2014-10-30 17:37:34 +0100708 struct fat_ioctl_filldir_callback *buf = \
709 container_of(ctx, struct fat_ioctl_filldir_callback, ctx); \
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700710 struct dirent_type __user *d1 = buf->dirent; \
711 struct dirent_type __user *d2 = d1 + 1; \
712 \
713 if (buf->result) \
714 return -EINVAL; \
715 buf->result++; \
716 \
717 if (name != NULL) { \
718 /* dirent has only short name */ \
719 if (name_len >= sizeof(d1->d_name)) \
720 name_len = sizeof(d1->d_name) - 1; \
721 \
722 if (put_user(0, d2->d_name) || \
723 put_user(0, &d2->d_reclen) || \
724 copy_to_user(d1->d_name, name, name_len) || \
725 put_user(0, d1->d_name + name_len) || \
726 put_user(name_len, &d1->d_reclen)) \
727 goto efault; \
728 } else { \
729 /* dirent has short and long name */ \
730 const char *longname = buf->longname; \
731 int long_len = buf->long_len; \
732 const char *shortname = buf->shortname; \
733 int short_len = buf->short_len; \
734 \
735 if (long_len >= sizeof(d1->d_name)) \
736 long_len = sizeof(d1->d_name) - 1; \
737 if (short_len >= sizeof(d1->d_name)) \
738 short_len = sizeof(d1->d_name) - 1; \
739 \
740 if (copy_to_user(d2->d_name, longname, long_len) || \
741 put_user(0, d2->d_name + long_len) || \
742 put_user(long_len, &d2->d_reclen) || \
743 put_user(ino, &d2->d_ino) || \
744 put_user(offset, &d2->d_off) || \
745 copy_to_user(d1->d_name, shortname, short_len) || \
746 put_user(0, d1->d_name + short_len) || \
747 put_user(short_len, &d1->d_reclen)) \
748 goto efault; \
749 } \
750 return 0; \
751efault: \
752 buf->result = -EFAULT; \
753 return -EFAULT; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Adrian Bunk531f7102008-07-25 01:46:43 -0700756FAT_IOCTL_FILLDIR_FUNC(fat_ioctl_filldir, __fat_dirent)
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700757
Al Viro2c6a2472013-05-22 18:37:16 -0400758static int fat_ioctl_readdir(struct inode *inode, struct file *file,
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700759 void __user *dirent, filldir_t filldir,
760 int short_only, int both)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Al Viro2c6a2472013-05-22 18:37:16 -0400762 struct fat_ioctl_filldir_callback buf = {
763 .ctx.actor = filldir,
764 .dirent = dirent
765 };
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700766 int ret;
767
768 buf.dirent = dirent;
769 buf.result = 0;
770 mutex_lock(&inode->i_mutex);
Al Viro2c6a2472013-05-22 18:37:16 -0400771 buf.ctx.pos = file->f_pos;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700772 ret = -ENOENT;
773 if (!IS_DEADDIR(inode)) {
Al Viro2c6a2472013-05-22 18:37:16 -0400774 ret = __fat_readdir(inode, file, &buf.ctx,
775 short_only, both ? &buf : NULL);
776 file->f_pos = buf.ctx.pos;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700777 }
778 mutex_unlock(&inode->i_mutex);
779 if (ret >= 0)
780 ret = buf.result;
781 return ret;
782}
783
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900784static long fat_dir_ioctl(struct file *filp, unsigned int cmd,
785 unsigned long arg)
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700786{
Al Viro496ad9a2013-01-23 17:07:38 -0500787 struct inode *inode = file_inode(filp);
Adrian Bunk531f7102008-07-25 01:46:43 -0700788 struct __fat_dirent __user *d1 = (struct __fat_dirent __user *)arg;
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700789 int short_only, both;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 switch (cmd) {
792 case VFAT_IOCTL_READDIR_SHORT:
793 short_only = 1;
794 both = 0;
795 break;
796 case VFAT_IOCTL_READDIR_BOTH:
797 short_only = 0;
798 both = 1;
799 break;
800 default:
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900801 return fat_generic_ioctl(filp, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Adrian Bunk531f7102008-07-25 01:46:43 -0700804 if (!access_ok(VERIFY_WRITE, d1, sizeof(struct __fat_dirent[2])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return -EFAULT;
806 /*
807 * Yes, we don't need this put_user() absolutely. However old
808 * code didn't return the right value. So, app use this value,
809 * in order to check whether it is EOF.
810 */
811 if (put_user(0, &d1->d_reclen))
812 return -EFAULT;
813
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700814 return fat_ioctl_readdir(inode, filp, d1, fat_ioctl_filldir,
815 short_only, both);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
David Howells188f83d2006-08-31 12:50:04 +0200818#ifdef CONFIG_COMPAT
819#define VFAT_IOCTL_READDIR_BOTH32 _IOR('r', 1, struct compat_dirent[2])
820#define VFAT_IOCTL_READDIR_SHORT32 _IOR('r', 2, struct compat_dirent[2])
821
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700822FAT_IOCTL_FILLDIR_FUNC(fat_compat_ioctl_filldir, compat_dirent)
David Howells188f83d2006-08-31 12:50:04 +0200823
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700824static long fat_compat_dir_ioctl(struct file *filp, unsigned cmd,
David Howells188f83d2006-08-31 12:50:04 +0200825 unsigned long arg)
826{
Al Viro496ad9a2013-01-23 17:07:38 -0500827 struct inode *inode = file_inode(filp);
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700828 struct compat_dirent __user *d1 = compat_ptr(arg);
829 int short_only, both;
David Howells188f83d2006-08-31 12:50:04 +0200830
831 switch (cmd) {
David Howells188f83d2006-08-31 12:50:04 +0200832 case VFAT_IOCTL_READDIR_SHORT32:
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700833 short_only = 1;
834 both = 0;
835 break;
836 case VFAT_IOCTL_READDIR_BOTH32:
837 short_only = 0;
838 both = 1;
David Howells188f83d2006-08-31 12:50:04 +0200839 break;
840 default:
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900841 return fat_generic_ioctl(filp, cmd, (unsigned long)arg);
David Howells188f83d2006-08-31 12:50:04 +0200842 }
843
OGAWA Hirofumic483bab2007-05-08 00:31:28 -0700844 if (!access_ok(VERIFY_WRITE, d1, sizeof(struct compat_dirent[2])))
845 return -EFAULT;
846 /*
847 * Yes, we don't need this put_user() absolutely. However old
848 * code didn't return the right value. So, app use this value,
849 * in order to check whether it is EOF.
850 */
851 if (put_user(0, &d1->d_reclen))
852 return -EFAULT;
853
854 return fat_ioctl_readdir(inode, filp, d1, fat_compat_ioctl_filldir,
855 short_only, both);
David Howells188f83d2006-08-31 12:50:04 +0200856}
857#endif /* CONFIG_COMPAT */
858
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800859const struct file_operations fat_dir_operations = {
OGAWA Hirofumi53472bc2008-11-06 12:53:47 -0800860 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 .read = generic_read_dir,
Al Viro2c6a2472013-05-22 18:37:16 -0400862 .iterate = fat_readdir,
Arnd Bergmann7845bc3e2010-05-17 08:13:47 +0900863 .unlocked_ioctl = fat_dir_ioctl,
David Howells188f83d2006-08-31 12:50:04 +0200864#ifdef CONFIG_COMPAT
865 .compat_ioctl = fat_compat_dir_ioctl,
866#endif
Al Virob5224122009-06-07 13:44:36 -0400867 .fsync = fat_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868};
869
870static int fat_get_short_entry(struct inode *dir, loff_t *pos,
871 struct buffer_head **bh,
872 struct msdos_dir_entry **de)
873{
874 while (fat_get_entry(dir, pos, bh, de) >= 0) {
875 /* free entry or long name entry or volume label */
876 if (!IS_FREE((*de)->name) && !((*de)->attr & ATTR_VOLUME))
877 return 0;
878 }
879 return -ENOENT;
880}
881
882/*
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700883 * The ".." entry can not provide the "struct fat_slot_info" information
884 * for inode, nor a usable i_pos. So, this function provides some information
885 * only.
886 *
887 * Since this function walks through the on-disk inodes within a directory,
888 * callers are responsible for taking any locks necessary to prevent the
889 * directory from changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 */
891int fat_get_dotdot_entry(struct inode *dir, struct buffer_head **bh,
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700892 struct msdos_dir_entry **de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700894 loff_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700896 *de = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 while (fat_get_short_entry(dir, &offset, bh, de) >= 0) {
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700898 if (!strncmp((*de)->name, MSDOS_DOTDOT, MSDOS_NAME))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901 return -ENOENT;
902}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800903EXPORT_SYMBOL_GPL(fat_get_dotdot_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905/* See if directory is empty */
906int fat_dir_empty(struct inode *dir)
907{
908 struct buffer_head *bh;
909 struct msdos_dir_entry *de;
910 loff_t cpos;
911 int result = 0;
912
913 bh = NULL;
914 cpos = 0;
915 while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
916 if (strncmp(de->name, MSDOS_DOT , MSDOS_NAME) &&
917 strncmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
918 result = -ENOTEMPTY;
919 break;
920 }
921 }
922 brelse(bh);
923 return result;
924}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800925EXPORT_SYMBOL_GPL(fat_dir_empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927/*
928 * fat_subdirs counts the number of sub-directories of dir. It can be run
929 * on directories being created.
930 */
931int fat_subdirs(struct inode *dir)
932{
933 struct buffer_head *bh;
934 struct msdos_dir_entry *de;
935 loff_t cpos;
936 int count = 0;
937
938 bh = NULL;
939 cpos = 0;
940 while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
941 if (de->attr & ATTR_DIR)
942 count++;
943 }
944 brelse(bh);
945 return count;
946}
947
948/*
949 * Scans a directory for a given file (name points to its formatted name).
950 * Returns an error code or zero.
951 */
952int fat_scan(struct inode *dir, const unsigned char *name,
953 struct fat_slot_info *sinfo)
954{
955 struct super_block *sb = dir->i_sb;
956
957 sinfo->slot_off = 0;
958 sinfo->bh = NULL;
959 while (fat_get_short_entry(dir, &sinfo->slot_off, &sinfo->bh,
960 &sinfo->de) >= 0) {
961 if (!strncmp(sinfo->de->name, name, MSDOS_NAME)) {
962 sinfo->slot_off -= sizeof(*sinfo->de);
963 sinfo->nr_slots = 1;
964 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
965 return 0;
966 }
967 }
968 return -ENOENT;
969}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800970EXPORT_SYMBOL_GPL(fat_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Namjae Jeonf1e6fb02013-04-29 16:21:14 -0700972/*
973 * Scans a directory for a given logstart.
974 * Returns an error code or zero.
975 */
976int fat_scan_logstart(struct inode *dir, int i_logstart,
977 struct fat_slot_info *sinfo)
978{
979 struct super_block *sb = dir->i_sb;
980
981 sinfo->slot_off = 0;
982 sinfo->bh = NULL;
983 while (fat_get_short_entry(dir, &sinfo->slot_off, &sinfo->bh,
984 &sinfo->de) >= 0) {
985 if (fat_get_start(MSDOS_SB(sb), sinfo->de) == i_logstart) {
986 sinfo->slot_off -= sizeof(*sinfo->de);
987 sinfo->nr_slots = 1;
988 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
989 return 0;
990 }
991 }
992 return -ENOENT;
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995static int __fat_remove_entries(struct inode *dir, loff_t pos, int nr_slots)
996{
997 struct super_block *sb = dir->i_sb;
998 struct buffer_head *bh;
999 struct msdos_dir_entry *de, *endp;
1000 int err = 0, orig_slots;
1001
1002 while (nr_slots) {
1003 bh = NULL;
1004 if (fat_get_entry(dir, &pos, &bh, &de) < 0) {
1005 err = -EIO;
1006 break;
1007 }
1008
1009 orig_slots = nr_slots;
1010 endp = (struct msdos_dir_entry *)(bh->b_data + sb->s_blocksize);
1011 while (nr_slots && de < endp) {
1012 de->name[0] = DELETED_FLAG;
1013 de++;
1014 nr_slots--;
1015 }
Al Virob5224122009-06-07 13:44:36 -04001016 mark_buffer_dirty_inode(bh, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (IS_DIRSYNC(dir))
1018 err = sync_dirty_buffer(bh);
1019 brelse(bh);
1020 if (err)
1021 break;
1022
1023 /* pos is *next* de's position, so this does `- sizeof(de)' */
1024 pos += ((orig_slots - nr_slots) * sizeof(*de)) - sizeof(*de);
1025 }
1026
1027 return err;
1028}
1029
1030int fat_remove_entries(struct inode *dir, struct fat_slot_info *sinfo)
1031{
Alexey Fisher869f58c2011-04-12 21:08:38 +09001032 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct msdos_dir_entry *de;
1034 struct buffer_head *bh;
1035 int err = 0, nr_slots;
1036
1037 /*
1038 * First stage: Remove the shortname. By this, the directory
1039 * entry is removed.
1040 */
1041 nr_slots = sinfo->nr_slots;
1042 de = sinfo->de;
1043 sinfo->de = NULL;
1044 bh = sinfo->bh;
1045 sinfo->bh = NULL;
1046 while (nr_slots && de >= (struct msdos_dir_entry *)bh->b_data) {
1047 de->name[0] = DELETED_FLAG;
1048 de--;
1049 nr_slots--;
1050 }
Al Virob5224122009-06-07 13:44:36 -04001051 mark_buffer_dirty_inode(bh, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (IS_DIRSYNC(dir))
1053 err = sync_dirty_buffer(bh);
1054 brelse(bh);
1055 if (err)
1056 return err;
1057 dir->i_version++;
1058
1059 if (nr_slots) {
1060 /*
1061 * Second stage: remove the remaining longname slots.
1062 * (This directory entry is already removed, and so return
1063 * the success)
1064 */
1065 err = __fat_remove_entries(dir, sinfo->slot_off, nr_slots);
1066 if (err) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001067 fat_msg(sb, KERN_WARNING,
1068 "Couldn't remove the long name slots");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070 }
1071
1072 dir->i_mtime = dir->i_atime = CURRENT_TIME_SEC;
1073 if (IS_DIRSYNC(dir))
1074 (void)fat_sync_inode(dir);
1075 else
1076 mark_inode_dirty(dir);
1077
1078 return 0;
1079}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001080EXPORT_SYMBOL_GPL(fat_remove_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082static int fat_zeroed_cluster(struct inode *dir, sector_t blknr, int nr_used,
1083 struct buffer_head **bhs, int nr_bhs)
1084{
1085 struct super_block *sb = dir->i_sb;
1086 sector_t last_blknr = blknr + MSDOS_SB(sb)->sec_per_clus;
1087 int err, i, n;
1088
1089 /* Zeroing the unused blocks on this cluster */
1090 blknr += nr_used;
1091 n = nr_used;
1092 while (blknr < last_blknr) {
1093 bhs[n] = sb_getblk(sb, blknr);
1094 if (!bhs[n]) {
1095 err = -ENOMEM;
1096 goto error;
1097 }
1098 memset(bhs[n]->b_data, 0, sb->s_blocksize);
1099 set_buffer_uptodate(bhs[n]);
Al Virob5224122009-06-07 13:44:36 -04001100 mark_buffer_dirty_inode(bhs[n], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 n++;
1103 blknr++;
1104 if (n == nr_bhs) {
1105 if (IS_DIRSYNC(dir)) {
1106 err = fat_sync_bhs(bhs, n);
1107 if (err)
1108 goto error;
1109 }
1110 for (i = 0; i < n; i++)
1111 brelse(bhs[i]);
1112 n = 0;
1113 }
1114 }
1115 if (IS_DIRSYNC(dir)) {
1116 err = fat_sync_bhs(bhs, n);
1117 if (err)
1118 goto error;
1119 }
1120 for (i = 0; i < n; i++)
1121 brelse(bhs[i]);
1122
1123 return 0;
1124
1125error:
1126 for (i = 0; i < n; i++)
1127 bforget(bhs[i]);
1128 return err;
1129}
1130
1131int fat_alloc_new_dir(struct inode *dir, struct timespec *ts)
1132{
1133 struct super_block *sb = dir->i_sb;
1134 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1135 struct buffer_head *bhs[MAX_BUF_PER_PAGE];
1136 struct msdos_dir_entry *de;
1137 sector_t blknr;
1138 __le16 date, time;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001139 u8 time_cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 int err, cluster;
1141
1142 err = fat_alloc_clusters(dir, &cluster, 1);
1143 if (err)
1144 goto error;
1145
1146 blknr = fat_clus_to_blknr(sbi, cluster);
1147 bhs[0] = sb_getblk(sb, blknr);
1148 if (!bhs[0]) {
1149 err = -ENOMEM;
1150 goto error_free;
1151 }
1152
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001153 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 de = (struct msdos_dir_entry *)bhs[0]->b_data;
1156 /* filling the new directory slots ("." and ".." entries) */
1157 memcpy(de[0].name, MSDOS_DOT, MSDOS_NAME);
1158 memcpy(de[1].name, MSDOS_DOTDOT, MSDOS_NAME);
1159 de->attr = de[1].attr = ATTR_DIR;
1160 de[0].lcase = de[1].lcase = 0;
1161 de[0].time = de[1].time = time;
1162 de[0].date = de[1].date = date;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (sbi->options.isvfat) {
1164 /* extra timestamps */
1165 de[0].ctime = de[1].ctime = time;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001166 de[0].ctime_cs = de[1].ctime_cs = time_cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date;
1168 } else {
1169 de[0].ctime = de[1].ctime = 0;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -08001170 de[0].ctime_cs = de[1].ctime_cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = 0;
1172 }
Namjae Jeon4b637092012-10-04 17:14:41 -07001173 fat_set_start(&de[0], cluster);
1174 fat_set_start(&de[1], MSDOS_I(dir)->i_logstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 de[0].size = de[1].size = 0;
1176 memset(de + 2, 0, sb->s_blocksize - 2 * sizeof(*de));
1177 set_buffer_uptodate(bhs[0]);
Al Virob5224122009-06-07 13:44:36 -04001178 mark_buffer_dirty_inode(bhs[0], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 err = fat_zeroed_cluster(dir, blknr, 1, bhs, MAX_BUF_PER_PAGE);
1181 if (err)
1182 goto error_free;
1183
1184 return cluster;
1185
1186error_free:
1187 fat_free_clusters(dir, cluster);
1188error:
1189 return err;
1190}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001191EXPORT_SYMBOL_GPL(fat_alloc_new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193static int fat_add_new_entries(struct inode *dir, void *slots, int nr_slots,
1194 int *nr_cluster, struct msdos_dir_entry **de,
1195 struct buffer_head **bh, loff_t *i_pos)
1196{
1197 struct super_block *sb = dir->i_sb;
1198 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1199 struct buffer_head *bhs[MAX_BUF_PER_PAGE];
1200 sector_t blknr, start_blknr, last_blknr;
1201 unsigned long size, copy;
1202 int err, i, n, offset, cluster[2];
1203
1204 /*
1205 * The minimum cluster size is 512bytes, and maximum entry
1206 * size is 32*slots (672bytes). So, iff the cluster size is
1207 * 512bytes, we may need two clusters.
1208 */
1209 size = nr_slots * sizeof(struct msdos_dir_entry);
1210 *nr_cluster = (size + (sbi->cluster_size - 1)) >> sbi->cluster_bits;
1211 BUG_ON(*nr_cluster > 2);
1212
1213 err = fat_alloc_clusters(dir, cluster, *nr_cluster);
1214 if (err)
1215 goto error;
1216
1217 /*
1218 * First stage: Fill the directory entry. NOTE: This cluster
1219 * is not referenced from any inode yet, so updates order is
1220 * not important.
1221 */
1222 i = n = copy = 0;
1223 do {
1224 start_blknr = blknr = fat_clus_to_blknr(sbi, cluster[i]);
1225 last_blknr = start_blknr + sbi->sec_per_clus;
1226 while (blknr < last_blknr) {
1227 bhs[n] = sb_getblk(sb, blknr);
1228 if (!bhs[n]) {
1229 err = -ENOMEM;
1230 goto error_nomem;
1231 }
1232
1233 /* fill the directory entry */
1234 copy = min(size, sb->s_blocksize);
1235 memcpy(bhs[n]->b_data, slots, copy);
1236 slots += copy;
1237 size -= copy;
1238 set_buffer_uptodate(bhs[n]);
Al Virob5224122009-06-07 13:44:36 -04001239 mark_buffer_dirty_inode(bhs[n], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (!size)
1241 break;
1242 n++;
1243 blknr++;
1244 }
1245 } while (++i < *nr_cluster);
1246
1247 memset(bhs[n]->b_data + copy, 0, sb->s_blocksize - copy);
1248 offset = copy - sizeof(struct msdos_dir_entry);
1249 get_bh(bhs[n]);
1250 *bh = bhs[n];
1251 *de = (struct msdos_dir_entry *)((*bh)->b_data + offset);
1252 *i_pos = fat_make_i_pos(sb, *bh, *de);
1253
1254 /* Second stage: clear the rest of cluster, and write outs */
1255 err = fat_zeroed_cluster(dir, start_blknr, ++n, bhs, MAX_BUF_PER_PAGE);
1256 if (err)
1257 goto error_free;
1258
1259 return cluster[0];
1260
1261error_free:
1262 brelse(*bh);
1263 *bh = NULL;
1264 n = 0;
1265error_nomem:
1266 for (i = 0; i < n; i++)
1267 bforget(bhs[i]);
1268 fat_free_clusters(dir, cluster[0]);
1269error:
1270 return err;
1271}
1272
1273int fat_add_entries(struct inode *dir, void *slots, int nr_slots,
1274 struct fat_slot_info *sinfo)
1275{
1276 struct super_block *sb = dir->i_sb;
1277 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1278 struct buffer_head *bh, *prev, *bhs[3]; /* 32*slots (672bytes) */
Jonas Aberg8c320c02011-08-17 19:10:06 +09001279 struct msdos_dir_entry *uninitialized_var(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 int err, free_slots, i, nr_bhs;
1281 loff_t pos, i_pos;
1282
1283 sinfo->nr_slots = nr_slots;
1284
Ravishankar Nc39540c2012-12-20 15:05:46 -08001285 /* First stage: search free directory entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 free_slots = nr_bhs = 0;
1287 bh = prev = NULL;
1288 pos = 0;
1289 err = -ENOSPC;
1290 while (fat_get_entry(dir, &pos, &bh, &de) > -1) {
1291 /* check the maximum size of directory */
1292 if (pos >= FAT_MAX_DIR_SIZE)
1293 goto error;
1294
1295 if (IS_FREE(de->name)) {
1296 if (prev != bh) {
1297 get_bh(bh);
1298 bhs[nr_bhs] = prev = bh;
1299 nr_bhs++;
1300 }
1301 free_slots++;
1302 if (free_slots == nr_slots)
1303 goto found;
1304 } else {
1305 for (i = 0; i < nr_bhs; i++)
1306 brelse(bhs[i]);
1307 prev = NULL;
1308 free_slots = nr_bhs = 0;
1309 }
1310 }
1311 if (dir->i_ino == MSDOS_ROOT_INO) {
1312 if (sbi->fat_bits != 32)
1313 goto error;
1314 } else if (MSDOS_I(dir)->i_start == 0) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001315 fat_msg(sb, KERN_ERR, "Corrupted directory (i_pos %lld)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 MSDOS_I(dir)->i_pos);
1317 err = -EIO;
1318 goto error;
1319 }
1320
1321found:
1322 err = 0;
1323 pos -= free_slots * sizeof(*de);
1324 nr_slots -= free_slots;
1325 if (free_slots) {
1326 /*
1327 * Second stage: filling the free entries with new entries.
1328 * NOTE: If this slots has shortname, first, we write
1329 * the long name slots, then write the short name.
1330 */
1331 int size = free_slots * sizeof(*de);
1332 int offset = pos & (sb->s_blocksize - 1);
1333 int long_bhs = nr_bhs - (nr_slots == 0);
1334
1335 /* Fill the long name slots. */
1336 for (i = 0; i < long_bhs; i++) {
1337 int copy = min_t(int, sb->s_blocksize - offset, size);
1338 memcpy(bhs[i]->b_data + offset, slots, copy);
Al Virob5224122009-06-07 13:44:36 -04001339 mark_buffer_dirty_inode(bhs[i], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 offset = 0;
1341 slots += copy;
1342 size -= copy;
1343 }
1344 if (long_bhs && IS_DIRSYNC(dir))
1345 err = fat_sync_bhs(bhs, long_bhs);
1346 if (!err && i < nr_bhs) {
1347 /* Fill the short name slot. */
1348 int copy = min_t(int, sb->s_blocksize - offset, size);
1349 memcpy(bhs[i]->b_data + offset, slots, copy);
Al Virob5224122009-06-07 13:44:36 -04001350 mark_buffer_dirty_inode(bhs[i], dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (IS_DIRSYNC(dir))
1352 err = sync_dirty_buffer(bhs[i]);
1353 }
1354 for (i = 0; i < nr_bhs; i++)
1355 brelse(bhs[i]);
1356 if (err)
1357 goto error_remove;
1358 }
1359
1360 if (nr_slots) {
1361 int cluster, nr_cluster;
1362
1363 /*
1364 * Third stage: allocate the cluster for new entries.
1365 * And initialize the cluster with new entries, then
1366 * add the cluster to dir.
1367 */
1368 cluster = fat_add_new_entries(dir, slots, nr_slots, &nr_cluster,
1369 &de, &bh, &i_pos);
1370 if (cluster < 0) {
1371 err = cluster;
1372 goto error_remove;
1373 }
1374 err = fat_chain_add(dir, cluster, nr_cluster);
1375 if (err) {
1376 fat_free_clusters(dir, cluster);
1377 goto error_remove;
1378 }
1379 if (dir->i_size & (sbi->cluster_size - 1)) {
Denis Karpov85c78592009-06-04 02:34:22 +09001380 fat_fs_error(sb, "Odd directory size");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 dir->i_size = (dir->i_size + sbi->cluster_size - 1)
1382 & ~((loff_t)sbi->cluster_size - 1);
1383 }
1384 dir->i_size += nr_cluster << sbi->cluster_bits;
1385 MSDOS_I(dir)->mmu_private += nr_cluster << sbi->cluster_bits;
1386 }
1387 sinfo->slot_off = pos;
1388 sinfo->de = de;
1389 sinfo->bh = bh;
1390 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
1391
1392 return 0;
1393
1394error:
1395 brelse(bh);
1396 for (i = 0; i < nr_bhs; i++)
1397 brelse(bhs[i]);
1398 return err;
1399
1400error_remove:
1401 brelse(bh);
1402 if (free_slots)
1403 __fat_remove_entries(dir, pos, free_slots);
1404 return err;
1405}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001406EXPORT_SYMBOL_GPL(fat_add_entries);