1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * Copyright (c) 2013 Red Hat, Inc.
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"
19 #include "xfs_attr_sf.h"
20 #include "xfs_attr_leaf.h"
21 #include "xfs_error.h"
22 #include "xfs_trace.h"
26 xfs_attr_shortform_compare(const void *a
, const void *b
)
28 xfs_attr_sf_sort_t
*sa
, *sb
;
30 sa
= (xfs_attr_sf_sort_t
*)a
;
31 sb
= (xfs_attr_sf_sort_t
*)b
;
32 if (sa
->hash
< sb
->hash
) {
34 } else if (sa
->hash
> sb
->hash
) {
37 return sa
->entno
- sb
->entno
;
41 #define XFS_ISRESET_CURSOR(cursor) \
42 (!((cursor)->initted) && !((cursor)->hashval) && \
43 !((cursor)->blkno) && !((cursor)->offset))
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 we
48 * we have to calculate each entries' hashvalue and sort them before
49 * we can begin returning them to the user.
52 xfs_attr_shortform_list(
53 struct xfs_attr_list_context
*context
)
55 struct attrlist_cursor_kern
*cursor
;
56 struct xfs_attr_sf_sort
*sbuf
, *sbp
;
57 struct xfs_attr_shortform
*sf
;
58 struct xfs_attr_sf_entry
*sfe
;
60 int sbsize
, nsbuf
, count
, i
;
63 ASSERT(context
!= NULL
);
66 ASSERT(dp
->i_afp
!= NULL
);
67 sf
= (xfs_attr_shortform_t
*)dp
->i_afp
->if_u1
.if_data
;
71 cursor
= context
->cursor
;
72 ASSERT(cursor
!= NULL
);
74 trace_xfs_attr_list_sf(context
);
77 * If the buffer is large enough and the cursor is at the start,
78 * do not bother with sorting since we will return everything in
79 * one buffer and another call using the cursor won't need to be
81 * Note the generous fudge factor of 16 overhead bytes per entry.
82 * If bufsize is zero then put_listent must be a search function
83 * and can just scan through what we have.
85 if (context
->bufsize
== 0 ||
86 (XFS_ISRESET_CURSOR(cursor
) &&
87 (dp
->i_afp
->if_bytes
+ sf
->hdr
.count
* 16) < context
->bufsize
)) {
88 for (i
= 0, sfe
= &sf
->list
[0]; i
< sf
->hdr
.count
; i
++) {
89 if (XFS_IS_CORRUPT(context
->dp
->i_mount
,
90 !xfs_attr_namecheck(sfe
->nameval
,
93 context
->put_listent(context
,
99 * Either search callback finished early or
100 * didn't fit it all in the buffer after all.
102 if (context
->seen_enough
)
104 sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
);
106 trace_xfs_attr_list_sf_all(context
);
110 /* do no more for a search callback */
111 if (context
->bufsize
== 0)
115 * It didn't all fit, so we have to sort everything on hashval.
117 sbsize
= sf
->hdr
.count
* sizeof(*sbuf
);
118 sbp
= sbuf
= kmem_alloc(sbsize
, KM_NOFS
);
121 * Scan the attribute list for the rest of the entries, storing
122 * the relevant info from only those that match into a buffer.
125 for (i
= 0, sfe
= &sf
->list
[0]; i
< sf
->hdr
.count
; i
++) {
127 ((char *)sfe
< (char *)sf
) ||
128 ((char *)sfe
>= ((char *)sf
+ dp
->i_afp
->if_bytes
)))) {
129 XFS_CORRUPTION_ERROR("xfs_attr_shortform_list",
131 context
->dp
->i_mount
, sfe
,
134 return -EFSCORRUPTED
;
138 sbp
->hash
= xfs_da_hashname(sfe
->nameval
, sfe
->namelen
);
139 sbp
->name
= sfe
->nameval
;
140 sbp
->namelen
= sfe
->namelen
;
141 /* These are bytes, and both on-disk, don't endian-flip */
142 sbp
->valuelen
= sfe
->valuelen
;
143 sbp
->flags
= sfe
->flags
;
144 sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
);
150 * Sort the entries on hash then entno.
152 xfs_sort(sbuf
, nsbuf
, sizeof(*sbuf
), xfs_attr_shortform_compare
);
155 * Re-find our place IN THE SORTED LIST.
160 for (sbp
= sbuf
, i
= 0; i
< nsbuf
; i
++, sbp
++) {
161 if (sbp
->hash
== cursor
->hashval
) {
162 if (cursor
->offset
== count
) {
166 } else if (sbp
->hash
> cursor
->hashval
) {
174 * Loop putting entries into the user buffer.
176 for ( ; i
< nsbuf
; i
++, sbp
++) {
177 if (cursor
->hashval
!= sbp
->hash
) {
178 cursor
->hashval
= sbp
->hash
;
181 if (XFS_IS_CORRUPT(context
->dp
->i_mount
,
182 !xfs_attr_namecheck(sbp
->name
,
184 error
= -EFSCORRUPTED
;
187 context
->put_listent(context
,
192 if (context
->seen_enough
)
202 * We didn't find the block & hash mentioned in the cursor state, so
203 * walk down the attr btree looking for the hash.
206 xfs_attr_node_list_lookup(
207 struct xfs_attr_list_context
*context
,
208 struct attrlist_cursor_kern
*cursor
,
209 struct xfs_buf
**pbp
)
211 struct xfs_da3_icnode_hdr nodehdr
;
212 struct xfs_da_intnode
*node
;
213 struct xfs_da_node_entry
*btree
;
214 struct xfs_inode
*dp
= context
->dp
;
215 struct xfs_mount
*mp
= dp
->i_mount
;
216 struct xfs_trans
*tp
= context
->tp
;
220 unsigned int expected_level
= 0;
223 ASSERT(*pbp
== NULL
);
226 error
= xfs_da3_node_read(tp
, dp
, cursor
->blkno
, &bp
,
231 magic
= be16_to_cpu(node
->hdr
.info
.magic
);
232 if (magic
== XFS_ATTR_LEAF_MAGIC
||
233 magic
== XFS_ATTR3_LEAF_MAGIC
)
235 if (magic
!= XFS_DA_NODE_MAGIC
&&
236 magic
!= XFS_DA3_NODE_MAGIC
) {
237 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
,
238 node
, sizeof(*node
));
242 xfs_da3_node_hdr_from_disk(mp
, &nodehdr
, node
);
244 /* Tree taller than we can handle; bail out! */
245 if (nodehdr
.level
>= XFS_DA_NODE_MAXDEPTH
)
248 /* Check the level from the root node. */
249 if (cursor
->blkno
== 0)
250 expected_level
= nodehdr
.level
- 1;
251 else if (expected_level
!= nodehdr
.level
)
256 btree
= nodehdr
.btree
;
257 for (i
= 0; i
< nodehdr
.count
; btree
++, i
++) {
258 if (cursor
->hashval
<= be32_to_cpu(btree
->hashval
)) {
259 cursor
->blkno
= be32_to_cpu(btree
->before
);
260 trace_xfs_attr_list_node_descend(context
,
265 xfs_trans_brelse(tp
, bp
);
267 if (i
== nodehdr
.count
)
270 /* We can't point back to the root. */
271 if (XFS_IS_CORRUPT(mp
, cursor
->blkno
== 0))
272 return -EFSCORRUPTED
;
275 if (expected_level
!= 0)
282 xfs_buf_corruption_error(bp
);
283 xfs_trans_brelse(tp
, bp
);
284 return -EFSCORRUPTED
;
289 struct xfs_attr_list_context
*context
)
291 struct xfs_attr3_icleaf_hdr leafhdr
;
292 struct attrlist_cursor_kern
*cursor
;
293 struct xfs_attr_leafblock
*leaf
;
294 struct xfs_da_intnode
*node
;
296 struct xfs_inode
*dp
= context
->dp
;
297 struct xfs_mount
*mp
= dp
->i_mount
;
300 trace_xfs_attr_node_list(context
);
302 cursor
= context
->cursor
;
306 * Do all sorts of validation on the passed-in cursor structure.
307 * If anything is amiss, ignore the cursor and look up the hashval
308 * starting from the btree root.
311 if (cursor
->blkno
> 0) {
312 error
= xfs_da3_node_read(context
->tp
, dp
, cursor
->blkno
, &bp
,
314 if ((error
!= 0) && (error
!= -EFSCORRUPTED
))
317 struct xfs_attr_leaf_entry
*entries
;
320 switch (be16_to_cpu(node
->hdr
.info
.magic
)) {
321 case XFS_DA_NODE_MAGIC
:
322 case XFS_DA3_NODE_MAGIC
:
323 trace_xfs_attr_list_wrong_blk(context
);
324 xfs_trans_brelse(context
->tp
, bp
);
327 case XFS_ATTR_LEAF_MAGIC
:
328 case XFS_ATTR3_LEAF_MAGIC
:
330 xfs_attr3_leaf_hdr_from_disk(mp
->m_attr_geo
,
332 entries
= xfs_attr3_leaf_entryp(leaf
);
333 if (cursor
->hashval
> be32_to_cpu(
334 entries
[leafhdr
.count
- 1].hashval
)) {
335 trace_xfs_attr_list_wrong_blk(context
);
336 xfs_trans_brelse(context
->tp
, bp
);
338 } else if (cursor
->hashval
<= be32_to_cpu(
339 entries
[0].hashval
)) {
340 trace_xfs_attr_list_wrong_blk(context
);
341 xfs_trans_brelse(context
->tp
, bp
);
346 trace_xfs_attr_list_wrong_blk(context
);
347 xfs_trans_brelse(context
->tp
, bp
);
354 * We did not find what we expected given the cursor's contents,
355 * so we start from the top and work down based on the hash value.
356 * Note that start of node block is same as start of leaf block.
359 error
= xfs_attr_node_list_lookup(context
, cursor
, &bp
);
366 * Roll upward through the blocks, processing each leaf block in
367 * order. As long as there is space in the result buffer, keep
368 * adding the information.
372 error
= xfs_attr3_leaf_list_int(bp
, context
);
375 xfs_attr3_leaf_hdr_from_disk(mp
->m_attr_geo
, &leafhdr
, leaf
);
376 if (context
->seen_enough
|| leafhdr
.forw
== 0)
378 cursor
->blkno
= leafhdr
.forw
;
379 xfs_trans_brelse(context
->tp
, bp
);
380 error
= xfs_attr3_leaf_read(context
->tp
, dp
, cursor
->blkno
,
385 xfs_trans_brelse(context
->tp
, bp
);
390 * Copy out attribute list entries for attr_list(), for leaf attribute lists.
393 xfs_attr3_leaf_list_int(
395 struct xfs_attr_list_context
*context
)
397 struct attrlist_cursor_kern
*cursor
;
398 struct xfs_attr_leafblock
*leaf
;
399 struct xfs_attr3_icleaf_hdr ichdr
;
400 struct xfs_attr_leaf_entry
*entries
;
401 struct xfs_attr_leaf_entry
*entry
;
403 struct xfs_mount
*mp
= context
->dp
->i_mount
;
405 trace_xfs_attr_list_leaf(context
);
408 xfs_attr3_leaf_hdr_from_disk(mp
->m_attr_geo
, &ichdr
, leaf
);
409 entries
= xfs_attr3_leaf_entryp(leaf
);
411 cursor
= context
->cursor
;
415 * Re-find our place in the leaf block if this is a new syscall.
417 if (context
->resynch
) {
419 for (i
= 0; i
< ichdr
.count
; entry
++, i
++) {
420 if (be32_to_cpu(entry
->hashval
) == cursor
->hashval
) {
421 if (cursor
->offset
== context
->dupcnt
) {
426 } else if (be32_to_cpu(entry
->hashval
) >
432 if (i
== ichdr
.count
) {
433 trace_xfs_attr_list_notfound(context
);
440 context
->resynch
= 0;
443 * We have found our place, start copying out the new attributes.
445 for (; i
< ichdr
.count
; entry
++, i
++) {
447 int namelen
, valuelen
;
449 if (be32_to_cpu(entry
->hashval
) != cursor
->hashval
) {
450 cursor
->hashval
= be32_to_cpu(entry
->hashval
);
454 if ((entry
->flags
& XFS_ATTR_INCOMPLETE
) &&
455 !(context
->flags
& ATTR_INCOMPLETE
))
456 continue; /* skip incomplete entries */
458 if (entry
->flags
& XFS_ATTR_LOCAL
) {
459 xfs_attr_leaf_name_local_t
*name_loc
;
461 name_loc
= xfs_attr3_leaf_name_local(leaf
, i
);
462 name
= name_loc
->nameval
;
463 namelen
= name_loc
->namelen
;
464 valuelen
= be16_to_cpu(name_loc
->valuelen
);
466 xfs_attr_leaf_name_remote_t
*name_rmt
;
468 name_rmt
= xfs_attr3_leaf_name_remote(leaf
, i
);
469 name
= name_rmt
->name
;
470 namelen
= name_rmt
->namelen
;
471 valuelen
= be32_to_cpu(name_rmt
->valuelen
);
474 if (XFS_IS_CORRUPT(context
->dp
->i_mount
,
475 !xfs_attr_namecheck(name
, namelen
)))
476 return -EFSCORRUPTED
;
477 context
->put_listent(context
, entry
->flags
,
478 name
, namelen
, valuelen
);
479 if (context
->seen_enough
)
483 trace_xfs_attr_list_leaf_end(context
);
488 * Copy out attribute entries for attr_list(), for leaf attribute lists.
491 xfs_attr_leaf_list(xfs_attr_list_context_t
*context
)
496 trace_xfs_attr_leaf_list(context
);
498 context
->cursor
->blkno
= 0;
499 error
= xfs_attr3_leaf_read(context
->tp
, context
->dp
, 0, &bp
);
503 error
= xfs_attr3_leaf_list_int(bp
, context
);
504 xfs_trans_brelse(context
->tp
, bp
);
509 xfs_attr_list_int_ilocked(
510 struct xfs_attr_list_context
*context
)
512 struct xfs_inode
*dp
= context
->dp
;
514 ASSERT(xfs_isilocked(dp
, XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
));
517 * Decide on what work routines to call based on the inode size.
519 if (!xfs_inode_hasattr(dp
))
521 else if (dp
->i_d
.di_aformat
== XFS_DINODE_FMT_LOCAL
)
522 return xfs_attr_shortform_list(context
);
523 else if (xfs_bmap_one_block(dp
, XFS_ATTR_FORK
))
524 return xfs_attr_leaf_list(context
);
525 return xfs_attr_node_list(context
);
530 xfs_attr_list_context_t
*context
)
533 xfs_inode_t
*dp
= context
->dp
;
536 XFS_STATS_INC(dp
->i_mount
, xs_attr_list
);
538 if (XFS_FORCED_SHUTDOWN(dp
->i_mount
))
541 lock_mode
= xfs_ilock_attr_map_shared(dp
);
542 error
= xfs_attr_list_int_ilocked(context
);
543 xfs_iunlock(dp
, lock_mode
);
547 #define ATTR_ENTBASESIZE /* minimum bytes used by an attr */ \
548 (((struct attrlist_ent *) 0)->a_name - (char *) 0)
549 #define ATTR_ENTSIZE(namelen) /* actual bytes used by an attr */ \
550 ((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(uint32_t)-1) \
551 & ~(sizeof(uint32_t)-1))
554 * Format an attribute and copy it out to the user's buffer.
555 * Take care to check values and protect against them changing later,
556 * we may be reading them directly out of a user buffer.
559 xfs_attr_put_listent(
560 xfs_attr_list_context_t
*context
,
566 struct attrlist
*alist
= (struct attrlist
*)context
->alist
;
570 ASSERT(!context
->seen_enough
);
571 ASSERT(!(context
->flags
& ATTR_KERNOVAL
));
572 ASSERT(context
->count
>= 0);
573 ASSERT(context
->count
< (ATTR_MAX_VALUELEN
/8));
574 ASSERT(context
->firstu
>= sizeof(*alist
));
575 ASSERT(context
->firstu
<= context
->bufsize
);
578 * Only list entries in the right namespace.
580 if (((context
->flags
& ATTR_SECURE
) == 0) !=
581 ((flags
& XFS_ATTR_SECURE
) == 0))
583 if (((context
->flags
& ATTR_ROOT
) == 0) !=
584 ((flags
& XFS_ATTR_ROOT
) == 0))
587 arraytop
= sizeof(*alist
) +
588 context
->count
* sizeof(alist
->al_offset
[0]);
589 context
->firstu
-= ATTR_ENTSIZE(namelen
);
590 if (context
->firstu
< arraytop
) {
591 trace_xfs_attr_list_full(context
);
593 context
->seen_enough
= 1;
597 aep
= (attrlist_ent_t
*)&context
->alist
[context
->firstu
];
598 aep
->a_valuelen
= valuelen
;
599 memcpy(aep
->a_name
, name
, namelen
);
600 aep
->a_name
[namelen
] = 0;
601 alist
->al_offset
[context
->count
++] = context
->firstu
;
602 alist
->al_count
= context
->count
;
603 trace_xfs_attr_list_add(context
);
608 * Generate a list of extended attribute names and optionally
609 * also value lengths. Positive return value follows the XFS
610 * convention of being an error, zero or negative return code
611 * is the length of the buffer returned (negated), indicating
620 attrlist_cursor_kern_t
*cursor
)
622 xfs_attr_list_context_t context
;
623 struct attrlist
*alist
;
627 * Validate the cursor.
629 if (cursor
->pad1
|| cursor
->pad2
)
631 if ((cursor
->initted
== 0) &&
632 (cursor
->hashval
|| cursor
->blkno
|| cursor
->offset
))
635 /* Only internal consumers can retrieve incomplete attrs. */
636 if (flags
& ATTR_INCOMPLETE
)
640 * Check for a properly aligned buffer.
642 if (((long)buffer
) & (sizeof(int)-1))
644 if (flags
& ATTR_KERNOVAL
)
648 * Initialize the output buffer.
650 memset(&context
, 0, sizeof(context
));
652 context
.cursor
= cursor
;
654 context
.flags
= flags
;
655 context
.alist
= buffer
;
656 context
.bufsize
= (bufsize
& ~(sizeof(int)-1)); /* align */
657 context
.firstu
= context
.bufsize
;
658 context
.put_listent
= xfs_attr_put_listent
;
660 alist
= (struct attrlist
*)context
.alist
;
663 alist
->al_offset
[0] = context
.bufsize
;
665 error
= xfs_attr_list_int(&context
);