blob: 769b777f09e09008cdd2fcb2c4f1bc10d8005b2e [file] [log] [blame]
Glenn L McGrath77c60e52003-01-16 11:37:57 +00001/*
Glenn L McGrathf03c9332002-12-13 00:01:44 +00002 * nameif.c - Naming Interfaces based on MAC address for busybox.
3 *
Eric Andersenaff114c2004-04-14 17:51:38 +00004 * Written 2000 by Andi Kleen.
Glenn L McGrathf03c9332002-12-13 00:01:44 +00005 * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00006 * Glenn McGrath <bug1@iinet.net.au>
Glenn L McGrathf03c9332002-12-13 00:01:44 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 * 02111-1307 USA
22 *
23 */
24
Glenn L McGrath688cf012002-12-17 12:43:43 +000025
Glenn L McGrathf03c9332002-12-13 00:01:44 +000026#include <sys/syslog.h>
27#include <sys/socket.h>
28#include <sys/ioctl.h>
Glenn L McGrathf03c9332002-12-13 00:01:44 +000029#include <errno.h>
30#include <getopt.h>
31#include <stdlib.h>
32#include <string.h>
33#include <net/if.h>
34#include <netinet/ether.h>
35
36#include "busybox.h"
37
Eric Andersen40ea66c2003-07-05 08:00:17 +000038/* Older versions of net/if.h do not appear to define IF_NAMESIZE. */
39#ifndef IF_NAMESIZE
40# ifdef IFNAMSIZ
41# define IF_NAMESIZE IFNAMSIZ
42# else
43# define IF_NAMESIZE 16
44# endif
45#endif
46
Eric Andersenab4e19a2003-01-14 08:54:08 +000047/* take from linux/sockios.h */
Glenn L McGratha9adef02003-01-19 13:34:21 +000048#define SIOCSIFNAME 0x8923 /* set interface name */
Eric Andersenab4e19a2003-01-14 08:54:08 +000049
Eric Andersenaff114c2004-04-14 17:51:38 +000050/* Octets in one Ethernet addr, from <linux/if_ether.h> */
Glenn L McGrathf03c9332002-12-13 00:01:44 +000051#define ETH_ALEN 6
52
53#ifndef ifr_newname
54#define ifr_newname ifr_ifru.ifru_slave
55#endif
56
57typedef struct mactable_s {
58 struct mactable_s *next;
Glenn L McGrath688cf012002-12-17 12:43:43 +000059 struct mactable_s *prev;
Glenn L McGrathf03c9332002-12-13 00:01:44 +000060 char *ifname;
61 struct ether_addr *mac;
62} mactable_t;
63
Glenn L McGrath77c60e52003-01-16 11:37:57 +000064static unsigned char use_syslog;
65
66static void serror(const char *s, ...) __attribute__ ((noreturn));
67
68static void serror(const char *s, ...)
Glenn L McGrathf03c9332002-12-13 00:01:44 +000069{
70 va_list ap;
71
72 va_start(ap, s);
73
74 if (use_syslog) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 openlog(bb_applet_name, 0, LOG_LOCAL0);
Glenn L McGrath77c60e52003-01-16 11:37:57 +000076 vsyslog(LOG_ERR, s, ap);
Glenn L McGrathf03c9332002-12-13 00:01:44 +000077 closelog();
78 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +000079 bb_verror_msg(s, ap);
Glenn L McGrathf03c9332002-12-13 00:01:44 +000080 putc('\n', stderr);
81 }
82
83 va_end(ap);
Glenn L McGrath688cf012002-12-17 12:43:43 +000084
Glenn L McGrathf03c9332002-12-13 00:01:44 +000085 exit(EXIT_FAILURE);
86}
87
Glenn L McGrath688cf012002-12-17 12:43:43 +000088/* Check ascii str_macaddr, convert and copy to *mac */
Eric Andersen14f5c8d2005-04-16 19:39:00 +000089static struct ether_addr *cc_macaddr(char *str_macaddr)
Glenn L McGrath688cf012002-12-17 12:43:43 +000090{
91 struct ether_addr *lmac, *mac;
92
93 lmac = ether_aton(str_macaddr);
94 if (lmac == NULL)
Glenn L McGrath77c60e52003-01-16 11:37:57 +000095 serror("cannot parse MAC %s", str_macaddr);
96 mac = xmalloc(ETH_ALEN);
Glenn L McGrath688cf012002-12-17 12:43:43 +000097 memcpy(mac, lmac, ETH_ALEN);
98
99 return mac;
100}
101
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000102int nameif_main(int argc, char **argv)
103{
104 mactable_t *clist = NULL;
105 FILE *ifh;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000106 const char *fname = "/etc/mactab";
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000107 char *line;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000108 int ctl_sk;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000109 int opt;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000110 int if_index = 1;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000111 mactable_t *ch;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000112
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000113
Glenn L McGratha9adef02003-01-19 13:34:21 +0000114 while ((opt = getopt(argc, argv, "c:s")) != -1) {
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000115 switch (opt) {
116 case 'c':
117 fname = optarg;
118 break;
119 case 's':
120 use_syslog = 1;
121 break;
122 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000123 bb_show_usage();
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000124 }
125 }
126
Glenn L McGrath688cf012002-12-17 12:43:43 +0000127 if ((argc - optind) & 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000128 bb_show_usage();
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000129
130 if (optind < argc) {
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000131 char **a = argv + optind;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000132
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000133 while (*a) {
Glenn L McGrath688cf012002-12-17 12:43:43 +0000134
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000135 if (strlen(*a) > IF_NAMESIZE)
136 serror("interface name `%s' too long", *a);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000137 ch = xcalloc(1, sizeof(mactable_t));
Manuel Novoa III cad53642003-03-19 09:13:01 +0000138 ch->ifname = bb_xstrdup(*a++);
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000139 ch->mac = cc_macaddr(*a++);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000140 if (clist)
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000141 clist->prev = ch;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000142 ch->next = clist;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000143 clist = ch;
144 }
145 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 ifh = bb_xfopen(fname, "r");
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000147
Manuel Novoa III cad53642003-03-19 09:13:01 +0000148 while ((line = bb_get_line_from_file(ifh)) != NULL) {
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000149 char *line_ptr;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000150 size_t name_length;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000151
152 line_ptr = line + strspn(line, " \t");
153 if ((line_ptr[0] == '#') || (line_ptr[0] == '\n'))
154 continue;
155 name_length = strcspn(line_ptr, " \t");
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000156 ch = xcalloc(1, sizeof(mactable_t));
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 ch->ifname = bb_xstrndup(line_ptr, name_length);
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000158 if (name_length > IF_NAMESIZE)
Glenn L McGratha9adef02003-01-19 13:34:21 +0000159 serror("interface name `%s' too long", ch->ifname);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000160 line_ptr += name_length;
161 line_ptr += strspn(line_ptr, " \t");
162 name_length = strspn(line_ptr, "0123456789ABCDEFabcdef:");
163 line_ptr[name_length] = '\0';
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000164 ch->mac = cc_macaddr(line_ptr);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000165 if (clist)
Glenn L McGrath688cf012002-12-17 12:43:43 +0000166 clist->prev = ch;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000167 ch->next = clist;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000168 clist = ch;
169 free(line);
170 }
171 fclose(ifh);
172 }
173
Glenn L McGrath688cf012002-12-17 12:43:43 +0000174 if ((ctl_sk = socket(PF_INET, SOCK_DGRAM, 0)) == -1)
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000175 serror("socket: %m");
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000176
Glenn L McGrath688cf012002-12-17 12:43:43 +0000177 while (clist) {
178 struct ifreq ifr;
179
180 bzero(&ifr, sizeof(struct ifreq));
181 if_index++;
182 ifr.ifr_ifindex = if_index;
183
184 /* Get ifname by index or die */
185 if (ioctl(ctl_sk, SIOCGIFNAME, &ifr))
186 break;
187
188 /* Has this device hwaddr? */
189 if (ioctl(ctl_sk, SIOCGIFHWADDR, &ifr))
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000190 continue;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000191
192 /* Search for mac like in ifr.ifr_hwaddr.sa_data */
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000193 for (ch = clist; ch; ch = ch->next)
194 if (!memcmp(ch->mac, ifr.ifr_hwaddr.sa_data, ETH_ALEN))
195 break;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000196
197 /* Nothing found for current ifr.ifr_hwaddr.sa_data */
198 if (ch == NULL)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000199 continue;
Glenn L McGrath8b08bda2002-12-13 09:02:16 +0000200
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000201 strcpy(ifr.ifr_newname, ch->ifname);
Glenn L McGrath688cf012002-12-17 12:43:43 +0000202 if (ioctl(ctl_sk, SIOCSIFNAME, &ifr) < 0)
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000203 serror("cannot change ifname %s to %s: %m",
204 ifr.ifr_name, ch->ifname);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000205
Glenn L McGrath688cf012002-12-17 12:43:43 +0000206 /* Remove list entry of renamed interface */
207 if (ch->prev != NULL) {
208 (ch->prev)->next = ch->next;
209 } else {
210 clist = ch->next;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000211 }
Glenn L McGrath688cf012002-12-17 12:43:43 +0000212 if (ch->next != NULL)
213 (ch->next)->prev = ch->prev;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000214#ifdef CONFIG_FEATURE_CLEAN_UP
215 free(ch->ifname);
216 free(ch->mac);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000217 free(ch);
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000218#endif
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000219 }
220
221 return 0;
222}