2023-06-02 15:04:03 +02:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Alexander V. Chernikov
|
|
|
|
*
|
|
|
|
* 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 AUTHOR 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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <tests/ktest.h>
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <netlink/netlink.h>
|
|
|
|
#include <netlink/netlink_ctl.h>
|
2024-01-02 22:04:01 +01:00
|
|
|
#include <netlink/netlink_var.h>
|
2023-06-02 15:04:03 +02:00
|
|
|
#include <netlink/netlink_message_writer.h>
|
|
|
|
|
|
|
|
#define KTEST_CALLER
|
|
|
|
#include <netlink/ktest_netlink_message_writer.h>
|
|
|
|
|
|
|
|
#ifdef INVARIANTS
|
|
|
|
|
2024-01-02 22:04:01 +01:00
|
|
|
struct test_nlbuf_attrs {
|
2023-06-02 15:04:03 +02:00
|
|
|
uint32_t size;
|
|
|
|
uint32_t expected_avail;
|
|
|
|
int waitok;
|
|
|
|
};
|
|
|
|
|
2024-01-02 22:04:01 +01:00
|
|
|
#define _OUT(_field) offsetof(struct test_nlbuf_attrs, _field)
|
|
|
|
static const struct nlattr_parser nla_p_nlbuf_w[] = {
|
2023-06-02 15:04:03 +02:00
|
|
|
{ .type = 1, .off = _OUT(size), .cb = nlattr_get_uint32 },
|
|
|
|
{ .type = 2, .off = _OUT(expected_avail), .cb = nlattr_get_uint32 },
|
2024-01-02 22:04:01 +01:00
|
|
|
{ .type = 3, .off = _OUT(waitok), .cb = nlattr_get_uint32 },
|
2023-06-02 15:04:03 +02:00
|
|
|
};
|
|
|
|
#undef _OUT
|
2024-01-02 22:04:01 +01:00
|
|
|
NL_DECLARE_ATTR_PARSER(nlbuf_w_parser, nla_p_nlbuf_w);
|
2023-06-02 15:04:03 +02:00
|
|
|
|
|
|
|
static int
|
2024-01-02 22:04:01 +01:00
|
|
|
test_nlbuf_parser(struct ktest_test_context *ctx, struct nlattr *nla)
|
2023-06-02 15:04:03 +02:00
|
|
|
{
|
2024-01-02 22:04:01 +01:00
|
|
|
struct test_nlbuf_attrs *attrs = npt_alloc(ctx->npt, sizeof(*attrs));
|
2023-06-02 15:04:03 +02:00
|
|
|
|
|
|
|
ctx->arg = attrs;
|
|
|
|
if (attrs != NULL)
|
2024-01-02 22:04:01 +01:00
|
|
|
return (nl_parse_nested(nla, &nlbuf_w_parser, ctx->npt, attrs));
|
2023-06-02 15:04:03 +02:00
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2024-01-02 22:04:01 +01:00
|
|
|
test_nlbuf_writer_allocation(struct ktest_test_context *ctx)
|
2023-06-02 15:04:03 +02:00
|
|
|
{
|
2024-01-02 22:04:01 +01:00
|
|
|
struct test_nlbuf_attrs *attrs = ctx->arg;
|
2023-06-02 15:04:03 +02:00
|
|
|
struct nl_writer nw = {};
|
2024-01-02 22:04:01 +01:00
|
|
|
u_int alloc_len;
|
|
|
|
bool ret;
|
2023-06-02 15:04:03 +02:00
|
|
|
|
2024-01-02 22:04:01 +01:00
|
|
|
ret = nlmsg_get_buf_wrapper(&nw, attrs->size, attrs->waitok);
|
2023-06-02 15:04:03 +02:00
|
|
|
if (!ret)
|
|
|
|
return (EINVAL);
|
|
|
|
|
2024-01-02 22:04:01 +01:00
|
|
|
alloc_len = nw.buf->buflen;
|
2023-06-02 15:04:03 +02:00
|
|
|
KTEST_LOG(ctx, "requested %u, allocated %d", attrs->size, alloc_len);
|
|
|
|
|
|
|
|
/* Mark enomem to avoid reallocation */
|
|
|
|
nw.enomem = true;
|
|
|
|
|
|
|
|
if (nlmsg_reserve_data(&nw, alloc_len, void *) == NULL) {
|
|
|
|
KTEST_LOG(ctx, "unable to get %d bytes from the writer", alloc_len);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
2024-01-02 22:04:01 +01:00
|
|
|
nl_buf_free(nw.buf);
|
2023-06-02 15:04:03 +02:00
|
|
|
|
|
|
|
if (alloc_len < attrs->expected_avail) {
|
|
|
|
KTEST_LOG(ctx, "alloc_len %d, expected %u",
|
|
|
|
alloc_len, attrs->expected_avail);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const struct ktest_test_info tests[] = {
|
|
|
|
#ifdef INVARIANTS
|
|
|
|
{
|
2024-01-02 22:04:01 +01:00
|
|
|
.name = "test_nlbuf_writer_allocation",
|
|
|
|
.desc = "test different buffer sizes in the netlink writer",
|
|
|
|
.func = &test_nlbuf_writer_allocation,
|
|
|
|
.parse = &test_nlbuf_parser,
|
2023-06-02 15:04:03 +02:00
|
|
|
},
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
KTEST_MODULE_DECLARE(ktest_netlink_message_writer, tests);
|