1 /* vi: set sw=4 ts=4: */
4 * Copyright (c) 2002 Glenn McGrath <bug1@optushome.com.au>
5 * Copyright (c) 2003 Erik Andersen <andersen@codepoet.org>
7 * Based on ifupdown v 0.6.4 by Anthony Towns
8 * Copyright (c) 1999 Anthony Towns <aj@azure.humbug.org.au>
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.
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
31 #include <sys/utsname.h>
47 #define MAX_OPT_DEPTH 10
48 #define EUNBALBRACK 10001
49 #define EUNDEFVAR 10002
50 #define EUNBALPER 10000
52 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
53 #define MAX_INTERFACE_LENGTH 10
57 #define debug_noise(fmt, args...) printf(fmt, ## args)
59 #define debug_noise(fmt, args...)
62 /* Forward declaration */
63 struct interface_defn_t;
65 typedef int (execfn)(char *command);
66 typedef int (command_set)(struct interface_defn_t *ifd, execfn *e);
68 extern llist_t *llist_add_to_end(llist_t *list_head, char *data)
70 llist_t *new_item, *tmp, *prev;
72 new_item = xmalloc(sizeof(llist_t));
73 new_item->data = data;
74 new_item->link = NULL;
83 prev->link = new_item;
98 struct address_family_t
102 struct method_t *method;
105 struct mapping_defn_t
107 struct mapping_defn_t *next;
126 struct interface_defn_t
128 struct interface_defn_t *prev;
129 struct interface_defn_t *next;
132 struct address_family_t *address_family;
133 struct method_t *method;
139 struct variable_t *option;
142 struct interfaces_file_t
144 llist_t *autointerfaces;
146 struct mapping_defn_t *mappings;
149 static char no_act = 0;
150 static char verbose = 0;
151 static char **environ = NULL;
153 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
155 static unsigned int count_bits(unsigned int a)
158 result = (a & 0x55) + ((a >> 1) & 0x55);
159 result = (result & 0x33) + ((result >> 2) & 0x33);
160 return((result & 0x0F) + ((result >> 4) & 0x0F));
163 static int count_netmask_bits(char *dotted_quad)
165 unsigned int result, a, b, c, d;
166 /* Found a netmask... Check if it is dotted quad */
167 if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
169 result = count_bits(a);
170 result += count_bits(b);
171 result += count_bits(c);
172 result += count_bits(d);
173 return ((int)result);
177 static void addstr(char **buf, size_t *len, size_t *pos, char *str, size_t str_length)
179 if (*pos + str_length >= *len) {
182 newbuf = xrealloc(*buf, *len * 2 + str_length + 1);
184 *len = *len * 2 + str_length + 1;
187 while (str_length-- >= 1) {
188 (*buf)[(*pos)++] = *str;
194 static int strncmpz(char *l, char *r, size_t llen)
196 int i = strncmp(l, r, llen);
205 static char *get_var(char *id, size_t idlen, struct interface_defn_t *ifd)
209 if (strncmpz(id, "iface", idlen) == 0) {
211 static char label_buf[20];
212 strncpy(label_buf, ifd->iface, 19);
214 result = strchr(label_buf, ':');
219 } else if (strncmpz(id, "label", idlen) == 0) {
222 for (i = 0; i < ifd->n_options; i++) {
223 if (strncmpz(id, ifd->option[i].name, idlen) == 0) {
224 return (ifd->option[i].value);
232 static char *parse(char *command, struct interface_defn_t *ifd)
236 size_t pos = 0, len = 0;
237 size_t old_pos[MAX_OPT_DEPTH] = { 0 };
238 int okay[MAX_OPT_DEPTH] = { 1 };
245 addstr(&result, &len, &pos, command, 1);
250 addstr(&result, &len, &pos, command + 1, 1);
253 addstr(&result, &len, &pos, command, 1);
258 if (command[1] == '[' && opt_depth < MAX_OPT_DEPTH) {
259 old_pos[opt_depth] = pos;
264 addstr(&result, &len, &pos, "[", 1);
269 if (command[1] == ']' && opt_depth > 1) {
271 if (!okay[opt_depth]) {
272 pos = old_pos[opt_depth];
277 addstr(&result, &len, &pos, "]", 1);
287 nextpercent = strchr(command, '%');
294 varvalue = get_var(command, nextpercent - command, ifd);
297 addstr(&result, &len, &pos, varvalue, bb_strlen(varvalue));
299 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
300 /* Sigh... Add a special case for 'ip' to convert from
301 * dotted quad to bit count style netmasks. */
302 if (strncmp(command, "bnmask", 6)==0) {
304 varvalue = get_var("netmask", 7, ifd);
305 if (varvalue && (res=count_netmask_bits(varvalue)) > 0) {
307 sprintf(argument, "%d", res);
308 addstr(&result, &len, &pos, argument, bb_strlen(argument));
309 command = nextpercent + 1;
314 okay[opt_depth - 1] = 0;
317 command = nextpercent + 1;
338 static int execute(char *command, struct interface_defn_t *ifd, execfn *exec)
343 out = parse(command, ifd);
353 #ifdef CONFIG_FEATURE_IFUPDOWN_IPX
354 static int static_up_ipx(struct interface_defn_t *ifd, execfn *exec)
356 return(execute("ipx_interface add %iface% %frame% %netnum%", ifd, exec));
359 static int static_down_ipx(struct interface_defn_t *ifd, execfn *exec)
361 return(execute("ipx_interface del %iface% %frame%", ifd, exec));
364 static int dynamic_up(struct interface_defn_t *ifd, execfn *exec)
366 return(execute("ipx_interface add %iface% %frame%", ifd, exec));
369 static int dynamic_down(struct interface_defn_t *ifd, execfn *exec)
371 return(execute("ipx_interface del %iface% %frame%", ifd, exec));
374 static struct method_t methods_ipx[] = {
375 { "dynamic", dynamic_up, dynamic_down, },
376 { "static", static_up_ipx, static_down_ipx, },
379 struct address_family_t addr_ipx = {
381 sizeof(methods_ipx) / sizeof(struct method_t),
384 #endif /* IFUP_FEATURE_IPX */
386 #ifdef CONFIG_FEATURE_IFUPDOWN_IPV6
387 static int loopback_up6(struct interface_defn_t *ifd, execfn *exec)
389 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
391 result =execute("ip addr add ::1 dev %iface%", ifd, exec);
392 result += execute("ip link set %iface% up", ifd, exec);
395 return( execute("ifconfig %iface% add ::1", ifd, exec));
399 static int loopback_down6(struct interface_defn_t *ifd, execfn *exec)
401 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
402 return(execute("ip link set %iface% down", ifd, exec));
404 return(execute("ifconfig %iface% del ::1", ifd, exec));
408 static int static_up6(struct interface_defn_t *ifd, execfn *exec)
411 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
412 result = execute("ip addr add %address%/%netmask% dev %iface% [[label %label%]]", ifd, exec);
413 result += execute("ip link set [[mtu %mtu%]] [[address %hwaddress%]] %iface% up", ifd, exec);
414 result += execute("[[ ip route add ::/0 via %gateway% ]]", ifd, exec);
416 result = execute("ifconfig %iface% [[media %media%]] [[hw %hwaddress%]] [[mtu %mtu%]] up", ifd, exec);
417 result += execute("ifconfig %iface% add %address%/%netmask%", ifd, exec);
418 result += execute("[[ route -A inet6 add ::/0 gw %gateway% ]]", ifd, exec);
423 static int static_down6(struct interface_defn_t *ifd, execfn *exec)
425 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
426 return(execute("ip link set %iface% down", ifd, exec));
428 return(execute("ifconfig %iface% down", ifd, exec));
432 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
433 static int v4tunnel_up(struct interface_defn_t *ifd, execfn *exec)
436 result = execute("ip tunnel add %iface% mode sit remote "
437 "%endpoint% [[local %local%]] [[ttl %ttl%]]", ifd, exec);
438 result += execute("ip link set %iface% up", ifd, exec);
439 result += execute("ip addr add %address%/%netmask% dev %iface% label %label%", ifd, exec);
440 result += execute("[[ ip route add ::/0 via %gateway% ]]", ifd, exec);
444 static int v4tunnel_down(struct interface_defn_t * ifd, execfn * exec)
446 return( execute("ip tunnel del %iface%", ifd, exec));
450 static struct method_t methods6[] = {
451 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
452 { "v4tunnel", v4tunnel_up, v4tunnel_down, },
454 { "static", static_up6, static_down6, },
455 { "loopback", loopback_up6, loopback_down6, },
458 struct address_family_t addr_inet6 = {
460 sizeof(methods6) / sizeof(struct method_t),
463 #endif /* CONFIG_FEATURE_IFUPDOWN_IPV6 */
465 #ifdef CONFIG_FEATURE_IFUPDOWN_IPV4
466 static int loopback_up(struct interface_defn_t *ifd, execfn *exec)
468 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
470 result = execute("ip addr add 127.0.0.1/8 dev %iface%", ifd, exec);
471 result += execute("ip link set %iface% up", ifd, exec);
474 return( execute("ifconfig %iface% 127.0.0.1 up", ifd, exec));
478 static int loopback_down(struct interface_defn_t *ifd, execfn *exec)
480 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
482 result = execute("ip addr flush dev %iface%", ifd, exec);
483 result += execute("ip link set %iface% down", ifd, exec);
486 return( execute("ifconfig %iface% 127.0.0.1 down", ifd, exec));
490 static int static_up(struct interface_defn_t *ifd, execfn *exec)
493 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
494 result = execute("ip addr add %address%/%bnmask% [[broadcast %broadcast%]] "
495 "dev %iface% [[peer %pointopoint%]] [[label %label%]]", ifd, exec);
496 result += execute("ip link set [[mtu %mtu%]] [[address %hwaddress%]] %iface% up", ifd, exec);
497 result += execute("[[ ip route add default via %gateway% dev %iface% ]]", ifd, exec);
499 result = execute("ifconfig %iface% %address% netmask %netmask% "
500 "[[broadcast %broadcast%]] [[pointopoint %pointopoint%]] "
501 "[[media %media%]] [[mtu %mtu%]] [[hw %hwaddress%]] up",
503 result += execute("[[ route add default gw %gateway% %iface% ]]", ifd, exec);
508 static int static_down(struct interface_defn_t *ifd, execfn *exec)
511 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
512 result = execute("ip addr flush dev %iface%", ifd, exec);
513 result += execute("ip link set %iface% down", ifd, exec);
515 result = execute("[[ route del default gw %gateway% %iface% ]]", ifd, exec);
516 result += execute("ifconfig %iface% down", ifd, exec);
521 static int execable(char *program)
524 if (0 == stat(program, &buf)) {
525 if (S_ISREG(buf.st_mode) && (S_IXUSR & buf.st_mode)) {
532 static int dhcp_up(struct interface_defn_t *ifd, execfn *exec)
534 if (execable("/sbin/udhcpc")) {
535 return( execute("udhcpc -n -p /var/run/udhcpc.%iface%.pid -i "
536 "%iface% [[-H %hostname%]] [[-c %clientid%]]", ifd, exec));
537 } else if (execable("/sbin/pump")) {
538 return( execute("pump -i %iface% [[-h %hostname%]] [[-l %leasehours%]]", ifd, exec));
539 } else if (execable("/sbin/dhclient")) {
540 return( execute("dhclient -pf /var/run/dhclient.%iface%.pid %iface%", ifd, exec));
541 } else if (execable("/sbin/dhcpcd")) {
542 return( execute("dhcpcd [[-h %hostname%]] [[-i %vendor%]] [[-I %clientid%]] "
543 "[[-l %leasetime%]] %iface%", ifd, exec));
548 static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
551 if (execable("/sbin/udhcpc")) {
552 execute("kill -9 `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
553 } else if (execable("/sbin/pump")) {
554 result = execute("pump -i %iface% -k", ifd, exec);
555 } else if (execable("/sbin/dhclient")) {
556 execute("kill -9 `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
557 } else if (execable("/sbin/dhcpcd")) {
558 result = execute("dhcpcd -k %iface%", ifd, exec);
560 return (result || execute("ifconfig %iface% down", ifd, exec));
563 static int bootp_up(struct interface_defn_t *ifd, execfn *exec)
565 return( execute("bootpc [[--bootfile %bootfile%]] --dev %iface% "
566 "[[--server %server%]] [[--hwaddr %hwaddr%]] "
567 "--returniffail --serverbcast", ifd, exec));
570 static int bootp_down(struct interface_defn_t *ifd, execfn *exec)
572 #ifdef CONFIG_FEATURE_IFUPDOWN_IP
573 return(execute("ip link set %iface% down", ifd, exec));
575 return(execute("ifconfig %iface% down", ifd, exec));
579 static int ppp_up(struct interface_defn_t *ifd, execfn *exec)
581 return( execute("pon [[%provider%]]", ifd, exec));
584 static int ppp_down(struct interface_defn_t *ifd, execfn *exec)
586 return( execute("poff [[%provider%]]", ifd, exec));
589 static int wvdial_up(struct interface_defn_t *ifd, execfn *exec)
591 return( execute("/sbin/start-stop-daemon --start -x /usr/bin/wvdial "
592 "-p /var/run/wvdial.%iface% -b -m -- [[ %provider% ]]", ifd, exec));
595 static int wvdial_down(struct interface_defn_t *ifd, execfn *exec)
597 return( execute("/sbin/start-stop-daemon --stop -x /usr/bin/wvdial "
598 "-p /var/run/wvdial.%iface% -s 2", ifd, exec));
601 static struct method_t methods[] =
603 { "wvdial", wvdial_up, wvdial_down, },
604 { "ppp", ppp_up, ppp_down, },
605 { "static", static_up, static_down, },
606 { "bootp", bootp_up, bootp_down, },
607 { "dhcp", dhcp_up, dhcp_down, },
608 { "loopback", loopback_up, loopback_down, },
611 struct address_family_t addr_inet =
614 sizeof(methods) / sizeof(struct method_t),
618 #endif /* ifdef CONFIG_FEATURE_IFUPDOWN_IPV4 */
620 static char *next_word(char **buf)
622 unsigned short length;
625 if ((buf == NULL) || (*buf == NULL) || (**buf == '\0')) {
629 /* Skip over leading whitespace */
631 while (isspace(*word)) {
635 /* Skip over comments */
640 /* Find the length of this word */
641 length = strcspn(word, " \t\n");
645 *buf = word + length;
646 /*DBU:[dave@cray.com] if we are already at EOL dont't increment beyond it */
655 static struct address_family_t *get_address_family(struct address_family_t *af[], char *name)
659 for (i = 0; af[i]; i++) {
660 if (strcmp(af[i]->name, name) == 0) {
667 static struct method_t *get_method(struct address_family_t *af, char *name)
671 for (i = 0; i < af->n_methods; i++) {
672 if (strcmp(af->method[i].name, name) == 0) {
673 return &af->method[i];
679 static int duplicate_if(struct interface_defn_t *ifa, struct interface_defn_t *ifb)
681 if (strcmp(ifa->iface, ifb->iface) != 0) {
684 if (ifa->address_family != ifb->address_family) {
690 static const llist_t *find_list_string(const llist_t *list, const char *string)
693 if (strcmp(list->data, string) == 0) {
701 static struct interfaces_file_t *read_interfaces(char *filename)
703 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
704 struct mapping_defn_t *currmap = NULL;
706 struct interface_defn_t *currif = NULL;
707 struct interfaces_file_t *defn;
712 enum { NONE, IFACE, MAPPING } currently_processing = NONE;
714 defn = xmalloc(sizeof(struct interfaces_file_t));
715 defn->autointerfaces = NULL;
716 defn->mappings = NULL;
719 f = bb_xfopen(filename, "r");
721 while ((buf = bb_get_chomped_line_from_file(f)) != NULL) {
724 firstword = next_word(&buf_ptr);
725 if (firstword == NULL) {
727 continue; /* blank line */
730 if (strcmp(firstword, "mapping") == 0) {
731 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
732 currmap = xmalloc(sizeof(struct mapping_defn_t));
733 currmap->max_matches = 0;
734 currmap->n_matches = 0;
735 currmap->match = NULL;
737 while ((firstword = next_word(&buf_ptr)) != NULL) {
738 if (currmap->max_matches == currmap->n_matches) {
739 currmap->max_matches = currmap->max_matches * 2 + 1;
740 currmap->match = xrealloc(currmap->match, sizeof(currmap->match) * currmap->max_matches);
743 currmap->match[currmap->n_matches++] = bb_xstrdup(firstword);
745 currmap->max_mappings = 0;
746 currmap->n_mappings = 0;
747 currmap->mapping = NULL;
748 currmap->script = NULL;
750 struct mapping_defn_t **where = &defn->mappings;
751 while (*where != NULL) {
752 where = &(*where)->next;
755 currmap->next = NULL;
757 debug_noise("Added mapping\n");
759 currently_processing = MAPPING;
760 } else if (strcmp(firstword, "iface") == 0) {
763 char *address_family_name;
765 struct address_family_t *addr_fams[] = {
766 #ifdef CONFIG_FEATURE_IFUPDOWN_IPV4
769 #ifdef CONFIG_FEATURE_IFUPDOWN_IPV6
772 #ifdef CONFIG_FEATURE_IFUPDOWN_IPX
778 currif = xmalloc(sizeof(struct interface_defn_t));
779 iface_name = next_word(&buf_ptr);
780 address_family_name = next_word(&buf_ptr);
781 method_name = next_word(&buf_ptr);
783 if (buf_ptr == NULL) {
784 bb_error_msg("too few parameters for line \"%s\"", buf);
788 /* ship any trailing whitespace */
789 while (isspace(*buf_ptr)) {
793 if (buf_ptr[0] != '\0') {
794 bb_error_msg("too many parameters \"%s\"", buf);
798 currif->iface = bb_xstrdup(iface_name);
800 currif->address_family = get_address_family(addr_fams, address_family_name);
801 if (!currif->address_family) {
802 bb_error_msg("unknown address type \"%s\"", buf);
806 currif->method = get_method(currif->address_family, method_name);
807 if (!currif->method) {
808 bb_error_msg("unknown method \"%s\"", buf);
812 currif->automatic = 1;
813 currif->max_options = 0;
814 currif->n_options = 0;
815 currif->option = NULL;
818 struct interface_defn_t *tmp;
820 iface_list = defn->ifaces;
822 tmp = (struct interface_defn_t *) iface_list->data;
823 if (duplicate_if(tmp, currif)) {
824 bb_error_msg("duplicate interface \"%s\"", tmp->iface);
827 iface_list = iface_list->link;
830 defn->ifaces = llist_add_to_end(defn->ifaces, (char*)currif);
832 debug_noise("iface %s %s %s\n", currif->iface, address_family_name, method_name);
834 currently_processing = IFACE;
835 } else if (strcmp(firstword, "auto") == 0) {
836 while ((firstword = next_word(&buf_ptr)) != NULL) {
838 /* Check the interface isnt already listed */
839 if (find_list_string(defn->autointerfaces, firstword)) {
840 bb_perror_msg_and_die("interface declared auto twice \"%s\"", buf);
843 /* Add the interface to the list */
844 defn->autointerfaces = llist_add_to_end(defn->autointerfaces, strdup(firstword));
845 debug_noise("\nauto %s\n", firstword);
847 currently_processing = NONE;
849 switch (currently_processing) {
854 if (bb_strlen(buf_ptr) == 0) {
855 bb_error_msg("option with empty value \"%s\"", buf);
859 if (strcmp(firstword, "up") != 0
860 && strcmp(firstword, "down") != 0
861 && strcmp(firstword, "pre-up") != 0
862 && strcmp(firstword, "post-down") != 0) {
863 for (i = 0; i < currif->n_options; i++) {
864 if (strcmp(currif->option[i].name, firstword) == 0) {
865 bb_error_msg("duplicate option \"%s\"", buf);
871 if (currif->n_options >= currif->max_options) {
872 struct variable_t *opt;
874 currif->max_options = currif->max_options + 10;
875 opt = xrealloc(currif->option, sizeof(*opt) * currif->max_options);
876 currif->option = opt;
878 currif->option[currif->n_options].name = bb_xstrdup(firstword);
879 currif->option[currif->n_options].value = bb_xstrdup(buf_ptr);
880 if (!currif->option[currif->n_options].name) {
884 if (!currif->option[currif->n_options].value) {
888 debug_noise("\t%s=%s\n", currif->option[currif->n_options].name,
889 currif->option[currif->n_options].value);
893 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
894 if (strcmp(firstword, "script") == 0) {
895 if (currmap->script != NULL) {
896 bb_error_msg("duplicate script in mapping \"%s\"", buf);
899 currmap->script = bb_xstrdup(next_word(&buf_ptr));
901 } else if (strcmp(firstword, "map") == 0) {
902 if (currmap->max_mappings == currmap->n_mappings) {
903 currmap->max_mappings = currmap->max_mappings * 2 + 1;
904 currmap->mapping = xrealloc(currmap->mapping, sizeof(char *) * currmap->max_mappings);
906 currmap->mapping[currmap->n_mappings] = bb_xstrdup(next_word(&buf_ptr));
907 currmap->n_mappings++;
909 bb_error_msg("misplaced option \"%s\"", buf);
916 bb_error_msg("misplaced option \"%s\"", buf);
922 if (ferror(f) != 0) {
923 bb_perror_msg_and_die("%s", filename);
930 static char *setlocalenv(char *format, char *name, char *value)
936 result = xmalloc(bb_strlen(format) + bb_strlen(name) + bb_strlen(value) + 1);
938 sprintf(result, format, name, value);
940 for (here = there = result; *there != '=' && *there; there++) {
944 *there = toupper(*there);
946 if (isalnum(*there) || *there == '_') {
951 memmove(here, there, bb_strlen(there) + 1);
956 static void set_environ(struct interface_defn_t *iface, char *mode)
960 const int n_env_entries = iface->n_options + 5;
963 if (environ != NULL) {
964 for (ppch = environ; *ppch; ppch++) {
971 environ = xmalloc(sizeof(char *) * (n_env_entries + 1 /* for final NULL */ ));
972 environend = environ;
975 for (i = 0; i < iface->n_options; i++) {
976 if (strcmp(iface->option[i].name, "up") == 0
977 || strcmp(iface->option[i].name, "down") == 0
978 || strcmp(iface->option[i].name, "pre-up") == 0
979 || strcmp(iface->option[i].name, "post-down") == 0) {
982 *(environend++) = setlocalenv("IF_%s=%s", iface->option[i].name, iface->option[i].value);
986 *(environend++) = setlocalenv("%s=%s", "IFACE", iface->iface);
988 *(environend++) = setlocalenv("%s=%s", "ADDRFAM", iface->address_family->name);
990 *(environend++) = setlocalenv("%s=%s", "METHOD", iface->method->name);
992 *(environend++) = setlocalenv("%s=%s", "MODE", mode);
994 *(environend++) = setlocalenv("%s=%s", "PATH", "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin");
998 static int doit(char *str)
1000 if (verbose || no_act) {
1001 printf("%s\n", str);
1008 switch (child = fork()) {
1009 case -1: /* failure */
1012 execle("/bin/sh", "/bin/sh", "-c", str, NULL, environ);
1015 waitpid(child, &status, 0);
1016 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1023 static int execute_all(struct interface_defn_t *ifd, execfn *exec, const char *opt)
1028 for (i = 0; i < ifd->n_options; i++) {
1029 if (strcmp(ifd->option[i].name, opt) == 0) {
1030 if (!(*exec) (ifd->option[i].value)) {
1036 bb_xasprintf(&buf[0], "/etc/network/if-%s.d", opt);
1039 run_parts(buf, 2, environ);
1044 static int check(char *str) {
1048 static int iface_up(struct interface_defn_t *iface)
1051 if (!iface->method->up(iface,check)) return -1;
1052 set_environ(iface, "start");
1053 result = execute_all(iface, doit, "pre-up");
1054 result += iface->method->up(iface, doit);
1055 result += execute_all(iface, doit, "up");
1059 static int iface_down(struct interface_defn_t *iface)
1062 if (!iface->method->down(iface,check)) return -1;
1063 set_environ(iface, "stop");
1064 result = execute_all(iface, doit, "down");
1065 result += iface->method->down(iface, doit);
1066 result += execute_all(iface, doit, "post-down");
1070 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
1071 static int popen2(FILE **in, FILE **out, char *command, ...)
1074 char *argv[11] = { command };
1076 int infd[2], outfd[2];
1080 va_start(ap, command);
1081 while ((argc < 10) && (argv[argc] = va_arg(ap, char *))) {
1084 argv[argc] = NULL; /* make sure */
1087 if (pipe(infd) != 0) {
1091 if (pipe(outfd) != 0) {
1098 switch (pid = fork()) {
1099 case -1: /* failure */
1112 execvp(command, argv);
1114 default: /* parent */
1115 *in = fdopen(infd[1], "w");
1116 *out = fdopen(outfd[0], "r");
1124 static char * run_mapping(char *physical, struct mapping_defn_t * map)
1130 char *logical = bb_xstrdup(physical);
1132 /* Run the mapping script. */
1133 pid = popen2(&in, &out, map->script, physical, NULL);
1135 /* popen2() returns 0 on failure. */
1139 /* Write mappings to stdin of mapping script. */
1140 for (i = 0; i < map->n_mappings; i++) {
1141 fprintf(in, "%s\n", map->mapping[i]);
1144 waitpid(pid, &status, 0);
1146 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1147 /* If the mapping script exited successfully, try to
1148 * grab a line of output and use that as the name of the
1149 * logical interface. */
1150 char *new_logical = (char *)xmalloc(MAX_INTERFACE_LENGTH);
1152 if (fgets(new_logical, MAX_INTERFACE_LENGTH, out)) {
1153 /* If we are able to read a line of output from the script,
1154 * remove any trailing whitespace and use this value
1155 * as the name of the logical interface. */
1156 char *pch = new_logical + bb_strlen(new_logical) - 1;
1158 while (pch >= new_logical && isspace(*pch))
1162 logical = new_logical;
1164 /* If we are UNABLE to read a line of output, discard are
1165 * freshly allocated memory. */
1174 #endif /* CONFIG_FEATURE_IFUPDOWN_MAPPING */
1176 static llist_t *find_iface_state(llist_t *state_list, const char *iface)
1178 unsigned short iface_len = bb_strlen(iface);
1179 llist_t *search = state_list;
1182 if ((strncmp(search->data, iface, iface_len) == 0) &&
1183 (search->data[iface_len] == '=')) {
1186 search = search->link;
1191 extern int ifupdown_main(int argc, char **argv)
1193 int (*cmds) (struct interface_defn_t *) = NULL;
1194 struct interfaces_file_t *defn;
1195 FILE *state_fp = NULL;
1196 llist_t *state_list = NULL;
1197 llist_t *target_list = NULL;
1198 char *interfaces = "/etc/network/interfaces";
1199 const char *statefile = "/var/run/ifstate";
1201 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
1202 int run_mappings = 1;
1208 if (bb_applet_name[2] == 'u') {
1212 /* ifdown command */
1216 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
1217 while ((i = getopt(argc, argv, "i:hvnamf")) != -1)
1219 while ((i = getopt(argc, argv, "i:hvnaf")) != -1)
1223 case 'i': /* interfaces */
1224 interfaces = bb_xstrdup(optarg);
1226 case 'v': /* verbose */
1232 case 'n': /* no-act */
1235 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
1236 case 'm': /* no-mappings */
1240 case 'f': /* force */
1249 if (argc - optind > 0) {
1259 debug_noise("reading %s file:\n", interfaces);
1260 defn = read_interfaces(interfaces);
1261 debug_noise("\ndone reading %s\n\n", interfaces);
1268 state_fp = fopen(statefile, "r");
1271 /* Create a list of interfaces to work on */
1273 if (cmds == iface_up) {
1274 target_list = defn->autointerfaces;
1279 const llist_t *list = state_list;
1281 new_item = xmalloc(sizeof(llist_t));
1282 new_item->data = strdup(list->data);
1283 new_item->link = NULL;
1286 target_list = new_item;
1288 while (list->link) {
1295 target_list = defn->autointerfaces;
1299 const llist_t *list = state_list;
1301 target_list = llist_add_to_end(target_list, strdup(list->data));
1304 target_list = defn->autointerfaces;
1308 target_list = llist_add_to_end(target_list, argv[optind]);
1312 /* Update the interfaces */
1313 while (target_list) {
1314 llist_t *iface_list;
1315 struct interface_defn_t *currif;
1321 iface = strdup(target_list->data);
1322 target_list = target_list->link;
1324 pch = strchr(iface, '=');
1327 liface = strdup(pch + 1);
1329 liface = strdup(iface);
1333 const llist_t *iface_state = find_iface_state(state_list, iface);
1335 if (cmds == iface_up) {
1338 bb_error_msg("interface %s already configured", iface);
1344 bb_error_msg("interface %s not configured", iface);
1350 #ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
1351 if ((cmds == iface_up) && run_mappings) {
1352 struct mapping_defn_t *currmap;
1354 for (currmap = defn->mappings; currmap; currmap = currmap->next) {
1356 for (i = 0; i < currmap->n_matches; i++) {
1357 if (fnmatch(currmap->match[i], liface, 0) != 0)
1360 printf("Running mapping script %s on %s\n", currmap->script, liface);
1362 liface = run_mapping(iface, currmap);
1370 iface_list = defn->ifaces;
1371 while (iface_list) {
1372 currif = (struct interface_defn_t *) iface_list->data;
1373 if (strcmp(liface, currif->iface) == 0) {
1374 char *oldiface = currif->iface;
1377 currif->iface = iface;
1379 debug_noise("\nConfiguring interface %s (%s)\n", liface, currif->address_family->name);
1381 /* Call the cmds function pointer, does either iface_up() or iface_down() */
1382 if (cmds(currif) == -1) {
1383 bb_error_msg("Don't seem to be have all the variables for %s/%s.",
1384 liface, currif->address_family->name);
1387 currif->iface = oldiface;
1389 iface_list = iface_list->link;
1395 if (!okay && !force) {
1396 bb_error_msg("Ignoring unknown interface %s", liface);
1398 llist_t *iface_state = find_iface_state(state_list, iface);
1400 if (cmds == iface_up) {
1401 char *newiface = xmalloc(bb_strlen(iface) + 1 + bb_strlen(liface) + 1);
1402 sprintf(newiface, "%s=%s", iface, liface);
1403 if (iface_state == NULL) {
1404 state_list = llist_add_to_end(state_list, newiface);
1406 free(iface_state->data);
1407 iface_state->data = newiface;
1409 } else if (cmds == iface_down) {
1410 /* Remove an interface from the linked list */
1412 /* This needs to be done better */
1413 free(iface_state->data);
1414 free(iface_state->link);
1415 if (iface_state->link) {
1416 iface_state->data = iface_state->link->data;
1417 iface_state->link = iface_state->link->link;
1419 iface_state->data = NULL;
1420 iface_state->link = NULL;
1427 /* Actually write the new state */
1432 state_fp = bb_xfopen(statefile, "a+");
1434 if (ftruncate(fileno(state_fp), 0) < 0) {
1435 bb_error_msg_and_die("failed to truncate statefile %s: %s", statefile, strerror(errno));
1440 while (state_list) {
1441 if (state_list->data) {
1442 fputs(state_list->data, state_fp);
1443 fputc('\n', state_fp);
1445 state_list = state_list->link;
1451 if (state_fp != NULL) {