blob: 43388ab32a0680e76f206229855cda751f30b5c2 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath77c60e52003-01-16 11:37:57 +00002/*
Glenn L McGrathf03c9332002-12-13 00:01:44 +00003 * nameif.c - Naming Interfaces based on MAC address for busybox.
4 *
Eric Andersenaff114c2004-04-14 17:51:38 +00005 * Written 2000 by Andi Kleen.
Glenn L McGrathf03c9332002-12-13 00:01:44 +00006 * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00007 * Glenn McGrath
Glenn L McGrathf03c9332002-12-13 00:01:44 +00008 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00009 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrathf03c9332002-12-13 00:01:44 +000010 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000013#include <syslog.h>
Glenn L McGrathf03c9332002-12-13 00:01:44 +000014#include <net/if.h>
15#include <netinet/ether.h>
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000016#include <linux/sockios.h>
Glenn L McGrathf03c9332002-12-13 00:01:44 +000017
Eric Andersen40ea66c2003-07-05 08:00:17 +000018/* Older versions of net/if.h do not appear to define IF_NAMESIZE. */
19#ifndef IF_NAMESIZE
20# ifdef IFNAMSIZ
21# define IF_NAMESIZE IFNAMSIZ
22# else
23# define IF_NAMESIZE 16
24# endif
25#endif
26
Eric Andersenab4e19a2003-01-14 08:54:08 +000027/* take from linux/sockios.h */
Glenn L McGratha9adef02003-01-19 13:34:21 +000028#define SIOCSIFNAME 0x8923 /* set interface name */
Eric Andersenab4e19a2003-01-14 08:54:08 +000029
Eric Andersenaff114c2004-04-14 17:51:38 +000030/* Octets in one Ethernet addr, from <linux/if_ether.h> */
Glenn L McGrathf03c9332002-12-13 00:01:44 +000031#define ETH_ALEN 6
32
33#ifndef ifr_newname
34#define ifr_newname ifr_ifru.ifru_slave
35#endif
36
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000037typedef struct ethtable_s {
38 struct ethtable_s *next;
39 struct ethtable_s *prev;
Glenn L McGrathf03c9332002-12-13 00:01:44 +000040 char *ifname;
41 struct ether_addr *mac;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000042#if ENABLE_FEATURE_NAMEIF_EXTENDED
43 char *bus_info;
44 char *driver;
45#endif
46} ethtable_t;
Glenn L McGrathf03c9332002-12-13 00:01:44 +000047
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000048#if ENABLE_FEATURE_NAMEIF_EXTENDED
49/* Cut'n'paste from ethtool.h */
50#define ETHTOOL_BUSINFO_LEN 32
51/* these strings are set to whatever the driver author decides... */
52struct ethtool_drvinfo {
Denis Vlasenko3f9c8482007-12-28 17:04:42 +000053 uint32_t cmd;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000054 char driver[32]; /* driver short name, "tulip", "eepro100" */
55 char version[32]; /* driver version string */
56 char fw_version[32]; /* firmware version string, if applicable */
57 char bus_info[ETHTOOL_BUSINFO_LEN]; /* Bus info for this IF. */
Denis Vlasenko6b404432008-01-07 16:13:14 +000058 /* For PCI devices, use pci_dev->slot_name. */
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000059 char reserved1[32];
60 char reserved2[16];
Denis Vlasenko3f9c8482007-12-28 17:04:42 +000061 uint32_t n_stats; /* number of u64's from ETHTOOL_GSTATS */
62 uint32_t testinfo_len;
63 uint32_t eedump_len; /* Size of data from ETHTOOL_GEEPROM (bytes) */
64 uint32_t regdump_len; /* Size of data from ETHTOOL_GREGS (bytes) */
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000065};
66#define ETHTOOL_GDRVINFO 0x00000003 /* Get driver info. */
67#endif
68
69
70static void nameif_parse_selector(ethtable_t *ch, char *selector)
Glenn L McGrath688cf012002-12-17 12:43:43 +000071{
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000072 struct ether_addr *lmac;
73#if ENABLE_FEATURE_NAMEIF_EXTENDED
74 int found_selector = 0;
Glenn L McGrath688cf012002-12-17 12:43:43 +000075
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000076 while (*selector) {
77 char *next;
78#endif
79 selector = skip_whitespace(selector);
80#if ENABLE_FEATURE_NAMEIF_EXTENDED
81 if (*selector == '\0')
82 break;
83 /* Search for the end .... */
84 next = skip_non_whitespace(selector);
85 if (*next)
86 *next++ = '\0';
87 /* Check for selectors, mac= is assumed */
88 if (strncmp(selector, "bus=", 4) == 0) {
89 ch->bus_info = xstrdup(selector + 4);
90 found_selector++;
91 } else if (strncmp(selector, "driver=", 7) == 0) {
92 ch->driver = xstrdup(selector + 7);
93 found_selector++;
94 } else {
95#endif
96 lmac = ether_aton(selector + (strncmp(selector, "mac=", 4) == 0 ? 4 : 0));
97 /* Check ascii selector, convert and copy to *mac */
98 if (lmac == NULL)
99 bb_error_msg_and_die("cannot parse %s", selector);
100 ch->mac = xmalloc(ETH_ALEN);
101 memcpy(ch->mac, lmac, ETH_ALEN);
102#if ENABLE_FEATURE_NAMEIF_EXTENDED
103 found_selector++;
104 };
105 selector = next;
106 }
107 if (found_selector == 0)
108 bb_error_msg_and_die("no selectors found for %s", ch->ifname);
109#endif
110}
Glenn L McGrath688cf012002-12-17 12:43:43 +0000111
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000112static void prepend_new_eth_table(ethtable_t **clist, char *ifname, char *selector)
113{
114 ethtable_t *ch;
115 if (strlen(ifname) >= IF_NAMESIZE)
116 bb_error_msg_and_die("interface name '%s' too long", ifname);
117 ch = xzalloc(sizeof(*ch));
118 ch->ifname = ifname;
119 nameif_parse_selector(ch, selector);
120 ch->next = *clist;
121 if (*clist)
122 (*clist)->prev = ch;
123 *clist = ch;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000124}
125
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000126int nameif_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000127int nameif_main(int argc, char **argv)
128{
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000129 ethtable_t *clist = NULL;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000130 FILE *ifh;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000131 const char *fname = "/etc/mactab";
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000132 char *line;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000133 char *line_ptr;
134 int linenum;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000135 int ctl_sk;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000136 ethtable_t *ch;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000137
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000138 if (1 & getopt32(argv, "sc:", &fname)) {
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000139 openlog(applet_name, 0, LOG_LOCAL0);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000140 logmode = LOGMODE_SYSLOG;
141 }
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000142 argc -= optind;
143 argv += optind;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000144
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000145 if (argc & 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 bb_show_usage();
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000147
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000148 if (argc) {
149 while (*argv) {
150 char *ifname = xstrdup(*argv++);
151 prepend_new_eth_table(&clist, ifname, *argv++);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000152 }
153 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000154 ifh = xfopen(fname, "r");
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000155 while ((line = xmalloc_fgets(ifh)) != NULL) {
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000156 char *next;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000157
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000158 line_ptr = skip_whitespace(line);
"Vladimir N. Oleynik"8c9daa12006-01-15 09:29:41 +0000159 if ((line_ptr[0] == '#') || (line_ptr[0] == '\n')) {
160 free(line);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000161 continue;
"Vladimir N. Oleynik"8c9daa12006-01-15 09:29:41 +0000162 }
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000163 next = skip_non_whitespace(line_ptr);
164 if (*next)
165 *next++ = '\0';
166 prepend_new_eth_table(&clist, line_ptr, next);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000167 free(line);
168 }
169 fclose(ifh);
170 }
171
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000172 ctl_sk = xsocket(PF_INET, SOCK_DGRAM, 0);
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000173 ifh = xfopen("/proc/net/dev", "r");
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000174
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000175 linenum = 0;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000176 while (clist) {
177 struct ifreq ifr;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000178#if ENABLE_FEATURE_NAMEIF_EXTENDED
179 struct ethtool_drvinfo drvinfo;
180#endif
181
182 line = xmalloc_fgets(ifh);
183 if (line == NULL)
184 break; /* Seems like we're done */
185 if (linenum++ < 2 )
186 goto next_line; /* Skip the first two lines */
187
188 /* Find the current interface name and copy it to ifr.ifr_name */
189 line_ptr = skip_whitespace(line);
190 *skip_non_whitespace(line_ptr) = '\0';
Glenn L McGrath688cf012002-12-17 12:43:43 +0000191
Rob Landley855f1e12006-01-15 02:20:06 +0000192 memset(&ifr, 0, sizeof(struct ifreq));
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000193 strncpy(ifr.ifr_name, line_ptr, sizeof(ifr.ifr_name));
Glenn L McGrath688cf012002-12-17 12:43:43 +0000194
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000195#if ENABLE_FEATURE_NAMEIF_EXTENDED
196 /* Check for driver etc. */
197 memset(&drvinfo, 0, sizeof(struct ethtool_drvinfo));
198 drvinfo.cmd = ETHTOOL_GDRVINFO;
199 ifr.ifr_data = (caddr_t) &drvinfo;
200 /* Get driver and businfo first, so we have it in drvinfo */
201 ioctl(ctl_sk, SIOCETHTOOL, &ifr);
202#endif
203 ioctl(ctl_sk, SIOCGIFHWADDR, &ifr);
Glenn L McGrath688cf012002-12-17 12:43:43 +0000204
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000205 /* Search the list for a matching device */
206 for (ch = clist; ch; ch = ch->next) {
207#if ENABLE_FEATURE_NAMEIF_EXTENDED
208 if (ch->bus_info && strcmp(ch->bus_info, drvinfo.bus_info) != 0)
209 continue;
210 if (ch->driver && strcmp(ch->driver, drvinfo.driver) != 0)
211 continue;
212#endif
213 if (ch->mac && memcmp(ch->mac, ifr.ifr_hwaddr.sa_data, ETH_ALEN) != 0)
214 continue;
215 /* if we came here, all selectors have matched */
216 goto found;
217 }
218 /* Nothing found for current interface */
219 goto next_line;
220 found:
221 if (strcmp(ifr.ifr_name, ch->ifname) != 0) {
222 strcpy(ifr.ifr_newname, ch->ifname);
223 ioctl_or_perror_and_die(ctl_sk, SIOCSIFNAME, &ifr,
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000224 "cannot change ifname %s to %s",
225 ifr.ifr_name, ch->ifname);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000226 }
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000227 /* Remove list entry of renamed interface */
228 if (ch->prev != NULL)
229 ch->prev->next = ch->next;
230 else
231 clist = ch->next;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000232 if (ch->next != NULL)
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000233 ch->next->prev = ch->prev;
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000234 if (ENABLE_FEATURE_CLEAN_UP) {
235 free(ch->ifname);
236 free(ch->mac);
237 free(ch);
238 }
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000239 next_line:
240 free(line);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000241 }
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000242 if (ENABLE_FEATURE_CLEAN_UP) {
243 fclose(ifh);
244 };
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000245
246 return 0;
247}