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