2003-01-16 17:07:57 +05:30
|
|
|
/*
|
2002-12-13 05:31:44 +05:30
|
|
|
* nameif.c - Naming Interfaces based on MAC address for busybox.
|
|
|
|
*
|
2004-04-14 23:21:38 +05:30
|
|
|
* Written 2000 by Andi Kleen.
|
2002-12-13 05:31:44 +05:30
|
|
|
* Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
|
2004-04-25 10:41:19 +05:30
|
|
|
* Glenn McGrath <bug1@iinet.net.au>
|
2002-12-13 05:31:44 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
* 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-12-17 18:13:43 +05:30
|
|
|
|
2002-12-13 05:31:44 +05:30
|
|
|
#include <sys/syslog.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <netinet/ether.h>
|
|
|
|
|
|
|
|
#include "busybox.h"
|
|
|
|
|
2003-07-05 13:30:17 +05:30
|
|
|
/* Older versions of net/if.h do not appear to define IF_NAMESIZE. */
|
|
|
|
#ifndef IF_NAMESIZE
|
|
|
|
# ifdef IFNAMSIZ
|
|
|
|
# define IF_NAMESIZE IFNAMSIZ
|
|
|
|
# else
|
|
|
|
# define IF_NAMESIZE 16
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2003-01-14 14:24:08 +05:30
|
|
|
/* take from linux/sockios.h */
|
2003-01-19 19:04:21 +05:30
|
|
|
#define SIOCSIFNAME 0x8923 /* set interface name */
|
2003-01-14 14:24:08 +05:30
|
|
|
|
2004-04-14 23:21:38 +05:30
|
|
|
/* Octets in one Ethernet addr, from <linux/if_ether.h> */
|
2002-12-13 05:31:44 +05:30
|
|
|
#define ETH_ALEN 6
|
|
|
|
|
|
|
|
#ifndef ifr_newname
|
|
|
|
#define ifr_newname ifr_ifru.ifru_slave
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct mactable_s {
|
|
|
|
struct mactable_s *next;
|
2002-12-17 18:13:43 +05:30
|
|
|
struct mactable_s *prev;
|
2002-12-13 05:31:44 +05:30
|
|
|
char *ifname;
|
|
|
|
struct ether_addr *mac;
|
|
|
|
} mactable_t;
|
|
|
|
|
2003-01-16 17:07:57 +05:30
|
|
|
static unsigned char use_syslog;
|
|
|
|
|
|
|
|
static void serror(const char *s, ...) __attribute__ ((noreturn));
|
|
|
|
|
|
|
|
static void serror(const char *s, ...)
|
2002-12-13 05:31:44 +05:30
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, s);
|
|
|
|
|
|
|
|
if (use_syslog) {
|
2003-03-19 14:43:01 +05:30
|
|
|
openlog(bb_applet_name, 0, LOG_LOCAL0);
|
2003-01-16 17:07:57 +05:30
|
|
|
vsyslog(LOG_ERR, s, ap);
|
2002-12-13 05:31:44 +05:30
|
|
|
closelog();
|
|
|
|
} else {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_verror_msg(s, ap);
|
2002-12-13 05:31:44 +05:30
|
|
|
putc('\n', stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(ap);
|
2002-12-17 18:13:43 +05:30
|
|
|
|
2002-12-13 05:31:44 +05:30
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2002-12-17 18:13:43 +05:30
|
|
|
/* Check ascii str_macaddr, convert and copy to *mac */
|
2005-04-17 01:09:00 +05:30
|
|
|
static struct ether_addr *cc_macaddr(char *str_macaddr)
|
2002-12-17 18:13:43 +05:30
|
|
|
{
|
|
|
|
struct ether_addr *lmac, *mac;
|
|
|
|
|
|
|
|
lmac = ether_aton(str_macaddr);
|
|
|
|
if (lmac == NULL)
|
2003-01-16 17:07:57 +05:30
|
|
|
serror("cannot parse MAC %s", str_macaddr);
|
|
|
|
mac = xmalloc(ETH_ALEN);
|
2002-12-17 18:13:43 +05:30
|
|
|
memcpy(mac, lmac, ETH_ALEN);
|
|
|
|
|
|
|
|
return mac;
|
|
|
|
}
|
|
|
|
|
2002-12-13 05:31:44 +05:30
|
|
|
int nameif_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
mactable_t *clist = NULL;
|
|
|
|
FILE *ifh;
|
2003-01-16 17:07:57 +05:30
|
|
|
const char *fname = "/etc/mactab";
|
2002-12-13 05:31:44 +05:30
|
|
|
char *line;
|
2003-01-16 17:07:57 +05:30
|
|
|
int ctl_sk;
|
2002-12-13 05:31:44 +05:30
|
|
|
int opt;
|
2002-12-17 18:13:43 +05:30
|
|
|
int if_index = 1;
|
2003-01-16 17:07:57 +05:30
|
|
|
mactable_t *ch;
|
2002-12-13 05:31:44 +05:30
|
|
|
|
|
|
|
|
2003-01-19 19:04:21 +05:30
|
|
|
while ((opt = getopt(argc, argv, "c:s")) != -1) {
|
2002-12-13 05:31:44 +05:30
|
|
|
switch (opt) {
|
|
|
|
case 'c':
|
|
|
|
fname = optarg;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
use_syslog = 1;
|
|
|
|
break;
|
|
|
|
default:
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-12-13 05:31:44 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-17 18:13:43 +05:30
|
|
|
if ((argc - optind) & 1)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-12-13 05:31:44 +05:30
|
|
|
|
|
|
|
if (optind < argc) {
|
2003-01-16 17:07:57 +05:30
|
|
|
char **a = argv + optind;
|
2002-12-13 05:31:44 +05:30
|
|
|
|
2003-01-16 17:07:57 +05:30
|
|
|
while (*a) {
|
2002-12-17 18:13:43 +05:30
|
|
|
|
2003-01-16 17:07:57 +05:30
|
|
|
if (strlen(*a) > IF_NAMESIZE)
|
|
|
|
serror("interface name `%s' too long", *a);
|
2002-12-13 05:31:44 +05:30
|
|
|
ch = xcalloc(1, sizeof(mactable_t));
|
2003-03-19 14:43:01 +05:30
|
|
|
ch->ifname = bb_xstrdup(*a++);
|
2003-01-16 17:07:57 +05:30
|
|
|
ch->mac = cc_macaddr(*a++);
|
2002-12-13 05:31:44 +05:30
|
|
|
if (clist)
|
2003-01-16 17:07:57 +05:30
|
|
|
clist->prev = ch;
|
2002-12-13 05:31:44 +05:30
|
|
|
ch->next = clist;
|
|
|
|
clist = ch;
|
|
|
|
}
|
|
|
|
} else {
|
2003-03-19 14:43:01 +05:30
|
|
|
ifh = bb_xfopen(fname, "r");
|
2002-12-13 05:31:44 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
while ((line = bb_get_line_from_file(ifh)) != NULL) {
|
2002-12-13 05:31:44 +05:30
|
|
|
char *line_ptr;
|
2003-01-16 17:07:57 +05:30
|
|
|
size_t name_length;
|
2002-12-13 05:31:44 +05:30
|
|
|
|
|
|
|
line_ptr = line + strspn(line, " \t");
|
|
|
|
if ((line_ptr[0] == '#') || (line_ptr[0] == '\n'))
|
|
|
|
continue;
|
|
|
|
name_length = strcspn(line_ptr, " \t");
|
|
|
|
ch = xcalloc(1, sizeof(mactable_t));
|
2003-03-19 14:43:01 +05:30
|
|
|
ch->ifname = bb_xstrndup(line_ptr, name_length);
|
2003-01-16 17:07:57 +05:30
|
|
|
if (name_length > IF_NAMESIZE)
|
2003-01-19 19:04:21 +05:30
|
|
|
serror("interface name `%s' too long", ch->ifname);
|
2002-12-13 05:31:44 +05:30
|
|
|
line_ptr += name_length;
|
|
|
|
line_ptr += strspn(line_ptr, " \t");
|
|
|
|
name_length = strspn(line_ptr, "0123456789ABCDEFabcdef:");
|
|
|
|
line_ptr[name_length] = '\0';
|
2003-01-16 17:07:57 +05:30
|
|
|
ch->mac = cc_macaddr(line_ptr);
|
2002-12-13 05:31:44 +05:30
|
|
|
if (clist)
|
2002-12-17 18:13:43 +05:30
|
|
|
clist->prev = ch;
|
2002-12-13 05:31:44 +05:30
|
|
|
ch->next = clist;
|
|
|
|
clist = ch;
|
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
fclose(ifh);
|
|
|
|
}
|
|
|
|
|
2002-12-17 18:13:43 +05:30
|
|
|
if ((ctl_sk = socket(PF_INET, SOCK_DGRAM, 0)) == -1)
|
2003-01-16 17:07:57 +05:30
|
|
|
serror("socket: %m");
|
2002-12-17 18:13:43 +05:30
|
|
|
|
|
|
|
while (clist) {
|
2002-12-13 05:31:44 +05:30
|
|
|
struct ifreq ifr;
|
|
|
|
|
2002-12-17 18:13:43 +05:30
|
|
|
bzero(&ifr, sizeof(struct ifreq));
|
|
|
|
if_index++;
|
|
|
|
ifr.ifr_ifindex = if_index;
|
|
|
|
|
|
|
|
/* Get ifname by index or die */
|
|
|
|
if (ioctl(ctl_sk, SIOCGIFNAME, &ifr))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Has this device hwaddr? */
|
|
|
|
if (ioctl(ctl_sk, SIOCGIFHWADDR, &ifr))
|
2002-12-13 14:32:16 +05:30
|
|
|
continue;
|
2002-12-17 18:13:43 +05:30
|
|
|
|
|
|
|
/* Search for mac like in ifr.ifr_hwaddr.sa_data */
|
2002-12-13 05:31:44 +05:30
|
|
|
for (ch = clist; ch; ch = ch->next)
|
|
|
|
if (!memcmp(ch->mac, ifr.ifr_hwaddr.sa_data, ETH_ALEN))
|
|
|
|
break;
|
2002-12-17 18:13:43 +05:30
|
|
|
|
|
|
|
/* Nothing found for current ifr.ifr_hwaddr.sa_data */
|
|
|
|
if (ch == NULL)
|
2002-12-13 05:31:44 +05:30
|
|
|
continue;
|
2002-12-13 14:32:16 +05:30
|
|
|
|
2002-12-13 05:31:44 +05:30
|
|
|
strcpy(ifr.ifr_newname, ch->ifname);
|
2002-12-17 18:13:43 +05:30
|
|
|
if (ioctl(ctl_sk, SIOCSIFNAME, &ifr) < 0)
|
2003-01-16 17:07:57 +05:30
|
|
|
serror("cannot change ifname %s to %s: %m",
|
|
|
|
ifr.ifr_name, ch->ifname);
|
2002-12-17 18:13:43 +05:30
|
|
|
|
|
|
|
/* Remove list entry of renamed interface */
|
|
|
|
if (ch->prev != NULL) {
|
|
|
|
(ch->prev)->next = ch->next;
|
|
|
|
} else {
|
|
|
|
clist = ch->next;
|
2002-12-13 05:31:44 +05:30
|
|
|
}
|
2002-12-17 18:13:43 +05:30
|
|
|
if (ch->next != NULL)
|
|
|
|
(ch->next)->prev = ch->prev;
|
2003-01-16 17:07:57 +05:30
|
|
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
|
|
|
free(ch->ifname);
|
|
|
|
free(ch->mac);
|
2002-12-13 05:31:44 +05:30
|
|
|
free(ch);
|
2003-01-16 17:07:57 +05:30
|
|
|
#endif
|
2002-12-13 05:31:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|