1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2022 Alexander V. Chernikov <melifaro@FreeBSD.org> 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 #include <sys/cdefs.h> 29 __FBSDID("$FreeBSD$"); 30 #include <sys/types.h> 31 #include <sys/ck.h> 32 #include <sys/epoch.h> 33 #include <sys/kernel.h> 34 #include <sys/malloc.h> 35 #include <sys/socket.h> 36 37 #include <net/route.h> 38 #include <net/route/route_ctl.h> 39 #include <netlink/netlink.h> 40 #include <netlink/netlink_ctl.h> 41 #include <netlink/netlink_route.h> 42 #include <netlink/route/route_var.h> 43 44 #define DEBUG_MOD_NAME nl_route_core 45 #define DEBUG_MAX_LEVEL LOG_DEBUG3 46 #include <netlink/netlink_debug.h> 47 _DECLARE_DEBUG(LOG_DEBUG); 48 49 #define HANDLER_MAX_NUM (NL_RTM_MAX + 10) 50 static const struct rtnl_cmd_handler *rtnl_handler[HANDLER_MAX_NUM] = {}; 51 52 bool 53 rtnl_register_messages(const struct rtnl_cmd_handler *handlers, int count) 54 { 55 for (int i = 0; i < count; i++) { 56 if (handlers[i].cmd >= HANDLER_MAX_NUM) 57 return (false); 58 MPASS(rtnl_handler[handlers[i].cmd] == NULL); 59 } 60 for (int i = 0; i < count; i++) 61 rtnl_handler[handlers[i].cmd] = &handlers[i]; 62 return (true); 63 } 64 65 /* 66 * Handler called by netlink subsystem when matching netlink message is received 67 */ 68 static int 69 rtnl_handle_message(struct nlmsghdr *hdr, struct nl_pstate *npt) 70 { 71 const struct rtnl_cmd_handler *cmd; 72 struct epoch_tracker et; 73 struct nlpcb *nlp = npt->nlp; 74 int error = 0; 75 76 if (__predict_false(hdr->nlmsg_type >= HANDLER_MAX_NUM)) { 77 NLMSG_REPORT_ERR_MSG(npt, "unknown message type: %d", hdr->nlmsg_type); 78 return (ENOTSUP); 79 } 80 81 cmd = rtnl_handler[hdr->nlmsg_type]; 82 if (__predict_false(cmd == NULL)) { 83 NLMSG_REPORT_ERR_MSG(npt, "unknown message type: %d", hdr->nlmsg_type); 84 return (ENOTSUP); 85 } 86 87 NLP_LOG(LOG_DEBUG2, nlp, "received msg %s(%d) len %d", cmd->name, 88 hdr->nlmsg_type, hdr->nlmsg_len); 89 90 if (cmd->priv != 0 && !nlp_has_priv(nlp, cmd->priv)) { 91 NLP_LOG(LOG_DEBUG2, nlp, "priv %d check failed for msg %s", cmd->priv, cmd->name); 92 return (EPERM); 93 } else if (cmd->priv != 0) 94 NLP_LOG(LOG_DEBUG3, nlp, "priv %d check passed for msg %s", cmd->priv, cmd->name); 95 96 if (!nlp_unconstrained_vnet(nlp) && (cmd->flags & RTNL_F_ALLOW_NONVNET_JAIL) == 0) { 97 NLP_LOG(LOG_DEBUG2, nlp, "jail check failed for msg %s", cmd->name); 98 return (EPERM); 99 } 100 101 bool need_epoch = !(cmd->flags & RTNL_F_NOEPOCH); 102 103 if (need_epoch) 104 NET_EPOCH_ENTER(et); 105 error = cmd->cb(hdr, nlp, npt); 106 if (need_epoch) 107 NET_EPOCH_EXIT(et); 108 109 NLP_LOG(LOG_DEBUG3, nlp, "message %s -> error %d", cmd->name, error); 110 111 return (error); 112 } 113 114 static struct rtbridge nlbridge = { 115 .route_f = rtnl_handle_route_event, 116 .ifmsg_f = rtnl_handle_ifnet_event, 117 }; 118 static struct rtbridge *nlbridge_orig_p; 119 120 static void 121 rtnl_load(void *u __unused) 122 { 123 NL_LOG(LOG_DEBUG2, "rtnl loading"); 124 nlbridge_orig_p = netlink_callback_p; 125 netlink_callback_p = &nlbridge; 126 rtnl_neighs_init(); 127 rtnl_ifaces_init(); 128 rtnl_nexthops_init(); 129 rtnl_routes_init(); 130 netlink_register_proto(NETLINK_ROUTE, "NETLINK_ROUTE", rtnl_handle_message); 131 } 132 SYSINIT(rtnl_load, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, rtnl_load, NULL); 133 134 static void 135 rtnl_unload(void *u __unused) 136 { 137 netlink_callback_p = nlbridge_orig_p; 138 rtnl_ifaces_destroy(); 139 rtnl_neighs_destroy(); 140 141 /* Wait till all consumers read nlbridge data */ 142 NET_EPOCH_WAIT(); 143 } 144 SYSUNINIT(rtnl_unload, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, rtnl_unload, NULL); 145