libs/iwinfo: fix broadcom signal calculation in master mode
[project/luci.git] / libs / iwinfo / src / iwinfo_wl.c
1 /*
2  * iwinfo - Wireless Information Library - Broadcom wl.o Backend
3  *
4  *   Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org>
5  *
6  * The iwinfo library is free software: you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License version 2
8  * as published by the Free Software Foundation.
9  *
10  * The iwinfo library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with the iwinfo library. If not, see http://www.gnu.org/licenses/.
17  *
18  * This code is based on the wlc.c utility published by OpenWrt.org . 
19  */
20
21 #include "iwinfo_wl.h"
22 #include "iwinfo_wext.h"
23
24 static int ioctl_socket = -1;
25
26 static int wl_ioctl(const char *name, int cmd, void *buf, int len)
27 {
28         struct ifreq ifr;
29         wl_ioctl_t ioc;
30
31         /* prepare socket */
32         if( ioctl_socket == -1 )
33                 ioctl_socket = socket(AF_INET, SOCK_DGRAM, 0);
34
35         /* do it */
36         ioc.cmd = cmd;
37         ioc.buf = buf;
38         ioc.len = len;
39         strncpy(ifr.ifr_name, name, IFNAMSIZ);
40         ifr.ifr_data = (caddr_t) &ioc;
41
42         return ioctl(ioctl_socket, SIOCDEVPRIVATE, &ifr);
43 }
44
45 static struct wl_maclist * wl_read_assoclist(const char *ifname)
46 {
47         struct wl_maclist *macs;
48         int maclen = 4 + WL_MAX_STA_COUNT * 6;
49
50         if( (macs = (struct wl_maclist *) malloc(maclen)) != NULL )
51         {
52                 memset(macs, 0, maclen);
53                 macs->count = WL_MAX_STA_COUNT;
54
55                 if( !wl_ioctl(ifname, WLC_GET_ASSOCLIST, macs, maclen) )
56                         return macs;
57
58                 free(macs);
59         }
60
61         return NULL;
62 }
63
64
65 int wl_probe(const char *ifname)
66 {
67         int magic;
68
69         if( !wl_ioctl(ifname, WLC_GET_MAGIC, &magic, sizeof(magic)) && (magic == WLC_IOCTL_MAGIC))
70                 return 1;
71
72         return 0;
73 }
74
75 int wl_get_mode(const char *ifname, char *buf)
76 {
77         int ret = -1;
78         int ap, infra, passive;
79
80         if( (ret = wl_ioctl(ifname, WLC_GET_AP, &ap, sizeof(ap))) )
81                 return ret;
82
83         if( (ret = wl_ioctl(ifname, WLC_GET_INFRA, &infra, sizeof(infra))) )
84                 return ret;
85
86         if( (ret = wl_ioctl(ifname, WLC_GET_PASSIVE, &passive, sizeof(passive))) )
87                 return ret;
88
89         if( passive )
90                 sprintf(buf, "Monitor");
91         else if( !infra )
92                 sprintf(buf, "Ad-Hoc");
93         else if( ap )
94                 sprintf(buf, "Master");
95         else
96                 sprintf(buf, "Client");
97
98         return 0;
99 }
100
101 int wl_get_ssid(const char *ifname, char *buf)
102 {
103         int ret = -1;
104         wlc_ssid_t ssid;
105
106         if( !(ret = wl_ioctl(ifname, WLC_GET_SSID, &ssid, sizeof(ssid))) )
107                 memcpy(buf, ssid.ssid, ssid.ssid_len);
108
109         return ret;
110 }
111
112 int wl_get_bssid(const char *ifname, char *buf)
113 {
114         int ret = -1;
115         char bssid[6];
116
117         if( !(ret = wl_ioctl(ifname, WLC_GET_BSSID, bssid, 6)) )
118                 sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X",
119                         (uint8_t)bssid[0], (uint8_t)bssid[1], (uint8_t)bssid[2],
120                         (uint8_t)bssid[3], (uint8_t)bssid[4], (uint8_t)bssid[5]
121                 );
122
123         return ret;
124 }
125
126 int wl_get_channel(const char *ifname, int *buf)
127 {
128         return wl_ioctl(ifname, WLC_GET_CHANNEL, buf, sizeof(buf));
129 }
130
131 int wl_get_bitrate(const char *ifname, int *buf)
132 {
133         int ret = -1;
134         int rate = 0;
135
136         if( !(ret = wl_ioctl(ifname, WLC_GET_RATE, &rate, sizeof(rate))) && (rate > 0))
137                 *buf = rate / 2;
138
139         return ret;
140 }
141
142 int wl_get_signal(const char *ifname, int *buf)
143 {
144         unsigned int ap, rssi, i, rssi_count;
145         int ioctl_req_version = 0x2000;
146         char tmp[WLC_IOCTL_MAXLEN];
147         struct wl_maclist *macs = NULL;
148         wl_sta_rssi_t starssi;
149
150         memset(tmp, 0, WLC_IOCTL_MAXLEN);
151         memcpy(tmp, &ioctl_req_version, sizeof(ioctl_req_version));
152
153         wl_ioctl(ifname, WLC_GET_BSS_INFO, tmp, WLC_IOCTL_MAXLEN);
154
155         if( !wl_ioctl(ifname, WLC_GET_AP, &ap, sizeof(ap)) && !ap )
156         {
157                 *buf = tmp[WL_BSS_RSSI_OFFSET];
158         }
159         else
160         {
161                 rssi = rssi_count = 0;
162
163                 /* Calculate average rssi from conntected stations */
164                 if( (macs = wl_read_assoclist(ifname)) != NULL )
165                 {
166                         for( i = 0; i < macs->count; i++ )
167                         {
168                                 memcpy(starssi.mac, &macs->ea[i], 6);
169
170                                 if( !wl_ioctl(ifname, WLC_GET_RSSI, &starssi, 12) )
171                                 {
172                                         rssi -= starssi.rssi;
173                                         rssi_count++;
174                                 }
175                         }
176
177                         free(macs);
178                 }
179
180                 *buf = (rssi == 0 || rssi_count == 0) ? 1 : -(rssi / rssi_count);
181         }
182
183         return 0;
184 }
185
186 int wl_get_noise(const char *ifname, int *buf)
187 {
188         unsigned int ap, noise;
189         int ioctl_req_version = 0x2000;
190         char tmp[WLC_IOCTL_MAXLEN];
191
192         memset(tmp, 0, WLC_IOCTL_MAXLEN);
193         memcpy(tmp, &ioctl_req_version, sizeof(ioctl_req_version));
194
195         wl_ioctl(ifname, WLC_GET_BSS_INFO, tmp, WLC_IOCTL_MAXLEN);
196
197         if ((wl_ioctl(ifname, WLC_GET_AP, &ap, sizeof(ap)) < 0) || ap)
198         {
199                 if (wl_ioctl(ifname, WLC_GET_PHY_NOISE, &noise, sizeof(noise)) < 0)
200                         noise = 0;
201         }
202         else
203         {
204                 noise = tmp[WL_BSS_NOISE_OFFSET];
205         }
206
207         *buf = noise;
208
209         return 0;
210 }
211
212 int wl_get_quality(const char *ifname, int *buf)
213 {
214         return wext_get_quality(ifname, buf);
215 }
216
217 int wl_get_quality_max(const char *ifname, int *buf)
218 {
219         return wext_get_quality_max(ifname, buf);
220 }
221
222 int wl_get_enctype(const char *ifname, char *buf)
223 {
224         uint32_t wsec, wpa;
225         char algo[9];
226
227         if( wl_ioctl(ifname, WLC_GET_WPA_AUTH, &wpa, sizeof(uint32_t)) ||
228             wl_ioctl(ifname, WLC_GET_WSEC, &wsec, sizeof(uint32_t)) )
229                         return -1;
230
231         switch(wsec)
232         {
233                 case 2:
234                         sprintf(algo, "TKIP");
235                         break;
236
237                 case 4:
238                         sprintf(algo, "CCMP");
239                         break;
240
241                 case 6:
242                         sprintf(algo, "TKIP, CCMP");
243                         break;
244         }
245
246         switch(wpa)
247         {
248                 case 0:
249                         sprintf(buf, "%s", wsec ? "WEP" : "None");
250                         break;
251
252                 case 2:
253                         sprintf(buf, "WPA 802.1X (%s)", algo);
254                         break;
255
256                 case 4:
257                         sprintf(buf, "WPA PSK (%s)", algo);
258                         break;
259
260                 case 32:
261                         sprintf(buf, "802.1X (%s)", algo);
262                         break;
263
264                 case 64:
265                         sprintf(buf, "WPA2 802.1X (%s)", algo);
266                         break;
267
268                 case 66:
269                         sprintf(buf, "mixed WPA/WPA2 802.1X (%s)", algo);
270                         break;
271
272                 case 128:
273                         sprintf(buf, "WPA2 PSK (%s)", algo);
274                         break;
275
276                 case 132:
277                         sprintf(buf, "mixed WPA/WPA2 PSK (%s)", algo);
278                         break;
279
280                 default:
281                         sprintf(buf, "Unkown");
282         }
283
284         return 0;
285 }
286
287 int wl_get_assoclist(const char *ifname, char *buf, int *len)
288 {
289         int i, j, noise;
290         int ap, infra, passive;
291         char line[128];
292         char macstr[18];
293         char devstr[IFNAMSIZ];
294         struct wl_maclist *macs;
295         struct wl_sta_rssi rssi;
296         struct iwinfo_assoclist_entry entry;
297         FILE *arp;
298
299         ap = infra = passive = 0;
300
301         wl_ioctl(ifname, WLC_GET_AP, &ap, sizeof(ap));
302         wl_ioctl(ifname, WLC_GET_INFRA, &infra, sizeof(infra));
303         wl_ioctl(ifname, WLC_GET_PASSIVE, &passive, sizeof(passive));
304
305         if( wl_get_noise(ifname, &noise) )
306                 noise = 0;
307
308         if( (ap || infra || passive) && ((macs = wl_read_assoclist(ifname)) != NULL) )
309         {
310                 for( i = 0, j = 0; i < macs->count; i++, j += sizeof(struct iwinfo_assoclist_entry) )
311                 {
312                         memcpy(rssi.mac, &macs->ea[i], 6);
313
314                         if( !wl_ioctl(ifname, WLC_GET_RSSI, &rssi, sizeof(struct wl_sta_rssi)) )
315                                 entry.signal = (rssi.rssi - 0x100);
316                         else
317                                 entry.signal = 0;
318
319                         entry.noise = noise;
320                         memcpy(entry.mac, &macs->ea[i], 6);
321                         memcpy(&buf[j], &entry, sizeof(entry));
322                 }
323
324                 *len = j;
325                 free(macs);
326                 return 0;
327         }
328         else if( (arp = fopen("/proc/net/arp", "r")) != NULL )
329         {
330                 j = 0;
331
332                 while( fgets(line, sizeof(line), arp) != NULL )
333                 {
334                         if( sscanf(line, "%*s 0x%*d 0x%*d %17s %*s %s", macstr, devstr) && !strcmp(devstr, ifname) )
335                         {
336                                 rssi.mac[0] = strtol(&macstr[0],  NULL, 16);
337                                 rssi.mac[1] = strtol(&macstr[3],  NULL, 16);
338                                 rssi.mac[2] = strtol(&macstr[6],  NULL, 16);
339                                 rssi.mac[3] = strtol(&macstr[9],  NULL, 16);
340                                 rssi.mac[4] = strtol(&macstr[12], NULL, 16);
341                                 rssi.mac[5] = strtol(&macstr[15], NULL, 16);
342
343                                 if( !wl_ioctl(ifname, WLC_GET_RSSI, &rssi, sizeof(struct wl_sta_rssi)) )
344                                         entry.signal = (rssi.rssi - 0x100);
345                                 else
346                                         entry.signal = 0;
347
348                                 entry.noise = noise;
349                                 memcpy(entry.mac, rssi.mac, 6);
350                                 memcpy(&buf[j], &entry, sizeof(entry));
351
352                                 j += sizeof(entry);
353                         }
354                 }
355
356                 *len = j;
357                 (void) fclose(arp);
358                 return 0;
359         }
360
361         return -1;
362 }
363