[BACK]Return to net80211.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / netstat

Annotation of src/usr.bin/netstat/net80211.c, Revision 1.13

1.13    ! deraadt     1: /*     $OpenBSD: net80211.c,v 1.12 2014/11/21 17:49:00 mikeb Exp $     */
1.1       reyk        2:
                      3: /*
1.3       reyk        4:  * Copyright (c) 2005 Reyk Floeter <reyk@openbsd.org>
1.1       reyk        5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
1.13    ! deraadt    19: #include <sys/types.h>
1.1       reyk       20: #include <sys/time.h>
                     21: #include <sys/socket.h>
                     22: #include <sys/file.h>
                     23: #include <sys/ioctl.h>
                     24:
                     25: #include <net/if.h>
                     26:
                     27: #include <netinet/in.h>
                     28: #include <netinet/if_ether.h>
                     29:
                     30: #include <net80211/ieee80211.h>
                     31: #include <net80211/ieee80211_ioctl.h>
                     32:
1.4       ray        33: #include <err.h>
1.1       reyk       34: #include <stdio.h>
                     35: #include <string.h>
                     36: #include <unistd.h>
                     37: #include "netstat.h"
                     38:
                     39: /*
                     40:  * Dump IEEE802.11 per-interface statistics
                     41:  */
                     42: void
                     43: net80211_ifstats(char *ifname)
                     44: {
                     45:        struct ifreq ifr;
                     46:        struct ieee80211_stats stats;
                     47:        int s;
                     48:
                     49: #define        p(f, m) printf(m, (unsigned long)stats.f, plural(stats.f))
                     50:
1.2       reyk       51:        if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
                     52:                err(1, "socket(AF_INET)");
1.1       reyk       53:
                     54:        ifr.ifr_data = (caddr_t)&stats;
                     55:        strlcpy(ifr.ifr_name, ifname, sizeof ifr.ifr_name);
1.2       reyk       56:
                     57:        if (ioctl(s, SIOCG80211STATS, &ifr) < 0)
                     58:                err(1, "ioctl(SIOCG80211STATS)");
                     59:
1.1       reyk       60:        printf("ieee80211 on %s:\n", ifr.ifr_name);
                     61:
                     62:        p(is_rx_badversion, "\t%lu input packet%s with bad version\n");
                     63:        p(is_rx_tooshort, "\t%lu input packet%s too short\n");
                     64:        p(is_rx_wrongbss, "\t%lu input packet%s from wrong bssid\n");
                     65:        p(is_rx_dup, "\t%lu input packet duplicate%s discarded\n");
                     66:        p(is_rx_wrongdir, "\t%lu input packet%s with wrong direction\n");
                     67:        p(is_rx_mcastecho, "\t%lu input multicast echo packet%s discarded\n");
                     68:        p(is_rx_notassoc, "\t%lu input packet%s from unassociated station discarded\n");
1.6       jcs        69:        p(is_rx_nowep, "\t%lu input encrypted packet%s without wep/wpa config discarded\n");
                     70:        p(is_rx_unencrypted, "\t%lu input unencrypted packet%s with wep/wpa config discarded\n");
                     71:        p(is_rx_wepfail, "\t%lu input wep/wpa packet%s processing failed\n");
1.1       reyk       72:        p(is_rx_decap, "\t%lu input packet decapsulation%s failed\n");
                     73:        p(is_rx_mgtdiscard, "\t%lu input management packet%s discarded\n");
                     74:        p(is_rx_ctl, "\t%lu input control packet%s discarded\n");
                     75:        p(is_rx_rstoobig, "\t%lu input packet%s with truncated rate set\n");
                     76:        p(is_rx_elem_missing, "\t%lu input packet%s with missing elements\n");
                     77:        p(is_rx_elem_toobig, "\t%lu input packet%s with elements too big\n");
                     78:        p(is_rx_elem_toosmall, "\t%lu input packet%s with elements too small\n");
                     79:        p(is_rx_badchan, "\t%lu input packet%s with invalid channel\n");
                     80:        p(is_rx_chanmismatch, "\t%lu input packet%s with mismatched channel\n");
1.8       stsp       81:        p(is_rx_nodealloc, "\t%lu node allocation%s failed\n");
1.1       reyk       82:        p(is_rx_ssidmismatch, "\t%lu input packet%s with mismatched ssid\n");
                     83:        p(is_rx_auth_unsupported, "\t%lu input packet%s with unsupported auth algorithm\n");
                     84:        p(is_rx_auth_fail, "\t%lu input authentication%s failed\n");
                     85:        p(is_rx_assoc_bss, "\t%lu input association%s from wrong bssid\n");
                     86:        p(is_rx_assoc_notauth, "\t%lu input association%s without authentication\n");
                     87:        p(is_rx_assoc_capmismatch, "\t%lu input association%s with mismatched capabilities\n");
                     88:        p(is_rx_assoc_norate, "\t%lu input association%s without matching rates\n");
1.6       jcs        89:        p(is_rx_assoc_badrsnie, "\t%lu input association%s with bad rsn ie\n");
1.1       reyk       90:        p(is_rx_deauth, "\t%lu input deauthentication packet%s\n");
                     91:        p(is_rx_disassoc, "\t%lu input disassociation packet%s\n");
                     92:        p(is_rx_badsubtype, "\t%lu input packet%s with unknown subtype\n");
                     93:        p(is_rx_nombuf, "\t%lu input packet%s failed for lack of mbufs\n");
                     94:        p(is_rx_decryptcrc, "\t%lu input decryption%s failed on crc\n");
                     95:        p(is_rx_ahdemo_mgt, "\t%lu input ahdemo management packet%s discarded\n");
                     96:        p(is_rx_bad_auth, "\t%lu input packet%s with bad auth request\n");
1.6       jcs        97:        p(is_rx_eapol_key, "\t%lu input eapol-key packet%s\n");
                     98:        p(is_rx_eapol_badmic, "\t%lu input eapol-key packet%s with bad mic\n");
                     99:        p(is_rx_eapol_replay, "\t%lu input eapol-key packet%s replayed\n");
                    100:        p(is_rx_locmicfail, "\t%lu input packet%s with bad tkip mic\n");
                    101:        p(is_rx_remmicfail, "\t%lu input tkip mic failure notification%s\n");
                    102:        p(is_rx_unauth, "\t%lu input packet%s on unauthenticated port\n");
1.1       reyk      103:        p(is_tx_nombuf, "\t%lu output packet%s failed for lack of mbufs\n");
                    104:        p(is_tx_nonode, "\t%lu output packet%s failed for no nodes\n");
                    105:        p(is_tx_unknownmgt, "\t%lu output packet%s of unknown management type\n");
1.6       jcs       106:        p(is_tx_noauth, "\t%lu output packet%s on unauthenticated port\n");
1.1       reyk      107:        p(is_scan_active, "\t%lu active scan%s started\n");
                    108:        p(is_scan_passive, "\t%lu passive scan%s started\n");
                    109:        p(is_node_timeout, "\t%lu node%s timed out\n");
                    110:        p(is_crypto_nomem, "\t%lu failure%s with no memory for crypto ctx\n");
1.6       jcs       111:        p(is_ccmp_dec_errs, "\t%lu ccmp decryption error%s\n");
                    112:        p(is_ccmp_replays, "\t%lu ccmp replayed frame%s \n");
                    113:        p(is_cmac_icv_errs, "\t%lu cmac icv error%s\n");
                    114:        p(is_cmac_replays, "\t%lu cmac replayed frame%s\n");
                    115:        p(is_tkip_icv_errs, "\t%lu tkip icv error%s\n");
                    116:        p(is_tkip_replays, "\t%lu tkip replay%s\n");
1.1       reyk      117:
                    118:        close(s);
                    119:
                    120: #undef p
                    121: }