fix wds in wificonf
[openwrt/svn-archive/archive.git] / openwrt / package / wificonf / wificonf.c
1 /*
2 * Wireless Network Adapter configuration utility
3 *
4 * Copyright (C) 2005 Felix Fietkau <nbd@vd-s.ath.cx>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17 #include <stdio.h>
18 #include <unistd.h>
19 #include <iwlib.h>
20 #include <bcmnvram.h>
21 #include <shutils.h>
22 #include <wlioctl.h>
23
24 /*------------------------------------------------------------------*/
25 /*
26 * Macro to handle errors when setting WE
27 * Print a nice error message and exit...
28 * We define them as macro so that "return" do the right thing.
29 * The "do {...} while(0)" is a standard trick
30 */
31 #define ERR_SET_EXT(rname, request) \
32 fprintf(stderr, "Error for wireless request \"%s\" (%X) :\n", \
33 rname, request)
34
35 #define ABORT_ARG_NUM(rname, request) \
36 do { \
37 ERR_SET_EXT(rname, request); \
38 fprintf(stderr, " too few arguments.\n"); \
39 return; \
40 } while(0)
41
42 #define ABORT_ARG_TYPE(rname, request, arg) \
43 do { \
44 ERR_SET_EXT(rname, request); \
45 fprintf(stderr, " invalid argument \"%s\".\n", arg); \
46 return; \
47 } while(0)
48
49 #define ABORT_ARG_SIZE(rname, request, max) \
50 do { \
51 ERR_SET_EXT(rname, request); \
52 fprintf(stderr, " argument too big (max %d)\n", max); \
53 return; \
54 } while(0)
55
56 /*------------------------------------------------------------------*/
57 /*
58 * Wrapper to push some Wireless Parameter in the driver
59 * Use standard wrapper and add pretty error message if fail...
60 */
61 #define IW_SET_EXT_ERR(skfd, ifname, request, wrq, rname) \
62 do { \
63 if(iw_set_ext(skfd, ifname, request, wrq) < 0) { \
64 ERR_SET_EXT(rname, request); \
65 fprintf(stderr, " SET failed on device %-1.16s ; %s.\n", \
66 ifname, strerror(errno)); \
67 return; \
68 } } while(0)
69
70 /*------------------------------------------------------------------*/
71 /*
72 * Wrapper to extract some Wireless Parameter out of the driver
73 * Use standard wrapper and add pretty error message if fail...
74 */
75 #define IW_GET_EXT_ERR(skfd, ifname, request, wrq, rname) \
76 do { \
77 if(iw_get_ext(skfd, ifname, request, wrq) < 0) { \
78 ERR_SET_EXT(rname, request); \
79 fprintf(stderr, " GET failed on device %-1.16s ; %s.\n", \
80 ifname, strerror(errno)); \
81 return; \
82 } } while(0)
83
84 char *prefix;
85 char buffer[128];
86
87 char *wl_var(char *name)
88 {
89 strcpy(buffer, prefix);
90 strcat(buffer, name);
91 }
92
93 int nvram_enabled(char *name)
94 {
95 return (nvram_match(name, "1") || nvram_match(name, "on") || nvram_match(name, "enabled") || nvram_match(name, "true") || nvram_match(name, "yes") ? 1 : 0);
96 }
97
98 int nvram_disabled(char *name)
99 {
100 return (nvram_match(name, "0") || nvram_match(name, "off") || nvram_match(name, "disabled") || nvram_match(name, "false") || nvram_match(name, "no") ? 1 : 0);
101 }
102
103
104 int bcom_ioctl(int skfd, char *ifname, int cmd, void *buf, int len)
105 {
106 struct ifreq ifr;
107 wl_ioctl_t ioc;
108 int ret;
109
110 ioc.cmd = cmd;
111 ioc.buf = buf;
112 ioc.len = len;
113
114 ifr.ifr_data = (caddr_t) &ioc;
115 strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
116
117 ret = ioctl(skfd, SIOCDEVPRIVATE, &ifr);
118 if (ret < 0)
119 fprintf(stderr, "bcom_ioctl [cmd=%d, buf=%08x, len=%d] failed: %d\n", cmd, buf, len, ret);
120
121 return ret;
122 }
123
124 int bcom_set_val(int skfd, char *ifname, char *var, void *val, int len)
125 {
126 char buf[8192];
127 int ret;
128
129 if (strlen(var) + 1 > sizeof(buf) || len > sizeof(buf))
130 return -1;
131
132 strcpy(buf, var);
133
134 if ((ret = bcom_ioctl(skfd, ifname, WLC_GET_VAR, buf, sizeof(buf))))
135 return ret;
136
137 memcpy(val, buf, len);
138 return 0;
139 }
140
141 int bcom_set_int(int skfd, char *ifname, char *var, int val)
142 {
143 return bcom_set_val(skfd, ifname, var, &val, sizeof(val));
144 }
145
146 void setup_bcom(int skfd, char *ifname)
147 {
148 int val = 0;
149 char buf[8192];
150 char wbuf[80];
151 char *v;
152
153 if (bcom_ioctl(skfd, ifname, WLC_GET_MAGIC, &val, sizeof(val)) < 0)
154 return;
155
156 bcom_ioctl(skfd, ifname, WLC_DOWN, NULL, 0);
157
158 /* Set up WPA */
159 if (nvram_match(wl_var("crypto"), "tkip"))
160 val = TKIP_ENABLED;
161 else if (nvram_match(wl_var("crypto"), "aes"))
162 val = AES_ENABLED;
163 else if (nvram_match(wl_var("crypto"), "tkip+aes"))
164 val = TKIP_ENABLED | AES_ENABLED;
165 else
166 val = 0;
167 bcom_ioctl(skfd, ifname, WLC_SET_WSEC, &val, sizeof(val));
168
169 if (val && nvram_get(wl_var("wpa_psk"))) {
170 val = 1;
171 bcom_ioctl(skfd, ifname, WLC_SET_EAP_RESTRICT, &val, sizeof(val));
172 }
173
174 /* Set up afterburner */
175 val = ABO_AUTO;
176 if (nvram_enabled(wl_var("afterburner")))
177 val = ABO_ON;
178 if (nvram_disabled(wl_var("afterburner")))
179 val = ABO_OFF;
180 bcom_set_val(skfd, ifname, "afterburner_override", &val, sizeof(val));
181
182 /* Set other options */
183 if (v = nvram_get(wl_var("lazywds"))) {
184 val = atoi(v);
185 bcom_ioctl(skfd, ifname, WLC_SET_LAZYWDS, &val, sizeof(val));
186 }
187 if (v = nvram_get(wl_var("frag"))) {
188 val = atoi(v);
189 bcom_ioctl(skfd, ifname, WLC_SET_FRAG, &val, sizeof(val));
190 }
191 if (v = nvram_get(wl_var("dtim"))) {
192 val = atoi(v);
193 bcom_ioctl(skfd, ifname, WLC_SET_DTIMPRD, &val, sizeof(val));
194 }
195 if (v = nvram_get(wl_var("bcn"))) {
196 val = atoi(v);
197 bcom_ioctl(skfd, ifname, WLC_SET_BCNPRD, &val, sizeof(val));
198 }
199 if (v = nvram_get(wl_var("rts"))) {
200 val = atoi(v);
201 bcom_ioctl(skfd, ifname, WLC_SET_RTS, &val, sizeof(val));
202 }
203 if (v = nvram_get(wl_var("antdiv"))) {
204 val = atoi(v);
205 bcom_ioctl(skfd, ifname, WLC_SET_ANTDIV, &val, sizeof(val));
206 }
207 if (v = nvram_get(wl_var("txant"))) {
208 val = atoi(v);
209 bcom_ioctl(skfd, ifname, WLC_SET_TXANT, &val, sizeof(val));
210 }
211
212 val = nvram_enabled(wl_var("closed"));
213 bcom_ioctl(skfd, ifname, WLC_SET_CLOSED, &val, sizeof(val));
214
215 val = nvram_enabled(wl_var("ap_isolate"));
216 bcom_set_int(skfd, ifname, "ap_isolate", val);
217
218 val = nvram_enabled(wl_var("frameburst"));
219 bcom_ioctl(skfd, ifname, WLC_SET_FAKEFRAG, &val, sizeof(val));
220
221 /* Set up MAC list */
222 if (nvram_match(wl_var("macmode"), "allow"))
223 val = WLC_MACMODE_ALLOW;
224 else if (nvram_match(wl_var("macmode"), "deny"))
225 val = WLC_MACMODE_DENY;
226 else
227 val = WLC_MACMODE_DISABLED;
228
229 if ((val != WLC_MACMODE_DISABLED) && (v = nvram_get(wl_var("maclist")))) {
230 struct maclist *mac_list;
231 struct ether_addr *addr;
232 char *next;
233
234 memset(buf, 0, 8192);
235 mac_list = (struct maclist *) buf;
236 addr = mac_list->ea;
237
238 foreach(wbuf, v, next) {
239 if (ether_atoe(wbuf, addr->ether_addr_octet)) {
240 mac_list->count++;
241 addr++;
242 }
243 }
244 bcom_ioctl(skfd, ifname, WLC_SET_MACLIST, buf, sizeof(buf));
245 } else {
246 val = WLC_MACMODE_DISABLED;
247 }
248 bcom_ioctl(skfd, ifname, WLC_SET_MACMODE, &val, sizeof(val));
249
250 if (v = nvram_get(wl_var("wds"))) {
251 struct maclist *wdslist = (struct maclist *) buf;
252 struct ether_addr *addr = wdslist->ea;
253 char *next;
254
255 memset(buf, 0, 8192);
256 foreach(wbuf, v, next) {
257 if (ether_atoe(wbuf, addr->ether_addr_octet)) {
258 wdslist->count++;
259 addr++;
260 }
261 }
262 bcom_ioctl(skfd, ifname, WLC_SET_WDSLIST, buf, sizeof(buf));
263 }
264
265 /* Set up G mode */
266 bcom_ioctl(skfd, ifname, WLC_GET_PHYTYPE, &val, sizeof(val));
267 if (val == 2) {
268 int override = WLC_G_PROTECTION_OFF;
269 int control = WLC_G_PROTECTION_CTL_OFF;
270
271 val = atoi(nvram_safe_get(wl_var("gmode")));
272 if (val > 5)
273 val = 1;
274 bcom_ioctl(skfd, ifname, WLC_SET_GMODE, &val, sizeof(val));
275
276 if (nvram_match(wl_var("gmode_protection"), "auto")) {
277 override = WLC_G_PROTECTION_AUTO;
278 control = WLC_G_PROTECTION_CTL_OVERLAP;
279 }
280 if (nvram_enabled(wl_var("gmode_protection"))) {
281 override = WLC_G_PROTECTION_ON;
282 control = WLC_G_PROTECTION_CTL_OVERLAP;
283 }
284 bcom_ioctl(skfd, ifname, WLC_SET_GMODE_PROTECTION_CONTROL, &override, sizeof(control));
285 bcom_ioctl(skfd, ifname, WLC_SET_GMODE_PROTECTION_OVERRIDE, &override, sizeof(override));
286 }
287 }
288
289 void set_wext_ssid(int skfd, char *ifname)
290 {
291 char *buffer;
292 struct iwreq wrq;
293
294 if (buffer = nvram_get(wl_var("ssid"))) {
295 if (strlen(buffer) > IW_ESSID_MAX_SIZE) {
296 ABORT_ARG_SIZE("Set ESSID", SIOCSIWESSID, IW_ESSID_MAX_SIZE);
297 } else {
298 char essid[IW_ESSID_MAX_SIZE + 1];
299
300 wrq.u.essid.flags = 1;
301 strcpy(essid, buffer);
302 wrq.u.essid.pointer = (caddr_t) essid;
303 wrq.u.essid.length = strlen(essid) + 1;
304 IW_SET_EXT_ERR(skfd, ifname, SIOCSIWESSID, &wrq, "Set ESSID");
305 }
306 }
307 }
308
309 void start_bcom(int skfd, char *ifname)
310 {
311 int val = 0;
312
313 if (bcom_ioctl(skfd, ifname, WLC_GET_MAGIC, &val, sizeof(val)) < 0)
314 return;
315
316 bcom_ioctl(skfd, ifname, WLC_UP, &val, sizeof(val));
317
318 /* Need to re-set SSID after WLC_UP */
319 set_wext_ssid(skfd, ifname);
320 }
321
322 void setup_wext_wep(int skfd, char *ifname)
323 {
324 int i, keylen;
325 struct iwreq wrq;
326 char keystr[5];
327 char *keyval;
328 unsigned char key[IW_ENCODING_TOKEN_MAX];
329
330 strcpy(keystr, "key1");
331 for (i = 1; i <= 4; i++) {
332 if (keyval = nvram_get(wl_var(keystr))) {
333 keylen = iw_in_key(keyval, key);
334
335 if (keylen > 0) {
336 wrq.u.data.length = keylen;
337 wrq.u.data.pointer = (caddr_t) key;
338 wrq.u.data.flags = i;
339 IW_SET_EXT_ERR(skfd, ifname, SIOCSIWENCODE, &wrq, "Set Encode");
340 }
341 }
342 keystr[3]++;
343 }
344
345
346 i = atoi(nvram_safe_get(wl_var("key")));
347 if (i > 0 && i < 4) {
348 wrq.u.data.flags = i | IW_ENCODE_RESTRICTED;
349 IW_SET_EXT_ERR(skfd, ifname, SIOCSIWENCODE, &wrq, "Set Encode");
350 }
351 }
352
353 void setup_wext(int skfd, char *ifname)
354 {
355 char *buffer;
356 struct iwreq wrq;
357
358 /* Set ESSID */
359 set_wext_ssid(skfd, ifname);
360
361 /* Set channel */
362 int channel = atoi(nvram_safe_get(wl_var("channel")));
363
364 wrq.u.freq.m = -1;
365 wrq.u.freq.e = 0;
366 wrq.u.freq.flags = 0;
367
368 if (channel > 0) {
369 wrq.u.freq.flags = IW_FREQ_FIXED;
370 wrq.u.freq.m = channel;
371 IW_SET_EXT_ERR(skfd, ifname, SIOCSIWFREQ, &wrq, "Set Frequency");
372 }
373
374 /* Set operation mode */
375 int ap = 0, infra = 0, wet = 0;
376
377 ap = !nvram_match(wl_var("mode"), "sta");
378 infra = !nvram_disabled(wl_var("infra"));
379 wet = nvram_enabled(wl_var("wet"));
380
381 wrq.u.mode = (!infra ? IW_MODE_ADHOC : (ap ? IW_MODE_MASTER : (wet ? IW_MODE_REPEAT : IW_MODE_INFRA)));
382 IW_SET_EXT_ERR(skfd, ifname, SIOCSIWMODE, &wrq, "Set Mode");
383
384 /* Disable radio if wlX_radio is set and not enabled */
385 wrq.u.txpower.disabled = nvram_disabled(wl_var("radio"));
386
387 wrq.u.txpower.value = -1;
388 wrq.u.txpower.fixed = 1;
389 wrq.u.txpower.flags = IW_TXPOW_MWATT;
390 IW_SET_EXT_ERR(skfd, ifname, SIOCSIWTXPOW, &wrq, "Set Tx Power");
391
392 /* Set up WEP */
393 if (nvram_enabled(wl_var("wep")))
394 setup_wext_wep(skfd, ifname);
395
396 }
397
398
399 static int setup_interfaces(int skfd, char *ifname, char *args[], int count)
400 {
401 struct iwreq wrq;
402 int rc;
403
404 /* Avoid "Unused parameter" warning */
405 args = args; count = count;
406
407 if(iw_get_ext(skfd, ifname, SIOCGIWNAME, &wrq) < 0)
408 return 0;
409
410 setup_bcom(skfd, ifname);
411 setup_wext(skfd, ifname);
412 start_bcom(skfd, ifname);
413 prefix[2]++;
414 }
415
416 int main(int argc, char **argv)
417 {
418 int skfd;
419 if((skfd = iw_sockets_open()) < 0) {
420 perror("socket");
421 exit(-1);
422 }
423
424 prefix = strdup("wl0_");
425 iw_enum_devices(skfd, &setup_interfaces, NULL, 0);
426
427 return 0;
428 }