2003-04-02 15:43:26 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-09 15:04:15 +05:30
|
|
|
/*
|
|
|
|
* ifupdown for busybox
|
2007-09-21 18:46:32 +05:30
|
|
|
* Copyright (c) 2002 Glenn McGrath
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (c) 2003-2004 Erik Andersen <andersen@codepoet.org>
|
2002-12-08 06:53:39 +05:30
|
|
|
*
|
|
|
|
* Based on ifupdown v 0.6.4 by Anthony Towns
|
2002-11-09 15:04:15 +05:30
|
|
|
* Copyright (c) 1999 Anthony Towns <aj@azure.humbug.org.au>
|
|
|
|
*
|
2002-12-06 17:21:46 +05:30
|
|
|
* Changes to upstream version
|
2002-12-08 06:53:39 +05:30
|
|
|
* Remove checks for kernel version, assume kernel version 2.2.0 or better.
|
2002-12-06 17:21:46 +05:30
|
|
|
* Lines in the interfaces file cannot wrap.
|
2007-07-20 03:19:30 +05:30
|
|
|
* To adhere to the FHS, the default state file is /var/run/ifstate
|
|
|
|
* (defined via CONFIG_IFUPDOWN_IFSTATE_PATH) and can be overridden by build
|
|
|
|
* configuration.
|
2002-11-09 15:04:15 +05:30
|
|
|
*
|
2005-10-28 14:54:33 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2002-11-09 15:04:15 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <fnmatch.h>
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
#define MAX_OPT_DEPTH 10
|
|
|
|
#define EUNBALBRACK 10001
|
|
|
|
#define EUNDEFVAR 10002
|
|
|
|
#define EUNBALPER 10000
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_MAPPING
|
2003-06-06 01:07:01 +05:30
|
|
|
#define MAX_INTERFACE_LENGTH 10
|
|
|
|
#endif
|
2003-04-02 15:43:26 +05:30
|
|
|
|
2008-11-15 02:48:45 +05:30
|
|
|
#define UDHCPC_CMD_OPTIONS CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS
|
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#define debug_noise(args...) /*fprintf(stderr, args)*/
|
2003-04-02 15:43:26 +05:30
|
|
|
|
|
|
|
/* Forward declaration */
|
|
|
|
struct interface_defn_t;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-11-27 22:29:15 +05:30
|
|
|
typedef int execfn(char *command);
|
2003-04-02 15:43:26 +05:30
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
struct method_t {
|
|
|
|
const char *name;
|
2006-02-28 09:23:14 +05:30
|
|
|
int (*up)(struct interface_defn_t *ifd, execfn *e);
|
|
|
|
int (*down)(struct interface_defn_t *ifd, execfn *e);
|
2003-04-02 15:43:26 +05:30
|
|
|
};
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
struct address_family_t {
|
|
|
|
const char *name;
|
2002-11-09 15:04:15 +05:30
|
|
|
int n_methods;
|
2006-09-27 02:05:30 +05:30
|
|
|
const struct method_t *method;
|
2003-04-02 15:43:26 +05:30
|
|
|
};
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
struct mapping_defn_t {
|
2003-04-02 15:43:26 +05:30
|
|
|
struct mapping_defn_t *next;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
int max_matches;
|
|
|
|
int n_matches;
|
|
|
|
char **match;
|
|
|
|
|
|
|
|
char *script;
|
|
|
|
|
|
|
|
int max_mappings;
|
|
|
|
int n_mappings;
|
|
|
|
char **mapping;
|
2003-04-02 15:43:26 +05:30
|
|
|
};
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
struct variable_t {
|
2002-11-09 15:04:15 +05:30
|
|
|
char *name;
|
|
|
|
char *value;
|
2003-04-02 15:43:26 +05:30
|
|
|
};
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
struct interface_defn_t {
|
2006-09-27 02:05:30 +05:30
|
|
|
const struct address_family_t *address_family;
|
|
|
|
const struct method_t *method;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-02-28 09:23:14 +05:30
|
|
|
char *iface;
|
2002-11-09 15:04:15 +05:30
|
|
|
int max_options;
|
|
|
|
int n_options;
|
2003-04-02 15:43:26 +05:30
|
|
|
struct variable_t *option;
|
2002-11-09 15:04:15 +05:30
|
|
|
};
|
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
struct interfaces_file_t {
|
2002-12-08 06:53:39 +05:30
|
|
|
llist_t *autointerfaces;
|
2003-04-02 15:43:26 +05:30
|
|
|
llist_t *ifaces;
|
|
|
|
struct mapping_defn_t *mappings;
|
|
|
|
};
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-23 18:19:01 +05:30
|
|
|
#define OPTION_STR "anvf" USE_FEATURE_IFUPDOWN_MAPPING("m") "i:"
|
|
|
|
enum {
|
|
|
|
OPT_do_all = 0x1,
|
|
|
|
OPT_no_act = 0x2,
|
|
|
|
OPT_verbose = 0x4,
|
|
|
|
OPT_force = 0x8,
|
|
|
|
OPT_no_mappings = 0x10,
|
|
|
|
};
|
2006-10-06 15:19:47 +05:30
|
|
|
#define DO_ALL (option_mask32 & OPT_do_all)
|
|
|
|
#define NO_ACT (option_mask32 & OPT_no_act)
|
|
|
|
#define VERBOSE (option_mask32 & OPT_verbose)
|
|
|
|
#define FORCE (option_mask32 & OPT_force)
|
|
|
|
#define NO_MAPPINGS (option_mask32 & OPT_no_mappings)
|
2006-09-23 18:19:01 +05:30
|
|
|
|
2006-12-20 04:31:33 +05:30
|
|
|
static char **my_environ;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
static const char *startup_PATH;
|
2006-09-27 19:44:51 +05:30
|
|
|
|
2006-06-21 04:33:27 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IPV4 || ENABLE_FEATURE_IFUPDOWN_IPV6
|
|
|
|
|
2006-11-23 20:37:38 +05:30
|
|
|
static void addstr(char **bufp, const char *str, size_t str_length)
|
|
|
|
{
|
|
|
|
/* xasprintf trick will be smaller, but we are often
|
|
|
|
* called with str_length == 1 - don't want to have
|
|
|
|
* THAT much of malloc/freeing! */
|
|
|
|
char *buf = *bufp;
|
|
|
|
int len = (buf ? strlen(buf) : 0);
|
|
|
|
str_length++;
|
|
|
|
buf = xrealloc(buf, len + str_length);
|
|
|
|
/* copies at most str_length-1 chars! */
|
|
|
|
safe_strncpy(buf + len, str, str_length);
|
|
|
|
*bufp = buf;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-10-12 03:46:56 +05:30
|
|
|
static int strncmpz(const char *l, const char *r, size_t llen)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
int i = strncmp(l, r, llen);
|
|
|
|
|
2006-11-23 20:37:38 +05:30
|
|
|
if (i == 0)
|
2006-09-27 02:05:30 +05:30
|
|
|
return -r[llen];
|
2006-11-23 20:37:38 +05:30
|
|
|
return i;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-10-12 03:46:56 +05:30
|
|
|
static char *get_var(const char *id, size_t idlen, struct interface_defn_t *ifd)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (strncmpz(id, "iface", idlen) == 0) {
|
2007-11-23 09:09:45 +05:30
|
|
|
static char *label_buf;
|
|
|
|
//char *result;
|
|
|
|
|
|
|
|
free(label_buf);
|
|
|
|
label_buf = xstrdup(ifd->iface);
|
|
|
|
// Remove virtual iface suffix - why?
|
|
|
|
// ubuntu's ifup doesn't do this
|
|
|
|
//result = strchrnul(label_buf, ':');
|
|
|
|
//*result = '\0';
|
2006-09-27 02:05:30 +05:30
|
|
|
return label_buf;
|
2006-11-23 20:37:38 +05:30
|
|
|
}
|
|
|
|
if (strncmpz(id, "label", idlen) == 0) {
|
2006-09-27 02:05:30 +05:30
|
|
|
return ifd->iface;
|
2006-11-23 20:37:38 +05:30
|
|
|
}
|
|
|
|
for (i = 0; i < ifd->n_options; i++) {
|
|
|
|
if (strncmpz(id, ifd->option[i].name, idlen) == 0) {
|
|
|
|
return ifd->option[i].value;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
return NULL;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2007-07-03 13:56:24 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
|
|
|
static int count_netmask_bits(const char *dotted_quad)
|
|
|
|
{
|
|
|
|
// int result;
|
|
|
|
// unsigned a, b, c, d;
|
|
|
|
// /* Found a netmask... Check if it is dotted quad */
|
|
|
|
// if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
|
|
|
|
// return -1;
|
|
|
|
// if ((a|b|c|d) >> 8)
|
|
|
|
// return -1; /* one of numbers is >= 256 */
|
|
|
|
// d |= (a << 24) | (b << 16) | (c << 8); /* IP */
|
|
|
|
// d = ~d; /* 11110000 -> 00001111 */
|
|
|
|
|
|
|
|
/* Shorter version */
|
|
|
|
int result;
|
|
|
|
struct in_addr ip;
|
|
|
|
unsigned d;
|
|
|
|
|
|
|
|
if (inet_aton(dotted_quad, &ip) == 0)
|
|
|
|
return -1; /* malformed dotted IP */
|
|
|
|
d = ntohl(ip.s_addr); /* IP in host order */
|
|
|
|
d = ~d; /* 11110000 -> 00001111 */
|
|
|
|
if (d & (d+1)) /* check that it is in 00001111 form */
|
|
|
|
return -1; /* no it is not */
|
|
|
|
result = 32;
|
|
|
|
while (d) {
|
|
|
|
d >>= 1;
|
|
|
|
result--;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-12 03:46:56 +05:30
|
|
|
static char *parse(const char *command, struct interface_defn_t *ifd)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
size_t old_pos[MAX_OPT_DEPTH] = { 0 };
|
|
|
|
int okay[MAX_OPT_DEPTH] = { 1 };
|
|
|
|
int opt_depth = 1;
|
2006-12-20 04:31:33 +05:30
|
|
|
char *result = NULL;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
while (*command) {
|
|
|
|
switch (*command) {
|
2006-09-27 02:05:30 +05:30
|
|
|
default:
|
2006-11-23 20:37:38 +05:30
|
|
|
addstr(&result, command, 1);
|
2006-09-27 02:05:30 +05:30
|
|
|
command++;
|
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
if (command[1]) {
|
2006-11-23 20:37:38 +05:30
|
|
|
addstr(&result, command + 1, 1);
|
2006-09-27 02:05:30 +05:30
|
|
|
command += 2;
|
|
|
|
} else {
|
2006-11-23 20:37:38 +05:30
|
|
|
addstr(&result, command, 1);
|
2002-11-09 15:04:15 +05:30
|
|
|
command++;
|
2006-09-27 02:05:30 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '[':
|
|
|
|
if (command[1] == '[' && opt_depth < MAX_OPT_DEPTH) {
|
2006-12-20 04:31:33 +05:30
|
|
|
old_pos[opt_depth] = result ? strlen(result) : 0;
|
2006-09-27 02:05:30 +05:30
|
|
|
okay[opt_depth] = 1;
|
|
|
|
opt_depth++;
|
|
|
|
command += 2;
|
|
|
|
} else {
|
2006-11-23 20:37:38 +05:30
|
|
|
addstr(&result, "[", 1);
|
2006-09-27 02:05:30 +05:30
|
|
|
command++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ']':
|
|
|
|
if (command[1] == ']' && opt_depth > 1) {
|
|
|
|
opt_depth--;
|
|
|
|
if (!okay[opt_depth]) {
|
2006-11-23 20:37:38 +05:30
|
|
|
result[old_pos[opt_depth]] = '\0';
|
2003-04-02 15:43:26 +05:30
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
command += 2;
|
|
|
|
} else {
|
2006-11-23 20:37:38 +05:30
|
|
|
addstr(&result, "]", 1);
|
2006-09-27 02:05:30 +05:30
|
|
|
command++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '%':
|
|
|
|
{
|
|
|
|
char *nextpercent;
|
|
|
|
char *varvalue;
|
|
|
|
|
|
|
|
command++;
|
|
|
|
nextpercent = strchr(command, '%');
|
|
|
|
if (!nextpercent) {
|
|
|
|
errno = EUNBALPER;
|
|
|
|
free(result);
|
|
|
|
return NULL;
|
2003-04-02 15:43:26 +05:30
|
|
|
}
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
varvalue = get_var(command, nextpercent - command, ifd);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
if (varvalue) {
|
2008-08-12 07:05:34 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
|
|
|
/* "hwaddress <class> <address>":
|
|
|
|
* unlike ifconfig, ip doesnt want <class>
|
|
|
|
* (usually "ether" keyword). Skip it. */
|
|
|
|
if (strncmp(command, "hwaddress", 9) == 0) {
|
|
|
|
varvalue = skip_whitespace(skip_non_whitespace(varvalue));
|
|
|
|
}
|
|
|
|
#endif
|
2006-11-23 20:37:38 +05:30
|
|
|
addstr(&result, varvalue, strlen(varvalue));
|
2006-09-27 02:05:30 +05:30
|
|
|
} else {
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2006-09-27 02:05:30 +05:30
|
|
|
/* Sigh... Add a special case for 'ip' to convert from
|
|
|
|
* dotted quad to bit count style netmasks. */
|
2006-12-19 02:32:00 +05:30
|
|
|
if (strncmp(command, "bnmask", 6) == 0) {
|
2006-11-23 20:37:38 +05:30
|
|
|
unsigned res;
|
2006-09-27 02:05:30 +05:30
|
|
|
varvalue = get_var("netmask", 7, ifd);
|
2007-07-03 13:56:24 +05:30
|
|
|
if (varvalue) {
|
|
|
|
res = count_netmask_bits(varvalue);
|
|
|
|
if (res > 0) {
|
|
|
|
const char *argument = utoa(res);
|
|
|
|
addstr(&result, argument, strlen(argument));
|
|
|
|
command = nextpercent + 1;
|
|
|
|
break;
|
|
|
|
}
|
2003-04-02 15:43:26 +05:30
|
|
|
}
|
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
#endif
|
|
|
|
okay[opt_depth - 1] = 0;
|
2003-04-02 15:43:26 +05:30
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
|
|
|
|
command = nextpercent + 1;
|
|
|
|
}
|
|
|
|
break;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt_depth > 1) {
|
|
|
|
errno = EUNBALBRACK;
|
|
|
|
free(result);
|
2006-09-27 02:05:30 +05:30
|
|
|
return NULL;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (!okay[0]) {
|
|
|
|
errno = EUNDEFVAR;
|
|
|
|
free(result);
|
2006-09-27 02:05:30 +05:30
|
|
|
return NULL;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
return result;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
/* execute() returns 1 for success and 0 for failure */
|
2006-10-12 03:46:56 +05:30
|
|
|
static int execute(const char *command, struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
char *out;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
out = parse(command, ifd);
|
2006-12-20 04:31:33 +05:30
|
|
|
if (!out) {
|
2006-12-20 04:45:46 +05:30
|
|
|
/* parse error? */
|
2006-09-27 02:05:30 +05:30
|
|
|
return 0;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2006-12-20 04:45:46 +05:30
|
|
|
/* out == "": parsed ok but not all needed variables known, skip */
|
|
|
|
ret = out[0] ? (*exec)(out) : 1;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
free(out);
|
2004-07-22 05:26:31 +05:30
|
|
|
if (ret != 1) {
|
2006-09-27 02:05:30 +05:30
|
|
|
return 0;
|
2004-07-22 05:26:31 +05:30
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
return 1;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2005-12-14 19:43:15 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IPV6
|
2003-04-02 15:43:26 +05:30
|
|
|
static int loopback_up6(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2003-04-02 15:43:26 +05:30
|
|
|
int result;
|
2006-09-27 02:05:30 +05:30
|
|
|
result = execute("ip addr add ::1 dev %iface%", ifd, exec);
|
2003-07-03 15:50:29 +05:30
|
|
|
result += execute("ip link set %iface% up", ifd, exec);
|
2004-07-22 05:26:31 +05:30
|
|
|
return ((result == 2) ? 2 : 0);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ifconfig %iface% add ::1", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int loopback_down6(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ip link set %iface% down", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ifconfig %iface% del ::1", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int static_up6(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2003-04-02 15:43:26 +05:30
|
|
|
int result;
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
|
|
|
result = execute("ip addr add %address%/%netmask% dev %iface%[[ label %label%]]", ifd, exec);
|
2008-11-01 05:40:51 +05:30
|
|
|
result += execute("ip link set[[ mtu %mtu%]][[ addr %hwaddress%]] %iface% up", ifd, exec);
|
2006-12-19 02:32:00 +05:30
|
|
|
/* Was: "[[ ip ....%gateway% ]]". Removed extra spaces w/o checking */
|
|
|
|
result += execute("[[ip route add ::/0 via %gateway%]]", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2006-12-19 02:32:00 +05:30
|
|
|
result = execute("ifconfig %iface%[[ media %media%]][[ hw %hwaddress%]][[ mtu %mtu%]] up", ifd, exec);
|
2003-04-02 15:43:26 +05:30
|
|
|
result += execute("ifconfig %iface% add %address%/%netmask%", ifd, exec);
|
2006-12-19 02:32:00 +05:30
|
|
|
result += execute("[[route -A inet6 add ::/0 gw %gateway%]]", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2004-07-22 05:26:31 +05:30
|
|
|
return ((result == 3) ? 3 : 0);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int static_down6(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ip link set %iface% down", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ifconfig %iface% down", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2003-04-02 15:43:26 +05:30
|
|
|
static int v4tunnel_up(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2003-04-02 15:43:26 +05:30
|
|
|
int result;
|
|
|
|
result = execute("ip tunnel add %iface% mode sit remote "
|
2006-12-19 02:32:00 +05:30
|
|
|
"%endpoint%[[ local %local%]][[ ttl %ttl%]]", ifd, exec);
|
2003-07-03 15:50:29 +05:30
|
|
|
result += execute("ip link set %iface% up", ifd, exec);
|
2003-08-29 13:17:52 +05:30
|
|
|
result += execute("ip addr add %address%/%netmask% dev %iface%", ifd, exec);
|
2006-12-19 02:32:00 +05:30
|
|
|
result += execute("[[ip route add ::/0 via %gateway%]]", ifd, exec);
|
2004-07-22 05:26:31 +05:30
|
|
|
return ((result == 4) ? 4 : 0);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int v4tunnel_down(struct interface_defn_t * ifd, execfn * exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ip tunnel del %iface%", ifd, exec);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
static const struct method_t methods6[] = {
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2002-11-09 15:04:15 +05:30
|
|
|
{ "v4tunnel", v4tunnel_up, v4tunnel_down, },
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
{ "static", static_up6, static_down6, },
|
|
|
|
{ "loopback", loopback_up6, loopback_down6, },
|
|
|
|
};
|
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
static const struct address_family_t addr_inet6 = {
|
2002-11-09 15:04:15 +05:30
|
|
|
"inet6",
|
2007-06-25 16:25:35 +05:30
|
|
|
ARRAY_SIZE(methods6),
|
2002-11-09 15:04:15 +05:30
|
|
|
methods6
|
|
|
|
};
|
2006-12-19 02:32:00 +05:30
|
|
|
#endif /* FEATURE_IFUPDOWN_IPV6 */
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IPV4
|
2003-04-02 15:43:26 +05:30
|
|
|
static int loopback_up(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2003-04-02 15:43:26 +05:30
|
|
|
int result;
|
2003-08-06 14:53:44 +05:30
|
|
|
result = execute("ip addr add 127.0.0.1/8 dev %iface%", ifd, exec);
|
2003-07-03 15:50:29 +05:30
|
|
|
result += execute("ip link set %iface% up", ifd, exec);
|
2004-07-22 05:26:31 +05:30
|
|
|
return ((result == 2) ? 2 : 0);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ifconfig %iface% 127.0.0.1 up", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int loopback_down(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2003-04-02 15:43:26 +05:30
|
|
|
int result;
|
|
|
|
result = execute("ip addr flush dev %iface%", ifd, exec);
|
|
|
|
result += execute("ip link set %iface% down", ifd, exec);
|
2004-07-22 05:26:31 +05:30
|
|
|
return ((result == 2) ? 2 : 0);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2006-09-27 02:05:30 +05:30
|
|
|
return execute("ifconfig %iface% 127.0.0.1 down", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int static_up(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2003-04-02 15:43:26 +05:30
|
|
|
int result;
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
|
|
|
result = execute("ip addr add %address%/%bnmask%[[ broadcast %broadcast%]] "
|
|
|
|
"dev %iface%[[ peer %pointopoint%]][[ label %label%]]", ifd, exec);
|
2008-11-01 05:40:51 +05:30
|
|
|
result += execute("ip link set[[ mtu %mtu%]][[ addr %hwaddress%]] %iface% up", ifd, exec);
|
2006-12-19 02:32:00 +05:30
|
|
|
result += execute("[[ip route add default via %gateway% dev %iface%]]", ifd, exec);
|
2004-07-22 05:26:31 +05:30
|
|
|
return ((result == 3) ? 3 : 0);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2006-11-23 20:38:37 +05:30
|
|
|
/* ifconfig said to set iface up before it processes hw %hwaddress%,
|
|
|
|
* which then of course fails. Thus we run two separate ifconfig */
|
2006-12-19 02:32:00 +05:30
|
|
|
result = execute("ifconfig %iface%[[ hw %hwaddress%]][[ media %media%]][[ mtu %mtu%]] up",
|
2006-11-23 20:38:37 +05:30
|
|
|
ifd, exec);
|
2006-12-19 02:32:00 +05:30
|
|
|
result += execute("ifconfig %iface% %address% netmask %netmask%"
|
|
|
|
"[[ broadcast %broadcast%]][[ pointopoint %pointopoint%]] ",
|
2006-11-23 20:38:37 +05:30
|
|
|
ifd, exec);
|
2007-03-07 15:05:43 +05:30
|
|
|
result += execute("[[route add default gw %gateway% %iface%]]", ifd, exec);
|
2006-11-23 20:38:37 +05:30
|
|
|
return ((result == 3) ? 3 : 0);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int static_down(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2003-04-02 15:43:26 +05:30
|
|
|
int result;
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
2003-04-02 15:43:26 +05:30
|
|
|
result = execute("ip addr flush dev %iface%", ifd, exec);
|
|
|
|
result += execute("ip link set %iface% down", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#else
|
2008-08-20 04:32:23 +05:30
|
|
|
/* result = execute("[[route del default gw %gateway% %iface%]]", ifd, exec); */
|
|
|
|
/* Bringing the interface down deletes the routes in itself.
|
|
|
|
Otherwise this fails if we reference 'gateway' when using this from dhcp_down */
|
|
|
|
result = 1;
|
2003-04-02 15:43:26 +05:30
|
|
|
result += execute("ifconfig %iface% down", ifd, exec);
|
2003-01-14 03:10:38 +05:30
|
|
|
#endif
|
2004-07-22 05:26:31 +05:30
|
|
|
return ((result == 2) ? 2 : 0);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2007-05-03 03:34:38 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
|
2006-10-12 03:46:56 +05:30
|
|
|
struct dhcp_client_t
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-10-12 03:46:56 +05:30
|
|
|
const char *name;
|
|
|
|
const char *startcmd;
|
|
|
|
const char *stopcmd;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct dhcp_client_t ext_dhcp_clients[] = {
|
2007-05-03 03:34:38 +05:30
|
|
|
{ "dhcpcd",
|
|
|
|
"dhcpcd[[ -h %hostname%]][[ -i %vendor%]][[ -I %clientid%]][[ -l %leasetime%]] %iface%",
|
|
|
|
"dhcpcd -k %iface%",
|
2006-10-12 03:46:56 +05:30
|
|
|
},
|
|
|
|
{ "dhclient",
|
|
|
|
"dhclient -pf /var/run/dhclient.%iface%.pid %iface%",
|
|
|
|
"kill -9 `cat /var/run/dhclient.%iface%.pid` 2>/dev/null",
|
|
|
|
},
|
2007-05-03 03:34:38 +05:30
|
|
|
{ "pump",
|
|
|
|
"pump -i %iface%[[ -h %hostname%]][[ -l %leasehours%]]",
|
|
|
|
"pump -i %iface% -k",
|
|
|
|
},
|
|
|
|
{ "udhcpc",
|
2008-11-15 02:48:45 +05:30
|
|
|
"udhcpc " UDHCPC_CMD_OPTIONS " -p /var/run/udhcpc.%iface%.pid -i %iface%[[ -H %hostname%]][[ -c %clientid%]]"
|
2008-04-02 18:34:19 +05:30
|
|
|
"[[ -s %script%]][[ %udhcpc_opts%]]",
|
2007-07-03 13:56:24 +05:30
|
|
|
"kill `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null",
|
2006-10-12 03:46:56 +05:30
|
|
|
},
|
|
|
|
};
|
2007-05-03 03:34:38 +05:30
|
|
|
#endif /* ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCPC */
|
2006-10-03 02:27:10 +05:30
|
|
|
|
2008-03-17 14:34:04 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
|
2006-10-12 03:46:56 +05:30
|
|
|
static int dhcp_up(struct interface_defn_t *ifd, execfn *exec)
|
|
|
|
{
|
2008-05-16 03:00:45 +05:30
|
|
|
unsigned i;
|
2007-07-21 20:27:54 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
|
|
|
/* ip doesn't up iface when it configures it (unlike ifconfig) */
|
2008-11-01 05:40:51 +05:30
|
|
|
if (!execute("ip link set[[ addr %hwaddress%]] %iface% up", ifd, exec))
|
2008-08-12 07:05:34 +05:30
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
/* needed if we have hwaddress on dhcp iface */
|
|
|
|
if (!execute("ifconfig %iface%[[ hw %hwaddress%]] up", ifd, exec))
|
2007-07-21 20:27:54 +05:30
|
|
|
return 0;
|
|
|
|
#endif
|
2007-06-25 16:25:35 +05:30
|
|
|
for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
|
2006-10-12 03:46:56 +05:30
|
|
|
if (exists_execable(ext_dhcp_clients[i].name))
|
|
|
|
return execute(ext_dhcp_clients[i].startcmd, ifd, exec);
|
|
|
|
}
|
|
|
|
bb_error_msg("no dhcp clients found");
|
2006-09-27 19:44:51 +05:30
|
|
|
return 0;
|
2008-03-17 14:34:04 +05:30
|
|
|
}
|
2007-05-03 03:34:38 +05:30
|
|
|
#elif ENABLE_APP_UDHCPC
|
2008-03-17 14:34:04 +05:30
|
|
|
static int dhcp_up(struct interface_defn_t *ifd, execfn *exec)
|
|
|
|
{
|
2007-07-21 20:27:54 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IP
|
|
|
|
/* ip doesn't up iface when it configures it (unlike ifconfig) */
|
2008-11-01 05:40:51 +05:30
|
|
|
if (!execute("ip link set[[ addr %hwaddress%]] %iface% up", ifd, exec))
|
2008-08-12 07:05:34 +05:30
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
/* needed if we have hwaddress on dhcp iface */
|
|
|
|
if (!execute("ifconfig %iface%[[ hw %hwaddress%]] up", ifd, exec))
|
2007-07-21 20:27:54 +05:30
|
|
|
return 0;
|
|
|
|
#endif
|
2008-11-15 02:48:45 +05:30
|
|
|
return execute("udhcpc " UDHCPC_CMD_OPTIONS " -p /var/run/udhcpc.%iface%.pid "
|
2008-04-02 18:34:19 +05:30
|
|
|
"-i %iface%[[ -H %hostname%]][[ -c %clientid%]][[ -s %script%]][[ %udhcpc_opts%]]",
|
2007-05-03 03:34:38 +05:30
|
|
|
ifd, exec);
|
2008-03-17 14:34:04 +05:30
|
|
|
}
|
2007-05-03 03:34:38 +05:30
|
|
|
#else
|
2008-07-05 14:48:54 +05:30
|
|
|
static int dhcp_up(struct interface_defn_t *ifd UNUSED_PARAM,
|
|
|
|
execfn *exec UNUSED_PARAM)
|
2008-03-17 14:34:04 +05:30
|
|
|
{
|
2007-05-03 03:34:38 +05:30
|
|
|
return 0; /* no dhcp support */
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2008-03-17 14:34:04 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2008-03-17 14:34:04 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP
|
2003-04-02 15:43:26 +05:30
|
|
|
static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2008-08-20 04:32:23 +05:30
|
|
|
int result = 0;
|
2008-05-16 03:00:45 +05:30
|
|
|
unsigned i;
|
2008-08-20 04:32:23 +05:30
|
|
|
|
2007-06-25 16:25:35 +05:30
|
|
|
for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
|
2008-08-20 04:32:23 +05:30
|
|
|
if (exists_execable(ext_dhcp_clients[i].name)) {
|
|
|
|
result += execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
|
|
|
|
if (result)
|
|
|
|
break;
|
|
|
|
}
|
2006-10-12 03:46:56 +05:30
|
|
|
}
|
2008-08-20 04:32:23 +05:30
|
|
|
|
|
|
|
if (!result)
|
|
|
|
bb_error_msg("warning: no dhcp clients found and stopped");
|
|
|
|
|
|
|
|
/* Sleep a bit, otherwise static_down tries to bring down interface too soon,
|
|
|
|
and it may come back up because udhcpc is still shutting down */
|
|
|
|
usleep(100000);
|
|
|
|
result += static_down(ifd, exec);
|
|
|
|
return ((result == 3) ? 3 : 0);
|
2008-03-17 14:34:04 +05:30
|
|
|
}
|
2007-05-03 03:34:38 +05:30
|
|
|
#elif ENABLE_APP_UDHCPC
|
2008-03-17 14:34:04 +05:30
|
|
|
static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
|
|
|
|
{
|
2008-08-20 04:32:23 +05:30
|
|
|
int result;
|
|
|
|
result = execute("kill "
|
2007-05-03 03:34:38 +05:30
|
|
|
"`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
|
2008-08-20 04:32:23 +05:30
|
|
|
/* Also bring the hardware interface down since
|
|
|
|
killing the dhcp client alone doesn't do it.
|
|
|
|
This enables consecutive ifup->ifdown->ifup */
|
|
|
|
/* Sleep a bit, otherwise static_down tries to bring down interface too soon,
|
|
|
|
and it may come back up because udhcpc is still shutting down */
|
|
|
|
usleep(100000);
|
|
|
|
result += static_down(ifd, exec);
|
|
|
|
return ((result == 3) ? 3 : 0);
|
2008-03-17 14:34:04 +05:30
|
|
|
}
|
2007-05-03 03:34:38 +05:30
|
|
|
#else
|
2008-07-05 14:48:54 +05:30
|
|
|
static int dhcp_down(struct interface_defn_t *ifd UNUSED_PARAM,
|
|
|
|
execfn *exec UNUSED_PARAM)
|
2008-03-17 14:34:04 +05:30
|
|
|
{
|
2007-07-03 13:56:24 +05:30
|
|
|
return 0; /* no dhcp support */
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2008-03-17 14:34:04 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static int manual_up_down(struct interface_defn_t *ifd UNUSED_PARAM, execfn *exec UNUSED_PARAM)
|
2006-10-03 02:27:10 +05:30
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int bootp_up(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
return execute("bootpc[[ --bootfile %bootfile%]] --dev %iface%"
|
2007-08-02 15:44:29 +05:30
|
|
|
"[[ --server %server%]][[ --hwaddr %hwaddr%]]"
|
|
|
|
" --returniffail --serverbcast", ifd, exec);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int ppp_up(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
return execute("pon[[ %provider%]]", ifd, exec);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int ppp_down(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
return execute("poff[[ %provider%]]", ifd, exec);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int wvdial_up(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
return execute("start-stop-daemon --start -x wvdial "
|
|
|
|
"-p /var/run/wvdial.%iface% -b -m --[[ %provider%]]", ifd, exec);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int wvdial_down(struct interface_defn_t *ifd, execfn *exec)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
return execute("start-stop-daemon --stop -x wvdial "
|
2006-09-27 02:05:30 +05:30
|
|
|
"-p /var/run/wvdial.%iface% -s 2", ifd, exec);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
static const struct method_t methods[] = {
|
2006-10-03 02:27:10 +05:30
|
|
|
{ "manual", manual_up_down, manual_up_down, },
|
2002-11-09 15:04:15 +05:30
|
|
|
{ "wvdial", wvdial_up, wvdial_down, },
|
|
|
|
{ "ppp", ppp_up, ppp_down, },
|
|
|
|
{ "static", static_up, static_down, },
|
2004-07-30 20:01:01 +05:30
|
|
|
{ "bootp", bootp_up, static_down, },
|
2002-11-09 15:04:15 +05:30
|
|
|
{ "dhcp", dhcp_up, dhcp_down, },
|
|
|
|
{ "loopback", loopback_up, loopback_down, },
|
|
|
|
};
|
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
static const struct address_family_t addr_inet = {
|
2002-11-09 15:04:15 +05:30
|
|
|
"inet",
|
2007-06-25 16:25:35 +05:30
|
|
|
ARRAY_SIZE(methods),
|
2002-11-09 15:04:15 +05:30
|
|
|
methods
|
|
|
|
};
|
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#endif /* if ENABLE_FEATURE_IFUPDOWN_IPV4 */
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2003-01-15 04:56:57 +05:30
|
|
|
static char *next_word(char **buf)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2008-02-15 21:50:26 +05:30
|
|
|
unsigned length;
|
2003-01-15 04:56:57 +05:30
|
|
|
char *word;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2003-01-15 04:56:57 +05:30
|
|
|
/* Skip over leading whitespace */
|
2006-10-25 18:16:03 +05:30
|
|
|
word = skip_whitespace(*buf);
|
2003-06-20 15:32:29 +05:30
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
/* Stop on EOL */
|
|
|
|
if (*word == '\0')
|
2006-09-27 02:05:30 +05:30
|
|
|
return NULL;
|
2003-01-15 04:56:57 +05:30
|
|
|
|
2008-02-15 21:50:26 +05:30
|
|
|
/* Find the length of this word (can't be 0) */
|
2003-01-15 04:56:57 +05:30
|
|
|
length = strcspn(word, " \t\n");
|
2008-02-15 21:50:26 +05:30
|
|
|
|
|
|
|
/* Unless we are already at NUL, store NUL and advance */
|
|
|
|
if (word[length] != '\0')
|
|
|
|
word[length++] = '\0';
|
|
|
|
|
2003-01-15 04:56:57 +05:30
|
|
|
*buf = word + length;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2003-01-15 04:56:57 +05:30
|
|
|
return word;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
static const struct address_family_t *get_address_family(const struct address_family_t *const af[], char *name)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-11-21 01:10:36 +05:30
|
|
|
if (!name)
|
|
|
|
return NULL;
|
|
|
|
|
2002-11-09 15:04:15 +05:30
|
|
|
for (i = 0; af[i]; i++) {
|
|
|
|
if (strcmp(af[i]->name, name) == 0) {
|
|
|
|
return af[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
static const struct method_t *get_method(const struct address_family_t *af, char *name)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-11-21 01:10:36 +05:30
|
|
|
if (!name)
|
|
|
|
return NULL;
|
2007-10-07 02:17:53 +05:30
|
|
|
/* TODO: use index_in_str_array() */
|
2002-11-09 15:04:15 +05:30
|
|
|
for (i = 0; i < af->n_methods; i++) {
|
|
|
|
if (strcmp(af->method[i].name, name) == 0) {
|
|
|
|
return &af->method[i];
|
|
|
|
}
|
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
return NULL;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
static const llist_t *find_list_string(const llist_t *list, const char *string)
|
|
|
|
{
|
2006-11-21 01:10:36 +05:30
|
|
|
if (string == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
while (list) {
|
|
|
|
if (strcmp(list->data, string) == 0) {
|
2006-09-27 02:05:30 +05:30
|
|
|
return list;
|
2002-12-08 06:53:39 +05:30
|
|
|
}
|
|
|
|
list = list->link;
|
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
return NULL;
|
2002-12-08 06:53:39 +05:30
|
|
|
}
|
|
|
|
|
2004-09-14 22:54:59 +05:30
|
|
|
static struct interfaces_file_t *read_interfaces(const char *filename)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2008-02-16 18:49:19 +05:30
|
|
|
/* Let's try to be compatible.
|
|
|
|
*
|
|
|
|
* "man 5 interfaces" says:
|
|
|
|
* Lines starting with "#" are ignored. Note that end-of-line
|
|
|
|
* comments are NOT supported, comments must be on a line of their own.
|
|
|
|
* A line may be extended across multiple lines by making
|
|
|
|
* the last character a backslash.
|
|
|
|
*
|
|
|
|
* Seen elsewhere in example config file:
|
2008-07-08 08:55:25 +05:30
|
|
|
* A first non-blank "#" character makes the rest of the line
|
2008-02-16 18:49:19 +05:30
|
|
|
* be ignored. Blank lines are ignored. Lines may be indented freely.
|
|
|
|
* A "\" character at the very end of the line indicates the next line
|
|
|
|
* should be treated as a continuation of the current one.
|
|
|
|
*/
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_MAPPING
|
2003-04-02 15:43:26 +05:30
|
|
|
struct mapping_defn_t *currmap = NULL;
|
2002-12-06 14:05:55 +05:30
|
|
|
#endif
|
2003-04-02 15:43:26 +05:30
|
|
|
struct interface_defn_t *currif = NULL;
|
|
|
|
struct interfaces_file_t *defn;
|
2002-11-09 15:04:15 +05:30
|
|
|
FILE *f;
|
2003-01-15 04:56:57 +05:30
|
|
|
char *buf;
|
2008-02-16 18:49:19 +05:30
|
|
|
char *first_word;
|
|
|
|
char *rest_of_line;
|
2002-11-09 15:04:15 +05:30
|
|
|
enum { NONE, IFACE, MAPPING } currently_processing = NONE;
|
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
defn = xzalloc(sizeof(*defn));
|
2008-07-22 04:35:26 +05:30
|
|
|
f = xfopen_for_read(filename);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2008-03-27 01:34:27 +05:30
|
|
|
while ((buf = xmalloc_fgetline(f)) != NULL) {
|
2008-02-16 18:49:19 +05:30
|
|
|
#if ENABLE_DESKTOP
|
|
|
|
/* Trailing "\" concatenates lines */
|
|
|
|
char *p;
|
|
|
|
while ((p = last_char_is(buf, '\\')) != NULL) {
|
|
|
|
*p = '\0';
|
2008-03-27 01:34:27 +05:30
|
|
|
rest_of_line = xmalloc_fgetline(f);
|
2008-02-16 18:49:19 +05:30
|
|
|
if (!rest_of_line)
|
|
|
|
break;
|
|
|
|
p = xasprintf("%s%s", buf, rest_of_line);
|
|
|
|
free(buf);
|
|
|
|
free(rest_of_line);
|
|
|
|
buf = p;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
rest_of_line = buf;
|
|
|
|
first_word = next_word(&rest_of_line);
|
2008-07-08 08:55:25 +05:30
|
|
|
if (!first_word || *first_word == '#') {
|
2003-06-20 15:32:29 +05:30
|
|
|
free(buf);
|
2008-02-16 18:49:19 +05:30
|
|
|
continue; /* blank/comment line */
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
if (strcmp(first_word, "mapping") == 0) {
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_MAPPING
|
2008-02-15 21:50:26 +05:30
|
|
|
currmap = xzalloc(sizeof(*currmap));
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
while ((first_word = next_word(&rest_of_line)) != NULL) {
|
2008-07-08 10:44:36 +05:30
|
|
|
currmap->match = xrealloc_vector(currmap->match, 4, currmap->n_matches);
|
2008-02-16 18:49:19 +05:30
|
|
|
currmap->match[currmap->n_matches++] = xstrdup(first_word);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2008-02-15 21:50:26 +05:30
|
|
|
/*currmap->max_mappings = 0; - done by xzalloc */
|
|
|
|
/*currmap->n_mappings = 0;*/
|
|
|
|
/*currmap->mapping = NULL;*/
|
|
|
|
/*currmap->script = NULL;*/
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2003-04-02 15:43:26 +05:30
|
|
|
struct mapping_defn_t **where = &defn->mappings;
|
2002-11-09 15:04:15 +05:30
|
|
|
while (*where != NULL) {
|
|
|
|
where = &(*where)->next;
|
|
|
|
}
|
|
|
|
*where = currmap;
|
2008-02-15 21:50:26 +05:30
|
|
|
/*currmap->next = NULL;*/
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2003-04-02 15:43:26 +05:30
|
|
|
debug_noise("Added mapping\n");
|
2002-12-06 14:05:55 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
currently_processing = MAPPING;
|
2008-02-16 18:49:19 +05:30
|
|
|
} else if (strcmp(first_word, "iface") == 0) {
|
2006-09-27 02:05:30 +05:30
|
|
|
static const struct address_family_t *const addr_fams[] = {
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IPV4
|
2006-09-27 02:05:30 +05:30
|
|
|
&addr_inet,
|
2002-11-09 15:04:15 +05:30
|
|
|
#endif
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_IPV6
|
2006-09-27 02:05:30 +05:30
|
|
|
&addr_inet6,
|
2002-11-09 15:04:15 +05:30
|
|
|
#endif
|
2006-09-27 02:05:30 +05:30
|
|
|
NULL
|
|
|
|
};
|
|
|
|
char *iface_name;
|
|
|
|
char *address_family_name;
|
|
|
|
char *method_name;
|
|
|
|
llist_t *iface_list;
|
|
|
|
|
2008-02-15 21:50:26 +05:30
|
|
|
currif = xzalloc(sizeof(*currif));
|
2008-02-16 18:49:19 +05:30
|
|
|
iface_name = next_word(&rest_of_line);
|
|
|
|
address_family_name = next_word(&rest_of_line);
|
|
|
|
method_name = next_word(&rest_of_line);
|
2006-09-27 02:05:30 +05:30
|
|
|
|
2008-02-15 21:50:26 +05:30
|
|
|
if (method_name == NULL)
|
|
|
|
bb_error_msg_and_die("too few parameters for line \"%s\"", buf);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
/* ship any trailing whitespace */
|
2008-02-16 18:49:19 +05:30
|
|
|
rest_of_line = skip_whitespace(rest_of_line);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
if (rest_of_line[0] != '\0' /* && rest_of_line[0] != '#' */)
|
2008-02-15 21:50:26 +05:30
|
|
|
bb_error_msg_and_die("too many parameters \"%s\"", buf);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
currif->iface = xstrdup(iface_name);
|
2003-06-20 15:32:29 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
currif->address_family = get_address_family(addr_fams, address_family_name);
|
2008-02-15 21:50:26 +05:30
|
|
|
if (!currif->address_family)
|
|
|
|
bb_error_msg_and_die("unknown address type \"%s\"", address_family_name);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
currif->method = get_method(currif->address_family, method_name);
|
2008-02-15 21:50:26 +05:30
|
|
|
if (!currif->method)
|
|
|
|
bb_error_msg_and_die("unknown method \"%s\"", method_name);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 02:05:30 +05:30
|
|
|
for (iface_list = defn->ifaces; iface_list; iface_list = iface_list->link) {
|
|
|
|
struct interface_defn_t *tmp = (struct interface_defn_t *) iface_list->data;
|
2008-02-15 21:50:26 +05:30
|
|
|
if ((strcmp(tmp->iface, currif->iface) == 0)
|
|
|
|
&& (tmp->address_family == currif->address_family)
|
|
|
|
) {
|
|
|
|
bb_error_msg_and_die("duplicate interface \"%s\"", tmp->iface);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
llist_add_to_end(&(defn->ifaces), (char*)currif);
|
|
|
|
|
|
|
|
debug_noise("iface %s %s %s\n", currif->iface, address_family_name, method_name);
|
2002-11-09 15:04:15 +05:30
|
|
|
currently_processing = IFACE;
|
2008-02-16 18:49:19 +05:30
|
|
|
} else if (strcmp(first_word, "auto") == 0) {
|
|
|
|
while ((first_word = next_word(&rest_of_line)) != NULL) {
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
/* Check the interface isnt already listed */
|
2008-02-16 18:49:19 +05:30
|
|
|
if (find_list_string(defn->autointerfaces, first_word)) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die("interface declared auto twice \"%s\"", buf);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
/* Add the interface to the list */
|
2008-02-16 18:49:19 +05:30
|
|
|
llist_add_to_end(&(defn->autointerfaces), xstrdup(first_word));
|
|
|
|
debug_noise("\nauto %s\n", first_word);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
currently_processing = NONE;
|
|
|
|
} else {
|
|
|
|
switch (currently_processing) {
|
2006-09-27 02:05:30 +05:30
|
|
|
case IFACE:
|
2008-02-16 18:49:19 +05:30
|
|
|
if (rest_of_line[0] == '\0')
|
2008-02-15 21:50:26 +05:30
|
|
|
bb_error_msg_and_die("option with empty value \"%s\"", buf);
|
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
if (strcmp(first_word, "up") != 0
|
|
|
|
&& strcmp(first_word, "down") != 0
|
|
|
|
&& strcmp(first_word, "pre-up") != 0
|
|
|
|
&& strcmp(first_word, "post-down") != 0
|
2008-02-15 21:50:26 +05:30
|
|
|
) {
|
2006-09-27 02:05:30 +05:30
|
|
|
int i;
|
2008-02-15 21:50:26 +05:30
|
|
|
for (i = 0; i < currif->n_options; i++) {
|
2008-02-16 18:49:19 +05:30
|
|
|
if (strcmp(currif->option[i].name, first_word) == 0)
|
2008-02-15 21:50:26 +05:30
|
|
|
bb_error_msg_and_die("duplicate option \"%s\"", buf);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
}
|
|
|
|
if (currif->n_options >= currif->max_options) {
|
2008-02-15 21:50:26 +05:30
|
|
|
currif->max_options += 10;
|
2008-02-16 18:49:19 +05:30
|
|
|
currif->option = xrealloc(currif->option,
|
|
|
|
sizeof(*currif->option) * currif->max_options);
|
2006-09-27 02:05:30 +05:30
|
|
|
}
|
2008-02-16 18:49:19 +05:30
|
|
|
debug_noise("\t%s=%s\n", first_word, rest_of_line);
|
|
|
|
currif->option[currif->n_options].name = xstrdup(first_word);
|
|
|
|
currif->option[currif->n_options].value = xstrdup(rest_of_line);
|
2006-09-27 02:05:30 +05:30
|
|
|
currif->n_options++;
|
|
|
|
break;
|
|
|
|
case MAPPING:
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_MAPPING
|
2008-02-16 18:49:19 +05:30
|
|
|
if (strcmp(first_word, "script") == 0) {
|
2008-02-15 21:50:26 +05:30
|
|
|
if (currmap->script != NULL)
|
|
|
|
bb_error_msg_and_die("duplicate script in mapping \"%s\"", buf);
|
2008-02-16 18:49:19 +05:30
|
|
|
currmap->script = xstrdup(next_word(&rest_of_line));
|
|
|
|
} else if (strcmp(first_word, "map") == 0) {
|
2008-02-15 21:50:26 +05:30
|
|
|
if (currmap->n_mappings >= currmap->max_mappings) {
|
2006-09-27 02:05:30 +05:30
|
|
|
currmap->max_mappings = currmap->max_mappings * 2 + 1;
|
2008-02-16 18:49:19 +05:30
|
|
|
currmap->mapping = xrealloc(currmap->mapping,
|
|
|
|
sizeof(char *) * currmap->max_mappings);
|
2006-09-27 02:05:30 +05:30
|
|
|
}
|
2008-02-16 18:49:19 +05:30
|
|
|
currmap->mapping[currmap->n_mappings] = xstrdup(next_word(&rest_of_line));
|
2006-09-27 02:05:30 +05:30
|
|
|
currmap->n_mappings++;
|
|
|
|
} else {
|
2008-02-15 21:50:26 +05:30
|
|
|
bb_error_msg_and_die("misplaced option \"%s\"", buf);
|
2006-09-27 02:05:30 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case NONE:
|
|
|
|
default:
|
2008-02-15 21:50:26 +05:30
|
|
|
bb_error_msg_and_die("misplaced option \"%s\"", buf);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
}
|
2003-01-15 04:56:57 +05:30
|
|
|
free(buf);
|
2008-02-16 18:49:19 +05:30
|
|
|
} /* while (fgets) */
|
|
|
|
|
2002-11-09 15:04:15 +05:30
|
|
|
if (ferror(f) != 0) {
|
2007-07-03 13:56:24 +05:30
|
|
|
/* ferror does NOT set errno! */
|
|
|
|
bb_error_msg_and_die("%s: I/O error", filename);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
return defn;
|
|
|
|
}
|
|
|
|
|
2007-01-30 04:21:58 +05:30
|
|
|
static char *setlocalenv(const char *format, const char *name, const char *value)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
char *result;
|
|
|
|
char *here;
|
|
|
|
char *there;
|
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
result = xasprintf(format, name, value);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
for (here = there = result; *there != '=' && *there; there++) {
|
|
|
|
if (*there == '-')
|
|
|
|
*there = '_';
|
|
|
|
if (isalpha(*there))
|
|
|
|
*there = toupper(*there);
|
|
|
|
|
|
|
|
if (isalnum(*there) || *there == '_') {
|
|
|
|
*here = *there;
|
|
|
|
here++;
|
|
|
|
}
|
|
|
|
}
|
2006-05-08 01:50:34 +05:30
|
|
|
memmove(here, there, strlen(there) + 1);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-02-28 09:23:14 +05:30
|
|
|
static void set_environ(struct interface_defn_t *iface, const char *mode)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
char **environend;
|
|
|
|
int i;
|
|
|
|
const int n_env_entries = iface->n_options + 5;
|
|
|
|
char **ppch;
|
|
|
|
|
2006-12-20 04:31:33 +05:30
|
|
|
if (my_environ != NULL) {
|
|
|
|
for (ppch = my_environ; *ppch; ppch++) {
|
2002-11-09 15:04:15 +05:30
|
|
|
free(*ppch);
|
|
|
|
*ppch = NULL;
|
|
|
|
}
|
2006-12-20 04:31:33 +05:30
|
|
|
free(my_environ);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2006-12-20 04:31:33 +05:30
|
|
|
my_environ = xzalloc(sizeof(char *) * (n_env_entries + 1 /* for final NULL */ ));
|
|
|
|
environend = my_environ;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
for (i = 0; i < iface->n_options; i++) {
|
|
|
|
if (strcmp(iface->option[i].name, "up") == 0
|
2007-07-03 13:56:24 +05:30
|
|
|
|| strcmp(iface->option[i].name, "down") == 0
|
|
|
|
|| strcmp(iface->option[i].name, "pre-up") == 0
|
|
|
|
|| strcmp(iface->option[i].name, "post-down") == 0
|
|
|
|
) {
|
2002-11-09 15:04:15 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*(environend++) = setlocalenv("IF_%s=%s", iface->option[i].name, iface->option[i].value);
|
|
|
|
}
|
|
|
|
|
|
|
|
*(environend++) = setlocalenv("%s=%s", "IFACE", iface->iface);
|
|
|
|
*(environend++) = setlocalenv("%s=%s", "ADDRFAM", iface->address_family->name);
|
|
|
|
*(environend++) = setlocalenv("%s=%s", "METHOD", iface->method->name);
|
|
|
|
*(environend++) = setlocalenv("%s=%s", "MODE", mode);
|
2006-09-27 19:44:51 +05:30
|
|
|
*(environend++) = setlocalenv("%s=%s", "PATH", startup_PATH);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int doit(char *str)
|
|
|
|
{
|
2006-10-06 15:19:47 +05:30
|
|
|
if (option_mask32 & (OPT_no_act|OPT_verbose)) {
|
2006-09-27 02:05:30 +05:30
|
|
|
puts(str);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2006-10-06 15:19:47 +05:30
|
|
|
if (!(option_mask32 & OPT_no_act)) {
|
2002-11-09 15:04:15 +05:30
|
|
|
pid_t child;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
fflush(NULL);
|
2008-03-19 21:54:17 +05:30
|
|
|
child = vfork();
|
2006-12-20 04:45:46 +05:30
|
|
|
switch (child) {
|
2006-12-19 02:32:00 +05:30
|
|
|
case -1: /* failure */
|
2006-09-27 02:05:30 +05:30
|
|
|
return 0;
|
2006-12-19 02:32:00 +05:30
|
|
|
case 0: /* child */
|
2009-02-26 17:59:59 +05:30
|
|
|
execle(DEFAULT_SHELL, DEFAULT_SHELL, "-c", str, (char *) NULL, my_environ);
|
2008-03-19 21:54:17 +05:30
|
|
|
_exit(127);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2008-01-03 01:25:04 +05:30
|
|
|
safe_waitpid(child, &status, 0);
|
2002-11-09 15:04:15 +05:30
|
|
|
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2006-09-23 18:19:01 +05:30
|
|
|
return 1;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-02-28 09:23:14 +05:30
|
|
|
static int execute_all(struct interface_defn_t *ifd, const char *opt)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
int i;
|
2003-09-12 14:09:05 +05:30
|
|
|
char *buf;
|
2002-11-09 15:04:15 +05:30
|
|
|
for (i = 0; i < ifd->n_options; i++) {
|
|
|
|
if (strcmp(ifd->option[i].name, opt) == 0) {
|
2006-02-28 09:23:14 +05:30
|
|
|
if (!doit(ifd->option[i].value)) {
|
2002-11-09 15:04:15 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
buf = xasprintf("run-parts /etc/network/if-%s.d", opt);
|
2006-12-20 04:45:46 +05:30
|
|
|
/* heh, we don't bother free'ing it */
|
|
|
|
return doit(buf);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
static int check(char *str)
|
|
|
|
{
|
2003-04-02 15:43:26 +05:30
|
|
|
return str != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iface_up(struct interface_defn_t *iface)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2006-12-19 02:32:00 +05:30
|
|
|
if (!iface->method->up(iface, check)) return -1;
|
2002-11-09 15:04:15 +05:30
|
|
|
set_environ(iface, "start");
|
2006-02-28 09:23:14 +05:30
|
|
|
if (!execute_all(iface, "pre-up")) return 0;
|
2003-12-19 16:16:00 +05:30
|
|
|
if (!iface->method->up(iface, doit)) return 0;
|
2006-02-28 09:23:14 +05:30
|
|
|
if (!execute_all(iface, "up")) return 0;
|
2003-12-19 16:16:00 +05:30
|
|
|
return 1;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
static int iface_down(struct interface_defn_t *iface)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2003-04-02 15:43:26 +05:30
|
|
|
if (!iface->method->down(iface,check)) return -1;
|
2002-11-09 15:04:15 +05:30
|
|
|
set_environ(iface, "stop");
|
2006-02-28 09:23:14 +05:30
|
|
|
if (!execute_all(iface, "down")) return 0;
|
2003-12-19 16:16:00 +05:30
|
|
|
if (!iface->method->down(iface, doit)) return 0;
|
2006-02-28 09:23:14 +05:30
|
|
|
if (!execute_all(iface, "post-down")) return 0;
|
2003-12-19 16:16:00 +05:30
|
|
|
return 1;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_MAPPING
|
2008-02-16 18:49:19 +05:30
|
|
|
static int popen2(FILE **in, FILE **out, char *command, char *param)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2008-02-16 18:49:19 +05:30
|
|
|
char *argv[3] = { command, param, NULL };
|
2008-02-16 18:50:56 +05:30
|
|
|
struct fd_pair infd, outfd;
|
2002-11-09 15:04:15 +05:30
|
|
|
pid_t pid;
|
|
|
|
|
2008-02-16 18:50:56 +05:30
|
|
|
xpiped_pair(infd);
|
|
|
|
xpiped_pair(outfd);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
fflush(NULL);
|
2008-07-01 21:29:42 +05:30
|
|
|
pid = vfork();
|
2008-02-16 18:49:19 +05:30
|
|
|
|
2008-07-01 21:29:42 +05:30
|
|
|
switch (pid) {
|
|
|
|
case -1: /* failure */
|
|
|
|
bb_perror_msg_and_die("vfork");
|
|
|
|
case 0: /* child */
|
2008-02-16 18:49:19 +05:30
|
|
|
/* NB: close _first_, then move fds! */
|
2008-02-16 18:50:56 +05:30
|
|
|
close(infd.wr);
|
|
|
|
close(outfd.rd);
|
|
|
|
xmove_fd(infd.rd, 0);
|
|
|
|
xmove_fd(outfd.wr, 1);
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(command, argv);
|
2008-02-16 18:49:19 +05:30
|
|
|
_exit(127);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2008-02-16 18:49:19 +05:30
|
|
|
/* parent */
|
2008-02-16 18:50:56 +05:30
|
|
|
close(infd.rd);
|
|
|
|
close(outfd.wr);
|
|
|
|
*in = fdopen(infd.wr, "w");
|
|
|
|
*out = fdopen(outfd.rd, "r");
|
2008-02-16 18:49:19 +05:30
|
|
|
return pid;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
static char *run_mapping(char *physical, struct mapping_defn_t *map)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
|
|
|
FILE *in, *out;
|
|
|
|
int i, status;
|
|
|
|
pid_t pid;
|
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
char *logical = xstrdup(physical);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
/* Run the mapping script. Never fails. */
|
|
|
|
pid = popen2(&in, &out, map->script, physical);
|
2003-07-03 15:50:29 +05:30
|
|
|
|
|
|
|
/* Write mappings to stdin of mapping script. */
|
2002-11-09 15:04:15 +05:30
|
|
|
for (i = 0; i < map->n_mappings; i++) {
|
|
|
|
fprintf(in, "%s\n", map->mapping[i]);
|
|
|
|
}
|
|
|
|
fclose(in);
|
2008-01-03 01:25:04 +05:30
|
|
|
safe_waitpid(pid, &status, 0);
|
2003-07-03 15:50:29 +05:30
|
|
|
|
2002-11-09 15:04:15 +05:30
|
|
|
if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
|
2003-07-03 15:50:29 +05:30
|
|
|
/* If the mapping script exited successfully, try to
|
|
|
|
* grab a line of output and use that as the name of the
|
|
|
|
* logical interface. */
|
2008-03-27 01:34:27 +05:30
|
|
|
char *new_logical = xmalloc_fgetline(out);
|
2003-06-06 01:07:01 +05:30
|
|
|
|
2008-02-16 18:49:19 +05:30
|
|
|
if (new_logical) {
|
2003-07-03 15:50:29 +05:30
|
|
|
/* If we are able to read a line of output from the script,
|
|
|
|
* remove any trailing whitespace and use this value
|
|
|
|
* as the name of the logical interface. */
|
2006-05-08 01:50:34 +05:30
|
|
|
char *pch = new_logical + strlen(new_logical) - 1;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2003-06-06 01:07:01 +05:30
|
|
|
while (pch >= new_logical && isspace(*pch))
|
2002-11-09 15:04:15 +05:30
|
|
|
*(pch--) = '\0';
|
2003-07-03 15:50:29 +05:30
|
|
|
|
|
|
|
free(logical);
|
|
|
|
logical = new_logical;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
}
|
2003-07-03 15:50:29 +05:30
|
|
|
|
2002-11-09 15:04:15 +05:30
|
|
|
fclose(out);
|
|
|
|
|
2003-07-03 15:50:29 +05:30
|
|
|
return logical;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2006-12-19 02:32:00 +05:30
|
|
|
#endif /* FEATURE_IFUPDOWN_MAPPING */
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
static llist_t *find_iface_state(llist_t *state_list, const char *iface)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2008-02-16 18:49:19 +05:30
|
|
|
unsigned iface_len = strlen(iface);
|
2002-12-08 06:53:39 +05:30
|
|
|
llist_t *search = state_list;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
while (search) {
|
2007-05-03 03:34:38 +05:30
|
|
|
if ((strncmp(search->data, iface, iface_len) == 0)
|
2008-02-16 18:49:19 +05:30
|
|
|
&& (search->data[iface_len] == '=')
|
|
|
|
) {
|
2006-09-27 02:05:30 +05:30
|
|
|
return search;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2002-12-08 06:53:39 +05:30
|
|
|
search = search->link;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2006-09-27 02:05:30 +05:30
|
|
|
return NULL;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2007-05-03 03:08:44 +05:30
|
|
|
/* read the previous state from the state file */
|
|
|
|
static llist_t *read_iface_state(void)
|
|
|
|
{
|
|
|
|
llist_t *state_list = NULL;
|
2008-07-22 04:35:26 +05:30
|
|
|
FILE *state_fp = fopen_for_read(CONFIG_IFUPDOWN_IFSTATE_PATH);
|
2007-05-03 03:08:44 +05:30
|
|
|
|
|
|
|
if (state_fp) {
|
|
|
|
char *start, *end_ptr;
|
|
|
|
while ((start = xmalloc_fgets(state_fp)) != NULL) {
|
|
|
|
/* We should only need to check for a single character */
|
|
|
|
end_ptr = start + strcspn(start, " \t\n");
|
|
|
|
*end_ptr = '\0';
|
|
|
|
llist_add_to(&state_list, start);
|
|
|
|
}
|
|
|
|
fclose(state_fp);
|
|
|
|
}
|
|
|
|
return state_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int ifupdown_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int ifupdown_main(int argc, char **argv)
|
2002-11-09 15:04:15 +05:30
|
|
|
{
|
2008-02-15 21:50:26 +05:30
|
|
|
int (*cmds)(struct interface_defn_t *);
|
2003-04-02 15:43:26 +05:30
|
|
|
struct interfaces_file_t *defn;
|
2002-12-08 06:53:39 +05:30
|
|
|
llist_t *target_list = NULL;
|
2004-09-14 22:54:59 +05:30
|
|
|
const char *interfaces = "/etc/network/interfaces";
|
2007-03-20 01:24:56 +05:30
|
|
|
bool any_failures = 0;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
cmds = iface_down;
|
2006-10-04 02:30:43 +05:30
|
|
|
if (applet_name[2] == 'u') {
|
2002-11-09 15:04:15 +05:30
|
|
|
/* ifup command */
|
|
|
|
cmds = iface_up;
|
|
|
|
}
|
|
|
|
|
2007-08-18 21:02:12 +05:30
|
|
|
getopt32(argv, OPTION_STR, &interfaces);
|
2002-11-09 15:04:15 +05:30
|
|
|
if (argc - optind > 0) {
|
2006-09-23 18:19:01 +05:30
|
|
|
if (DO_ALL) bb_show_usage();
|
2006-12-19 02:32:00 +05:30
|
|
|
} else {
|
2006-09-23 18:19:01 +05:30
|
|
|
if (!DO_ALL) bb_show_usage();
|
2006-12-19 02:32:00 +05:30
|
|
|
}
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
debug_noise("reading %s file:\n", interfaces);
|
2002-11-09 15:04:15 +05:30
|
|
|
defn = read_interfaces(interfaces);
|
2003-04-02 15:43:26 +05:30
|
|
|
debug_noise("\ndone reading %s\n\n", interfaces);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-09-27 19:44:51 +05:30
|
|
|
startup_PATH = getenv("PATH");
|
|
|
|
if (!startup_PATH) startup_PATH = "";
|
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
/* Create a list of interfaces to work on */
|
2006-09-23 18:19:01 +05:30
|
|
|
if (DO_ALL) {
|
2007-05-03 03:08:44 +05:30
|
|
|
target_list = defn->autointerfaces;
|
2002-11-09 15:04:15 +05:30
|
|
|
} else {
|
2006-05-27 05:14:51 +05:30
|
|
|
llist_add_to_end(&target_list, argv[optind]);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
/* Update the interfaces */
|
|
|
|
while (target_list) {
|
2003-04-02 15:43:26 +05:30
|
|
|
llist_t *iface_list;
|
|
|
|
struct interface_defn_t *currif;
|
2002-12-08 06:53:39 +05:30
|
|
|
char *iface;
|
|
|
|
char *liface;
|
2002-11-09 15:04:15 +05:30
|
|
|
char *pch;
|
2007-03-20 01:24:56 +05:30
|
|
|
bool okay = 0;
|
2008-05-16 03:00:45 +05:30
|
|
|
int cmds_ret;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
iface = xstrdup(target_list->data);
|
2002-12-08 06:53:39 +05:30
|
|
|
target_list = target_list->link;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
pch = strchr(iface, '=');
|
|
|
|
if (pch) {
|
2002-11-09 15:04:15 +05:30
|
|
|
*pch = '\0';
|
2006-08-03 21:11:12 +05:30
|
|
|
liface = xstrdup(pch + 1);
|
2002-11-09 15:04:15 +05:30
|
|
|
} else {
|
2006-08-03 21:11:12 +05:30
|
|
|
liface = xstrdup(iface);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2002-12-08 06:53:39 +05:30
|
|
|
|
2006-09-23 18:19:01 +05:30
|
|
|
if (!FORCE) {
|
2007-05-03 03:08:44 +05:30
|
|
|
llist_t *state_list = read_iface_state();
|
2002-12-08 06:53:39 +05:30
|
|
|
const llist_t *iface_state = find_iface_state(state_list, iface);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
if (cmds == iface_up) {
|
|
|
|
/* ifup */
|
2002-12-08 06:53:39 +05:30
|
|
|
if (iface_state) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg("interface %s already configured", iface);
|
2002-11-09 15:04:15 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* ifdown */
|
2007-03-07 04:23:10 +05:30
|
|
|
if (!iface_state) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg("interface %s not configured", iface);
|
2002-11-09 15:04:15 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2007-05-03 03:08:44 +05:30
|
|
|
llist_free(state_list, free);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2002-12-08 06:53:39 +05:30
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
#if ENABLE_FEATURE_IFUPDOWN_MAPPING
|
2006-09-23 18:19:01 +05:30
|
|
|
if ((cmds == iface_up) && !NO_MAPPINGS) {
|
2003-04-02 15:43:26 +05:30
|
|
|
struct mapping_defn_t *currmap;
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
for (currmap = defn->mappings; currmap; currmap = currmap->next) {
|
2006-10-16 23:54:57 +05:30
|
|
|
int i;
|
2002-11-09 15:04:15 +05:30
|
|
|
for (i = 0; i < currmap->n_matches; i++) {
|
|
|
|
if (fnmatch(currmap->match[i], liface, 0) != 0)
|
|
|
|
continue;
|
2006-09-23 18:19:01 +05:30
|
|
|
if (VERBOSE) {
|
2003-04-02 15:43:26 +05:30
|
|
|
printf("Running mapping script %s on %s\n", currmap->script, liface);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2003-07-03 15:50:29 +05:30
|
|
|
liface = run_mapping(iface, currmap);
|
2002-11-09 15:04:15 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-12-06 14:05:55 +05:30
|
|
|
#endif
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2003-04-02 15:43:26 +05:30
|
|
|
iface_list = defn->ifaces;
|
|
|
|
while (iface_list) {
|
|
|
|
currif = (struct interface_defn_t *) iface_list->data;
|
2002-11-09 15:04:15 +05:30
|
|
|
if (strcmp(liface, currif->iface) == 0) {
|
|
|
|
char *oldiface = currif->iface;
|
|
|
|
|
|
|
|
okay = 1;
|
|
|
|
currif->iface = iface;
|
|
|
|
|
2006-12-20 04:31:33 +05:30
|
|
|
debug_noise("\nConfiguring interface %s (%s)\n", liface, currif->address_family->name);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
2002-12-08 06:53:39 +05:30
|
|
|
/* Call the cmds function pointer, does either iface_up() or iface_down() */
|
2004-07-22 05:26:31 +05:30
|
|
|
cmds_ret = cmds(currif);
|
|
|
|
if (cmds_ret == -1) {
|
2006-09-27 02:05:30 +05:30
|
|
|
bb_error_msg("don't seem to have all the variables for %s/%s",
|
2003-04-02 15:43:26 +05:30
|
|
|
liface, currif->address_family->name);
|
2006-12-19 02:32:00 +05:30
|
|
|
any_failures = 1;
|
2004-07-22 05:26:31 +05:30
|
|
|
} else if (cmds_ret == 0) {
|
2006-12-19 02:32:00 +05:30
|
|
|
any_failures = 1;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2002-12-06 14:05:55 +05:30
|
|
|
|
2002-11-09 15:04:15 +05:30
|
|
|
currif->iface = oldiface;
|
|
|
|
}
|
2003-04-02 15:43:26 +05:30
|
|
|
iface_list = iface_list->link;
|
|
|
|
}
|
2006-09-23 18:19:01 +05:30
|
|
|
if (VERBOSE) {
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
|
2006-09-23 18:19:01 +05:30
|
|
|
if (!okay && !FORCE) {
|
2006-09-27 02:05:30 +05:30
|
|
|
bb_error_msg("ignoring unknown interface %s", liface);
|
2006-12-19 02:32:00 +05:30
|
|
|
any_failures = 1;
|
2007-05-03 03:52:23 +05:30
|
|
|
} else if (!NO_ACT) {
|
2007-05-03 03:08:44 +05:30
|
|
|
/* update the state file */
|
2007-05-03 03:52:23 +05:30
|
|
|
FILE *state_fp;
|
|
|
|
llist_t *state;
|
2007-05-03 03:08:44 +05:30
|
|
|
llist_t *state_list = read_iface_state();
|
2002-12-08 06:53:39 +05:30
|
|
|
llist_t *iface_state = find_iface_state(state_list, iface);
|
2002-11-09 15:04:15 +05:30
|
|
|
|
|
|
|
if (cmds == iface_up) {
|
2007-03-20 01:24:56 +05:30
|
|
|
char * const newiface = xasprintf("%s=%s", iface, liface);
|
2002-12-08 06:53:39 +05:30
|
|
|
if (iface_state == NULL) {
|
2006-05-27 05:14:51 +05:30
|
|
|
llist_add_to_end(&state_list, newiface);
|
2002-11-09 15:04:15 +05:30
|
|
|
} else {
|
2002-12-08 06:53:39 +05:30
|
|
|
free(iface_state->data);
|
|
|
|
iface_state->data = newiface;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2006-02-28 09:23:14 +05:30
|
|
|
} else {
|
2007-03-07 04:23:10 +05:30
|
|
|
/* Remove an interface from state_list */
|
|
|
|
llist_unlink(&state_list, iface_state);
|
2006-05-29 12:13:55 +05:30
|
|
|
free(llist_pop(&iface_state));
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2002-12-06 13:40:40 +05:30
|
|
|
|
2007-05-03 03:08:44 +05:30
|
|
|
/* Actually write the new state */
|
2008-07-22 04:35:26 +05:30
|
|
|
state_fp = xfopen_for_write(CONFIG_IFUPDOWN_IFSTATE_PATH);
|
2007-05-03 03:52:23 +05:30
|
|
|
state = state_list;
|
|
|
|
while (state) {
|
|
|
|
if (state->data) {
|
|
|
|
fprintf(state_fp, "%s\n", state->data);
|
2007-05-03 03:08:44 +05:30
|
|
|
}
|
2007-05-03 03:52:23 +05:30
|
|
|
state = state->link;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
2007-05-03 03:52:23 +05:30
|
|
|
fclose(state_fp);
|
2007-05-03 03:08:44 +05:30
|
|
|
llist_free(state_list, free);
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-19 02:32:00 +05:30
|
|
|
return any_failures;
|
2002-11-09 15:04:15 +05:30
|
|
|
}
|