1 /* vi: set sw=4 ts=4: */
3 * ifup/ifdown for busybox
4 * Copyright (c) 2002 Glenn McGrath
5 * Copyright (c) 2003-2004 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
14 * (defined via CONFIG_IFUPDOWN_IFSTATE_PATH) and can be overridden by build
17 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
20 //config: bool "ifup (17 kb)"
23 //config: Activate the specified interfaces. This applet makes use
24 //config: of either "ifconfig" and "route" or the "ip" command to actually
25 //config: configure network interfaces. Therefore, you will probably also want
26 //config: to enable either IFCONFIG and ROUTE, or enable
27 //config: FEATURE_IFUPDOWN_IP and the various IP options. Of
28 //config: course you could use non-busybox versions of these programs, so
29 //config: against my better judgement (since this will surely result in plenty
30 //config: of support questions on the mailing list), I do not force you to
31 //config: enable these additional options. It is up to you to supply either
32 //config: "ifconfig", "route" and "run-parts" or the "ip" command, either
33 //config: via busybox or via standalone utilities.
35 //config:config IFDOWN
36 //config: bool "ifdown (15 kb)"
39 //config: Deactivate the specified interfaces.
41 //config:config IFUPDOWN_IFSTATE_PATH
42 //config: string "Absolute path to ifstate file"
43 //config: default "/var/run/ifstate"
44 //config: depends on IFUP || IFDOWN
46 //config: ifupdown keeps state information in a file called ifstate.
47 //config: Typically it is located in /var/run/ifstate, however
48 //config: some distributions tend to put it in other places
49 //config: (debian, for example, uses /etc/network/run/ifstate).
50 //config: This config option defines location of ifstate.
52 //config:config FEATURE_IFUPDOWN_IP
53 //config: bool "Use ip tool (else ifconfig/route is used)"
55 //config: depends on IFUP || IFDOWN
57 //config: Use the iproute "ip" command to implement "ifup" and "ifdown", rather
58 //config: than the default of using the older "ifconfig" and "route" utilities.
60 //config: If Y: you must install either the full-blown iproute2 package
61 //config: or enable "ip" applet in busybox, or the "ifup" and "ifdown" applets
62 //config: will not work.
64 //config: If N: you must install either the full-blown ifconfig and route
65 //config: utilities, or enable these applets in busybox.
67 //config:config FEATURE_IFUPDOWN_IPV4
68 //config: bool "Support IPv4"
70 //config: depends on IFUP || IFDOWN
72 //config: If you want ifup/ifdown to talk IPv4, leave this on.
74 //config:config FEATURE_IFUPDOWN_IPV6
75 //config: bool "Support IPv6"
77 //config: depends on (IFUP || IFDOWN) && FEATURE_IPV6
79 //config: If you need support for IPv6, turn this option on.
82 ////////:config FEATURE_IFUPDOWN_IPX
83 ////////: bool "Support IPX"
85 ////////: depends on IFUP || IFDOWN
87 ////////: If this option is selected you can use busybox to work with IPX
90 //config:config FEATURE_IFUPDOWN_MAPPING
91 //config: bool "Enable mapping support"
93 //config: depends on IFUP || IFDOWN
95 //config: This enables support for the "mapping" stanza, unless you have
96 //config: a weird network setup you don't need it.
98 //config:config FEATURE_IFUPDOWN_EXTERNAL_DHCP
99 //config: bool "Support external DHCP clients"
101 //config: depends on IFUP || IFDOWN
103 //config: This enables support for the external dhcp clients. Clients are
104 //config: tried in the following order: dhcpcd, dhclient, pump and udhcpc.
105 //config: Otherwise, if udhcpc applet is enabled, it is used.
106 //config: Otherwise, ifup/ifdown will have no support for DHCP.
108 // APPLET_ODDNAME:name main location suid_type help
109 //applet:IF_IFUP( APPLET_ODDNAME(ifup, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifup))
110 //applet:IF_IFDOWN(APPLET_ODDNAME(ifdown, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifdown))
112 //kbuild:lib-$(CONFIG_IFUP) += ifupdown.o
113 //kbuild:lib-$(CONFIG_IFDOWN) += ifupdown.o
115 //usage:#define ifup_trivial_usage
116 //usage: "[-an"IF_FEATURE_IFUPDOWN_MAPPING("m")"vf] [-i FILE] IFACE..."
117 //usage:#define ifup_full_usage "\n\n"
118 //usage: " -a Configure all interfaces"
119 //usage: "\n -i FILE Use FILE instead of /etc/network/interfaces"
120 //usage: "\n -n Print out what would happen, but don't do it"
121 //usage: IF_FEATURE_IFUPDOWN_MAPPING(
122 //usage: "\n (note: doesn't disable mappings)"
123 //usage: "\n -m Don't run any mappings"
125 //usage: "\n -v Print out what would happen before doing it"
126 //usage: "\n -f Force configuration"
128 //usage:#define ifdown_trivial_usage
129 //usage: "[-an"IF_FEATURE_IFUPDOWN_MAPPING("m")"vf] [-i FILE] IFACE..."
130 //usage:#define ifdown_full_usage "\n\n"
131 //usage: " -a Deconfigure all interfaces"
132 //usage: "\n -i FILE Use FILE for interface definitions"
133 //usage: "\n -n Print out what would happen, but don't do it"
134 //usage: IF_FEATURE_IFUPDOWN_MAPPING(
135 //usage: "\n (note: doesn't disable mappings)"
136 //usage: "\n -m Don't run any mappings"
138 //usage: "\n -v Print out what would happen before doing it"
139 //usage: "\n -f Force deconfiguration"
142 #include "common_bufsiz.h"
143 /* After libbb.h, since it needs sys/types.h on some systems */
144 #include <sys/utsname.h>
147 #define MAX_OPT_DEPTH 10
149 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
150 #define MAX_INTERFACE_LENGTH 10
153 #define UDHCPC_CMD_OPTIONS CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS
154 #define IFSTATE_FILE_PATH CONFIG_IFUPDOWN_IFSTATE_PATH
156 #define debug_noise(args...) /*fprintf(stderr, args)*/
158 /* Forward declaration */
159 struct interface_defn_t;
161 typedef int execfn(char *command);
165 int (*up)(struct interface_defn_t *ifd, execfn *e) FAST_FUNC;
166 int (*down)(struct interface_defn_t *ifd, execfn *e) FAST_FUNC;
169 struct address_family_t {
172 const struct method_t *method;
175 struct mapping_defn_t {
176 struct mapping_defn_t *next;
193 struct interface_defn_t {
194 const struct address_family_t *address_family;
195 const struct method_t *method;
199 struct variable_t *option;
202 struct interfaces_file_t {
203 llist_t *autointerfaces;
205 struct mapping_defn_t *mappings;
209 #define OPTION_STR "anvf" IF_FEATURE_IFUPDOWN_MAPPING("m") "i:"
215 OPT_no_mappings = 0x10,
217 #define DO_ALL (option_mask32 & OPT_do_all)
218 #define NO_ACT (option_mask32 & OPT_no_act)
219 #define VERBOSE (option_mask32 & OPT_verbose)
220 #define FORCE (option_mask32 & OPT_force)
221 #define NO_MAPPINGS (option_mask32 & OPT_no_mappings)
226 const char *startup_PATH;
229 #define G (*(struct globals*)bb_common_bufsiz1)
230 #define INIT_G() do { setup_common_bufsiz(); } while (0)
233 static const char keywords_up_down[] ALIGN1 =
241 #if ENABLE_FEATURE_IFUPDOWN_IPV4 || ENABLE_FEATURE_IFUPDOWN_IPV6
243 static void addstr(char **bufp, const char *str, size_t str_length)
245 /* xasprintf trick will be smaller, but we are often
246 * called with str_length == 1 - don't want to have
247 * THAT much of malloc/freeing! */
249 int len = (buf ? strlen(buf) : 0);
251 buf = xrealloc(buf, len + str_length);
252 /* copies at most str_length-1 chars! */
253 safe_strncpy(buf + len, str, str_length);
257 static int strncmpz(const char *l, const char *r, size_t llen)
259 int i = strncmp(l, r, llen);
262 return - (unsigned char)r[llen];
266 static char *get_var(const char *id, size_t idlen, struct interface_defn_t *ifd)
270 if (strncmpz(id, "iface", idlen) == 0) {
271 // ubuntu's ifup doesn't do this:
272 //static char *label_buf;
275 //label_buf = xstrdup(ifd->iface);
276 // Remove virtual iface suffix
277 //result = strchrnul(label_buf, ':');
283 if (strncmpz(id, "label", idlen) == 0) {
286 for (i = 0; i < ifd->n_options; i++) {
287 if (strncmpz(id, ifd->option[i].name, idlen) == 0) {
288 return ifd->option[i].value;
294 # if ENABLE_FEATURE_IFUPDOWN_IP
295 static int count_netmask_bits(const char *dotted_quad)
298 // unsigned a, b, c, d;
299 // /* Found a netmask... Check if it is dotted quad */
300 // if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
302 // if ((a|b|c|d) >> 8)
303 // return -1; /* one of numbers is >= 256 */
304 // d |= (a << 24) | (b << 16) | (c << 8); /* IP */
305 // d = ~d; /* 11110000 -> 00001111 */
307 /* Shorter version */
312 if (inet_aton(dotted_quad, &ip) == 0)
313 return -1; /* malformed dotted IP */
314 d = ntohl(ip.s_addr); /* IP in host order */
315 d = ~d; /* 11110000 -> 00001111 */
316 if (d & (d+1)) /* check that it is in 00001111 form */
317 return -1; /* no it is not */
327 static char *parse(const char *command, struct interface_defn_t *ifd)
329 size_t old_pos[MAX_OPT_DEPTH] = { 0 };
330 smallint okay[MAX_OPT_DEPTH] = { 1 };
337 addstr(&result, command, 1);
343 addstr(&result, command, 1);
347 if (command[1] == '[' && opt_depth < MAX_OPT_DEPTH) {
348 old_pos[opt_depth] = result ? strlen(result) : 0;
353 addstr(&result, command, 1);
358 if (command[1] == ']' && opt_depth > 1) {
360 if (!okay[opt_depth]) {
361 result[old_pos[opt_depth]] = '\0';
365 addstr(&result, command, 1);
375 nextpercent = strchr(command, '%');
377 /* Unterminated %var% */
382 varvalue = get_var(command, nextpercent - command, ifd);
385 # if ENABLE_FEATURE_IFUPDOWN_IP
386 /* "hwaddress <class> <address>":
387 * unlike ifconfig, ip doesnt want <class>
388 * (usually "ether" keyword). Skip it. */
389 if (is_prefixed_with(command, "hwaddress")) {
390 varvalue = skip_whitespace(skip_non_whitespace(varvalue));
393 addstr(&result, varvalue, strlen(varvalue));
395 # if ENABLE_FEATURE_IFUPDOWN_IP
396 /* Sigh... Add a special case for 'ip' to convert from
397 * dotted quad to bit count style netmasks. */
398 if (is_prefixed_with(command, "bnmask")) {
400 varvalue = get_var("netmask", 7, ifd);
402 res = count_netmask_bits(varvalue);
404 const char *argument = utoa(res);
405 addstr(&result, argument, strlen(argument));
406 command = nextpercent + 1;
412 okay[opt_depth - 1] = 0;
415 command = nextpercent + 1;
422 /* Unbalanced bracket */
428 /* Undefined variable and we aren't in a bracket */
436 /* execute() returns 1 for success and 0 for failure */
437 static int execute(const char *command, struct interface_defn_t *ifd, execfn *exec)
442 out = parse(command, ifd);
447 /* out == "": parsed ok but not all needed variables known, skip */
448 ret = out[0] ? (*exec)(out) : 1;
457 #endif /* FEATURE_IFUPDOWN_IPV4 || FEATURE_IFUPDOWN_IPV6 */
460 #if ENABLE_FEATURE_IFUPDOWN_IPV6
462 static int FAST_FUNC loopback_up6(struct interface_defn_t *ifd, execfn *exec)
464 # if ENABLE_FEATURE_IFUPDOWN_IP
466 result = execute("ip addr add ::1 dev %iface%", ifd, exec);
467 result += execute("ip link set %iface% up", ifd, exec);
468 return ((result == 2) ? 2 : 0);
470 return execute("ifconfig %iface% add ::1", ifd, exec);
474 static int FAST_FUNC loopback_down6(struct interface_defn_t *ifd, execfn *exec)
476 # if ENABLE_FEATURE_IFUPDOWN_IP
477 return execute("ip link set %iface% down", ifd, exec);
479 return execute("ifconfig %iface% del ::1", ifd, exec);
483 static int FAST_FUNC manual_up_down6(struct interface_defn_t *ifd UNUSED_PARAM, execfn *exec UNUSED_PARAM)
488 static int FAST_FUNC static_up6(struct interface_defn_t *ifd, execfn *exec)
491 # if ENABLE_FEATURE_IFUPDOWN_IP
492 result = execute("ip addr add %address%/%netmask% dev %iface%[[ label %label%]]", ifd, exec);
493 result += execute("ip link set[[ mtu %mtu%]][[ addr %hwaddress%]] %iface% up", ifd, exec);
494 /* Reportedly, IPv6 needs "dev %iface%", but IPv4 does not: */
495 result += execute("[[ip route add ::/0 via %gateway% dev %iface%]][[ metric %metric%]]", ifd, exec);
497 result = execute("ifconfig %iface%[[ media %media%]][[ hw %hwaddress%]][[ mtu %mtu%]] up", ifd, exec);
498 result += execute("ifconfig %iface% add %address%/%netmask%", ifd, exec);
499 result += execute("[[route -A inet6 add ::/0 gw %gateway%[[ metric %metric%]]]]", ifd, exec);
501 return ((result == 3) ? 3 : 0);
504 static int FAST_FUNC static_down6(struct interface_defn_t *ifd, execfn *exec)
506 # if ENABLE_FEATURE_IFUPDOWN_IP
507 return execute("ip link set %iface% down", ifd, exec);
509 return execute("ifconfig %iface% down", ifd, exec);
513 # if ENABLE_FEATURE_IFUPDOWN_IP
514 static int FAST_FUNC v4tunnel_up(struct interface_defn_t *ifd, execfn *exec)
517 result = execute("ip tunnel add %iface% mode sit remote "
518 "%endpoint%[[ local %local%]][[ ttl %ttl%]]", ifd, exec);
519 result += execute("ip link set %iface% up", ifd, exec);
520 result += execute("ip addr add %address%/%netmask% dev %iface%", ifd, exec);
521 /* Reportedly, IPv6 needs "dev %iface%", but IPv4 does not: */
522 result += execute("[[ip route add ::/0 via %gateway% dev %iface%]]", ifd, exec);
523 return ((result == 4) ? 4 : 0);
526 static int FAST_FUNC v4tunnel_down(struct interface_defn_t * ifd, execfn * exec)
528 return execute("ip tunnel del %iface%", ifd, exec);
532 static const struct method_t methods6[] = {
533 # if ENABLE_FEATURE_IFUPDOWN_IP
534 { "v4tunnel" , v4tunnel_up , v4tunnel_down , },
536 { "static" , static_up6 , static_down6 , },
537 { "manual" , manual_up_down6 , manual_up_down6 , },
538 { "loopback" , loopback_up6 , loopback_down6 , },
541 static const struct address_family_t addr_inet6 = {
543 ARRAY_SIZE(methods6),
547 #endif /* FEATURE_IFUPDOWN_IPV6 */
550 #if ENABLE_FEATURE_IFUPDOWN_IPV4
552 static int FAST_FUNC loopback_up(struct interface_defn_t *ifd, execfn *exec)
554 # if ENABLE_FEATURE_IFUPDOWN_IP
556 result = execute("ip addr add 127.0.0.1/8 dev %iface%", ifd, exec);
557 result += execute("ip link set %iface% up", ifd, exec);
558 return ((result == 2) ? 2 : 0);
560 return execute("ifconfig %iface% 127.0.0.1 up", ifd, exec);
564 static int FAST_FUNC loopback_down(struct interface_defn_t *ifd, execfn *exec)
566 # if ENABLE_FEATURE_IFUPDOWN_IP
568 result = execute("ip addr flush dev %iface%", ifd, exec);
569 result += execute("ip link set %iface% down", ifd, exec);
570 return ((result == 2) ? 2 : 0);
572 return execute("ifconfig %iface% 127.0.0.1 down", ifd, exec);
576 static int FAST_FUNC static_up(struct interface_defn_t *ifd, execfn *exec)
579 # if ENABLE_FEATURE_IFUPDOWN_IP
580 result = execute("ip addr add %address%/%bnmask%[[ broadcast %broadcast%]] "
581 "dev %iface%[[ peer %pointopoint%]][[ label %label%]]", ifd, exec);
582 result += execute("ip link set[[ mtu %mtu%]][[ addr %hwaddress%]] %iface% up", ifd, exec);
583 result += execute("[[ip route add default via %gateway% dev %iface%[[ metric %metric%]]]]", ifd, exec);
584 return ((result == 3) ? 3 : 0);
586 /* ifconfig said to set iface up before it processes hw %hwaddress%,
587 * which then of course fails. Thus we run two separate ifconfig */
588 result = execute("ifconfig %iface%[[ hw %hwaddress%]][[ media %media%]][[ mtu %mtu%]] up",
590 result += execute("ifconfig %iface% %address% netmask %netmask%"
591 "[[ broadcast %broadcast%]][[ pointopoint %pointopoint%]]",
593 result += execute("[[route add default gw %gateway%[[ metric %metric%]] %iface%]]", ifd, exec);
594 return ((result == 3) ? 3 : 0);
598 static int FAST_FUNC static_down(struct interface_defn_t *ifd, execfn *exec)
601 # if ENABLE_FEATURE_IFUPDOWN_IP
602 /* Optional "label LBL" is necessary if interface is an alias (eth0:0),
603 * otherwise "ip addr flush dev eth0:0" flushes all addresses on eth0.
605 result = execute("ip addr flush dev %iface%[[ label %label%]]", ifd, exec);
606 result += execute("ip link set %iface% down", ifd, exec);
608 /* result = execute("[[route del default gw %gateway% %iface%]]", ifd, exec); */
609 /* Bringing the interface down deletes the routes in itself.
610 Otherwise this fails if we reference 'gateway' when using this from dhcp_down */
612 result += execute("ifconfig %iface% down", ifd, exec);
614 return ((result == 2) ? 2 : 0);
617 # if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
618 struct dhcp_client_t {
620 const char *startcmd;
624 static const struct dhcp_client_t ext_dhcp_clients[] = {
626 "dhcpcd[[ -h %hostname%]][[ -i %vendor%]][[ -I %client%]][[ -l %leasetime%]] %iface%",
630 "dhclient -pf /var/run/dhclient.%iface%.pid %iface%",
631 "kill -9 `cat /var/run/dhclient.%iface%.pid` 2>/dev/null",
634 "pump -i %iface%[[ -h %hostname%]][[ -l %leasehours%]]",
635 "pump -i %iface% -k",
638 "udhcpc " UDHCPC_CMD_OPTIONS " -p /var/run/udhcpc.%iface%.pid -i %iface%[[ -x hostname:%hostname%]][[ -c %client%]]"
639 "[[ -s %script%]][[ %udhcpc_opts%]]",
640 "kill `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null",
643 # endif /* FEATURE_IFUPDOWN_EXTERNAL_DHCPC */
645 # if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
646 static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd, execfn *exec)
649 # if ENABLE_FEATURE_IFUPDOWN_IP
650 /* ip doesn't up iface when it configures it (unlike ifconfig) */
651 if (!execute("ip link set[[ addr %hwaddress%]] %iface% up", ifd, exec))
654 /* needed if we have hwaddress on dhcp iface */
655 if (!execute("ifconfig %iface%[[ hw %hwaddress%]] up", ifd, exec))
658 for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
659 if (executable_exists(ext_dhcp_clients[i].name))
660 return execute(ext_dhcp_clients[i].startcmd, ifd, exec);
662 bb_error_msg("no dhcp clients found");
666 static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd, execfn *exec)
668 # if ENABLE_FEATURE_IFUPDOWN_IP
669 /* ip doesn't up iface when it configures it (unlike ifconfig) */
670 if (!execute("ip link set[[ addr %hwaddress%]] %iface% up", ifd, exec))
673 /* needed if we have hwaddress on dhcp iface */
674 if (!execute("ifconfig %iface%[[ hw %hwaddress%]] up", ifd, exec))
677 return execute("udhcpc " UDHCPC_CMD_OPTIONS " -p /var/run/udhcpc.%iface%.pid "
678 "-i %iface%[[ -x hostname:%hostname%]][[ -c %client%]][[ -s %script%]][[ %udhcpc_opts%]]",
682 static int FAST_FUNC dhcp_up(struct interface_defn_t *ifd UNUSED_PARAM,
683 execfn *exec UNUSED_PARAM)
685 return 0; /* no dhcp support */
689 # if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
690 static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec)
695 for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
696 if (executable_exists(ext_dhcp_clients[i].name)) {
697 result = execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
704 bb_error_msg("warning: no dhcp clients found and stopped");
706 /* Sleep a bit, otherwise static_down tries to bring down interface too soon,
707 and it may come back up because udhcpc is still shutting down */
709 result += static_down(ifd, exec);
710 return ((result == 3) ? 3 : 0);
713 static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd, execfn *exec)
717 "test -f /var/run/udhcpc.%iface%.pid && "
718 "kill `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null",
720 /* Also bring the hardware interface down since
721 killing the dhcp client alone doesn't do it.
722 This enables consecutive ifup->ifdown->ifup */
723 /* Sleep a bit, otherwise static_down tries to bring down interface too soon,
724 and it may come back up because udhcpc is still shutting down */
726 result += static_down(ifd, exec);
727 return ((result == 3) ? 3 : 0);
730 static int FAST_FUNC dhcp_down(struct interface_defn_t *ifd UNUSED_PARAM,
731 execfn *exec UNUSED_PARAM)
733 return 0; /* no dhcp support */
737 static int FAST_FUNC manual_up_down(struct interface_defn_t *ifd UNUSED_PARAM, execfn *exec UNUSED_PARAM)
742 static int FAST_FUNC bootp_up(struct interface_defn_t *ifd, execfn *exec)
744 return execute("bootpc[[ --bootfile %bootfile%]] --dev %iface%"
745 "[[ --server %server%]][[ --hwaddr %hwaddr%]]"
746 " --returniffail --serverbcast", ifd, exec);
749 static int FAST_FUNC ppp_up(struct interface_defn_t *ifd, execfn *exec)
751 return execute("pon[[ %provider%]]", ifd, exec);
754 static int FAST_FUNC ppp_down(struct interface_defn_t *ifd, execfn *exec)
756 return execute("poff[[ %provider%]]", ifd, exec);
759 static int FAST_FUNC wvdial_up(struct interface_defn_t *ifd, execfn *exec)
761 return execute("start-stop-daemon --start -x wvdial "
762 "-p /var/run/wvdial.%iface% -b -m --[[ %provider%]]", ifd, exec);
765 static int FAST_FUNC wvdial_down(struct interface_defn_t *ifd, execfn *exec)
767 return execute("start-stop-daemon --stop -x wvdial "
768 "-p /var/run/wvdial.%iface% -s 2", ifd, exec);
771 static const struct method_t methods[] = {
772 { "manual" , manual_up_down, manual_up_down, },
773 { "wvdial" , wvdial_up , wvdial_down , },
774 { "ppp" , ppp_up , ppp_down , },
775 { "static" , static_up , static_down , },
776 { "bootp" , bootp_up , static_down , },
777 { "dhcp" , dhcp_up , dhcp_down , },
778 { "loopback", loopback_up , loopback_down , },
781 static const struct address_family_t addr_inet = {
787 #endif /* FEATURE_IFUPDOWN_IPV4 */
789 static int FAST_FUNC link_up_down(struct interface_defn_t *ifd UNUSED_PARAM, execfn *exec UNUSED_PARAM)
794 static const struct method_t link_methods[] = {
795 { "none", link_up_down, link_up_down }
798 static const struct address_family_t addr_link = {
799 "link", ARRAY_SIZE(link_methods), link_methods
802 /* Returns pointer to the next word, or NULL.
803 * In 1st case, advances *buf to the word after this one.
805 static char *next_word(char **buf)
810 /* Skip over leading whitespace */
811 word = skip_whitespace(*buf);
817 /* Find the length of this word (can't be 0) */
818 length = strcspn(word, " \t\n");
820 /* Unless we are already at NUL, store NUL and advance */
821 if (word[length] != '\0')
822 word[length++] = '\0';
824 *buf = skip_whitespace(word + length);
829 static const struct address_family_t *get_address_family(const struct address_family_t *const af[], char *name)
836 for (i = 0; af[i]; i++) {
837 if (strcmp(af[i]->name, name) == 0) {
844 static const struct method_t *get_method(const struct address_family_t *af, char *name)
850 /* TODO: use index_in_str_array() */
851 for (i = 0; i < af->n_methods; i++) {
852 if (strcmp(af->method[i].name, name) == 0) {
853 return &af->method[i];
859 static struct interfaces_file_t *read_interfaces(const char *filename, struct interfaces_file_t *defn)
861 /* Let's try to be compatible.
863 * "man 5 interfaces" says:
864 * Lines starting with "#" are ignored. Note that end-of-line
865 * comments are NOT supported, comments must be on a line of their own.
866 * A line may be extended across multiple lines by making
867 * the last character a backslash.
869 * Seen elsewhere in example config file:
870 * A first non-blank "#" character makes the rest of the line
871 * be ignored. Blank lines are ignored. Lines may be indented freely.
872 * A "\" character at the very end of the line indicates the next line
873 * should be treated as a continuation of the current one.
875 * Lines beginning with "source" are used to include stanzas from
876 * other files, so configuration can be split into many files.
877 * The word "source" is followed by the path of file to be sourced.
879 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
880 struct mapping_defn_t *currmap = NULL;
882 struct interface_defn_t *currif = NULL;
887 enum { NONE, IFACE, MAPPING } currently_processing = NONE;
890 defn = xzalloc(sizeof(*defn));
892 debug_noise("reading %s file:\n", filename);
893 f = xfopen_for_read(filename);
895 while ((buf = xmalloc_fgetline(f)) != NULL) {
897 /* Trailing "\" concatenates lines */
899 while ((p = last_char_is(buf, '\\')) != NULL) {
901 rest_of_line = xmalloc_fgetline(f);
904 p = xasprintf("%s%s", buf, rest_of_line);
911 first_word = next_word(&rest_of_line);
912 if (!first_word || *first_word == '#') {
914 continue; /* blank/comment line */
917 if (strcmp(first_word, "mapping") == 0) {
918 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
919 currmap = xzalloc(sizeof(*currmap));
921 while ((first_word = next_word(&rest_of_line)) != NULL) {
922 currmap->match = xrealloc_vector(currmap->match, 4, currmap->n_matches);
923 currmap->match[currmap->n_matches++] = xstrdup(first_word);
925 /*currmap->n_mappings = 0;*/
926 /*currmap->mapping = NULL;*/
927 /*currmap->script = NULL;*/
929 struct mapping_defn_t **where = &defn->mappings;
930 while (*where != NULL) {
931 where = &(*where)->next;
934 /*currmap->next = NULL;*/
936 debug_noise("Added mapping\n");
938 currently_processing = MAPPING;
939 } else if (strcmp(first_word, "iface") == 0) {
940 static const struct address_family_t *const addr_fams[] = {
941 #if ENABLE_FEATURE_IFUPDOWN_IPV4
944 #if ENABLE_FEATURE_IFUPDOWN_IPV6
951 char *address_family_name;
954 currif = xzalloc(sizeof(*currif));
955 iface_name = next_word(&rest_of_line);
956 address_family_name = next_word(&rest_of_line);
957 method_name = next_word(&rest_of_line);
959 if (method_name == NULL)
960 bb_error_msg_and_die("too few parameters for line \"%s\"", buf);
962 /* ship any trailing whitespace */
963 rest_of_line = skip_whitespace(rest_of_line);
965 if (rest_of_line[0] != '\0' /* && rest_of_line[0] != '#' */)
966 bb_error_msg_and_die("too many parameters \"%s\"", buf);
968 currif->iface = xstrdup(iface_name);
970 currif->address_family = get_address_family(addr_fams, address_family_name);
971 if (!currif->address_family)
972 bb_error_msg_and_die("unknown address type \"%s\"", address_family_name);
974 currif->method = get_method(currif->address_family, method_name);
976 bb_error_msg_and_die("unknown method \"%s\"", method_name);
978 // Allegedly, Debian allows a duplicate definition:
979 // iface eth0 inet static
980 // address 192.168.0.15
981 // netmask 255.255.0.0
982 // gateway 192.168.0.1
984 // iface eth0 inet static
986 // netmask 255.255.255.0
988 // This adds *two* addresses to eth0 (probably requires use of "ip", not "ifconfig"
991 for (iface_list = defn->ifaces; iface_list; iface_list = iface_list->link) {
992 struct interface_defn_t *tmp = (struct interface_defn_t *) iface_list->data;
993 if ((strcmp(tmp->iface, currif->iface) == 0)
994 && (tmp->address_family == currif->address_family)
996 bb_error_msg_and_die("duplicate interface \"%s\"", tmp->iface);
1000 llist_add_to_end(&(defn->ifaces), (char*)currif);
1002 debug_noise("iface %s %s %s\n", currif->iface, address_family_name, method_name);
1003 currently_processing = IFACE;
1004 } else if (strcmp(first_word, "auto") == 0) {
1005 while ((first_word = next_word(&rest_of_line)) != NULL) {
1007 /* Check the interface isnt already listed */
1008 if (llist_find_str(defn->autointerfaces, first_word)) {
1009 bb_perror_msg_and_die("interface declared auto twice \"%s\"", buf);
1012 /* Add the interface to the list */
1013 llist_add_to_end(&(defn->autointerfaces), xstrdup(first_word));
1014 debug_noise("\nauto %s\n", first_word);
1016 currently_processing = NONE;
1017 } else if (strcmp(first_word, "source") == 0) {
1018 read_interfaces(next_word(&rest_of_line), defn);
1020 switch (currently_processing) {
1022 if (rest_of_line[0] == '\0')
1023 bb_error_msg_and_die("option with empty value \"%s\"", buf);
1025 if (strcmp(first_word, "post-up") == 0)
1026 first_word += 5; /* "up" */
1027 else if (strcmp(first_word, "pre-down") == 0)
1028 first_word += 4; /* "down" */
1030 /* If not one of "up", "down",... words... */
1031 if (index_in_strings(keywords_up_down, first_word) < 0) {
1033 for (i = 0; i < currif->n_options; i++) {
1034 if (strcmp(currif->option[i].name, first_word) == 0)
1035 bb_error_msg_and_die("duplicate option \"%s\"", buf);
1038 debug_noise("\t%s=%s\n", first_word, rest_of_line);
1039 currif->option = xrealloc_vector(currif->option, 4, currif->n_options);
1040 currif->option[currif->n_options].name = xstrdup(first_word);
1041 currif->option[currif->n_options].value = xstrdup(rest_of_line);
1042 currif->n_options++;
1045 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
1046 if (strcmp(first_word, "script") == 0) {
1047 if (currmap->script != NULL)
1048 bb_error_msg_and_die("duplicate script in mapping \"%s\"", buf);
1049 currmap->script = xstrdup(next_word(&rest_of_line));
1050 } else if (strcmp(first_word, "map") == 0) {
1051 currmap->mapping = xrealloc_vector(currmap->mapping, 2, currmap->n_mappings);
1052 currmap->mapping[currmap->n_mappings] = xstrdup(next_word(&rest_of_line));
1053 currmap->n_mappings++;
1055 bb_error_msg_and_die("misplaced option \"%s\"", buf);
1061 bb_error_msg_and_die("misplaced option \"%s\"", buf);
1065 } /* while (fgets) */
1067 if (ferror(f) != 0) {
1068 /* ferror does NOT set errno! */
1069 bb_error_msg_and_die("%s: I/O error", filename);
1072 debug_noise("\ndone reading %s\n\n", filename);
1077 static char *setlocalenv(const char *format, const char *name, const char *value)
1084 result = xasprintf(format, name, value);
1086 for (dst = src = result; (c = *src) != '=' && c; src++) {
1089 if (c >= 'a' && c <= 'z')
1091 if (isalnum(c) || c == '_')
1094 overlapping_strcpy(dst, src);
1099 static void set_environ(struct interface_defn_t *iface, const char *mode, const char *opt)
1104 if (G.my_environ != NULL) {
1105 for (pp = G.my_environ; *pp; pp++) {
1111 /* note: last element will stay NULL: */
1112 G.my_environ = xzalloc(sizeof(char *) * (iface->n_options + 7));
1115 for (i = 0; i < iface->n_options; i++) {
1116 if (index_in_strings(keywords_up_down, iface->option[i].name) >= 0) {
1119 *pp++ = setlocalenv("IF_%s=%s", iface->option[i].name, iface->option[i].value);
1122 *pp++ = setlocalenv("%s=%s", "IFACE", iface->iface);
1123 *pp++ = setlocalenv("%s=%s", "ADDRFAM", iface->address_family->name);
1124 *pp++ = setlocalenv("%s=%s", "METHOD", iface->method->name);
1125 *pp++ = setlocalenv("%s=%s", "MODE", mode);
1126 *pp++ = setlocalenv("%s=%s", "PHASE", opt);
1128 *pp++ = setlocalenv("%s=%s", "PATH", G.startup_PATH);
1131 static int doit(char *str)
1133 if (option_mask32 & (OPT_no_act|OPT_verbose)) {
1136 if (!(option_mask32 & OPT_no_act)) {
1142 if (child < 0) /* failure */
1144 if (child == 0) { /* child */
1145 execle(G.shell, G.shell, "-c", str, (char *) NULL, G.my_environ);
1148 safe_waitpid(child, &status, 0);
1149 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1156 static int execute_all(struct interface_defn_t *ifd, const char *opt)
1160 for (i = 0; i < ifd->n_options; i++) {
1161 if (strcmp(ifd->option[i].name, opt) == 0) {
1162 if (!doit(ifd->option[i].value)) {
1168 /* Tested on Debian Squeeze: "standard" ifup runs this without
1169 * checking that directory exists. If it doesn't, run-parts
1170 * complains, and this message _is_ annoyingly visible.
1171 * Don't "fix" this (unless newer Debian does).
1173 buf = xasprintf("run-parts /etc/network/if-%s.d", opt);
1174 /* heh, we don't bother free'ing it */
1178 static int check(char *str)
1183 static int iface_up(struct interface_defn_t *iface)
1185 if (!iface->method->up(iface, check)) return -1;
1186 set_environ(iface, "start", "pre-up");
1187 if (!execute_all(iface, "pre-up")) return 0;
1188 if (!iface->method->up(iface, doit)) return 0;
1189 set_environ(iface, "start", "post-up");
1190 if (!execute_all(iface, "up")) return 0;
1194 static int iface_down(struct interface_defn_t *iface)
1196 if (!iface->method->down(iface, check)) return -1;
1197 set_environ(iface, "stop", "pre-down");
1198 if (!execute_all(iface, "down")) return 0;
1199 if (!iface->method->down(iface, doit)) return 0;
1200 set_environ(iface, "stop", "post-down");
1201 if (!execute_all(iface, "post-down")) return 0;
1205 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
1206 static int popen2(FILE **in, FILE **out, char *command, char *param)
1208 char *argv[3] = { command, param, NULL };
1209 struct fd_pair infd, outfd;
1220 /* NB: close _first_, then move fds! */
1223 xmove_fd(infd.rd, 0);
1224 xmove_fd(outfd.wr, 1);
1225 BB_EXECVP_or_die(argv);
1230 *in = xfdopen_for_write(infd.wr);
1231 *out = xfdopen_for_read(outfd.rd);
1235 static char *run_mapping(char *physical, struct mapping_defn_t *map)
1241 char *logical = xstrdup(physical);
1243 /* Run the mapping script. Never fails. */
1244 pid = popen2(&in, &out, map->script, physical);
1246 /* Write mappings to stdin of mapping script. */
1247 for (i = 0; i < map->n_mappings; i++) {
1248 fprintf(in, "%s\n", map->mapping[i]);
1251 safe_waitpid(pid, &status, 0);
1253 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1254 /* If the mapping script exited successfully, try to
1255 * grab a line of output and use that as the name of the
1256 * logical interface. */
1257 char *new_logical = xmalloc_fgetline(out);
1260 /* If we are able to read a line of output from the script,
1261 * remove any trailing whitespace and use this value
1262 * as the name of the logical interface. */
1263 char *pch = new_logical + strlen(new_logical) - 1;
1265 while (pch >= new_logical && isspace(*pch))
1269 logical = new_logical;
1277 #endif /* FEATURE_IFUPDOWN_MAPPING */
1279 static llist_t *find_iface_state(llist_t *state_list, const char *iface)
1281 llist_t *search = state_list;
1284 char *after_iface = is_prefixed_with(search->data, iface);
1286 && *after_iface == '='
1290 search = search->link;
1295 /* read the previous state from the state file */
1296 static llist_t *read_iface_state(void)
1298 llist_t *state_list = NULL;
1299 FILE *state_fp = fopen_for_read(IFSTATE_FILE_PATH);
1302 char *start, *end_ptr;
1303 while ((start = xmalloc_fgets(state_fp)) != NULL) {
1304 /* We should only need to check for a single character */
1305 end_ptr = start + strcspn(start, " \t\n");
1307 llist_add_to(&state_list, start);
1314 /* read the previous state from the state file */
1315 static FILE *open_new_state_file(void)
1320 flags = (O_WRONLY | O_CREAT | O_EXCL);
1322 fd = open(IFSTATE_FILE_PATH".new", flags, 0666);
1326 || flags == (O_WRONLY | O_CREAT | O_TRUNC)
1328 bb_perror_msg_and_die("can't open '%s'",
1329 IFSTATE_FILE_PATH".new");
1331 /* Someone else created the .new file */
1332 if (cnt > 30 * 1000) {
1333 /* Waited for 30*30/2 = 450 milliseconds, still EEXIST.
1334 * Assuming a stale file, rewriting it.
1336 flags = (O_WRONLY | O_CREAT | O_TRUNC);
1343 return xfdopen_for_write(fd);
1346 int ifupdown_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1347 int ifupdown_main(int argc UNUSED_PARAM, char **argv)
1349 int (*cmds)(struct interface_defn_t *);
1350 struct interfaces_file_t *defn;
1351 llist_t *target_list = NULL;
1352 const char *interfaces = "/etc/network/interfaces";
1353 bool any_failures = 0;
1357 G.startup_PATH = getenv("PATH");
1358 G.shell = xstrdup(get_shell_name());
1361 && (!ENABLE_IFDOWN || applet_name[2] == 'u')
1369 getopt32(argv, OPTION_STR, &interfaces);
1372 if (DO_ALL) bb_show_usage();
1374 if (!DO_ALL) bb_show_usage();
1377 defn = read_interfaces(interfaces, NULL);
1379 /* Create a list of interfaces to work on */
1381 target_list = defn->autointerfaces;
1383 llist_add_to_end(&target_list, argv[0]);
1386 /* Update the interfaces */
1387 while (target_list) {
1388 llist_t *iface_list;
1389 struct interface_defn_t *currif;
1395 bool curr_failure = 0;
1397 iface = xstrdup(target_list->data);
1398 target_list = target_list->link;
1400 pch = strchr(iface, '=');
1403 liface = xstrdup(pch + 1);
1405 liface = xstrdup(iface);
1409 llist_t *state_list = read_iface_state();
1410 const llist_t *iface_state = find_iface_state(state_list, iface);
1412 if (cmds == iface_up) {
1415 bb_error_msg("interface %s already configured", iface);
1421 bb_error_msg("interface %s not configured", iface);
1425 llist_free(state_list, free);
1428 #if ENABLE_FEATURE_IFUPDOWN_MAPPING
1429 if ((cmds == iface_up) && !NO_MAPPINGS) {
1430 struct mapping_defn_t *currmap;
1432 for (currmap = defn->mappings; currmap; currmap = currmap->next) {
1434 for (i = 0; i < currmap->n_matches; i++) {
1435 if (fnmatch(currmap->match[i], liface, 0) != 0)
1438 printf("Running mapping script %s on %s\n", currmap->script, liface);
1440 liface = run_mapping(iface, currmap);
1447 iface_list = defn->ifaces;
1448 while (iface_list) {
1449 currif = (struct interface_defn_t *) iface_list->data;
1450 if (strcmp(liface, currif->iface) == 0) {
1451 char *oldiface = currif->iface;
1454 currif->iface = iface;
1456 debug_noise("\nConfiguring interface %s (%s)\n", liface, currif->address_family->name);
1458 /* Call the cmds function pointer, does either iface_up() or iface_down() */
1459 cmds_ret = cmds(currif);
1460 if (cmds_ret == -1) {
1461 bb_error_msg("don't have all variables for %s/%s",
1462 liface, currif->address_family->name);
1463 any_failures = curr_failure = 1;
1464 } else if (cmds_ret == 0) {
1465 any_failures = curr_failure = 1;
1468 currif->iface = oldiface;
1470 iface_list = iface_list->link;
1476 if (!okay && !FORCE) {
1477 bb_error_msg("ignoring unknown interface %s", liface);
1479 } else if (!NO_ACT) {
1480 /* update the state file */
1481 FILE *new_state_fp = open_new_state_file();
1483 llist_t *state_list = read_iface_state();
1484 llist_t *iface_state = find_iface_state(state_list, iface);
1486 if (cmds == iface_up && !curr_failure) {
1487 char *newiface = xasprintf("%s=%s", iface, liface);
1489 llist_add_to_end(&state_list, newiface);
1491 free(iface_state->data);
1492 iface_state->data = newiface;
1495 /* Remove an interface from state_list */
1496 llist_unlink(&state_list, iface_state);
1497 free(llist_pop(&iface_state));
1500 /* Actually write the new state */
1504 fprintf(new_state_fp, "%s\n", state->data);
1506 state = state->link;
1508 fclose(new_state_fp);
1509 xrename(IFSTATE_FILE_PATH".new", IFSTATE_FILE_PATH);
1510 llist_free(state_list, free);
1517 return any_failures;