1 /* ioctl() (mostly Linux Wireless Extensions) routines for Host AP driver */
3 #include <linux/types.h>
4 #include <linux/smp_lock.h>
5 #include <linux/ethtool.h>
6 #include <net/ieee80211_crypt.h>
8 #include "hostap_wlan.h"
10 #include "hostap_ap.h"
12 static struct iw_statistics
*hostap_get_wireless_stats(struct net_device
*dev
)
14 struct hostap_interface
*iface
;
16 struct iw_statistics
*wstats
;
18 iface
= netdev_priv(dev
);
21 /* Why are we doing that ? Jean II */
22 if (iface
->type
!= HOSTAP_INTERFACE_MAIN
)
25 wstats
= &local
->wstats
;
28 wstats
->discard
.code
=
29 local
->comm_tallies
.rx_discards_wep_undecryptable
;
30 wstats
->discard
.misc
=
31 local
->comm_tallies
.rx_fcs_errors
+
32 local
->comm_tallies
.rx_discards_no_buffer
+
33 local
->comm_tallies
.tx_discards_wrong_sa
;
35 wstats
->discard
.retries
=
36 local
->comm_tallies
.tx_retry_limit_exceeded
;
37 wstats
->discard
.fragment
=
38 local
->comm_tallies
.rx_message_in_bad_msg_fragments
;
40 if (local
->iw_mode
!= IW_MODE_MASTER
&&
41 local
->iw_mode
!= IW_MODE_REPEAT
) {
44 /* RID reading might sleep and it must not be called in
45 * interrupt context or while atomic. However, this
46 * function seems to be called while atomic (at least in Linux
47 * 2.5.59). Update signal quality values only if in suitable
48 * context. Otherwise, previous values read from tick timer
52 #endif /* in_atomic */
54 if (update
&& prism2_update_comms_qual(dev
) == 0)
55 wstats
->qual
.updated
= IW_QUAL_ALL_UPDATED
|
58 wstats
->qual
.qual
= local
->comms_qual
;
59 wstats
->qual
.level
= local
->avg_signal
;
60 wstats
->qual
.noise
= local
->avg_noise
;
62 wstats
->qual
.qual
= 0;
63 wstats
->qual
.level
= 0;
64 wstats
->qual
.noise
= 0;
65 wstats
->qual
.updated
= IW_QUAL_ALL_INVALID
;
72 static int prism2_get_datarates(struct net_device
*dev
, u8
*rates
)
74 struct hostap_interface
*iface
;
80 iface
= netdev_priv(dev
);
83 len
= local
->func
->get_rid(dev
, HFA384X_RID_SUPPORTEDDATARATES
, buf
,
88 val
= le16_to_cpu(*(u16
*) buf
); /* string length */
90 if (len
- 2 < val
|| val
> 10)
93 memcpy(rates
, buf
+ 2, val
);
98 static int prism2_get_name(struct net_device
*dev
,
99 struct iw_request_info
*info
,
100 char *name
, char *extra
)
103 int len
, i
, over2
= 0;
105 len
= prism2_get_datarates(dev
, rates
);
107 for (i
= 0; i
< len
; i
++) {
108 if (rates
[i
] == 0x0b || rates
[i
] == 0x16) {
114 strcpy(name
, over2
? "IEEE 802.11b" : "IEEE 802.11-DS");
120 static void prism2_crypt_delayed_deinit(local_info_t
*local
,
121 struct ieee80211_crypt_data
**crypt
)
123 struct ieee80211_crypt_data
*tmp
;
132 /* must not run ops->deinit() while there may be pending encrypt or
133 * decrypt operations. Use a list of delayed deinits to avoid needing
136 spin_lock_irqsave(&local
->lock
, flags
);
137 list_add(&tmp
->list
, &local
->crypt_deinit_list
);
138 if (!timer_pending(&local
->crypt_deinit_timer
)) {
139 local
->crypt_deinit_timer
.expires
= jiffies
+ HZ
;
140 add_timer(&local
->crypt_deinit_timer
);
142 spin_unlock_irqrestore(&local
->lock
, flags
);
146 static int prism2_ioctl_siwencode(struct net_device
*dev
,
147 struct iw_request_info
*info
,
148 struct iw_point
*erq
, char *keybuf
)
150 struct hostap_interface
*iface
;
153 struct ieee80211_crypt_data
**crypt
;
155 iface
= netdev_priv(dev
);
156 local
= iface
->local
;
158 i
= erq
->flags
& IW_ENCODE_INDEX
;
160 i
= local
->tx_keyidx
;
163 if (i
< 0 || i
>= WEP_KEYS
)
166 crypt
= &local
->crypt
[i
];
168 if (erq
->flags
& IW_ENCODE_DISABLED
) {
170 prism2_crypt_delayed_deinit(local
, crypt
);
174 if (*crypt
!= NULL
&& (*crypt
)->ops
!= NULL
&&
175 strcmp((*crypt
)->ops
->name
, "WEP") != 0) {
176 /* changing to use WEP; deinit previously used algorithm */
177 prism2_crypt_delayed_deinit(local
, crypt
);
180 if (*crypt
== NULL
) {
181 struct ieee80211_crypt_data
*new_crypt
;
183 /* take WEP into use */
184 new_crypt
= kzalloc(sizeof(struct ieee80211_crypt_data
),
186 if (new_crypt
== NULL
)
188 new_crypt
->ops
= ieee80211_get_crypto_ops("WEP");
189 if (!new_crypt
->ops
) {
190 request_module("ieee80211_crypt_wep");
191 new_crypt
->ops
= ieee80211_get_crypto_ops("WEP");
194 new_crypt
->priv
= new_crypt
->ops
->init(i
);
195 if (!new_crypt
->ops
|| !new_crypt
->priv
) {
199 printk(KERN_WARNING
"%s: could not initialize WEP: "
200 "load module hostap_crypt_wep.o\n",
207 if (erq
->length
> 0) {
208 int len
= erq
->length
<= 5 ? 5 : 13;
210 if (len
> erq
->length
)
211 memset(keybuf
+ erq
->length
, 0, len
- erq
->length
);
212 (*crypt
)->ops
->set_key(keybuf
, len
, NULL
, (*crypt
)->priv
);
213 for (j
= 0; j
< WEP_KEYS
; j
++) {
214 if (j
!= i
&& local
->crypt
[j
]) {
220 local
->tx_keyidx
= i
;
222 /* No key data - just set the default TX key index */
223 local
->tx_keyidx
= i
;
227 local
->open_wep
= erq
->flags
& IW_ENCODE_OPEN
;
229 if (hostap_set_encryption(local
)) {
230 printk(KERN_DEBUG
"%s: set_encryption failed\n", dev
->name
);
234 /* Do not reset port0 if card is in Managed mode since resetting will
235 * generate new IEEE 802.11 authentication which may end up in looping
236 * with IEEE 802.1X. Prism2 documentation seem to require port reset
237 * after WEP configuration. However, keys are apparently changed at
238 * least in Managed mode. */
239 if (local
->iw_mode
!= IW_MODE_INFRA
&& local
->func
->reset_port(dev
)) {
240 printk(KERN_DEBUG
"%s: reset_port failed\n", dev
->name
);
248 static int prism2_ioctl_giwencode(struct net_device
*dev
,
249 struct iw_request_info
*info
,
250 struct iw_point
*erq
, char *key
)
252 struct hostap_interface
*iface
;
256 struct ieee80211_crypt_data
*crypt
;
258 iface
= netdev_priv(dev
);
259 local
= iface
->local
;
261 i
= erq
->flags
& IW_ENCODE_INDEX
;
263 i
= local
->tx_keyidx
;
266 if (i
< 0 || i
>= WEP_KEYS
)
269 crypt
= local
->crypt
[i
];
272 if (crypt
== NULL
|| crypt
->ops
== NULL
) {
274 erq
->flags
|= IW_ENCODE_DISABLED
;
278 if (strcmp(crypt
->ops
->name
, "WEP") != 0) {
279 /* only WEP is supported with wireless extensions, so just
280 * report that encryption is used */
282 erq
->flags
|= IW_ENCODE_ENABLED
;
286 /* Reads from HFA384X_RID_CNFDEFAULTKEY* return bogus values, so show
287 * the keys from driver buffer */
288 len
= crypt
->ops
->get_key(key
, WEP_KEY_LEN
, NULL
, crypt
->priv
);
289 erq
->length
= (len
>= 0 ? len
: 0);
291 if (local
->func
->get_rid(dev
, HFA384X_RID_CNFWEPFLAGS
, &val
, 2, 1) < 0)
293 printk("CNFWEPFLAGS reading failed\n");
297 if (val
& HFA384X_WEPFLAGS_PRIVACYINVOKED
)
298 erq
->flags
|= IW_ENCODE_ENABLED
;
300 erq
->flags
|= IW_ENCODE_DISABLED
;
301 if (val
& HFA384X_WEPFLAGS_EXCLUDEUNENCRYPTED
)
302 erq
->flags
|= IW_ENCODE_RESTRICTED
;
304 erq
->flags
|= IW_ENCODE_OPEN
;
310 static int hostap_set_rate(struct net_device
*dev
)
312 struct hostap_interface
*iface
;
314 int ret
, basic_rates
;
316 iface
= netdev_priv(dev
);
317 local
= iface
->local
;
319 basic_rates
= local
->basic_rates
& local
->tx_rate_control
;
320 if (!basic_rates
|| basic_rates
!= local
->basic_rates
) {
321 printk(KERN_INFO
"%s: updating basic rate set automatically "
322 "to match with the new supported rate set\n",
325 basic_rates
= local
->tx_rate_control
;
327 local
->basic_rates
= basic_rates
;
328 if (hostap_set_word(dev
, HFA384X_RID_CNFBASICRATES
,
330 printk(KERN_WARNING
"%s: failed to set "
331 "cnfBasicRates\n", dev
->name
);
334 ret
= (hostap_set_word(dev
, HFA384X_RID_TXRATECONTROL
,
335 local
->tx_rate_control
) ||
336 hostap_set_word(dev
, HFA384X_RID_CNFSUPPORTEDRATES
,
337 local
->tx_rate_control
) ||
338 local
->func
->reset_port(dev
));
341 printk(KERN_WARNING
"%s: TXRateControl/cnfSupportedRates "
342 "setting to 0x%x failed\n",
343 dev
->name
, local
->tx_rate_control
);
346 /* Update TX rate configuration for all STAs based on new operational
348 hostap_update_rates(local
);
354 static int prism2_ioctl_siwrate(struct net_device
*dev
,
355 struct iw_request_info
*info
,
356 struct iw_param
*rrq
, char *extra
)
358 struct hostap_interface
*iface
;
361 iface
= netdev_priv(dev
);
362 local
= iface
->local
;
365 switch (rrq
->value
) {
367 local
->tx_rate_control
= HFA384X_RATES_11MBPS
;
370 local
->tx_rate_control
= HFA384X_RATES_5MBPS
;
373 local
->tx_rate_control
= HFA384X_RATES_2MBPS
;
376 local
->tx_rate_control
= HFA384X_RATES_1MBPS
;
379 local
->tx_rate_control
= HFA384X_RATES_1MBPS
|
380 HFA384X_RATES_2MBPS
| HFA384X_RATES_5MBPS
|
381 HFA384X_RATES_11MBPS
;
385 switch (rrq
->value
) {
387 local
->tx_rate_control
= HFA384X_RATES_1MBPS
|
388 HFA384X_RATES_2MBPS
| HFA384X_RATES_5MBPS
|
389 HFA384X_RATES_11MBPS
;
392 local
->tx_rate_control
= HFA384X_RATES_1MBPS
|
393 HFA384X_RATES_2MBPS
| HFA384X_RATES_5MBPS
;
396 local
->tx_rate_control
= HFA384X_RATES_1MBPS
|
400 local
->tx_rate_control
= HFA384X_RATES_1MBPS
;
403 local
->tx_rate_control
= HFA384X_RATES_1MBPS
|
404 HFA384X_RATES_2MBPS
| HFA384X_RATES_5MBPS
|
405 HFA384X_RATES_11MBPS
;
410 return hostap_set_rate(dev
);
414 static int prism2_ioctl_giwrate(struct net_device
*dev
,
415 struct iw_request_info
*info
,
416 struct iw_param
*rrq
, char *extra
)
419 struct hostap_interface
*iface
;
423 iface
= netdev_priv(dev
);
424 local
= iface
->local
;
426 if (local
->func
->get_rid(dev
, HFA384X_RID_TXRATECONTROL
, &val
, 2, 1) <
430 if ((val
& 0x1) && (val
> 1))
435 if (local
->iw_mode
== IW_MODE_MASTER
&& local
->ap
!= NULL
&&
436 !local
->fw_tx_rate_control
) {
437 /* HFA384X_RID_CURRENTTXRATE seems to always be 2 Mbps in
438 * Host AP mode, so use the recorded TX rate of the last sent
440 rrq
->value
= local
->ap
->last_tx_rate
> 0 ?
441 local
->ap
->last_tx_rate
* 100000 : 11000000;
445 if (local
->func
->get_rid(dev
, HFA384X_RID_CURRENTTXRATE
, &val
, 2, 1) <
450 case HFA384X_RATES_1MBPS
:
451 rrq
->value
= 1000000;
453 case HFA384X_RATES_2MBPS
:
454 rrq
->value
= 2000000;
456 case HFA384X_RATES_5MBPS
:
457 rrq
->value
= 5500000;
459 case HFA384X_RATES_11MBPS
:
460 rrq
->value
= 11000000;
463 /* should not happen */
464 rrq
->value
= 11000000;
473 static int prism2_ioctl_siwsens(struct net_device
*dev
,
474 struct iw_request_info
*info
,
475 struct iw_param
*sens
, char *extra
)
477 struct hostap_interface
*iface
;
480 iface
= netdev_priv(dev
);
481 local
= iface
->local
;
483 /* Set the desired AP density */
484 if (sens
->value
< 1 || sens
->value
> 3)
487 if (hostap_set_word(dev
, HFA384X_RID_CNFSYSTEMSCALE
, sens
->value
) ||
488 local
->func
->reset_port(dev
))
494 static int prism2_ioctl_giwsens(struct net_device
*dev
,
495 struct iw_request_info
*info
,
496 struct iw_param
*sens
, char *extra
)
498 struct hostap_interface
*iface
;
502 iface
= netdev_priv(dev
);
503 local
= iface
->local
;
505 /* Get the current AP density */
506 if (local
->func
->get_rid(dev
, HFA384X_RID_CNFSYSTEMSCALE
, &val
, 2, 1) <
510 sens
->value
= __le16_to_cpu(val
);
517 /* Deprecated in new wireless extension API */
518 static int prism2_ioctl_giwaplist(struct net_device
*dev
,
519 struct iw_request_info
*info
,
520 struct iw_point
*data
, char *extra
)
522 struct hostap_interface
*iface
;
524 struct sockaddr
*addr
;
525 struct iw_quality
*qual
;
527 iface
= netdev_priv(dev
);
528 local
= iface
->local
;
530 if (local
->iw_mode
!= IW_MODE_MASTER
) {
531 printk(KERN_DEBUG
"SIOCGIWAPLIST is currently only supported "
532 "in Host AP mode\n");
537 addr
= kmalloc(sizeof(struct sockaddr
) * IW_MAX_AP
, GFP_KERNEL
);
538 qual
= kmalloc(sizeof(struct iw_quality
) * IW_MAX_AP
, GFP_KERNEL
);
539 if (addr
== NULL
|| qual
== NULL
) {
546 data
->length
= prism2_ap_get_sta_qual(local
, addr
, qual
, IW_MAX_AP
, 1);
548 memcpy(extra
, &addr
, sizeof(struct sockaddr
) * data
->length
);
549 data
->flags
= 1; /* has quality information */
550 memcpy(extra
+ sizeof(struct sockaddr
) * data
->length
, &qual
,
551 sizeof(struct iw_quality
) * data
->length
);
559 static int prism2_ioctl_siwrts(struct net_device
*dev
,
560 struct iw_request_info
*info
,
561 struct iw_param
*rts
, char *extra
)
563 struct hostap_interface
*iface
;
567 iface
= netdev_priv(dev
);
568 local
= iface
->local
;
571 val
= __constant_cpu_to_le16(2347);
572 else if (rts
->value
< 0 || rts
->value
> 2347)
575 val
= __cpu_to_le16(rts
->value
);
577 if (local
->func
->set_rid(dev
, HFA384X_RID_RTSTHRESHOLD
, &val
, 2) ||
578 local
->func
->reset_port(dev
))
581 local
->rts_threshold
= rts
->value
;
586 static int prism2_ioctl_giwrts(struct net_device
*dev
,
587 struct iw_request_info
*info
,
588 struct iw_param
*rts
, char *extra
)
590 struct hostap_interface
*iface
;
594 iface
= netdev_priv(dev
);
595 local
= iface
->local
;
597 if (local
->func
->get_rid(dev
, HFA384X_RID_RTSTHRESHOLD
, &val
, 2, 1) <
601 rts
->value
= __le16_to_cpu(val
);
602 rts
->disabled
= (rts
->value
== 2347);
609 static int prism2_ioctl_siwfrag(struct net_device
*dev
,
610 struct iw_request_info
*info
,
611 struct iw_param
*rts
, char *extra
)
613 struct hostap_interface
*iface
;
617 iface
= netdev_priv(dev
);
618 local
= iface
->local
;
621 val
= __constant_cpu_to_le16(2346);
622 else if (rts
->value
< 256 || rts
->value
> 2346)
625 val
= __cpu_to_le16(rts
->value
& ~0x1); /* even numbers only */
627 local
->fragm_threshold
= rts
->value
& ~0x1;
628 if (local
->func
->set_rid(dev
, HFA384X_RID_FRAGMENTATIONTHRESHOLD
, &val
,
630 || local
->func
->reset_port(dev
))
636 static int prism2_ioctl_giwfrag(struct net_device
*dev
,
637 struct iw_request_info
*info
,
638 struct iw_param
*rts
, char *extra
)
640 struct hostap_interface
*iface
;
644 iface
= netdev_priv(dev
);
645 local
= iface
->local
;
647 if (local
->func
->get_rid(dev
, HFA384X_RID_FRAGMENTATIONTHRESHOLD
,
651 rts
->value
= __le16_to_cpu(val
);
652 rts
->disabled
= (rts
->value
== 2346);
659 #ifndef PRISM2_NO_STATION_MODES
660 static int hostap_join_ap(struct net_device
*dev
)
662 struct hostap_interface
*iface
;
664 struct hfa384x_join_request req
;
667 struct hfa384x_hostscan_result
*entry
;
669 iface
= netdev_priv(dev
);
670 local
= iface
->local
;
672 memcpy(req
.bssid
, local
->preferred_ap
, ETH_ALEN
);
675 spin_lock_irqsave(&local
->lock
, flags
);
676 for (i
= 0; i
< local
->last_scan_results_count
; i
++) {
677 if (!local
->last_scan_results
)
679 entry
= &local
->last_scan_results
[i
];
680 if (memcmp(local
->preferred_ap
, entry
->bssid
, ETH_ALEN
) == 0) {
681 req
.channel
= entry
->chid
;
685 spin_unlock_irqrestore(&local
->lock
, flags
);
687 if (local
->func
->set_rid(dev
, HFA384X_RID_JOINREQUEST
, &req
,
689 printk(KERN_DEBUG
"%s: JoinRequest " MACSTR
691 dev
->name
, MAC2STR(local
->preferred_ap
));
695 printk(KERN_DEBUG
"%s: Trying to join BSSID " MACSTR
"\n",
696 dev
->name
, MAC2STR(local
->preferred_ap
));
700 #endif /* PRISM2_NO_STATION_MODES */
703 static int prism2_ioctl_siwap(struct net_device
*dev
,
704 struct iw_request_info
*info
,
705 struct sockaddr
*ap_addr
, char *extra
)
707 #ifdef PRISM2_NO_STATION_MODES
709 #else /* PRISM2_NO_STATION_MODES */
710 struct hostap_interface
*iface
;
713 iface
= netdev_priv(dev
);
714 local
= iface
->local
;
716 memcpy(local
->preferred_ap
, &ap_addr
->sa_data
, ETH_ALEN
);
718 if (local
->host_roaming
== 1 && local
->iw_mode
== IW_MODE_INFRA
) {
719 struct hfa384x_scan_request scan_req
;
720 memset(&scan_req
, 0, sizeof(scan_req
));
721 scan_req
.channel_list
= __constant_cpu_to_le16(0x3fff);
722 scan_req
.txrate
= __constant_cpu_to_le16(HFA384X_RATES_1MBPS
);
723 if (local
->func
->set_rid(dev
, HFA384X_RID_SCANREQUEST
,
724 &scan_req
, sizeof(scan_req
))) {
725 printk(KERN_DEBUG
"%s: ScanResults request failed - "
726 "preferred AP delayed to next unsolicited "
727 "scan\n", dev
->name
);
729 } else if (local
->host_roaming
== 2 &&
730 local
->iw_mode
== IW_MODE_INFRA
) {
731 if (hostap_join_ap(dev
))
734 printk(KERN_DEBUG
"%s: Preferred AP (SIOCSIWAP) is used only "
735 "in Managed mode when host_roaming is enabled\n",
740 #endif /* PRISM2_NO_STATION_MODES */
743 static int prism2_ioctl_giwap(struct net_device
*dev
,
744 struct iw_request_info
*info
,
745 struct sockaddr
*ap_addr
, char *extra
)
747 struct hostap_interface
*iface
;
750 iface
= netdev_priv(dev
);
751 local
= iface
->local
;
753 ap_addr
->sa_family
= ARPHRD_ETHER
;
754 switch (iface
->type
) {
755 case HOSTAP_INTERFACE_AP
:
756 memcpy(&ap_addr
->sa_data
, dev
->dev_addr
, ETH_ALEN
);
758 case HOSTAP_INTERFACE_STA
:
759 memcpy(&ap_addr
->sa_data
, local
->assoc_ap_addr
, ETH_ALEN
);
761 case HOSTAP_INTERFACE_WDS
:
762 memcpy(&ap_addr
->sa_data
, iface
->u
.wds
.remote_addr
, ETH_ALEN
);
765 if (local
->func
->get_rid(dev
, HFA384X_RID_CURRENTBSSID
,
766 &ap_addr
->sa_data
, ETH_ALEN
, 1) < 0)
769 /* local->bssid is also updated in LinkStatus handler when in
771 memcpy(local
->bssid
, &ap_addr
->sa_data
, ETH_ALEN
);
779 static int prism2_ioctl_siwnickn(struct net_device
*dev
,
780 struct iw_request_info
*info
,
781 struct iw_point
*data
, char *nickname
)
783 struct hostap_interface
*iface
;
786 iface
= netdev_priv(dev
);
787 local
= iface
->local
;
789 memset(local
->name
, 0, sizeof(local
->name
));
790 memcpy(local
->name
, nickname
, data
->length
);
793 if (hostap_set_string(dev
, HFA384X_RID_CNFOWNNAME
, local
->name
) ||
794 local
->func
->reset_port(dev
))
800 static int prism2_ioctl_giwnickn(struct net_device
*dev
,
801 struct iw_request_info
*info
,
802 struct iw_point
*data
, char *nickname
)
804 struct hostap_interface
*iface
;
807 char name
[MAX_NAME_LEN
+ 3];
810 iface
= netdev_priv(dev
);
811 local
= iface
->local
;
813 len
= local
->func
->get_rid(dev
, HFA384X_RID_CNFOWNNAME
,
814 &name
, MAX_NAME_LEN
+ 2, 0);
815 val
= __le16_to_cpu(*(u16
*) name
);
816 if (len
> MAX_NAME_LEN
+ 2 || len
< 0 || val
> MAX_NAME_LEN
)
819 name
[val
+ 2] = '\0';
820 data
->length
= val
+ 1;
821 memcpy(nickname
, name
+ 2, val
+ 1);
827 static int prism2_ioctl_siwfreq(struct net_device
*dev
,
828 struct iw_request_info
*info
,
829 struct iw_freq
*freq
, char *extra
)
831 struct hostap_interface
*iface
;
834 iface
= netdev_priv(dev
);
835 local
= iface
->local
;
839 freq
->m
/ 100000 >= freq_list
[0] &&
840 freq
->m
/ 100000 <= freq_list
[FREQ_COUNT
- 1]) {
842 int fr
= freq
->m
/ 100000;
843 for (ch
= 0; ch
< FREQ_COUNT
; ch
++) {
844 if (fr
== freq_list
[ch
]) {
852 if (freq
->e
!= 0 || freq
->m
< 1 || freq
->m
> FREQ_COUNT
||
853 !(local
->channel_mask
& (1 << (freq
->m
- 1))))
856 local
->channel
= freq
->m
; /* channel is used in prism2_setup_rids() */
857 if (hostap_set_word(dev
, HFA384X_RID_CNFOWNCHANNEL
, local
->channel
) ||
858 local
->func
->reset_port(dev
))
864 static int prism2_ioctl_giwfreq(struct net_device
*dev
,
865 struct iw_request_info
*info
,
866 struct iw_freq
*freq
, char *extra
)
868 struct hostap_interface
*iface
;
872 iface
= netdev_priv(dev
);
873 local
= iface
->local
;
875 if (local
->func
->get_rid(dev
, HFA384X_RID_CURRENTCHANNEL
, &val
, 2, 1) <
880 if (val
< 1 || val
> FREQ_COUNT
)
883 freq
->m
= freq_list
[val
- 1] * 100000;
890 static void hostap_monitor_set_type(local_info_t
*local
)
892 struct net_device
*dev
= local
->ddev
;
897 if (local
->monitor_type
== PRISM2_MONITOR_PRISM
||
898 local
->monitor_type
== PRISM2_MONITOR_CAPHDR
) {
899 dev
->type
= ARPHRD_IEEE80211_PRISM
;
900 dev
->hard_header_parse
=
901 hostap_80211_prism_header_parse
;
903 dev
->type
= ARPHRD_IEEE80211
;
904 dev
->hard_header_parse
= hostap_80211_header_parse
;
909 static int prism2_ioctl_siwessid(struct net_device
*dev
,
910 struct iw_request_info
*info
,
911 struct iw_point
*data
, char *ssid
)
913 struct hostap_interface
*iface
;
916 iface
= netdev_priv(dev
);
917 local
= iface
->local
;
919 if (iface
->type
== HOSTAP_INTERFACE_WDS
)
922 if (data
->flags
== 0)
923 ssid
[0] = '\0'; /* ANY */
925 if (local
->iw_mode
== IW_MODE_MASTER
&& ssid
[0] == '\0') {
926 /* Setting SSID to empty string seems to kill the card in
928 printk(KERN_DEBUG
"%s: Host AP mode does not support "
929 "'Any' essid\n", dev
->name
);
933 memcpy(local
->essid
, ssid
, data
->length
);
934 local
->essid
[data
->length
] = '\0';
936 if ((!local
->fw_ap
&&
937 hostap_set_string(dev
, HFA384X_RID_CNFDESIREDSSID
, local
->essid
))
938 || hostap_set_string(dev
, HFA384X_RID_CNFOWNSSID
, local
->essid
) ||
939 local
->func
->reset_port(dev
))
945 static int prism2_ioctl_giwessid(struct net_device
*dev
,
946 struct iw_request_info
*info
,
947 struct iw_point
*data
, char *essid
)
949 struct hostap_interface
*iface
;
953 iface
= netdev_priv(dev
);
954 local
= iface
->local
;
956 if (iface
->type
== HOSTAP_INTERFACE_WDS
)
959 data
->flags
= 1; /* active */
960 if (local
->iw_mode
== IW_MODE_MASTER
) {
961 data
->length
= strlen(local
->essid
);
962 memcpy(essid
, local
->essid
, IW_ESSID_MAX_SIZE
);
965 char ssid
[MAX_SSID_LEN
+ 2];
966 memset(ssid
, 0, sizeof(ssid
));
967 len
= local
->func
->get_rid(dev
, HFA384X_RID_CURRENTSSID
,
968 &ssid
, MAX_SSID_LEN
+ 2, 0);
969 val
= __le16_to_cpu(*(u16
*) ssid
);
970 if (len
> MAX_SSID_LEN
+ 2 || len
< 0 || val
> MAX_SSID_LEN
) {
974 memcpy(essid
, ssid
+ 2, IW_ESSID_MAX_SIZE
);
981 static int prism2_ioctl_giwrange(struct net_device
*dev
,
982 struct iw_request_info
*info
,
983 struct iw_point
*data
, char *extra
)
985 struct hostap_interface
*iface
;
987 struct iw_range
*range
= (struct iw_range
*) extra
;
992 iface
= netdev_priv(dev
);
993 local
= iface
->local
;
995 data
->length
= sizeof(struct iw_range
);
996 memset(range
, 0, sizeof(struct iw_range
));
998 /* TODO: could fill num_txpower and txpower array with
999 * something; however, there are 128 different values.. */
1001 range
->txpower_capa
= IW_TXPOW_DBM
;
1003 if (local
->iw_mode
== IW_MODE_INFRA
|| local
->iw_mode
== IW_MODE_ADHOC
)
1005 range
->min_pmp
= 1 * 1024;
1006 range
->max_pmp
= 65535 * 1024;
1007 range
->min_pmt
= 1 * 1024;
1008 range
->max_pmt
= 1000 * 1024;
1009 range
->pmp_flags
= IW_POWER_PERIOD
;
1010 range
->pmt_flags
= IW_POWER_TIMEOUT
;
1011 range
->pm_capa
= IW_POWER_PERIOD
| IW_POWER_TIMEOUT
|
1012 IW_POWER_UNICAST_R
| IW_POWER_ALL_R
;
1015 range
->we_version_compiled
= WIRELESS_EXT
;
1016 range
->we_version_source
= 18;
1018 range
->retry_capa
= IW_RETRY_LIMIT
;
1019 range
->retry_flags
= IW_RETRY_LIMIT
;
1020 range
->min_retry
= 0;
1021 range
->max_retry
= 255;
1023 range
->num_channels
= FREQ_COUNT
;
1026 for (i
= 0; i
< FREQ_COUNT
; i
++) {
1027 if (local
->channel_mask
& (1 << i
)) {
1028 range
->freq
[val
].i
= i
+ 1;
1029 range
->freq
[val
].m
= freq_list
[i
] * 100000;
1030 range
->freq
[val
].e
= 1;
1033 if (val
== IW_MAX_FREQUENCIES
)
1036 range
->num_frequency
= val
;
1038 if (local
->sta_fw_ver
>= PRISM2_FW_VER(1,3,1)) {
1039 range
->max_qual
.qual
= 70; /* what is correct max? This was not
1040 * documented exactly. At least
1041 * 69 has been observed. */
1042 range
->max_qual
.level
= 0; /* dB */
1043 range
->max_qual
.noise
= 0; /* dB */
1045 /* What would be suitable values for "average/typical" qual? */
1046 range
->avg_qual
.qual
= 20;
1047 range
->avg_qual
.level
= -60;
1048 range
->avg_qual
.noise
= -95;
1050 range
->max_qual
.qual
= 92; /* 0 .. 92 */
1051 range
->max_qual
.level
= 154; /* 27 .. 154 */
1052 range
->max_qual
.noise
= 154; /* 27 .. 154 */
1054 range
->sensitivity
= 3;
1056 range
->max_encoding_tokens
= WEP_KEYS
;
1057 range
->num_encoding_sizes
= 2;
1058 range
->encoding_size
[0] = 5;
1059 range
->encoding_size
[1] = 13;
1062 len
= prism2_get_datarates(dev
, rates
);
1063 range
->num_bitrates
= 0;
1064 for (i
= 0; i
< len
; i
++) {
1065 if (range
->num_bitrates
< IW_MAX_BITRATES
) {
1066 range
->bitrate
[range
->num_bitrates
] =
1068 range
->num_bitrates
++;
1070 if (rates
[i
] == 0x0b || rates
[i
] == 0x16)
1073 /* estimated maximum TCP throughput values (bps) */
1074 range
->throughput
= over2
? 5500000 : 1500000;
1077 range
->max_rts
= 2347;
1078 range
->min_frag
= 256;
1079 range
->max_frag
= 2346;
1081 /* Event capability (kernel + driver) */
1082 range
->event_capa
[0] = (IW_EVENT_CAPA_K_0
|
1083 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY
) |
1084 IW_EVENT_CAPA_MASK(SIOCGIWAP
) |
1085 IW_EVENT_CAPA_MASK(SIOCGIWSCAN
));
1086 range
->event_capa
[1] = IW_EVENT_CAPA_K_1
;
1087 range
->event_capa
[4] = (IW_EVENT_CAPA_MASK(IWEVTXDROP
) |
1088 IW_EVENT_CAPA_MASK(IWEVCUSTOM
) |
1089 IW_EVENT_CAPA_MASK(IWEVREGISTERED
) |
1090 IW_EVENT_CAPA_MASK(IWEVEXPIRED
));
1092 range
->enc_capa
= IW_ENC_CAPA_WPA
| IW_ENC_CAPA_WPA2
|
1093 IW_ENC_CAPA_CIPHER_TKIP
| IW_ENC_CAPA_CIPHER_CCMP
;
1099 static int hostap_monitor_mode_enable(local_info_t
*local
)
1101 struct net_device
*dev
= local
->dev
;
1103 printk(KERN_DEBUG
"Enabling monitor mode\n");
1104 hostap_monitor_set_type(local
);
1106 if (hostap_set_word(dev
, HFA384X_RID_CNFPORTTYPE
,
1107 HFA384X_PORTTYPE_PSEUDO_IBSS
)) {
1108 printk(KERN_DEBUG
"Port type setting for monitor mode "
1113 /* Host decrypt is needed to get the IV and ICV fields;
1114 * however, monitor mode seems to remove WEP flag from frame
1116 if (hostap_set_word(dev
, HFA384X_RID_CNFWEPFLAGS
,
1117 HFA384X_WEPFLAGS_HOSTENCRYPT
|
1118 HFA384X_WEPFLAGS_HOSTDECRYPT
)) {
1119 printk(KERN_DEBUG
"WEP flags setting failed\n");
1123 if (local
->func
->reset_port(dev
) ||
1124 local
->func
->cmd(dev
, HFA384X_CMDCODE_TEST
|
1125 (HFA384X_TEST_MONITOR
<< 8),
1127 printk(KERN_DEBUG
"Setting monitor mode failed\n");
1135 static int hostap_monitor_mode_disable(local_info_t
*local
)
1137 struct net_device
*dev
= local
->ddev
;
1142 printk(KERN_DEBUG
"%s: Disabling monitor mode\n", dev
->name
);
1143 dev
->type
= ARPHRD_ETHER
;
1144 dev
->hard_header_parse
= local
->saved_eth_header_parse
;
1145 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_TEST
|
1146 (HFA384X_TEST_STOP
<< 8),
1149 return hostap_set_encryption(local
);
1153 static int prism2_ioctl_siwmode(struct net_device
*dev
,
1154 struct iw_request_info
*info
,
1155 __u32
*mode
, char *extra
)
1157 struct hostap_interface
*iface
;
1158 local_info_t
*local
;
1159 int double_reset
= 0;
1161 iface
= netdev_priv(dev
);
1162 local
= iface
->local
;
1164 if (*mode
!= IW_MODE_ADHOC
&& *mode
!= IW_MODE_INFRA
&&
1165 *mode
!= IW_MODE_MASTER
&& *mode
!= IW_MODE_REPEAT
&&
1166 *mode
!= IW_MODE_MONITOR
)
1169 #ifdef PRISM2_NO_STATION_MODES
1170 if (*mode
== IW_MODE_ADHOC
|| *mode
== IW_MODE_INFRA
)
1172 #endif /* PRISM2_NO_STATION_MODES */
1174 if (*mode
== local
->iw_mode
)
1177 if (*mode
== IW_MODE_MASTER
&& local
->essid
[0] == '\0') {
1178 printk(KERN_WARNING
"%s: empty SSID not allowed in Master "
1179 "mode\n", dev
->name
);
1183 if (local
->iw_mode
== IW_MODE_MONITOR
)
1184 hostap_monitor_mode_disable(local
);
1186 if ((local
->iw_mode
== IW_MODE_ADHOC
||
1187 local
->iw_mode
== IW_MODE_MONITOR
) && *mode
== IW_MODE_MASTER
) {
1188 /* There seems to be a firmware bug in at least STA f/w v1.5.6
1189 * that leaves beacon frames to use IBSS type when moving from
1190 * IBSS to Host AP mode. Doing double Port0 reset seems to be
1191 * enough to workaround this. */
1195 printk(KERN_DEBUG
"prism2: %s: operating mode changed "
1196 "%d -> %d\n", dev
->name
, local
->iw_mode
, *mode
);
1197 local
->iw_mode
= *mode
;
1199 if (local
->iw_mode
== IW_MODE_MONITOR
)
1200 hostap_monitor_mode_enable(local
);
1201 else if (local
->iw_mode
== IW_MODE_MASTER
&& !local
->host_encrypt
&&
1202 !local
->fw_encrypt_ok
) {
1203 printk(KERN_DEBUG
"%s: defaulting to host-based encryption as "
1204 "a workaround for firmware bug in Host AP mode WEP\n",
1206 local
->host_encrypt
= 1;
1209 if (hostap_set_word(dev
, HFA384X_RID_CNFPORTTYPE
,
1210 hostap_get_porttype(local
)))
1213 if (local
->func
->reset_port(dev
))
1215 if (double_reset
&& local
->func
->reset_port(dev
))
1218 if (local
->iw_mode
!= IW_MODE_INFRA
&& local
->iw_mode
!= IW_MODE_ADHOC
)
1220 /* netif_carrier is used only in client modes for now, so make
1221 * sure carrier is on when moving to non-client modes. */
1222 netif_carrier_on(local
->dev
);
1223 netif_carrier_on(local
->ddev
);
1229 static int prism2_ioctl_giwmode(struct net_device
*dev
,
1230 struct iw_request_info
*info
,
1231 __u32
*mode
, char *extra
)
1233 struct hostap_interface
*iface
;
1234 local_info_t
*local
;
1236 iface
= netdev_priv(dev
);
1237 local
= iface
->local
;
1239 switch (iface
->type
) {
1240 case HOSTAP_INTERFACE_STA
:
1241 *mode
= IW_MODE_INFRA
;
1243 case HOSTAP_INTERFACE_WDS
:
1244 *mode
= IW_MODE_REPEAT
;
1247 *mode
= local
->iw_mode
;
1254 static int prism2_ioctl_siwpower(struct net_device
*dev
,
1255 struct iw_request_info
*info
,
1256 struct iw_param
*wrq
, char *extra
)
1258 #ifdef PRISM2_NO_STATION_MODES
1260 #else /* PRISM2_NO_STATION_MODES */
1264 return hostap_set_word(dev
, HFA384X_RID_CNFPMENABLED
, 0);
1266 switch (wrq
->flags
& IW_POWER_MODE
) {
1267 case IW_POWER_UNICAST_R
:
1268 ret
= hostap_set_word(dev
, HFA384X_RID_CNFMULTICASTRECEIVE
, 0);
1271 ret
= hostap_set_word(dev
, HFA384X_RID_CNFPMENABLED
, 1);
1275 case IW_POWER_ALL_R
:
1276 ret
= hostap_set_word(dev
, HFA384X_RID_CNFMULTICASTRECEIVE
, 1);
1279 ret
= hostap_set_word(dev
, HFA384X_RID_CNFPMENABLED
, 1);
1289 if (wrq
->flags
& IW_POWER_TIMEOUT
) {
1290 ret
= hostap_set_word(dev
, HFA384X_RID_CNFPMENABLED
, 1);
1293 ret
= hostap_set_word(dev
, HFA384X_RID_CNFPMHOLDOVERDURATION
,
1298 if (wrq
->flags
& IW_POWER_PERIOD
) {
1299 ret
= hostap_set_word(dev
, HFA384X_RID_CNFPMENABLED
, 1);
1302 ret
= hostap_set_word(dev
, HFA384X_RID_CNFMAXSLEEPDURATION
,
1309 #endif /* PRISM2_NO_STATION_MODES */
1313 static int prism2_ioctl_giwpower(struct net_device
*dev
,
1314 struct iw_request_info
*info
,
1315 struct iw_param
*rrq
, char *extra
)
1317 #ifdef PRISM2_NO_STATION_MODES
1319 #else /* PRISM2_NO_STATION_MODES */
1320 struct hostap_interface
*iface
;
1321 local_info_t
*local
;
1324 iface
= netdev_priv(dev
);
1325 local
= iface
->local
;
1327 if (local
->func
->get_rid(dev
, HFA384X_RID_CNFPMENABLED
, &enable
, 2, 1)
1331 if (!__le16_to_cpu(enable
)) {
1338 if ((rrq
->flags
& IW_POWER_TYPE
) == IW_POWER_TIMEOUT
) {
1340 if (local
->func
->get_rid(dev
,
1341 HFA384X_RID_CNFPMHOLDOVERDURATION
,
1342 &timeout
, 2, 1) < 0)
1345 rrq
->flags
= IW_POWER_TIMEOUT
;
1346 rrq
->value
= __le16_to_cpu(timeout
) * 1024;
1349 if (local
->func
->get_rid(dev
, HFA384X_RID_CNFMAXSLEEPDURATION
,
1353 rrq
->flags
= IW_POWER_PERIOD
;
1354 rrq
->value
= __le16_to_cpu(period
) * 1024;
1357 if (local
->func
->get_rid(dev
, HFA384X_RID_CNFMULTICASTRECEIVE
, &mcast
,
1361 if (__le16_to_cpu(mcast
))
1362 rrq
->flags
|= IW_POWER_ALL_R
;
1364 rrq
->flags
|= IW_POWER_UNICAST_R
;
1367 #endif /* PRISM2_NO_STATION_MODES */
1371 static int prism2_ioctl_siwretry(struct net_device
*dev
,
1372 struct iw_request_info
*info
,
1373 struct iw_param
*rrq
, char *extra
)
1375 struct hostap_interface
*iface
;
1376 local_info_t
*local
;
1378 iface
= netdev_priv(dev
);
1379 local
= iface
->local
;
1384 /* setting retry limits is not supported with the current station
1385 * firmware code; simulate this with alternative retry count for now */
1386 if (rrq
->flags
== IW_RETRY_LIMIT
) {
1387 if (rrq
->value
< 0) {
1388 /* disable manual retry count setting and use firmware
1390 local
->manual_retry_count
= -1;
1391 local
->tx_control
&= ~HFA384X_TX_CTRL_ALT_RTRY
;
1393 if (hostap_set_word(dev
, HFA384X_RID_CNFALTRETRYCOUNT
,
1395 printk(KERN_DEBUG
"%s: Alternate retry count "
1396 "setting to %d failed\n",
1397 dev
->name
, rrq
->value
);
1401 local
->manual_retry_count
= rrq
->value
;
1402 local
->tx_control
|= HFA384X_TX_CTRL_ALT_RTRY
;
1410 /* what could be done, if firmware would support this.. */
1412 if (rrq
->flags
& IW_RETRY_LIMIT
) {
1413 if (rrq
->flags
& IW_RETRY_LONG
)
1414 HFA384X_RID_LONGRETRYLIMIT
= rrq
->value
;
1415 else if (rrq
->flags
& IW_RETRY_SHORT
)
1416 HFA384X_RID_SHORTRETRYLIMIT
= rrq
->value
;
1418 HFA384X_RID_LONGRETRYLIMIT
= rrq
->value
;
1419 HFA384X_RID_SHORTRETRYLIMIT
= rrq
->value
;
1424 if (rrq
->flags
& IW_RETRY_LIFETIME
) {
1425 HFA384X_RID_MAXTRANSMITLIFETIME
= rrq
->value
/ 1024;
1432 static int prism2_ioctl_giwretry(struct net_device
*dev
,
1433 struct iw_request_info
*info
,
1434 struct iw_param
*rrq
, char *extra
)
1436 struct hostap_interface
*iface
;
1437 local_info_t
*local
;
1438 u16 shortretry
, longretry
, lifetime
, altretry
;
1440 iface
= netdev_priv(dev
);
1441 local
= iface
->local
;
1443 if (local
->func
->get_rid(dev
, HFA384X_RID_SHORTRETRYLIMIT
, &shortretry
,
1445 local
->func
->get_rid(dev
, HFA384X_RID_LONGRETRYLIMIT
, &longretry
,
1447 local
->func
->get_rid(dev
, HFA384X_RID_MAXTRANSMITLIFETIME
,
1448 &lifetime
, 2, 1) < 0)
1451 le16_to_cpus(&shortretry
);
1452 le16_to_cpus(&longretry
);
1453 le16_to_cpus(&lifetime
);
1457 if ((rrq
->flags
& IW_RETRY_TYPE
) == IW_RETRY_LIFETIME
) {
1458 rrq
->flags
= IW_RETRY_LIFETIME
;
1459 rrq
->value
= lifetime
* 1024;
1461 if (local
->manual_retry_count
>= 0) {
1462 rrq
->flags
= IW_RETRY_LIMIT
;
1463 if (local
->func
->get_rid(dev
,
1464 HFA384X_RID_CNFALTRETRYCOUNT
,
1465 &altretry
, 2, 1) >= 0)
1466 rrq
->value
= le16_to_cpu(altretry
);
1468 rrq
->value
= local
->manual_retry_count
;
1469 } else if ((rrq
->flags
& IW_RETRY_LONG
)) {
1470 rrq
->flags
= IW_RETRY_LIMIT
| IW_RETRY_LONG
;
1471 rrq
->value
= longretry
;
1473 rrq
->flags
= IW_RETRY_LIMIT
;
1474 rrq
->value
= shortretry
;
1475 if (shortretry
!= longretry
)
1476 rrq
->flags
|= IW_RETRY_SHORT
;
1483 /* Note! This TX power controlling is experimental and should not be used in
1484 * production use. It just sets raw power register and does not use any kind of
1485 * feedback information from the measured TX power (CR58). This is now
1486 * commented out to make sure that it is not used by accident. TX power
1487 * configuration will be enabled again after proper algorithm using feedback
1488 * has been implemented. */
1490 #ifdef RAW_TXPOWER_SETTING
1491 /* Map HFA386x's CR31 to and from dBm with some sort of ad hoc mapping..
1492 * This version assumes following mapping:
1493 * CR31 is 7-bit value with -64 to +63 range.
1494 * -64 is mapped into +20dBm and +63 into -43dBm.
1495 * This is certainly not an exact mapping for every card, but at least
1496 * increasing dBm value should correspond to increasing TX power.
1499 static int prism2_txpower_hfa386x_to_dBm(u16 val
)
1512 static u16
prism2_txpower_dBm_to_hfa386x(int val
)
1525 return (unsigned char) tmp
;
1527 #endif /* RAW_TXPOWER_SETTING */
1530 static int prism2_ioctl_siwtxpow(struct net_device
*dev
,
1531 struct iw_request_info
*info
,
1532 struct iw_param
*rrq
, char *extra
)
1534 struct hostap_interface
*iface
;
1535 local_info_t
*local
;
1536 #ifdef RAW_TXPOWER_SETTING
1542 iface
= netdev_priv(dev
);
1543 local
= iface
->local
;
1545 if (rrq
->disabled
) {
1546 if (local
->txpower_type
!= PRISM2_TXPOWER_OFF
) {
1547 val
= 0xff; /* use all standby and sleep modes */
1548 ret
= local
->func
->cmd(dev
, HFA384X_CMDCODE_WRITEMIF
,
1549 HFA386X_CR_A_D_TEST_MODES2
,
1551 printk(KERN_DEBUG
"%s: Turning radio off: %s\n",
1552 dev
->name
, ret
? "failed" : "OK");
1553 local
->txpower_type
= PRISM2_TXPOWER_OFF
;
1555 return (ret
? -EOPNOTSUPP
: 0);
1558 if (local
->txpower_type
== PRISM2_TXPOWER_OFF
) {
1559 val
= 0; /* disable all standby and sleep modes */
1560 ret
= local
->func
->cmd(dev
, HFA384X_CMDCODE_WRITEMIF
,
1561 HFA386X_CR_A_D_TEST_MODES2
, &val
, NULL
);
1562 printk(KERN_DEBUG
"%s: Turning radio on: %s\n",
1563 dev
->name
, ret
? "failed" : "OK");
1564 local
->txpower_type
= PRISM2_TXPOWER_UNKNOWN
;
1567 #ifdef RAW_TXPOWER_SETTING
1568 if (!rrq
->fixed
&& local
->txpower_type
!= PRISM2_TXPOWER_AUTO
) {
1569 printk(KERN_DEBUG
"Setting ALC on\n");
1570 val
= HFA384X_TEST_CFG_BIT_ALC
;
1571 local
->func
->cmd(dev
, HFA384X_CMDCODE_TEST
|
1572 (HFA384X_TEST_CFG_BITS
<< 8), 1, &val
, NULL
);
1573 local
->txpower_type
= PRISM2_TXPOWER_AUTO
;
1577 if (local
->txpower_type
!= PRISM2_TXPOWER_FIXED
) {
1578 printk(KERN_DEBUG
"Setting ALC off\n");
1579 val
= HFA384X_TEST_CFG_BIT_ALC
;
1580 local
->func
->cmd(dev
, HFA384X_CMDCODE_TEST
|
1581 (HFA384X_TEST_CFG_BITS
<< 8), 0, &val
, NULL
);
1582 local
->txpower_type
= PRISM2_TXPOWER_FIXED
;
1585 if (rrq
->flags
== IW_TXPOW_DBM
)
1587 else if (rrq
->flags
== IW_TXPOW_MWATT
)
1591 printk(KERN_DEBUG
"Setting TX power to %d %s\n", rrq
->value
, tmp
);
1593 if (rrq
->flags
!= IW_TXPOW_DBM
) {
1594 printk("SIOCSIWTXPOW with mW is not supported; use dBm\n");
1598 local
->txpower
= rrq
->value
;
1599 val
= prism2_txpower_dBm_to_hfa386x(local
->txpower
);
1600 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_WRITEMIF
,
1601 HFA386X_CR_MANUAL_TX_POWER
, &val
, NULL
))
1603 #else /* RAW_TXPOWER_SETTING */
1606 #endif /* RAW_TXPOWER_SETTING */
1611 static int prism2_ioctl_giwtxpow(struct net_device
*dev
,
1612 struct iw_request_info
*info
,
1613 struct iw_param
*rrq
, char *extra
)
1615 #ifdef RAW_TXPOWER_SETTING
1616 struct hostap_interface
*iface
;
1617 local_info_t
*local
;
1620 iface
= netdev_priv(dev
);
1621 local
= iface
->local
;
1623 rrq
->flags
= IW_TXPOW_DBM
;
1627 if (local
->txpower_type
== PRISM2_TXPOWER_AUTO
) {
1628 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_READMIF
,
1629 HFA386X_CR_MANUAL_TX_POWER
,
1630 NULL
, &resp0
) == 0) {
1631 rrq
->value
= prism2_txpower_hfa386x_to_dBm(resp0
);
1633 /* Could not get real txpower; guess 15 dBm */
1636 } else if (local
->txpower_type
== PRISM2_TXPOWER_OFF
) {
1639 } else if (local
->txpower_type
== PRISM2_TXPOWER_FIXED
) {
1640 rrq
->value
= local
->txpower
;
1643 printk("SIOCGIWTXPOW - unknown txpower_type=%d\n",
1644 local
->txpower_type
);
1647 #else /* RAW_TXPOWER_SETTING */
1649 #endif /* RAW_TXPOWER_SETTING */
1653 #ifndef PRISM2_NO_STATION_MODES
1655 /* HostScan request works with and without host_roaming mode. In addition, it
1656 * does not break current association. However, it requires newer station
1657 * firmware version (>= 1.3.1) than scan request. */
1658 static int prism2_request_hostscan(struct net_device
*dev
,
1659 u8
*ssid
, u8 ssid_len
)
1661 struct hostap_interface
*iface
;
1662 local_info_t
*local
;
1663 struct hfa384x_hostscan_request scan_req
;
1665 iface
= netdev_priv(dev
);
1666 local
= iface
->local
;
1668 memset(&scan_req
, 0, sizeof(scan_req
));
1669 scan_req
.channel_list
= cpu_to_le16(local
->channel_mask
&
1670 local
->scan_channel_mask
);
1671 scan_req
.txrate
= __constant_cpu_to_le16(HFA384X_RATES_1MBPS
);
1675 scan_req
.target_ssid_len
= cpu_to_le16(ssid_len
);
1676 memcpy(scan_req
.target_ssid
, ssid
, ssid_len
);
1679 if (local
->func
->set_rid(dev
, HFA384X_RID_HOSTSCAN
, &scan_req
,
1680 sizeof(scan_req
))) {
1681 printk(KERN_DEBUG
"%s: HOSTSCAN failed\n", dev
->name
);
1688 static int prism2_request_scan(struct net_device
*dev
)
1690 struct hostap_interface
*iface
;
1691 local_info_t
*local
;
1692 struct hfa384x_scan_request scan_req
;
1695 iface
= netdev_priv(dev
);
1696 local
= iface
->local
;
1698 memset(&scan_req
, 0, sizeof(scan_req
));
1699 scan_req
.channel_list
= cpu_to_le16(local
->channel_mask
&
1700 local
->scan_channel_mask
);
1701 scan_req
.txrate
= __constant_cpu_to_le16(HFA384X_RATES_1MBPS
);
1704 * It seems to be enough to set roaming mode for a short moment to
1705 * host-based and then setup scanrequest data and return the mode to
1708 * Master mode would need to drop to Managed mode for a short while
1709 * to make scanning work.. Or sweep through the different channels and
1710 * use passive scan based on beacons. */
1712 if (!local
->host_roaming
)
1713 hostap_set_word(dev
, HFA384X_RID_CNFROAMINGMODE
,
1714 HFA384X_ROAMING_HOST
);
1716 if (local
->func
->set_rid(dev
, HFA384X_RID_SCANREQUEST
, &scan_req
,
1717 sizeof(scan_req
))) {
1718 printk(KERN_DEBUG
"SCANREQUEST failed\n");
1722 if (!local
->host_roaming
)
1723 hostap_set_word(dev
, HFA384X_RID_CNFROAMINGMODE
,
1724 HFA384X_ROAMING_FIRMWARE
);
1729 #else /* !PRISM2_NO_STATION_MODES */
1731 static inline int prism2_request_hostscan(struct net_device
*dev
,
1732 u8
*ssid
, u8 ssid_len
)
1738 static inline int prism2_request_scan(struct net_device
*dev
)
1743 #endif /* !PRISM2_NO_STATION_MODES */
1746 static int prism2_ioctl_siwscan(struct net_device
*dev
,
1747 struct iw_request_info
*info
,
1748 struct iw_point
*data
, char *extra
)
1750 struct hostap_interface
*iface
;
1751 local_info_t
*local
;
1753 u8
*ssid
= NULL
, ssid_len
= 0;
1754 struct iw_scan_req
*req
= (struct iw_scan_req
*) extra
;
1756 iface
= netdev_priv(dev
);
1757 local
= iface
->local
;
1759 if (data
->length
< sizeof(struct iw_scan_req
))
1762 if (local
->iw_mode
== IW_MODE_MASTER
) {
1763 /* In master mode, we just return the results of our local
1764 * tables, so we don't need to start anything...
1770 if (!local
->dev_enabled
)
1773 if (req
&& data
->flags
& IW_SCAN_THIS_ESSID
) {
1775 ssid_len
= req
->essid_len
;
1778 ((local
->iw_mode
!= IW_MODE_INFRA
&&
1779 local
->iw_mode
!= IW_MODE_ADHOC
) ||
1780 (local
->sta_fw_ver
< PRISM2_FW_VER(1,3,1))))
1784 if (local
->sta_fw_ver
>= PRISM2_FW_VER(1,3,1))
1785 ret
= prism2_request_hostscan(dev
, ssid
, ssid_len
);
1787 ret
= prism2_request_scan(dev
);
1790 local
->scan_timestamp
= jiffies
;
1792 /* Could inquire F101, F103 or wait for SIOCGIWSCAN and read RID */
1798 #ifndef PRISM2_NO_STATION_MODES
1799 static char * __prism2_translate_scan(local_info_t
*local
,
1800 struct hfa384x_hostscan_result
*scan
,
1801 struct hostap_bss_info
*bss
,
1802 char *current_ev
, char *end_buf
)
1805 struct iw_event iwe
;
1815 ssid_len
= bss
->ssid_len
;
1819 ssid_len
= le16_to_cpu(scan
->ssid_len
);
1820 bssid
= scan
->bssid
;
1825 /* First entry *MUST* be the AP MAC address */
1826 memset(&iwe
, 0, sizeof(iwe
));
1827 iwe
.cmd
= SIOCGIWAP
;
1828 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
1829 memcpy(iwe
.u
.ap_addr
.sa_data
, bssid
, ETH_ALEN
);
1830 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
1833 /* Other entries will be displayed in the order we give them */
1835 memset(&iwe
, 0, sizeof(iwe
));
1836 iwe
.cmd
= SIOCGIWESSID
;
1837 iwe
.u
.data
.length
= ssid_len
;
1838 iwe
.u
.data
.flags
= 1;
1839 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
, ssid
);
1841 memset(&iwe
, 0, sizeof(iwe
));
1842 iwe
.cmd
= SIOCGIWMODE
;
1844 capabilities
= bss
->capab_info
;
1846 capabilities
= le16_to_cpu(scan
->capability
);
1848 if (capabilities
& (WLAN_CAPABILITY_ESS
|
1849 WLAN_CAPABILITY_IBSS
)) {
1850 if (capabilities
& WLAN_CAPABILITY_ESS
)
1851 iwe
.u
.mode
= IW_MODE_MASTER
;
1853 iwe
.u
.mode
= IW_MODE_ADHOC
;
1854 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
1858 memset(&iwe
, 0, sizeof(iwe
));
1859 iwe
.cmd
= SIOCGIWFREQ
;
1861 chan
= le16_to_cpu(scan
->chid
);
1869 iwe
.u
.freq
.m
= freq_list
[chan
- 1] * 100000;
1871 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
1876 memset(&iwe
, 0, sizeof(iwe
));
1878 if (local
->last_scan_type
== PRISM2_HOSTSCAN
) {
1879 iwe
.u
.qual
.level
= le16_to_cpu(scan
->sl
);
1880 iwe
.u
.qual
.noise
= le16_to_cpu(scan
->anl
);
1883 HFA384X_LEVEL_TO_dBm(le16_to_cpu(scan
->sl
));
1885 HFA384X_LEVEL_TO_dBm(le16_to_cpu(scan
->anl
));
1887 iwe
.u
.qual
.updated
= IW_QUAL_LEVEL_UPDATED
1888 | IW_QUAL_NOISE_UPDATED
1889 | IW_QUAL_QUAL_INVALID
1891 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
1895 memset(&iwe
, 0, sizeof(iwe
));
1896 iwe
.cmd
= SIOCGIWENCODE
;
1897 if (capabilities
& WLAN_CAPABILITY_PRIVACY
)
1898 iwe
.u
.data
.flags
= IW_ENCODE_ENABLED
| IW_ENCODE_NOKEY
;
1900 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
1901 iwe
.u
.data
.length
= 0;
1902 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
, "");
1904 /* TODO: add SuppRates into BSS table */
1906 memset(&iwe
, 0, sizeof(iwe
));
1907 iwe
.cmd
= SIOCGIWRATE
;
1908 current_val
= current_ev
+ IW_EV_LCP_LEN
;
1909 pos
= scan
->sup_rates
;
1910 for (i
= 0; i
< sizeof(scan
->sup_rates
); i
++) {
1913 /* Bit rate given in 500 kb/s units (+ 0x80) */
1914 iwe
.u
.bitrate
.value
= ((pos
[i
] & 0x7f) * 500000);
1915 current_val
= iwe_stream_add_value(
1916 current_ev
, current_val
, end_buf
, &iwe
,
1919 /* Check if we added any event */
1920 if ((current_val
- current_ev
) > IW_EV_LCP_LEN
)
1921 current_ev
= current_val
;
1924 /* TODO: add BeaconInt,resp_rate,atim into BSS table */
1925 buf
= kmalloc(MAX_WPA_IE_LEN
* 2 + 30, GFP_ATOMIC
);
1927 memset(&iwe
, 0, sizeof(iwe
));
1928 iwe
.cmd
= IWEVCUSTOM
;
1929 sprintf(buf
, "bcn_int=%d", le16_to_cpu(scan
->beacon_interval
));
1930 iwe
.u
.data
.length
= strlen(buf
);
1931 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
,
1934 memset(&iwe
, 0, sizeof(iwe
));
1935 iwe
.cmd
= IWEVCUSTOM
;
1936 sprintf(buf
, "resp_rate=%d", le16_to_cpu(scan
->rate
));
1937 iwe
.u
.data
.length
= strlen(buf
);
1938 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
,
1941 if (local
->last_scan_type
== PRISM2_HOSTSCAN
&&
1942 (capabilities
& WLAN_CAPABILITY_IBSS
)) {
1943 memset(&iwe
, 0, sizeof(iwe
));
1944 iwe
.cmd
= IWEVCUSTOM
;
1945 sprintf(buf
, "atim=%d", le16_to_cpu(scan
->atim
));
1946 iwe
.u
.data
.length
= strlen(buf
);
1947 current_ev
= iwe_stream_add_point(current_ev
, end_buf
,
1953 if (bss
&& bss
->wpa_ie_len
> 0 && bss
->wpa_ie_len
<= MAX_WPA_IE_LEN
) {
1954 memset(&iwe
, 0, sizeof(iwe
));
1955 iwe
.cmd
= IWEVGENIE
;
1956 iwe
.u
.data
.length
= bss
->wpa_ie_len
;
1957 current_ev
= iwe_stream_add_point(
1958 current_ev
, end_buf
, &iwe
, bss
->wpa_ie
);
1961 if (bss
&& bss
->rsn_ie_len
> 0 && bss
->rsn_ie_len
<= MAX_WPA_IE_LEN
) {
1962 memset(&iwe
, 0, sizeof(iwe
));
1963 iwe
.cmd
= IWEVGENIE
;
1964 iwe
.u
.data
.length
= bss
->rsn_ie_len
;
1965 current_ev
= iwe_stream_add_point(
1966 current_ev
, end_buf
, &iwe
, bss
->rsn_ie
);
1973 /* Translate scan data returned from the card to a card independant
1974 * format that the Wireless Tools will understand - Jean II */
1975 static inline int prism2_translate_scan(local_info_t
*local
,
1976 char *buffer
, int buflen
)
1978 struct hfa384x_hostscan_result
*scan
;
1979 int entry
, hostscan
;
1980 char *current_ev
= buffer
;
1981 char *end_buf
= buffer
+ buflen
;
1982 struct list_head
*ptr
;
1984 spin_lock_bh(&local
->lock
);
1986 list_for_each(ptr
, &local
->bss_list
) {
1987 struct hostap_bss_info
*bss
;
1988 bss
= list_entry(ptr
, struct hostap_bss_info
, list
);
1992 hostscan
= local
->last_scan_type
== PRISM2_HOSTSCAN
;
1993 for (entry
= 0; entry
< local
->last_scan_results_count
; entry
++) {
1995 scan
= &local
->last_scan_results
[entry
];
1997 /* Report every SSID if the AP is using multiple SSIDs. If no
1998 * BSS record is found (e.g., when WPA mode is disabled),
1999 * report the AP once. */
2000 list_for_each(ptr
, &local
->bss_list
) {
2001 struct hostap_bss_info
*bss
;
2002 bss
= list_entry(ptr
, struct hostap_bss_info
, list
);
2003 if (memcmp(bss
->bssid
, scan
->bssid
, ETH_ALEN
) == 0) {
2005 current_ev
= __prism2_translate_scan(
2006 local
, scan
, bss
, current_ev
, end_buf
);
2011 current_ev
= __prism2_translate_scan(
2012 local
, scan
, NULL
, current_ev
, end_buf
);
2014 /* Check if there is space for one more entry */
2015 if ((end_buf
- current_ev
) <= IW_EV_ADDR_LEN
) {
2016 /* Ask user space to try again with a bigger buffer */
2017 spin_unlock_bh(&local
->lock
);
2022 /* Prism2 firmware has limits (32 at least in some versions) for number
2023 * of BSSes in scan results. Extend this limit by using local BSS list.
2025 list_for_each(ptr
, &local
->bss_list
) {
2026 struct hostap_bss_info
*bss
;
2027 bss
= list_entry(ptr
, struct hostap_bss_info
, list
);
2030 current_ev
= __prism2_translate_scan(local
, NULL
, bss
,
2031 current_ev
, end_buf
);
2032 /* Check if there is space for one more entry */
2033 if ((end_buf
- current_ev
) <= IW_EV_ADDR_LEN
) {
2034 /* Ask user space to try again with a bigger buffer */
2035 spin_unlock_bh(&local
->lock
);
2040 spin_unlock_bh(&local
->lock
);
2042 return current_ev
- buffer
;
2044 #endif /* PRISM2_NO_STATION_MODES */
2047 static inline int prism2_ioctl_giwscan_sta(struct net_device
*dev
,
2048 struct iw_request_info
*info
,
2049 struct iw_point
*data
, char *extra
)
2051 #ifdef PRISM2_NO_STATION_MODES
2053 #else /* PRISM2_NO_STATION_MODES */
2054 struct hostap_interface
*iface
;
2055 local_info_t
*local
;
2058 iface
= netdev_priv(dev
);
2059 local
= iface
->local
;
2061 /* Wait until the scan is finished. We can probably do better
2062 * than that - Jean II */
2063 if (local
->scan_timestamp
&&
2064 time_before(jiffies
, local
->scan_timestamp
+ 3 * HZ
)) {
2065 /* Important note : we don't want to block the caller
2066 * until results are ready for various reasons.
2067 * First, managing wait queues is complex and racy
2068 * (there may be multiple simultaneous callers).
2069 * Second, we grab some rtnetlink lock before comming
2070 * here (in dev_ioctl()).
2071 * Third, the caller can wait on the Wireless Event
2075 local
->scan_timestamp
= 0;
2077 res
= prism2_translate_scan(local
, extra
, data
->length
);
2086 #endif /* PRISM2_NO_STATION_MODES */
2090 static int prism2_ioctl_giwscan(struct net_device
*dev
,
2091 struct iw_request_info
*info
,
2092 struct iw_point
*data
, char *extra
)
2094 struct hostap_interface
*iface
;
2095 local_info_t
*local
;
2098 iface
= netdev_priv(dev
);
2099 local
= iface
->local
;
2101 if (local
->iw_mode
== IW_MODE_MASTER
) {
2102 /* In MASTER mode, it doesn't make sense to go around
2103 * scanning the frequencies and make the stations we serve
2104 * wait when what the user is really interested about is the
2105 * list of stations and access points we are talking to.
2106 * So, just extract results from our cache...
2109 /* Translate to WE format */
2110 res
= prism2_ap_translate_scan(dev
, extra
);
2112 printk(KERN_DEBUG
"Scan result translation succeeded "
2113 "(length=%d)\n", res
);
2118 "Scan result translation failed (res=%d)\n",
2125 return prism2_ioctl_giwscan_sta(dev
, info
, data
, extra
);
2130 static const struct iw_priv_args prism2_priv
[] = {
2131 { PRISM2_IOCTL_MONITOR
,
2132 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "monitor" },
2133 { PRISM2_IOCTL_READMIF
,
2134 IW_PRIV_TYPE_BYTE
| IW_PRIV_SIZE_FIXED
| 1,
2135 IW_PRIV_TYPE_BYTE
| IW_PRIV_SIZE_FIXED
| 1, "readmif" },
2136 { PRISM2_IOCTL_WRITEMIF
,
2137 IW_PRIV_TYPE_BYTE
| IW_PRIV_SIZE_FIXED
| 2, 0, "writemif" },
2138 { PRISM2_IOCTL_RESET
,
2139 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "reset" },
2140 { PRISM2_IOCTL_INQUIRE
,
2141 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "inquire" },
2142 { PRISM2_IOCTL_SET_RID_WORD
,
2143 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 2, 0, "set_rid_word" },
2144 { PRISM2_IOCTL_MACCMD
,
2145 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "maccmd" },
2146 { PRISM2_IOCTL_WDS_ADD
,
2147 IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1, 0, "wds_add" },
2148 { PRISM2_IOCTL_WDS_DEL
,
2149 IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1, 0, "wds_del" },
2150 { PRISM2_IOCTL_ADDMAC
,
2151 IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1, 0, "addmac" },
2152 { PRISM2_IOCTL_DELMAC
,
2153 IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1, 0, "delmac" },
2154 { PRISM2_IOCTL_KICKMAC
,
2155 IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1, 0, "kickmac" },
2156 /* --- raw access to sub-ioctls --- */
2157 { PRISM2_IOCTL_PRISM2_PARAM
,
2158 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 2, 0, "prism2_param" },
2159 { PRISM2_IOCTL_GET_PRISM2_PARAM
,
2160 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
2161 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getprism2_param" },
2162 /* --- sub-ioctls handlers --- */
2163 { PRISM2_IOCTL_PRISM2_PARAM
,
2164 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "" },
2165 { PRISM2_IOCTL_GET_PRISM2_PARAM
,
2166 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "" },
2167 /* --- sub-ioctls definitions --- */
2168 { PRISM2_PARAM_TXRATECTRL
,
2169 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "txratectrl" },
2170 { PRISM2_PARAM_TXRATECTRL
,
2171 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gettxratectrl" },
2172 { PRISM2_PARAM_BEACON_INT
,
2173 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "beacon_int" },
2174 { PRISM2_PARAM_BEACON_INT
,
2175 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getbeacon_int" },
2176 #ifndef PRISM2_NO_STATION_MODES
2177 { PRISM2_PARAM_PSEUDO_IBSS
,
2178 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "pseudo_ibss" },
2179 { PRISM2_PARAM_PSEUDO_IBSS
,
2180 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getpseudo_ibss" },
2181 #endif /* PRISM2_NO_STATION_MODES */
2183 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "alc" },
2185 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getalc" },
2186 { PRISM2_PARAM_DUMP
,
2187 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "dump" },
2188 { PRISM2_PARAM_DUMP
,
2189 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getdump" },
2190 { PRISM2_PARAM_OTHER_AP_POLICY
,
2191 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "other_ap_policy" },
2192 { PRISM2_PARAM_OTHER_AP_POLICY
,
2193 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getother_ap_pol" },
2194 { PRISM2_PARAM_AP_MAX_INACTIVITY
,
2195 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "max_inactivity" },
2196 { PRISM2_PARAM_AP_MAX_INACTIVITY
,
2197 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getmax_inactivi" },
2198 { PRISM2_PARAM_AP_BRIDGE_PACKETS
,
2199 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "bridge_packets" },
2200 { PRISM2_PARAM_AP_BRIDGE_PACKETS
,
2201 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getbridge_packe" },
2202 { PRISM2_PARAM_DTIM_PERIOD
,
2203 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "dtim_period" },
2204 { PRISM2_PARAM_DTIM_PERIOD
,
2205 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getdtim_period" },
2206 { PRISM2_PARAM_AP_NULLFUNC_ACK
,
2207 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "nullfunc_ack" },
2208 { PRISM2_PARAM_AP_NULLFUNC_ACK
,
2209 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getnullfunc_ack" },
2210 { PRISM2_PARAM_MAX_WDS
,
2211 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "max_wds" },
2212 { PRISM2_PARAM_MAX_WDS
,
2213 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getmax_wds" },
2214 { PRISM2_PARAM_AP_AUTOM_AP_WDS
,
2215 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "autom_ap_wds" },
2216 { PRISM2_PARAM_AP_AUTOM_AP_WDS
,
2217 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getautom_ap_wds" },
2218 { PRISM2_PARAM_AP_AUTH_ALGS
,
2219 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "ap_auth_algs" },
2220 { PRISM2_PARAM_AP_AUTH_ALGS
,
2221 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getap_auth_algs" },
2222 { PRISM2_PARAM_MONITOR_ALLOW_FCSERR
,
2223 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "allow_fcserr" },
2224 { PRISM2_PARAM_MONITOR_ALLOW_FCSERR
,
2225 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getallow_fcserr" },
2226 { PRISM2_PARAM_HOST_ENCRYPT
,
2227 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "host_encrypt" },
2228 { PRISM2_PARAM_HOST_ENCRYPT
,
2229 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethost_encrypt" },
2230 { PRISM2_PARAM_HOST_DECRYPT
,
2231 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "host_decrypt" },
2232 { PRISM2_PARAM_HOST_DECRYPT
,
2233 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethost_decrypt" },
2234 #ifndef PRISM2_NO_STATION_MODES
2235 { PRISM2_PARAM_HOST_ROAMING
,
2236 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "host_roaming" },
2237 { PRISM2_PARAM_HOST_ROAMING
,
2238 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethost_roaming" },
2239 #endif /* PRISM2_NO_STATION_MODES */
2240 { PRISM2_PARAM_BCRX_STA_KEY
,
2241 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "bcrx_sta_key" },
2242 { PRISM2_PARAM_BCRX_STA_KEY
,
2243 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getbcrx_sta_key" },
2244 { PRISM2_PARAM_IEEE_802_1X
,
2245 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "ieee_802_1x" },
2246 { PRISM2_PARAM_IEEE_802_1X
,
2247 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getieee_802_1x" },
2248 { PRISM2_PARAM_ANTSEL_TX
,
2249 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "antsel_tx" },
2250 { PRISM2_PARAM_ANTSEL_TX
,
2251 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getantsel_tx" },
2252 { PRISM2_PARAM_ANTSEL_RX
,
2253 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "antsel_rx" },
2254 { PRISM2_PARAM_ANTSEL_RX
,
2255 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getantsel_rx" },
2256 { PRISM2_PARAM_MONITOR_TYPE
,
2257 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "monitor_type" },
2258 { PRISM2_PARAM_MONITOR_TYPE
,
2259 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getmonitor_type" },
2260 { PRISM2_PARAM_WDS_TYPE
,
2261 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "wds_type" },
2262 { PRISM2_PARAM_WDS_TYPE
,
2263 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getwds_type" },
2264 { PRISM2_PARAM_HOSTSCAN
,
2265 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "hostscan" },
2266 { PRISM2_PARAM_HOSTSCAN
,
2267 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethostscan" },
2268 { PRISM2_PARAM_AP_SCAN
,
2269 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "ap_scan" },
2270 { PRISM2_PARAM_AP_SCAN
,
2271 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getap_scan" },
2272 { PRISM2_PARAM_ENH_SEC
,
2273 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "enh_sec" },
2274 { PRISM2_PARAM_ENH_SEC
,
2275 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getenh_sec" },
2276 #ifdef PRISM2_IO_DEBUG
2277 { PRISM2_PARAM_IO_DEBUG
,
2278 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "io_debug" },
2279 { PRISM2_PARAM_IO_DEBUG
,
2280 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getio_debug" },
2281 #endif /* PRISM2_IO_DEBUG */
2282 { PRISM2_PARAM_BASIC_RATES
,
2283 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "basic_rates" },
2284 { PRISM2_PARAM_BASIC_RATES
,
2285 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getbasic_rates" },
2286 { PRISM2_PARAM_OPER_RATES
,
2287 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "oper_rates" },
2288 { PRISM2_PARAM_OPER_RATES
,
2289 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getoper_rates" },
2290 { PRISM2_PARAM_HOSTAPD
,
2291 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "hostapd" },
2292 { PRISM2_PARAM_HOSTAPD
,
2293 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethostapd" },
2294 { PRISM2_PARAM_HOSTAPD_STA
,
2295 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "hostapd_sta" },
2296 { PRISM2_PARAM_HOSTAPD_STA
,
2297 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethostapd_sta" },
2299 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "wpa" },
2301 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getwpa" },
2302 { PRISM2_PARAM_PRIVACY_INVOKED
,
2303 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "privacy_invoked" },
2304 { PRISM2_PARAM_PRIVACY_INVOKED
,
2305 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getprivacy_invo" },
2306 { PRISM2_PARAM_TKIP_COUNTERMEASURES
,
2307 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "tkip_countermea" },
2308 { PRISM2_PARAM_TKIP_COUNTERMEASURES
,
2309 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gettkip_counter" },
2310 { PRISM2_PARAM_DROP_UNENCRYPTED
,
2311 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "drop_unencrypte" },
2312 { PRISM2_PARAM_DROP_UNENCRYPTED
,
2313 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getdrop_unencry" },
2314 { PRISM2_PARAM_SCAN_CHANNEL_MASK
,
2315 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, 0, "scan_channels" },
2316 { PRISM2_PARAM_SCAN_CHANNEL_MASK
,
2317 0, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getscan_channel" },
2321 static int prism2_ioctl_priv_inquire(struct net_device
*dev
, int *i
)
2323 struct hostap_interface
*iface
;
2324 local_info_t
*local
;
2326 iface
= netdev_priv(dev
);
2327 local
= iface
->local
;
2329 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_INQUIRE
, *i
, NULL
, NULL
))
2336 static int prism2_ioctl_priv_prism2_param(struct net_device
*dev
,
2337 struct iw_request_info
*info
,
2338 void *wrqu
, char *extra
)
2340 struct hostap_interface
*iface
;
2341 local_info_t
*local
;
2342 int *i
= (int *) extra
;
2344 int value
= *(i
+ 1);
2348 iface
= netdev_priv(dev
);
2349 local
= iface
->local
;
2352 case PRISM2_PARAM_TXRATECTRL
:
2353 local
->fw_tx_rate_control
= value
;
2356 case PRISM2_PARAM_BEACON_INT
:
2357 if (hostap_set_word(dev
, HFA384X_RID_CNFBEACONINT
, value
) ||
2358 local
->func
->reset_port(dev
))
2361 local
->beacon_int
= value
;
2364 #ifndef PRISM2_NO_STATION_MODES
2365 case PRISM2_PARAM_PSEUDO_IBSS
:
2366 if (value
== local
->pseudo_adhoc
)
2369 if (value
!= 0 && value
!= 1) {
2374 printk(KERN_DEBUG
"prism2: %s: pseudo IBSS change %d -> %d\n",
2375 dev
->name
, local
->pseudo_adhoc
, value
);
2376 local
->pseudo_adhoc
= value
;
2377 if (local
->iw_mode
!= IW_MODE_ADHOC
)
2380 if (hostap_set_word(dev
, HFA384X_RID_CNFPORTTYPE
,
2381 hostap_get_porttype(local
))) {
2386 if (local
->func
->reset_port(dev
))
2389 #endif /* PRISM2_NO_STATION_MODES */
2391 case PRISM2_PARAM_ALC
:
2392 printk(KERN_DEBUG
"%s: %s ALC\n", dev
->name
,
2393 value
== 0 ? "Disabling" : "Enabling");
2394 val
= HFA384X_TEST_CFG_BIT_ALC
;
2395 local
->func
->cmd(dev
, HFA384X_CMDCODE_TEST
|
2396 (HFA384X_TEST_CFG_BITS
<< 8),
2397 value
== 0 ? 0 : 1, &val
, NULL
);
2400 case PRISM2_PARAM_DUMP
:
2401 local
->frame_dump
= value
;
2404 case PRISM2_PARAM_OTHER_AP_POLICY
:
2405 if (value
< 0 || value
> 3) {
2409 if (local
->ap
!= NULL
)
2410 local
->ap
->ap_policy
= value
;
2413 case PRISM2_PARAM_AP_MAX_INACTIVITY
:
2414 if (value
< 0 || value
> 7 * 24 * 60 * 60) {
2418 if (local
->ap
!= NULL
)
2419 local
->ap
->max_inactivity
= value
* HZ
;
2422 case PRISM2_PARAM_AP_BRIDGE_PACKETS
:
2423 if (local
->ap
!= NULL
)
2424 local
->ap
->bridge_packets
= value
;
2427 case PRISM2_PARAM_DTIM_PERIOD
:
2428 if (value
< 0 || value
> 65535) {
2432 if (hostap_set_word(dev
, HFA384X_RID_CNFOWNDTIMPERIOD
, value
)
2433 || local
->func
->reset_port(dev
))
2436 local
->dtim_period
= value
;
2439 case PRISM2_PARAM_AP_NULLFUNC_ACK
:
2440 if (local
->ap
!= NULL
)
2441 local
->ap
->nullfunc_ack
= value
;
2444 case PRISM2_PARAM_MAX_WDS
:
2445 local
->wds_max_connections
= value
;
2448 case PRISM2_PARAM_AP_AUTOM_AP_WDS
:
2449 if (local
->ap
!= NULL
) {
2450 if (!local
->ap
->autom_ap_wds
&& value
) {
2451 /* add WDS link to all APs in STA table */
2452 hostap_add_wds_links(local
);
2454 local
->ap
->autom_ap_wds
= value
;
2458 case PRISM2_PARAM_AP_AUTH_ALGS
:
2459 local
->auth_algs
= value
;
2460 if (hostap_set_auth_algs(local
))
2464 case PRISM2_PARAM_MONITOR_ALLOW_FCSERR
:
2465 local
->monitor_allow_fcserr
= value
;
2468 case PRISM2_PARAM_HOST_ENCRYPT
:
2469 local
->host_encrypt
= value
;
2470 if (hostap_set_encryption(local
) ||
2471 local
->func
->reset_port(dev
))
2475 case PRISM2_PARAM_HOST_DECRYPT
:
2476 local
->host_decrypt
= value
;
2477 if (hostap_set_encryption(local
) ||
2478 local
->func
->reset_port(dev
))
2482 #ifndef PRISM2_NO_STATION_MODES
2483 case PRISM2_PARAM_HOST_ROAMING
:
2484 if (value
< 0 || value
> 2) {
2488 local
->host_roaming
= value
;
2489 if (hostap_set_roaming(local
) || local
->func
->reset_port(dev
))
2492 #endif /* PRISM2_NO_STATION_MODES */
2494 case PRISM2_PARAM_BCRX_STA_KEY
:
2495 local
->bcrx_sta_key
= value
;
2498 case PRISM2_PARAM_IEEE_802_1X
:
2499 local
->ieee_802_1x
= value
;
2502 case PRISM2_PARAM_ANTSEL_TX
:
2503 if (value
< 0 || value
> HOSTAP_ANTSEL_HIGH
) {
2507 local
->antsel_tx
= value
;
2508 hostap_set_antsel(local
);
2511 case PRISM2_PARAM_ANTSEL_RX
:
2512 if (value
< 0 || value
> HOSTAP_ANTSEL_HIGH
) {
2516 local
->antsel_rx
= value
;
2517 hostap_set_antsel(local
);
2520 case PRISM2_PARAM_MONITOR_TYPE
:
2521 if (value
!= PRISM2_MONITOR_80211
&&
2522 value
!= PRISM2_MONITOR_CAPHDR
&&
2523 value
!= PRISM2_MONITOR_PRISM
) {
2527 local
->monitor_type
= value
;
2528 if (local
->iw_mode
== IW_MODE_MONITOR
)
2529 hostap_monitor_set_type(local
);
2532 case PRISM2_PARAM_WDS_TYPE
:
2533 local
->wds_type
= value
;
2536 case PRISM2_PARAM_HOSTSCAN
:
2538 struct hfa384x_hostscan_request scan_req
;
2541 memset(&scan_req
, 0, sizeof(scan_req
));
2542 scan_req
.channel_list
= __constant_cpu_to_le16(0x3fff);
2544 case 1: rate
= HFA384X_RATES_1MBPS
; break;
2545 case 2: rate
= HFA384X_RATES_2MBPS
; break;
2546 case 3: rate
= HFA384X_RATES_5MBPS
; break;
2547 case 4: rate
= HFA384X_RATES_11MBPS
; break;
2548 default: rate
= HFA384X_RATES_1MBPS
; break;
2550 scan_req
.txrate
= cpu_to_le16(rate
);
2551 /* leave SSID empty to accept all SSIDs */
2553 if (local
->iw_mode
== IW_MODE_MASTER
) {
2554 if (hostap_set_word(dev
, HFA384X_RID_CNFPORTTYPE
,
2555 HFA384X_PORTTYPE_BSS
) ||
2556 local
->func
->reset_port(dev
))
2557 printk(KERN_DEBUG
"Leaving Host AP mode "
2558 "for HostScan failed\n");
2561 if (local
->func
->set_rid(dev
, HFA384X_RID_HOSTSCAN
, &scan_req
,
2562 sizeof(scan_req
))) {
2563 printk(KERN_DEBUG
"HOSTSCAN failed\n");
2566 if (local
->iw_mode
== IW_MODE_MASTER
) {
2567 wait_queue_t __wait
;
2568 init_waitqueue_entry(&__wait
, current
);
2569 add_wait_queue(&local
->hostscan_wq
, &__wait
);
2570 set_current_state(TASK_INTERRUPTIBLE
);
2571 schedule_timeout(HZ
);
2572 if (signal_pending(current
))
2574 set_current_state(TASK_RUNNING
);
2575 remove_wait_queue(&local
->hostscan_wq
, &__wait
);
2577 if (hostap_set_word(dev
, HFA384X_RID_CNFPORTTYPE
,
2578 HFA384X_PORTTYPE_HOSTAP
) ||
2579 local
->func
->reset_port(dev
))
2580 printk(KERN_DEBUG
"Returning to Host AP mode "
2581 "after HostScan failed\n");
2586 case PRISM2_PARAM_AP_SCAN
:
2587 local
->passive_scan_interval
= value
;
2588 if (timer_pending(&local
->passive_scan_timer
))
2589 del_timer(&local
->passive_scan_timer
);
2591 local
->passive_scan_timer
.expires
= jiffies
+
2592 local
->passive_scan_interval
* HZ
;
2593 add_timer(&local
->passive_scan_timer
);
2597 case PRISM2_PARAM_ENH_SEC
:
2598 if (value
< 0 || value
> 3) {
2602 local
->enh_sec
= value
;
2603 if (hostap_set_word(dev
, HFA384X_RID_CNFENHSECURITY
,
2605 local
->func
->reset_port(dev
)) {
2606 printk(KERN_INFO
"%s: cnfEnhSecurity requires STA f/w "
2607 "1.6.3 or newer\n", dev
->name
);
2612 #ifdef PRISM2_IO_DEBUG
2613 case PRISM2_PARAM_IO_DEBUG
:
2614 local
->io_debug_enabled
= value
;
2616 #endif /* PRISM2_IO_DEBUG */
2618 case PRISM2_PARAM_BASIC_RATES
:
2619 if ((value
& local
->tx_rate_control
) != value
|| value
== 0) {
2620 printk(KERN_INFO
"%s: invalid basic rate set - basic "
2621 "rates must be in supported rate set\n",
2626 local
->basic_rates
= value
;
2627 if (hostap_set_word(dev
, HFA384X_RID_CNFBASICRATES
,
2628 local
->basic_rates
) ||
2629 local
->func
->reset_port(dev
))
2633 case PRISM2_PARAM_OPER_RATES
:
2634 local
->tx_rate_control
= value
;
2635 if (hostap_set_rate(dev
))
2639 case PRISM2_PARAM_HOSTAPD
:
2640 ret
= hostap_set_hostapd(local
, value
, 1);
2643 case PRISM2_PARAM_HOSTAPD_STA
:
2644 ret
= hostap_set_hostapd_sta(local
, value
, 1);
2647 case PRISM2_PARAM_WPA
:
2649 if (local
->sta_fw_ver
< PRISM2_FW_VER(1,7,0))
2651 else if (hostap_set_word(dev
, HFA384X_RID_SSNHANDLINGMODE
,
2656 case PRISM2_PARAM_PRIVACY_INVOKED
:
2657 local
->privacy_invoked
= value
;
2658 if (hostap_set_encryption(local
) ||
2659 local
->func
->reset_port(dev
))
2663 case PRISM2_PARAM_TKIP_COUNTERMEASURES
:
2664 local
->tkip_countermeasures
= value
;
2667 case PRISM2_PARAM_DROP_UNENCRYPTED
:
2668 local
->drop_unencrypted
= value
;
2671 case PRISM2_PARAM_SCAN_CHANNEL_MASK
:
2672 local
->scan_channel_mask
= value
;
2676 printk(KERN_DEBUG
"%s: prism2_param: unknown param %d\n",
2686 static int prism2_ioctl_priv_get_prism2_param(struct net_device
*dev
,
2687 struct iw_request_info
*info
,
2688 void *wrqu
, char *extra
)
2690 struct hostap_interface
*iface
;
2691 local_info_t
*local
;
2692 int *param
= (int *) extra
;
2695 iface
= netdev_priv(dev
);
2696 local
= iface
->local
;
2699 case PRISM2_PARAM_TXRATECTRL
:
2700 *param
= local
->fw_tx_rate_control
;
2703 case PRISM2_PARAM_BEACON_INT
:
2704 *param
= local
->beacon_int
;
2707 case PRISM2_PARAM_PSEUDO_IBSS
:
2708 *param
= local
->pseudo_adhoc
;
2711 case PRISM2_PARAM_ALC
:
2712 ret
= -EOPNOTSUPP
; /* FIX */
2715 case PRISM2_PARAM_DUMP
:
2716 *param
= local
->frame_dump
;
2719 case PRISM2_PARAM_OTHER_AP_POLICY
:
2720 if (local
->ap
!= NULL
)
2721 *param
= local
->ap
->ap_policy
;
2726 case PRISM2_PARAM_AP_MAX_INACTIVITY
:
2727 if (local
->ap
!= NULL
)
2728 *param
= local
->ap
->max_inactivity
/ HZ
;
2733 case PRISM2_PARAM_AP_BRIDGE_PACKETS
:
2734 if (local
->ap
!= NULL
)
2735 *param
= local
->ap
->bridge_packets
;
2740 case PRISM2_PARAM_DTIM_PERIOD
:
2741 *param
= local
->dtim_period
;
2744 case PRISM2_PARAM_AP_NULLFUNC_ACK
:
2745 if (local
->ap
!= NULL
)
2746 *param
= local
->ap
->nullfunc_ack
;
2751 case PRISM2_PARAM_MAX_WDS
:
2752 *param
= local
->wds_max_connections
;
2755 case PRISM2_PARAM_AP_AUTOM_AP_WDS
:
2756 if (local
->ap
!= NULL
)
2757 *param
= local
->ap
->autom_ap_wds
;
2762 case PRISM2_PARAM_AP_AUTH_ALGS
:
2763 *param
= local
->auth_algs
;
2766 case PRISM2_PARAM_MONITOR_ALLOW_FCSERR
:
2767 *param
= local
->monitor_allow_fcserr
;
2770 case PRISM2_PARAM_HOST_ENCRYPT
:
2771 *param
= local
->host_encrypt
;
2774 case PRISM2_PARAM_HOST_DECRYPT
:
2775 *param
= local
->host_decrypt
;
2778 case PRISM2_PARAM_HOST_ROAMING
:
2779 *param
= local
->host_roaming
;
2782 case PRISM2_PARAM_BCRX_STA_KEY
:
2783 *param
= local
->bcrx_sta_key
;
2786 case PRISM2_PARAM_IEEE_802_1X
:
2787 *param
= local
->ieee_802_1x
;
2790 case PRISM2_PARAM_ANTSEL_TX
:
2791 *param
= local
->antsel_tx
;
2794 case PRISM2_PARAM_ANTSEL_RX
:
2795 *param
= local
->antsel_rx
;
2798 case PRISM2_PARAM_MONITOR_TYPE
:
2799 *param
= local
->monitor_type
;
2802 case PRISM2_PARAM_WDS_TYPE
:
2803 *param
= local
->wds_type
;
2806 case PRISM2_PARAM_HOSTSCAN
:
2810 case PRISM2_PARAM_AP_SCAN
:
2811 *param
= local
->passive_scan_interval
;
2814 case PRISM2_PARAM_ENH_SEC
:
2815 *param
= local
->enh_sec
;
2818 #ifdef PRISM2_IO_DEBUG
2819 case PRISM2_PARAM_IO_DEBUG
:
2820 *param
= local
->io_debug_enabled
;
2822 #endif /* PRISM2_IO_DEBUG */
2824 case PRISM2_PARAM_BASIC_RATES
:
2825 *param
= local
->basic_rates
;
2828 case PRISM2_PARAM_OPER_RATES
:
2829 *param
= local
->tx_rate_control
;
2832 case PRISM2_PARAM_HOSTAPD
:
2833 *param
= local
->hostapd
;
2836 case PRISM2_PARAM_HOSTAPD_STA
:
2837 *param
= local
->hostapd_sta
;
2840 case PRISM2_PARAM_WPA
:
2841 if (local
->sta_fw_ver
< PRISM2_FW_VER(1,7,0))
2843 *param
= local
->wpa
;
2846 case PRISM2_PARAM_PRIVACY_INVOKED
:
2847 *param
= local
->privacy_invoked
;
2850 case PRISM2_PARAM_TKIP_COUNTERMEASURES
:
2851 *param
= local
->tkip_countermeasures
;
2854 case PRISM2_PARAM_DROP_UNENCRYPTED
:
2855 *param
= local
->drop_unencrypted
;
2858 case PRISM2_PARAM_SCAN_CHANNEL_MASK
:
2859 *param
= local
->scan_channel_mask
;
2863 printk(KERN_DEBUG
"%s: get_prism2_param: unknown param %d\n",
2873 static int prism2_ioctl_priv_readmif(struct net_device
*dev
,
2874 struct iw_request_info
*info
,
2875 void *wrqu
, char *extra
)
2877 struct hostap_interface
*iface
;
2878 local_info_t
*local
;
2881 iface
= netdev_priv(dev
);
2882 local
= iface
->local
;
2884 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_READMIF
, *extra
, NULL
,
2894 static int prism2_ioctl_priv_writemif(struct net_device
*dev
,
2895 struct iw_request_info
*info
,
2896 void *wrqu
, char *extra
)
2898 struct hostap_interface
*iface
;
2899 local_info_t
*local
;
2902 iface
= netdev_priv(dev
);
2903 local
= iface
->local
;
2907 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_WRITEMIF
, cr
, &val
, NULL
))
2914 static int prism2_ioctl_priv_monitor(struct net_device
*dev
, int *i
)
2916 struct hostap_interface
*iface
;
2917 local_info_t
*local
;
2921 iface
= netdev_priv(dev
);
2922 local
= iface
->local
;
2924 printk(KERN_DEBUG
"%s: process %d (%s) used deprecated iwpriv monitor "
2925 "- update software to use iwconfig mode monitor\n",
2926 dev
->name
, current
->pid
, current
->comm
);
2928 /* Backward compatibility code - this can be removed at some point */
2931 /* Disable monitor mode - old mode was not saved, so go to
2933 mode
= IW_MODE_MASTER
;
2934 ret
= prism2_ioctl_siwmode(dev
, NULL
, &mode
, NULL
);
2935 } else if (*i
== 1) {
2936 /* netlink socket mode is not supported anymore since it did
2937 * not separate different devices from each other and was not
2938 * best method for delivering large amount of packets to
2941 } else if (*i
== 2 || *i
== 3) {
2944 local
->monitor_type
= PRISM2_MONITOR_80211
;
2947 local
->monitor_type
= PRISM2_MONITOR_PRISM
;
2950 mode
= IW_MODE_MONITOR
;
2951 ret
= prism2_ioctl_siwmode(dev
, NULL
, &mode
, NULL
);
2952 hostap_monitor_mode_enable(local
);
2960 static int prism2_ioctl_priv_reset(struct net_device
*dev
, int *i
)
2962 struct hostap_interface
*iface
;
2963 local_info_t
*local
;
2965 iface
= netdev_priv(dev
);
2966 local
= iface
->local
;
2968 printk(KERN_DEBUG
"%s: manual reset request(%d)\n", dev
->name
, *i
);
2971 /* Disable and enable card */
2972 local
->func
->hw_shutdown(dev
, 1);
2973 local
->func
->hw_config(dev
, 0);
2978 local
->func
->hw_reset(dev
);
2982 /* Disable and enable port 0 */
2983 local
->func
->reset_port(dev
);
2987 prism2_sta_deauth(local
, WLAN_REASON_DEAUTH_LEAVING
);
2988 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_DISABLE
, 0, NULL
,
2994 if (local
->func
->cmd(dev
, HFA384X_CMDCODE_ENABLE
, 0, NULL
,
3000 printk(KERN_DEBUG
"Unknown reset request %d\n", *i
);
3008 static int prism2_ioctl_priv_set_rid_word(struct net_device
*dev
, int *i
)
3011 int value
= *(i
+ 1);
3013 printk(KERN_DEBUG
"%s: Set RID[0x%X] = %d\n", dev
->name
, rid
, value
);
3015 if (hostap_set_word(dev
, rid
, value
))
3022 #ifndef PRISM2_NO_KERNEL_IEEE80211_MGMT
3023 static int ap_mac_cmd_ioctl(local_info_t
*local
, int *cmd
)
3028 case AP_MAC_CMD_POLICY_OPEN
:
3029 local
->ap
->mac_restrictions
.policy
= MAC_POLICY_OPEN
;
3031 case AP_MAC_CMD_POLICY_ALLOW
:
3032 local
->ap
->mac_restrictions
.policy
= MAC_POLICY_ALLOW
;
3034 case AP_MAC_CMD_POLICY_DENY
:
3035 local
->ap
->mac_restrictions
.policy
= MAC_POLICY_DENY
;
3037 case AP_MAC_CMD_FLUSH
:
3038 ap_control_flush_macs(&local
->ap
->mac_restrictions
);
3040 case AP_MAC_CMD_KICKALL
:
3041 ap_control_kickall(local
->ap
);
3042 hostap_deauth_all_stas(local
->dev
, local
->ap
, 0);
3051 #endif /* PRISM2_NO_KERNEL_IEEE80211_MGMT */
3054 #ifdef PRISM2_DOWNLOAD_SUPPORT
3055 static int prism2_ioctl_priv_download(local_info_t
*local
, struct iw_point
*p
)
3057 struct prism2_download_param
*param
;
3060 if (p
->length
< sizeof(struct prism2_download_param
) ||
3061 p
->length
> 1024 || !p
->pointer
)
3064 param
= (struct prism2_download_param
*)
3065 kmalloc(p
->length
, GFP_KERNEL
);
3069 if (copy_from_user(param
, p
->pointer
, p
->length
)) {
3074 if (p
->length
< sizeof(struct prism2_download_param
) +
3075 param
->num_areas
* sizeof(struct prism2_download_area
)) {
3080 ret
= local
->func
->download(local
, param
);
3086 #endif /* PRISM2_DOWNLOAD_SUPPORT */
3089 static int prism2_set_genericelement(struct net_device
*dev
, u8
*elem
,
3092 struct hostap_interface
*iface
= dev
->priv
;
3093 local_info_t
*local
= iface
->local
;
3097 * Add 16-bit length in the beginning of the buffer because Prism2 RID
3100 buf
= kmalloc(len
+ 2, GFP_KERNEL
);
3104 *((u16
*) buf
) = cpu_to_le16(len
);
3105 memcpy(buf
+ 2, elem
, len
);
3107 kfree(local
->generic_elem
);
3108 local
->generic_elem
= buf
;
3109 local
->generic_elem_len
= len
+ 2;
3111 return local
->func
->set_rid(local
->dev
, HFA384X_RID_GENERICELEMENT
,
3116 static int prism2_ioctl_siwauth(struct net_device
*dev
,
3117 struct iw_request_info
*info
,
3118 struct iw_param
*data
, char *extra
)
3120 struct hostap_interface
*iface
= dev
->priv
;
3121 local_info_t
*local
= iface
->local
;
3123 switch (data
->flags
& IW_AUTH_INDEX
) {
3124 case IW_AUTH_WPA_VERSION
:
3125 case IW_AUTH_CIPHER_PAIRWISE
:
3126 case IW_AUTH_CIPHER_GROUP
:
3127 case IW_AUTH_KEY_MGMT
:
3129 * Host AP driver does not use these parameters and allows
3130 * wpa_supplicant to control them internally.
3133 case IW_AUTH_TKIP_COUNTERMEASURES
:
3134 local
->tkip_countermeasures
= data
->value
;
3136 case IW_AUTH_DROP_UNENCRYPTED
:
3137 local
->drop_unencrypted
= data
->value
;
3139 case IW_AUTH_80211_AUTH_ALG
:
3140 local
->auth_algs
= data
->value
;
3142 case IW_AUTH_WPA_ENABLED
:
3143 if (data
->value
== 0) {
3145 if (local
->sta_fw_ver
< PRISM2_FW_VER(1,7,0))
3147 prism2_set_genericelement(dev
, "", 0);
3148 local
->host_roaming
= 0;
3149 local
->privacy_invoked
= 0;
3150 if (hostap_set_word(dev
, HFA384X_RID_SSNHANDLINGMODE
,
3152 hostap_set_roaming(local
) ||
3153 hostap_set_encryption(local
) ||
3154 local
->func
->reset_port(dev
))
3158 if (local
->sta_fw_ver
< PRISM2_FW_VER(1,7,0))
3160 local
->host_roaming
= 2;
3161 local
->privacy_invoked
= 1;
3163 if (hostap_set_word(dev
, HFA384X_RID_SSNHANDLINGMODE
, 1) ||
3164 hostap_set_roaming(local
) ||
3165 hostap_set_encryption(local
) ||
3166 local
->func
->reset_port(dev
))
3169 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
3170 local
->ieee_802_1x
= data
->value
;
3172 case IW_AUTH_PRIVACY_INVOKED
:
3173 local
->privacy_invoked
= data
->value
;
3182 static int prism2_ioctl_giwauth(struct net_device
*dev
,
3183 struct iw_request_info
*info
,
3184 struct iw_param
*data
, char *extra
)
3186 struct hostap_interface
*iface
= dev
->priv
;
3187 local_info_t
*local
= iface
->local
;
3189 switch (data
->flags
& IW_AUTH_INDEX
) {
3190 case IW_AUTH_WPA_VERSION
:
3191 case IW_AUTH_CIPHER_PAIRWISE
:
3192 case IW_AUTH_CIPHER_GROUP
:
3193 case IW_AUTH_KEY_MGMT
:
3195 * Host AP driver does not use these parameters and allows
3196 * wpa_supplicant to control them internally.
3199 case IW_AUTH_TKIP_COUNTERMEASURES
:
3200 data
->value
= local
->tkip_countermeasures
;
3202 case IW_AUTH_DROP_UNENCRYPTED
:
3203 data
->value
= local
->drop_unencrypted
;
3205 case IW_AUTH_80211_AUTH_ALG
:
3206 data
->value
= local
->auth_algs
;
3208 case IW_AUTH_WPA_ENABLED
:
3209 data
->value
= local
->wpa
;
3211 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
3212 data
->value
= local
->ieee_802_1x
;
3221 static int prism2_ioctl_siwencodeext(struct net_device
*dev
,
3222 struct iw_request_info
*info
,
3223 struct iw_point
*erq
, char *extra
)
3225 struct hostap_interface
*iface
= dev
->priv
;
3226 local_info_t
*local
= iface
->local
;
3227 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*) extra
;
3229 struct ieee80211_crypto_ops
*ops
;
3230 struct ieee80211_crypt_data
**crypt
;
3233 const char *alg
, *module
;
3235 i
= erq
->flags
& IW_ENCODE_INDEX
;
3238 if (i
< 1 || i
> WEP_KEYS
)
3239 i
= local
->tx_keyidx
;
3242 if (i
< 0 || i
>= WEP_KEYS
)
3245 addr
= ext
->addr
.sa_data
;
3246 if (addr
[0] == 0xff && addr
[1] == 0xff && addr
[2] == 0xff &&
3247 addr
[3] == 0xff && addr
[4] == 0xff && addr
[5] == 0xff) {
3249 crypt
= &local
->crypt
[i
];
3253 sta_ptr
= ap_crypt_get_ptrs(local
->ap
, addr
, 0, &crypt
);
3254 if (sta_ptr
== NULL
) {
3255 if (local
->iw_mode
== IW_MODE_INFRA
) {
3257 * TODO: add STA entry for the current AP so
3258 * that unicast key can be used. For now, this
3259 * is emulated by using default key idx 0.
3262 crypt
= &local
->crypt
[i
];
3268 if ((erq
->flags
& IW_ENCODE_DISABLED
) ||
3269 ext
->alg
== IW_ENCODE_ALG_NONE
) {
3271 prism2_crypt_delayed_deinit(local
, crypt
);
3276 case IW_ENCODE_ALG_WEP
:
3278 module
= "ieee80211_crypt_wep";
3280 case IW_ENCODE_ALG_TKIP
:
3282 module
= "ieee80211_crypt_tkip";
3284 case IW_ENCODE_ALG_CCMP
:
3286 module
= "ieee80211_crypt_ccmp";
3289 printk(KERN_DEBUG
"%s: unsupported algorithm %d\n",
3290 local
->dev
->name
, ext
->alg
);
3295 ops
= ieee80211_get_crypto_ops(alg
);
3297 request_module(module
);
3298 ops
= ieee80211_get_crypto_ops(alg
);
3301 printk(KERN_DEBUG
"%s: unknown crypto alg '%s'\n",
3302 local
->dev
->name
, alg
);
3307 if (sta_ptr
|| ext
->alg
!= IW_ENCODE_ALG_WEP
) {
3309 * Per station encryption and other than WEP algorithms
3310 * require host-based encryption, so force them on
3313 local
->host_decrypt
= local
->host_encrypt
= 1;
3316 if (*crypt
== NULL
|| (*crypt
)->ops
!= ops
) {
3317 struct ieee80211_crypt_data
*new_crypt
;
3319 prism2_crypt_delayed_deinit(local
, crypt
);
3321 new_crypt
= kzalloc(sizeof(struct ieee80211_crypt_data
),
3323 if (new_crypt
== NULL
) {
3327 new_crypt
->ops
= ops
;
3328 new_crypt
->priv
= new_crypt
->ops
->init(i
);
3329 if (new_crypt
->priv
== NULL
) {
3339 * TODO: if ext_flags does not have IW_ENCODE_EXT_RX_SEQ_VALID, the
3340 * existing seq# should not be changed.
3341 * TODO: if ext_flags has IW_ENCODE_EXT_TX_SEQ_VALID, next TX seq#
3342 * should be changed to something else than zero.
3344 if ((!(ext
->ext_flags
& IW_ENCODE_EXT_SET_TX_KEY
) || ext
->key_len
> 0)
3345 && (*crypt
)->ops
->set_key
&&
3346 (*crypt
)->ops
->set_key(ext
->key
, ext
->key_len
, ext
->rx_seq
,
3347 (*crypt
)->priv
) < 0) {
3348 printk(KERN_DEBUG
"%s: key setting failed\n",
3354 if (ext
->ext_flags
& IW_ENCODE_EXT_SET_TX_KEY
) {
3356 local
->tx_keyidx
= i
;
3360 if (sta_ptr
== NULL
&& ext
->key_len
> 0) {
3362 for (j
= 0; j
< WEP_KEYS
; j
++) {
3363 if (j
!= i
&& local
->crypt
[j
]) {
3369 local
->tx_keyidx
= i
;
3374 hostap_handle_sta_release(sta_ptr
);
3376 local
->open_wep
= erq
->flags
& IW_ENCODE_OPEN
;
3379 * Do not reset port0 if card is in Managed mode since resetting will
3380 * generate new IEEE 802.11 authentication which may end up in looping
3381 * with IEEE 802.1X. Prism2 documentation seem to require port reset
3382 * after WEP configuration. However, keys are apparently changed at
3383 * least in Managed mode.
3386 (hostap_set_encryption(local
) ||
3387 (local
->iw_mode
!= IW_MODE_INFRA
&&
3388 local
->func
->reset_port(local
->dev
))))
3395 static int prism2_ioctl_giwencodeext(struct net_device
*dev
,
3396 struct iw_request_info
*info
,
3397 struct iw_point
*erq
, char *extra
)
3399 struct hostap_interface
*iface
= dev
->priv
;
3400 local_info_t
*local
= iface
->local
;
3401 struct ieee80211_crypt_data
**crypt
;
3404 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*) extra
;
3407 max_key_len
= erq
->length
- sizeof(*ext
);
3408 if (max_key_len
< 0)
3411 i
= erq
->flags
& IW_ENCODE_INDEX
;
3412 if (i
< 1 || i
> WEP_KEYS
)
3413 i
= local
->tx_keyidx
;
3417 addr
= ext
->addr
.sa_data
;
3418 if (addr
[0] == 0xff && addr
[1] == 0xff && addr
[2] == 0xff &&
3419 addr
[3] == 0xff && addr
[4] == 0xff && addr
[5] == 0xff) {
3421 crypt
= &local
->crypt
[i
];
3424 sta_ptr
= ap_crypt_get_ptrs(local
->ap
, addr
, 0, &crypt
);
3425 if (sta_ptr
== NULL
)
3429 memset(ext
, 0, sizeof(*ext
));
3431 if (*crypt
== NULL
|| (*crypt
)->ops
== NULL
) {
3432 ext
->alg
= IW_ENCODE_ALG_NONE
;
3434 erq
->flags
|= IW_ENCODE_DISABLED
;
3436 if (strcmp((*crypt
)->ops
->name
, "WEP") == 0)
3437 ext
->alg
= IW_ENCODE_ALG_WEP
;
3438 else if (strcmp((*crypt
)->ops
->name
, "TKIP") == 0)
3439 ext
->alg
= IW_ENCODE_ALG_TKIP
;
3440 else if (strcmp((*crypt
)->ops
->name
, "CCMP") == 0)
3441 ext
->alg
= IW_ENCODE_ALG_CCMP
;
3445 if ((*crypt
)->ops
->get_key
) {
3447 (*crypt
)->ops
->get_key(ext
->key
,
3452 (ext
->alg
== IW_ENCODE_ALG_TKIP
||
3453 ext
->alg
== IW_ENCODE_ALG_CCMP
))
3454 ext
->ext_flags
|= IW_ENCODE_EXT_TX_SEQ_VALID
;
3459 hostap_handle_sta_release(sta_ptr
);
3465 static int prism2_ioctl_set_encryption(local_info_t
*local
,
3466 struct prism2_hostapd_param
*param
,
3470 struct ieee80211_crypto_ops
*ops
;
3471 struct ieee80211_crypt_data
**crypt
;
3474 param
->u
.crypt
.err
= 0;
3475 param
->u
.crypt
.alg
[HOSTAP_CRYPT_ALG_NAME_LEN
- 1] = '\0';
3478 (int) ((char *) param
->u
.crypt
.key
- (char *) param
) +
3479 param
->u
.crypt
.key_len
)
3482 if (param
->sta_addr
[0] == 0xff && param
->sta_addr
[1] == 0xff &&
3483 param
->sta_addr
[2] == 0xff && param
->sta_addr
[3] == 0xff &&
3484 param
->sta_addr
[4] == 0xff && param
->sta_addr
[5] == 0xff) {
3485 if (param
->u
.crypt
.idx
>= WEP_KEYS
)
3488 crypt
= &local
->crypt
[param
->u
.crypt
.idx
];
3490 if (param
->u
.crypt
.idx
)
3492 sta_ptr
= ap_crypt_get_ptrs(
3493 local
->ap
, param
->sta_addr
,
3494 (param
->u
.crypt
.flags
& HOSTAP_CRYPT_FLAG_PERMANENT
),
3497 if (sta_ptr
== NULL
) {
3498 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
3503 if (strcmp(param
->u
.crypt
.alg
, "none") == 0) {
3505 prism2_crypt_delayed_deinit(local
, crypt
);
3509 ops
= ieee80211_get_crypto_ops(param
->u
.crypt
.alg
);
3510 if (ops
== NULL
&& strcmp(param
->u
.crypt
.alg
, "WEP") == 0) {
3511 request_module("ieee80211_crypt_wep");
3512 ops
= ieee80211_get_crypto_ops(param
->u
.crypt
.alg
);
3513 } else if (ops
== NULL
&& strcmp(param
->u
.crypt
.alg
, "TKIP") == 0) {
3514 request_module("ieee80211_crypt_tkip");
3515 ops
= ieee80211_get_crypto_ops(param
->u
.crypt
.alg
);
3516 } else if (ops
== NULL
&& strcmp(param
->u
.crypt
.alg
, "CCMP") == 0) {
3517 request_module("ieee80211_crypt_ccmp");
3518 ops
= ieee80211_get_crypto_ops(param
->u
.crypt
.alg
);
3521 printk(KERN_DEBUG
"%s: unknown crypto alg '%s'\n",
3522 local
->dev
->name
, param
->u
.crypt
.alg
);
3523 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ALG
;
3528 /* station based encryption and other than WEP algorithms require
3529 * host-based encryption, so force them on automatically */
3530 local
->host_decrypt
= local
->host_encrypt
= 1;
3532 if (*crypt
== NULL
|| (*crypt
)->ops
!= ops
) {
3533 struct ieee80211_crypt_data
*new_crypt
;
3535 prism2_crypt_delayed_deinit(local
, crypt
);
3537 new_crypt
= kzalloc(sizeof(struct ieee80211_crypt_data
),
3539 if (new_crypt
== NULL
) {
3543 new_crypt
->ops
= ops
;
3544 new_crypt
->priv
= new_crypt
->ops
->init(param
->u
.crypt
.idx
);
3545 if (new_crypt
->priv
== NULL
) {
3547 param
->u
.crypt
.err
=
3548 HOSTAP_CRYPT_ERR_CRYPT_INIT_FAILED
;
3556 if ((!(param
->u
.crypt
.flags
& HOSTAP_CRYPT_FLAG_SET_TX_KEY
) ||
3557 param
->u
.crypt
.key_len
> 0) && (*crypt
)->ops
->set_key
&&
3558 (*crypt
)->ops
->set_key(param
->u
.crypt
.key
,
3559 param
->u
.crypt
.key_len
, param
->u
.crypt
.seq
,
3560 (*crypt
)->priv
) < 0) {
3561 printk(KERN_DEBUG
"%s: key setting failed\n",
3563 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_KEY_SET_FAILED
;
3568 if (param
->u
.crypt
.flags
& HOSTAP_CRYPT_FLAG_SET_TX_KEY
) {
3570 local
->tx_keyidx
= param
->u
.crypt
.idx
;
3571 else if (param
->u
.crypt
.idx
) {
3572 printk(KERN_DEBUG
"%s: TX key idx setting failed\n",
3574 param
->u
.crypt
.err
=
3575 HOSTAP_CRYPT_ERR_TX_KEY_SET_FAILED
;
3583 hostap_handle_sta_release(sta_ptr
);
3585 /* Do not reset port0 if card is in Managed mode since resetting will
3586 * generate new IEEE 802.11 authentication which may end up in looping
3587 * with IEEE 802.1X. Prism2 documentation seem to require port reset
3588 * after WEP configuration. However, keys are apparently changed at
3589 * least in Managed mode. */
3591 (hostap_set_encryption(local
) ||
3592 (local
->iw_mode
!= IW_MODE_INFRA
&&
3593 local
->func
->reset_port(local
->dev
)))) {
3594 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_CARD_CONF_FAILED
;
3602 static int prism2_ioctl_get_encryption(local_info_t
*local
,
3603 struct prism2_hostapd_param
*param
,
3606 struct ieee80211_crypt_data
**crypt
;
3610 param
->u
.crypt
.err
= 0;
3612 max_key_len
= param_len
-
3613 (int) ((char *) param
->u
.crypt
.key
- (char *) param
);
3614 if (max_key_len
< 0)
3617 if (param
->sta_addr
[0] == 0xff && param
->sta_addr
[1] == 0xff &&
3618 param
->sta_addr
[2] == 0xff && param
->sta_addr
[3] == 0xff &&
3619 param
->sta_addr
[4] == 0xff && param
->sta_addr
[5] == 0xff) {
3621 if (param
->u
.crypt
.idx
>= WEP_KEYS
)
3622 param
->u
.crypt
.idx
= local
->tx_keyidx
;
3623 crypt
= &local
->crypt
[param
->u
.crypt
.idx
];
3625 param
->u
.crypt
.idx
= 0;
3626 sta_ptr
= ap_crypt_get_ptrs(local
->ap
, param
->sta_addr
, 0,
3629 if (sta_ptr
== NULL
) {
3630 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
3635 if (*crypt
== NULL
|| (*crypt
)->ops
== NULL
) {
3636 memcpy(param
->u
.crypt
.alg
, "none", 5);
3637 param
->u
.crypt
.key_len
= 0;
3638 param
->u
.crypt
.idx
= 0xff;
3640 strncpy(param
->u
.crypt
.alg
, (*crypt
)->ops
->name
,
3641 HOSTAP_CRYPT_ALG_NAME_LEN
);
3642 param
->u
.crypt
.key_len
= 0;
3644 memset(param
->u
.crypt
.seq
, 0, 8);
3645 if ((*crypt
)->ops
->get_key
) {
3646 param
->u
.crypt
.key_len
=
3647 (*crypt
)->ops
->get_key(param
->u
.crypt
.key
,
3655 hostap_handle_sta_release(sta_ptr
);
3661 static int prism2_ioctl_get_rid(local_info_t
*local
,
3662 struct prism2_hostapd_param
*param
,
3667 max_len
= param_len
- PRISM2_HOSTAPD_RID_HDR_LEN
;
3671 res
= local
->func
->get_rid(local
->dev
, param
->u
.rid
.rid
,
3672 param
->u
.rid
.data
, param
->u
.rid
.len
, 0);
3674 param
->u
.rid
.len
= res
;
3682 static int prism2_ioctl_set_rid(local_info_t
*local
,
3683 struct prism2_hostapd_param
*param
,
3688 max_len
= param_len
- PRISM2_HOSTAPD_RID_HDR_LEN
;
3689 if (max_len
< 0 || max_len
< param
->u
.rid
.len
)
3692 return local
->func
->set_rid(local
->dev
, param
->u
.rid
.rid
,
3693 param
->u
.rid
.data
, param
->u
.rid
.len
);
3697 static int prism2_ioctl_set_assoc_ap_addr(local_info_t
*local
,
3698 struct prism2_hostapd_param
*param
,
3701 printk(KERN_DEBUG
"%ssta: associated as client with AP " MACSTR
"\n",
3702 local
->dev
->name
, MAC2STR(param
->sta_addr
));
3703 memcpy(local
->assoc_ap_addr
, param
->sta_addr
, ETH_ALEN
);
3708 static int prism2_ioctl_siwgenie(struct net_device
*dev
,
3709 struct iw_request_info
*info
,
3710 struct iw_point
*data
, char *extra
)
3712 return prism2_set_genericelement(dev
, extra
, data
->length
);
3716 static int prism2_ioctl_giwgenie(struct net_device
*dev
,
3717 struct iw_request_info
*info
,
3718 struct iw_point
*data
, char *extra
)
3720 struct hostap_interface
*iface
= dev
->priv
;
3721 local_info_t
*local
= iface
->local
;
3722 int len
= local
->generic_elem_len
- 2;
3724 if (len
<= 0 || local
->generic_elem
== NULL
) {
3729 if (data
->length
< len
)
3733 memcpy(extra
, local
->generic_elem
+ 2, len
);
3739 static int prism2_ioctl_set_generic_element(local_info_t
*local
,
3740 struct prism2_hostapd_param
*param
,
3745 len
= param
->u
.generic_elem
.len
;
3746 max_len
= param_len
- PRISM2_HOSTAPD_GENERIC_ELEMENT_HDR_LEN
;
3747 if (max_len
< 0 || max_len
< len
)
3750 return prism2_set_genericelement(local
->dev
,
3751 param
->u
.generic_elem
.data
, len
);
3755 static int prism2_ioctl_siwmlme(struct net_device
*dev
,
3756 struct iw_request_info
*info
,
3757 struct iw_point
*data
, char *extra
)
3759 struct hostap_interface
*iface
= dev
->priv
;
3760 local_info_t
*local
= iface
->local
;
3761 struct iw_mlme
*mlme
= (struct iw_mlme
*) extra
;
3764 reason
= cpu_to_le16(mlme
->reason_code
);
3766 switch (mlme
->cmd
) {
3767 case IW_MLME_DEAUTH
:
3768 return prism2_sta_send_mgmt(local
, mlme
->addr
.sa_data
,
3769 IEEE80211_STYPE_DEAUTH
,
3771 case IW_MLME_DISASSOC
:
3772 return prism2_sta_send_mgmt(local
, mlme
->addr
.sa_data
,
3773 IEEE80211_STYPE_DISASSOC
,
3781 static int prism2_ioctl_mlme(local_info_t
*local
,
3782 struct prism2_hostapd_param
*param
)
3786 reason
= cpu_to_le16(param
->u
.mlme
.reason_code
);
3787 switch (param
->u
.mlme
.cmd
) {
3788 case MLME_STA_DEAUTH
:
3789 return prism2_sta_send_mgmt(local
, param
->sta_addr
,
3790 IEEE80211_STYPE_DEAUTH
,
3792 case MLME_STA_DISASSOC
:
3793 return prism2_sta_send_mgmt(local
, param
->sta_addr
,
3794 IEEE80211_STYPE_DISASSOC
,
3802 static int prism2_ioctl_scan_req(local_info_t
*local
,
3803 struct prism2_hostapd_param
*param
)
3805 #ifndef PRISM2_NO_STATION_MODES
3806 if ((local
->iw_mode
!= IW_MODE_INFRA
&&
3807 local
->iw_mode
!= IW_MODE_ADHOC
) ||
3808 (local
->sta_fw_ver
< PRISM2_FW_VER(1,3,1)))
3811 if (!local
->dev_enabled
)
3814 return prism2_request_hostscan(local
->dev
, param
->u
.scan_req
.ssid
,
3815 param
->u
.scan_req
.ssid_len
);
3816 #else /* PRISM2_NO_STATION_MODES */
3818 #endif /* PRISM2_NO_STATION_MODES */
3822 static int prism2_ioctl_priv_hostapd(local_info_t
*local
, struct iw_point
*p
)
3824 struct prism2_hostapd_param
*param
;
3828 if (p
->length
< sizeof(struct prism2_hostapd_param
) ||
3829 p
->length
> PRISM2_HOSTAPD_MAX_BUF_SIZE
|| !p
->pointer
)
3832 param
= kmalloc(p
->length
, GFP_KERNEL
);
3836 if (copy_from_user(param
, p
->pointer
, p
->length
)) {
3841 switch (param
->cmd
) {
3842 case PRISM2_SET_ENCRYPTION
:
3843 ret
= prism2_ioctl_set_encryption(local
, param
, p
->length
);
3845 case PRISM2_GET_ENCRYPTION
:
3846 ret
= prism2_ioctl_get_encryption(local
, param
, p
->length
);
3848 case PRISM2_HOSTAPD_GET_RID
:
3849 ret
= prism2_ioctl_get_rid(local
, param
, p
->length
);
3851 case PRISM2_HOSTAPD_SET_RID
:
3852 ret
= prism2_ioctl_set_rid(local
, param
, p
->length
);
3854 case PRISM2_HOSTAPD_SET_ASSOC_AP_ADDR
:
3855 ret
= prism2_ioctl_set_assoc_ap_addr(local
, param
, p
->length
);
3857 case PRISM2_HOSTAPD_SET_GENERIC_ELEMENT
:
3858 ret
= prism2_ioctl_set_generic_element(local
, param
,
3861 case PRISM2_HOSTAPD_MLME
:
3862 ret
= prism2_ioctl_mlme(local
, param
);
3864 case PRISM2_HOSTAPD_SCAN_REQ
:
3865 ret
= prism2_ioctl_scan_req(local
, param
);
3868 ret
= prism2_hostapd(local
->ap
, param
);
3873 if (ret
== 1 || !ap_ioctl
) {
3874 if (copy_to_user(p
->pointer
, param
, p
->length
)) {
3877 } else if (ap_ioctl
)
3887 static void prism2_get_drvinfo(struct net_device
*dev
,
3888 struct ethtool_drvinfo
*info
)
3890 struct hostap_interface
*iface
;
3891 local_info_t
*local
;
3893 iface
= netdev_priv(dev
);
3894 local
= iface
->local
;
3896 strncpy(info
->driver
, "hostap", sizeof(info
->driver
) - 1);
3897 strncpy(info
->version
, PRISM2_VERSION
,
3898 sizeof(info
->version
) - 1);
3899 snprintf(info
->fw_version
, sizeof(info
->fw_version
) - 1,
3900 "%d.%d.%d", (local
->sta_fw_ver
>> 16) & 0xff,
3901 (local
->sta_fw_ver
>> 8) & 0xff,
3902 local
->sta_fw_ver
& 0xff);
3905 const struct ethtool_ops prism2_ethtool_ops
= {
3906 .get_drvinfo
= prism2_get_drvinfo
3910 /* Structures to export the Wireless Handlers */
3912 static const iw_handler prism2_handler
[] =
3914 (iw_handler
) NULL
, /* SIOCSIWCOMMIT */
3915 (iw_handler
) prism2_get_name
, /* SIOCGIWNAME */
3916 (iw_handler
) NULL
, /* SIOCSIWNWID */
3917 (iw_handler
) NULL
, /* SIOCGIWNWID */
3918 (iw_handler
) prism2_ioctl_siwfreq
, /* SIOCSIWFREQ */
3919 (iw_handler
) prism2_ioctl_giwfreq
, /* SIOCGIWFREQ */
3920 (iw_handler
) prism2_ioctl_siwmode
, /* SIOCSIWMODE */
3921 (iw_handler
) prism2_ioctl_giwmode
, /* SIOCGIWMODE */
3922 (iw_handler
) prism2_ioctl_siwsens
, /* SIOCSIWSENS */
3923 (iw_handler
) prism2_ioctl_giwsens
, /* SIOCGIWSENS */
3924 (iw_handler
) NULL
/* not used */, /* SIOCSIWRANGE */
3925 (iw_handler
) prism2_ioctl_giwrange
, /* SIOCGIWRANGE */
3926 (iw_handler
) NULL
/* not used */, /* SIOCSIWPRIV */
3927 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWPRIV */
3928 (iw_handler
) NULL
/* not used */, /* SIOCSIWSTATS */
3929 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWSTATS */
3930 iw_handler_set_spy
, /* SIOCSIWSPY */
3931 iw_handler_get_spy
, /* SIOCGIWSPY */
3932 iw_handler_set_thrspy
, /* SIOCSIWTHRSPY */
3933 iw_handler_get_thrspy
, /* SIOCGIWTHRSPY */
3934 (iw_handler
) prism2_ioctl_siwap
, /* SIOCSIWAP */
3935 (iw_handler
) prism2_ioctl_giwap
, /* SIOCGIWAP */
3936 (iw_handler
) prism2_ioctl_siwmlme
, /* SIOCSIWMLME */
3937 (iw_handler
) prism2_ioctl_giwaplist
, /* SIOCGIWAPLIST */
3938 (iw_handler
) prism2_ioctl_siwscan
, /* SIOCSIWSCAN */
3939 (iw_handler
) prism2_ioctl_giwscan
, /* SIOCGIWSCAN */
3940 (iw_handler
) prism2_ioctl_siwessid
, /* SIOCSIWESSID */
3941 (iw_handler
) prism2_ioctl_giwessid
, /* SIOCGIWESSID */
3942 (iw_handler
) prism2_ioctl_siwnickn
, /* SIOCSIWNICKN */
3943 (iw_handler
) prism2_ioctl_giwnickn
, /* SIOCGIWNICKN */
3944 (iw_handler
) NULL
, /* -- hole -- */
3945 (iw_handler
) NULL
, /* -- hole -- */
3946 (iw_handler
) prism2_ioctl_siwrate
, /* SIOCSIWRATE */
3947 (iw_handler
) prism2_ioctl_giwrate
, /* SIOCGIWRATE */
3948 (iw_handler
) prism2_ioctl_siwrts
, /* SIOCSIWRTS */
3949 (iw_handler
) prism2_ioctl_giwrts
, /* SIOCGIWRTS */
3950 (iw_handler
) prism2_ioctl_siwfrag
, /* SIOCSIWFRAG */
3951 (iw_handler
) prism2_ioctl_giwfrag
, /* SIOCGIWFRAG */
3952 (iw_handler
) prism2_ioctl_siwtxpow
, /* SIOCSIWTXPOW */
3953 (iw_handler
) prism2_ioctl_giwtxpow
, /* SIOCGIWTXPOW */
3954 (iw_handler
) prism2_ioctl_siwretry
, /* SIOCSIWRETRY */
3955 (iw_handler
) prism2_ioctl_giwretry
, /* SIOCGIWRETRY */
3956 (iw_handler
) prism2_ioctl_siwencode
, /* SIOCSIWENCODE */
3957 (iw_handler
) prism2_ioctl_giwencode
, /* SIOCGIWENCODE */
3958 (iw_handler
) prism2_ioctl_siwpower
, /* SIOCSIWPOWER */
3959 (iw_handler
) prism2_ioctl_giwpower
, /* SIOCGIWPOWER */
3960 (iw_handler
) NULL
, /* -- hole -- */
3961 (iw_handler
) NULL
, /* -- hole -- */
3962 (iw_handler
) prism2_ioctl_siwgenie
, /* SIOCSIWGENIE */
3963 (iw_handler
) prism2_ioctl_giwgenie
, /* SIOCGIWGENIE */
3964 (iw_handler
) prism2_ioctl_siwauth
, /* SIOCSIWAUTH */
3965 (iw_handler
) prism2_ioctl_giwauth
, /* SIOCGIWAUTH */
3966 (iw_handler
) prism2_ioctl_siwencodeext
, /* SIOCSIWENCODEEXT */
3967 (iw_handler
) prism2_ioctl_giwencodeext
, /* SIOCGIWENCODEEXT */
3968 (iw_handler
) NULL
, /* SIOCSIWPMKSA */
3969 (iw_handler
) NULL
, /* -- hole -- */
3972 static const iw_handler prism2_private_handler
[] =
3973 { /* SIOCIWFIRSTPRIV + */
3974 (iw_handler
) prism2_ioctl_priv_prism2_param
, /* 0 */
3975 (iw_handler
) prism2_ioctl_priv_get_prism2_param
, /* 1 */
3976 (iw_handler
) prism2_ioctl_priv_writemif
, /* 2 */
3977 (iw_handler
) prism2_ioctl_priv_readmif
, /* 3 */
3980 const struct iw_handler_def hostap_iw_handler_def
=
3982 .num_standard
= sizeof(prism2_handler
) / sizeof(iw_handler
),
3983 .num_private
= sizeof(prism2_private_handler
) / sizeof(iw_handler
),
3984 .num_private_args
= sizeof(prism2_priv
) / sizeof(struct iw_priv_args
),
3985 .standard
= (iw_handler
*) prism2_handler
,
3986 .private = (iw_handler
*) prism2_private_handler
,
3987 .private_args
= (struct iw_priv_args
*) prism2_priv
,
3988 .get_wireless_stats
= hostap_get_wireless_stats
,
3992 int hostap_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
3994 struct iwreq
*wrq
= (struct iwreq
*) ifr
;
3995 struct hostap_interface
*iface
;
3996 local_info_t
*local
;
3999 iface
= netdev_priv(dev
);
4000 local
= iface
->local
;
4003 /* Private ioctls (iwpriv) that have not yet been converted
4004 * into new wireless extensions API */
4006 case PRISM2_IOCTL_INQUIRE
:
4007 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4008 else ret
= prism2_ioctl_priv_inquire(dev
, (int *) wrq
->u
.name
);
4011 case PRISM2_IOCTL_MONITOR
:
4012 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4013 else ret
= prism2_ioctl_priv_monitor(dev
, (int *) wrq
->u
.name
);
4016 case PRISM2_IOCTL_RESET
:
4017 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4018 else ret
= prism2_ioctl_priv_reset(dev
, (int *) wrq
->u
.name
);
4021 case PRISM2_IOCTL_WDS_ADD
:
4022 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4023 else ret
= prism2_wds_add(local
, wrq
->u
.ap_addr
.sa_data
, 1);
4026 case PRISM2_IOCTL_WDS_DEL
:
4027 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4028 else ret
= prism2_wds_del(local
, wrq
->u
.ap_addr
.sa_data
, 1, 0);
4031 case PRISM2_IOCTL_SET_RID_WORD
:
4032 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4033 else ret
= prism2_ioctl_priv_set_rid_word(dev
,
4034 (int *) wrq
->u
.name
);
4037 #ifndef PRISM2_NO_KERNEL_IEEE80211_MGMT
4038 case PRISM2_IOCTL_MACCMD
:
4039 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4040 else ret
= ap_mac_cmd_ioctl(local
, (int *) wrq
->u
.name
);
4043 case PRISM2_IOCTL_ADDMAC
:
4044 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4045 else ret
= ap_control_add_mac(&local
->ap
->mac_restrictions
,
4046 wrq
->u
.ap_addr
.sa_data
);
4048 case PRISM2_IOCTL_DELMAC
:
4049 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4050 else ret
= ap_control_del_mac(&local
->ap
->mac_restrictions
,
4051 wrq
->u
.ap_addr
.sa_data
);
4053 case PRISM2_IOCTL_KICKMAC
:
4054 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4055 else ret
= ap_control_kick_mac(local
->ap
, local
->dev
,
4056 wrq
->u
.ap_addr
.sa_data
);
4058 #endif /* PRISM2_NO_KERNEL_IEEE80211_MGMT */
4061 /* Private ioctls that are not used with iwpriv;
4062 * in SIOCDEVPRIVATE range */
4064 #ifdef PRISM2_DOWNLOAD_SUPPORT
4065 case PRISM2_IOCTL_DOWNLOAD
:
4066 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4067 else ret
= prism2_ioctl_priv_download(local
, &wrq
->u
.data
);
4069 #endif /* PRISM2_DOWNLOAD_SUPPORT */
4071 case PRISM2_IOCTL_HOSTAPD
:
4072 if (!capable(CAP_NET_ADMIN
)) ret
= -EPERM
;
4073 else ret
= prism2_ioctl_priv_hostapd(local
, &wrq
->u
.data
);