blob: 68ea01a6711189f6e297b807135d6af09763d300 [file] [log] [blame]
Eric Andersen8320b422003-04-02 10:13:26 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00002/*
3 * ifupdown for busybox
Denis Vlasenko0beaff82007-09-21 13:16:32 +00004 * Copyright (c) 2002 Glenn McGrath
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (c) 2003-2004 Erik Andersen <andersen@codepoet.org>
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00006 *
7 * Based on ifupdown v 0.6.4 by Anthony Towns
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00008 * Copyright (c) 1999 Anthony Towns <aj@azure.humbug.org.au>
9 *
Glenn L McGrath398ff9d2002-12-06 11:51:46 +000010 * Changes to upstream version
Glenn L McGrath8e49caa2002-12-08 01:23:39 +000011 * Remove checks for kernel version, assume kernel version 2.2.0 or better.
Glenn L McGrath398ff9d2002-12-06 11:51:46 +000012 * Lines in the interfaces file cannot wrap.
Denis Vlasenko2a86a612007-07-19 21:49:30 +000013 * 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
15 * configuration.
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000016 *
Rob Landley1b751c82005-10-28 09:24:33 +000017 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000018 */
19
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000020#include <sys/utsname.h>
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000021#include <fnmatch.h>
22#include <getopt.h>
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000023
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
25
Glenn L McGrath8e49caa2002-12-08 01:23:39 +000026#define MAX_OPT_DEPTH 10
27#define EUNBALBRACK 10001
28#define EUNDEFVAR 10002
29#define EUNBALPER 10000
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000030
Denis Vlasenkofcfe8342006-12-18 21:02:00 +000031#if ENABLE_FEATURE_IFUPDOWN_MAPPING
Eric Andersen233b1702003-06-05 19:37:01 +000032#define MAX_INTERFACE_LENGTH 10
33#endif
Eric Andersen8320b422003-04-02 10:13:26 +000034
Denis Vlasenkofcfe8342006-12-18 21:02:00 +000035#define debug_noise(args...) /*fprintf(stderr, args)*/
Eric Andersen8320b422003-04-02 10:13:26 +000036
37/* Forward declaration */
38struct interface_defn_t;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000039
Denis Vlasenko097c3242006-11-27 16:59:15 +000040typedef int execfn(char *command);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000041
Denis Vlasenko89ef65f2007-01-29 23:43:18 +000042struct method_t {
43 const char *name;
Rob Landleye813ddb2006-02-28 03:53:14 +000044 int (*up)(struct interface_defn_t *ifd, execfn *e);
45 int (*down)(struct interface_defn_t *ifd, execfn *e);
Eric Andersen8320b422003-04-02 10:13:26 +000046};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000047
Denis Vlasenko89ef65f2007-01-29 23:43:18 +000048struct address_family_t {
49 const char *name;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000050 int n_methods;
Denis Vlasenko05341252006-09-26 20:35:30 +000051 const struct method_t *method;
Eric Andersen8320b422003-04-02 10:13:26 +000052};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000053
Denis Vlasenko89ef65f2007-01-29 23:43:18 +000054struct mapping_defn_t {
Eric Andersen8320b422003-04-02 10:13:26 +000055 struct mapping_defn_t *next;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000056
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;
Eric Andersen8320b422003-04-02 10:13:26 +000066};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000067
Denis Vlasenko89ef65f2007-01-29 23:43:18 +000068struct variable_t {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000069 char *name;
70 char *value;
Eric Andersen8320b422003-04-02 10:13:26 +000071};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000072
Denis Vlasenko89ef65f2007-01-29 23:43:18 +000073struct interface_defn_t {
Denis Vlasenko05341252006-09-26 20:35:30 +000074 const struct address_family_t *address_family;
75 const struct method_t *method;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000076
Rob Landleye813ddb2006-02-28 03:53:14 +000077 char *iface;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000078 int max_options;
79 int n_options;
Eric Andersen8320b422003-04-02 10:13:26 +000080 struct variable_t *option;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000081};
82
Denis Vlasenko89ef65f2007-01-29 23:43:18 +000083struct interfaces_file_t {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +000084 llist_t *autointerfaces;
Eric Andersen8320b422003-04-02 10:13:26 +000085 llist_t *ifaces;
86 struct mapping_defn_t *mappings;
87};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000088
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +000089#define OPTION_STR "anvf" USE_FEATURE_IFUPDOWN_MAPPING("m") "i:"
90enum {
91 OPT_do_all = 0x1,
92 OPT_no_act = 0x2,
93 OPT_verbose = 0x4,
94 OPT_force = 0x8,
95 OPT_no_mappings = 0x10,
96};
Denis Vlasenkoc12f5302006-10-06 09:49:47 +000097#define DO_ALL (option_mask32 & OPT_do_all)
98#define NO_ACT (option_mask32 & OPT_no_act)
99#define VERBOSE (option_mask32 & OPT_verbose)
100#define FORCE (option_mask32 & OPT_force)
101#define NO_MAPPINGS (option_mask32 & OPT_no_mappings)
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +0000102
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000103static char **my_environ;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000104
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000105static const char *startup_PATH;
Denis Vlasenko2f4399c2006-09-27 14:14:51 +0000106
Mike Frysingerb049c0e2006-06-20 23:03:27 +0000107#if ENABLE_FEATURE_IFUPDOWN_IPV4 || ENABLE_FEATURE_IFUPDOWN_IPV6
108
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000109static void addstr(char **bufp, const char *str, size_t str_length)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000110{
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000111 /* xasprintf trick will be smaller, but we are often
112 * called with str_length == 1 - don't want to have
113 * THAT much of malloc/freeing! */
114 char *buf = *bufp;
115 int len = (buf ? strlen(buf) : 0);
116 str_length++;
117 buf = xrealloc(buf, len + str_length);
118 /* copies at most str_length-1 chars! */
119 safe_strncpy(buf + len, str, str_length);
120 *bufp = buf;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000121}
122
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000123static int strncmpz(const char *l, const char *r, size_t llen)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000124{
125 int i = strncmp(l, r, llen);
126
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000127 if (i == 0)
Denis Vlasenko05341252006-09-26 20:35:30 +0000128 return -r[llen];
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000129 return i;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000130}
131
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000132static char *get_var(const char *id, size_t idlen, struct interface_defn_t *ifd)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000133{
134 int i;
135
136 if (strncmpz(id, "iface", idlen) == 0) {
Denis Vlasenkoff2b6d22007-11-23 03:39:45 +0000137 static char *label_buf;
138 //char *result;
139
140 free(label_buf);
141 label_buf = xstrdup(ifd->iface);
142 // Remove virtual iface suffix - why?
143 // ubuntu's ifup doesn't do this
144 //result = strchrnul(label_buf, ':');
145 //*result = '\0';
Denis Vlasenko05341252006-09-26 20:35:30 +0000146 return label_buf;
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000147 }
148 if (strncmpz(id, "label", idlen) == 0) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000149 return ifd->iface;
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000150 }
151 for (i = 0; i < ifd->n_options; i++) {
152 if (strncmpz(id, ifd->option[i].name, idlen) == 0) {
153 return ifd->option[i].value;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000154 }
155 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000156 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000157}
158
Denis Vlasenkoa4836912007-07-03 08:26:24 +0000159#if ENABLE_FEATURE_IFUPDOWN_IP
160static int count_netmask_bits(const char *dotted_quad)
161{
162// int result;
163// unsigned a, b, c, d;
164// /* Found a netmask... Check if it is dotted quad */
165// if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
166// return -1;
167// if ((a|b|c|d) >> 8)
168// return -1; /* one of numbers is >= 256 */
169// d |= (a << 24) | (b << 16) | (c << 8); /* IP */
170// d = ~d; /* 11110000 -> 00001111 */
171
172 /* Shorter version */
173 int result;
174 struct in_addr ip;
175 unsigned d;
176
177 if (inet_aton(dotted_quad, &ip) == 0)
178 return -1; /* malformed dotted IP */
179 d = ntohl(ip.s_addr); /* IP in host order */
180 d = ~d; /* 11110000 -> 00001111 */
181 if (d & (d+1)) /* check that it is in 00001111 form */
182 return -1; /* no it is not */
183 result = 32;
184 while (d) {
185 d >>= 1;
186 result--;
187 }
188 return result;
189}
190#endif
191
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000192static char *parse(const char *command, struct interface_defn_t *ifd)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000193{
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000194 size_t old_pos[MAX_OPT_DEPTH] = { 0 };
195 int okay[MAX_OPT_DEPTH] = { 1 };
196 int opt_depth = 1;
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000197 char *result = NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000198
199 while (*command) {
200 switch (*command) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000201 default:
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000202 addstr(&result, command, 1);
Denis Vlasenko05341252006-09-26 20:35:30 +0000203 command++;
204 break;
205 case '\\':
206 if (command[1]) {
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000207 addstr(&result, command + 1, 1);
Denis Vlasenko05341252006-09-26 20:35:30 +0000208 command += 2;
209 } else {
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000210 addstr(&result, command, 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000211 command++;
Denis Vlasenko05341252006-09-26 20:35:30 +0000212 }
213 break;
214 case '[':
215 if (command[1] == '[' && opt_depth < MAX_OPT_DEPTH) {
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000216 old_pos[opt_depth] = result ? strlen(result) : 0;
Denis Vlasenko05341252006-09-26 20:35:30 +0000217 okay[opt_depth] = 1;
218 opt_depth++;
219 command += 2;
220 } else {
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000221 addstr(&result, "[", 1);
Denis Vlasenko05341252006-09-26 20:35:30 +0000222 command++;
223 }
224 break;
225 case ']':
226 if (command[1] == ']' && opt_depth > 1) {
227 opt_depth--;
228 if (!okay[opt_depth]) {
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000229 result[old_pos[opt_depth]] = '\0';
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000230 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000231 command += 2;
232 } else {
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000233 addstr(&result, "]", 1);
Denis Vlasenko05341252006-09-26 20:35:30 +0000234 command++;
235 }
236 break;
237 case '%':
238 {
239 char *nextpercent;
240 char *varvalue;
241
242 command++;
243 nextpercent = strchr(command, '%');
244 if (!nextpercent) {
245 errno = EUNBALPER;
246 free(result);
247 return NULL;
Eric Andersen8320b422003-04-02 10:13:26 +0000248 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000249
250 varvalue = get_var(command, nextpercent - command, ifd);
251
252 if (varvalue) {
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000253 addstr(&result, varvalue, strlen(varvalue));
Eric Andersen8320b422003-04-02 10:13:26 +0000254 } else {
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000255#if ENABLE_FEATURE_IFUPDOWN_IP
Denis Vlasenko05341252006-09-26 20:35:30 +0000256 /* Sigh... Add a special case for 'ip' to convert from
257 * dotted quad to bit count style netmasks. */
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000258 if (strncmp(command, "bnmask", 6) == 0) {
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000259 unsigned res;
Denis Vlasenko05341252006-09-26 20:35:30 +0000260 varvalue = get_var("netmask", 7, ifd);
Denis Vlasenkoa4836912007-07-03 08:26:24 +0000261 if (varvalue) {
262 res = count_netmask_bits(varvalue);
263 if (res > 0) {
264 const char *argument = utoa(res);
265 addstr(&result, argument, strlen(argument));
266 command = nextpercent + 1;
267 break;
268 }
Eric Andersen8320b422003-04-02 10:13:26 +0000269 }
Eric Andersen8320b422003-04-02 10:13:26 +0000270 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000271#endif
272 okay[opt_depth - 1] = 0;
Eric Andersen8320b422003-04-02 10:13:26 +0000273 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000274
275 command = nextpercent + 1;
276 }
277 break;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000278 }
279 }
280
281 if (opt_depth > 1) {
282 errno = EUNBALBRACK;
283 free(result);
Denis Vlasenko05341252006-09-26 20:35:30 +0000284 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000285 }
286
287 if (!okay[0]) {
288 errno = EUNDEFVAR;
289 free(result);
Denis Vlasenko05341252006-09-26 20:35:30 +0000290 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000291 }
292
Denis Vlasenko05341252006-09-26 20:35:30 +0000293 return result;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000294}
295
Denis Vlasenko05341252006-09-26 20:35:30 +0000296/* execute() returns 1 for success and 0 for failure */
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000297static int execute(const char *command, struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000298{
299 char *out;
300 int ret;
301
302 out = parse(command, ifd);
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000303 if (!out) {
Denis Vlasenko2375d752006-12-19 23:15:46 +0000304 /* parse error? */
Denis Vlasenko05341252006-09-26 20:35:30 +0000305 return 0;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000306 }
Denis Vlasenko2375d752006-12-19 23:15:46 +0000307 /* out == "": parsed ok but not all needed variables known, skip */
308 ret = out[0] ? (*exec)(out) : 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000309
310 free(out);
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000311 if (ret != 1) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000312 return 0;
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000313 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000314 return 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000315}
Bernhard Reutner-Fischerd42ef282005-12-14 14:13:15 +0000316#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000317
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000318#if ENABLE_FEATURE_IFUPDOWN_IPV6
Eric Andersen8320b422003-04-02 10:13:26 +0000319static int loopback_up6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000320{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000321#if ENABLE_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000322 int result;
Denis Vlasenko05341252006-09-26 20:35:30 +0000323 result = execute("ip addr add ::1 dev %iface%", ifd, exec);
Eric Andersen8a931792003-07-03 10:20:29 +0000324 result += execute("ip link set %iface% up", ifd, exec);
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000325 return ((result == 2) ? 2 : 0);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000326#else
Denis Vlasenko05341252006-09-26 20:35:30 +0000327 return execute("ifconfig %iface% add ::1", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000328#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000329}
330
Eric Andersen8320b422003-04-02 10:13:26 +0000331static int loopback_down6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000332{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000333#if ENABLE_FEATURE_IFUPDOWN_IP
Denis Vlasenko05341252006-09-26 20:35:30 +0000334 return execute("ip link set %iface% down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000335#else
Denis Vlasenko05341252006-09-26 20:35:30 +0000336 return execute("ifconfig %iface% del ::1", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000337#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000338}
339
Eric Andersen8320b422003-04-02 10:13:26 +0000340static int static_up6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000341{
Eric Andersen8320b422003-04-02 10:13:26 +0000342 int result;
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000343#if ENABLE_FEATURE_IFUPDOWN_IP
344 result = execute("ip addr add %address%/%netmask% dev %iface%[[ label %label%]]", ifd, exec);
345 result += execute("ip link set[[ mtu %mtu%]][[ address %hwaddress%]] %iface% up", ifd, exec);
346 /* Was: "[[ ip ....%gateway% ]]". Removed extra spaces w/o checking */
347 result += execute("[[ip route add ::/0 via %gateway%]]", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000348#else
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000349 result = execute("ifconfig %iface%[[ media %media%]][[ hw %hwaddress%]][[ mtu %mtu%]] up", ifd, exec);
Eric Andersen8320b422003-04-02 10:13:26 +0000350 result += execute("ifconfig %iface% add %address%/%netmask%", ifd, exec);
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000351 result += execute("[[route -A inet6 add ::/0 gw %gateway%]]", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000352#endif
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000353 return ((result == 3) ? 3 : 0);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000354}
355
Eric Andersen8320b422003-04-02 10:13:26 +0000356static int static_down6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000357{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000358#if ENABLE_FEATURE_IFUPDOWN_IP
Denis Vlasenko05341252006-09-26 20:35:30 +0000359 return execute("ip link set %iface% down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000360#else
Denis Vlasenko05341252006-09-26 20:35:30 +0000361 return execute("ifconfig %iface% down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000362#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000363}
364
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000365#if ENABLE_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000366static int v4tunnel_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000367{
Eric Andersen8320b422003-04-02 10:13:26 +0000368 int result;
369 result = execute("ip tunnel add %iface% mode sit remote "
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000370 "%endpoint%[[ local %local%]][[ ttl %ttl%]]", ifd, exec);
Eric Andersen8a931792003-07-03 10:20:29 +0000371 result += execute("ip link set %iface% up", ifd, exec);
Glenn L McGrath62b031f2003-08-29 07:47:52 +0000372 result += execute("ip addr add %address%/%netmask% dev %iface%", ifd, exec);
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000373 result += execute("[[ip route add ::/0 via %gateway%]]", ifd, exec);
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000374 return ((result == 4) ? 4 : 0);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000375}
376
Eric Andersen8320b422003-04-02 10:13:26 +0000377static int v4tunnel_down(struct interface_defn_t * ifd, execfn * exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000378{
Denis Vlasenko05341252006-09-26 20:35:30 +0000379 return execute("ip tunnel del %iface%", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000380}
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000381#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000382
Denis Vlasenko05341252006-09-26 20:35:30 +0000383static const struct method_t methods6[] = {
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000384#if ENABLE_FEATURE_IFUPDOWN_IP
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000385 { "v4tunnel", v4tunnel_up, v4tunnel_down, },
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000386#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000387 { "static", static_up6, static_down6, },
388 { "loopback", loopback_up6, loopback_down6, },
389};
390
Denis Vlasenko05341252006-09-26 20:35:30 +0000391static const struct address_family_t addr_inet6 = {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000392 "inet6",
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000393 ARRAY_SIZE(methods6),
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000394 methods6
395};
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000396#endif /* FEATURE_IFUPDOWN_IPV6 */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000397
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000398#if ENABLE_FEATURE_IFUPDOWN_IPV4
Eric Andersen8320b422003-04-02 10:13:26 +0000399static int loopback_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000400{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000401#if ENABLE_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000402 int result;
Eric Andersenfdd2a0f2003-08-06 09:23:44 +0000403 result = execute("ip addr add 127.0.0.1/8 dev %iface%", ifd, exec);
Eric Andersen8a931792003-07-03 10:20:29 +0000404 result += execute("ip link set %iface% up", ifd, exec);
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000405 return ((result == 2) ? 2 : 0);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000406#else
Denis Vlasenko05341252006-09-26 20:35:30 +0000407 return execute("ifconfig %iface% 127.0.0.1 up", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000408#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000409}
410
Eric Andersen8320b422003-04-02 10:13:26 +0000411static int loopback_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000412{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000413#if ENABLE_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000414 int result;
415 result = execute("ip addr flush dev %iface%", ifd, exec);
416 result += execute("ip link set %iface% down", ifd, exec);
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000417 return ((result == 2) ? 2 : 0);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000418#else
Denis Vlasenko05341252006-09-26 20:35:30 +0000419 return execute("ifconfig %iface% 127.0.0.1 down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000420#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000421}
422
Eric Andersen8320b422003-04-02 10:13:26 +0000423static int static_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000424{
Eric Andersen8320b422003-04-02 10:13:26 +0000425 int result;
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000426#if ENABLE_FEATURE_IFUPDOWN_IP
427 result = execute("ip addr add %address%/%bnmask%[[ broadcast %broadcast%]] "
428 "dev %iface%[[ peer %pointopoint%]][[ label %label%]]", ifd, exec);
429 result += execute("ip link set[[ mtu %mtu%]][[ address %hwaddress%]] %iface% up", ifd, exec);
430 result += execute("[[ip route add default via %gateway% dev %iface%]]", ifd, exec);
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000431 return ((result == 3) ? 3 : 0);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000432#else
Denis Vlasenkoa741b772006-11-23 15:08:37 +0000433 /* ifconfig said to set iface up before it processes hw %hwaddress%,
434 * which then of course fails. Thus we run two separate ifconfig */
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000435 result = execute("ifconfig %iface%[[ hw %hwaddress%]][[ media %media%]][[ mtu %mtu%]] up",
Denis Vlasenkoa741b772006-11-23 15:08:37 +0000436 ifd, exec);
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000437 result += execute("ifconfig %iface% %address% netmask %netmask%"
438 "[[ broadcast %broadcast%]][[ pointopoint %pointopoint%]] ",
Denis Vlasenkoa741b772006-11-23 15:08:37 +0000439 ifd, exec);
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000440 result += execute("[[route add default gw %gateway% %iface%]]", ifd, exec);
Denis Vlasenkoa741b772006-11-23 15:08:37 +0000441 return ((result == 3) ? 3 : 0);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000442#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000443}
444
Eric Andersen8320b422003-04-02 10:13:26 +0000445static int static_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000446{
Eric Andersen8320b422003-04-02 10:13:26 +0000447 int result;
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000448#if ENABLE_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000449 result = execute("ip addr flush dev %iface%", ifd, exec);
450 result += execute("ip link set %iface% down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000451#else
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000452 result = execute("[[route del default gw %gateway% %iface%]]", ifd, exec);
Eric Andersen8320b422003-04-02 10:13:26 +0000453 result += execute("ifconfig %iface% down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000454#endif
Glenn L McGrath0177ce12004-07-21 23:56:31 +0000455 return ((result == 2) ? 2 : 0);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000456}
457
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000458#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000459struct dhcp_client_t
460{
461 const char *name;
462 const char *startcmd;
463 const char *stopcmd;
464};
465
466static const struct dhcp_client_t ext_dhcp_clients[] = {
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000467 { "dhcpcd",
468 "dhcpcd[[ -h %hostname%]][[ -i %vendor%]][[ -I %clientid%]][[ -l %leasetime%]] %iface%",
469 "dhcpcd -k %iface%",
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000470 },
471 { "dhclient",
472 "dhclient -pf /var/run/dhclient.%iface%.pid %iface%",
473 "kill -9 `cat /var/run/dhclient.%iface%.pid` 2>/dev/null",
474 },
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000475 { "pump",
476 "pump -i %iface%[[ -h %hostname%]][[ -l %leasehours%]]",
477 "pump -i %iface% -k",
478 },
479 { "udhcpc",
480 "udhcpc -R -n -p /var/run/udhcpc.%iface%.pid -i %iface%[[ -H %hostname%]][[ -c %clientid%]][[ -s %script%]]",
Denis Vlasenkoa4836912007-07-03 08:26:24 +0000481 "kill `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null",
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000482 },
483};
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000484#endif /* ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCPC */
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000485
Eric Andersen8320b422003-04-02 10:13:26 +0000486static int dhcp_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000487{
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000488#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
Denis Vlasenko856be772007-08-17 08:29:48 +0000489 int i;
Denis Vlasenko6cd84da2007-07-21 14:57:54 +0000490#if ENABLE_FEATURE_IFUPDOWN_IP
491 /* ip doesn't up iface when it configures it (unlike ifconfig) */
492 if (!execute("ip link set %iface% up", ifd, exec))
493 return 0;
494#endif
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000495 for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000496 if (exists_execable(ext_dhcp_clients[i].name))
497 return execute(ext_dhcp_clients[i].startcmd, ifd, exec);
498 }
499 bb_error_msg("no dhcp clients found");
Denis Vlasenko2f4399c2006-09-27 14:14:51 +0000500 return 0;
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000501#elif ENABLE_APP_UDHCPC
Denis Vlasenko6cd84da2007-07-21 14:57:54 +0000502#if ENABLE_FEATURE_IFUPDOWN_IP
503 /* ip doesn't up iface when it configures it (unlike ifconfig) */
504 if (!execute("ip link set %iface% up", ifd, exec))
505 return 0;
506#endif
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000507 return execute("udhcpc -R -n -p /var/run/udhcpc.%iface%.pid "
508 "-i %iface%[[ -H %hostname%]][[ -c %clientid%]][[ -s %script%]]",
509 ifd, exec);
510#else
511 return 0; /* no dhcp support */
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000512#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000513}
514
Eric Andersen8320b422003-04-02 10:13:26 +0000515static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000516{
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000517#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
Denis Vlasenko6cd84da2007-07-21 14:57:54 +0000518 int i;
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000519 for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000520 if (exists_execable(ext_dhcp_clients[i].name))
521 return execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
522 }
523 bb_error_msg("no dhcp clients found, using static interface shutdown");
Denis Vlasenko2f4399c2006-09-27 14:14:51 +0000524 return static_down(ifd, exec);
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000525#elif ENABLE_APP_UDHCPC
Denis Vlasenkoa4836912007-07-03 08:26:24 +0000526 return execute("kill "
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000527 "`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
528#else
Denis Vlasenkoa4836912007-07-03 08:26:24 +0000529 return 0; /* no dhcp support */
Denis Vlasenkof6f43df2006-10-11 22:16:56 +0000530#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000531}
532
Denis Vlasenko1c3577f2006-10-02 20:57:10 +0000533static int manual_up_down(struct interface_defn_t *ifd, execfn *exec)
534{
535 return 1;
536}
537
Eric Andersen8320b422003-04-02 10:13:26 +0000538static int bootp_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000539{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000540 return execute("bootpc[[ --bootfile %bootfile%]] --dev %iface%"
Denis Vlasenko1caca342007-08-02 10:14:29 +0000541 "[[ --server %server%]][[ --hwaddr %hwaddr%]]"
542 " --returniffail --serverbcast", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000543}
544
Eric Andersen8320b422003-04-02 10:13:26 +0000545static int ppp_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000546{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000547 return execute("pon[[ %provider%]]", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000548}
549
Eric Andersen8320b422003-04-02 10:13:26 +0000550static int ppp_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000551{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000552 return execute("poff[[ %provider%]]", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000553}
554
Eric Andersen8320b422003-04-02 10:13:26 +0000555static int wvdial_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000556{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000557 return execute("start-stop-daemon --start -x wvdial "
558 "-p /var/run/wvdial.%iface% -b -m --[[ %provider%]]", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000559}
560
Eric Andersen8320b422003-04-02 10:13:26 +0000561static int wvdial_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000562{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000563 return execute("start-stop-daemon --stop -x wvdial "
Denis Vlasenko05341252006-09-26 20:35:30 +0000564 "-p /var/run/wvdial.%iface% -s 2", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000565}
566
Denis Vlasenko05341252006-09-26 20:35:30 +0000567static const struct method_t methods[] = {
Denis Vlasenko1c3577f2006-10-02 20:57:10 +0000568 { "manual", manual_up_down, manual_up_down, },
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000569 { "wvdial", wvdial_up, wvdial_down, },
570 { "ppp", ppp_up, ppp_down, },
571 { "static", static_up, static_down, },
Eric Andersen373bc1e2004-07-30 14:31:01 +0000572 { "bootp", bootp_up, static_down, },
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000573 { "dhcp", dhcp_up, dhcp_down, },
574 { "loopback", loopback_up, loopback_down, },
575};
576
Denis Vlasenko05341252006-09-26 20:35:30 +0000577static const struct address_family_t addr_inet = {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000578 "inet",
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000579 ARRAY_SIZE(methods),
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000580 methods
581};
582
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000583#endif /* if ENABLE_FEATURE_IFUPDOWN_IPV4 */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000584
Glenn L McGrath85737042003-01-14 23:26:57 +0000585static char *next_word(char **buf)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000586{
Glenn L McGrath85737042003-01-14 23:26:57 +0000587 unsigned short length;
588 char *word;
589
Denis Vlasenko93ad1c22006-11-23 15:07:38 +0000590 if (!buf || !*buf || !**buf) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000591 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000592 }
593
Glenn L McGrath85737042003-01-14 23:26:57 +0000594 /* Skip over leading whitespace */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000595 word = skip_whitespace(*buf);
Eric Andersen3c8bca32003-06-20 10:02:29 +0000596
597 /* Skip over comments */
598 if (*word == '#') {
Denis Vlasenko05341252006-09-26 20:35:30 +0000599 return NULL;
Eric Andersen3c8bca32003-06-20 10:02:29 +0000600 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000601
Glenn L McGrath85737042003-01-14 23:26:57 +0000602 /* Find the length of this word */
603 length = strcspn(word, " \t\n");
604 if (length == 0) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000605 return NULL;
Glenn L McGrath85737042003-01-14 23:26:57 +0000606 }
607 *buf = word + length;
Eric Andersen28942662003-04-19 23:15:06 +0000608 /*DBU:[dave@cray.com] if we are already at EOL dont't increment beyond it */
609 if (**buf) {
610 **buf = '\0';
611 (*buf)++;
612 }
Glenn L McGrath85737042003-01-14 23:26:57 +0000613
614 return word;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000615}
616
Denis Vlasenko05341252006-09-26 20:35:30 +0000617static const struct address_family_t *get_address_family(const struct address_family_t *const af[], char *name)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000618{
619 int i;
620
Denis Vlasenko736230e2006-11-20 19:40:36 +0000621 if (!name)
622 return NULL;
623
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000624 for (i = 0; af[i]; i++) {
625 if (strcmp(af[i]->name, name) == 0) {
626 return af[i];
627 }
628 }
629 return NULL;
630}
631
Denis Vlasenko05341252006-09-26 20:35:30 +0000632static const struct method_t *get_method(const struct address_family_t *af, char *name)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000633{
634 int i;
635
Denis Vlasenko736230e2006-11-20 19:40:36 +0000636 if (!name)
637 return NULL;
Bernhard Reutner-Fischere747f622007-10-06 20:47:53 +0000638 /* TODO: use index_in_str_array() */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000639 for (i = 0; i < af->n_methods; i++) {
640 if (strcmp(af->method[i].name, name) == 0) {
641 return &af->method[i];
642 }
643 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000644 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000645}
646
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000647static const llist_t *find_list_string(const llist_t *list, const char *string)
648{
Denis Vlasenko736230e2006-11-20 19:40:36 +0000649 if (string == NULL)
650 return NULL;
651
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000652 while (list) {
653 if (strcmp(list->data, string) == 0) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000654 return list;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000655 }
656 list = list->link;
657 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000658 return NULL;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000659}
660
Glenn L McGrathd4004ee2004-09-14 17:24:59 +0000661static struct interfaces_file_t *read_interfaces(const char *filename)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000662{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000663#if ENABLE_FEATURE_IFUPDOWN_MAPPING
Eric Andersen8320b422003-04-02 10:13:26 +0000664 struct mapping_defn_t *currmap = NULL;
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000665#endif
Eric Andersen8320b422003-04-02 10:13:26 +0000666 struct interface_defn_t *currif = NULL;
667 struct interfaces_file_t *defn;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000668 FILE *f;
Glenn L McGrath85737042003-01-14 23:26:57 +0000669 char *firstword;
670 char *buf;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000671
672 enum { NONE, IFACE, MAPPING } currently_processing = NONE;
673
Rob Landleya6e131d2006-05-29 06:43:55 +0000674 defn = xzalloc(sizeof(struct interfaces_file_t));
Glenn L McGrath85737042003-01-14 23:26:57 +0000675
Rob Landleyd921b2e2006-08-03 15:41:12 +0000676 f = xfopen(filename, "r");
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000677
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000678 while ((buf = xmalloc_getline(f)) != NULL) {
Glenn L McGrath85737042003-01-14 23:26:57 +0000679 char *buf_ptr = buf;
Glenn L McGrath398ff9d2002-12-06 11:51:46 +0000680
Glenn L McGrath85737042003-01-14 23:26:57 +0000681 firstword = next_word(&buf_ptr);
682 if (firstword == NULL) {
Eric Andersen3c8bca32003-06-20 10:02:29 +0000683 free(buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000684 continue; /* blank line */
685 }
686
687 if (strcmp(firstword, "mapping") == 0) {
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000688#if ENABLE_FEATURE_IFUPDOWN_MAPPING
Rob Landleya6e131d2006-05-29 06:43:55 +0000689 currmap = xzalloc(sizeof(struct mapping_defn_t));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000690
Glenn L McGrath85737042003-01-14 23:26:57 +0000691 while ((firstword = next_word(&buf_ptr)) != NULL) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000692 if (currmap->max_matches == currmap->n_matches) {
693 currmap->max_matches = currmap->max_matches * 2 + 1;
694 currmap->match = xrealloc(currmap->match, sizeof(currmap->match) * currmap->max_matches);
695 }
696
Rob Landleyd921b2e2006-08-03 15:41:12 +0000697 currmap->match[currmap->n_matches++] = xstrdup(firstword);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000698 }
699 currmap->max_mappings = 0;
700 currmap->n_mappings = 0;
701 currmap->mapping = NULL;
702 currmap->script = NULL;
703 {
Eric Andersen8320b422003-04-02 10:13:26 +0000704 struct mapping_defn_t **where = &defn->mappings;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000705 while (*where != NULL) {
706 where = &(*where)->next;
707 }
708 *where = currmap;
709 currmap->next = NULL;
710 }
Eric Andersen8320b422003-04-02 10:13:26 +0000711 debug_noise("Added mapping\n");
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000712#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000713 currently_processing = MAPPING;
714 } else if (strcmp(firstword, "iface") == 0) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000715 static const struct address_family_t *const addr_fams[] = {
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000716#if ENABLE_FEATURE_IFUPDOWN_IPV4
Denis Vlasenko05341252006-09-26 20:35:30 +0000717 &addr_inet,
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000718#endif
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000719#if ENABLE_FEATURE_IFUPDOWN_IPV6
Denis Vlasenko05341252006-09-26 20:35:30 +0000720 &addr_inet6,
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000721#endif
Denis Vlasenko05341252006-09-26 20:35:30 +0000722 NULL
723 };
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000724
Denis Vlasenko05341252006-09-26 20:35:30 +0000725 char *iface_name;
726 char *address_family_name;
727 char *method_name;
728 llist_t *iface_list;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000729
Denis Vlasenko05341252006-09-26 20:35:30 +0000730 currif = xzalloc(sizeof(struct interface_defn_t));
731 iface_name = next_word(&buf_ptr);
732 address_family_name = next_word(&buf_ptr);
733 method_name = next_word(&buf_ptr);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000734
Denis Vlasenko05341252006-09-26 20:35:30 +0000735 if (buf_ptr == NULL) {
736 bb_error_msg("too few parameters for line \"%s\"", buf);
737 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000738 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000739
740 /* ship any trailing whitespace */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000741 buf_ptr = skip_whitespace(buf_ptr);
Denis Vlasenko05341252006-09-26 20:35:30 +0000742
743 if (buf_ptr[0] != '\0') {
744 bb_error_msg("too many parameters \"%s\"", buf);
745 return NULL;
746 }
747
748 currif->iface = xstrdup(iface_name);
749
750 currif->address_family = get_address_family(addr_fams, address_family_name);
751 if (!currif->address_family) {
752 bb_error_msg("unknown address type \"%s\"", address_family_name);
753 return NULL;
754 }
755
756 currif->method = get_method(currif->address_family, method_name);
757 if (!currif->method) {
758 bb_error_msg("unknown method \"%s\"", method_name);
759 return NULL;
760 }
761
762 for (iface_list = defn->ifaces; iface_list; iface_list = iface_list->link) {
763 struct interface_defn_t *tmp = (struct interface_defn_t *) iface_list->data;
764 if ((strcmp(tmp->iface, currif->iface) == 0) &&
765 (tmp->address_family == currif->address_family)) {
766 bb_error_msg("duplicate interface \"%s\"", tmp->iface);
767 return NULL;
768 }
769 }
770 llist_add_to_end(&(defn->ifaces), (char*)currif);
771
772 debug_noise("iface %s %s %s\n", currif->iface, address_family_name, method_name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000773 currently_processing = IFACE;
774 } else if (strcmp(firstword, "auto") == 0) {
Glenn L McGrath85737042003-01-14 23:26:57 +0000775 while ((firstword = next_word(&buf_ptr)) != NULL) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000776
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000777 /* Check the interface isnt already listed */
778 if (find_list_string(defn->autointerfaces, firstword)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000779 bb_perror_msg_and_die("interface declared auto twice \"%s\"", buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000780 }
781
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000782 /* Add the interface to the list */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000783 llist_add_to_end(&(defn->autointerfaces), xstrdup(firstword));
Eric Andersen8320b422003-04-02 10:13:26 +0000784 debug_noise("\nauto %s\n", firstword);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000785 }
786 currently_processing = NONE;
787 } else {
788 switch (currently_processing) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000789 case IFACE:
790 {
791 int i;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000792
Denis Vlasenko05341252006-09-26 20:35:30 +0000793 if (strlen(buf_ptr) == 0) {
794 bb_error_msg("option with empty value \"%s\"", buf);
795 return NULL;
796 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000797
Denis Vlasenko05341252006-09-26 20:35:30 +0000798 if (strcmp(firstword, "up") != 0
799 && strcmp(firstword, "down") != 0
800 && strcmp(firstword, "pre-up") != 0
801 && strcmp(firstword, "post-down") != 0) {
802 for (i = 0; i < currif->n_options; i++) {
803 if (strcmp(currif->option[i].name, firstword) == 0) {
804 bb_error_msg("duplicate option \"%s\"", buf);
805 return NULL;
Eric Andersen8320b422003-04-02 10:13:26 +0000806 }
807 }
808 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000809 }
810 if (currif->n_options >= currif->max_options) {
811 struct variable_t *opt;
Eric Andersen8320b422003-04-02 10:13:26 +0000812
Denis Vlasenko05341252006-09-26 20:35:30 +0000813 currif->max_options = currif->max_options + 10;
814 opt = xrealloc(currif->option, sizeof(*opt) * currif->max_options);
815 currif->option = opt;
816 }
817 currif->option[currif->n_options].name = xstrdup(firstword);
818 currif->option[currif->n_options].value = xstrdup(buf_ptr);
819 if (!currif->option[currif->n_options].name) {
820 perror(filename);
821 return NULL;
822 }
823 if (!currif->option[currif->n_options].value) {
824 perror(filename);
825 return NULL;
826 }
827 debug_noise("\t%s=%s\n", currif->option[currif->n_options].name,
828 currif->option[currif->n_options].value);
829 currif->n_options++;
830 break;
831 case MAPPING:
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000832#if ENABLE_FEATURE_IFUPDOWN_MAPPING
Denis Vlasenko05341252006-09-26 20:35:30 +0000833 if (strcmp(firstword, "script") == 0) {
834 if (currmap->script != NULL) {
835 bb_error_msg("duplicate script in mapping \"%s\"", buf);
Eric Andersen8320b422003-04-02 10:13:26 +0000836 return NULL;
Denis Vlasenko05341252006-09-26 20:35:30 +0000837 } else {
838 currmap->script = xstrdup(next_word(&buf_ptr));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000839 }
Denis Vlasenko05341252006-09-26 20:35:30 +0000840 } else if (strcmp(firstword, "map") == 0) {
841 if (currmap->max_mappings == currmap->n_mappings) {
842 currmap->max_mappings = currmap->max_mappings * 2 + 1;
843 currmap->mapping = xrealloc(currmap->mapping, sizeof(char *) * currmap->max_mappings);
844 }
845 currmap->mapping[currmap->n_mappings] = xstrdup(next_word(&buf_ptr));
846 currmap->n_mappings++;
847 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000848 bb_error_msg("misplaced option \"%s\"", buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000849 return NULL;
Denis Vlasenko05341252006-09-26 20:35:30 +0000850 }
851#endif
852 break;
853 case NONE:
854 default:
855 bb_error_msg("misplaced option \"%s\"", buf);
856 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000857 }
858 }
Glenn L McGrath85737042003-01-14 23:26:57 +0000859 free(buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000860 }
861 if (ferror(f) != 0) {
Denis Vlasenkoa4836912007-07-03 08:26:24 +0000862 /* ferror does NOT set errno! */
863 bb_error_msg_and_die("%s: I/O error", filename);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000864 }
865 fclose(f);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000866
867 return defn;
868}
869
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000870static char *setlocalenv(const char *format, const char *name, const char *value)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000871{
872 char *result;
873 char *here;
874 char *there;
875
Rob Landleyd921b2e2006-08-03 15:41:12 +0000876 result = xasprintf(format, name, value);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000877
878 for (here = there = result; *there != '=' && *there; there++) {
879 if (*there == '-')
880 *there = '_';
881 if (isalpha(*there))
882 *there = toupper(*there);
883
884 if (isalnum(*there) || *there == '_') {
885 *here = *there;
886 here++;
887 }
888 }
Rob Landleya3896512006-05-07 20:20:34 +0000889 memmove(here, there, strlen(there) + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000890
891 return result;
892}
893
Rob Landleye813ddb2006-02-28 03:53:14 +0000894static void set_environ(struct interface_defn_t *iface, const char *mode)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000895{
896 char **environend;
897 int i;
898 const int n_env_entries = iface->n_options + 5;
899 char **ppch;
900
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000901 if (my_environ != NULL) {
902 for (ppch = my_environ; *ppch; ppch++) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000903 free(*ppch);
904 *ppch = NULL;
905 }
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000906 free(my_environ);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000907 }
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000908 my_environ = xzalloc(sizeof(char *) * (n_env_entries + 1 /* for final NULL */ ));
909 environend = my_environ;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000910
911 for (i = 0; i < iface->n_options; i++) {
912 if (strcmp(iface->option[i].name, "up") == 0
Denis Vlasenkoa4836912007-07-03 08:26:24 +0000913 || strcmp(iface->option[i].name, "down") == 0
914 || strcmp(iface->option[i].name, "pre-up") == 0
915 || strcmp(iface->option[i].name, "post-down") == 0
916 ) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000917 continue;
918 }
919 *(environend++) = setlocalenv("IF_%s=%s", iface->option[i].name, iface->option[i].value);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000920 }
921
922 *(environend++) = setlocalenv("%s=%s", "IFACE", iface->iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000923 *(environend++) = setlocalenv("%s=%s", "ADDRFAM", iface->address_family->name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000924 *(environend++) = setlocalenv("%s=%s", "METHOD", iface->method->name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000925 *(environend++) = setlocalenv("%s=%s", "MODE", mode);
Denis Vlasenko2f4399c2006-09-27 14:14:51 +0000926 *(environend++) = setlocalenv("%s=%s", "PATH", startup_PATH);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000927}
928
929static int doit(char *str)
930{
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000931 if (option_mask32 & (OPT_no_act|OPT_verbose)) {
Denis Vlasenko05341252006-09-26 20:35:30 +0000932 puts(str);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000933 }
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000934 if (!(option_mask32 & OPT_no_act)) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000935 pid_t child;
936 int status;
937
938 fflush(NULL);
Denis Vlasenko2375d752006-12-19 23:15:46 +0000939 child = fork();
940 switch (child) {
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000941 case -1: /* failure */
Denis Vlasenko05341252006-09-26 20:35:30 +0000942 return 0;
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000943 case 0: /* child */
Denis Vlasenko8cd1a282006-12-19 23:01:33 +0000944 execle(DEFAULT_SHELL, DEFAULT_SHELL, "-c", str, NULL, my_environ);
Denis Vlasenko05341252006-09-26 20:35:30 +0000945 exit(127);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000946 }
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000947 safe_waitpid(child, &status, 0);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000948 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
949 return 0;
950 }
951 }
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +0000952 return 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000953}
954
Rob Landleye813ddb2006-02-28 03:53:14 +0000955static int execute_all(struct interface_defn_t *ifd, const char *opt)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000956{
957 int i;
Eric Anderseneb213bd2003-09-12 08:39:05 +0000958 char *buf;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000959 for (i = 0; i < ifd->n_options; i++) {
960 if (strcmp(ifd->option[i].name, opt) == 0) {
Rob Landleye813ddb2006-02-28 03:53:14 +0000961 if (!doit(ifd->option[i].value)) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000962 return 0;
963 }
964 }
965 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000966
Rob Landleyd921b2e2006-08-03 15:41:12 +0000967 buf = xasprintf("run-parts /etc/network/if-%s.d", opt);
Denis Vlasenko2375d752006-12-19 23:15:46 +0000968 /* heh, we don't bother free'ing it */
969 return doit(buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000970}
971
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000972static int check(char *str)
973{
Eric Andersen8320b422003-04-02 10:13:26 +0000974 return str != NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000975}
976
Eric Andersen8320b422003-04-02 10:13:26 +0000977static int iface_up(struct interface_defn_t *iface)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000978{
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000979 if (!iface->method->up(iface, check)) return -1;
Eric Andersen8320b422003-04-02 10:13:26 +0000980 set_environ(iface, "start");
Rob Landleye813ddb2006-02-28 03:53:14 +0000981 if (!execute_all(iface, "pre-up")) return 0;
Eric Andersen658f8b12003-12-19 10:46:00 +0000982 if (!iface->method->up(iface, doit)) return 0;
Rob Landleye813ddb2006-02-28 03:53:14 +0000983 if (!execute_all(iface, "up")) return 0;
Eric Andersen658f8b12003-12-19 10:46:00 +0000984 return 1;
Eric Andersen8320b422003-04-02 10:13:26 +0000985}
986
987static int iface_down(struct interface_defn_t *iface)
988{
Eric Andersen8320b422003-04-02 10:13:26 +0000989 if (!iface->method->down(iface,check)) return -1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000990 set_environ(iface, "stop");
Rob Landleye813ddb2006-02-28 03:53:14 +0000991 if (!execute_all(iface, "down")) return 0;
Eric Andersen658f8b12003-12-19 10:46:00 +0000992 if (!iface->method->down(iface, doit)) return 0;
Rob Landleye813ddb2006-02-28 03:53:14 +0000993 if (!execute_all(iface, "post-down")) return 0;
Eric Andersen658f8b12003-12-19 10:46:00 +0000994 return 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000995}
996
Denis Vlasenkofcfe8342006-12-18 21:02:00 +0000997#if ENABLE_FEATURE_IFUPDOWN_MAPPING
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000998static int popen2(FILE **in, FILE **out, char *command, ...)
999{
1000 va_list ap;
1001 char *argv[11] = { command };
1002 int argc;
1003 int infd[2], outfd[2];
1004 pid_t pid;
1005
1006 argc = 1;
1007 va_start(ap, command);
1008 while ((argc < 10) && (argv[argc] = va_arg(ap, char *))) {
1009 argc++;
1010 }
1011 argv[argc] = NULL; /* make sure */
1012 va_end(ap);
1013
1014 if (pipe(infd) != 0) {
1015 return 0;
1016 }
1017
1018 if (pipe(outfd) != 0) {
1019 close(infd[0]);
1020 close(infd[1]);
1021 return 0;
1022 }
1023
1024 fflush(NULL);
1025 switch (pid = fork()) {
Denis Vlasenko05341252006-09-26 20:35:30 +00001026 case -1: /* failure */
1027 close(infd[0]);
1028 close(infd[1]);
1029 close(outfd[0]);
1030 close(outfd[1]);
1031 return 0;
1032 case 0: /* child */
1033 dup2(infd[0], 0);
1034 dup2(outfd[1], 1);
1035 close(infd[0]);
1036 close(infd[1]);
1037 close(outfd[0]);
1038 close(outfd[1]);
Denis Vlasenko1d76f432007-02-06 01:20:12 +00001039 BB_EXECVP(command, argv);
Denis Vlasenko05341252006-09-26 20:35:30 +00001040 exit(127);
1041 default: /* parent */
1042 *in = fdopen(infd[1], "w");
1043 *out = fdopen(outfd[0], "r");
1044 close(infd[0]);
1045 close(outfd[1]);
1046 return pid;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001047 }
1048 /* unreached */
1049}
1050
Glenn L McGrath0177ce12004-07-21 23:56:31 +00001051static char *run_mapping(char *physical, struct mapping_defn_t * map)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001052{
1053 FILE *in, *out;
1054 int i, status;
1055 pid_t pid;
1056
Rob Landleyd921b2e2006-08-03 15:41:12 +00001057 char *logical = xstrdup(physical);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001058
Eric Andersen8a931792003-07-03 10:20:29 +00001059 /* Run the mapping script. */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001060 pid = popen2(&in, &out, map->script, physical, NULL);
Eric Andersen8a931792003-07-03 10:20:29 +00001061
1062 /* popen2() returns 0 on failure. */
1063 if (pid == 0)
1064 return logical;
1065
1066 /* Write mappings to stdin of mapping script. */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001067 for (i = 0; i < map->n_mappings; i++) {
1068 fprintf(in, "%s\n", map->mapping[i]);
1069 }
1070 fclose(in);
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001071 safe_waitpid(pid, &status, 0);
Eric Andersen8a931792003-07-03 10:20:29 +00001072
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001073 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
Eric Andersen8a931792003-07-03 10:20:29 +00001074 /* If the mapping script exited successfully, try to
1075 * grab a line of output and use that as the name of the
1076 * logical interface. */
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001077 char *new_logical = xmalloc(MAX_INTERFACE_LENGTH);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001078
Eric Andersen233b1702003-06-05 19:37:01 +00001079 if (fgets(new_logical, MAX_INTERFACE_LENGTH, out)) {
Eric Andersen8a931792003-07-03 10:20:29 +00001080 /* If we are able to read a line of output from the script,
1081 * remove any trailing whitespace and use this value
1082 * as the name of the logical interface. */
Rob Landleya3896512006-05-07 20:20:34 +00001083 char *pch = new_logical + strlen(new_logical) - 1;
Eric Andersen233b1702003-06-05 19:37:01 +00001084
1085 while (pch >= new_logical && isspace(*pch))
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001086 *(pch--) = '\0';
Eric Andersen8a931792003-07-03 10:20:29 +00001087
1088 free(logical);
1089 logical = new_logical;
1090 } else {
Rob Landleya6e131d2006-05-29 06:43:55 +00001091 /* If we are UNABLE to read a line of output, discard our
Eric Andersen8a931792003-07-03 10:20:29 +00001092 * freshly allocated memory. */
1093 free(new_logical);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001094 }
1095 }
Eric Andersen8a931792003-07-03 10:20:29 +00001096
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001097 fclose(out);
1098
Eric Andersen8a931792003-07-03 10:20:29 +00001099 return logical;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001100}
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001101#endif /* FEATURE_IFUPDOWN_MAPPING */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001102
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001103static llist_t *find_iface_state(llist_t *state_list, const char *iface)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001104{
Rob Landleya3896512006-05-07 20:20:34 +00001105 unsigned short iface_len = strlen(iface);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001106 llist_t *search = state_list;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001107
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001108 while (search) {
Denis Vlasenkoeda43d72007-05-02 22:04:38 +00001109 if ((strncmp(search->data, iface, iface_len) == 0)
1110 && (search->data[iface_len] == '=')) {
Denis Vlasenko05341252006-09-26 20:35:30 +00001111 return search;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001112 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001113 search = search->link;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001114 }
Denis Vlasenko05341252006-09-26 20:35:30 +00001115 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001116}
1117
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001118/* read the previous state from the state file */
1119static llist_t *read_iface_state(void)
1120{
1121 llist_t *state_list = NULL;
Denis Vlasenko2a86a612007-07-19 21:49:30 +00001122 FILE *state_fp = fopen(CONFIG_IFUPDOWN_IFSTATE_PATH, "r");
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001123
1124 if (state_fp) {
1125 char *start, *end_ptr;
1126 while ((start = xmalloc_fgets(state_fp)) != NULL) {
1127 /* We should only need to check for a single character */
1128 end_ptr = start + strcspn(start, " \t\n");
1129 *end_ptr = '\0';
1130 llist_add_to(&state_list, start);
1131 }
1132 fclose(state_fp);
1133 }
1134 return state_list;
1135}
1136
1137
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001138int ifupdown_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +00001139int ifupdown_main(int argc, char **argv)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001140{
Denis Vlasenko05341252006-09-26 20:35:30 +00001141 int (*cmds)(struct interface_defn_t *) = NULL;
Eric Andersen8320b422003-04-02 10:13:26 +00001142 struct interfaces_file_t *defn;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001143 llist_t *target_list = NULL;
Glenn L McGrathd4004ee2004-09-14 17:24:59 +00001144 const char *interfaces = "/etc/network/interfaces";
Bernhard Reutner-Fischer16deb862007-03-19 19:54:56 +00001145 bool any_failures = 0;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001146
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001147 cmds = iface_down;
Denis Vlasenko8f8f2682006-10-03 21:00:43 +00001148 if (applet_name[2] == 'u') {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001149 /* ifup command */
1150 cmds = iface_up;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001151 }
1152
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001153 getopt32(argv, OPTION_STR, &interfaces);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001154 if (argc - optind > 0) {
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001155 if (DO_ALL) bb_show_usage();
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001156 } else {
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001157 if (!DO_ALL) bb_show_usage();
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001158 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001159
Eric Andersen8320b422003-04-02 10:13:26 +00001160 debug_noise("reading %s file:\n", interfaces);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001161 defn = read_interfaces(interfaces);
Eric Andersen8320b422003-04-02 10:13:26 +00001162 debug_noise("\ndone reading %s\n\n", interfaces);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001163
Eric Andersen3c8bca32003-06-20 10:02:29 +00001164 if (!defn) {
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001165 return EXIT_FAILURE;
Eric Andersen3c8bca32003-06-20 10:02:29 +00001166 }
1167
Denis Vlasenko2f4399c2006-09-27 14:14:51 +00001168 startup_PATH = getenv("PATH");
1169 if (!startup_PATH) startup_PATH = "";
1170
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001171 /* Create a list of interfaces to work on */
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001172 if (DO_ALL) {
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001173 target_list = defn->autointerfaces;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001174 } else {
Rob Landley8bb50782006-05-26 23:44:51 +00001175 llist_add_to_end(&target_list, argv[optind]);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001176 }
1177
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001178 /* Update the interfaces */
1179 while (target_list) {
Eric Andersen8320b422003-04-02 10:13:26 +00001180 llist_t *iface_list;
1181 struct interface_defn_t *currif;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001182 char *iface;
1183 char *liface;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001184 char *pch;
Bernhard Reutner-Fischer16deb862007-03-19 19:54:56 +00001185 bool okay = 0;
1186 unsigned cmds_ret;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001187
Rob Landleyd921b2e2006-08-03 15:41:12 +00001188 iface = xstrdup(target_list->data);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001189 target_list = target_list->link;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001190
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001191 pch = strchr(iface, '=');
1192 if (pch) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001193 *pch = '\0';
Rob Landleyd921b2e2006-08-03 15:41:12 +00001194 liface = xstrdup(pch + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001195 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +00001196 liface = xstrdup(iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001197 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001198
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001199 if (!FORCE) {
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001200 llist_t *state_list = read_iface_state();
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001201 const llist_t *iface_state = find_iface_state(state_list, iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001202
1203 if (cmds == iface_up) {
1204 /* ifup */
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001205 if (iface_state) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001206 bb_error_msg("interface %s already configured", iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001207 continue;
1208 }
1209 } else {
1210 /* ifdown */
Denis Vlasenkoc115fdb2007-03-06 22:53:10 +00001211 if (!iface_state) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001212 bb_error_msg("interface %s not configured", iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001213 continue;
1214 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001215 }
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001216 llist_free(state_list, free);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001217 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001218
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001219#if ENABLE_FEATURE_IFUPDOWN_MAPPING
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001220 if ((cmds == iface_up) && !NO_MAPPINGS) {
Eric Andersen8320b422003-04-02 10:13:26 +00001221 struct mapping_defn_t *currmap;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001222
1223 for (currmap = defn->mappings; currmap; currmap = currmap->next) {
Denis Vlasenko4e33e072006-10-16 18:24:57 +00001224 int i;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001225 for (i = 0; i < currmap->n_matches; i++) {
1226 if (fnmatch(currmap->match[i], liface, 0) != 0)
1227 continue;
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001228 if (VERBOSE) {
Eric Andersen8320b422003-04-02 10:13:26 +00001229 printf("Running mapping script %s on %s\n", currmap->script, liface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001230 }
Eric Andersen8a931792003-07-03 10:20:29 +00001231 liface = run_mapping(iface, currmap);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001232 break;
1233 }
1234 }
1235 }
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001236#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001237
Eric Andersen8320b422003-04-02 10:13:26 +00001238 iface_list = defn->ifaces;
1239 while (iface_list) {
1240 currif = (struct interface_defn_t *) iface_list->data;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001241 if (strcmp(liface, currif->iface) == 0) {
1242 char *oldiface = currif->iface;
1243
1244 okay = 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001245 currif->iface = iface;
1246
Denis Vlasenko8cd1a282006-12-19 23:01:33 +00001247 debug_noise("\nConfiguring interface %s (%s)\n", liface, currif->address_family->name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001248
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001249 /* Call the cmds function pointer, does either iface_up() or iface_down() */
Glenn L McGrath0177ce12004-07-21 23:56:31 +00001250 cmds_ret = cmds(currif);
1251 if (cmds_ret == -1) {
Denis Vlasenko05341252006-09-26 20:35:30 +00001252 bb_error_msg("don't seem to have all the variables for %s/%s",
Eric Andersen8320b422003-04-02 10:13:26 +00001253 liface, currif->address_family->name);
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001254 any_failures = 1;
Glenn L McGrath0177ce12004-07-21 23:56:31 +00001255 } else if (cmds_ret == 0) {
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001256 any_failures = 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001257 }
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001258
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001259 currif->iface = oldiface;
1260 }
Eric Andersen8320b422003-04-02 10:13:26 +00001261 iface_list = iface_list->link;
1262 }
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001263 if (VERBOSE) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00001264 bb_putchar('\n');
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001265 }
1266
Denis Vlasenko7f1f5b02006-09-23 12:49:01 +00001267 if (!okay && !FORCE) {
Denis Vlasenko05341252006-09-26 20:35:30 +00001268 bb_error_msg("ignoring unknown interface %s", liface);
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001269 any_failures = 1;
Denis Vlasenkof92df582007-05-02 22:22:23 +00001270 } else if (!NO_ACT) {
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001271 /* update the state file */
Denis Vlasenkof92df582007-05-02 22:22:23 +00001272 FILE *state_fp;
1273 llist_t *state;
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001274 llist_t *state_list = read_iface_state();
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001275 llist_t *iface_state = find_iface_state(state_list, iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001276
1277 if (cmds == iface_up) {
Bernhard Reutner-Fischer16deb862007-03-19 19:54:56 +00001278 char * const newiface = xasprintf("%s=%s", iface, liface);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001279 if (iface_state == NULL) {
Rob Landley8bb50782006-05-26 23:44:51 +00001280 llist_add_to_end(&state_list, newiface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001281 } else {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001282 free(iface_state->data);
1283 iface_state->data = newiface;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001284 }
Rob Landleye813ddb2006-02-28 03:53:14 +00001285 } else {
Denis Vlasenkoc115fdb2007-03-06 22:53:10 +00001286 /* Remove an interface from state_list */
1287 llist_unlink(&state_list, iface_state);
Rob Landleya6e131d2006-05-29 06:43:55 +00001288 free(llist_pop(&iface_state));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001289 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001290
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001291 /* Actually write the new state */
Denis Vlasenko2a86a612007-07-19 21:49:30 +00001292 state_fp = xfopen(CONFIG_IFUPDOWN_IFSTATE_PATH, "w");
Denis Vlasenkof92df582007-05-02 22:22:23 +00001293 state = state_list;
1294 while (state) {
1295 if (state->data) {
1296 fprintf(state_fp, "%s\n", state->data);
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001297 }
Denis Vlasenkof92df582007-05-02 22:22:23 +00001298 state = state->link;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001299 }
Denis Vlasenkof92df582007-05-02 22:22:23 +00001300 fclose(state_fp);
Denis Vlasenkobd100b72007-05-02 21:38:44 +00001301 llist_free(state_list, free);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001302 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001303 }
1304
Denis Vlasenkofcfe8342006-12-18 21:02:00 +00001305 return any_failures;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001306}