93d7bc5207436ee579e1aba04cf1f9d7a696cd6c
[oweals/busybox.git] / networking / ifupdown.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  *  ifupdown for busybox
4  *  Copyright (c) 2002 Glenn McGrath <bug1@iinet.net.au>
5  *  Copyright (c) 2003-2004 Erik Andersen <andersen@codepoet.org>
6  *
7  *  Based on ifupdown v 0.6.4 by Anthony Towns
8  *  Copyright (c) 1999 Anthony Towns <aj@azure.humbug.org.au>
9  *
10  *  Changes to upstream version
11  *  Remove checks for kernel version, assume kernel version 2.2.0 or better.
12  *  Lines in the interfaces file cannot wrap.
13  *  To adhere to the FHS, the default state file is /var/run/ifstate.
14  *
15  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
16  */
17
18 #include "busybox.h"
19 #include <sys/utsname.h>
20 #include <fnmatch.h>
21 #include <getopt.h>
22
23 #define MAX_OPT_DEPTH 10
24 #define EUNBALBRACK 10001
25 #define EUNDEFVAR   10002
26 #define EUNBALPER   10000
27
28 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
29 #define MAX_INTERFACE_LENGTH 10
30 #endif
31
32 #define debug_noise(args...) /*fprintf(stderr, args)*/
33
34 /* Forward declaration */
35 struct interface_defn_t;
36
37 typedef int execfn(char *command);
38
39 struct method_t
40 {
41         char *name;
42         int (*up)(struct interface_defn_t *ifd, execfn *e);
43         int (*down)(struct interface_defn_t *ifd, execfn *e);
44 };
45
46 struct address_family_t
47 {
48         char *name;
49         int n_methods;
50         const struct method_t *method;
51 };
52
53 struct mapping_defn_t
54 {
55         struct mapping_defn_t *next;
56
57         int max_matches;
58         int n_matches;
59         char **match;
60
61         char *script;
62
63         int max_mappings;
64         int n_mappings;
65         char **mapping;
66 };
67
68 struct variable_t
69 {
70         char *name;
71         char *value;
72 };
73
74 struct interface_defn_t
75 {
76         const struct address_family_t *address_family;
77         const struct method_t *method;
78
79         char *iface;
80         int max_options;
81         int n_options;
82         struct variable_t *option;
83 };
84
85 struct interfaces_file_t
86 {
87         llist_t *autointerfaces;
88         llist_t *ifaces;
89         struct mapping_defn_t *mappings;
90 };
91
92 #define OPTION_STR "anvf" USE_FEATURE_IFUPDOWN_MAPPING("m") "i:"
93 enum {
94         OPT_do_all = 0x1,
95         OPT_no_act = 0x2,
96         OPT_verbose = 0x4,
97         OPT_force = 0x8,
98         OPT_no_mappings = 0x10,
99 };
100 #define DO_ALL (option_mask32 & OPT_do_all)
101 #define NO_ACT (option_mask32 & OPT_no_act)
102 #define VERBOSE (option_mask32 & OPT_verbose)
103 #define FORCE (option_mask32 & OPT_force)
104 #define NO_MAPPINGS (option_mask32 & OPT_no_mappings)
105
106 static char **__myenviron;
107
108 static char *startup_PATH;
109
110 #if ENABLE_FEATURE_IFUPDOWN_IPV4 || ENABLE_FEATURE_IFUPDOWN_IPV6
111
112 #if ENABLE_FEATURE_IFUPDOWN_IP
113
114 static unsigned count_bits(unsigned a)
115 {
116         unsigned result;
117         result = (a & 0x55) + ((a >> 1) & 0x55);
118         result = (result & 0x33) + ((result >> 2) & 0x33);
119         return (result & 0x0F) + ((result >> 4) & 0x0F);
120 }
121
122 static int count_netmask_bits(char *dotted_quad)
123 {
124         unsigned result, a, b, c, d;
125         /* Found a netmask...  Check if it is dotted quad */
126         if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
127                 return -1;
128         // FIXME: will be confused by e.g. 255.0.255.0
129         result = count_bits(a);
130         result += count_bits(b);
131         result += count_bits(c);
132         result += count_bits(d);
133         return (int)result;
134 }
135 #endif
136
137 static void addstr(char **bufp, const char *str, size_t str_length)
138 {
139         /* xasprintf trick will be smaller, but we are often
140          * called with str_length == 1 - don't want to have
141          * THAT much of malloc/freeing! */
142         char *buf = *bufp;
143         int len = (buf ? strlen(buf) : 0);
144         str_length++;
145         buf = xrealloc(buf, len + str_length);
146         /* copies at most str_length-1 chars! */
147         safe_strncpy(buf + len, str, str_length);
148         *bufp = buf;
149 }
150
151 static int strncmpz(const char *l, const char *r, size_t llen)
152 {
153         int i = strncmp(l, r, llen);
154
155         if (i == 0)
156                 return -r[llen];
157         return i;
158 }
159
160 static char *get_var(const char *id, size_t idlen, struct interface_defn_t *ifd)
161 {
162         int i;
163
164         if (strncmpz(id, "iface", idlen) == 0) {
165                 char *result;
166                 static char label_buf[20];
167                 safe_strncpy(label_buf, ifd->iface, sizeof(label_buf));
168                 result = strchr(label_buf, ':');
169                 if (result) {
170                         *result = '\0';
171                 }
172                 return label_buf;
173         }
174         if (strncmpz(id, "label", idlen) == 0) {
175                 return ifd->iface;
176         }
177         for (i = 0; i < ifd->n_options; i++) {
178                 if (strncmpz(id, ifd->option[i].name, idlen) == 0) {
179                         return ifd->option[i].value;
180                 }
181         }
182         return NULL;
183 }
184
185 static char *parse(const char *command, struct interface_defn_t *ifd)
186 {
187         size_t old_pos[MAX_OPT_DEPTH] = { 0 };
188         int okay[MAX_OPT_DEPTH] = { 1 };
189         int opt_depth = 1;
190         char *result = xstrdup("");
191
192         while (*command) {
193                 switch (*command) {
194                 default:
195                         addstr(&result, command, 1);
196                         command++;
197                         break;
198                 case '\\':
199                         if (command[1]) {
200                                 addstr(&result, command + 1, 1);
201                                 command += 2;
202                         } else {
203                                 addstr(&result, command, 1);
204                                 command++;
205                         }
206                         break;
207                 case '[':
208                         if (command[1] == '[' && opt_depth < MAX_OPT_DEPTH) {
209                                 old_pos[opt_depth] = strlen(result);
210                                 okay[opt_depth] = 1;
211                                 opt_depth++;
212                                 command += 2;
213                         } else {
214                                 addstr(&result, "[", 1);
215                                 command++;
216                         }
217                         break;
218                 case ']':
219                         if (command[1] == ']' && opt_depth > 1) {
220                                 opt_depth--;
221                                 if (!okay[opt_depth]) {
222                                         result[old_pos[opt_depth]] = '\0';
223                                 }
224                                 command += 2;
225                         } else {
226                                 addstr(&result, "]", 1);
227                                 command++;
228                         }
229                         break;
230                 case '%':
231                         {
232                                 char *nextpercent;
233                                 char *varvalue;
234
235                                 command++;
236                                 nextpercent = strchr(command, '%');
237                                 if (!nextpercent) {
238                                         errno = EUNBALPER;
239                                         free(result);
240                                         return NULL;
241                                 }
242
243                                 varvalue = get_var(command, nextpercent - command, ifd);
244
245                                 if (varvalue) {
246                                         addstr(&result, varvalue, strlen(varvalue));
247                                 } else {
248 #if ENABLE_FEATURE_IFUPDOWN_IP
249                                         /* Sigh...  Add a special case for 'ip' to convert from
250                                          * dotted quad to bit count style netmasks.  */
251                                         if (strncmp(command, "bnmask", 6) == 0) {
252                                                 unsigned res;
253                                                 varvalue = get_var("netmask", 7, ifd);
254                                                 if (varvalue && (res = count_netmask_bits(varvalue)) > 0) {
255                                                         const char *argument = utoa(res);
256                                                         addstr(&result, argument, strlen(argument));
257                                                         command = nextpercent + 1;
258                                                         break;
259                                                 }
260                                         }
261 #endif
262                                         okay[opt_depth - 1] = 0;
263                                 }
264
265                                 command = nextpercent + 1;
266                         }
267                         break;
268                 }
269         }
270
271         if (opt_depth > 1) {
272                 errno = EUNBALBRACK;
273                 free(result);
274                 return NULL;
275         }
276
277         if (!okay[0]) {
278                 errno = EUNDEFVAR;
279                 free(result);
280                 return NULL;
281         }
282
283         return result;
284 }
285
286 /* execute() returns 1 for success and 0 for failure */
287 static int execute(const char *command, struct interface_defn_t *ifd, execfn *exec)
288 {
289         char *out;
290         int ret;
291
292         out = parse(command, ifd);
293         if (!out || !out[0]) {
294                 return 0;
295         }
296         ret = (*exec)(out);
297
298         free(out);
299         if (ret != 1) {
300                 return 0;
301         }
302         return 1;
303 }
304 #endif
305
306 #if ENABLE_FEATURE_IFUPDOWN_IPV6
307 static int loopback_up6(struct interface_defn_t *ifd, execfn *exec)
308 {
309 #if ENABLE_FEATURE_IFUPDOWN_IP
310         int result;
311         result = execute("ip addr add ::1 dev %iface%", ifd, exec);
312         result += execute("ip link set %iface% up", ifd, exec);
313         return ((result == 2) ? 2 : 0);
314 #else
315         return execute("ifconfig %iface% add ::1", ifd, exec);
316 #endif
317 }
318
319 static int loopback_down6(struct interface_defn_t *ifd, execfn *exec)
320 {
321 #if ENABLE_FEATURE_IFUPDOWN_IP
322         return execute("ip link set %iface% down", ifd, exec);
323 #else
324         return execute("ifconfig %iface% del ::1", ifd, exec);
325 #endif
326 }
327
328 static int static_up6(struct interface_defn_t *ifd, execfn *exec)
329 {
330         int result;
331 #if ENABLE_FEATURE_IFUPDOWN_IP
332         result = execute("ip addr add %address%/%netmask% dev %iface%[[ label %label%]]", ifd, exec);
333         result += execute("ip link set[[ mtu %mtu%]][[ address %hwaddress%]] %iface% up", ifd, exec);
334         /* Was: "[[ ip ....%gateway% ]]". Removed extra spaces w/o checking */
335         result += execute("[[ip route add ::/0 via %gateway%]]", ifd, exec);
336 #else
337         result = execute("ifconfig %iface%[[ media %media%]][[ hw %hwaddress%]][[ mtu %mtu%]] up", ifd, exec);
338         result += execute("ifconfig %iface% add %address%/%netmask%", ifd, exec);
339         result += execute("[[route -A inet6 add ::/0 gw %gateway%]]", ifd, exec);
340 #endif
341         return ((result == 3) ? 3 : 0);
342 }
343
344 static int static_down6(struct interface_defn_t *ifd, execfn *exec)
345 {
346 #if ENABLE_FEATURE_IFUPDOWN_IP
347         return execute("ip link set %iface% down", ifd, exec);
348 #else
349         return execute("ifconfig %iface% down", ifd, exec);
350 #endif
351 }
352
353 #if ENABLE_FEATURE_IFUPDOWN_IP
354 static int v4tunnel_up(struct interface_defn_t *ifd, execfn *exec)
355 {
356         int result;
357         result = execute("ip tunnel add %iface% mode sit remote "
358                         "%endpoint%[[ local %local%]][[ ttl %ttl%]]", ifd, exec);
359         result += execute("ip link set %iface% up", ifd, exec);
360         result += execute("ip addr add %address%/%netmask% dev %iface%", ifd, exec);
361         result += execute("[[ip route add ::/0 via %gateway%]]", ifd, exec);
362         return ((result == 4) ? 4 : 0);
363 }
364
365 static int v4tunnel_down(struct interface_defn_t * ifd, execfn * exec)
366 {
367         return execute("ip tunnel del %iface%", ifd, exec);
368 }
369 #endif
370
371 static const struct method_t methods6[] = {
372 #if ENABLE_FEATURE_IFUPDOWN_IP
373         { "v4tunnel", v4tunnel_up, v4tunnel_down, },
374 #endif
375         { "static", static_up6, static_down6, },
376         { "loopback", loopback_up6, loopback_down6, },
377 };
378
379 static const struct address_family_t addr_inet6 = {
380         "inet6",
381         sizeof(methods6) / sizeof(struct method_t),
382         methods6
383 };
384 #endif /* FEATURE_IFUPDOWN_IPV6 */
385
386 #if ENABLE_FEATURE_IFUPDOWN_IPV4
387 static int loopback_up(struct interface_defn_t *ifd, execfn *exec)
388 {
389 #if ENABLE_FEATURE_IFUPDOWN_IP
390         int result;
391         result = execute("ip addr add 127.0.0.1/8 dev %iface%", ifd, exec);
392         result += execute("ip link set %iface% up", ifd, exec);
393         return ((result == 2) ? 2 : 0);
394 #else
395         return execute("ifconfig %iface% 127.0.0.1 up", ifd, exec);
396 #endif
397 }
398
399 static int loopback_down(struct interface_defn_t *ifd, execfn *exec)
400 {
401 #if ENABLE_FEATURE_IFUPDOWN_IP
402         int result;
403         result = execute("ip addr flush dev %iface%", ifd, exec);
404         result += execute("ip link set %iface% down", ifd, exec);
405         return ((result == 2) ? 2 : 0);
406 #else
407         return execute("ifconfig %iface% 127.0.0.1 down", ifd, exec);
408 #endif
409 }
410
411 static int static_up(struct interface_defn_t *ifd, execfn *exec)
412 {
413         int result;
414 #if ENABLE_FEATURE_IFUPDOWN_IP
415         result = execute("ip addr add %address%/%bnmask%[[ broadcast %broadcast%]] "
416                         "dev %iface%[[ peer %pointopoint%]][[ label %label%]]", ifd, exec);
417         result += execute("ip link set[[ mtu %mtu%]][[ address %hwaddress%]] %iface% up", ifd, exec);
418         result += execute("[[ip route add default via %gateway% dev %iface%]]", ifd, exec);
419         return ((result == 3) ? 3 : 0);
420 #else
421         /* ifconfig said to set iface up before it processes hw %hwaddress%,
422          * which then of course fails. Thus we run two separate ifconfig */
423         result = execute("ifconfig %iface%[[ hw %hwaddress%]][[ media %media%]][[ mtu %mtu%]] up",
424                                 ifd, exec);
425         result += execute("ifconfig %iface% %address% netmask %netmask%"
426                                 "[[ broadcast %broadcast%]][[ pointopoint %pointopoint%]] ",
427                                 ifd, exec);
428         result += execute("[[route add default gw %gateway% %iface%]]", ifd, exec);
429         return ((result == 3) ? 3 : 0);
430 #endif
431 }
432
433 static int static_down(struct interface_defn_t *ifd, execfn *exec)
434 {
435         int result;
436 #if ENABLE_FEATURE_IFUPDOWN_IP
437         result = execute("ip addr flush dev %iface%", ifd, exec);
438         result += execute("ip link set %iface% down", ifd, exec);
439 #else
440         result = execute("[[route del default gw %gateway% %iface%]]", ifd, exec);
441         result += execute("ifconfig %iface% down", ifd, exec);
442 #endif
443         return ((result == 2) ? 2 : 0);
444 }
445
446 #if !ENABLE_APP_UDHCPC
447 struct dhcp_client_t
448 {
449         const char *name;
450         const char *startcmd;
451         const char *stopcmd;
452 };
453
454 static const struct dhcp_client_t ext_dhcp_clients[] = {
455         { "udhcpc",
456                 "udhcpc -R -n -p /var/run/udhcpc.%iface%.pid -i %iface%[[ -H %hostname%]][[ -c %clientid%]][[ -s %script%]]",
457                 "kill -TERM `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null",
458         },
459         { "pump",
460                 "pump -i %iface%[[ -h %hostname%]][[ -l %leasehours%]]",
461                 "pump -i %iface% -k",
462         },
463         { "dhclient",
464                 "dhclient -pf /var/run/dhclient.%iface%.pid %iface%",
465                 "kill -9 `cat /var/run/dhclient.%iface%.pid` 2>/dev/null",
466         },
467         { "dhcpcd",
468                 "dhcpcd[[ -h %hostname%]][[ -i %vendor%]][[ -I %clientid%]][[ -l %leasetime%]] %iface%",
469                 "dhcpcd -k %iface%",
470         },
471 };
472 #endif
473
474 static int dhcp_up(struct interface_defn_t *ifd, execfn *exec)
475 {
476 #if ENABLE_APP_UDHCPC
477         return execute("udhcpc -R -n -p /var/run/udhcpc.%iface%.pid "
478                         "-i %iface%[[ -H %hostname%]][[ -c %clientid%]][[ -s %script%]]",
479                         ifd, exec);
480 #else
481         int i, nclients = sizeof(ext_dhcp_clients) / sizeof(ext_dhcp_clients[0]);
482         for (i = 0; i < nclients; i++) {
483                 if (exists_execable(ext_dhcp_clients[i].name))
484                         return execute(ext_dhcp_clients[i].startcmd, ifd, exec);
485         }
486         bb_error_msg("no dhcp clients found");
487         return 0;
488 #endif
489 }
490
491 static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
492 {
493 #if ENABLE_APP_UDHCPC
494         return execute("kill -TERM "
495                        "`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
496 #else
497         int i, nclients = sizeof(ext_dhcp_clients) / sizeof(ext_dhcp_clients[0]);
498         for (i = 0; i < nclients; i++) {
499                 if (exists_execable(ext_dhcp_clients[i].name))
500                         return execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
501         }
502         bb_error_msg("no dhcp clients found, using static interface shutdown");
503         return static_down(ifd, exec);
504 #endif
505 }
506
507 static int manual_up_down(struct interface_defn_t *ifd, execfn *exec)
508 {
509         return 1;
510 }
511
512 static int bootp_up(struct interface_defn_t *ifd, execfn *exec)
513 {
514         return execute("bootpc[[ --bootfile %bootfile%]] --dev %iface%"
515                         "[[ --server %server%]][[ --hwaddr %hwaddr%]] "
516                         "--returniffail --serverbcast", ifd, exec);
517 }
518
519 static int ppp_up(struct interface_defn_t *ifd, execfn *exec)
520 {
521         return execute("pon[[ %provider%]]", ifd, exec);
522 }
523
524 static int ppp_down(struct interface_defn_t *ifd, execfn *exec)
525 {
526         return execute("poff[[ %provider%]]", ifd, exec);
527 }
528
529 static int wvdial_up(struct interface_defn_t *ifd, execfn *exec)
530 {
531         return execute("start-stop-daemon --start -x wvdial "
532                 "-p /var/run/wvdial.%iface% -b -m --[[ %provider%]]", ifd, exec);
533 }
534
535 static int wvdial_down(struct interface_defn_t *ifd, execfn *exec)
536 {
537         return execute("start-stop-daemon --stop -x wvdial "
538                         "-p /var/run/wvdial.%iface% -s 2", ifd, exec);
539 }
540
541 static const struct method_t methods[] = {
542         { "manual", manual_up_down, manual_up_down, },
543         { "wvdial", wvdial_up, wvdial_down, },
544         { "ppp", ppp_up, ppp_down, },
545         { "static", static_up, static_down, },
546         { "bootp", bootp_up, static_down, },
547         { "dhcp", dhcp_up, dhcp_down, },
548         { "loopback", loopback_up, loopback_down, },
549 };
550
551 static const struct address_family_t addr_inet = {
552         "inet",
553         sizeof(methods) / sizeof(struct method_t),
554         methods
555 };
556
557 #endif  /* if ENABLE_FEATURE_IFUPDOWN_IPV4 */
558
559 static char *next_word(char **buf)
560 {
561         unsigned short length;
562         char *word;
563
564         if (!buf || !*buf || !**buf) {
565                 return NULL;
566         }
567
568         /* Skip over leading whitespace */
569         word = skip_whitespace(*buf);
570
571         /* Skip over comments */
572         if (*word == '#') {
573                 return NULL;
574         }
575
576         /* Find the length of this word */
577         length = strcspn(word, " \t\n");
578         if (length == 0) {
579                 return NULL;
580         }
581         *buf = word + length;
582         /*DBU:[dave@cray.com] if we are already at EOL dont't increment beyond it */
583         if (**buf) {
584                 **buf = '\0';
585                 (*buf)++;
586         }
587
588         return word;
589 }
590
591 static const struct address_family_t *get_address_family(const struct address_family_t *const af[], char *name)
592 {
593         int i;
594
595         if (!name)
596                 return NULL;
597
598         for (i = 0; af[i]; i++) {
599                 if (strcmp(af[i]->name, name) == 0) {
600                         return af[i];
601                 }
602         }
603         return NULL;
604 }
605
606 static const struct method_t *get_method(const struct address_family_t *af, char *name)
607 {
608         int i;
609
610         if (!name)
611                 return NULL;
612
613         for (i = 0; i < af->n_methods; i++) {
614                 if (strcmp(af->method[i].name, name) == 0) {
615                         return &af->method[i];
616                 }
617         }
618         return NULL;
619 }
620
621 static const llist_t *find_list_string(const llist_t *list, const char *string)
622 {
623         if (string == NULL)
624                 return NULL;
625
626         while (list) {
627                 if (strcmp(list->data, string) == 0) {
628                         return list;
629                 }
630                 list = list->link;
631         }
632         return NULL;
633 }
634
635 static struct interfaces_file_t *read_interfaces(const char *filename)
636 {
637 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
638         struct mapping_defn_t *currmap = NULL;
639 #endif
640         struct interface_defn_t *currif = NULL;
641         struct interfaces_file_t *defn;
642         FILE *f;
643         char *firstword;
644         char *buf;
645
646         enum { NONE, IFACE, MAPPING } currently_processing = NONE;
647
648         defn = xzalloc(sizeof(struct interfaces_file_t));
649
650         f = xfopen(filename, "r");
651
652         while ((buf = xmalloc_getline(f)) != NULL) {
653                 char *buf_ptr = buf;
654
655                 firstword = next_word(&buf_ptr);
656                 if (firstword == NULL) {
657                         free(buf);
658                         continue;       /* blank line */
659                 }
660
661                 if (strcmp(firstword, "mapping") == 0) {
662 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
663                         currmap = xzalloc(sizeof(struct mapping_defn_t));
664
665                         while ((firstword = next_word(&buf_ptr)) != NULL) {
666                                 if (currmap->max_matches == currmap->n_matches) {
667                                         currmap->max_matches = currmap->max_matches * 2 + 1;
668                                         currmap->match = xrealloc(currmap->match, sizeof(currmap->match) * currmap->max_matches);
669                                 }
670
671                                 currmap->match[currmap->n_matches++] = xstrdup(firstword);
672                         }
673                         currmap->max_mappings = 0;
674                         currmap->n_mappings = 0;
675                         currmap->mapping = NULL;
676                         currmap->script = NULL;
677                         {
678                                 struct mapping_defn_t **where = &defn->mappings;
679                                 while (*where != NULL) {
680                                         where = &(*where)->next;
681                                 }
682                                 *where = currmap;
683                                 currmap->next = NULL;
684                         }
685                         debug_noise("Added mapping\n");
686 #endif
687                         currently_processing = MAPPING;
688                 } else if (strcmp(firstword, "iface") == 0) {
689                         static const struct address_family_t *const addr_fams[] = {
690 #if ENABLE_FEATURE_IFUPDOWN_IPV4
691                                 &addr_inet,
692 #endif
693 #if ENABLE_FEATURE_IFUPDOWN_IPV6
694                                 &addr_inet6,
695 #endif
696                                 NULL
697                         };
698
699                         char *iface_name;
700                         char *address_family_name;
701                         char *method_name;
702                         llist_t *iface_list;
703
704                         currif = xzalloc(sizeof(struct interface_defn_t));
705                         iface_name = next_word(&buf_ptr);
706                         address_family_name = next_word(&buf_ptr);
707                         method_name = next_word(&buf_ptr);
708
709                         if (buf_ptr == NULL) {
710                                 bb_error_msg("too few parameters for line \"%s\"", buf);
711                                 return NULL;
712                         }
713
714                         /* ship any trailing whitespace */
715                         buf_ptr = skip_whitespace(buf_ptr);
716
717                         if (buf_ptr[0] != '\0') {
718                                 bb_error_msg("too many parameters \"%s\"", buf);
719                                 return NULL;
720                         }
721
722                         currif->iface = xstrdup(iface_name);
723
724                         currif->address_family = get_address_family(addr_fams, address_family_name);
725                         if (!currif->address_family) {
726                                 bb_error_msg("unknown address type \"%s\"", address_family_name);
727                                 return NULL;
728                         }
729
730                         currif->method = get_method(currif->address_family, method_name);
731                         if (!currif->method) {
732                                 bb_error_msg("unknown method \"%s\"", method_name);
733                                 return NULL;
734                         }
735
736                         for (iface_list = defn->ifaces; iface_list; iface_list = iface_list->link) {
737                                 struct interface_defn_t *tmp = (struct interface_defn_t *) iface_list->data;
738                                 if ((strcmp(tmp->iface, currif->iface) == 0) &&
739                                         (tmp->address_family == currif->address_family)) {
740                                         bb_error_msg("duplicate interface \"%s\"", tmp->iface);
741                                         return NULL;
742                                 }
743                         }
744                         llist_add_to_end(&(defn->ifaces), (char*)currif);
745
746                         debug_noise("iface %s %s %s\n", currif->iface, address_family_name, method_name);
747                         currently_processing = IFACE;
748                 } else if (strcmp(firstword, "auto") == 0) {
749                         while ((firstword = next_word(&buf_ptr)) != NULL) {
750
751                                 /* Check the interface isnt already listed */
752                                 if (find_list_string(defn->autointerfaces, firstword)) {
753                                         bb_perror_msg_and_die("interface declared auto twice \"%s\"", buf);
754                                 }
755
756                                 /* Add the interface to the list */
757                                 llist_add_to_end(&(defn->autointerfaces), xstrdup(firstword));
758                                 debug_noise("\nauto %s\n", firstword);
759                         }
760                         currently_processing = NONE;
761                 } else {
762                         switch (currently_processing) {
763                         case IFACE:
764                                 {
765                                         int i;
766
767                                         if (strlen(buf_ptr) == 0) {
768                                                 bb_error_msg("option with empty value \"%s\"", buf);
769                                                 return NULL;
770                                         }
771
772                                         if (strcmp(firstword, "up") != 0
773                                                         && strcmp(firstword, "down") != 0
774                                                         && strcmp(firstword, "pre-up") != 0
775                                                         && strcmp(firstword, "post-down") != 0) {
776                                                 for (i = 0; i < currif->n_options; i++) {
777                                                         if (strcmp(currif->option[i].name, firstword) == 0) {
778                                                                 bb_error_msg("duplicate option \"%s\"", buf);
779                                                                 return NULL;
780                                                         }
781                                                 }
782                                         }
783                                 }
784                                 if (currif->n_options >= currif->max_options) {
785                                         struct variable_t *opt;
786
787                                         currif->max_options = currif->max_options + 10;
788                                         opt = xrealloc(currif->option, sizeof(*opt) * currif->max_options);
789                                         currif->option = opt;
790                                 }
791                                 currif->option[currif->n_options].name = xstrdup(firstword);
792                                 currif->option[currif->n_options].value = xstrdup(buf_ptr);
793                                 if (!currif->option[currif->n_options].name) {
794                                         perror(filename);
795                                         return NULL;
796                                 }
797                                 if (!currif->option[currif->n_options].value) {
798                                         perror(filename);
799                                         return NULL;
800                                 }
801                                 debug_noise("\t%s=%s\n", currif->option[currif->n_options].name,
802                                                 currif->option[currif->n_options].value);
803                                 currif->n_options++;
804                                 break;
805                         case MAPPING:
806 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
807                                 if (strcmp(firstword, "script") == 0) {
808                                         if (currmap->script != NULL) {
809                                                 bb_error_msg("duplicate script in mapping \"%s\"", buf);
810                                                 return NULL;
811                                         } else {
812                                                 currmap->script = xstrdup(next_word(&buf_ptr));
813                                         }
814                                 } else if (strcmp(firstword, "map") == 0) {
815                                         if (currmap->max_mappings == currmap->n_mappings) {
816                                                 currmap->max_mappings = currmap->max_mappings * 2 + 1;
817                                                 currmap->mapping = xrealloc(currmap->mapping, sizeof(char *) * currmap->max_mappings);
818                                         }
819                                         currmap->mapping[currmap->n_mappings] = xstrdup(next_word(&buf_ptr));
820                                         currmap->n_mappings++;
821                                 } else {
822                                         bb_error_msg("misplaced option \"%s\"", buf);
823                                         return NULL;
824                                 }
825 #endif
826                                 break;
827                         case NONE:
828                         default:
829                                 bb_error_msg("misplaced option \"%s\"", buf);
830                                 return NULL;
831                         }
832                 }
833                 free(buf);
834         }
835         if (ferror(f) != 0) {
836                 bb_perror_msg_and_die("%s", filename);
837         }
838         fclose(f);
839
840         return defn;
841 }
842
843 static char *setlocalenv(char *format, const char *name, const char *value)
844 {
845         char *result;
846         char *here;
847         char *there;
848
849         result = xasprintf(format, name, value);
850
851         for (here = there = result; *there != '=' && *there; there++) {
852                 if (*there == '-')
853                         *there = '_';
854                 if (isalpha(*there))
855                         *there = toupper(*there);
856
857                 if (isalnum(*there) || *there == '_') {
858                         *here = *there;
859                         here++;
860                 }
861         }
862         memmove(here, there, strlen(there) + 1);
863
864         return result;
865 }
866
867 static void set_environ(struct interface_defn_t *iface, const char *mode)
868 {
869         char **environend;
870         int i;
871         const int n_env_entries = iface->n_options + 5;
872         char **ppch;
873
874         if (__myenviron != NULL) {
875                 for (ppch = __myenviron; *ppch; ppch++) {
876                         free(*ppch);
877                         *ppch = NULL;
878                 }
879                 free(__myenviron);
880         }
881         __myenviron = xzalloc(sizeof(char *) * (n_env_entries + 1 /* for final NULL */ ));
882         environend = __myenviron;
883
884         for (i = 0; i < iface->n_options; i++) {
885                 if (strcmp(iface->option[i].name, "up") == 0
886                                 || strcmp(iface->option[i].name, "down") == 0
887                                 || strcmp(iface->option[i].name, "pre-up") == 0
888                                 || strcmp(iface->option[i].name, "post-down") == 0) {
889                         continue;
890                 }
891                 *(environend++) = setlocalenv("IF_%s=%s", iface->option[i].name, iface->option[i].value);
892         }
893
894         *(environend++) = setlocalenv("%s=%s", "IFACE", iface->iface);
895         *(environend++) = setlocalenv("%s=%s", "ADDRFAM", iface->address_family->name);
896         *(environend++) = setlocalenv("%s=%s", "METHOD", iface->method->name);
897         *(environend++) = setlocalenv("%s=%s", "MODE", mode);
898         *(environend++) = setlocalenv("%s=%s", "PATH", startup_PATH);
899 }
900
901 static int doit(char *str)
902 {
903         if (option_mask32 & (OPT_no_act|OPT_verbose)) {
904                 puts(str);
905         }
906         if (!(option_mask32 & OPT_no_act)) {
907                 pid_t child;
908                 int status;
909
910                 fflush(NULL);
911                 switch (child = fork()) {
912                 case -1: /* failure */
913                         return 0;
914                 case 0: /* child */
915                         execle(DEFAULT_SHELL, DEFAULT_SHELL, "-c", str, NULL, __myenviron);
916                         exit(127);
917                 }
918                 waitpid(child, &status, 0);
919                 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
920                         return 0;
921                 }
922         }
923         return 1;
924 }
925
926 static int execute_all(struct interface_defn_t *ifd, const char *opt)
927 {
928         int i;
929         char *buf;
930         for (i = 0; i < ifd->n_options; i++) {
931                 if (strcmp(ifd->option[i].name, opt) == 0) {
932                         if (!doit(ifd->option[i].value)) {
933                                 return 0;
934                         }
935                 }
936         }
937
938         buf = xasprintf("run-parts /etc/network/if-%s.d", opt);
939         if (doit(buf) != 1) {
940                 return 0;
941         }
942         return 1;
943 }
944
945 static int check(char *str)
946 {
947         return str != NULL;
948 }
949
950 static int iface_up(struct interface_defn_t *iface)
951 {
952         if (!iface->method->up(iface, check)) return -1;
953         set_environ(iface, "start");
954         if (!execute_all(iface, "pre-up")) return 0;
955         if (!iface->method->up(iface, doit)) return 0;
956         if (!execute_all(iface, "up")) return 0;
957         return 1;
958 }
959
960 static int iface_down(struct interface_defn_t *iface)
961 {
962         if (!iface->method->down(iface,check)) return -1;
963         set_environ(iface, "stop");
964         if (!execute_all(iface, "down")) return 0;
965         if (!iface->method->down(iface, doit)) return 0;
966         if (!execute_all(iface, "post-down")) return 0;
967         return 1;
968 }
969
970 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
971 static int popen2(FILE **in, FILE **out, char *command, ...)
972 {
973         va_list ap;
974         char *argv[11] = { command };
975         int argc;
976         int infd[2], outfd[2];
977         pid_t pid;
978
979         argc = 1;
980         va_start(ap, command);
981         while ((argc < 10) && (argv[argc] = va_arg(ap, char *))) {
982                 argc++;
983         }
984         argv[argc] = NULL;      /* make sure */
985         va_end(ap);
986
987         if (pipe(infd) != 0) {
988                 return 0;
989         }
990
991         if (pipe(outfd) != 0) {
992                 close(infd[0]);
993                 close(infd[1]);
994                 return 0;
995         }
996
997         fflush(NULL);
998         switch (pid = fork()) {
999         case -1:                        /* failure */
1000                 close(infd[0]);
1001                 close(infd[1]);
1002                 close(outfd[0]);
1003                 close(outfd[1]);
1004                 return 0;
1005         case 0:                 /* child */
1006                 dup2(infd[0], 0);
1007                 dup2(outfd[1], 1);
1008                 close(infd[0]);
1009                 close(infd[1]);
1010                 close(outfd[0]);
1011                 close(outfd[1]);
1012                 execvp(command, argv);
1013                 exit(127);
1014         default:                        /* parent */
1015                 *in = fdopen(infd[1], "w");
1016                 *out = fdopen(outfd[0], "r");
1017                 close(infd[0]);
1018                 close(outfd[1]);
1019                 return pid;
1020         }
1021         /* unreached */
1022 }
1023
1024 static char *run_mapping(char *physical, struct mapping_defn_t * map)
1025 {
1026         FILE *in, *out;
1027         int i, status;
1028         pid_t pid;
1029
1030         char *logical = xstrdup(physical);
1031
1032         /* Run the mapping script. */
1033         pid = popen2(&in, &out, map->script, physical, NULL);
1034
1035         /* popen2() returns 0 on failure. */
1036         if (pid == 0)
1037                 return logical;
1038
1039         /* Write mappings to stdin of mapping script. */
1040         for (i = 0; i < map->n_mappings; i++) {
1041                 fprintf(in, "%s\n", map->mapping[i]);
1042         }
1043         fclose(in);
1044         waitpid(pid, &status, 0);
1045
1046         if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1047                 /* If the mapping script exited successfully, try to
1048                  * grab a line of output and use that as the name of the
1049                  * logical interface. */
1050                 char *new_logical = (char *)xmalloc(MAX_INTERFACE_LENGTH);
1051
1052                 if (fgets(new_logical, MAX_INTERFACE_LENGTH, out)) {
1053                         /* If we are able to read a line of output from the script,
1054                          * remove any trailing whitespace and use this value
1055                          * as the name of the logical interface. */
1056                         char *pch = new_logical + strlen(new_logical) - 1;
1057
1058                         while (pch >= new_logical && isspace(*pch))
1059                                 *(pch--) = '\0';
1060
1061                         free(logical);
1062                         logical = new_logical;
1063                 } else {
1064                         /* If we are UNABLE to read a line of output, discard our
1065                          * freshly allocated memory. */
1066                         free(new_logical);
1067                 }
1068         }
1069
1070         fclose(out);
1071
1072         return logical;
1073 }
1074 #endif /* FEATURE_IFUPDOWN_MAPPING */
1075
1076 static llist_t *find_iface_state(llist_t *state_list, const char *iface)
1077 {
1078         unsigned short iface_len = strlen(iface);
1079         llist_t *search = state_list;
1080
1081         while (search) {
1082                 if ((strncmp(search->data, iface, iface_len) == 0) &&
1083                                 (search->data[iface_len] == '=')) {
1084                         return search;
1085                 }
1086                 search = search->link;
1087         }
1088         return NULL;
1089 }
1090
1091 int ifupdown_main(int argc, char **argv)
1092 {
1093         int (*cmds)(struct interface_defn_t *) = NULL;
1094         struct interfaces_file_t *defn;
1095         llist_t *state_list = NULL;
1096         llist_t *target_list = NULL;
1097         const char *interfaces = "/etc/network/interfaces";
1098         int any_failures = 0;
1099
1100         cmds = iface_down;
1101         if (applet_name[2] == 'u') {
1102                 /* ifup command */
1103                 cmds = iface_up;
1104         }
1105
1106         getopt32(argc, argv, OPTION_STR, &interfaces);
1107         if (argc - optind > 0) {
1108                 if (DO_ALL) bb_show_usage();
1109         } else {
1110                 if (!DO_ALL) bb_show_usage();
1111         }
1112
1113         debug_noise("reading %s file:\n", interfaces);
1114         defn = read_interfaces(interfaces);
1115         debug_noise("\ndone reading %s\n\n", interfaces);
1116
1117         if (!defn) {
1118                 return EXIT_FAILURE;
1119         }
1120
1121         startup_PATH = getenv("PATH");
1122         if (!startup_PATH) startup_PATH = "";
1123
1124         /* Create a list of interfaces to work on */
1125         if (DO_ALL) {
1126                 if (cmds == iface_up) {
1127                         target_list = defn->autointerfaces;
1128                 } else {
1129                         /* iface_down */
1130                         const llist_t *list = state_list;
1131                         while (list) {
1132                                 llist_add_to_end(&target_list, xstrdup(list->data));
1133                                 list = list->link;
1134                         }
1135                         target_list = defn->autointerfaces;
1136                 }
1137         } else {
1138                 llist_add_to_end(&target_list, argv[optind]);
1139         }
1140
1141
1142         /* Update the interfaces */
1143         while (target_list) {
1144                 llist_t *iface_list;
1145                 struct interface_defn_t *currif;
1146                 char *iface;
1147                 char *liface;
1148                 char *pch;
1149                 int okay = 0;
1150                 int cmds_ret;
1151
1152                 iface = xstrdup(target_list->data);
1153                 target_list = target_list->link;
1154
1155                 pch = strchr(iface, '=');
1156                 if (pch) {
1157                         *pch = '\0';
1158                         liface = xstrdup(pch + 1);
1159                 } else {
1160                         liface = xstrdup(iface);
1161                 }
1162
1163                 if (!FORCE) {
1164                         const llist_t *iface_state = find_iface_state(state_list, iface);
1165
1166                         if (cmds == iface_up) {
1167                                 /* ifup */
1168                                 if (iface_state) {
1169                                         bb_error_msg("interface %s already configured", iface);
1170                                         continue;
1171                                 }
1172                         } else {
1173                                 /* ifdown */
1174                                 if (iface_state) {
1175                                         bb_error_msg("interface %s not configured", iface);
1176                                         continue;
1177                                 }
1178                         }
1179                 }
1180
1181 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
1182                 if ((cmds == iface_up) && !NO_MAPPINGS) {
1183                         struct mapping_defn_t *currmap;
1184
1185                         for (currmap = defn->mappings; currmap; currmap = currmap->next) {
1186                                 int i;
1187                                 for (i = 0; i < currmap->n_matches; i++) {
1188                                         if (fnmatch(currmap->match[i], liface, 0) != 0)
1189                                                 continue;
1190                                         if (VERBOSE) {
1191                                                 printf("Running mapping script %s on %s\n", currmap->script, liface);
1192                                         }
1193                                         liface = run_mapping(iface, currmap);
1194                                         break;
1195                                 }
1196                         }
1197                 }
1198 #endif
1199
1200                 iface_list = defn->ifaces;
1201                 while (iface_list) {
1202                         currif = (struct interface_defn_t *) iface_list->data;
1203                         if (strcmp(liface, currif->iface) == 0) {
1204                                 char *oldiface = currif->iface;
1205
1206                                 okay = 1;
1207                                 currif->iface = iface;
1208
1209                                 debug_noise("\nZ Configuring interface %s (%s)\n", liface, currif->address_family->name);
1210
1211                                 /* Call the cmds function pointer, does either iface_up() or iface_down() */
1212                                 cmds_ret = cmds(currif);
1213                                 if (cmds_ret == -1) {
1214                                         bb_error_msg("don't seem to have all the variables for %s/%s",
1215                                                         liface, currif->address_family->name);
1216                                         any_failures = 1;
1217                                 } else if (cmds_ret == 0) {
1218                                         any_failures = 1;
1219                                 }
1220
1221                                 currif->iface = oldiface;
1222                         }
1223                         iface_list = iface_list->link;
1224                 }
1225                 if (VERBOSE) {
1226                         puts("");
1227                 }
1228
1229                 if (!okay && !FORCE) {
1230                         bb_error_msg("ignoring unknown interface %s", liface);
1231                         any_failures = 1;
1232                 } else {
1233                         llist_t *iface_state = find_iface_state(state_list, iface);
1234
1235                         if (cmds == iface_up) {
1236                                 char *newiface = xasprintf("%s=%s", iface, liface);
1237                                 if (iface_state == NULL) {
1238                                         llist_add_to_end(&state_list, newiface);
1239                                 } else {
1240                                         free(iface_state->data);
1241                                         iface_state->data = newiface;
1242                                 }
1243                         } else {
1244                                 /* Remove an interface from the linked list */
1245                                 free(llist_pop(&iface_state));
1246                         }
1247                 }
1248         }
1249
1250         /* Actually write the new state */
1251         if (!NO_ACT) {
1252                 FILE *state_fp;
1253
1254                 state_fp = xfopen("/var/run/ifstate", "w");
1255                 while (state_list) {
1256                         if (state_list->data) {
1257                                 fputs(state_list->data, state_fp);
1258                                 fputc('\n', state_fp);
1259                         }
1260                         state_list = state_list->link;
1261                 }
1262                 fclose(state_fp);
1263         }
1264
1265         return any_failures;
1266 }