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