/*-
* Copyright (c) 2019-2020 The NetBSD Foundation, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/* Remove the parameters from the map. */
for (unsigned i = 0; i < paramreg->count; i++) {
npf_param_t *param = &plist[i];
const char *name = param->name;
void *ret __diagused;
ret = thmap_del(pinfo->map, name, strlen(name));
KASSERT(ret != NULL);
}
/* Destroy this registry. */
len = offsetof(npf_paramreg_t, params[paramreg->count]);
kmem_free(paramreg, len);
int
npf_params_export(const npf_t *npf, nvlist_t *nv)
{
nvlist_t *params, *dparams;
/*
* Export both the active and default values. The latter are to
* accommodate npfctl so it could distinguish what has been set.
*/
params = nvlist_create(0);
dparams = nvlist_create(0);
for (npf_paramreg_t *pr = npf->paraminfo->list; pr; pr = pr->next) {
for (unsigned i = 0; i < pr->count; i++) {
const npf_param_t *param = &pr->params[i];
const uint64_t val = *param->valp;
const uint64_t defval = param->default_val;