]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/fat/dir.c
fs/fat: fix some small checkpatch issues in dir.c
[mirror_ubuntu-zesty-kernel.git] / fs / fat / dir.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4 19#include <linux/buffer_head.h>
188f83df 20#include <linux/compat.h>
1da177e4 21#include <asm/uaccess.h>
3ed3dec1 22#include <linux/kernel.h>
9e975dae 23#include "fat.h"
1da177e4 24
74675a58
AS
25/*
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
deb8274a
SM
38static inline unsigned char fat_tolower(unsigned char c)
39{
40 return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
41}
42
1da177e4
LT
43static 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
f3ef6f63
KW
51static 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
83b7c996
OH
66 bh = sb_find_get_block(sb, phys);
67 if (bh == NULL || !buffer_uptodate(bh)) {
f3ef6f63
KW
68 for (sec = 0; sec < sbi->sec_per_clus; sec++)
69 sb_breadahead(sb, phys + sec);
70 }
71 brelse(bh);
72}
73
1da177e4
LT
74/* 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;
e5174baa
OH
89 unsigned long mapped_blocks;
90 int err, offset;
1da177e4
LT
91
92next:
93 if (*bh)
94 brelse(*bh);
95
96 *bh = NULL;
97 iblock = *pos >> sb->s_blocksize_bits;
2bdf67eb 98 err = fat_bmap(dir, iblock, &phys, &mapped_blocks, 0);
1da177e4
LT
99 if (err || !phys)
100 return -1; /* beyond EOF or error */
101
f3ef6f63
KW
102 fat_dir_readahead(dir, iblock, phys);
103
1da177e4
LT
104 *bh = sb_bread(sb, phys);
105 if (*bh == NULL) {
f0aac616
NJ
106 fat_msg_ratelimit(sb, KERN_ERR,
107 "Directory bread(block %llu) failed", (llu)phys);
1da177e4
LT
108 /* 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 &&
126 (*de - (struct msdos_dir_entry *)(*bh)->b_data) < MSDOS_SB(dir->i_sb)->dir_per_block - 1) {
127 *pos += sizeof(struct msdos_dir_entry);
128 (*de)++;
129 return 0;
130 }
131 return fat__get_entry(dir, pos, bh, de);
132}
133
134/*
4de151d8 135 * Convert Unicode 16 to UTF-8, translated Unicode, or ASCII.
1da177e4
LT
136 * If uni_xlate is enabled and we can't get a 1:1 conversion, use a
137 * colon as an escape character since it is normally invalid on the vfat
138 * filesystem. The following four characters are the hexadecimal digits
139 * of Unicode value. This lets us do a full dump and restore of Unicode
140 * filenames. We could get into some trouble with long Unicode names,
141 * but ignore that right now.
142 * Ahem... Stack smashing in ring 0 isn't fun. Fixed.
143 */
869f58c0
AF
144static int uni16_to_x8(struct super_block *sb, unsigned char *ascii,
145 const wchar_t *uni, int len, struct nls_table *nls)
1da177e4 146{
869f58c0 147 int uni_xlate = MSDOS_SB(sb)->options.unicode_xlate;
d6886116
OH
148 const wchar_t *ip;
149 wchar_t ec;
3ed3dec1 150 unsigned char *op;
1da177e4 151 int charlen;
1da177e4
LT
152
153 ip = uni;
154 op = ascii;
155
f22032ba 156 while (*ip && ((len - NLS_MAX_CHARSET_SIZE) > 0)) {
1da177e4 157 ec = *ip++;
3ed3dec1 158 if ((charlen = nls->uni2char(ec, op, NLS_MAX_CHARSET_SIZE)) > 0) {
1da177e4 159 op += charlen;
f22032ba 160 len -= charlen;
1da177e4
LT
161 } else {
162 if (uni_xlate == 1) {
3ed3dec1 163 *op++ = ':';
0a90e0f1
AS
164 op = hex_byte_pack(op, ec >> 8);
165 op = hex_byte_pack(op, ec);
f22032ba 166 len -= 5;
1da177e4
LT
167 } else {
168 *op++ = '?';
f22032ba 169 len--;
1da177e4
LT
170 }
171 }
1da177e4 172 }
f22032ba
KM
173
174 if (unlikely(*ip)) {
869f58c0
AF
175 fat_msg(sb, KERN_WARNING, "filename was truncated while "
176 "converting.");
f22032ba
KM
177 }
178
1da177e4
LT
179 *op = 0;
180 return (op - ascii);
181}
182
869f58c0 183static inline int fat_uni_to_x8(struct super_block *sb, const wchar_t *uni,
d6886116
OH
184 unsigned char *buf, int size)
185{
869f58c0 186 struct msdos_sb_info *sbi = MSDOS_SB(sb);
d6886116 187 if (sbi->options.utf8)
74675a58
AS
188 return utf16s_to_utf8s(uni, FAT_MAX_UNI_CHARS,
189 UTF16_HOST_ENDIAN, buf, size);
d6886116 190 else
869f58c0 191 return uni16_to_x8(sb, buf, uni, size, sbi->nls_io);
d6886116
OH
192}
193
1da177e4
LT
194static inline int
195fat_short2uni(struct nls_table *t, unsigned char *c, int clen, wchar_t *uni)
196{
197 int charlen;
198
199 charlen = t->char2uni(c, clen, uni);
200 if (charlen < 0) {
201 *uni = 0x003f; /* a question mark */
202 charlen = 1;
203 }
204 return charlen;
205}
206
207static inline int
208fat_short2lower_uni(struct nls_table *t, unsigned char *c, int clen, wchar_t *uni)
209{
210 int charlen;
211 wchar_t wc;
212
213 charlen = t->char2uni(c, clen, &wc);
214 if (charlen < 0) {
215 *uni = 0x003f; /* a question mark */
216 charlen = 1;
217 } else if (charlen <= 1) {
218 unsigned char nc = t->charset2lower[*c];
219
220 if (!nc)
221 nc = *c;
222
223 if ( (charlen = t->char2uni(&nc, 1, uni)) < 0) {
224 *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
d6886116
OH
254static 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
ad2c1604
PE
267enum { 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) {
c7a6c4ed 287 *unicode = __getname();
ad2c1604
PE
288 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
deb8274a
SM
341/**
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
1da177e4
LT
459/*
460 * Return values: negative -> error, 0 -> not found, positive -> found,
461 * value is the total amount of slots, including the shortname entry.
462 */
463int fat_search_long(struct inode *inode, const unsigned char *name,
464 int name_len, struct fat_slot_info *sinfo)
465{
466 struct super_block *sb = inode->i_sb;
467 struct msdos_sb_info *sbi = MSDOS_SB(sb);
468 struct buffer_head *bh = NULL;
469 struct msdos_dir_entry *de;
f22032ba 470 unsigned char nr_slots;
1da177e4 471 wchar_t *unicode = NULL;
98a15160 472 unsigned char bufname[FAT_MAX_SHORT_SIZE];
1da177e4 473 loff_t cpos = 0;
deb8274a 474 int err, len;
1da177e4
LT
475
476 err = -ENOENT;
d6886116 477 while (1) {
1da177e4 478 if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
d6886116 479 goto end_of_dir;
1da177e4
LT
480parse_record:
481 nr_slots = 0;
482 if (de->name[0] == DELETED_FLAG)
483 continue;
484 if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
485 continue;
486 if (de->attr != ATTR_EXT && IS_FREE(de->name))
487 continue;
488 if (de->attr == ATTR_EXT) {
ad2c1604
PE
489 int status = fat_parse_long(inode, &cpos, &bh, &de,
490 &unicode, &nr_slots);
52e9d9f4
DJ
491 if (status < 0) {
492 err = status;
493 goto end_of_dir;
494 } else if (status == PARSE_INVALID)
1da177e4 495 continue;
ad2c1604
PE
496 else if (status == PARSE_NOT_LONGNAME)
497 goto parse_record;
498 else if (status == PARSE_EOF)
d6886116 499 goto end_of_dir;
1da177e4
LT
500 }
501
deb8274a
SM
502 /* Never prepend '.' to hidden files here.
503 * That is done only for msdos mounts (and only when
504 * 'dotsOK=yes'); if we are executing here, it is in the
505 * context of a vfat mount.
506 */
507 len = fat_parse_short(sb, de, bufname, 0);
508 if (len == 0)
1da177e4
LT
509 continue;
510
d6886116 511 /* Compare shortname */
d6886116
OH
512 if (fat_name_match(sbi, name, name_len, bufname, len))
513 goto found;
1da177e4
LT
514
515 if (nr_slots) {
98a15160
OH
516 void *longname = unicode + FAT_MAX_UNI_CHARS;
517 int size = PATH_MAX - FAT_MAX_UNI_SIZE;
518
d6886116 519 /* Compare longname */
869f58c0 520 len = fat_uni_to_x8(sb, unicode, longname, size);
98a15160 521 if (fat_name_match(sbi, name, name_len, longname, len))
d6886116 522 goto found;
1da177e4
LT
523 }
524 }
525
d6886116 526found:
1da177e4
LT
527 nr_slots++; /* include the de */
528 sinfo->slot_off = cpos - nr_slots * sizeof(*de);
529 sinfo->nr_slots = nr_slots;
530 sinfo->de = de;
531 sinfo->bh = bh;
532 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
533 err = 0;
d6886116 534end_of_dir:
1da177e4 535 if (unicode)
c7a6c4ed 536 __putname(unicode);
1da177e4
LT
537
538 return err;
539}
7c709d00 540EXPORT_SYMBOL_GPL(fat_search_long);
1da177e4
LT
541
542struct fat_ioctl_filldir_callback {
c483bab0 543 void __user *dirent;
1da177e4
LT
544 int result;
545 /* for dir ioctl */
546 const char *longname;
547 int long_len;
548 const char *shortname;
549 int short_len;
550};
551
ad2c1604
PE
552static int __fat_readdir(struct inode *inode, struct file *filp, void *dirent,
553 filldir_t filldir, int short_only, int both)
1da177e4
LT
554{
555 struct super_block *sb = inode->i_sb;
556 struct msdos_sb_info *sbi = MSDOS_SB(sb);
557 struct buffer_head *bh;
558 struct msdos_dir_entry *de;
d6886116 559 unsigned char nr_slots;
1da177e4 560 wchar_t *unicode = NULL;
deb8274a 561 unsigned char bufname[FAT_MAX_SHORT_SIZE];
1da177e4 562 int isvfat = sbi->options.isvfat;
dcd8c53f 563 const char *fill_name = NULL;
1da177e4 564 unsigned long inum;
d6886116 565 unsigned long lpos, dummy, *furrfu = &lpos;
1da177e4 566 loff_t cpos;
deb8274a 567 int short_len = 0, fill_len = 0;
1da177e4
LT
568 int ret = 0;
569
8f593427 570 lock_super(sb);
1da177e4
LT
571
572 cpos = filp->f_pos;
573 /* Fake . and .. for the root directory. */
574 if (inode->i_ino == MSDOS_ROOT_INO) {
575 while (cpos < 2) {
576 if (filldir(dirent, "..", cpos+1, cpos, MSDOS_ROOT_INO, DT_DIR) < 0)
577 goto out;
578 cpos++;
579 filp->f_pos++;
580 }
581 if (cpos == 2) {
582 dummy = 2;
583 furrfu = &dummy;
584 cpos = 0;
585 }
586 }
d6886116 587 if (cpos & (sizeof(struct msdos_dir_entry) - 1)) {
1da177e4
LT
588 ret = -ENOENT;
589 goto out;
590 }
591
592 bh = NULL;
d6886116 593get_new:
1da177e4 594 if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
d6886116 595 goto end_of_dir;
ad2c1604 596parse_record:
d6886116 597 nr_slots = 0;
dcd8c53f
OH
598 /*
599 * Check for long filename entry, but if short_only, we don't
600 * need to parse long filename.
601 */
602 if (isvfat && !short_only) {
1da177e4 603 if (de->name[0] == DELETED_FLAG)
d6886116 604 goto record_end;
1da177e4 605 if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
d6886116 606 goto record_end;
1da177e4 607 if (de->attr != ATTR_EXT && IS_FREE(de->name))
d6886116 608 goto record_end;
1da177e4
LT
609 } else {
610 if ((de->attr & ATTR_VOLUME) || IS_FREE(de->name))
d6886116 611 goto record_end;
1da177e4
LT
612 }
613
614 if (isvfat && de->attr == ATTR_EXT) {
ad2c1604 615 int status = fat_parse_long(inode, &cpos, &bh, &de,
d6886116 616 &unicode, &nr_slots);
ad2c1604
PE
617 if (status < 0) {
618 filp->f_pos = cpos;
619 ret = status;
620 goto out;
621 } else if (status == PARSE_INVALID)
d6886116 622 goto record_end;
ad2c1604
PE
623 else if (status == PARSE_NOT_LONGNAME)
624 goto parse_record;
625 else if (status == PARSE_EOF)
d6886116 626 goto end_of_dir;
dcd8c53f
OH
627
628 if (nr_slots) {
629 void *longname = unicode + FAT_MAX_UNI_CHARS;
630 int size = PATH_MAX - FAT_MAX_UNI_SIZE;
869f58c0 631 int len = fat_uni_to_x8(sb, unicode, longname, size);
dcd8c53f
OH
632
633 fill_name = longname;
634 fill_len = len;
635 /* !both && !short_only, so we don't need shortname. */
636 if (!both)
637 goto start_filldir;
638 }
1da177e4
LT
639 }
640
deb8274a
SM
641 short_len = fat_parse_short(sb, de, bufname, sbi->options.dotsOK);
642 if (short_len == 0)
d6886116 643 goto record_end;
1da177e4 644
dcd8c53f
OH
645 if (nr_slots) {
646 /* hack for fat_ioctl_filldir() */
647 struct fat_ioctl_filldir_callback *p = dirent;
648
649 p->longname = fill_name;
650 p->long_len = fill_len;
651 p->shortname = bufname;
deb8274a 652 p->short_len = short_len;
dcd8c53f
OH
653 fill_name = NULL;
654 fill_len = 0;
655 } else {
656 fill_name = bufname;
deb8274a 657 fill_len = short_len;
dcd8c53f
OH
658 }
659
660start_filldir:
d6886116 661 lpos = cpos - (nr_slots + 1) * sizeof(struct msdos_dir_entry);
1da177e4
LT
662 if (!memcmp(de->name, MSDOS_DOT, MSDOS_NAME))
663 inum = inode->i_ino;
664 else if (!memcmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
dba32306 665 inum = parent_ino(filp->f_path.dentry);
1da177e4
LT
666 } else {
667 loff_t i_pos = fat_make_i_pos(sb, bh, de);
668 struct inode *tmp = fat_iget(sb, i_pos);
669 if (tmp) {
670 inum = tmp->i_ino;
671 iput(tmp);
672 } else
673 inum = iunique(sb, MSDOS_ROOT_INO);
674 }
675
1da177e4
LT
676 if (filldir(dirent, fill_name, fill_len, *furrfu, inum,
677 (de->attr & ATTR_DIR) ? DT_DIR : DT_REG) < 0)
d6886116 678 goto fill_failed;
1da177e4 679
d6886116 680record_end:
1da177e4
LT
681 furrfu = &lpos;
682 filp->f_pos = cpos;
d6886116
OH
683 goto get_new;
684end_of_dir:
1da177e4 685 filp->f_pos = cpos;
d6886116 686fill_failed:
f3ef6f63 687 brelse(bh);
1da177e4 688 if (unicode)
c7a6c4ed 689 __putname(unicode);
1da177e4 690out:
8f593427 691 unlock_super(sb);
1da177e4
LT
692 return ret;
693}
694
695static int fat_readdir(struct file *filp, void *dirent, filldir_t filldir)
696{
dba32306 697 struct inode *inode = filp->f_path.dentry->d_inode;
ad2c1604 698 return __fat_readdir(inode, filp, dirent, filldir, 0, 0);
1da177e4
LT
699}
700
c483bab0
OH
701#define FAT_IOCTL_FILLDIR_FUNC(func, dirent_type) \
702static int func(void *__buf, const char *name, int name_len, \
703 loff_t offset, u64 ino, unsigned int d_type) \
704{ \
705 struct fat_ioctl_filldir_callback *buf = __buf; \
706 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; \
750}
751
531f710f 752FAT_IOCTL_FILLDIR_FUNC(fat_ioctl_filldir, __fat_dirent)
c483bab0
OH
753
754static int fat_ioctl_readdir(struct inode *inode, struct file *filp,
755 void __user *dirent, filldir_t filldir,
756 int short_only, int both)
1da177e4 757{
c483bab0
OH
758 struct fat_ioctl_filldir_callback buf;
759 int ret;
760
761 buf.dirent = dirent;
762 buf.result = 0;
763 mutex_lock(&inode->i_mutex);
764 ret = -ENOENT;
765 if (!IS_DEADDIR(inode)) {
766 ret = __fat_readdir(inode, filp, &buf, filldir,
767 short_only, both);
1da177e4 768 }
c483bab0
OH
769 mutex_unlock(&inode->i_mutex);
770 if (ret >= 0)
771 ret = buf.result;
772 return ret;
1da177e4
LT
773}
774
7845bc3e
AB
775static long fat_dir_ioctl(struct file *filp, unsigned int cmd,
776 unsigned long arg)
1da177e4 777{
7845bc3e 778 struct inode *inode = filp->f_path.dentry->d_inode;
531f710f 779 struct __fat_dirent __user *d1 = (struct __fat_dirent __user *)arg;
c483bab0 780 int short_only, both;
1da177e4
LT
781
782 switch (cmd) {
783 case VFAT_IOCTL_READDIR_SHORT:
784 short_only = 1;
785 both = 0;
786 break;
787 case VFAT_IOCTL_READDIR_BOTH:
788 short_only = 0;
789 both = 1;
790 break;
791 default:
7845bc3e 792 return fat_generic_ioctl(filp, cmd, arg);
1da177e4
LT
793 }
794
531f710f 795 if (!access_ok(VERIFY_WRITE, d1, sizeof(struct __fat_dirent[2])))
1da177e4
LT
796 return -EFAULT;
797 /*
798 * Yes, we don't need this put_user() absolutely. However old
799 * code didn't return the right value. So, app use this value,
800 * in order to check whether it is EOF.
801 */
802 if (put_user(0, &d1->d_reclen))
803 return -EFAULT;
804
c483bab0
OH
805 return fat_ioctl_readdir(inode, filp, d1, fat_ioctl_filldir,
806 short_only, both);
1da177e4
LT
807}
808
188f83df
DH
809#ifdef CONFIG_COMPAT
810#define VFAT_IOCTL_READDIR_BOTH32 _IOR('r', 1, struct compat_dirent[2])
811#define VFAT_IOCTL_READDIR_SHORT32 _IOR('r', 2, struct compat_dirent[2])
812
c483bab0 813FAT_IOCTL_FILLDIR_FUNC(fat_compat_ioctl_filldir, compat_dirent)
188f83df 814
c483bab0 815static long fat_compat_dir_ioctl(struct file *filp, unsigned cmd,
188f83df
DH
816 unsigned long arg)
817{
c483bab0
OH
818 struct inode *inode = filp->f_path.dentry->d_inode;
819 struct compat_dirent __user *d1 = compat_ptr(arg);
820 int short_only, both;
188f83df
DH
821
822 switch (cmd) {
188f83df 823 case VFAT_IOCTL_READDIR_SHORT32:
c483bab0
OH
824 short_only = 1;
825 both = 0;
826 break;
827 case VFAT_IOCTL_READDIR_BOTH32:
828 short_only = 0;
829 both = 1;
188f83df
DH
830 break;
831 default:
7845bc3e 832 return fat_generic_ioctl(filp, cmd, (unsigned long)arg);
188f83df
DH
833 }
834
c483bab0
OH
835 if (!access_ok(VERIFY_WRITE, d1, sizeof(struct compat_dirent[2])))
836 return -EFAULT;
837 /*
838 * Yes, we don't need this put_user() absolutely. However old
839 * code didn't return the right value. So, app use this value,
840 * in order to check whether it is EOF.
841 */
842 if (put_user(0, &d1->d_reclen))
843 return -EFAULT;
844
845 return fat_ioctl_readdir(inode, filp, d1, fat_compat_ioctl_filldir,
846 short_only, both);
188f83df
DH
847}
848#endif /* CONFIG_COMPAT */
849
4b6f5d20 850const struct file_operations fat_dir_operations = {
53472bc8 851 .llseek = generic_file_llseek,
1da177e4
LT
852 .read = generic_read_dir,
853 .readdir = fat_readdir,
7845bc3e 854 .unlocked_ioctl = fat_dir_ioctl,
188f83df
DH
855#ifdef CONFIG_COMPAT
856 .compat_ioctl = fat_compat_dir_ioctl,
857#endif
b522412a 858 .fsync = fat_file_fsync,
1da177e4
LT
859};
860
861static int fat_get_short_entry(struct inode *dir, loff_t *pos,
862 struct buffer_head **bh,
863 struct msdos_dir_entry **de)
864{
865 while (fat_get_entry(dir, pos, bh, de) >= 0) {
866 /* free entry or long name entry or volume label */
867 if (!IS_FREE((*de)->name) && !((*de)->attr & ATTR_VOLUME))
868 return 0;
869 }
870 return -ENOENT;
871}
872
873/*
7669e8fb
SM
874 * The ".." entry can not provide the "struct fat_slot_info" information
875 * for inode, nor a usable i_pos. So, this function provides some information
876 * only.
877 *
878 * Since this function walks through the on-disk inodes within a directory,
879 * callers are responsible for taking any locks necessary to prevent the
880 * directory from changing.
1da177e4
LT
881 */
882int fat_get_dotdot_entry(struct inode *dir, struct buffer_head **bh,
7669e8fb 883 struct msdos_dir_entry **de)
1da177e4 884{
7669e8fb 885 loff_t offset = 0;
1da177e4 886
7669e8fb 887 *de = NULL;
1da177e4 888 while (fat_get_short_entry(dir, &offset, bh, de) >= 0) {
7669e8fb 889 if (!strncmp((*de)->name, MSDOS_DOTDOT, MSDOS_NAME))
1da177e4 890 return 0;
1da177e4
LT
891 }
892 return -ENOENT;
893}
7c709d00 894EXPORT_SYMBOL_GPL(fat_get_dotdot_entry);
1da177e4
LT
895
896/* See if directory is empty */
897int fat_dir_empty(struct inode *dir)
898{
899 struct buffer_head *bh;
900 struct msdos_dir_entry *de;
901 loff_t cpos;
902 int result = 0;
903
904 bh = NULL;
905 cpos = 0;
906 while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
907 if (strncmp(de->name, MSDOS_DOT , MSDOS_NAME) &&
908 strncmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
909 result = -ENOTEMPTY;
910 break;
911 }
912 }
913 brelse(bh);
914 return result;
915}
7c709d00 916EXPORT_SYMBOL_GPL(fat_dir_empty);
1da177e4
LT
917
918/*
919 * fat_subdirs counts the number of sub-directories of dir. It can be run
920 * on directories being created.
921 */
922int fat_subdirs(struct inode *dir)
923{
924 struct buffer_head *bh;
925 struct msdos_dir_entry *de;
926 loff_t cpos;
927 int count = 0;
928
929 bh = NULL;
930 cpos = 0;
931 while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
932 if (de->attr & ATTR_DIR)
933 count++;
934 }
935 brelse(bh);
936 return count;
937}
938
939/*
940 * Scans a directory for a given file (name points to its formatted name).
941 * Returns an error code or zero.
942 */
943int fat_scan(struct inode *dir, const unsigned char *name,
944 struct fat_slot_info *sinfo)
945{
946 struct super_block *sb = dir->i_sb;
947
948 sinfo->slot_off = 0;
949 sinfo->bh = NULL;
950 while (fat_get_short_entry(dir, &sinfo->slot_off, &sinfo->bh,
951 &sinfo->de) >= 0) {
952 if (!strncmp(sinfo->de->name, name, MSDOS_NAME)) {
953 sinfo->slot_off -= sizeof(*sinfo->de);
954 sinfo->nr_slots = 1;
955 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
956 return 0;
957 }
958 }
959 return -ENOENT;
960}
7c709d00 961EXPORT_SYMBOL_GPL(fat_scan);
1da177e4
LT
962
963static int __fat_remove_entries(struct inode *dir, loff_t pos, int nr_slots)
964{
965 struct super_block *sb = dir->i_sb;
966 struct buffer_head *bh;
967 struct msdos_dir_entry *de, *endp;
968 int err = 0, orig_slots;
969
970 while (nr_slots) {
971 bh = NULL;
972 if (fat_get_entry(dir, &pos, &bh, &de) < 0) {
973 err = -EIO;
974 break;
975 }
976
977 orig_slots = nr_slots;
978 endp = (struct msdos_dir_entry *)(bh->b_data + sb->s_blocksize);
979 while (nr_slots && de < endp) {
980 de->name[0] = DELETED_FLAG;
981 de++;
982 nr_slots--;
983 }
b522412a 984 mark_buffer_dirty_inode(bh, dir);
1da177e4
LT
985 if (IS_DIRSYNC(dir))
986 err = sync_dirty_buffer(bh);
987 brelse(bh);
988 if (err)
989 break;
990
991 /* pos is *next* de's position, so this does `- sizeof(de)' */
992 pos += ((orig_slots - nr_slots) * sizeof(*de)) - sizeof(*de);
993 }
994
995 return err;
996}
997
998int fat_remove_entries(struct inode *dir, struct fat_slot_info *sinfo)
999{
869f58c0 1000 struct super_block *sb = dir->i_sb;
1da177e4
LT
1001 struct msdos_dir_entry *de;
1002 struct buffer_head *bh;
1003 int err = 0, nr_slots;
1004
1005 /*
1006 * First stage: Remove the shortname. By this, the directory
1007 * entry is removed.
1008 */
1009 nr_slots = sinfo->nr_slots;
1010 de = sinfo->de;
1011 sinfo->de = NULL;
1012 bh = sinfo->bh;
1013 sinfo->bh = NULL;
1014 while (nr_slots && de >= (struct msdos_dir_entry *)bh->b_data) {
1015 de->name[0] = DELETED_FLAG;
1016 de--;
1017 nr_slots--;
1018 }
b522412a 1019 mark_buffer_dirty_inode(bh, dir);
1da177e4
LT
1020 if (IS_DIRSYNC(dir))
1021 err = sync_dirty_buffer(bh);
1022 brelse(bh);
1023 if (err)
1024 return err;
1025 dir->i_version++;
1026
1027 if (nr_slots) {
1028 /*
1029 * Second stage: remove the remaining longname slots.
1030 * (This directory entry is already removed, and so return
1031 * the success)
1032 */
1033 err = __fat_remove_entries(dir, sinfo->slot_off, nr_slots);
1034 if (err) {
869f58c0
AF
1035 fat_msg(sb, KERN_WARNING,
1036 "Couldn't remove the long name slots");
1da177e4
LT
1037 }
1038 }
1039
1040 dir->i_mtime = dir->i_atime = CURRENT_TIME_SEC;
1041 if (IS_DIRSYNC(dir))
1042 (void)fat_sync_inode(dir);
1043 else
1044 mark_inode_dirty(dir);
1045
1046 return 0;
1047}
7c709d00 1048EXPORT_SYMBOL_GPL(fat_remove_entries);
1da177e4
LT
1049
1050static int fat_zeroed_cluster(struct inode *dir, sector_t blknr, int nr_used,
1051 struct buffer_head **bhs, int nr_bhs)
1052{
1053 struct super_block *sb = dir->i_sb;
1054 sector_t last_blknr = blknr + MSDOS_SB(sb)->sec_per_clus;
1055 int err, i, n;
1056
1057 /* Zeroing the unused blocks on this cluster */
1058 blknr += nr_used;
1059 n = nr_used;
1060 while (blknr < last_blknr) {
1061 bhs[n] = sb_getblk(sb, blknr);
1062 if (!bhs[n]) {
1063 err = -ENOMEM;
1064 goto error;
1065 }
1066 memset(bhs[n]->b_data, 0, sb->s_blocksize);
1067 set_buffer_uptodate(bhs[n]);
b522412a 1068 mark_buffer_dirty_inode(bhs[n], dir);
1da177e4
LT
1069
1070 n++;
1071 blknr++;
1072 if (n == nr_bhs) {
1073 if (IS_DIRSYNC(dir)) {
1074 err = fat_sync_bhs(bhs, n);
1075 if (err)
1076 goto error;
1077 }
1078 for (i = 0; i < n; i++)
1079 brelse(bhs[i]);
1080 n = 0;
1081 }
1082 }
1083 if (IS_DIRSYNC(dir)) {
1084 err = fat_sync_bhs(bhs, n);
1085 if (err)
1086 goto error;
1087 }
1088 for (i = 0; i < n; i++)
1089 brelse(bhs[i]);
1090
1091 return 0;
1092
1093error:
1094 for (i = 0; i < n; i++)
1095 bforget(bhs[i]);
1096 return err;
1097}
1098
1099int fat_alloc_new_dir(struct inode *dir, struct timespec *ts)
1100{
1101 struct super_block *sb = dir->i_sb;
1102 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1103 struct buffer_head *bhs[MAX_BUF_PER_PAGE];
1104 struct msdos_dir_entry *de;
1105 sector_t blknr;
1106 __le16 date, time;
7decd1cb 1107 u8 time_cs;
1da177e4
LT
1108 int err, cluster;
1109
1110 err = fat_alloc_clusters(dir, &cluster, 1);
1111 if (err)
1112 goto error;
1113
1114 blknr = fat_clus_to_blknr(sbi, cluster);
1115 bhs[0] = sb_getblk(sb, blknr);
1116 if (!bhs[0]) {
1117 err = -ENOMEM;
1118 goto error_free;
1119 }
1120
7decd1cb 1121 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs);
1da177e4
LT
1122
1123 de = (struct msdos_dir_entry *)bhs[0]->b_data;
1124 /* filling the new directory slots ("." and ".." entries) */
1125 memcpy(de[0].name, MSDOS_DOT, MSDOS_NAME);
1126 memcpy(de[1].name, MSDOS_DOTDOT, MSDOS_NAME);
1127 de->attr = de[1].attr = ATTR_DIR;
1128 de[0].lcase = de[1].lcase = 0;
1129 de[0].time = de[1].time = time;
1130 de[0].date = de[1].date = date;
1da177e4
LT
1131 if (sbi->options.isvfat) {
1132 /* extra timestamps */
1133 de[0].ctime = de[1].ctime = time;
7decd1cb 1134 de[0].ctime_cs = de[1].ctime_cs = time_cs;
1da177e4
LT
1135 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date;
1136 } else {
1137 de[0].ctime = de[1].ctime = 0;
7decd1cb 1138 de[0].ctime_cs = de[1].ctime_cs = 0;
1da177e4
LT
1139 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = 0;
1140 }
4b637098
NJ
1141 fat_set_start(&de[0], cluster);
1142 fat_set_start(&de[1], MSDOS_I(dir)->i_logstart);
1da177e4
LT
1143 de[0].size = de[1].size = 0;
1144 memset(de + 2, 0, sb->s_blocksize - 2 * sizeof(*de));
1145 set_buffer_uptodate(bhs[0]);
b522412a 1146 mark_buffer_dirty_inode(bhs[0], dir);
1da177e4
LT
1147
1148 err = fat_zeroed_cluster(dir, blknr, 1, bhs, MAX_BUF_PER_PAGE);
1149 if (err)
1150 goto error_free;
1151
1152 return cluster;
1153
1154error_free:
1155 fat_free_clusters(dir, cluster);
1156error:
1157 return err;
1158}
7c709d00 1159EXPORT_SYMBOL_GPL(fat_alloc_new_dir);
1da177e4
LT
1160
1161static int fat_add_new_entries(struct inode *dir, void *slots, int nr_slots,
1162 int *nr_cluster, struct msdos_dir_entry **de,
1163 struct buffer_head **bh, loff_t *i_pos)
1164{
1165 struct super_block *sb = dir->i_sb;
1166 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1167 struct buffer_head *bhs[MAX_BUF_PER_PAGE];
1168 sector_t blknr, start_blknr, last_blknr;
1169 unsigned long size, copy;
1170 int err, i, n, offset, cluster[2];
1171
1172 /*
1173 * The minimum cluster size is 512bytes, and maximum entry
1174 * size is 32*slots (672bytes). So, iff the cluster size is
1175 * 512bytes, we may need two clusters.
1176 */
1177 size = nr_slots * sizeof(struct msdos_dir_entry);
1178 *nr_cluster = (size + (sbi->cluster_size - 1)) >> sbi->cluster_bits;
1179 BUG_ON(*nr_cluster > 2);
1180
1181 err = fat_alloc_clusters(dir, cluster, *nr_cluster);
1182 if (err)
1183 goto error;
1184
1185 /*
1186 * First stage: Fill the directory entry. NOTE: This cluster
1187 * is not referenced from any inode yet, so updates order is
1188 * not important.
1189 */
1190 i = n = copy = 0;
1191 do {
1192 start_blknr = blknr = fat_clus_to_blknr(sbi, cluster[i]);
1193 last_blknr = start_blknr + sbi->sec_per_clus;
1194 while (blknr < last_blknr) {
1195 bhs[n] = sb_getblk(sb, blknr);
1196 if (!bhs[n]) {
1197 err = -ENOMEM;
1198 goto error_nomem;
1199 }
1200
1201 /* fill the directory entry */
1202 copy = min(size, sb->s_blocksize);
1203 memcpy(bhs[n]->b_data, slots, copy);
1204 slots += copy;
1205 size -= copy;
1206 set_buffer_uptodate(bhs[n]);
b522412a 1207 mark_buffer_dirty_inode(bhs[n], dir);
1da177e4
LT
1208 if (!size)
1209 break;
1210 n++;
1211 blknr++;
1212 }
1213 } while (++i < *nr_cluster);
1214
1215 memset(bhs[n]->b_data + copy, 0, sb->s_blocksize - copy);
1216 offset = copy - sizeof(struct msdos_dir_entry);
1217 get_bh(bhs[n]);
1218 *bh = bhs[n];
1219 *de = (struct msdos_dir_entry *)((*bh)->b_data + offset);
1220 *i_pos = fat_make_i_pos(sb, *bh, *de);
1221
1222 /* Second stage: clear the rest of cluster, and write outs */
1223 err = fat_zeroed_cluster(dir, start_blknr, ++n, bhs, MAX_BUF_PER_PAGE);
1224 if (err)
1225 goto error_free;
1226
1227 return cluster[0];
1228
1229error_free:
1230 brelse(*bh);
1231 *bh = NULL;
1232 n = 0;
1233error_nomem:
1234 for (i = 0; i < n; i++)
1235 bforget(bhs[i]);
1236 fat_free_clusters(dir, cluster[0]);
1237error:
1238 return err;
1239}
1240
1241int fat_add_entries(struct inode *dir, void *slots, int nr_slots,
1242 struct fat_slot_info *sinfo)
1243{
1244 struct super_block *sb = dir->i_sb;
1245 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1246 struct buffer_head *bh, *prev, *bhs[3]; /* 32*slots (672bytes) */
8c320c07 1247 struct msdos_dir_entry *uninitialized_var(de);
1da177e4
LT
1248 int err, free_slots, i, nr_bhs;
1249 loff_t pos, i_pos;
1250
1251 sinfo->nr_slots = nr_slots;
1252
1253 /* First stage: search free direcotry entries */
1254 free_slots = nr_bhs = 0;
1255 bh = prev = NULL;
1256 pos = 0;
1257 err = -ENOSPC;
1258 while (fat_get_entry(dir, &pos, &bh, &de) > -1) {
1259 /* check the maximum size of directory */
1260 if (pos >= FAT_MAX_DIR_SIZE)
1261 goto error;
1262
1263 if (IS_FREE(de->name)) {
1264 if (prev != bh) {
1265 get_bh(bh);
1266 bhs[nr_bhs] = prev = bh;
1267 nr_bhs++;
1268 }
1269 free_slots++;
1270 if (free_slots == nr_slots)
1271 goto found;
1272 } else {
1273 for (i = 0; i < nr_bhs; i++)
1274 brelse(bhs[i]);
1275 prev = NULL;
1276 free_slots = nr_bhs = 0;
1277 }
1278 }
1279 if (dir->i_ino == MSDOS_ROOT_INO) {
1280 if (sbi->fat_bits != 32)
1281 goto error;
1282 } else if (MSDOS_I(dir)->i_start == 0) {
869f58c0 1283 fat_msg(sb, KERN_ERR, "Corrupted directory (i_pos %lld)",
1da177e4
LT
1284 MSDOS_I(dir)->i_pos);
1285 err = -EIO;
1286 goto error;
1287 }
1288
1289found:
1290 err = 0;
1291 pos -= free_slots * sizeof(*de);
1292 nr_slots -= free_slots;
1293 if (free_slots) {
1294 /*
1295 * Second stage: filling the free entries with new entries.
1296 * NOTE: If this slots has shortname, first, we write
1297 * the long name slots, then write the short name.
1298 */
1299 int size = free_slots * sizeof(*de);
1300 int offset = pos & (sb->s_blocksize - 1);
1301 int long_bhs = nr_bhs - (nr_slots == 0);
1302
1303 /* Fill the long name slots. */
1304 for (i = 0; i < long_bhs; i++) {
1305 int copy = min_t(int, sb->s_blocksize - offset, size);
1306 memcpy(bhs[i]->b_data + offset, slots, copy);
b522412a 1307 mark_buffer_dirty_inode(bhs[i], dir);
1da177e4
LT
1308 offset = 0;
1309 slots += copy;
1310 size -= copy;
1311 }
1312 if (long_bhs && IS_DIRSYNC(dir))
1313 err = fat_sync_bhs(bhs, long_bhs);
1314 if (!err && i < nr_bhs) {
1315 /* Fill the short name slot. */
1316 int copy = min_t(int, sb->s_blocksize - offset, size);
1317 memcpy(bhs[i]->b_data + offset, slots, copy);
b522412a 1318 mark_buffer_dirty_inode(bhs[i], dir);
1da177e4
LT
1319 if (IS_DIRSYNC(dir))
1320 err = sync_dirty_buffer(bhs[i]);
1321 }
1322 for (i = 0; i < nr_bhs; i++)
1323 brelse(bhs[i]);
1324 if (err)
1325 goto error_remove;
1326 }
1327
1328 if (nr_slots) {
1329 int cluster, nr_cluster;
1330
1331 /*
1332 * Third stage: allocate the cluster for new entries.
1333 * And initialize the cluster with new entries, then
1334 * add the cluster to dir.
1335 */
1336 cluster = fat_add_new_entries(dir, slots, nr_slots, &nr_cluster,
1337 &de, &bh, &i_pos);
1338 if (cluster < 0) {
1339 err = cluster;
1340 goto error_remove;
1341 }
1342 err = fat_chain_add(dir, cluster, nr_cluster);
1343 if (err) {
1344 fat_free_clusters(dir, cluster);
1345 goto error_remove;
1346 }
1347 if (dir->i_size & (sbi->cluster_size - 1)) {
85c78591 1348 fat_fs_error(sb, "Odd directory size");
1da177e4
LT
1349 dir->i_size = (dir->i_size + sbi->cluster_size - 1)
1350 & ~((loff_t)sbi->cluster_size - 1);
1351 }
1352 dir->i_size += nr_cluster << sbi->cluster_bits;
1353 MSDOS_I(dir)->mmu_private += nr_cluster << sbi->cluster_bits;
1354 }
1355 sinfo->slot_off = pos;
1356 sinfo->de = de;
1357 sinfo->bh = bh;
1358 sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
1359
1360 return 0;
1361
1362error:
1363 brelse(bh);
1364 for (i = 0; i < nr_bhs; i++)
1365 brelse(bhs[i]);
1366 return err;
1367
1368error_remove:
1369 brelse(bh);
1370 if (free_slots)
1371 __fat_remove_entries(dir, pos, free_slots);
1372 return err;
1373}
7c709d00 1374EXPORT_SYMBOL_GPL(fat_add_entries);