]> git.proxmox.com Git - mirror_frr.git/blame - zebra/kernel_netlink.c
Merge pull request #3506 from opensourcerouting/6.0-init-fixes
[mirror_frr.git] / zebra / kernel_netlink.c
CommitLineData
718e3744 1/* Kernel communication using netlink interface.
2 * Copyright (C) 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
1fdc9eae 20
21#include <zebra.h>
22
acfa8927 23#if defined(HANDLE_NETLINK_FUZZING)
81a2f870
SW
24#include <stdio.h>
25#include <string.h>
acfa8927 26#endif /* HANDLE_NETLINK_FUZZING */
81a2f870 27
ddfeb486
DL
28#ifdef HAVE_NETLINK
29
1fdc9eae 30#include "linklist.h"
31#include "if.h"
32#include "log.h"
33#include "prefix.h"
34#include "connected.h"
35#include "table.h"
36#include "memory.h"
37#include "zebra_memory.h"
38#include "rib.h"
39#include "thread.h"
40#include "privs.h"
41#include "nexthop.h"
42#include "vrf.h"
43#include "mpls.h"
174482ef 44#include "lib_errors.h"
1fdc9eae 45
46#include "zebra/zserv.h"
47#include "zebra/zebra_ns.h"
48#include "zebra/zebra_vrf.h"
05f7f5db 49#include "zebra/rt.h"
1fdc9eae 50#include "zebra/debug.h"
51#include "zebra/kernel_netlink.h"
52#include "zebra/rt_netlink.h"
53#include "zebra/if_netlink.h"
942bf97b 54#include "zebra/rule_netlink.h"
43e52561 55#include "zebra/zebra_errors.h"
1fdc9eae 56
57#ifndef SO_RCVBUFFORCE
58#define SO_RCVBUFFORCE (33)
59#endif
60
61/* Hack for GNU libc version 2. */
62#ifndef MSG_TRUNC
63#define MSG_TRUNC 0x20
64#endif /* MSG_TRUNC */
65
66#ifndef NLMSG_TAIL
d62a17ae 67#define NLMSG_TAIL(nmsg) \
d7c0a89a
QY
68 ((struct rtattr *)(((uint8_t *)(nmsg)) \
69 + NLMSG_ALIGN((nmsg)->nlmsg_len)))
1fdc9eae 70#endif
71
72#ifndef RTA_TAIL
d62a17ae 73#define RTA_TAIL(rta) \
d7c0a89a 74 ((struct rtattr *)(((uint8_t *)(rta)) + RTA_ALIGN((rta)->rta_len)))
1fdc9eae 75#endif
76
f909c673
DS
77#ifndef RTNL_FAMILY_IP6MR
78#define RTNL_FAMILY_IP6MR 129
79#endif
80
81#ifndef RTPROT_MROUTED
82#define RTPROT_MROUTED 17
83#endif
84
d62a17ae 85static const struct message nlmsg_str[] = {{RTM_NEWROUTE, "RTM_NEWROUTE"},
86 {RTM_DELROUTE, "RTM_DELROUTE"},
87 {RTM_GETROUTE, "RTM_GETROUTE"},
88 {RTM_NEWLINK, "RTM_NEWLINK"},
89 {RTM_DELLINK, "RTM_DELLINK"},
90 {RTM_GETLINK, "RTM_GETLINK"},
91 {RTM_NEWADDR, "RTM_NEWADDR"},
92 {RTM_DELADDR, "RTM_DELADDR"},
93 {RTM_GETADDR, "RTM_GETADDR"},
94 {RTM_NEWNEIGH, "RTM_NEWNEIGH"},
95 {RTM_DELNEIGH, "RTM_DELNEIGH"},
96 {RTM_GETNEIGH, "RTM_GETNEIGH"},
942bf97b 97 {RTM_NEWRULE, "RTM_NEWRULE"},
98 {RTM_DELRULE, "RTM_DELRULE"},
99 {RTM_GETRULE, "RTM_GETRULE"},
d62a17ae 100 {0}};
1fdc9eae 101
102static const struct message rtproto_str[] = {
d62a17ae 103 {RTPROT_REDIRECT, "redirect"},
104 {RTPROT_KERNEL, "kernel"},
105 {RTPROT_BOOT, "boot"},
106 {RTPROT_STATIC, "static"},
107 {RTPROT_GATED, "GateD"},
108 {RTPROT_RA, "router advertisement"},
109 {RTPROT_MRT, "MRT"},
110 {RTPROT_ZEBRA, "Zebra"},
1fdc9eae 111#ifdef RTPROT_BIRD
d62a17ae 112 {RTPROT_BIRD, "BIRD"},
1fdc9eae 113#endif /* RTPROT_BIRD */
d62a17ae 114 {RTPROT_MROUTED, "mroute"},
115 {RTPROT_BGP, "BGP"},
116 {RTPROT_OSPF, "OSPF"},
117 {RTPROT_ISIS, "IS-IS"},
118 {RTPROT_RIP, "RIP"},
119 {RTPROT_RIPNG, "RIPNG"},
d4d71f11 120 {RTPROT_ZSTATIC, "static"},
d62a17ae 121 {0}};
122
123static const struct message family_str[] = {{AF_INET, "ipv4"},
124 {AF_INET6, "ipv6"},
125 {AF_BRIDGE, "bridge"},
126 {RTNL_FAMILY_IPMR, "ipv4MR"},
127 {RTNL_FAMILY_IP6MR, "ipv6MR"},
128 {0}};
129
130static const struct message rttype_str[] = {{RTN_UNICAST, "unicast"},
131 {RTN_MULTICAST, "multicast"},
132 {0}};
b339bde7 133
1fdc9eae 134extern struct thread_master *master;
d7c0a89a 135extern uint32_t nl_rcvbufsize;
1fdc9eae 136
137extern struct zebra_privs_t zserv_privs;
138
2414abd3 139int netlink_talk_filter(struct nlmsghdr *h, ns_id_t ns_id, int startup)
1fdc9eae 140{
3575d9e8
DS
141 /*
142 * This is an error condition that must be handled during
143 * development.
144 *
145 * The netlink_talk_filter function is used for communication
146 * down the netlink_cmd pipe and we are expecting
147 * an ack being received. So if we get here
148 * then we did not receive the ack and instead
149 * received some other message in an unexpected
150 * way.
151 */
43e52561
QY
152 zlog_debug("%s: ignoring message type 0x%04x(%s) NS %u", __func__,
153 h->nlmsg_type, nl_msg_type_to_str(h->nlmsg_type), ns_id);
d62a17ae 154 return 0;
1fdc9eae 155}
156
d62a17ae 157static int netlink_recvbuf(struct nlsock *nl, uint32_t newsize)
1fdc9eae 158{
d7c0a89a 159 uint32_t oldsize;
d62a17ae 160 socklen_t newlen = sizeof(newsize);
161 socklen_t oldlen = sizeof(oldsize);
162 int ret;
163
164 ret = getsockopt(nl->sock, SOL_SOCKET, SO_RCVBUF, &oldsize, &oldlen);
165 if (ret < 0) {
09c866e3
QY
166 flog_err_sys(LIB_ERR_SOCKET,
167 "Can't get %s receive buffer size: %s", nl->name,
168 safe_strerror(errno));
d62a17ae 169 return -1;
170 }
171
172 /* Try force option (linux >= 2.6.14) and fall back to normal set */
01b9e3fd
DL
173 frr_elevate_privs(&zserv_privs) {
174 ret = setsockopt(nl->sock, SOL_SOCKET, SO_RCVBUFFORCE,
175 &nl_rcvbufsize,
176 sizeof(nl_rcvbufsize));
177 }
d62a17ae 178 if (ret < 0)
179 ret = setsockopt(nl->sock, SOL_SOCKET, SO_RCVBUF,
180 &nl_rcvbufsize, sizeof(nl_rcvbufsize));
181 if (ret < 0) {
09c866e3
QY
182 flog_err_sys(LIB_ERR_SOCKET,
183 "Can't set %s receive buffer size: %s", nl->name,
184 safe_strerror(errno));
d62a17ae 185 return -1;
186 }
187
188 ret = getsockopt(nl->sock, SOL_SOCKET, SO_RCVBUF, &newsize, &newlen);
189 if (ret < 0) {
09c866e3
QY
190 flog_err_sys(LIB_ERR_SOCKET,
191 "Can't get %s receive buffer size: %s", nl->name,
192 safe_strerror(errno));
d62a17ae 193 return -1;
194 }
195
196 zlog_info("Setting netlink socket receive buffer size: %u -> %u",
197 oldsize, newsize);
198 return 0;
1fdc9eae 199}
200
201/* Make socket for Linux netlink interface. */
d62a17ae 202static int netlink_socket(struct nlsock *nl, unsigned long groups,
203 ns_id_t ns_id)
1fdc9eae 204{
d62a17ae 205 int ret;
206 struct sockaddr_nl snl;
207 int sock;
208 int namelen;
d62a17ae 209
6bb30c2c
DL
210 frr_elevate_privs(&zserv_privs) {
211 sock = ns_socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE, ns_id);
212 if (sock < 0) {
213 zlog_err("Can't open %s socket: %s", nl->name,
214 safe_strerror(errno));
215 return -1;
216 }
d62a17ae 217
6bb30c2c
DL
218 memset(&snl, 0, sizeof snl);
219 snl.nl_family = AF_NETLINK;
220 snl.nl_groups = groups;
d62a17ae 221
6bb30c2c
DL
222 /* Bind the socket to the netlink structure for anything. */
223 ret = bind(sock, (struct sockaddr *)&snl, sizeof snl);
224 }
d62a17ae 225
226 if (ret < 0) {
6bb30c2c
DL
227 zlog_err("Can't bind %s socket to group 0x%x: %s", nl->name,
228 snl.nl_groups, safe_strerror(errno));
d62a17ae 229 close(sock);
230 return -1;
231 }
232
233 /* multiple netlink sockets will have different nl_pid */
234 namelen = sizeof snl;
235 ret = getsockname(sock, (struct sockaddr *)&snl, (socklen_t *)&namelen);
236 if (ret < 0 || namelen != sizeof snl) {
09c866e3
QY
237 flog_err_sys(LIB_ERR_SOCKET, "Can't get %s socket name: %s",
238 nl->name, safe_strerror(errno));
d62a17ae 239 close(sock);
240 return -1;
241 }
242
243 nl->snl = snl;
244 nl->sock = sock;
245 return ret;
1fdc9eae 246}
247
2414abd3 248static int netlink_information_fetch(struct nlmsghdr *h, ns_id_t ns_id,
d62a17ae 249 int startup)
1fdc9eae 250{
3575d9e8
DS
251 /*
252 * When we handle new message types here
253 * because we are starting to install them
254 * then lets check the netlink_install_filter
255 * and see if we should add the corresponding
256 * allow through entry there.
257 * Probably not needed to do but please
258 * think about it.
259 */
d62a17ae 260 switch (h->nlmsg_type) {
261 case RTM_NEWROUTE:
2414abd3 262 return netlink_route_change(h, ns_id, startup);
d62a17ae 263 case RTM_DELROUTE:
2414abd3 264 return netlink_route_change(h, ns_id, startup);
d62a17ae 265 case RTM_NEWLINK:
2414abd3 266 return netlink_link_change(h, ns_id, startup);
d62a17ae 267 case RTM_DELLINK:
2414abd3 268 return netlink_link_change(h, ns_id, startup);
d62a17ae 269 case RTM_NEWADDR:
2414abd3 270 return netlink_interface_addr(h, ns_id, startup);
d62a17ae 271 case RTM_DELADDR:
2414abd3 272 return netlink_interface_addr(h, ns_id, startup);
d62a17ae 273 case RTM_NEWNEIGH:
2414abd3 274 return netlink_neigh_change(h, ns_id);
d62a17ae 275 case RTM_DELNEIGH:
2414abd3 276 return netlink_neigh_change(h, ns_id);
942bf97b 277 case RTM_NEWRULE:
2414abd3 278 return netlink_rule_change(h, ns_id, startup);
942bf97b 279 case RTM_DELRULE:
2414abd3 280 return netlink_rule_change(h, ns_id, startup);
d62a17ae 281 default:
3575d9e8
DS
282 /*
283 * If we have received this message then
284 * we have made a mistake during development
285 * and we need to write some code to handle
286 * this message type or not ask for
287 * it to be sent up to us
288 */
af4c2728 289 flog_err(ZEBRA_ERR_UNKNOWN_NLMSG,
43e52561
QY
290 "Unknown netlink nlmsg_type %s(%d) vrf %u\n",
291 nl_msg_type_to_str(h->nlmsg_type), h->nlmsg_type,
292 ns_id);
d62a17ae 293 break;
294 }
295 return 0;
1fdc9eae 296}
297
acfa8927 298#if defined(HANDLE_NETLINK_FUZZING)
81a2f870
SW
299/* Using globals here to avoid adding function parameters */
300
301/* Keep distinct filenames for netlink fuzzy collection */
302static unsigned int netlink_file_counter = 1;
303
304/* File name to read fuzzed netlink from */
305static char netlink_fuzz_file[MAXPATHLEN] = "";
306
307/* Flag for whether to read from file or not */
29bf7b0b 308bool netlink_read;
81a2f870
SW
309
310/**
311 * netlink_read_init() - Starts the message parser
312 * @fname: Filename to read.
313 */
314void netlink_read_init(const char *fname)
315{
316 snprintf(netlink_fuzz_file, MAXPATHLEN, "%s", fname);
317 /* Creating this fake socket for testing purposes */
ef593eff
SW
318 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
319
320 netlink_parse_info(netlink_information_fetch, &zns->netlink, zns, 1, 0);
81a2f870
SW
321}
322
323/**
324 * netlink_write_incoming() - Writes all data received from netlink to a file
325 * @buf: Data from netlink.
326 * @size: Size of data.
327 * @counter: Counter for keeping filenames distinct.
328 */
329static void netlink_write_incoming(const char *buf, const unsigned int size,
330 unsigned int counter)
331{
332 char fname[MAXPATHLEN];
333 FILE *f;
334
81a2f870
SW
335 snprintf(fname, MAXPATHLEN, "%s/%s_%u", DAEMON_VTY_DIR, "netlink",
336 counter);
6bb30c2c
DL
337 frr_elevate_privs(&zserv_privs) {
338 f = fopen(fname, "w");
339 }
81a2f870
SW
340 if (f) {
341 fwrite(buf, 1, size, f);
342 fclose(f);
343 }
81a2f870
SW
344}
345
346/**
347 * netlink_read_file() - Reads netlink data from file
348 * @buf: Netlink buffer being overwritten.
349 * @fname: File name to read from.
350 *
351 * Return: Size of file.
352 */
353static long netlink_read_file(char *buf, const char *fname)
354{
355 FILE *f;
356 long file_bytes = -1;
bd7891fd 357
6bb30c2c
DL
358 frr_elevate_privs(&zserv_privs) {
359 f = fopen(fname, "r");
360 }
81a2f870
SW
361 if (f) {
362 fseek(f, 0, SEEK_END);
363 file_bytes = ftell(f);
364 rewind(f);
ef593eff 365 fread(buf, NL_RCV_PKT_BUF_SIZE, 1, f);
81a2f870
SW
366 fclose(f);
367 }
81a2f870
SW
368 return file_bytes;
369}
370
acfa8927 371#endif /* HANDLE_NETLINK_FUZZING */
81a2f870 372
d62a17ae 373static int kernel_read(struct thread *thread)
1fdc9eae 374{
d62a17ae 375 struct zebra_ns *zns = (struct zebra_ns *)THREAD_ARG(thread);
376 netlink_parse_info(netlink_information_fetch, &zns->netlink, zns, 5, 0);
377 zns->t_netlink = NULL;
378 thread_add_read(zebrad.master, kernel_read, zns, zns->netlink.sock,
379 &zns->t_netlink);
1fdc9eae 380
d62a17ae 381 return 0;
1fdc9eae 382}
383
3575d9e8
DS
384/*
385 * Filter out messages from self that occur on listener socket,
1fdc9eae 386 * caused by our actions on the command socket
3575d9e8
DS
387 *
388 * When we add new Netlink message types we probably
389 * do not need to add them here as that we are filtering
390 * on the routes we actually care to receive( which is rarer
391 * then the normal course of operations). We are intentionally
392 * allowing some messages from ourselves through
393 * ( I'm looking at you Interface based netlink messages )
394 * so that we only had to write one way to handle incoming
395 * address add/delete changes.
1fdc9eae 396 */
d62a17ae 397static void netlink_install_filter(int sock, __u32 pid)
1fdc9eae 398{
3575d9e8
DS
399 /*
400 * BPF_JUMP instructions and where you jump to are based upon
401 * 0 as being the next statement. So count from 0. Writing
402 * this down because every time I look at this I have to
403 * re-remember it.
404 */
d62a17ae 405 struct sock_filter filter[] = {
3575d9e8
DS
406 /*
407 * Logic:
408 * if (nlmsg_pid == pid) {
409 * if (the incoming nlmsg_type ==
410 * RTM_NEWADDR | RTM_DELADDR)
411 * keep this message
412 * else
413 * skip this message
414 * } else
415 * keep this netlink message
416 */
417 /*
418 * 0: Load the nlmsg_pid into the BPF register
419 */
d62a17ae 420 BPF_STMT(BPF_LD | BPF_ABS | BPF_W,
421 offsetof(struct nlmsghdr, nlmsg_pid)),
3575d9e8
DS
422 /*
423 * 1: Compare to pid
424 */
425 BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, htonl(pid), 0, 4),
426 /*
427 * 2: Load the nlmsg_type into BPF register
428 */
429 BPF_STMT(BPF_LD | BPF_ABS | BPF_H,
430 offsetof(struct nlmsghdr, nlmsg_type)),
431 /*
432 * 3: Compare to RTM_NEWADDR
433 */
434 BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, htons(RTM_NEWADDR), 2, 0),
435 /*
436 * 4: Compare to RTM_DELADDR
437 */
438 BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, htons(RTM_DELADDR), 1, 0),
439 /*
440 * 5: This is the end state of we want to skip the
441 * message
442 */
d62a17ae 443 BPF_STMT(BPF_RET | BPF_K, 0),
3575d9e8
DS
444 /* 6: This is the end state of we want to keep
445 * the message
446 */
d62a17ae 447 BPF_STMT(BPF_RET | BPF_K, 0xffff),
448 };
449
450 struct sock_fprog prog = {
9d303b37 451 .len = array_size(filter), .filter = filter,
d62a17ae 452 };
453
454 if (setsockopt(sock, SOL_SOCKET, SO_ATTACH_FILTER, &prog, sizeof(prog))
455 < 0)
456 zlog_warn("Can't install socket filter: %s\n",
457 safe_strerror(errno));
1fdc9eae 458}
459
d62a17ae 460void netlink_parse_rtattr(struct rtattr **tb, int max, struct rtattr *rta,
461 int len)
1fdc9eae 462{
d62a17ae 463 while (RTA_OK(rta, len)) {
464 if (rta->rta_type <= max)
465 tb[rta->rta_type] = rta;
466 rta = RTA_NEXT(rta, len);
467 }
1fdc9eae 468}
469
87da6a60
SW
470/**
471 * netlink_parse_rtattr_nested() - Parses a nested route attribute
472 * @tb: Pointer to array for storing rtattr in.
473 * @max: Max number to store.
474 * @rta: Pointer to rtattr to look for nested items in.
475 */
476void netlink_parse_rtattr_nested(struct rtattr **tb, int max,
477 struct rtattr *rta)
478{
479 netlink_parse_rtattr(tb, max, RTA_DATA(rta), RTA_PAYLOAD(rta));
480}
481
86391e56
MS
482int addattr_l(struct nlmsghdr *n, unsigned int maxlen, int type,
483 const void *data, unsigned int alen)
1fdc9eae 484{
d62a17ae 485 int len;
486 struct rtattr *rta;
1fdc9eae 487
d62a17ae 488 len = RTA_LENGTH(alen);
1fdc9eae 489
d62a17ae 490 if (NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len) > maxlen)
491 return -1;
1fdc9eae 492
d62a17ae 493 rta = (struct rtattr *)(((char *)n) + NLMSG_ALIGN(n->nlmsg_len));
494 rta->rta_type = type;
495 rta->rta_len = len;
4b2792b5 496
d62a17ae 497 if (data)
498 memcpy(RTA_DATA(rta), data, alen);
499 else
500 assert(alen == 0);
4b2792b5 501
d62a17ae 502 n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len);
1fdc9eae 503
d62a17ae 504 return 0;
1fdc9eae 505}
506
86391e56
MS
507int rta_addattr_l(struct rtattr *rta, unsigned int maxlen, int type,
508 const void *data, unsigned int alen)
1fdc9eae 509{
d62a17ae 510 unsigned int len;
511 struct rtattr *subrta;
1fdc9eae 512
d62a17ae 513 len = RTA_LENGTH(alen);
1fdc9eae 514
d62a17ae 515 if (RTA_ALIGN(rta->rta_len) + RTA_ALIGN(len) > maxlen)
516 return -1;
1fdc9eae 517
d62a17ae 518 subrta = (struct rtattr *)(((char *)rta) + RTA_ALIGN(rta->rta_len));
519 subrta->rta_type = type;
520 subrta->rta_len = len;
4b2792b5 521
d62a17ae 522 if (data)
523 memcpy(RTA_DATA(subrta), data, alen);
524 else
525 assert(alen == 0);
4b2792b5 526
d62a17ae 527 rta->rta_len = NLMSG_ALIGN(rta->rta_len) + RTA_ALIGN(len);
1fdc9eae 528
d62a17ae 529 return 0;
1fdc9eae 530}
531
d7c0a89a 532int addattr16(struct nlmsghdr *n, unsigned int maxlen, int type, uint16_t data)
bbc16902 533{
d7c0a89a 534 return addattr_l(n, maxlen, type, &data, sizeof(uint16_t));
bbc16902 535}
536
d62a17ae 537int addattr32(struct nlmsghdr *n, unsigned int maxlen, int type, int data)
1fdc9eae 538{
d7c0a89a 539 return addattr_l(n, maxlen, type, &data, sizeof(uint32_t));
1fdc9eae 540}
541
d62a17ae 542struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type)
1fdc9eae 543{
d62a17ae 544 struct rtattr *nest = NLMSG_TAIL(n);
1fdc9eae 545
d62a17ae 546 addattr_l(n, maxlen, type, NULL, 0);
547 return nest;
1fdc9eae 548}
549
d62a17ae 550int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest)
1fdc9eae 551{
d7c0a89a 552 nest->rta_len = (uint8_t *)NLMSG_TAIL(n) - (uint8_t *)nest;
d62a17ae 553 return n->nlmsg_len;
1fdc9eae 554}
555
d62a17ae 556struct rtattr *rta_nest(struct rtattr *rta, int maxlen, int type)
1fdc9eae 557{
d62a17ae 558 struct rtattr *nest = RTA_TAIL(rta);
1fdc9eae 559
d62a17ae 560 rta_addattr_l(rta, maxlen, type, NULL, 0);
561 return nest;
1fdc9eae 562}
563
d62a17ae 564int rta_nest_end(struct rtattr *rta, struct rtattr *nest)
1fdc9eae 565{
d7c0a89a 566 nest->rta_len = (uint8_t *)RTA_TAIL(rta) - (uint8_t *)nest;
d62a17ae 567 return rta->rta_len;
1fdc9eae 568}
569
d62a17ae 570const char *nl_msg_type_to_str(uint16_t msg_type)
1fdc9eae 571{
d62a17ae 572 return lookup_msg(nlmsg_str, msg_type, "");
1fdc9eae 573}
574
d7c0a89a 575const char *nl_rtproto_to_str(uint8_t rtproto)
1fdc9eae 576{
d62a17ae 577 return lookup_msg(rtproto_str, rtproto, "");
1fdc9eae 578}
b339bde7 579
d7c0a89a 580const char *nl_family_to_str(uint8_t family)
b339bde7 581{
d62a17ae 582 return lookup_msg(family_str, family, "");
b339bde7
DS
583}
584
d7c0a89a 585const char *nl_rttype_to_str(uint8_t rttype)
b339bde7 586{
d62a17ae 587 return lookup_msg(rttype_str, rttype, "");
b339bde7
DS
588}
589
5d307d5d
DS
590#define NL_OK(nla, len) \
591 ((len) >= (int)sizeof(struct nlattr) \
592 && (nla)->nla_len >= sizeof(struct nlattr) \
593 && (nla)->nla_len <= (len))
594#define NL_NEXT(nla, attrlen) \
595 ((attrlen) -= RTA_ALIGN((nla)->nla_len), \
596 (struct nlattr *)(((char *)(nla)) + RTA_ALIGN((nla)->nla_len)))
597#define NL_RTA(r) \
598 ((struct nlattr *)(((char *)(r)) \
599 + NLMSG_ALIGN(sizeof(struct nlmsgerr))))
600
601static void netlink_parse_nlattr(struct nlattr **tb, int max,
602 struct nlattr *nla, int len)
603{
604 while (NL_OK(nla, len)) {
605 if (nla->nla_type <= max)
606 tb[nla->nla_type] = nla;
607 nla = NL_NEXT(nla, len);
608 }
609}
610
611static void netlink_parse_extended_ack(struct nlmsghdr *h)
612{
613 struct nlattr *tb[NLMSGERR_ATTR_MAX + 1];
614 const struct nlmsgerr *err =
615 (const struct nlmsgerr *)((uint8_t *)h
616 + NLMSG_ALIGN(
617 sizeof(struct nlmsghdr)));
618 const struct nlmsghdr *err_nlh = NULL;
619 uint32_t hlen = sizeof(*err);
620 const char *msg = NULL;
621 uint32_t off = 0;
622
623 if (!(h->nlmsg_flags & NLM_F_CAPPED))
624 hlen += h->nlmsg_len - NLMSG_ALIGN(sizeof(struct nlmsghdr));
625
626 memset(tb, 0, sizeof(tb));
627 netlink_parse_nlattr(tb, NLMSGERR_ATTR_MAX, NL_RTA(h), hlen);
628
629 if (tb[NLMSGERR_ATTR_MSG])
630 msg = (const char *)RTA_DATA(tb[NLMSGERR_ATTR_MSG]);
631
632 if (tb[NLMSGERR_ATTR_OFFS]) {
633 off = *(uint32_t *)RTA_DATA(tb[NLMSGERR_ATTR_OFFS]);
634
635 if (off > h->nlmsg_len) {
636 zlog_err("Invalid offset for NLMSGERR_ATTR_OFFS\n");
5d307d5d
DS
637 } else if (!(h->nlmsg_flags & NLM_F_CAPPED)) {
638 /*
639 * Header of failed message
640 * we are not doing anything currently with it
641 * but noticing it for later.
642 */
643 err_nlh = &err->msg;
644 zlog_warn("%s: Received %d extended Ack",
645 __PRETTY_FUNCTION__, err_nlh->nlmsg_type);
646 }
647 }
648
649 if (msg && *msg != '\0') {
650 bool is_err = !!err->error;
651
652 if (is_err)
653 zlog_err("Extended Error: %s", msg);
654 else
655 zlog_warn("Extended Warning: %s", msg);
656 }
657}
658
936ebf0a
DS
659/*
660 * netlink_parse_info
661 *
662 * Receive message from netlink interface and pass those information
663 * to the given function.
664 *
665 * filter -> Function to call to read the results
666 * nl -> netlink socket information
667 * zns -> The zebra namespace data
668 * count -> How many we should read in, 0 means as much as possible
669 * startup -> Are we reading in under startup conditions? passed to
670 * the filter.
671 */
2414abd3 672int netlink_parse_info(int (*filter)(struct nlmsghdr *, ns_id_t, int),
d62a17ae 673 struct nlsock *nl, struct zebra_ns *zns, int count,
674 int startup)
1fdc9eae 675{
d62a17ae 676 int status;
677 int ret = 0;
678 int error;
679 int read_in = 0;
680
681 while (1) {
9ed7517b 682 char buf[NL_RCV_PKT_BUF_SIZE];
d62a17ae 683 struct iovec iov = {.iov_base = buf, .iov_len = sizeof buf};
684 struct sockaddr_nl snl;
685 struct msghdr msg = {.msg_name = (void *)&snl,
686 .msg_namelen = sizeof snl,
687 .msg_iov = &iov,
688 .msg_iovlen = 1};
689 struct nlmsghdr *h;
690
691 if (count && read_in >= count)
692 return 0;
693
acfa8927 694#if defined(HANDLE_NETLINK_FUZZING)
81a2f870
SW
695 /* Check if reading and filename is set */
696 if (netlink_read && '\0' != netlink_fuzz_file[0]) {
697 zlog_debug("Reading netlink fuzz file");
698 status = netlink_read_file(buf, netlink_fuzz_file);
699 snl.nl_pid = 0;
700 } else {
701 status = recvmsg(nl->sock, &msg, 0);
702 }
703#else
d62a17ae 704 status = recvmsg(nl->sock, &msg, 0);
acfa8927 705#endif /* HANDLE_NETLINK_FUZZING */
d62a17ae 706 if (status < 0) {
707 if (errno == EINTR)
708 continue;
709 if (errno == EWOULDBLOCK || errno == EAGAIN)
710 break;
af4c2728 711 flog_err(ZEBRA_ERR_RECVMSG_OVERRUN,
43e52561
QY
712 "%s recvmsg overrun: %s", nl->name,
713 safe_strerror(errno));
d62a17ae 714 /*
715 * In this case we are screwed.
716 * There is no good way to
717 * recover zebra at this point.
718 */
719 exit(-1);
720 continue;
1fdc9eae 721 }
722
d62a17ae 723 if (status == 0) {
09c866e3 724 flog_err_sys(LIB_ERR_SOCKET, "%s EOF", nl->name);
d62a17ae 725 return -1;
726 }
727
728 if (msg.msg_namelen != sizeof snl) {
af4c2728 729 flog_err(ZEBRA_ERR_NETLINK_LENGTH_ERROR,
43e52561
QY
730 "%s sender address length error: length %d",
731 nl->name, msg.msg_namelen);
d62a17ae 732 return -1;
733 }
734
735 if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV) {
736 zlog_debug("%s: << netlink message dump [recv]",
737 __func__);
738 zlog_hexdump(buf, status);
739 }
740
acfa8927 741#if defined(HANDLE_NETLINK_FUZZING)
81a2f870
SW
742 if (!netlink_read) {
743 zlog_debug("Writing incoming netlink message");
744 netlink_write_incoming(buf, status,
745 netlink_file_counter++);
746 }
acfa8927 747#endif /* HANDLE_NETLINK_FUZZING */
81a2f870 748
d62a17ae 749 read_in++;
750 for (h = (struct nlmsghdr *)buf;
e6a0e0d1 751 (status >= 0 && NLMSG_OK(h, (unsigned int)status));
d62a17ae 752 h = NLMSG_NEXT(h, status)) {
753 /* Finish of reading. */
754 if (h->nlmsg_type == NLMSG_DONE)
755 return ret;
756
757 /* Error handling. */
758 if (h->nlmsg_type == NLMSG_ERROR) {
759 struct nlmsgerr *err =
760 (struct nlmsgerr *)NLMSG_DATA(h);
761 int errnum = err->error;
762 int msg_type = err->msg.nlmsg_type;
763
5d307d5d
DS
764 if (h->nlmsg_len
765 < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
766 zlog_err("%s error: message truncated",
767 nl->name);
768 return -1;
769 }
770
771 /*
772 * Parse the extended information before
773 * we actually handle it.
774 * At this point in time we do not
775 * do anything other than report the
776 * issue.
777 */
778 if (h->nlmsg_flags & NLM_F_ACK_TLVS)
779 netlink_parse_extended_ack(h);
780
d62a17ae 781 /* If the error field is zero, then this is an
782 * ACK */
783 if (err->error == 0) {
784 if (IS_ZEBRA_DEBUG_KERNEL) {
785 zlog_debug(
786 "%s: %s ACK: type=%s(%u), seq=%u, pid=%u",
787 __FUNCTION__, nl->name,
788 nl_msg_type_to_str(
789 err->msg.nlmsg_type),
790 err->msg.nlmsg_type,
791 err->msg.nlmsg_seq,
792 err->msg.nlmsg_pid);
793 }
794
795 /* return if not a multipart message,
796 * otherwise continue */
797 if (!(h->nlmsg_flags & NLM_F_MULTI))
798 return 0;
799 continue;
800 }
801
43e52561
QY
802 if (h->nlmsg_len
803 < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
af4c2728 804 flog_err(
43e52561
QY
805 ZEBRA_ERR_NETLINK_LENGTH_ERROR,
806 "%s error: message truncated",
807 nl->name);
808 return -1;
809 }
810
d62a17ae 811 /* Deal with errors that occur because of races
812 * in link handling */
813 if (nl == &zns->netlink_cmd
814 && ((msg_type == RTM_DELROUTE
815 && (-errnum == ENODEV
816 || -errnum == ESRCH))
817 || (msg_type == RTM_NEWROUTE
818 && (-errnum == ENETDOWN
819 || -errnum == EEXIST)))) {
820 if (IS_ZEBRA_DEBUG_KERNEL)
821 zlog_debug(
822 "%s: error: %s type=%s(%u), seq=%u, pid=%u",
823 nl->name,
824 safe_strerror(-errnum),
825 nl_msg_type_to_str(
826 msg_type),
827 msg_type,
828 err->msg.nlmsg_seq,
829 err->msg.nlmsg_pid);
830 return 0;
831 }
832
833 /* We see RTM_DELNEIGH when shutting down an
834 * interface with an IPv4
835 * link-local. The kernel should have already
836 * deleted the neighbor
837 * so do not log these as an error.
838 */
839 if (msg_type == RTM_DELNEIGH
840 || (nl == &zns->netlink_cmd
841 && msg_type == RTM_NEWROUTE
842 && (-errnum == ESRCH
843 || -errnum == ENETUNREACH))) {
844 /* This is known to happen in some
845 * situations, don't log
846 * as error.
847 */
848 if (IS_ZEBRA_DEBUG_KERNEL)
849 zlog_debug(
850 "%s error: %s, type=%s(%u), seq=%u, pid=%u",
851 nl->name,
852 safe_strerror(-errnum),
853 nl_msg_type_to_str(
854 msg_type),
855 msg_type,
856 err->msg.nlmsg_seq,
857 err->msg.nlmsg_pid);
858 } else
af4c2728 859 flog_err(
43e52561 860 ZEBRA_ERR_UNEXPECTED_MESSAGE,
d62a17ae 861 "%s error: %s, type=%s(%u), seq=%u, pid=%u",
862 nl->name,
863 safe_strerror(-errnum),
864 nl_msg_type_to_str(msg_type),
865 msg_type, err->msg.nlmsg_seq,
866 err->msg.nlmsg_pid);
867
868 return -1;
869 }
870
871 /* OK we got netlink message. */
872 if (IS_ZEBRA_DEBUG_KERNEL)
873 zlog_debug(
874 "netlink_parse_info: %s type %s(%u), len=%d, seq=%u, pid=%u",
875 nl->name,
876 nl_msg_type_to_str(h->nlmsg_type),
877 h->nlmsg_type, h->nlmsg_len,
878 h->nlmsg_seq, h->nlmsg_pid);
879
783827ae
DS
880
881 /*
882 * Ignore messages that maybe sent from
883 * other actors besides the kernel
884 */
885 if (snl.nl_pid != 0) {
43e52561
QY
886 zlog_debug("Ignoring message from pid %u",
887 snl.nl_pid);
d62a17ae 888 continue;
889 }
890
2414abd3 891 error = (*filter)(h, zns->ns_id, startup);
d62a17ae 892 if (error < 0) {
43e52561 893 zlog_warn("%s filter function error", nl->name);
d62a17ae 894 ret = error;
895 }
896 }
897
898 /* After error care. */
899 if (msg.msg_flags & MSG_TRUNC) {
af4c2728 900 flog_err(ZEBRA_ERR_NETLINK_LENGTH_ERROR,
43e52561 901 "%s error: message truncated", nl->name);
d62a17ae 902 continue;
903 }
904 if (status) {
af4c2728 905 flog_err(ZEBRA_ERR_NETLINK_LENGTH_ERROR,
43e52561
QY
906 "%s error: data remnant size %d", nl->name,
907 status);
d62a17ae 908 return -1;
909 }
910 }
911 return ret;
1fdc9eae 912}
913
936ebf0a
DS
914/*
915 * netlink_talk
916 *
917 * sendmsg() to netlink socket then recvmsg().
918 * Calls netlink_parse_info to parse returned data
919 *
920 * filter -> The filter to read final results from kernel
921 * nlmsghdr -> The data to send to the kernel
922 * nl -> The netlink socket information
923 * zns -> The zebra namespace information
924 * startup -> Are we reading in under startup conditions
925 * This is passed through eventually to filter.
926 */
2414abd3 927int netlink_talk(int (*filter)(struct nlmsghdr *, ns_id_t, int startup),
d62a17ae 928 struct nlmsghdr *n, struct nlsock *nl, struct zebra_ns *zns,
929 int startup)
1fdc9eae 930{
8d2dcc85 931 int status = 0;
d62a17ae 932 struct sockaddr_nl snl;
cbaca6a1
DS
933 struct iovec iov;
934 struct msghdr msg;
8d2dcc85 935 int save_errno = 0;
d62a17ae 936
937 memset(&snl, 0, sizeof snl);
cbaca6a1
DS
938 memset(&iov, 0, sizeof iov);
939 memset(&msg, 0, sizeof msg);
940
941 iov.iov_base = n;
942 iov.iov_len = n->nlmsg_len;
943 msg.msg_name = (void *)&snl;
944 msg.msg_namelen = sizeof snl;
945 msg.msg_iov = &iov;
946 msg.msg_iovlen = 1;
947
d62a17ae 948 snl.nl_family = AF_NETLINK;
949
950 n->nlmsg_seq = ++nl->seq;
951 n->nlmsg_pid = nl->snl.nl_pid;
952
d62a17ae 953 if (IS_ZEBRA_DEBUG_KERNEL)
954 zlog_debug(
955 "netlink_talk: %s type %s(%u), len=%d seq=%u flags 0x%x",
956 nl->name, nl_msg_type_to_str(n->nlmsg_type),
957 n->nlmsg_type, n->nlmsg_len, n->nlmsg_seq,
958 n->nlmsg_flags);
959
960 /* Send message to netlink interface. */
01b9e3fd
DL
961 frr_elevate_privs(&zserv_privs) {
962 status = sendmsg(nl->sock, &msg, 0);
963 save_errno = errno;
964 }
d62a17ae 965
966 if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND) {
967 zlog_debug("%s: >> netlink message dump [sent]", __func__);
968 zlog_hexdump(n, n->nlmsg_len);
969 }
970
971 if (status < 0) {
09c866e3
QY
972 flog_err_sys(LIB_ERR_SOCKET, "netlink_talk sendmsg() error: %s",
973 safe_strerror(save_errno));
d62a17ae 974 return -1;
975 }
976
977
978 /*
979 * Get reply from netlink socket.
980 * The reply should either be an acknowlegement or an error.
981 */
982 return netlink_parse_info(filter, nl, zns, 0, startup);
1fdc9eae 983}
984
289602d7 985/* Issue request message to kernel via netlink socket. GET messages
986 * are issued through this interface.
987 */
d62a17ae 988int netlink_request(struct nlsock *nl, struct nlmsghdr *n)
1fdc9eae 989{
d62a17ae 990 int ret;
991 struct sockaddr_nl snl;
d62a17ae 992
993 /* Check netlink socket. */
994 if (nl->sock < 0) {
09c866e3
QY
995 flog_err_sys(LIB_ERR_SOCKET, "%s socket isn't active.",
996 nl->name);
d62a17ae 997 return -1;
998 }
999
1000 /* Fill common fields for all requests. */
1001 n->nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
1002 n->nlmsg_pid = nl->snl.nl_pid;
1003 n->nlmsg_seq = ++nl->seq;
1004
1005 memset(&snl, 0, sizeof snl);
1006 snl.nl_family = AF_NETLINK;
1007
1008 /* Raise capabilities and send message, then lower capabilities. */
6bb30c2c
DL
1009 frr_elevate_privs(&zserv_privs) {
1010 ret = sendto(nl->sock, (void *)n, n->nlmsg_len, 0,
1011 (struct sockaddr *)&snl, sizeof snl);
d62a17ae 1012 }
1013
d62a17ae 1014 if (ret < 0) {
6bb30c2c
DL
1015 zlog_err("%s sendto failed: %s", nl->name,
1016 safe_strerror(errno));
d62a17ae 1017 return -1;
1018 }
1019
1020 return 0;
1fdc9eae 1021}
1022
1023/* Exported interface function. This function simply calls
1024 netlink_socket (). */
d62a17ae 1025void kernel_init(struct zebra_ns *zns)
1fdc9eae 1026{
d62a17ae 1027 unsigned long groups;
5d307d5d
DS
1028#if defined SOL_NETLINK
1029 int one, ret;
1030#endif
d62a17ae 1031
026a316f
DS
1032 /*
1033 * Initialize netlink sockets
1034 *
1035 * If RTMGRP_XXX exists use that, but at some point
1036 * I think the kernel developers realized that
1037 * keeping track of all the different values would
1038 * lead to confusion, so we need to convert the
1039 * RTNLGRP_XXX to a bit position for ourself
1040 */
1041 groups = RTMGRP_LINK |
1042 RTMGRP_IPV4_ROUTE |
1043 RTMGRP_IPV4_IFADDR |
1044 RTMGRP_IPV6_ROUTE |
1045 RTMGRP_IPV6_IFADDR |
1046 RTMGRP_IPV4_MROUTE |
1047 RTMGRP_NEIGH |
1048 (1 << (RTNLGRP_IPV4_RULE - 1)) |
1049 (1 << (RTNLGRP_IPV6_RULE - 1));
d62a17ae 1050
1051 snprintf(zns->netlink.name, sizeof(zns->netlink.name),
1052 "netlink-listen (NS %u)", zns->ns_id);
1053 zns->netlink.sock = -1;
19d5a4fe
DS
1054 if (netlink_socket(&zns->netlink, groups, zns->ns_id) < 0) {
1055 zlog_err("Failure to create %s socket",
1056 zns->netlink.name);
1057 exit(-1);
1058 }
d62a17ae 1059
1060 snprintf(zns->netlink_cmd.name, sizeof(zns->netlink_cmd.name),
1061 "netlink-cmd (NS %u)", zns->ns_id);
1062 zns->netlink_cmd.sock = -1;
19d5a4fe
DS
1063 if (netlink_socket(&zns->netlink_cmd, 0, zns->ns_id) < 0) {
1064 zlog_err("Failure to create %s socket",
1065 zns->netlink_cmd.name);
1066 exit(-1);
1067 }
d62a17ae 1068
5d307d5d
DS
1069 /*
1070 * SOL_NETLINK is not available on all platforms yet
1071 * apparently. It's in bits/socket.h which I am not
1072 * sure that we want to pull into our build system.
1073 */
1074#if defined SOL_NETLINK
1075 /*
1076 * Let's tell the kernel that we want to receive extended
1077 * ACKS over our command socket
1078 */
1079 one = 1;
1080 ret = setsockopt(zns->netlink_cmd.sock, SOL_NETLINK, NETLINK_EXT_ACK,
1081 &one, sizeof(one));
1082
1083 if (ret < 0)
1084 zlog_notice("Registration for extended ACK failed : %d %s",
1085 errno, safe_strerror(errno));
1086#endif
1087
d62a17ae 1088 /* Register kernel socket. */
19d5a4fe 1089 if (fcntl(zns->netlink.sock, F_SETFL, O_NONBLOCK) < 0)
09c866e3
QY
1090 flog_err_sys(LIB_ERR_SOCKET, "Can't set %s socket flags: %s",
1091 zns->netlink.name, safe_strerror(errno));
8c85e8ea
DS
1092
1093 if (fcntl(zns->netlink_cmd.sock, F_SETFL, O_NONBLOCK) < 0)
1094 zlog_err("Can't set %s socket error: %s(%d)",
1095 zns->netlink_cmd.name, safe_strerror(errno), errno);
19d5a4fe
DS
1096
1097 /* Set receive buffer size if it's set from command line */
1098 if (nl_rcvbufsize)
1099 netlink_recvbuf(&zns->netlink, nl_rcvbufsize);
1100
e940478c 1101 assert(zns->netlink.sock >= 0);
19d5a4fe
DS
1102 netlink_install_filter(zns->netlink.sock,
1103 zns->netlink_cmd.snl.nl_pid);
1104 zns->t_netlink = NULL;
1105
1106 thread_add_read(zebrad.master, kernel_read, zns,
1107 zns->netlink.sock, &zns->t_netlink);
d62a17ae 1108
1109 rt_netlink_init();
1fdc9eae 1110}
1111
d62a17ae 1112void kernel_terminate(struct zebra_ns *zns)
1fdc9eae 1113{
d62a17ae 1114 THREAD_READ_OFF(zns->t_netlink);
1115
1116 if (zns->netlink.sock >= 0) {
1117 close(zns->netlink.sock);
1118 zns->netlink.sock = -1;
1119 }
1120
1121 if (zns->netlink_cmd.sock >= 0) {
1122 close(zns->netlink_cmd.sock);
1123 zns->netlink_cmd.sock = -1;
1124 }
1fdc9eae 1125}
ddfeb486
DL
1126
1127#endif /* HAVE_NETLINK */