blob: 3662421a672601b75671d3bf6c05915eab6ba487 [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 McGrath8e49caa2002-12-08 01:23:39 +00004 * Copyright (c) 2002 Glenn McGrath <bug1@optushome.com.au>
Eric Andersen8320b422003-04-02 10:13:26 +00005 * Copyright (c) 2003 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
59#define debug_noise(fmt, args...)
60#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;
75
76 prev = NULL;
77 tmp = list_head;
78 while(tmp) {
79 prev = tmp;
80 tmp = tmp->link;
81 }
82 if (prev) {
83 prev->link = new_item;
84 } 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 Andersen8320b422003-04-02 10:13:26 +0000126struct interface_defn_t
127{
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 Andersen8320b422003-04-02 10:13:26 +0000548static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000549{
Eric Andersen3c8bca32003-06-20 10:02:29 +0000550 int result = 0;
Eric Andersen8320b422003-04-02 10:13:26 +0000551 if (execable("/sbin/udhcpc")) {
552 execute("kill -9 `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000553 } else if (execable("/sbin/pump")) {
Eric Andersen8320b422003-04-02 10:13:26 +0000554 result = execute("pump -i %iface% -k", ifd, exec);
555 } else if (execable("/sbin/dhclient")) {
556 execute("kill -9 `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000557 } else if (execable("/sbin/dhcpcd")) {
Eric Andersen8320b422003-04-02 10:13:26 +0000558 result = execute("dhcpcd -k %iface%", ifd, exec);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000559 }
Eric Andersen8320b422003-04-02 10:13:26 +0000560 return (result || execute("ifconfig %iface% down", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000561}
562
Eric Andersen8320b422003-04-02 10:13:26 +0000563static int bootp_up(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000564{
Eric Andersen8320b422003-04-02 10:13:26 +0000565 return( execute("bootpc [[--bootfile %bootfile%]] --dev %iface% "
566 "[[--server %server%]] [[--hwaddr %hwaddr%]] "
567 "--returniffail --serverbcast", ifd, exec));
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000568}
569
Eric Andersen8320b422003-04-02 10:13:26 +0000570static int bootp_down(struct interface_defn_t *ifd, execfn *exec)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +0000571{
Eric Andersenfdd2a0f2003-08-06 09:23:44 +0000572#ifdef CONFIG_FEATURE_IFUPDOWN_IP
573 return(execute("ip link set %iface% down", ifd, exec));
574#else
575 return(execute("ifconfig %iface% down", ifd, exec));
576#endif
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 Andersen8320b422003-04-02 10:13:26 +0000601static struct method_t methods[] =
602{
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 Andersen8320b422003-04-02 10:13:26 +0000611struct address_family_t addr_inet =
612{
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) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000802 bb_error_msg("unknown address type \"%s\"", buf);
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) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000808 bb_error_msg("unknown method \"%s\"", buf);
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 }
888 debug_noise("\t%s=%s\n", currif->option[currif->n_options].name,
889 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 Andersen51ed2422003-09-12 05:59:53 +00001026 char *buf[100];
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 Andersen51ed2422003-09-12 05:59:53 +00001034
1035 bb_xasprintf(buf, "run-parts /etc/network/if-%s.d", opt);
1036 (*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 int result;
1048 if (!iface->method->up(iface,check)) return -1;
1049 set_environ(iface, "start");
1050 result = execute_all(iface, doit, "pre-up");
1051 result += iface->method->up(iface, doit);
1052 result += execute_all(iface, doit, "up");
1053 return(result);
1054}
1055
1056static int iface_down(struct interface_defn_t *iface)
1057{
1058 int result;
1059 if (!iface->method->down(iface,check)) return -1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001060 set_environ(iface, "stop");
Eric Andersen8320b422003-04-02 10:13:26 +00001061 result = execute_all(iface, doit, "down");
1062 result += iface->method->down(iface, doit);
1063 result += execute_all(iface, doit, "post-down");
1064 return(result);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001065}
1066
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001067#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001068static int popen2(FILE **in, FILE **out, char *command, ...)
1069{
1070 va_list ap;
1071 char *argv[11] = { command };
1072 int argc;
1073 int infd[2], outfd[2];
1074 pid_t pid;
1075
1076 argc = 1;
1077 va_start(ap, command);
1078 while ((argc < 10) && (argv[argc] = va_arg(ap, char *))) {
1079 argc++;
1080 }
1081 argv[argc] = NULL; /* make sure */
1082 va_end(ap);
1083
1084 if (pipe(infd) != 0) {
1085 return 0;
1086 }
1087
1088 if (pipe(outfd) != 0) {
1089 close(infd[0]);
1090 close(infd[1]);
1091 return 0;
1092 }
1093
1094 fflush(NULL);
1095 switch (pid = fork()) {
Eric Andersen8320b422003-04-02 10:13:26 +00001096 case -1: /* failure */
1097 close(infd[0]);
1098 close(infd[1]);
1099 close(outfd[0]);
1100 close(outfd[1]);
1101 return 0;
1102 case 0: /* child */
1103 dup2(infd[0], 0);
1104 dup2(outfd[1], 1);
1105 close(infd[0]);
1106 close(infd[1]);
1107 close(outfd[0]);
1108 close(outfd[1]);
1109 execvp(command, argv);
1110 exit(127);
1111 default: /* parent */
1112 *in = fdopen(infd[1], "w");
1113 *out = fdopen(outfd[0], "r");
1114 close(infd[0]);
1115 close(outfd[1]);
1116 return pid;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001117 }
1118 /* unreached */
1119}
1120
Eric Andersen8a931792003-07-03 10:20:29 +00001121static char * run_mapping(char *physical, struct mapping_defn_t * map)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001122{
1123 FILE *in, *out;
1124 int i, status;
1125 pid_t pid;
1126
Eric Andersen8a931792003-07-03 10:20:29 +00001127 char *logical = bb_xstrdup(physical);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001128
Eric Andersen8a931792003-07-03 10:20:29 +00001129 /* Run the mapping script. */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001130 pid = popen2(&in, &out, map->script, physical, NULL);
Eric Andersen8a931792003-07-03 10:20:29 +00001131
1132 /* popen2() returns 0 on failure. */
1133 if (pid == 0)
1134 return logical;
1135
1136 /* Write mappings to stdin of mapping script. */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001137 for (i = 0; i < map->n_mappings; i++) {
1138 fprintf(in, "%s\n", map->mapping[i]);
1139 }
1140 fclose(in);
1141 waitpid(pid, &status, 0);
Eric Andersen8a931792003-07-03 10:20:29 +00001142
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001143 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
Eric Andersen8a931792003-07-03 10:20:29 +00001144 /* If the mapping script exited successfully, try to
1145 * grab a line of output and use that as the name of the
1146 * logical interface. */
1147 char *new_logical = (char *)xmalloc(MAX_INTERFACE_LENGTH);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001148
Eric Andersen233b1702003-06-05 19:37:01 +00001149 if (fgets(new_logical, MAX_INTERFACE_LENGTH, out)) {
Eric Andersen8a931792003-07-03 10:20:29 +00001150 /* If we are able to read a line of output from the script,
1151 * remove any trailing whitespace and use this value
1152 * as the name of the logical interface. */
Eric Andersen233b1702003-06-05 19:37:01 +00001153 char *pch = new_logical + bb_strlen(new_logical) - 1;
1154
1155 while (pch >= new_logical && isspace(*pch))
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001156 *(pch--) = '\0';
Eric Andersen8a931792003-07-03 10:20:29 +00001157
1158 free(logical);
1159 logical = new_logical;
1160 } else {
1161 /* If we are UNABLE to read a line of output, discard are
1162 * freshly allocated memory. */
1163 free(new_logical);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001164 }
1165 }
Eric Andersen8a931792003-07-03 10:20:29 +00001166
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001167 fclose(out);
1168
Eric Andersen8a931792003-07-03 10:20:29 +00001169 return logical;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001170}
Eric Andersen8a931792003-07-03 10:20:29 +00001171#endif /* CONFIG_FEATURE_IFUPDOWN_MAPPING */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001172
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001173static llist_t *find_iface_state(llist_t *state_list, const char *iface)
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001174{
Manuel Novoa III cad53642003-03-19 09:13:01 +00001175 unsigned short iface_len = bb_strlen(iface);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001176 llist_t *search = state_list;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001177
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001178 while (search) {
1179 if ((strncmp(search->data, iface, iface_len) == 0) &&
Eric Andersen8320b422003-04-02 10:13:26 +00001180 (search->data[iface_len] == '=')) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001181 return(search);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001182 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001183 search = search->link;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001184 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001185 return(NULL);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001186}
1187
1188extern int ifupdown_main(int argc, char **argv)
1189{
Eric Andersen8320b422003-04-02 10:13:26 +00001190 int (*cmds) (struct interface_defn_t *) = NULL;
1191 struct interfaces_file_t *defn;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001192 FILE *state_fp = NULL;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001193 llist_t *state_list = NULL;
1194 llist_t *target_list = NULL;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001195 char *interfaces = "/etc/network/interfaces";
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001196 const char *statefile = "/var/run/ifstate";
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001197
Glenn L McGrath398ff9d2002-12-06 11:51:46 +00001198#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001199 int run_mappings = 1;
Glenn L McGrath398ff9d2002-12-06 11:51:46 +00001200#endif
1201 int do_all = 0;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001202 int force = 0;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001203 int i;
1204
Manuel Novoa III cad53642003-03-19 09:13:01 +00001205 if (bb_applet_name[2] == 'u') {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001206 /* ifup command */
1207 cmds = iface_up;
1208 } else {
1209 /* ifdown command */
1210 cmds = iface_down;
1211 }
1212
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001213#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Eric Andersen8320b422003-04-02 10:13:26 +00001214 while ((i = getopt(argc, argv, "i:hvnamf")) != -1)
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001215#else
Eric Andersen8320b422003-04-02 10:13:26 +00001216 while ((i = getopt(argc, argv, "i:hvnaf")) != -1)
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001217#endif
Eric Andersen8320b422003-04-02 10:13:26 +00001218 {
1219 switch (i) {
1220 case 'i': /* interfaces */
1221 interfaces = bb_xstrdup(optarg);
1222 break;
1223 case 'v': /* verbose */
1224 verbose = 1;
1225 break;
1226 case 'a': /* all */
1227 do_all = 1;
1228 break;
1229 case 'n': /* no-act */
1230 no_act = 1;
1231 break;
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001232#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Eric Andersen8320b422003-04-02 10:13:26 +00001233 case 'm': /* no-mappings */
1234 run_mappings = 0;
1235 break;
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001236#endif
Eric Andersen8320b422003-04-02 10:13:26 +00001237 case 'f': /* force */
1238 force = 1;
1239 break;
1240 default:
1241 bb_show_usage();
1242 break;
1243 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001244 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001245
1246 if (argc - optind > 0) {
1247 if (do_all) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001248 bb_show_usage();
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001249 }
1250 } else {
1251 if (!do_all) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001252 bb_show_usage();
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001253 }
1254 }
1255
Eric Andersen8320b422003-04-02 10:13:26 +00001256 debug_noise("reading %s file:\n", interfaces);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001257 defn = read_interfaces(interfaces);
Eric Andersen8320b422003-04-02 10:13:26 +00001258 debug_noise("\ndone reading %s\n\n", interfaces);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001259
Eric Andersen3c8bca32003-06-20 10:02:29 +00001260 if (!defn) {
1261 exit(EXIT_FAILURE);
1262 }
1263
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001264 if (no_act) {
1265 state_fp = fopen(statefile, "r");
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001266 }
1267
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001268 /* Create a list of interfaces to work on */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001269 if (do_all) {
1270 if (cmds == iface_up) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001271 target_list = defn->autointerfaces;
Eric Andersen8320b422003-04-02 10:13:26 +00001272 } else {
1273#if 0
1274 /* iface_down */
1275 llist_t *new_item;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001276 const llist_t *list = state_list;
1277 while (list) {
Eric Andersen8320b422003-04-02 10:13:26 +00001278 new_item = xmalloc(sizeof(llist_t));
1279 new_item->data = strdup(list->data);
1280 new_item->link = NULL;
1281 list = target_list;
1282 if (list == NULL)
1283 target_list = new_item;
1284 else {
1285 while (list->link) {
1286 list = list->link;
1287 }
1288 list = new_item;
1289 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001290 list = list->link;
1291 }
Eric Andersen66a3af92003-01-27 17:41:19 +00001292 target_list = defn->autointerfaces;
Eric Andersen8320b422003-04-02 10:13:26 +00001293#else
1294
1295 /* iface_down */
1296 const llist_t *list = state_list;
1297 while (list) {
1298 target_list = llist_add_to_end(target_list, strdup(list->data));
1299 list = list->link;
1300 }
1301 target_list = defn->autointerfaces;
1302#endif
1303 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001304 } else {
Eric Andersen8320b422003-04-02 10:13:26 +00001305 target_list = llist_add_to_end(target_list, argv[optind]);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001306 }
1307
1308
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001309 /* Update the interfaces */
1310 while (target_list) {
Eric Andersen8320b422003-04-02 10:13:26 +00001311 llist_t *iface_list;
1312 struct interface_defn_t *currif;
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001313 char *iface;
1314 char *liface;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001315 char *pch;
1316 int okay = 0;
1317
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001318 iface = strdup(target_list->data);
1319 target_list = target_list->link;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001320
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001321 pch = strchr(iface, '=');
1322 if (pch) {
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001323 *pch = '\0';
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001324 liface = strdup(pch + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001325 } else {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001326 liface = strdup(iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001327 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001328
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001329 if (!force) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001330 const llist_t *iface_state = find_iface_state(state_list, iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001331
1332 if (cmds == iface_up) {
1333 /* ifup */
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001334 if (iface_state) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001335 bb_error_msg("interface %s already configured", iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001336 continue;
1337 }
1338 } else {
1339 /* ifdown */
Eric Andersen66a3af92003-01-27 17:41:19 +00001340 if (iface_state) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001341 bb_error_msg("interface %s not configured", iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001342 continue;
1343 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001344 }
1345 }
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001346
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001347#ifdef CONFIG_FEATURE_IFUPDOWN_MAPPING
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001348 if ((cmds == iface_up) && run_mappings) {
Eric Andersen8320b422003-04-02 10:13:26 +00001349 struct mapping_defn_t *currmap;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001350
1351 for (currmap = defn->mappings; currmap; currmap = currmap->next) {
1352
1353 for (i = 0; i < currmap->n_matches; i++) {
1354 if (fnmatch(currmap->match[i], liface, 0) != 0)
1355 continue;
1356 if (verbose) {
Eric Andersen8320b422003-04-02 10:13:26 +00001357 printf("Running mapping script %s on %s\n", currmap->script, liface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001358 }
Eric Andersen8a931792003-07-03 10:20:29 +00001359 liface = run_mapping(iface, currmap);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001360 break;
1361 }
1362 }
1363 }
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001364#endif
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001365
Eric Andersen8320b422003-04-02 10:13:26 +00001366
1367 iface_list = defn->ifaces;
1368 while (iface_list) {
1369 currif = (struct interface_defn_t *) iface_list->data;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001370 if (strcmp(liface, currif->iface) == 0) {
1371 char *oldiface = currif->iface;
1372
1373 okay = 1;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001374 currif->iface = iface;
1375
Eric Andersen8320b422003-04-02 10:13:26 +00001376 debug_noise("\nConfiguring interface %s (%s)\n", liface, currif->address_family->name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001377
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001378 /* Call the cmds function pointer, does either iface_up() or iface_down() */
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001379 if (cmds(currif) == -1) {
Eric Andersen8320b422003-04-02 10:13:26 +00001380 bb_error_msg("Don't seem to be have all the variables for %s/%s.",
1381 liface, currif->address_family->name);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001382 }
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +00001383
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001384 currif->iface = oldiface;
1385 }
Eric Andersen8320b422003-04-02 10:13:26 +00001386 iface_list = iface_list->link;
1387 }
1388 if (verbose) {
1389 printf("\n");
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001390 }
1391
1392 if (!okay && !force) {
Eric Andersen8320b422003-04-02 10:13:26 +00001393 bb_error_msg("Ignoring unknown interface %s", liface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001394 } else {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001395 llist_t *iface_state = find_iface_state(state_list, iface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001396
1397 if (cmds == iface_up) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001398 char *newiface = xmalloc(bb_strlen(iface) + 1 + bb_strlen(liface) + 1);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001399 sprintf(newiface, "%s=%s", iface, liface);
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001400 if (iface_state == NULL) {
Eric Andersen8320b422003-04-02 10:13:26 +00001401 state_list = llist_add_to_end(state_list, newiface);
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001402 } else {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001403 free(iface_state->data);
1404 iface_state->data = newiface;
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001405 }
1406 } else if (cmds == iface_down) {
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001407 /* Remove an interface from the linked list */
1408 if (iface_state) {
1409 /* This needs to be done better */
1410 free(iface_state->data);
1411 free(iface_state->link);
1412 if (iface_state->link) {
1413 iface_state->data = iface_state->link->data;
1414 iface_state->link = iface_state->link->link;
1415 } else {
1416 iface_state->data = NULL;
1417 iface_state->link = NULL;
1418 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001419 }
1420 }
1421 }
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001422 }
1423
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001424 /* Actually write the new state */
Eric Andersen66a3af92003-01-27 17:41:19 +00001425 if (!no_act) {
1426
1427 if (state_fp)
1428 fclose(state_fp);
Manuel Novoa III cad53642003-03-19 09:13:01 +00001429 state_fp = bb_xfopen(statefile, "a+");
Eric Andersen66a3af92003-01-27 17:41:19 +00001430
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001431 if (ftruncate(fileno(state_fp), 0) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001432 bb_error_msg_and_die("failed to truncate statefile %s: %s", statefile, strerror(errno));
Glenn L McGrath8e49caa2002-12-08 01:23:39 +00001433 }
1434
1435 rewind(state_fp);
1436
1437 while (state_list) {
1438 if (state_list->data) {
1439 fputs(state_list->data, state_fp);
1440 fputc('\n', state_fp);
1441 }
1442 state_list = state_list->link;
1443 }
1444 fflush(state_fp);
1445 }
1446
1447 /* Cleanup */
Glenn L McGrath021fa7d2002-11-09 09:34:15 +00001448 if (state_fp != NULL) {
1449 fclose(state_fp);
1450 state_fp = NULL;
1451 }
1452
1453 return 0;
1454}