blob: 5d74422537b22dd3f89ec14774a3f86919c8021a [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
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00004 * Copyright (c) 2002 Glenn McGrath <bug1@iinet.net.au>
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.
Glenn L McGrath8e49caa2002-12-08 01:23:39 +000013 * To adhere to the FHS, the default state file is /var/run/ifstate.
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000014 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 */
29
30#include <sys/stat.h>
31#include <sys/utsname.h>
32#include <sys/wait.h>
33
34#include <ctype.h>
35#include <errno.h>
36#include <fcntl.h>
37#include <fnmatch.h>
38#include <getopt.h>
39#include <stdarg.h>
40#include <stdio.h>
41#include <stdlib.h>
42#include <string.h>
43#include <unistd.h>
44
Glenn L McGrath9af8a722002-11-11 07:03:02 +000045#include "libbb.h"
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000046
Glenn L McGrath8e49caa2002-12-08 01:23:39 +000047#define MAX_OPT_DEPTH 10
48#define EUNBALBRACK 10001
49#define EUNDEFVAR 10002
50#define EUNBALPER 10000
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000051
Eric Andersen233b1702003-06-05 19:37:01 +000052#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
53#define MAX_INTERFACE_LENGTH 10
54#endif
Eric Andersen8320b422003-04-02 10:13:26 +000055
56#if 0
57#define debug_noise(fmt, args...) printf(fmt, ## args)
58#else
Eric Andersenc7bda1c2004-03-15 08:29:22 +000059#define debug_noise(fmt, args...)
Eric Andersen8320b422003-04-02 10:13:26 +000060#endif
61
62/* Forward declaration */
63struct interface_defn_t;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000064
65typedef int (execfn)(char *command);
Eric Andersen8320b422003-04-02 10:13:26 +000066typedef int (command_set)(struct interface_defn_t *ifd, execfn *e);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000067
Eric Andersen8320b422003-04-02 10:13:26 +000068extern llist_t *llist_add_to_end(llist_t *list_head, char *data)
69{
70 llist_t *new_item, *tmp, *prev;
71
72 new_item = xmalloc(sizeof(llist_t));
73 new_item->data = data;
74 new_item->link = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000075
Eric Andersen8320b422003-04-02 10:13:26 +000076 prev = NULL;
77 tmp = list_head;
78 while(tmp) {
79 prev = tmp;
80 tmp = tmp->link;
81 }
82 if (prev) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000083 prev->link = new_item;
Eric Andersen8320b422003-04-02 10:13:26 +000084 } else {
85 list_head = new_item;
86 }
87
88 return(list_head);
89}
90
91struct method_t
92{
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000093 char *name;
94 command_set *up;
95 command_set *down;
Eric Andersen8320b422003-04-02 10:13:26 +000096};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000097
Eric Andersen8320b422003-04-02 10:13:26 +000098struct address_family_t
99{
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000100 char *name;
101 int n_methods;
Eric Andersen8320b422003-04-02 10:13:26 +0000102 struct method_t *method;
103};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000104
Eric Andersen8320b422003-04-02 10:13:26 +0000105struct mapping_defn_t
106{
107 struct mapping_defn_t *next;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000108
109 int max_matches;
110 int n_matches;
111 char **match;
112
113 char *script;
114
115 int max_mappings;
116 int n_mappings;
117 char **mapping;
Eric Andersen8320b422003-04-02 10:13:26 +0000118};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000119
Eric Andersen8320b422003-04-02 10:13:26 +0000120struct variable_t
121{
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000122 char *name;
123 char *value;
Eric Andersen8320b422003-04-02 10:13:26 +0000124};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000125
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000126struct interface_defn_t
Eric Andersen8320b422003-04-02 10:13:26 +0000127{
128 struct interface_defn_t *prev;
129 struct interface_defn_t *next;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000130
131 char *iface;
Eric Andersen8320b422003-04-02 10:13:26 +0000132 struct address_family_t *address_family;
133 struct method_t *method;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000134
135 int automatic;
136
137 int max_options;
138 int n_options;
Eric Andersen8320b422003-04-02 10:13:26 +0000139 struct variable_t *option;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000140};
141
Eric Andersen8320b422003-04-02 10:13:26 +0000142struct interfaces_file_t
143{
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000144 llist_t *autointerfaces;
Eric Andersen8320b422003-04-02 10:13:26 +0000145 llist_t *ifaces;
146 struct mapping_defn_t *mappings;
147};
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000148
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000149static char no_act = 0;
150static char verbose = 0;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000151static char **environ = NULL;
152
Eric Andersen66a3af92003-01-27 17:41:19 +0000153#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000154
155static unsigned int count_bits(unsigned int a)
156{
157 unsigned int result;
158 result = (a & 0x55) + ((a >> 1) & 0x55);
159 result = (result & 0x33) + ((result >> 2) & 0x33);
160 return((result & 0x0F) + ((result >> 4) & 0x0F));
161}
162
Eric Andersen66a3af92003-01-27 17:41:19 +0000163static int count_netmask_bits(char *dotted_quad)
164{
Eric Andersen8320b422003-04-02 10:13:26 +0000165 unsigned int result, a, b, c, d;
Eric Andersen66a3af92003-01-27 17:41:19 +0000166 /* Found a netmask... Check if it is dotted quad */
167 if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
168 return -1;
Eric Andersen8320b422003-04-02 10:13:26 +0000169 result = count_bits(a);
170 result += count_bits(b);
171 result += count_bits(c);
172 result += count_bits(d);
Eric Andersen66a3af92003-01-27 17:41:19 +0000173 return ((int)result);
174}
175#endif
176
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000177static void addstr(char **buf, size_t *len, size_t *pos, char *str, size_t str_length)
178{
179 if (*pos + str_length >= *len) {
180 char *newbuf;
181
182 newbuf = xrealloc(*buf, *len * 2 + str_length + 1);
183 *buf = newbuf;
184 *len = *len * 2 + str_length + 1;
185 }
186
187 while (str_length-- >= 1) {
188 (*buf)[(*pos)++] = *str;
189 str++;
190 }
191 (*buf)[*pos] = '\0';
192}
193
194static int strncmpz(char *l, char *r, size_t llen)
195{
196 int i = strncmp(l, r, llen);
197
198 if (i == 0) {
199 return(-r[llen]);
200 } else {
201 return(i);
202 }
203}
204
Eric Andersen8320b422003-04-02 10:13:26 +0000205static char *get_var(char *id, size_t idlen, struct interface_defn_t *ifd)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000206{
207 int i;
208
209 if (strncmpz(id, "iface", idlen) == 0) {
Eric Andersen8320b422003-04-02 10:13:26 +0000210 char *result;
211 static char label_buf[20];
212 strncpy(label_buf, ifd->iface, 19);
213 label_buf[19]=0;
214 result = strchr(label_buf, ':');
215 if (result) {
216 *result=0;
217 }
218 return( label_buf);
219 } else if (strncmpz(id, "label", idlen) == 0) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000220 return (ifd->iface);
221 } else {
222 for (i = 0; i < ifd->n_options; i++) {
223 if (strncmpz(id, ifd->option[i].name, idlen) == 0) {
224 return (ifd->option[i].value);
225 }
226 }
227 }
228
229 return(NULL);
230}
231
Eric Andersen8320b422003-04-02 10:13:26 +0000232static char *parse(char *command, struct interface_defn_t *ifd)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000233{
234
235 char *result = NULL;
236 size_t pos = 0, len = 0;
237 size_t old_pos[MAX_OPT_DEPTH] = { 0 };
238 int okay[MAX_OPT_DEPTH] = { 1 };
239 int opt_depth = 1;
240
241 while (*command) {
242 switch (*command) {
243
Eric Andersen8320b422003-04-02 10:13:26 +0000244 default:
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000245 addstr(&result, &len, &pos, command, 1);
246 command++;
Eric Andersen8320b422003-04-02 10:13:26 +0000247 break;
248 case '\\':
249 if (command[1]) {
250 addstr(&result, &len, &pos, command + 1, 1);
251 command += 2;
252 } else {
253 addstr(&result, &len, &pos, command, 1);
254 command++;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000255 }
Eric Andersen8320b422003-04-02 10:13:26 +0000256 break;
257 case '[':
258 if (command[1] == '[' && opt_depth < MAX_OPT_DEPTH) {
259 old_pos[opt_depth] = pos;
260 okay[opt_depth] = 1;
261 opt_depth++;
262 command += 2;
263 } else {
264 addstr(&result, &len, &pos, "[", 1);
265 command++;
266 }
267 break;
268 case ']':
269 if (command[1] == ']' && opt_depth > 1) {
270 opt_depth--;
271 if (!okay[opt_depth]) {
272 pos = old_pos[opt_depth];
273 result[pos] = '\0';
Eric Andersen66a3af92003-01-27 17:41:19 +0000274 }
Eric Andersen8320b422003-04-02 10:13:26 +0000275 command += 2;
276 } else {
277 addstr(&result, &len, &pos, "]", 1);
278 command++;
Eric Andersen66a3af92003-01-27 17:41:19 +0000279 }
Eric Andersen8320b422003-04-02 10:13:26 +0000280 break;
281 case '%':
282 {
283 char *nextpercent;
284 char *varvalue;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000285
Eric Andersen8320b422003-04-02 10:13:26 +0000286 command++;
287 nextpercent = strchr(command, '%');
288 if (!nextpercent) {
289 errno = EUNBALPER;
290 free(result);
291 return (NULL);
292 }
293
294 varvalue = get_var(command, nextpercent - command, ifd);
295
296 if (varvalue) {
297 addstr(&result, &len, &pos, varvalue, bb_strlen(varvalue));
298 } else {
299#ifdef CONFIG_FEATURE_IFUPDOWN_IP
300 /* Sigh... Add a special case for 'ip' to convert from
301 * dotted quad to bit count style netmasks. */
302 if (strncmp(command, "bnmask", 6)==0) {
303 int res;
304 varvalue = get_var("netmask", 7, ifd);
305 if (varvalue && (res=count_netmask_bits(varvalue)) > 0) {
306 char argument[255];
307 sprintf(argument, "%d", res);
308 addstr(&result, &len, &pos, argument, bb_strlen(argument));
309 command = nextpercent + 1;
310 break;
311 }
312 }
313#endif
314 okay[opt_depth - 1] = 0;
315 }
316
317 command = nextpercent + 1;
318 }
319 break;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000320 }
321 }
322
323 if (opt_depth > 1) {
324 errno = EUNBALBRACK;
325 free(result);
326 return(NULL);
327 }
328
329 if (!okay[0]) {
330 errno = EUNDEFVAR;
331 free(result);
332 return(NULL);
333 }
334
335 return(result);
336}
337
Eric Andersen8320b422003-04-02 10:13:26 +0000338static int execute(char *command, struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000339{
340 char *out;
341 int ret;
342
343 out = parse(command, ifd);
344 if (!out) {
345 return(0);
346 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000347 ret = (*exec) (out);
348
349 free(out);
Eric Andersen8320b422003-04-02 10:13:26 +0000350 return(1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000351}
352
353#ifdef CONFIG_FEATURE_IFUPDOWN_IPX
Eric Andersen8320b422003-04-02 10:13:26 +0000354static int static_up_ipx(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000355{
Eric Andersen8320b422003-04-02 10:13:26 +0000356 return(execute("ipx_interface add %iface% %frame% %netnum%", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000357}
358
Eric Andersen8320b422003-04-02 10:13:26 +0000359static int static_down_ipx(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000360{
Eric Andersen8320b422003-04-02 10:13:26 +0000361 return(execute("ipx_interface del %iface% %frame%", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000362}
363
Eric Andersen8320b422003-04-02 10:13:26 +0000364static int dynamic_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000365{
Eric Andersen8320b422003-04-02 10:13:26 +0000366 return(execute("ipx_interface add %iface% %frame%", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000367}
368
Eric Andersen8320b422003-04-02 10:13:26 +0000369static int dynamic_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000370{
Eric Andersen8320b422003-04-02 10:13:26 +0000371 return(execute("ipx_interface del %iface% %frame%", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000372}
373
Eric Andersen8320b422003-04-02 10:13:26 +0000374static struct method_t methods_ipx[] = {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000375 { "dynamic", dynamic_up, dynamic_down, },
376 { "static", static_up_ipx, static_down_ipx, },
377};
378
Eric Andersen8320b422003-04-02 10:13:26 +0000379struct address_family_t addr_ipx = {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000380 "ipx",
Eric Andersen8320b422003-04-02 10:13:26 +0000381 sizeof(methods_ipx) / sizeof(struct method_t),
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000382 methods_ipx
383};
384#endif /* IFUP_FEATURE_IPX */
385
386#ifdef CONFIG_FEATURE_IFUPDOWN_IPV6
Eric Andersen8320b422003-04-02 10:13:26 +0000387static int loopback_up6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000388{
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000389#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000390 int result;
Eric Andersenfdd2a0f2003-08-06 09:23:44 +0000391 result =execute("ip addr add ::1 dev %iface%", ifd, exec);
Eric Andersen8a931792003-07-03 10:20:29 +0000392 result += execute("ip link set %iface% up", ifd, exec);
Eric Andersen8320b422003-04-02 10:13:26 +0000393 return( result);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000394#else
Eric Andersen8320b422003-04-02 10:13:26 +0000395 return( execute("ifconfig %iface% add ::1", ifd, exec));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000396#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000397}
398
Eric Andersen8320b422003-04-02 10:13:26 +0000399static int loopback_down6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000400{
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000401#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000402 return(execute("ip link set %iface% down", ifd, exec));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000403#else
Eric Andersen8320b422003-04-02 10:13:26 +0000404 return(execute("ifconfig %iface% del ::1", ifd, exec));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000405#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000406}
407
Eric Andersen8320b422003-04-02 10:13:26 +0000408static int static_up6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000409{
Eric Andersen8320b422003-04-02 10:13:26 +0000410 int result;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000411#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersenfdd2a0f2003-08-06 09:23:44 +0000412 result = execute("ip addr add %address%/%netmask% dev %iface% [[label %label%]]", ifd, exec);
413 result += execute("ip link set [[mtu %mtu%]] [[address %hwaddress%]] %iface% up", ifd, exec);
Eric Andersen8320b422003-04-02 10:13:26 +0000414 result += execute("[[ ip route add ::/0 via %gateway% ]]", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000415#else
Eric Andersen8320b422003-04-02 10:13:26 +0000416 result = execute("ifconfig %iface% [[media %media%]] [[hw %hwaddress%]] [[mtu %mtu%]] up", ifd, exec);
417 result += execute("ifconfig %iface% add %address%/%netmask%", ifd, exec);
418 result += execute("[[ route -A inet6 add ::/0 gw %gateway% ]]", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000419#endif
Eric Andersen8320b422003-04-02 10:13:26 +0000420 return( result);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000421}
422
Eric Andersen8320b422003-04-02 10:13:26 +0000423static int static_down6(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000424{
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000425#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000426 return(execute("ip link set %iface% down", ifd, exec));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000427#else
Eric Andersen8320b422003-04-02 10:13:26 +0000428 return(execute("ifconfig %iface% down", ifd, exec));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000429#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000430}
431
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000432#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000433static int v4tunnel_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000434{
Eric Andersen8320b422003-04-02 10:13:26 +0000435 int result;
436 result = execute("ip tunnel add %iface% mode sit remote "
437 "%endpoint% [[local %local%]] [[ttl %ttl%]]", ifd, exec);
Eric Andersen8a931792003-07-03 10:20:29 +0000438 result += execute("ip link set %iface% up", ifd, exec);
Glenn L McGrath62b031f2003-08-29 07:47:52 +0000439 result += execute("ip addr add %address%/%netmask% dev %iface%", ifd, exec);
Eric Andersen8320b422003-04-02 10:13:26 +0000440 result += execute("[[ ip route add ::/0 via %gateway% ]]", ifd, exec);
441 return( result);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000442}
443
Eric Andersen8320b422003-04-02 10:13:26 +0000444static int v4tunnel_down(struct interface_defn_t * ifd, execfn * exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000445{
Eric Andersen8320b422003-04-02 10:13:26 +0000446 return( execute("ip tunnel del %iface%", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000447}
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000448#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000449
Eric Andersen8320b422003-04-02 10:13:26 +0000450static struct method_t methods6[] = {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000451#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000452 { "v4tunnel", v4tunnel_up, v4tunnel_down, },
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000453#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000454 { "static", static_up6, static_down6, },
455 { "loopback", loopback_up6, loopback_down6, },
456};
457
Eric Andersen8320b422003-04-02 10:13:26 +0000458struct address_family_t addr_inet6 = {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000459 "inet6",
Eric Andersen8320b422003-04-02 10:13:26 +0000460 sizeof(methods6) / sizeof(struct method_t),
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000461 methods6
462};
463#endif /* CONFIG_FEATURE_IFUPDOWN_IPV6 */
464
465#ifdef CONFIG_FEATURE_IFUPDOWN_IPV4
Eric Andersen8320b422003-04-02 10:13:26 +0000466static int loopback_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000467{
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000468#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000469 int result;
Eric Andersenfdd2a0f2003-08-06 09:23:44 +0000470 result = execute("ip addr add 127.0.0.1/8 dev %iface%", ifd, exec);
Eric Andersen8a931792003-07-03 10:20:29 +0000471 result += execute("ip link set %iface% up", ifd, exec);
Eric Andersen8320b422003-04-02 10:13:26 +0000472 return(result);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000473#else
Eric Andersen8320b422003-04-02 10:13:26 +0000474 return( execute("ifconfig %iface% 127.0.0.1 up", ifd, exec));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000475#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000476}
477
Eric Andersen8320b422003-04-02 10:13:26 +0000478static int loopback_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000479{
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000480#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000481 int result;
482 result = execute("ip addr flush dev %iface%", ifd, exec);
483 result += execute("ip link set %iface% down", ifd, exec);
484 return(result);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000485#else
Eric Andersen8320b422003-04-02 10:13:26 +0000486 return( execute("ifconfig %iface% 127.0.0.1 down", ifd, exec));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000487#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000488}
489
Eric Andersen8320b422003-04-02 10:13:26 +0000490static int static_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000491{
Eric Andersen8320b422003-04-02 10:13:26 +0000492 int result;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000493#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8a931792003-07-03 10:20:29 +0000494 result = execute("ip addr add %address%/%bnmask% [[broadcast %broadcast%]] "
Eric Andersenfdd2a0f2003-08-06 09:23:44 +0000495 "dev %iface% [[peer %pointopoint%]] [[label %label%]]", ifd, exec);
496 result += execute("ip link set [[mtu %mtu%]] [[address %hwaddress%]] %iface% up", ifd, exec);
Eric Andersen8320b422003-04-02 10:13:26 +0000497 result += execute("[[ ip route add default via %gateway% dev %iface% ]]", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000498#else
Eric Andersen8320b422003-04-02 10:13:26 +0000499 result = execute("ifconfig %iface% %address% netmask %netmask% "
500 "[[broadcast %broadcast%]] [[pointopoint %pointopoint%]] "
501 "[[media %media%]] [[mtu %mtu%]] [[hw %hwaddress%]] up",
502 ifd, exec);
503 result += execute("[[ route add default gw %gateway% %iface% ]]", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000504#endif
Eric Andersen8320b422003-04-02 10:13:26 +0000505 return(result);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000506}
507
Eric Andersen8320b422003-04-02 10:13:26 +0000508static int static_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000509{
Eric Andersen8320b422003-04-02 10:13:26 +0000510 int result;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000511#ifdef CONFIG_FEATURE_IFUPDOWN_IP
Eric Andersen8320b422003-04-02 10:13:26 +0000512 result = execute("ip addr flush dev %iface%", ifd, exec);
513 result += execute("ip link set %iface% down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000514#else
Eric Andersen8320b422003-04-02 10:13:26 +0000515 result = execute("[[ route del default gw %gateway% %iface% ]]", ifd, exec);
516 result += execute("ifconfig %iface% down", ifd, exec);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000517#endif
Eric Andersen8320b422003-04-02 10:13:26 +0000518 return(result);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000519}
520
Glenn L McGrath49a28b32002-11-10 13:17:08 +0000521static int execable(char *program)
522{
523 struct stat buf;
524 if (0 == stat(program, &buf)) {
525 if (S_ISREG(buf.st_mode) && (S_IXUSR & buf.st_mode)) {
526 return(1);
527 }
528 }
529 return(0);
530}
531
Eric Andersen8320b422003-04-02 10:13:26 +0000532static int dhcp_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000533{
Eric Andersen8320b422003-04-02 10:13:26 +0000534 if (execable("/sbin/udhcpc")) {
535 return( execute("udhcpc -n -p /var/run/udhcpc.%iface%.pid -i "
536 "%iface% [[-H %hostname%]] [[-c %clientid%]]", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000537 } else if (execable("/sbin/pump")) {
Eric Andersen8320b422003-04-02 10:13:26 +0000538 return( execute("pump -i %iface% [[-h %hostname%]] [[-l %leasehours%]]", ifd, exec));
539 } else if (execable("/sbin/dhclient")) {
540 return( execute("dhclient -pf /var/run/dhclient.%iface%.pid %iface%", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000541 } else if (execable("/sbin/dhcpcd")) {
Eric Andersen8320b422003-04-02 10:13:26 +0000542 return( execute("dhcpcd [[-h %hostname%]] [[-i %vendor%]] [[-I %clientid%]] "
543 "[[-l %leasetime%]] %iface%", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000544 }
Eric Andersen8320b422003-04-02 10:13:26 +0000545 return(0);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000546}
547
Eric Andersen5e136f22004-07-20 06:35:54 +0000548static int bootp_down(struct interface_defn_t *ifd, execfn *exec)
549{
550#ifdef CONFIG_FEATURE_IFUPDOWN_IP
551 return(execute("ip link set %iface% down", ifd, exec));
552#else
553 return(execute("ifconfig %iface% down", ifd, exec));
554#endif
555}
556
Eric Andersen8320b422003-04-02 10:13:26 +0000557static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000558{
Eric Andersen3c8bca32003-06-20 10:02:29 +0000559 int result = 0;
Eric Andersen8320b422003-04-02 10:13:26 +0000560 if (execable("/sbin/udhcpc")) {
561 execute("kill -9 `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000562 } else if (execable("/sbin/pump")) {
Eric Andersen8320b422003-04-02 10:13:26 +0000563 result = execute("pump -i %iface% -k", ifd, exec);
564 } else if (execable("/sbin/dhclient")) {
Glenn L McGrath469a1ea2004-07-21 12:21:39 +0000565 execute("kill -9 `cat /var/run/dhclient.%iface%.pid` 2>/dev/null", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000566 } else if (execable("/sbin/dhcpcd")) {
Eric Andersen8320b422003-04-02 10:13:26 +0000567 result = execute("dhcpcd -k %iface%", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000568 }
Eric Andersen238e3542004-04-12 20:57:17 +0000569 return (result || bootp_down(ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000570}
571
Eric Andersen8320b422003-04-02 10:13:26 +0000572static int bootp_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000573{
Eric Andersen8320b422003-04-02 10:13:26 +0000574 return( execute("bootpc [[--bootfile %bootfile%]] --dev %iface% "
575 "[[--server %server%]] [[--hwaddr %hwaddr%]] "
576 "--returniffail --serverbcast", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000577}
578
Eric Andersen8320b422003-04-02 10:13:26 +0000579static int ppp_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000580{
Eric Andersen8320b422003-04-02 10:13:26 +0000581 return( execute("pon [[%provider%]]", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000582}
583
Eric Andersen8320b422003-04-02 10:13:26 +0000584static int ppp_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000585{
Eric Andersen8320b422003-04-02 10:13:26 +0000586 return( execute("poff [[%provider%]]", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000587}
588
Eric Andersen8320b422003-04-02 10:13:26 +0000589static int wvdial_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000590{
Eric Andersen8320b422003-04-02 10:13:26 +0000591 return( execute("/sbin/start-stop-daemon --start -x /usr/bin/wvdial "
592 "-p /var/run/wvdial.%iface% -b -m -- [[ %provider% ]]", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000593}
594
Eric Andersen8320b422003-04-02 10:13:26 +0000595static int wvdial_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000596{
Eric Andersen8320b422003-04-02 10:13:26 +0000597 return( execute("/sbin/start-stop-daemon --stop -x /usr/bin/wvdial "
598 "-p /var/run/wvdial.%iface% -s 2", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000599}
600
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000601static struct method_t methods[] =
Eric Andersen8320b422003-04-02 10:13:26 +0000602{
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000603 { "wvdial", wvdial_up, wvdial_down, },
604 { "ppp", ppp_up, ppp_down, },
605 { "static", static_up, static_down, },
606 { "bootp", bootp_up, bootp_down, },
607 { "dhcp", dhcp_up, dhcp_down, },
608 { "loopback", loopback_up, loopback_down, },
609};
610
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000611struct address_family_t addr_inet =
Eric Andersen8320b422003-04-02 10:13:26 +0000612{
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000613 "inet",
Eric Andersen8320b422003-04-02 10:13:26 +0000614 sizeof(methods) / sizeof(struct method_t),
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000615 methods
616};
617
618#endif /* ifdef CONFIG_FEATURE_IFUPDOWN_IPV4 */
619
Glenn L McGrath85737042003-01-14 23:26:57 +0000620static char *next_word(char **buf)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000621{
Glenn L McGrath85737042003-01-14 23:26:57 +0000622 unsigned short length;
623 char *word;
624
625 if ((buf == NULL) || (*buf == NULL) || (**buf == '\0')) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000626 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000627 }
628
Glenn L McGrath85737042003-01-14 23:26:57 +0000629 /* Skip over leading whitespace */
Eric Andersen3c8bca32003-06-20 10:02:29 +0000630 word = *buf;
631 while (isspace(*word)) {
632 ++word;
633 }
634
635 /* Skip over comments */
636 if (*word == '#') {
637 return(NULL);
638 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000639
Glenn L McGrath85737042003-01-14 23:26:57 +0000640 /* Find the length of this word */
641 length = strcspn(word, " \t\n");
642 if (length == 0) {
643 return(NULL);
644 }
645 *buf = word + length;
Eric Andersen28942662003-04-19 23:15:06 +0000646 /*DBU:[dave@cray.com] if we are already at EOL dont't increment beyond it */
647 if (**buf) {
648 **buf = '\0';
649 (*buf)++;
650 }
Glenn L McGrath85737042003-01-14 23:26:57 +0000651
652 return word;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000653}
654
Eric Andersen8320b422003-04-02 10:13:26 +0000655static struct address_family_t *get_address_family(struct address_family_t *af[], char *name)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000656{
657 int i;
658
659 for (i = 0; af[i]; i++) {
660 if (strcmp(af[i]->name, name) == 0) {
661 return af[i];
662 }
663 }
664 return NULL;
665}
666
Eric Andersen8320b422003-04-02 10:13:26 +0000667static struct method_t *get_method(struct address_family_t *af, char *name)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000668{
669 int i;
670
671 for (i = 0; i < af->n_methods; i++) {
672 if (strcmp(af->method[i].name, name) == 0) {
673 return &af->method[i];
674 }
675 }
676 return(NULL);
677}
678
Eric Andersen8320b422003-04-02 10:13:26 +0000679static int duplicate_if(struct interface_defn_t *ifa, struct interface_defn_t *ifb)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000680{
681 if (strcmp(ifa->iface, ifb->iface) != 0) {
682 return(0);
683 }
684 if (ifa->address_family != ifb->address_family) {
685 return(0);
686 }
687 return(1);
688}
689
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000690static const llist_t *find_list_string(const llist_t *list, const char *string)
691{
692 while (list) {
693 if (strcmp(list->data, string) == 0) {
694 return(list);
695 }
696 list = list->link;
697 }
698 return(NULL);
699}
700
Eric Andersen8320b422003-04-02 10:13:26 +0000701static struct interfaces_file_t *read_interfaces(char *filename)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000702{
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000703#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Eric Andersen8320b422003-04-02 10:13:26 +0000704 struct mapping_defn_t *currmap = NULL;
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000705#endif
Eric Andersen8320b422003-04-02 10:13:26 +0000706 struct interface_defn_t *currif = NULL;
707 struct interfaces_file_t *defn;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000708 FILE *f;
Glenn L McGrath85737042003-01-14 23:26:57 +0000709 char *firstword;
710 char *buf;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000711
712 enum { NONE, IFACE, MAPPING } currently_processing = NONE;
713
Eric Andersen8320b422003-04-02 10:13:26 +0000714 defn = xmalloc(sizeof(struct interfaces_file_t));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000715 defn->autointerfaces = NULL;
716 defn->mappings = NULL;
717 defn->ifaces = NULL;
Glenn L McGrath85737042003-01-14 23:26:57 +0000718
Manuel Novoa III cad53642003-03-19 09:13:01 +0000719 f = bb_xfopen(filename, "r");
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000720
Eric Andersen8320b422003-04-02 10:13:26 +0000721 while ((buf = bb_get_chomped_line_from_file(f)) != NULL) {
Glenn L McGrath85737042003-01-14 23:26:57 +0000722 char *buf_ptr = buf;
Glenn L McGrath398ff9d2002-12-06 11:51:46 +0000723
Glenn L McGrath85737042003-01-14 23:26:57 +0000724 firstword = next_word(&buf_ptr);
725 if (firstword == NULL) {
Eric Andersen3c8bca32003-06-20 10:02:29 +0000726 free(buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000727 continue; /* blank line */
728 }
729
730 if (strcmp(firstword, "mapping") == 0) {
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000731#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Eric Andersen8320b422003-04-02 10:13:26 +0000732 currmap = xmalloc(sizeof(struct mapping_defn_t));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000733 currmap->max_matches = 0;
734 currmap->n_matches = 0;
735 currmap->match = NULL;
736
Glenn L McGrath85737042003-01-14 23:26:57 +0000737 while ((firstword = next_word(&buf_ptr)) != NULL) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000738 if (currmap->max_matches == currmap->n_matches) {
739 currmap->max_matches = currmap->max_matches * 2 + 1;
740 currmap->match = xrealloc(currmap->match, sizeof(currmap->match) * currmap->max_matches);
741 }
742
Manuel Novoa III cad53642003-03-19 09:13:01 +0000743 currmap->match[currmap->n_matches++] = bb_xstrdup(firstword);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000744 }
745 currmap->max_mappings = 0;
746 currmap->n_mappings = 0;
747 currmap->mapping = NULL;
748 currmap->script = NULL;
749 {
Eric Andersen8320b422003-04-02 10:13:26 +0000750 struct mapping_defn_t **where = &defn->mappings;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000751 while (*where != NULL) {
752 where = &(*where)->next;
753 }
754 *where = currmap;
755 currmap->next = NULL;
756 }
Eric Andersen8320b422003-04-02 10:13:26 +0000757 debug_noise("Added mapping\n");
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000758#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000759 currently_processing = MAPPING;
760 } else if (strcmp(firstword, "iface") == 0) {
761 {
Glenn L McGrath85737042003-01-14 23:26:57 +0000762 char *iface_name;
763 char *address_family_name;
764 char *method_name;
Eric Andersen8320b422003-04-02 10:13:26 +0000765 struct address_family_t *addr_fams[] = {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000766#ifdef CONFIG_FEATURE_IFUPDOWN_IPV4
767 &addr_inet,
768#endif
769#ifdef CONFIG_FEATURE_IFUPDOWN_IPV6
770 &addr_inet6,
771#endif
772#ifdef CONFIG_FEATURE_IFUPDOWN_IPX
773 &addr_ipx,
774#endif
775 NULL
776 };
777
Eric Andersen8320b422003-04-02 10:13:26 +0000778 currif = xmalloc(sizeof(struct interface_defn_t));
Glenn L McGrath85737042003-01-14 23:26:57 +0000779 iface_name = next_word(&buf_ptr);
780 address_family_name = next_word(&buf_ptr);
781 method_name = next_word(&buf_ptr);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000782
Glenn L McGrath85737042003-01-14 23:26:57 +0000783 if (buf_ptr == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000784 bb_error_msg("too few parameters for line \"%s\"", buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000785 return NULL;
786 }
787
Eric Andersen3c8bca32003-06-20 10:02:29 +0000788 /* ship any trailing whitespace */
789 while (isspace(*buf_ptr)) {
790 ++buf_ptr;
791 }
792
Glenn L McGrath85737042003-01-14 23:26:57 +0000793 if (buf_ptr[0] != '\0') {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000794 bb_error_msg("too many parameters \"%s\"", buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000795 return NULL;
796 }
797
Manuel Novoa III cad53642003-03-19 09:13:01 +0000798 currif->iface = bb_xstrdup(iface_name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000799
800 currif->address_family = get_address_family(addr_fams, address_family_name);
801 if (!currif->address_family) {
Eric Andersenfe9b9cd2004-06-29 00:48:30 +0000802 bb_error_msg("unknown address type \"%s\"", address_family_name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000803 return NULL;
804 }
805
806 currif->method = get_method(currif->address_family, method_name);
807 if (!currif->method) {
Eric Andersenfe9b9cd2004-06-29 00:48:30 +0000808 bb_error_msg("unknown method \"%s\"", method_name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000809 return NULL;
810 }
811
812 currif->automatic = 1;
813 currif->max_options = 0;
814 currif->n_options = 0;
815 currif->option = NULL;
816
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000817 {
Eric Andersen8320b422003-04-02 10:13:26 +0000818 struct interface_defn_t *tmp;
819 llist_t *iface_list;
820 iface_list = defn->ifaces;
821 while (iface_list) {
822 tmp = (struct interface_defn_t *) iface_list->data;
823 if (duplicate_if(tmp, currif)) {
824 bb_error_msg("duplicate interface \"%s\"", tmp->iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000825 return NULL;
826 }
Eric Andersen8320b422003-04-02 10:13:26 +0000827 iface_list = iface_list->link;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000828 }
829
Eric Andersen8320b422003-04-02 10:13:26 +0000830 defn->ifaces = llist_add_to_end(defn->ifaces, (char*)currif);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000831 }
Eric Andersen8320b422003-04-02 10:13:26 +0000832 debug_noise("iface %s %s %s\n", currif->iface, address_family_name, method_name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000833 }
834 currently_processing = IFACE;
835 } else if (strcmp(firstword, "auto") == 0) {
Glenn L McGrath85737042003-01-14 23:26:57 +0000836 while ((firstword = next_word(&buf_ptr)) != NULL) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000837
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000838 /* Check the interface isnt already listed */
839 if (find_list_string(defn->autointerfaces, firstword)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000840 bb_perror_msg_and_die("interface declared auto twice \"%s\"", buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000841 }
842
Glenn L McGrath8e49caa2002-12-08 01:23:39 +0000843 /* Add the interface to the list */
Eric Andersen8320b422003-04-02 10:13:26 +0000844 defn->autointerfaces = llist_add_to_end(defn->autointerfaces, strdup(firstword));
845 debug_noise("\nauto %s\n", firstword);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000846 }
847 currently_processing = NONE;
848 } else {
849 switch (currently_processing) {
Eric Andersen8320b422003-04-02 10:13:26 +0000850 case IFACE:
851 {
852 int i;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000853
Eric Andersen8320b422003-04-02 10:13:26 +0000854 if (bb_strlen(buf_ptr) == 0) {
855 bb_error_msg("option with empty value \"%s\"", buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000856 return NULL;
857 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000858
Eric Andersen8320b422003-04-02 10:13:26 +0000859 if (strcmp(firstword, "up") != 0
860 && strcmp(firstword, "down") != 0
861 && strcmp(firstword, "pre-up") != 0
862 && strcmp(firstword, "post-down") != 0) {
863 for (i = 0; i < currif->n_options; i++) {
864 if (strcmp(currif->option[i].name, firstword) == 0) {
865 bb_error_msg("duplicate option \"%s\"", buf);
866 return NULL;
867 }
868 }
869 }
870 }
871 if (currif->n_options >= currif->max_options) {
872 struct variable_t *opt;
873
874 currif->max_options = currif->max_options + 10;
875 opt = xrealloc(currif->option, sizeof(*opt) * currif->max_options);
876 currif->option = opt;
877 }
878 currif->option[currif->n_options].name = bb_xstrdup(firstword);
879 currif->option[currif->n_options].value = bb_xstrdup(buf_ptr);
880 if (!currif->option[currif->n_options].name) {
881 perror(filename);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000882 return NULL;
Eric Andersen8320b422003-04-02 10:13:26 +0000883 }
884 if (!currif->option[currif->n_options].value) {
885 perror(filename);
886 return NULL;
887 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000888 debug_noise("\t%s=%s\n", currif->option[currif->n_options].name,
Eric Andersen8320b422003-04-02 10:13:26 +0000889 currif->option[currif->n_options].value);
890 currif->n_options++;
891 break;
892 case MAPPING:
893#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
894 if (strcmp(firstword, "script") == 0) {
895 if (currmap->script != NULL) {
896 bb_error_msg("duplicate script in mapping \"%s\"", buf);
897 return NULL;
898 } else {
899 currmap->script = bb_xstrdup(next_word(&buf_ptr));
900 }
901 } else if (strcmp(firstword, "map") == 0) {
902 if (currmap->max_mappings == currmap->n_mappings) {
903 currmap->max_mappings = currmap->max_mappings * 2 + 1;
904 currmap->mapping = xrealloc(currmap->mapping, sizeof(char *) * currmap->max_mappings);
905 }
906 currmap->mapping[currmap->n_mappings] = bb_xstrdup(next_word(&buf_ptr));
907 currmap->n_mappings++;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000908 } else {
Eric Andersen8320b422003-04-02 10:13:26 +0000909 bb_error_msg("misplaced option \"%s\"", buf);
910 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000911 }
Eric Andersen8320b422003-04-02 10:13:26 +0000912#endif
913 break;
914 case NONE:
915 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000916 bb_error_msg("misplaced option \"%s\"", buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000917 return NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000918 }
919 }
Glenn L McGrath85737042003-01-14 23:26:57 +0000920 free(buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000921 }
922 if (ferror(f) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000923 bb_perror_msg_and_die("%s", filename);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000924 }
925 fclose(f);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000926
927 return defn;
928}
929
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000930static char *setlocalenv(char *format, char *name, char *value)
931{
932 char *result;
933 char *here;
934 char *there;
935
Manuel Novoa III cad53642003-03-19 09:13:01 +0000936 result = xmalloc(bb_strlen(format) + bb_strlen(name) + bb_strlen(value) + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000937
938 sprintf(result, format, name, value);
939
940 for (here = there = result; *there != '=' && *there; there++) {
941 if (*there == '-')
942 *there = '_';
943 if (isalpha(*there))
944 *there = toupper(*there);
945
946 if (isalnum(*there) || *there == '_') {
947 *here = *there;
948 here++;
949 }
950 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000951 memmove(here, there, bb_strlen(there) + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000952
953 return result;
954}
955
Eric Andersen8320b422003-04-02 10:13:26 +0000956static void set_environ(struct interface_defn_t *iface, char *mode)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000957{
958 char **environend;
959 int i;
960 const int n_env_entries = iface->n_options + 5;
961 char **ppch;
962
963 if (environ != NULL) {
964 for (ppch = environ; *ppch; ppch++) {
965 free(*ppch);
966 *ppch = NULL;
967 }
968 free(environ);
969 environ = NULL;
970 }
971 environ = xmalloc(sizeof(char *) * (n_env_entries + 1 /* for final NULL */ ));
972 environend = environ;
973 *environend = NULL;
974
975 for (i = 0; i < iface->n_options; i++) {
976 if (strcmp(iface->option[i].name, "up") == 0
Eric Andersen8320b422003-04-02 10:13:26 +0000977 || strcmp(iface->option[i].name, "down") == 0
978 || strcmp(iface->option[i].name, "pre-up") == 0
979 || strcmp(iface->option[i].name, "post-down") == 0) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000980 continue;
981 }
982 *(environend++) = setlocalenv("IF_%s=%s", iface->option[i].name, iface->option[i].value);
983 *environend = NULL;
984 }
985
986 *(environend++) = setlocalenv("%s=%s", "IFACE", iface->iface);
987 *environend = NULL;
988 *(environend++) = setlocalenv("%s=%s", "ADDRFAM", iface->address_family->name);
989 *environend = NULL;
990 *(environend++) = setlocalenv("%s=%s", "METHOD", iface->method->name);
991 *environend = NULL;
992 *(environend++) = setlocalenv("%s=%s", "MODE", mode);
993 *environend = NULL;
994 *(environend++) = setlocalenv("%s=%s", "PATH", "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin");
995 *environend = NULL;
996}
997
998static int doit(char *str)
999{
1000 if (verbose || no_act) {
Eric Andersen8320b422003-04-02 10:13:26 +00001001 printf("%s\n", str);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001002 }
1003 if (!no_act) {
1004 pid_t child;
1005 int status;
1006
1007 fflush(NULL);
1008 switch (child = fork()) {
Eric Andersen8320b422003-04-02 10:13:26 +00001009 case -1: /* failure */
1010 return 0;
1011 case 0: /* child */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +00001012 execle(DEFAULT_SHELL, DEFAULT_SHELL, "-c", str, NULL, environ);
Eric Andersen8320b422003-04-02 10:13:26 +00001013 exit(127);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001014 }
1015 waitpid(child, &status, 0);
1016 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1017 return 0;
1018 }
1019 }
1020 return (1);
1021}
1022
Eric Andersen8320b422003-04-02 10:13:26 +00001023static int execute_all(struct interface_defn_t *ifd, execfn *exec, const char *opt)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001024{
1025 int i;
Eric Anderseneb213bd2003-09-12 08:39:05 +00001026 char *buf;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001027 for (i = 0; i < ifd->n_options; i++) {
1028 if (strcmp(ifd->option[i].name, opt) == 0) {
1029 if (!(*exec) (ifd->option[i].value)) {
1030 return 0;
1031 }
1032 }
1033 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001034
Eric Anderseneb213bd2003-09-12 08:39:05 +00001035 bb_xasprintf(&buf, "run-parts /etc/network/if-%s.d", opt);
Eric Andersen51ed2422003-09-12 05:59:53 +00001036 (*exec)(buf);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001037
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001038 return (1);
1039}
1040
Eric Andersen8320b422003-04-02 10:13:26 +00001041static int check(char *str) {
1042 return str != NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001043}
1044
Eric Andersen8320b422003-04-02 10:13:26 +00001045static int iface_up(struct interface_defn_t *iface)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001046{
Eric Andersen8320b422003-04-02 10:13:26 +00001047 if (!iface->method->up(iface,check)) return -1;
1048 set_environ(iface, "start");
Eric Andersen658f8b12003-12-19 10:46:00 +00001049 if (!execute_all(iface, doit, "pre-up")) return 0;
1050 if (!iface->method->up(iface, doit)) return 0;
1051 if (!execute_all(iface, doit, "up")) return 0;
1052 return 1;
Eric Andersen8320b422003-04-02 10:13:26 +00001053}
1054
1055static int iface_down(struct interface_defn_t *iface)
1056{
Eric Andersen8320b422003-04-02 10:13:26 +00001057 if (!iface->method->down(iface,check)) return -1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001058 set_environ(iface, "stop");
Eric Andersen658f8b12003-12-19 10:46:00 +00001059 if (!execute_all(iface, doit, "down")) return 0;
1060 if (!iface->method->down(iface, doit)) return 0;
1061 if (!execute_all(iface, doit, "post-down")) return 0;
1062 return 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001063}
1064
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001065#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001066static int popen2(FILE **in, FILE **out, char *command, ...)
1067{
1068 va_list ap;
1069 char *argv[11] = { command };
1070 int argc;
1071 int infd[2], outfd[2];
1072 pid_t pid;
1073
1074 argc = 1;
1075 va_start(ap, command);
1076 while ((argc < 10) && (argv[argc] = va_arg(ap, char *))) {
1077 argc++;
1078 }
1079 argv[argc] = NULL; /* make sure */
1080 va_end(ap);
1081
1082 if (pipe(infd) != 0) {
1083 return 0;
1084 }
1085
1086 if (pipe(outfd) != 0) {
1087 close(infd[0]);
1088 close(infd[1]);
1089 return 0;
1090 }
1091
1092 fflush(NULL);
1093 switch (pid = fork()) {
Eric Andersen8320b422003-04-02 10:13:26 +00001094 case -1: /* failure */
1095 close(infd[0]);
1096 close(infd[1]);
1097 close(outfd[0]);
1098 close(outfd[1]);
1099 return 0;
1100 case 0: /* child */
1101 dup2(infd[0], 0);
1102 dup2(outfd[1], 1);
1103 close(infd[0]);
1104 close(infd[1]);
1105 close(outfd[0]);
1106 close(outfd[1]);
1107 execvp(command, argv);
1108 exit(127);
1109 default: /* parent */
1110 *in = fdopen(infd[1], "w");
1111 *out = fdopen(outfd[0], "r");
1112 close(infd[0]);
1113 close(outfd[1]);
1114 return pid;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001115 }
1116 /* unreached */
1117}
1118
Eric Andersen8a931792003-07-03 10:20:29 +00001119static char * run_mapping(char *physical, struct mapping_defn_t * map)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001120{
1121 FILE *in, *out;
1122 int i, status;
1123 pid_t pid;
1124
Eric Andersen8a931792003-07-03 10:20:29 +00001125 char *logical = bb_xstrdup(physical);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001126
Eric Andersen8a931792003-07-03 10:20:29 +00001127 /* Run the mapping script. */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001128 pid = popen2(&in, &out, map->script, physical, NULL);
Eric Andersen8a931792003-07-03 10:20:29 +00001129
1130 /* popen2() returns 0 on failure. */
1131 if (pid == 0)
1132 return logical;
1133
1134 /* Write mappings to stdin of mapping script. */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001135 for (i = 0; i < map->n_mappings; i++) {
1136 fprintf(in, "%s\n", map->mapping[i]);
1137 }
1138 fclose(in);
1139 waitpid(pid, &status, 0);
Eric Andersen8a931792003-07-03 10:20:29 +00001140
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001141 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
Eric Andersen8a931792003-07-03 10:20:29 +00001142 /* If the mapping script exited successfully, try to
1143 * grab a line of output and use that as the name of the
1144 * logical interface. */
1145 char *new_logical = (char *)xmalloc(MAX_INTERFACE_LENGTH);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001146
Eric Andersen233b1702003-06-05 19:37:01 +00001147 if (fgets(new_logical, MAX_INTERFACE_LENGTH, out)) {
Eric Andersen8a931792003-07-03 10:20:29 +00001148 /* If we are able to read a line of output from the script,
1149 * remove any trailing whitespace and use this value
1150 * as the name of the logical interface. */
Eric Andersen233b1702003-06-05 19:37:01 +00001151 char *pch = new_logical + bb_strlen(new_logical) - 1;
1152
1153 while (pch >= new_logical && isspace(*pch))
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001154 *(pch--) = '\0';
Eric Andersen8a931792003-07-03 10:20:29 +00001155
1156 free(logical);
1157 logical = new_logical;
1158 } else {
1159 /* If we are UNABLE to read a line of output, discard are
1160 * freshly allocated memory. */
1161 free(new_logical);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001162 }
1163 }
Eric Andersen8a931792003-07-03 10:20:29 +00001164
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001165 fclose(out);
1166
Eric Andersen8a931792003-07-03 10:20:29 +00001167 return logical;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001168}
Eric Andersen8a931792003-07-03 10:20:29 +00001169#endif /* CONFIG_FEATURE_IFUPDOWN_MAPPING */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001170
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001171static llist_t *find_iface_state(llist_t *state_list, const char *iface)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001172{
Manuel Novoa III cad53642003-03-19 09:13:01 +00001173 unsigned short iface_len = bb_strlen(iface);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001174 llist_t *search = state_list;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001175
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001176 while (search) {
1177 if ((strncmp(search->data, iface, iface_len) == 0) &&
Eric Andersen8320b422003-04-02 10:13:26 +00001178 (search->data[iface_len] == '=')) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001179 return(search);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001180 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001181 search = search->link;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001182 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001183 return(NULL);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001184}
1185
1186extern int ifupdown_main(int argc, char **argv)
1187{
Eric Andersen8320b422003-04-02 10:13:26 +00001188 int (*cmds) (struct interface_defn_t *) = NULL;
1189 struct interfaces_file_t *defn;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001190 FILE *state_fp = NULL;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001191 llist_t *state_list = NULL;
1192 llist_t *target_list = NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001193 char *interfaces = "/etc/network/interfaces";
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001194 const char *statefile = "/var/run/ifstate";
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001195
Glenn L McGrath398ff9d2002-12-06 11:51:46 +00001196#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001197 int run_mappings = 1;
Glenn L McGrath398ff9d2002-12-06 11:51:46 +00001198#endif
1199 int do_all = 0;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001200 int force = 0;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001201 int i;
1202
Manuel Novoa III cad53642003-03-19 09:13:01 +00001203 if (bb_applet_name[2] == 'u') {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001204 /* ifup command */
1205 cmds = iface_up;
1206 } else {
1207 /* ifdown command */
1208 cmds = iface_down;
1209 }
1210
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001211#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Eric Andersen8320b422003-04-02 10:13:26 +00001212 while ((i = getopt(argc, argv, "i:hvnamf")) != -1)
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001213#else
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001214 while ((i = getopt(argc, argv, "i:hvnaf")) != -1)
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001215#endif
Eric Andersen8320b422003-04-02 10:13:26 +00001216 {
1217 switch (i) {
1218 case 'i': /* interfaces */
1219 interfaces = bb_xstrdup(optarg);
1220 break;
1221 case 'v': /* verbose */
1222 verbose = 1;
1223 break;
1224 case 'a': /* all */
1225 do_all = 1;
1226 break;
1227 case 'n': /* no-act */
1228 no_act = 1;
1229 break;
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001230#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Eric Andersen8320b422003-04-02 10:13:26 +00001231 case 'm': /* no-mappings */
1232 run_mappings = 0;
1233 break;
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001234#endif
Eric Andersen8320b422003-04-02 10:13:26 +00001235 case 'f': /* force */
1236 force = 1;
1237 break;
1238 default:
1239 bb_show_usage();
1240 break;
1241 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001242 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001243
1244 if (argc - optind > 0) {
1245 if (do_all) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001246 bb_show_usage();
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001247 }
1248 } else {
1249 if (!do_all) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001250 bb_show_usage();
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001251 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001252 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001253
Eric Andersen8320b422003-04-02 10:13:26 +00001254 debug_noise("reading %s file:\n", interfaces);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001255 defn = read_interfaces(interfaces);
Eric Andersen8320b422003-04-02 10:13:26 +00001256 debug_noise("\ndone reading %s\n\n", interfaces);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001257
Eric Andersen3c8bca32003-06-20 10:02:29 +00001258 if (!defn) {
1259 exit(EXIT_FAILURE);
1260 }
1261
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001262 if (no_act) {
1263 state_fp = fopen(statefile, "r");
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001264 }
1265
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001266 /* Create a list of interfaces to work on */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001267 if (do_all) {
1268 if (cmds == iface_up) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001269 target_list = defn->autointerfaces;
Eric Andersen8320b422003-04-02 10:13:26 +00001270 } else {
1271#if 0
1272 /* iface_down */
1273 llist_t *new_item;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001274 const llist_t *list = state_list;
1275 while (list) {
Eric Andersen8320b422003-04-02 10:13:26 +00001276 new_item = xmalloc(sizeof(llist_t));
1277 new_item->data = strdup(list->data);
1278 new_item->link = NULL;
1279 list = target_list;
1280 if (list == NULL)
1281 target_list = new_item;
1282 else {
1283 while (list->link) {
1284 list = list->link;
1285 }
1286 list = new_item;
1287 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001288 list = list->link;
1289 }
Eric Andersen66a3af92003-01-27 17:41:19 +00001290 target_list = defn->autointerfaces;
Eric Andersen8320b422003-04-02 10:13:26 +00001291#else
1292
1293 /* iface_down */
1294 const llist_t *list = state_list;
1295 while (list) {
1296 target_list = llist_add_to_end(target_list, strdup(list->data));
1297 list = list->link;
1298 }
1299 target_list = defn->autointerfaces;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001300#endif
1301 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001302 } else {
Eric Andersen8320b422003-04-02 10:13:26 +00001303 target_list = llist_add_to_end(target_list, argv[optind]);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001304 }
1305
1306
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001307 /* Update the interfaces */
1308 while (target_list) {
Eric Andersen8320b422003-04-02 10:13:26 +00001309 llist_t *iface_list;
1310 struct interface_defn_t *currif;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001311 char *iface;
1312 char *liface;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001313 char *pch;
1314 int okay = 0;
1315
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001316 iface = strdup(target_list->data);
1317 target_list = target_list->link;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001318
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001319 pch = strchr(iface, '=');
1320 if (pch) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001321 *pch = '\0';
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001322 liface = strdup(pch + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001323 } else {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001324 liface = strdup(iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001325 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001326
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001327 if (!force) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001328 const llist_t *iface_state = find_iface_state(state_list, iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001329
1330 if (cmds == iface_up) {
1331 /* ifup */
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001332 if (iface_state) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001333 bb_error_msg("interface %s already configured", iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001334 continue;
1335 }
1336 } else {
1337 /* ifdown */
Eric Andersen66a3af92003-01-27 17:41:19 +00001338 if (iface_state) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001339 bb_error_msg("interface %s not configured", iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001340 continue;
1341 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001342 }
1343 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001344
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001345#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001346 if ((cmds == iface_up) && run_mappings) {
Eric Andersen8320b422003-04-02 10:13:26 +00001347 struct mapping_defn_t *currmap;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001348
1349 for (currmap = defn->mappings; currmap; currmap = currmap->next) {
1350
1351 for (i = 0; i < currmap->n_matches; i++) {
1352 if (fnmatch(currmap->match[i], liface, 0) != 0)
1353 continue;
1354 if (verbose) {
Eric Andersen8320b422003-04-02 10:13:26 +00001355 printf("Running mapping script %s on %s\n", currmap->script, liface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001356 }
Eric Andersen8a931792003-07-03 10:20:29 +00001357 liface = run_mapping(iface, currmap);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001358 break;
1359 }
1360 }
1361 }
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001362#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001363
Eric Andersen8320b422003-04-02 10:13:26 +00001364
1365 iface_list = defn->ifaces;
1366 while (iface_list) {
1367 currif = (struct interface_defn_t *) iface_list->data;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001368 if (strcmp(liface, currif->iface) == 0) {
1369 char *oldiface = currif->iface;
1370
1371 okay = 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001372 currif->iface = iface;
1373
Eric Andersen8320b422003-04-02 10:13:26 +00001374 debug_noise("\nConfiguring interface %s (%s)\n", liface, currif->address_family->name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001375
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001376 /* Call the cmds function pointer, does either iface_up() or iface_down() */
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001377 if (cmds(currif) == -1) {
Glenn L McGrath469a1ea2004-07-21 12:21:39 +00001378 bb_error_msg("Don't seem to have all the variables for %s/%s.",
Eric Andersen8320b422003-04-02 10:13:26 +00001379 liface, currif->address_family->name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001380 }
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001381
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001382 currif->iface = oldiface;
1383 }
Eric Andersen8320b422003-04-02 10:13:26 +00001384 iface_list = iface_list->link;
1385 }
1386 if (verbose) {
1387 printf("\n");
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001388 }
1389
1390 if (!okay && !force) {
Eric Andersen8320b422003-04-02 10:13:26 +00001391 bb_error_msg("Ignoring unknown interface %s", liface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001392 } else {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001393 llist_t *iface_state = find_iface_state(state_list, iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001394
1395 if (cmds == iface_up) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001396 char *newiface = xmalloc(bb_strlen(iface) + 1 + bb_strlen(liface) + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001397 sprintf(newiface, "%s=%s", iface, liface);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001398 if (iface_state == NULL) {
Eric Andersen8320b422003-04-02 10:13:26 +00001399 state_list = llist_add_to_end(state_list, newiface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001400 } else {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001401 free(iface_state->data);
1402 iface_state->data = newiface;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001403 }
1404 } else if (cmds == iface_down) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001405 /* Remove an interface from the linked list */
1406 if (iface_state) {
1407 /* This needs to be done better */
1408 free(iface_state->data);
1409 free(iface_state->link);
1410 if (iface_state->link) {
1411 iface_state->data = iface_state->link->data;
1412 iface_state->link = iface_state->link->link;
1413 } else {
1414 iface_state->data = NULL;
1415 iface_state->link = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001416 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001417 }
1418 }
1419 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001420 }
1421
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001422 /* Actually write the new state */
Eric Andersen66a3af92003-01-27 17:41:19 +00001423 if (!no_act) {
1424
1425 if (state_fp)
1426 fclose(state_fp);
Manuel Novoa III cad53642003-03-19 09:13:01 +00001427 state_fp = bb_xfopen(statefile, "a+");
Eric Andersen66a3af92003-01-27 17:41:19 +00001428
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001429 if (ftruncate(fileno(state_fp), 0) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001430 bb_error_msg_and_die("failed to truncate statefile %s: %s", statefile, strerror(errno));
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001431 }
1432
1433 rewind(state_fp);
1434
1435 while (state_list) {
1436 if (state_list->data) {
1437 fputs(state_list->data, state_fp);
1438 fputc('\n', state_fp);
1439 }
1440 state_list = state_list->link;
1441 }
1442 fflush(state_fp);
1443 }
1444
1445 /* Cleanup */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001446 if (state_fp != NULL) {
1447 fclose(state_fp);
1448 state_fp = NULL;
1449 }
1450
1451 return 0;
1452}