]> git.ozlabs.org Git - petitboot/blob - discover/network.c
ui: add URL for static configurations to load a specified file
[petitboot] / discover / network.c
1
2 #include <stdbool.h>
3 #include <stdint.h>
4 #include <string.h>
5 #include <stdlib.h>
6 #include <errno.h>
7 #include <sys/socket.h>
8 #include <linux/if.h>
9 #include <linux/netlink.h>
10 #include <linux/rtnetlink.h>
11
12 #include <log/log.h>
13 #include <list/list.h>
14 #include <file/file.h>
15 #include <types/types.h>
16 #include <talloc/talloc.h>
17 #include <waiter/waiter.h>
18 #include <process/process.h>
19 #include <system/system.h>
20
21 #include "network.h"
22 #include "sysinfo.h"
23 #include "platform.h"
24 #include "device-handler.h"
25
26 #define HWADDR_SIZE     6
27 #define PIDFILE_BASE    (LOCAL_STATE_DIR "/petitboot/")
28 #define INITIAL_BUFSIZE 4096
29
30 #define for_each_nlmsg(buf, nlmsg, len) \
31         for (nlmsg = (struct nlmsghdr *)buf; \
32                 NLMSG_OK(nlmsg, len) && nlmsg->nlmsg_type != NLMSG_DONE; \
33                 nlmsg = NLMSG_NEXT(nlmsg, len))
34
35 #define for_each_rta(buf, rta, attrlen) \
36         for (rta = (struct rtattr *)(buf); RTA_OK(rta, attrlen); \
37                         rta = RTA_NEXT(rta, attrlen))
38
39
40 struct interface {
41         int     ifindex;
42         char    name[IFNAMSIZ];
43         uint8_t hwaddr[HWADDR_SIZE];
44
45         enum {
46                 IFSTATE_NEW,
47                 IFSTATE_UP_WAITING_LINK,
48                 IFSTATE_CONFIGURED,
49                 IFSTATE_IGNORED,
50         } state;
51
52         struct list_item list;
53         struct process *udhcpc_process;
54         struct discover_device *dev;
55 };
56
57 struct network {
58         struct list             interfaces;
59         struct device_handler   *handler;
60         struct waiter           *waiter;
61         int                     netlink_sd;
62         void                    *netlink_buf;
63         unsigned int            netlink_buf_size;
64         bool                    manual_config;
65         bool                    dry_run;
66 };
67
68 static const struct interface_config *find_config_by_hwaddr(
69                 uint8_t *hwaddr)
70 {
71         const struct config *config;
72         unsigned int i;
73
74         config = config_get();
75         if (!config)
76                 return NULL;
77
78         for (i = 0; i < config->network.n_interfaces; i++) {
79                 struct interface_config *ifconf = config->network.interfaces[i];
80
81                 if (!memcmp(ifconf->hwaddr, hwaddr, HWADDR_SIZE))
82                         return ifconf;
83         }
84
85         return NULL;
86 }
87
88 static struct interface *find_interface_by_ifindex(struct network *network,
89                 int ifindex)
90 {
91         struct interface *interface;
92
93         list_for_each_entry(&network->interfaces, interface, list)
94                 if (interface->ifindex == ifindex)
95                         return interface;
96
97         return NULL;
98 }
99
100 static struct interface *find_interface_by_name(struct network *network,
101                 const char *name)
102 {
103         struct interface *interface;
104
105         list_for_each_entry(&network->interfaces, interface, list)
106                 if (!strcmp(interface->name, name))
107                         return interface;
108
109         return NULL;
110 }
111
112 uint8_t *find_mac_by_name(void *ctx, struct network *network,
113                 const char *name)
114 {
115         struct interface *interface;
116
117         interface = find_interface_by_name(network, name);
118         if (!interface)
119                 return NULL;
120
121         return talloc_memdup(ctx, &interface->hwaddr,
122                              sizeof(uint8_t) * HWADDR_SIZE);
123 }
124
125 static int network_init_netlink(struct network *network)
126 {
127         struct sockaddr_nl addr;
128         int rc;
129
130         memset(&addr, 0, sizeof(addr));
131         addr.nl_family = AF_NETLINK;
132         addr.nl_groups = RTMGRP_LINK;
133
134         network->netlink_sd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
135         if (network->netlink_sd < 0) {
136                 perror("socket(AF_NETLINK)");
137                 return -1;
138         }
139
140         rc = bind(network->netlink_sd, (struct sockaddr *)&addr, sizeof(addr));
141         if (rc) {
142                 perror("bind(sockaddr_nl)");
143                 close(network->netlink_sd);
144                 return -1;
145         }
146
147         network->netlink_buf_size = INITIAL_BUFSIZE;
148         network->netlink_buf = talloc_array(network, char,
149                                 network->netlink_buf_size);
150
151         return 0;
152 }
153
154 static int network_send_link_query(struct network *network)
155 {
156         int rc;
157         struct {
158                 struct nlmsghdr nlmsg;
159                 struct rtgenmsg rtmsg;
160         } msg;
161
162         memset(&msg, 0, sizeof(msg));
163
164         msg.nlmsg.nlmsg_len = sizeof(msg);
165         msg.nlmsg.nlmsg_type = RTM_GETLINK;
166         msg.nlmsg.nlmsg_flags = NLM_F_REQUEST | NLM_F_ROOT;
167         msg.nlmsg.nlmsg_seq = 0;
168         msg.nlmsg.nlmsg_pid = 0;
169         msg.rtmsg.rtgen_family = AF_UNSPEC;
170
171         rc = send(network->netlink_sd, &msg, sizeof(msg), MSG_NOSIGNAL);
172         if (rc != sizeof(msg))
173                 return -1;
174
175         return 0;
176 }
177
178 static char *mac_bytes_to_string(void *ctx, uint8_t *addr, int len)
179 {
180         const int l = strlen("xx:");
181         char *buf;
182         int i;
183
184         if (len <= 0)
185                 return talloc_strdup(ctx, "");
186
187         buf = talloc_array(ctx, char, (len * l) + 1);
188
189         for (i = 0; i < len; i++)
190                 sprintf(buf + (l * i), "%02x:", addr[i]);
191
192         *(buf + (l * len) - 1) = '\0';
193
194         return buf;
195 }
196
197 static void add_interface(struct network *network,
198                 struct interface *interface)
199 {
200         list_add(&network->interfaces, &interface->list);
201         interface->dev = discover_device_create(network->handler,
202                                         interface->name);
203         interface->dev->device->type = DEVICE_TYPE_NETWORK;
204         interface->dev->uuid = mac_bytes_to_string(interface->dev,
205                         interface->hwaddr, sizeof(interface->hwaddr));
206         device_handler_add_device(network->handler, interface->dev);
207 }
208
209 static void remove_interface(struct network *network,
210                 struct interface *interface)
211 {
212         if (interface->dev)
213                 device_handler_remove(network->handler, interface->dev);
214         list_remove(&interface->list);
215         talloc_free(interface);
216 }
217
218 void network_register_device(struct network *network,
219                 struct discover_device *dev)
220 {
221         struct interface *iface;
222
223         iface = find_interface_by_name(network, dev->device->id);
224         if (!iface)
225                 return;
226
227         iface->dev = dev;
228         dev->uuid = mac_bytes_to_string(iface->dev, iface->hwaddr,
229                         sizeof(iface->hwaddr));
230 }
231
232 void network_unregister_device(struct network *network,
233                 struct discover_device *dev)
234 {
235         struct interface *iface;
236
237         iface = find_interface_by_name(network, dev->device->id);
238         if (!iface)
239                 return;
240
241         iface->dev = NULL;
242 }
243
244 static int interface_change(struct interface *interface, bool up)
245 {
246         const char *statestr = up ? "up" : "down";
247         int rc;
248
249         if (!up && interface->udhcpc_process) {
250                 /* we don't care about the callback from here */
251                 interface->udhcpc_process->exit_cb = NULL;
252                 interface->udhcpc_process->data = NULL;
253                 process_stop_async(interface->udhcpc_process);
254                 process_release(interface->udhcpc_process);
255         }
256
257         if (!up) {
258                 rc = process_run_simple(interface, pb_system_apps.ip,
259                                 "address", "flush", "dev", interface->name,
260                                 NULL);
261                 if (rc)
262                         pb_log("failed to flush addresses from interface %s\n",
263                                 interface->name);
264         }
265
266         rc = process_run_simple(interface, pb_system_apps.ip,
267                         "link", "set", interface->name, statestr, NULL);
268         if (rc) {
269                 pb_log("failed to bring interface %s %s\n", interface->name,
270                                 statestr);
271                 return -1;
272         }
273         return 0;
274 }
275
276 static int interface_up(struct interface *interface)
277 {
278         return interface_change(interface, true);
279 }
280
281 static int interface_down(struct interface *interface)
282 {
283         return interface_change(interface, false);
284 }
285
286 static void udhcpc_process_exit(struct process *process)
287 {
288         struct interface *interface = process->data;
289         pb_debug("udhcp client [pid %d] for interface %s exited, rc %d\n",
290                         process->pid, interface->name, process->exit_status);
291         interface->udhcpc_process = NULL;
292         process_release(process);
293 }
294
295 static void configure_interface_dhcp(struct interface *interface)
296 {
297         const struct platform *platform;
298         char pidfile[256], id[10];
299         struct process *process;
300         int rc;
301         const char *argv[] = {
302                 pb_system_apps.udhcpc,
303                 "-R",
304                 "-f",
305                 "-O", "pxeconffile",
306                 "-O", "pxepathprefix",
307                 "-p", pidfile,
308                 "-i", interface->name,
309                 "-x", id, /* [11,12] - dhcp client identifier */
310                 NULL,
311         };
312
313         snprintf(pidfile, sizeof(pidfile), "%s/udhcpc-%s.pid",
314                         PIDFILE_BASE, interface->name);
315
316         platform = platform_get();
317         if (platform && platform->dhcp_arch_id != 0xffff)
318                 snprintf(id, sizeof(id), "0x5d:%04x", platform->dhcp_arch_id);
319         else
320                 argv[11] = NULL;
321
322         process = process_create(interface);
323
324         process->path = pb_system_apps.udhcpc;
325         process->argv = argv;
326         process->exit_cb = udhcpc_process_exit;
327         process->data = interface;
328
329         rc = process_run_async(process);
330
331         if (rc)
332                 process_release(process);
333         else
334                 interface->udhcpc_process = process;
335
336         return;
337 }
338
339 static void configure_interface_static(struct network *network,
340                 struct interface *interface,
341                 const struct interface_config *config)
342 {
343         int rc;
344
345         rc = process_run_simple(interface, pb_system_apps.ip,
346                         "address", "add", config->static_config.address,
347                         "dev", interface->name, NULL);
348
349
350         if (rc) {
351                 pb_log("failed to add address %s to interface %s\n",
352                                 config->static_config.address,
353                                 interface->name);
354                 return;
355         }
356
357         /* we need the interface up before we can route through it */
358         rc = interface_up(interface);
359         if (rc)
360                 return;
361
362         if (config->static_config.gateway)
363                 rc = process_run_simple(interface, pb_system_apps.ip,
364                                 "route", "add", "default",
365                                 "via", config->static_config.gateway,
366                                 NULL);
367
368         if (rc) {
369                 pb_log("failed to add default route %s on interface %s\n",
370                                 config->static_config.gateway,
371                                 interface->name);
372         }
373
374         if (config->static_config.url) {
375                 pb_log("config URL %s\n", config->static_config.url);
376                 device_handler_process_url(network->handler,
377                                 config->static_config.url);
378         }
379
380         return;
381 }
382
383 static void configure_interface(struct network *network,
384                 struct interface *interface, bool up, bool link)
385 {
386         const struct interface_config *config = NULL;
387
388         if (interface->state == IFSTATE_IGNORED)
389                 return;
390
391         /* old interface? check that we're still up and running */
392         if (interface->state == IFSTATE_CONFIGURED) {
393                 if (!up)
394                         interface->state = IFSTATE_NEW;
395                 else if (!link)
396                         interface->state = IFSTATE_UP_WAITING_LINK;
397                 else
398                         return;
399         }
400
401         /* always up the lookback, no other handling required */
402         if (!strcmp(interface->name, "lo")) {
403                 if (interface->state == IFSTATE_NEW)
404                         interface_up(interface);
405                 interface->state = IFSTATE_CONFIGURED;
406                 return;
407         }
408
409         config = find_config_by_hwaddr(interface->hwaddr);
410         if (config && config->ignore) {
411                 pb_log("network: ignoring interface %s\n", interface->name);
412                 interface->state = IFSTATE_IGNORED;
413                 return;
414         }
415
416         /* if we're in manual config mode, we need an interface configuration */
417         if (network->manual_config && !config) {
418                 interface->state = IFSTATE_IGNORED;
419                 pb_log("network: skipping %s: manual config mode, "
420                                 "but no config for this interface\n",
421                                 interface->name);
422                 return;
423         }
424
425         /* new interface? bring up to the point so we can detect a link */
426         if (interface->state == IFSTATE_NEW) {
427                 if (!up) {
428                         interface_up(interface);
429                         pb_log("network: bringing up interface %s\n",
430                                         interface->name);
431                         return;
432
433                 } else if (!link) {
434                         interface->state = IFSTATE_UP_WAITING_LINK;
435                 }
436         }
437
438         /* no link? wait for a notification */
439         if (interface->state == IFSTATE_UP_WAITING_LINK && !link)
440                 return;
441
442         pb_log("network: configuring interface %s\n", interface->name);
443
444         if (!config || config->method == CONFIG_METHOD_DHCP) {
445                 configure_interface_dhcp(interface);
446
447         } else if (config->method == CONFIG_METHOD_STATIC) {
448                 configure_interface_static(network, interface, config);
449         }
450 }
451
452 static int network_handle_nlmsg(struct network *network, struct nlmsghdr *nlmsg)
453 {
454         bool have_ifaddr, have_ifname;
455         struct interface *interface;
456         struct ifinfomsg *info;
457         struct rtattr *attr;
458         unsigned int mtu;
459         uint8_t ifaddr[6];
460         char ifname[IFNAMSIZ+1];
461         int attrlen, type;
462
463
464         /* we're only interested in NEWLINK messages */
465         type = nlmsg->nlmsg_type;
466         if (!(type == RTM_NEWLINK || type == RTM_DELLINK))
467                 return 0;
468
469         info = NLMSG_DATA(nlmsg);
470
471         have_ifaddr = have_ifname = false;
472         mtu = 1;
473
474         attrlen = nlmsg->nlmsg_len - sizeof(*info);
475
476         /* extract the interface name and hardware address attributes */
477         for_each_rta(info + 1, attr, attrlen) {
478                 void *data = RTA_DATA(attr);
479
480                 switch (attr->rta_type) {
481                 case IFLA_ADDRESS:
482                         memcpy(ifaddr, data, sizeof(ifaddr));
483                         have_ifaddr = true;
484                         break;
485
486                 case IFLA_IFNAME:
487                         strncpy(ifname, data, IFNAMSIZ);
488                         have_ifname = true;
489                         break;
490
491                 case IFLA_MTU:
492                         mtu = *(unsigned int *)data;
493                         break;
494                 }
495         }
496
497         if (!have_ifaddr || !have_ifname)
498                 return -1;
499
500         if (type == RTM_DELLINK || mtu == 0) {
501                 interface = find_interface_by_ifindex(network, info->ifi_index);
502                 if (!interface)
503                         return 0;
504                 pb_log("network: interface %s removed\n", interface->name);
505                 remove_interface(network, interface);
506                 return 0;
507         }
508
509
510         interface = find_interface_by_ifindex(network, info->ifi_index);
511         if (!interface) {
512                 interface = talloc_zero(network, struct interface);
513                 interface->ifindex = info->ifi_index;
514                 interface->state = IFSTATE_NEW;
515                 memcpy(interface->hwaddr, ifaddr, sizeof(interface->hwaddr));
516                 strncpy(interface->name, ifname, sizeof(interface->name) - 1);
517                 add_interface(network, interface);
518         }
519
520         /* A repeated RTM_NEWLINK can represent an interface name change */
521         if (strncmp(interface->name, ifname, IFNAMSIZ)) {
522                 pb_debug("ifname update: %s -> %s\n", interface->name, ifname);
523                 strncpy(interface->name, ifname, sizeof(interface->name) - 1);
524                 talloc_free(interface->dev->device->id);
525                 interface->dev->device->id =
526                         talloc_strdup(interface->dev->device, ifname);
527         }
528
529         /* notify the sysinfo code about changes to this interface */
530         if (strcmp(interface->name, "lo"))
531                 system_info_register_interface(
532                                 sizeof(interface->hwaddr),
533                                 interface->hwaddr, interface->name,
534                                 info->ifi_flags & IFF_LOWER_UP);
535
536         configure_interface(network, interface,
537                         info->ifi_flags & IFF_UP,
538                         info->ifi_flags & IFF_LOWER_UP);
539
540         return 0;
541 }
542
543 static int network_netlink_process(void *arg)
544 {
545         struct network *network = arg;
546         struct nlmsghdr *nlmsg;
547         struct msghdr msg;
548         struct iovec iov;
549         unsigned int len;
550         int rc, flags;
551
552         memset(&msg, 0, sizeof(msg));
553         msg.msg_iov = &iov;
554         msg.msg_iovlen = 1;
555
556         flags = MSG_PEEK;
557
558 retry:
559         iov.iov_len = network->netlink_buf_size;
560         iov.iov_base = network->netlink_buf;
561
562         rc = recvmsg(network->netlink_sd, &msg, flags);
563
564         if (rc < 0) {
565                 perror("netlink recv header");
566                 return -1;
567         }
568
569         len = rc;
570
571         /* if the netlink message was larger than our buffer, realloc
572          * before reading again */
573         if (len > network->netlink_buf_size || msg.msg_flags & MSG_TRUNC) {
574                 network->netlink_buf_size *= 2;
575                 network->netlink_buf = talloc_realloc(network,
576                                         network->netlink_buf,
577                                         char *,
578                                         network->netlink_buf_size);
579                 goto retry;
580         }
581
582         /* otherwise, we're good to read the entire message without PEEK */
583         if (flags == MSG_PEEK) {
584                 flags = 0;
585                 goto retry;
586         }
587
588         for_each_nlmsg(network->netlink_buf, nlmsg, len)
589                 network_handle_nlmsg(network, nlmsg);
590
591         return 0;
592 }
593
594 static void network_init_dns(struct network *network)
595 {
596         const struct config *config;
597         unsigned int i;
598         int rc, len;
599         bool modified;
600         char *buf;
601
602         if (network->dry_run)
603                 return;
604
605         config = config_get();
606         if (!config || !config->network.n_dns_servers)
607                 return;
608
609         rc = read_file(network, "/etc/resolv.conf", &buf, &len);
610
611         if (rc) {
612                 buf = talloc_strdup(network, "");
613                 len = 0;
614         }
615
616         modified = false;
617
618         for (i = 0; i < config->network.n_dns_servers; i++) {
619                 int dns_conf_len;
620                 char *dns_conf;
621
622                 dns_conf = talloc_asprintf(network, "nameserver %s\n",
623                                 config->network.dns_servers[i]);
624
625                 if (strstr(buf, dns_conf)) {
626                         talloc_free(dns_conf);
627                         continue;
628                 }
629
630                 dns_conf_len = strlen(dns_conf);
631                 buf = talloc_realloc(network, buf, char, len + dns_conf_len + 1);
632                 memcpy(buf + len, dns_conf, dns_conf_len);
633                 len += dns_conf_len;
634                 buf[len] = '\0';
635                 modified = true;
636
637                 talloc_free(dns_conf);
638         }
639
640         if (modified) {
641                 rc = replace_file("/etc/resolv.conf", buf, len);
642                 if (rc)
643                         pb_log("error replacing resolv.conf: %s\n",
644                                         strerror(errno));
645         }
646
647         talloc_free(buf);
648 }
649
650 struct network *network_init(struct device_handler *handler,
651                 struct waitset *waitset, bool dry_run)
652 {
653         struct network *network;
654         int rc;
655
656         network = talloc(handler, struct network);
657         list_init(&network->interfaces);
658         network->handler = handler;
659         network->dry_run = dry_run;
660         network->manual_config = config_get()->network.n_interfaces != 0;
661
662         network_init_dns(network);
663
664         rc = network_init_netlink(network);
665         if (rc)
666                 goto err;
667
668         network->waiter = waiter_register_io(waitset, network->netlink_sd,
669                         WAIT_IN, network_netlink_process, network);
670
671         if (!network->waiter)
672                 goto err;
673
674         rc = network_send_link_query(network);
675         if (rc)
676                 goto err;
677
678         return network;
679
680 err:
681         network_shutdown(network);
682         return NULL;
683 }
684
685 int network_shutdown(struct network *network)
686 {
687         struct interface *interface;
688
689         if (network->waiter)
690                 waiter_remove(network->waiter);
691
692         list_for_each_entry(&network->interfaces, interface, list) {
693                 if (interface->state == IFSTATE_IGNORED)
694                         continue;
695                 if (!strcmp(interface->name, "lo"))
696                         continue;
697                 interface_down(interface);
698         }
699
700         close(network->netlink_sd);
701         talloc_free(network);
702         return 0;
703 }