Staging: wlan-ng: p80211req.c: Coding style cleanups
[linux-2.6] / drivers / staging / wlan-ng / p80211req.c
1 /* src/p80211/p80211req.c
2 *
3 * Request/Indication/MacMgmt interface handling functions
4 *
5 * Copyright (C) 1999 AbsoluteValue Systems, Inc.  All Rights Reserved.
6 * --------------------------------------------------------------------
7 *
8 * linux-wlan
9 *
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/
14 *
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.
19 *
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.
30 *
31 * --------------------------------------------------------------------
32 *
33 * Inquiries regarding the linux-wlan Open Source project can be
34 * made directly to:
35 *
36 * AbsoluteValue Systems Inc.
37 * info@linux-wlan.com
38 * http://www.linux-wlan.com
39 *
40 * --------------------------------------------------------------------
41 *
42 * Portions of the development of this software were funded by
43 * Intersil Corporation as part of PRISM(R) chipset product development.
44 *
45 * --------------------------------------------------------------------
46 *
47 * This file contains the functions, types, and macros to support the
48 * MLME request interface that's implemented via the device ioctls.
49 *
50 * --------------------------------------------------------------------
51 */
52
53 #include <linux/module.h>
54 #include <linux/kernel.h>
55 #include <linux/sched.h>
56 #include <linux/types.h>
57 #include <linux/skbuff.h>
58 #include <linux/slab.h>
59 #include <linux/wireless.h>
60 #include <linux/netdevice.h>
61 #include <linux/etherdevice.h>
62 #include <net/sock.h>
63 #include <linux/netlink.h>
64
65 #include "wlan_compat.h"
66
67 #include "p80211types.h"
68 #include "p80211hdr.h"
69 #include "p80211mgmt.h"
70 #include "p80211conv.h"
71 #include "p80211msg.h"
72 #include "p80211netdev.h"
73 #include "p80211ioctl.h"
74 #include "p80211metadef.h"
75 #include "p80211metastruct.h"
76 #include "p80211req.h"
77
78 static void p80211req_handlemsg(wlandevice_t *wlandev, p80211msg_t *msg);
79 static int p80211req_mibset_mibget(wlandevice_t *wlandev,
80                                    p80211msg_dot11req_mibget_t *mib_msg,
81                                    int isget);
82
83 /*----------------------------------------------------------------
84 * p80211req_dorequest
85 *
86 * Handles an MLME reqest/confirm message.
87 *
88 * Arguments:
89 *       wlandev         WLAN device struct
90 *       msgbuf          Buffer containing a request message
91 *
92 * Returns:
93 *       0 on success, an errno otherwise
94 *
95 * Call context:
96 *       Potentially blocks the caller, so it's a good idea to
97 *       not call this function from an interrupt context.
98 ----------------------------------------------------------------*/
99 int p80211req_dorequest(wlandevice_t *wlandev, u8 *msgbuf)
100 {
101         int result = 0;
102         p80211msg_t *msg = (p80211msg_t *) msgbuf;
103
104         /* Check to make sure the MSD is running */
105         if (!((wlandev->msdstate == WLAN_MSD_HWPRESENT &&
106                msg->msgcode == DIDmsg_lnxreq_ifstate) ||
107               wlandev->msdstate == WLAN_MSD_RUNNING ||
108               wlandev->msdstate == WLAN_MSD_FWLOAD)) {
109                 return -ENODEV;
110         }
111
112         /* Check Permissions */
113         if (!capable(CAP_NET_ADMIN) && (msg->msgcode != DIDmsg_dot11req_mibget)) {
114                 printk(KERN_ERR
115                        "%s: only dot11req_mibget allowed for non-root.\n",
116                        wlandev->name);
117                 return -EPERM;
118         }
119
120         /* Check for busy status */
121         if (test_and_set_bit(1, &(wlandev->request_pending)))
122                 return -EBUSY;
123
124         /* Allow p80211 to look at msg and handle if desired. */
125         /* So far, all p80211 msgs are immediate, no waitq/timer necessary */
126         /* This may change. */
127         p80211req_handlemsg(wlandev, msg);
128
129         /* Pass it down to wlandev via wlandev->mlmerequest */
130         if (wlandev->mlmerequest != NULL)
131                 wlandev->mlmerequest(wlandev, msg);
132
133         clear_bit(1, &(wlandev->request_pending));
134         return result; /* if result==0, msg->status still may contain an err */
135 }
136
137 /*----------------------------------------------------------------
138 * p80211req_handlemsg
139 *
140 * p80211 message handler.  Primarily looks for messages that
141 * belong to p80211 and then dispatches the appropriate response.
142 * TODO: we don't do anything yet.  Once the linuxMIB is better
143 *       defined we'll need a get/set handler.
144 *
145 * Arguments:
146 *       wlandev         WLAN device struct
147 *       msg             message structure
148 *
149 * Returns:
150 *       nothing (any results are set in the status field of the msg)
151 *
152 * Call context:
153 *       Process thread
154 ----------------------------------------------------------------*/
155 static void p80211req_handlemsg(wlandevice_t *wlandev, p80211msg_t *msg)
156 {
157         switch (msg->msgcode) {
158
159         case DIDmsg_lnxreq_hostwep:{
160                         p80211msg_lnxreq_hostwep_t *req =
161                             (p80211msg_lnxreq_hostwep_t *) msg;
162                         wlandev->hostwep &=
163                             ~(HOSTWEP_DECRYPT | HOSTWEP_ENCRYPT);
164                         if (req->decrypt.data == P80211ENUM_truth_true)
165                                 wlandev->hostwep |= HOSTWEP_DECRYPT;
166                         if (req->encrypt.data == P80211ENUM_truth_true)
167                                 wlandev->hostwep |= HOSTWEP_ENCRYPT;
168
169                         break;
170                 }
171         case DIDmsg_dot11req_mibget:
172         case DIDmsg_dot11req_mibset:{
173                         int isget = (msg->msgcode == DIDmsg_dot11req_mibget);
174                         p80211msg_dot11req_mibget_t *mib_msg =
175                             (p80211msg_dot11req_mibget_t *) msg;
176                         p80211req_mibset_mibget(wlandev, mib_msg, isget);
177                 }
178         default:
179                 ;
180         }                       /* switch msg->msgcode */
181
182         return;
183 }
184
185 static int p80211req_mibset_mibget(wlandevice_t *wlandev,
186                                    p80211msg_dot11req_mibget_t *mib_msg,
187                                    int isget)
188 {
189         p80211itemd_t *mibitem = (p80211itemd_t *) mib_msg->mibattribute.data;
190         p80211pstrd_t *pstr = (p80211pstrd_t *) mibitem->data;
191         u8 *key = mibitem->data + sizeof(p80211pstrd_t);
192
193         switch (mibitem->did) {
194         case DIDmib_dot11smt_dot11WEPDefaultKeysTable_dot11WEPDefaultKey0:{
195                         if (!isget)
196                                 wep_change_key(wlandev, 0, key, pstr->len);
197                         break;
198                 }
199         case DIDmib_dot11smt_dot11WEPDefaultKeysTable_dot11WEPDefaultKey1:{
200                         if (!isget)
201                                 wep_change_key(wlandev, 1, key, pstr->len);
202                         break;
203                 }
204         case DIDmib_dot11smt_dot11WEPDefaultKeysTable_dot11WEPDefaultKey2:{
205                         if (!isget)
206                                 wep_change_key(wlandev, 2, key, pstr->len);
207                         break;
208                 }
209         case DIDmib_dot11smt_dot11WEPDefaultKeysTable_dot11WEPDefaultKey3:{
210                         if (!isget)
211                                 wep_change_key(wlandev, 3, key, pstr->len);
212                         break;
213                 }
214         case DIDmib_dot11smt_dot11PrivacyTable_dot11WEPDefaultKeyID:{
215                         u32 *data = (u32 *) mibitem->data;
216
217                         if (isget) {
218                                 *data =
219                                     wlandev->hostwep & HOSTWEP_DEFAULTKEY_MASK;
220                         } else {
221                                 wlandev->hostwep &= ~(HOSTWEP_DEFAULTKEY_MASK);
222
223                                 wlandev->hostwep |=
224                                     (*data & HOSTWEP_DEFAULTKEY_MASK);
225                         }
226                         break;
227                 }
228         case DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked:{
229                         u32 *data = (u32 *) mibitem->data;
230
231                         if (isget) {
232                                 if (wlandev->hostwep & HOSTWEP_PRIVACYINVOKED)
233                                         *data = P80211ENUM_truth_true;
234                                 else
235                                         *data = P80211ENUM_truth_false;
236                         } else {
237                                 wlandev->hostwep &= ~(HOSTWEP_PRIVACYINVOKED);
238                                 if (*data == P80211ENUM_truth_true)
239                                         wlandev->hostwep |=
240                                             HOSTWEP_PRIVACYINVOKED;
241                         }
242                         break;
243                 }
244         case DIDmib_dot11smt_dot11PrivacyTable_dot11ExcludeUnencrypted:{
245                         u32 *data = (u32 *) mibitem->data;
246
247                         if (isget) {
248                                 if (wlandev->
249                                     hostwep & HOSTWEP_EXCLUDEUNENCRYPTED)
250                                         *data = P80211ENUM_truth_true;
251                                 else
252                                         *data = P80211ENUM_truth_false;
253                         } else {
254                                 wlandev->hostwep &=
255                                     ~(HOSTWEP_EXCLUDEUNENCRYPTED);
256                                 if (*data == P80211ENUM_truth_true)
257                                         wlandev->hostwep |=
258                                             HOSTWEP_EXCLUDEUNENCRYPTED;
259                         }
260                         break;
261                 }
262         default:
263                 ;
264         }
265
266         return 0;
267 }