netifd: Fix device ifindex overwrite when processing netlink event messages
[project/netifd.git] / system-linux.c
1 /*
2 * netifd - network interface daemon
3 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
4 * Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
5 * Copyright (C) 2013 Steven Barth <steven@midlink.org>
6 * Copyright (C) 2014 Gioacchino Mazzurco <gio@eigenlab.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17 #define _GNU_SOURCE
18
19 #include <sys/socket.h>
20 #include <sys/ioctl.h>
21 #include <sys/stat.h>
22 #include <sys/syscall.h>
23
24 #include <net/if.h>
25 #include <net/if_arp.h>
26
27 #include <arpa/inet.h>
28 #include <netinet/in.h>
29
30 #include <linux/rtnetlink.h>
31 #include <linux/sockios.h>
32 #include <linux/ip.h>
33 #include <linux/if_link.h>
34 #include <linux/if_vlan.h>
35 #include <linux/if_bridge.h>
36 #include <linux/if_tunnel.h>
37 #include <linux/ip6_tunnel.h>
38 #include <linux/ethtool.h>
39 #include <linux/fib_rules.h>
40 #include <linux/version.h>
41
42 #ifndef RTN_FAILED_POLICY
43 #define RTN_FAILED_POLICY 12
44 #endif
45
46 #include <string.h>
47 #include <fcntl.h>
48 #include <glob.h>
49 #include <time.h>
50
51 #include <netlink/msg.h>
52 #include <netlink/attr.h>
53 #include <netlink/socket.h>
54 #include <libubox/uloop.h>
55
56 #include "netifd.h"
57 #include "device.h"
58 #include "system.h"
59
60 struct event_socket {
61 struct uloop_fd uloop;
62 struct nl_sock *sock;
63 int bufsize;
64 };
65
66 static int sock_ioctl = -1;
67 static struct nl_sock *sock_rtnl = NULL;
68
69 static int cb_rtnl_event(struct nl_msg *msg, void *arg);
70 static void handle_hotplug_event(struct uloop_fd *u, unsigned int events);
71
72 static char dev_buf[256];
73
74 static void
75 handler_nl_event(struct uloop_fd *u, unsigned int events)
76 {
77 struct event_socket *ev = container_of(u, struct event_socket, uloop);
78 int err;
79 socklen_t errlen = sizeof(err);
80
81 if (!u->error) {
82 nl_recvmsgs_default(ev->sock);
83 return;
84 }
85
86 if (getsockopt(u->fd, SOL_SOCKET, SO_ERROR, (void *)&err, &errlen))
87 goto abort;
88
89 switch(err) {
90 case ENOBUFS:
91 // Increase rx buffer size on netlink socket
92 ev->bufsize *= 2;
93 if (nl_socket_set_buffer_size(ev->sock, ev->bufsize, 0))
94 goto abort;
95
96 // Request full dump since some info got dropped
97 struct rtgenmsg msg = { .rtgen_family = AF_UNSPEC };
98 nl_send_simple(ev->sock, RTM_GETLINK, NLM_F_DUMP, &msg, sizeof(msg));
99 break;
100
101 default:
102 goto abort;
103 }
104 u->error = false;
105 return;
106
107 abort:
108 uloop_fd_delete(&ev->uloop);
109 return;
110 }
111
112 static struct nl_sock *
113 create_socket(int protocol, int groups)
114 {
115 struct nl_sock *sock;
116
117 sock = nl_socket_alloc();
118 if (!sock)
119 return NULL;
120
121 if (groups)
122 nl_join_groups(sock, groups);
123
124 if (nl_connect(sock, protocol))
125 return NULL;
126
127 return sock;
128 }
129
130 static bool
131 create_raw_event_socket(struct event_socket *ev, int protocol, int groups,
132 uloop_fd_handler cb, int flags)
133 {
134 ev->sock = create_socket(protocol, groups);
135 if (!ev->sock)
136 return false;
137
138 ev->uloop.fd = nl_socket_get_fd(ev->sock);
139 ev->uloop.cb = cb;
140 if (uloop_fd_add(&ev->uloop, ULOOP_READ|flags))
141 return false;
142
143 return true;
144 }
145
146 static bool
147 create_event_socket(struct event_socket *ev, int protocol,
148 int (*cb)(struct nl_msg *msg, void *arg))
149 {
150 if (!create_raw_event_socket(ev, protocol, 0, handler_nl_event, ULOOP_ERROR_CB))
151 return false;
152
153 // Install the valid custom callback handler
154 nl_socket_modify_cb(ev->sock, NL_CB_VALID, NL_CB_CUSTOM, cb, NULL);
155
156 // Disable sequence number checking on event sockets
157 nl_socket_disable_seq_check(ev->sock);
158
159 // Increase rx buffer size to 65K on event sockets
160 ev->bufsize = 65535;
161 if (nl_socket_set_buffer_size(ev->sock, ev->bufsize, 0))
162 return false;
163
164 return true;
165 }
166
167 static bool
168 system_rtn_aton(const char *src, unsigned int *dst)
169 {
170 char *e;
171 unsigned int n;
172
173 if (!strcmp(src, "local"))
174 n = RTN_LOCAL;
175 else if (!strcmp(src, "nat"))
176 n = RTN_NAT;
177 else if (!strcmp(src, "broadcast"))
178 n = RTN_BROADCAST;
179 else if (!strcmp(src, "anycast"))
180 n = RTN_ANYCAST;
181 else if (!strcmp(src, "multicast"))
182 n = RTN_MULTICAST;
183 else if (!strcmp(src, "prohibit"))
184 n = RTN_PROHIBIT;
185 else if (!strcmp(src, "unreachable"))
186 n = RTN_UNREACHABLE;
187 else if (!strcmp(src, "blackhole"))
188 n = RTN_BLACKHOLE;
189 else if (!strcmp(src, "xresolve"))
190 n = RTN_XRESOLVE;
191 else if (!strcmp(src, "unicast"))
192 n = RTN_UNICAST;
193 else if (!strcmp(src, "throw"))
194 n = RTN_THROW;
195 else if (!strcmp(src, "failed_policy"))
196 n = RTN_FAILED_POLICY;
197 else {
198 n = strtoul(src, &e, 0);
199 if (!e || *e || e == src || n > 255)
200 return false;
201 }
202
203 *dst = n;
204 return true;
205 }
206
207 static bool
208 system_tos_aton(const char *src, unsigned *dst)
209 {
210 char *e;
211
212 *dst = strtoul(src, &e, 16);
213 if (e == src || *e || *dst > 255)
214 return false;
215
216 return true;
217 }
218
219 int system_init(void)
220 {
221 static struct event_socket rtnl_event;
222 static struct event_socket hotplug_event;
223
224 sock_ioctl = socket(AF_LOCAL, SOCK_DGRAM, 0);
225 system_fd_set_cloexec(sock_ioctl);
226
227 // Prepare socket for routing / address control
228 sock_rtnl = create_socket(NETLINK_ROUTE, 0);
229 if (!sock_rtnl)
230 return -1;
231
232 if (!create_event_socket(&rtnl_event, NETLINK_ROUTE, cb_rtnl_event))
233 return -1;
234
235 if (!create_raw_event_socket(&hotplug_event, NETLINK_KOBJECT_UEVENT, 1,
236 handle_hotplug_event, 0))
237 return -1;
238
239 // Receive network link events form kernel
240 nl_socket_add_membership(rtnl_event.sock, RTNLGRP_LINK);
241
242 return 0;
243 }
244
245 static void system_set_sysctl(const char *path, const char *val)
246 {
247 int fd;
248
249 fd = open(path, O_WRONLY);
250 if (fd < 0)
251 return;
252
253 if (write(fd, val, strlen(val))) {}
254 close(fd);
255 }
256
257 static void system_set_dev_sysctl(const char *path, const char *device, const char *val)
258 {
259 snprintf(dev_buf, sizeof(dev_buf), path, device);
260 system_set_sysctl(dev_buf, val);
261 }
262
263 static void system_set_disable_ipv6(struct device *dev, const char *val)
264 {
265 system_set_dev_sysctl("/proc/sys/net/ipv6/conf/%s/disable_ipv6", dev->ifname, val);
266 }
267
268 static int system_get_sysctl(const char *path, char *buf, const size_t buf_sz)
269 {
270 int fd = -1, ret = -1;
271
272 fd = open(path, O_RDONLY);
273 if (fd < 0)
274 goto out;
275
276 ssize_t len = read(fd, buf, buf_sz - 1);
277 if (len < 0)
278 goto out;
279
280 ret = buf[len] = 0;
281
282 out:
283 if (fd >= 0)
284 close(fd);
285
286 return ret;
287 }
288
289 static int
290 system_get_dev_sysctl(const char *path, const char *device, char *buf, const size_t buf_sz)
291 {
292 snprintf(dev_buf, sizeof(dev_buf), path, device);
293 return system_get_sysctl(dev_buf, buf, buf_sz);
294 }
295
296 static int system_get_disable_ipv6(struct device *dev, char *buf, const size_t buf_sz)
297 {
298 return system_get_dev_sysctl("/proc/sys/net/ipv6/conf/%s/disable_ipv6",
299 dev->ifname, buf, buf_sz);
300 }
301
302 // Evaluate netlink messages
303 static int cb_rtnl_event(struct nl_msg *msg, void *arg)
304 {
305 struct nlmsghdr *nh = nlmsg_hdr(msg);
306 struct ifinfomsg *ifi = NLMSG_DATA(nh);
307 struct nlattr *nla[__IFLA_MAX];
308 int link_state = 0;
309 char buf[10];
310
311 if (nh->nlmsg_type != RTM_NEWLINK)
312 goto out;
313
314 nlmsg_parse(nh, sizeof(*ifi), nla, __IFLA_MAX - 1, NULL);
315 if (!nla[IFLA_IFNAME])
316 goto out;
317
318 struct device *dev = device_get(nla_data(nla[IFLA_IFNAME]), false);
319 if (!dev || dev->type->keep_link_status)
320 goto out;
321
322 if (!system_get_dev_sysctl("/sys/class/net/%s/carrier", dev->ifname, buf, sizeof(buf)))
323 link_state = strtoul(buf, NULL, 0);
324
325 device_set_link(dev, link_state ? true : false);
326
327 out:
328 return 0;
329 }
330
331 static void
332 handle_hotplug_msg(char *data, int size)
333 {
334 const char *subsystem = NULL, *interface = NULL;
335 char *cur, *end, *sep;
336 struct device *dev;
337 int skip;
338 bool add;
339
340 if (!strncmp(data, "add@", 4))
341 add = true;
342 else if (!strncmp(data, "remove@", 7))
343 add = false;
344 else
345 return;
346
347 skip = strlen(data) + 1;
348 end = data + size;
349
350 for (cur = data + skip; cur < end; cur += skip) {
351 skip = strlen(cur) + 1;
352
353 sep = strchr(cur, '=');
354 if (!sep)
355 continue;
356
357 *sep = 0;
358 if (!strcmp(cur, "INTERFACE"))
359 interface = sep + 1;
360 else if (!strcmp(cur, "SUBSYSTEM")) {
361 subsystem = sep + 1;
362 if (strcmp(subsystem, "net") != 0)
363 return;
364 }
365 if (subsystem && interface)
366 goto found;
367 }
368 return;
369
370 found:
371 dev = device_get(interface, false);
372 if (!dev)
373 return;
374
375 if (dev->type != &simple_device_type)
376 return;
377
378 if (add && system_if_force_external(dev->ifname))
379 return;
380
381 device_set_present(dev, add);
382 }
383
384 static void
385 handle_hotplug_event(struct uloop_fd *u, unsigned int events)
386 {
387 struct event_socket *ev = container_of(u, struct event_socket, uloop);
388 struct sockaddr_nl nla;
389 unsigned char *buf = NULL;
390 int size;
391
392 while ((size = nl_recv(ev->sock, &nla, &buf, NULL)) > 0) {
393 if (nla.nl_pid == 0)
394 handle_hotplug_msg((char *) buf, size);
395
396 free(buf);
397 }
398 }
399
400 static int system_rtnl_call(struct nl_msg *msg)
401 {
402 int ret;
403
404 ret = nl_send_auto_complete(sock_rtnl, msg);
405 nlmsg_free(msg);
406
407 if (ret < 0)
408 return ret;
409
410 return nl_wait_for_ack(sock_rtnl);
411 }
412
413 int system_bridge_delbr(struct device *bridge)
414 {
415 return ioctl(sock_ioctl, SIOCBRDELBR, bridge->ifname);
416 }
417
418 static int system_bridge_if(const char *bridge, struct device *dev, int cmd, void *data)
419 {
420 struct ifreq ifr;
421
422 memset(&ifr, 0, sizeof(ifr));
423 if (dev)
424 ifr.ifr_ifindex = dev->ifindex;
425 else
426 ifr.ifr_data = data;
427 strncpy(ifr.ifr_name, bridge, sizeof(ifr.ifr_name));
428 return ioctl(sock_ioctl, cmd, &ifr);
429 }
430
431 static bool system_is_bridge(const char *name, char *buf, int buflen)
432 {
433 struct stat st;
434
435 snprintf(buf, buflen, "/sys/devices/virtual/net/%s/bridge", name);
436 if (stat(buf, &st) < 0)
437 return false;
438
439 return true;
440 }
441
442 static char *system_get_bridge(const char *name, char *buf, int buflen)
443 {
444 char *path;
445 ssize_t len = -1;
446 glob_t gl;
447
448 snprintf(buf, buflen, "/sys/devices/virtual/net/*/brif/%s/bridge", name);
449 if (glob(buf, GLOB_NOSORT, NULL, &gl) < 0)
450 return NULL;
451
452 if (gl.gl_pathc > 0)
453 len = readlink(gl.gl_pathv[0], buf, buflen);
454
455 globfree(&gl);
456
457 if (len < 0)
458 return NULL;
459
460 buf[len] = 0;
461 path = strrchr(buf, '/');
462 if (!path)
463 return NULL;
464
465 return path + 1;
466 }
467
468 static void system_bridge_set_wireless(const char *bridge, const char *dev)
469 {
470 snprintf(dev_buf, sizeof(dev_buf),
471 "/sys/devices/virtual/net/%s/brif/%s/multicast_to_unicast",
472 bridge, dev);
473 system_set_sysctl(dev_buf, "1");
474 }
475
476 int system_bridge_addif(struct device *bridge, struct device *dev)
477 {
478 char *oldbr;
479 int ret = 0;
480
481 oldbr = system_get_bridge(dev->ifname, dev_buf, sizeof(dev_buf));
482 if (!oldbr || strcmp(oldbr, bridge->ifname) != 0)
483 ret = system_bridge_if(bridge->ifname, dev, SIOCBRADDIF, NULL);
484
485 if (dev->wireless)
486 system_bridge_set_wireless(bridge->ifname, dev->ifname);
487
488 return ret;
489 }
490
491 int system_bridge_delif(struct device *bridge, struct device *dev)
492 {
493 return system_bridge_if(bridge->ifname, dev, SIOCBRDELIF, NULL);
494 }
495
496 int system_if_resolve(struct device *dev)
497 {
498 struct ifreq ifr;
499 strncpy(ifr.ifr_name, dev->ifname, sizeof(ifr.ifr_name));
500 if (!ioctl(sock_ioctl, SIOCGIFINDEX, &ifr))
501 return ifr.ifr_ifindex;
502 else
503 return 0;
504 }
505
506 static int system_if_flags(const char *ifname, unsigned add, unsigned rem)
507 {
508 struct ifreq ifr;
509
510 memset(&ifr, 0, sizeof(ifr));
511 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
512 ioctl(sock_ioctl, SIOCGIFFLAGS, &ifr);
513 ifr.ifr_flags |= add;
514 ifr.ifr_flags &= ~rem;
515 return ioctl(sock_ioctl, SIOCSIFFLAGS, &ifr);
516 }
517
518 struct clear_data {
519 struct nl_msg *msg;
520 struct device *dev;
521 int type;
522 int size;
523 int af;
524 };
525
526
527 static bool check_ifaddr(struct nlmsghdr *hdr, int ifindex)
528 {
529 struct ifaddrmsg *ifa = NLMSG_DATA(hdr);
530
531 return ifa->ifa_index == ifindex;
532 }
533
534 static bool check_route(struct nlmsghdr *hdr, int ifindex)
535 {
536 struct rtmsg *r = NLMSG_DATA(hdr);
537 struct nlattr *tb[__RTA_MAX];
538
539 if (r->rtm_protocol == RTPROT_KERNEL &&
540 r->rtm_family == AF_INET6)
541 return false;
542
543 nlmsg_parse(hdr, sizeof(struct rtmsg), tb, __RTA_MAX - 1, NULL);
544 if (!tb[RTA_OIF])
545 return false;
546
547 return *(int *)RTA_DATA(tb[RTA_OIF]) == ifindex;
548 }
549
550 static bool check_rule(struct nlmsghdr *hdr, int ifindex)
551 {
552 return true;
553 }
554
555 static int cb_clear_event(struct nl_msg *msg, void *arg)
556 {
557 struct clear_data *clr = arg;
558 struct nlmsghdr *hdr = nlmsg_hdr(msg);
559 bool (*cb)(struct nlmsghdr *, int ifindex);
560 int type;
561
562 switch(clr->type) {
563 case RTM_GETADDR:
564 type = RTM_DELADDR;
565 if (hdr->nlmsg_type != RTM_NEWADDR)
566 return NL_SKIP;
567
568 cb = check_ifaddr;
569 break;
570 case RTM_GETROUTE:
571 type = RTM_DELROUTE;
572 if (hdr->nlmsg_type != RTM_NEWROUTE)
573 return NL_SKIP;
574
575 cb = check_route;
576 break;
577 case RTM_GETRULE:
578 type = RTM_DELRULE;
579 if (hdr->nlmsg_type != RTM_NEWRULE)
580 return NL_SKIP;
581
582 cb = check_rule;
583 break;
584 default:
585 return NL_SKIP;
586 }
587
588 if (!cb(hdr, clr->dev ? clr->dev->ifindex : 0))
589 return NL_SKIP;
590
591 if (type == RTM_DELRULE)
592 D(SYSTEM, "Remove a rule\n");
593 else
594 D(SYSTEM, "Remove %s from device %s\n",
595 type == RTM_DELADDR ? "an address" : "a route",
596 clr->dev->ifname);
597 memcpy(nlmsg_hdr(clr->msg), hdr, hdr->nlmsg_len);
598 hdr = nlmsg_hdr(clr->msg);
599 hdr->nlmsg_type = type;
600 hdr->nlmsg_flags = NLM_F_REQUEST;
601
602 nl_socket_disable_auto_ack(sock_rtnl);
603 nl_send_auto_complete(sock_rtnl, clr->msg);
604 nl_socket_enable_auto_ack(sock_rtnl);
605
606 return NL_SKIP;
607 }
608
609 static int
610 cb_finish_event(struct nl_msg *msg, void *arg)
611 {
612 int *pending = arg;
613 *pending = 0;
614 return NL_STOP;
615 }
616
617 static int
618 error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err, void *arg)
619 {
620 int *pending = arg;
621 *pending = err->error;
622 return NL_STOP;
623 }
624
625 static void
626 system_if_clear_entries(struct device *dev, int type, int af)
627 {
628 struct clear_data clr;
629 struct nl_cb *cb = nl_cb_alloc(NL_CB_DEFAULT);
630 struct rtmsg rtm = {
631 .rtm_family = af,
632 .rtm_flags = RTM_F_CLONED,
633 };
634 int flags = NLM_F_DUMP;
635 int pending = 1;
636
637 clr.af = af;
638 clr.dev = dev;
639 clr.type = type;
640 switch (type) {
641 case RTM_GETADDR:
642 case RTM_GETRULE:
643 clr.size = sizeof(struct rtgenmsg);
644 break;
645 case RTM_GETROUTE:
646 clr.size = sizeof(struct rtmsg);
647 break;
648 default:
649 return;
650 }
651
652 if (!cb)
653 return;
654
655 clr.msg = nlmsg_alloc_simple(type, flags);
656 if (!clr.msg)
657 goto out;
658
659 nlmsg_append(clr.msg, &rtm, clr.size, 0);
660 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, cb_clear_event, &clr);
661 nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, cb_finish_event, &pending);
662 nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &pending);
663
664 nl_send_auto_complete(sock_rtnl, clr.msg);
665 while (pending > 0)
666 nl_recvmsgs(sock_rtnl, cb);
667
668 nlmsg_free(clr.msg);
669 out:
670 nl_cb_put(cb);
671 }
672
673 /*
674 * Clear bridge (membership) state and bring down device
675 */
676 void system_if_clear_state(struct device *dev)
677 {
678 static char buf[256];
679 char *bridge;
680
681 device_set_ifindex(dev, system_if_resolve(dev));
682 if (dev->external || !dev->ifindex)
683 return;
684
685 system_if_flags(dev->ifname, 0, IFF_UP);
686
687 if (system_is_bridge(dev->ifname, buf, sizeof(buf))) {
688 D(SYSTEM, "Delete existing bridge named '%s'\n", dev->ifname);
689 system_bridge_delbr(dev);
690 return;
691 }
692
693 bridge = system_get_bridge(dev->ifname, buf, sizeof(buf));
694 if (bridge) {
695 D(SYSTEM, "Remove device '%s' from bridge '%s'\n", dev->ifname, bridge);
696 system_bridge_if(bridge, dev, SIOCBRDELIF, NULL);
697 }
698
699 system_if_clear_entries(dev, RTM_GETROUTE, AF_INET);
700 system_if_clear_entries(dev, RTM_GETADDR, AF_INET);
701 system_if_clear_entries(dev, RTM_GETROUTE, AF_INET6);
702 system_if_clear_entries(dev, RTM_GETADDR, AF_INET6);
703 system_set_disable_ipv6(dev, "0");
704 }
705
706 static inline unsigned long
707 sec_to_jiffies(int val)
708 {
709 return (unsigned long) val * 100;
710 }
711
712 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg)
713 {
714 unsigned long args[4] = {};
715
716 if (ioctl(sock_ioctl, SIOCBRADDBR, bridge->ifname) < 0)
717 return -1;
718
719 args[0] = BRCTL_SET_BRIDGE_STP_STATE;
720 args[1] = !!cfg->stp;
721 system_bridge_if(bridge->ifname, NULL, SIOCDEVPRIVATE, &args);
722
723 args[0] = BRCTL_SET_BRIDGE_FORWARD_DELAY;
724 args[1] = sec_to_jiffies(cfg->forward_delay);
725 system_bridge_if(bridge->ifname, NULL, SIOCDEVPRIVATE, &args);
726
727 system_set_dev_sysctl("/sys/devices/virtual/net/%s/bridge/multicast_snooping",
728 bridge->ifname, cfg->igmp_snoop ? "1" : "0");
729
730 system_set_dev_sysctl("/sys/devices/virtual/net/%s/bridge/multicast_querier",
731 bridge->ifname, cfg->igmp_snoop ? "1" : "0");
732
733 args[0] = BRCTL_SET_BRIDGE_PRIORITY;
734 args[1] = cfg->priority;
735 system_bridge_if(bridge->ifname, NULL, SIOCDEVPRIVATE, &args);
736
737 if (cfg->flags & BRIDGE_OPT_AGEING_TIME) {
738 args[0] = BRCTL_SET_AGEING_TIME;
739 args[1] = sec_to_jiffies(cfg->ageing_time);
740 system_bridge_if(bridge->ifname, NULL, SIOCDEVPRIVATE, &args);
741 }
742
743 if (cfg->flags & BRIDGE_OPT_HELLO_TIME) {
744 args[0] = BRCTL_SET_BRIDGE_HELLO_TIME;
745 args[1] = sec_to_jiffies(cfg->hello_time);
746 system_bridge_if(bridge->ifname, NULL, SIOCDEVPRIVATE, &args);
747 }
748
749 if (cfg->flags & BRIDGE_OPT_MAX_AGE) {
750 args[0] = BRCTL_SET_BRIDGE_MAX_AGE;
751 args[1] = sec_to_jiffies(cfg->max_age);
752 system_bridge_if(bridge->ifname, NULL, SIOCDEVPRIVATE, &args);
753 }
754
755 return 0;
756 }
757
758 int system_macvlan_add(struct device *macvlan, struct device *dev, struct macvlan_config *cfg)
759 {
760 struct nl_msg *msg;
761 struct nlattr *linkinfo, *data;
762 struct ifinfomsg iim = { .ifi_family = AF_UNSPEC, };
763 int ifindex = system_if_resolve(dev);
764 int i, rv;
765 static const struct {
766 const char *name;
767 enum macvlan_mode val;
768 } modes[] = {
769 { "private", MACVLAN_MODE_PRIVATE },
770 { "vepa", MACVLAN_MODE_VEPA },
771 { "bridge", MACVLAN_MODE_BRIDGE },
772 { "passthru", MACVLAN_MODE_PASSTHRU },
773 };
774
775 if (ifindex == 0)
776 return -ENOENT;
777
778 msg = nlmsg_alloc_simple(RTM_NEWLINK, NLM_F_REQUEST | NLM_F_CREATE | NLM_F_EXCL);
779
780 if (!msg)
781 return -1;
782
783 nlmsg_append(msg, &iim, sizeof(iim), 0);
784
785 if (cfg->flags & MACVLAN_OPT_MACADDR)
786 nla_put(msg, IFLA_ADDRESS, sizeof(cfg->macaddr), cfg->macaddr);
787 nla_put_string(msg, IFLA_IFNAME, macvlan->ifname);
788 nla_put_u32(msg, IFLA_LINK, ifindex);
789
790 if (!(linkinfo = nla_nest_start(msg, IFLA_LINKINFO)))
791 goto nla_put_failure;
792
793 nla_put_string(msg, IFLA_INFO_KIND, "macvlan");
794
795 if (!(data = nla_nest_start(msg, IFLA_INFO_DATA)))
796 goto nla_put_failure;
797
798 if (cfg->mode) {
799 for (i = 0; i < ARRAY_SIZE(modes); i++) {
800 if (strcmp(cfg->mode, modes[i].name) != 0)
801 continue;
802
803 nla_put_u32(msg, IFLA_MACVLAN_MODE, modes[i].val);
804 break;
805 }
806 }
807
808 nla_nest_end(msg, data);
809 nla_nest_end(msg, linkinfo);
810
811 rv = system_rtnl_call(msg);
812 if (rv)
813 D(SYSTEM, "Error adding macvlan '%s' over '%s': %d\n", macvlan->ifname, dev->ifname, rv);
814
815 return rv;
816
817 nla_put_failure:
818 nlmsg_free(msg);
819 return -ENOMEM;
820 }
821
822 static int system_link_del(const char *ifname)
823 {
824 struct nl_msg *msg;
825 struct ifinfomsg iim = {
826 .ifi_family = AF_UNSPEC,
827 .ifi_index = 0,
828 };
829
830 msg = nlmsg_alloc_simple(RTM_DELLINK, NLM_F_REQUEST);
831
832 if (!msg)
833 return -1;
834
835 nlmsg_append(msg, &iim, sizeof(iim), 0);
836 nla_put_string(msg, IFLA_IFNAME, ifname);
837 return system_rtnl_call(msg);
838 }
839
840 int system_macvlan_del(struct device *macvlan)
841 {
842 return system_link_del(macvlan->ifname);
843 }
844
845 static int system_vlan(struct device *dev, int id)
846 {
847 struct vlan_ioctl_args ifr = {
848 .cmd = SET_VLAN_NAME_TYPE_CMD,
849 .u.name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD,
850 };
851
852 ioctl(sock_ioctl, SIOCSIFVLAN, &ifr);
853
854 if (id < 0) {
855 ifr.cmd = DEL_VLAN_CMD;
856 ifr.u.VID = 0;
857 } else {
858 ifr.cmd = ADD_VLAN_CMD;
859 ifr.u.VID = id;
860 }
861 strncpy(ifr.device1, dev->ifname, sizeof(ifr.device1));
862 return ioctl(sock_ioctl, SIOCSIFVLAN, &ifr);
863 }
864
865 int system_vlan_add(struct device *dev, int id)
866 {
867 return system_vlan(dev, id);
868 }
869
870 int system_vlan_del(struct device *dev)
871 {
872 return system_vlan(dev, -1);
873 }
874
875 int system_vlandev_add(struct device *vlandev, struct device *dev, struct vlandev_config *cfg)
876 {
877 struct nl_msg *msg;
878 struct nlattr *linkinfo, *data;
879 struct ifinfomsg iim = { .ifi_family = AF_UNSPEC };
880 int ifindex = system_if_resolve(dev);
881 int rv;
882
883 if (ifindex == 0)
884 return -ENOENT;
885
886 msg = nlmsg_alloc_simple(RTM_NEWLINK, NLM_F_REQUEST | NLM_F_CREATE | NLM_F_EXCL);
887
888 if (!msg)
889 return -1;
890
891 nlmsg_append(msg, &iim, sizeof(iim), 0);
892 nla_put_string(msg, IFLA_IFNAME, vlandev->ifname);
893 nla_put_u32(msg, IFLA_LINK, ifindex);
894
895 if (!(linkinfo = nla_nest_start(msg, IFLA_LINKINFO)))
896 goto nla_put_failure;
897
898 nla_put_string(msg, IFLA_INFO_KIND, "vlan");
899
900 if (!(data = nla_nest_start(msg, IFLA_INFO_DATA)))
901 goto nla_put_failure;
902
903 nla_put_u16(msg, IFLA_VLAN_ID, cfg->vid);
904
905 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)
906 nla_put_u16(msg, IFLA_VLAN_PROTOCOL, htons(cfg->proto));
907 #else
908 if(cfg->proto == VLAN_PROTO_8021AD)
909 netifd_log_message(L_WARNING, "%s Your kernel is older than linux 3.10.0, 802.1ad is not supported defaulting to 802.1q", vlandev->type->name);
910 #endif
911
912 nla_nest_end(msg, data);
913 nla_nest_end(msg, linkinfo);
914
915 rv = system_rtnl_call(msg);
916 if (rv)
917 D(SYSTEM, "Error adding vlandev '%s' over '%s': %d\n", vlandev->ifname, dev->ifname, rv);
918
919 return rv;
920
921 nla_put_failure:
922 nlmsg_free(msg);
923 return -ENOMEM;
924 }
925
926 int system_vlandev_del(struct device *vlandev)
927 {
928 return system_link_del(vlandev->ifname);
929 }
930
931 static void
932 system_if_get_settings(struct device *dev, struct device_settings *s)
933 {
934 struct ifreq ifr;
935 char buf[10];
936
937 memset(&ifr, 0, sizeof(ifr));
938 strncpy(ifr.ifr_name, dev->ifname, sizeof(ifr.ifr_name));
939
940 if (ioctl(sock_ioctl, SIOCGIFMTU, &ifr) == 0) {
941 s->mtu = ifr.ifr_mtu;
942 s->flags |= DEV_OPT_MTU;
943 }
944
945 if (ioctl(sock_ioctl, SIOCGIFTXQLEN, &ifr) == 0) {
946 s->txqueuelen = ifr.ifr_qlen;
947 s->flags |= DEV_OPT_TXQUEUELEN;
948 }
949
950 if (ioctl(sock_ioctl, SIOCGIFHWADDR, &ifr) == 0) {
951 memcpy(s->macaddr, &ifr.ifr_hwaddr.sa_data, sizeof(s->macaddr));
952 s->flags |= DEV_OPT_MACADDR;
953 }
954
955 if (!system_get_disable_ipv6(dev, buf, sizeof(buf))) {
956 s->ipv6 = !strtoul(buf, NULL, 0);
957 s->flags |= DEV_OPT_IPV6;
958 }
959
960 if (ioctl(sock_ioctl, SIOCGIFFLAGS, &ifr) == 0) {
961 s->promisc = ifr.ifr_flags & IFF_PROMISC;
962 s->flags |= DEV_OPT_PROMISC;
963 }
964 }
965
966 void
967 system_if_apply_settings(struct device *dev, struct device_settings *s, unsigned int apply_mask)
968 {
969 struct ifreq ifr;
970
971 if (!apply_mask)
972 return;
973
974 memset(&ifr, 0, sizeof(ifr));
975 strncpy(ifr.ifr_name, dev->ifname, sizeof(ifr.ifr_name));
976 if (s->flags & DEV_OPT_MTU & apply_mask) {
977 ifr.ifr_mtu = s->mtu;
978 if (ioctl(sock_ioctl, SIOCSIFMTU, &ifr) < 0)
979 s->flags &= ~DEV_OPT_MTU;
980 }
981 if (s->flags & DEV_OPT_TXQUEUELEN & apply_mask) {
982 ifr.ifr_qlen = s->txqueuelen;
983 if (ioctl(sock_ioctl, SIOCSIFTXQLEN, &ifr) < 0)
984 s->flags &= ~DEV_OPT_TXQUEUELEN;
985 }
986 if ((s->flags & DEV_OPT_MACADDR & apply_mask) && !dev->external) {
987 ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER;
988 memcpy(&ifr.ifr_hwaddr.sa_data, s->macaddr, sizeof(s->macaddr));
989 if (ioctl(sock_ioctl, SIOCSIFHWADDR, &ifr) < 0)
990 s->flags &= ~DEV_OPT_MACADDR;
991 }
992 if (s->flags & DEV_OPT_IPV6 & apply_mask)
993 system_set_disable_ipv6(dev, s->ipv6 ? "0" : "1");
994 if (s->flags & DEV_OPT_PROMISC & apply_mask) {
995 if (system_if_flags(dev->ifname, s->promisc ? IFF_PROMISC : 0,
996 !s->promisc ? IFF_PROMISC : 0) < 0)
997 s->flags &= ~DEV_OPT_PROMISC;
998 }
999 }
1000
1001 int system_if_up(struct device *dev)
1002 {
1003 system_if_get_settings(dev, &dev->orig_settings);
1004 system_if_apply_settings(dev, &dev->settings, dev->settings.flags);
1005 return system_if_flags(dev->ifname, IFF_UP, 0);
1006 }
1007
1008 int system_if_down(struct device *dev)
1009 {
1010 int ret = system_if_flags(dev->ifname, 0, IFF_UP);
1011 dev->orig_settings.flags &= dev->settings.flags;
1012 system_if_apply_settings(dev, &dev->orig_settings, dev->orig_settings.flags);
1013 return ret;
1014 }
1015
1016 struct if_check_data {
1017 struct device *dev;
1018 int pending;
1019 int ret;
1020 };
1021
1022 #ifndef IFF_LOWER_UP
1023 #define IFF_LOWER_UP 0x10000
1024 #endif
1025
1026 static int cb_if_check_valid(struct nl_msg *msg, void *arg)
1027 {
1028 struct nlmsghdr *nh = nlmsg_hdr(msg);
1029 struct ifinfomsg *ifi = NLMSG_DATA(nh);
1030 struct if_check_data *chk = (struct if_check_data *)arg;
1031
1032 if (nh->nlmsg_type != RTM_NEWLINK)
1033 return NL_SKIP;
1034
1035 device_set_present(chk->dev, ifi->ifi_index > 0 ? true : false);
1036 device_set_link(chk->dev, ifi->ifi_flags & IFF_LOWER_UP ? true : false);
1037
1038 return NL_OK;
1039 }
1040
1041 static int cb_if_check_ack(struct nl_msg *msg, void *arg)
1042 {
1043 struct if_check_data *chk = (struct if_check_data *)arg;
1044 chk->pending = 0;
1045 return NL_STOP;
1046 }
1047
1048 static int cb_if_check_error(struct sockaddr_nl *nla, struct nlmsgerr *err, void *arg)
1049 {
1050 struct if_check_data *chk = (struct if_check_data *)arg;
1051
1052 device_set_present(chk->dev, false);
1053 device_set_link(chk->dev, false);
1054 chk->pending = err->error;
1055
1056 return NL_STOP;
1057 }
1058
1059 int system_if_check(struct device *dev)
1060 {
1061 struct nl_cb *cb = nl_cb_alloc(NL_CB_DEFAULT);
1062 struct nl_msg *msg;
1063 struct ifinfomsg ifi = {
1064 .ifi_family = AF_UNSPEC,
1065 .ifi_index = 0,
1066 };
1067 struct if_check_data chk = {
1068 .dev = dev,
1069 .pending = 1,
1070 };
1071 int ret = 1;
1072
1073 msg = nlmsg_alloc_simple(RTM_GETLINK, 0);
1074 if (!msg || nlmsg_append(msg, &ifi, sizeof(ifi), 0) ||
1075 nla_put_string(msg, IFLA_IFNAME, dev->ifname))
1076 goto out;
1077
1078 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, cb_if_check_valid, &chk);
1079 nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, cb_if_check_ack, &chk);
1080 nl_cb_err(cb, NL_CB_CUSTOM, cb_if_check_error, &chk);
1081
1082 nl_send_auto_complete(sock_rtnl, msg);
1083 while (chk.pending > 0)
1084 nl_recvmsgs(sock_rtnl, cb);
1085
1086 nlmsg_free(msg);
1087 ret = chk.pending;
1088
1089 out:
1090 nl_cb_put(cb);
1091 return ret;
1092 }
1093
1094 struct device *
1095 system_if_get_parent(struct device *dev)
1096 {
1097 char buf[64], *devname;
1098 int ifindex, iflink, len;
1099 FILE *f;
1100
1101 snprintf(buf, sizeof(buf), "/sys/class/net/%s/iflink", dev->ifname);
1102 f = fopen(buf, "r");
1103 if (!f)
1104 return NULL;
1105
1106 len = fread(buf, 1, sizeof(buf) - 1, f);
1107 fclose(f);
1108
1109 if (len <= 0)
1110 return NULL;
1111
1112 buf[len] = 0;
1113 iflink = strtoul(buf, NULL, 0);
1114 ifindex = system_if_resolve(dev);
1115 if (!iflink || iflink == ifindex)
1116 return NULL;
1117
1118 devname = if_indextoname(iflink, buf);
1119 if (!devname)
1120 return NULL;
1121
1122 return device_get(devname, true);
1123 }
1124
1125 static bool
1126 read_string_file(int dir_fd, const char *file, char *buf, int len)
1127 {
1128 bool ret = false;
1129 char *c;
1130 int fd;
1131
1132 fd = openat(dir_fd, file, O_RDONLY);
1133 if (fd < 0)
1134 return false;
1135
1136 retry:
1137 len = read(fd, buf, len - 1);
1138 if (len < 0) {
1139 if (errno == EINTR)
1140 goto retry;
1141 } else if (len > 0) {
1142 buf[len] = 0;
1143
1144 c = strchr(buf, '\n');
1145 if (c)
1146 *c = 0;
1147
1148 ret = true;
1149 }
1150
1151 close(fd);
1152
1153 return ret;
1154 }
1155
1156 static bool
1157 read_uint64_file(int dir_fd, const char *file, uint64_t *val)
1158 {
1159 char buf[64];
1160 bool ret = false;
1161
1162 ret = read_string_file(dir_fd, file, buf, sizeof(buf));
1163 if (ret)
1164 *val = strtoull(buf, NULL, 0);
1165
1166 return ret;
1167 }
1168
1169 /* Assume advertised flags == supported flags */
1170 static const struct {
1171 uint32_t mask;
1172 const char *name;
1173 } ethtool_link_modes[] = {
1174 { ADVERTISED_10baseT_Half, "10H" },
1175 { ADVERTISED_10baseT_Full, "10F" },
1176 { ADVERTISED_100baseT_Half, "100H" },
1177 { ADVERTISED_100baseT_Full, "100F" },
1178 { ADVERTISED_1000baseT_Half, "1000H" },
1179 { ADVERTISED_1000baseT_Full, "1000F" },
1180 };
1181
1182 static void system_add_link_modes(struct blob_buf *b, __u32 mask)
1183 {
1184 int i;
1185 for (i = 0; i < ARRAY_SIZE(ethtool_link_modes); i++) {
1186 if (mask & ethtool_link_modes[i].mask)
1187 blobmsg_add_string(b, NULL, ethtool_link_modes[i].name);
1188 }
1189 }
1190
1191 bool
1192 system_if_force_external(const char *ifname)
1193 {
1194 char buf[64];
1195 struct stat s;
1196
1197 snprintf(buf, sizeof(buf), "/sys/class/net/%s/phy80211", ifname);
1198 return stat(buf, &s) == 0;
1199 }
1200
1201 int
1202 system_if_dump_info(struct device *dev, struct blob_buf *b)
1203 {
1204 struct ethtool_cmd ecmd;
1205 struct ifreq ifr;
1206 char buf[64], *s;
1207 void *c;
1208 int dir_fd;
1209
1210 snprintf(buf, sizeof(buf), "/sys/class/net/%s", dev->ifname);
1211 dir_fd = open(buf, O_DIRECTORY);
1212
1213 memset(&ecmd, 0, sizeof(ecmd));
1214 memset(&ifr, 0, sizeof(ifr));
1215 strcpy(ifr.ifr_name, dev->ifname);
1216 ifr.ifr_data = (caddr_t) &ecmd;
1217 ecmd.cmd = ETHTOOL_GSET;
1218
1219 if (ioctl(sock_ioctl, SIOCETHTOOL, &ifr) == 0) {
1220 c = blobmsg_open_array(b, "link-advertising");
1221 system_add_link_modes(b, ecmd.advertising);
1222 blobmsg_close_array(b, c);
1223
1224 c = blobmsg_open_array(b, "link-supported");
1225 system_add_link_modes(b, ecmd.supported);
1226 blobmsg_close_array(b, c);
1227
1228 s = blobmsg_alloc_string_buffer(b, "speed", 8);
1229 snprintf(s, 8, "%d%c", ethtool_cmd_speed(&ecmd),
1230 ecmd.duplex == DUPLEX_HALF ? 'H' : 'F');
1231 blobmsg_add_string_buffer(b);
1232 }
1233
1234 close(dir_fd);
1235 return 0;
1236 }
1237
1238 int
1239 system_if_dump_stats(struct device *dev, struct blob_buf *b)
1240 {
1241 const char *const counters[] = {
1242 "collisions", "rx_frame_errors", "tx_compressed",
1243 "multicast", "rx_length_errors", "tx_dropped",
1244 "rx_bytes", "rx_missed_errors", "tx_errors",
1245 "rx_compressed", "rx_over_errors", "tx_fifo_errors",
1246 "rx_crc_errors", "rx_packets", "tx_heartbeat_errors",
1247 "rx_dropped", "tx_aborted_errors", "tx_packets",
1248 "rx_errors", "tx_bytes", "tx_window_errors",
1249 "rx_fifo_errors", "tx_carrier_errors",
1250 };
1251 char buf[64];
1252 int stats_dir;
1253 int i;
1254 uint64_t val = 0;
1255
1256 snprintf(buf, sizeof(buf), "/sys/class/net/%s/statistics", dev->ifname);
1257 stats_dir = open(buf, O_DIRECTORY);
1258 if (stats_dir < 0)
1259 return -1;
1260
1261 for (i = 0; i < ARRAY_SIZE(counters); i++)
1262 if (read_uint64_file(stats_dir, counters[i], &val))
1263 blobmsg_add_u64(b, counters[i], val);
1264
1265 close(stats_dir);
1266 return 0;
1267 }
1268
1269 static int system_addr(struct device *dev, struct device_addr *addr, int cmd)
1270 {
1271 bool v4 = ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4);
1272 int alen = v4 ? 4 : 16;
1273 unsigned int flags = 0;
1274 struct ifaddrmsg ifa = {
1275 .ifa_family = (alen == 4) ? AF_INET : AF_INET6,
1276 .ifa_prefixlen = addr->mask,
1277 .ifa_index = dev->ifindex,
1278 };
1279
1280 struct nl_msg *msg;
1281 if (cmd == RTM_NEWADDR)
1282 flags |= NLM_F_CREATE | NLM_F_REPLACE;
1283
1284 msg = nlmsg_alloc_simple(cmd, flags);
1285 if (!msg)
1286 return -1;
1287
1288 nlmsg_append(msg, &ifa, sizeof(ifa), 0);
1289 nla_put(msg, IFA_LOCAL, alen, &addr->addr);
1290 if (v4) {
1291 if (addr->broadcast)
1292 nla_put_u32(msg, IFA_BROADCAST, addr->broadcast);
1293 if (addr->point_to_point)
1294 nla_put_u32(msg, IFA_ADDRESS, addr->point_to_point);
1295 } else {
1296 time_t now = system_get_rtime();
1297 struct ifa_cacheinfo cinfo = {0xffffffffU, 0xffffffffU, 0, 0};
1298
1299 if (addr->preferred_until) {
1300 int64_t preferred = addr->preferred_until - now;
1301 if (preferred < 0)
1302 preferred = 0;
1303 else if (preferred > UINT32_MAX)
1304 preferred = UINT32_MAX;
1305
1306 cinfo.ifa_prefered = preferred;
1307 }
1308
1309 if (addr->valid_until) {
1310 int64_t valid = addr->valid_until - now;
1311 if (valid <= 0)
1312 return -1;
1313 else if (valid > UINT32_MAX)
1314 valid = UINT32_MAX;
1315
1316 cinfo.ifa_valid = valid;
1317 }
1318
1319 nla_put(msg, IFA_CACHEINFO, sizeof(cinfo), &cinfo);
1320 }
1321
1322 return system_rtnl_call(msg);
1323 }
1324
1325 int system_add_address(struct device *dev, struct device_addr *addr)
1326 {
1327 return system_addr(dev, addr, RTM_NEWADDR);
1328 }
1329
1330 int system_del_address(struct device *dev, struct device_addr *addr)
1331 {
1332 return system_addr(dev, addr, RTM_DELADDR);
1333 }
1334
1335 static int system_rt(struct device *dev, struct device_route *route, int cmd)
1336 {
1337 int alen = ((route->flags & DEVADDR_FAMILY) == DEVADDR_INET4) ? 4 : 16;
1338 bool have_gw;
1339 unsigned int flags = 0;
1340
1341 if (alen == 4)
1342 have_gw = !!route->nexthop.in.s_addr;
1343 else
1344 have_gw = route->nexthop.in6.s6_addr32[0] ||
1345 route->nexthop.in6.s6_addr32[1] ||
1346 route->nexthop.in6.s6_addr32[2] ||
1347 route->nexthop.in6.s6_addr32[3];
1348
1349 unsigned int table = (route->flags & (DEVROUTE_TABLE | DEVROUTE_SRCTABLE))
1350 ? route->table : RT_TABLE_MAIN;
1351
1352 struct rtmsg rtm = {
1353 .rtm_family = (alen == 4) ? AF_INET : AF_INET6,
1354 .rtm_dst_len = route->mask,
1355 .rtm_src_len = route->sourcemask,
1356 .rtm_table = (table < 256) ? table : RT_TABLE_UNSPEC,
1357 .rtm_protocol = (route->flags & DEVADDR_KERNEL) ? RTPROT_KERNEL : RTPROT_STATIC,
1358 .rtm_scope = RT_SCOPE_NOWHERE,
1359 .rtm_type = (cmd == RTM_DELROUTE) ? 0: RTN_UNICAST,
1360 .rtm_flags = (route->flags & DEVROUTE_ONLINK) ? RTNH_F_ONLINK : 0,
1361 };
1362 struct nl_msg *msg;
1363
1364 if (cmd == RTM_NEWROUTE) {
1365 flags |= NLM_F_CREATE | NLM_F_REPLACE;
1366
1367 if (!dev) { // Add null-route
1368 rtm.rtm_scope = RT_SCOPE_UNIVERSE;
1369 rtm.rtm_type = RTN_UNREACHABLE;
1370 }
1371 else
1372 rtm.rtm_scope = (have_gw) ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK;
1373 }
1374
1375 if (route->flags & DEVROUTE_TYPE) {
1376 rtm.rtm_type = route->type;
1377 if (!(route->flags & (DEVROUTE_TABLE | DEVROUTE_SRCTABLE))) {
1378 if (rtm.rtm_type == RTN_LOCAL || rtm.rtm_type == RTN_BROADCAST ||
1379 rtm.rtm_type == RTN_NAT || rtm.rtm_type == RTN_ANYCAST)
1380 rtm.rtm_table = RT_TABLE_LOCAL;
1381 }
1382
1383 if (rtm.rtm_type == RTN_LOCAL || rtm.rtm_type == RTN_NAT)
1384 rtm.rtm_scope = RT_SCOPE_HOST;
1385 else if (rtm.rtm_type == RTN_BROADCAST || rtm.rtm_type == RTN_MULTICAST ||
1386 rtm.rtm_type == RTN_ANYCAST)
1387 rtm.rtm_scope = RT_SCOPE_LINK;
1388 }
1389
1390 msg = nlmsg_alloc_simple(cmd, flags);
1391 if (!msg)
1392 return -1;
1393
1394 nlmsg_append(msg, &rtm, sizeof(rtm), 0);
1395
1396 if (route->mask)
1397 nla_put(msg, RTA_DST, alen, &route->addr);
1398
1399 if (route->sourcemask)
1400 nla_put(msg, RTA_SRC, alen, &route->source);
1401
1402 if (route->metric > 0)
1403 nla_put_u32(msg, RTA_PRIORITY, route->metric);
1404
1405 if (have_gw)
1406 nla_put(msg, RTA_GATEWAY, alen, &route->nexthop);
1407
1408 if (dev)
1409 nla_put_u32(msg, RTA_OIF, dev->ifindex);
1410
1411 if (table >= 256)
1412 nla_put_u32(msg, RTA_TABLE, table);
1413
1414 if (route->flags & DEVROUTE_MTU) {
1415 struct nlattr *metrics;
1416
1417 if (!(metrics = nla_nest_start(msg, RTA_METRICS)))
1418 goto nla_put_failure;
1419
1420 nla_put_u32(msg, RTAX_MTU, route->mtu);
1421
1422 nla_nest_end(msg, metrics);
1423 }
1424
1425 return system_rtnl_call(msg);
1426
1427 nla_put_failure:
1428 nlmsg_free(msg);
1429 return -ENOMEM;
1430 }
1431
1432 int system_add_route(struct device *dev, struct device_route *route)
1433 {
1434 return system_rt(dev, route, RTM_NEWROUTE);
1435 }
1436
1437 int system_del_route(struct device *dev, struct device_route *route)
1438 {
1439 return system_rt(dev, route, RTM_DELROUTE);
1440 }
1441
1442 int system_flush_routes(void)
1443 {
1444 const char *names[] = {
1445 "/proc/sys/net/ipv4/route/flush",
1446 "/proc/sys/net/ipv6/route/flush"
1447 };
1448 int fd, i;
1449
1450 for (i = 0; i < ARRAY_SIZE(names); i++) {
1451 fd = open(names[i], O_WRONLY);
1452 if (fd < 0)
1453 continue;
1454
1455 if (write(fd, "-1", 2)) {}
1456 close(fd);
1457 }
1458 return 0;
1459 }
1460
1461 bool system_resolve_rt_type(const char *type, unsigned int *id)
1462 {
1463 return system_rtn_aton(type, id);
1464 }
1465
1466 bool system_resolve_rt_table(const char *name, unsigned int *id)
1467 {
1468 FILE *f;
1469 char *e, buf[128];
1470 unsigned int n, table = RT_TABLE_UNSPEC;
1471
1472 /* first try to parse table as number */
1473 if ((n = strtoul(name, &e, 0)) > 0 && !*e)
1474 table = n;
1475
1476 /* handle well known aliases */
1477 else if (!strcmp(name, "default"))
1478 table = RT_TABLE_DEFAULT;
1479 else if (!strcmp(name, "main"))
1480 table = RT_TABLE_MAIN;
1481 else if (!strcmp(name, "local"))
1482 table = RT_TABLE_LOCAL;
1483
1484 /* try to look up name in /etc/iproute2/rt_tables */
1485 else if ((f = fopen("/etc/iproute2/rt_tables", "r")) != NULL)
1486 {
1487 while (fgets(buf, sizeof(buf) - 1, f) != NULL)
1488 {
1489 if ((e = strtok(buf, " \t\n")) == NULL || *e == '#')
1490 continue;
1491
1492 n = strtoul(e, NULL, 10);
1493 e = strtok(NULL, " \t\n");
1494
1495 if (e && !strcmp(e, name))
1496 {
1497 table = n;
1498 break;
1499 }
1500 }
1501
1502 fclose(f);
1503 }
1504
1505 if (table == RT_TABLE_UNSPEC)
1506 return false;
1507
1508 *id = table;
1509 return true;
1510 }
1511
1512 bool system_is_default_rt_table(unsigned int id)
1513 {
1514 return (id == RT_TABLE_MAIN);
1515 }
1516
1517 static int system_iprule(struct iprule *rule, int cmd)
1518 {
1519 int alen = ((rule->flags & IPRULE_FAMILY) == IPRULE_INET4) ? 4 : 16;
1520
1521 struct nl_msg *msg;
1522 struct rtmsg rtm = {
1523 .rtm_family = (alen == 4) ? AF_INET : AF_INET6,
1524 .rtm_protocol = RTPROT_STATIC,
1525 .rtm_scope = RT_SCOPE_UNIVERSE,
1526 .rtm_table = RT_TABLE_UNSPEC,
1527 .rtm_type = RTN_UNSPEC,
1528 .rtm_flags = 0,
1529 };
1530
1531 if (cmd == RTM_NEWRULE) {
1532 rtm.rtm_type = RTN_UNICAST;
1533 rtm.rtm_flags |= NLM_F_REPLACE | NLM_F_EXCL;
1534 }
1535
1536 if (rule->invert)
1537 rtm.rtm_flags |= FIB_RULE_INVERT;
1538
1539 if (rule->flags & IPRULE_SRC)
1540 rtm.rtm_src_len = rule->src_mask;
1541
1542 if (rule->flags & IPRULE_DEST)
1543 rtm.rtm_dst_len = rule->dest_mask;
1544
1545 if (rule->flags & IPRULE_TOS)
1546 rtm.rtm_tos = rule->tos;
1547
1548 if (rule->flags & IPRULE_LOOKUP) {
1549 if (rule->lookup < 256)
1550 rtm.rtm_table = rule->lookup;
1551 }
1552
1553 if (rule->flags & IPRULE_ACTION)
1554 rtm.rtm_type = rule->action;
1555 else if (rule->flags & IPRULE_GOTO)
1556 rtm.rtm_type = FR_ACT_GOTO;
1557 else if (!(rule->flags & (IPRULE_LOOKUP | IPRULE_ACTION | IPRULE_GOTO)))
1558 rtm.rtm_type = FR_ACT_NOP;
1559
1560 msg = nlmsg_alloc_simple(cmd, NLM_F_REQUEST);
1561
1562 if (!msg)
1563 return -1;
1564
1565 nlmsg_append(msg, &rtm, sizeof(rtm), 0);
1566
1567 if (rule->flags & IPRULE_IN)
1568 nla_put(msg, FRA_IFNAME, strlen(rule->in_dev) + 1, rule->in_dev);
1569
1570 if (rule->flags & IPRULE_OUT)
1571 nla_put(msg, FRA_OIFNAME, strlen(rule->out_dev) + 1, rule->out_dev);
1572
1573 if (rule->flags & IPRULE_SRC)
1574 nla_put(msg, FRA_SRC, alen, &rule->src_addr);
1575
1576 if (rule->flags & IPRULE_DEST)
1577 nla_put(msg, FRA_DST, alen, &rule->dest_addr);
1578
1579 if (rule->flags & IPRULE_PRIORITY)
1580 nla_put_u32(msg, FRA_PRIORITY, rule->priority);
1581 else if (cmd == RTM_NEWRULE)
1582 nla_put_u32(msg, FRA_PRIORITY, rule->order);
1583
1584 if (rule->flags & IPRULE_FWMARK)
1585 nla_put_u32(msg, FRA_FWMARK, rule->fwmark);
1586
1587 if (rule->flags & IPRULE_FWMASK)
1588 nla_put_u32(msg, FRA_FWMASK, rule->fwmask);
1589
1590 if (rule->flags & IPRULE_LOOKUP) {
1591 if (rule->lookup >= 256)
1592 nla_put_u32(msg, FRA_TABLE, rule->lookup);
1593 }
1594
1595 if (rule->flags & IPRULE_GOTO)
1596 nla_put_u32(msg, FRA_GOTO, rule->gotoid);
1597
1598 return system_rtnl_call(msg);
1599 }
1600
1601 int system_add_iprule(struct iprule *rule)
1602 {
1603 return system_iprule(rule, RTM_NEWRULE);
1604 }
1605
1606 int system_del_iprule(struct iprule *rule)
1607 {
1608 return system_iprule(rule, RTM_DELRULE);
1609 }
1610
1611 int system_flush_iprules(void)
1612 {
1613 int rv = 0;
1614 struct iprule rule;
1615
1616 system_if_clear_entries(NULL, RTM_GETRULE, AF_INET);
1617 system_if_clear_entries(NULL, RTM_GETRULE, AF_INET6);
1618
1619 memset(&rule, 0, sizeof(rule));
1620
1621
1622 rule.flags = IPRULE_INET4 | IPRULE_PRIORITY | IPRULE_LOOKUP;
1623
1624 rule.priority = 0;
1625 rule.lookup = RT_TABLE_LOCAL;
1626 rv |= system_iprule(&rule, RTM_NEWRULE);
1627
1628 rule.priority = 32766;
1629 rule.lookup = RT_TABLE_MAIN;
1630 rv |= system_iprule(&rule, RTM_NEWRULE);
1631
1632 rule.priority = 32767;
1633 rule.lookup = RT_TABLE_DEFAULT;
1634 rv |= system_iprule(&rule, RTM_NEWRULE);
1635
1636
1637 rule.flags = IPRULE_INET6 | IPRULE_PRIORITY | IPRULE_LOOKUP;
1638
1639 rule.priority = 0;
1640 rule.lookup = RT_TABLE_LOCAL;
1641 rv |= system_iprule(&rule, RTM_NEWRULE);
1642
1643 rule.priority = 32766;
1644 rule.lookup = RT_TABLE_MAIN;
1645 rv |= system_iprule(&rule, RTM_NEWRULE);
1646
1647 return rv;
1648 }
1649
1650 bool system_resolve_iprule_action(const char *action, unsigned int *id)
1651 {
1652 return system_rtn_aton(action, id);
1653 }
1654
1655 time_t system_get_rtime(void)
1656 {
1657 struct timespec ts;
1658 struct timeval tv;
1659
1660 if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts) == 0)
1661 return ts.tv_sec;
1662
1663 if (gettimeofday(&tv, NULL) == 0)
1664 return tv.tv_sec;
1665
1666 return 0;
1667 }
1668
1669 #ifndef IP_DF
1670 #define IP_DF 0x4000
1671 #endif
1672
1673 static int tunnel_ioctl(const char *name, int cmd, void *p)
1674 {
1675 struct ifreq ifr;
1676
1677 memset(&ifr, 0, sizeof(ifr));
1678 strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
1679 ifr.ifr_ifru.ifru_data = p;
1680 return ioctl(sock_ioctl, cmd, &ifr);
1681 }
1682
1683 #ifdef IFLA_IPTUN_MAX
1684 #define IP6_FLOWINFO_TCLASS htonl(0x0FF00000)
1685 static int system_add_gre_tunnel(const char *name, const char *kind,
1686 const unsigned int link, struct blob_attr **tb, bool v6)
1687 {
1688 struct nl_msg *nlm;
1689 struct ifinfomsg ifi = { .ifi_family = AF_UNSPEC, };
1690 struct blob_attr *cur;
1691 uint32_t ikey = 0, okey = 0, flags = 0, flowinfo = 0;
1692 uint16_t iflags = 0, oflags = 0;
1693 uint8_t tos = 0;
1694 int ret = 0, ttl = 64;
1695
1696 nlm = nlmsg_alloc_simple(RTM_NEWLINK, NLM_F_REQUEST | NLM_F_REPLACE | NLM_F_CREATE);
1697 if (!nlm)
1698 return -1;
1699
1700 nlmsg_append(nlm, &ifi, sizeof(ifi), 0);
1701 nla_put_string(nlm, IFLA_IFNAME, name);
1702
1703 struct nlattr *linkinfo = nla_nest_start(nlm, IFLA_LINKINFO);
1704 if (!linkinfo) {
1705 ret = -ENOMEM;
1706 goto failure;
1707 }
1708
1709 nla_put_string(nlm, IFLA_INFO_KIND, kind);
1710 struct nlattr *infodata = nla_nest_start(nlm, IFLA_INFO_DATA);
1711 if (!infodata) {
1712 ret = -ENOMEM;
1713 goto failure;
1714 }
1715
1716 if (link)
1717 nla_put_u32(nlm, IFLA_GRE_LINK, link);
1718
1719 if ((cur = tb[TUNNEL_ATTR_TTL]))
1720 ttl = blobmsg_get_u32(cur);
1721
1722 nla_put_u8(nlm, IFLA_GRE_TTL, ttl);
1723
1724 if ((cur = tb[TUNNEL_ATTR_TOS])) {
1725 char *str = blobmsg_get_string(cur);
1726 if (strcmp(str, "inherit")) {
1727 unsigned uval;
1728
1729 if (!system_tos_aton(str, &uval)) {
1730 ret = -EINVAL;
1731 goto failure;
1732 }
1733
1734 if (v6)
1735 flowinfo |= htonl(uval << 20) & IP6_FLOWINFO_TCLASS;
1736 else
1737 tos = uval;
1738 } else {
1739 if (v6)
1740 flags |= IP6_TNL_F_USE_ORIG_TCLASS;
1741 else
1742 tos = 1;
1743 }
1744 }
1745
1746 if ((cur = tb[TUNNEL_ATTR_INFO]) && (blobmsg_type(cur) == BLOBMSG_TYPE_STRING)) {
1747 uint8_t icsum, ocsum, iseqno, oseqno;
1748 if (sscanf(blobmsg_get_string(cur), "%u,%u,%hhu,%hhu,%hhu,%hhu",
1749 &ikey, &okey, &icsum, &ocsum, &iseqno, &oseqno) < 6) {
1750 ret = -EINVAL;
1751 goto failure;
1752 }
1753
1754 if (ikey)
1755 iflags |= GRE_KEY;
1756
1757 if (okey)
1758 oflags |= GRE_KEY;
1759
1760 if (icsum)
1761 iflags |= GRE_CSUM;
1762
1763 if (ocsum)
1764 oflags |= GRE_CSUM;
1765
1766 if (iseqno)
1767 iflags |= GRE_SEQ;
1768
1769 if (oseqno)
1770 oflags |= GRE_SEQ;
1771 }
1772
1773 if (v6) {
1774 struct in6_addr in6buf;
1775 if ((cur = tb[TUNNEL_ATTR_LOCAL])) {
1776 if (inet_pton(AF_INET6, blobmsg_data(cur), &in6buf) < 1) {
1777 ret = -EINVAL;
1778 goto failure;
1779 }
1780 nla_put(nlm, IFLA_GRE_LOCAL, sizeof(in6buf), &in6buf);
1781 }
1782
1783 if ((cur = tb[TUNNEL_ATTR_REMOTE])) {
1784 if (inet_pton(AF_INET6, blobmsg_data(cur), &in6buf) < 1) {
1785 ret = -EINVAL;
1786 goto failure;
1787 }
1788 nla_put(nlm, IFLA_GRE_REMOTE, sizeof(in6buf), &in6buf);
1789 }
1790 nla_put_u8(nlm, IFLA_GRE_ENCAP_LIMIT, 4);
1791
1792 if (flowinfo)
1793 nla_put_u32(nlm, IFLA_GRE_FLOWINFO, flowinfo);
1794
1795 if (flags)
1796 nla_put_u32(nlm, IFLA_GRE_FLAGS, flags);
1797 } else {
1798 struct in_addr inbuf;
1799 bool set_df = true;
1800
1801 if ((cur = tb[TUNNEL_ATTR_LOCAL])) {
1802 if (inet_pton(AF_INET, blobmsg_data(cur), &inbuf) < 1) {
1803 ret = -EINVAL;
1804 goto failure;
1805 }
1806 nla_put(nlm, IFLA_GRE_LOCAL, sizeof(inbuf), &inbuf);
1807 }
1808
1809 if ((cur = tb[TUNNEL_ATTR_REMOTE])) {
1810 if (inet_pton(AF_INET, blobmsg_data(cur), &inbuf) < 1) {
1811 ret = -EINVAL;
1812 goto failure;
1813 }
1814 nla_put(nlm, IFLA_GRE_REMOTE, sizeof(inbuf), &inbuf);
1815
1816 if (IN_MULTICAST(ntohl(inbuf.s_addr))) {
1817 if (!okey) {
1818 okey = inbuf.s_addr;
1819 oflags |= GRE_KEY;
1820 }
1821
1822 if (!ikey) {
1823 ikey = inbuf.s_addr;
1824 iflags |= GRE_KEY;
1825 }
1826 }
1827 }
1828
1829 if ((cur = tb[TUNNEL_ATTR_DF]))
1830 set_df = blobmsg_get_bool(cur);
1831
1832 /* ttl !=0 and nopmtudisc are incompatible */
1833 if (ttl && !set_df) {
1834 ret = -EINVAL;
1835 goto failure;
1836 }
1837
1838 nla_put_u8(nlm, IFLA_GRE_PMTUDISC, set_df ? 1 : 0);
1839
1840 nla_put_u8(nlm, IFLA_GRE_TOS, tos);
1841 }
1842
1843 if (oflags)
1844 nla_put_u16(nlm, IFLA_GRE_OFLAGS, oflags);
1845
1846 if (iflags)
1847 nla_put_u16(nlm, IFLA_GRE_IFLAGS, iflags);
1848
1849 if (okey)
1850 nla_put_u32(nlm, IFLA_GRE_OKEY, okey);
1851
1852 if (ikey)
1853 nla_put_u32(nlm, IFLA_GRE_IKEY, ikey);
1854
1855 nla_nest_end(nlm, infodata);
1856 nla_nest_end(nlm, linkinfo);
1857
1858 return system_rtnl_call(nlm);
1859
1860 failure:
1861 nlmsg_free(nlm);
1862 return ret;
1863 }
1864 #endif
1865
1866 static int system_add_proto_tunnel(const char *name, const uint8_t proto, const unsigned int link, struct blob_attr **tb)
1867 {
1868 struct blob_attr *cur;
1869 bool set_df = true;
1870 struct ip_tunnel_parm p = {
1871 .link = link,
1872 .iph = {
1873 .version = 4,
1874 .ihl = 5,
1875 .protocol = proto,
1876 }
1877 };
1878
1879 if ((cur = tb[TUNNEL_ATTR_LOCAL]) &&
1880 inet_pton(AF_INET, blobmsg_data(cur), &p.iph.saddr) < 1)
1881 return -EINVAL;
1882
1883 if ((cur = tb[TUNNEL_ATTR_REMOTE]) &&
1884 inet_pton(AF_INET, blobmsg_data(cur), &p.iph.daddr) < 1)
1885 return -EINVAL;
1886
1887 if ((cur = tb[TUNNEL_ATTR_DF]))
1888 set_df = blobmsg_get_bool(cur);
1889
1890 if ((cur = tb[TUNNEL_ATTR_TTL]))
1891 p.iph.ttl = blobmsg_get_u32(cur);
1892
1893 if ((cur = tb[TUNNEL_ATTR_TOS])) {
1894 char *str = blobmsg_get_string(cur);
1895 if (strcmp(str, "inherit")) {
1896 unsigned uval;
1897
1898 if (!system_tos_aton(str, &uval))
1899 return -EINVAL;
1900
1901 p.iph.tos = uval;
1902 } else
1903 p.iph.tos = 1;
1904 }
1905
1906 p.iph.frag_off = set_df ? htons(IP_DF) : 0;
1907 /* ttl !=0 and nopmtudisc are incompatible */
1908 if (p.iph.ttl && p.iph.frag_off == 0)
1909 return -EINVAL;
1910
1911 strncpy(p.name, name, sizeof(p.name));
1912
1913 switch (p.iph.protocol) {
1914 case IPPROTO_IPIP:
1915 return tunnel_ioctl("tunl0", SIOCADDTUNNEL, &p);
1916 case IPPROTO_IPV6:
1917 return tunnel_ioctl("sit0", SIOCADDTUNNEL, &p);
1918 default:
1919 break;
1920 }
1921 return -1;
1922 }
1923
1924 static int __system_del_ip_tunnel(const char *name, struct blob_attr **tb)
1925 {
1926 struct blob_attr *cur;
1927 const char *str;
1928
1929 if (!(cur = tb[TUNNEL_ATTR_TYPE]))
1930 return -EINVAL;
1931 str = blobmsg_data(cur);
1932
1933 if (!strcmp(str, "greip") || !strcmp(str, "gretapip") ||
1934 !strcmp(str, "greip6") || !strcmp(str, "gretapip6"))
1935 return system_link_del(name);
1936 else
1937 return tunnel_ioctl(name, SIOCDELTUNNEL, NULL);
1938 }
1939
1940 int system_del_ip_tunnel(const char *name, struct blob_attr *attr)
1941 {
1942 struct blob_attr *tb[__TUNNEL_ATTR_MAX];
1943
1944 blobmsg_parse(tunnel_attr_list.params, __TUNNEL_ATTR_MAX, tb,
1945 blob_data(attr), blob_len(attr));
1946
1947 return __system_del_ip_tunnel(name, tb);
1948 }
1949
1950 int system_update_ipv6_mtu(struct device *dev, int mtu)
1951 {
1952 int ret = -1;
1953 char buf[64];
1954 snprintf(buf, sizeof(buf), "/proc/sys/net/ipv6/conf/%s/mtu",
1955 dev->ifname);
1956
1957 int fd = open(buf, O_RDWR);
1958 ssize_t len = read(fd, buf, sizeof(buf) - 1);
1959 if (len < 0)
1960 goto out;
1961
1962 buf[len] = 0;
1963 ret = atoi(buf);
1964
1965 if (!mtu || ret <= mtu)
1966 goto out;
1967
1968 lseek(fd, 0, SEEK_SET);
1969 if (write(fd, buf, snprintf(buf, sizeof(buf), "%i", mtu)) <= 0)
1970 ret = -1;
1971
1972 out:
1973 close(fd);
1974 return ret;
1975 }
1976
1977 int system_add_ip_tunnel(const char *name, struct blob_attr *attr)
1978 {
1979 struct blob_attr *tb[__TUNNEL_ATTR_MAX];
1980 struct blob_attr *cur;
1981 const char *str;
1982
1983 blobmsg_parse(tunnel_attr_list.params, __TUNNEL_ATTR_MAX, tb,
1984 blob_data(attr), blob_len(attr));
1985
1986 __system_del_ip_tunnel(name, tb);
1987
1988 if (!(cur = tb[TUNNEL_ATTR_TYPE]))
1989 return -EINVAL;
1990 str = blobmsg_data(cur);
1991
1992 unsigned int ttl = 0;
1993 if ((cur = tb[TUNNEL_ATTR_TTL])) {
1994 ttl = blobmsg_get_u32(cur);
1995 if (ttl > 255)
1996 return -EINVAL;
1997 }
1998
1999 unsigned int link = 0;
2000 if ((cur = tb[TUNNEL_ATTR_LINK])) {
2001 struct interface *iface = vlist_find(&interfaces, blobmsg_data(cur), iface, node);
2002 if (!iface)
2003 return -EINVAL;
2004
2005 if (iface->l3_dev.dev)
2006 link = iface->l3_dev.dev->ifindex;
2007 }
2008
2009 if (!strcmp(str, "sit")) {
2010 if (system_add_proto_tunnel(name, IPPROTO_IPV6, link, tb) < 0)
2011 return -1;
2012
2013 #ifdef SIOCADD6RD
2014 if ((cur = tb[TUNNEL_ATTR_6RD_PREFIX])) {
2015 unsigned int mask;
2016 struct ip_tunnel_6rd p6;
2017
2018 memset(&p6, 0, sizeof(p6));
2019
2020 if (!parse_ip_and_netmask(AF_INET6, blobmsg_data(cur),
2021 &p6.prefix, &mask) || mask > 128)
2022 return -EINVAL;
2023 p6.prefixlen = mask;
2024
2025 if ((cur = tb[TUNNEL_ATTR_6RD_RELAY_PREFIX])) {
2026 if (!parse_ip_and_netmask(AF_INET, blobmsg_data(cur),
2027 &p6.relay_prefix, &mask) || mask > 32)
2028 return -EINVAL;
2029 p6.relay_prefixlen = mask;
2030 }
2031
2032 if (tunnel_ioctl(name, SIOCADD6RD, &p6) < 0) {
2033 __system_del_ip_tunnel(name, tb);
2034 return -1;
2035 }
2036 }
2037 #endif
2038 #ifdef IFLA_IPTUN_MAX
2039 } else if (!strcmp(str, "ipip6")) {
2040 struct nl_msg *nlm = nlmsg_alloc_simple(RTM_NEWLINK,
2041 NLM_F_REQUEST | NLM_F_REPLACE | NLM_F_CREATE);
2042 struct ifinfomsg ifi = { .ifi_family = AF_UNSPEC };
2043 int ret = 0;
2044
2045 if (!nlm)
2046 return -1;
2047
2048 nlmsg_append(nlm, &ifi, sizeof(ifi), 0);
2049 nla_put_string(nlm, IFLA_IFNAME, name);
2050
2051 if (link)
2052 nla_put_u32(nlm, IFLA_LINK, link);
2053
2054 struct nlattr *linkinfo = nla_nest_start(nlm, IFLA_LINKINFO);
2055 if (!linkinfo) {
2056 ret = -ENOMEM;
2057 goto failure;
2058 }
2059 nla_put_string(nlm, IFLA_INFO_KIND, "ip6tnl");
2060 struct nlattr *infodata = nla_nest_start(nlm, IFLA_INFO_DATA);
2061 if (!infodata) {
2062 ret = -ENOMEM;
2063 goto failure;
2064 }
2065
2066 if (link)
2067 nla_put_u32(nlm, IFLA_IPTUN_LINK, link);
2068
2069 nla_put_u8(nlm, IFLA_IPTUN_PROTO, IPPROTO_IPIP);
2070 nla_put_u8(nlm, IFLA_IPTUN_TTL, (ttl) ? ttl : 64);
2071 nla_put_u8(nlm, IFLA_IPTUN_ENCAP_LIMIT, 4);
2072
2073 struct in6_addr in6buf;
2074 if ((cur = tb[TUNNEL_ATTR_LOCAL])) {
2075 if (inet_pton(AF_INET6, blobmsg_data(cur), &in6buf) < 1) {
2076 ret = -EINVAL;
2077 goto failure;
2078 }
2079 nla_put(nlm, IFLA_IPTUN_LOCAL, sizeof(in6buf), &in6buf);
2080 }
2081
2082 if ((cur = tb[TUNNEL_ATTR_REMOTE])) {
2083 if (inet_pton(AF_INET6, blobmsg_data(cur), &in6buf) < 1) {
2084 ret = -EINVAL;
2085 goto failure;
2086 }
2087 nla_put(nlm, IFLA_IPTUN_REMOTE, sizeof(in6buf), &in6buf);
2088 }
2089
2090 #ifdef IFLA_IPTUN_FMR_MAX
2091 if ((cur = tb[TUNNEL_ATTR_FMRS])) {
2092 struct nlattr *fmrs = nla_nest_start(nlm, IFLA_IPTUN_FMRS);
2093
2094 struct blob_attr *fmr;
2095 unsigned rem, fmrcnt = 0;
2096 blobmsg_for_each_attr(fmr, cur, rem) {
2097 if (blobmsg_type(fmr) != BLOBMSG_TYPE_STRING)
2098 continue;
2099
2100 unsigned ip4len, ip6len, ealen, offset = 6;
2101 char ip6buf[48];
2102 char ip4buf[16];
2103
2104 if (sscanf(blobmsg_get_string(fmr), "%47[^/]/%u,%15[^/]/%u,%u,%u",
2105 ip6buf, &ip6len, ip4buf, &ip4len, &ealen, &offset) < 5) {
2106 ret = -EINVAL;
2107 goto failure;
2108 }
2109
2110 struct in6_addr ip6prefix;
2111 struct in_addr ip4prefix;
2112 if (inet_pton(AF_INET6, ip6buf, &ip6prefix) != 1 ||
2113 inet_pton(AF_INET, ip4buf, &ip4prefix) != 1) {
2114 ret = -EINVAL;
2115 goto failure;
2116 }
2117
2118 struct nlattr *rule = nla_nest_start(nlm, ++fmrcnt);
2119
2120 nla_put(nlm, IFLA_IPTUN_FMR_IP6_PREFIX, sizeof(ip6prefix), &ip6prefix);
2121 nla_put(nlm, IFLA_IPTUN_FMR_IP4_PREFIX, sizeof(ip4prefix), &ip4prefix);
2122 nla_put_u8(nlm, IFLA_IPTUN_FMR_IP6_PREFIX_LEN, ip6len);
2123 nla_put_u8(nlm, IFLA_IPTUN_FMR_IP4_PREFIX_LEN, ip4len);
2124 nla_put_u8(nlm, IFLA_IPTUN_FMR_EA_LEN, ealen);
2125 nla_put_u8(nlm, IFLA_IPTUN_FMR_OFFSET, offset);
2126
2127 nla_nest_end(nlm, rule);
2128 }
2129
2130 nla_nest_end(nlm, fmrs);
2131 }
2132 #endif
2133
2134 nla_nest_end(nlm, infodata);
2135 nla_nest_end(nlm, linkinfo);
2136
2137 return system_rtnl_call(nlm);
2138 failure:
2139 nlmsg_free(nlm);
2140 return ret;
2141 } else if (!strcmp(str, "greip")) {
2142 return system_add_gre_tunnel(name, "gre", link, tb, false);
2143 } else if (!strcmp(str, "gretapip")) {
2144 return system_add_gre_tunnel(name, "gretap", link, tb, false);
2145 } else if (!strcmp(str, "greip6")) {
2146 return system_add_gre_tunnel(name, "ip6gre", link, tb, true);
2147 } else if (!strcmp(str, "gretapip6")) {
2148 return system_add_gre_tunnel(name, "ip6gretap", link, tb, true);
2149 #endif
2150 } else if (!strcmp(str, "ipip")) {
2151 return system_add_proto_tunnel(name, IPPROTO_IPIP, link, tb);
2152 }
2153 else
2154 return -EINVAL;
2155
2156 return 0;
2157 }