]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/zap.h
OpenZFS 1300 - filename normalization doesn't work for removes
[mirror_zfs.git] / include / sys / zap.h
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.
83017311 24 * Copyright (c) 2013 by Delphix. All rights reserved.
9b7b9cd3 25 * Copyright 2017 Nexenta Systems, Inc.
34dc7c2f
BB
26 */
27
28#ifndef _SYS_ZAP_H
29#define _SYS_ZAP_H
30
34dc7c2f
BB
31/*
32 * ZAP - ZFS Attribute Processor
33 *
34 * The ZAP is a module which sits on top of the DMU (Data Management
35 * Unit) and implements a higher-level storage primitive using DMU
36 * objects. Its primary consumer is the ZPL (ZFS Posix Layer).
37 *
38 * A "zapobj" is a DMU object which the ZAP uses to stores attributes.
39 * Users should use only zap routines to access a zapobj - they should
40 * not access the DMU object directly using DMU routines.
41 *
42 * The attributes stored in a zapobj are name-value pairs. The name is
43 * a zero-terminated string of up to ZAP_MAXNAMELEN bytes (including
44 * terminating NULL). The value is an array of integers, which may be
45 * 1, 2, 4, or 8 bytes long. The total space used by the array (number
46 * of integers * integer length) can be up to ZAP_MAXVALUELEN bytes.
47 * Note that an 8-byte integer value can be used to store the location
48 * (object number) of another dmu object (which may be itself a zapobj).
49 * Note that you can use a zero-length attribute to store a single bit
50 * of information - the attribute is present or not.
51 *
52 * The ZAP routines are thread-safe. However, you must observe the
53 * DMU's restriction that a transaction may not be operated on
54 * concurrently.
55 *
56 * Any of the routines that return an int may return an I/O error (EIO
57 * or ECHECKSUM).
58 *
59 *
60 * Implementation / Performance Notes:
61 *
62 * The ZAP is intended to operate most efficiently on attributes with
63 * short (49 bytes or less) names and single 8-byte values, for which
64 * the microzap will be used. The ZAP should be efficient enough so
65 * that the user does not need to cache these attributes.
66 *
67 * The ZAP's locking scheme makes its routines thread-safe. Operations
68 * on different zapobjs will be processed concurrently. Operations on
69 * the same zapobj which only read data will be processed concurrently.
70 * Operations on the same zapobj which modify data will be processed
71 * concurrently when there are many attributes in the zapobj (because
72 * the ZAP uses per-block locking - more than 128 * (number of cpus)
73 * small attributes will suffice).
74 */
75
76/*
77 * We're using zero-terminated byte strings (ie. ASCII or UTF-8 C
78 * strings) for the names of attributes, rather than a byte string
79 * bounded by an explicit length. If some day we want to support names
80 * in character sets which have embedded zeros (eg. UTF-16, UTF-32),
81 * we'll have to add routines for using length-bounded strings.
82 */
83
84#include <sys/dmu.h>
85
86#ifdef __cplusplus
87extern "C" {
88#endif
89
34dc7c2f 90/*
d3cc8b15 91 * Specifies matching criteria for ZAP lookups.
9b7b9cd3
GM
92 * MT_NORMALIZE Use ZAP normalization flags, which can include both
93 * unicode normalization and case-insensitivity.
94 * MT_MATCH_CASE Do case-sensitive lookups even if MT_NORMALIZE is
95 * specified and ZAP normalization flags include
96 * U8_TEXTPREP_TOUPPER.
34dc7c2f 97 */
9b7b9cd3
GM
98typedef enum matchtype {
99 MT_NORMALIZE = 1 << 0,
100 MT_MATCH_CASE = 1 << 1,
34dc7c2f
BB
101} matchtype_t;
102
428870ff
BB
103typedef enum zap_flags {
104 /* Use 64-bit hash value (serialized cursors will always use 64-bits) */
105 ZAP_FLAG_HASH64 = 1 << 0,
106 /* Key is binary, not string (zap_add_uint64() can be used) */
107 ZAP_FLAG_UINT64_KEY = 1 << 1,
108 /*
109 * First word of key (which must be an array of uint64) is
110 * already randomly distributed.
111 */
112 ZAP_FLAG_PRE_HASHED_KEY = 1 << 2,
113} zap_flags_t;
114
34dc7c2f
BB
115/*
116 * Create a new zapobj with no attributes and return its object number.
34dc7c2f
BB
117 */
118uint64_t zap_create(objset_t *ds, dmu_object_type_t ot,
119 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
50c957f7
NB
120uint64_t zap_create_dnsize(objset_t *ds, dmu_object_type_t ot,
121 dmu_object_type_t bonustype, int bonuslen, int dnodesize, dmu_tx_t *tx);
34dc7c2f
BB
122uint64_t zap_create_norm(objset_t *ds, int normflags, dmu_object_type_t ot,
123 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
50c957f7
NB
124uint64_t zap_create_norm_dnsize(objset_t *ds, int normflags,
125 dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen,
126 int dnodesize, dmu_tx_t *tx);
428870ff
BB
127uint64_t zap_create_flags(objset_t *os, int normflags, zap_flags_t flags,
128 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift,
129 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
50c957f7
NB
130uint64_t zap_create_flags_dnsize(objset_t *os, int normflags,
131 zap_flags_t flags, dmu_object_type_t ot, int leaf_blockshift,
132 int indirect_blockshift, dmu_object_type_t bonustype, int bonuslen,
133 int dnodesize, dmu_tx_t *tx);
9ae529ec
CS
134uint64_t zap_create_link(objset_t *os, dmu_object_type_t ot,
135 uint64_t parent_obj, const char *name, dmu_tx_t *tx);
50c957f7
NB
136uint64_t zap_create_link_dnsize(objset_t *os, dmu_object_type_t ot,
137 uint64_t parent_obj, const char *name, int dnodesize, dmu_tx_t *tx);
34dc7c2f 138
fa86b5db
MA
139/*
140 * Initialize an already-allocated object.
141 */
142void mzap_create_impl(objset_t *os, uint64_t obj, int normflags,
143 zap_flags_t flags, dmu_tx_t *tx);
144
34dc7c2f
BB
145/*
146 * Create a new zapobj with no attributes from the given (unallocated)
147 * object number.
148 */
149int zap_create_claim(objset_t *ds, uint64_t obj, dmu_object_type_t ot,
150 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
50c957f7
NB
151int zap_create_claim_dnsize(objset_t *ds, uint64_t obj, dmu_object_type_t ot,
152 dmu_object_type_t bonustype, int bonuslen, int dnodesize, dmu_tx_t *tx);
34dc7c2f
BB
153int zap_create_claim_norm(objset_t *ds, uint64_t obj,
154 int normflags, dmu_object_type_t ot,
155 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
50c957f7
NB
156int zap_create_claim_norm_dnsize(objset_t *ds, uint64_t obj,
157 int normflags, dmu_object_type_t ot,
158 dmu_object_type_t bonustype, int bonuslen, int dnodesize, dmu_tx_t *tx);
34dc7c2f
BB
159
160/*
161 * The zapobj passed in must be a valid ZAP object for all of the
162 * following routines.
163 */
164
165/*
166 * Destroy this zapobj and all its attributes.
167 *
168 * Frees the object number using dmu_object_free.
169 */
170int zap_destroy(objset_t *ds, uint64_t zapobj, dmu_tx_t *tx);
171
172/*
173 * Manipulate attributes.
174 *
175 * 'integer_size' is in bytes, and must be 1, 2, 4, or 8.
176 */
177
178/*
179 * Retrieve the contents of the attribute with the given name.
180 *
181 * If the requested attribute does not exist, the call will fail and
182 * return ENOENT.
183 *
184 * If 'integer_size' is smaller than the attribute's integer size, the
185 * call will fail and return EINVAL.
186 *
187 * If 'integer_size' is equal to or larger than the attribute's integer
d3cc8b15
WA
188 * size, the call will succeed and return 0.
189 *
190 * When converting to a larger integer size, the integers will be treated as
191 * unsigned (ie. no sign-extension will be performed).
34dc7c2f
BB
192 *
193 * 'num_integers' is the length (in integers) of 'buf'.
194 *
195 * If the attribute is longer than the buffer, as many integers as will
196 * fit will be transferred to 'buf'. If the entire attribute was not
197 * transferred, the call will return EOVERFLOW.
d3cc8b15
WA
198 */
199int zap_lookup(objset_t *ds, uint64_t zapobj, const char *name,
200 uint64_t integer_size, uint64_t num_integers, void *buf);
201
202/*
34dc7c2f
BB
203 * If rn_len is nonzero, realname will be set to the name of the found
204 * entry (which may be different from the requested name if matchtype is
205 * not MT_EXACT).
206 *
207 * If normalization_conflictp is not NULL, it will be set if there is
208 * another name with the same case/unicode normalized form.
209 */
34dc7c2f
BB
210int zap_lookup_norm(objset_t *ds, uint64_t zapobj, const char *name,
211 uint64_t integer_size, uint64_t num_integers, void *buf,
212 matchtype_t mt, char *realname, int rn_len,
213 boolean_t *normalization_conflictp);
428870ff
BB
214int zap_lookup_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
215 int key_numints, uint64_t integer_size, uint64_t num_integers, void *buf);
216int zap_contains(objset_t *ds, uint64_t zapobj, const char *name);
07248450 217int zap_prefetch(objset_t *os, uint64_t zapobj, const char *name);
428870ff
BB
218int zap_prefetch_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
219 int key_numints);
34dc7c2f 220
2bce8049
MA
221int zap_lookup_by_dnode(dnode_t *dn, const char *name,
222 uint64_t integer_size, uint64_t num_integers, void *buf);
223int zap_lookup_norm_by_dnode(dnode_t *dn, const char *name,
224 uint64_t integer_size, uint64_t num_integers, void *buf,
225 matchtype_t mt, char *realname, int rn_len,
226 boolean_t *ncp);
227
228int zap_count_write_by_dnode(dnode_t *dn, const char *name,
f85c06be 229 int add, refcount_t *towrite, refcount_t *tooverwrite);
9babb374 230
34dc7c2f
BB
231/*
232 * Create an attribute with the given name and value.
233 *
234 * If an attribute with the given name already exists, the call will
235 * fail and return EEXIST.
236 */
428870ff 237int zap_add(objset_t *ds, uint64_t zapobj, const char *key,
34dc7c2f
BB
238 int integer_size, uint64_t num_integers,
239 const void *val, dmu_tx_t *tx);
0eef1bde 240int zap_add_by_dnode(dnode_t *dn, const char *key,
241 int integer_size, uint64_t num_integers,
242 const void *val, dmu_tx_t *tx);
428870ff
BB
243int zap_add_uint64(objset_t *ds, uint64_t zapobj, const uint64_t *key,
244 int key_numints, int integer_size, uint64_t num_integers,
245 const void *val, dmu_tx_t *tx);
34dc7c2f
BB
246
247/*
248 * Set the attribute with the given name to the given value. If an
249 * attribute with the given name does not exist, it will be created. If
250 * an attribute with the given name already exists, the previous value
251 * will be overwritten. The integer_size may be different from the
252 * existing attribute's integer size, in which case the attribute's
253 * integer size will be updated to the new value.
254 */
255int zap_update(objset_t *ds, uint64_t zapobj, const char *name,
256 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx);
428870ff
BB
257int zap_update_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
258 int key_numints,
259 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx);
34dc7c2f
BB
260
261/*
262 * Get the length (in integers) and the integer size of the specified
263 * attribute.
264 *
265 * If the requested attribute does not exist, the call will fail and
266 * return ENOENT.
267 */
268int zap_length(objset_t *ds, uint64_t zapobj, const char *name,
269 uint64_t *integer_size, uint64_t *num_integers);
428870ff
BB
270int zap_length_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
271 int key_numints, uint64_t *integer_size, uint64_t *num_integers);
34dc7c2f
BB
272
273/*
274 * Remove the specified attribute.
275 *
276 * If the specified attribute does not exist, the call will fail and
277 * return ENOENT.
278 */
279int zap_remove(objset_t *ds, uint64_t zapobj, const char *name, dmu_tx_t *tx);
280int zap_remove_norm(objset_t *ds, uint64_t zapobj, const char *name,
281 matchtype_t mt, dmu_tx_t *tx);
0eef1bde 282int zap_remove_by_dnode(dnode_t *dn, const char *name, dmu_tx_t *tx);
428870ff
BB
283int zap_remove_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
284 int key_numints, dmu_tx_t *tx);
34dc7c2f
BB
285
286/*
287 * Returns (in *count) the number of attributes in the specified zap
288 * object.
289 */
290int zap_count(objset_t *ds, uint64_t zapobj, uint64_t *count);
291
34dc7c2f
BB
292/*
293 * Returns (in name) the name of the entry whose (value & mask)
294 * (za_first_integer) is value, or ENOENT if not found. The string
295 * pointed to by name must be at least 256 bytes long. If mask==0, the
296 * match must be exact (ie, same as mask=-1ULL).
297 */
298int zap_value_search(objset_t *os, uint64_t zapobj,
299 uint64_t value, uint64_t mask, char *name);
300
b128c09f
BB
301/*
302 * Transfer all the entries from fromobj into intoobj. Only works on
303 * int_size=8 num_integers=1 values. Fails if there are any duplicated
304 * entries.
305 */
306int zap_join(objset_t *os, uint64_t fromobj, uint64_t intoobj, dmu_tx_t *tx);
307
428870ff
BB
308/* Same as zap_join, but set the values to 'value'. */
309int zap_join_key(objset_t *os, uint64_t fromobj, uint64_t intoobj,
310 uint64_t value, dmu_tx_t *tx);
311
312/* Same as zap_join, but add together any duplicated entries. */
313int zap_join_increment(objset_t *os, uint64_t fromobj, uint64_t intoobj,
314 dmu_tx_t *tx);
315
b128c09f
BB
316/*
317 * Manipulate entries where the name + value are the "same" (the name is
318 * a stringified version of the value).
319 */
320int zap_add_int(objset_t *os, uint64_t obj, uint64_t value, dmu_tx_t *tx);
321int zap_remove_int(objset_t *os, uint64_t obj, uint64_t value, dmu_tx_t *tx);
322int zap_lookup_int(objset_t *os, uint64_t obj, uint64_t value);
428870ff
BB
323int zap_increment_int(objset_t *os, uint64_t obj, uint64_t key, int64_t delta,
324 dmu_tx_t *tx);
325
326/* Here the key is an int and the value is a different int. */
327int zap_add_int_key(objset_t *os, uint64_t obj,
328 uint64_t key, uint64_t value, dmu_tx_t *tx);
753c3839
MA
329int zap_update_int_key(objset_t *os, uint64_t obj,
330 uint64_t key, uint64_t value, dmu_tx_t *tx);
428870ff
BB
331int zap_lookup_int_key(objset_t *os, uint64_t obj,
332 uint64_t key, uint64_t *valuep);
333
428870ff
BB
334int zap_increment(objset_t *os, uint64_t obj, const char *name, int64_t delta,
335 dmu_tx_t *tx);
b128c09f 336
34dc7c2f
BB
337struct zap;
338struct zap_leaf;
339typedef struct zap_cursor {
340 /* This structure is opaque! */
341 objset_t *zc_objset;
342 struct zap *zc_zap;
343 struct zap_leaf *zc_leaf;
344 uint64_t zc_zapobj;
428870ff 345 uint64_t zc_serialized;
34dc7c2f
BB
346 uint64_t zc_hash;
347 uint32_t zc_cd;
348} zap_cursor_t;
349
350typedef struct {
351 int za_integer_length;
352 /*
353 * za_normalization_conflict will be set if there are additional
354 * entries with this normalized form (eg, "foo" and "Foo").
355 */
356 boolean_t za_normalization_conflict;
357 uint64_t za_num_integers;
358 uint64_t za_first_integer; /* no sign extension for <8byte ints */
eca7b760 359 char za_name[ZAP_MAXNAMELEN];
34dc7c2f
BB
360} zap_attribute_t;
361
362/*
363 * The interface for listing all the attributes of a zapobj can be
364 * thought of as cursor moving down a list of the attributes one by
365 * one. The cookie returned by the zap_cursor_serialize routine is
366 * persistent across system calls (and across reboot, even).
367 */
368
369/*
370 * Initialize a zap cursor, pointing to the "first" attribute of the
371 * zapobj. You must _fini the cursor when you are done with it.
372 */
373void zap_cursor_init(zap_cursor_t *zc, objset_t *ds, uint64_t zapobj);
374void zap_cursor_fini(zap_cursor_t *zc);
375
376/*
377 * Get the attribute currently pointed to by the cursor. Returns
378 * ENOENT if at the end of the attributes.
379 */
380int zap_cursor_retrieve(zap_cursor_t *zc, zap_attribute_t *za);
381
382/*
383 * Advance the cursor to the next attribute.
384 */
385void zap_cursor_advance(zap_cursor_t *zc);
386
387/*
388 * Get a persistent cookie pointing to the current position of the zap
389 * cursor. The low 4 bits in the cookie are always zero, and thus can
390 * be used as to differentiate a serialized cookie from a different type
391 * of value. The cookie will be less than 2^32 as long as there are
392 * fewer than 2^22 (4.2 million) entries in the zap object.
393 */
394uint64_t zap_cursor_serialize(zap_cursor_t *zc);
395
396/*
397 * Initialize a zap cursor pointing to the position recorded by
398 * zap_cursor_serialize (in the "serialized" argument). You can also
399 * use a "serialized" argument of 0 to start at the beginning of the
400 * zapobj (ie. zap_cursor_init_serialized(..., 0) is equivalent to
401 * zap_cursor_init(...).)
402 */
403void zap_cursor_init_serialized(zap_cursor_t *zc, objset_t *ds,
404 uint64_t zapobj, uint64_t serialized);
405
406
407#define ZAP_HISTOGRAM_SIZE 10
408
409typedef struct zap_stats {
410 /*
411 * Size of the pointer table (in number of entries).
412 * This is always a power of 2, or zero if it's a microzap.
413 * In general, it should be considerably greater than zs_num_leafs.
414 */
415 uint64_t zs_ptrtbl_len;
416
417 uint64_t zs_blocksize; /* size of zap blocks */
418
419 /*
420 * The number of blocks used. Note that some blocks may be
421 * wasted because old ptrtbl's and large name/value blocks are
422 * not reused. (Although their space is reclaimed, we don't
423 * reuse those offsets in the object.)
424 */
425 uint64_t zs_num_blocks;
426
427 /*
428 * Pointer table values from zap_ptrtbl in the zap_phys_t
429 */
430 uint64_t zs_ptrtbl_nextblk; /* next (larger) copy start block */
431 uint64_t zs_ptrtbl_blks_copied; /* number source blocks copied */
432 uint64_t zs_ptrtbl_zt_blk; /* starting block number */
433 uint64_t zs_ptrtbl_zt_numblks; /* number of blocks */
434 uint64_t zs_ptrtbl_zt_shift; /* bits to index it */
435
436 /*
437 * Values of the other members of the zap_phys_t
438 */
439 uint64_t zs_block_type; /* ZBT_HEADER */
440 uint64_t zs_magic; /* ZAP_MAGIC */
441 uint64_t zs_num_leafs; /* The number of leaf blocks */
442 uint64_t zs_num_entries; /* The number of zap entries */
443 uint64_t zs_salt; /* salt to stir into hash function */
444
445 /*
446 * Histograms. For all histograms, the last index
447 * (ZAP_HISTOGRAM_SIZE-1) includes any values which are greater
448 * than what can be represented. For example
449 * zs_leafs_with_n5_entries[ZAP_HISTOGRAM_SIZE-1] is the number
450 * of leafs with more than 45 entries.
451 */
452
453 /*
454 * zs_leafs_with_n_pointers[n] is the number of leafs with
455 * 2^n pointers to it.
456 */
457 uint64_t zs_leafs_with_2n_pointers[ZAP_HISTOGRAM_SIZE];
458
459 /*
460 * zs_leafs_with_n_entries[n] is the number of leafs with
461 * [n*5, (n+1)*5) entries. In the current implementation, there
462 * can be at most 55 entries in any block, but there may be
463 * fewer if the name or value is large, or the block is not
464 * completely full.
465 */
466 uint64_t zs_blocks_with_n5_entries[ZAP_HISTOGRAM_SIZE];
467
468 /*
469 * zs_leafs_n_tenths_full[n] is the number of leafs whose
470 * fullness is in the range [n/10, (n+1)/10).
471 */
472 uint64_t zs_blocks_n_tenths_full[ZAP_HISTOGRAM_SIZE];
473
474 /*
475 * zs_entries_using_n_chunks[n] is the number of entries which
476 * consume n 24-byte chunks. (Note, large names/values only use
477 * one chunk, but contribute to zs_num_blocks_large.)
478 */
479 uint64_t zs_entries_using_n_chunks[ZAP_HISTOGRAM_SIZE];
480
481 /*
482 * zs_buckets_with_n_entries[n] is the number of buckets (each
483 * leaf has 64 buckets) with n entries.
484 * zs_buckets_with_n_entries[1] should be very close to
485 * zs_num_entries.
486 */
487 uint64_t zs_buckets_with_n_entries[ZAP_HISTOGRAM_SIZE];
488} zap_stats_t;
489
490/*
491 * Get statistics about a ZAP object. Note: you need to be aware of the
492 * internal implementation of the ZAP to correctly interpret some of the
493 * statistics. This interface shouldn't be relied on unless you really
494 * know what you're doing.
495 */
496int zap_get_stats(objset_t *ds, uint64_t zapobj, zap_stats_t *zs);
497
498#ifdef __cplusplus
499}
500#endif
501
502#endif /* _SYS_ZAP_H */