blob: a9d422110c9c78b4aabb3174354beab210b4efe8 [file] [log] [blame]
Glenn L McGrathf03c9332002-12-13 00:01:44 +00001/*
2 * nameif.c - Naming Interfaces based on MAC address for busybox.
3 *
4 * Writen 2000 by Andi Kleen.
5 * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
6 * Glenn McGrath <bug1@optushome.com.au>
7 *
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>
Glenn L McGrath688cf012002-12-17 12:43:43 +000035#include <linux/sockios.h>
Glenn L McGrathf03c9332002-12-13 00:01:44 +000036
37#include "busybox.h"
38
Glenn L McGrathf03c9332002-12-13 00:01:44 +000039/* Octets in one ethernet addr, from <linux/if_ether.h> */
40#define ETH_ALEN 6
41
42#ifndef ifr_newname
43#define ifr_newname ifr_ifru.ifru_slave
44#endif
45
46typedef struct mactable_s {
47 struct mactable_s *next;
Glenn L McGrath688cf012002-12-17 12:43:43 +000048 struct mactable_s *prev;
Glenn L McGrathf03c9332002-12-13 00:01:44 +000049 char *ifname;
50 struct ether_addr *mac;
51} mactable_t;
52
Glenn L McGrath688cf012002-12-17 12:43:43 +000053static void serror(const char use_syslog, const char *s, ...)
Glenn L McGrathf03c9332002-12-13 00:01:44 +000054{
55 va_list ap;
56
57 va_start(ap, s);
58
59 if (use_syslog) {
60 openlog("nameif", 0, LOG_LOCAL0);
61 syslog(LOG_ERR, s, ap);
62 closelog();
63 } else {
64 vfprintf(stderr, s, ap);
65 putc('\n', stderr);
66 }
67
68 va_end(ap);
Glenn L McGrath688cf012002-12-17 12:43:43 +000069
Glenn L McGrathf03c9332002-12-13 00:01:44 +000070 exit(EXIT_FAILURE);
71}
72
Glenn L McGrath688cf012002-12-17 12:43:43 +000073/* Check ascii str_macaddr, convert and copy to *mac */
74struct ether_addr *cc_macaddr(char *str_macaddr, unsigned char use_syslog)
75{
76 struct ether_addr *lmac, *mac;
77
78 lmac = ether_aton(str_macaddr);
79 if (lmac == NULL)
80 serror(use_syslog, "cannot parse MAC %s", str_macaddr);
81 mac = xcalloc(1, ETH_ALEN);
82 memcpy(mac, lmac, ETH_ALEN);
83
84 return mac;
85}
86
Glenn L McGrathf03c9332002-12-13 00:01:44 +000087int nameif_main(int argc, char **argv)
88{
89 mactable_t *clist = NULL;
90 FILE *ifh;
91 char *fname = "/etc/mactab";
92 char *line;
Glenn L McGrathf03c9332002-12-13 00:01:44 +000093 unsigned char use_syslog = 0;
94 int ctl_sk = -1;
95 int opt;
Glenn L McGrath688cf012002-12-17 12:43:43 +000096 int if_index = 1;
97 mactable_t *ch = NULL;
Glenn L McGrathf03c9332002-12-13 00:01:44 +000098
99 static struct option opts[] = {
100 {"syslog", 0, NULL, 's'},
101 {"configfile", 1, NULL, 'c'},
102 {NULL},
103 };
104
105 while ((opt = getopt_long(argc, argv, "c:s", opts, NULL)) != -1) {
106 switch (opt) {
107 case 'c':
108 fname = optarg;
109 break;
110 case 's':
111 use_syslog = 1;
112 break;
113 default:
114 show_usage();
115 }
116 }
117
Glenn L McGrath688cf012002-12-17 12:43:43 +0000118 if ((argc - optind) & 1)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000119 show_usage();
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000120
121 if (optind < argc) {
122 while (optind < argc) {
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000123
Glenn L McGrath688cf012002-12-17 12:43:43 +0000124 if (strlen(argv[optind]) > IF_NAMESIZE)
125 serror(use_syslog, "interface name `%s' too long",
126 argv[optind]);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000127 optind++;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000128
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000129 ch = xcalloc(1, sizeof(mactable_t));
Glenn L McGrath688cf012002-12-17 12:43:43 +0000130 ch->next = NULL;
131 ch->prev = NULL;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000132 ch->ifname = strdup(argv[optind - 1]);
Glenn L McGrath688cf012002-12-17 12:43:43 +0000133 ch->mac = cc_macaddr(argv[optind], use_syslog);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000134 optind++;
135 if (clist)
Glenn L McGrath688cf012002-12-17 12:43:43 +0000136 clist->prev = ch->next;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000137 ch->next = clist;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000138 ch->prev = clist;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000139 clist = ch;
140 }
141 } else {
142 ifh = xfopen(fname, "r");
143
144 while ((line = get_line_from_file(ifh)) != NULL) {
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000145 char *line_ptr;
146 unsigned short name_length;
147
148 line_ptr = line + strspn(line, " \t");
149 if ((line_ptr[0] == '#') || (line_ptr[0] == '\n'))
150 continue;
151 name_length = strcspn(line_ptr, " \t");
Glenn L McGrath688cf012002-12-17 12:43:43 +0000152 if (name_length > IF_NAMESIZE)
153 serror(use_syslog, "interface name `%s' too long",
154 argv[optind]);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000155 ch = xcalloc(1, sizeof(mactable_t));
Glenn L McGrath688cf012002-12-17 12:43:43 +0000156 ch->next = NULL;
157 ch->prev = NULL;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000158 ch->ifname = strndup(line_ptr, name_length);
159 line_ptr += name_length;
160 line_ptr += strspn(line_ptr, " \t");
161 name_length = strspn(line_ptr, "0123456789ABCDEFabcdef:");
162 line_ptr[name_length] = '\0';
Glenn L McGrath688cf012002-12-17 12:43:43 +0000163 ch->mac = cc_macaddr(line_ptr, use_syslog);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000164 if (clist)
Glenn L McGrath688cf012002-12-17 12:43:43 +0000165 clist->prev = ch;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000166 ch->next = clist;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000167 clist = ch;
168 free(line);
169 }
170 fclose(ifh);
171 }
172
Glenn L McGrath688cf012002-12-17 12:43:43 +0000173 if ((ctl_sk = socket(PF_INET, SOCK_DGRAM, 0)) == -1)
174 serror(use_syslog, "socket: %s", strerror(errno));
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000175
Glenn L McGrath688cf012002-12-17 12:43:43 +0000176 while (clist) {
177 struct ifreq ifr;
178
179 bzero(&ifr, sizeof(struct ifreq));
180 if_index++;
181 ifr.ifr_ifindex = if_index;
182
183 /* Get ifname by index or die */
184 if (ioctl(ctl_sk, SIOCGIFNAME, &ifr))
185 break;
186
187 /* Has this device hwaddr? */
188 if (ioctl(ctl_sk, SIOCGIFHWADDR, &ifr))
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000189 continue;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000190
191 /* Search for mac like in ifr.ifr_hwaddr.sa_data */
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000192 for (ch = clist; ch; ch = ch->next)
193 if (!memcmp(ch->mac, ifr.ifr_hwaddr.sa_data, ETH_ALEN))
194 break;
Glenn L McGrath688cf012002-12-17 12:43:43 +0000195
196 /* Nothing found for current ifr.ifr_hwaddr.sa_data */
197 if (ch == NULL)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000198 continue;
Glenn L McGrath8b08bda2002-12-13 09:02:16 +0000199
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000200 strcpy(ifr.ifr_newname, ch->ifname);
Glenn L McGrath688cf012002-12-17 12:43:43 +0000201 if (ioctl(ctl_sk, SIOCSIFNAME, &ifr) < 0)
202 serror(use_syslog, "cannot change ifname %s to %s: %s",
203 ifr.ifr_name, ch->ifname, strerror(errno));
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000204
Glenn L McGrath688cf012002-12-17 12:43:43 +0000205 /* Remove list entry of renamed interface */
206 if (ch->prev != NULL) {
207 (ch->prev)->next = ch->next;
208 } else {
209 clist = ch->next;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000210 }
Glenn L McGrath688cf012002-12-17 12:43:43 +0000211 if (ch->next != NULL)
212 (ch->next)->prev = ch->prev;
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000213 free(ch);
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000214 }
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000215
216 while (clist) {
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000217 ch = clist;
218 clist = clist->next;
219 free(ch);
220 }
221
222 return 0;
223}