xref: /freebsd/sys/netlink/route/iface.c (revision 4358928e235c1e188ad6b4650d78bcceb225b909)
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 "opt_netlink.h"
29 
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32 #include "opt_inet.h"
33 #include "opt_inet6.h"
34 #include <sys/types.h>
35 #include <sys/eventhandler.h>
36 #include <sys/kernel.h>
37 #include <sys/jail.h>
38 #include <sys/malloc.h>
39 #include <sys/socket.h>
40 #include <sys/sockio.h>
41 #include <sys/syslog.h>
42 
43 #include <net/if.h>
44 #include <net/if_dl.h>
45 #include <net/if_media.h>
46 #include <net/if_var.h>
47 #include <net/if_clone.h>
48 #include <net/route.h>
49 #include <net/route/nhop.h>
50 #include <net/route/route_ctl.h>
51 #include <netlink/netlink.h>
52 #include <netlink/netlink_ctl.h>
53 #include <netlink/netlink_route.h>
54 #include <netlink/route/route_var.h>
55 
56 #include <netinet6/scope6_var.h> /* scope deembedding */
57 
58 #define	DEBUG_MOD_NAME	nl_iface
59 #define	DEBUG_MAX_LEVEL	LOG_DEBUG3
60 #include <netlink/netlink_debug.h>
61 _DECLARE_DEBUG(LOG_DEBUG);
62 
63 struct netlink_walkargs {
64 	struct nl_writer *nw;
65 	struct nlmsghdr hdr;
66 	struct nlpcb *so;
67 	struct ucred *cred;
68 	uint32_t fibnum;
69 	int family;
70 	int error;
71 	int count;
72 	int dumped;
73 };
74 
75 static eventhandler_tag ifdetach_event, ifattach_event, iflink_event, ifaddr_event;
76 
77 static SLIST_HEAD(, nl_cloner) nl_cloners = SLIST_HEAD_INITIALIZER(nl_cloners);
78 
79 static struct sx rtnl_cloner_lock;
80 SX_SYSINIT(rtnl_cloner_lock, &rtnl_cloner_lock, "rtnl cloner lock");
81 
82 static struct nl_cloner *rtnl_iface_find_cloner_locked(const char *name);
83 
84 /*
85  * RTM_GETLINK request
86  * sendto(3, {{len=32, type=RTM_GETLINK, flags=NLM_F_REQUEST|NLM_F_DUMP, seq=1641940952, pid=0},
87  *  {ifi_family=AF_INET, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0}}, 32, 0, NULL, 0) = 32
88  *
89  * Reply:
90  * {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_ETHER, ifi_index=if_nametoindex("enp0s31f6"), ifi_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_MULTICAST|IFF_LOWER_UP, ifi_change=0},
91 {{nla_len=10, nla_type=IFLA_ADDRESS}, "\xfe\x54\x00\x52\x3e\x90"}
92 
93 [
94 {{nla_len=14, nla_type=IFLA_IFNAME}, "enp0s31f6"},
95 {{nla_len=8, nla_type=IFLA_TXQLEN}, 1000},
96 {{nla_len=5, nla_type=IFLA_OPERSTATE}, 6},
97 {{nla_len=5, nla_type=IFLA_LINKMODE}, 0},
98 {{nla_len=8, nla_type=IFLA_MTU}, 1500},
99 {{nla_len=8, nla_type=IFLA_MIN_MTU}, 68},
100  {{nla_len=8, nla_type=IFLA_MAX_MTU}, 9000},
101 {{nla_len=8, nla_type=IFLA_GROUP}, 0},
102 {{nla_len=8, nla_type=IFLA_PROMISCUITY}, 0},
103 {{nla_len=8, nla_type=IFLA_NUM_TX_QUEUES}, 1},
104 {{nla_len=8, nla_type=IFLA_GSO_MAX_SEGS}, 65535},
105 {{nla_len=8, nla_type=IFLA_GSO_MAX_SIZE}, 65536},
106 {{nla_len=8, nla_type=IFLA_NUM_RX_QUEUES}, 1},
107 {{nla_len=5, nla_type=IFLA_CARRIER}, 1},
108 {{nla_len=13, nla_type=IFLA_QDISC}, "fq_codel"},
109 {{nla_len=8, nla_type=IFLA_CARRIER_CHANGES}, 2},
110 {{nla_len=5, nla_type=IFLA_PROTO_DOWN}, 0},
111 {{nla_len=8, nla_type=IFLA_CARRIER_UP_COUNT}, 1},
112 {{nla_len=8, nla_type=IFLA_CARRIER_DOWN_COUNT}, 1},
113  */
114 
115 struct if_state {
116 	uint8_t		ifla_operstate;
117 	uint8_t		ifla_carrier;
118 };
119 
120 static void
121 get_operstate_ether(struct ifnet *ifp, struct if_state *pstate)
122 {
123 	struct ifmediareq ifmr = {};
124 	int error;
125 	error = (*ifp->if_ioctl)(ifp, SIOCGIFMEDIA, (void *)&ifmr);
126 
127 	if (error != 0) {
128 		NL_LOG(LOG_DEBUG, "error calling SIOCGIFMEDIA on %s: %d",
129 		    if_name(ifp), error);
130 		return;
131 	}
132 
133 	switch (IFM_TYPE(ifmr.ifm_active)) {
134 	case IFM_ETHER:
135 		if (ifmr.ifm_status & IFM_ACTIVE) {
136 			pstate->ifla_carrier = 1;
137 			if (ifp->if_flags & IFF_MONITOR)
138 				pstate->ifla_operstate = IF_OPER_DORMANT;
139 			else
140 				pstate->ifla_operstate = IF_OPER_UP;
141 		} else
142 			pstate->ifla_operstate = IF_OPER_DOWN;
143 	}
144 }
145 
146 static bool
147 get_stats(struct nl_writer *nw, struct ifnet *ifp)
148 {
149 	struct rtnl_link_stats64 *stats;
150 
151 	int nla_len = sizeof(struct nlattr) + sizeof(*stats);
152 	struct nlattr *nla = nlmsg_reserve_data(nw, nla_len, struct nlattr);
153 	if (nla == NULL)
154 		return (false);
155 	nla->nla_type = IFLA_STATS64;
156 	nla->nla_len = nla_len;
157 	stats = (struct rtnl_link_stats64 *)(nla + 1);
158 
159 	stats->rx_packets = ifp->if_get_counter(ifp, IFCOUNTER_IPACKETS);
160 	stats->tx_packets = ifp->if_get_counter(ifp, IFCOUNTER_OPACKETS);
161 	stats->rx_bytes = ifp->if_get_counter(ifp, IFCOUNTER_IBYTES);
162 	stats->tx_bytes = ifp->if_get_counter(ifp, IFCOUNTER_OBYTES);
163 	stats->rx_errors = ifp->if_get_counter(ifp, IFCOUNTER_IERRORS);
164 	stats->tx_errors = ifp->if_get_counter(ifp, IFCOUNTER_OERRORS);
165 	stats->rx_dropped = ifp->if_get_counter(ifp, IFCOUNTER_IQDROPS);
166 	stats->tx_dropped = ifp->if_get_counter(ifp, IFCOUNTER_OQDROPS);
167 	stats->multicast = ifp->if_get_counter(ifp, IFCOUNTER_IMCASTS);
168 	stats->rx_nohandler = ifp->if_get_counter(ifp, IFCOUNTER_NOPROTO);
169 
170 	return (true);
171 }
172 
173 static void
174 get_operstate(struct ifnet *ifp, struct if_state *pstate)
175 {
176 	pstate->ifla_operstate = IF_OPER_UNKNOWN;
177 	pstate->ifla_carrier = 0; /* no carrier */
178 
179 	switch (ifp->if_type) {
180 	case IFT_ETHER:
181 	case IFT_L2VLAN:
182 		get_operstate_ether(ifp, pstate);
183 		break;
184 	default:
185 		/* Map admin state to the operstate */
186 		if (ifp->if_flags & IFF_UP) {
187 			pstate->ifla_operstate = IF_OPER_UP;
188 			pstate->ifla_carrier = 1;
189 		} else
190 			pstate->ifla_operstate = IF_OPER_DOWN;
191 		break;
192 	}
193 }
194 
195 static unsigned
196 ifp_flags_to_netlink(const struct ifnet *ifp)
197 {
198         return (ifp->if_flags | ifp->if_drv_flags);
199 }
200 
201 #define LLADDR_CONST(s) ((const void *)((s)->sdl_data + (s)->sdl_nlen))
202 static bool
203 dump_sa(struct nl_writer *nw, int attr, const struct sockaddr *sa)
204 {
205         uint32_t addr_len = 0;
206         const void *addr_data = NULL;
207 #ifdef INET6
208         struct in6_addr addr6;
209 #endif
210 
211         if (sa == NULL)
212                 return (true);
213 
214         switch (sa->sa_family) {
215 #ifdef INET
216         case AF_INET:
217                 addr_len = sizeof(struct in_addr);
218                 addr_data = &((const struct sockaddr_in *)sa)->sin_addr;
219                 break;
220 #endif
221 #ifdef INET6
222         case AF_INET6:
223                 in6_splitscope(&((const struct sockaddr_in6 *)sa)->sin6_addr, &addr6, &addr_len);
224                 addr_len = sizeof(struct in6_addr);
225                 addr_data = &addr6;
226                 break;
227 #endif
228         case AF_LINK:
229                 addr_len = ((const struct sockaddr_dl *)sa)->sdl_alen;
230                 addr_data = LLADDR_CONST((const struct sockaddr_dl *)sa);
231                 break;
232         default:
233                 NL_LOG(LOG_DEBUG, "unsupported family: %d, skipping", sa->sa_family);
234                 return (true);
235         }
236 
237         return (nlattr_add(nw, attr, addr_len, addr_data));
238 }
239 
240 /*
241  * Dumps interface state, properties and metrics.
242  * @nw: message writer
243  * @ifp: target interface
244  * @hdr: template header
245  * @if_flags_mask: changed if_[drv]_flags bitmask
246  *
247  * This function is called without epoch and MAY sleep.
248  */
249 static bool
250 dump_iface(struct nl_writer *nw, struct ifnet *ifp, const struct nlmsghdr *hdr,
251     int if_flags_mask)
252 {
253         struct ifinfomsg *ifinfo;
254 
255         NL_LOG(LOG_DEBUG3, "dumping interface %s data", if_name(ifp));
256 
257 	if (!nlmsg_reply(nw, hdr, sizeof(struct ifinfomsg)))
258 		goto enomem;
259 
260         ifinfo = nlmsg_reserve_object(nw, struct ifinfomsg);
261         ifinfo->ifi_family = AF_UNSPEC;
262         ifinfo->__ifi_pad = 0;
263         ifinfo->ifi_type = ifp->if_type;
264         ifinfo->ifi_index = ifp->if_index;
265         ifinfo->ifi_flags = ifp_flags_to_netlink(ifp);
266         ifinfo->ifi_change = if_flags_mask;
267 
268 	struct if_state ifs = {};
269 	get_operstate(ifp, &ifs);
270 
271 	if (ifs.ifla_operstate == IF_OPER_UP)
272 		ifinfo->ifi_flags |= IFF_LOWER_UP;
273 
274         nlattr_add_string(nw, IFLA_IFNAME, if_name(ifp));
275         nlattr_add_u8(nw, IFLA_OPERSTATE, ifs.ifla_operstate);
276         nlattr_add_u8(nw, IFLA_CARRIER, ifs.ifla_carrier);
277 
278 /*
279         nlattr_add_u8(nw, IFLA_PROTO_DOWN, val);
280         nlattr_add_u8(nw, IFLA_LINKMODE, val);
281 */
282         if ((ifp->if_addr != NULL)) {
283                 dump_sa(nw, IFLA_ADDRESS, ifp->if_addr->ifa_addr);
284         }
285 
286         if ((ifp->if_broadcastaddr != NULL)) {
287 		nlattr_add(nw, IFLA_BROADCAST, ifp->if_addrlen,
288 		    ifp->if_broadcastaddr);
289         }
290 
291         nlattr_add_u32(nw, IFLA_MTU, ifp->if_mtu);
292 /*
293         nlattr_add_u32(nw, IFLA_MIN_MTU, 60);
294         nlattr_add_u32(nw, IFLA_MAX_MTU, 9000);
295         nlattr_add_u32(nw, IFLA_GROUP, 0);
296 */
297 
298 	if (ifp->if_description != NULL)
299 		nlattr_add_string(nw, IFLA_IFALIAS, ifp->if_description);
300 
301 	get_stats(nw, ifp);
302 
303 	uint32_t val = (ifp->if_flags & IFF_PROMISC) != 0;
304         nlattr_add_u32(nw, IFLA_PROMISCUITY, val);
305 
306 	sx_slock(&rtnl_cloner_lock);
307 	struct nl_cloner *cloner = rtnl_iface_find_cloner_locked(ifp->if_dname);
308 	if (cloner != NULL && cloner->dump_f != NULL) {
309 		/* Ignore any dump error */
310 		cloner->dump_f(ifp, nw);
311 	}
312 	sx_sunlock(&rtnl_cloner_lock);
313 
314         if (nlmsg_end(nw))
315 		return (true);
316 
317 enomem:
318         NL_LOG(LOG_DEBUG, "unable to dump interface %s state (ENOMEM)", if_name(ifp));
319         nlmsg_abort(nw);
320         return (false);
321 }
322 
323 static bool
324 check_ifmsg(void *hdr, struct nl_pstate *npt)
325 {
326 	struct ifinfomsg *ifm = hdr;
327 
328 	if (ifm->__ifi_pad != 0 || ifm->ifi_type != 0 ||
329 	    ifm->ifi_flags != 0 || ifm->ifi_change != 0) {
330 		nlmsg_report_err_msg(npt,
331 		    "strict checking: non-zero values in ifinfomsg header");
332 		return (false);
333 	}
334 
335 	return (true);
336 }
337 
338 #define	_IN(_field)	offsetof(struct ifinfomsg, _field)
339 #define	_OUT(_field)	offsetof(struct nl_parsed_link, _field)
340 static const struct nlfield_parser nlf_p_if[] = {
341 	{ .off_in = _IN(ifi_type), .off_out = _OUT(ifi_type), .cb = nlf_get_u16 },
342 	{ .off_in = _IN(ifi_index), .off_out = _OUT(ifi_index), .cb = nlf_get_u32 },
343 	{ .off_in = _IN(ifi_flags), .off_out = _OUT(ifi_flags), .cb = nlf_get_u32 },
344 	{ .off_in = _IN(ifi_change), .off_out = _OUT(ifi_change), .cb = nlf_get_u32 },
345 };
346 
347 static const struct nlattr_parser nla_p_linfo[] = {
348 	{ .type = IFLA_INFO_KIND, .off = _OUT(ifla_cloner), .cb = nlattr_get_stringn },
349 	{ .type = IFLA_INFO_DATA, .off = _OUT(ifla_idata), .cb = nlattr_get_nla },
350 };
351 NL_DECLARE_ATTR_PARSER(linfo_parser, nla_p_linfo);
352 
353 static const struct nlattr_parser nla_p_if[] = {
354 	{ .type = IFLA_IFNAME, .off = _OUT(ifla_ifname), .cb = nlattr_get_string },
355 	{ .type = IFLA_MTU, .off = _OUT(ifla_mtu), .cb = nlattr_get_uint32 },
356 	{ .type = IFLA_LINK, .off = _OUT(ifi_index), .cb = nlattr_get_uint32 },
357 	{ .type = IFLA_LINKINFO, .arg = &linfo_parser, .cb = nlattr_get_nested },
358 	{ .type = IFLA_IFALIAS, .off = _OUT(ifla_ifalias), .cb = nlattr_get_string },
359 	{ .type = IFLA_GROUP, .off = _OUT(ifla_group), .cb = nlattr_get_string },
360 	{ .type = IFLA_ALT_IFNAME, .off = _OUT(ifla_ifname), .cb = nlattr_get_string },
361 };
362 #undef _IN
363 #undef _OUT
364 NL_DECLARE_STRICT_PARSER(ifmsg_parser, struct ifinfomsg, check_ifmsg, nlf_p_if, nla_p_if);
365 
366 static bool
367 match_iface(struct ifnet *ifp, void *_arg)
368 {
369 	struct nl_parsed_link *attrs = (struct nl_parsed_link *)_arg;
370 
371 	if (attrs->ifi_index != 0 && attrs->ifi_index != ifp->if_index)
372 		return (false);
373 	if (attrs->ifi_type != 0 && attrs->ifi_index != ifp->if_type)
374 		return (false);
375 	if (attrs->ifla_ifname != NULL && strcmp(attrs->ifla_ifname, if_name(ifp)))
376 		return (false);
377 	/* TODO: add group match */
378 
379 	return (true);
380 }
381 
382 static int
383 dump_cb(struct ifnet *ifp, void *_arg)
384 {
385 	struct netlink_walkargs *wa = (struct netlink_walkargs *)_arg;
386 	if (!dump_iface(wa->nw, ifp, &wa->hdr, 0))
387 		return (ENOMEM);
388 	return (0);
389 }
390 
391 /*
392  * {nlmsg_len=52, nlmsg_type=RTM_GETLINK, nlmsg_flags=NLM_F_REQUEST, nlmsg_seq=1662842818, nlmsg_pid=0},
393  *  {ifi_family=AF_PACKET, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0},
394  *   [
395  *    [{nla_len=10, nla_type=IFLA_IFNAME}, "vnet9"],
396  *    [{nla_len=8, nla_type=IFLA_EXT_MASK}, RTEXT_FILTER_VF]
397  *   ]
398  */
399 static int
400 rtnl_handle_getlink(struct nlmsghdr *hdr, struct nlpcb *nlp, struct nl_pstate *npt)
401 {
402 	struct epoch_tracker et;
403         struct ifnet *ifp;
404 	int error = 0;
405 
406 	struct nl_parsed_link attrs = {};
407 	error = nl_parse_nlmsg(hdr, &ifmsg_parser, npt, &attrs);
408 	if (error != 0)
409 		return (error);
410 
411 	struct netlink_walkargs wa = {
412 		.so = nlp,
413 		.nw = npt->nw,
414 		.hdr.nlmsg_pid = hdr->nlmsg_pid,
415 		.hdr.nlmsg_seq = hdr->nlmsg_seq,
416 		.hdr.nlmsg_flags = hdr->nlmsg_flags,
417 		.hdr.nlmsg_type = NL_RTM_NEWLINK,
418 	};
419 
420 	/* Fast track for an interface w/ explicit name or index match */
421 	if ((attrs.ifi_index != 0) || (attrs.ifla_ifname != NULL)) {
422 		if (attrs.ifi_index != 0) {
423 			NLP_LOG(LOG_DEBUG3, nlp, "fast track -> searching index %u",
424 			    attrs.ifi_index);
425 			NET_EPOCH_ENTER(et);
426 			ifp = ifnet_byindex_ref(attrs.ifi_index);
427 			NET_EPOCH_EXIT(et);
428 		} else {
429 			NLP_LOG(LOG_DEBUG3, nlp, "fast track -> searching name %s",
430 			    attrs.ifla_ifname);
431 			ifp = ifunit_ref(attrs.ifla_ifname);
432 		}
433 
434 		if (ifp != NULL) {
435 			if (match_iface(ifp, &attrs)) {
436 				if (!dump_iface(wa.nw, ifp, &wa.hdr, 0))
437 					error = ENOMEM;
438 			} else
439 				error = ENODEV;
440 			if_rele(ifp);
441 		} else
442 			error = ENODEV;
443 		return (error);
444 	}
445 
446 	/* Always treat non-direct-match as a multipart message */
447 	wa.hdr.nlmsg_flags |= NLM_F_MULTI;
448 
449 	/*
450 	 * Fetching some link properties require performing ioctl's that may be blocking.
451 	 * Address it by saving referenced pointers of the matching links,
452 	 * exiting from epoch and going through the list one-by-one.
453 	 */
454 
455 	NL_LOG(LOG_DEBUG2, "Start dump");
456 	if_foreach_sleep(match_iface, &attrs, dump_cb, &wa);
457 	NL_LOG(LOG_DEBUG2, "End dump, iterated %d dumped %d", wa.count, wa.dumped);
458 
459 	if (!nlmsg_end_dump(wa.nw, error, &wa.hdr)) {
460                 NL_LOG(LOG_DEBUG, "Unable to finalize the dump");
461                 return (ENOMEM);
462         }
463 
464 	return (error);
465 }
466 
467 /*
468  * sendmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[
469  * {nlmsg_len=60, nlmsg_type=RTM_NEWLINK, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, nlmsg_seq=1662715618, nlmsg_pid=0},
470  *  {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0},
471  *   {nla_len=11, nla_type=IFLA_IFNAME}, "dummy0"],
472  *   [
473  *    {nla_len=16, nla_type=IFLA_LINKINFO},
474  *     [
475  *      {nla_len=9, nla_type=IFLA_INFO_KIND}, "dummy"...
476  *     ]
477  *    ]
478  */
479 
480 static int
481 rtnl_handle_dellink(struct nlmsghdr *hdr, struct nlpcb *nlp, struct nl_pstate *npt)
482 {
483 	struct epoch_tracker et;
484         struct ifnet *ifp;
485 	int error;
486 
487 	struct nl_parsed_link attrs = {};
488 	error = nl_parse_nlmsg(hdr, &ifmsg_parser, npt, &attrs);
489 	if (error != 0)
490 		return (error);
491 
492 	NET_EPOCH_ENTER(et);
493 	ifp = ifnet_byindex_ref(attrs.ifi_index);
494 	NET_EPOCH_EXIT(et);
495 	if (ifp == NULL) {
496 		NLP_LOG(LOG_DEBUG, nlp, "unable to find interface %u", attrs.ifi_index);
497 		return (ENOENT);
498 	}
499 	NLP_LOG(LOG_DEBUG3, nlp, "mapped ifindex %u to %s", attrs.ifi_index, if_name(ifp));
500 
501 	sx_xlock(&ifnet_detach_sxlock);
502 	error = if_clone_destroy(if_name(ifp));
503 	sx_xunlock(&ifnet_detach_sxlock);
504 
505 	NLP_LOG(LOG_DEBUG2, nlp, "deleting interface %s returned %d", if_name(ifp), error);
506 
507 	if_rele(ifp);
508 	return (error);
509 }
510 
511 /*
512  * New link:
513  * type=RTM_NEWLINK, flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_EXCL|NLM_F_CREATE, seq=1668185590, pid=0},
514  *   {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0}
515  *    [
516  *     {{nla_len=8, nla_type=IFLA_MTU}, 123},
517  *     {{nla_len=10, nla_type=IFLA_IFNAME}, "vlan1"},
518  *     {{nla_len=24, nla_type=IFLA_LINKINFO},
519  *      [
520  *       {{nla_len=8, nla_type=IFLA_INFO_KIND}, "vlan"...},
521  *       {{nla_len=12, nla_type=IFLA_INFO_DATA}, "\x06\x00\x01\x00\x7b\x00\x00\x00"}]}]}
522  *
523  * Update link:
524  * type=RTM_NEWLINK, flags=NLM_F_REQUEST|NLM_F_ACK, seq=1668185923, pid=0},
525  * {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_NETROM, ifi_index=if_nametoindex("lo"), ifi_flags=0, ifi_change=0},
526  * {{nla_len=8, nla_type=IFLA_MTU}, 123}}
527  *
528  *
529  * Check command availability:
530  * type=RTM_NEWLINK, flags=NLM_F_REQUEST|NLM_F_ACK, seq=0, pid=0},
531  *  {ifi_family=AF_UNSPEC, ifi_type=ARPHRD_NETROM, ifi_index=0, ifi_flags=0, ifi_change=0}
532  */
533 
534 
535 static int
536 create_link(struct nlmsghdr *hdr, struct nl_parsed_link *lattrs,
537     struct nlattr_bmask *bm, struct nlpcb *nlp, struct nl_pstate *npt)
538 {
539 	if (lattrs->ifla_ifname == NULL || strlen(lattrs->ifla_ifname) == 0) {
540 		NLMSG_REPORT_ERR_MSG(npt, "empty IFLA_IFNAME attribute");
541 		return (EINVAL);
542 	}
543 	if (lattrs->ifla_cloner == NULL || strlen(lattrs->ifla_cloner) == 0) {
544 		NLMSG_REPORT_ERR_MSG(npt, "empty IFLA_INFO_KIND attribute");
545 		return (EINVAL);
546 	}
547 
548 	bool found = false;
549 	int error = 0;
550 
551 	sx_slock(&rtnl_cloner_lock);
552 	struct nl_cloner *cloner = rtnl_iface_find_cloner_locked(lattrs->ifla_cloner);
553 	if (cloner != NULL) {
554 		found = true;
555 		error = cloner->create_f(lattrs, bm, nlp, npt);
556 	}
557 	sx_sunlock(&rtnl_cloner_lock);
558 
559 	if (!found)
560 		error = generic_cloner.create_f(lattrs, bm, nlp, npt);
561 
562 	return (error);
563 }
564 
565 static int
566 modify_link(struct nlmsghdr *hdr, struct nl_parsed_link *lattrs,
567     struct nlattr_bmask *bm, struct nlpcb *nlp, struct nl_pstate *npt)
568 {
569 	struct ifnet *ifp = NULL;
570 	struct epoch_tracker et;
571 
572 	if (lattrs->ifi_index == 0 && lattrs->ifla_ifname == NULL) {
573 		/*
574 		 * Applications like ip(8) verify RTM_NEWLINK command
575 		 * existence by calling it with empty arguments. Always
576 		 * return "innocent" error in that case.
577 		 */
578 		NLMSG_REPORT_ERR_MSG(npt, "empty ifi_index field");
579 		return (EPERM);
580 	}
581 
582 	if (lattrs->ifi_index != 0) {
583 		NET_EPOCH_ENTER(et);
584 		ifp = ifnet_byindex_ref(lattrs->ifi_index);
585 		NET_EPOCH_EXIT(et);
586 		if (ifp == NULL) {
587 			NLMSG_REPORT_ERR_MSG(npt, "unable to find interface #%u",
588 			    lattrs->ifi_index);
589 			return (ENOENT);
590 		}
591 	}
592 
593 	if (ifp == NULL && lattrs->ifla_ifname != NULL) {
594 		ifp = ifunit_ref(lattrs->ifla_ifname);
595 		if (ifp == NULL) {
596 			NLMSG_REPORT_ERR_MSG(npt, "unable to find interface %s",
597 			    lattrs->ifla_ifname);
598 			return (ENOENT);
599 		}
600 	}
601 
602 	MPASS(ifp != NULL);
603 
604 	/*
605 	 * There can be multiple kinds of interfaces:
606 	 * 1) cloned, with additional options
607 	 * 2) cloned, but w/o additional options
608 	 * 3) non-cloned (e.g. "physical).
609 	 *
610 	 * Thus, try to find cloner-specific callback and fallback to the
611 	 * "default" handler if not found.
612 	 */
613 	bool found = false;
614 	int error = 0;
615 
616 	sx_slock(&rtnl_cloner_lock);
617 	struct nl_cloner *cloner = rtnl_iface_find_cloner_locked(ifp->if_dname);
618 	if (cloner != NULL) {
619 		found = true;
620 		error = cloner->modify_f(ifp, lattrs, bm, nlp, npt);
621 	}
622 	sx_sunlock(&rtnl_cloner_lock);
623 
624 	if (!found)
625 		error = generic_cloner.modify_f(ifp, lattrs, bm, nlp, npt);
626 
627 	if_rele(ifp);
628 
629 	return (error);
630 }
631 
632 
633 static int
634 rtnl_handle_newlink(struct nlmsghdr *hdr, struct nlpcb *nlp, struct nl_pstate *npt)
635 {
636 	struct nlattr_bmask bm;
637 	int error;
638 
639 	struct nl_parsed_link attrs = {};
640 	error = nl_parse_nlmsg(hdr, &ifmsg_parser, npt, &attrs);
641 	if (error != 0)
642 		return (error);
643 	nl_get_attrs_bmask_nlmsg(hdr, &ifmsg_parser, &bm);
644 
645 	if (hdr->nlmsg_flags & NLM_F_CREATE)
646 		return (create_link(hdr, &attrs, &bm, nlp, npt));
647 	else
648 		return (modify_link(hdr, &attrs, &bm, nlp, npt));
649 }
650 
651 struct nl_parsed_ifa {
652 	uint8_t		ifa_family;
653 	uint8_t		ifa_prefixlen;
654 	uint8_t		ifa_scope;
655 	uint32_t	ifa_index;
656 	uint32_t	ifa_flags;
657 	struct sockaddr	*ifa_address;
658 	struct sockaddr	*ifa_local;
659 };
660 
661 #define	_IN(_field)	offsetof(struct ifaddrmsg, _field)
662 #define	_OUT(_field)	offsetof(struct nl_parsed_ifa, _field)
663 static const struct nlfield_parser nlf_p_ifa[] = {
664 	{ .off_in = _IN(ifa_family), .off_out = _OUT(ifa_family), .cb = nlf_get_u8 },
665 	{ .off_in = _IN(ifa_prefixlen), .off_out = _OUT(ifa_prefixlen), .cb = nlf_get_u8 },
666 	{ .off_in = _IN(ifa_scope), .off_out = _OUT(ifa_scope), .cb = nlf_get_u8 },
667 	{ .off_in = _IN(ifa_flags), .off_out = _OUT(ifa_flags), .cb = nlf_get_u8_u32 },
668 	{ .off_in = _IN(ifa_index), .off_out = _OUT(ifa_index), .cb = nlf_get_u32 },
669 };
670 
671 static const struct nlattr_parser nla_p_ifa[] = {
672 	{ .type = IFA_ADDRESS, .off = _OUT(ifa_address), .cb = nlattr_get_ip },
673 	{ .type = IFA_LOCAL, .off = _OUT(ifa_local), .cb = nlattr_get_ip },
674 	{ .type = IFA_FLAGS, .off = _OUT(ifa_flags), .cb = nlattr_get_uint32 },
675 };
676 #undef _IN
677 #undef _OUT
678 NL_DECLARE_PARSER(ifaddrmsg_parser, struct ifaddrmsg, nlf_p_ifa, nla_p_ifa);
679 
680 
681 /*
682 
683 {ifa_family=AF_INET, ifa_prefixlen=8, ifa_flags=IFA_F_PERMANENT, ifa_scope=RT_SCOPE_HOST, ifa_index=if_nametoindex("lo")},
684  [
685         {{nla_len=8, nla_type=IFA_ADDRESS}, inet_addr("127.0.0.1")},
686         {{nla_len=8, nla_type=IFA_LOCAL}, inet_addr("127.0.0.1")},
687         {{nla_len=7, nla_type=IFA_LABEL}, "lo"},
688         {{nla_len=8, nla_type=IFA_FLAGS}, IFA_F_PERMANENT},
689         {{nla_len=20, nla_type=IFA_CACHEINFO}, {ifa_prefered=4294967295, ifa_valid=4294967295, cstamp=3619, tstamp=3619}}]},
690 ---
691 
692 {{len=72, type=RTM_NEWADDR, flags=NLM_F_MULTI, seq=1642191126, pid=566735},
693  {ifa_family=AF_INET6, ifa_prefixlen=96, ifa_flags=IFA_F_PERMANENT, ifa_scope=RT_SCOPE_UNIVERSE, ifa_index=if_nametoindex("virbr0")},
694    [
695     {{nla_len=20, nla_type=IFA_ADDRESS}, inet_pton(AF_INET6, "2a01:4f8:13a:70c:ffff::1")},
696    {{nla_len=20, nla_type=IFA_CACHEINFO}, {ifa_prefered=4294967295, ifa_valid=4294967295, cstamp=4283, tstamp=4283}},
697    {{nla_len=8, nla_type=IFA_FLAGS}, IFA_F_PERMANENT}]},
698 */
699 
700 static uint8_t
701 ifa_get_scope(const struct ifaddr *ifa)
702 {
703         const struct sockaddr *sa;
704         uint8_t addr_scope = RT_SCOPE_UNIVERSE;
705 
706         sa = ifa->ifa_addr;
707         switch (sa->sa_family) {
708 #ifdef INET
709         case AF_INET:
710                 {
711                         struct in_addr addr;
712                         addr = ((const struct sockaddr_in *)sa)->sin_addr;
713                         if (IN_LOOPBACK(addr.s_addr))
714                                 addr_scope = RT_SCOPE_HOST;
715                         else if (IN_LINKLOCAL(addr.s_addr))
716                                 addr_scope = RT_SCOPE_LINK;
717                         break;
718                 }
719 #endif
720 #ifdef INET6
721         case AF_INET6:
722                 {
723                         const struct in6_addr *addr;
724                         addr = &((const struct sockaddr_in6 *)sa)->sin6_addr;
725                         if (IN6_IS_ADDR_LOOPBACK(addr))
726                                 addr_scope = RT_SCOPE_HOST;
727                         else if (IN6_IS_ADDR_LINKLOCAL(addr))
728                                 addr_scope = RT_SCOPE_LINK;
729                         break;
730                 }
731 #endif
732         }
733 
734         return (addr_scope);
735 }
736 
737 static uint8_t
738 inet6_get_plen(const struct in6_addr *addr)
739 {
740 
741 	return (bitcount32(addr->s6_addr32[0]) + bitcount32(addr->s6_addr32[1]) +
742 	    bitcount32(addr->s6_addr32[2]) + bitcount32(addr->s6_addr32[3]));
743 }
744 
745 static uint8_t
746 get_sa_plen(const struct sockaddr *sa)
747 {
748 #ifdef INET
749         const struct in_addr *paddr;
750 #endif
751 #ifdef INET6
752         const struct in6_addr *paddr6;
753 #endif
754 
755         switch (sa->sa_family) {
756 #ifdef INET
757         case AF_INET:
758                 paddr = &(((const struct sockaddr_in *)sa)->sin_addr);
759                 return bitcount32(paddr->s_addr);;
760 #endif
761 #ifdef INET6
762         case AF_INET6:
763                 paddr6 = &(((const struct sockaddr_in6 *)sa)->sin6_addr);
764                 return inet6_get_plen(paddr6);
765 #endif
766         }
767 
768         return (0);
769 }
770 
771 
772 /*
773  * {'attrs': [('IFA_ADDRESS', '12.0.0.1'),
774            ('IFA_LOCAL', '12.0.0.1'),
775            ('IFA_LABEL', 'eth10'),
776            ('IFA_FLAGS', 128),
777            ('IFA_CACHEINFO', {'ifa_preferred': 4294967295, 'ifa_valid': 4294967295, 'cstamp': 63745746, 'tstamp': 63745746})],
778  */
779 static bool
780 dump_iface_addr(struct nl_writer *nw, struct ifnet *ifp, struct ifaddr *ifa,
781     const struct nlmsghdr *hdr)
782 {
783         struct ifaddrmsg *ifamsg;
784         struct sockaddr *sa = ifa->ifa_addr;
785 
786         NL_LOG(LOG_DEBUG3, "dumping ifa %p type %s(%d) for interface %s",
787             ifa, rib_print_family(sa->sa_family), sa->sa_family, if_name(ifp));
788 
789 	if (!nlmsg_reply(nw, hdr, sizeof(struct ifaddrmsg)))
790 		goto enomem;
791 
792         ifamsg = nlmsg_reserve_object(nw, struct ifaddrmsg);
793         ifamsg->ifa_family = sa->sa_family;
794         ifamsg->ifa_prefixlen = get_sa_plen(ifa->ifa_netmask);
795         ifamsg->ifa_flags = 0; // ifa_flags is useless
796         ifamsg->ifa_scope = ifa_get_scope(ifa);
797         ifamsg->ifa_index = ifp->if_index;
798 
799 	if (ifp->if_flags & IFF_POINTOPOINT) {
800 		dump_sa(nw, IFA_ADDRESS, ifa->ifa_dstaddr);
801 		dump_sa(nw, IFA_LOCAL, sa);
802 	} else {
803 		dump_sa(nw, IFA_ADDRESS, sa);
804 #ifdef INET
805 		/*
806 		 * In most cases, IFA_ADDRESS == IFA_LOCAL
807 		 * Skip IFA_LOCAL for anything except INET
808 		 */
809 		if (sa->sa_family == AF_INET)
810 			dump_sa(nw, IFA_LOCAL, sa);
811 #endif
812 	}
813 	if (ifp->if_flags & IFF_BROADCAST)
814 		dump_sa(nw, IFA_BROADCAST, ifa->ifa_broadaddr);
815 
816         nlattr_add_string(nw, IFA_LABEL, if_name(ifp));
817 
818         uint32_t val = 0; // ifa->ifa_flags;
819         nlattr_add_u32(nw, IFA_FLAGS, val);
820 
821 	if (nlmsg_end(nw))
822 		return (true);
823 enomem:
824         NL_LOG(LOG_DEBUG, "Failed to dump ifa type %s(%d) for interface %s",
825             rib_print_family(sa->sa_family), sa->sa_family, if_name(ifp));
826         nlmsg_abort(nw);
827         return (false);
828 }
829 
830 static int
831 dump_iface_addrs(struct netlink_walkargs *wa, struct ifnet *ifp)
832 {
833         struct ifaddr *ifa;
834 
835 	CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
836 		if (wa->family != 0 && wa->family != ifa->ifa_addr->sa_family)
837 			continue;
838 		if (ifa->ifa_addr->sa_family == AF_LINK)
839 			continue;
840 		if (prison_if(wa->cred, ifa->ifa_addr) != 0)
841 			continue;
842 		wa->count++;
843 		if (!dump_iface_addr(wa->nw, ifp, ifa, &wa->hdr))
844 			return (ENOMEM);
845 		wa->dumped++;
846 	}
847 
848 	return (0);
849 }
850 
851 static int
852 rtnl_handle_getaddr(struct nlmsghdr *hdr, struct nlpcb *nlp, struct nl_pstate *npt)
853 {
854         struct ifnet *ifp;
855 	int error = 0;
856 
857 	struct nl_parsed_ifa attrs = {};
858 	error = nl_parse_nlmsg(hdr, &ifaddrmsg_parser, npt, &attrs);
859 	if (error != 0)
860 		return (error);
861 
862 	struct netlink_walkargs wa = {
863 		.so = nlp,
864 		.nw = npt->nw,
865 		.cred = nlp_get_cred(nlp),
866 		.family = attrs.ifa_family,
867 		.hdr.nlmsg_pid = hdr->nlmsg_pid,
868 		.hdr.nlmsg_seq = hdr->nlmsg_seq,
869 		.hdr.nlmsg_flags = hdr->nlmsg_flags | NLM_F_MULTI,
870 		.hdr.nlmsg_type = NL_RTM_NEWADDR,
871 	};
872 
873 	NL_LOG(LOG_DEBUG2, "Start dump");
874 
875 	if (attrs.ifa_index != 0) {
876 		ifp = ifnet_byindex(attrs.ifa_index);
877 		if (ifp == NULL)
878 			error = ENOENT;
879 		else
880 			error = dump_iface_addrs(&wa, ifp);
881 	} else {
882 		CK_STAILQ_FOREACH(ifp, &V_ifnet, if_link) {
883 			error = dump_iface_addrs(&wa, ifp);
884 			if (error != 0)
885 				break;
886 		}
887 	}
888 
889 	NL_LOG(LOG_DEBUG2, "End dump, iterated %d dumped %d", wa.count, wa.dumped);
890 
891 	if (!nlmsg_end_dump(wa.nw, error, &wa.hdr)) {
892                 NL_LOG(LOG_DEBUG, "Unable to finalize the dump");
893                 return (ENOMEM);
894         }
895 
896 	return (error);
897 }
898 
899 static void
900 rtnl_handle_ifaddr(void *arg __unused, struct ifaddr *ifa, int cmd)
901 {
902 	struct nlmsghdr hdr = {};
903 	struct nl_writer nw = {};
904 	uint32_t group = 0;
905 
906 	switch (ifa->ifa_addr->sa_family) {
907 #ifdef INET
908 	case AF_INET:
909 		group = RTNLGRP_IPV4_IFADDR;
910 		break;
911 #endif
912 #ifdef INET6
913 	case AF_INET6:
914 		group = RTNLGRP_IPV6_IFADDR;
915 		break;
916 #endif
917 	default:
918 		NL_LOG(LOG_DEBUG2, "ifa notification for unknown AF: %d",
919 		    ifa->ifa_addr->sa_family);
920 		return;
921 	}
922 
923 	if (!nl_has_listeners(NETLINK_ROUTE, group))
924 		return;
925 
926 	if (!nlmsg_get_group_writer(&nw, NLMSG_LARGE, NETLINK_ROUTE, group)) {
927 		NL_LOG(LOG_DEBUG, "error allocating group writer");
928 		return;
929 	}
930 
931 	hdr.nlmsg_type = (cmd == RTM_DELETE) ? NL_RTM_DELADDR : NL_RTM_NEWADDR;
932 
933 	dump_iface_addr(&nw, ifa->ifa_ifp, ifa, &hdr);
934 	nlmsg_flush(&nw);
935 }
936 
937 static void
938 rtnl_handle_ifevent(struct ifnet *ifp, int nlmsg_type, int if_flags_mask)
939 {
940 	struct nlmsghdr hdr = { .nlmsg_type = nlmsg_type };
941 	struct nl_writer nw = {};
942 
943 	if (!nl_has_listeners(NETLINK_ROUTE, RTNLGRP_LINK))
944 		return;
945 
946 	if (!nlmsg_get_group_writer(&nw, NLMSG_LARGE, NETLINK_ROUTE, RTNLGRP_LINK)) {
947 		NL_LOG(LOG_DEBUG, "error allocating mbuf");
948 		return;
949 	}
950 	dump_iface(&nw, ifp, &hdr, if_flags_mask);
951         nlmsg_flush(&nw);
952 }
953 
954 static void
955 rtnl_handle_ifattach(void *arg, struct ifnet *ifp)
956 {
957 	NL_LOG(LOG_DEBUG2, "ifnet %s", if_name(ifp));
958 	rtnl_handle_ifevent(ifp, NL_RTM_NEWLINK, 0);
959 }
960 
961 static void
962 rtnl_handle_ifdetach(void *arg, struct ifnet *ifp)
963 {
964 	NL_LOG(LOG_DEBUG2, "ifnet %s", if_name(ifp));
965 	rtnl_handle_ifevent(ifp, NL_RTM_DELLINK, 0);
966 }
967 
968 static void
969 rtnl_handle_iflink(void *arg, struct ifnet *ifp)
970 {
971 	NL_LOG(LOG_DEBUG2, "ifnet %s", if_name(ifp));
972 	rtnl_handle_ifevent(ifp, NL_RTM_NEWLINK, 0);
973 }
974 
975 void
976 rtnl_handle_ifnet_event(struct ifnet *ifp, int if_flags_mask)
977 {
978 	NL_LOG(LOG_DEBUG2, "ifnet %s", if_name(ifp));
979 	rtnl_handle_ifevent(ifp, NL_RTM_NEWLINK, if_flags_mask);
980 }
981 
982 static const struct rtnl_cmd_handler cmd_handlers[] = {
983 	{
984 		.cmd = NL_RTM_GETLINK,
985 		.name = "RTM_GETLINK",
986 		.cb = &rtnl_handle_getlink,
987 		.flags = RTNL_F_NOEPOCH | RTNL_F_ALLOW_NONVNET_JAIL,
988 	},
989 	{
990 		.cmd = NL_RTM_DELLINK,
991 		.name = "RTM_DELLINK",
992 		.cb = &rtnl_handle_dellink,
993 		.priv = PRIV_NET_IFDESTROY,
994 		.flags = RTNL_F_NOEPOCH,
995 	},
996 	{
997 		.cmd = NL_RTM_NEWLINK,
998 		.name = "RTM_NEWLINK",
999 		.cb = &rtnl_handle_newlink,
1000 		.priv = PRIV_NET_IFCREATE,
1001 		.flags = RTNL_F_NOEPOCH,
1002 	},
1003 	{
1004 		.cmd = NL_RTM_GETADDR,
1005 		.name = "RTM_GETADDR",
1006 		.cb = &rtnl_handle_getaddr,
1007 		.flags = RTNL_F_ALLOW_NONVNET_JAIL,
1008 	},
1009 	{
1010 		.cmd = NL_RTM_NEWADDR,
1011 		.name = "RTM_NEWADDR",
1012 		.cb = &rtnl_handle_getaddr,
1013 	},
1014 	{
1015 		.cmd = NL_RTM_DELADDR,
1016 		.name = "RTM_DELADDR",
1017 		.cb = &rtnl_handle_getaddr,
1018 	},
1019 };
1020 
1021 static const struct nlhdr_parser *all_parsers[] = { &ifmsg_parser, &ifaddrmsg_parser };
1022 
1023 void
1024 rtnl_iface_add_cloner(struct nl_cloner *cloner)
1025 {
1026 	sx_xlock(&rtnl_cloner_lock);
1027 	SLIST_INSERT_HEAD(&nl_cloners, cloner, next);
1028 	sx_xunlock(&rtnl_cloner_lock);
1029 }
1030 
1031 void
1032 rtnl_iface_del_cloner(struct nl_cloner *cloner)
1033 {
1034 	sx_xlock(&rtnl_cloner_lock);
1035 	SLIST_REMOVE(&nl_cloners, cloner, nl_cloner, next);
1036 	sx_xunlock(&rtnl_cloner_lock);
1037 }
1038 
1039 static struct nl_cloner *
1040 rtnl_iface_find_cloner_locked(const char *name)
1041 {
1042 	struct nl_cloner *cloner;
1043 
1044 	SLIST_FOREACH(cloner, &nl_cloners, next) {
1045 		if (!strcmp(name, cloner->name))
1046 			return (cloner);
1047 	}
1048 
1049 	return (NULL);
1050 }
1051 
1052 void
1053 rtnl_ifaces_init(void)
1054 {
1055 	ifattach_event = EVENTHANDLER_REGISTER(
1056 	    ifnet_arrival_event, rtnl_handle_ifattach, NULL,
1057 	    EVENTHANDLER_PRI_ANY);
1058 	ifdetach_event = EVENTHANDLER_REGISTER(
1059 	    ifnet_departure_event, rtnl_handle_ifdetach, NULL,
1060 	    EVENTHANDLER_PRI_ANY);
1061 	ifaddr_event = EVENTHANDLER_REGISTER(
1062 	    rt_addrmsg, rtnl_handle_ifaddr, NULL,
1063 	    EVENTHANDLER_PRI_ANY);
1064 	iflink_event = EVENTHANDLER_REGISTER(
1065 	    ifnet_link_event, rtnl_handle_iflink, NULL,
1066 	    EVENTHANDLER_PRI_ANY);
1067 	NL_VERIFY_PARSERS(all_parsers);
1068 	rtnl_iface_drivers_register();
1069 	rtnl_register_messages(cmd_handlers, NL_ARRAY_LEN(cmd_handlers));
1070 }
1071 
1072 void
1073 rtnl_ifaces_destroy(void)
1074 {
1075 	EVENTHANDLER_DEREGISTER(ifnet_arrival_event, ifattach_event);
1076 	EVENTHANDLER_DEREGISTER(ifnet_departure_event, ifdetach_event);
1077 	EVENTHANDLER_DEREGISTER(rt_addrmsg, ifaddr_event);
1078 	EVENTHANDLER_DEREGISTER(ifnet_link_event, iflink_event);
1079 }
1080