1 /* src/prism2/driver/prism2mgmt.c
3 * Management request handler functions.
5 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
6 * --------------------------------------------------------------------
10 * The contents of this file are subject to the Mozilla Public
11 * License Version 1.1 (the "License"); you may not use this file
12 * except in compliance with the License. You may obtain a copy of
13 * the License at http://www.mozilla.org/MPL/
15 * Software distributed under the License is distributed on an "AS
16 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
17 * implied. See the License for the specific language governing
18 * rights and limitations under the License.
20 * Alternatively, the contents of this file may be used under the
21 * terms of the GNU Public License version 2 (the "GPL"), in which
22 * case the provisions of the GPL are applicable instead of the
23 * above. If you wish to allow the use of your version of this file
24 * only under the terms of the GPL and not to allow others to use
25 * your version of this file under the MPL, indicate your decision
26 * by deleting the provisions above and replace them with the notice
27 * and other provisions required by the GPL. If you do not delete
28 * the provisions above, a recipient may use your version of this
29 * file under either the MPL or the GPL.
31 * --------------------------------------------------------------------
33 * Inquiries regarding the linux-wlan Open Source project can be
36 * AbsoluteValue Systems Inc.
38 * http://www.linux-wlan.com
40 * --------------------------------------------------------------------
42 * Portions of the development of this software were funded by
43 * Intersil Corporation as part of PRISM(R) chipset product development.
45 * --------------------------------------------------------------------
47 * The functions in this file handle management requests sent from
50 * Most of these functions have two separate blocks of code that are
51 * conditional on whether this is a station or an AP. This is used
52 * to separate out the STA and AP responses to these management primitives.
53 * It's a choice (good, bad, indifferent?) to have the code in the same
54 * place so it's clear that the same primitive is implemented in both
55 * cases but has different behavior.
57 * --------------------------------------------------------------------
60 #include <linux/if_arp.h>
61 #include <linux/module.h>
62 #include <linux/kernel.h>
63 #include <linux/wait.h>
64 #include <linux/sched.h>
65 #include <linux/types.h>
66 #include <linux/wireless.h>
67 #include <linux/netdevice.h>
68 #include <linux/delay.h>
70 #include <asm/byteorder.h>
71 #include <linux/random.h>
72 #include <linux/usb.h>
73 #include <linux/bitops.h>
75 #include "p80211types.h"
76 #include "p80211hdr.h"
77 #include "p80211mgmt.h"
78 #include "p80211conv.h"
79 #include "p80211msg.h"
80 #include "p80211netdev.h"
81 #include "p80211metadef.h"
82 #include "p80211metastruct.h"
84 #include "prism2mgmt.h"
86 /* Converts 802.11 format rate specifications to prism2 */
87 #define p80211rate_to_p2bit(n) ((((n)&~BIT(7)) == 2) ? BIT(0) : \
88 (((n)&~BIT(7)) == 4) ? BIT(1) : \
89 (((n)&~BIT(7)) == 11) ? BIT(2) : \
90 (((n)&~BIT(7)) == 22) ? BIT(3) : 0)
92 /*----------------------------------------------------------------
95 * Initiate a scan for BSSs.
97 * This function corresponds to MLME-scan.request and part of
98 * MLME-scan.confirm. As far as I can tell in the standard, there
99 * are no restrictions on when a scan.request may be issued. We have
100 * to handle in whatever state the driver/MAC happen to be.
103 * wlandev wlan device structure
104 * msgp ptr to msg buffer
108 * <0 success, but we're waiting for something to finish.
109 * >0 an error occurred while handling the message.
113 * process thread (usually)
115 ----------------------------------------------------------------*/
116 int prism2mgmt_scan(wlandevice_t
*wlandev
, void *msgp
)
119 hfa384x_t
*hw
= wlandev
->priv
;
120 struct p80211msg_dot11req_scan
*msg
= msgp
;
121 u16 roamingmode
, word
;
125 hfa384x_HostScanRequest_data_t scanreq
;
127 /* gatekeeper check */
128 if (HFA384x_FIRMWARE_VERSION(hw
->ident_sta_fw
.major
,
129 hw
->ident_sta_fw
.minor
,
130 hw
->ident_sta_fw
.variant
) <
131 HFA384x_FIRMWARE_VERSION(1, 3, 2)) {
133 "HostScan not supported with current firmware (<1.3.2).\n");
135 msg
->resultcode
.data
= P80211ENUM_resultcode_not_supported
;
139 memset(&scanreq
, 0, sizeof(scanreq
));
141 /* save current roaming mode */
142 result
= hfa384x_drvr_getconfig16(hw
,
143 HFA384x_RID_CNFROAMINGMODE
,
146 printk(KERN_ERR
"getconfig(ROAMMODE) failed. result=%d\n",
148 msg
->resultcode
.data
=
149 P80211ENUM_resultcode_implementation_failure
;
153 /* drop into mode 3 for the scan */
154 result
= hfa384x_drvr_setconfig16(hw
,
155 HFA384x_RID_CNFROAMINGMODE
,
156 HFA384x_ROAMMODE_HOSTSCAN_HOSTROAM
);
158 printk(KERN_ERR
"setconfig(ROAMINGMODE) failed. result=%d\n",
160 msg
->resultcode
.data
=
161 P80211ENUM_resultcode_implementation_failure
;
165 /* active or passive? */
166 if (HFA384x_FIRMWARE_VERSION(hw
->ident_sta_fw
.major
,
167 hw
->ident_sta_fw
.minor
,
168 hw
->ident_sta_fw
.variant
) >
169 HFA384x_FIRMWARE_VERSION(1, 5, 0)) {
170 if (msg
->scantype
.data
!= P80211ENUM_scantype_active
)
171 word
= cpu_to_le16(msg
->maxchanneltime
.data
);
176 hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFPASSIVESCANCTRL
,
179 printk(KERN_WARNING
"Passive scan not supported with "
180 "current firmware. (<1.5.1)\n");
184 /* set up the txrate to be 2MBPS. Should be fastest basicrate... */
185 word
= HFA384x_RATEBIT_2
;
186 scanreq
.txRate
= cpu_to_le16(word
);
188 /* set up the channel list */
190 for (i
= 0; i
< msg
->channellist
.data
.len
; i
++) {
191 u8 channel
= msg
->channellist
.data
.data
[i
];
194 /* channel 1 is BIT 0 ... channel 14 is BIT 13 */
195 word
|= (1 << (channel
- 1));
197 scanreq
.channelList
= cpu_to_le16(word
);
199 /* set up the ssid, if present. */
200 scanreq
.ssid
.len
= cpu_to_le16(msg
->ssid
.data
.len
);
201 memcpy(scanreq
.ssid
.data
, msg
->ssid
.data
.data
, msg
->ssid
.data
.len
);
203 /* Enable the MAC port if it's not already enabled */
204 result
= hfa384x_drvr_getconfig16(hw
, HFA384x_RID_PORTSTATUS
, &word
);
206 printk(KERN_ERR
"getconfig(PORTSTATUS) failed. "
207 "result=%d\n", result
);
208 msg
->resultcode
.data
=
209 P80211ENUM_resultcode_implementation_failure
;
212 if (word
== HFA384x_PORTSTATUS_DISABLED
) {
215 result
= hfa384x_drvr_setconfig16(hw
,
216 HFA384x_RID_CNFROAMINGMODE
,
217 HFA384x_ROAMMODE_HOSTSCAN_HOSTROAM
);
220 "setconfig(ROAMINGMODE) failed. result=%d\n",
222 msg
->resultcode
.data
=
223 P80211ENUM_resultcode_implementation_failure
;
226 /* Construct a bogus SSID and assign it to OwnSSID and
229 wordbuf
[0] = cpu_to_le16(WLAN_SSID_MAXLEN
);
230 get_random_bytes(&wordbuf
[1], WLAN_SSID_MAXLEN
);
231 result
= hfa384x_drvr_setconfig(hw
, HFA384x_RID_CNFOWNSSID
,
233 HFA384x_RID_CNFOWNSSID_LEN
);
235 printk(KERN_ERR
"Failed to set OwnSSID.\n");
236 msg
->resultcode
.data
=
237 P80211ENUM_resultcode_implementation_failure
;
240 result
= hfa384x_drvr_setconfig(hw
, HFA384x_RID_CNFDESIREDSSID
,
242 HFA384x_RID_CNFDESIREDSSID_LEN
);
244 printk(KERN_ERR
"Failed to set DesiredSSID.\n");
245 msg
->resultcode
.data
=
246 P80211ENUM_resultcode_implementation_failure
;
250 result
= hfa384x_drvr_setconfig16(hw
,
251 HFA384x_RID_CNFPORTTYPE
,
252 HFA384x_PORTTYPE_IBSS
);
254 printk(KERN_ERR
"Failed to set CNFPORTTYPE.\n");
255 msg
->resultcode
.data
=
256 P80211ENUM_resultcode_implementation_failure
;
260 result
= hfa384x_drvr_setconfig16(hw
,
261 HFA384x_RID_CREATEIBSS
,
262 HFA384x_CREATEIBSS_JOINCREATEIBSS
);
264 printk(KERN_ERR
"Failed to set CREATEIBSS.\n");
265 msg
->resultcode
.data
=
266 P80211ENUM_resultcode_implementation_failure
;
269 result
= hfa384x_drvr_enable(hw
, 0);
271 printk(KERN_ERR
"drvr_enable(0) failed. "
272 "result=%d\n", result
);
273 msg
->resultcode
.data
=
274 P80211ENUM_resultcode_implementation_failure
;
280 /* Figure out our timeout first Kus, then HZ */
281 timeout
= msg
->channellist
.data
.len
* msg
->maxchanneltime
.data
;
282 timeout
= (timeout
* HZ
) / 1000;
284 /* Issue the scan request */
287 result
= hfa384x_drvr_setconfig(hw
,
288 HFA384x_RID_HOSTSCAN
, &scanreq
,
289 sizeof(hfa384x_HostScanRequest_data_t
));
291 printk(KERN_ERR
"setconfig(SCANREQUEST) failed. result=%d\n",
293 msg
->resultcode
.data
=
294 P80211ENUM_resultcode_implementation_failure
;
298 /* sleep until info frame arrives */
299 wait_event_interruptible_timeout(hw
->cmdq
, hw
->scanflag
, timeout
);
301 msg
->numbss
.status
= P80211ENUM_msgitem_status_data_ok
;
302 if (hw
->scanflag
== -1)
305 msg
->numbss
.data
= hw
->scanflag
;
309 /* Disable port if we temporarily enabled it. */
311 result
= hfa384x_drvr_disable(hw
, 0);
313 printk(KERN_ERR
"drvr_disable(0) failed. "
314 "result=%d\n", result
);
315 msg
->resultcode
.data
=
316 P80211ENUM_resultcode_implementation_failure
;
321 /* restore original roaming mode */
322 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFROAMINGMODE
,
325 printk(KERN_ERR
"setconfig(ROAMMODE) failed. result=%d\n",
327 msg
->resultcode
.data
=
328 P80211ENUM_resultcode_implementation_failure
;
333 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
336 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
341 /*----------------------------------------------------------------
342 * prism2mgmt_scan_results
344 * Retrieve the BSS description for one of the BSSs identified in
348 * wlandev wlan device structure
349 * msgp ptr to msg buffer
353 * <0 success, but we're waiting for something to finish.
354 * >0 an error occurred while handling the message.
358 * process thread (usually)
360 ----------------------------------------------------------------*/
361 int prism2mgmt_scan_results(wlandevice_t
*wlandev
, void *msgp
)
364 struct p80211msg_dot11req_scan_results
*req
;
365 hfa384x_t
*hw
= wlandev
->priv
;
366 hfa384x_HScanResultSub_t
*item
= NULL
;
370 req
= (struct p80211msg_dot11req_scan_results
*) msgp
;
372 req
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
374 if (!hw
->scanresults
) {
376 "dot11req_scan_results can only be used after a successful dot11req_scan.\n");
378 req
->resultcode
.data
= P80211ENUM_resultcode_invalid_parameters
;
382 count
= (hw
->scanresults
->framelen
- 3) / 32;
383 if (count
> HFA384x_SCANRESULT_MAX
)
384 count
= HFA384x_SCANRESULT_MAX
;
386 if (req
->bssindex
.data
>= count
) {
387 pr_debug("requested index (%d) out of range (%d)\n",
388 req
->bssindex
.data
, count
);
390 req
->resultcode
.data
= P80211ENUM_resultcode_invalid_parameters
;
394 item
= &(hw
->scanresults
->info
.hscanresult
.result
[req
->bssindex
.data
]);
395 /* signal and noise */
396 req
->signal
.status
= P80211ENUM_msgitem_status_data_ok
;
397 req
->noise
.status
= P80211ENUM_msgitem_status_data_ok
;
398 req
->signal
.data
= le16_to_cpu(item
->sl
);
399 req
->noise
.data
= le16_to_cpu(item
->anl
);
402 req
->bssid
.status
= P80211ENUM_msgitem_status_data_ok
;
403 req
->bssid
.data
.len
= WLAN_BSSID_LEN
;
404 memcpy(req
->bssid
.data
.data
, item
->bssid
, WLAN_BSSID_LEN
);
407 req
->ssid
.status
= P80211ENUM_msgitem_status_data_ok
;
408 req
->ssid
.data
.len
= le16_to_cpu(item
->ssid
.len
);
409 req
->ssid
.data
.len
= min_t(u16
, req
->ssid
.data
.len
, WLAN_SSID_MAXLEN
);
410 memcpy(req
->ssid
.data
.data
, item
->ssid
.data
, req
->ssid
.data
.len
);
412 /* supported rates */
413 for (count
= 0; count
< 10; count
++)
414 if (item
->supprates
[count
] == 0)
417 #define REQBASICRATE(N) \
419 if ((count >= N) && DOT11_RATE5_ISBASIC_GET( \
420 item->supprates[(N)-1])) { \
421 req->basicrate ## N .data = item->supprates[(N)-1]; \
422 req->basicrate ## N .status = \
423 P80211ENUM_msgitem_status_data_ok; \
436 #define REQSUPPRATE(N) \
439 req->supprate ## N .data = item->supprates[(N)-1]; \
440 req->supprate ## N .status = \
441 P80211ENUM_msgitem_status_data_ok; \
455 req
->beaconperiod
.status
= P80211ENUM_msgitem_status_data_ok
;
456 req
->beaconperiod
.data
= le16_to_cpu(item
->bcnint
);
459 req
->timestamp
.status
= P80211ENUM_msgitem_status_data_ok
;
460 req
->timestamp
.data
= jiffies
;
461 req
->localtime
.status
= P80211ENUM_msgitem_status_data_ok
;
462 req
->localtime
.data
= jiffies
;
465 req
->ibssatimwindow
.status
= P80211ENUM_msgitem_status_data_ok
;
466 req
->ibssatimwindow
.data
= le16_to_cpu(item
->atim
);
469 req
->dschannel
.status
= P80211ENUM_msgitem_status_data_ok
;
470 req
->dschannel
.data
= le16_to_cpu(item
->chid
);
473 count
= le16_to_cpu(item
->capinfo
);
474 req
->capinfo
.status
= P80211ENUM_msgitem_status_data_ok
;
475 req
->capinfo
.data
= count
;
478 req
->privacy
.status
= P80211ENUM_msgitem_status_data_ok
;
479 req
->privacy
.data
= WLAN_GET_MGMT_CAP_INFO_PRIVACY(count
);
482 req
->cfpollable
.status
= P80211ENUM_msgitem_status_data_ok
;
483 req
->cfpollable
.data
= WLAN_GET_MGMT_CAP_INFO_CFPOLLABLE(count
);
486 req
->cfpollreq
.status
= P80211ENUM_msgitem_status_data_ok
;
487 req
->cfpollreq
.data
= WLAN_GET_MGMT_CAP_INFO_CFPOLLREQ(count
);
490 req
->bsstype
.status
= P80211ENUM_msgitem_status_data_ok
;
491 req
->bsstype
.data
= (WLAN_GET_MGMT_CAP_INFO_ESS(count
)) ?
492 P80211ENUM_bsstype_infrastructure
: P80211ENUM_bsstype_independent
;
495 req
->resultcode
.data
= P80211ENUM_resultcode_success
;
501 /*----------------------------------------------------------------
504 * Start a BSS. Any station can do this for IBSS, only AP for ESS.
507 * wlandev wlan device structure
508 * msgp ptr to msg buffer
512 * <0 success, but we're waiting for something to finish.
513 * >0 an error occurred while handling the message.
517 * process thread (usually)
519 ----------------------------------------------------------------*/
520 int prism2mgmt_start(wlandevice_t
*wlandev
, void *msgp
)
523 hfa384x_t
*hw
= wlandev
->priv
;
524 struct p80211msg_dot11req_start
*msg
= msgp
;
528 struct hfa384x_bytestr
*p2bytestr
= (struct hfa384x_bytestr
*) bytebuf
;
531 wlandev
->macmode
= WLAN_MACMODE_NONE
;
534 memcpy(&wlandev
->ssid
, &msg
->ssid
.data
, sizeof(msg
->ssid
.data
));
537 /* see if current f/w is less than 8c3 */
538 if (HFA384x_FIRMWARE_VERSION(hw
->ident_sta_fw
.major
,
539 hw
->ident_sta_fw
.minor
,
540 hw
->ident_sta_fw
.variant
) <
541 HFA384x_FIRMWARE_VERSION(0, 8, 3)) {
542 /* Ad-Hoc not quite supported on Prism2 */
543 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
544 msg
->resultcode
.data
= P80211ENUM_resultcode_not_supported
;
548 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
551 /* Set the REQUIRED config items */
553 pstr
= (p80211pstrd_t
*) &(msg
->ssid
.data
);
554 prism2mgmt_pstr2bytestr(p2bytestr
, pstr
);
555 result
= hfa384x_drvr_setconfig(hw
, HFA384x_RID_CNFOWNSSID
,
556 bytebuf
, HFA384x_RID_CNFOWNSSID_LEN
);
558 printk(KERN_ERR
"Failed to set CnfOwnSSID\n");
561 result
= hfa384x_drvr_setconfig(hw
, HFA384x_RID_CNFDESIREDSSID
,
563 HFA384x_RID_CNFDESIREDSSID_LEN
);
565 printk(KERN_ERR
"Failed to set CnfDesiredSSID\n");
569 /* bsstype - we use the default in the ap firmware */
571 hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFPORTTYPE
, 0);
574 word
= msg
->beaconperiod
.data
;
575 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFAPBCNint
, word
);
577 printk(KERN_ERR
"Failed to set beacon period=%d.\n", word
);
582 word
= msg
->dschannel
.data
;
583 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFOWNCHANNEL
, word
);
585 printk(KERN_ERR
"Failed to set channel=%d.\n", word
);
589 word
= p80211rate_to_p2bit(msg
->basicrate1
.data
);
590 if (msg
->basicrate2
.status
== P80211ENUM_msgitem_status_data_ok
)
591 word
|= p80211rate_to_p2bit(msg
->basicrate2
.data
);
593 if (msg
->basicrate3
.status
== P80211ENUM_msgitem_status_data_ok
)
594 word
|= p80211rate_to_p2bit(msg
->basicrate3
.data
);
596 if (msg
->basicrate4
.status
== P80211ENUM_msgitem_status_data_ok
)
597 word
|= p80211rate_to_p2bit(msg
->basicrate4
.data
);
599 if (msg
->basicrate5
.status
== P80211ENUM_msgitem_status_data_ok
)
600 word
|= p80211rate_to_p2bit(msg
->basicrate5
.data
);
602 if (msg
->basicrate6
.status
== P80211ENUM_msgitem_status_data_ok
)
603 word
|= p80211rate_to_p2bit(msg
->basicrate6
.data
);
605 if (msg
->basicrate7
.status
== P80211ENUM_msgitem_status_data_ok
)
606 word
|= p80211rate_to_p2bit(msg
->basicrate7
.data
);
608 if (msg
->basicrate8
.status
== P80211ENUM_msgitem_status_data_ok
)
609 word
|= p80211rate_to_p2bit(msg
->basicrate8
.data
);
611 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFBASICRATES
, word
);
613 printk(KERN_ERR
"Failed to set basicrates=%d.\n", word
);
617 /* Operational rates (supprates and txratecontrol) */
618 word
= p80211rate_to_p2bit(msg
->operationalrate1
.data
);
619 if (msg
->operationalrate2
.status
== P80211ENUM_msgitem_status_data_ok
)
620 word
|= p80211rate_to_p2bit(msg
->operationalrate2
.data
);
622 if (msg
->operationalrate3
.status
== P80211ENUM_msgitem_status_data_ok
)
623 word
|= p80211rate_to_p2bit(msg
->operationalrate3
.data
);
625 if (msg
->operationalrate4
.status
== P80211ENUM_msgitem_status_data_ok
)
626 word
|= p80211rate_to_p2bit(msg
->operationalrate4
.data
);
628 if (msg
->operationalrate5
.status
== P80211ENUM_msgitem_status_data_ok
)
629 word
|= p80211rate_to_p2bit(msg
->operationalrate5
.data
);
631 if (msg
->operationalrate6
.status
== P80211ENUM_msgitem_status_data_ok
)
632 word
|= p80211rate_to_p2bit(msg
->operationalrate6
.data
);
634 if (msg
->operationalrate7
.status
== P80211ENUM_msgitem_status_data_ok
)
635 word
|= p80211rate_to_p2bit(msg
->operationalrate7
.data
);
637 if (msg
->operationalrate8
.status
== P80211ENUM_msgitem_status_data_ok
)
638 word
|= p80211rate_to_p2bit(msg
->operationalrate8
.data
);
640 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFSUPPRATES
, word
);
642 printk(KERN_ERR
"Failed to set supprates=%d.\n", word
);
646 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_TXRATECNTL
, word
);
648 printk(KERN_ERR
"Failed to set txrates=%d.\n", word
);
652 /* Set the macmode so the frame setup code knows what to do */
653 if (msg
->bsstype
.data
== P80211ENUM_bsstype_independent
) {
654 wlandev
->macmode
= WLAN_MACMODE_IBSS_STA
;
655 /* lets extend the data length a bit */
656 hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFMAXDATALEN
, 2304);
659 /* Enable the Port */
660 result
= hfa384x_drvr_enable(hw
, 0);
662 printk(KERN_ERR
"Enable macport failed, result=%d.\n", result
);
666 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
670 pr_debug("Failed to set a config option, result=%d\n", result
);
671 msg
->resultcode
.data
= P80211ENUM_resultcode_invalid_parameters
;
679 /*----------------------------------------------------------------
682 * Collect the PDA data and put it in the message.
685 * wlandev wlan device structure
686 * msgp ptr to msg buffer
690 * <0 success, but we're waiting for something to finish.
691 * >0 an error occurred while handling the message.
695 * process thread (usually)
696 ----------------------------------------------------------------*/
697 int prism2mgmt_readpda(wlandevice_t
*wlandev
, void *msgp
)
699 hfa384x_t
*hw
= wlandev
->priv
;
700 struct p80211msg_p2req_readpda
*msg
= msgp
;
703 /* We only support collecting the PDA when in the FWLOAD
706 if (wlandev
->msdstate
!= WLAN_MSD_FWLOAD
) {
708 "PDA may only be read " "in the fwload state.\n");
709 msg
->resultcode
.data
=
710 P80211ENUM_resultcode_implementation_failure
;
711 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
713 /* Call drvr_readpda(), it handles the auxport enable
714 * and validating the returned PDA.
716 result
= hfa384x_drvr_readpda(hw
,
718 HFA384x_PDA_LEN_MAX
);
721 "hfa384x_drvr_readpda() failed, "
722 "result=%d\n", result
);
724 msg
->resultcode
.data
=
725 P80211ENUM_resultcode_implementation_failure
;
726 msg
->resultcode
.status
=
727 P80211ENUM_msgitem_status_data_ok
;
730 msg
->pda
.status
= P80211ENUM_msgitem_status_data_ok
;
731 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
732 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
738 /*----------------------------------------------------------------
739 * prism2mgmt_ramdl_state
741 * Establishes the beginning/end of a card RAM download session.
743 * It is expected that the ramdl_write() function will be called
744 * one or more times between the 'enable' and 'disable' calls to
747 * Note: This function should not be called when a mac comm port
751 * wlandev wlan device structure
752 * msgp ptr to msg buffer
756 * <0 success, but we're waiting for something to finish.
757 * >0 an error occurred while handling the message.
761 * process thread (usually)
762 ----------------------------------------------------------------*/
763 int prism2mgmt_ramdl_state(wlandevice_t
*wlandev
, void *msgp
)
765 hfa384x_t
*hw
= wlandev
->priv
;
766 struct p80211msg_p2req_ramdl_state
*msg
= msgp
;
768 if (wlandev
->msdstate
!= WLAN_MSD_FWLOAD
) {
770 "ramdl_state(): may only be called "
771 "in the fwload state.\n");
772 msg
->resultcode
.data
=
773 P80211ENUM_resultcode_implementation_failure
;
774 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
779 ** Note: Interrupts are locked out if this is an AP and are NOT
780 ** locked out if this is a station.
783 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
784 if (msg
->enable
.data
== P80211ENUM_truth_true
) {
785 if (hfa384x_drvr_ramdl_enable(hw
, msg
->exeaddr
.data
)) {
786 msg
->resultcode
.data
=
787 P80211ENUM_resultcode_implementation_failure
;
789 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
792 hfa384x_drvr_ramdl_disable(hw
);
793 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
799 /*----------------------------------------------------------------
800 * prism2mgmt_ramdl_write
802 * Writes a buffer to the card RAM using the download state. This
803 * is for writing code to card RAM. To just read or write raw data
804 * use the aux functions.
807 * wlandev wlan device structure
808 * msgp ptr to msg buffer
812 * <0 success, but we're waiting for something to finish.
813 * >0 an error occurred while handling the message.
817 * process thread (usually)
818 ----------------------------------------------------------------*/
819 int prism2mgmt_ramdl_write(wlandevice_t
*wlandev
, void *msgp
)
821 hfa384x_t
*hw
= wlandev
->priv
;
822 struct p80211msg_p2req_ramdl_write
*msg
= msgp
;
827 if (wlandev
->msdstate
!= WLAN_MSD_FWLOAD
) {
829 "ramdl_write(): may only be called "
830 "in the fwload state.\n");
831 msg
->resultcode
.data
=
832 P80211ENUM_resultcode_implementation_failure
;
833 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
837 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
838 /* first validate the length */
839 if (msg
->len
.data
> sizeof(msg
->data
.data
)) {
840 msg
->resultcode
.status
=
841 P80211ENUM_resultcode_invalid_parameters
;
844 /* call the hfa384x function to do the write */
845 addr
= msg
->addr
.data
;
847 buf
= msg
->data
.data
;
848 if (hfa384x_drvr_ramdl_write(hw
, addr
, buf
, len
))
849 msg
->resultcode
.data
= P80211ENUM_resultcode_refused
;
851 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
856 /*----------------------------------------------------------------
857 * prism2mgmt_flashdl_state
859 * Establishes the beginning/end of a card Flash download session.
861 * It is expected that the flashdl_write() function will be called
862 * one or more times between the 'enable' and 'disable' calls to
865 * Note: This function should not be called when a mac comm port
869 * wlandev wlan device structure
870 * msgp ptr to msg buffer
874 * <0 success, but we're waiting for something to finish.
875 * >0 an error occurred while handling the message.
879 * process thread (usually)
880 ----------------------------------------------------------------*/
881 int prism2mgmt_flashdl_state(wlandevice_t
*wlandev
, void *msgp
)
884 hfa384x_t
*hw
= wlandev
->priv
;
885 struct p80211msg_p2req_flashdl_state
*msg
= msgp
;
887 if (wlandev
->msdstate
!= WLAN_MSD_FWLOAD
) {
889 "flashdl_state(): may only be called "
890 "in the fwload state.\n");
891 msg
->resultcode
.data
=
892 P80211ENUM_resultcode_implementation_failure
;
893 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
898 ** Note: Interrupts are locked out if this is an AP and are NOT
899 ** locked out if this is a station.
902 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
903 if (msg
->enable
.data
== P80211ENUM_truth_true
) {
904 if (hfa384x_drvr_flashdl_enable(hw
)) {
905 msg
->resultcode
.data
=
906 P80211ENUM_resultcode_implementation_failure
;
908 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
911 hfa384x_drvr_flashdl_disable(hw
);
912 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
913 /* NOTE: At this point, the MAC is in the post-reset
914 * state and the driver is in the fwload state.
915 * We need to get the MAC back into the fwload
916 * state. To do this, we set the nsdstate to HWPRESENT
917 * and then call the ifstate function to redo everything
918 * that got us into the fwload state.
920 wlandev
->msdstate
= WLAN_MSD_HWPRESENT
;
921 result
= prism2sta_ifstate(wlandev
, P80211ENUM_ifstate_fwload
);
922 if (result
!= P80211ENUM_resultcode_success
) {
923 printk(KERN_ERR
"prism2sta_ifstate(fwload) failed,"
924 "P80211ENUM_resultcode=%d\n", result
);
925 msg
->resultcode
.data
=
926 P80211ENUM_resultcode_implementation_failure
;
934 /*----------------------------------------------------------------
935 * prism2mgmt_flashdl_write
940 * wlandev wlan device structure
941 * msgp ptr to msg buffer
945 * <0 success, but we're waiting for something to finish.
946 * >0 an error occurred while handling the message.
950 * process thread (usually)
951 ----------------------------------------------------------------*/
952 int prism2mgmt_flashdl_write(wlandevice_t
*wlandev
, void *msgp
)
954 hfa384x_t
*hw
= wlandev
->priv
;
955 struct p80211msg_p2req_flashdl_write
*msg
= msgp
;
960 if (wlandev
->msdstate
!= WLAN_MSD_FWLOAD
) {
962 "flashdl_write(): may only be called "
963 "in the fwload state.\n");
964 msg
->resultcode
.data
=
965 P80211ENUM_resultcode_implementation_failure
;
966 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
971 ** Note: Interrupts are locked out if this is an AP and are NOT
972 ** locked out if this is a station.
975 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
976 /* first validate the length */
977 if (msg
->len
.data
> sizeof(msg
->data
.data
)) {
978 msg
->resultcode
.status
=
979 P80211ENUM_resultcode_invalid_parameters
;
982 /* call the hfa384x function to do the write */
983 addr
= msg
->addr
.data
;
985 buf
= msg
->data
.data
;
986 if (hfa384x_drvr_flashdl_write(hw
, addr
, buf
, len
))
987 msg
->resultcode
.data
= P80211ENUM_resultcode_refused
;
989 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
994 /*----------------------------------------------------------------
995 * prism2mgmt_autojoin
997 * Associate with an ESS.
1000 * wlandev wlan device structure
1001 * msgp ptr to msg buffer
1004 * 0 success and done
1005 * <0 success, but we're waiting for something to finish.
1006 * >0 an error occurred while handling the message.
1010 * process thread (usually)
1012 ----------------------------------------------------------------*/
1013 int prism2mgmt_autojoin(wlandevice_t
*wlandev
, void *msgp
)
1015 hfa384x_t
*hw
= wlandev
->priv
;
1019 struct p80211msg_lnxreq_autojoin
*msg
= msgp
;
1020 p80211pstrd_t
*pstr
;
1022 struct hfa384x_bytestr
*p2bytestr
= (struct hfa384x_bytestr
*) bytebuf
;
1024 wlandev
->macmode
= WLAN_MACMODE_NONE
;
1027 memcpy(&wlandev
->ssid
, &msg
->ssid
.data
, sizeof(msg
->ssid
.data
));
1029 /* Disable the Port */
1030 hfa384x_drvr_disable(hw
, 0);
1033 /* Set the TxRates */
1034 hfa384x_drvr_setconfig16(hw
, HFA384x_RID_TXRATECNTL
, 0x000f);
1036 /* Set the auth type */
1037 if (msg
->authtype
.data
== P80211ENUM_authalg_sharedkey
)
1038 reg
= HFA384x_CNFAUTHENTICATION_SHAREDKEY
;
1040 reg
= HFA384x_CNFAUTHENTICATION_OPENSYSTEM
;
1042 hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFAUTHENTICATION
, reg
);
1045 memset(bytebuf
, 0, 256);
1046 pstr
= (p80211pstrd_t
*) &(msg
->ssid
.data
);
1047 prism2mgmt_pstr2bytestr(p2bytestr
, pstr
);
1048 result
= hfa384x_drvr_setconfig(hw
, HFA384x_RID_CNFDESIREDSSID
,
1050 HFA384x_RID_CNFDESIREDSSID_LEN
);
1051 port_type
= HFA384x_PORTTYPE_BSS
;
1052 /* Set the PortType */
1053 hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFPORTTYPE
, port_type
);
1055 /* Enable the Port */
1056 hfa384x_drvr_enable(hw
, 0);
1058 /* Set the resultcode */
1059 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
1060 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
1065 /*----------------------------------------------------------------
1066 * prism2mgmt_wlansniff
1068 * Start or stop sniffing.
1071 * wlandev wlan device structure
1072 * msgp ptr to msg buffer
1075 * 0 success and done
1076 * <0 success, but we're waiting for something to finish.
1077 * >0 an error occurred while handling the message.
1081 * process thread (usually)
1083 ----------------------------------------------------------------*/
1084 int prism2mgmt_wlansniff(wlandevice_t
*wlandev
, void *msgp
)
1087 struct p80211msg_lnxreq_wlansniff
*msg
= msgp
;
1089 hfa384x_t
*hw
= wlandev
->priv
;
1092 msg
->resultcode
.status
= P80211ENUM_msgitem_status_data_ok
;
1093 switch (msg
->enable
.data
) {
1094 case P80211ENUM_truth_false
:
1095 /* Confirm that we're in monitor mode */
1096 if (wlandev
->netdev
->type
== ARPHRD_ETHER
) {
1097 msg
->resultcode
.data
=
1098 P80211ENUM_resultcode_invalid_parameters
;
1102 /* Disable monitor mode */
1103 result
= hfa384x_cmd_monitor(hw
, HFA384x_MONITOR_DISABLE
);
1105 pr_debug("failed to disable monitor mode, result=%d\n",
1109 /* Disable port 0 */
1110 result
= hfa384x_drvr_disable(hw
, 0);
1113 ("failed to disable port 0 after sniffing, result=%d\n",
1117 /* Clear the driver state */
1118 wlandev
->netdev
->type
= ARPHRD_ETHER
;
1120 /* Restore the wepflags */
1121 result
= hfa384x_drvr_setconfig16(hw
,
1122 HFA384x_RID_CNFWEPFLAGS
,
1123 hw
->presniff_wepflags
);
1126 ("failed to restore wepflags=0x%04x, result=%d\n",
1127 hw
->presniff_wepflags
, result
);
1131 /* Set the port to its prior type and enable (if necessary) */
1132 if (hw
->presniff_port_type
!= 0) {
1133 word
= hw
->presniff_port_type
;
1134 result
= hfa384x_drvr_setconfig16(hw
,
1135 HFA384x_RID_CNFPORTTYPE
,
1139 ("failed to restore porttype, result=%d\n",
1144 /* Enable the port */
1145 result
= hfa384x_drvr_enable(hw
, 0);
1147 pr_debug("failed to enable port to presniff setting, result=%d\n",
1152 result
= hfa384x_drvr_disable(hw
, 0);
1156 printk(KERN_INFO
"monitor mode disabled\n");
1157 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
1161 case P80211ENUM_truth_true
:
1162 /* Disable the port (if enabled), only check Port 0 */
1163 if (hw
->port_enabled
[0]) {
1164 if (wlandev
->netdev
->type
== ARPHRD_ETHER
) {
1165 /* Save macport 0 state */
1166 result
= hfa384x_drvr_getconfig16(hw
,
1167 HFA384x_RID_CNFPORTTYPE
,
1168 &(hw
->presniff_port_type
));
1171 ("failed to read porttype, result=%d\n",
1175 /* Save the wepflags state */
1176 result
= hfa384x_drvr_getconfig16(hw
,
1177 HFA384x_RID_CNFWEPFLAGS
,
1178 &(hw
->presniff_wepflags
));
1181 ("failed to read wepflags, result=%d\n",
1185 hfa384x_drvr_stop(hw
);
1186 result
= hfa384x_drvr_start(hw
);
1188 pr_debug("failed to restart the card for sniffing, result=%d\n",
1193 /* Disable the port */
1194 result
= hfa384x_drvr_disable(hw
, 0);
1196 pr_debug("failed to enable port for sniffing, result=%d\n",
1202 hw
->presniff_port_type
= 0;
1205 /* Set the channel we wish to sniff */
1206 word
= msg
->channel
.data
;
1207 result
= hfa384x_drvr_setconfig16(hw
,
1208 HFA384x_RID_CNFOWNCHANNEL
,
1210 hw
->sniff_channel
= word
;
1213 pr_debug("failed to set channel %d, result=%d\n",
1218 /* Now if we're already sniffing, we can skip the rest */
1219 if (wlandev
->netdev
->type
!= ARPHRD_ETHER
) {
1220 /* Set the port type to pIbss */
1221 word
= HFA384x_PORTTYPE_PSUEDOIBSS
;
1222 result
= hfa384x_drvr_setconfig16(hw
,
1223 HFA384x_RID_CNFPORTTYPE
,
1227 ("failed to set porttype %d, result=%d\n",
1231 if ((msg
->keepwepflags
.status
==
1232 P80211ENUM_msgitem_status_data_ok
)
1233 && (msg
->keepwepflags
.data
!=
1234 P80211ENUM_truth_true
)) {
1235 /* Set the wepflags for no decryption */
1236 word
= HFA384x_WEPFLAGS_DISABLE_TXCRYPT
|
1237 HFA384x_WEPFLAGS_DISABLE_RXCRYPT
;
1239 hfa384x_drvr_setconfig16(hw
,
1240 HFA384x_RID_CNFWEPFLAGS
,
1246 ("failed to set wepflags=0x%04x, result=%d\n",
1252 /* Do we want to strip the FCS in monitor mode? */
1253 if ((msg
->stripfcs
.status
== P80211ENUM_msgitem_status_data_ok
)
1254 && (msg
->stripfcs
.data
== P80211ENUM_truth_true
)) {
1260 /* Do we want to truncate the packets? */
1261 if (msg
->packet_trunc
.status
==
1262 P80211ENUM_msgitem_status_data_ok
) {
1263 hw
->sniff_truncate
= msg
->packet_trunc
.data
;
1265 hw
->sniff_truncate
= 0;
1268 /* Enable the port */
1269 result
= hfa384x_drvr_enable(hw
, 0);
1272 ("failed to enable port for sniffing, result=%d\n",
1276 /* Enable monitor mode */
1277 result
= hfa384x_cmd_monitor(hw
, HFA384x_MONITOR_ENABLE
);
1279 pr_debug("failed to enable monitor mode, result=%d\n",
1284 if (wlandev
->netdev
->type
== ARPHRD_ETHER
)
1285 printk(KERN_INFO
"monitor mode enabled\n");
1287 /* Set the driver state */
1288 /* Do we want the prism2 header? */
1289 if ((msg
->prismheader
.status
==
1290 P80211ENUM_msgitem_status_data_ok
)
1291 && (msg
->prismheader
.data
== P80211ENUM_truth_true
)) {
1293 wlandev
->netdev
->type
= ARPHRD_IEEE80211_PRISM
;
1295 if ((msg
->wlanheader
.status
==
1296 P80211ENUM_msgitem_status_data_ok
)
1297 && (msg
->wlanheader
.data
== P80211ENUM_truth_true
)) {
1299 wlandev
->netdev
->type
= ARPHRD_IEEE80211_PRISM
;
1301 wlandev
->netdev
->type
= ARPHRD_IEEE80211
;
1304 msg
->resultcode
.data
= P80211ENUM_resultcode_success
;
1309 msg
->resultcode
.data
= P80211ENUM_resultcode_invalid_parameters
;
1316 msg
->resultcode
.data
= P80211ENUM_resultcode_refused
;