xfs_dir2_readdir.c 13.4 KB
Newer Older
D
Dave Chinner 已提交
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8
/*
 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
 * Copyright (c) 2013 Red Hat, Inc.
 * All Rights Reserved.
 */
#include "xfs.h"
#include "xfs_fs.h"
9
#include "xfs_shared.h"
10
#include "xfs_format.h"
11 12
#include "xfs_log_format.h"
#include "xfs_trans_resv.h"
13 14
#include "xfs_mount.h"
#include "xfs_inode.h"
15
#include "xfs_dir2.h"
16 17 18
#include "xfs_dir2_priv.h"
#include "xfs_trace.h"
#include "xfs_bmap.h"
19
#include "xfs_trans.h"
20
#include "xfs_error.h"
21

22 23 24 25 26 27 28 29
/*
 * Directory file type support functions
 */
static unsigned char xfs_dir3_filetype_table[] = {
	DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK,
	DT_FIFO, DT_SOCK, DT_LNK, DT_WHT,
};

D
Darrick J. Wong 已提交
30
unsigned char
31 32
xfs_dir3_get_dtype(
	struct xfs_mount	*mp,
33
	uint8_t			filetype)
34 35 36 37 38 39 40 41 42 43
{
	if (!xfs_sb_version_hasftype(&mp->m_sb))
		return DT_UNKNOWN;

	if (filetype >= XFS_DIR3_FT_MAX)
		return DT_UNKNOWN;

	return xfs_dir3_filetype_table[filetype];
}

44 45
STATIC int
xfs_dir2_sf_getdents(
46
	struct xfs_da_args	*args,
47 48 49
	struct dir_context	*ctx)
{
	int			i;		/* shortform entry number */
50
	struct xfs_inode	*dp = args->dp;	/* incore directory inode */
51
	struct xfs_mount	*mp = dp->i_mount;
52 53 54 55 56 57
	xfs_dir2_dataptr_t	off;		/* current entry's offset */
	xfs_dir2_sf_entry_t	*sfep;		/* shortform directory entry */
	xfs_dir2_sf_hdr_t	*sfp;		/* shortform structure */
	xfs_dir2_dataptr_t	dot_offset;
	xfs_dir2_dataptr_t	dotdot_offset;
	xfs_ino_t		ino;
58
	struct xfs_da_geometry	*geo = args->geo;
59 60 61 62 63 64 65 66 67 68

	ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
	ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
	ASSERT(dp->i_df.if_u1.if_data != NULL);

	sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;

	/*
	 * If the block number in the offset is out of range, we're done.
	 */
69
	if (xfs_dir2_dataptr_to_db(geo, ctx->pos) > geo->datablk)
70 71 72
		return 0;

	/*
73 74 75
	 * Precalculate offsets for "." and ".." as we will always need them.
	 * This relies on the fact that directories always start with the
	 * entries for "." and "..".
76
	 */
77
	dot_offset = xfs_dir2_db_off_to_dataptr(geo, geo->datablk,
78
			dp->d_ops->data_entry_offset);
79
	dotdot_offset = xfs_dir2_db_off_to_dataptr(geo, geo->datablk,
80 81
			dp->d_ops->data_entry_offset +
			dp->d_ops->data_entsize(sizeof(".") - 1));
82 83 84 85 86 87 88 89 90 91 92 93 94 95

	/*
	 * Put . entry unless we're starting past it.
	 */
	if (ctx->pos <= dot_offset) {
		ctx->pos = dot_offset & 0x7fffffff;
		if (!dir_emit(ctx, ".", 1, dp->i_ino, DT_DIR))
			return 0;
	}

	/*
	 * Put .. entry unless we're starting past it.
	 */
	if (ctx->pos <= dotdot_offset) {
96
		ino = xfs_dir2_sf_get_parent_ino(sfp);
97 98 99 100 101 102 103 104 105 106
		ctx->pos = dotdot_offset & 0x7fffffff;
		if (!dir_emit(ctx, "..", 2, ino, DT_DIR))
			return 0;
	}

	/*
	 * Loop while there are more entries and put'ing works.
	 */
	sfep = xfs_dir2_sf_firstentry(sfp);
	for (i = 0; i < sfp->count; i++) {
107
		uint8_t filetype;
108

109
		off = xfs_dir2_db_off_to_dataptr(geo, geo->datablk,
110 111 112
				xfs_dir2_sf_get_offset(sfep));

		if (ctx->pos > off) {
113
			sfep = xfs_dir2_sf_nextentry(mp, sfp, sfep);
114 115 116
			continue;
		}

117
		ino = xfs_dir2_sf_get_ino(mp, sfp, sfep);
118
		filetype = xfs_dir2_sf_get_ftype(mp, sfep);
119
		ctx->pos = off & 0x7fffffff;
120 121 122 123 124
		if (!xfs_dir2_namecheck(sfep->name, sfep->namelen)) {
			XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW,
					 dp->i_mount);
			return -EFSCORRUPTED;
		}
125
		if (!dir_emit(ctx, (char *)sfep->name, sfep->namelen, ino,
126
			    xfs_dir3_get_dtype(mp, filetype)))
127
			return 0;
128
		sfep = xfs_dir2_sf_nextentry(mp, sfp, sfep);
129 130
	}

131
	ctx->pos = xfs_dir2_db_off_to_dataptr(geo, geo->datablk + 1, 0) &
132
								0x7fffffff;
133 134 135 136 137 138 139 140
	return 0;
}

/*
 * Readdir for block directories.
 */
STATIC int
xfs_dir2_block_getdents(
141
	struct xfs_da_args	*args,
142 143
	struct dir_context	*ctx)
{
144
	struct xfs_inode	*dp = args->dp;	/* incore directory inode */
145 146 147 148
	struct xfs_buf		*bp;		/* buffer for block */
	int			error;		/* error return value */
	int			wantoff;	/* starting block offset */
	xfs_off_t		cook;
149
	struct xfs_da_geometry	*geo = args->geo;
150
	int			lock_mode;
151 152
	unsigned int		offset;
	unsigned int		end;
153 154 155 156

	/*
	 * If the block number in the offset is out of range, we're done.
	 */
157
	if (xfs_dir2_dataptr_to_db(geo, ctx->pos) > geo->datablk)
158 159
		return 0;

160
	lock_mode = xfs_ilock_data_map_shared(dp);
161
	error = xfs_dir3_block_read(args->trans, dp, &bp);
162
	xfs_iunlock(dp, lock_mode);
163 164 165 166 167 168 169
	if (error)
		return error;

	/*
	 * Extract the byte offset we start at from the seek pointer.
	 * We'll skip entries before this.
	 */
170
	wantoff = xfs_dir2_dataptr_to_off(geo, ctx->pos);
171 172 173 174 175 176
	xfs_dir3_data_check(dp, bp);

	/*
	 * Loop over the data portion of the block.
	 * Each object is a real entry (dep) or an unused one (dup).
	 */
177
	offset = dp->d_ops->data_entry_offset;
178
	end = xfs_dir3_data_end_offset(geo, bp->b_addr);
179 180 181
	while (offset < end) {
		struct xfs_dir2_data_unused	*dup = bp->b_addr + offset;
		struct xfs_dir2_data_entry	*dep = bp->b_addr + offset;
182
		uint8_t filetype;
183

184 185 186 187
		/*
		 * Unused, skip it.
		 */
		if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
188
			offset += be16_to_cpu(dup->length);
189 190 191 192 193 194
			continue;
		}

		/*
		 * Bump pointer for the next iteration.
		 */
195 196
		offset += dp->d_ops->data_entsize(dep->namelen);

197 198 199
		/*
		 * The entry is before the desired starting point, skip it.
		 */
200
		if (offset < wantoff)
201 202
			continue;

203
		cook = xfs_dir2_db_off_to_dataptr(geo, geo->datablk, offset);
204 205

		ctx->pos = cook & 0x7fffffff;
206
		filetype = dp->d_ops->data_get_ftype(dep);
207 208 209
		/*
		 * If it didn't fit, set the final offset to here & return.
		 */
210 211 212 213 214 215
		if (!xfs_dir2_namecheck(dep->name, dep->namelen)) {
			XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW,
					 dp->i_mount);
			error = -EFSCORRUPTED;
			goto out_rele;
		}
216
		if (!dir_emit(ctx, (char *)dep->name, dep->namelen,
217
			    be64_to_cpu(dep->inumber),
218 219
			    xfs_dir3_get_dtype(dp->i_mount, filetype)))
			goto out_rele;
220 221 222 223 224 225
	}

	/*
	 * Reached the end of the block.
	 * Set the offset to a non-existent block 1 and return.
	 */
226
	ctx->pos = xfs_dir2_db_off_to_dataptr(geo, geo->datablk + 1, 0) &
227
								0x7fffffff;
228
out_rele:
229
	xfs_trans_brelse(args->trans, bp);
230
	return error;
231 232
}

233 234 235 236 237
/*
 * Read a directory block and initiate readahead for blocks beyond that.
 * We maintain a sliding readahead window of the remaining space in the
 * buffer rounded up to the nearest block.
 */
238 239
STATIC int
xfs_dir2_leaf_readbuf(
240
	struct xfs_da_args	*args,
241
	size_t			bufsize,
242 243 244
	xfs_dir2_off_t		*cur_off,
	xfs_dablk_t		*ra_blk,
	struct xfs_buf		**bpp)
245
{
246
	struct xfs_inode	*dp = args->dp;
247
	struct xfs_buf		*bp = NULL;
248 249 250
	struct xfs_da_geometry	*geo = args->geo;
	struct xfs_ifork	*ifp = XFS_IFORK_PTR(dp, XFS_DATA_FORK);
	struct xfs_bmbt_irec	map;
251
	struct blk_plug		plug;
252 253 254 255
	xfs_dir2_off_t		new_off;
	xfs_dablk_t		next_ra;
	xfs_dablk_t		map_off;
	xfs_dablk_t		last_da;
256
	struct xfs_iext_cursor	icur;
257
	int			ra_want;
258 259
	int			error = 0;

260 261
	if (!(ifp->if_flags & XFS_IFEXTENTS)) {
		error = xfs_iread_extents(args->trans, dp, XFS_DATA_FORK);
262
		if (error)
263
			goto out;
264 265 266
	}

	/*
267 268 269
	 * Look for mapped directory blocks at or above the current offset.
	 * Truncate down to the nearest directory block to start the scanning
	 * operation.
270
	 */
271 272
	last_da = xfs_dir2_byte_to_da(geo, XFS_DIR2_LEAF_OFFSET);
	map_off = xfs_dir2_db_to_da(geo, xfs_dir2_byte_to_db(geo, *cur_off));
273
	if (!xfs_iext_lookup_extent(dp, ifp, map_off, &icur, &map))
274
		goto out;
275 276 277
	if (map.br_startoff >= last_da)
		goto out;
	xfs_trim_extent(&map, map_off, last_da - map_off);
278

279 280 281 282 283
	/* Read the directory block of that first mapping. */
	new_off = xfs_dir2_da_to_byte(geo, map.br_startoff);
	if (new_off > *cur_off)
		*cur_off = new_off;
	error = xfs_dir3_data_read(args->trans, dp, map.br_startoff, -1, &bp);
284
	if (error)
285
		goto out;
286 287

	/*
288 289 290
	 * Start readahead for the next bufsize's worth of dir data blocks.
	 * We may have already issued readahead for some of that range;
	 * ra_blk tracks the last block we tried to read(ahead).
291
	 */
292 293 294 295 296 297 298 299 300
	ra_want = howmany(bufsize + geo->blksize, (1 << geo->fsblog));
	if (*ra_blk >= last_da)
		goto out;
	else if (*ra_blk == 0)
		*ra_blk = map.br_startoff;
	next_ra = map.br_startoff + geo->fsbcount;
	if (next_ra >= last_da)
		goto out_no_ra;
	if (map.br_blockcount < geo->fsbcount &&
301
	    !xfs_iext_next_extent(ifp, &icur, &map))
302 303 304 305 306 307
		goto out_no_ra;
	if (map.br_startoff >= last_da)
		goto out_no_ra;
	xfs_trim_extent(&map, next_ra, last_da - next_ra);

	/* Start ra for each dir (not fs) block that has a mapping. */
308
	blk_start_plug(&plug);
309 310 311 312 313 314 315 316 317 318 319
	while (ra_want > 0) {
		next_ra = roundup((xfs_dablk_t)map.br_startoff, geo->fsbcount);
		while (ra_want > 0 &&
		       next_ra < map.br_startoff + map.br_blockcount) {
			if (next_ra >= last_da) {
				*ra_blk = last_da;
				break;
			}
			if (next_ra > *ra_blk) {
				xfs_dir3_data_readahead(dp, next_ra, -2);
				*ra_blk = next_ra;
320
			}
321 322 323
			ra_want -= geo->fsbcount;
			next_ra += geo->fsbcount;
		}
324
		if (!xfs_iext_next_extent(ifp, &icur, &map)) {
325 326
			*ra_blk = last_da;
			break;
327 328 329 330 331 332 333
		}
	}
	blk_finish_plug(&plug);

out:
	*bpp = bp;
	return error;
334 335 336
out_no_ra:
	*ra_blk = last_da;
	goto out;
337 338 339 340 341 342 343 344
}

/*
 * Getdents (readdir) for leaf and node directories.
 * This reads the data blocks only, so is the same for both forms.
 */
STATIC int
xfs_dir2_leaf_getdents(
345
	struct xfs_da_args	*args,
346 347 348
	struct dir_context	*ctx,
	size_t			bufsize)
{
349
	struct xfs_inode	*dp = args->dp;
350 351 352
	struct xfs_buf		*bp = NULL;	/* data block buffer */
	xfs_dir2_data_entry_t	*dep;		/* data entry */
	xfs_dir2_data_unused_t	*dup;		/* unused entry */
353
	struct xfs_da_geometry	*geo = args->geo;
354 355 356 357 358
	xfs_dablk_t		rablk = 0;	/* current readahead block */
	xfs_dir2_off_t		curoff;		/* current overall offset */
	int			length;		/* temporary length value */
	int			byteoff;	/* offset in current block */
	int			lock_mode;
359
	unsigned int		offset = 0;
360
	int			error = 0;	/* error return value */
361 362 363 364 365 366 367 368 369 370 371 372

	/*
	 * If the offset is at or past the largest allowed value,
	 * give up right away.
	 */
	if (ctx->pos >= XFS_DIR2_MAX_DATAPTR)
		return 0;

	/*
	 * Inside the loop we keep the main offset value as a byte offset
	 * in the directory file.
	 */
373
	curoff = xfs_dir2_dataptr_to_byte(ctx->pos);
374 375 376 377 378 379

	/*
	 * Loop over directory entries until we reach the end offset.
	 * Get more blocks and readahead as necessary.
	 */
	while (curoff < XFS_DIR2_LEAF_OFFSET) {
380
		uint8_t filetype;
381

382 383 384 385
		/*
		 * If we have no buffer, or we're off the end of the
		 * current buffer, need to get another one.
		 */
386
		if (!bp || offset >= geo->blksize) {
387
			if (bp) {
388
				xfs_trans_brelse(args->trans, bp);
389 390
				bp = NULL;
			}
391

392
			lock_mode = xfs_ilock_data_map_shared(dp);
393 394
			error = xfs_dir2_leaf_readbuf(args, bufsize, &curoff,
					&rablk, &bp);
395
			xfs_iunlock(dp, lock_mode);
396
			if (error || !bp)
397 398 399 400 401 402
				break;

			xfs_dir3_data_check(dp, bp);
			/*
			 * Find our position in the block.
			 */
403
			offset = dp->d_ops->data_entry_offset;
404
			byteoff = xfs_dir2_byte_to_off(geo, curoff);
405 406 407 408
			/*
			 * Skip past the header.
			 */
			if (byteoff == 0)
409
				curoff += dp->d_ops->data_entry_offset;
410 411 412 413
			/*
			 * Skip past entries until we reach our offset.
			 */
			else {
414 415
				while (offset < byteoff) {
					dup = bp->b_addr + offset;
416 417 418 419 420

					if (be16_to_cpu(dup->freetag)
						  == XFS_DIR2_DATA_FREE_TAG) {

						length = be16_to_cpu(dup->length);
421
						offset += length;
422 423
						continue;
					}
424
					dep = bp->b_addr + offset;
425
					length =
426
					   dp->d_ops->data_entsize(dep->namelen);
427
					offset += length;
428 429 430 431 432
				}
				/*
				 * Now set our real offset.
				 */
				curoff =
433 434
					xfs_dir2_db_off_to_byte(geo,
					    xfs_dir2_byte_to_db(geo, curoff),
435 436
					    offset);
				if (offset >= geo->blksize)
437 438 439
					continue;
			}
		}
440

441
		/*
442
		 * We have a pointer to an entry.  Is it a live one?
443
		 */
444 445
		dup = bp->b_addr + offset;

446 447 448 449 450
		/*
		 * No, it's unused, skip over it.
		 */
		if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
			length = be16_to_cpu(dup->length);
451
			offset += length;
452 453 454 455
			curoff += length;
			continue;
		}

456
		dep = bp->b_addr + offset;
457 458
		length = dp->d_ops->data_entsize(dep->namelen);
		filetype = dp->d_ops->data_get_ftype(dep);
459

460
		ctx->pos = xfs_dir2_byte_to_dataptr(curoff) & 0x7fffffff;
461 462 463 464 465 466
		if (!xfs_dir2_namecheck(dep->name, dep->namelen)) {
			XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW,
					 dp->i_mount);
			error = -EFSCORRUPTED;
			break;
		}
467
		if (!dir_emit(ctx, (char *)dep->name, dep->namelen,
468
			    be64_to_cpu(dep->inumber),
469
			    xfs_dir3_get_dtype(dp->i_mount, filetype)))
470 471 472 473 474
			break;

		/*
		 * Advance to next entry in the block.
		 */
475
		offset += length;
476 477 478 479 480 481 482 483
		curoff += length;
		/* bufsize may have just been a guess; don't go negative */
		bufsize = bufsize > length ? bufsize - length : 0;
	}

	/*
	 * All done.  Set output offset value to current offset.
	 */
484
	if (curoff > xfs_dir2_dataptr_to_byte(XFS_DIR2_MAX_DATAPTR))
485 486
		ctx->pos = XFS_DIR2_MAX_DATAPTR & 0x7fffffff;
	else
487
		ctx->pos = xfs_dir2_byte_to_dataptr(curoff) & 0x7fffffff;
488
	if (bp)
489
		xfs_trans_brelse(args->trans, bp);
490 491 492 493 494
	return error;
}

/*
 * Read a directory.
495 496 497 498 499
 *
 * If supplied, the transaction collects locked dir buffers to avoid
 * nested buffer deadlocks.  This function does not dirty the
 * transaction.  The caller should ensure that the inode is locked
 * before calling this function.
500 501 502
 */
int
xfs_readdir(
503
	struct xfs_trans	*tp,
504 505 506
	struct xfs_inode	*dp,
	struct dir_context	*ctx,
	size_t			bufsize)
507
{
508
	struct xfs_da_args	args = { NULL };
509 510
	int			rval;
	int			v;
511 512 513 514

	trace_xfs_readdir(dp);

	if (XFS_FORCED_SHUTDOWN(dp->i_mount))
D
Dave Chinner 已提交
515
		return -EIO;
516

D
Dave Chinner 已提交
517
	ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
518
	XFS_STATS_INC(dp->i_mount, xs_dir_getdents);
519

520 521
	args.dp = dp;
	args.geo = dp->i_mount->m_dir_geo;
522
	args.trans = tp;
523

524
	if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
525 526
		rval = xfs_dir2_sf_getdents(&args, ctx);
	else if ((rval = xfs_dir2_isblock(&args, &v)))
527 528
		;
	else if (v)
529
		rval = xfs_dir2_block_getdents(&args, ctx);
530
	else
531
		rval = xfs_dir2_leaf_getdents(&args, ctx, bufsize);
532

533 534
	return rval;
}