blob: 1f26954952961fad583ed08318af3131bf39b01d [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
Denis Vlasenkob3f39f02008-04-10 02:03:21 +00008 * Extended matching support 2008 by Nico Erfurth <masta@perlgolf.de>
Glenn L McGrathf03c9332002-12-13 00:01:44 +00009 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrathf03c9332002-12-13 00:01:44 +000011 */
12
Phil Sutter293a8f22011-03-06 19:42:51 +010013//config:config NAMEIF
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020014//config: bool "nameif (6.6 kb)"
Phil Sutter293a8f22011-03-06 19:42:51 +010015//config: default y
16//config: select PLATFORM_LINUX
17//config: select FEATURE_SYSLOG
18//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020019//config: nameif is used to rename network interface by its MAC address.
20//config: Renamed interfaces MUST be in the down state.
21//config: It is possible to use a file (default: /etc/mactab)
22//config: with list of new interface names and MACs.
23//config: Maximum interface name length: IFNAMSIZ = 16
24//config: File fields are separated by space or tab.
25//config: File format:
26//config: # Comment
27//config: new_interface_name XX:XX:XX:XX:XX:XX
Phil Sutter293a8f22011-03-06 19:42:51 +010028//config:
29//config:config FEATURE_NAMEIF_EXTENDED
30//config: bool "Extended nameif"
31//config: default y
32//config: depends on NAMEIF
33//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020034//config: This extends the nameif syntax to support the bus_info, driver,
35//config: phyaddr selectors. The syntax is compatible to the normal nameif.
36//config: File format:
37//config: new_interface_name driver=asix bus=usb-0000:00:08.2-3
38//config: new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
39//config: new_interface_name phy_address=2 00:80:C8:38:91:B5
40//config: new_interface_name mac=00:80:C8:38:91:B5
41//config: new_interface_name 00:80:C8:38:91:B5
Phil Sutter293a8f22011-03-06 19:42:51 +010042
Denys Vlasenkoa759b222017-08-06 14:15:24 +020043//applet:IF_NAMEIF(APPLET_NOEXEC(nameif, nameif, BB_DIR_SBIN, BB_SUID_DROP, nameif))
Denys Vlasenko47367e12016-11-23 09:05:14 +010044
45//kbuild:lib-$(CONFIG_NAMEIF) += nameif.o
46
Phil Sutter293a8f22011-03-06 19:42:51 +010047//usage:#define nameif_trivial_usage
48//usage: IF_NOT_FEATURE_NAMEIF_EXTENDED(
49//usage: "[-s] [-c FILE] [IFNAME HWADDR]..."
50//usage: )
51//usage: IF_FEATURE_NAMEIF_EXTENDED(
52//usage: "[-s] [-c FILE] [IFNAME SELECTOR]..."
53//usage: )
54//usage:#define nameif_full_usage "\n\n"
55//usage: "Rename network interface while it in the down state."
56//usage: IF_NOT_FEATURE_NAMEIF_EXTENDED(
57//usage: "\nThe device with address HWADDR is renamed to IFACE."
58//usage: )
59//usage: IF_FEATURE_NAMEIF_EXTENDED(
60//usage: "\nThe device matched by SELECTOR is renamed to IFACE."
61//usage: "\nSELECTOR can be a combination of:"
62//usage: "\n driver=STRING"
63//usage: "\n bus=STRING"
64//usage: "\n phy_address=NUM"
65//usage: "\n [mac=]XX:XX:XX:XX:XX:XX"
66//usage: )
67//usage: "\n"
Phil Sutter293a8f22011-03-06 19:42:51 +010068//usage: "\n -c FILE Configuration file (default: /etc/mactab)"
69//usage: "\n -s Log to syslog"
70//usage:
71//usage:#define nameif_example_usage
72//usage: "$ nameif -s dmz0 00:A0:C9:8C:F6:3F\n"
73//usage: " or\n"
74//usage: "$ nameif -c /etc/my_mactab_file\n"
75
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000076#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000077#include <syslog.h>
Glenn L McGrathf03c9332002-12-13 00:01:44 +000078#include <net/if.h>
79#include <netinet/ether.h>
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000080#include <linux/sockios.h>
Glenn L McGrathf03c9332002-12-13 00:01:44 +000081
Denis Vlasenko01eaee92008-04-21 02:21:45 +000082#ifndef IFNAMSIZ
83#define IFNAMSIZ 16
Eric Andersen40ea66c2003-07-05 08:00:17 +000084#endif
85
Denis Vlasenko01eaee92008-04-21 02:21:45 +000086/* Taken from linux/sockios.h */
Denys Vlasenkofb132e42010-10-29 11:46:52 +020087#define SIOCSIFNAME 0x8923 /* set interface name */
Eric Andersenab4e19a2003-01-14 08:54:08 +000088
Eric Andersenaff114c2004-04-14 17:51:38 +000089/* Octets in one Ethernet addr, from <linux/if_ether.h> */
Denys Vlasenkofb132e42010-10-29 11:46:52 +020090#define ETH_ALEN 6
Glenn L McGrathf03c9332002-12-13 00:01:44 +000091
92#ifndef ifr_newname
93#define ifr_newname ifr_ifru.ifru_slave
94#endif
95
Denis Vlasenkof7be20e2007-12-24 14:09:19 +000096typedef struct ethtable_s {
97 struct ethtable_s *next;
98 struct ethtable_s *prev;
Glenn L McGrathf03c9332002-12-13 00:01:44 +000099 char *ifname;
100 struct ether_addr *mac;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000101#if ENABLE_FEATURE_NAMEIF_EXTENDED
102 char *bus_info;
103 char *driver;
Phil Sutter293a8f22011-03-06 19:42:51 +0100104 int32_t phy_address;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000105#endif
106} ethtable_t;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000107
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000108#if ENABLE_FEATURE_NAMEIF_EXTENDED
109/* Cut'n'paste from ethtool.h */
110#define ETHTOOL_BUSINFO_LEN 32
111/* these strings are set to whatever the driver author decides... */
112struct ethtool_drvinfo {
Denis Vlasenko3f9c8482007-12-28 17:04:42 +0000113 uint32_t cmd;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000114 char driver[32]; /* driver short name, "tulip", "eepro100" */
115 char version[32]; /* driver version string */
116 char fw_version[32]; /* firmware version string, if applicable */
117 char bus_info[ETHTOOL_BUSINFO_LEN]; /* Bus info for this IF. */
Denis Vlasenko6b404432008-01-07 16:13:14 +0000118 /* For PCI devices, use pci_dev->slot_name. */
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000119 char reserved1[32];
120 char reserved2[16];
Denis Vlasenko3f9c8482007-12-28 17:04:42 +0000121 uint32_t n_stats; /* number of u64's from ETHTOOL_GSTATS */
122 uint32_t testinfo_len;
123 uint32_t eedump_len; /* Size of data from ETHTOOL_GEEPROM (bytes) */
124 uint32_t regdump_len; /* Size of data from ETHTOOL_GREGS (bytes) */
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000125};
Phil Sutter293a8f22011-03-06 19:42:51 +0100126
127struct ethtool_cmd {
Daniel Fandrich6295d272011-06-09 15:44:44 -0700128 uint32_t cmd;
129 uint32_t supported; /* Features this interface supports */
130 uint32_t advertising; /* Features this interface advertises */
131 uint16_t speed; /* The forced speed, 10Mb, 100Mb, gigabit */
132 uint8_t duplex; /* Duplex, half or full */
133 uint8_t port; /* Which connector port */
134 uint8_t phy_address;
135 uint8_t transceiver; /* Which transceiver to use */
136 uint8_t autoneg; /* Enable or disable autonegotiation */
137 uint32_t maxtxpkt; /* Tx pkts before generating tx int */
138 uint32_t maxrxpkt; /* Rx pkts before generating rx int */
139 uint16_t speed_hi;
140 uint16_t reserved2;
141 uint32_t reserved[3];
Phil Sutter293a8f22011-03-06 19:42:51 +0100142};
143
144#define ETHTOOL_GSET 0x00000001 /* Get settings. */
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000145#define ETHTOOL_GDRVINFO 0x00000003 /* Get driver info. */
146#endif
147
148
149static void nameif_parse_selector(ethtable_t *ch, char *selector)
Glenn L McGrath688cf012002-12-17 12:43:43 +0000150{
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000151 struct ether_addr *lmac;
152#if ENABLE_FEATURE_NAMEIF_EXTENDED
153 int found_selector = 0;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000154
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000155 while (*selector) {
156 char *next;
157#endif
158 selector = skip_whitespace(selector);
159#if ENABLE_FEATURE_NAMEIF_EXTENDED
Phil Sutter293a8f22011-03-06 19:42:51 +0100160 ch->phy_address = -1;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000161 if (*selector == '\0')
162 break;
163 /* Search for the end .... */
164 next = skip_non_whitespace(selector);
165 if (*next)
166 *next++ = '\0';
167 /* Check for selectors, mac= is assumed */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100168 if (is_prefixed_with(selector, "bus=")) {
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000169 ch->bus_info = xstrdup(selector + 4);
170 found_selector++;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100171 } else if (is_prefixed_with(selector, "driver=")) {
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000172 ch->driver = xstrdup(selector + 7);
173 found_selector++;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100174 } else if (is_prefixed_with(selector, "phyaddr=")) {
Phil Sutter293a8f22011-03-06 19:42:51 +0100175 ch->phy_address = xatoi_positive(selector + 8);
176 found_selector++;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000177 } else {
178#endif
Denis Vlasenkob3f39f02008-04-10 02:03:21 +0000179 lmac = xmalloc(ETH_ALEN);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100180 ch->mac = ether_aton_r(selector + (is_prefixed_with(selector, "mac=") ? 4 : 0), lmac);
Denis Vlasenkob3f39f02008-04-10 02:03:21 +0000181 if (ch->mac == NULL)
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100182 bb_error_msg_and_die("can't parse %s", selector);
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000183#if ENABLE_FEATURE_NAMEIF_EXTENDED
184 found_selector++;
185 };
186 selector = next;
187 }
188 if (found_selector == 0)
189 bb_error_msg_and_die("no selectors found for %s", ch->ifname);
190#endif
191}
Glenn L McGrath688cf012002-12-17 12:43:43 +0000192
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000193static void prepend_new_eth_table(ethtable_t **clist, char *ifname, char *selector)
194{
195 ethtable_t *ch;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000196 if (strlen(ifname) >= IFNAMSIZ)
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000197 bb_error_msg_and_die("interface name '%s' too long", ifname);
198 ch = xzalloc(sizeof(*ch));
Denis Vlasenkob3f39f02008-04-10 02:03:21 +0000199 ch->ifname = xstrdup(ifname);
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000200 nameif_parse_selector(ch, selector);
201 ch->next = *clist;
202 if (*clist)
203 (*clist)->prev = ch;
204 *clist = ch;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000205}
206
Denis Vlasenkob3f39f02008-04-10 02:03:21 +0000207#if ENABLE_FEATURE_CLEAN_UP
208static void delete_eth_table(ethtable_t *ch)
209{
210 free(ch->ifname);
211#if ENABLE_FEATURE_NAMEIF_EXTENDED
212 free(ch->bus_info);
213 free(ch->driver);
214#endif
215 free(ch->mac);
216 free(ch);
217};
218#else
219void delete_eth_table(ethtable_t *ch);
220#endif
221
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000222int nameif_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Phil Sutter2adc0e62011-03-06 19:15:30 +0100223int nameif_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000224{
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000225 ethtable_t *clist = NULL;
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000226 const char *fname = "/etc/mactab";
Glenn L McGrath77c60e52003-01-16 11:37:57 +0000227 int ctl_sk;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000228 ethtable_t *ch;
Denis Vlasenkocfe29362008-08-01 02:32:23 +0000229 parser_t *parser;
230 char *token[2];
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000231
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000232 if (1 & getopt32(argv, "sc:", &fname)) {
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000233 openlog(applet_name, 0, LOG_LOCAL0);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +0000234 /* Why not just "="? I assume logging to stderr
235 * can't hurt. 2>/dev/null if you don't like it: */
236 logmode |= LOGMODE_SYSLOG;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000237 }
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000238 argv += optind;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000239
Phil Sutter2adc0e62011-03-06 19:15:30 +0100240 if (argv[0]) {
241 do {
242 if (!argv[1])
243 bb_show_usage();
244 prepend_new_eth_table(&clist, argv[0], argv[1]);
245 argv += 2;
246 } while (*argv);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000247 } else {
Denis Vlasenkocfe29362008-08-01 02:32:23 +0000248 parser = config_open(fname);
249 while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL))
250 prepend_new_eth_table(&clist, token[0], token[1]);
Denis Vlasenko084266e2008-07-26 23:08:31 +0000251 config_close(parser);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000252 }
253
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000254 ctl_sk = xsocket(PF_INET, SOCK_DGRAM, 0);
Denis Vlasenkocfe29362008-08-01 02:32:23 +0000255 parser = config_open2("/proc/net/dev", xfopen_for_read);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000256
Denis Vlasenkocfe29362008-08-01 02:32:23 +0000257 while (clist && config_read(parser, token, 2, 2, "\0: \t", PARSE_NORMAL)) {
Glenn L McGrath688cf012002-12-17 12:43:43 +0000258 struct ifreq ifr;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000259#if ENABLE_FEATURE_NAMEIF_EXTENDED
260 struct ethtool_drvinfo drvinfo;
Phil Sutter293a8f22011-03-06 19:42:51 +0100261 struct ethtool_cmd eth_settings;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000262#endif
Phil Sutter2adc0e62011-03-06 19:15:30 +0100263 if (parser->lineno <= 2)
Denis Vlasenkocfe29362008-08-01 02:32:23 +0000264 continue; /* Skip the first two lines */
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000265
266 /* Find the current interface name and copy it to ifr.ifr_name */
Rob Landley855f1e12006-01-15 02:20:06 +0000267 memset(&ifr, 0, sizeof(struct ifreq));
Denis Vlasenko360d9662008-12-02 18:18:50 +0000268 strncpy_IFNAMSIZ(ifr.ifr_name, token[0]);
Glenn L McGrath688cf012002-12-17 12:43:43 +0000269
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000270#if ENABLE_FEATURE_NAMEIF_EXTENDED
Phil Sutter293a8f22011-03-06 19:42:51 +0100271 /* Check for phy address */
272 memset(&eth_settings, 0, sizeof(eth_settings));
273 eth_settings.cmd = ETHTOOL_GSET;
274 ifr.ifr_data = (caddr_t) &eth_settings;
275 ioctl(ctl_sk, SIOCETHTOOL, &ifr);
276
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000277 /* Check for driver etc. */
Phil Sutter293a8f22011-03-06 19:42:51 +0100278 memset(&drvinfo, 0, sizeof(drvinfo));
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000279 drvinfo.cmd = ETHTOOL_GDRVINFO;
280 ifr.ifr_data = (caddr_t) &drvinfo;
281 /* Get driver and businfo first, so we have it in drvinfo */
282 ioctl(ctl_sk, SIOCETHTOOL, &ifr);
283#endif
284 ioctl(ctl_sk, SIOCGIFHWADDR, &ifr);
Glenn L McGrath688cf012002-12-17 12:43:43 +0000285
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000286 /* Search the list for a matching device */
287 for (ch = clist; ch; ch = ch->next) {
288#if ENABLE_FEATURE_NAMEIF_EXTENDED
289 if (ch->bus_info && strcmp(ch->bus_info, drvinfo.bus_info) != 0)
290 continue;
291 if (ch->driver && strcmp(ch->driver, drvinfo.driver) != 0)
292 continue;
Phil Sutter293a8f22011-03-06 19:42:51 +0100293 if (ch->phy_address != -1 && ch->phy_address != eth_settings.phy_address)
294 continue;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000295#endif
296 if (ch->mac && memcmp(ch->mac, ifr.ifr_hwaddr.sa_data, ETH_ALEN) != 0)
297 continue;
298 /* if we came here, all selectors have matched */
Thomas De Schampheleirebc0ffc02013-02-28 10:31:54 +0100299 goto found;
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000300 }
301 /* Nothing found for current interface */
Thomas De Schampheleirebc0ffc02013-02-28 10:31:54 +0100302 continue;
303 found:
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000304 if (strcmp(ifr.ifr_name, ch->ifname) != 0) {
305 strcpy(ifr.ifr_newname, ch->ifname);
306 ioctl_or_perror_and_die(ctl_sk, SIOCSIFNAME, &ifr,
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100307 "can't change ifname %s to %s",
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000308 ifr.ifr_name, ch->ifname);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000309 }
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000310 /* Remove list entry of renamed interface */
311 if (ch->prev != NULL)
312 ch->prev->next = ch->next;
313 else
314 clist = ch->next;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000315 if (ch->next != NULL)
Denis Vlasenkocfe29362008-08-01 02:32:23 +0000316 ch->next->prev = ch->prev;
Denis Vlasenkob3f39f02008-04-10 02:03:21 +0000317 if (ENABLE_FEATURE_CLEAN_UP)
318 delete_eth_table(ch);
Thomas De Schampheleirebc0ffc02013-02-28 10:31:54 +0100319 } /* while */
320
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000321 if (ENABLE_FEATURE_CLEAN_UP) {
Thomas De Schampheleirebc0ffc02013-02-28 10:31:54 +0100322 ethtable_t *next;
323 for (ch = clist; ch; ch = next) {
324 next = ch->next;
Denis Vlasenkob3f39f02008-04-10 02:03:21 +0000325 delete_eth_table(ch);
Thomas De Schampheleirebc0ffc02013-02-28 10:31:54 +0100326 }
Denis Vlasenkocfe29362008-08-01 02:32:23 +0000327 config_close(parser);
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000328 };
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000329
330 return 0;
331}