blob: 3193125641672e59b0472f9280e4f993d4faf917 [file] [log] [blame]
Jeff Garzikb4538722005-05-12 22:48:20 -04001/*******************************************************************************
2
James Ketrenosebeaddc2005-09-21 11:58:43 -05003 Copyright(c) 2004-2005 Intel Corporation. All rights reserved.
Jeff Garzikb4538722005-05-12 22:48:20 -04004
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>
Jeff Garzikb4538722005-05-12 22:48:20 -040043#include <linux/proc_fs.h>
44#include <linux/skbuff.h>
45#include <linux/slab.h>
46#include <linux/tcp.h>
47#include <linux/types.h>
48#include <linux/version.h>
49#include <linux/wireless.h>
50#include <linux/etherdevice.h>
51#include <asm/uaccess.h>
52#include <net/arp.h>
53
54#include <net/ieee80211.h>
55
James Ketrenos31696162005-09-21 11:58:46 -050056#define DRV_DESCRIPTION "802.11 data/management/control stack"
57#define DRV_NAME "ieee80211"
58#define DRV_VERSION IEEE80211_VERSION
59#define DRV_COPYRIGHT "Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>"
Jeff Garzikb4538722005-05-12 22:48:20 -040060
James Ketrenos31696162005-09-21 11:58:46 -050061MODULE_VERSION(DRV_VERSION);
62MODULE_DESCRIPTION(DRV_DESCRIPTION);
63MODULE_AUTHOR(DRV_COPYRIGHT);
64MODULE_LICENSE("GPL");
Jeff Garzikb4538722005-05-12 22:48:20 -040065
66static inline int ieee80211_networks_allocate(struct ieee80211_device *ieee)
67{
68 if (ieee->networks)
69 return 0;
70
Jeff Garzik0edd5b42005-09-07 00:48:31 -040071 ieee->networks =
72 kmalloc(MAX_NETWORK_COUNT * sizeof(struct ieee80211_network),
73 GFP_KERNEL);
Jeff Garzikb4538722005-05-12 22:48:20 -040074 if (!ieee->networks) {
75 printk(KERN_WARNING "%s: Out of memory allocating beacons\n",
76 ieee->dev->name);
77 return -ENOMEM;
78 }
79
80 memset(ieee->networks, 0,
81 MAX_NETWORK_COUNT * sizeof(struct ieee80211_network));
82
83 return 0;
84}
85
86static inline void ieee80211_networks_free(struct ieee80211_device *ieee)
87{
88 if (!ieee->networks)
89 return;
90 kfree(ieee->networks);
91 ieee->networks = NULL;
92}
93
94static inline void ieee80211_networks_initialize(struct ieee80211_device *ieee)
95{
96 int i;
97
98 INIT_LIST_HEAD(&ieee->network_free_list);
99 INIT_LIST_HEAD(&ieee->network_list);
100 for (i = 0; i < MAX_NETWORK_COUNT; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400101 list_add_tail(&ieee->networks[i].list,
102 &ieee->network_free_list);
Jeff Garzikb4538722005-05-12 22:48:20 -0400103}
104
Jeff Garzikb4538722005-05-12 22:48:20 -0400105struct net_device *alloc_ieee80211(int sizeof_priv)
106{
107 struct ieee80211_device *ieee;
108 struct net_device *dev;
109 int err;
110
111 IEEE80211_DEBUG_INFO("Initializing...\n");
112
113 dev = alloc_etherdev(sizeof(struct ieee80211_device) + sizeof_priv);
114 if (!dev) {
115 IEEE80211_ERROR("Unable to network device.\n");
116 goto failed;
117 }
118 ieee = netdev_priv(dev);
119 dev->hard_start_xmit = ieee80211_xmit;
120
121 ieee->dev = dev;
122
123 err = ieee80211_networks_allocate(ieee);
124 if (err) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400125 IEEE80211_ERROR("Unable to allocate beacon storage: %d\n", err);
Jeff Garzikb4538722005-05-12 22:48:20 -0400126 goto failed;
127 }
128 ieee80211_networks_initialize(ieee);
129
130 /* Default fragmentation threshold is maximum payload size */
131 ieee->fts = DEFAULT_FTS;
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500132 ieee->rts = DEFAULT_FTS;
Jeff Garzikb4538722005-05-12 22:48:20 -0400133 ieee->scan_age = DEFAULT_MAX_SCAN_AGE;
134 ieee->open_wep = 1;
135
136 /* Default to enabling full open WEP with host based encrypt/decrypt */
137 ieee->host_encrypt = 1;
138 ieee->host_decrypt = 1;
James Ketrenosccd0fda2005-09-21 11:58:32 -0500139 ieee->host_mc_decrypt = 1;
140
James Ketrenos1264fc02005-09-21 11:54:53 -0500141 /* Host fragementation in Open mode. Default is enabled.
142 * Note: host fragmentation is always enabled if host encryption
143 * is enabled. For cards can do hardware encryption, they must do
144 * hardware fragmentation as well. So we don't need a variable
145 * like host_enc_frag. */
146 ieee->host_open_frag = 1;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400147 ieee->ieee802_1x = 1; /* Default to supporting 802.1x */
Jeff Garzikb4538722005-05-12 22:48:20 -0400148
149 INIT_LIST_HEAD(&ieee->crypt_deinit_list);
150 init_timer(&ieee->crypt_deinit_timer);
151 ieee->crypt_deinit_timer.data = (unsigned long)ieee;
152 ieee->crypt_deinit_timer.function = ieee80211_crypt_deinit_handler;
James Ketrenos0ad0c3c2005-09-21 11:54:15 -0500153 ieee->crypt_quiesced = 0;
Jeff Garzikb4538722005-05-12 22:48:20 -0400154
155 spin_lock_init(&ieee->lock);
156
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400157 ieee->wpa_enabled = 0;
158 ieee->tkip_countermeasures = 0;
159 ieee->drop_unencrypted = 0;
160 ieee->privacy_invoked = 0;
Jeff Garzikb4538722005-05-12 22:48:20 -0400161
162 return dev;
163
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400164 failed:
Jeff Garzikb4538722005-05-12 22:48:20 -0400165 if (dev)
166 free_netdev(dev);
167 return NULL;
168}
169
Jeff Garzikb4538722005-05-12 22:48:20 -0400170void free_ieee80211(struct net_device *dev)
171{
172 struct ieee80211_device *ieee = netdev_priv(dev);
173
174 int i;
175
James Ketrenos0ad0c3c2005-09-21 11:54:15 -0500176 ieee80211_crypt_quiescing(ieee);
Jeff Garzikb4538722005-05-12 22:48:20 -0400177 del_timer_sync(&ieee->crypt_deinit_timer);
178 ieee80211_crypt_deinit_entries(ieee, 1);
179
180 for (i = 0; i < WEP_KEYS; i++) {
181 struct ieee80211_crypt_data *crypt = ieee->crypt[i];
182 if (crypt) {
183 if (crypt->ops) {
184 crypt->ops->deinit(crypt->priv);
185 module_put(crypt->ops->owner);
186 }
187 kfree(crypt);
188 ieee->crypt[i] = NULL;
189 }
190 }
191
192 ieee80211_networks_free(ieee);
193 free_netdev(dev);
194}
195
196#ifdef CONFIG_IEEE80211_DEBUG
197
198static int debug = 0;
199u32 ieee80211_debug_level = 0;
200struct proc_dir_entry *ieee80211_proc = NULL;
201
202static int show_debug_level(char *page, char **start, off_t offset,
203 int count, int *eof, void *data)
204{
205 return snprintf(page, count, "0x%08X\n", ieee80211_debug_level);
206}
207
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400208static int store_debug_level(struct file *file, const char __user * buffer,
Jeff Garzikb4538722005-05-12 22:48:20 -0400209 unsigned long count, void *data)
210{
James Ketrenos262d8e42005-09-13 17:42:53 -0500211 char buf[] = "0x00000000\n";
212 unsigned long len = min((unsigned long)sizeof(buf) - 1, count);
Jeff Garzikb4538722005-05-12 22:48:20 -0400213 unsigned long val;
214
James Ketrenos262d8e42005-09-13 17:42:53 -0500215 if (copy_from_user(buf, buffer, len))
Jeff Garzikb4538722005-05-12 22:48:20 -0400216 return count;
James Ketrenos262d8e42005-09-13 17:42:53 -0500217 buf[len] = 0;
218 if (sscanf(buf, "%li", &val) != 1)
Jeff Garzikb4538722005-05-12 22:48:20 -0400219 printk(KERN_INFO DRV_NAME
220 ": %s is not in hex or decimal form.\n", buf);
221 else
222 ieee80211_debug_level = val;
223
James Ketrenos262d8e42005-09-13 17:42:53 -0500224 return strnlen(buf, len);
Jeff Garzikb4538722005-05-12 22:48:20 -0400225}
James Ketrenos31696162005-09-21 11:58:46 -0500226#endif /* CONFIG_IEEE80211_DEBUG */
Jeff Garzikb4538722005-05-12 22:48:20 -0400227
228static int __init ieee80211_init(void)
229{
James Ketrenos31696162005-09-21 11:58:46 -0500230#ifdef CONFIG_IEEE80211_DEBUG
Jeff Garzikb4538722005-05-12 22:48:20 -0400231 struct proc_dir_entry *e;
232
233 ieee80211_debug_level = debug;
234 ieee80211_proc = create_proc_entry(DRV_NAME, S_IFDIR, proc_net);
235 if (ieee80211_proc == NULL) {
236 IEEE80211_ERROR("Unable to create " DRV_NAME
237 " proc directory\n");
238 return -EIO;
239 }
240 e = create_proc_entry("debug_level", S_IFREG | S_IRUGO | S_IWUSR,
241 ieee80211_proc);
242 if (!e) {
243 remove_proc_entry(DRV_NAME, proc_net);
244 ieee80211_proc = NULL;
245 return -EIO;
246 }
247 e->read_proc = show_debug_level;
248 e->write_proc = store_debug_level;
249 e->data = NULL;
James Ketrenos31696162005-09-21 11:58:46 -0500250#endif /* CONFIG_IEEE80211_DEBUG */
251
252 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
253 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Jeff Garzikb4538722005-05-12 22:48:20 -0400254
255 return 0;
256}
257
258static void __exit ieee80211_exit(void)
259{
James Ketrenos31696162005-09-21 11:58:46 -0500260#ifdef CONFIG_IEEE80211_DEBUG
Jeff Garzikb4538722005-05-12 22:48:20 -0400261 if (ieee80211_proc) {
262 remove_proc_entry("debug_level", ieee80211_proc);
263 remove_proc_entry(DRV_NAME, proc_net);
264 ieee80211_proc = NULL;
265 }
James Ketrenos31696162005-09-21 11:58:46 -0500266#endif /* CONFIG_IEEE80211_DEBUG */
Jeff Garzikb4538722005-05-12 22:48:20 -0400267}
268
James Ketrenos31696162005-09-21 11:58:46 -0500269#ifdef CONFIG_IEEE80211_DEBUG
Jeff Garzikb4538722005-05-12 22:48:20 -0400270#include <linux/moduleparam.h>
271module_param(debug, int, 0444);
272MODULE_PARM_DESC(debug, "debug output mask");
James Ketrenos31696162005-09-21 11:58:46 -0500273#endif /* CONFIG_IEEE80211_DEBUG */
Jeff Garzikb4538722005-05-12 22:48:20 -0400274
Jeff Garzikb4538722005-05-12 22:48:20 -0400275module_exit(ieee80211_exit);
276module_init(ieee80211_init);
Jeff Garzikb4538722005-05-12 22:48:20 -0400277
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400278const char *escape_essid(const char *essid, u8 essid_len)
279{
Jiri Bence88187e2005-08-25 20:00:53 -0400280 static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
281 const char *s = essid;
282 char *d = escaped;
283
284 if (ieee80211_is_empty_essid(essid, essid_len)) {
285 memcpy(escaped, "<hidden>", sizeof("<hidden>"));
286 return escaped;
287 }
288
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400289 essid_len = min(essid_len, (u8) IW_ESSID_MAX_SIZE);
Jiri Bence88187e2005-08-25 20:00:53 -0400290 while (essid_len--) {
291 if (*s == '\0') {
292 *d++ = '\\';
293 *d++ = '0';
294 s++;
295 } else {
296 *d++ = *s++;
297 }
298 }
299 *d = '\0';
300 return escaped;
301}
302
Jeff Garzikb4538722005-05-12 22:48:20 -0400303EXPORT_SYMBOL(alloc_ieee80211);
304EXPORT_SYMBOL(free_ieee80211);
Jiri Bence88187e2005-08-25 20:00:53 -0400305EXPORT_SYMBOL(escape_essid);