tizen beta release
[framework/connectivity/wpasupplicant.git] / wpa_supplicant / bss.c
1 /*
2  * BSS table
3  * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "utils/includes.h"
16
17 #include "utils/common.h"
18 #include "utils/eloop.h"
19 #include "common/ieee802_11_defs.h"
20 #include "drivers/driver.h"
21 #include "wpa_supplicant_i.h"
22 #include "config.h"
23 #include "notify.h"
24 #include "scan.h"
25 #include "bss.h"
26
27
28 /**
29  * WPA_BSS_EXPIRATION_PERIOD - Period of expiration run in seconds
30  */
31 #define WPA_BSS_EXPIRATION_PERIOD 10
32
33 /**
34  * WPA_BSS_EXPIRATION_AGE - BSS entry age after which it can be expired
35  *
36  * This value control the time in seconds after which a BSS entry gets removed
37  * if it has not been updated or is not in use.
38  */
39 #define WPA_BSS_EXPIRATION_AGE 180
40
41 /**
42  * WPA_BSS_EXPIRATION_SCAN_COUNT - Expire BSS after number of scans
43  *
44  * If the BSS entry has not been seen in this many scans, it will be removed.
45  * Value 1 means that the entry is removed after the first scan without the
46  * BSSID being seen. Larger values can be used to avoid BSS entries
47  * disappearing if they are not visible in every scan (e.g., low signal quality
48  * or interference).
49  */
50 #define WPA_BSS_EXPIRATION_SCAN_COUNT 2
51
52 #define WPA_BSS_FREQ_CHANGED_FLAG       BIT(0)
53 #define WPA_BSS_SIGNAL_CHANGED_FLAG     BIT(1)
54 #define WPA_BSS_PRIVACY_CHANGED_FLAG    BIT(2)
55 #define WPA_BSS_MODE_CHANGED_FLAG       BIT(3)
56 #define WPA_BSS_WPAIE_CHANGED_FLAG      BIT(4)
57 #define WPA_BSS_RSNIE_CHANGED_FLAG      BIT(5)
58 #define WPA_BSS_WPS_CHANGED_FLAG        BIT(6)
59 #define WPA_BSS_RATES_CHANGED_FLAG      BIT(7)
60 #define WPA_BSS_IES_CHANGED_FLAG        BIT(8)
61
62
63 static void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
64 {
65         dl_list_del(&bss->list);
66         dl_list_del(&bss->list_id);
67         wpa_s->num_bss--;
68         wpa_printf(MSG_DEBUG, "BSS: Remove id %u BSSID " MACSTR " SSID '%s'",
69                    bss->id, MAC2STR(bss->bssid),
70                    wpa_ssid_txt(bss->ssid, bss->ssid_len));
71         wpas_notify_bss_removed(wpa_s, bss->bssid, bss->id);
72         os_free(bss);
73 }
74
75
76 struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
77                              const u8 *ssid, size_t ssid_len)
78 {
79         struct wpa_bss *bss;
80         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
81                 if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
82                     bss->ssid_len == ssid_len &&
83                     os_memcmp(bss->ssid, ssid, ssid_len) == 0)
84                         return bss;
85         }
86         return NULL;
87 }
88
89
90 static void wpa_bss_copy_res(struct wpa_bss *dst, struct wpa_scan_res *src)
91 {
92         os_time_t usec;
93
94         dst->flags = src->flags;
95         os_memcpy(dst->bssid, src->bssid, ETH_ALEN);
96         dst->freq = src->freq;
97         dst->beacon_int = src->beacon_int;
98         dst->caps = src->caps;
99         dst->qual = src->qual;
100         dst->noise = src->noise;
101         dst->level = src->level;
102         dst->tsf = src->tsf;
103
104         os_get_time(&dst->last_update);
105         dst->last_update.sec -= src->age / 1000;
106         usec = (src->age % 1000) * 1000;
107         if (dst->last_update.usec < usec) {
108                 dst->last_update.sec--;
109                 dst->last_update.usec += 1000000;
110         }
111         dst->last_update.usec -= usec;
112 }
113
114
115 static void wpa_bss_add(struct wpa_supplicant *wpa_s,
116                         const u8 *ssid, size_t ssid_len,
117                         struct wpa_scan_res *res)
118 {
119         struct wpa_bss *bss;
120
121         bss = os_zalloc(sizeof(*bss) + res->ie_len + res->beacon_ie_len);
122         if (bss == NULL)
123                 return;
124         bss->id = wpa_s->bss_next_id++;
125         bss->last_update_idx = wpa_s->bss_update_idx;
126         wpa_bss_copy_res(bss, res);
127         os_memcpy(bss->ssid, ssid, ssid_len);
128         bss->ssid_len = ssid_len;
129         bss->ie_len = res->ie_len;
130         bss->beacon_ie_len = res->beacon_ie_len;
131         os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
132
133         dl_list_add_tail(&wpa_s->bss, &bss->list);
134         dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
135         wpa_s->num_bss++;
136         wpa_printf(MSG_DEBUG, "BSS: Add new id %u BSSID " MACSTR " SSID '%s'",
137                    bss->id, MAC2STR(bss->bssid), wpa_ssid_txt(ssid, ssid_len));
138         wpas_notify_bss_added(wpa_s, bss->bssid, bss->id);
139         if (wpa_s->num_bss > wpa_s->conf->bss_max_count) {
140                 /* Remove the oldest entry */
141                 wpa_bss_remove(wpa_s, dl_list_first(&wpa_s->bss,
142                                                     struct wpa_bss, list));
143         }
144 }
145
146
147 static int are_ies_equal(const struct wpa_bss *old,
148                          const struct wpa_scan_res *new, u32 ie)
149 {
150         const u8 *old_ie, *new_ie;
151         struct wpabuf *old_ie_buff = NULL;
152         struct wpabuf *new_ie_buff = NULL;
153         int new_ie_len, old_ie_len, ret, is_multi;
154
155         switch (ie) {
156         case WPA_IE_VENDOR_TYPE:
157                 old_ie = wpa_bss_get_vendor_ie(old, ie);
158                 new_ie = wpa_scan_get_vendor_ie(new, ie);
159                 is_multi = 0;
160                 break;
161         case WPS_IE_VENDOR_TYPE:
162                 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie);
163                 new_ie_buff = wpa_scan_get_vendor_ie_multi(new, ie);
164                 is_multi = 1;
165                 break;
166         case WLAN_EID_RSN:
167         case WLAN_EID_SUPP_RATES:
168         case WLAN_EID_EXT_SUPP_RATES:
169                 old_ie = wpa_bss_get_ie(old, ie);
170                 new_ie = wpa_scan_get_ie(new, ie);
171                 is_multi = 0;
172                 break;
173         default:
174                 wpa_printf(MSG_DEBUG, "bss: %s: cannot compare IEs", __func__);
175                 return 0;
176         }
177
178         if (is_multi) {
179                 /* in case of multiple IEs stored in buffer */
180                 old_ie = old_ie_buff ? wpabuf_head_u8(old_ie_buff) : NULL;
181                 new_ie = new_ie_buff ? wpabuf_head_u8(new_ie_buff) : NULL;
182                 old_ie_len = old_ie_buff ? wpabuf_len(old_ie_buff) : 0;
183                 new_ie_len = new_ie_buff ? wpabuf_len(new_ie_buff) : 0;
184         } else {
185                 /* in case of single IE */
186                 old_ie_len = old_ie ? old_ie[1] + 2 : 0;
187                 new_ie_len = new_ie ? new_ie[1] + 2 : 0;
188         }
189
190         ret = (old_ie_len == new_ie_len &&
191                os_memcmp(old_ie, new_ie, old_ie_len) == 0);
192
193         wpabuf_free(old_ie_buff);
194         wpabuf_free(new_ie_buff);
195
196         return ret;
197 }
198
199
200 static u32 wpa_bss_compare_res(const struct wpa_bss *old,
201                                const struct wpa_scan_res *new)
202 {
203         u32 changes = 0;
204         int caps_diff = old->caps ^ new->caps;
205
206         if (old->freq != new->freq)
207                 changes |= WPA_BSS_FREQ_CHANGED_FLAG;
208
209         if (old->level != new->level)
210                 changes |= WPA_BSS_SIGNAL_CHANGED_FLAG;
211
212         if (caps_diff & IEEE80211_CAP_PRIVACY)
213                 changes |= WPA_BSS_PRIVACY_CHANGED_FLAG;
214
215         if (caps_diff & IEEE80211_CAP_IBSS)
216                 changes |= WPA_BSS_MODE_CHANGED_FLAG;
217
218         if (old->ie_len == new->ie_len &&
219             os_memcmp(old + 1, new + 1, old->ie_len) == 0)
220                 return changes;
221         changes |= WPA_BSS_IES_CHANGED_FLAG;
222
223         if (!are_ies_equal(old, new, WPA_IE_VENDOR_TYPE))
224                 changes |= WPA_BSS_WPAIE_CHANGED_FLAG;
225
226         if (!are_ies_equal(old, new, WLAN_EID_RSN))
227                 changes |= WPA_BSS_RSNIE_CHANGED_FLAG;
228
229         if (!are_ies_equal(old, new, WPS_IE_VENDOR_TYPE))
230                 changes |= WPA_BSS_WPS_CHANGED_FLAG;
231
232         if (!are_ies_equal(old, new, WLAN_EID_SUPP_RATES) ||
233             !are_ies_equal(old, new, WLAN_EID_EXT_SUPP_RATES))
234                 changes |= WPA_BSS_RATES_CHANGED_FLAG;
235
236         return changes;
237 }
238
239
240 static void notify_bss_changes(struct wpa_supplicant *wpa_s, u32 changes,
241                                const struct wpa_bss *bss)
242 {
243         if (changes & WPA_BSS_FREQ_CHANGED_FLAG)
244                 wpas_notify_bss_freq_changed(wpa_s, bss->id);
245
246         if (changes & WPA_BSS_SIGNAL_CHANGED_FLAG)
247                 wpas_notify_bss_signal_changed(wpa_s, bss->id);
248
249         if (changes & WPA_BSS_PRIVACY_CHANGED_FLAG)
250                 wpas_notify_bss_privacy_changed(wpa_s, bss->id);
251
252         if (changes & WPA_BSS_MODE_CHANGED_FLAG)
253                 wpas_notify_bss_mode_changed(wpa_s, bss->id);
254
255         if (changes & WPA_BSS_WPAIE_CHANGED_FLAG)
256                 wpas_notify_bss_wpaie_changed(wpa_s, bss->id);
257
258         if (changes & WPA_BSS_RSNIE_CHANGED_FLAG)
259                 wpas_notify_bss_rsnie_changed(wpa_s, bss->id);
260
261         if (changes & WPA_BSS_WPS_CHANGED_FLAG)
262                 wpas_notify_bss_wps_changed(wpa_s, bss->id);
263
264         if (changes & WPA_BSS_IES_CHANGED_FLAG)
265                 wpas_notify_bss_ies_changed(wpa_s, bss->id);
266
267         if (changes & WPA_BSS_RATES_CHANGED_FLAG)
268                 wpas_notify_bss_rates_changed(wpa_s, bss->id);
269 }
270
271
272 static void wpa_bss_update(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
273                            struct wpa_scan_res *res)
274 {
275         u32 changes;
276
277         changes = wpa_bss_compare_res(bss, res);
278         bss->scan_miss_count = 0;
279         bss->last_update_idx = wpa_s->bss_update_idx;
280         wpa_bss_copy_res(bss, res);
281         /* Move the entry to the end of the list */
282         dl_list_del(&bss->list);
283         if (bss->ie_len + bss->beacon_ie_len >=
284             res->ie_len + res->beacon_ie_len) {
285                 os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
286                 bss->ie_len = res->ie_len;
287                 bss->beacon_ie_len = res->beacon_ie_len;
288         } else {
289                 struct wpa_bss *nbss;
290                 struct dl_list *prev = bss->list_id.prev;
291                 dl_list_del(&bss->list_id);
292                 nbss = os_realloc(bss, sizeof(*bss) + res->ie_len +
293                                   res->beacon_ie_len);
294                 if (nbss) {
295                         bss = nbss;
296                         os_memcpy(bss + 1, res + 1,
297                                   res->ie_len + res->beacon_ie_len);
298                         bss->ie_len = res->ie_len;
299                         bss->beacon_ie_len = res->beacon_ie_len;
300                 }
301                 dl_list_add(prev, &bss->list_id);
302         }
303         dl_list_add_tail(&wpa_s->bss, &bss->list);
304
305         notify_bss_changes(wpa_s, changes, bss);
306 }
307
308
309 static int wpa_bss_in_use(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
310 {
311         return bss == wpa_s->current_bss ||
312                 os_memcmp(bss->bssid, wpa_s->bssid, ETH_ALEN) == 0 ||
313                 os_memcmp(bss->bssid, wpa_s->pending_bssid, ETH_ALEN) == 0;
314 }
315
316
317 void wpa_bss_update_start(struct wpa_supplicant *wpa_s)
318 {
319         wpa_s->bss_update_idx++;
320         wpa_printf(MSG_DEBUG, "BSS: Start scan result update %u",
321                    wpa_s->bss_update_idx);
322 }
323
324
325 void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
326                              struct wpa_scan_res *res)
327 {
328         const u8 *ssid;
329         struct wpa_bss *bss;
330
331         ssid = wpa_scan_get_ie(res, WLAN_EID_SSID);
332         if (ssid == NULL) {
333                 wpa_printf(MSG_DEBUG, "BSS: No SSID IE included for " MACSTR,
334                            MAC2STR(res->bssid));
335                 return;
336         }
337         if (ssid[1] > 32) {
338                 wpa_printf(MSG_DEBUG, "BSS: Too long SSID IE included for "
339                            MACSTR, MAC2STR(res->bssid));
340                 return;
341         }
342
343         /* TODO: add option for ignoring BSSes we are not interested in
344          * (to save memory) */
345         bss = wpa_bss_get(wpa_s, res->bssid, ssid + 2, ssid[1]);
346         if (bss == NULL)
347                 wpa_bss_add(wpa_s, ssid + 2, ssid[1], res);
348         else
349                 wpa_bss_update(wpa_s, bss, res);
350 }
351
352 /*
353  * August 1st, 2011 TIZEN
354  * This part is changed to reduce associating duration.
355  */
356 struct wpa_bss * wpa_bss_check_scan_res(struct wpa_supplicant *wpa_s,
357                              const u8 *ssid)
358 {
359         struct wpa_bss *bss = NULL;
360         struct wpa_bss *compare = NULL;
361         dl_list_for_each(compare, &wpa_s->bss, struct wpa_bss, list) {
362                 wpa_printf(MSG_DEBUG, "==================================================");
363                 wpa_printf(MSG_DEBUG, "buffer's ssid '%s', request ssid '%s' ", compare->ssid, ssid);
364                 wpa_printf(MSG_DEBUG, "==================================================");
365                 if ( os_strcmp(compare->ssid, ssid) == 0)
366                 {
367                         if(bss == NULL)
368                                 bss = compare;
369                         if(compare->level > bss->level)
370                         {
371                                 wpa_printf(MSG_DEBUG,"current signal level %d finded signal level %d",bss->level, compare->level);
372                                 bss = compare;
373                         }
374                 }
375         }
376
377         return bss;
378 }
379
380
381
382 static int wpa_bss_included_in_scan(const struct wpa_bss *bss,
383                                     const struct scan_info *info)
384 {
385         int found;
386         size_t i;
387
388         if (info == NULL)
389                 return 1;
390
391         if (info->num_freqs) {
392                 found = 0;
393                 for (i = 0; i < info->num_freqs; i++) {
394                         if (bss->freq == info->freqs[i]) {
395                                 found = 1;
396                                 break;
397                         }
398                 }
399                 if (!found)
400                         return 0;
401         }
402
403         if (info->num_ssids) {
404                 found = 0;
405                 for (i = 0; i < info->num_ssids; i++) {
406                         const struct wpa_driver_scan_ssid *s = &info->ssids[i];
407                         if ((s->ssid == NULL || s->ssid_len == 0) ||
408                             (s->ssid_len == bss->ssid_len &&
409                              os_memcmp(s->ssid, bss->ssid, bss->ssid_len) ==
410                              0)) {
411                                 found = 1;
412                                 break;
413                         }
414                 }
415                 if (!found)
416                         return 0;
417         }
418
419         return 1;
420 }
421
422
423 void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
424                         int new_scan)
425 {
426         struct wpa_bss *bss, *n;
427
428         if (!new_scan)
429                 return; /* do not expire entries without new scan */
430
431         dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
432                 if (wpa_bss_in_use(wpa_s, bss))
433                         continue;
434                 if (!wpa_bss_included_in_scan(bss, info))
435                         continue; /* expire only BSSes that were scanned */
436                 if (bss->last_update_idx < wpa_s->bss_update_idx)
437                         bss->scan_miss_count++;
438                 if (bss->scan_miss_count >= WPA_BSS_EXPIRATION_SCAN_COUNT) {
439                         wpa_printf(MSG_DEBUG, "BSS: Expire BSS %u due to no "
440                                    "match in scan", bss->id);
441                         wpa_bss_remove(wpa_s, bss);
442                 }
443         }
444 }
445
446
447 static void wpa_bss_timeout(void *eloop_ctx, void *timeout_ctx)
448 {
449         struct wpa_supplicant *wpa_s = eloop_ctx;
450         struct wpa_bss *bss, *n;
451         struct os_time t;
452
453         if (dl_list_empty(&wpa_s->bss))
454                 return;
455
456         os_get_time(&t);
457         t.sec -= WPA_BSS_EXPIRATION_AGE;
458
459         dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
460                 if (wpa_bss_in_use(wpa_s, bss))
461                         continue;
462
463                 if (os_time_before(&bss->last_update, &t)) {
464                         wpa_printf(MSG_DEBUG, "BSS: Expire BSS %u due to age",
465                                    bss->id);
466                         wpa_bss_remove(wpa_s, bss);
467                 } else
468                         break;
469         }
470         eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
471                                wpa_bss_timeout, wpa_s, NULL);
472 }
473
474
475 int wpa_bss_init(struct wpa_supplicant *wpa_s)
476 {
477         dl_list_init(&wpa_s->bss);
478         dl_list_init(&wpa_s->bss_id);
479         eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
480                                wpa_bss_timeout, wpa_s, NULL);
481         return 0;
482 }
483
484
485 void wpa_bss_deinit(struct wpa_supplicant *wpa_s)
486 {
487         struct wpa_bss *bss, *n;
488         eloop_cancel_timeout(wpa_bss_timeout, wpa_s, NULL);
489         if (wpa_s->bss.next == NULL)
490                 return; /* BSS table not yet initialized */
491         dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list)
492                 wpa_bss_remove(wpa_s, bss);
493 }
494
495
496 struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
497                                    const u8 *bssid)
498 {
499         struct wpa_bss *bss;
500         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
501                 if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0)
502                         return bss;
503         }
504         return NULL;
505 }
506
507
508 struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
509 {
510         struct wpa_bss *bss;
511         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
512                 if (bss->id == id)
513                         return bss;
514         }
515         return NULL;
516 }
517
518
519 const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie)
520 {
521         const u8 *end, *pos;
522
523         pos = (const u8 *) (bss + 1);
524         end = pos + bss->ie_len;
525
526         while (pos + 1 < end) {
527                 if (pos + 2 + pos[1] > end)
528                         break;
529                 if (pos[0] == ie)
530                         return pos;
531                 pos += 2 + pos[1];
532         }
533
534         return NULL;
535 }
536
537
538 const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type)
539 {
540         const u8 *end, *pos;
541
542         pos = (const u8 *) (bss + 1);
543         end = pos + bss->ie_len;
544
545         while (pos + 1 < end) {
546                 if (pos + 2 + pos[1] > end)
547                         break;
548                 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
549                     vendor_type == WPA_GET_BE32(&pos[2]))
550                         return pos;
551                 pos += 2 + pos[1];
552         }
553
554         return NULL;
555 }
556
557
558 struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
559                                             u32 vendor_type)
560 {
561         struct wpabuf *buf;
562         const u8 *end, *pos;
563
564         buf = wpabuf_alloc(bss->ie_len);
565         if (buf == NULL)
566                 return NULL;
567
568         pos = (const u8 *) (bss + 1);
569         end = pos + bss->ie_len;
570
571         while (pos + 1 < end) {
572                 if (pos + 2 + pos[1] > end)
573                         break;
574                 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
575                     vendor_type == WPA_GET_BE32(&pos[2]))
576                         wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
577                 pos += 2 + pos[1];
578         }
579
580         if (wpabuf_len(buf) == 0) {
581                 wpabuf_free(buf);
582                 buf = NULL;
583         }
584
585         return buf;
586 }
587
588
589 int wpa_bss_get_max_rate(const struct wpa_bss *bss)
590 {
591         int rate = 0;
592         const u8 *ie;
593         int i;
594
595         ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
596         for (i = 0; ie && i < ie[1]; i++) {
597                 if ((ie[i + 2] & 0x7f) > rate)
598                         rate = ie[i + 2] & 0x7f;
599         }
600
601         ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
602         for (i = 0; ie && i < ie[1]; i++) {
603                 if ((ie[i + 2] & 0x7f) > rate)
604                         rate = ie[i + 2] & 0x7f;
605         }
606
607         return rate;
608 }
609
610
611 int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates)
612 {
613         const u8 *ie, *ie2;
614         int i, j;
615         unsigned int len;
616         u8 *r;
617
618         ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
619         ie2 = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
620
621         len = (ie ? ie[1] : 0) + (ie2 ? ie2[1] : 0);
622
623         r = os_malloc(len);
624         if (!r)
625                 return -1;
626
627         for (i = 0; ie && i < ie[1]; i++)
628                 r[i] = ie[i + 2] & 0x7f;
629
630         for (j = 0; ie2 && j < ie2[1]; j++)
631                 r[i + j] = ie2[j + 2] & 0x7f;
632
633         *rates = r;
634         return len;
635 }