]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - zfs/module/zfs/sa.c
UBUNTU: SAUCE: (noup) Update spl to 0.6.5.9-1, zfs to 0.6.5.9-2
[mirror_ubuntu-artful-kernel.git] / zfs / module / zfs / sa.c
1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22 /*
23 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2013 by Delphix. All rights reserved.
25 * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
26 */
27
28 #include <sys/zfs_context.h>
29 #include <sys/types.h>
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/sysmacros.h>
33 #include <sys/dmu.h>
34 #include <sys/dmu_impl.h>
35 #include <sys/dmu_objset.h>
36 #include <sys/dbuf.h>
37 #include <sys/dnode.h>
38 #include <sys/zap.h>
39 #include <sys/sa.h>
40 #include <sys/sunddi.h>
41 #include <sys/sa_impl.h>
42 #include <sys/dnode.h>
43 #include <sys/errno.h>
44 #include <sys/zfs_context.h>
45
46 /*
47 * ZFS System attributes:
48 *
49 * A generic mechanism to allow for arbitrary attributes
50 * to be stored in a dnode. The data will be stored in the bonus buffer of
51 * the dnode and if necessary a special "spill" block will be used to handle
52 * overflow situations. The spill block will be sized to fit the data
53 * from 512 - 128K. When a spill block is used the BP (blkptr_t) for the
54 * spill block is stored at the end of the current bonus buffer. Any
55 * attributes that would be in the way of the blkptr_t will be relocated
56 * into the spill block.
57 *
58 * Attribute registration:
59 *
60 * Stored persistently on a per dataset basis
61 * a mapping between attribute "string" names and their actual attribute
62 * numeric values, length, and byteswap function. The names are only used
63 * during registration. All attributes are known by their unique attribute
64 * id value. If an attribute can have a variable size then the value
65 * 0 will be used to indicate this.
66 *
67 * Attribute Layout:
68 *
69 * Attribute layouts are a way to compactly store multiple attributes, but
70 * without taking the overhead associated with managing each attribute
71 * individually. Since you will typically have the same set of attributes
72 * stored in the same order a single table will be used to represent that
73 * layout. The ZPL for example will usually have only about 10 different
74 * layouts (regular files, device files, symlinks,
75 * regular files + scanstamp, files/dir with extended attributes, and then
76 * you have the possibility of all of those minus ACL, because it would
77 * be kicked out into the spill block)
78 *
79 * Layouts are simply an array of the attributes and their
80 * ordering i.e. [0, 1, 4, 5, 2]
81 *
82 * Each distinct layout is given a unique layout number and that is whats
83 * stored in the header at the beginning of the SA data buffer.
84 *
85 * A layout only covers a single dbuf (bonus or spill). If a set of
86 * attributes is split up between the bonus buffer and a spill buffer then
87 * two different layouts will be used. This allows us to byteswap the
88 * spill without looking at the bonus buffer and keeps the on disk format of
89 * the bonus and spill buffer the same.
90 *
91 * Adding a single attribute will cause the entire set of attributes to
92 * be rewritten and could result in a new layout number being constructed
93 * as part of the rewrite if no such layout exists for the new set of
94 * attribues. The new attribute will be appended to the end of the already
95 * existing attributes.
96 *
97 * Both the attribute registration and attribute layout information are
98 * stored in normal ZAP attributes. Their should be a small number of
99 * known layouts and the set of attributes is assumed to typically be quite
100 * small.
101 *
102 * The registered attributes and layout "table" information is maintained
103 * in core and a special "sa_os_t" is attached to the objset_t.
104 *
105 * A special interface is provided to allow for quickly applying
106 * a large set of attributes at once. sa_replace_all_by_template() is
107 * used to set an array of attributes. This is used by the ZPL when
108 * creating a brand new file. The template that is passed into the function
109 * specifies the attribute, size for variable length attributes, location of
110 * data and special "data locator" function if the data isn't in a contiguous
111 * location.
112 *
113 * Byteswap implications:
114 *
115 * Since the SA attributes are not entirely self describing we can't do
116 * the normal byteswap processing. The special ZAP layout attribute and
117 * attribute registration attributes define the byteswap function and the
118 * size of the attributes, unless it is variable sized.
119 * The normal ZFS byteswapping infrastructure assumes you don't need
120 * to read any objects in order to do the necessary byteswapping. Whereas
121 * SA attributes can only be properly byteswapped if the dataset is opened
122 * and the layout/attribute ZAP attributes are available. Because of this
123 * the SA attributes will be byteswapped when they are first accessed by
124 * the SA code that will read the SA data.
125 */
126
127 typedef void (sa_iterfunc_t)(void *hdr, void *addr, sa_attr_type_t,
128 uint16_t length, int length_idx, boolean_t, void *userp);
129
130 static int sa_build_index(sa_handle_t *hdl, sa_buf_type_t buftype);
131 static void sa_idx_tab_hold(objset_t *os, sa_idx_tab_t *idx_tab);
132 static void *sa_find_idx_tab(objset_t *os, dmu_object_type_t bonustype,
133 void *data);
134 static void sa_idx_tab_rele(objset_t *os, void *arg);
135 static void sa_copy_data(sa_data_locator_t *func, void *start, void *target,
136 int buflen);
137 static int sa_modify_attrs(sa_handle_t *hdl, sa_attr_type_t newattr,
138 sa_data_op_t action, sa_data_locator_t *locator, void *datastart,
139 uint16_t buflen, dmu_tx_t *tx);
140
141 arc_byteswap_func_t sa_bswap_table[] = {
142 byteswap_uint64_array,
143 byteswap_uint32_array,
144 byteswap_uint16_array,
145 byteswap_uint8_array,
146 zfs_acl_byteswap,
147 };
148
149 #define SA_COPY_DATA(f, s, t, l) \
150 { \
151 if (f == NULL) { \
152 if (l == 8) { \
153 *(uint64_t *)t = *(uint64_t *)s; \
154 } else if (l == 16) { \
155 *(uint64_t *)t = *(uint64_t *)s; \
156 *(uint64_t *)((uintptr_t)t + 8) = \
157 *(uint64_t *)((uintptr_t)s + 8); \
158 } else { \
159 bcopy(s, t, l); \
160 } \
161 } else \
162 sa_copy_data(f, s, t, l); \
163 }
164
165 /*
166 * This table is fixed and cannot be changed. Its purpose is to
167 * allow the SA code to work with both old/new ZPL file systems.
168 * It contains the list of legacy attributes. These attributes aren't
169 * stored in the "attribute" registry zap objects, since older ZPL file systems
170 * won't have the registry. Only objsets of type ZFS_TYPE_FILESYSTEM will
171 * use this static table.
172 */
173 sa_attr_reg_t sa_legacy_attrs[] = {
174 {"ZPL_ATIME", sizeof (uint64_t) * 2, SA_UINT64_ARRAY, 0},
175 {"ZPL_MTIME", sizeof (uint64_t) * 2, SA_UINT64_ARRAY, 1},
176 {"ZPL_CTIME", sizeof (uint64_t) * 2, SA_UINT64_ARRAY, 2},
177 {"ZPL_CRTIME", sizeof (uint64_t) * 2, SA_UINT64_ARRAY, 3},
178 {"ZPL_GEN", sizeof (uint64_t), SA_UINT64_ARRAY, 4},
179 {"ZPL_MODE", sizeof (uint64_t), SA_UINT64_ARRAY, 5},
180 {"ZPL_SIZE", sizeof (uint64_t), SA_UINT64_ARRAY, 6},
181 {"ZPL_PARENT", sizeof (uint64_t), SA_UINT64_ARRAY, 7},
182 {"ZPL_LINKS", sizeof (uint64_t), SA_UINT64_ARRAY, 8},
183 {"ZPL_XATTR", sizeof (uint64_t), SA_UINT64_ARRAY, 9},
184 {"ZPL_RDEV", sizeof (uint64_t), SA_UINT64_ARRAY, 10},
185 {"ZPL_FLAGS", sizeof (uint64_t), SA_UINT64_ARRAY, 11},
186 {"ZPL_UID", sizeof (uint64_t), SA_UINT64_ARRAY, 12},
187 {"ZPL_GID", sizeof (uint64_t), SA_UINT64_ARRAY, 13},
188 {"ZPL_PAD", sizeof (uint64_t) * 4, SA_UINT64_ARRAY, 14},
189 {"ZPL_ZNODE_ACL", 88, SA_UINT8_ARRAY, 15},
190 };
191
192 /*
193 * This is only used for objects of type DMU_OT_ZNODE
194 */
195 sa_attr_type_t sa_legacy_zpl_layout[] = {
196 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
197 };
198
199 /*
200 * Special dummy layout used for buffers with no attributes.
201 */
202 sa_attr_type_t sa_dummy_zpl_layout[] = { 0 };
203
204 static int sa_legacy_attr_count = 16;
205 static kmem_cache_t *sa_cache = NULL;
206
207 /*ARGSUSED*/
208 static int
209 sa_cache_constructor(void *buf, void *unused, int kmflag)
210 {
211 sa_handle_t *hdl = buf;
212
213 mutex_init(&hdl->sa_lock, NULL, MUTEX_DEFAULT, NULL);
214 return (0);
215 }
216
217 /*ARGSUSED*/
218 static void
219 sa_cache_destructor(void *buf, void *unused)
220 {
221 sa_handle_t *hdl = buf;
222 mutex_destroy(&hdl->sa_lock);
223 }
224
225 void
226 sa_cache_init(void)
227 {
228 sa_cache = kmem_cache_create("sa_cache",
229 sizeof (sa_handle_t), 0, sa_cache_constructor,
230 sa_cache_destructor, NULL, NULL, NULL, 0);
231 }
232
233 void
234 sa_cache_fini(void)
235 {
236 if (sa_cache)
237 kmem_cache_destroy(sa_cache);
238 }
239
240 static int
241 layout_num_compare(const void *arg1, const void *arg2)
242 {
243 const sa_lot_t *node1 = arg1;
244 const sa_lot_t *node2 = arg2;
245
246 if (node1->lot_num > node2->lot_num)
247 return (1);
248 else if (node1->lot_num < node2->lot_num)
249 return (-1);
250 return (0);
251 }
252
253 static int
254 layout_hash_compare(const void *arg1, const void *arg2)
255 {
256 const sa_lot_t *node1 = arg1;
257 const sa_lot_t *node2 = arg2;
258
259 if (node1->lot_hash > node2->lot_hash)
260 return (1);
261 if (node1->lot_hash < node2->lot_hash)
262 return (-1);
263 if (node1->lot_instance > node2->lot_instance)
264 return (1);
265 if (node1->lot_instance < node2->lot_instance)
266 return (-1);
267 return (0);
268 }
269
270 boolean_t
271 sa_layout_equal(sa_lot_t *tbf, sa_attr_type_t *attrs, int count)
272 {
273 int i;
274
275 if (count != tbf->lot_attr_count)
276 return (1);
277
278 for (i = 0; i != count; i++) {
279 if (attrs[i] != tbf->lot_attrs[i])
280 return (1);
281 }
282 return (0);
283 }
284
285 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
286
287 static uint64_t
288 sa_layout_info_hash(sa_attr_type_t *attrs, int attr_count)
289 {
290 int i;
291 uint64_t crc = -1ULL;
292
293 for (i = 0; i != attr_count; i++)
294 crc ^= SA_ATTR_HASH(attrs[i]);
295
296 return (crc);
297 }
298
299 static int
300 sa_get_spill(sa_handle_t *hdl)
301 {
302 int rc;
303 if (hdl->sa_spill == NULL) {
304 if ((rc = dmu_spill_hold_existing(hdl->sa_bonus, NULL,
305 &hdl->sa_spill)) == 0)
306 VERIFY(0 == sa_build_index(hdl, SA_SPILL));
307 } else {
308 rc = 0;
309 }
310
311 return (rc);
312 }
313
314 /*
315 * Main attribute lookup/update function
316 * returns 0 for success or non zero for failures
317 *
318 * Operates on bulk array, first failure will abort further processing
319 */
320 int
321 sa_attr_op(sa_handle_t *hdl, sa_bulk_attr_t *bulk, int count,
322 sa_data_op_t data_op, dmu_tx_t *tx)
323 {
324 sa_os_t *sa = hdl->sa_os->os_sa;
325 int i;
326 int error = 0;
327 sa_buf_type_t buftypes;
328
329 buftypes = 0;
330
331 ASSERT(count > 0);
332 for (i = 0; i != count; i++) {
333 ASSERT(bulk[i].sa_attr <= hdl->sa_os->os_sa->sa_num_attrs);
334
335 bulk[i].sa_addr = NULL;
336 /* First check the bonus buffer */
337
338 if (hdl->sa_bonus_tab && TOC_ATTR_PRESENT(
339 hdl->sa_bonus_tab->sa_idx_tab[bulk[i].sa_attr])) {
340 SA_ATTR_INFO(sa, hdl->sa_bonus_tab,
341 SA_GET_HDR(hdl, SA_BONUS),
342 bulk[i].sa_attr, bulk[i], SA_BONUS, hdl);
343 if (tx && !(buftypes & SA_BONUS)) {
344 dmu_buf_will_dirty(hdl->sa_bonus, tx);
345 buftypes |= SA_BONUS;
346 }
347 }
348 if (bulk[i].sa_addr == NULL &&
349 ((error = sa_get_spill(hdl)) == 0)) {
350 if (TOC_ATTR_PRESENT(
351 hdl->sa_spill_tab->sa_idx_tab[bulk[i].sa_attr])) {
352 SA_ATTR_INFO(sa, hdl->sa_spill_tab,
353 SA_GET_HDR(hdl, SA_SPILL),
354 bulk[i].sa_attr, bulk[i], SA_SPILL, hdl);
355 if (tx && !(buftypes & SA_SPILL) &&
356 bulk[i].sa_size == bulk[i].sa_length) {
357 dmu_buf_will_dirty(hdl->sa_spill, tx);
358 buftypes |= SA_SPILL;
359 }
360 }
361 }
362 if (error && error != ENOENT) {
363 return ((error == ECKSUM) ? EIO : error);
364 }
365
366 switch (data_op) {
367 case SA_LOOKUP:
368 if (bulk[i].sa_addr == NULL)
369 return (SET_ERROR(ENOENT));
370 if (bulk[i].sa_data) {
371 SA_COPY_DATA(bulk[i].sa_data_func,
372 bulk[i].sa_addr, bulk[i].sa_data,
373 bulk[i].sa_size);
374 }
375 continue;
376
377 case SA_UPDATE:
378 /* existing rewrite of attr */
379 if (bulk[i].sa_addr &&
380 bulk[i].sa_size == bulk[i].sa_length) {
381 SA_COPY_DATA(bulk[i].sa_data_func,
382 bulk[i].sa_data, bulk[i].sa_addr,
383 bulk[i].sa_length);
384 continue;
385 } else if (bulk[i].sa_addr) { /* attr size change */
386 error = sa_modify_attrs(hdl, bulk[i].sa_attr,
387 SA_REPLACE, bulk[i].sa_data_func,
388 bulk[i].sa_data, bulk[i].sa_length, tx);
389 } else { /* adding new attribute */
390 error = sa_modify_attrs(hdl, bulk[i].sa_attr,
391 SA_ADD, bulk[i].sa_data_func,
392 bulk[i].sa_data, bulk[i].sa_length, tx);
393 }
394 if (error)
395 return (error);
396 break;
397 default:
398 break;
399 }
400 }
401 return (error);
402 }
403
404 static sa_lot_t *
405 sa_add_layout_entry(objset_t *os, sa_attr_type_t *attrs, int attr_count,
406 uint64_t lot_num, uint64_t hash, boolean_t zapadd, dmu_tx_t *tx)
407 {
408 sa_os_t *sa = os->os_sa;
409 sa_lot_t *tb, *findtb;
410 int i;
411 avl_index_t loc;
412
413 ASSERT(MUTEX_HELD(&sa->sa_lock));
414 tb = kmem_zalloc(sizeof (sa_lot_t), KM_SLEEP);
415 tb->lot_attr_count = attr_count;
416 tb->lot_attrs = kmem_alloc(sizeof (sa_attr_type_t) * attr_count,
417 KM_SLEEP);
418 bcopy(attrs, tb->lot_attrs, sizeof (sa_attr_type_t) * attr_count);
419 tb->lot_num = lot_num;
420 tb->lot_hash = hash;
421 tb->lot_instance = 0;
422
423 if (zapadd) {
424 char attr_name[8];
425
426 if (sa->sa_layout_attr_obj == 0) {
427 sa->sa_layout_attr_obj = zap_create_link(os,
428 DMU_OT_SA_ATTR_LAYOUTS,
429 sa->sa_master_obj, SA_LAYOUTS, tx);
430 }
431
432 (void) snprintf(attr_name, sizeof (attr_name),
433 "%d", (int)lot_num);
434 VERIFY(0 == zap_update(os, os->os_sa->sa_layout_attr_obj,
435 attr_name, 2, attr_count, attrs, tx));
436 }
437
438 list_create(&tb->lot_idx_tab, sizeof (sa_idx_tab_t),
439 offsetof(sa_idx_tab_t, sa_next));
440
441 for (i = 0; i != attr_count; i++) {
442 if (sa->sa_attr_table[tb->lot_attrs[i]].sa_length == 0)
443 tb->lot_var_sizes++;
444 }
445
446 avl_add(&sa->sa_layout_num_tree, tb);
447
448 /* verify we don't have a hash collision */
449 if ((findtb = avl_find(&sa->sa_layout_hash_tree, tb, &loc)) != NULL) {
450 for (; findtb && findtb->lot_hash == hash;
451 findtb = AVL_NEXT(&sa->sa_layout_hash_tree, findtb)) {
452 if (findtb->lot_instance != tb->lot_instance)
453 break;
454 tb->lot_instance++;
455 }
456 }
457 avl_add(&sa->sa_layout_hash_tree, tb);
458 return (tb);
459 }
460
461 static void
462 sa_find_layout(objset_t *os, uint64_t hash, sa_attr_type_t *attrs,
463 int count, dmu_tx_t *tx, sa_lot_t **lot)
464 {
465 sa_lot_t *tb, tbsearch;
466 avl_index_t loc;
467 sa_os_t *sa = os->os_sa;
468 boolean_t found = B_FALSE;
469
470 mutex_enter(&sa->sa_lock);
471 tbsearch.lot_hash = hash;
472 tbsearch.lot_instance = 0;
473 tb = avl_find(&sa->sa_layout_hash_tree, &tbsearch, &loc);
474 if (tb) {
475 for (; tb && tb->lot_hash == hash;
476 tb = AVL_NEXT(&sa->sa_layout_hash_tree, tb)) {
477 if (sa_layout_equal(tb, attrs, count) == 0) {
478 found = B_TRUE;
479 break;
480 }
481 }
482 }
483 if (!found) {
484 tb = sa_add_layout_entry(os, attrs, count,
485 avl_numnodes(&sa->sa_layout_num_tree), hash, B_TRUE, tx);
486 }
487 mutex_exit(&sa->sa_lock);
488 *lot = tb;
489 }
490
491 static int
492 sa_resize_spill(sa_handle_t *hdl, uint32_t size, dmu_tx_t *tx)
493 {
494 int error;
495 uint32_t blocksize;
496
497 if (size == 0) {
498 blocksize = SPA_MINBLOCKSIZE;
499 } else if (size > SPA_OLD_MAXBLOCKSIZE) {
500 ASSERT(0);
501 return (SET_ERROR(EFBIG));
502 } else {
503 blocksize = P2ROUNDUP_TYPED(size, SPA_MINBLOCKSIZE, uint32_t);
504 }
505
506 error = dbuf_spill_set_blksz(hdl->sa_spill, blocksize, tx);
507 ASSERT(error == 0);
508 return (error);
509 }
510
511 static void
512 sa_copy_data(sa_data_locator_t *func, void *datastart, void *target, int buflen)
513 {
514 if (func == NULL) {
515 bcopy(datastart, target, buflen);
516 } else {
517 boolean_t start;
518 int bytes;
519 void *dataptr;
520 void *saptr = target;
521 uint32_t length;
522
523 start = B_TRUE;
524 bytes = 0;
525 while (bytes < buflen) {
526 func(&dataptr, &length, buflen, start, datastart);
527 bcopy(dataptr, saptr, length);
528 saptr = (void *)((caddr_t)saptr + length);
529 bytes += length;
530 start = B_FALSE;
531 }
532 }
533 }
534
535 /*
536 * Determine several different values pertaining to system attribute
537 * buffers.
538 *
539 * Return the size of the sa_hdr_phys_t header for the buffer. Each
540 * variable length attribute except the first contributes two bytes to
541 * the header size, which is then rounded up to an 8-byte boundary.
542 *
543 * The following output parameters are also computed.
544 *
545 * index - The index of the first attribute in attr_desc that will
546 * spill over. Only valid if will_spill is set.
547 *
548 * total - The total number of bytes of all system attributes described
549 * in attr_desc.
550 *
551 * will_spill - Set when spilling is necessary. It is only set when
552 * the buftype is SA_BONUS.
553 */
554 static int
555 sa_find_sizes(sa_os_t *sa, sa_bulk_attr_t *attr_desc, int attr_count,
556 dmu_buf_t *db, sa_buf_type_t buftype, int *index, int *total,
557 boolean_t *will_spill)
558 {
559 int var_size_count = 0;
560 int i;
561 int full_space;
562 int hdrsize;
563 int extra_hdrsize;
564
565 if (buftype == SA_BONUS && sa->sa_force_spill) {
566 *total = 0;
567 *index = 0;
568 *will_spill = B_TRUE;
569 return (0);
570 }
571
572 *index = -1;
573 *total = 0;
574 *will_spill = B_FALSE;
575
576 extra_hdrsize = 0;
577 hdrsize = (SA_BONUSTYPE_FROM_DB(db) == DMU_OT_ZNODE) ? 0 :
578 sizeof (sa_hdr_phys_t);
579
580 full_space = (buftype == SA_BONUS) ? DN_MAX_BONUSLEN : db->db_size;
581 ASSERT(IS_P2ALIGNED(full_space, 8));
582
583 for (i = 0; i != attr_count; i++) {
584 boolean_t is_var_sz, might_spill_here;
585 int tmp_hdrsize;
586
587 *total = P2ROUNDUP(*total, 8);
588 *total += attr_desc[i].sa_length;
589 if (*will_spill)
590 continue;
591
592 is_var_sz = (SA_REGISTERED_LEN(sa, attr_desc[i].sa_attr) == 0);
593 if (is_var_sz)
594 var_size_count++;
595
596 /*
597 * Calculate what the SA header size would be if this
598 * attribute doesn't spill.
599 */
600 tmp_hdrsize = hdrsize + ((is_var_sz && var_size_count > 1) ?
601 sizeof (uint16_t) : 0);
602
603 /*
604 * Check whether this attribute spans into the space
605 * that would be used by the spill block pointer should
606 * a spill block be needed.
607 */
608 might_spill_here =
609 buftype == SA_BONUS && *index == -1 &&
610 (*total + P2ROUNDUP(tmp_hdrsize, 8)) >
611 (full_space - sizeof (blkptr_t));
612
613 if (is_var_sz && var_size_count > 1) {
614 if (buftype == SA_SPILL ||
615 tmp_hdrsize + *total < full_space) {
616 /*
617 * Record the extra header size in case this
618 * increase needs to be reversed due to
619 * spill-over.
620 */
621 hdrsize = tmp_hdrsize;
622 if (*index != -1 || might_spill_here)
623 extra_hdrsize += sizeof (uint16_t);
624 } else {
625 ASSERT(buftype == SA_BONUS);
626 if (*index == -1)
627 *index = i;
628 *will_spill = B_TRUE;
629 continue;
630 }
631 }
632
633 /*
634 * Store index of where spill *could* occur. Then
635 * continue to count the remaining attribute sizes. The
636 * sum is used later for sizing bonus and spill buffer.
637 */
638 if (might_spill_here)
639 *index = i;
640
641 if ((*total + P2ROUNDUP(hdrsize, 8)) > full_space &&
642 buftype == SA_BONUS)
643 *will_spill = B_TRUE;
644 }
645
646 if (*will_spill)
647 hdrsize -= extra_hdrsize;
648
649 hdrsize = P2ROUNDUP(hdrsize, 8);
650 return (hdrsize);
651 }
652
653 #define BUF_SPACE_NEEDED(total, header) (total + header)
654
655 /*
656 * Find layout that corresponds to ordering of attributes
657 * If not found a new layout number is created and added to
658 * persistent layout tables.
659 */
660 static int
661 sa_build_layouts(sa_handle_t *hdl, sa_bulk_attr_t *attr_desc, int attr_count,
662 dmu_tx_t *tx)
663 {
664 sa_os_t *sa = hdl->sa_os->os_sa;
665 uint64_t hash;
666 sa_buf_type_t buftype;
667 sa_hdr_phys_t *sahdr;
668 void *data_start;
669 sa_attr_type_t *attrs, *attrs_start;
670 int i, lot_count;
671 int spill_idx;
672 int hdrsize;
673 int spillhdrsize = 0;
674 int used;
675 dmu_object_type_t bonustype;
676 sa_lot_t *lot;
677 int len_idx;
678 int spill_used;
679 boolean_t spilling;
680
681 dmu_buf_will_dirty(hdl->sa_bonus, tx);
682 bonustype = SA_BONUSTYPE_FROM_DB(hdl->sa_bonus);
683
684 /* first determine bonus header size and sum of all attributes */
685 hdrsize = sa_find_sizes(sa, attr_desc, attr_count, hdl->sa_bonus,
686 SA_BONUS, &spill_idx, &used, &spilling);
687
688 if (used > SPA_OLD_MAXBLOCKSIZE)
689 return (SET_ERROR(EFBIG));
690
691 VERIFY(0 == dmu_set_bonus(hdl->sa_bonus, spilling ?
692 MIN(DN_MAX_BONUSLEN - sizeof (blkptr_t), used + hdrsize) :
693 used + hdrsize, tx));
694
695 ASSERT((bonustype == DMU_OT_ZNODE && spilling == 0) ||
696 bonustype == DMU_OT_SA);
697
698 /* setup and size spill buffer when needed */
699 if (spilling) {
700 boolean_t dummy;
701
702 if (hdl->sa_spill == NULL) {
703 VERIFY(dmu_spill_hold_by_bonus(hdl->sa_bonus, NULL,
704 &hdl->sa_spill) == 0);
705 }
706 dmu_buf_will_dirty(hdl->sa_spill, tx);
707
708 spillhdrsize = sa_find_sizes(sa, &attr_desc[spill_idx],
709 attr_count - spill_idx, hdl->sa_spill, SA_SPILL, &i,
710 &spill_used, &dummy);
711
712 if (spill_used > SPA_OLD_MAXBLOCKSIZE)
713 return (SET_ERROR(EFBIG));
714
715 if (BUF_SPACE_NEEDED(spill_used, spillhdrsize) >
716 hdl->sa_spill->db_size)
717 VERIFY(0 == sa_resize_spill(hdl,
718 BUF_SPACE_NEEDED(spill_used, spillhdrsize), tx));
719 }
720
721 /* setup starting pointers to lay down data */
722 data_start = (void *)((uintptr_t)hdl->sa_bonus->db_data + hdrsize);
723 sahdr = (sa_hdr_phys_t *)hdl->sa_bonus->db_data;
724 buftype = SA_BONUS;
725
726 attrs_start = attrs = kmem_alloc(sizeof (sa_attr_type_t) * attr_count,
727 KM_SLEEP);
728 lot_count = 0;
729
730 for (i = 0, len_idx = 0, hash = -1ULL; i != attr_count; i++) {
731 uint16_t length;
732
733 ASSERT(IS_P2ALIGNED(data_start, 8));
734 attrs[i] = attr_desc[i].sa_attr;
735 length = SA_REGISTERED_LEN(sa, attrs[i]);
736 if (length == 0)
737 length = attr_desc[i].sa_length;
738
739 if (spilling && i == spill_idx) { /* switch to spill buffer */
740 VERIFY(bonustype == DMU_OT_SA);
741 if (buftype == SA_BONUS && !sa->sa_force_spill) {
742 sa_find_layout(hdl->sa_os, hash, attrs_start,
743 lot_count, tx, &lot);
744 SA_SET_HDR(sahdr, lot->lot_num, hdrsize);
745 }
746
747 buftype = SA_SPILL;
748 hash = -1ULL;
749 len_idx = 0;
750
751 sahdr = (sa_hdr_phys_t *)hdl->sa_spill->db_data;
752 sahdr->sa_magic = SA_MAGIC;
753 data_start = (void *)((uintptr_t)sahdr +
754 spillhdrsize);
755 attrs_start = &attrs[i];
756 lot_count = 0;
757 }
758 hash ^= SA_ATTR_HASH(attrs[i]);
759 attr_desc[i].sa_addr = data_start;
760 attr_desc[i].sa_size = length;
761 SA_COPY_DATA(attr_desc[i].sa_data_func, attr_desc[i].sa_data,
762 data_start, length);
763 if (sa->sa_attr_table[attrs[i]].sa_length == 0) {
764 sahdr->sa_lengths[len_idx++] = length;
765 }
766 data_start = (void *)P2ROUNDUP(((uintptr_t)data_start +
767 length), 8);
768 lot_count++;
769 }
770
771 sa_find_layout(hdl->sa_os, hash, attrs_start, lot_count, tx, &lot);
772
773 /*
774 * Verify that old znodes always have layout number 0.
775 * Must be DMU_OT_SA for arbitrary layouts
776 */
777 VERIFY((bonustype == DMU_OT_ZNODE && lot->lot_num == 0) ||
778 (bonustype == DMU_OT_SA && lot->lot_num > 1));
779
780 if (bonustype == DMU_OT_SA) {
781 SA_SET_HDR(sahdr, lot->lot_num,
782 buftype == SA_BONUS ? hdrsize : spillhdrsize);
783 }
784
785 kmem_free(attrs, sizeof (sa_attr_type_t) * attr_count);
786 if (hdl->sa_bonus_tab) {
787 sa_idx_tab_rele(hdl->sa_os, hdl->sa_bonus_tab);
788 hdl->sa_bonus_tab = NULL;
789 }
790 if (!sa->sa_force_spill)
791 VERIFY(0 == sa_build_index(hdl, SA_BONUS));
792 if (hdl->sa_spill) {
793 sa_idx_tab_rele(hdl->sa_os, hdl->sa_spill_tab);
794 if (!spilling) {
795 /*
796 * remove spill block that is no longer needed.
797 */
798 dmu_buf_rele(hdl->sa_spill, NULL);
799 hdl->sa_spill = NULL;
800 hdl->sa_spill_tab = NULL;
801 VERIFY(0 == dmu_rm_spill(hdl->sa_os,
802 sa_handle_object(hdl), tx));
803 } else {
804 VERIFY(0 == sa_build_index(hdl, SA_SPILL));
805 }
806 }
807
808 return (0);
809 }
810
811 static void
812 sa_free_attr_table(sa_os_t *sa)
813 {
814 int i;
815
816 if (sa->sa_attr_table == NULL)
817 return;
818
819 for (i = 0; i != sa->sa_num_attrs; i++) {
820 if (sa->sa_attr_table[i].sa_name)
821 kmem_free(sa->sa_attr_table[i].sa_name,
822 strlen(sa->sa_attr_table[i].sa_name) + 1);
823 }
824
825 kmem_free(sa->sa_attr_table,
826 sizeof (sa_attr_table_t) * sa->sa_num_attrs);
827
828 sa->sa_attr_table = NULL;
829 }
830
831 static int
832 sa_attr_table_setup(objset_t *os, sa_attr_reg_t *reg_attrs, int count)
833 {
834 sa_os_t *sa = os->os_sa;
835 uint64_t sa_attr_count = 0;
836 uint64_t sa_reg_count = 0;
837 int error = 0;
838 uint64_t attr_value;
839 sa_attr_table_t *tb;
840 zap_cursor_t zc;
841 zap_attribute_t za;
842 int registered_count = 0;
843 int i;
844 dmu_objset_type_t ostype = dmu_objset_type(os);
845
846 sa->sa_user_table =
847 kmem_zalloc(count * sizeof (sa_attr_type_t), KM_SLEEP);
848 sa->sa_user_table_sz = count * sizeof (sa_attr_type_t);
849
850 if (sa->sa_reg_attr_obj != 0) {
851 error = zap_count(os, sa->sa_reg_attr_obj,
852 &sa_attr_count);
853
854 /*
855 * Make sure we retrieved a count and that it isn't zero
856 */
857 if (error || (error == 0 && sa_attr_count == 0)) {
858 if (error == 0)
859 error = SET_ERROR(EINVAL);
860 goto bail;
861 }
862 sa_reg_count = sa_attr_count;
863 }
864
865 if (ostype == DMU_OST_ZFS && sa_attr_count == 0)
866 sa_attr_count += sa_legacy_attr_count;
867
868 /* Allocate attribute numbers for attributes that aren't registered */
869 for (i = 0; i != count; i++) {
870 boolean_t found = B_FALSE;
871 int j;
872
873 if (ostype == DMU_OST_ZFS) {
874 for (j = 0; j != sa_legacy_attr_count; j++) {
875 if (strcmp(reg_attrs[i].sa_name,
876 sa_legacy_attrs[j].sa_name) == 0) {
877 sa->sa_user_table[i] =
878 sa_legacy_attrs[j].sa_attr;
879 found = B_TRUE;
880 }
881 }
882 }
883 if (found)
884 continue;
885
886 if (sa->sa_reg_attr_obj)
887 error = zap_lookup(os, sa->sa_reg_attr_obj,
888 reg_attrs[i].sa_name, 8, 1, &attr_value);
889 else
890 error = SET_ERROR(ENOENT);
891 switch (error) {
892 case ENOENT:
893 sa->sa_user_table[i] = (sa_attr_type_t)sa_attr_count;
894 sa_attr_count++;
895 break;
896 case 0:
897 sa->sa_user_table[i] = ATTR_NUM(attr_value);
898 break;
899 default:
900 goto bail;
901 }
902 }
903
904 sa->sa_num_attrs = sa_attr_count;
905 tb = sa->sa_attr_table =
906 kmem_zalloc(sizeof (sa_attr_table_t) * sa_attr_count, KM_SLEEP);
907
908 /*
909 * Attribute table is constructed from requested attribute list,
910 * previously foreign registered attributes, and also the legacy
911 * ZPL set of attributes.
912 */
913
914 if (sa->sa_reg_attr_obj) {
915 for (zap_cursor_init(&zc, os, sa->sa_reg_attr_obj);
916 (error = zap_cursor_retrieve(&zc, &za)) == 0;
917 zap_cursor_advance(&zc)) {
918 uint64_t value;
919 value = za.za_first_integer;
920
921 registered_count++;
922 tb[ATTR_NUM(value)].sa_attr = ATTR_NUM(value);
923 tb[ATTR_NUM(value)].sa_length = ATTR_LENGTH(value);
924 tb[ATTR_NUM(value)].sa_byteswap = ATTR_BSWAP(value);
925 tb[ATTR_NUM(value)].sa_registered = B_TRUE;
926
927 if (tb[ATTR_NUM(value)].sa_name) {
928 continue;
929 }
930 tb[ATTR_NUM(value)].sa_name =
931 kmem_zalloc(strlen(za.za_name) +1, KM_SLEEP);
932 (void) strlcpy(tb[ATTR_NUM(value)].sa_name, za.za_name,
933 strlen(za.za_name) +1);
934 }
935 zap_cursor_fini(&zc);
936 /*
937 * Make sure we processed the correct number of registered
938 * attributes
939 */
940 if (registered_count != sa_reg_count) {
941 ASSERT(error != 0);
942 goto bail;
943 }
944
945 }
946
947 if (ostype == DMU_OST_ZFS) {
948 for (i = 0; i != sa_legacy_attr_count; i++) {
949 if (tb[i].sa_name)
950 continue;
951 tb[i].sa_attr = sa_legacy_attrs[i].sa_attr;
952 tb[i].sa_length = sa_legacy_attrs[i].sa_length;
953 tb[i].sa_byteswap = sa_legacy_attrs[i].sa_byteswap;
954 tb[i].sa_registered = B_FALSE;
955 tb[i].sa_name =
956 kmem_zalloc(strlen(sa_legacy_attrs[i].sa_name) +1,
957 KM_SLEEP);
958 (void) strlcpy(tb[i].sa_name,
959 sa_legacy_attrs[i].sa_name,
960 strlen(sa_legacy_attrs[i].sa_name) + 1);
961 }
962 }
963
964 for (i = 0; i != count; i++) {
965 sa_attr_type_t attr_id;
966
967 attr_id = sa->sa_user_table[i];
968 if (tb[attr_id].sa_name)
969 continue;
970
971 tb[attr_id].sa_length = reg_attrs[i].sa_length;
972 tb[attr_id].sa_byteswap = reg_attrs[i].sa_byteswap;
973 tb[attr_id].sa_attr = attr_id;
974 tb[attr_id].sa_name =
975 kmem_zalloc(strlen(reg_attrs[i].sa_name) + 1, KM_SLEEP);
976 (void) strlcpy(tb[attr_id].sa_name, reg_attrs[i].sa_name,
977 strlen(reg_attrs[i].sa_name) + 1);
978 }
979
980 sa->sa_need_attr_registration =
981 (sa_attr_count != registered_count);
982
983 return (0);
984 bail:
985 kmem_free(sa->sa_user_table, count * sizeof (sa_attr_type_t));
986 sa->sa_user_table = NULL;
987 sa_free_attr_table(sa);
988 return ((error != 0) ? error : EINVAL);
989 }
990
991 int
992 sa_setup(objset_t *os, uint64_t sa_obj, sa_attr_reg_t *reg_attrs, int count,
993 sa_attr_type_t **user_table)
994 {
995 zap_cursor_t zc;
996 zap_attribute_t za;
997 sa_os_t *sa;
998 dmu_objset_type_t ostype = dmu_objset_type(os);
999 sa_attr_type_t *tb;
1000 int error;
1001
1002 mutex_enter(&os->os_user_ptr_lock);
1003 if (os->os_sa) {
1004 mutex_enter(&os->os_sa->sa_lock);
1005 mutex_exit(&os->os_user_ptr_lock);
1006 tb = os->os_sa->sa_user_table;
1007 mutex_exit(&os->os_sa->sa_lock);
1008 *user_table = tb;
1009 return (0);
1010 }
1011
1012 sa = kmem_zalloc(sizeof (sa_os_t), KM_SLEEP);
1013 mutex_init(&sa->sa_lock, NULL, MUTEX_DEFAULT, NULL);
1014 sa->sa_master_obj = sa_obj;
1015
1016 os->os_sa = sa;
1017 mutex_enter(&sa->sa_lock);
1018 mutex_exit(&os->os_user_ptr_lock);
1019 avl_create(&sa->sa_layout_num_tree, layout_num_compare,
1020 sizeof (sa_lot_t), offsetof(sa_lot_t, lot_num_node));
1021 avl_create(&sa->sa_layout_hash_tree, layout_hash_compare,
1022 sizeof (sa_lot_t), offsetof(sa_lot_t, lot_hash_node));
1023
1024 if (sa_obj) {
1025 error = zap_lookup(os, sa_obj, SA_LAYOUTS,
1026 8, 1, &sa->sa_layout_attr_obj);
1027 if (error != 0 && error != ENOENT)
1028 goto fail;
1029 error = zap_lookup(os, sa_obj, SA_REGISTRY,
1030 8, 1, &sa->sa_reg_attr_obj);
1031 if (error != 0 && error != ENOENT)
1032 goto fail;
1033 }
1034
1035 if ((error = sa_attr_table_setup(os, reg_attrs, count)) != 0)
1036 goto fail;
1037
1038 if (sa->sa_layout_attr_obj != 0) {
1039 uint64_t layout_count;
1040
1041 error = zap_count(os, sa->sa_layout_attr_obj,
1042 &layout_count);
1043
1044 /*
1045 * Layout number count should be > 0
1046 */
1047 if (error || (error == 0 && layout_count == 0)) {
1048 if (error == 0)
1049 error = SET_ERROR(EINVAL);
1050 goto fail;
1051 }
1052
1053 for (zap_cursor_init(&zc, os, sa->sa_layout_attr_obj);
1054 (error = zap_cursor_retrieve(&zc, &za)) == 0;
1055 zap_cursor_advance(&zc)) {
1056 sa_attr_type_t *lot_attrs;
1057 uint64_t lot_num;
1058
1059 lot_attrs = kmem_zalloc(sizeof (sa_attr_type_t) *
1060 za.za_num_integers, KM_SLEEP);
1061
1062 if ((error = (zap_lookup(os, sa->sa_layout_attr_obj,
1063 za.za_name, 2, za.za_num_integers,
1064 lot_attrs))) != 0) {
1065 kmem_free(lot_attrs, sizeof (sa_attr_type_t) *
1066 za.za_num_integers);
1067 break;
1068 }
1069 VERIFY(ddi_strtoull(za.za_name, NULL, 10,
1070 (unsigned long long *)&lot_num) == 0);
1071
1072 (void) sa_add_layout_entry(os, lot_attrs,
1073 za.za_num_integers, lot_num,
1074 sa_layout_info_hash(lot_attrs,
1075 za.za_num_integers), B_FALSE, NULL);
1076 kmem_free(lot_attrs, sizeof (sa_attr_type_t) *
1077 za.za_num_integers);
1078 }
1079 zap_cursor_fini(&zc);
1080
1081 /*
1082 * Make sure layout count matches number of entries added
1083 * to AVL tree
1084 */
1085 if (avl_numnodes(&sa->sa_layout_num_tree) != layout_count) {
1086 ASSERT(error != 0);
1087 goto fail;
1088 }
1089 }
1090
1091 /* Add special layout number for old ZNODES */
1092 if (ostype == DMU_OST_ZFS) {
1093 (void) sa_add_layout_entry(os, sa_legacy_zpl_layout,
1094 sa_legacy_attr_count, 0,
1095 sa_layout_info_hash(sa_legacy_zpl_layout,
1096 sa_legacy_attr_count), B_FALSE, NULL);
1097
1098 (void) sa_add_layout_entry(os, sa_dummy_zpl_layout, 0, 1,
1099 0, B_FALSE, NULL);
1100 }
1101 *user_table = os->os_sa->sa_user_table;
1102 mutex_exit(&sa->sa_lock);
1103 return (0);
1104 fail:
1105 os->os_sa = NULL;
1106 sa_free_attr_table(sa);
1107 if (sa->sa_user_table)
1108 kmem_free(sa->sa_user_table, sa->sa_user_table_sz);
1109 mutex_exit(&sa->sa_lock);
1110 avl_destroy(&sa->sa_layout_hash_tree);
1111 avl_destroy(&sa->sa_layout_num_tree);
1112 mutex_destroy(&sa->sa_lock);
1113 kmem_free(sa, sizeof (sa_os_t));
1114 return ((error == ECKSUM) ? EIO : error);
1115 }
1116
1117 void
1118 sa_tear_down(objset_t *os)
1119 {
1120 sa_os_t *sa = os->os_sa;
1121 sa_lot_t *layout;
1122 void *cookie;
1123
1124 kmem_free(sa->sa_user_table, sa->sa_user_table_sz);
1125
1126 /* Free up attr table */
1127
1128 sa_free_attr_table(sa);
1129
1130 cookie = NULL;
1131 while ((layout =
1132 avl_destroy_nodes(&sa->sa_layout_hash_tree, &cookie))) {
1133 sa_idx_tab_t *tab;
1134 while ((tab = list_head(&layout->lot_idx_tab))) {
1135 ASSERT(refcount_count(&tab->sa_refcount));
1136 sa_idx_tab_rele(os, tab);
1137 }
1138 }
1139
1140 cookie = NULL;
1141 while ((layout = avl_destroy_nodes(&sa->sa_layout_num_tree, &cookie))) {
1142 kmem_free(layout->lot_attrs,
1143 sizeof (sa_attr_type_t) * layout->lot_attr_count);
1144 kmem_free(layout, sizeof (sa_lot_t));
1145 }
1146
1147 avl_destroy(&sa->sa_layout_hash_tree);
1148 avl_destroy(&sa->sa_layout_num_tree);
1149 mutex_destroy(&sa->sa_lock);
1150
1151 kmem_free(sa, sizeof (sa_os_t));
1152 os->os_sa = NULL;
1153 }
1154
1155 void
1156 sa_build_idx_tab(void *hdr, void *attr_addr, sa_attr_type_t attr,
1157 uint16_t length, int length_idx, boolean_t var_length, void *userp)
1158 {
1159 sa_idx_tab_t *idx_tab = userp;
1160
1161 if (var_length) {
1162 ASSERT(idx_tab->sa_variable_lengths);
1163 idx_tab->sa_variable_lengths[length_idx] = length;
1164 }
1165 TOC_ATTR_ENCODE(idx_tab->sa_idx_tab[attr], length_idx,
1166 (uint32_t)((uintptr_t)attr_addr - (uintptr_t)hdr));
1167 }
1168
1169 static void
1170 sa_attr_iter(objset_t *os, sa_hdr_phys_t *hdr, dmu_object_type_t type,
1171 sa_iterfunc_t func, sa_lot_t *tab, void *userp)
1172 {
1173 void *data_start;
1174 sa_lot_t *tb = tab;
1175 sa_lot_t search;
1176 avl_index_t loc;
1177 sa_os_t *sa = os->os_sa;
1178 int i;
1179 uint16_t *length_start = NULL;
1180 uint8_t length_idx = 0;
1181
1182 if (tab == NULL) {
1183 search.lot_num = SA_LAYOUT_NUM(hdr, type);
1184 tb = avl_find(&sa->sa_layout_num_tree, &search, &loc);
1185 ASSERT(tb);
1186 }
1187
1188 if (IS_SA_BONUSTYPE(type)) {
1189 data_start = (void *)P2ROUNDUP(((uintptr_t)hdr +
1190 offsetof(sa_hdr_phys_t, sa_lengths) +
1191 (sizeof (uint16_t) * tb->lot_var_sizes)), 8);
1192 length_start = hdr->sa_lengths;
1193 } else {
1194 data_start = hdr;
1195 }
1196
1197 for (i = 0; i != tb->lot_attr_count; i++) {
1198 int attr_length, reg_length;
1199 uint8_t idx_len;
1200
1201 reg_length = sa->sa_attr_table[tb->lot_attrs[i]].sa_length;
1202 if (reg_length) {
1203 attr_length = reg_length;
1204 idx_len = 0;
1205 } else {
1206 attr_length = length_start[length_idx];
1207 idx_len = length_idx++;
1208 }
1209
1210 func(hdr, data_start, tb->lot_attrs[i], attr_length,
1211 idx_len, reg_length == 0 ? B_TRUE : B_FALSE, userp);
1212
1213 data_start = (void *)P2ROUNDUP(((uintptr_t)data_start +
1214 attr_length), 8);
1215 }
1216 }
1217
1218 /*ARGSUSED*/
1219 void
1220 sa_byteswap_cb(void *hdr, void *attr_addr, sa_attr_type_t attr,
1221 uint16_t length, int length_idx, boolean_t variable_length, void *userp)
1222 {
1223 sa_handle_t *hdl = userp;
1224 sa_os_t *sa = hdl->sa_os->os_sa;
1225
1226 sa_bswap_table[sa->sa_attr_table[attr].sa_byteswap](attr_addr, length);
1227 }
1228
1229 void
1230 sa_byteswap(sa_handle_t *hdl, sa_buf_type_t buftype)
1231 {
1232 sa_hdr_phys_t *sa_hdr_phys = SA_GET_HDR(hdl, buftype);
1233 dmu_buf_impl_t *db;
1234 int num_lengths = 1;
1235 int i;
1236 ASSERTV(sa_os_t *sa = hdl->sa_os->os_sa);
1237
1238 ASSERT(MUTEX_HELD(&sa->sa_lock));
1239 if (sa_hdr_phys->sa_magic == SA_MAGIC)
1240 return;
1241
1242 db = SA_GET_DB(hdl, buftype);
1243
1244 if (buftype == SA_SPILL) {
1245 arc_release(db->db_buf, NULL);
1246 arc_buf_thaw(db->db_buf);
1247 }
1248
1249 sa_hdr_phys->sa_magic = BSWAP_32(sa_hdr_phys->sa_magic);
1250 sa_hdr_phys->sa_layout_info = BSWAP_16(sa_hdr_phys->sa_layout_info);
1251
1252 /*
1253 * Determine number of variable lenghts in header
1254 * The standard 8 byte header has one for free and a
1255 * 16 byte header would have 4 + 1;
1256 */
1257 if (SA_HDR_SIZE(sa_hdr_phys) > 8)
1258 num_lengths += (SA_HDR_SIZE(sa_hdr_phys) - 8) >> 1;
1259 for (i = 0; i != num_lengths; i++)
1260 sa_hdr_phys->sa_lengths[i] =
1261 BSWAP_16(sa_hdr_phys->sa_lengths[i]);
1262
1263 sa_attr_iter(hdl->sa_os, sa_hdr_phys, DMU_OT_SA,
1264 sa_byteswap_cb, NULL, hdl);
1265
1266 if (buftype == SA_SPILL)
1267 arc_buf_freeze(((dmu_buf_impl_t *)hdl->sa_spill)->db_buf);
1268 }
1269
1270 static int
1271 sa_build_index(sa_handle_t *hdl, sa_buf_type_t buftype)
1272 {
1273 sa_hdr_phys_t *sa_hdr_phys;
1274 dmu_buf_impl_t *db = SA_GET_DB(hdl, buftype);
1275 dmu_object_type_t bonustype = SA_BONUSTYPE_FROM_DB(db);
1276 sa_os_t *sa = hdl->sa_os->os_sa;
1277 sa_idx_tab_t *idx_tab;
1278
1279 sa_hdr_phys = SA_GET_HDR(hdl, buftype);
1280
1281 mutex_enter(&sa->sa_lock);
1282
1283 /* Do we need to byteswap? */
1284
1285 /* only check if not old znode */
1286 if (IS_SA_BONUSTYPE(bonustype) && sa_hdr_phys->sa_magic != SA_MAGIC &&
1287 sa_hdr_phys->sa_magic != 0) {
1288 VERIFY(BSWAP_32(sa_hdr_phys->sa_magic) == SA_MAGIC);
1289 sa_byteswap(hdl, buftype);
1290 }
1291
1292 idx_tab = sa_find_idx_tab(hdl->sa_os, bonustype, sa_hdr_phys);
1293
1294 if (buftype == SA_BONUS)
1295 hdl->sa_bonus_tab = idx_tab;
1296 else
1297 hdl->sa_spill_tab = idx_tab;
1298
1299 mutex_exit(&sa->sa_lock);
1300 return (0);
1301 }
1302
1303 /*ARGSUSED*/
1304 static void
1305 sa_evict(void *dbu)
1306 {
1307 panic("evicting sa dbuf\n");
1308 }
1309
1310 static void
1311 sa_idx_tab_rele(objset_t *os, void *arg)
1312 {
1313 sa_os_t *sa = os->os_sa;
1314 sa_idx_tab_t *idx_tab = arg;
1315
1316 if (idx_tab == NULL)
1317 return;
1318
1319 mutex_enter(&sa->sa_lock);
1320 if (refcount_remove(&idx_tab->sa_refcount, NULL) == 0) {
1321 list_remove(&idx_tab->sa_layout->lot_idx_tab, idx_tab);
1322 if (idx_tab->sa_variable_lengths)
1323 kmem_free(idx_tab->sa_variable_lengths,
1324 sizeof (uint16_t) *
1325 idx_tab->sa_layout->lot_var_sizes);
1326 refcount_destroy(&idx_tab->sa_refcount);
1327 kmem_free(idx_tab->sa_idx_tab,
1328 sizeof (uint32_t) * sa->sa_num_attrs);
1329 kmem_free(idx_tab, sizeof (sa_idx_tab_t));
1330 }
1331 mutex_exit(&sa->sa_lock);
1332 }
1333
1334 static void
1335 sa_idx_tab_hold(objset_t *os, sa_idx_tab_t *idx_tab)
1336 {
1337 ASSERTV(sa_os_t *sa = os->os_sa);
1338
1339 ASSERT(MUTEX_HELD(&sa->sa_lock));
1340 (void) refcount_add(&idx_tab->sa_refcount, NULL);
1341 }
1342
1343 void
1344 sa_spill_rele(sa_handle_t *hdl)
1345 {
1346 mutex_enter(&hdl->sa_lock);
1347 if (hdl->sa_spill) {
1348 sa_idx_tab_rele(hdl->sa_os, hdl->sa_spill_tab);
1349 dmu_buf_rele(hdl->sa_spill, NULL);
1350 hdl->sa_spill = NULL;
1351 hdl->sa_spill_tab = NULL;
1352 }
1353 mutex_exit(&hdl->sa_lock);
1354 }
1355
1356 void
1357 sa_handle_destroy(sa_handle_t *hdl)
1358 {
1359 dmu_buf_t *db = hdl->sa_bonus;
1360
1361 mutex_enter(&hdl->sa_lock);
1362 (void) dmu_buf_remove_user(db, &hdl->sa_dbu);
1363
1364 if (hdl->sa_bonus_tab)
1365 sa_idx_tab_rele(hdl->sa_os, hdl->sa_bonus_tab);
1366
1367 if (hdl->sa_spill_tab)
1368 sa_idx_tab_rele(hdl->sa_os, hdl->sa_spill_tab);
1369
1370 dmu_buf_rele(hdl->sa_bonus, NULL);
1371
1372 if (hdl->sa_spill)
1373 dmu_buf_rele((dmu_buf_t *)hdl->sa_spill, NULL);
1374 mutex_exit(&hdl->sa_lock);
1375
1376 kmem_cache_free(sa_cache, hdl);
1377 }
1378
1379 int
1380 sa_handle_get_from_db(objset_t *os, dmu_buf_t *db, void *userp,
1381 sa_handle_type_t hdl_type, sa_handle_t **handlepp)
1382 {
1383 int error = 0;
1384 sa_handle_t *handle = NULL;
1385 #ifdef ZFS_DEBUG
1386 dmu_object_info_t doi;
1387
1388 dmu_object_info_from_db(db, &doi);
1389 ASSERT(doi.doi_bonus_type == DMU_OT_SA ||
1390 doi.doi_bonus_type == DMU_OT_ZNODE);
1391 #endif
1392 /* find handle, if it exists */
1393 /* if one doesn't exist then create a new one, and initialize it */
1394
1395 if (hdl_type == SA_HDL_SHARED)
1396 handle = dmu_buf_get_user(db);
1397
1398 if (handle == NULL) {
1399 sa_handle_t *winner = NULL;
1400
1401 handle = kmem_cache_alloc(sa_cache, KM_SLEEP);
1402 handle->sa_dbu.dbu_evict_func = NULL;
1403 handle->sa_userp = userp;
1404 handle->sa_bonus = db;
1405 handle->sa_os = os;
1406 handle->sa_spill = NULL;
1407 handle->sa_bonus_tab = NULL;
1408 handle->sa_spill_tab = NULL;
1409
1410 error = sa_build_index(handle, SA_BONUS);
1411
1412 if (hdl_type == SA_HDL_SHARED) {
1413 dmu_buf_init_user(&handle->sa_dbu, sa_evict, NULL);
1414 winner = dmu_buf_set_user_ie(db, &handle->sa_dbu);
1415 }
1416
1417 if (winner != NULL) {
1418 kmem_cache_free(sa_cache, handle);
1419 handle = winner;
1420 }
1421 }
1422 *handlepp = handle;
1423
1424 return (error);
1425 }
1426
1427 int
1428 sa_handle_get(objset_t *objset, uint64_t objid, void *userp,
1429 sa_handle_type_t hdl_type, sa_handle_t **handlepp)
1430 {
1431 dmu_buf_t *db;
1432 int error;
1433
1434 if ((error = dmu_bonus_hold(objset, objid, NULL, &db)))
1435 return (error);
1436
1437 return (sa_handle_get_from_db(objset, db, userp, hdl_type,
1438 handlepp));
1439 }
1440
1441 int
1442 sa_buf_hold(objset_t *objset, uint64_t obj_num, void *tag, dmu_buf_t **db)
1443 {
1444 return (dmu_bonus_hold(objset, obj_num, tag, db));
1445 }
1446
1447 void
1448 sa_buf_rele(dmu_buf_t *db, void *tag)
1449 {
1450 dmu_buf_rele(db, tag);
1451 }
1452
1453 int
1454 sa_lookup_impl(sa_handle_t *hdl, sa_bulk_attr_t *bulk, int count)
1455 {
1456 ASSERT(hdl);
1457 ASSERT(MUTEX_HELD(&hdl->sa_lock));
1458 return (sa_attr_op(hdl, bulk, count, SA_LOOKUP, NULL));
1459 }
1460
1461 int
1462 sa_lookup(sa_handle_t *hdl, sa_attr_type_t attr, void *buf, uint32_t buflen)
1463 {
1464 int error;
1465 sa_bulk_attr_t bulk;
1466
1467 VERIFY3U(buflen, <=, SA_ATTR_MAX_LEN);
1468
1469 bulk.sa_attr = attr;
1470 bulk.sa_data = buf;
1471 bulk.sa_length = buflen;
1472 bulk.sa_data_func = NULL;
1473
1474 ASSERT(hdl);
1475 mutex_enter(&hdl->sa_lock);
1476 error = sa_lookup_impl(hdl, &bulk, 1);
1477 mutex_exit(&hdl->sa_lock);
1478 return (error);
1479 }
1480
1481 #ifdef _KERNEL
1482 int
1483 sa_lookup_uio(sa_handle_t *hdl, sa_attr_type_t attr, uio_t *uio)
1484 {
1485 int error;
1486 sa_bulk_attr_t bulk;
1487
1488 bulk.sa_data = NULL;
1489 bulk.sa_attr = attr;
1490 bulk.sa_data_func = NULL;
1491
1492 ASSERT(hdl);
1493
1494 mutex_enter(&hdl->sa_lock);
1495 if ((error = sa_attr_op(hdl, &bulk, 1, SA_LOOKUP, NULL)) == 0) {
1496 error = uiomove((void *)bulk.sa_addr, MIN(bulk.sa_size,
1497 uio->uio_resid), UIO_READ, uio);
1498 }
1499 mutex_exit(&hdl->sa_lock);
1500 return (error);
1501 }
1502 #endif
1503
1504 void *
1505 sa_find_idx_tab(objset_t *os, dmu_object_type_t bonustype, void *data)
1506 {
1507 sa_idx_tab_t *idx_tab;
1508 sa_hdr_phys_t *hdr = (sa_hdr_phys_t *)data;
1509 sa_os_t *sa = os->os_sa;
1510 sa_lot_t *tb, search;
1511 avl_index_t loc;
1512
1513 /*
1514 * Deterimine layout number. If SA node and header == 0 then
1515 * force the index table to the dummy "1" empty layout.
1516 *
1517 * The layout number would only be zero for a newly created file
1518 * that has not added any attributes yet, or with crypto enabled which
1519 * doesn't write any attributes to the bonus buffer.
1520 */
1521
1522 search.lot_num = SA_LAYOUT_NUM(hdr, bonustype);
1523
1524 tb = avl_find(&sa->sa_layout_num_tree, &search, &loc);
1525
1526 /* Verify header size is consistent with layout information */
1527 ASSERT(tb);
1528 ASSERT((IS_SA_BONUSTYPE(bonustype) &&
1529 SA_HDR_SIZE_MATCH_LAYOUT(hdr, tb)) || !IS_SA_BONUSTYPE(bonustype) ||
1530 (IS_SA_BONUSTYPE(bonustype) && hdr->sa_layout_info == 0));
1531
1532 /*
1533 * See if any of the already existing TOC entries can be reused?
1534 */
1535
1536 for (idx_tab = list_head(&tb->lot_idx_tab); idx_tab;
1537 idx_tab = list_next(&tb->lot_idx_tab, idx_tab)) {
1538 boolean_t valid_idx = B_TRUE;
1539 int i;
1540
1541 if (tb->lot_var_sizes != 0 &&
1542 idx_tab->sa_variable_lengths != NULL) {
1543 for (i = 0; i != tb->lot_var_sizes; i++) {
1544 if (hdr->sa_lengths[i] !=
1545 idx_tab->sa_variable_lengths[i]) {
1546 valid_idx = B_FALSE;
1547 break;
1548 }
1549 }
1550 }
1551 if (valid_idx) {
1552 sa_idx_tab_hold(os, idx_tab);
1553 return (idx_tab);
1554 }
1555 }
1556
1557 /* No such luck, create a new entry */
1558 idx_tab = kmem_zalloc(sizeof (sa_idx_tab_t), KM_SLEEP);
1559 idx_tab->sa_idx_tab =
1560 kmem_zalloc(sizeof (uint32_t) * sa->sa_num_attrs, KM_SLEEP);
1561 idx_tab->sa_layout = tb;
1562 refcount_create(&idx_tab->sa_refcount);
1563 if (tb->lot_var_sizes)
1564 idx_tab->sa_variable_lengths = kmem_alloc(sizeof (uint16_t) *
1565 tb->lot_var_sizes, KM_SLEEP);
1566
1567 sa_attr_iter(os, hdr, bonustype, sa_build_idx_tab,
1568 tb, idx_tab);
1569 sa_idx_tab_hold(os, idx_tab); /* one hold for consumer */
1570 sa_idx_tab_hold(os, idx_tab); /* one for layout */
1571 list_insert_tail(&tb->lot_idx_tab, idx_tab);
1572 return (idx_tab);
1573 }
1574
1575 void
1576 sa_default_locator(void **dataptr, uint32_t *len, uint32_t total_len,
1577 boolean_t start, void *userdata)
1578 {
1579 ASSERT(start);
1580
1581 *dataptr = userdata;
1582 *len = total_len;
1583 }
1584
1585 static void
1586 sa_attr_register_sync(sa_handle_t *hdl, dmu_tx_t *tx)
1587 {
1588 uint64_t attr_value = 0;
1589 sa_os_t *sa = hdl->sa_os->os_sa;
1590 sa_attr_table_t *tb = sa->sa_attr_table;
1591 int i;
1592
1593 mutex_enter(&sa->sa_lock);
1594
1595 if (!sa->sa_need_attr_registration || sa->sa_master_obj == 0) {
1596 mutex_exit(&sa->sa_lock);
1597 return;
1598 }
1599
1600 if (sa->sa_reg_attr_obj == 0) {
1601 sa->sa_reg_attr_obj = zap_create_link(hdl->sa_os,
1602 DMU_OT_SA_ATTR_REGISTRATION,
1603 sa->sa_master_obj, SA_REGISTRY, tx);
1604 }
1605 for (i = 0; i != sa->sa_num_attrs; i++) {
1606 if (sa->sa_attr_table[i].sa_registered)
1607 continue;
1608 ATTR_ENCODE(attr_value, tb[i].sa_attr, tb[i].sa_length,
1609 tb[i].sa_byteswap);
1610 VERIFY(0 == zap_update(hdl->sa_os, sa->sa_reg_attr_obj,
1611 tb[i].sa_name, 8, 1, &attr_value, tx));
1612 tb[i].sa_registered = B_TRUE;
1613 }
1614 sa->sa_need_attr_registration = B_FALSE;
1615 mutex_exit(&sa->sa_lock);
1616 }
1617
1618 /*
1619 * Replace all attributes with attributes specified in template.
1620 * If dnode had a spill buffer then those attributes will be
1621 * also be replaced, possibly with just an empty spill block
1622 *
1623 * This interface is intended to only be used for bulk adding of
1624 * attributes for a new file. It will also be used by the ZPL
1625 * when converting and old formatted znode to native SA support.
1626 */
1627 int
1628 sa_replace_all_by_template_locked(sa_handle_t *hdl, sa_bulk_attr_t *attr_desc,
1629 int attr_count, dmu_tx_t *tx)
1630 {
1631 sa_os_t *sa = hdl->sa_os->os_sa;
1632
1633 if (sa->sa_need_attr_registration)
1634 sa_attr_register_sync(hdl, tx);
1635 return (sa_build_layouts(hdl, attr_desc, attr_count, tx));
1636 }
1637
1638 int
1639 sa_replace_all_by_template(sa_handle_t *hdl, sa_bulk_attr_t *attr_desc,
1640 int attr_count, dmu_tx_t *tx)
1641 {
1642 int error;
1643
1644 mutex_enter(&hdl->sa_lock);
1645 error = sa_replace_all_by_template_locked(hdl, attr_desc,
1646 attr_count, tx);
1647 mutex_exit(&hdl->sa_lock);
1648 return (error);
1649 }
1650
1651 /*
1652 * add/remove/replace a single attribute and then rewrite the entire set
1653 * of attributes.
1654 */
1655 static int
1656 sa_modify_attrs(sa_handle_t *hdl, sa_attr_type_t newattr,
1657 sa_data_op_t action, sa_data_locator_t *locator, void *datastart,
1658 uint16_t buflen, dmu_tx_t *tx)
1659 {
1660 sa_os_t *sa = hdl->sa_os->os_sa;
1661 dmu_buf_impl_t *db = (dmu_buf_impl_t *)hdl->sa_bonus;
1662 dnode_t *dn;
1663 sa_bulk_attr_t *attr_desc;
1664 void *old_data[2];
1665 int bonus_attr_count = 0;
1666 int bonus_data_size = 0;
1667 int spill_data_size = 0;
1668 int spill_attr_count = 0;
1669 int error;
1670 uint16_t length;
1671 int i, j, k, length_idx;
1672 sa_hdr_phys_t *hdr;
1673 sa_idx_tab_t *idx_tab;
1674 int attr_count;
1675 int count;
1676
1677 ASSERT(MUTEX_HELD(&hdl->sa_lock));
1678
1679 /* First make of copy of the old data */
1680
1681 DB_DNODE_ENTER(db);
1682 dn = DB_DNODE(db);
1683 if (dn->dn_bonuslen != 0) {
1684 bonus_data_size = hdl->sa_bonus->db_size;
1685 old_data[0] = kmem_alloc(bonus_data_size, KM_SLEEP);
1686 bcopy(hdl->sa_bonus->db_data, old_data[0],
1687 hdl->sa_bonus->db_size);
1688 bonus_attr_count = hdl->sa_bonus_tab->sa_layout->lot_attr_count;
1689 } else {
1690 old_data[0] = NULL;
1691 }
1692 DB_DNODE_EXIT(db);
1693
1694 /* Bring spill buffer online if it isn't currently */
1695
1696 if ((error = sa_get_spill(hdl)) == 0) {
1697 spill_data_size = hdl->sa_spill->db_size;
1698 old_data[1] = zio_buf_alloc(spill_data_size);
1699 bcopy(hdl->sa_spill->db_data, old_data[1],
1700 hdl->sa_spill->db_size);
1701 spill_attr_count =
1702 hdl->sa_spill_tab->sa_layout->lot_attr_count;
1703 } else if (error && error != ENOENT) {
1704 if (old_data[0])
1705 kmem_free(old_data[0], bonus_data_size);
1706 return (error);
1707 } else {
1708 old_data[1] = NULL;
1709 }
1710
1711 /* build descriptor of all attributes */
1712
1713 attr_count = bonus_attr_count + spill_attr_count;
1714 if (action == SA_ADD)
1715 attr_count++;
1716 else if (action == SA_REMOVE)
1717 attr_count--;
1718
1719 attr_desc = kmem_zalloc(sizeof (sa_bulk_attr_t) * attr_count, KM_SLEEP);
1720
1721 /*
1722 * loop through bonus and spill buffer if it exists, and
1723 * build up new attr_descriptor to reset the attributes
1724 */
1725 k = j = 0;
1726 count = bonus_attr_count;
1727 hdr = SA_GET_HDR(hdl, SA_BONUS);
1728 idx_tab = SA_IDX_TAB_GET(hdl, SA_BONUS);
1729 for (; k != 2; k++) {
1730 /*
1731 * Iterate over each attribute in layout. Fetch the
1732 * size of variable-length attributes needing rewrite
1733 * from sa_lengths[].
1734 */
1735 for (i = 0, length_idx = 0; i != count; i++) {
1736 sa_attr_type_t attr;
1737
1738 attr = idx_tab->sa_layout->lot_attrs[i];
1739 length = SA_REGISTERED_LEN(sa, attr);
1740 if (attr == newattr) {
1741 if (length == 0)
1742 ++length_idx;
1743 if (action == SA_REMOVE)
1744 continue;
1745 ASSERT(length == 0);
1746 ASSERT(action == SA_REPLACE);
1747 SA_ADD_BULK_ATTR(attr_desc, j, attr,
1748 locator, datastart, buflen);
1749 } else {
1750 if (length == 0)
1751 length = hdr->sa_lengths[length_idx++];
1752
1753 SA_ADD_BULK_ATTR(attr_desc, j, attr,
1754 NULL, (void *)
1755 (TOC_OFF(idx_tab->sa_idx_tab[attr]) +
1756 (uintptr_t)old_data[k]), length);
1757 }
1758 }
1759 if (k == 0 && hdl->sa_spill) {
1760 hdr = SA_GET_HDR(hdl, SA_SPILL);
1761 idx_tab = SA_IDX_TAB_GET(hdl, SA_SPILL);
1762 count = spill_attr_count;
1763 } else {
1764 break;
1765 }
1766 }
1767 if (action == SA_ADD) {
1768 length = SA_REGISTERED_LEN(sa, newattr);
1769 if (length == 0) {
1770 length = buflen;
1771 }
1772 SA_ADD_BULK_ATTR(attr_desc, j, newattr, locator,
1773 datastart, length);
1774 }
1775
1776 error = sa_build_layouts(hdl, attr_desc, attr_count, tx);
1777
1778 if (old_data[0])
1779 kmem_free(old_data[0], bonus_data_size);
1780 if (old_data[1])
1781 zio_buf_free(old_data[1], spill_data_size);
1782 kmem_free(attr_desc, sizeof (sa_bulk_attr_t) * attr_count);
1783
1784 return (error);
1785 }
1786
1787 static int
1788 sa_bulk_update_impl(sa_handle_t *hdl, sa_bulk_attr_t *bulk, int count,
1789 dmu_tx_t *tx)
1790 {
1791 int error;
1792 sa_os_t *sa = hdl->sa_os->os_sa;
1793 dmu_object_type_t bonustype;
1794 dmu_buf_t *saved_spill;
1795
1796 ASSERT(hdl);
1797 ASSERT(MUTEX_HELD(&hdl->sa_lock));
1798
1799 bonustype = SA_BONUSTYPE_FROM_DB(SA_GET_DB(hdl, SA_BONUS));
1800 saved_spill = hdl->sa_spill;
1801
1802 /* sync out registration table if necessary */
1803 if (sa->sa_need_attr_registration)
1804 sa_attr_register_sync(hdl, tx);
1805
1806 error = sa_attr_op(hdl, bulk, count, SA_UPDATE, tx);
1807 if (error == 0 && !IS_SA_BONUSTYPE(bonustype) && sa->sa_update_cb)
1808 sa->sa_update_cb(hdl, tx);
1809
1810 /*
1811 * If saved_spill is NULL and current sa_spill is not NULL that
1812 * means we increased the refcount of the spill buffer through
1813 * sa_get_spill() or dmu_spill_hold_by_dnode(). Therefore we
1814 * must release the hold before calling dmu_tx_commit() to avoid
1815 * making a copy of this buffer in dbuf_sync_leaf() due to the
1816 * reference count now being greater than 1.
1817 */
1818 if (!saved_spill && hdl->sa_spill) {
1819 if (hdl->sa_spill_tab) {
1820 sa_idx_tab_rele(hdl->sa_os, hdl->sa_spill_tab);
1821 hdl->sa_spill_tab = NULL;
1822 }
1823
1824 dmu_buf_rele((dmu_buf_t *)hdl->sa_spill, NULL);
1825 hdl->sa_spill = NULL;
1826 }
1827
1828 return (error);
1829 }
1830
1831 /*
1832 * update or add new attribute
1833 */
1834 int
1835 sa_update(sa_handle_t *hdl, sa_attr_type_t type,
1836 void *buf, uint32_t buflen, dmu_tx_t *tx)
1837 {
1838 int error;
1839 sa_bulk_attr_t bulk;
1840
1841 VERIFY3U(buflen, <=, SA_ATTR_MAX_LEN);
1842
1843 bulk.sa_attr = type;
1844 bulk.sa_data_func = NULL;
1845 bulk.sa_length = buflen;
1846 bulk.sa_data = buf;
1847
1848 mutex_enter(&hdl->sa_lock);
1849 error = sa_bulk_update_impl(hdl, &bulk, 1, tx);
1850 mutex_exit(&hdl->sa_lock);
1851 return (error);
1852 }
1853
1854 int
1855 sa_update_from_cb(sa_handle_t *hdl, sa_attr_type_t attr,
1856 uint32_t buflen, sa_data_locator_t *locator, void *userdata, dmu_tx_t *tx)
1857 {
1858 int error;
1859 sa_bulk_attr_t bulk;
1860
1861 VERIFY3U(buflen, <=, SA_ATTR_MAX_LEN);
1862
1863 bulk.sa_attr = attr;
1864 bulk.sa_data = userdata;
1865 bulk.sa_data_func = locator;
1866 bulk.sa_length = buflen;
1867
1868 mutex_enter(&hdl->sa_lock);
1869 error = sa_bulk_update_impl(hdl, &bulk, 1, tx);
1870 mutex_exit(&hdl->sa_lock);
1871 return (error);
1872 }
1873
1874 /*
1875 * Return size of an attribute
1876 */
1877
1878 int
1879 sa_size(sa_handle_t *hdl, sa_attr_type_t attr, int *size)
1880 {
1881 sa_bulk_attr_t bulk;
1882 int error;
1883
1884 bulk.sa_data = NULL;
1885 bulk.sa_attr = attr;
1886 bulk.sa_data_func = NULL;
1887
1888 ASSERT(hdl);
1889 mutex_enter(&hdl->sa_lock);
1890 if ((error = sa_attr_op(hdl, &bulk, 1, SA_LOOKUP, NULL)) != 0) {
1891 mutex_exit(&hdl->sa_lock);
1892 return (error);
1893 }
1894 *size = bulk.sa_size;
1895
1896 mutex_exit(&hdl->sa_lock);
1897 return (0);
1898 }
1899
1900 int
1901 sa_bulk_lookup_locked(sa_handle_t *hdl, sa_bulk_attr_t *attrs, int count)
1902 {
1903 ASSERT(hdl);
1904 ASSERT(MUTEX_HELD(&hdl->sa_lock));
1905 return (sa_lookup_impl(hdl, attrs, count));
1906 }
1907
1908 int
1909 sa_bulk_lookup(sa_handle_t *hdl, sa_bulk_attr_t *attrs, int count)
1910 {
1911 int error;
1912
1913 ASSERT(hdl);
1914 mutex_enter(&hdl->sa_lock);
1915 error = sa_bulk_lookup_locked(hdl, attrs, count);
1916 mutex_exit(&hdl->sa_lock);
1917 return (error);
1918 }
1919
1920 int
1921 sa_bulk_update(sa_handle_t *hdl, sa_bulk_attr_t *attrs, int count, dmu_tx_t *tx)
1922 {
1923 int error;
1924
1925 ASSERT(hdl);
1926 mutex_enter(&hdl->sa_lock);
1927 error = sa_bulk_update_impl(hdl, attrs, count, tx);
1928 mutex_exit(&hdl->sa_lock);
1929 return (error);
1930 }
1931
1932 int
1933 sa_remove(sa_handle_t *hdl, sa_attr_type_t attr, dmu_tx_t *tx)
1934 {
1935 int error;
1936
1937 mutex_enter(&hdl->sa_lock);
1938 error = sa_modify_attrs(hdl, attr, SA_REMOVE, NULL,
1939 NULL, 0, tx);
1940 mutex_exit(&hdl->sa_lock);
1941 return (error);
1942 }
1943
1944 void
1945 sa_object_info(sa_handle_t *hdl, dmu_object_info_t *doi)
1946 {
1947 dmu_object_info_from_db((dmu_buf_t *)hdl->sa_bonus, doi);
1948 }
1949
1950 void
1951 sa_object_size(sa_handle_t *hdl, uint32_t *blksize, u_longlong_t *nblocks)
1952 {
1953 dmu_object_size_from_db((dmu_buf_t *)hdl->sa_bonus,
1954 blksize, nblocks);
1955 }
1956
1957 void
1958 sa_set_userp(sa_handle_t *hdl, void *ptr)
1959 {
1960 hdl->sa_userp = ptr;
1961 }
1962
1963 dmu_buf_t *
1964 sa_get_db(sa_handle_t *hdl)
1965 {
1966 return ((dmu_buf_t *)hdl->sa_bonus);
1967 }
1968
1969 void *
1970 sa_get_userdata(sa_handle_t *hdl)
1971 {
1972 return (hdl->sa_userp);
1973 }
1974
1975 void
1976 sa_register_update_callback_locked(objset_t *os, sa_update_cb_t *func)
1977 {
1978 ASSERT(MUTEX_HELD(&os->os_sa->sa_lock));
1979 os->os_sa->sa_update_cb = func;
1980 }
1981
1982 void
1983 sa_register_update_callback(objset_t *os, sa_update_cb_t *func)
1984 {
1985
1986 mutex_enter(&os->os_sa->sa_lock);
1987 sa_register_update_callback_locked(os, func);
1988 mutex_exit(&os->os_sa->sa_lock);
1989 }
1990
1991 uint64_t
1992 sa_handle_object(sa_handle_t *hdl)
1993 {
1994 return (hdl->sa_bonus->db_object);
1995 }
1996
1997 boolean_t
1998 sa_enabled(objset_t *os)
1999 {
2000 return (os->os_sa == NULL);
2001 }
2002
2003 int
2004 sa_set_sa_object(objset_t *os, uint64_t sa_object)
2005 {
2006 sa_os_t *sa = os->os_sa;
2007
2008 if (sa->sa_master_obj)
2009 return (1);
2010
2011 sa->sa_master_obj = sa_object;
2012
2013 return (0);
2014 }
2015
2016 int
2017 sa_hdrsize(void *arg)
2018 {
2019 sa_hdr_phys_t *hdr = arg;
2020
2021 return (SA_HDR_SIZE(hdr));
2022 }
2023
2024 void
2025 sa_handle_lock(sa_handle_t *hdl)
2026 {
2027 ASSERT(hdl);
2028 mutex_enter(&hdl->sa_lock);
2029 }
2030
2031 void
2032 sa_handle_unlock(sa_handle_t *hdl)
2033 {
2034 ASSERT(hdl);
2035 mutex_exit(&hdl->sa_lock);
2036 }
2037
2038 #ifdef _KERNEL
2039 EXPORT_SYMBOL(sa_handle_get);
2040 EXPORT_SYMBOL(sa_handle_get_from_db);
2041 EXPORT_SYMBOL(sa_handle_destroy);
2042 EXPORT_SYMBOL(sa_buf_hold);
2043 EXPORT_SYMBOL(sa_buf_rele);
2044 EXPORT_SYMBOL(sa_spill_rele);
2045 EXPORT_SYMBOL(sa_lookup);
2046 EXPORT_SYMBOL(sa_update);
2047 EXPORT_SYMBOL(sa_remove);
2048 EXPORT_SYMBOL(sa_bulk_lookup);
2049 EXPORT_SYMBOL(sa_bulk_lookup_locked);
2050 EXPORT_SYMBOL(sa_bulk_update);
2051 EXPORT_SYMBOL(sa_size);
2052 EXPORT_SYMBOL(sa_update_from_cb);
2053 EXPORT_SYMBOL(sa_object_info);
2054 EXPORT_SYMBOL(sa_object_size);
2055 EXPORT_SYMBOL(sa_get_userdata);
2056 EXPORT_SYMBOL(sa_set_userp);
2057 EXPORT_SYMBOL(sa_get_db);
2058 EXPORT_SYMBOL(sa_handle_object);
2059 EXPORT_SYMBOL(sa_register_update_callback);
2060 EXPORT_SYMBOL(sa_setup);
2061 EXPORT_SYMBOL(sa_replace_all_by_template);
2062 EXPORT_SYMBOL(sa_replace_all_by_template_locked);
2063 EXPORT_SYMBOL(sa_enabled);
2064 EXPORT_SYMBOL(sa_cache_init);
2065 EXPORT_SYMBOL(sa_cache_fini);
2066 EXPORT_SYMBOL(sa_set_sa_object);
2067 EXPORT_SYMBOL(sa_hdrsize);
2068 EXPORT_SYMBOL(sa_handle_lock);
2069 EXPORT_SYMBOL(sa_handle_unlock);
2070 EXPORT_SYMBOL(sa_lookup_uio);
2071 #endif /* _KERNEL */