2 * Copyright 1997, 1998, 1999
3 * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Bill Paul.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
32 * @(#) Copyright (c) 1997, 1998, 1999 Bill Paul. All rights reserved.
33 * $FreeBSD: src/usr.sbin/ancontrol/ancontrol.c,v 1.1.2.9 2003/02/01 03:25:13 ambrisko Exp $
36 #include <sys/types.h>
37 #include <sys/param.h>
38 #include <sys/socket.h>
39 #include <sys/ioctl.h>
42 #include <net/if_var.h>
43 #include <net/ethernet.h>
45 #include <dev/netif/an/if_aironet_ieee.h>
56 static int an_getval (const char *, struct an_req
*);
57 static void an_setval (const char *, struct an_req
*);
58 static void an_printwords(u_int16_t
*, int);
59 static void an_printspeeds(u_int8_t
*, int);
60 static void an_printbool(int);
61 static void an_printhex (char *, int);
62 static void an_printstr (char *, int);
63 static void an_dumpstatus(const char *);
64 static void an_dumpstats(const char *);
65 static void an_dumpconfig(const char *);
66 static void an_dumpcaps (const char *);
67 static void an_dumpssid (const char *);
68 static void an_dumpap (const char *);
69 static void an_setconfig(const char *, int, void *);
70 static void an_setssid (const char *, int, void *);
71 static void an_setap (const char *, int, void *);
72 static void an_setspeed (const char *, int, void *);
73 static void an_readkeyinfo(const char *);
75 static void an_zerocache(const char *);
76 static void an_readcache(const char *);
78 static int an_hex2int (char);
79 static void an_str2key (char *, struct an_ltv_key
*);
80 static void an_setkeys (const char *, char *, int);
81 static void an_enable_tx_key(const char *, char *);
82 static void an_enable_leap_mode(const char *, char *);
83 static void usage (char *);
84 static void an_dumprssimap(const char *);
86 #define ACT_DUMPSTATS 1
87 #define ACT_DUMPCONFIG 2
88 #define ACT_DUMPSTATUS 3
89 #define ACT_DUMPCAPS 4
90 #define ACT_DUMPSSID 5
93 #define ACT_SET_OPMODE 7
94 #define ACT_SET_SSID1 8
95 #define ACT_SET_SSID2 9
96 #define ACT_SET_SSID3 10
97 #define ACT_SET_FREQ 11
98 #define ACT_SET_AP1 12
99 #define ACT_SET_AP2 13
100 #define ACT_SET_AP3 14
101 #define ACT_SET_AP4 15
102 #define ACT_SET_DRIVERNAME 16
103 #define ACT_SET_SCANMODE 17
104 #define ACT_SET_TXRATE 18
105 #define ACT_SET_RTS_THRESH 19
106 #define ACT_SET_PWRSAVE 20
107 #define ACT_SET_DIVERSITY_RX 21
108 #define ACT_SET_DIVERSITY_TX 22
109 #define ACT_SET_RTS_RETRYLIM 23
110 #define ACT_SET_WAKE_DURATION 24
111 #define ACT_SET_BEACON_PERIOD 25
112 #define ACT_SET_TXPWR 26
113 #define ACT_SET_FRAG_THRESH 27
114 #define ACT_SET_NETJOIN 28
115 #define ACT_SET_MYNAME 29
116 #define ACT_SET_MAC 30
118 #define ACT_DUMPCACHE 31
119 #define ACT_ZEROCACHE 32
121 #define ACT_ENABLE_WEP 33
122 #define ACT_SET_KEY_TYPE 34
123 #define ACT_SET_KEYS 35
124 #define ACT_ENABLE_TX_KEY 36
125 #define ACT_SET_MONITOR_MODE 37
126 #define ACT_SET_LEAP_MODE 38
128 #define ACT_DUMPRSSIMAP 39
131 an_getval(const char *iface
, struct an_req
*areq
)
136 bzero((char *)&ifr
, sizeof(ifr
));
138 strlcpy(ifr
.ifr_name
, iface
, sizeof(ifr
.ifr_name
));
139 ifr
.ifr_data
= (caddr_t
)areq
;
141 s
= socket(AF_INET
, SOCK_DGRAM
, 0);
146 if (ioctl(s
, SIOCGAIRONET
, &ifr
) == -1) {
148 err(1, "SIOCGAIRONET");
157 an_setval(const char *iface
, struct an_req
*areq
)
162 bzero((char *)&ifr
, sizeof(ifr
));
164 strlcpy(ifr
.ifr_name
, iface
, sizeof(ifr
.ifr_name
));
165 ifr
.ifr_data
= (caddr_t
)areq
;
167 s
= socket(AF_INET
, SOCK_DGRAM
, 0);
172 if (ioctl(s
, SIOCSAIRONET
, &ifr
) == -1)
173 err(1, "SIOCSAIRONET");
181 an_printstr(char *str
, int len
)
185 for (i
= 0; i
< len
- 1; i
++) {
190 printf("[ %.*s ]", len
, str
);
196 an_printwords(u_int16_t
*w
, int len
)
201 for (i
= 0; i
< len
; i
++)
209 an_printspeeds(u_int8_t
*w
, int len
)
214 for (i
= 0; i
< len
&& w
[i
]; i
++)
215 printf("%2.1fMbps ", w
[i
] * 0.500);
222 an_printbool(int val
)
233 an_printhex(char *ptr
, int len
)
238 for (i
= 0; i
< len
; i
++) {
239 printf("%02x", ptr
[i
] & 0xFF);
249 an_dumpstatus(const char *iface
)
251 struct an_ltv_status
*sts
;
253 struct an_ltv_rssi_map an_rssimap
;
254 int rssimap_valid
= 0;
257 * Try to get RSSI to percent and dBM table
260 an_rssimap
.an_len
= sizeof(an_rssimap
);
261 an_rssimap
.an_type
= AN_RID_RSSI_MAP
;
262 rssimap_valid
= an_getval(iface
, (struct an_req
*)&an_rssimap
);
265 printf("RSSI table:\t\t[ present ]\n");
267 printf("RSSI table:\t\t[ not available ]\n");
269 areq
.an_len
= sizeof(areq
);
270 areq
.an_type
= AN_RID_STATUS
;
272 an_getval(iface
, &areq
);
274 sts
= (struct an_ltv_status
*)&areq
;
276 printf("MAC address:\t\t");
277 an_printhex((char *)&sts
->an_macaddr
, ETHER_ADDR_LEN
);
278 printf("\nOperating mode:\t\t[ ");
279 if (sts
->an_opmode
& AN_STATUS_OPMODE_CONFIGURED
)
280 printf("configured ");
281 if (sts
->an_opmode
& AN_STATUS_OPMODE_MAC_ENABLED
)
283 if (sts
->an_opmode
& AN_STATUS_OPMODE_RX_ENABLED
)
285 if (sts
->an_opmode
& AN_STATUS_OPMODE_IN_SYNC
)
287 if (sts
->an_opmode
& AN_STATUS_OPMODE_ASSOCIATED
)
288 printf("associated ");
289 if (sts
->an_opmode
& AN_STATUS_OPMODE_LEAP
)
291 if (sts
->an_opmode
& AN_STATUS_OPMODE_ERROR
)
294 printf("Error code:\t\t");
295 an_printhex((char *)&sts
->an_errcode
, 1);
297 printf("\nSignal strength:\t[ %d%% ]",
298 an_rssimap
.an_entries
[
299 sts
->an_normalized_strength
].an_rss_pct
);
301 printf("\nSignal strength:\t[ %d%% ]",
302 sts
->an_normalized_strength
);
303 printf("\nAverage Noise:\t\t[ %d%% ]",sts
->an_avg_noise_prev_min_pc
);
305 printf("\nSignal quality:\t\t[ %d%% ]",
306 an_rssimap
.an_entries
[
307 sts
->an_cur_signal_quality
].an_rss_pct
);
309 printf("\nSignal quality:\t\t[ %d ]",
310 sts
->an_cur_signal_quality
);
311 printf("\nMax Noise:\t\t[ %d%% ]",sts
->an_max_noise_prev_min_pc
);
313 * XXX: This uses the old definition of the rate field (units of
314 * 500kbps). Technically the new definition is that this field
315 * contains arbitrary values, but no devices which need this
316 * support exist and the IEEE seems to intend to use the old
317 * definition until they get something big so we'll keep using
318 * it as well because this will work with new cards with
321 printf("\nCurrent TX rate:\t[ %d%s ]", sts
->an_current_tx_rate
/ 2,
322 (sts
->an_current_tx_rate
% 2) ? ".5" : "");
323 printf("\nCurrent SSID:\t\t");
324 an_printstr((char *)&sts
->an_ssid
, sts
->an_ssidlen
);
325 printf("\nCurrent AP name:\t");
326 an_printstr((char *)&sts
->an_ap_name
, 16);
327 printf("\nCurrent BSSID:\t\t");
328 an_printhex((char *)&sts
->an_cur_bssid
, ETHER_ADDR_LEN
);
329 printf("\nBeacon period:\t\t");
330 an_printwords(&sts
->an_beacon_period
, 1);
331 printf("\nDTIM period:\t\t");
332 an_printwords(&sts
->an_dtim_period
, 1);
333 printf("\nATIM duration:\t\t");
334 an_printwords(&sts
->an_atim_duration
, 1);
335 printf("\nHOP period:\t\t");
336 an_printwords(&sts
->an_hop_period
, 1);
337 printf("\nChannel set:\t\t");
338 an_printwords(&sts
->an_channel_set
, 1);
339 printf("\nCurrent channel:\t");
340 an_printwords(&sts
->an_cur_channel
, 1);
341 printf("\nHops to backbone:\t");
342 an_printwords(&sts
->an_hops_to_backbone
, 1);
343 printf("\nTotal AP load:\t\t");
344 an_printwords(&sts
->an_ap_total_load
, 1);
345 printf("\nOur generated load:\t");
346 an_printwords(&sts
->an_our_generated_load
, 1);
347 printf("\nAccumulated ARL:\t");
348 an_printwords(&sts
->an_accumulated_arl
, 1);
354 an_dumpcaps(const char *iface
)
356 struct an_ltv_caps
*caps
;
360 areq
.an_len
= sizeof(areq
);
361 areq
.an_type
= AN_RID_CAPABILITIES
;
363 an_getval(iface
, &areq
);
365 caps
= (struct an_ltv_caps
*)&areq
;
367 printf("OUI:\t\t\t");
368 an_printhex((char *)&caps
->an_oui
, 3);
369 printf("\nProduct number:\t\t");
370 an_printwords(&caps
->an_prodnum
, 1);
371 printf("\nManufacturer name:\t");
372 an_printstr((char *)&caps
->an_manufname
, 32);
373 printf("\nProduce name:\t\t");
374 an_printstr((char *)&caps
->an_prodname
, 16);
375 printf("\nFirmware version:\t");
376 an_printstr((char *)&caps
->an_prodvers
, 1);
377 printf("\nOEM MAC address:\t");
378 an_printhex((char *)&caps
->an_oemaddr
, ETHER_ADDR_LEN
);
379 printf("\nAironet MAC address:\t");
380 an_printhex((char *)&caps
->an_aironetaddr
, ETHER_ADDR_LEN
);
381 printf("\nRadio type:\t\t[ ");
382 if (caps
->an_radiotype
& AN_RADIOTYPE_80211_FH
)
384 else if (caps
->an_radiotype
& AN_RADIOTYPE_80211_DS
)
386 else if (caps
->an_radiotype
& AN_RADIOTYPE_LM2000_DS
)
389 printf("unknown (%x)", caps
->an_radiotype
);
391 printf("\nRegulatory domain:\t");
392 an_printwords(&caps
->an_regdomain
, 1);
393 printf("\nAssigned CallID:\t");
394 an_printhex((char *)&caps
->an_callid
, 6);
395 printf("\nSupported speeds:\t");
396 an_printspeeds(caps
->an_rates
, 8);
397 printf("\nRX Diversity:\t\t[ ");
398 if (caps
->an_rx_diversity
== AN_DIVERSITY_FACTORY_DEFAULT
)
399 printf("factory default");
400 else if (caps
->an_rx_diversity
== AN_DIVERSITY_ANTENNA_1_ONLY
)
401 printf("antenna 1 only");
402 else if (caps
->an_rx_diversity
== AN_DIVERSITY_ANTENNA_2_ONLY
)
403 printf("antenna 2 only");
404 else if (caps
->an_rx_diversity
== AN_DIVERSITY_ANTENNA_1_AND_2
)
405 printf("antenna 1 and 2");
407 printf("\nTX Diversity:\t\t[ ");
408 if (caps
->an_tx_diversity
== AN_DIVERSITY_FACTORY_DEFAULT
)
409 printf("factory default");
410 else if (caps
->an_tx_diversity
== AN_DIVERSITY_ANTENNA_1_ONLY
)
411 printf("antenna 1 only");
412 else if (caps
->an_tx_diversity
== AN_DIVERSITY_ANTENNA_2_ONLY
)
413 printf("antenna 2 only");
414 else if (caps
->an_tx_diversity
== AN_DIVERSITY_ANTENNA_1_AND_2
)
415 printf("antenna 1 and 2");
417 printf("\nSupported power levels:\t");
418 an_printwords(caps
->an_tx_powerlevels
, 8);
419 printf("\nHardware revision:\t");
420 tmp
= ntohs(caps
->an_hwrev
);
421 an_printhex((char *)&tmp
, 2);
422 printf("\nSoftware revision:\t");
423 tmp
= ntohs(caps
->an_fwrev
);
424 an_printhex((char *)&tmp
, 2);
425 printf("\nSoftware subrevision:\t");
426 tmp
= ntohs(caps
->an_fwsubrev
);
427 an_printhex((char *)&tmp
, 2);
428 printf("\nInterface revision:\t");
429 tmp
= ntohs(caps
->an_ifacerev
);
430 an_printhex((char *)&tmp
, 2);
431 printf("\nBootblock revision:\t");
432 tmp
= ntohs(caps
->an_bootblockrev
);
433 an_printhex((char *)&tmp
, 2);
439 an_dumpstats(const char *iface
)
441 struct an_ltv_stats
*stats
;
445 areq
.an_len
= sizeof(areq
);
446 areq
.an_type
= AN_RID_32BITS_CUM
;
448 an_getval(iface
, &areq
);
450 ptr
= (caddr_t
)&areq
;
452 stats
= (struct an_ltv_stats
*)ptr
;
454 printf("RX overruns:\t\t\t\t\t[ %d ]\n", stats
->an_rx_overruns
);
455 printf("RX PLCP CSUM errors:\t\t\t\t[ %d ]\n",
456 stats
->an_rx_plcp_csum_errs
);
457 printf("RX PLCP format errors:\t\t\t\t[ %d ]\n",
458 stats
->an_rx_plcp_format_errs
);
459 printf("RX PLCP length errors:\t\t\t\t[ %d ]\n",
460 stats
->an_rx_plcp_len_errs
);
461 printf("RX MAC CRC errors:\t\t\t\t[ %d ]\n",
462 stats
->an_rx_mac_crc_errs
);
463 printf("RX MAC CRC OK:\t\t\t\t\t[ %d ]\n",
464 stats
->an_rx_mac_crc_ok
);
465 printf("RX WEP errors:\t\t\t\t\t[ %d ]\n",
466 stats
->an_rx_wep_errs
);
467 printf("RX WEP OK:\t\t\t\t\t[ %d ]\n",
468 stats
->an_rx_wep_ok
);
469 printf("Long retries:\t\t\t\t\t[ %d ]\n",
470 stats
->an_retry_long
);
471 printf("Short retries:\t\t\t\t\t[ %d ]\n",
472 stats
->an_retry_short
);
473 printf("Retries exhausted:\t\t\t\t[ %d ]\n",
474 stats
->an_retry_max
);
475 printf("Bad ACK:\t\t\t\t\t[ %d ]\n",
477 printf("Bad CTS:\t\t\t\t\t[ %d ]\n",
479 printf("RX good ACKs:\t\t\t\t\t[ %d ]\n",
480 stats
->an_rx_ack_ok
);
481 printf("RX good CTSs:\t\t\t\t\t[ %d ]\n",
482 stats
->an_rx_cts_ok
);
483 printf("TX good ACKs:\t\t\t\t\t[ %d ]\n",
484 stats
->an_tx_ack_ok
);
485 printf("TX good RTSs:\t\t\t\t\t[ %d ]\n",
486 stats
->an_tx_rts_ok
);
487 printf("TX good CTSs:\t\t\t\t\t[ %d ]\n",
488 stats
->an_tx_cts_ok
);
489 printf("LMAC multicasts transmitted:\t\t\t[ %d ]\n",
490 stats
->an_tx_lmac_mcasts
);
491 printf("LMAC broadcasts transmitted:\t\t\t[ %d ]\n",
492 stats
->an_tx_lmac_bcasts
);
493 printf("LMAC unicast frags transmitted:\t\t\t[ %d ]\n",
494 stats
->an_tx_lmac_ucast_frags
);
495 printf("LMAC unicasts transmitted:\t\t\t[ %d ]\n",
496 stats
->an_tx_lmac_ucasts
);
497 printf("Beacons transmitted:\t\t\t\t[ %d ]\n",
498 stats
->an_tx_beacons
);
499 printf("Beacons received:\t\t\t\t[ %d ]\n",
500 stats
->an_rx_beacons
);
501 printf("Single transmit collisions:\t\t\t[ %d ]\n",
502 stats
->an_tx_single_cols
);
503 printf("Multiple transmit collisions:\t\t\t[ %d ]\n",
504 stats
->an_tx_multi_cols
);
505 printf("Transmits without deferrals:\t\t\t[ %d ]\n",
506 stats
->an_tx_defers_no
);
507 printf("Transmits deferred due to protocol:\t\t[ %d ]\n",
508 stats
->an_tx_defers_prot
);
509 printf("Transmits deferred due to energy detect:\t\t[ %d ]\n",
510 stats
->an_tx_defers_energy
);
511 printf("RX duplicate frames/frags:\t\t\t[ %d ]\n",
513 printf("RX partial frames:\t\t\t\t[ %d ]\n",
514 stats
->an_rx_partial
);
515 printf("TX max lifetime exceeded:\t\t\t[ %d ]\n",
516 stats
->an_tx_too_old
);
517 printf("RX max lifetime exceeded:\t\t\t[ %d ]\n",
518 stats
->an_tx_too_old
);
519 printf("Sync lost due to too many missed beacons:\t[ %d ]\n",
520 stats
->an_lostsync_missed_beacons
);
521 printf("Sync lost due to ARL exceeded:\t\t\t[ %d ]\n",
522 stats
->an_lostsync_arl_exceeded
);
523 printf("Sync lost due to deauthentication:\t\t[ %d ]\n",
524 stats
->an_lostsync_deauthed
);
525 printf("Sync lost due to disassociation:\t\t[ %d ]\n",
526 stats
->an_lostsync_disassociated
);
527 printf("Sync lost due to excess change in TSF timing:\t[ %d ]\n",
528 stats
->an_lostsync_tsf_timing
);
529 printf("Host transmitted multicasts:\t\t\t[ %d ]\n",
530 stats
->an_tx_host_mcasts
);
531 printf("Host transmitted broadcasts:\t\t\t[ %d ]\n",
532 stats
->an_tx_host_bcasts
);
533 printf("Host transmitted unicasts:\t\t\t[ %d ]\n",
534 stats
->an_tx_host_ucasts
);
535 printf("Host transmission failures:\t\t\t[ %d ]\n",
536 stats
->an_tx_host_failed
);
537 printf("Host received multicasts:\t\t\t[ %d ]\n",
538 stats
->an_rx_host_mcasts
);
539 printf("Host received broadcasts:\t\t\t[ %d ]\n",
540 stats
->an_rx_host_bcasts
);
541 printf("Host received unicasts:\t\t\t\t[ %d ]\n",
542 stats
->an_rx_host_ucasts
);
543 printf("Host receive discards:\t\t\t\t[ %d ]\n",
544 stats
->an_rx_host_discarded
);
545 printf("HMAC transmitted multicasts:\t\t\t[ %d ]\n",
546 stats
->an_tx_hmac_mcasts
);
547 printf("HMAC transmitted broadcasts:\t\t\t[ %d ]\n",
548 stats
->an_tx_hmac_bcasts
);
549 printf("HMAC transmitted unicasts:\t\t\t[ %d ]\n",
550 stats
->an_tx_hmac_ucasts
);
551 printf("HMAC transmissions failed:\t\t\t[ %d ]\n",
552 stats
->an_tx_hmac_failed
);
553 printf("HMAC received multicasts:\t\t\t[ %d ]\n",
554 stats
->an_rx_hmac_mcasts
);
555 printf("HMAC received broadcasts:\t\t\t[ %d ]\n",
556 stats
->an_rx_hmac_bcasts
);
557 printf("HMAC received unicasts:\t\t\t\t[ %d ]\n",
558 stats
->an_rx_hmac_ucasts
);
559 printf("HMAC receive discards:\t\t\t\t[ %d ]\n",
560 stats
->an_rx_hmac_discarded
);
561 printf("HMAC transmits accepted:\t\t\t[ %d ]\n",
562 stats
->an_tx_hmac_accepted
);
563 printf("SSID mismatches:\t\t\t\t[ %d ]\n",
564 stats
->an_ssid_mismatches
);
565 printf("Access point mismatches:\t\t\t[ %d ]\n",
566 stats
->an_ap_mismatches
);
567 printf("Speed mismatches:\t\t\t\t[ %d ]\n",
568 stats
->an_rates_mismatches
);
569 printf("Authentication rejects:\t\t\t\t[ %d ]\n",
570 stats
->an_auth_rejects
);
571 printf("Authentication timeouts:\t\t\t[ %d ]\n",
572 stats
->an_auth_timeouts
);
573 printf("Association rejects:\t\t\t\t[ %d ]\n",
574 stats
->an_assoc_rejects
);
575 printf("Association timeouts:\t\t\t\t[ %d ]\n",
576 stats
->an_assoc_timeouts
);
577 printf("Management frames received:\t\t\t[ %d ]\n",
578 stats
->an_rx_mgmt_pkts
);
579 printf("Management frames transmitted:\t\t\t[ %d ]\n",
580 stats
->an_tx_mgmt_pkts
);
581 printf("Refresh frames received:\t\t\t[ %d ]\n",
582 stats
->an_rx_refresh_pkts
),
583 printf("Refresh frames transmitted:\t\t\t[ %d ]\n",
584 stats
->an_tx_refresh_pkts
),
585 printf("Poll frames received:\t\t\t\t[ %d ]\n",
586 stats
->an_rx_poll_pkts
);
587 printf("Poll frames transmitted:\t\t\t[ %d ]\n",
588 stats
->an_tx_poll_pkts
);
589 printf("Host requested sync losses:\t\t\t[ %d ]\n",
590 stats
->an_lostsync_hostreq
);
591 printf("Host transmitted bytes:\t\t\t\t[ %d ]\n",
592 stats
->an_host_tx_bytes
);
593 printf("Host received bytes:\t\t\t\t[ %d ]\n",
594 stats
->an_host_rx_bytes
);
595 printf("Uptime in microseconds:\t\t\t\t[ %d ]\n",
596 stats
->an_uptime_usecs
);
597 printf("Uptime in seconds:\t\t\t\t[ %d ]\n",
598 stats
->an_uptime_secs
);
599 printf("Sync lost due to better AP:\t\t\t[ %d ]\n",
600 stats
->an_lostsync_better_ap
);
606 an_dumpap(const char *iface
)
608 struct an_ltv_aplist
*ap
;
611 areq
.an_len
= sizeof(areq
);
612 areq
.an_type
= AN_RID_APLIST
;
614 an_getval(iface
, &areq
);
616 ap
= (struct an_ltv_aplist
*)&areq
;
617 printf("Access point 1:\t\t\t");
618 an_printhex((char *)&ap
->an_ap1
, ETHER_ADDR_LEN
);
619 printf("\nAccess point 2:\t\t\t");
620 an_printhex((char *)&ap
->an_ap2
, ETHER_ADDR_LEN
);
621 printf("\nAccess point 3:\t\t\t");
622 an_printhex((char *)&ap
->an_ap3
, ETHER_ADDR_LEN
);
623 printf("\nAccess point 4:\t\t\t");
624 an_printhex((char *)&ap
->an_ap4
, ETHER_ADDR_LEN
);
631 an_dumpssid(const char *iface
)
633 struct an_ltv_ssidlist
*ssid
;
636 areq
.an_len
= sizeof(areq
);
637 areq
.an_type
= AN_RID_SSIDLIST
;
639 an_getval(iface
, &areq
);
641 ssid
= (struct an_ltv_ssidlist
*)&areq
;
642 printf("SSID 1:\t\t\t[ %.*s ]\n", ssid
->an_ssid1_len
, ssid
->an_ssid1
);
643 printf("SSID 2:\t\t\t[ %.*s ]\n", ssid
->an_ssid2_len
, ssid
->an_ssid2
);
644 printf("SSID 3:\t\t\t[ %.*s ]\n", ssid
->an_ssid3_len
, ssid
->an_ssid3
);
650 an_dumpconfig(const char *iface
)
652 struct an_ltv_genconfig
*cfg
;
654 unsigned char diversity
;
656 areq
.an_len
= sizeof(areq
);
657 areq
.an_type
= AN_RID_ACTUALCFG
;
659 an_getval(iface
, &areq
);
661 cfg
= (struct an_ltv_genconfig
*)&areq
;
663 printf("Operating mode:\t\t\t\t[ ");
664 if ((cfg
->an_opmode
& 0x7) == AN_OPMODE_IBSS_ADHOC
)
666 if ((cfg
->an_opmode
& 0x7) == AN_OPMODE_INFRASTRUCTURE_STATION
)
667 printf("infrastructure");
668 if ((cfg
->an_opmode
& 0x7) == AN_OPMODE_AP
)
669 printf("access point");
670 if ((cfg
->an_opmode
& 0x7) == AN_OPMODE_AP_REPEATER
)
671 printf("access point repeater");
673 printf("\nReceive mode:\t\t\t\t[ ");
674 if ((cfg
->an_rxmode
& 0x7) == AN_RXMODE_BC_MC_ADDR
)
675 printf("broadcast/multicast/unicast");
676 if ((cfg
->an_rxmode
& 0x7) == AN_RXMODE_BC_ADDR
)
677 printf("broadcast/unicast");
678 if ((cfg
->an_rxmode
& 0x7) == AN_RXMODE_ADDR
)
680 if ((cfg
->an_rxmode
& 0x7) == AN_RXMODE_80211_MONITOR_CURBSS
)
681 printf("802.11 monitor, current BSSID");
682 if ((cfg
->an_rxmode
& 0x7) == AN_RXMODE_80211_MONITOR_ANYBSS
)
683 printf("802.11 monitor, any BSSID");
684 if ((cfg
->an_rxmode
& 0x7) == AN_RXMODE_LAN_MONITOR_CURBSS
)
685 printf("LAN monitor, current BSSID");
687 printf("\nFragment threshold:\t\t\t");
688 an_printwords(&cfg
->an_fragthresh
, 1);
689 printf("\nRTS threshold:\t\t\t\t");
690 an_printwords(&cfg
->an_rtsthresh
, 1);
691 printf("\nMAC address:\t\t\t\t");
692 an_printhex((char *)&cfg
->an_macaddr
, ETHER_ADDR_LEN
);
693 printf("\nSupported rates:\t\t\t");
694 an_printspeeds(cfg
->an_rates
, 8);
695 printf("\nShort retry limit:\t\t\t");
696 an_printwords(&cfg
->an_shortretry_limit
, 1);
697 printf("\nLong retry limit:\t\t\t");
698 an_printwords(&cfg
->an_longretry_limit
, 1);
699 printf("\nTX MSDU lifetime:\t\t\t");
700 an_printwords(&cfg
->an_tx_msdu_lifetime
, 1);
701 printf("\nRX MSDU lifetime:\t\t\t");
702 an_printwords(&cfg
->an_rx_msdu_lifetime
, 1);
703 printf("\nStationary:\t\t\t\t");
704 an_printbool(cfg
->an_stationary
);
705 printf("\nOrdering:\t\t\t\t");
706 an_printbool(cfg
->an_ordering
);
707 printf("\nDevice type:\t\t\t\t[ ");
708 if (cfg
->an_devtype
== AN_DEVTYPE_PC4500
)
710 else if (cfg
->an_devtype
== AN_DEVTYPE_PC4800
)
713 printf("unknown (%x)", cfg
->an_devtype
);
715 printf("\nScanning mode:\t\t\t\t[ ");
716 if (cfg
->an_scanmode
== AN_SCANMODE_ACTIVE
)
718 if (cfg
->an_scanmode
== AN_SCANMODE_PASSIVE
)
720 if (cfg
->an_scanmode
== AN_SCANMODE_AIRONET_ACTIVE
)
721 printf("Aironet active");
723 printf("\nProbe delay:\t\t\t\t");
724 an_printwords(&cfg
->an_probedelay
, 1);
725 printf("\nProbe energy timeout:\t\t\t");
726 an_printwords(&cfg
->an_probe_energy_timeout
, 1);
727 printf("\nProbe response timeout:\t\t\t");
728 an_printwords(&cfg
->an_probe_response_timeout
, 1);
729 printf("\nBeacon listen timeout:\t\t\t");
730 an_printwords(&cfg
->an_beacon_listen_timeout
, 1);
731 printf("\nIBSS join network timeout:\t\t");
732 an_printwords(&cfg
->an_ibss_join_net_timeout
, 1);
733 printf("\nAuthentication timeout:\t\t\t");
734 an_printwords(&cfg
->an_auth_timeout
, 1);
735 printf("\nWEP enabled:\t\t\t\t[ ");
736 if (cfg
->an_authtype
& AN_AUTHTYPE_PRIVACY_IN_USE
)
738 if (cfg
->an_authtype
& AN_AUTHTYPE_LEAP
)
740 else if (cfg
->an_authtype
& AN_AUTHTYPE_ALLOW_UNENCRYPTED
)
741 printf("mixed cell");
748 printf("\nAuthentication type:\t\t\t[ ");
749 if ((cfg
->an_authtype
& AN_AUTHTYPE_MASK
) == AN_AUTHTYPE_NONE
)
751 if ((cfg
->an_authtype
& AN_AUTHTYPE_MASK
) == AN_AUTHTYPE_OPEN
)
753 if ((cfg
->an_authtype
& AN_AUTHTYPE_MASK
) == AN_AUTHTYPE_SHAREDKEY
)
754 printf("shared key");
756 printf("\nAssociation timeout:\t\t\t");
757 an_printwords(&cfg
->an_assoc_timeout
, 1);
758 printf("\nSpecified AP association timeout:\t");
759 an_printwords(&cfg
->an_specified_ap_timeout
, 1);
760 printf("\nOffline scan interval:\t\t\t");
761 an_printwords(&cfg
->an_offline_scan_interval
, 1);
762 printf("\nOffline scan duration:\t\t\t");
763 an_printwords(&cfg
->an_offline_scan_duration
, 1);
764 printf("\nLink loss delay:\t\t\t");
765 an_printwords(&cfg
->an_link_loss_delay
, 1);
766 printf("\nMax beacon loss time:\t\t\t");
767 an_printwords(&cfg
->an_max_beacon_lost_time
, 1);
768 printf("\nRefresh interval:\t\t\t");
769 an_printwords(&cfg
->an_refresh_interval
, 1);
770 printf("\nPower save mode:\t\t\t[ ");
771 if (cfg
->an_psave_mode
== AN_PSAVE_NONE
)
773 if (cfg
->an_psave_mode
== AN_PSAVE_CAM
)
774 printf("constantly awake mode");
775 if (cfg
->an_psave_mode
== AN_PSAVE_PSP
)
777 if (cfg
->an_psave_mode
== AN_PSAVE_PSP_CAM
)
778 printf("PSP-CAM (fast PSP)");
780 printf("\nSleep through DTIMs:\t\t\t");
781 an_printbool(cfg
->an_sleep_for_dtims
);
782 printf("\nPower save listen interval:\t\t");
783 an_printwords(&cfg
->an_listen_interval
, 1);
784 printf("\nPower save fast listen interval:\t");
785 an_printwords(&cfg
->an_fast_listen_interval
, 1);
786 printf("\nPower save listen decay:\t\t");
787 an_printwords(&cfg
->an_listen_decay
, 1);
788 printf("\nPower save fast listen decay:\t\t");
789 an_printwords(&cfg
->an_fast_listen_decay
, 1);
790 printf("\nAP/ad-hoc Beacon period:\t\t");
791 an_printwords(&cfg
->an_beacon_period
, 1);
792 printf("\nAP/ad-hoc ATIM duration:\t\t");
793 an_printwords(&cfg
->an_atim_duration
, 1);
794 printf("\nAP/ad-hoc current channel:\t\t");
795 an_printwords(&cfg
->an_ds_channel
, 1);
796 printf("\nAP/ad-hoc DTIM period:\t\t\t");
797 an_printwords(&cfg
->an_dtim_period
, 1);
798 printf("\nRadio type:\t\t\t\t[ ");
799 if (cfg
->an_radiotype
& AN_RADIOTYPE_80211_FH
)
801 else if (cfg
->an_radiotype
& AN_RADIOTYPE_80211_DS
)
803 else if (cfg
->an_radiotype
& AN_RADIOTYPE_LM2000_DS
)
806 printf("unknown (%x)", cfg
->an_radiotype
);
808 printf("\nRX Diversity:\t\t\t\t[ ");
809 diversity
= cfg
->an_diversity
& 0xFF;
810 if (diversity
== AN_DIVERSITY_FACTORY_DEFAULT
)
811 printf("factory default");
812 else if (diversity
== AN_DIVERSITY_ANTENNA_1_ONLY
)
813 printf("antenna 1 only");
814 else if (diversity
== AN_DIVERSITY_ANTENNA_2_ONLY
)
815 printf("antenna 2 only");
816 else if (diversity
== AN_DIVERSITY_ANTENNA_1_AND_2
)
817 printf("antenna 1 and 2");
819 printf("\nTX Diversity:\t\t\t\t[ ");
820 diversity
= (cfg
->an_diversity
>> 8) & 0xFF;
821 if (diversity
== AN_DIVERSITY_FACTORY_DEFAULT
)
822 printf("factory default");
823 else if (diversity
== AN_DIVERSITY_ANTENNA_1_ONLY
)
824 printf("antenna 1 only");
825 else if (diversity
== AN_DIVERSITY_ANTENNA_2_ONLY
)
826 printf("antenna 2 only");
827 else if (diversity
== AN_DIVERSITY_ANTENNA_1_AND_2
)
828 printf("antenna 1 and 2");
830 printf("\nTransmit power level:\t\t\t");
831 an_printwords(&cfg
->an_tx_power
, 1);
832 printf("\nRSS threshold:\t\t\t\t");
833 an_printwords(&cfg
->an_rss_thresh
, 1);
834 printf("\nNode name:\t\t\t\t");
835 an_printstr((char *)&cfg
->an_nodename
, 16);
836 printf("\nARL threshold:\t\t\t\t");
837 an_printwords(&cfg
->an_arl_thresh
, 1);
838 printf("\nARL decay:\t\t\t\t");
839 an_printwords(&cfg
->an_arl_decay
, 1);
840 printf("\nARL delay:\t\t\t\t");
841 an_printwords(&cfg
->an_arl_delay
, 1);
842 printf("\nConfiguration:\t\t\t\t[ ");
843 if (cfg
->an_home_product
& AN_HOME_NETWORK
)
844 printf("Home Configuration");
846 printf("Enterprise Configuration");
851 an_readkeyinfo(iface
);
857 an_dumprssimap(const char *iface
)
859 struct an_ltv_rssi_map
*rssi
;
863 areq
.an_len
= sizeof(areq
);
864 areq
.an_type
= AN_RID_RSSI_MAP
;
866 an_getval(iface
, &areq
);
868 rssi
= (struct an_ltv_rssi_map
*)&areq
;
870 printf("idx\tpct\t dBm\n");
872 for (i
= 0; i
< 0xFF; i
++) {
874 * negate the dBm value: it's the only way the power
877 printf("%3d\t%3d\t%4d\n", i
,
878 rssi
->an_entries
[i
].an_rss_pct
,
879 - rssi
->an_entries
[i
].an_rss_dbm
);
888 fprintf(stderr
, "usage: %s -i iface -A (show specified APs)\n", p
);
889 fprintf(stderr
, "\t%s -i iface -N (show specified SSIDss)\n", p
);
890 fprintf(stderr
, "\t%s -i iface -S (show NIC status)\n", p
);
891 fprintf(stderr
, "\t%s -i iface -I (show NIC capabilities)\n", p
);
892 fprintf(stderr
, "\t%s -i iface -T (show stats counters)\n", p
);
893 fprintf(stderr
, "\t%s -i iface -C (show current config)\n", p
);
894 fprintf(stderr
, "\t%s -i iface -R (show RSSI map)\n", p
);
895 fprintf(stderr
, "\t%s -i iface -t 0-4 (set TX speed)\n", p
);
896 fprintf(stderr
, "\t%s -i iface -s 0-3 (set power save mode)\n", p
);
897 fprintf(stderr
, "\t%s -i iface [-v 1-4] -a AP (specify AP)\n", p
);
898 fprintf(stderr
, "\t%s -i iface -b val (set beacon period)\n", p
);
899 fprintf(stderr
, "\t%s -i iface [-v 0|1] -d val (set diversity)\n", p
);
900 fprintf(stderr
, "\t%s -i iface -j val (set netjoin timeout)\n", p
);
901 fprintf(stderr
, "\t%s -i iface -e 0-4 (enable transmit key)\n", p
);
902 fprintf(stderr
, "\t%s -i iface [-v 0-8] -k key (set key)\n", p
);
903 fprintf(stderr
, "\t%s -i iface -K 0-2 (no auth/open/shared secret)\n", p
);
904 fprintf(stderr
, "\t%s -i iface -W 0-2 (no WEP/full WEP/mixed cell)\n", p
);
905 fprintf(stderr
, "\t%s -i iface -l val (set station name)\n", p
);
906 fprintf(stderr
, "\t%s -i iface -m val (set MAC address)\n", p
);
907 fprintf(stderr
, "\t%s -i iface [-v 1-3] -n SSID "
908 "(specify SSID)\n", p
);
909 fprintf(stderr
, "\t%s -i iface -o 0|1 (set operating mode)\n", p
);
910 fprintf(stderr
, "\t%s -i iface -c val (set ad-hoc channel)\n", p
);
911 fprintf(stderr
, "\t%s -i iface -f val (set frag threshold)\n", p
);
912 fprintf(stderr
, "\t%s -i iface -r val (set RTS threshold)\n", p
);
913 fprintf(stderr
, "\t%s -i iface -M 0-15 (set monitor mode)\n", p
);
914 fprintf(stderr
, "\t%s -i iface -L user (enter LEAP authentication mode)\n", p
);
916 fprintf(stderr
, "\t%s -i iface -Q print signal quality cache\n", p
);
917 fprintf(stderr
, "\t%s -i iface -Z zero out signal cache\n", p
);
920 fprintf(stderr
, "\t%s -h (display this message)\n", p
);
927 an_setconfig(const char *iface
, int act
, void *arg
)
929 struct an_ltv_genconfig
*cfg
;
930 struct an_ltv_caps
*caps
;
932 struct an_req areq_caps
;
933 u_int16_t diversity
= 0;
934 struct ether_addr
*addr
;
937 areq
.an_len
= sizeof(areq
);
938 areq
.an_type
= AN_RID_GENCONFIG
;
939 an_getval(iface
, &areq
);
940 cfg
= (struct an_ltv_genconfig
*)&areq
;
942 areq_caps
.an_len
= sizeof(areq
);
943 areq_caps
.an_type
= AN_RID_CAPABILITIES
;
944 an_getval(iface
, &areq_caps
);
945 caps
= (struct an_ltv_caps
*)&areq_caps
;
949 cfg
->an_opmode
= atoi(arg
);
952 cfg
->an_ds_channel
= atoi(arg
);
954 case ACT_SET_PWRSAVE
:
955 cfg
->an_psave_mode
= atoi(arg
);
957 case ACT_SET_SCANMODE
:
958 cfg
->an_scanmode
= atoi(arg
);
960 case ACT_SET_DIVERSITY_RX
:
961 case ACT_SET_DIVERSITY_TX
:
964 diversity
= AN_DIVERSITY_FACTORY_DEFAULT
;
967 diversity
= AN_DIVERSITY_ANTENNA_1_ONLY
;
970 diversity
= AN_DIVERSITY_ANTENNA_2_ONLY
;
973 diversity
= AN_DIVERSITY_ANTENNA_1_AND_2
;
976 errx(1, "bad diversity setting: %d", diversity
);
979 if (act
== ACT_SET_DIVERSITY_RX
) {
980 cfg
->an_diversity
&= 0xFF00;
981 cfg
->an_diversity
|= diversity
;
983 cfg
->an_diversity
&= 0x00FF;
984 cfg
->an_diversity
|= (diversity
<< 8);
988 for (i
= 0; i
< 8; i
++) {
989 if (caps
->an_tx_powerlevels
[i
] == atoi(arg
))
993 errx(1, "unsupported power level: %dmW", atoi(arg
));
995 cfg
->an_tx_power
= atoi(arg
);
997 case ACT_SET_RTS_THRESH
:
998 cfg
->an_rtsthresh
= atoi(arg
);
1000 case ACT_SET_RTS_RETRYLIM
:
1001 cfg
->an_shortretry_limit
=
1002 cfg
->an_longretry_limit
= atoi(arg
);
1004 case ACT_SET_BEACON_PERIOD
:
1005 cfg
->an_beacon_period
= atoi(arg
);
1007 case ACT_SET_WAKE_DURATION
:
1008 cfg
->an_atim_duration
= atoi(arg
);
1010 case ACT_SET_FRAG_THRESH
:
1011 cfg
->an_fragthresh
= atoi(arg
);
1013 case ACT_SET_NETJOIN
:
1014 cfg
->an_ibss_join_net_timeout
= atoi(arg
);
1016 case ACT_SET_MYNAME
:
1017 bzero(cfg
->an_nodename
, 16);
1018 strncpy((char *)&cfg
->an_nodename
, optarg
, 16);
1021 addr
= ether_aton((char *)arg
);
1024 errx(1, "badly formatted address");
1025 bzero(cfg
->an_macaddr
, ETHER_ADDR_LEN
);
1026 bcopy((char *)addr
, (char *)&cfg
->an_macaddr
, ETHER_ADDR_LEN
);
1028 case ACT_ENABLE_WEP
:
1029 switch (atoi (arg
)) {
1032 cfg
->an_authtype
&= ~(AN_AUTHTYPE_PRIVACY_IN_USE
1033 | AN_AUTHTYPE_ALLOW_UNENCRYPTED
1034 | AN_AUTHTYPE_LEAP
);
1038 cfg
->an_authtype
|= AN_AUTHTYPE_PRIVACY_IN_USE
;
1039 cfg
->an_authtype
&= ~AN_AUTHTYPE_ALLOW_UNENCRYPTED
;
1040 cfg
->an_authtype
&= ~AN_AUTHTYPE_LEAP
;
1044 cfg
->an_authtype
= AN_AUTHTYPE_PRIVACY_IN_USE
1045 | AN_AUTHTYPE_ALLOW_UNENCRYPTED
;
1049 case ACT_SET_KEY_TYPE
:
1050 cfg
->an_authtype
= (cfg
->an_authtype
& ~AN_AUTHTYPE_MASK
)
1053 case ACT_SET_MONITOR_MODE
:
1054 areq
.an_type
= AN_RID_MONITOR_MODE
;
1055 cfg
->an_len
= atoi(arg
); /* mode is put in length */
1058 errx(1, "unknown action");
1062 an_setval(iface
, &areq
);
1067 an_setspeed(const char *iface
, int act __unused
, void *arg
)
1070 struct an_ltv_caps
*caps
;
1073 areq
.an_len
= sizeof(areq
);
1074 areq
.an_type
= AN_RID_CAPABILITIES
;
1076 an_getval(iface
, &areq
);
1077 caps
= (struct an_ltv_caps
*)&areq
;
1084 speed
= AN_RATE_1MBPS
;
1087 speed
= AN_RATE_2MBPS
;
1090 if (caps
->an_rates
[2] != AN_RATE_5_5MBPS
)
1091 errx(1, "5.5Mbps not supported on this card");
1092 speed
= AN_RATE_5_5MBPS
;
1095 if (caps
->an_rates
[3] != AN_RATE_11MBPS
)
1096 errx(1, "11Mbps not supported on this card");
1097 speed
= AN_RATE_11MBPS
;
1100 errx(1, "unsupported speed");
1105 areq
.an_type
= AN_RID_TX_SPEED
;
1106 areq
.an_val
[0] = speed
;
1108 an_setval(iface
, &areq
);
1113 an_setap(const char *iface
, int act
, void *arg
)
1115 struct an_ltv_aplist
*ap
;
1117 struct ether_addr
*addr
;
1119 areq
.an_len
= sizeof(areq
);
1120 areq
.an_type
= AN_RID_APLIST
;
1122 an_getval(iface
, &areq
);
1123 ap
= (struct an_ltv_aplist
*)&areq
;
1125 addr
= ether_aton((char *)arg
);
1128 errx(1, "badly formatted address");
1132 bzero(ap
->an_ap1
, ETHER_ADDR_LEN
);
1133 bcopy((char *)addr
, (char *)&ap
->an_ap1
, ETHER_ADDR_LEN
);
1136 bzero(ap
->an_ap2
, ETHER_ADDR_LEN
);
1137 bcopy((char *)addr
, (char *)&ap
->an_ap2
, ETHER_ADDR_LEN
);
1140 bzero(ap
->an_ap3
, ETHER_ADDR_LEN
);
1141 bcopy((char *)addr
, (char *)&ap
->an_ap3
, ETHER_ADDR_LEN
);
1144 bzero(ap
->an_ap4
, ETHER_ADDR_LEN
);
1145 bcopy((char *)addr
, (char *)&ap
->an_ap4
, ETHER_ADDR_LEN
);
1148 errx(1, "unknown action");
1152 an_setval(iface
, &areq
);
1157 an_setssid(const char *iface
, int act
, void *arg
)
1159 struct an_ltv_ssidlist
*ssid
;
1162 areq
.an_len
= sizeof(areq
);
1163 areq
.an_type
= AN_RID_SSIDLIST
;
1165 an_getval(iface
, &areq
);
1166 ssid
= (struct an_ltv_ssidlist
*)&areq
;
1170 bzero(ssid
->an_ssid1
, sizeof(ssid
->an_ssid1
));
1171 strlcpy(ssid
->an_ssid1
, (char *)arg
, sizeof(ssid
->an_ssid1
));
1172 ssid
->an_ssid1_len
= strlen(ssid
->an_ssid1
);
1175 bzero(ssid
->an_ssid2
, sizeof(ssid
->an_ssid2
));
1176 strlcpy(ssid
->an_ssid2
, (char *)arg
, sizeof(ssid
->an_ssid2
));
1177 ssid
->an_ssid2_len
= strlen(ssid
->an_ssid2
);
1180 bzero(ssid
->an_ssid3
, sizeof(ssid
->an_ssid3
));
1181 strlcpy(ssid
->an_ssid3
, (char *)arg
, sizeof(ssid
->an_ssid3
));
1182 ssid
->an_ssid3_len
= strlen(ssid
->an_ssid3
);
1185 errx(1, "unknown action");
1189 an_setval(iface
, &areq
);
1195 an_zerocache(const char *iface
)
1199 bzero((char *)&areq
, sizeof(areq
));
1201 areq
.an_type
= AN_RID_ZERO_CACHE
;
1203 an_getval(iface
, &areq
);
1209 an_readcache(const char *iface
)
1213 struct an_sigcache
*sc
;
1218 errx(1, "must specify interface name");
1220 bzero((char *)&areq
, sizeof(areq
));
1221 areq
.an_len
= AN_MAX_DATALEN
;
1222 areq
.an_type
= AN_RID_READ_CACHE
;
1224 an_getval(iface
, &areq
);
1226 an_sigitems
= (int *) &areq
.an_val
;
1227 pt
= ((char *) &areq
.an_val
);
1229 sc
= (struct an_sigcache
*) pt
;
1231 for (i
= 0; i
< *an_sigitems
; i
++) {
1232 printf("[%d/%d]:", i
+1, *an_sigitems
);
1233 printf(" %02x:%02x:%02x:%02x:%02x:%02x,",
1239 sc
->macsrc
[5]&0xff);
1240 printf(" %d.%d.%d.%d,",((sc
->ipsrc
>> 0) & 0xff),
1241 ((sc
->ipsrc
>> 8) & 0xff),
1242 ((sc
->ipsrc
>> 16) & 0xff),
1243 ((sc
->ipsrc
>> 24) & 0xff));
1244 printf(" sig: %d, noise: %d, qual: %d\n",
1258 if (c
>= '0' && c
<= '9')
1260 if (c
>= 'A' && c
<= 'F')
1261 return (c
- 'A' + 10);
1262 if (c
>= 'a' && c
<= 'f')
1263 return (c
- 'a' + 10);
1269 an_str2key(char *s
, struct an_ltv_key
*k
)
1274 /* Is this a hex string? */
1275 if (s
[0] == '0' && (s
[1] == 'x' || s
[1] == 'X')) {
1276 /* Yes, convert to int. */
1278 p
= (char *)&k
->key
[0];
1279 for (i
= 2; s
[i
] != '\0' && s
[i
+ 1] != '\0'; i
+= 2) {
1280 *p
++ = (an_hex2int(s
[i
]) << 4) + an_hex2int(s
[i
+ 1]);
1284 errx(1, "hex strings must be of even length");
1287 /* No, just copy it in. */
1288 bcopy(s
, k
->key
, strlen(s
));
1289 k
->klen
= strlen(s
);
1296 an_setkeys(const char *iface
, char *key
, int keytype
)
1299 struct an_ltv_key
*k
;
1301 bzero((char *)&areq
, sizeof(areq
));
1302 k
= (struct an_ltv_key
*)&areq
;
1304 if (strlen(key
) > 28) {
1305 err(1, "encryption key must be no "
1306 "more than 18 characters long");
1311 k
->kindex
=keytype
/2;
1313 if (!(k
->klen
==0 || k
->klen
==5 || k
->klen
==13)) {
1314 err(1, "encryption key must be 0, 5 or 13 bytes long");
1317 /* default mac and only valid one (from manual) 1.0.0.0.0.0 */
1325 switch(keytype
& 1) {
1327 areq
.an_len
= sizeof(struct an_ltv_key
);
1328 areq
.an_type
= AN_RID_WEP_PERM
;
1329 an_setval(iface
, &areq
);
1332 areq
.an_len
= sizeof(struct an_ltv_key
);
1333 areq
.an_type
= AN_RID_WEP_TEMP
;
1334 an_setval(iface
, &areq
);
1342 an_readkeyinfo(const char *iface
)
1345 struct an_ltv_genconfig
*cfg
;
1346 struct an_ltv_key
*k
;
1350 areq
.an_len
= sizeof(areq
);
1351 areq
.an_type
= AN_RID_ACTUALCFG
;
1352 an_getval(iface
, &areq
);
1353 cfg
= (struct an_ltv_genconfig
*)&areq
;
1354 if (cfg
->an_home_product
& AN_HOME_NETWORK
)
1359 bzero((char *)&areq
, sizeof(areq
));
1360 k
= (struct an_ltv_key
*)&areq
;
1362 printf("WEP Key status:\n");
1363 areq
.an_type
= AN_RID_WEP_TEMP
; /* read first key */
1364 for(i
=0; i
<5; i
++) {
1365 areq
.an_len
= sizeof(struct an_ltv_key
);
1366 an_getval(iface
, &areq
);
1367 if (k
->kindex
== 0xffff)
1371 printf("\tKey %d is unset\n",k
->kindex
);
1374 printf("\tKey %d is set 40 bits\n",k
->kindex
);
1377 printf("\tKey %d is set 128 bits\n",k
->kindex
);
1380 printf("\tWEP Key %d has an unknown size %d\n",
1384 areq
.an_type
= AN_RID_WEP_PERM
; /* read next key */
1387 areq
.an_len
= sizeof(struct an_ltv_key
);
1388 an_getval(iface
, &areq
);
1389 printf("\tThe active transmit key is %d\n", 4 * home
+ k
->mac
[0]);
1395 an_enable_tx_key(const char *iface
, char *arg
)
1398 struct an_ltv_key
*k
;
1399 struct an_ltv_genconfig
*config
;
1401 bzero((char *)&areq
, sizeof(areq
));
1403 /* set home or not home mode */
1404 areq
.an_len
= sizeof(struct an_ltv_genconfig
);
1405 areq
.an_type
= AN_RID_GENCONFIG
;
1406 an_getval(iface
, &areq
);
1407 config
= (struct an_ltv_genconfig
*)&areq
;
1408 if (atoi(arg
) == 4) {
1409 config
->an_home_product
|= AN_HOME_NETWORK
;
1411 config
->an_home_product
&= ~AN_HOME_NETWORK
;
1413 an_setval(iface
, &areq
);
1415 bzero((char *)&areq
, sizeof(areq
));
1417 k
= (struct an_ltv_key
*)&areq
;
1419 /* From a Cisco engineer write the transmit key to use in the
1420 first MAC, index is FFFF*/
1424 k
->mac
[0]=atoi(arg
);
1431 areq
.an_len
= sizeof(struct an_ltv_key
);
1432 areq
.an_type
= AN_RID_WEP_PERM
;
1433 an_setval(iface
, &areq
);
1439 an_enable_leap_mode(const char *iface
, char *username
)
1442 struct an_ltv_status
*sts
;
1443 struct an_ltv_genconfig
*cfg
;
1444 struct an_ltv_caps
*caps
;
1445 struct an_ltv_leap_username an_username
;
1446 struct an_ltv_leap_password an_password
;
1451 char unicode_password
[LEAP_PASSWORD_MAX
* 2];
1453 areq
.an_len
= sizeof(areq
);
1454 areq
.an_type
= AN_RID_CAPABILITIES
;
1456 an_getval(iface
, &areq
);
1458 caps
= (struct an_ltv_caps
*)&areq
;
1460 if (!(caps
->an_softcaps
& AN_AUTHTYPE_LEAP
)) {
1461 fprintf(stderr
, "Firmware does not support LEAP\n");
1465 bzero(&an_username
, sizeof(an_username
));
1466 bzero(&an_password
, sizeof(an_password
));
1468 len
= strlen(username
);
1469 if (len
> LEAP_USERNAME_MAX
) {
1470 printf("Username too long (max %d)\n", LEAP_USERNAME_MAX
);
1473 strncpy(an_username
.an_username
, username
, len
);
1474 an_username
.an_username_len
= len
;
1475 an_username
.an_len
= sizeof(an_username
);
1476 an_username
.an_type
= AN_RID_LEAPUSERNAME
;
1478 password
= getpass("Enter LEAP password:");
1480 len
= strlen(password
);
1481 if (len
> LEAP_PASSWORD_MAX
) {
1482 printf("Password too long (max %d)\n", LEAP_PASSWORD_MAX
);
1486 bzero(&unicode_password
, sizeof(unicode_password
));
1487 for(i
= 0; i
< len
; i
++) {
1488 unicode_password
[i
* 2] = *password
++;
1493 MD4Update(&context
, unicode_password
, len
* 2);
1494 MD4Final(&an_password
.an_password
[0], &context
);
1498 MD4Update (&context
, &an_password
.an_password
[0], 16);
1499 MD4Final (&an_password
.an_password
[16], &context
);
1501 an_password
.an_password_len
= 32;
1502 an_password
.an_len
= sizeof(an_password
);
1503 an_password
.an_type
= AN_RID_LEAPPASSWORD
;
1505 an_setval(iface
, (struct an_req
*)&an_username
);
1506 an_setval(iface
, (struct an_req
*)&an_password
);
1508 areq
.an_len
= sizeof(areq
);
1509 areq
.an_type
= AN_RID_GENCONFIG
;
1510 an_getval(iface
, &areq
);
1511 cfg
= (struct an_ltv_genconfig
*)&areq
;
1512 cfg
->an_authtype
= (AN_AUTHTYPE_PRIVACY_IN_USE
| AN_AUTHTYPE_LEAP
);
1513 an_setval(iface
, &areq
);
1515 sts
= (struct an_ltv_status
*)&areq
;
1516 areq
.an_type
= AN_RID_STATUS
;
1518 for (i
= 60; i
> 0; i
--) {
1519 an_getval(iface
, &areq
);
1520 if (sts
->an_opmode
& AN_STATUS_OPMODE_LEAP
) {
1521 printf("Authenticated\n");
1528 fprintf(stderr
, "Failed LEAP authentication\n");
1534 main(int argc
, char **argv
)
1538 const char *iface
= NULL
;
1544 /* Get the interface name */
1546 ch
= getopt(argc
, argv
, "i:");
1550 if (argc
> 1 && *argv
[1] != '-') {
1561 while ((ch
= getopt(argc
, argv
,
1562 "ANISCTRht:a:e:o:s:n:v:d:j:b:c:r:p:w:m:l:k:K:W:QZM:L:")) != -1) {
1566 act
= ACT_ZEROCACHE
;
1568 errx(1, "ANCACHE not available");
1573 act
= ACT_DUMPCACHE
;
1575 errx(1, "ANCACHE not available");
1585 act
= ACT_DUMPSTATUS
;
1591 act
= ACT_DUMPSTATS
;
1594 act
= ACT_DUMPCONFIG
;
1597 act
= ACT_DUMPRSSIMAP
;
1600 act
= ACT_SET_TXRATE
;
1604 act
= ACT_SET_PWRSAVE
;
1608 act
= ACT_SET_TXPWR
;
1612 modifier
= atoi(optarg
);
1630 errx(1, "bad modifier %d: there "
1631 "are only 4 access point settings",
1639 act
= ACT_SET_BEACON_PERIOD
;
1645 act
= ACT_SET_DIVERSITY_RX
;
1648 act
= ACT_SET_DIVERSITY_TX
;
1651 errx(1, "must specify RX or TX diversity");
1654 if (!isdigit(*optarg
)) {
1655 errx(1, "%s is not numeric", optarg
);
1661 act
= ACT_SET_NETJOIN
;
1665 act
= ACT_SET_MYNAME
;
1676 act
= ACT_SET_SSID1
;
1679 act
= ACT_SET_SSID2
;
1682 act
= ACT_SET_SSID3
;
1685 errx(1, "bad modifier %d: there"
1686 "are only 3 SSID settings", modifier
);
1693 act
= ACT_SET_OPMODE
;
1701 act
= ACT_SET_FRAG_THRESH
;
1705 act
= ACT_ENABLE_WEP
;
1709 act
= ACT_SET_KEY_TYPE
;
1717 act
= ACT_ENABLE_TX_KEY
;
1721 act
= ACT_SET_RTS_RETRYLIM
;
1725 act
= ACT_SET_RTS_THRESH
;
1729 act
= ACT_SET_WAKE_DURATION
;
1733 act
= ACT_SET_MONITOR_MODE
;
1737 act
= ACT_SET_LEAP_MODE
;
1746 if (iface
== NULL
|| (!act
&& !key
))
1750 case ACT_DUMPSTATUS
:
1751 an_dumpstatus(iface
);
1757 an_dumpstats(iface
);
1759 case ACT_DUMPCONFIG
:
1760 an_dumpconfig(iface
);
1768 case ACT_DUMPRSSIMAP
:
1769 an_dumprssimap(iface
);
1774 an_setssid(iface
, act
, arg
);
1780 an_setap(iface
, act
, arg
);
1782 case ACT_SET_TXRATE
:
1783 an_setspeed(iface
, act
, arg
);
1787 an_zerocache(iface
);
1790 an_readcache(iface
);
1795 an_setkeys(iface
, key
, modifier
);
1797 case ACT_ENABLE_TX_KEY
:
1798 an_enable_tx_key(iface
, arg
);
1800 case ACT_SET_LEAP_MODE
:
1801 an_enable_leap_mode(iface
, arg
);
1804 an_setconfig(iface
, act
, arg
);