Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  4 * Copyright (c) 2013 Red Hat, Inc.
  5 * All Rights Reserved.
  6 */
  7#include "xfs.h"
  8#include "xfs_fs.h"
  9#include "xfs_shared.h"
 10#include "xfs_format.h"
 11#include "xfs_log_format.h"
 12#include "xfs_trans_resv.h"
 13#include "xfs_mount.h"
 14#include "xfs_da_format.h"
 15#include "xfs_inode.h"
 16#include "xfs_trans.h"
 17#include "xfs_bmap.h"
 18#include "xfs_da_btree.h"
 19#include "xfs_attr.h"
 20#include "xfs_attr_sf.h"
 21#include "xfs_attr_leaf.h"
 22#include "xfs_error.h"
 23#include "xfs_trace.h"
 24#include "xfs_dir2.h"
 25#include "xfs_health.h"
 26
 27STATIC int
 28xfs_attr_shortform_compare(const void *a, const void *b)
 29{
 30	xfs_attr_sf_sort_t *sa, *sb;
 31
 32	sa = (xfs_attr_sf_sort_t *)a;
 33	sb = (xfs_attr_sf_sort_t *)b;
 34	if (sa->hash < sb->hash) {
 35		return -1;
 36	} else if (sa->hash > sb->hash) {
 37		return 1;
 38	} else {
 39		return sa->entno - sb->entno;
 40	}
 41}
 42
 43#define XFS_ISRESET_CURSOR(cursor) \
 44	(!((cursor)->initted) && !((cursor)->hashval) && \
 45	 !((cursor)->blkno) && !((cursor)->offset))
 46/*
 47 * Copy out entries of shortform attribute lists for attr_list().
 48 * Shortform attribute lists are not stored in hashval sorted order.
 49 * If the output buffer is not large enough to hold them all, then
 50 * we have to calculate each entries' hashvalue and sort them before
 51 * we can begin returning them to the user.
 52 */
 53static int
 54xfs_attr_shortform_list(
 55	struct xfs_attr_list_context	*context)
 56{
 57	struct xfs_attrlist_cursor_kern	*cursor = &context->cursor;
 58	struct xfs_inode		*dp = context->dp;
 59	struct xfs_attr_sf_sort		*sbuf, *sbp;
 60	struct xfs_attr_sf_hdr		*sf = dp->i_af.if_data;
 61	struct xfs_attr_sf_entry	*sfe;
 62	int				sbsize, nsbuf, count, i;
 63	int				error = 0;
 64
 
 
 65	ASSERT(sf != NULL);
 66	if (!sf->count)
 67		return 0;
 68
 69	trace_xfs_attr_list_sf(context);
 70
 71	/*
 72	 * If the buffer is large enough and the cursor is at the start,
 73	 * do not bother with sorting since we will return everything in
 74	 * one buffer and another call using the cursor won't need to be
 75	 * made.
 76	 * Note the generous fudge factor of 16 overhead bytes per entry.
 77	 * If bufsize is zero then put_listent must be a search function
 78	 * and can just scan through what we have.
 79	 */
 80	if (context->bufsize == 0 ||
 81	    (XFS_ISRESET_CURSOR(cursor) &&
 82	     (dp->i_af.if_bytes + sf->count * 16) < context->bufsize)) {
 83		for (i = 0, sfe = xfs_attr_sf_firstentry(sf); i < sf->count; i++) {
 84			if (XFS_IS_CORRUPT(context->dp->i_mount,
 85					   !xfs_attr_namecheck(sfe->flags,
 86							       sfe->nameval,
 87							       sfe->namelen))) {
 88				xfs_dirattr_mark_sick(context->dp, XFS_ATTR_FORK);
 89				return -EFSCORRUPTED;
 90			}
 91			context->put_listent(context,
 92					     sfe->flags,
 93					     sfe->nameval,
 94					     (int)sfe->namelen,
 95					     &sfe->nameval[sfe->namelen],
 96					     (int)sfe->valuelen);
 97			/*
 98			 * Either search callback finished early or
 99			 * didn't fit it all in the buffer after all.
100			 */
101			if (context->seen_enough)
102				break;
103			sfe = xfs_attr_sf_nextentry(sfe);
104		}
105		trace_xfs_attr_list_sf_all(context);
106		return 0;
107	}
108
109	/* do no more for a search callback */
110	if (context->bufsize == 0)
111		return 0;
112
113	/*
114	 * It didn't all fit, so we have to sort everything on hashval.
115	 */
116	sbsize = sf->count * sizeof(*sbuf);
117	sbp = sbuf = kmalloc(sbsize,
118			GFP_KERNEL | __GFP_NOLOCKDEP | __GFP_NOFAIL);
119
120	/*
121	 * Scan the attribute list for the rest of the entries, storing
122	 * the relevant info from only those that match into a buffer.
123	 */
124	nsbuf = 0;
125	for (i = 0, sfe = xfs_attr_sf_firstentry(sf); i < sf->count; i++) {
126		if (unlikely(
127		    ((char *)sfe < (char *)sf) ||
128		    ((char *)sfe >= ((char *)sf + dp->i_af.if_bytes)) ||
129		    !xfs_attr_check_namespace(sfe->flags))) {
130			XFS_CORRUPTION_ERROR("xfs_attr_shortform_list",
131					     XFS_ERRLEVEL_LOW,
132					     context->dp->i_mount, sfe,
133					     sizeof(*sfe));
134			kfree(sbuf);
135			xfs_dirattr_mark_sick(dp, XFS_ATTR_FORK);
136			return -EFSCORRUPTED;
137		}
138
139		sbp->entno = i;
 
140		sbp->name = sfe->nameval;
141		sbp->namelen = sfe->namelen;
142		/* These are bytes, and both on-disk, don't endian-flip */
143		sbp->value = &sfe->nameval[sfe->namelen];
144		sbp->valuelen = sfe->valuelen;
145		sbp->flags = sfe->flags;
146		sbp->hash = xfs_attr_hashval(dp->i_mount, sfe->flags,
147					     sfe->nameval, sfe->namelen,
148					     sfe->nameval + sfe->namelen,
149					     sfe->valuelen);
150		sfe = xfs_attr_sf_nextentry(sfe);
151		sbp++;
152		nsbuf++;
153	}
154
155	/*
156	 * Sort the entries on hash then entno.
157	 */
158	xfs_sort(sbuf, nsbuf, sizeof(*sbuf), xfs_attr_shortform_compare);
159
160	/*
161	 * Re-find our place IN THE SORTED LIST.
162	 */
163	count = 0;
164	cursor->initted = 1;
165	cursor->blkno = 0;
166	for (sbp = sbuf, i = 0; i < nsbuf; i++, sbp++) {
167		if (sbp->hash == cursor->hashval) {
168			if (cursor->offset == count) {
169				break;
170			}
171			count++;
172		} else if (sbp->hash > cursor->hashval) {
173			break;
174		}
175	}
176	if (i == nsbuf)
177		goto out;
178
179	/*
180	 * Loop putting entries into the user buffer.
181	 */
182	for ( ; i < nsbuf; i++, sbp++) {
183		if (cursor->hashval != sbp->hash) {
184			cursor->hashval = sbp->hash;
185			cursor->offset = 0;
186		}
187		if (XFS_IS_CORRUPT(context->dp->i_mount,
188				   !xfs_attr_namecheck(sbp->flags, sbp->name,
189						       sbp->namelen))) {
190			xfs_dirattr_mark_sick(context->dp, XFS_ATTR_FORK);
191			error = -EFSCORRUPTED;
192			goto out;
193		}
194		context->put_listent(context,
195				     sbp->flags,
196				     sbp->name,
197				     sbp->namelen,
198				     sbp->value,
199				     sbp->valuelen);
200		if (context->seen_enough)
201			break;
202		cursor->offset++;
203	}
204out:
205	kfree(sbuf);
206	return error;
207}
208
209/*
210 * We didn't find the block & hash mentioned in the cursor state, so
211 * walk down the attr btree looking for the hash.
212 */
213STATIC int
214xfs_attr_node_list_lookup(
215	struct xfs_attr_list_context	*context,
216	struct xfs_attrlist_cursor_kern	*cursor,
217	struct xfs_buf			**pbp)
218{
219	struct xfs_da3_icnode_hdr	nodehdr;
220	struct xfs_da_intnode		*node;
221	struct xfs_da_node_entry	*btree;
222	struct xfs_inode		*dp = context->dp;
223	struct xfs_mount		*mp = dp->i_mount;
224	struct xfs_trans		*tp = context->tp;
225	struct xfs_buf			*bp;
226	xfs_failaddr_t			fa;
227	int				i;
228	int				error = 0;
229	unsigned int			expected_level = 0;
230	uint16_t			magic;
231
232	ASSERT(*pbp == NULL);
233	cursor->blkno = 0;
234	for (;;) {
235		error = xfs_da3_node_read(tp, dp, cursor->blkno, &bp,
236				XFS_ATTR_FORK);
237		if (error)
238			return error;
239		node = bp->b_addr;
240		magic = be16_to_cpu(node->hdr.info.magic);
241		if (magic == XFS_ATTR_LEAF_MAGIC ||
242		    magic == XFS_ATTR3_LEAF_MAGIC)
243			break;
244		if (magic != XFS_DA_NODE_MAGIC &&
245		    magic != XFS_DA3_NODE_MAGIC) {
246			XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp,
247					node, sizeof(*node));
248			goto out_corruptbuf;
249		}
250
251		fa = xfs_da3_node_header_check(bp, dp->i_ino);
252		if (fa)
253			goto out_corruptbuf;
254
255		xfs_da3_node_hdr_from_disk(mp, &nodehdr, node);
256
257		/* Tree taller than we can handle; bail out! */
258		if (nodehdr.level >= XFS_DA_NODE_MAXDEPTH)
259			goto out_corruptbuf;
260
261		/* Check the level from the root node. */
262		if (cursor->blkno == 0)
263			expected_level = nodehdr.level - 1;
264		else if (expected_level != nodehdr.level)
265			goto out_corruptbuf;
266		else
267			expected_level--;
268
269		btree = nodehdr.btree;
270		for (i = 0; i < nodehdr.count; btree++, i++) {
271			if (cursor->hashval <= be32_to_cpu(btree->hashval)) {
272				cursor->blkno = be32_to_cpu(btree->before);
273				trace_xfs_attr_list_node_descend(context,
274						btree);
275				break;
276			}
277		}
278		xfs_trans_brelse(tp, bp);
279
280		if (i == nodehdr.count)
281			return 0;
282
283		/* We can't point back to the root. */
284		if (XFS_IS_CORRUPT(mp, cursor->blkno == 0)) {
285			xfs_dirattr_mark_sick(dp, XFS_ATTR_FORK);
286			return -EFSCORRUPTED;
287		}
288	}
289
290	fa = xfs_attr3_leaf_header_check(bp, dp->i_ino);
291	if (fa) {
292		__xfs_buf_mark_corrupt(bp, fa);
293		goto out_releasebuf;
294	}
295
296	if (expected_level != 0)
297		goto out_corruptbuf;
298
299	*pbp = bp;
300	return 0;
301
302out_corruptbuf:
303	xfs_buf_mark_corrupt(bp);
304out_releasebuf:
305	xfs_trans_brelse(tp, bp);
306	xfs_dirattr_mark_sick(dp, XFS_ATTR_FORK);
307	return -EFSCORRUPTED;
308}
309
310STATIC int
311xfs_attr_node_list(
312	struct xfs_attr_list_context	*context)
313{
314	struct xfs_attrlist_cursor_kern	*cursor = &context->cursor;
315	struct xfs_attr3_icleaf_hdr	leafhdr;
316	struct xfs_attr_leafblock	*leaf;
317	struct xfs_da_intnode		*node;
318	struct xfs_buf			*bp;
319	struct xfs_inode		*dp = context->dp;
320	struct xfs_mount		*mp = dp->i_mount;
321	xfs_failaddr_t			fa;
322	int				error = 0;
323
324	trace_xfs_attr_node_list(context);
325
326	cursor->initted = 1;
327
328	/*
329	 * Do all sorts of validation on the passed-in cursor structure.
330	 * If anything is amiss, ignore the cursor and look up the hashval
331	 * starting from the btree root.
332	 */
333	bp = NULL;
334	if (cursor->blkno > 0) {
335		struct xfs_attr_leaf_entry *entries;
336
337		error = xfs_da3_node_read(context->tp, dp, cursor->blkno, &bp,
338				XFS_ATTR_FORK);
339		if (xfs_metadata_is_sick(error))
340			xfs_dirattr_mark_sick(dp, XFS_ATTR_FORK);
341		if (error != 0 && error != -EFSCORRUPTED)
342			return error;
343		if (!bp)
344			goto need_lookup;
345
346		node = bp->b_addr;
347		switch (be16_to_cpu(node->hdr.info.magic)) {
348		case XFS_DA_NODE_MAGIC:
349		case XFS_DA3_NODE_MAGIC:
350			trace_xfs_attr_list_wrong_blk(context);
351			fa = xfs_da3_node_header_check(bp, dp->i_ino);
352			if (fa) {
353				__xfs_buf_mark_corrupt(bp, fa);
354				xfs_dirattr_mark_sick(dp, XFS_ATTR_FORK);
355			}
356			xfs_trans_brelse(context->tp, bp);
357			bp = NULL;
358			break;
359		case XFS_ATTR_LEAF_MAGIC:
360		case XFS_ATTR3_LEAF_MAGIC:
361			leaf = bp->b_addr;
362			fa = xfs_attr3_leaf_header_check(bp, dp->i_ino);
363			if (fa) {
364				__xfs_buf_mark_corrupt(bp, fa);
365				xfs_trans_brelse(context->tp, bp);
366				xfs_dirattr_mark_sick(dp, XFS_ATTR_FORK);
367				bp = NULL;
368				break;
369			}
370			xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo,
371						     &leafhdr, leaf);
372			entries = xfs_attr3_leaf_entryp(leaf);
373			if (cursor->hashval > be32_to_cpu(
374					entries[leafhdr.count - 1].hashval)) {
375				trace_xfs_attr_list_wrong_blk(context);
376				xfs_trans_brelse(context->tp, bp);
377				bp = NULL;
378			} else if (cursor->hashval <= be32_to_cpu(
379					entries[0].hashval)) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
380				trace_xfs_attr_list_wrong_blk(context);
381				xfs_trans_brelse(context->tp, bp);
382				bp = NULL;
383			}
384			break;
385		default:
386			trace_xfs_attr_list_wrong_blk(context);
387			xfs_trans_brelse(context->tp, bp);
388			bp = NULL;
389		}
390	}
391
392	/*
393	 * We did not find what we expected given the cursor's contents,
394	 * so we start from the top and work down based on the hash value.
395	 * Note that start of node block is same as start of leaf block.
396	 */
397	if (bp == NULL) {
398need_lookup:
399		error = xfs_attr_node_list_lookup(context, cursor, &bp);
400		if (error || !bp)
401			return error;
402	}
403	ASSERT(bp != NULL);
404
405	/*
406	 * Roll upward through the blocks, processing each leaf block in
407	 * order.  As long as there is space in the result buffer, keep
408	 * adding the information.
409	 */
410	for (;;) {
411		leaf = bp->b_addr;
412		error = xfs_attr3_leaf_list_int(bp, context);
413		if (error)
414			break;
415		xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf);
416		if (context->seen_enough || leafhdr.forw == 0)
417			break;
418		cursor->blkno = leafhdr.forw;
419		xfs_trans_brelse(context->tp, bp);
420		error = xfs_attr3_leaf_read(context->tp, dp, dp->i_ino,
421				cursor->blkno, &bp);
422		if (error)
423			return error;
424	}
425	xfs_trans_brelse(context->tp, bp);
426	return error;
427}
428
429/*
430 * Copy out attribute list entries for attr_list(), for leaf attribute lists.
431 */
432int
433xfs_attr3_leaf_list_int(
434	struct xfs_buf			*bp,
435	struct xfs_attr_list_context	*context)
436{
437	struct xfs_attrlist_cursor_kern	*cursor = &context->cursor;
438	struct xfs_attr_leafblock	*leaf;
439	struct xfs_attr3_icleaf_hdr	ichdr;
440	struct xfs_attr_leaf_entry	*entries;
441	struct xfs_attr_leaf_entry	*entry;
442	int				i;
443	struct xfs_mount		*mp = context->dp->i_mount;
444
445	trace_xfs_attr_list_leaf(context);
446
447	leaf = bp->b_addr;
448	xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
449	entries = xfs_attr3_leaf_entryp(leaf);
450
451	cursor->initted = 1;
452
453	/*
454	 * Re-find our place in the leaf block if this is a new syscall.
455	 */
456	if (context->resynch) {
457		entry = &entries[0];
458		for (i = 0; i < ichdr.count; entry++, i++) {
459			if (be32_to_cpu(entry->hashval) == cursor->hashval) {
460				if (cursor->offset == context->dupcnt) {
461					context->dupcnt = 0;
462					break;
463				}
464				context->dupcnt++;
465			} else if (be32_to_cpu(entry->hashval) >
466					cursor->hashval) {
467				context->dupcnt = 0;
468				break;
469			}
470		}
471		if (i == ichdr.count) {
472			trace_xfs_attr_list_notfound(context);
473			return 0;
474		}
475	} else {
476		entry = &entries[0];
477		i = 0;
478	}
479	context->resynch = 0;
480
481	/*
482	 * We have found our place, start copying out the new attributes.
483	 */
484	for (; i < ichdr.count; entry++, i++) {
485		char *name;
486		void *value;
487		int namelen, valuelen;
488
489		if (be32_to_cpu(entry->hashval) != cursor->hashval) {
490			cursor->hashval = be32_to_cpu(entry->hashval);
491			cursor->offset = 0;
492		}
493
494		if ((entry->flags & XFS_ATTR_INCOMPLETE) &&
495		    !context->allow_incomplete)
496			continue;
497
498		if (entry->flags & XFS_ATTR_LOCAL) {
499			xfs_attr_leaf_name_local_t *name_loc;
500
501			name_loc = xfs_attr3_leaf_name_local(leaf, i);
502			name = name_loc->nameval;
503			namelen = name_loc->namelen;
504			value = &name_loc->nameval[name_loc->namelen];
505			valuelen = be16_to_cpu(name_loc->valuelen);
506		} else {
507			xfs_attr_leaf_name_remote_t *name_rmt;
508
509			name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
510			name = name_rmt->name;
511			namelen = name_rmt->namelen;
512			value = NULL;
513			valuelen = be32_to_cpu(name_rmt->valuelen);
514		}
515
516		if (XFS_IS_CORRUPT(context->dp->i_mount,
517				   !xfs_attr_namecheck(entry->flags, name,
518						       namelen))) {
519			xfs_dirattr_mark_sick(context->dp, XFS_ATTR_FORK);
520			return -EFSCORRUPTED;
521		}
522		context->put_listent(context, entry->flags,
523					      name, namelen, value, valuelen);
524		if (context->seen_enough)
525			break;
526		cursor->offset++;
527	}
528	trace_xfs_attr_list_leaf_end(context);
529	return 0;
530}
531
532/*
533 * Copy out attribute entries for attr_list(), for leaf attribute lists.
534 */
535STATIC int
536xfs_attr_leaf_list(
537	struct xfs_attr_list_context	*context)
538{
539	struct xfs_buf			*bp;
540	int				error;
541
542	trace_xfs_attr_leaf_list(context);
543
544	context->cursor.blkno = 0;
545	error = xfs_attr3_leaf_read(context->tp, context->dp,
546			context->dp->i_ino, 0, &bp);
547	if (error)
548		return error;
549
550	error = xfs_attr3_leaf_list_int(bp, context);
551	xfs_trans_brelse(context->tp, bp);
552	return error;
553}
554
555int
556xfs_attr_list_ilocked(
557	struct xfs_attr_list_context	*context)
558{
559	struct xfs_inode		*dp = context->dp;
560	int				error;
561
562	xfs_assert_ilocked(dp, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL);
563
564	/*
565	 * Decide on what work routines to call based on the inode size.
566	 */
567	if (!xfs_inode_hasattr(dp))
568		return 0;
569	if (dp->i_af.if_format == XFS_DINODE_FMT_LOCAL)
570		return xfs_attr_shortform_list(context);
571
572	/* Prerequisite for xfs_attr_is_leaf */
573	error = xfs_iread_extents(NULL, dp, XFS_ATTR_FORK);
574	if (error)
575		return error;
576
577	if (xfs_attr_is_leaf(dp))
578		return xfs_attr_leaf_list(context);
579	return xfs_attr_node_list(context);
580}
581
582int
583xfs_attr_list(
584	struct xfs_attr_list_context	*context)
585{
586	struct xfs_inode		*dp = context->dp;
587	uint				lock_mode;
588	int				error;
589
590	XFS_STATS_INC(dp->i_mount, xs_attr_list);
591
592	if (xfs_is_shutdown(dp->i_mount))
593		return -EIO;
594
595	lock_mode = xfs_ilock_attr_map_shared(dp);
596	error = xfs_attr_list_ilocked(context);
597	xfs_iunlock(dp, lock_mode);
598	return error;
599}
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  4 * Copyright (c) 2013 Red Hat, Inc.
  5 * All Rights Reserved.
  6 */
  7#include "xfs.h"
  8#include "xfs_fs.h"
  9#include "xfs_shared.h"
 10#include "xfs_format.h"
 11#include "xfs_log_format.h"
 12#include "xfs_trans_resv.h"
 13#include "xfs_mount.h"
 14#include "xfs_da_format.h"
 15#include "xfs_inode.h"
 16#include "xfs_trans.h"
 17#include "xfs_bmap.h"
 
 18#include "xfs_attr.h"
 19#include "xfs_attr_sf.h"
 20#include "xfs_attr_leaf.h"
 21#include "xfs_error.h"
 22#include "xfs_trace.h"
 23#include "xfs_dir2.h"
 
 24
 25STATIC int
 26xfs_attr_shortform_compare(const void *a, const void *b)
 27{
 28	xfs_attr_sf_sort_t *sa, *sb;
 29
 30	sa = (xfs_attr_sf_sort_t *)a;
 31	sb = (xfs_attr_sf_sort_t *)b;
 32	if (sa->hash < sb->hash) {
 33		return -1;
 34	} else if (sa->hash > sb->hash) {
 35		return 1;
 36	} else {
 37		return sa->entno - sb->entno;
 38	}
 39}
 40
 41#define XFS_ISRESET_CURSOR(cursor) \
 42	(!((cursor)->initted) && !((cursor)->hashval) && \
 43	 !((cursor)->blkno) && !((cursor)->offset))
 44/*
 45 * Copy out entries of shortform attribute lists for attr_list().
 46 * Shortform attribute lists are not stored in hashval sorted order.
 47 * If the output buffer is not large enough to hold them all, then
 48 * we have to calculate each entries' hashvalue and sort them before
 49 * we can begin returning them to the user.
 50 */
 51static int
 52xfs_attr_shortform_list(
 53	struct xfs_attr_list_context	*context)
 54{
 55	struct xfs_attrlist_cursor_kern	*cursor = &context->cursor;
 56	struct xfs_inode		*dp = context->dp;
 57	struct xfs_attr_sf_sort		*sbuf, *sbp;
 58	struct xfs_attr_shortform	*sf;
 59	struct xfs_attr_sf_entry	*sfe;
 60	int				sbsize, nsbuf, count, i;
 61	int				error = 0;
 62
 63	ASSERT(dp->i_afp != NULL);
 64	sf = (struct xfs_attr_shortform *)dp->i_afp->if_u1.if_data;
 65	ASSERT(sf != NULL);
 66	if (!sf->hdr.count)
 67		return 0;
 68
 69	trace_xfs_attr_list_sf(context);
 70
 71	/*
 72	 * If the buffer is large enough and the cursor is at the start,
 73	 * do not bother with sorting since we will return everything in
 74	 * one buffer and another call using the cursor won't need to be
 75	 * made.
 76	 * Note the generous fudge factor of 16 overhead bytes per entry.
 77	 * If bufsize is zero then put_listent must be a search function
 78	 * and can just scan through what we have.
 79	 */
 80	if (context->bufsize == 0 ||
 81	    (XFS_ISRESET_CURSOR(cursor) &&
 82	     (dp->i_afp->if_bytes + sf->hdr.count * 16) < context->bufsize)) {
 83		for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) {
 84			if (XFS_IS_CORRUPT(context->dp->i_mount,
 85					   !xfs_attr_namecheck(sfe->nameval,
 86							       sfe->namelen)))
 
 
 87				return -EFSCORRUPTED;
 
 88			context->put_listent(context,
 89					     sfe->flags,
 90					     sfe->nameval,
 91					     (int)sfe->namelen,
 
 92					     (int)sfe->valuelen);
 93			/*
 94			 * Either search callback finished early or
 95			 * didn't fit it all in the buffer after all.
 96			 */
 97			if (context->seen_enough)
 98				break;
 99			sfe = xfs_attr_sf_nextentry(sfe);
100		}
101		trace_xfs_attr_list_sf_all(context);
102		return 0;
103	}
104
105	/* do no more for a search callback */
106	if (context->bufsize == 0)
107		return 0;
108
109	/*
110	 * It didn't all fit, so we have to sort everything on hashval.
111	 */
112	sbsize = sf->hdr.count * sizeof(*sbuf);
113	sbp = sbuf = kmem_alloc(sbsize, KM_NOFS);
 
114
115	/*
116	 * Scan the attribute list for the rest of the entries, storing
117	 * the relevant info from only those that match into a buffer.
118	 */
119	nsbuf = 0;
120	for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) {
121		if (unlikely(
122		    ((char *)sfe < (char *)sf) ||
123		    ((char *)sfe >= ((char *)sf + dp->i_afp->if_bytes)))) {
 
124			XFS_CORRUPTION_ERROR("xfs_attr_shortform_list",
125					     XFS_ERRLEVEL_LOW,
126					     context->dp->i_mount, sfe,
127					     sizeof(*sfe));
128			kmem_free(sbuf);
 
129			return -EFSCORRUPTED;
130		}
131
132		sbp->entno = i;
133		sbp->hash = xfs_da_hashname(sfe->nameval, sfe->namelen);
134		sbp->name = sfe->nameval;
135		sbp->namelen = sfe->namelen;
136		/* These are bytes, and both on-disk, don't endian-flip */
 
137		sbp->valuelen = sfe->valuelen;
138		sbp->flags = sfe->flags;
 
 
 
 
139		sfe = xfs_attr_sf_nextentry(sfe);
140		sbp++;
141		nsbuf++;
142	}
143
144	/*
145	 * Sort the entries on hash then entno.
146	 */
147	xfs_sort(sbuf, nsbuf, sizeof(*sbuf), xfs_attr_shortform_compare);
148
149	/*
150	 * Re-find our place IN THE SORTED LIST.
151	 */
152	count = 0;
153	cursor->initted = 1;
154	cursor->blkno = 0;
155	for (sbp = sbuf, i = 0; i < nsbuf; i++, sbp++) {
156		if (sbp->hash == cursor->hashval) {
157			if (cursor->offset == count) {
158				break;
159			}
160			count++;
161		} else if (sbp->hash > cursor->hashval) {
162			break;
163		}
164	}
165	if (i == nsbuf)
166		goto out;
167
168	/*
169	 * Loop putting entries into the user buffer.
170	 */
171	for ( ; i < nsbuf; i++, sbp++) {
172		if (cursor->hashval != sbp->hash) {
173			cursor->hashval = sbp->hash;
174			cursor->offset = 0;
175		}
176		if (XFS_IS_CORRUPT(context->dp->i_mount,
177				   !xfs_attr_namecheck(sbp->name,
178						       sbp->namelen))) {
 
179			error = -EFSCORRUPTED;
180			goto out;
181		}
182		context->put_listent(context,
183				     sbp->flags,
184				     sbp->name,
185				     sbp->namelen,
 
186				     sbp->valuelen);
187		if (context->seen_enough)
188			break;
189		cursor->offset++;
190	}
191out:
192	kmem_free(sbuf);
193	return error;
194}
195
196/*
197 * We didn't find the block & hash mentioned in the cursor state, so
198 * walk down the attr btree looking for the hash.
199 */
200STATIC int
201xfs_attr_node_list_lookup(
202	struct xfs_attr_list_context	*context,
203	struct xfs_attrlist_cursor_kern	*cursor,
204	struct xfs_buf			**pbp)
205{
206	struct xfs_da3_icnode_hdr	nodehdr;
207	struct xfs_da_intnode		*node;
208	struct xfs_da_node_entry	*btree;
209	struct xfs_inode		*dp = context->dp;
210	struct xfs_mount		*mp = dp->i_mount;
211	struct xfs_trans		*tp = context->tp;
212	struct xfs_buf			*bp;
 
213	int				i;
214	int				error = 0;
215	unsigned int			expected_level = 0;
216	uint16_t			magic;
217
218	ASSERT(*pbp == NULL);
219	cursor->blkno = 0;
220	for (;;) {
221		error = xfs_da3_node_read(tp, dp, cursor->blkno, &bp,
222				XFS_ATTR_FORK);
223		if (error)
224			return error;
225		node = bp->b_addr;
226		magic = be16_to_cpu(node->hdr.info.magic);
227		if (magic == XFS_ATTR_LEAF_MAGIC ||
228		    magic == XFS_ATTR3_LEAF_MAGIC)
229			break;
230		if (magic != XFS_DA_NODE_MAGIC &&
231		    magic != XFS_DA3_NODE_MAGIC) {
232			XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp,
233					node, sizeof(*node));
234			goto out_corruptbuf;
235		}
236
 
 
 
 
237		xfs_da3_node_hdr_from_disk(mp, &nodehdr, node);
238
239		/* Tree taller than we can handle; bail out! */
240		if (nodehdr.level >= XFS_DA_NODE_MAXDEPTH)
241			goto out_corruptbuf;
242
243		/* Check the level from the root node. */
244		if (cursor->blkno == 0)
245			expected_level = nodehdr.level - 1;
246		else if (expected_level != nodehdr.level)
247			goto out_corruptbuf;
248		else
249			expected_level--;
250
251		btree = nodehdr.btree;
252		for (i = 0; i < nodehdr.count; btree++, i++) {
253			if (cursor->hashval <= be32_to_cpu(btree->hashval)) {
254				cursor->blkno = be32_to_cpu(btree->before);
255				trace_xfs_attr_list_node_descend(context,
256						btree);
257				break;
258			}
259		}
260		xfs_trans_brelse(tp, bp);
261
262		if (i == nodehdr.count)
263			return 0;
264
265		/* We can't point back to the root. */
266		if (XFS_IS_CORRUPT(mp, cursor->blkno == 0))
 
267			return -EFSCORRUPTED;
 
 
 
 
 
 
 
268	}
269
270	if (expected_level != 0)
271		goto out_corruptbuf;
272
273	*pbp = bp;
274	return 0;
275
276out_corruptbuf:
277	xfs_buf_mark_corrupt(bp);
 
278	xfs_trans_brelse(tp, bp);
 
279	return -EFSCORRUPTED;
280}
281
282STATIC int
283xfs_attr_node_list(
284	struct xfs_attr_list_context	*context)
285{
286	struct xfs_attrlist_cursor_kern	*cursor = &context->cursor;
287	struct xfs_attr3_icleaf_hdr	leafhdr;
288	struct xfs_attr_leafblock	*leaf;
289	struct xfs_da_intnode		*node;
290	struct xfs_buf			*bp;
291	struct xfs_inode		*dp = context->dp;
292	struct xfs_mount		*mp = dp->i_mount;
 
293	int				error = 0;
294
295	trace_xfs_attr_node_list(context);
296
297	cursor->initted = 1;
298
299	/*
300	 * Do all sorts of validation on the passed-in cursor structure.
301	 * If anything is amiss, ignore the cursor and look up the hashval
302	 * starting from the btree root.
303	 */
304	bp = NULL;
305	if (cursor->blkno > 0) {
 
 
306		error = xfs_da3_node_read(context->tp, dp, cursor->blkno, &bp,
307				XFS_ATTR_FORK);
308		if ((error != 0) && (error != -EFSCORRUPTED))
 
 
309			return error;
310		if (bp) {
311			struct xfs_attr_leaf_entry *entries;
312
313			node = bp->b_addr;
314			switch (be16_to_cpu(node->hdr.info.magic)) {
315			case XFS_DA_NODE_MAGIC:
316			case XFS_DA3_NODE_MAGIC:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317				trace_xfs_attr_list_wrong_blk(context);
318				xfs_trans_brelse(context->tp, bp);
319				bp = NULL;
320				break;
321			case XFS_ATTR_LEAF_MAGIC:
322			case XFS_ATTR3_LEAF_MAGIC:
323				leaf = bp->b_addr;
324				xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo,
325							     &leafhdr, leaf);
326				entries = xfs_attr3_leaf_entryp(leaf);
327				if (cursor->hashval > be32_to_cpu(
328						entries[leafhdr.count - 1].hashval)) {
329					trace_xfs_attr_list_wrong_blk(context);
330					xfs_trans_brelse(context->tp, bp);
331					bp = NULL;
332				} else if (cursor->hashval <= be32_to_cpu(
333						entries[0].hashval)) {
334					trace_xfs_attr_list_wrong_blk(context);
335					xfs_trans_brelse(context->tp, bp);
336					bp = NULL;
337				}
338				break;
339			default:
340				trace_xfs_attr_list_wrong_blk(context);
341				xfs_trans_brelse(context->tp, bp);
342				bp = NULL;
343			}
 
 
 
 
 
344		}
345	}
346
347	/*
348	 * We did not find what we expected given the cursor's contents,
349	 * so we start from the top and work down based on the hash value.
350	 * Note that start of node block is same as start of leaf block.
351	 */
352	if (bp == NULL) {
 
353		error = xfs_attr_node_list_lookup(context, cursor, &bp);
354		if (error || !bp)
355			return error;
356	}
357	ASSERT(bp != NULL);
358
359	/*
360	 * Roll upward through the blocks, processing each leaf block in
361	 * order.  As long as there is space in the result buffer, keep
362	 * adding the information.
363	 */
364	for (;;) {
365		leaf = bp->b_addr;
366		error = xfs_attr3_leaf_list_int(bp, context);
367		if (error)
368			break;
369		xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf);
370		if (context->seen_enough || leafhdr.forw == 0)
371			break;
372		cursor->blkno = leafhdr.forw;
373		xfs_trans_brelse(context->tp, bp);
374		error = xfs_attr3_leaf_read(context->tp, dp, cursor->blkno,
375					    &bp);
376		if (error)
377			return error;
378	}
379	xfs_trans_brelse(context->tp, bp);
380	return error;
381}
382
383/*
384 * Copy out attribute list entries for attr_list(), for leaf attribute lists.
385 */
386int
387xfs_attr3_leaf_list_int(
388	struct xfs_buf			*bp,
389	struct xfs_attr_list_context	*context)
390{
391	struct xfs_attrlist_cursor_kern	*cursor = &context->cursor;
392	struct xfs_attr_leafblock	*leaf;
393	struct xfs_attr3_icleaf_hdr	ichdr;
394	struct xfs_attr_leaf_entry	*entries;
395	struct xfs_attr_leaf_entry	*entry;
396	int				i;
397	struct xfs_mount		*mp = context->dp->i_mount;
398
399	trace_xfs_attr_list_leaf(context);
400
401	leaf = bp->b_addr;
402	xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
403	entries = xfs_attr3_leaf_entryp(leaf);
404
405	cursor->initted = 1;
406
407	/*
408	 * Re-find our place in the leaf block if this is a new syscall.
409	 */
410	if (context->resynch) {
411		entry = &entries[0];
412		for (i = 0; i < ichdr.count; entry++, i++) {
413			if (be32_to_cpu(entry->hashval) == cursor->hashval) {
414				if (cursor->offset == context->dupcnt) {
415					context->dupcnt = 0;
416					break;
417				}
418				context->dupcnt++;
419			} else if (be32_to_cpu(entry->hashval) >
420					cursor->hashval) {
421				context->dupcnt = 0;
422				break;
423			}
424		}
425		if (i == ichdr.count) {
426			trace_xfs_attr_list_notfound(context);
427			return 0;
428		}
429	} else {
430		entry = &entries[0];
431		i = 0;
432	}
433	context->resynch = 0;
434
435	/*
436	 * We have found our place, start copying out the new attributes.
437	 */
438	for (; i < ichdr.count; entry++, i++) {
439		char *name;
 
440		int namelen, valuelen;
441
442		if (be32_to_cpu(entry->hashval) != cursor->hashval) {
443			cursor->hashval = be32_to_cpu(entry->hashval);
444			cursor->offset = 0;
445		}
446
447		if ((entry->flags & XFS_ATTR_INCOMPLETE) &&
448		    !context->allow_incomplete)
449			continue;
450
451		if (entry->flags & XFS_ATTR_LOCAL) {
452			xfs_attr_leaf_name_local_t *name_loc;
453
454			name_loc = xfs_attr3_leaf_name_local(leaf, i);
455			name = name_loc->nameval;
456			namelen = name_loc->namelen;
 
457			valuelen = be16_to_cpu(name_loc->valuelen);
458		} else {
459			xfs_attr_leaf_name_remote_t *name_rmt;
460
461			name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
462			name = name_rmt->name;
463			namelen = name_rmt->namelen;
 
464			valuelen = be32_to_cpu(name_rmt->valuelen);
465		}
466
467		if (XFS_IS_CORRUPT(context->dp->i_mount,
468				   !xfs_attr_namecheck(name, namelen)))
 
 
469			return -EFSCORRUPTED;
 
470		context->put_listent(context, entry->flags,
471					      name, namelen, valuelen);
472		if (context->seen_enough)
473			break;
474		cursor->offset++;
475	}
476	trace_xfs_attr_list_leaf_end(context);
477	return 0;
478}
479
480/*
481 * Copy out attribute entries for attr_list(), for leaf attribute lists.
482 */
483STATIC int
484xfs_attr_leaf_list(
485	struct xfs_attr_list_context	*context)
486{
487	struct xfs_buf			*bp;
488	int				error;
489
490	trace_xfs_attr_leaf_list(context);
491
492	context->cursor.blkno = 0;
493	error = xfs_attr3_leaf_read(context->tp, context->dp, 0, &bp);
 
494	if (error)
495		return error;
496
497	error = xfs_attr3_leaf_list_int(bp, context);
498	xfs_trans_brelse(context->tp, bp);
499	return error;
500}
501
502int
503xfs_attr_list_ilocked(
504	struct xfs_attr_list_context	*context)
505{
506	struct xfs_inode		*dp = context->dp;
 
507
508	ASSERT(xfs_isilocked(dp, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
509
510	/*
511	 * Decide on what work routines to call based on the inode size.
512	 */
513	if (!xfs_inode_hasattr(dp))
514		return 0;
515	if (dp->i_afp->if_format == XFS_DINODE_FMT_LOCAL)
516		return xfs_attr_shortform_list(context);
 
 
 
 
 
 
517	if (xfs_attr_is_leaf(dp))
518		return xfs_attr_leaf_list(context);
519	return xfs_attr_node_list(context);
520}
521
522int
523xfs_attr_list(
524	struct xfs_attr_list_context	*context)
525{
526	struct xfs_inode		*dp = context->dp;
527	uint				lock_mode;
528	int				error;
529
530	XFS_STATS_INC(dp->i_mount, xs_attr_list);
531
532	if (XFS_FORCED_SHUTDOWN(dp->i_mount))
533		return -EIO;
534
535	lock_mode = xfs_ilock_attr_map_shared(dp);
536	error = xfs_attr_list_ilocked(context);
537	xfs_iunlock(dp, lock_mode);
538	return error;
539}