]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/zap_micro.c
Wait for resilver after online
[mirror_zfs.git] / module / zfs / zap_micro.c
CommitLineData
34dc7c2f
BB
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 */
9b7b9cd3 21
34dc7c2f 22/*
428870ff 23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
8bea9815 24 * Copyright (c) 2011, 2016 by Delphix. All rights reserved.
0c66c32d 25 * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
9b7b9cd3 26 * Copyright 2017 Nexenta Systems, Inc.
34dc7c2f
BB
27 */
28
428870ff 29#include <sys/zio.h>
34dc7c2f
BB
30#include <sys/spa.h>
31#include <sys/dmu.h>
32#include <sys/zfs_context.h>
33#include <sys/zap.h>
34#include <sys/refcount.h>
35#include <sys/zap_impl.h>
36#include <sys/zap_leaf.h>
37#include <sys/avl.h>
428870ff 38#include <sys/arc.h>
f1512ee6 39#include <sys/dmu_objset.h>
34dc7c2f
BB
40
41#ifdef _KERNEL
42#include <sys/sunddi.h>
43#endif
44
d683ddbb
JG
45extern inline mzap_phys_t *zap_m_phys(zap_t *zap);
46
8bea9815
MA
47static int mzap_upgrade(zap_t **zapp,
48 void *tag, dmu_tx_t *tx, zap_flags_t flags);
34dc7c2f 49
428870ff
BB
50uint64_t
51zap_getflags(zap_t *zap)
52{
53 if (zap->zap_ismicro)
54 return (0);
d683ddbb 55 return (zap_f_phys(zap)->zap_flags);
428870ff 56}
34dc7c2f 57
428870ff
BB
58int
59zap_hashbits(zap_t *zap)
34dc7c2f 60{
428870ff
BB
61 if (zap_getflags(zap) & ZAP_FLAG_HASH64)
62 return (48);
63 else
64 return (28);
65}
34dc7c2f 66
428870ff
BB
67uint32_t
68zap_maxcd(zap_t *zap)
69{
70 if (zap_getflags(zap) & ZAP_FLAG_HASH64)
71 return ((1<<16)-1);
72 else
73 return (-1U);
74}
34dc7c2f 75
428870ff
BB
76static uint64_t
77zap_hash(zap_name_t *zn)
78{
79 zap_t *zap = zn->zn_zap;
80 uint64_t h = 0;
34dc7c2f 81
428870ff
BB
82 if (zap_getflags(zap) & ZAP_FLAG_PRE_HASHED_KEY) {
83 ASSERT(zap_getflags(zap) & ZAP_FLAG_UINT64_KEY);
84 h = *(uint64_t *)zn->zn_key_orig;
85 } else {
86 h = zap->zap_salt;
87 ASSERT(h != 0);
88 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
89
90 if (zap_getflags(zap) & ZAP_FLAG_UINT64_KEY) {
91 int i;
92 const uint64_t *wp = zn->zn_key_norm;
93
94 ASSERT(zn->zn_key_intlen == 8);
95 for (i = 0; i < zn->zn_key_norm_numints; wp++, i++) {
96 int j;
97 uint64_t word = *wp;
98
99 for (j = 0; j < zn->zn_key_intlen; j++) {
100 h = (h >> 8) ^
101 zfs_crc64_table[(h ^ word) & 0xFF];
102 word >>= NBBY;
103 }
104 }
105 } else {
106 int i, len;
107 const uint8_t *cp = zn->zn_key_norm;
108
109 /*
110 * We previously stored the terminating null on
111 * disk, but didn't hash it, so we need to
112 * continue to not hash it. (The
113 * zn_key_*_numints includes the terminating
114 * null for non-binary keys.)
115 */
116 len = zn->zn_key_norm_numints - 1;
117
118 ASSERT(zn->zn_key_intlen == 1);
119 for (i = 0; i < len; cp++, i++) {
120 h = (h >> 8) ^
121 zfs_crc64_table[(h ^ *cp) & 0xFF];
122 }
123 }
124 }
34dc7c2f 125 /*
428870ff
BB
126 * Don't use all 64 bits, since we need some in the cookie for
127 * the collision differentiator. We MUST use the high bits,
128 * since those are the ones that we first pay attention to when
4e33ba4c 129 * choosing the bucket.
34dc7c2f 130 */
428870ff 131 h &= ~((1ULL << (64 - zap_hashbits(zap))) - 1);
34dc7c2f 132
428870ff 133 return (h);
34dc7c2f
BB
134}
135
136static int
9b7b9cd3 137zap_normalize(zap_t *zap, const char *name, char *namenorm, int normflags)
34dc7c2f
BB
138{
139 size_t inlen, outlen;
140 int err;
141
428870ff
BB
142 ASSERT(!(zap_getflags(zap) & ZAP_FLAG_UINT64_KEY));
143
34dc7c2f
BB
144 inlen = strlen(name) + 1;
145 outlen = ZAP_MAXNAMELEN;
146
147 err = 0;
148 (void) u8_textprep_str((char *)name, &inlen, namenorm, &outlen,
9b7b9cd3
GM
149 normflags | U8_TEXTPREP_IGNORE_NULL | U8_TEXTPREP_IGNORE_INVALID,
150 U8_UNICODE_LATEST, &err);
34dc7c2f
BB
151
152 return (err);
153}
154
155boolean_t
156zap_match(zap_name_t *zn, const char *matchname)
157{
428870ff
BB
158 ASSERT(!(zap_getflags(zn->zn_zap) & ZAP_FLAG_UINT64_KEY));
159
9b7b9cd3 160 if (zn->zn_matchtype & MT_NORMALIZE) {
34dc7c2f
BB
161 char norm[ZAP_MAXNAMELEN];
162
9b7b9cd3
GM
163 if (zap_normalize(zn->zn_zap, matchname, norm,
164 zn->zn_normflags) != 0)
34dc7c2f
BB
165 return (B_FALSE);
166
428870ff 167 return (strcmp(zn->zn_key_norm, norm) == 0);
34dc7c2f 168 } else {
428870ff 169 return (strcmp(zn->zn_key_orig, matchname) == 0);
34dc7c2f
BB
170 }
171}
172
173void
174zap_name_free(zap_name_t *zn)
175{
176 kmem_free(zn, sizeof (zap_name_t));
177}
178
34dc7c2f 179zap_name_t *
428870ff 180zap_name_alloc(zap_t *zap, const char *key, matchtype_t mt)
34dc7c2f 181{
79c76d5b 182 zap_name_t *zn = kmem_alloc(sizeof (zap_name_t), KM_SLEEP);
34dc7c2f
BB
183
184 zn->zn_zap = zap;
428870ff
BB
185 zn->zn_key_intlen = sizeof (*key);
186 zn->zn_key_orig = key;
187 zn->zn_key_orig_numints = strlen(zn->zn_key_orig) + 1;
34dc7c2f 188 zn->zn_matchtype = mt;
9b7b9cd3
GM
189 zn->zn_normflags = zap->zap_normflags;
190
191 /*
192 * If we're dealing with a case sensitive lookup on a mixed or
193 * insensitive fs, remove U8_TEXTPREP_TOUPPER or the lookup
194 * will fold case to all caps overriding the lookup request.
195 */
196 if (mt & MT_MATCH_CASE)
197 zn->zn_normflags &= ~U8_TEXTPREP_TOUPPER;
198
34dc7c2f 199 if (zap->zap_normflags) {
9b7b9cd3
GM
200 /*
201 * We *must* use zap_normflags because this normalization is
202 * what the hash is computed from.
203 */
204 if (zap_normalize(zap, key, zn->zn_normbuf,
205 zap->zap_normflags) != 0) {
34dc7c2f
BB
206 zap_name_free(zn);
207 return (NULL);
208 }
428870ff
BB
209 zn->zn_key_norm = zn->zn_normbuf;
210 zn->zn_key_norm_numints = strlen(zn->zn_key_norm) + 1;
34dc7c2f 211 } else {
9b7b9cd3 212 if (mt != 0) {
34dc7c2f
BB
213 zap_name_free(zn);
214 return (NULL);
215 }
428870ff
BB
216 zn->zn_key_norm = zn->zn_key_orig;
217 zn->zn_key_norm_numints = zn->zn_key_orig_numints;
34dc7c2f
BB
218 }
219
428870ff 220 zn->zn_hash = zap_hash(zn);
9b7b9cd3
GM
221
222 if (zap->zap_normflags != zn->zn_normflags) {
223 /*
224 * We *must* use zn_normflags because this normalization is
225 * what the matching is based on. (Not the hash!)
226 */
227 if (zap_normalize(zap, key, zn->zn_normbuf,
228 zn->zn_normflags) != 0) {
229 zap_name_free(zn);
230 return (NULL);
231 }
232 zn->zn_key_norm_numints = strlen(zn->zn_key_norm) + 1;
233 }
234
428870ff
BB
235 return (zn);
236}
237
238zap_name_t *
239zap_name_alloc_uint64(zap_t *zap, const uint64_t *key, int numints)
240{
79c76d5b 241 zap_name_t *zn = kmem_alloc(sizeof (zap_name_t), KM_SLEEP);
428870ff
BB
242
243 ASSERT(zap->zap_normflags == 0);
244 zn->zn_zap = zap;
245 zn->zn_key_intlen = sizeof (*key);
246 zn->zn_key_orig = zn->zn_key_norm = key;
247 zn->zn_key_orig_numints = zn->zn_key_norm_numints = numints;
9b7b9cd3 248 zn->zn_matchtype = 0;
428870ff
BB
249
250 zn->zn_hash = zap_hash(zn);
34dc7c2f
BB
251 return (zn);
252}
253
254static void
255mzap_byteswap(mzap_phys_t *buf, size_t size)
256{
257 int i, max;
258 buf->mz_block_type = BSWAP_64(buf->mz_block_type);
259 buf->mz_salt = BSWAP_64(buf->mz_salt);
260 buf->mz_normflags = BSWAP_64(buf->mz_normflags);
261 max = (size / MZAP_ENT_LEN) - 1;
262 for (i = 0; i < max; i++) {
263 buf->mz_chunk[i].mze_value =
264 BSWAP_64(buf->mz_chunk[i].mze_value);
265 buf->mz_chunk[i].mze_cd =
266 BSWAP_32(buf->mz_chunk[i].mze_cd);
267 }
268}
269
270void
271zap_byteswap(void *buf, size_t size)
272{
273 uint64_t block_type;
274
275 block_type = *(uint64_t *)buf;
276
277 if (block_type == ZBT_MICRO || block_type == BSWAP_64(ZBT_MICRO)) {
278 /* ASSERT(magic == ZAP_LEAF_MAGIC); */
279 mzap_byteswap(buf, size);
280 } else {
281 fzap_byteswap(buf, size);
282 }
283}
284
285static int
286mze_compare(const void *arg1, const void *arg2)
287{
288 const mzap_ent_t *mze1 = arg1;
289 const mzap_ent_t *mze2 = arg2;
290
ee36c709
GN
291 int cmp = AVL_CMP(mze1->mze_hash, mze2->mze_hash);
292 if (likely(cmp))
293 return (cmp);
294
295 return (AVL_CMP(mze1->mze_cd, mze2->mze_cd));
34dc7c2f
BB
296}
297
298static void
428870ff 299mze_insert(zap_t *zap, int chunkid, uint64_t hash)
34dc7c2f
BB
300{
301 mzap_ent_t *mze;
302
303 ASSERT(zap->zap_ismicro);
304 ASSERT(RW_WRITE_HELD(&zap->zap_rwlock));
34dc7c2f 305
79c76d5b 306 mze = kmem_alloc(sizeof (mzap_ent_t), KM_SLEEP);
34dc7c2f
BB
307 mze->mze_chunkid = chunkid;
308 mze->mze_hash = hash;
428870ff
BB
309 mze->mze_cd = MZE_PHYS(zap, mze)->mze_cd;
310 ASSERT(MZE_PHYS(zap, mze)->mze_name[0] != 0);
34dc7c2f
BB
311 avl_add(&zap->zap_m.zap_avl, mze);
312}
313
314static mzap_ent_t *
315mze_find(zap_name_t *zn)
316{
317 mzap_ent_t mze_tofind;
318 mzap_ent_t *mze;
319 avl_index_t idx;
320 avl_tree_t *avl = &zn->zn_zap->zap_m.zap_avl;
321
322 ASSERT(zn->zn_zap->zap_ismicro);
323 ASSERT(RW_LOCK_HELD(&zn->zn_zap->zap_rwlock));
324
34dc7c2f 325 mze_tofind.mze_hash = zn->zn_hash;
428870ff 326 mze_tofind.mze_cd = 0;
34dc7c2f 327
34dc7c2f
BB
328 mze = avl_find(avl, &mze_tofind, &idx);
329 if (mze == NULL)
330 mze = avl_nearest(avl, idx, AVL_AFTER);
331 for (; mze && mze->mze_hash == zn->zn_hash; mze = AVL_NEXT(avl, mze)) {
428870ff
BB
332 ASSERT3U(mze->mze_cd, ==, MZE_PHYS(zn->zn_zap, mze)->mze_cd);
333 if (zap_match(zn, MZE_PHYS(zn->zn_zap, mze)->mze_name))
34dc7c2f
BB
334 return (mze);
335 }
9b7b9cd3 336
34dc7c2f
BB
337 return (NULL);
338}
339
340static uint32_t
341mze_find_unused_cd(zap_t *zap, uint64_t hash)
342{
343 mzap_ent_t mze_tofind;
344 mzap_ent_t *mze;
345 avl_index_t idx;
346 avl_tree_t *avl = &zap->zap_m.zap_avl;
347 uint32_t cd;
348
349 ASSERT(zap->zap_ismicro);
350 ASSERT(RW_LOCK_HELD(&zap->zap_rwlock));
351
352 mze_tofind.mze_hash = hash;
428870ff 353 mze_tofind.mze_cd = 0;
34dc7c2f
BB
354
355 cd = 0;
356 for (mze = avl_find(avl, &mze_tofind, &idx);
357 mze && mze->mze_hash == hash; mze = AVL_NEXT(avl, mze)) {
428870ff 358 if (mze->mze_cd != cd)
34dc7c2f
BB
359 break;
360 cd++;
361 }
362
363 return (cd);
364}
365
366static void
367mze_remove(zap_t *zap, mzap_ent_t *mze)
368{
369 ASSERT(zap->zap_ismicro);
370 ASSERT(RW_WRITE_HELD(&zap->zap_rwlock));
371
372 avl_remove(&zap->zap_m.zap_avl, mze);
373 kmem_free(mze, sizeof (mzap_ent_t));
374}
375
376static void
377mze_destroy(zap_t *zap)
378{
379 mzap_ent_t *mze;
380 void *avlcookie = NULL;
381
c65aa5b2 382 while ((mze = avl_destroy_nodes(&zap->zap_m.zap_avl, &avlcookie)))
34dc7c2f
BB
383 kmem_free(mze, sizeof (mzap_ent_t));
384 avl_destroy(&zap->zap_m.zap_avl);
385}
386
387static zap_t *
388mzap_open(objset_t *os, uint64_t obj, dmu_buf_t *db)
389{
390 zap_t *winner;
391 zap_t *zap;
392 int i;
32c8c946
CC
393 uint64_t *zap_hdr = (uint64_t *)db->db_data;
394 uint64_t zap_block_type = zap_hdr[0];
395 uint64_t zap_magic = zap_hdr[1];
34dc7c2f
BB
396
397 ASSERT3U(MZAP_ENT_LEN, ==, sizeof (mzap_ent_phys_t));
398
79c76d5b 399 zap = kmem_zalloc(sizeof (zap_t), KM_SLEEP);
ef5319df 400 rw_init(&zap->zap_rwlock, NULL, RW_DEFAULT, NULL);
34dc7c2f
BB
401 rw_enter(&zap->zap_rwlock, RW_WRITER);
402 zap->zap_objset = os;
403 zap->zap_object = obj;
404 zap->zap_dbuf = db;
405
32c8c946 406 if (zap_block_type != ZBT_MICRO) {
c17486b2
GN
407 mutex_init(&zap->zap_f.zap_num_entries_mtx, 0, MUTEX_DEFAULT,
408 0);
9bd274dd 409 zap->zap_f.zap_block_shift = highbit64(db->db_size) - 1;
32c8c946
CC
410 if (zap_block_type != ZBT_HEADER || zap_magic != ZAP_MAGIC) {
411 winner = NULL; /* No actual winner here... */
412 goto handle_winner;
413 }
34dc7c2f
BB
414 } else {
415 zap->zap_ismicro = TRUE;
416 }
417
418 /*
419 * Make sure that zap_ismicro is set before we let others see
420 * it, because zap_lockdir() checks zap_ismicro without the lock
421 * held.
422 */
39efbde7 423 dmu_buf_init_user(&zap->zap_dbu, zap_evict_sync, NULL, &zap->zap_dbuf);
0c66c32d 424 winner = dmu_buf_set_user(db, &zap->zap_dbu);
34dc7c2f 425
32c8c946
CC
426 if (winner != NULL)
427 goto handle_winner;
34dc7c2f
BB
428
429 if (zap->zap_ismicro) {
d683ddbb
JG
430 zap->zap_salt = zap_m_phys(zap)->mz_salt;
431 zap->zap_normflags = zap_m_phys(zap)->mz_normflags;
34dc7c2f
BB
432 zap->zap_m.zap_num_chunks = db->db_size / MZAP_ENT_LEN - 1;
433 avl_create(&zap->zap_m.zap_avl, mze_compare,
434 sizeof (mzap_ent_t), offsetof(mzap_ent_t, mze_node));
435
436 for (i = 0; i < zap->zap_m.zap_num_chunks; i++) {
437 mzap_ent_phys_t *mze =
d683ddbb 438 &zap_m_phys(zap)->mz_chunk[i];
34dc7c2f
BB
439 if (mze->mze_name[0]) {
440 zap_name_t *zn;
441
442 zap->zap_m.zap_num_entries++;
9b7b9cd3 443 zn = zap_name_alloc(zap, mze->mze_name, 0);
428870ff 444 mze_insert(zap, i, zn->zn_hash);
34dc7c2f
BB
445 zap_name_free(zn);
446 }
447 }
448 } else {
d683ddbb
JG
449 zap->zap_salt = zap_f_phys(zap)->zap_salt;
450 zap->zap_normflags = zap_f_phys(zap)->zap_normflags;
34dc7c2f
BB
451
452 ASSERT3U(sizeof (struct zap_leaf_header), ==,
453 2*ZAP_LEAF_CHUNKSIZE);
454
455 /*
456 * The embedded pointer table should not overlap the
457 * other members.
458 */
459 ASSERT3P(&ZAP_EMBEDDED_PTRTBL_ENT(zap, 0), >,
d683ddbb 460 &zap_f_phys(zap)->zap_salt);
34dc7c2f
BB
461
462 /*
463 * The embedded pointer table should end at the end of
464 * the block
465 */
466 ASSERT3U((uintptr_t)&ZAP_EMBEDDED_PTRTBL_ENT(zap,
467 1<<ZAP_EMBEDDED_PTRTBL_SHIFT(zap)) -
d683ddbb 468 (uintptr_t)zap_f_phys(zap), ==,
34dc7c2f
BB
469 zap->zap_dbuf->db_size);
470 }
471 rw_exit(&zap->zap_rwlock);
472 return (zap);
32c8c946
CC
473
474handle_winner:
475 rw_exit(&zap->zap_rwlock);
476 rw_destroy(&zap->zap_rwlock);
477 if (!zap->zap_ismicro)
478 mutex_destroy(&zap->zap_f.zap_num_entries_mtx);
479 kmem_free(zap, sizeof (zap_t));
480 return (winner);
34dc7c2f
BB
481}
482
8bea9815
MA
483static int
484zap_lockdir_impl(dmu_buf_t *db, void *tag, dmu_tx_t *tx,
34dc7c2f
BB
485 krw_t lti, boolean_t fatreader, boolean_t adding, zap_t **zapp)
486{
ceb49b0a 487 dmu_object_info_t doi;
34dc7c2f 488 zap_t *zap;
34dc7c2f 489 krw_t lt;
34dc7c2f 490
8bea9815
MA
491 objset_t *os = dmu_buf_get_objset(db);
492 uint64_t obj = db->db_object;
34dc7c2f 493
8bea9815
MA
494 ASSERT0(db->db_offset);
495 *zapp = NULL;
34dc7c2f 496
ceb49b0a
BB
497 dmu_object_info_from_db(db, &doi);
498 if (DMU_OT_BYTESWAP(doi.doi_type) != DMU_BSWAP_ZAP)
499 return (SET_ERROR(EINVAL));
34dc7c2f
BB
500
501 zap = dmu_buf_get_user(db);
32c8c946 502 if (zap == NULL) {
34dc7c2f 503 zap = mzap_open(os, obj, db);
32c8c946
CC
504 if (zap == NULL) {
505 /*
506 * mzap_open() didn't like what it saw on-disk.
507 * Check for corruption!
508 */
32c8c946
CC
509 return (SET_ERROR(EIO));
510 }
511 }
34dc7c2f
BB
512
513 /*
514 * We're checking zap_ismicro without the lock held, in order to
515 * tell what type of lock we want. Once we have some sort of
516 * lock, see if it really is the right type. In practice this
517 * can only be different if it was upgraded from micro to fat,
518 * and micro wanted WRITER but fat only needs READER.
519 */
520 lt = (!zap->zap_ismicro && fatreader) ? RW_READER : lti;
521 rw_enter(&zap->zap_rwlock, lt);
522 if (lt != ((!zap->zap_ismicro && fatreader) ? RW_READER : lti)) {
523 /* it was upgraded, now we only need reader */
524 ASSERT(lt == RW_WRITER);
525 ASSERT(RW_READER ==
6d79eabf 526 ((!zap->zap_ismicro && fatreader) ? RW_READER : lti));
34dc7c2f
BB
527 rw_downgrade(&zap->zap_rwlock);
528 lt = RW_READER;
529 }
530
531 zap->zap_objset = os;
532
533 if (lt == RW_WRITER)
534 dmu_buf_will_dirty(db, tx);
535
536 ASSERT3P(zap->zap_dbuf, ==, db);
537
538 ASSERT(!zap->zap_ismicro ||
539 zap->zap_m.zap_num_entries <= zap->zap_m.zap_num_chunks);
540 if (zap->zap_ismicro && tx && adding &&
541 zap->zap_m.zap_num_entries == zap->zap_m.zap_num_chunks) {
542 uint64_t newsz = db->db_size + SPA_MINBLOCKSIZE;
543 if (newsz > MZAP_MAX_BLKSZ) {
544 dprintf("upgrading obj %llu: num_entries=%u\n",
545 obj, zap->zap_m.zap_num_entries);
546 *zapp = zap;
1c27024e 547 int err = mzap_upgrade(zapp, tag, tx, 0);
8bea9815
MA
548 if (err != 0)
549 rw_exit(&zap->zap_rwlock);
550 return (err);
34dc7c2f 551 }
8bea9815 552 VERIFY0(dmu_object_set_blocksize(os, obj, newsz, 0, tx));
34dc7c2f
BB
553 zap->zap_m.zap_num_chunks =
554 db->db_size / MZAP_ENT_LEN - 1;
555 }
556
557 *zapp = zap;
558 return (0);
559}
560
2bce8049
MA
561static int
562zap_lockdir_by_dnode(dnode_t *dn, dmu_tx_t *tx,
563 krw_t lti, boolean_t fatreader, boolean_t adding, void *tag, zap_t **zapp)
564{
565 dmu_buf_t *db;
566 int err;
567
568 err = dmu_buf_hold_by_dnode(dn, 0, tag, &db, DMU_READ_NO_PREFETCH);
569 if (err != 0) {
570 return (err);
571 }
572 err = zap_lockdir_impl(db, tag, tx, lti, fatreader, adding, zapp);
573 if (err != 0) {
574 dmu_buf_rele(db, tag);
575 }
576 return (err);
577}
578
8bea9815
MA
579int
580zap_lockdir(objset_t *os, uint64_t obj, dmu_tx_t *tx,
581 krw_t lti, boolean_t fatreader, boolean_t adding, void *tag, zap_t **zapp)
582{
583 dmu_buf_t *db;
584 int err;
585
586 err = dmu_buf_hold(os, obj, 0, tag, &db, DMU_READ_NO_PREFETCH);
587 if (err != 0)
588 return (err);
589 err = zap_lockdir_impl(db, tag, tx, lti, fatreader, adding, zapp);
590 if (err != 0)
591 dmu_buf_rele(db, tag);
592 return (err);
593}
594
34dc7c2f 595void
8bea9815 596zap_unlockdir(zap_t *zap, void *tag)
34dc7c2f
BB
597{
598 rw_exit(&zap->zap_rwlock);
8bea9815 599 dmu_buf_rele(zap->zap_dbuf, tag);
34dc7c2f
BB
600}
601
602static int
8bea9815 603mzap_upgrade(zap_t **zapp, void *tag, dmu_tx_t *tx, zap_flags_t flags)
34dc7c2f
BB
604{
605 mzap_phys_t *mzp;
428870ff
BB
606 int i, sz, nchunks;
607 int err = 0;
34dc7c2f
BB
608 zap_t *zap = *zapp;
609
610 ASSERT(RW_WRITE_HELD(&zap->zap_rwlock));
611
612 sz = zap->zap_dbuf->db_size;
a3fd9d9e 613 mzp = vmem_alloc(sz, KM_SLEEP);
34dc7c2f
BB
614 bcopy(zap->zap_dbuf->db_data, mzp, sz);
615 nchunks = zap->zap_m.zap_num_chunks;
616
428870ff
BB
617 if (!flags) {
618 err = dmu_object_set_blocksize(zap->zap_objset, zap->zap_object,
619 1ULL << fzap_default_block_shift, 0, tx);
620 if (err) {
a3fd9d9e 621 vmem_free(mzp, sz);
428870ff
BB
622 return (err);
623 }
34dc7c2f
BB
624 }
625
626 dprintf("upgrading obj=%llu with %u chunks\n",
627 zap->zap_object, nchunks);
628 /* XXX destroy the avl later, so we can use the stored hash value */
629 mze_destroy(zap);
630
428870ff 631 fzap_upgrade(zap, tx, flags);
34dc7c2f
BB
632
633 for (i = 0; i < nchunks; i++) {
34dc7c2f
BB
634 mzap_ent_phys_t *mze = &mzp->mz_chunk[i];
635 zap_name_t *zn;
636 if (mze->mze_name[0] == 0)
637 continue;
638 dprintf("adding %s=%llu\n",
639 mze->mze_name, mze->mze_value);
9b7b9cd3 640 zn = zap_name_alloc(zap, mze->mze_name, 0);
8bea9815
MA
641 err = fzap_add_cd(zn, 8, 1, &mze->mze_value, mze->mze_cd,
642 tag, tx);
34dc7c2f
BB
643 zap = zn->zn_zap; /* fzap_add_cd() may change zap */
644 zap_name_free(zn);
645 if (err)
646 break;
647 }
a3fd9d9e 648 vmem_free(mzp, sz);
34dc7c2f
BB
649 *zapp = zap;
650 return (err);
651}
652
9b7b9cd3
GM
653/*
654 * The "normflags" determine the behavior of the matchtype_t which is
655 * passed to zap_lookup_norm(). Names which have the same normalized
656 * version will be stored with the same hash value, and therefore we can
657 * perform normalization-insensitive lookups. We can be Unicode form-
658 * insensitive and/or case-insensitive. The following flags are valid for
659 * "normflags":
660 *
661 * U8_TEXTPREP_NFC
662 * U8_TEXTPREP_NFD
663 * U8_TEXTPREP_NFKC
664 * U8_TEXTPREP_NFKD
665 * U8_TEXTPREP_TOUPPER
666 *
667 * The *_NF* (Normalization Form) flags are mutually exclusive; at most one
668 * of them may be supplied.
669 */
fa86b5db 670void
428870ff
BB
671mzap_create_impl(objset_t *os, uint64_t obj, int normflags, zap_flags_t flags,
672 dmu_tx_t *tx)
34dc7c2f
BB
673{
674 dmu_buf_t *db;
675 mzap_phys_t *zp;
676
9631681b 677 VERIFY0(dmu_buf_hold(os, obj, 0, FTAG, &db, DMU_READ_NO_PREFETCH));
34dc7c2f
BB
678
679#ifdef ZFS_DEBUG
680 {
681 dmu_object_info_t doi;
682 dmu_object_info_from_db(db, &doi);
9ae529ec 683 ASSERT3U(DMU_OT_BYTESWAP(doi.doi_type), ==, DMU_BSWAP_ZAP);
34dc7c2f
BB
684 }
685#endif
686
687 dmu_buf_will_dirty(db, tx);
688 zp = db->db_data;
689 zp->mz_block_type = ZBT_MICRO;
690 zp->mz_salt = ((uintptr_t)db ^ (uintptr_t)tx ^ (obj << 1)) | 1ULL;
691 zp->mz_normflags = normflags;
692 dmu_buf_rele(db, FTAG);
428870ff
BB
693
694 if (flags != 0) {
695 zap_t *zap;
696 /* Only fat zap supports flags; upgrade immediately. */
697 VERIFY(0 == zap_lockdir(os, obj, tx, RW_WRITER,
8bea9815
MA
698 B_FALSE, B_FALSE, FTAG, &zap));
699 VERIFY3U(0, ==, mzap_upgrade(&zap, FTAG, tx, flags));
700 zap_unlockdir(zap, FTAG);
428870ff 701 }
34dc7c2f
BB
702}
703
704int
705zap_create_claim(objset_t *os, uint64_t obj, dmu_object_type_t ot,
706 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx)
707{
50c957f7
NB
708 return (zap_create_claim_dnsize(os, obj, ot, bonustype, bonuslen,
709 0, tx));
710}
711
712int
713zap_create_claim_dnsize(objset_t *os, uint64_t obj, dmu_object_type_t ot,
714 dmu_object_type_t bonustype, int bonuslen, int dnodesize, dmu_tx_t *tx)
715{
716 return (zap_create_claim_norm_dnsize(os, obj,
717 0, ot, bonustype, bonuslen, dnodesize, tx));
34dc7c2f
BB
718}
719
720int
721zap_create_claim_norm(objset_t *os, uint64_t obj, int normflags,
722 dmu_object_type_t ot,
723 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx)
50c957f7
NB
724{
725 return (zap_create_claim_norm_dnsize(os, obj, normflags, ot, bonustype,
726 bonuslen, 0, tx));
727}
728
729int
730zap_create_claim_norm_dnsize(objset_t *os, uint64_t obj, int normflags,
731 dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen,
732 int dnodesize, dmu_tx_t *tx)
34dc7c2f
BB
733{
734 int err;
735
50c957f7
NB
736 err = dmu_object_claim_dnsize(os, obj, ot, 0, bonustype, bonuslen,
737 dnodesize, tx);
34dc7c2f
BB
738 if (err != 0)
739 return (err);
428870ff 740 mzap_create_impl(os, obj, normflags, 0, tx);
34dc7c2f
BB
741 return (0);
742}
743
744uint64_t
745zap_create(objset_t *os, dmu_object_type_t ot,
746 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx)
747{
748 return (zap_create_norm(os, 0, ot, bonustype, bonuslen, tx));
749}
750
50c957f7
NB
751uint64_t
752zap_create_dnsize(objset_t *os, dmu_object_type_t ot,
753 dmu_object_type_t bonustype, int bonuslen, int dnodesize, dmu_tx_t *tx)
754{
755 return (zap_create_norm_dnsize(os, 0, ot, bonustype, bonuslen,
756 dnodesize, tx));
757}
758
34dc7c2f
BB
759uint64_t
760zap_create_norm(objset_t *os, int normflags, dmu_object_type_t ot,
761 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx)
762{
50c957f7
NB
763 return (zap_create_norm_dnsize(os, normflags, ot, bonustype, bonuslen,
764 0, tx));
765}
766
767uint64_t
768zap_create_norm_dnsize(objset_t *os, int normflags, dmu_object_type_t ot,
769 dmu_object_type_t bonustype, int bonuslen, int dnodesize, dmu_tx_t *tx)
770{
771 uint64_t obj = dmu_object_alloc_dnsize(os, ot, 0, bonustype, bonuslen,
772 dnodesize, tx);
34dc7c2f 773
428870ff
BB
774 mzap_create_impl(os, obj, normflags, 0, tx);
775 return (obj);
776}
777
778uint64_t
779zap_create_flags(objset_t *os, int normflags, zap_flags_t flags,
780 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift,
781 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx)
782{
50c957f7
NB
783 return (zap_create_flags_dnsize(os, normflags, flags, ot,
784 leaf_blockshift, indirect_blockshift, bonustype, bonuslen, 0, tx));
785}
786
787uint64_t
788zap_create_flags_dnsize(objset_t *os, int normflags, zap_flags_t flags,
789 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift,
790 dmu_object_type_t bonustype, int bonuslen, int dnodesize, dmu_tx_t *tx)
791{
792 uint64_t obj = dmu_object_alloc_dnsize(os, ot, 0, bonustype, bonuslen,
793 dnodesize, tx);
428870ff
BB
794
795 ASSERT(leaf_blockshift >= SPA_MINBLOCKSHIFT &&
f1512ee6 796 leaf_blockshift <= SPA_OLD_MAXBLOCKSHIFT &&
428870ff 797 indirect_blockshift >= SPA_MINBLOCKSHIFT &&
f1512ee6 798 indirect_blockshift <= SPA_OLD_MAXBLOCKSHIFT);
428870ff
BB
799
800 VERIFY(dmu_object_set_blocksize(os, obj,
801 1ULL << leaf_blockshift, indirect_blockshift, tx) == 0);
802
803 mzap_create_impl(os, obj, normflags, flags, tx);
34dc7c2f
BB
804 return (obj);
805}
806
807int
808zap_destroy(objset_t *os, uint64_t zapobj, dmu_tx_t *tx)
809{
810 /*
811 * dmu_object_free will free the object number and free the
812 * data. Freeing the data will cause our pageout function to be
813 * called, which will destroy our data (zap_leaf_t's and zap_t).
814 */
815
816 return (dmu_object_free(os, zapobj, tx));
817}
818
34dc7c2f 819void
39efbde7 820zap_evict_sync(void *dbu)
34dc7c2f 821{
0c66c32d 822 zap_t *zap = dbu;
34dc7c2f
BB
823
824 rw_destroy(&zap->zap_rwlock);
825
826 if (zap->zap_ismicro)
827 mze_destroy(zap);
828 else
829 mutex_destroy(&zap->zap_f.zap_num_entries_mtx);
830
831 kmem_free(zap, sizeof (zap_t));
832}
833
834int
835zap_count(objset_t *os, uint64_t zapobj, uint64_t *count)
836{
837 zap_t *zap;
838 int err;
839
8bea9815 840 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
34dc7c2f
BB
841 if (err)
842 return (err);
843 if (!zap->zap_ismicro) {
844 err = fzap_count(zap, count);
845 } else {
846 *count = zap->zap_m.zap_num_entries;
847 }
8bea9815 848 zap_unlockdir(zap, FTAG);
34dc7c2f
BB
849 return (err);
850}
851
852/*
853 * zn may be NULL; if not specified, it will be computed if needed.
854 * See also the comment above zap_entry_normalization_conflict().
855 */
856static boolean_t
857mzap_normalization_conflict(zap_t *zap, zap_name_t *zn, mzap_ent_t *mze)
858{
859 mzap_ent_t *other;
860 int direction = AVL_BEFORE;
861 boolean_t allocdzn = B_FALSE;
862
863 if (zap->zap_normflags == 0)
864 return (B_FALSE);
865
866again:
867 for (other = avl_walk(&zap->zap_m.zap_avl, mze, direction);
868 other && other->mze_hash == mze->mze_hash;
869 other = avl_walk(&zap->zap_m.zap_avl, other, direction)) {
870
871 if (zn == NULL) {
428870ff 872 zn = zap_name_alloc(zap, MZE_PHYS(zap, mze)->mze_name,
9b7b9cd3 873 MT_NORMALIZE);
34dc7c2f
BB
874 allocdzn = B_TRUE;
875 }
428870ff 876 if (zap_match(zn, MZE_PHYS(zap, other)->mze_name)) {
34dc7c2f
BB
877 if (allocdzn)
878 zap_name_free(zn);
879 return (B_TRUE);
880 }
881 }
882
883 if (direction == AVL_BEFORE) {
884 direction = AVL_AFTER;
885 goto again;
886 }
887
888 if (allocdzn)
889 zap_name_free(zn);
890 return (B_FALSE);
891}
892
893/*
894 * Routines for manipulating attributes.
895 */
896
897int
898zap_lookup(objset_t *os, uint64_t zapobj, const char *name,
899 uint64_t integer_size, uint64_t num_integers, void *buf)
900{
901 return (zap_lookup_norm(os, zapobj, name, integer_size,
9b7b9cd3 902 num_integers, buf, 0, NULL, 0, NULL));
34dc7c2f
BB
903}
904
8bea9815
MA
905static int
906zap_lookup_impl(zap_t *zap, const char *name,
34dc7c2f
BB
907 uint64_t integer_size, uint64_t num_integers, void *buf,
908 matchtype_t mt, char *realname, int rn_len,
909 boolean_t *ncp)
910{
8bea9815 911 int err = 0;
34dc7c2f
BB
912 mzap_ent_t *mze;
913 zap_name_t *zn;
914
34dc7c2f 915 zn = zap_name_alloc(zap, name, mt);
8bea9815 916 if (zn == NULL)
2e528b49 917 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
918
919 if (!zap->zap_ismicro) {
920 err = fzap_lookup(zn, integer_size, num_integers, buf,
921 realname, rn_len, ncp);
922 } else {
923 mze = mze_find(zn);
924 if (mze == NULL) {
2e528b49 925 err = SET_ERROR(ENOENT);
34dc7c2f
BB
926 } else {
927 if (num_integers < 1) {
2e528b49 928 err = SET_ERROR(EOVERFLOW);
34dc7c2f 929 } else if (integer_size != 8) {
2e528b49 930 err = SET_ERROR(EINVAL);
34dc7c2f 931 } else {
428870ff
BB
932 *(uint64_t *)buf =
933 MZE_PHYS(zap, mze)->mze_value;
34dc7c2f 934 (void) strlcpy(realname,
428870ff 935 MZE_PHYS(zap, mze)->mze_name, rn_len);
34dc7c2f
BB
936 if (ncp) {
937 *ncp = mzap_normalization_conflict(zap,
938 zn, mze);
939 }
940 }
941 }
942 }
943 zap_name_free(zn);
8bea9815
MA
944 return (err);
945}
946
947int
948zap_lookup_norm(objset_t *os, uint64_t zapobj, const char *name,
949 uint64_t integer_size, uint64_t num_integers, void *buf,
950 matchtype_t mt, char *realname, int rn_len,
951 boolean_t *ncp)
952{
953 zap_t *zap;
954 int err;
955
956 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
957 if (err != 0)
958 return (err);
959 err = zap_lookup_impl(zap, name, integer_size,
960 num_integers, buf, mt, realname, rn_len, ncp);
961 zap_unlockdir(zap, FTAG);
34dc7c2f
BB
962 return (err);
963}
964
07248450
BB
965int
966zap_prefetch(objset_t *os, uint64_t zapobj, const char *name)
967{
968 zap_t *zap;
969 int err;
970 zap_name_t *zn;
971
8bea9815 972 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
07248450
BB
973 if (err)
974 return (err);
9b7b9cd3 975 zn = zap_name_alloc(zap, name, 0);
07248450 976 if (zn == NULL) {
8bea9815 977 zap_unlockdir(zap, FTAG);
07248450
BB
978 return (SET_ERROR(ENOTSUP));
979 }
980
981 fzap_prefetch(zn);
982 zap_name_free(zn);
8bea9815 983 zap_unlockdir(zap, FTAG);
07248450
BB
984 return (err);
985}
986
2bce8049
MA
987int
988zap_lookup_by_dnode(dnode_t *dn, const char *name,
989 uint64_t integer_size, uint64_t num_integers, void *buf)
990{
991 return (zap_lookup_norm_by_dnode(dn, name, integer_size,
9b7b9cd3 992 num_integers, buf, 0, NULL, 0, NULL));
2bce8049
MA
993}
994
995int
996zap_lookup_norm_by_dnode(dnode_t *dn, const char *name,
997 uint64_t integer_size, uint64_t num_integers, void *buf,
998 matchtype_t mt, char *realname, int rn_len,
999 boolean_t *ncp)
1000{
1001 zap_t *zap;
1002 int err;
1003
1004 err = zap_lockdir_by_dnode(dn, NULL, RW_READER, TRUE, FALSE,
1005 FTAG, &zap);
1006 if (err != 0)
1007 return (err);
1008 err = zap_lookup_impl(zap, name, integer_size,
1009 num_integers, buf, mt, realname, rn_len, ncp);
1010 zap_unlockdir(zap, FTAG);
1011 return (err);
1012}
1013
428870ff
BB
1014int
1015zap_prefetch_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
1016 int key_numints)
1017{
1018 zap_t *zap;
1019 int err;
1020 zap_name_t *zn;
1021
8bea9815 1022 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
428870ff
BB
1023 if (err)
1024 return (err);
1025 zn = zap_name_alloc_uint64(zap, key, key_numints);
1026 if (zn == NULL) {
8bea9815 1027 zap_unlockdir(zap, FTAG);
2e528b49 1028 return (SET_ERROR(ENOTSUP));
428870ff
BB
1029 }
1030
1031 fzap_prefetch(zn);
1032 zap_name_free(zn);
8bea9815 1033 zap_unlockdir(zap, FTAG);
428870ff
BB
1034 return (err);
1035}
1036
1037int
1038zap_lookup_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
1039 int key_numints, uint64_t integer_size, uint64_t num_integers, void *buf)
1040{
1041 zap_t *zap;
1042 int err;
1043 zap_name_t *zn;
1044
8bea9815 1045 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
428870ff
BB
1046 if (err)
1047 return (err);
1048 zn = zap_name_alloc_uint64(zap, key, key_numints);
1049 if (zn == NULL) {
8bea9815 1050 zap_unlockdir(zap, FTAG);
2e528b49 1051 return (SET_ERROR(ENOTSUP));
428870ff
BB
1052 }
1053
1054 err = fzap_lookup(zn, integer_size, num_integers, buf,
1055 NULL, 0, NULL);
1056 zap_name_free(zn);
8bea9815 1057 zap_unlockdir(zap, FTAG);
428870ff
BB
1058 return (err);
1059}
1060
1061int
1062zap_contains(objset_t *os, uint64_t zapobj, const char *name)
1063{
fa86b5db 1064 int err = zap_lookup_norm(os, zapobj, name, 0,
9b7b9cd3 1065 0, NULL, 0, NULL, 0, NULL);
428870ff
BB
1066 if (err == EOVERFLOW || err == EINVAL)
1067 err = 0; /* found, but skipped reading the value */
1068 return (err);
1069}
1070
34dc7c2f
BB
1071int
1072zap_length(objset_t *os, uint64_t zapobj, const char *name,
1073 uint64_t *integer_size, uint64_t *num_integers)
1074{
1075 zap_t *zap;
1076 int err;
1077 mzap_ent_t *mze;
1078 zap_name_t *zn;
1079
8bea9815 1080 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
34dc7c2f
BB
1081 if (err)
1082 return (err);
9b7b9cd3 1083 zn = zap_name_alloc(zap, name, 0);
34dc7c2f 1084 if (zn == NULL) {
8bea9815 1085 zap_unlockdir(zap, FTAG);
2e528b49 1086 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
1087 }
1088 if (!zap->zap_ismicro) {
1089 err = fzap_length(zn, integer_size, num_integers);
1090 } else {
1091 mze = mze_find(zn);
1092 if (mze == NULL) {
2e528b49 1093 err = SET_ERROR(ENOENT);
34dc7c2f
BB
1094 } else {
1095 if (integer_size)
1096 *integer_size = 8;
1097 if (num_integers)
1098 *num_integers = 1;
1099 }
1100 }
1101 zap_name_free(zn);
8bea9815 1102 zap_unlockdir(zap, FTAG);
34dc7c2f
BB
1103 return (err);
1104}
1105
428870ff
BB
1106int
1107zap_length_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
1108 int key_numints, uint64_t *integer_size, uint64_t *num_integers)
1109{
1110 zap_t *zap;
1111 int err;
1112 zap_name_t *zn;
1113
8bea9815 1114 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
428870ff
BB
1115 if (err)
1116 return (err);
1117 zn = zap_name_alloc_uint64(zap, key, key_numints);
1118 if (zn == NULL) {
8bea9815 1119 zap_unlockdir(zap, FTAG);
2e528b49 1120 return (SET_ERROR(ENOTSUP));
428870ff
BB
1121 }
1122 err = fzap_length(zn, integer_size, num_integers);
1123 zap_name_free(zn);
8bea9815 1124 zap_unlockdir(zap, FTAG);
428870ff
BB
1125 return (err);
1126}
1127
34dc7c2f
BB
1128static void
1129mzap_addent(zap_name_t *zn, uint64_t value)
1130{
1131 int i;
1132 zap_t *zap = zn->zn_zap;
1133 int start = zap->zap_m.zap_alloc_next;
1134 uint32_t cd;
1135
34dc7c2f
BB
1136 ASSERT(RW_WRITE_HELD(&zap->zap_rwlock));
1137
1138#ifdef ZFS_DEBUG
1139 for (i = 0; i < zap->zap_m.zap_num_chunks; i++) {
d1d7e268 1140 ASSERTV(mzap_ent_phys_t *mze);
d683ddbb 1141 ASSERT(mze = &zap_m_phys(zap)->mz_chunk[i]);
428870ff 1142 ASSERT(strcmp(zn->zn_key_orig, mze->mze_name) != 0);
34dc7c2f
BB
1143 }
1144#endif
1145
1146 cd = mze_find_unused_cd(zap, zn->zn_hash);
1147 /* given the limited size of the microzap, this can't happen */
428870ff 1148 ASSERT(cd < zap_maxcd(zap));
34dc7c2f
BB
1149
1150again:
1151 for (i = start; i < zap->zap_m.zap_num_chunks; i++) {
d683ddbb 1152 mzap_ent_phys_t *mze = &zap_m_phys(zap)->mz_chunk[i];
34dc7c2f
BB
1153 if (mze->mze_name[0] == 0) {
1154 mze->mze_value = value;
1155 mze->mze_cd = cd;
680eada9 1156 (void) strlcpy(mze->mze_name, zn->zn_key_orig,
1157 sizeof (mze->mze_name));
34dc7c2f
BB
1158 zap->zap_m.zap_num_entries++;
1159 zap->zap_m.zap_alloc_next = i+1;
1160 if (zap->zap_m.zap_alloc_next ==
1161 zap->zap_m.zap_num_chunks)
1162 zap->zap_m.zap_alloc_next = 0;
428870ff 1163 mze_insert(zap, i, zn->zn_hash);
34dc7c2f
BB
1164 return;
1165 }
1166 }
1167 if (start != 0) {
1168 start = 0;
1169 goto again;
1170 }
989fd514 1171 cmn_err(CE_PANIC, "out of entries!");
34dc7c2f
BB
1172}
1173
0eef1bde 1174static int
1175zap_add_impl(zap_t *zap, const char *key,
34dc7c2f 1176 int integer_size, uint64_t num_integers,
0eef1bde 1177 const void *val, dmu_tx_t *tx, void *tag)
34dc7c2f 1178{
0eef1bde 1179 int err = 0;
34dc7c2f
BB
1180 mzap_ent_t *mze;
1181 const uint64_t *intval = val;
1182 zap_name_t *zn;
1183
9b7b9cd3 1184 zn = zap_name_alloc(zap, key, 0);
34dc7c2f 1185 if (zn == NULL) {
0eef1bde 1186 zap_unlockdir(zap, tag);
2e528b49 1187 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
1188 }
1189 if (!zap->zap_ismicro) {
0eef1bde 1190 err = fzap_add(zn, integer_size, num_integers, val, tag, tx);
34dc7c2f
BB
1191 zap = zn->zn_zap; /* fzap_add() may change zap */
1192 } else if (integer_size != 8 || num_integers != 1 ||
4f301661 1193 strlen(key) >= MZAP_NAME_LEN) {
0eef1bde 1194 err = mzap_upgrade(&zn->zn_zap, tag, tx, 0);
8bea9815
MA
1195 if (err == 0) {
1196 err = fzap_add(zn, integer_size, num_integers, val,
0eef1bde 1197 tag, tx);
8bea9815 1198 }
34dc7c2f
BB
1199 zap = zn->zn_zap; /* fzap_add() may change zap */
1200 } else {
1201 mze = mze_find(zn);
1202 if (mze != NULL) {
2e528b49 1203 err = SET_ERROR(EEXIST);
34dc7c2f
BB
1204 } else {
1205 mzap_addent(zn, *intval);
1206 }
1207 }
1208 ASSERT(zap == zn->zn_zap);
1209 zap_name_free(zn);
66eead53
MA
1210 if (zap != NULL) /* may be NULL if fzap_add() failed */
1211 zap_unlockdir(zap, tag);
0eef1bde 1212 return (err);
1213}
1214
1215int
1216zap_add(objset_t *os, uint64_t zapobj, const char *key,
1217 int integer_size, uint64_t num_integers,
1218 const void *val, dmu_tx_t *tx)
1219{
1220 zap_t *zap;
1221 int err;
1222
1223 err = zap_lockdir(os, zapobj, tx, RW_WRITER, TRUE, TRUE, FTAG, &zap);
1224 if (err != 0)
1225 return (err);
1226 err = zap_add_impl(zap, key, integer_size, num_integers, val, tx, FTAG);
1227 /* zap_add_impl() calls zap_unlockdir() */
1228 return (err);
1229}
1230
1231int
1232zap_add_by_dnode(dnode_t *dn, const char *key,
1233 int integer_size, uint64_t num_integers,
1234 const void *val, dmu_tx_t *tx)
1235{
1236 zap_t *zap;
1237 int err;
1238
1239 err = zap_lockdir_by_dnode(dn, tx, RW_WRITER, TRUE, TRUE, FTAG, &zap);
1240 if (err != 0)
1241 return (err);
1242 err = zap_add_impl(zap, key, integer_size, num_integers, val, tx, FTAG);
1243 /* zap_add_impl() calls zap_unlockdir() */
34dc7c2f
BB
1244 return (err);
1245}
1246
428870ff
BB
1247int
1248zap_add_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
1249 int key_numints, int integer_size, uint64_t num_integers,
1250 const void *val, dmu_tx_t *tx)
1251{
1252 zap_t *zap;
1253 int err;
1254 zap_name_t *zn;
1255
8bea9815 1256 err = zap_lockdir(os, zapobj, tx, RW_WRITER, TRUE, TRUE, FTAG, &zap);
428870ff
BB
1257 if (err)
1258 return (err);
1259 zn = zap_name_alloc_uint64(zap, key, key_numints);
1260 if (zn == NULL) {
8bea9815 1261 zap_unlockdir(zap, FTAG);
2e528b49 1262 return (SET_ERROR(ENOTSUP));
428870ff 1263 }
8bea9815 1264 err = fzap_add(zn, integer_size, num_integers, val, FTAG, tx);
428870ff
BB
1265 zap = zn->zn_zap; /* fzap_add() may change zap */
1266 zap_name_free(zn);
1267 if (zap != NULL) /* may be NULL if fzap_add() failed */
8bea9815 1268 zap_unlockdir(zap, FTAG);
428870ff
BB
1269 return (err);
1270}
1271
34dc7c2f
BB
1272int
1273zap_update(objset_t *os, uint64_t zapobj, const char *name,
1274 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx)
1275{
1276 zap_t *zap;
1277 mzap_ent_t *mze;
1278 const uint64_t *intval = val;
1279 zap_name_t *zn;
1280 int err;
1281
428870ff 1282#ifdef ZFS_DEBUG
1fde1e37
BB
1283 uint64_t oldval;
1284
428870ff
BB
1285 /*
1286 * If there is an old value, it shouldn't change across the
1287 * lockdir (eg, due to bprewrite's xlation).
1288 */
1289 if (integer_size == 8 && num_integers == 1)
1290 (void) zap_lookup(os, zapobj, name, 8, 1, &oldval);
1291#endif
1292
8bea9815 1293 err = zap_lockdir(os, zapobj, tx, RW_WRITER, TRUE, TRUE, FTAG, &zap);
34dc7c2f
BB
1294 if (err)
1295 return (err);
9b7b9cd3 1296 zn = zap_name_alloc(zap, name, 0);
34dc7c2f 1297 if (zn == NULL) {
8bea9815 1298 zap_unlockdir(zap, FTAG);
2e528b49 1299 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
1300 }
1301 if (!zap->zap_ismicro) {
8bea9815
MA
1302 err = fzap_update(zn, integer_size, num_integers, val,
1303 FTAG, tx);
34dc7c2f
BB
1304 zap = zn->zn_zap; /* fzap_update() may change zap */
1305 } else if (integer_size != 8 || num_integers != 1 ||
1306 strlen(name) >= MZAP_NAME_LEN) {
1307 dprintf("upgrading obj %llu: intsz=%u numint=%llu name=%s\n",
1308 zapobj, integer_size, num_integers, name);
8bea9815
MA
1309 err = mzap_upgrade(&zn->zn_zap, FTAG, tx, 0);
1310 if (err == 0) {
34dc7c2f 1311 err = fzap_update(zn, integer_size, num_integers,
8bea9815
MA
1312 val, FTAG, tx);
1313 }
34dc7c2f
BB
1314 zap = zn->zn_zap; /* fzap_update() may change zap */
1315 } else {
1316 mze = mze_find(zn);
1317 if (mze != NULL) {
428870ff
BB
1318 ASSERT3U(MZE_PHYS(zap, mze)->mze_value, ==, oldval);
1319 MZE_PHYS(zap, mze)->mze_value = *intval;
34dc7c2f
BB
1320 } else {
1321 mzap_addent(zn, *intval);
1322 }
1323 }
1324 ASSERT(zap == zn->zn_zap);
1325 zap_name_free(zn);
1326 if (zap != NULL) /* may be NULL if fzap_upgrade() failed */
8bea9815 1327 zap_unlockdir(zap, FTAG);
34dc7c2f
BB
1328 return (err);
1329}
1330
428870ff
BB
1331int
1332zap_update_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
1333 int key_numints,
1334 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx)
1335{
1336 zap_t *zap;
1337 zap_name_t *zn;
1338 int err;
1339
8bea9815 1340 err = zap_lockdir(os, zapobj, tx, RW_WRITER, TRUE, TRUE, FTAG, &zap);
428870ff
BB
1341 if (err)
1342 return (err);
1343 zn = zap_name_alloc_uint64(zap, key, key_numints);
1344 if (zn == NULL) {
8bea9815 1345 zap_unlockdir(zap, FTAG);
2e528b49 1346 return (SET_ERROR(ENOTSUP));
428870ff 1347 }
8bea9815 1348 err = fzap_update(zn, integer_size, num_integers, val, FTAG, tx);
428870ff
BB
1349 zap = zn->zn_zap; /* fzap_update() may change zap */
1350 zap_name_free(zn);
1351 if (zap != NULL) /* may be NULL if fzap_upgrade() failed */
8bea9815 1352 zap_unlockdir(zap, FTAG);
428870ff
BB
1353 return (err);
1354}
1355
34dc7c2f
BB
1356int
1357zap_remove(objset_t *os, uint64_t zapobj, const char *name, dmu_tx_t *tx)
1358{
9b7b9cd3 1359 return (zap_remove_norm(os, zapobj, name, 0, tx));
34dc7c2f
BB
1360}
1361
0eef1bde 1362static int
1363zap_remove_impl(zap_t *zap, const char *name,
34dc7c2f
BB
1364 matchtype_t mt, dmu_tx_t *tx)
1365{
34dc7c2f
BB
1366 mzap_ent_t *mze;
1367 zap_name_t *zn;
0eef1bde 1368 int err = 0;
34dc7c2f 1369
34dc7c2f 1370 zn = zap_name_alloc(zap, name, mt);
0eef1bde 1371 if (zn == NULL)
2e528b49 1372 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
1373 if (!zap->zap_ismicro) {
1374 err = fzap_remove(zn, tx);
1375 } else {
1376 mze = mze_find(zn);
1377 if (mze == NULL) {
2e528b49 1378 err = SET_ERROR(ENOENT);
34dc7c2f
BB
1379 } else {
1380 zap->zap_m.zap_num_entries--;
d683ddbb 1381 bzero(&zap_m_phys(zap)->mz_chunk[mze->mze_chunkid],
34dc7c2f
BB
1382 sizeof (mzap_ent_phys_t));
1383 mze_remove(zap, mze);
1384 }
1385 }
1386 zap_name_free(zn);
0eef1bde 1387 return (err);
1388}
1389
1390int
1391zap_remove_norm(objset_t *os, uint64_t zapobj, const char *name,
1392 matchtype_t mt, dmu_tx_t *tx)
1393{
1394 zap_t *zap;
1395 int err;
1396
1397 err = zap_lockdir(os, zapobj, tx, RW_WRITER, TRUE, FALSE, FTAG, &zap);
1398 if (err)
1399 return (err);
1400 err = zap_remove_impl(zap, name, mt, tx);
1401 zap_unlockdir(zap, FTAG);
1402 return (err);
1403}
1404
1405int
1406zap_remove_by_dnode(dnode_t *dn, const char *name, dmu_tx_t *tx)
1407{
1408 zap_t *zap;
1409 int err;
1410
1411 err = zap_lockdir_by_dnode(dn, tx, RW_WRITER, TRUE, FALSE, FTAG, &zap);
1412 if (err)
1413 return (err);
9b7b9cd3 1414 err = zap_remove_impl(zap, name, 0, tx);
8bea9815 1415 zap_unlockdir(zap, FTAG);
34dc7c2f
BB
1416 return (err);
1417}
1418
428870ff
BB
1419int
1420zap_remove_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
1421 int key_numints, dmu_tx_t *tx)
1422{
1423 zap_t *zap;
1424 int err;
1425 zap_name_t *zn;
1426
8bea9815 1427 err = zap_lockdir(os, zapobj, tx, RW_WRITER, TRUE, FALSE, FTAG, &zap);
428870ff
BB
1428 if (err)
1429 return (err);
1430 zn = zap_name_alloc_uint64(zap, key, key_numints);
1431 if (zn == NULL) {
8bea9815 1432 zap_unlockdir(zap, FTAG);
2e528b49 1433 return (SET_ERROR(ENOTSUP));
428870ff
BB
1434 }
1435 err = fzap_remove(zn, tx);
1436 zap_name_free(zn);
8bea9815 1437 zap_unlockdir(zap, FTAG);
428870ff
BB
1438 return (err);
1439}
1440
34dc7c2f
BB
1441/*
1442 * Routines for iterating over the attributes.
1443 */
1444
34dc7c2f
BB
1445void
1446zap_cursor_init_serialized(zap_cursor_t *zc, objset_t *os, uint64_t zapobj,
1447 uint64_t serialized)
1448{
1449 zc->zc_objset = os;
1450 zc->zc_zap = NULL;
1451 zc->zc_leaf = NULL;
1452 zc->zc_zapobj = zapobj;
428870ff
BB
1453 zc->zc_serialized = serialized;
1454 zc->zc_hash = 0;
1455 zc->zc_cd = 0;
34dc7c2f
BB
1456}
1457
1458void
1459zap_cursor_init(zap_cursor_t *zc, objset_t *os, uint64_t zapobj)
1460{
1461 zap_cursor_init_serialized(zc, os, zapobj, 0);
1462}
1463
1464void
1465zap_cursor_fini(zap_cursor_t *zc)
1466{
1467 if (zc->zc_zap) {
1468 rw_enter(&zc->zc_zap->zap_rwlock, RW_READER);
8bea9815 1469 zap_unlockdir(zc->zc_zap, NULL);
34dc7c2f
BB
1470 zc->zc_zap = NULL;
1471 }
1472 if (zc->zc_leaf) {
1473 rw_enter(&zc->zc_leaf->l_rwlock, RW_READER);
1474 zap_put_leaf(zc->zc_leaf);
1475 zc->zc_leaf = NULL;
1476 }
1477 zc->zc_objset = NULL;
1478}
1479
1480uint64_t
1481zap_cursor_serialize(zap_cursor_t *zc)
1482{
1483 if (zc->zc_hash == -1ULL)
1484 return (-1ULL);
428870ff
BB
1485 if (zc->zc_zap == NULL)
1486 return (zc->zc_serialized);
1487 ASSERT((zc->zc_hash & zap_maxcd(zc->zc_zap)) == 0);
1488 ASSERT(zc->zc_cd < zap_maxcd(zc->zc_zap));
1489
1490 /*
1491 * We want to keep the high 32 bits of the cursor zero if we can, so
1492 * that 32-bit programs can access this. So usually use a small
1493 * (28-bit) hash value so we can fit 4 bits of cd into the low 32-bits
1494 * of the cursor.
1495 *
1496 * [ collision differentiator | zap_hashbits()-bit hash value ]
1497 */
1498 return ((zc->zc_hash >> (64 - zap_hashbits(zc->zc_zap))) |
1499 ((uint64_t)zc->zc_cd << zap_hashbits(zc->zc_zap)));
34dc7c2f
BB
1500}
1501
1502int
1503zap_cursor_retrieve(zap_cursor_t *zc, zap_attribute_t *za)
1504{
1505 int err;
1506 avl_index_t idx;
1507 mzap_ent_t mze_tofind;
1508 mzap_ent_t *mze;
1509
1510 if (zc->zc_hash == -1ULL)
2e528b49 1511 return (SET_ERROR(ENOENT));
34dc7c2f
BB
1512
1513 if (zc->zc_zap == NULL) {
428870ff 1514 int hb;
34dc7c2f 1515 err = zap_lockdir(zc->zc_objset, zc->zc_zapobj, NULL,
8bea9815 1516 RW_READER, TRUE, FALSE, NULL, &zc->zc_zap);
34dc7c2f
BB
1517 if (err)
1518 return (err);
428870ff
BB
1519
1520 /*
1521 * To support zap_cursor_init_serialized, advance, retrieve,
1522 * we must add to the existing zc_cd, which may already
1523 * be 1 due to the zap_cursor_advance.
1524 */
1525 ASSERT(zc->zc_hash == 0);
1526 hb = zap_hashbits(zc->zc_zap);
1527 zc->zc_hash = zc->zc_serialized << (64 - hb);
1528 zc->zc_cd += zc->zc_serialized >> hb;
1529 if (zc->zc_cd >= zap_maxcd(zc->zc_zap)) /* corrupt serialized */
1530 zc->zc_cd = 0;
34dc7c2f
BB
1531 } else {
1532 rw_enter(&zc->zc_zap->zap_rwlock, RW_READER);
1533 }
1534 if (!zc->zc_zap->zap_ismicro) {
1535 err = fzap_cursor_retrieve(zc->zc_zap, zc, za);
1536 } else {
34dc7c2f 1537 mze_tofind.mze_hash = zc->zc_hash;
428870ff 1538 mze_tofind.mze_cd = zc->zc_cd;
34dc7c2f
BB
1539
1540 mze = avl_find(&zc->zc_zap->zap_m.zap_avl, &mze_tofind, &idx);
1541 if (mze == NULL) {
1542 mze = avl_nearest(&zc->zc_zap->zap_m.zap_avl,
1543 idx, AVL_AFTER);
1544 }
1545 if (mze) {
428870ff
BB
1546 mzap_ent_phys_t *mzep = MZE_PHYS(zc->zc_zap, mze);
1547 ASSERT3U(mze->mze_cd, ==, mzep->mze_cd);
34dc7c2f
BB
1548 za->za_normalization_conflict =
1549 mzap_normalization_conflict(zc->zc_zap, NULL, mze);
1550 za->za_integer_length = 8;
1551 za->za_num_integers = 1;
428870ff
BB
1552 za->za_first_integer = mzep->mze_value;
1553 (void) strcpy(za->za_name, mzep->mze_name);
34dc7c2f 1554 zc->zc_hash = mze->mze_hash;
428870ff 1555 zc->zc_cd = mze->mze_cd;
34dc7c2f
BB
1556 err = 0;
1557 } else {
1558 zc->zc_hash = -1ULL;
2e528b49 1559 err = SET_ERROR(ENOENT);
34dc7c2f
BB
1560 }
1561 }
1562 rw_exit(&zc->zc_zap->zap_rwlock);
1563 return (err);
1564}
1565
1566void
1567zap_cursor_advance(zap_cursor_t *zc)
1568{
1569 if (zc->zc_hash == -1ULL)
1570 return;
1571 zc->zc_cd++;
428870ff
BB
1572}
1573
34dc7c2f
BB
1574int
1575zap_get_stats(objset_t *os, uint64_t zapobj, zap_stats_t *zs)
1576{
1577 int err;
1578 zap_t *zap;
1579
8bea9815 1580 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
34dc7c2f
BB
1581 if (err)
1582 return (err);
1583
1584 bzero(zs, sizeof (zap_stats_t));
1585
1586 if (zap->zap_ismicro) {
1587 zs->zs_blocksize = zap->zap_dbuf->db_size;
1588 zs->zs_num_entries = zap->zap_m.zap_num_entries;
1589 zs->zs_num_blocks = 1;
1590 } else {
1591 fzap_get_stats(zap, zs);
1592 }
8bea9815 1593 zap_unlockdir(zap, FTAG);
34dc7c2f
BB
1594 return (0);
1595}
9babb374 1596
c28b2279 1597#if defined(_KERNEL) && defined(HAVE_SPL)
c28b2279 1598EXPORT_SYMBOL(zap_create);
50c957f7 1599EXPORT_SYMBOL(zap_create_dnsize);
dee28b07 1600EXPORT_SYMBOL(zap_create_norm);
50c957f7 1601EXPORT_SYMBOL(zap_create_norm_dnsize);
dee28b07 1602EXPORT_SYMBOL(zap_create_flags);
50c957f7 1603EXPORT_SYMBOL(zap_create_flags_dnsize);
dee28b07
BB
1604EXPORT_SYMBOL(zap_create_claim);
1605EXPORT_SYMBOL(zap_create_claim_norm);
50c957f7 1606EXPORT_SYMBOL(zap_create_claim_norm_dnsize);
dee28b07 1607EXPORT_SYMBOL(zap_destroy);
c28b2279 1608EXPORT_SYMBOL(zap_lookup);
0eef1bde 1609EXPORT_SYMBOL(zap_lookup_by_dnode);
c28b2279 1610EXPORT_SYMBOL(zap_lookup_norm);
dee28b07
BB
1611EXPORT_SYMBOL(zap_lookup_uint64);
1612EXPORT_SYMBOL(zap_contains);
07248450 1613EXPORT_SYMBOL(zap_prefetch);
dee28b07 1614EXPORT_SYMBOL(zap_prefetch_uint64);
dee28b07 1615EXPORT_SYMBOL(zap_add);
0eef1bde 1616EXPORT_SYMBOL(zap_add_by_dnode);
dee28b07 1617EXPORT_SYMBOL(zap_add_uint64);
c28b2279 1618EXPORT_SYMBOL(zap_update);
dee28b07
BB
1619EXPORT_SYMBOL(zap_update_uint64);
1620EXPORT_SYMBOL(zap_length);
1621EXPORT_SYMBOL(zap_length_uint64);
1622EXPORT_SYMBOL(zap_remove);
0eef1bde 1623EXPORT_SYMBOL(zap_remove_by_dnode);
dee28b07
BB
1624EXPORT_SYMBOL(zap_remove_norm);
1625EXPORT_SYMBOL(zap_remove_uint64);
1626EXPORT_SYMBOL(zap_count);
1627EXPORT_SYMBOL(zap_value_search);
1628EXPORT_SYMBOL(zap_join);
1629EXPORT_SYMBOL(zap_join_increment);
1630EXPORT_SYMBOL(zap_add_int);
1631EXPORT_SYMBOL(zap_remove_int);
1632EXPORT_SYMBOL(zap_lookup_int);
1633EXPORT_SYMBOL(zap_increment_int);
1634EXPORT_SYMBOL(zap_add_int_key);
1635EXPORT_SYMBOL(zap_lookup_int_key);
1636EXPORT_SYMBOL(zap_increment);
1637EXPORT_SYMBOL(zap_cursor_init);
1638EXPORT_SYMBOL(zap_cursor_fini);
1639EXPORT_SYMBOL(zap_cursor_retrieve);
1640EXPORT_SYMBOL(zap_cursor_advance);
1641EXPORT_SYMBOL(zap_cursor_serialize);
dee28b07
BB
1642EXPORT_SYMBOL(zap_cursor_init_serialized);
1643EXPORT_SYMBOL(zap_get_stats);
c28b2279 1644#endif