mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 11:14:18 +01:00
fdafd315ad
Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row. Remove /^#if.*\n#endif.*\n#include\s+<sys/cdefs.h>.*\n/ Remove /\n+#include\s+<sys/cdefs.h>.*\n+#if.*\n#endif.*\n+/ Remove /\n+#if.*\n#endif.*\n+/ Remove /^#if.*\n#endif.*\n/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/types.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/param.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/capsicum.h>/ Sponsored by: Netflix
302 lines
9.2 KiB
C
302 lines
9.2 KiB
C
/*-
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2022 Alexander V. Chernikov <melifaro@FreeBSD.org>
|
|
*
|
|
* 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 <sys/types.h>
|
|
#include <sys/ck.h>
|
|
#include <sys/epoch.h>
|
|
#include <sys/eventhandler.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/jail.h>
|
|
#include <sys/lock.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/priv.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/sx.h>
|
|
|
|
#include <netlink/netlink.h>
|
|
#include <netlink/netlink_ctl.h>
|
|
#include <netlink/netlink_generic.h>
|
|
#include <netlink/netlink_var.h>
|
|
|
|
#define DEBUG_MOD_NAME nl_generic
|
|
#define DEBUG_MAX_LEVEL LOG_DEBUG3
|
|
#include <netlink/netlink_debug.h>
|
|
_DECLARE_DEBUG(LOG_INFO);
|
|
|
|
static int dump_family(struct nlmsghdr *hdr, struct genlmsghdr *ghdr,
|
|
const struct genl_family *gf, struct nl_writer *nw);
|
|
|
|
/*
|
|
* Handler called by netlink subsystem when matching netlink message is received
|
|
*/
|
|
static int
|
|
genl_handle_message(struct nlmsghdr *hdr, struct nl_pstate *npt)
|
|
{
|
|
struct nlpcb *nlp = npt->nlp;
|
|
struct genl_family *gf = NULL;
|
|
int error = 0;
|
|
|
|
int family_id = (int)hdr->nlmsg_type - GENL_MIN_ID;
|
|
|
|
if (__predict_false(family_id < 0 || (gf = genl_get_family(family_id)) == NULL)) {
|
|
NLP_LOG(LOG_DEBUG, nlp, "invalid message type: %d", hdr->nlmsg_type);
|
|
return (ENOTSUP);
|
|
}
|
|
|
|
if (__predict_false(hdr->nlmsg_len < sizeof(hdr) + GENL_HDRLEN)) {
|
|
NLP_LOG(LOG_DEBUG, nlp, "invalid message size: %d", hdr->nlmsg_len);
|
|
return (EINVAL);
|
|
}
|
|
|
|
struct genlmsghdr *ghdr = (struct genlmsghdr *)(hdr + 1);
|
|
|
|
if (ghdr->cmd >= gf->family_cmd_size || gf->family_cmds[ghdr->cmd].cmd_cb == NULL) {
|
|
NLP_LOG(LOG_DEBUG, nlp, "family %s: invalid cmd %d",
|
|
gf->family_name, ghdr->cmd);
|
|
return (ENOTSUP);
|
|
}
|
|
|
|
struct genl_cmd *cmd = &gf->family_cmds[ghdr->cmd];
|
|
|
|
if (cmd->cmd_priv != 0 && !nlp_has_priv(nlp, cmd->cmd_priv)) {
|
|
NLP_LOG(LOG_DEBUG, nlp, "family %s: cmd %d priv_check() failed",
|
|
gf->family_name, ghdr->cmd);
|
|
return (EPERM);
|
|
}
|
|
|
|
NLP_LOG(LOG_DEBUG2, nlp, "received family %s cmd %s(%d) len %d",
|
|
gf->family_name, cmd->cmd_name, ghdr->cmd, hdr->nlmsg_len);
|
|
|
|
error = cmd->cmd_cb(hdr, npt);
|
|
|
|
return (error);
|
|
}
|
|
|
|
static uint32_t
|
|
get_cmd_flags(const struct genl_cmd *cmd)
|
|
{
|
|
uint32_t flags = cmd->cmd_flags;
|
|
if (cmd->cmd_priv != 0)
|
|
flags |= GENL_ADMIN_PERM;
|
|
return (flags);
|
|
}
|
|
|
|
static int
|
|
dump_family(struct nlmsghdr *hdr, struct genlmsghdr *ghdr,
|
|
const struct genl_family *gf, struct nl_writer *nw)
|
|
{
|
|
if (!nlmsg_reply(nw, hdr, sizeof(struct genlmsghdr)))
|
|
goto enomem;
|
|
|
|
struct genlmsghdr *ghdr_new = nlmsg_reserve_object(nw, struct genlmsghdr);
|
|
ghdr_new->cmd = ghdr->cmd;
|
|
ghdr_new->version = gf->family_version;
|
|
ghdr_new->reserved = 0;
|
|
|
|
nlattr_add_string(nw, CTRL_ATTR_FAMILY_NAME, gf->family_name);
|
|
nlattr_add_u16(nw, CTRL_ATTR_FAMILY_ID, gf->family_id);
|
|
nlattr_add_u32(nw, CTRL_ATTR_VERSION, gf->family_version);
|
|
nlattr_add_u32(nw, CTRL_ATTR_HDRSIZE, gf->family_hdrsize);
|
|
nlattr_add_u32(nw, CTRL_ATTR_MAXATTR, gf->family_attr_max);
|
|
|
|
if (gf->family_cmd_size > 0) {
|
|
int off = nlattr_add_nested(nw, CTRL_ATTR_OPS);
|
|
if (off == 0)
|
|
goto enomem;
|
|
for (int i = 0, cnt=0; i < gf->family_cmd_size; i++) {
|
|
struct genl_cmd *cmd = &gf->family_cmds[i];
|
|
if (cmd->cmd_cb == NULL)
|
|
continue;
|
|
int cmd_off = nlattr_add_nested(nw, ++cnt);
|
|
if (cmd_off == 0)
|
|
goto enomem;
|
|
|
|
nlattr_add_u32(nw, CTRL_ATTR_OP_ID, cmd->cmd_num);
|
|
nlattr_add_u32(nw, CTRL_ATTR_OP_FLAGS, get_cmd_flags(cmd));
|
|
nlattr_set_len(nw, cmd_off);
|
|
}
|
|
nlattr_set_len(nw, off);
|
|
}
|
|
if (gf->family_num_groups > 0) {
|
|
int off = nlattr_add_nested(nw, CTRL_ATTR_MCAST_GROUPS);
|
|
if (off == 0)
|
|
goto enomem;
|
|
for (int i = 0, cnt = 0; i < MAX_GROUPS; i++) {
|
|
struct genl_group *gg = genl_get_group(i);
|
|
if (gg == NULL || gg->group_family != gf)
|
|
continue;
|
|
|
|
int cmd_off = nlattr_add_nested(nw, ++cnt);
|
|
if (cmd_off == 0)
|
|
goto enomem;
|
|
nlattr_add_u32(nw, CTRL_ATTR_MCAST_GRP_ID, i + MIN_GROUP_NUM);
|
|
nlattr_add_string(nw, CTRL_ATTR_MCAST_GRP_NAME, gg->group_name);
|
|
nlattr_set_len(nw, cmd_off);
|
|
}
|
|
nlattr_set_len(nw, off);
|
|
}
|
|
if (nlmsg_end(nw))
|
|
return (0);
|
|
enomem:
|
|
NL_LOG(LOG_DEBUG, "unable to dump family %s state (ENOMEM)", gf->family_name);
|
|
nlmsg_abort(nw);
|
|
return (ENOMEM);
|
|
}
|
|
|
|
|
|
/* Declare ourself as a user */
|
|
static void nlctrl_notify(void *arg, const struct genl_family *gf, int action);
|
|
static eventhandler_tag family_event_tag;
|
|
|
|
static uint32_t ctrl_family_id;
|
|
static uint32_t ctrl_group_id;
|
|
|
|
struct nl_parsed_family {
|
|
uint32_t family_id;
|
|
char *family_name;
|
|
uint8_t version;
|
|
};
|
|
|
|
#define _IN(_field) offsetof(struct genlmsghdr, _field)
|
|
#define _OUT(_field) offsetof(struct nl_parsed_family, _field)
|
|
static const struct nlfield_parser nlf_p_generic[] = {
|
|
{ .off_in = _IN(version), .off_out = _OUT(version), .cb = nlf_get_u8 },
|
|
};
|
|
|
|
static struct nlattr_parser nla_p_generic[] = {
|
|
{ .type = CTRL_ATTR_FAMILY_ID , .off = _OUT(family_id), .cb = nlattr_get_uint16 },
|
|
{ .type = CTRL_ATTR_FAMILY_NAME , .off = _OUT(family_name), .cb = nlattr_get_string },
|
|
};
|
|
#undef _IN
|
|
#undef _OUT
|
|
NL_DECLARE_PARSER(genl_parser, struct genlmsghdr, nlf_p_generic, nla_p_generic);
|
|
|
|
static bool
|
|
match_family(const struct genl_family *gf, const struct nl_parsed_family *attrs)
|
|
{
|
|
if (gf->family_name == NULL)
|
|
return (false);
|
|
if (attrs->family_id != 0 && attrs->family_id != gf->family_id)
|
|
return (false);
|
|
if (attrs->family_name != NULL && strcmp(attrs->family_name, gf->family_name))
|
|
return (false);
|
|
return (true);
|
|
}
|
|
|
|
static int
|
|
nlctrl_handle_getfamily(struct nlmsghdr *hdr, struct nl_pstate *npt)
|
|
{
|
|
int error = 0;
|
|
|
|
struct nl_parsed_family attrs = {};
|
|
error = nl_parse_nlmsg(hdr, &genl_parser, npt, &attrs);
|
|
if (error != 0)
|
|
return (error);
|
|
|
|
struct genlmsghdr ghdr = {
|
|
.cmd = CTRL_CMD_NEWFAMILY,
|
|
};
|
|
|
|
if (attrs.family_id != 0 || attrs.family_name != NULL) {
|
|
/* Resolve request */
|
|
for (int i = 0; i < MAX_FAMILIES; i++) {
|
|
struct genl_family *gf = genl_get_family(i);
|
|
if (gf != NULL && match_family(gf, &attrs)) {
|
|
error = dump_family(hdr, &ghdr, gf, npt->nw);
|
|
return (error);
|
|
}
|
|
}
|
|
return (ENOENT);
|
|
}
|
|
|
|
hdr->nlmsg_flags = hdr->nlmsg_flags | NLM_F_MULTI;
|
|
for (int i = 0; i < MAX_FAMILIES; i++) {
|
|
struct genl_family *gf = genl_get_family(i);
|
|
if (gf != NULL && match_family(gf, &attrs)) {
|
|
error = dump_family(hdr, &ghdr, gf, npt->nw);
|
|
if (error != 0)
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!nlmsg_end_dump(npt->nw, error, hdr)) {
|
|
NL_LOG(LOG_DEBUG, "Unable to finalize the dump");
|
|
return (ENOMEM);
|
|
}
|
|
|
|
return (error);
|
|
}
|
|
|
|
static void
|
|
nlctrl_notify(void *arg __unused, const struct genl_family *gf, int cmd)
|
|
{
|
|
struct nlmsghdr hdr = {.nlmsg_type = NETLINK_GENERIC };
|
|
struct genlmsghdr ghdr = { .cmd = cmd };
|
|
struct nl_writer nw = {};
|
|
|
|
if (nlmsg_get_group_writer(&nw, NLMSG_SMALL, NETLINK_GENERIC, ctrl_group_id)) {
|
|
dump_family(&hdr, &ghdr, gf, &nw);
|
|
nlmsg_flush(&nw);
|
|
return;
|
|
}
|
|
NL_LOG(LOG_DEBUG, "error allocating group writer");
|
|
}
|
|
|
|
static const struct genl_cmd nlctrl_cmds[] = {
|
|
{
|
|
.cmd_num = CTRL_CMD_GETFAMILY,
|
|
.cmd_name = "GETFAMILY",
|
|
.cmd_cb = nlctrl_handle_getfamily,
|
|
.cmd_flags = GENL_CMD_CAP_DO | GENL_CMD_CAP_DUMP | GENL_CMD_CAP_HASPOL,
|
|
},
|
|
};
|
|
|
|
static const struct nlhdr_parser *all_parsers[] = { &genl_parser };
|
|
|
|
static void
|
|
genl_load_all(void *u __unused)
|
|
{
|
|
NL_VERIFY_PARSERS(all_parsers);
|
|
ctrl_family_id = genl_register_family(CTRL_FAMILY_NAME, 0, 2, CTRL_ATTR_MAX);
|
|
genl_register_cmds(CTRL_FAMILY_NAME, nlctrl_cmds, NL_ARRAY_LEN(nlctrl_cmds));
|
|
ctrl_group_id = genl_register_group(CTRL_FAMILY_NAME, "notify");
|
|
family_event_tag = EVENTHANDLER_REGISTER(genl_family_event, nlctrl_notify, NULL,
|
|
EVENTHANDLER_PRI_ANY);
|
|
netlink_register_proto(NETLINK_GENERIC, "NETLINK_GENERIC", genl_handle_message);
|
|
}
|
|
SYSINIT(genl_load_all, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, genl_load_all, NULL);
|
|
|
|
static void
|
|
genl_unload(void *u __unused)
|
|
{
|
|
netlink_unregister_proto(NETLINK_GENERIC);
|
|
EVENTHANDLER_DEREGISTER(genl_family_event, family_event_tag);
|
|
genl_unregister_family(CTRL_FAMILY_NAME);
|
|
NET_EPOCH_WAIT();
|
|
}
|
|
SYSUNINIT(genl_unload, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, genl_unload, NULL);
|