Home | History | Annotate | Line # | Download | only in dist
nv.h revision 1.1
      1  1.1  christos /*-
      2  1.1  christos  * SPDX-License-Identifier: BSD-2-Clause
      3  1.1  christos  *
      4  1.1  christos  * Copyright (c) 2009-2013 The FreeBSD Foundation
      5  1.1  christos  * Copyright (c) 2013-2015 Mariusz Zaborski <oshogbo (at) FreeBSD.org>
      6  1.1  christos  * All rights reserved.
      7  1.1  christos  *
      8  1.1  christos  * This software was developed by Pawel Jakub Dawidek under sponsorship from
      9  1.1  christos  * the FreeBSD Foundation.
     10  1.1  christos  *
     11  1.1  christos  * Redistribution and use in source and binary forms, with or without
     12  1.1  christos  * modification, are permitted provided that the following conditions
     13  1.1  christos  * are met:
     14  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     15  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     16  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     18  1.1  christos  *    documentation and/or other materials provided with the distribution.
     19  1.1  christos  *
     20  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
     21  1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22  1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23  1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
     24  1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25  1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26  1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27  1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28  1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29  1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30  1.1  christos  * SUCH DAMAGE.
     31  1.1  christos  *
     32  1.1  christos  * $FreeBSD: head/sys/sys/nv.h 335347 2018-06-18 22:57:32Z oshogbo $
     33  1.1  christos  */
     34  1.1  christos 
     35  1.1  christos #ifndef	_NV_H_
     36  1.1  christos #define	_NV_H_
     37  1.1  christos 
     38  1.1  christos #include <sys/cdefs.h>
     39  1.1  christos 
     40  1.1  christos #ifndef _KERNEL
     41  1.1  christos #include <stdarg.h>
     42  1.1  christos #include <stdbool.h>
     43  1.1  christos #include <stdint.h>
     44  1.1  christos #include <stdio.h>
     45  1.1  christos #endif
     46  1.1  christos 
     47  1.1  christos #ifndef	_NVLIST_T_DECLARED
     48  1.1  christos #define	_NVLIST_T_DECLARED
     49  1.1  christos struct nvlist;
     50  1.1  christos 
     51  1.1  christos typedef struct nvlist nvlist_t;
     52  1.1  christos #endif
     53  1.1  christos 
     54  1.1  christos #define	NV_NAME_MAX	2048
     55  1.1  christos 
     56  1.1  christos #define	NV_TYPE_NONE			0
     57  1.1  christos 
     58  1.1  christos #define	NV_TYPE_NULL			1
     59  1.1  christos #define	NV_TYPE_BOOL			2
     60  1.1  christos #define	NV_TYPE_NUMBER			3
     61  1.1  christos #define	NV_TYPE_STRING			4
     62  1.1  christos #define	NV_TYPE_NVLIST			5
     63  1.1  christos #define	NV_TYPE_DESCRIPTOR		6
     64  1.1  christos #define	NV_TYPE_BINARY			7
     65  1.1  christos #define	NV_TYPE_BOOL_ARRAY		8
     66  1.1  christos #define	NV_TYPE_NUMBER_ARRAY		9
     67  1.1  christos #define	NV_TYPE_STRING_ARRAY		10
     68  1.1  christos #define	NV_TYPE_NVLIST_ARRAY		11
     69  1.1  christos #define	NV_TYPE_DESCRIPTOR_ARRAY	12
     70  1.1  christos 
     71  1.1  christos /*
     72  1.1  christos  * Perform case-insensitive lookups of provided names.
     73  1.1  christos  */
     74  1.1  christos #define	NV_FLAG_IGNORE_CASE		0x01
     75  1.1  christos /*
     76  1.1  christos  * Names don't have to be unique.
     77  1.1  christos  */
     78  1.1  christos #define	NV_FLAG_NO_UNIQUE		0x02
     79  1.1  christos 
     80  1.1  christos #if defined(_KERNEL) && defined(MALLOC_DECLARE)
     81  1.1  christos MALLOC_DECLARE(M_NVLIST);
     82  1.1  christos #endif
     83  1.1  christos 
     84  1.1  christos __BEGIN_DECLS
     85  1.1  christos 
     86  1.1  christos nvlist_t	*nvlist_create(int flags);
     87  1.1  christos void		 nvlist_destroy(nvlist_t *nvl);
     88  1.1  christos int		 nvlist_error(const nvlist_t *nvl);
     89  1.1  christos bool		 nvlist_empty(const nvlist_t *nvl);
     90  1.1  christos int		 nvlist_flags(const nvlist_t *nvl);
     91  1.1  christos void		 nvlist_set_error(nvlist_t *nvl, int error);
     92  1.1  christos 
     93  1.1  christos nvlist_t *nvlist_clone(const nvlist_t *nvl);
     94  1.1  christos 
     95  1.1  christos #ifndef _KERNEL
     96  1.1  christos void nvlist_dump(const nvlist_t *nvl, int fd);
     97  1.1  christos void nvlist_fdump(const nvlist_t *nvl, FILE *fp);
     98  1.1  christos #endif
     99  1.1  christos 
    100  1.1  christos size_t		 nvlist_size(const nvlist_t *nvl);
    101  1.1  christos void		*nvlist_pack(const nvlist_t *nvl, size_t *sizep);
    102  1.1  christos nvlist_t	*nvlist_unpack(const void *buf, size_t size, int flags);
    103  1.1  christos 
    104  1.1  christos int nvlist_send(int sock, const nvlist_t *nvl);
    105  1.1  christos nvlist_t *nvlist_recv(int sock, int flags);
    106  1.1  christos nvlist_t *nvlist_xfer(int sock, nvlist_t *nvl, int flags);
    107  1.1  christos 
    108  1.1  christos const char *nvlist_next(const nvlist_t *nvl, int *typep, void **cookiep);
    109  1.1  christos 
    110  1.1  christos const nvlist_t *nvlist_get_parent(const nvlist_t *nvl, void **cookiep);
    111  1.1  christos 
    112  1.1  christos const nvlist_t *nvlist_get_array_next(const nvlist_t *nvl);
    113  1.1  christos bool nvlist_in_array(const nvlist_t *nvl);
    114  1.1  christos 
    115  1.1  christos const nvlist_t *nvlist_get_pararr(const nvlist_t *nvl, void **cookiep);
    116  1.1  christos 
    117  1.1  christos /*
    118  1.1  christos  * The nvlist_exists functions check if the given name (optionally of the given
    119  1.1  christos  * type) exists on nvlist.
    120  1.1  christos  */
    121  1.1  christos 
    122  1.1  christos bool nvlist_exists(const nvlist_t *nvl, const char *name);
    123  1.1  christos bool nvlist_exists_type(const nvlist_t *nvl, const char *name, int type);
    124  1.1  christos 
    125  1.1  christos bool nvlist_exists_null(const nvlist_t *nvl, const char *name);
    126  1.1  christos bool nvlist_exists_bool(const nvlist_t *nvl, const char *name);
    127  1.1  christos bool nvlist_exists_number(const nvlist_t *nvl, const char *name);
    128  1.1  christos bool nvlist_exists_string(const nvlist_t *nvl, const char *name);
    129  1.1  christos bool nvlist_exists_nvlist(const nvlist_t *nvl, const char *name);
    130  1.1  christos bool nvlist_exists_binary(const nvlist_t *nvl, const char *name);
    131  1.1  christos bool nvlist_exists_bool_array(const nvlist_t *nvl, const char *name);
    132  1.1  christos bool nvlist_exists_number_array(const nvlist_t *nvl, const char *name);
    133  1.1  christos bool nvlist_exists_string_array(const nvlist_t *nvl, const char *name);
    134  1.1  christos bool nvlist_exists_nvlist_array(const nvlist_t *nvl, const char *name);
    135  1.1  christos #ifndef _KERNEL
    136  1.1  christos bool nvlist_exists_descriptor(const nvlist_t *nvl, const char *name);
    137  1.1  christos bool nvlist_exists_descriptor_array(const nvlist_t *nvl, const char *name);
    138  1.1  christos #endif
    139  1.1  christos 
    140  1.1  christos /*
    141  1.1  christos  * The nvlist_add functions add the given name/value pair.
    142  1.1  christos  * If a pointer is provided, nvlist_add will internally allocate memory for the
    143  1.1  christos  * given data (in other words it won't consume provided buffer).
    144  1.1  christos  */
    145  1.1  christos 
    146  1.1  christos void nvlist_add_null(nvlist_t *nvl, const char *name);
    147  1.1  christos void nvlist_add_bool(nvlist_t *nvl, const char *name, bool value);
    148  1.1  christos void nvlist_add_number(nvlist_t *nvl, const char *name, uint64_t value);
    149  1.1  christos void nvlist_add_string(nvlist_t *nvl, const char *name, const char *value);
    150  1.1  christos void nvlist_add_stringf(nvlist_t *nvl, const char *name, const char *valuefmt, ...) __printflike(3, 4);
    151  1.1  christos #if !defined(_KERNEL) || defined(_VA_LIST_DECLARED)
    152  1.1  christos void nvlist_add_stringv(nvlist_t *nvl, const char *name, const char *valuefmt, va_list valueap) __printflike(3, 0);
    153  1.1  christos #endif
    154  1.1  christos void nvlist_add_nvlist(nvlist_t *nvl, const char *name, const nvlist_t *value);
    155  1.1  christos void nvlist_add_binary(nvlist_t *nvl, const char *name, const void *value, size_t size);
    156  1.1  christos void nvlist_add_bool_array(nvlist_t *nvl, const char *name, const bool *value, size_t nitems);
    157  1.1  christos void nvlist_add_number_array(nvlist_t *nvl, const char *name, const uint64_t *value, size_t nitems);
    158  1.1  christos void nvlist_add_string_array(nvlist_t *nvl, const char *name, const char * const *value, size_t nitems);
    159  1.1  christos void nvlist_add_nvlist_array(nvlist_t *nvl, const char *name, const nvlist_t * const *value, size_t nitems);
    160  1.1  christos #ifndef _KERNEL
    161  1.1  christos void nvlist_add_descriptor(nvlist_t *nvl, const char *name, int value);
    162  1.1  christos void nvlist_add_descriptor_array(nvlist_t *nvl, const char *name, const int *value, size_t nitems);
    163  1.1  christos #endif
    164  1.1  christos 
    165  1.1  christos void nvlist_append_bool_array(nvlist_t *nvl, const char *name, const bool value);
    166  1.1  christos void nvlist_append_number_array(nvlist_t *nvl, const char *name, const uint64_t value);
    167  1.1  christos void nvlist_append_string_array(nvlist_t *nvl, const char *name, const char * const value);
    168  1.1  christos void nvlist_append_nvlist_array(nvlist_t *nvl, const char *name, const nvlist_t * const value);
    169  1.1  christos #ifndef _KERNEL
    170  1.1  christos void nvlist_append_descriptor_array(nvlist_t *nvl, const char *name, int value);
    171  1.1  christos #endif
    172  1.1  christos 
    173  1.1  christos /*
    174  1.1  christos  * The nvlist_move functions add the given name/value pair.
    175  1.1  christos  * The functions consumes provided buffer.
    176  1.1  christos  */
    177  1.1  christos 
    178  1.1  christos void nvlist_move_string(nvlist_t *nvl, const char *name, char *value);
    179  1.1  christos void nvlist_move_nvlist(nvlist_t *nvl, const char *name, nvlist_t *value);
    180  1.1  christos void nvlist_move_binary(nvlist_t *nvl, const char *name, void *value, size_t size);
    181  1.1  christos void nvlist_move_bool_array(nvlist_t *nvl, const char *name, bool *value, size_t nitems);
    182  1.1  christos void nvlist_move_string_array(nvlist_t *nvl, const char *name, char **value, size_t nitems);
    183  1.1  christos void nvlist_move_nvlist_array(nvlist_t *nvl, const char *name, nvlist_t **value, size_t nitems);
    184  1.1  christos void nvlist_move_number_array(nvlist_t *nvl, const char *name, uint64_t *value, size_t nitems);
    185  1.1  christos #ifndef _KERNEL
    186  1.1  christos void nvlist_move_descriptor(nvlist_t *nvl, const char *name, int value);
    187  1.1  christos void nvlist_move_descriptor_array(nvlist_t *nvl, const char *name, int *value, size_t nitems);
    188  1.1  christos #endif
    189  1.1  christos 
    190  1.1  christos /*
    191  1.1  christos  * The nvlist_get functions returns value associated with the given name.
    192  1.1  christos  * If it returns a pointer, the pointer represents internal buffer and should
    193  1.1  christos  * not be freed by the caller.
    194  1.1  christos  */
    195  1.1  christos 
    196  1.1  christos bool			 nvlist_get_bool(const nvlist_t *nvl, const char *name);
    197  1.1  christos uint64_t		 nvlist_get_number(const nvlist_t *nvl, const char *name);
    198  1.1  christos const char		*nvlist_get_string(const nvlist_t *nvl, const char *name);
    199  1.1  christos const nvlist_t		*nvlist_get_nvlist(const nvlist_t *nvl, const char *name);
    200  1.1  christos const void		*nvlist_get_binary(const nvlist_t *nvl, const char *name, size_t *sizep);
    201  1.1  christos const bool		*nvlist_get_bool_array(const nvlist_t *nvl, const char *name, size_t *nitemsp);
    202  1.1  christos const uint64_t		*nvlist_get_number_array(const nvlist_t *nvl, const char *name, size_t *nitemsp);
    203  1.1  christos const char * const	*nvlist_get_string_array(const nvlist_t *nvl, const char *name, size_t *nitemsp);
    204  1.1  christos const nvlist_t * const	*nvlist_get_nvlist_array(const nvlist_t *nvl, const char *name, size_t *nitemsp);
    205  1.1  christos #ifndef _KERNEL
    206  1.1  christos int			 nvlist_get_descriptor(const nvlist_t *nvl, const char *name);
    207  1.1  christos const int		*nvlist_get_descriptor_array(const nvlist_t *nvl, const char *name, size_t *nitemsp);
    208  1.1  christos #endif
    209  1.1  christos 
    210  1.1  christos /*
    211  1.1  christos  * The nvlist_take functions returns value associated with the given name and
    212  1.1  christos  * remove the given entry from the nvlist.
    213  1.1  christos  * The caller is responsible for freeing received data.
    214  1.1  christos  */
    215  1.1  christos 
    216  1.1  christos bool		  nvlist_take_bool(nvlist_t *nvl, const char *name);
    217  1.1  christos uint64_t	  nvlist_take_number(nvlist_t *nvl, const char *name);
    218  1.1  christos char		 *nvlist_take_string(nvlist_t *nvl, const char *name);
    219  1.1  christos nvlist_t	 *nvlist_take_nvlist(nvlist_t *nvl, const char *name);
    220  1.1  christos void		 *nvlist_take_binary(nvlist_t *nvl, const char *name, size_t *sizep);
    221  1.1  christos bool		 *nvlist_take_bool_array(nvlist_t *nvl, const char *name, size_t *nitemsp);
    222  1.1  christos uint64_t	 *nvlist_take_number_array(nvlist_t *nvl, const char *name, size_t *nitemsp);
    223  1.1  christos char		**nvlist_take_string_array(nvlist_t *nvl, const char *name, size_t *nitemsp);
    224  1.1  christos nvlist_t	**nvlist_take_nvlist_array(nvlist_t *nvl, const char *name, size_t *nitemsp);
    225  1.1  christos #ifndef _KERNEL
    226  1.1  christos int		 nvlist_take_descriptor(nvlist_t *nvl, const char *name);
    227  1.1  christos int		 *nvlist_take_descriptor_array(nvlist_t *nvl, const char *name, size_t *nitemsp);
    228  1.1  christos #endif
    229  1.1  christos 
    230  1.1  christos /*
    231  1.1  christos  * The nvlist_free functions removes the given name/value pair from the nvlist
    232  1.1  christos  * and frees memory associated with it.
    233  1.1  christos  */
    234  1.1  christos 
    235  1.1  christos void nvlist_free(nvlist_t *nvl, const char *name);
    236  1.1  christos void nvlist_free_type(nvlist_t *nvl, const char *name, int type);
    237  1.1  christos 
    238  1.1  christos void nvlist_free_null(nvlist_t *nvl, const char *name);
    239  1.1  christos void nvlist_free_bool(nvlist_t *nvl, const char *name);
    240  1.1  christos void nvlist_free_number(nvlist_t *nvl, const char *name);
    241  1.1  christos void nvlist_free_string(nvlist_t *nvl, const char *name);
    242  1.1  christos void nvlist_free_nvlist(nvlist_t *nvl, const char *name);
    243  1.1  christos void nvlist_free_binary(nvlist_t *nvl, const char *name);
    244  1.1  christos void nvlist_free_bool_array(nvlist_t *nvl, const char *name);
    245  1.1  christos void nvlist_free_number_array(nvlist_t *nvl, const char *name);
    246  1.1  christos void nvlist_free_string_array(nvlist_t *nvl, const char *name);
    247  1.1  christos void nvlist_free_nvlist_array(nvlist_t *nvl, const char *name);
    248  1.1  christos void nvlist_free_binary_array(nvlist_t *nvl, const char *name);
    249  1.1  christos #ifndef _KERNEL
    250  1.1  christos void nvlist_free_descriptor(nvlist_t *nvl, const char *name);
    251  1.1  christos void nvlist_free_descriptor_array(nvlist_t *nvl, const char *name);
    252  1.1  christos #endif
    253  1.1  christos 
    254  1.1  christos __END_DECLS
    255  1.1  christos 
    256  1.1  christos #endif	/* !_NV_H_ */
    257