blob: 7740c8a5e7369de93caa93cabed20745ad35d6f5 [file] [log] [blame]
Dave Chinnerabec5f22013-08-12 20:49:38 +10001/*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * Copyright (c) 2013 Red Hat, Inc.
4 * All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#include "xfs.h"
20#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Dave Chinnerabec5f22013-08-12 20:49:38 +100024#include "xfs_bit.h"
Dave Chinnerabec5f22013-08-12 20:49:38 +100025#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110026#include "xfs_da_format.h"
Dave Chinnerabec5f22013-08-12 20:49:38 +100027#include "xfs_da_btree.h"
Dave Chinnerabec5f22013-08-12 20:49:38 +100028#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110029#include "xfs_trans.h"
Dave Chinnerabec5f22013-08-12 20:49:38 +100030#include "xfs_inode_item.h"
31#include "xfs_bmap.h"
32#include "xfs_attr.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110033#include "xfs_attr_sf.h"
34#include "xfs_attr_remote.h"
Dave Chinnerabec5f22013-08-12 20:49:38 +100035#include "xfs_attr_leaf.h"
36#include "xfs_error.h"
37#include "xfs_trace.h"
38#include "xfs_buf_item.h"
39#include "xfs_cksum.h"
Dave Chinner4bceb182013-10-29 22:11:51 +110040#include "xfs_dir2.h"
Dave Chinnerabec5f22013-08-12 20:49:38 +100041
42STATIC int
43xfs_attr_shortform_compare(const void *a, const void *b)
44{
45 xfs_attr_sf_sort_t *sa, *sb;
46
47 sa = (xfs_attr_sf_sort_t *)a;
48 sb = (xfs_attr_sf_sort_t *)b;
49 if (sa->hash < sb->hash) {
Eric Sandeend99831f2014-06-22 15:03:54 +100050 return -1;
Dave Chinnerabec5f22013-08-12 20:49:38 +100051 } else if (sa->hash > sb->hash) {
Eric Sandeend99831f2014-06-22 15:03:54 +100052 return 1;
Dave Chinnerabec5f22013-08-12 20:49:38 +100053 } else {
Eric Sandeend99831f2014-06-22 15:03:54 +100054 return sa->entno - sb->entno;
Dave Chinnerabec5f22013-08-12 20:49:38 +100055 }
56}
57
58#define XFS_ISRESET_CURSOR(cursor) \
59 (!((cursor)->initted) && !((cursor)->hashval) && \
60 !((cursor)->blkno) && !((cursor)->offset))
61/*
62 * Copy out entries of shortform attribute lists for attr_list().
63 * Shortform attribute lists are not stored in hashval sorted order.
64 * If the output buffer is not large enough to hold them all, then we
65 * we have to calculate each entries' hashvalue and sort them before
66 * we can begin returning them to the user.
67 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +100068static int
Dave Chinnerabec5f22013-08-12 20:49:38 +100069xfs_attr_shortform_list(xfs_attr_list_context_t *context)
70{
71 attrlist_cursor_kern_t *cursor;
72 xfs_attr_sf_sort_t *sbuf, *sbp;
73 xfs_attr_shortform_t *sf;
74 xfs_attr_sf_entry_t *sfe;
75 xfs_inode_t *dp;
76 int sbsize, nsbuf, count, i;
Dave Chinnerabec5f22013-08-12 20:49:38 +100077
78 ASSERT(context != NULL);
79 dp = context->dp;
80 ASSERT(dp != NULL);
81 ASSERT(dp->i_afp != NULL);
82 sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data;
83 ASSERT(sf != NULL);
84 if (!sf->hdr.count)
Eric Sandeend99831f2014-06-22 15:03:54 +100085 return 0;
Dave Chinnerabec5f22013-08-12 20:49:38 +100086 cursor = context->cursor;
87 ASSERT(cursor != NULL);
88
89 trace_xfs_attr_list_sf(context);
90
91 /*
92 * If the buffer is large enough and the cursor is at the start,
93 * do not bother with sorting since we will return everything in
94 * one buffer and another call using the cursor won't need to be
95 * made.
96 * Note the generous fudge factor of 16 overhead bytes per entry.
97 * If bufsize is zero then put_listent must be a search function
98 * and can just scan through what we have.
99 */
100 if (context->bufsize == 0 ||
101 (XFS_ISRESET_CURSOR(cursor) &&
102 (dp->i_afp->if_bytes + sf->hdr.count * 16) < context->bufsize)) {
103 for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) {
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100104 context->put_listent(context,
105 sfe->flags,
106 sfe->nameval,
107 (int)sfe->namelen,
108 (int)sfe->valuelen);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000109 /*
110 * Either search callback finished early or
111 * didn't fit it all in the buffer after all.
112 */
113 if (context->seen_enough)
114 break;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000115 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
116 }
117 trace_xfs_attr_list_sf_all(context);
Eric Sandeend99831f2014-06-22 15:03:54 +1000118 return 0;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000119 }
120
121 /* do no more for a search callback */
122 if (context->bufsize == 0)
123 return 0;
124
125 /*
126 * It didn't all fit, so we have to sort everything on hashval.
127 */
128 sbsize = sf->hdr.count * sizeof(*sbuf);
129 sbp = sbuf = kmem_alloc(sbsize, KM_SLEEP | KM_NOFS);
130
131 /*
132 * Scan the attribute list for the rest of the entries, storing
133 * the relevant info from only those that match into a buffer.
134 */
135 nsbuf = 0;
136 for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) {
137 if (unlikely(
138 ((char *)sfe < (char *)sf) ||
139 ((char *)sfe >= ((char *)sf + dp->i_afp->if_bytes)))) {
140 XFS_CORRUPTION_ERROR("xfs_attr_shortform_list",
141 XFS_ERRLEVEL_LOW,
142 context->dp->i_mount, sfe);
143 kmem_free(sbuf);
Dave Chinner24513372014-06-25 14:58:08 +1000144 return -EFSCORRUPTED;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000145 }
146
147 sbp->entno = i;
148 sbp->hash = xfs_da_hashname(sfe->nameval, sfe->namelen);
149 sbp->name = sfe->nameval;
150 sbp->namelen = sfe->namelen;
151 /* These are bytes, and both on-disk, don't endian-flip */
152 sbp->valuelen = sfe->valuelen;
153 sbp->flags = sfe->flags;
154 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
155 sbp++;
156 nsbuf++;
157 }
158
159 /*
160 * Sort the entries on hash then entno.
161 */
162 xfs_sort(sbuf, nsbuf, sizeof(*sbuf), xfs_attr_shortform_compare);
163
164 /*
165 * Re-find our place IN THE SORTED LIST.
166 */
167 count = 0;
168 cursor->initted = 1;
169 cursor->blkno = 0;
170 for (sbp = sbuf, i = 0; i < nsbuf; i++, sbp++) {
171 if (sbp->hash == cursor->hashval) {
172 if (cursor->offset == count) {
173 break;
174 }
175 count++;
176 } else if (sbp->hash > cursor->hashval) {
177 break;
178 }
179 }
180 if (i == nsbuf) {
181 kmem_free(sbuf);
Eric Sandeend99831f2014-06-22 15:03:54 +1000182 return 0;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000183 }
184
185 /*
186 * Loop putting entries into the user buffer.
187 */
188 for ( ; i < nsbuf; i++, sbp++) {
189 if (cursor->hashval != sbp->hash) {
190 cursor->hashval = sbp->hash;
191 cursor->offset = 0;
192 }
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100193 context->put_listent(context,
194 sbp->flags,
195 sbp->name,
196 sbp->namelen,
197 sbp->valuelen);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000198 if (context->seen_enough)
199 break;
200 cursor->offset++;
201 }
202
203 kmem_free(sbuf);
Eric Sandeend99831f2014-06-22 15:03:54 +1000204 return 0;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000205}
206
207STATIC int
208xfs_attr_node_list(xfs_attr_list_context_t *context)
209{
210 attrlist_cursor_kern_t *cursor;
211 xfs_attr_leafblock_t *leaf;
212 xfs_da_intnode_t *node;
213 struct xfs_attr3_icleaf_hdr leafhdr;
214 struct xfs_da3_icnode_hdr nodehdr;
215 struct xfs_da_node_entry *btree;
216 int error, i;
217 struct xfs_buf *bp;
Dave Chinner4bceb182013-10-29 22:11:51 +1100218 struct xfs_inode *dp = context->dp;
Brian Foster2f661242015-04-13 11:26:02 +1000219 struct xfs_mount *mp = dp->i_mount;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000220
221 trace_xfs_attr_node_list(context);
222
223 cursor = context->cursor;
224 cursor->initted = 1;
225
226 /*
227 * Do all sorts of validation on the passed-in cursor structure.
228 * If anything is amiss, ignore the cursor and look up the hashval
229 * starting from the btree root.
230 */
231 bp = NULL;
232 if (cursor->blkno > 0) {
Darrick J. Wongad017f62017-06-16 11:00:14 -0700233 error = xfs_da3_node_read(context->tp, dp, cursor->blkno, -1,
Dave Chinnerabec5f22013-08-12 20:49:38 +1000234 &bp, XFS_ATTR_FORK);
Dave Chinner24513372014-06-25 14:58:08 +1000235 if ((error != 0) && (error != -EFSCORRUPTED))
Eric Sandeend99831f2014-06-22 15:03:54 +1000236 return error;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000237 if (bp) {
238 struct xfs_attr_leaf_entry *entries;
239
240 node = bp->b_addr;
241 switch (be16_to_cpu(node->hdr.info.magic)) {
242 case XFS_DA_NODE_MAGIC:
243 case XFS_DA3_NODE_MAGIC:
244 trace_xfs_attr_list_wrong_blk(context);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700245 xfs_trans_brelse(context->tp, bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000246 bp = NULL;
247 break;
248 case XFS_ATTR_LEAF_MAGIC:
249 case XFS_ATTR3_LEAF_MAGIC:
250 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +1000251 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo,
252 &leafhdr, leaf);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000253 entries = xfs_attr3_leaf_entryp(leaf);
254 if (cursor->hashval > be32_to_cpu(
255 entries[leafhdr.count - 1].hashval)) {
256 trace_xfs_attr_list_wrong_blk(context);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700257 xfs_trans_brelse(context->tp, bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000258 bp = NULL;
259 } else if (cursor->hashval <= be32_to_cpu(
260 entries[0].hashval)) {
261 trace_xfs_attr_list_wrong_blk(context);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700262 xfs_trans_brelse(context->tp, bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000263 bp = NULL;
264 }
265 break;
266 default:
267 trace_xfs_attr_list_wrong_blk(context);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700268 xfs_trans_brelse(context->tp, bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000269 bp = NULL;
270 }
271 }
272 }
273
274 /*
275 * We did not find what we expected given the cursor's contents,
276 * so we start from the top and work down based on the hash value.
277 * Note that start of node block is same as start of leaf block.
278 */
279 if (bp == NULL) {
280 cursor->blkno = 0;
281 for (;;) {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700282 uint16_t magic;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000283
Darrick J. Wongad017f62017-06-16 11:00:14 -0700284 error = xfs_da3_node_read(context->tp, dp,
Dave Chinnerabec5f22013-08-12 20:49:38 +1000285 cursor->blkno, -1, &bp,
286 XFS_ATTR_FORK);
287 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000288 return error;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000289 node = bp->b_addr;
290 magic = be16_to_cpu(node->hdr.info.magic);
291 if (magic == XFS_ATTR_LEAF_MAGIC ||
292 magic == XFS_ATTR3_LEAF_MAGIC)
293 break;
294 if (magic != XFS_DA_NODE_MAGIC &&
295 magic != XFS_DA3_NODE_MAGIC) {
296 XFS_CORRUPTION_ERROR("xfs_attr_node_list(3)",
297 XFS_ERRLEVEL_LOW,
298 context->dp->i_mount,
299 node);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700300 xfs_trans_brelse(context->tp, bp);
Dave Chinner24513372014-06-25 14:58:08 +1000301 return -EFSCORRUPTED;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000302 }
303
Dave Chinner01ba43b2013-10-29 22:11:52 +1100304 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +1100305 btree = dp->d_ops->node_tree_p(node);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000306 for (i = 0; i < nodehdr.count; btree++, i++) {
307 if (cursor->hashval
308 <= be32_to_cpu(btree->hashval)) {
309 cursor->blkno = be32_to_cpu(btree->before);
310 trace_xfs_attr_list_node_descend(context,
311 btree);
312 break;
313 }
314 }
315 if (i == nodehdr.count) {
Darrick J. Wongad017f62017-06-16 11:00:14 -0700316 xfs_trans_brelse(context->tp, bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000317 return 0;
318 }
Darrick J. Wongad017f62017-06-16 11:00:14 -0700319 xfs_trans_brelse(context->tp, bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000320 }
321 }
322 ASSERT(bp != NULL);
323
324 /*
325 * Roll upward through the blocks, processing each leaf block in
326 * order. As long as there is space in the result buffer, keep
327 * adding the information.
328 */
329 for (;;) {
330 leaf = bp->b_addr;
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100331 xfs_attr3_leaf_list_int(bp, context);
Brian Foster2f661242015-04-13 11:26:02 +1000332 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000333 if (context->seen_enough || leafhdr.forw == 0)
334 break;
335 cursor->blkno = leafhdr.forw;
Darrick J. Wongad017f62017-06-16 11:00:14 -0700336 xfs_trans_brelse(context->tp, bp);
337 error = xfs_attr3_leaf_read(context->tp, dp, cursor->blkno, -1, &bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000338 if (error)
339 return error;
340 }
Darrick J. Wongad017f62017-06-16 11:00:14 -0700341 xfs_trans_brelse(context->tp, bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000342 return 0;
343}
344
345/*
346 * Copy out attribute list entries for attr_list(), for leaf attribute lists.
347 */
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100348void
Dave Chinnerabec5f22013-08-12 20:49:38 +1000349xfs_attr3_leaf_list_int(
350 struct xfs_buf *bp,
351 struct xfs_attr_list_context *context)
352{
353 struct attrlist_cursor_kern *cursor;
354 struct xfs_attr_leafblock *leaf;
355 struct xfs_attr3_icleaf_hdr ichdr;
356 struct xfs_attr_leaf_entry *entries;
357 struct xfs_attr_leaf_entry *entry;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000358 int i;
Brian Foster2f661242015-04-13 11:26:02 +1000359 struct xfs_mount *mp = context->dp->i_mount;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000360
361 trace_xfs_attr_list_leaf(context);
362
363 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +1000364 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000365 entries = xfs_attr3_leaf_entryp(leaf);
366
367 cursor = context->cursor;
368 cursor->initted = 1;
369
370 /*
371 * Re-find our place in the leaf block if this is a new syscall.
372 */
373 if (context->resynch) {
374 entry = &entries[0];
375 for (i = 0; i < ichdr.count; entry++, i++) {
376 if (be32_to_cpu(entry->hashval) == cursor->hashval) {
377 if (cursor->offset == context->dupcnt) {
378 context->dupcnt = 0;
379 break;
380 }
381 context->dupcnt++;
382 } else if (be32_to_cpu(entry->hashval) >
383 cursor->hashval) {
384 context->dupcnt = 0;
385 break;
386 }
387 }
388 if (i == ichdr.count) {
389 trace_xfs_attr_list_notfound(context);
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100390 return;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000391 }
392 } else {
393 entry = &entries[0];
394 i = 0;
395 }
396 context->resynch = 0;
397
398 /*
399 * We have found our place, start copying out the new attributes.
400 */
Dave Chinnerabec5f22013-08-12 20:49:38 +1000401 for (; i < ichdr.count; entry++, i++) {
Eric Sandeen3ab3ffc2016-04-06 07:57:47 +1000402 char *name;
403 int namelen, valuelen;
404
Dave Chinnerabec5f22013-08-12 20:49:38 +1000405 if (be32_to_cpu(entry->hashval) != cursor->hashval) {
406 cursor->hashval = be32_to_cpu(entry->hashval);
407 cursor->offset = 0;
408 }
409
410 if (entry->flags & XFS_ATTR_INCOMPLETE)
411 continue; /* skip incomplete entries */
412
413 if (entry->flags & XFS_ATTR_LOCAL) {
Eric Sandeen3ab3ffc2016-04-06 07:57:47 +1000414 xfs_attr_leaf_name_local_t *name_loc;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000415
Eric Sandeen3ab3ffc2016-04-06 07:57:47 +1000416 name_loc = xfs_attr3_leaf_name_local(leaf, i);
417 name = name_loc->nameval;
418 namelen = name_loc->namelen;
419 valuelen = be16_to_cpu(name_loc->valuelen);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000420 } else {
Eric Sandeen3ab3ffc2016-04-06 07:57:47 +1000421 xfs_attr_leaf_name_remote_t *name_rmt;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000422
Eric Sandeen3ab3ffc2016-04-06 07:57:47 +1000423 name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
424 name = name_rmt->name;
425 namelen = name_rmt->namelen;
426 valuelen = be32_to_cpu(name_rmt->valuelen);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000427 }
Eric Sandeen3ab3ffc2016-04-06 07:57:47 +1000428
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100429 context->put_listent(context, entry->flags,
Eric Sandeen3ab3ffc2016-04-06 07:57:47 +1000430 name, namelen, valuelen);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000431 if (context->seen_enough)
432 break;
433 cursor->offset++;
434 }
435 trace_xfs_attr_list_leaf_end(context);
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100436 return;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000437}
438
439/*
440 * Copy out attribute entries for attr_list(), for leaf attribute lists.
441 */
442STATIC int
443xfs_attr_leaf_list(xfs_attr_list_context_t *context)
444{
445 int error;
446 struct xfs_buf *bp;
447
448 trace_xfs_attr_leaf_list(context);
449
450 context->cursor->blkno = 0;
Darrick J. Wongad017f62017-06-16 11:00:14 -0700451 error = xfs_attr3_leaf_read(context->tp, context->dp, 0, -1, &bp);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000452 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000453 return error;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000454
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100455 xfs_attr3_leaf_list_int(bp, context);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700456 xfs_trans_brelse(context->tp, bp);
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100457 return 0;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000458}
459
460int
Darrick J. Wongad017f62017-06-16 11:00:14 -0700461xfs_attr_list_int_ilocked(
462 struct xfs_attr_list_context *context)
463{
464 struct xfs_inode *dp = context->dp;
465
Christoph Hellwig5af77772017-07-13 12:14:33 -0700466 ASSERT(xfs_isilocked(dp, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
467
Darrick J. Wongad017f62017-06-16 11:00:14 -0700468 /*
469 * Decide on what work routines to call based on the inode size.
470 */
471 if (!xfs_inode_hasattr(dp))
472 return 0;
473 else if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL)
474 return xfs_attr_shortform_list(context);
475 else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK))
476 return xfs_attr_leaf_list(context);
477 return xfs_attr_node_list(context);
478}
479
480int
Dave Chinnerabec5f22013-08-12 20:49:38 +1000481xfs_attr_list_int(
482 xfs_attr_list_context_t *context)
483{
484 int error;
485 xfs_inode_t *dp = context->dp;
Christoph Hellwig568d9942013-12-06 12:30:16 -0800486 uint lock_mode;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000487
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100488 XFS_STATS_INC(dp->i_mount, xs_attr_list);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000489
490 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000491 return -EIO;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000492
Christoph Hellwig568d9942013-12-06 12:30:16 -0800493 lock_mode = xfs_ilock_attr_map_shared(dp);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700494 error = xfs_attr_list_int_ilocked(context);
Christoph Hellwig568d9942013-12-06 12:30:16 -0800495 xfs_iunlock(dp, lock_mode);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000496 return error;
497}
498
499#define ATTR_ENTBASESIZE /* minimum bytes used by an attr */ \
500 (((struct attrlist_ent *) 0)->a_name - (char *) 0)
501#define ATTR_ENTSIZE(namelen) /* actual bytes used by an attr */ \
502 ((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(u_int32_t)-1) \
503 & ~(sizeof(u_int32_t)-1))
504
505/*
506 * Format an attribute and copy it out to the user's buffer.
507 * Take care to check values and protect against them changing later,
508 * we may be reading them directly out of a user buffer.
509 */
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100510STATIC void
Dave Chinnerabec5f22013-08-12 20:49:38 +1000511xfs_attr_put_listent(
512 xfs_attr_list_context_t *context,
513 int flags,
514 unsigned char *name,
515 int namelen,
Eric Sandeene5bd12b2016-04-06 07:57:32 +1000516 int valuelen)
Dave Chinnerabec5f22013-08-12 20:49:38 +1000517{
518 struct attrlist *alist = (struct attrlist *)context->alist;
519 attrlist_ent_t *aep;
520 int arraytop;
521
522 ASSERT(!(context->flags & ATTR_KERNOVAL));
523 ASSERT(context->count >= 0);
524 ASSERT(context->count < (ATTR_MAX_VALUELEN/8));
525 ASSERT(context->firstu >= sizeof(*alist));
526 ASSERT(context->firstu <= context->bufsize);
527
528 /*
529 * Only list entries in the right namespace.
530 */
531 if (((context->flags & ATTR_SECURE) == 0) !=
532 ((flags & XFS_ATTR_SECURE) == 0))
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100533 return;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000534 if (((context->flags & ATTR_ROOT) == 0) !=
535 ((flags & XFS_ATTR_ROOT) == 0))
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100536 return;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000537
538 arraytop = sizeof(*alist) +
539 context->count * sizeof(alist->al_offset[0]);
540 context->firstu -= ATTR_ENTSIZE(namelen);
541 if (context->firstu < arraytop) {
542 trace_xfs_attr_list_full(context);
543 alist->al_more = 1;
544 context->seen_enough = 1;
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100545 return;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000546 }
547
548 aep = (attrlist_ent_t *)&context->alist[context->firstu];
549 aep->a_valuelen = valuelen;
550 memcpy(aep->a_name, name, namelen);
551 aep->a_name[namelen] = 0;
552 alist->al_offset[context->count++] = context->firstu;
553 alist->al_count = context->count;
554 trace_xfs_attr_list_add(context);
Eric Sandeenf7a136a2016-12-05 12:32:14 +1100555 return;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000556}
557
558/*
559 * Generate a list of extended attribute names and optionally
560 * also value lengths. Positive return value follows the XFS
561 * convention of being an error, zero or negative return code
562 * is the length of the buffer returned (negated), indicating
563 * success.
564 */
565int
566xfs_attr_list(
567 xfs_inode_t *dp,
568 char *buffer,
569 int bufsize,
570 int flags,
571 attrlist_cursor_kern_t *cursor)
572{
573 xfs_attr_list_context_t context;
574 struct attrlist *alist;
575 int error;
576
577 /*
578 * Validate the cursor.
579 */
580 if (cursor->pad1 || cursor->pad2)
Dave Chinner24513372014-06-25 14:58:08 +1000581 return -EINVAL;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000582 if ((cursor->initted == 0) &&
583 (cursor->hashval || cursor->blkno || cursor->offset))
Dave Chinner24513372014-06-25 14:58:08 +1000584 return -EINVAL;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000585
586 /*
587 * Check for a properly aligned buffer.
588 */
589 if (((long)buffer) & (sizeof(int)-1))
Dave Chinner24513372014-06-25 14:58:08 +1000590 return -EFAULT;
Dave Chinnerabec5f22013-08-12 20:49:38 +1000591 if (flags & ATTR_KERNOVAL)
592 bufsize = 0;
593
594 /*
595 * Initialize the output buffer.
596 */
597 memset(&context, 0, sizeof(context));
598 context.dp = dp;
599 context.cursor = cursor;
600 context.resynch = 1;
601 context.flags = flags;
602 context.alist = buffer;
603 context.bufsize = (bufsize & ~(sizeof(int)-1)); /* align */
604 context.firstu = context.bufsize;
605 context.put_listent = xfs_attr_put_listent;
606
607 alist = (struct attrlist *)context.alist;
608 alist->al_count = 0;
609 alist->al_more = 0;
610 alist->al_offset[0] = context.bufsize;
611
612 error = xfs_attr_list_int(&context);
Dave Chinner24513372014-06-25 14:58:08 +1000613 ASSERT(error <= 0);
Dave Chinnerabec5f22013-08-12 20:49:38 +1000614 return error;
615}