blob: f408b4583b82981a1626a909e8505e76fc0e1349 [file] [log] [blame]
Jerry Chuang5f53d8c2009-05-21 22:16:02 -07001/*******************************************************************************
2
3 Copyright(c) 2004 Intel Corporation. All rights reserved.
4
5 Portions of this file are based on the WEP enablement code provided by the
6 Host AP project hostap-drivers v0.1.3
7 Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
8 <jkmaline@cc.hut.fi>
9 Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
10
11 This program is free software; you can redistribute it and/or modify it
12 under the terms of version 2 of the GNU General Public License as
13 published by the Free Software Foundation.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 more details.
19
20 You should have received a copy of the GNU General Public License along with
21 this program; if not, write to the Free Software Foundation, Inc., 59
22 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 The full GNU General Public License is included in this distribution in the
25 file called LICENSE.
26
27 Contact Information:
28 James P. Ketrenos <ipw2100-admin@linux.intel.com>
29 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30
31*******************************************************************************/
32
33#include <linux/compiler.h>
34//#include <linux/config.h>
35#include <linux/errno.h>
36#include <linux/if_arp.h>
37#include <linux/in6.h>
38#include <linux/in.h>
39#include <linux/ip.h>
40#include <linux/kernel.h>
41#include <linux/module.h>
42#include <linux/netdevice.h>
43#include <linux/pci.h>
44#include <linux/proc_fs.h>
45#include <linux/skbuff.h>
46#include <linux/slab.h>
47#include <linux/tcp.h>
48#include <linux/types.h>
49#include <linux/version.h>
50#include <linux/wireless.h>
51#include <linux/etherdevice.h>
52#include <asm/uaccess.h>
53#include <net/arp.h>
54
55#include "ieee80211.h"
56
57MODULE_DESCRIPTION("802.11 data/management/control stack");
58MODULE_AUTHOR("Copyright (C) 2004 Intel Corporation <jketreno@linux.intel.com>");
59MODULE_LICENSE("GPL");
60
61#define DRV_NAME "ieee80211"
62
63static inline int ieee80211_networks_allocate(struct ieee80211_device *ieee)
64{
65 if (ieee->networks)
66 return 0;
67
68 ieee->networks = kmalloc(
69 MAX_NETWORK_COUNT * sizeof(struct ieee80211_network),
70 GFP_KERNEL);
71 if (!ieee->networks) {
72 printk(KERN_WARNING "%s: Out of memory allocating beacons\n",
73 ieee->dev->name);
74 return -ENOMEM;
75 }
76
77 memset(ieee->networks, 0,
78 MAX_NETWORK_COUNT * sizeof(struct ieee80211_network));
79
80 return 0;
81}
82
83static inline void ieee80211_networks_free(struct ieee80211_device *ieee)
84{
85 if (!ieee->networks)
86 return;
87 kfree(ieee->networks);
88 ieee->networks = NULL;
89}
90
91static inline void ieee80211_networks_initialize(struct ieee80211_device *ieee)
92{
93 int i;
94
95 INIT_LIST_HEAD(&ieee->network_free_list);
96 INIT_LIST_HEAD(&ieee->network_list);
97 for (i = 0; i < MAX_NETWORK_COUNT; i++)
98 list_add_tail(&ieee->networks[i].list, &ieee->network_free_list);
99}
100
101
102struct net_device *alloc_ieee80211(int sizeof_priv)
103{
104 struct ieee80211_device *ieee;
105 struct net_device *dev;
106 int i,err;
107
108 IEEE80211_DEBUG_INFO("Initializing...\n");
109
110 dev = alloc_etherdev(sizeof(struct ieee80211_device) + sizeof_priv);
111 if (!dev) {
112 IEEE80211_ERROR("Unable to network device.\n");
113 goto failed;
114 }
115
116#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
117 ieee = netdev_priv(dev);
118#else
119 ieee = (struct ieee80211_device *)dev->priv;
120#endif
121 dev->hard_start_xmit = ieee80211_xmit;
122
123 memset(ieee, 0, sizeof(struct ieee80211_device)+sizeof_priv);
124 ieee->dev = dev;
125
126 err = ieee80211_networks_allocate(ieee);
127 if (err) {
128 IEEE80211_ERROR("Unable to allocate beacon storage: %d\n",
129 err);
130 goto failed;
131 }
132 ieee80211_networks_initialize(ieee);
133
134
135 /* Default fragmentation threshold is maximum payload size */
136 ieee->fts = DEFAULT_FTS;
137 ieee->scan_age = DEFAULT_MAX_SCAN_AGE;
138 ieee->open_wep = 1;
139
140 /* Default to enabling full open WEP with host based encrypt/decrypt */
141 ieee->host_encrypt = 1;
142 ieee->host_decrypt = 1;
143 ieee->ieee802_1x = 1; /* Default to supporting 802.1x */
144
145 INIT_LIST_HEAD(&ieee->crypt_deinit_list);
146 init_timer(&ieee->crypt_deinit_timer);
147 ieee->crypt_deinit_timer.data = (unsigned long)ieee;
148 ieee->crypt_deinit_timer.function = ieee80211_crypt_deinit_handler;
149
150 spin_lock_init(&ieee->lock);
151 spin_lock_init(&ieee->wpax_suitlist_lock);
152 spin_lock_init(&ieee->bw_spinlock);
153 spin_lock_init(&ieee->reorder_spinlock);
154 //added by WB
155 atomic_set(&(ieee->atm_chnlop), 0);
156 atomic_set(&(ieee->atm_swbw), 0);
157
158 ieee->wpax_type_set = 0;
159 ieee->wpa_enabled = 0;
160 ieee->tkip_countermeasures = 0;
161 ieee->drop_unencrypted = 0;
162 ieee->privacy_invoked = 0;
163 ieee->ieee802_1x = 1;
164 ieee->raw_tx = 0;
165 //ieee->hwsec_support = 1; //defalt support hw security. //use module_param instead.
166 ieee->hwsec_active = 0; //disable hwsec, switch it on when necessary.
167
168 ieee80211_softmac_init(ieee);
169
170#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,13))
171 ieee->pHTInfo = (RT_HIGH_THROUGHPUT*)kzalloc(sizeof(RT_HIGH_THROUGHPUT), GFP_KERNEL);
172#else
173 ieee->pHTInfo = (RT_HIGH_THROUGHPUT*)kmalloc(sizeof(RT_HIGH_THROUGHPUT), GFP_KERNEL);
174 memset(ieee->pHTInfo,0,sizeof(RT_HIGH_THROUGHPUT));
175#endif
176 if (ieee->pHTInfo == NULL)
177 {
178 IEEE80211_DEBUG(IEEE80211_DL_ERR, "can't alloc memory for HTInfo\n");
179 return NULL;
180 }
181 HTUpdateDefaultSetting(ieee);
182 HTInitializeHTInfo(ieee); //may move to other place.
183 TSInitialize(ieee);
184#if 0
185#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20))
186 INIT_WORK(&ieee->ht_onAssRsp, (void(*)(void*)) HTOnAssocRsp_wq);
187#else
188 INIT_WORK(&ieee->ht_onAssRsp, (void(*)(void*)) HTOnAssocRsp_wq, ieee);
189#endif
190#endif
191 for (i = 0; i < IEEE_IBSS_MAC_HASH_SIZE; i++)
192 INIT_LIST_HEAD(&ieee->ibss_mac_hash[i]);
193
194 for (i = 0; i < 17; i++) {
195 ieee->last_rxseq_num[i] = -1;
196 ieee->last_rxfrag_num[i] = -1;
197 ieee->last_packet_time[i] = 0;
198 }
199
200//These function were added to load crypte module autoly
201 ieee80211_tkip_null();
202 ieee80211_wep_null();
203 ieee80211_ccmp_null();
204
205 return dev;
206
207 failed:
208 if (dev)
209#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
210 free_netdev(dev);
211#else
212 kfree(dev);
213#endif
214 return NULL;
215}
216
217
218void free_ieee80211(struct net_device *dev)
219{
220#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
221 struct ieee80211_device *ieee = netdev_priv(dev);
222#else
223 struct ieee80211_device *ieee = (struct ieee80211_device *)dev->priv;
224#endif
225 int i;
226 //struct list_head *p, *q;
227// del_timer_sync(&ieee->SwBwTimer);
228#if 1
229 if (ieee->pHTInfo != NULL)
230 {
231 kfree(ieee->pHTInfo);
232 ieee->pHTInfo = NULL;
233 }
234#endif
235 RemoveAllTS(ieee);
236 ieee80211_softmac_free(ieee);
237 del_timer_sync(&ieee->crypt_deinit_timer);
238 ieee80211_crypt_deinit_entries(ieee, 1);
239
240 for (i = 0; i < WEP_KEYS; i++) {
241 struct ieee80211_crypt_data *crypt = ieee->crypt[i];
242 if (crypt) {
243 if (crypt->ops) {
244 crypt->ops->deinit(crypt->priv);
245#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
246 module_put(crypt->ops->owner);
247#else
248 __MOD_DEC_USE_COUNT(crypt->ops->owner);
249#endif
250 }
251 kfree(crypt);
252 ieee->crypt[i] = NULL;
253 }
254 }
255
256 ieee80211_networks_free(ieee);
257#if 0
258 for (i = 0; i < IEEE_IBSS_MAC_HASH_SIZE; i++) {
259 list_for_each_safe(p, q, &ieee->ibss_mac_hash[i]) {
260 kfree(list_entry(p, struct ieee_ibss_seq, list));
261 list_del(p);
262 }
263 }
264
265#endif
266#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
267 free_netdev(dev);
268#else
269 kfree(dev);
270#endif
271}
272
273#ifdef CONFIG_IEEE80211_DEBUG
274
275u32 ieee80211_debug_level = 0;
276static int debug = \
277 // IEEE80211_DL_INFO |
278 // IEEE80211_DL_WX |
279 // IEEE80211_DL_SCAN |
280 // IEEE80211_DL_STATE |
281 // IEEE80211_DL_MGMT |
282 // IEEE80211_DL_FRAG |
283 // IEEE80211_DL_EAP |
284 // IEEE80211_DL_DROP |
285 // IEEE80211_DL_TX |
286 // IEEE80211_DL_RX |
287 //IEEE80211_DL_QOS |
288 // IEEE80211_DL_HT |
289 // IEEE80211_DL_TS |
290// IEEE80211_DL_BA |
291 // IEEE80211_DL_REORDER|
292// IEEE80211_DL_TRACE |
293 //IEEE80211_DL_DATA |
294 IEEE80211_DL_ERR //awayls open this flags to show error out
295 ;
296struct proc_dir_entry *ieee80211_proc = NULL;
297
298static int show_debug_level(char *page, char **start, off_t offset,
299 int count, int *eof, void *data)
300{
301 return snprintf(page, count, "0x%08X\n", ieee80211_debug_level);
302}
303
304static int store_debug_level(struct file *file, const char *buffer,
305 unsigned long count, void *data)
306{
307 char buf[] = "0x00000000";
308 unsigned long len = min(sizeof(buf) - 1, (u32)count);
309 char *p = (char *)buf;
310 unsigned long val;
311
312 if (copy_from_user(buf, buffer, len))
313 return count;
314 buf[len] = 0;
315 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
316 p++;
317 if (p[0] == 'x' || p[0] == 'X')
318 p++;
319 val = simple_strtoul(p, &p, 16);
320 } else
321 val = simple_strtoul(p, &p, 10);
322 if (p == buf)
323 printk(KERN_INFO DRV_NAME
324 ": %s is not in hex or decimal form.\n", buf);
325 else
326 ieee80211_debug_level = val;
327
328 return strnlen(buf, count);
329}
330
331static int __init ieee80211_init(void)
332{
333 struct proc_dir_entry *e;
334
335 ieee80211_debug_level = debug;
336#if(LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24))
337 ieee80211_proc = create_proc_entry(DRV_NAME, S_IFDIR, proc_net);
338#else
339 ieee80211_proc = create_proc_entry(DRV_NAME, S_IFDIR, init_net.proc_net);
340#endif
341 if (ieee80211_proc == NULL) {
342 IEEE80211_ERROR("Unable to create " DRV_NAME
343 " proc directory\n");
344 return -EIO;
345 }
346 e = create_proc_entry("debug_level", S_IFREG | S_IRUGO | S_IWUSR,
347 ieee80211_proc);
348 if (!e) {
349#if(LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24))
350 remove_proc_entry(DRV_NAME, proc_net);
351#else
352 remove_proc_entry(DRV_NAME, init_net.proc_net);
353#endif
354 ieee80211_proc = NULL;
355 return -EIO;
356 }
357 e->read_proc = show_debug_level;
358 e->write_proc = store_debug_level;
359 e->data = NULL;
360
361 return 0;
362}
363
364static void __exit ieee80211_exit(void)
365{
366 if (ieee80211_proc) {
367 remove_proc_entry("debug_level", ieee80211_proc);
368#if(LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24))
369 remove_proc_entry(DRV_NAME, proc_net);
370#else
371 remove_proc_entry(DRV_NAME, init_net.proc_net);
372#endif
373 ieee80211_proc = NULL;
374 }
375}
376
377#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
378#include <linux/moduleparam.h>
379module_param(debug, int, 0444);
380MODULE_PARM_DESC(debug, "debug output mask");
381
382
383module_exit(ieee80211_exit);
384module_init(ieee80211_init);
385#endif
386#endif
387
388#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
389EXPORT_SYMBOL(alloc_ieee80211);
390EXPORT_SYMBOL(free_ieee80211);
391#else
392EXPORT_SYMBOL_NOVERS(alloc_ieee80211);
393EXPORT_SYMBOL_NOVERS(free_ieee80211);
394#endif