4 * Copyright (C) 2005 Mike Baker,
5 * Felix Fietkau <openwrt@nbd.name>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #include <linux/config.h>
26 #include <linux/module.h>
27 #include <linux/init.h>
28 #include <linux/if_arp.h>
29 #include <asm/uaccess.h>
30 #include <linux/wireless.h>
32 #include <net/iw_handler.h>
35 static struct net_device
*dev
;
36 static unsigned short bss_force
;
37 char buf
[WLC_IOCTL_MAXLEN
];
39 /* The frequency of each channel in MHz */
40 const long channel_frequency
[] = {
41 2412, 2417, 2422, 2427, 2432, 2437, 2442,
42 2447, 2452, 2457, 2462, 2467, 2472, 2484
44 #define NUM_CHANNELS ( sizeof(channel_frequency) / sizeof(channel_frequency[0]) )
46 typedef struct internal_wsec_key
{
48 uint8 unknown_1
; // 0x01
50 uint8 unknown_2
[7]; // 0x03
53 char data
[32]; // 0x0e
57 static int wlcompat_private_ioctl(struct net_device
*dev
,
58 struct iw_request_info
*info
,
59 union iwreq_data
*wrqu
,
62 void print_buffer(int len
, unsigned char *buf
);
65 static int wl_ioctl(struct net_device
*dev
, int cmd
, void *buf
, int len
)
67 mm_segment_t old_fs
= get_fs();
74 strncpy(ifr
.ifr_name
, dev
->name
, IFNAMSIZ
);
75 ifr
.ifr_data
= (caddr_t
) &ioc
;
77 ret
= dev
->do_ioctl(dev
,&ifr
,SIOCDEVPRIVATE
);
82 static int wl_set_val(struct net_device
*dev
, char *var
, void *val
, int len
)
88 /* check for overflow */
89 if ((buf_len
= strlen(var
)) + 1 + len
> sizeof(buf
))
95 /* append int value onto the end of the name string */
96 memcpy(&(buf
[buf_len
]), val
, len
);
99 ret
= wl_ioctl(dev
, WLC_SET_VAR
, buf
, buf_len
);
103 static int wl_get_val(struct net_device
*dev
, char *var
, void *val
, int len
)
109 /* check for overflow */
110 if ((buf_len
= strlen(var
)) + 1 > sizeof(buf
) || len
> sizeof(buf
))
114 if (ret
= wl_ioctl(dev
, WLC_GET_VAR
, buf
, buf_len
+ len
))
117 memcpy(val
, buf
, len
);
121 int get_primary_key(struct net_device
*dev
)
125 for (key
= val
= 0; (key
< 4) && (val
== 0); key
++) {
127 if (wl_ioctl(dev
, WLC_GET_KEY_PRIMARY
, &val
, sizeof(val
)) < 0)
134 static int wlcompat_ioctl_getiwrange(struct net_device
*dev
,
138 struct iw_range
*range
;
140 range
= (struct iw_range
*) extra
;
142 range
->we_version_compiled
= WIRELESS_EXT
;
143 range
->we_version_source
= WIRELESS_EXT
;
145 range
->min_nwid
= range
->max_nwid
= 0;
147 range
->num_channels
= NUM_CHANNELS
;
149 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
150 range
->freq
[k
].i
= i
+ 1;
151 range
->freq
[k
].m
= channel_frequency
[i
] * 100000;
152 range
->freq
[k
].e
= 1;
154 if (k
>= IW_MAX_FREQUENCIES
)
157 range
->num_frequency
= k
;
158 range
->sensitivity
= 3;
160 /* nbd: don't know what this means, but other drivers set it this way */
161 range
->pmp_flags
= IW_POWER_PERIOD
;
162 range
->pmt_flags
= IW_POWER_TIMEOUT
;
163 range
->pm_capa
= IW_POWER_PERIOD
| IW_POWER_TIMEOUT
| IW_POWER_UNICAST_R
;
166 range
->max_pmp
= 65535000;
168 range
->max_pmt
= 65535 * 1000;
171 if (wl_ioctl(dev
, WLC_GET_RTS
, &range
->max_rts
, sizeof(int)) < 0)
172 range
->max_rts
= 2347;
174 range
->min_frag
= 256;
176 if (wl_ioctl(dev
, WLC_GET_FRAG
, &range
->max_frag
, sizeof(int)) < 0)
177 range
->max_frag
= 2346;
179 range
->txpower_capa
= IW_TXPOW_DBM
;
185 static int wlcompat_set_scan(struct net_device
*dev
,
186 struct iw_request_info
*info
,
187 union iwreq_data
*wrqu
,
190 int ap
= 0, oldap
= 0;
191 wl_scan_params_t params
;
193 memset(¶ms
, 0, sizeof(params
));
195 /* use defaults (same parameters as wl scan) */
196 memset(¶ms
.bssid
, 0xff, sizeof(params
.bssid
));
197 params
.bss_type
= DOT11_BSSTYPE_ANY
;
198 params
.scan_type
= -1;
200 params
.active_time
= -1;
201 params
.passive_time
= -1;
202 params
.home_time
= -1;
204 /* can only scan in STA mode */
205 wl_ioctl(dev
, WLC_GET_AP
, &oldap
, sizeof(oldap
));
207 wl_ioctl(dev
, WLC_SET_AP
, &ap
, sizeof(ap
));
209 if (wl_ioctl(dev
, WLC_SCAN
, ¶ms
, 64) < 0)
213 wl_ioctl(dev
, WLC_SET_AP
, &oldap
, sizeof(oldap
));
219 static int wlcompat_get_scan(struct net_device
*dev
,
220 struct iw_request_info
*info
,
221 union iwreq_data
*wrqu
,
224 wl_scan_results_t
*results
= (wl_scan_results_t
*) buf
;
225 wl_bss_info_t
*bss_info
;
227 char *current_ev
= extra
;
229 char *end_buf
= extra
+ IW_SCAN_MAX_DATA
;
233 if (wl_ioctl(dev
, WLC_SCAN_RESULTS
, buf
, WLC_IOCTL_MAXLEN
) < 0)
236 bss_info
= &(results
->bss_info
[0]);
237 info_ptr
= (char *) bss_info
;
238 for (i
= 0; i
< results
->count
; i
++) {
240 /* send the cell address (must be sent first) */
242 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
243 memcpy(&iwe
.u
.ap_addr
.sa_data
, &bss_info
->BSSID
, sizeof(bss_info
->BSSID
));
244 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
, IW_EV_ADDR_LEN
);
247 iwe
.cmd
= SIOCGIWESSID
;
248 iwe
.u
.data
.length
= bss_info
->SSID_len
;
249 if (iwe
.u
.data
.length
> IW_ESSID_MAX_SIZE
)
250 iwe
.u
.data
.length
= IW_ESSID_MAX_SIZE
;
251 iwe
.u
.data
.flags
= 1;
252 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
, bss_info
->SSID
);
254 /* send frequency/channel info */
255 iwe
.cmd
= SIOCGIWFREQ
;
257 iwe
.u
.freq
.m
= bss_info
->channel
;
258 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
, IW_EV_FREQ_LEN
);
260 /* add quality statistics */
262 iwe
.u
.qual
.level
= bss_info
->RSSI
;
263 iwe
.u
.qual
.noise
= bss_info
->phy_noise
;
265 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
, IW_EV_QUAL_LEN
);
267 /* send rate information */
268 iwe
.cmd
= SIOCGIWRATE
;
269 current_val
= current_ev
+ IW_EV_LCP_LEN
;
270 iwe
.u
.bitrate
.fixed
= iwe
.u
.bitrate
.disabled
= 0;
272 for(j
= 0 ; j
< bss_info
->rateset
.count
; j
++) {
273 iwe
.u
.bitrate
.value
= ((bss_info
->rateset
.rates
[j
] & 0x7f) * 500000);
274 current_val
= iwe_stream_add_value(current_ev
, current_val
, end_buf
, &iwe
, IW_EV_PARAM_LEN
);
276 if((current_val
- current_ev
) > IW_EV_LCP_LEN
)
277 current_ev
= current_val
;
279 info_ptr
+= sizeof(wl_bss_info_t
);
280 if (bss_info
->ie_length
% 4)
281 info_ptr
+= bss_info
->ie_length
+ 4 - (bss_info
->ie_length
% 4);
283 info_ptr
+= bss_info
->ie_length
;
284 bss_info
= (wl_bss_info_t
*) info_ptr
;
287 wrqu
->data
.length
= (current_ev
- extra
);
288 wrqu
->data
.flags
= 0;
293 static int wlcompat_ioctl(struct net_device
*dev
,
294 struct iw_request_info
*info
,
295 union iwreq_data
*wrqu
,
300 strcpy(wrqu
->name
, "IEEE 802.11-DS");
306 if (wl_ioctl(dev
,WLC_GET_CHANNEL
, &ci
, sizeof(ci
)) < 0)
309 wrqu
->freq
.m
= ci
.target_channel
;
315 if (wrqu
->freq
.m
== -1) {
317 if (wl_ioctl(dev
, WLC_SET_CHANNEL
, &wrqu
->freq
.m
, sizeof(int)) < 0)
320 if (wrqu
->freq
.e
== 1) {
322 int f
= wrqu
->freq
.m
/ 100000;
323 while ((channel
< NUM_CHANNELS
+ 1) && (f
!= channel_frequency
[channel
]))
326 if (channel
== NUM_CHANNELS
) // channel not found
330 wrqu
->freq
.m
= channel
+ 1;
332 if ((wrqu
->freq
.e
== 0) && (wrqu
->freq
.m
< 1000)) {
333 if (wl_ioctl(dev
, WLC_SET_CHANNEL
, &wrqu
->freq
.m
, sizeof(int)) < 0)
347 memset(®
, 0, sizeof(reg
));
349 if (wrqu
->ap_addr
.sa_family
!= ARPHRD_ETHER
)
352 if (wl_ioctl(dev
, WLC_GET_AP
, &ap
, sizeof(ap
)) < 0)
355 if (wl_ioctl(dev
, WLC_GET_INFRA
, &infra
, sizeof(infra
)) < 0)
359 wl_ioctl(dev
, WLC_SET_BSSID
, wrqu
->ap_addr
.sa_data
, 6);
363 reg
.val
= bss_force
<< 16 | bss_force
;
364 wl_ioctl(dev
, WLC_W_REG
, ®
, sizeof(reg
));
367 wl_ioctl(dev
, WLC_R_REG
, ®
, sizeof(reg
));
368 reg
.val
= bss_force
<< 16;
369 wl_ioctl(dev
, WLC_W_REG
, ®
, sizeof(reg
));
372 if (wl_ioctl(dev
, ((ap
|| !infra
) ? WLC_SET_BSSID
: WLC_REASSOC
), wrqu
->ap_addr
.sa_data
, 6) < 0)
381 memset(®
, 0, sizeof(reg
));
385 wl_ioctl(dev
, WLC_R_REG
, ®
, sizeof(reg
));
386 printk("bss time = 0x%08x", reg
.val
);
389 wl_ioctl(dev
, WLC_R_REG
, ®
, sizeof(reg
));
390 printk("%08x\n", reg
.val
);
393 wrqu
->ap_addr
.sa_family
= ARPHRD_ETHER
;
394 if (wl_ioctl(dev
,WLC_GET_BSSID
,wrqu
->ap_addr
.sa_data
,6) < 0)
402 if (wl_ioctl(dev
,WLC_GET_SSID
, &ssid
, sizeof(wlc_ssid_t
)) < 0)
405 wrqu
->essid
.flags
= wrqu
->data
.flags
= 1;
406 wrqu
->essid
.length
= wrqu
->data
.length
= ssid
.SSID_len
+ 1;
407 memcpy(extra
,ssid
.SSID
,ssid
.SSID_len
+ 1);
413 memset(&ssid
, 0, sizeof(ssid
));
414 ssid
.SSID_len
= strlen(extra
);
415 if (ssid
.SSID_len
> WLC_ESSID_MAX_SIZE
)
416 ssid
.SSID_len
= WLC_ESSID_MAX_SIZE
;
417 memcpy(ssid
.SSID
, extra
, ssid
.SSID_len
);
418 if (wl_ioctl(dev
, WLC_SET_SSID
, &ssid
, sizeof(ssid
)) < 0)
424 if (wl_ioctl(dev
,WLC_GET_RTS
,&(wrqu
->rts
.value
),sizeof(int)) < 0)
430 if (wl_ioctl(dev
,WLC_SET_RTS
,&(wrqu
->rts
.value
),sizeof(int)) < 0)
436 if (wl_ioctl(dev
,WLC_GET_FRAG
,&(wrqu
->frag
.value
),sizeof(int)) < 0)
442 if (wl_ioctl(dev
,WLC_SET_FRAG
,&(wrqu
->frag
.value
),sizeof(int)) < 0)
450 wl_ioctl(dev
, WLC_GET_RADIO
, &radio
, sizeof(int));
452 if (wl_get_val(dev
, "qtxpower", &(wrqu
->txpower
.value
), sizeof(int)) < 0)
455 wrqu
->txpower
.value
&= ~WL_TXPWR_OVERRIDE
;
456 wrqu
->txpower
.value
/= 4;
458 wrqu
->txpower
.fixed
= 0;
459 wrqu
->txpower
.disabled
= radio
;
460 wrqu
->txpower
.flags
= IW_TXPOW_DBM
;
465 /* This is weird: WLC_SET_RADIO with 1 as argument disables the radio */
466 int radio
= wrqu
->txpower
.disabled
;
468 wl_ioctl(dev
, WLC_SET_RADIO
, &radio
, sizeof(int));
470 if (!wrqu
->txpower
.disabled
&& (wrqu
->txpower
.value
> 0)) {
473 if (wl_get_val(dev
, "qtxpower", &value
, sizeof(int)) < 0)
476 value
&= WL_TXPWR_OVERRIDE
;
477 wrqu
->txpower
.value
*= 4;
478 wrqu
->txpower
.value
|= value
;
480 if (wrqu
->txpower
.flags
!= IW_TXPOW_DBM
)
483 if (wrqu
->txpower
.value
> 0)
484 if (wl_set_val(dev
, "qtxpower", &(wrqu
->txpower
.value
), sizeof(int)) < 0)
491 int val
= 0, wep
= 1, wrestrict
= 1;
492 int index
= (wrqu
->data
.flags
& IW_ENCODE_INDEX
) - 1;
495 index
= get_primary_key(dev
);
497 if (wrqu
->data
.flags
& IW_ENCODE_DISABLED
) {
499 if (wl_ioctl(dev
, WLC_SET_WSEC
, &wep
, sizeof(val
)) < 0)
504 if (wl_ioctl(dev
, WLC_SET_WSEC
, &wep
, sizeof(val
)) < 0)
507 if (wrqu
->data
.flags
& IW_ENCODE_OPEN
)
510 if (wrqu
->data
.pointer
&& (wrqu
->data
.length
> 0) && (wrqu
->data
.length
<= 16)) {
512 memset(&key
, 0, sizeof(key
));
514 key
.flags
= WL_PRIMARY_KEY
;
515 key
.len
= wrqu
->data
.length
;
517 memcpy(key
.data
, wrqu
->data
.pointer
, wrqu
->data
.length
);
519 if (wl_ioctl(dev
, WLC_SET_KEY
, &key
, sizeof(key
)) < 0)
524 wl_ioctl(dev
, WLC_SET_KEY_PRIMARY
, &index
, sizeof(index
));
527 wl_ioctl(dev
, WLC_SET_WEP_RESTRICT
, &wrestrict
, sizeof(wrestrict
));
535 if (wl_ioctl(dev
, WLC_GET_WEP
, &val
, sizeof(val
)) < 0)
540 int key
= get_primary_key(dev
);
542 wrqu
->data
.flags
= IW_ENCODE_ENABLED
;
547 info_addr
= (int *) dev
->priv
;
548 wep_key
= (wkey
*) ((*info_addr
) + 0x2752 + (key
* 0x110));
550 wrqu
->data
.flags
|= key
+ 1;
551 wrqu
->data
.length
= wep_key
->len
;
553 memset(extra
, 0, 16);
554 memcpy(extra
, wep_key
->data
, 16);
556 wrqu
->data
.flags
|= IW_ENCODE_NOKEY
;
559 wrqu
->data
.flags
= IW_ENCODE_DISABLED
;
566 return wlcompat_ioctl_getiwrange(dev
, extra
);
571 int ap
= -1, infra
= -1, passive
= 0, wet
= 0;
573 switch (wrqu
->mode
) {
574 case IW_MODE_MONITOR
:
599 wl_ioctl(dev
, WLC_SET_PASSIVE
, &passive
, sizeof(passive
));
600 wl_ioctl(dev
, WLC_SET_MONITOR
, &passive
, sizeof(passive
));
601 wl_ioctl(dev
, WLC_SET_WET
, &wet
, sizeof(wet
));
603 wl_ioctl(dev
, WLC_SET_AP
, &ap
, sizeof(ap
));
605 wl_ioctl(dev
, WLC_SET_INFRA
, &infra
, sizeof(infra
));
612 int ap
, infra
, wet
, passive
;
614 if (wl_ioctl(dev
, WLC_GET_AP
, &ap
, sizeof(ap
)) < 0)
616 if (wl_ioctl(dev
, WLC_GET_INFRA
, &infra
, sizeof(infra
)) < 0)
618 if (wl_ioctl(dev
, WLC_GET_PASSIVE
, &passive
, sizeof(passive
)) < 0)
620 if (wl_ioctl(dev
, WLC_GET_WET
, &wet
, sizeof(wet
)) < 0)
624 wrqu
->mode
= IW_MODE_MONITOR
;
626 wrqu
->mode
= IW_MODE_ADHOC
;
629 wrqu
->mode
= IW_MODE_MASTER
;
632 wrqu
->mode
= IW_MODE_REPEAT
;
634 wrqu
->mode
= IW_MODE_INFRA
;
642 if (info
->cmd
>= SIOCIWFIRSTPRIV
)
643 return wlcompat_private_ioctl(dev
, info
, wrqu
, extra
);
652 static const iw_handler wlcompat_handler
[] = {
653 NULL
, /* SIOCSIWCOMMIT */
654 wlcompat_ioctl
, /* SIOCGIWNAME */
655 NULL
, /* SIOCSIWNWID */
656 NULL
, /* SIOCGIWNWID */
657 wlcompat_ioctl
, /* SIOCSIWFREQ */
658 wlcompat_ioctl
, /* SIOCGIWFREQ */
659 wlcompat_ioctl
, /* SIOCSIWMODE */
660 wlcompat_ioctl
, /* SIOCGIWMODE */
661 NULL
, /* SIOCSIWSENS */
662 NULL
, /* SIOCGIWSENS */
663 NULL
, /* SIOCSIWRANGE, unused */
664 wlcompat_ioctl
, /* SIOCGIWRANGE */
665 NULL
, /* SIOCSIWPRIV */
666 NULL
, /* SIOCGIWPRIV */
667 NULL
, /* SIOCSIWSTATS */
668 NULL
, /* SIOCGIWSTATS */
669 iw_handler_set_spy
, /* SIOCSIWSPY */
670 iw_handler_get_spy
, /* SIOCGIWSPY */
671 iw_handler_set_thrspy
, /* SIOCSIWTHRSPY */
672 iw_handler_get_thrspy
, /* SIOCGIWTHRSPY */
673 wlcompat_ioctl
, /* SIOCSIWAP */
674 wlcompat_ioctl
, /* SIOCGIWAP */
675 NULL
, /* -- hole -- */
676 NULL
, /* SIOCGIWAPLIST */
677 wlcompat_set_scan
, /* SIOCSIWSCAN */
678 wlcompat_get_scan
, /* SIOCGIWSCAN */
679 wlcompat_ioctl
, /* SIOCSIWESSID */
680 wlcompat_ioctl
, /* SIOCGIWESSID */
681 NULL
, /* SIOCSIWNICKN */
682 NULL
, /* SIOCGIWNICKN */
683 NULL
, /* -- hole -- */
684 NULL
, /* -- hole -- */
685 NULL
, /* SIOCSIWRATE */
686 NULL
, /* SIOCGIWRATE */
687 wlcompat_ioctl
, /* SIOCSIWRTS */
688 wlcompat_ioctl
, /* SIOCGIWRTS */
689 wlcompat_ioctl
, /* SIOCSIWFRAG */
690 wlcompat_ioctl
, /* SIOCGIWFRAG */
691 wlcompat_ioctl
, /* SIOCSIWTXPOW */
692 wlcompat_ioctl
, /* SIOCGIWTXPOW */
693 NULL
, /* SIOCSIWRETRY */
694 NULL
, /* SIOCGIWRETRY */
695 wlcompat_ioctl
, /* SIOCSIWENCODE */
696 wlcompat_ioctl
, /* SIOCGIWENCODE */
700 #define WLCOMPAT_SET_MONITOR SIOCIWFIRSTPRIV + 0
701 #define WLCOMPAT_GET_MONITOR SIOCIWFIRSTPRIV + 1
702 #define WLCOMPAT_SET_TXPWR_LIMIT SIOCIWFIRSTPRIV + 2
703 #define WLCOMPAT_GET_TXPWR_LIMIT SIOCIWFIRSTPRIV + 3
704 #define WLCOMPAT_SET_ANTDIV SIOCIWFIRSTPRIV + 4
705 #define WLCOMPAT_GET_ANTDIV SIOCIWFIRSTPRIV + 5
706 #define WLCOMPAT_SET_TXANT SIOCIWFIRSTPRIV + 6
707 #define WLCOMPAT_GET_TXANT SIOCIWFIRSTPRIV + 7
708 #define WLCOMPAT_SET_BSS_FORCE SIOCIWFIRSTPRIV + 8
709 #define WLCOMPAT_GET_BSS_FORCE SIOCIWFIRSTPRIV + 9
712 static int wlcompat_private_ioctl(struct net_device
*dev
,
713 struct iw_request_info
*info
,
714 union iwreq_data
*wrqu
,
717 int *value
= (int *) wrqu
->name
;
720 case WLCOMPAT_SET_MONITOR
:
722 if (wl_ioctl(dev
, WLC_SET_MONITOR
, value
, sizeof(int)) < 0)
727 case WLCOMPAT_GET_MONITOR
:
729 if (wl_ioctl(dev
, WLC_GET_MONITOR
, extra
, sizeof(int)) < 0)
734 case WLCOMPAT_SET_TXPWR_LIMIT
:
739 if (wl_get_val(dev
, "qtxpower", &val
, sizeof(int)) < 0)
743 val
|= WL_TXPWR_OVERRIDE
;
745 val
&= ~WL_TXPWR_OVERRIDE
;
747 if (wl_set_val(dev
, "qtxpower", &val
, sizeof(int)) < 0)
752 case WLCOMPAT_GET_TXPWR_LIMIT
:
754 if (wl_get_val(dev
, "qtxpower", value
, sizeof(int)) < 0)
757 *value
= ((*value
& WL_TXPWR_OVERRIDE
) == WL_TXPWR_OVERRIDE
? 1 : 0);
761 case WLCOMPAT_SET_ANTDIV
:
763 if (wl_ioctl(dev
, WLC_SET_ANTDIV
, value
, sizeof(int)) < 0)
768 case WLCOMPAT_GET_ANTDIV
:
770 if (wl_ioctl(dev
, WLC_GET_ANTDIV
, extra
, sizeof(int)) < 0)
775 case WLCOMPAT_SET_TXANT
:
777 if (wl_ioctl(dev
, WLC_SET_TXANT
, value
, sizeof(int)) < 0)
782 case WLCOMPAT_GET_TXANT
:
784 if (wl_ioctl(dev
, WLC_GET_TXANT
, extra
, sizeof(int)) < 0)
789 case WLCOMPAT_SET_BSS_FORCE
:
791 bss_force
= (unsigned short) *value
;
794 case WLCOMPAT_GET_BSS_FORCE
:
796 *extra
= (int) bss_force
;
808 static const struct iw_priv_args wlcompat_private_args
[] =
810 { WLCOMPAT_SET_MONITOR
,
811 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
815 { WLCOMPAT_GET_MONITOR
,
817 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
820 { WLCOMPAT_SET_TXPWR_LIMIT
,
821 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
825 { WLCOMPAT_GET_TXPWR_LIMIT
,
827 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
830 { WLCOMPAT_SET_ANTDIV
,
831 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
835 { WLCOMPAT_GET_ANTDIV
,
837 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
840 { WLCOMPAT_SET_TXANT
,
841 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
845 { WLCOMPAT_GET_TXANT
,
847 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
850 { WLCOMPAT_SET_BSS_FORCE
,
851 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
855 { WLCOMPAT_GET_BSS_FORCE
,
857 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
862 static const iw_handler wlcompat_private
[] =
864 wlcompat_private_ioctl
,
869 static const struct iw_handler_def wlcompat_handler_def
=
871 .standard
= (iw_handler
*) wlcompat_handler
,
872 .num_standard
= sizeof(wlcompat_handler
)/sizeof(iw_handler
),
873 .private = wlcompat_private
,
875 .private_args
= wlcompat_private_args
,
876 .num_private_args
= sizeof(wlcompat_private_args
) / sizeof(wlcompat_private_args
[0])
881 void print_buffer(int len
, unsigned char *buf
) {
884 for (x
=0;x
<len
&& x
<180 ;x
++) {
887 printk("%02X",buf
[x
]);
896 static int (*old_ioctl
)(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
);
897 static int new_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
) {
899 struct iwreq
*iwr
= (struct iwreq
*) ifr
;
900 struct iw_request_info info
;
903 printk("dev: %s ioctl: 0x%04x\n",dev
->name
,cmd
);
906 if (cmd
>= SIOCIWFIRSTPRIV
) {
909 ret
= wlcompat_private_ioctl(dev
, &info
, &(iwr
->u
), (char *) &(iwr
->u
));
911 } else if (cmd
==SIOCDEVPRIVATE
) {
912 wl_ioctl_t
*ioc
= (wl_ioctl_t
*)ifr
->ifr_data
;
913 unsigned char *buf
= ioc
->buf
;
914 printk(" cmd: %d buf: 0x%08x len: %d\n",ioc
->cmd
,&(ioc
->buf
),ioc
->len
);
916 print_buffer(ioc
->len
, buf
);
917 ret
= old_ioctl(dev
,ifr
,cmd
);
919 print_buffer(ioc
->len
, buf
);
920 printk(" ret: %d\n", ret
);
923 ret
= old_ioctl(dev
,ifr
,cmd
);
928 static int __init
wlcompat_init()
931 char *devname
= "eth0";
934 while (!found
&& (dev
= dev_get_by_name(devname
))) {
935 if ((dev
->wireless_handlers
== NULL
) && ((wl_ioctl(dev
, WLC_GET_MAGIC
, &i
, sizeof(i
)) == 0) && i
== WLC_IOCTL_MAGIC
))
941 printk("No Broadcom devices found.\n");
946 old_ioctl
= dev
->do_ioctl
;
947 dev
->do_ioctl
= new_ioctl
;
948 dev
->wireless_handlers
= (struct iw_handler_def
*)&wlcompat_handler_def
;
950 printk("broadcom driver private data: 0x%08x\n", dev
->priv
);
955 static void __exit
wlcompat_exit()
957 dev
->wireless_handlers
= NULL
;
958 dev
->do_ioctl
= old_ioctl
;
963 MODULE_AUTHOR("openwrt.org");
964 MODULE_LICENSE("GPL");
966 module_init(wlcompat_init
);
967 module_exit(wlcompat_exit
);