blob: 4300d9db7d8caab2d70442b7cbd37a9da69adef9 [file] [log] [blame]
David Kilroyfb791b12009-02-04 23:05:50 +00001/* Helpers for managing scan queues
2 *
3 * See copyright notice in main.c
4 */
5
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/gfp.h>
David Kilroyfb791b12009-02-04 23:05:50 +00007#include <linux/kernel.h>
8#include <linux/string.h>
David Kilroyc63cdbe2009-06-18 23:21:33 +01009#include <linux/ieee80211.h>
10#include <net/cfg80211.h>
David Kilroyfb791b12009-02-04 23:05:50 +000011
12#include "hermes.h"
13#include "orinoco.h"
David Kilroyc63cdbe2009-06-18 23:21:33 +010014#include "main.h"
David Kilroyfb791b12009-02-04 23:05:50 +000015
16#include "scan.h"
17
David Kilroyc63cdbe2009-06-18 23:21:33 +010018#define ZERO_DBM_OFFSET 0x95
19#define MAX_SIGNAL_LEVEL 0x8A
20#define MIN_SIGNAL_LEVEL 0x2F
David Kilroyfb791b12009-02-04 23:05:50 +000021
David Kilroyc63cdbe2009-06-18 23:21:33 +010022#define SIGNAL_TO_DBM(x) \
23 (clamp_t(s32, (x), MIN_SIGNAL_LEVEL, MAX_SIGNAL_LEVEL) \
24 - ZERO_DBM_OFFSET)
25#define SIGNAL_TO_MBM(x) (SIGNAL_TO_DBM(x) * 100)
David Kilroyfb791b12009-02-04 23:05:50 +000026
David Kilroyc63cdbe2009-06-18 23:21:33 +010027static int symbol_build_supp_rates(u8 *buf, const __le16 *rates)
David Kilroyfb791b12009-02-04 23:05:50 +000028{
David Kilroyc63cdbe2009-06-18 23:21:33 +010029 int i;
30 u8 rate;
David Kilroyfb791b12009-02-04 23:05:50 +000031
David Kilroyc63cdbe2009-06-18 23:21:33 +010032 buf[0] = WLAN_EID_SUPP_RATES;
33 for (i = 0; i < 5; i++) {
34 rate = le16_to_cpu(rates[i]);
35 /* NULL terminated */
36 if (rate == 0x0)
37 break;
38 buf[i + 2] = rate;
David Kilroyfb791b12009-02-04 23:05:50 +000039 }
David Kilroyc63cdbe2009-06-18 23:21:33 +010040 buf[1] = i;
41
42 return i + 2;
David Kilroyfb791b12009-02-04 23:05:50 +000043}
44
David Kilroyc63cdbe2009-06-18 23:21:33 +010045static int prism_build_supp_rates(u8 *buf, const u8 *rates)
David Kilroyfb791b12009-02-04 23:05:50 +000046{
47 int i;
48
David Kilroyc63cdbe2009-06-18 23:21:33 +010049 buf[0] = WLAN_EID_SUPP_RATES;
50 for (i = 0; i < 8; i++) {
51 /* NULL terminated */
52 if (rates[i] == 0x0)
53 break;
54 buf[i + 2] = rates[i];
David Kilroyfb791b12009-02-04 23:05:50 +000055 }
David Kilroyc63cdbe2009-06-18 23:21:33 +010056 buf[1] = i;
57
58 /* We might still have another 2 rates, which need to go in
59 * extended supported rates */
60 if (i == 8 && rates[i] > 0) {
61 buf[10] = WLAN_EID_EXT_SUPP_RATES;
62 for (; i < 10; i++) {
63 /* NULL terminated */
64 if (rates[i] == 0x0)
65 break;
66 buf[i + 2] = rates[i];
67 }
68 buf[11] = i - 8;
69 }
70
71 return (i < 8) ? i + 2 : i + 4;
David Kilroyfb791b12009-02-04 23:05:50 +000072}
73
David Kilroyc63cdbe2009-06-18 23:21:33 +010074static void orinoco_add_hostscan_result(struct orinoco_private *priv,
75 const union hermes_scan_info *bss)
David Kilroyfb791b12009-02-04 23:05:50 +000076{
David Kilroyc63cdbe2009-06-18 23:21:33 +010077 struct wiphy *wiphy = priv_to_wiphy(priv);
78 struct ieee80211_channel *channel;
79 u8 *ie;
80 u8 ie_buf[46];
81 u64 timestamp;
82 s32 signal;
83 u16 capability;
84 u16 beacon_interval;
85 int ie_len;
86 int freq;
87 int len;
David Kilroyfb791b12009-02-04 23:05:50 +000088
David Kilroyc63cdbe2009-06-18 23:21:33 +010089 len = le16_to_cpu(bss->a.essid_len);
90
91 /* Reconstruct SSID and bitrate IEs to pass up */
92 ie_buf[0] = WLAN_EID_SSID;
93 ie_buf[1] = len;
94 memcpy(&ie_buf[2], bss->a.essid, len);
95
96 ie = ie_buf + len + 2;
97 ie_len = ie_buf[1] + 2;
98 switch (priv->firmware_type) {
99 case FIRMWARE_TYPE_SYMBOL:
100 ie_len += symbol_build_supp_rates(ie, bss->s.rates);
101 break;
102
103 case FIRMWARE_TYPE_INTERSIL:
104 ie_len += prism_build_supp_rates(ie, bss->p.rates);
105 break;
106
107 case FIRMWARE_TYPE_AGERE:
108 default:
David Kilroyfb791b12009-02-04 23:05:50 +0000109 break;
110 }
111
David Kilroyc63cdbe2009-06-18 23:21:33 +0100112 freq = ieee80211_dsss_chan_to_freq(le16_to_cpu(bss->a.channel));
113 channel = ieee80211_get_channel(wiphy, freq);
114 timestamp = 0;
115 capability = le16_to_cpu(bss->a.capabilities);
116 beacon_interval = le16_to_cpu(bss->a.beacon_interv);
117 signal = SIGNAL_TO_MBM(le16_to_cpu(bss->a.level));
David Kilroyfb791b12009-02-04 23:05:50 +0000118
David Kilroyc63cdbe2009-06-18 23:21:33 +0100119 cfg80211_inform_bss(wiphy, channel, bss->a.bssid, timestamp,
120 capability, beacon_interval, ie_buf, ie_len,
121 signal, GFP_KERNEL);
David Kilroyfb791b12009-02-04 23:05:50 +0000122}
123
David Kilroyc63cdbe2009-06-18 23:21:33 +0100124void orinoco_add_extscan_result(struct orinoco_private *priv,
125 struct agere_ext_scan_info *bss,
126 size_t len)
David Kilroyfb791b12009-02-04 23:05:50 +0000127{
David Kilroyc63cdbe2009-06-18 23:21:33 +0100128 struct wiphy *wiphy = priv_to_wiphy(priv);
129 struct ieee80211_channel *channel;
David Kilroy69c264d2010-04-19 08:16:22 +0100130 const u8 *ie;
David Kilroyc63cdbe2009-06-18 23:21:33 +0100131 u64 timestamp;
132 s32 signal;
133 u16 capability;
134 u16 beacon_interval;
135 size_t ie_len;
136 int chan, freq;
137
138 ie_len = len - sizeof(*bss);
David Kilroy69c264d2010-04-19 08:16:22 +0100139 ie = cfg80211_find_ie(WLAN_EID_DS_PARAMS, bss->data, ie_len);
David Kilroyc63cdbe2009-06-18 23:21:33 +0100140 chan = ie ? ie[2] : 0;
141 freq = ieee80211_dsss_chan_to_freq(chan);
142 channel = ieee80211_get_channel(wiphy, freq);
143
144 timestamp = le64_to_cpu(bss->timestamp);
145 capability = le16_to_cpu(bss->capabilities);
146 beacon_interval = le16_to_cpu(bss->beacon_interval);
147 ie = bss->data;
148 signal = SIGNAL_TO_MBM(bss->level);
149
150 cfg80211_inform_bss(wiphy, channel, bss->bssid, timestamp,
151 capability, beacon_interval, ie, ie_len,
152 signal, GFP_KERNEL);
153}
154
155void orinoco_add_hostscan_results(struct orinoco_private *priv,
156 unsigned char *buf,
157 size_t len)
158{
159 int offset; /* In the scan data */
160 size_t atom_len;
161 bool abort = false;
David Kilroyfb791b12009-02-04 23:05:50 +0000162
163 switch (priv->firmware_type) {
164 case FIRMWARE_TYPE_AGERE:
165 atom_len = sizeof(struct agere_scan_apinfo);
166 offset = 0;
167 break;
David Kilroyc63cdbe2009-06-18 23:21:33 +0100168
David Kilroyfb791b12009-02-04 23:05:50 +0000169 case FIRMWARE_TYPE_SYMBOL:
170 /* Lack of documentation necessitates this hack.
171 * Different firmwares have 68 or 76 byte long atoms.
172 * We try modulo first. If the length divides by both,
173 * we check what would be the channel in the second
174 * frame for a 68-byte atom. 76-byte atoms have 0 there.
175 * Valid channel cannot be 0. */
176 if (len % 76)
177 atom_len = 68;
178 else if (len % 68)
179 atom_len = 76;
180 else if (len >= 1292 && buf[68] == 0)
181 atom_len = 76;
182 else
183 atom_len = 68;
184 offset = 0;
185 break;
David Kilroyc63cdbe2009-06-18 23:21:33 +0100186
David Kilroyfb791b12009-02-04 23:05:50 +0000187 case FIRMWARE_TYPE_INTERSIL:
188 offset = 4;
189 if (priv->has_hostscan) {
190 atom_len = le16_to_cpup((__le16 *)buf);
191 /* Sanity check for atom_len */
192 if (atom_len < sizeof(struct prism2_scan_apinfo)) {
193 printk(KERN_ERR "%s: Invalid atom_len in scan "
David Kilroy4244f412009-07-02 20:26:45 +0100194 "data: %zu\n", priv->ndev->name,
David Kilroyfb791b12009-02-04 23:05:50 +0000195 atom_len);
David Kilroyc63cdbe2009-06-18 23:21:33 +0100196 abort = true;
197 goto scan_abort;
David Kilroyfb791b12009-02-04 23:05:50 +0000198 }
199 } else
200 atom_len = offsetof(struct prism2_scan_apinfo, atim);
201 break;
David Kilroyc63cdbe2009-06-18 23:21:33 +0100202
David Kilroyfb791b12009-02-04 23:05:50 +0000203 default:
David Kilroyc63cdbe2009-06-18 23:21:33 +0100204 abort = true;
205 goto scan_abort;
David Kilroyfb791b12009-02-04 23:05:50 +0000206 }
207
208 /* Check that we got an whole number of atoms */
209 if ((len - offset) % atom_len) {
David Kilroy4244f412009-07-02 20:26:45 +0100210 printk(KERN_ERR "%s: Unexpected scan data length %zu, "
211 "atom_len %zu, offset %d\n", priv->ndev->name, len,
David Kilroyfb791b12009-02-04 23:05:50 +0000212 atom_len, offset);
David Kilroyc63cdbe2009-06-18 23:21:33 +0100213 abort = true;
214 goto scan_abort;
David Kilroyfb791b12009-02-04 23:05:50 +0000215 }
216
David Kilroyc63cdbe2009-06-18 23:21:33 +0100217 /* Process the entries one by one */
David Kilroyfb791b12009-02-04 23:05:50 +0000218 for (; offset + atom_len <= len; offset += atom_len) {
David Kilroyc63cdbe2009-06-18 23:21:33 +0100219 union hermes_scan_info *atom;
David Kilroyfb791b12009-02-04 23:05:50 +0000220
David Kilroyfb791b12009-02-04 23:05:50 +0000221 atom = (union hermes_scan_info *) (buf + offset);
222
David Kilroyc63cdbe2009-06-18 23:21:33 +0100223 orinoco_add_hostscan_result(priv, atom);
David Kilroyfb791b12009-02-04 23:05:50 +0000224 }
225
David Kilroyc63cdbe2009-06-18 23:21:33 +0100226 scan_abort:
227 if (priv->scan_request) {
228 cfg80211_scan_done(priv->scan_request, abort);
229 priv->scan_request = NULL;
230 }
David Kilroyfb791b12009-02-04 23:05:50 +0000231}