dir.c 34.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 *  linux/fs/fat/dir.c
 *
 *  directory handling functions for fat-based filesystems
 *
 *  Written 1992,1993 by Werner Almesberger
 *
 *  Hidden files 1995 by Albert Cahalan <albert@ccs.neu.edu> <adc@coe.neu.edu>
 *
 *  VFAT extensions by Gordon Chaffee <chaffee@plateau.cs.berkeley.edu>
 *  Merged with msdos fs by Henrik Storner <storner@osiris.ping.dk>
 *  Rewritten for constant inumbers. Plugged buffer overrun in readdir(). AV
 *  Short name translation 1999, 2001 by Wolfram Pienkoss <wp@bszh.de>
 */

#include <linux/slab.h>
17
#include <linux/compat.h>
18
#include <linux/uaccess.h>
J
Jeff Layton 已提交
19
#include <linux/iversion.h>
O
OGAWA Hirofumi 已提交
20
#include "fat.h"
L
Linus Torvalds 已提交
21

A
Alan Stern 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34
/*
 * Maximum buffer size of short name.
 * [(MSDOS_NAME + '.') * max one char + nul]
 * For msdos style, ['.' (hidden) + MSDOS_NAME + '.' + nul]
 */
#define FAT_MAX_SHORT_SIZE	((MSDOS_NAME + 1) * NLS_MAX_CHARSET_SIZE + 1)
/*
 * Maximum buffer size of unicode chars from slots.
 * [(max longname slots * 13 (size in a slot) + nul) * sizeof(wchar_t)]
 */
#define FAT_MAX_UNI_CHARS	((MSDOS_SLOTS - 1) * 13 + 1)
#define FAT_MAX_UNI_SIZE	(FAT_MAX_UNI_CHARS * sizeof(wchar_t))

35 36 37 38 39
static inline unsigned char fat_tolower(unsigned char c)
{
	return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
}

L
Linus Torvalds 已提交
40 41 42 43 44 45 46 47
static inline loff_t fat_make_i_pos(struct super_block *sb,
				    struct buffer_head *bh,
				    struct msdos_dir_entry *de)
{
	return ((loff_t)bh->b_blocknr << MSDOS_SB(sb)->dir_per_block_bits)
		| (de - (struct msdos_dir_entry *)bh->b_data);
}

48 49 50 51 52 53 54 55 56 57 58 59
static inline void fat_dir_readahead(struct inode *dir, sector_t iblock,
				     sector_t phys)
{
	struct super_block *sb = dir->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	struct buffer_head *bh;
	int sec;

	/* This is not a first sector of cluster, or sec_per_clus == 1 */
	if ((iblock & (sbi->sec_per_clus - 1)) || sbi->sec_per_clus == 1)
		return;
	/* root dir of FAT12/FAT16 */
60
	if (!is_fat32(sbi) && (dir->i_ino == MSDOS_ROOT_INO))
61 62
		return;

63 64
	bh = sb_find_get_block(sb, phys);
	if (bh == NULL || !buffer_uptodate(bh)) {
65 66 67 68 69 70
		for (sec = 0; sec < sbi->sec_per_clus; sec++)
			sb_breadahead(sb, phys + sec);
	}
	brelse(bh);
}

L
Linus Torvalds 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/* Returns the inode number of the directory entry at offset pos. If bh is
   non-NULL, it is brelse'd before. Pos is incremented. The buffer header is
   returned in bh.
   AV. Most often we do it item-by-item. Makes sense to optimize.
   AV. OK, there we go: if both bh and de are non-NULL we assume that we just
   AV. want the next entry (took one explicit de=NULL in vfat/namei.c).
   AV. It's done in fat_get_entry() (inlined), here the slow case lives.
   AV. Additionally, when we return -1 (i.e. reached the end of directory)
   AV. we make bh NULL.
 */
static int fat__get_entry(struct inode *dir, loff_t *pos,
			  struct buffer_head **bh, struct msdos_dir_entry **de)
{
	struct super_block *sb = dir->i_sb;
	sector_t phys, iblock;
86 87
	unsigned long mapped_blocks;
	int err, offset;
L
Linus Torvalds 已提交
88 89 90 91 92 93 94

next:
	if (*bh)
		brelse(*bh);

	*bh = NULL;
	iblock = *pos >> sb->s_blocksize_bits;
95
	err = fat_bmap(dir, iblock, &phys, &mapped_blocks, 0, false);
L
Linus Torvalds 已提交
96 97 98
	if (err || !phys)
		return -1;	/* beyond EOF or error */

99 100
	fat_dir_readahead(dir, iblock, phys);

L
Linus Torvalds 已提交
101 102
	*bh = sb_bread(sb, phys);
	if (*bh == NULL) {
103 104
		fat_msg_ratelimit(sb, KERN_ERR,
			"Directory bread(block %llu) failed", (llu)phys);
L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
		/* skip this block */
		*pos = (iblock + 1) << sb->s_blocksize_bits;
		goto next;
	}

	offset = *pos & (sb->s_blocksize - 1);
	*pos += sizeof(struct msdos_dir_entry);
	*de = (struct msdos_dir_entry *)((*bh)->b_data + offset);

	return 0;
}

static inline int fat_get_entry(struct inode *dir, loff_t *pos,
				struct buffer_head **bh,
				struct msdos_dir_entry **de)
{
	/* Fast stuff first */
	if (*bh && *de &&
123 124
	   (*de - (struct msdos_dir_entry *)(*bh)->b_data) <
				MSDOS_SB(dir->i_sb)->dir_per_block - 1) {
L
Linus Torvalds 已提交
125 126 127 128 129 130 131 132
		*pos += sizeof(struct msdos_dir_entry);
		(*de)++;
		return 0;
	}
	return fat__get_entry(dir, pos, bh, de);
}

/*
A
Alexey Dobriyan 已提交
133
 * Convert Unicode 16 to UTF-8, translated Unicode, or ASCII.
L
Linus Torvalds 已提交
134 135 136 137 138 139 140 141
 * If uni_xlate is enabled and we can't get a 1:1 conversion, use a
 * colon as an escape character since it is normally invalid on the vfat
 * filesystem. The following four characters are the hexadecimal digits
 * of Unicode value. This lets us do a full dump and restore of Unicode
 * filenames. We could get into some trouble with long Unicode names,
 * but ignore that right now.
 * Ahem... Stack smashing in ring 0 isn't fun. Fixed.
 */
142 143
static int uni16_to_x8(struct super_block *sb, unsigned char *ascii,
		       const wchar_t *uni, int len, struct nls_table *nls)
L
Linus Torvalds 已提交
144
{
145
	int uni_xlate = MSDOS_SB(sb)->options.unicode_xlate;
O
OGAWA Hirofumi 已提交
146 147
	const wchar_t *ip;
	wchar_t ec;
148
	unsigned char *op;
L
Linus Torvalds 已提交
149 150 151 152 153
	int charlen;

	ip = uni;
	op = ascii;

154
	while (*ip && ((len - NLS_MAX_CHARSET_SIZE) > 0)) {
L
Linus Torvalds 已提交
155
		ec = *ip++;
156 157
		charlen = nls->uni2char(ec, op, NLS_MAX_CHARSET_SIZE);
		if (charlen > 0) {
L
Linus Torvalds 已提交
158
			op += charlen;
159
			len -= charlen;
L
Linus Torvalds 已提交
160 161
		} else {
			if (uni_xlate == 1) {
162
				*op++ = ':';
163 164
				op = hex_byte_pack(op, ec >> 8);
				op = hex_byte_pack(op, ec);
165
				len -= 5;
L
Linus Torvalds 已提交
166 167
			} else {
				*op++ = '?';
168
				len--;
L
Linus Torvalds 已提交
169 170 171
			}
		}
	}
172 173

	if (unlikely(*ip)) {
174 175
		fat_msg(sb, KERN_WARNING,
			"filename was truncated while converting.");
176 177
	}

L
Linus Torvalds 已提交
178
	*op = 0;
179
	return op - ascii;
L
Linus Torvalds 已提交
180 181
}

182
static inline int fat_uni_to_x8(struct super_block *sb, const wchar_t *uni,
O
OGAWA Hirofumi 已提交
183 184
				unsigned char *buf, int size)
{
185
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
O
OGAWA Hirofumi 已提交
186
	if (sbi->options.utf8)
A
Alan Stern 已提交
187 188
		return utf16s_to_utf8s(uni, FAT_MAX_UNI_CHARS,
				UTF16_HOST_ENDIAN, buf, size);
O
OGAWA Hirofumi 已提交
189
	else
190
		return uni16_to_x8(sb, buf, uni, size, sbi->nls_io);
O
OGAWA Hirofumi 已提交
191 192
}

L
Linus Torvalds 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206
static inline int
fat_short2uni(struct nls_table *t, unsigned char *c, int clen, wchar_t *uni)
{
	int charlen;

	charlen = t->char2uni(c, clen, uni);
	if (charlen < 0) {
		*uni = 0x003f;	/* a question mark */
		charlen = 1;
	}
	return charlen;
}

static inline int
207 208
fat_short2lower_uni(struct nls_table *t, unsigned char *c,
		    int clen, wchar_t *uni)
L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222
{
	int charlen;
	wchar_t wc;

	charlen = t->char2uni(c, clen, &wc);
	if (charlen < 0) {
		*uni = 0x003f;	/* a question mark */
		charlen = 1;
	} else if (charlen <= 1) {
		unsigned char nc = t->charset2lower[*c];

		if (!nc)
			nc = *c;

223 224
		charlen = t->char2uni(&nc, 1, uni);
		if (charlen < 0) {
L
Linus Torvalds 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
			*uni = 0x003f;	/* a question mark */
			charlen = 1;
		}
	} else
		*uni = wc;

	return charlen;
}

static inline int
fat_shortname2uni(struct nls_table *nls, unsigned char *buf, int buf_size,
		  wchar_t *uni_buf, unsigned short opt, int lower)
{
	int len = 0;

	if (opt & VFAT_SFN_DISPLAY_LOWER)
		len =  fat_short2lower_uni(nls, buf, buf_size, uni_buf);
	else if (opt & VFAT_SFN_DISPLAY_WIN95)
		len = fat_short2uni(nls, buf, buf_size, uni_buf);
	else if (opt & VFAT_SFN_DISPLAY_WINNT) {
		if (lower)
			len = fat_short2lower_uni(nls, buf, buf_size, uni_buf);
		else
			len = fat_short2uni(nls, buf, buf_size, uni_buf);
	} else
		len = fat_short2uni(nls, buf, buf_size, uni_buf);

	return len;
}

O
OGAWA Hirofumi 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267
static inline int fat_name_match(struct msdos_sb_info *sbi,
				 const unsigned char *a, int a_len,
				 const unsigned char *b, int b_len)
{
	if (a_len != b_len)
		return 0;

	if (sbi->options.name_check != 's')
		return !nls_strnicmp(sbi->nls_io, a, b, a_len);
	else
		return !memcmp(a, b, a_len);
}

268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
enum { PARSE_INVALID = 1, PARSE_NOT_LONGNAME, PARSE_EOF, };

/**
 * fat_parse_long - Parse extended directory entry.
 *
 * This function returns zero on success, negative value on error, or one of
 * the following:
 *
 * %PARSE_INVALID - Directory entry is invalid.
 * %PARSE_NOT_LONGNAME - Directory entry does not contain longname.
 * %PARSE_EOF - Directory has no more entries.
 */
static int fat_parse_long(struct inode *dir, loff_t *pos,
			  struct buffer_head **bh, struct msdos_dir_entry **de,
			  wchar_t **unicode, unsigned char *nr_slots)
{
	struct msdos_dir_slot *ds;
	unsigned char id, slot, slots, alias_checksum;

	if (!*unicode) {
O
OGAWA Hirofumi 已提交
288
		*unicode = __getname();
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
		if (!*unicode) {
			brelse(*bh);
			return -ENOMEM;
		}
	}
parse_long:
	ds = (struct msdos_dir_slot *)*de;
	id = ds->id;
	if (!(id & 0x40))
		return PARSE_INVALID;
	slots = id & ~0x40;
	if (slots > 20 || !slots)	/* ceil(256 * 2 / 26) */
		return PARSE_INVALID;
	*nr_slots = slots;
	alias_checksum = ds->alias_checksum;

	slot = slots;
	while (1) {
		int offset;

		slot--;
		offset = slot * 13;
		fat16_towchar(*unicode + offset, ds->name0_4, 5);
		fat16_towchar(*unicode + offset + 5, ds->name5_10, 6);
		fat16_towchar(*unicode + offset + 11, ds->name11_12, 2);

		if (ds->id & 0x40)
			(*unicode)[offset + 13] = 0;
		if (fat_get_entry(dir, pos, bh, de) < 0)
			return PARSE_EOF;
		if (slot == 0)
			break;
		ds = (struct msdos_dir_slot *)*de;
		if (ds->attr != ATTR_EXT)
			return PARSE_NOT_LONGNAME;
		if ((ds->id & ~0x40) != slot)
			goto parse_long;
		if (ds->alias_checksum != alias_checksum)
			goto parse_long;
	}
	if ((*de)->name[0] == DELETED_FLAG)
		return PARSE_INVALID;
	if ((*de)->attr == ATTR_EXT)
		goto parse_long;
	if (IS_FREE((*de)->name) || ((*de)->attr & ATTR_VOLUME))
		return PARSE_INVALID;
	if (fat_checksum((*de)->name) != alias_checksum)
		*nr_slots = 0;

	return 0;
}

341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
/**
 * fat_parse_short - Parse MS-DOS (short) directory entry.
 * @sb:		superblock
 * @de:		directory entry to parse
 * @name:	FAT_MAX_SHORT_SIZE array in which to place extracted name
 * @dot_hidden:	Nonzero == prepend '.' to names with ATTR_HIDDEN
 *
 * Returns the number of characters extracted into 'name'.
 */
static int fat_parse_short(struct super_block *sb,
			   const struct msdos_dir_entry *de,
			   unsigned char *name, int dot_hidden)
{
	const struct msdos_sb_info *sbi = MSDOS_SB(sb);
	int isvfat = sbi->options.isvfat;
	int nocase = sbi->options.nocase;
	unsigned short opt_shortname = sbi->options.shortname;
	struct nls_table *nls_disk = sbi->nls_disk;
	wchar_t uni_name[14];
	unsigned char c, work[MSDOS_NAME];
	unsigned char *ptname = name;
	int chi, chl, i, j, k;
	int dotoffset = 0;
	int name_len = 0, uni_len = 0;

	if (!isvfat && dot_hidden && (de->attr & ATTR_HIDDEN)) {
		*ptname++ = '.';
		dotoffset = 1;
	}

	memcpy(work, de->name, sizeof(work));
372 373 374
	/* For an explanation of the special treatment of 0x05 in
	 * filenames, see msdos_format_name in namei_msdos.c
	 */
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
	if (work[0] == 0x05)
		work[0] = 0xE5;

	/* Filename */
	for (i = 0, j = 0; i < 8;) {
		c = work[i];
		if (!c)
			break;
		chl = fat_shortname2uni(nls_disk, &work[i], 8 - i,
					&uni_name[j++], opt_shortname,
					de->lcase & CASE_LOWER_BASE);
		if (chl <= 1) {
			if (!isvfat)
				ptname[i] = nocase ? c : fat_tolower(c);
			i++;
			if (c != ' ') {
				name_len = i;
				uni_len  = j;
			}
		} else {
			uni_len = j;
			if (isvfat)
				i += min(chl, 8-i);
			else {
				for (chi = 0; chi < chl && i < 8; chi++, i++)
					ptname[i] = work[i];
			}
			if (chl)
				name_len = i;
		}
	}

	i = name_len;
	j = uni_len;
	fat_short2uni(nls_disk, ".", 1, &uni_name[j++]);
	if (!isvfat)
		ptname[i] = '.';
	i++;

	/* Extension */
	for (k = 8; k < MSDOS_NAME;) {
		c = work[k];
		if (!c)
			break;
		chl = fat_shortname2uni(nls_disk, &work[k], MSDOS_NAME - k,
					&uni_name[j++], opt_shortname,
					de->lcase & CASE_LOWER_EXT);
		if (chl <= 1) {
			k++;
			if (!isvfat)
				ptname[i] = nocase ? c : fat_tolower(c);
			i++;
			if (c != ' ') {
				name_len = i;
				uni_len  = j;
			}
		} else {
			uni_len = j;
			if (isvfat) {
				int offset = min(chl, MSDOS_NAME-k);
				k += offset;
				i += offset;
			} else {
				for (chi = 0; chi < chl && k < MSDOS_NAME;
				     chi++, i++, k++) {
						ptname[i] = work[k];
				}
			}
			if (chl)
				name_len = i;
		}
	}

	if (name_len > 0) {
		name_len += dotoffset;

		if (sbi->options.isvfat) {
			uni_name[uni_len] = 0x0000;
			name_len = fat_uni_to_x8(sb, uni_name, name,
						 FAT_MAX_SHORT_SIZE);
		}
	}

	return name_len;
}

L
Linus Torvalds 已提交
461
/*
462
 * Return values: negative -> error/not found, 0 -> found.
L
Linus Torvalds 已提交
463 464 465 466 467 468 469 470
 */
int fat_search_long(struct inode *inode, const unsigned char *name,
		    int name_len, struct fat_slot_info *sinfo)
{
	struct super_block *sb = inode->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	struct buffer_head *bh = NULL;
	struct msdos_dir_entry *de;
471
	unsigned char nr_slots;
L
Linus Torvalds 已提交
472
	wchar_t *unicode = NULL;
473
	unsigned char bufname[FAT_MAX_SHORT_SIZE];
L
Linus Torvalds 已提交
474
	loff_t cpos = 0;
475
	int err, len;
L
Linus Torvalds 已提交
476 477

	err = -ENOENT;
O
OGAWA Hirofumi 已提交
478
	while (1) {
L
Linus Torvalds 已提交
479
		if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
O
OGAWA Hirofumi 已提交
480
			goto end_of_dir;
L
Linus Torvalds 已提交
481 482 483 484 485 486 487 488 489
parse_record:
		nr_slots = 0;
		if (de->name[0] == DELETED_FLAG)
			continue;
		if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
			continue;
		if (de->attr != ATTR_EXT && IS_FREE(de->name))
			continue;
		if (de->attr == ATTR_EXT) {
490 491
			int status = fat_parse_long(inode, &cpos, &bh, &de,
						    &unicode, &nr_slots);
492 493 494 495
			if (status < 0) {
				err = status;
				goto end_of_dir;
			} else if (status == PARSE_INVALID)
L
Linus Torvalds 已提交
496
				continue;
497 498 499
			else if (status == PARSE_NOT_LONGNAME)
				goto parse_record;
			else if (status == PARSE_EOF)
O
OGAWA Hirofumi 已提交
500
				goto end_of_dir;
L
Linus Torvalds 已提交
501 502
		}

503 504 505 506 507 508 509
		/* Never prepend '.' to hidden files here.
		 * That is done only for msdos mounts (and only when
		 * 'dotsOK=yes'); if we are executing here, it is in the
		 * context of a vfat mount.
		 */
		len = fat_parse_short(sb, de, bufname, 0);
		if (len == 0)
L
Linus Torvalds 已提交
510 511
			continue;

O
OGAWA Hirofumi 已提交
512 513 514
		/* Compare shortname */
		if (fat_name_match(sbi, name, name_len, bufname, len))
			goto found;
L
Linus Torvalds 已提交
515 516

		if (nr_slots) {
517 518 519
			void *longname = unicode + FAT_MAX_UNI_CHARS;
			int size = PATH_MAX - FAT_MAX_UNI_SIZE;

O
OGAWA Hirofumi 已提交
520
			/* Compare longname */
521
			len = fat_uni_to_x8(sb, unicode, longname, size);
522
			if (fat_name_match(sbi, name, name_len, longname, len))
O
OGAWA Hirofumi 已提交
523
				goto found;
L
Linus Torvalds 已提交
524 525 526
		}
	}

O
OGAWA Hirofumi 已提交
527
found:
L
Linus Torvalds 已提交
528 529 530 531 532 533 534
	nr_slots++;	/* include the de */
	sinfo->slot_off = cpos - nr_slots * sizeof(*de);
	sinfo->nr_slots = nr_slots;
	sinfo->de = de;
	sinfo->bh = bh;
	sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
	err = 0;
O
OGAWA Hirofumi 已提交
535
end_of_dir:
L
Linus Torvalds 已提交
536
	if (unicode)
O
OGAWA Hirofumi 已提交
537
		__putname(unicode);
L
Linus Torvalds 已提交
538 539 540

	return err;
}
541
EXPORT_SYMBOL_GPL(fat_search_long);
L
Linus Torvalds 已提交
542 543

struct fat_ioctl_filldir_callback {
A
Al Viro 已提交
544
	struct dir_context ctx;
545
	void __user *dirent;
L
Linus Torvalds 已提交
546 547 548 549 550 551 552 553
	int result;
	/* for dir ioctl */
	const char *longname;
	int long_len;
	const char *shortname;
	int short_len;
};

A
Al Viro 已提交
554 555 556
static int __fat_readdir(struct inode *inode, struct file *file,
			 struct dir_context *ctx, int short_only,
			 struct fat_ioctl_filldir_callback *both)
L
Linus Torvalds 已提交
557 558 559 560 561
{
	struct super_block *sb = inode->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	struct buffer_head *bh;
	struct msdos_dir_entry *de;
O
OGAWA Hirofumi 已提交
562
	unsigned char nr_slots;
L
Linus Torvalds 已提交
563
	wchar_t *unicode = NULL;
564
	unsigned char bufname[FAT_MAX_SHORT_SIZE];
L
Linus Torvalds 已提交
565
	int isvfat = sbi->options.isvfat;
566
	const char *fill_name = NULL;
A
Al Viro 已提交
567
	int fake_offset = 0;
L
Linus Torvalds 已提交
568
	loff_t cpos;
569
	int short_len = 0, fill_len = 0;
L
Linus Torvalds 已提交
570 571
	int ret = 0;

M
Marco Stornelli 已提交
572
	mutex_lock(&sbi->s_lock);
L
Linus Torvalds 已提交
573

A
Al Viro 已提交
574
	cpos = ctx->pos;
L
Linus Torvalds 已提交
575 576
	/* Fake . and .. for the root directory. */
	if (inode->i_ino == MSDOS_ROOT_INO) {
A
Al Viro 已提交
577 578 579 580
		if (!dir_emit_dots(file, ctx))
			goto out;
		if (ctx->pos == 2) {
			fake_offset = 1;
L
Linus Torvalds 已提交
581 582 583
			cpos = 0;
		}
	}
O
OGAWA Hirofumi 已提交
584
	if (cpos & (sizeof(struct msdos_dir_entry) - 1)) {
L
Linus Torvalds 已提交
585 586 587 588 589
		ret = -ENOENT;
		goto out;
	}

	bh = NULL;
O
OGAWA Hirofumi 已提交
590
get_new:
L
Linus Torvalds 已提交
591
	if (fat_get_entry(inode, &cpos, &bh, &de) == -1)
O
OGAWA Hirofumi 已提交
592
		goto end_of_dir;
593
parse_record:
O
OGAWA Hirofumi 已提交
594
	nr_slots = 0;
595 596 597 598 599
	/*
	 * Check for long filename entry, but if short_only, we don't
	 * need to parse long filename.
	 */
	if (isvfat && !short_only) {
L
Linus Torvalds 已提交
600
		if (de->name[0] == DELETED_FLAG)
O
OGAWA Hirofumi 已提交
601
			goto record_end;
L
Linus Torvalds 已提交
602
		if (de->attr != ATTR_EXT && (de->attr & ATTR_VOLUME))
O
OGAWA Hirofumi 已提交
603
			goto record_end;
L
Linus Torvalds 已提交
604
		if (de->attr != ATTR_EXT && IS_FREE(de->name))
O
OGAWA Hirofumi 已提交
605
			goto record_end;
L
Linus Torvalds 已提交
606 607
	} else {
		if ((de->attr & ATTR_VOLUME) || IS_FREE(de->name))
O
OGAWA Hirofumi 已提交
608
			goto record_end;
L
Linus Torvalds 已提交
609 610 611
	}

	if (isvfat && de->attr == ATTR_EXT) {
612
		int status = fat_parse_long(inode, &cpos, &bh, &de,
O
OGAWA Hirofumi 已提交
613
					    &unicode, &nr_slots);
614
		if (status < 0) {
615
			bh = NULL;
616
			ret = status;
617
			goto end_of_dir;
618
		} else if (status == PARSE_INVALID)
O
OGAWA Hirofumi 已提交
619
			goto record_end;
620 621 622
		else if (status == PARSE_NOT_LONGNAME)
			goto parse_record;
		else if (status == PARSE_EOF)
O
OGAWA Hirofumi 已提交
623
			goto end_of_dir;
624 625 626 627

		if (nr_slots) {
			void *longname = unicode + FAT_MAX_UNI_CHARS;
			int size = PATH_MAX - FAT_MAX_UNI_SIZE;
628
			int len = fat_uni_to_x8(sb, unicode, longname, size);
629 630 631 632 633 634

			fill_name = longname;
			fill_len = len;
			/* !both && !short_only, so we don't need shortname. */
			if (!both)
				goto start_filldir;
A
Al Viro 已提交
635 636 637 638 639 640 641 642 643 644 645 646 647

			short_len = fat_parse_short(sb, de, bufname,
						    sbi->options.dotsOK);
			if (short_len == 0)
				goto record_end;
			/* hack for fat_ioctl_filldir() */
			both->longname = fill_name;
			both->long_len = fill_len;
			both->shortname = bufname;
			both->short_len = short_len;
			fill_name = NULL;
			fill_len = 0;
			goto start_filldir;
648
		}
L
Linus Torvalds 已提交
649 650
	}

651 652
	short_len = fat_parse_short(sb, de, bufname, sbi->options.dotsOK);
	if (short_len == 0)
O
OGAWA Hirofumi 已提交
653
		goto record_end;
L
Linus Torvalds 已提交
654

A
Al Viro 已提交
655 656
	fill_name = bufname;
	fill_len = short_len;
657 658

start_filldir:
659 660 661
	ctx->pos = cpos - (nr_slots + 1) * sizeof(struct msdos_dir_entry);
	if (fake_offset && ctx->pos < 2)
		ctx->pos = 2;
A
Al Viro 已提交
662 663 664 665 666 667 668

	if (!memcmp(de->name, MSDOS_DOT, MSDOS_NAME)) {
		if (!dir_emit_dot(file, ctx))
			goto fill_failed;
	} else if (!memcmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
		if (!dir_emit_dotdot(file, ctx))
			goto fill_failed;
L
Linus Torvalds 已提交
669
	} else {
A
Al Viro 已提交
670
		unsigned long inum;
L
Linus Torvalds 已提交
671 672 673 674 675 676 677
		loff_t i_pos = fat_make_i_pos(sb, bh, de);
		struct inode *tmp = fat_iget(sb, i_pos);
		if (tmp) {
			inum = tmp->i_ino;
			iput(tmp);
		} else
			inum = iunique(sb, MSDOS_ROOT_INO);
A
Al Viro 已提交
678 679 680
		if (!dir_emit(ctx, fill_name, fill_len, inum,
			    (de->attr & ATTR_DIR) ? DT_DIR : DT_REG))
			goto fill_failed;
L
Linus Torvalds 已提交
681 682
	}

O
OGAWA Hirofumi 已提交
683
record_end:
A
Al Viro 已提交
684 685
	fake_offset = 0;
	ctx->pos = cpos;
O
OGAWA Hirofumi 已提交
686
	goto get_new;
687

O
OGAWA Hirofumi 已提交
688
end_of_dir:
689 690 691 692
	if (fake_offset && cpos < 2)
		ctx->pos = 2;
	else
		ctx->pos = cpos;
O
OGAWA Hirofumi 已提交
693
fill_failed:
694
	brelse(bh);
L
Linus Torvalds 已提交
695
	if (unicode)
O
OGAWA Hirofumi 已提交
696
		__putname(unicode);
L
Linus Torvalds 已提交
697
out:
M
Marco Stornelli 已提交
698
	mutex_unlock(&sbi->s_lock);
699

L
Linus Torvalds 已提交
700 701 702
	return ret;
}

A
Al Viro 已提交
703
static int fat_readdir(struct file *file, struct dir_context *ctx)
L
Linus Torvalds 已提交
704
{
A
Al Viro 已提交
705
	return __fat_readdir(file_inode(file), file, ctx, 0, NULL);
L
Linus Torvalds 已提交
706 707
}

708
#define FAT_IOCTL_FILLDIR_FUNC(func, dirent_type)			   \
709
static int func(struct dir_context *ctx, const char *name, int name_len,   \
710 711
			     loff_t offset, u64 ino, unsigned int d_type)  \
{									   \
712 713
	struct fat_ioctl_filldir_callback *buf =			   \
		container_of(ctx, struct fat_ioctl_filldir_callback, ctx); \
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
	struct dirent_type __user *d1 = buf->dirent;			   \
	struct dirent_type __user *d2 = d1 + 1;				   \
									   \
	if (buf->result)						   \
		return -EINVAL;						   \
	buf->result++;							   \
									   \
	if (name != NULL) {						   \
		/* dirent has only short name */			   \
		if (name_len >= sizeof(d1->d_name))			   \
			name_len = sizeof(d1->d_name) - 1;		   \
									   \
		if (put_user(0, d2->d_name)			||	   \
		    put_user(0, &d2->d_reclen)			||	   \
		    copy_to_user(d1->d_name, name, name_len)	||	   \
		    put_user(0, d1->d_name + name_len)		||	   \
		    put_user(name_len, &d1->d_reclen))			   \
			goto efault;					   \
	} else {							   \
		/* dirent has short and long name */			   \
		const char *longname = buf->longname;			   \
		int long_len = buf->long_len;				   \
		const char *shortname = buf->shortname;			   \
		int short_len = buf->short_len;				   \
									   \
		if (long_len >= sizeof(d1->d_name))			   \
			long_len = sizeof(d1->d_name) - 1;		   \
		if (short_len >= sizeof(d1->d_name))			   \
			short_len = sizeof(d1->d_name) - 1;		   \
									   \
		if (copy_to_user(d2->d_name, longname, long_len)	|| \
		    put_user(0, d2->d_name + long_len)			|| \
		    put_user(long_len, &d2->d_reclen)			|| \
		    put_user(ino, &d2->d_ino)				|| \
		    put_user(offset, &d2->d_off)			|| \
		    copy_to_user(d1->d_name, shortname, short_len)	|| \
		    put_user(0, d1->d_name + short_len)			|| \
		    put_user(short_len, &d1->d_reclen))			   \
			goto efault;					   \
	}								   \
	return 0;							   \
efault:									   \
	buf->result = -EFAULT;						   \
	return -EFAULT;							   \
}

760
FAT_IOCTL_FILLDIR_FUNC(fat_ioctl_filldir, __fat_dirent)
761

A
Al Viro 已提交
762
static int fat_ioctl_readdir(struct inode *inode, struct file *file,
763 764
			     void __user *dirent, filldir_t filldir,
			     int short_only, int both)
L
Linus Torvalds 已提交
765
{
A
Al Viro 已提交
766 767 768 769
	struct fat_ioctl_filldir_callback buf = {
		.ctx.actor = filldir,
		.dirent = dirent
	};
770 771 772 773
	int ret;

	buf.dirent = dirent;
	buf.result = 0;
A
Al Viro 已提交
774
	inode_lock_shared(inode);
A
Al Viro 已提交
775
	buf.ctx.pos = file->f_pos;
776 777
	ret = -ENOENT;
	if (!IS_DEADDIR(inode)) {
A
Al Viro 已提交
778 779 780
		ret = __fat_readdir(inode, file, &buf.ctx,
				    short_only, both ? &buf : NULL);
		file->f_pos = buf.ctx.pos;
L
Linus Torvalds 已提交
781
	}
A
Al Viro 已提交
782
	inode_unlock_shared(inode);
783 784 785
	if (ret >= 0)
		ret = buf.result;
	return ret;
L
Linus Torvalds 已提交
786 787
}

A
Arnd Bergmann 已提交
788 789
static long fat_dir_ioctl(struct file *filp, unsigned int cmd,
			  unsigned long arg)
L
Linus Torvalds 已提交
790
{
A
Al Viro 已提交
791
	struct inode *inode = file_inode(filp);
792
	struct __fat_dirent __user *d1 = (struct __fat_dirent __user *)arg;
793
	int short_only, both;
L
Linus Torvalds 已提交
794 795 796 797 798 799 800 801 802 803 804

	switch (cmd) {
	case VFAT_IOCTL_READDIR_SHORT:
		short_only = 1;
		both = 0;
		break;
	case VFAT_IOCTL_READDIR_BOTH:
		short_only = 0;
		both = 1;
		break;
	default:
A
Arnd Bergmann 已提交
805
		return fat_generic_ioctl(filp, cmd, arg);
L
Linus Torvalds 已提交
806 807
	}

808
	if (!access_ok(VERIFY_WRITE, d1, sizeof(struct __fat_dirent[2])))
L
Linus Torvalds 已提交
809 810 811 812 813 814 815 816 817
		return -EFAULT;
	/*
	 * Yes, we don't need this put_user() absolutely. However old
	 * code didn't return the right value. So, app use this value,
	 * in order to check whether it is EOF.
	 */
	if (put_user(0, &d1->d_reclen))
		return -EFAULT;

818 819
	return fat_ioctl_readdir(inode, filp, d1, fat_ioctl_filldir,
				 short_only, both);
L
Linus Torvalds 已提交
820 821
}

822 823 824 825
#ifdef CONFIG_COMPAT
#define	VFAT_IOCTL_READDIR_BOTH32	_IOR('r', 1, struct compat_dirent[2])
#define	VFAT_IOCTL_READDIR_SHORT32	_IOR('r', 2, struct compat_dirent[2])

826
FAT_IOCTL_FILLDIR_FUNC(fat_compat_ioctl_filldir, compat_dirent)
827

828
static long fat_compat_dir_ioctl(struct file *filp, unsigned cmd,
829 830
				 unsigned long arg)
{
A
Al Viro 已提交
831
	struct inode *inode = file_inode(filp);
832 833
	struct compat_dirent __user *d1 = compat_ptr(arg);
	int short_only, both;
834 835 836

	switch (cmd) {
	case VFAT_IOCTL_READDIR_SHORT32:
837 838 839 840 841 842
		short_only = 1;
		both = 0;
		break;
	case VFAT_IOCTL_READDIR_BOTH32:
		short_only = 0;
		both = 1;
843 844
		break;
	default:
A
Arnd Bergmann 已提交
845
		return fat_generic_ioctl(filp, cmd, (unsigned long)arg);
846 847
	}

848 849 850 851 852 853 854 855 856 857 858 859
	if (!access_ok(VERIFY_WRITE, d1, sizeof(struct compat_dirent[2])))
		return -EFAULT;
	/*
	 * Yes, we don't need this put_user() absolutely. However old
	 * code didn't return the right value. So, app use this value,
	 * in order to check whether it is EOF.
	 */
	if (put_user(0, &d1->d_reclen))
		return -EFAULT;

	return fat_ioctl_readdir(inode, filp, d1, fat_compat_ioctl_filldir,
				 short_only, both);
860 861 862
}
#endif /* CONFIG_COMPAT */

863
const struct file_operations fat_dir_operations = {
864
	.llseek		= generic_file_llseek,
L
Linus Torvalds 已提交
865
	.read		= generic_read_dir,
A
Al Viro 已提交
866
	.iterate_shared	= fat_readdir,
A
Arnd Bergmann 已提交
867
	.unlocked_ioctl	= fat_dir_ioctl,
868 869 870
#ifdef CONFIG_COMPAT
	.compat_ioctl	= fat_compat_dir_ioctl,
#endif
A
Al Viro 已提交
871
	.fsync		= fat_file_fsync,
L
Linus Torvalds 已提交
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
};

static int fat_get_short_entry(struct inode *dir, loff_t *pos,
			       struct buffer_head **bh,
			       struct msdos_dir_entry **de)
{
	while (fat_get_entry(dir, pos, bh, de) >= 0) {
		/* free entry or long name entry or volume label */
		if (!IS_FREE((*de)->name) && !((*de)->attr & ATTR_VOLUME))
			return 0;
	}
	return -ENOENT;
}

/*
887 888 889 890 891 892 893
 * The ".." entry can not provide the "struct fat_slot_info" information
 * for inode, nor a usable i_pos. So, this function provides some information
 * only.
 *
 * Since this function walks through the on-disk inodes within a directory,
 * callers are responsible for taking any locks necessary to prevent the
 * directory from changing.
L
Linus Torvalds 已提交
894 895
 */
int fat_get_dotdot_entry(struct inode *dir, struct buffer_head **bh,
896
			 struct msdos_dir_entry **de)
L
Linus Torvalds 已提交
897
{
898
	loff_t offset = 0;
L
Linus Torvalds 已提交
899

900
	*de = NULL;
L
Linus Torvalds 已提交
901
	while (fat_get_short_entry(dir, &offset, bh, de) >= 0) {
902
		if (!strncmp((*de)->name, MSDOS_DOTDOT, MSDOS_NAME))
L
Linus Torvalds 已提交
903 904 905 906
			return 0;
	}
	return -ENOENT;
}
907
EXPORT_SYMBOL_GPL(fat_get_dotdot_entry);
L
Linus Torvalds 已提交
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928

/* See if directory is empty */
int fat_dir_empty(struct inode *dir)
{
	struct buffer_head *bh;
	struct msdos_dir_entry *de;
	loff_t cpos;
	int result = 0;

	bh = NULL;
	cpos = 0;
	while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
		if (strncmp(de->name, MSDOS_DOT   , MSDOS_NAME) &&
		    strncmp(de->name, MSDOS_DOTDOT, MSDOS_NAME)) {
			result = -ENOTEMPTY;
			break;
		}
	}
	brelse(bh);
	return result;
}
929
EXPORT_SYMBOL_GPL(fat_dir_empty);
L
Linus Torvalds 已提交
930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973

/*
 * fat_subdirs counts the number of sub-directories of dir. It can be run
 * on directories being created.
 */
int fat_subdirs(struct inode *dir)
{
	struct buffer_head *bh;
	struct msdos_dir_entry *de;
	loff_t cpos;
	int count = 0;

	bh = NULL;
	cpos = 0;
	while (fat_get_short_entry(dir, &cpos, &bh, &de) >= 0) {
		if (de->attr & ATTR_DIR)
			count++;
	}
	brelse(bh);
	return count;
}

/*
 * Scans a directory for a given file (name points to its formatted name).
 * Returns an error code or zero.
 */
int fat_scan(struct inode *dir, const unsigned char *name,
	     struct fat_slot_info *sinfo)
{
	struct super_block *sb = dir->i_sb;

	sinfo->slot_off = 0;
	sinfo->bh = NULL;
	while (fat_get_short_entry(dir, &sinfo->slot_off, &sinfo->bh,
				   &sinfo->de) >= 0) {
		if (!strncmp(sinfo->de->name, name, MSDOS_NAME)) {
			sinfo->slot_off -= sizeof(*sinfo->de);
			sinfo->nr_slots = 1;
			sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
			return 0;
		}
	}
	return -ENOENT;
}
974
EXPORT_SYMBOL_GPL(fat_scan);
L
Linus Torvalds 已提交
975

976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998
/*
 * Scans a directory for a given logstart.
 * Returns an error code or zero.
 */
int fat_scan_logstart(struct inode *dir, int i_logstart,
		      struct fat_slot_info *sinfo)
{
	struct super_block *sb = dir->i_sb;

	sinfo->slot_off = 0;
	sinfo->bh = NULL;
	while (fat_get_short_entry(dir, &sinfo->slot_off, &sinfo->bh,
				   &sinfo->de) >= 0) {
		if (fat_get_start(MSDOS_SB(sb), sinfo->de) == i_logstart) {
			sinfo->slot_off -= sizeof(*sinfo->de);
			sinfo->nr_slots = 1;
			sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);
			return 0;
		}
	}
	return -ENOENT;
}

L
Linus Torvalds 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
static int __fat_remove_entries(struct inode *dir, loff_t pos, int nr_slots)
{
	struct super_block *sb = dir->i_sb;
	struct buffer_head *bh;
	struct msdos_dir_entry *de, *endp;
	int err = 0, orig_slots;

	while (nr_slots) {
		bh = NULL;
		if (fat_get_entry(dir, &pos, &bh, &de) < 0) {
			err = -EIO;
			break;
		}

		orig_slots = nr_slots;
		endp = (struct msdos_dir_entry *)(bh->b_data + sb->s_blocksize);
		while (nr_slots && de < endp) {
			de->name[0] = DELETED_FLAG;
			de++;
			nr_slots--;
		}
A
Al Viro 已提交
1020
		mark_buffer_dirty_inode(bh, dir);
L
Linus Torvalds 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
		if (IS_DIRSYNC(dir))
			err = sync_dirty_buffer(bh);
		brelse(bh);
		if (err)
			break;

		/* pos is *next* de's position, so this does `- sizeof(de)' */
		pos += ((orig_slots - nr_slots) * sizeof(*de)) - sizeof(*de);
	}

	return err;
}

int fat_remove_entries(struct inode *dir, struct fat_slot_info *sinfo)
{
1036
	struct super_block *sb = dir->i_sb;
L
Linus Torvalds 已提交
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
	struct msdos_dir_entry *de;
	struct buffer_head *bh;
	int err = 0, nr_slots;

	/*
	 * First stage: Remove the shortname. By this, the directory
	 * entry is removed.
	 */
	nr_slots = sinfo->nr_slots;
	de = sinfo->de;
	sinfo->de = NULL;
	bh = sinfo->bh;
	sinfo->bh = NULL;
	while (nr_slots && de >= (struct msdos_dir_entry *)bh->b_data) {
		de->name[0] = DELETED_FLAG;
		de--;
		nr_slots--;
	}
A
Al Viro 已提交
1055
	mark_buffer_dirty_inode(bh, dir);
L
Linus Torvalds 已提交
1056 1057 1058 1059 1060
	if (IS_DIRSYNC(dir))
		err = sync_dirty_buffer(bh);
	brelse(bh);
	if (err)
		return err;
J
Jeff Layton 已提交
1061
	inode_inc_iversion(dir);
L
Linus Torvalds 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070

	if (nr_slots) {
		/*
		 * Second stage: remove the remaining longname slots.
		 * (This directory entry is already removed, and so return
		 * the success)
		 */
		err = __fat_remove_entries(dir, sinfo->slot_off, nr_slots);
		if (err) {
1071 1072
			fat_msg(sb, KERN_WARNING,
			       "Couldn't remove the long name slots");
L
Linus Torvalds 已提交
1073 1074 1075
		}
	}

1076
	fat_truncate_time(dir, NULL, S_ATIME|S_MTIME);
L
Linus Torvalds 已提交
1077 1078 1079 1080 1081 1082 1083
	if (IS_DIRSYNC(dir))
		(void)fat_sync_inode(dir);
	else
		mark_inode_dirty(dir);

	return 0;
}
1084
EXPORT_SYMBOL_GPL(fat_remove_entries);
L
Linus Torvalds 已提交
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103

static int fat_zeroed_cluster(struct inode *dir, sector_t blknr, int nr_used,
			      struct buffer_head **bhs, int nr_bhs)
{
	struct super_block *sb = dir->i_sb;
	sector_t last_blknr = blknr + MSDOS_SB(sb)->sec_per_clus;
	int err, i, n;

	/* Zeroing the unused blocks on this cluster */
	blknr += nr_used;
	n = nr_used;
	while (blknr < last_blknr) {
		bhs[n] = sb_getblk(sb, blknr);
		if (!bhs[n]) {
			err = -ENOMEM;
			goto error;
		}
		memset(bhs[n]->b_data, 0, sb->s_blocksize);
		set_buffer_uptodate(bhs[n]);
A
Al Viro 已提交
1104
		mark_buffer_dirty_inode(bhs[n], dir);
L
Linus Torvalds 已提交
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134

		n++;
		blknr++;
		if (n == nr_bhs) {
			if (IS_DIRSYNC(dir)) {
				err = fat_sync_bhs(bhs, n);
				if (err)
					goto error;
			}
			for (i = 0; i < n; i++)
				brelse(bhs[i]);
			n = 0;
		}
	}
	if (IS_DIRSYNC(dir)) {
		err = fat_sync_bhs(bhs, n);
		if (err)
			goto error;
	}
	for (i = 0; i < n; i++)
		brelse(bhs[i]);

	return 0;

error:
	for (i = 0; i < n; i++)
		bforget(bhs[i]);
	return err;
}

1135
int fat_alloc_new_dir(struct inode *dir, struct timespec64 *ts)
L
Linus Torvalds 已提交
1136 1137 1138 1139 1140 1141 1142
{
	struct super_block *sb = dir->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	struct buffer_head *bhs[MAX_BUF_PER_PAGE];
	struct msdos_dir_entry *de;
	sector_t blknr;
	__le16 date, time;
1143
	u8 time_cs;
L
Linus Torvalds 已提交
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
	int err, cluster;

	err = fat_alloc_clusters(dir, &cluster, 1);
	if (err)
		goto error;

	blknr = fat_clus_to_blknr(sbi, cluster);
	bhs[0] = sb_getblk(sb, blknr);
	if (!bhs[0]) {
		err = -ENOMEM;
		goto error_free;
	}

1157
	fat_time_unix2fat(sbi, ts, &time, &date, &time_cs);
L
Linus Torvalds 已提交
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169

	de = (struct msdos_dir_entry *)bhs[0]->b_data;
	/* filling the new directory slots ("." and ".." entries) */
	memcpy(de[0].name, MSDOS_DOT, MSDOS_NAME);
	memcpy(de[1].name, MSDOS_DOTDOT, MSDOS_NAME);
	de->attr = de[1].attr = ATTR_DIR;
	de[0].lcase = de[1].lcase = 0;
	de[0].time = de[1].time = time;
	de[0].date = de[1].date = date;
	if (sbi->options.isvfat) {
		/* extra timestamps */
		de[0].ctime = de[1].ctime = time;
1170
		de[0].ctime_cs = de[1].ctime_cs = time_cs;
L
Linus Torvalds 已提交
1171 1172 1173
		de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date;
	} else {
		de[0].ctime = de[1].ctime = 0;
1174
		de[0].ctime_cs = de[1].ctime_cs = 0;
L
Linus Torvalds 已提交
1175 1176
		de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = 0;
	}
1177 1178
	fat_set_start(&de[0], cluster);
	fat_set_start(&de[1], MSDOS_I(dir)->i_logstart);
L
Linus Torvalds 已提交
1179 1180 1181
	de[0].size = de[1].size = 0;
	memset(de + 2, 0, sb->s_blocksize - 2 * sizeof(*de));
	set_buffer_uptodate(bhs[0]);
A
Al Viro 已提交
1182
	mark_buffer_dirty_inode(bhs[0], dir);
L
Linus Torvalds 已提交
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194

	err = fat_zeroed_cluster(dir, blknr, 1, bhs, MAX_BUF_PER_PAGE);
	if (err)
		goto error_free;

	return cluster;

error_free:
	fat_free_clusters(dir, cluster);
error:
	return err;
}
1195
EXPORT_SYMBOL_GPL(fat_alloc_new_dir);
L
Linus Torvalds 已提交
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242

static int fat_add_new_entries(struct inode *dir, void *slots, int nr_slots,
			       int *nr_cluster, struct msdos_dir_entry **de,
			       struct buffer_head **bh, loff_t *i_pos)
{
	struct super_block *sb = dir->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	struct buffer_head *bhs[MAX_BUF_PER_PAGE];
	sector_t blknr, start_blknr, last_blknr;
	unsigned long size, copy;
	int err, i, n, offset, cluster[2];

	/*
	 * The minimum cluster size is 512bytes, and maximum entry
	 * size is 32*slots (672bytes).  So, iff the cluster size is
	 * 512bytes, we may need two clusters.
	 */
	size = nr_slots * sizeof(struct msdos_dir_entry);
	*nr_cluster = (size + (sbi->cluster_size - 1)) >> sbi->cluster_bits;
	BUG_ON(*nr_cluster > 2);

	err = fat_alloc_clusters(dir, cluster, *nr_cluster);
	if (err)
		goto error;

	/*
	 * First stage: Fill the directory entry.  NOTE: This cluster
	 * is not referenced from any inode yet, so updates order is
	 * not important.
	 */
	i = n = copy = 0;
	do {
		start_blknr = blknr = fat_clus_to_blknr(sbi, cluster[i]);
		last_blknr = start_blknr + sbi->sec_per_clus;
		while (blknr < last_blknr) {
			bhs[n] = sb_getblk(sb, blknr);
			if (!bhs[n]) {
				err = -ENOMEM;
				goto error_nomem;
			}

			/* fill the directory entry */
			copy = min(size, sb->s_blocksize);
			memcpy(bhs[n]->b_data, slots, copy);
			slots += copy;
			size -= copy;
			set_buffer_uptodate(bhs[n]);
A
Al Viro 已提交
1243
			mark_buffer_dirty_inode(bhs[n], dir);
L
Linus Torvalds 已提交
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
			if (!size)
				break;
			n++;
			blknr++;
		}
	} while (++i < *nr_cluster);

	memset(bhs[n]->b_data + copy, 0, sb->s_blocksize - copy);
	offset = copy - sizeof(struct msdos_dir_entry);
	get_bh(bhs[n]);
	*bh = bhs[n];
	*de = (struct msdos_dir_entry *)((*bh)->b_data + offset);
	*i_pos = fat_make_i_pos(sb, *bh, *de);

	/* Second stage: clear the rest of cluster, and write outs */
	err = fat_zeroed_cluster(dir, start_blknr, ++n, bhs, MAX_BUF_PER_PAGE);
	if (err)
		goto error_free;

	return cluster[0];

error_free:
	brelse(*bh);
	*bh = NULL;
	n = 0;
error_nomem:
	for (i = 0; i < n; i++)
		bforget(bhs[i]);
	fat_free_clusters(dir, cluster[0]);
error:
	return err;
}

int fat_add_entries(struct inode *dir, void *slots, int nr_slots,
		    struct fat_slot_info *sinfo)
{
	struct super_block *sb = dir->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	struct buffer_head *bh, *prev, *bhs[3]; /* 32*slots (672bytes) */
J
Jonas Aberg 已提交
1283
	struct msdos_dir_entry *uninitialized_var(de);
L
Linus Torvalds 已提交
1284 1285 1286 1287 1288
	int err, free_slots, i, nr_bhs;
	loff_t pos, i_pos;

	sinfo->nr_slots = nr_slots;

1289
	/* First stage: search free directory entries */
L
Linus Torvalds 已提交
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
	free_slots = nr_bhs = 0;
	bh = prev = NULL;
	pos = 0;
	err = -ENOSPC;
	while (fat_get_entry(dir, &pos, &bh, &de) > -1) {
		/* check the maximum size of directory */
		if (pos >= FAT_MAX_DIR_SIZE)
			goto error;

		if (IS_FREE(de->name)) {
			if (prev != bh) {
				get_bh(bh);
				bhs[nr_bhs] = prev = bh;
				nr_bhs++;
			}
			free_slots++;
			if (free_slots == nr_slots)
				goto found;
		} else {
			for (i = 0; i < nr_bhs; i++)
				brelse(bhs[i]);
			prev = NULL;
			free_slots = nr_bhs = 0;
		}
	}
	if (dir->i_ino == MSDOS_ROOT_INO) {
1316
		if (!is_fat32(sbi))
L
Linus Torvalds 已提交
1317 1318
			goto error;
	} else if (MSDOS_I(dir)->i_start == 0) {
1319
		fat_msg(sb, KERN_ERR, "Corrupted directory (i_pos %lld)",
L
Linus Torvalds 已提交
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
		       MSDOS_I(dir)->i_pos);
		err = -EIO;
		goto error;
	}

found:
	err = 0;
	pos -= free_slots * sizeof(*de);
	nr_slots -= free_slots;
	if (free_slots) {
		/*
		 * Second stage: filling the free entries with new entries.
		 * NOTE: If this slots has shortname, first, we write
		 * the long name slots, then write the short name.
		 */
		int size = free_slots * sizeof(*de);
		int offset = pos & (sb->s_blocksize - 1);
		int long_bhs = nr_bhs - (nr_slots == 0);

		/* Fill the long name slots. */
		for (i = 0; i < long_bhs; i++) {
			int copy = min_t(int, sb->s_blocksize - offset, size);
			memcpy(bhs[i]->b_data + offset, slots, copy);
A
Al Viro 已提交
1343
			mark_buffer_dirty_inode(bhs[i], dir);
L
Linus Torvalds 已提交
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
			offset = 0;
			slots += copy;
			size -= copy;
		}
		if (long_bhs && IS_DIRSYNC(dir))
			err = fat_sync_bhs(bhs, long_bhs);
		if (!err && i < nr_bhs) {
			/* Fill the short name slot. */
			int copy = min_t(int, sb->s_blocksize - offset, size);
			memcpy(bhs[i]->b_data + offset, slots, copy);
A
Al Viro 已提交
1354
			mark_buffer_dirty_inode(bhs[i], dir);
L
Linus Torvalds 已提交
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
			if (IS_DIRSYNC(dir))
				err = sync_dirty_buffer(bhs[i]);
		}
		for (i = 0; i < nr_bhs; i++)
			brelse(bhs[i]);
		if (err)
			goto error_remove;
	}

	if (nr_slots) {
		int cluster, nr_cluster;

		/*
		 * Third stage: allocate the cluster for new entries.
		 * And initialize the cluster with new entries, then
		 * add the cluster to dir.
		 */
		cluster = fat_add_new_entries(dir, slots, nr_slots, &nr_cluster,
					      &de, &bh, &i_pos);
		if (cluster < 0) {
			err = cluster;
			goto error_remove;
		}
		err = fat_chain_add(dir, cluster, nr_cluster);
		if (err) {
			fat_free_clusters(dir, cluster);
			goto error_remove;
		}
		if (dir->i_size & (sbi->cluster_size - 1)) {
D
Denis Karpov 已提交
1384
			fat_fs_error(sb, "Odd directory size");
L
Linus Torvalds 已提交
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
			dir->i_size = (dir->i_size + sbi->cluster_size - 1)
				& ~((loff_t)sbi->cluster_size - 1);
		}
		dir->i_size += nr_cluster << sbi->cluster_bits;
		MSDOS_I(dir)->mmu_private += nr_cluster << sbi->cluster_bits;
	}
	sinfo->slot_off = pos;
	sinfo->de = de;
	sinfo->bh = bh;
	sinfo->i_pos = fat_make_i_pos(sb, sinfo->bh, sinfo->de);

	return 0;

error:
	brelse(bh);
	for (i = 0; i < nr_bhs; i++)
		brelse(bhs[i]);
	return err;

error_remove:
	brelse(bh);
	if (free_slots)
		__fat_remove_entries(dir, pos, free_slots);
	return err;
}
1410
EXPORT_SYMBOL_GPL(fat_add_entries);