Home | History | Annotate | Line # | Download | only in net80211
      1  1.23    cegger /* $FreeBSD: src/sys/net80211/ieee80211_radiotap.h,v 1.11 2007/12/13 01:23:40 sam Exp $ */
      2  1.25       mrg /* $NetBSD: ieee80211_radiotap.h,v 1.25 2019/10/05 23:27:20 mrg Exp $ */
      3   1.1    dyoung 
      4   1.1    dyoung /*-
      5   1.1    dyoung  * Copyright (c) 2003, 2004 David Young.  All rights reserved.
      6   1.1    dyoung  *
      7   1.1    dyoung  * Redistribution and use in source and binary forms, with or without
      8   1.1    dyoung  * modification, are permitted provided that the following conditions
      9   1.1    dyoung  * are met:
     10   1.1    dyoung  * 1. Redistributions of source code must retain the above copyright
     11   1.1    dyoung  *    notice, this list of conditions and the following disclaimer.
     12   1.1    dyoung  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1    dyoung  *    notice, this list of conditions and the following disclaimer in the
     14   1.1    dyoung  *    documentation and/or other materials provided with the distribution.
     15   1.1    dyoung  *
     16   1.1    dyoung  * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
     17   1.1    dyoung  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
     18   1.1    dyoung  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
     19   1.1    dyoung  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DAVID
     20   1.1    dyoung  * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     21   1.1    dyoung  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
     22   1.1    dyoung  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     23   1.1    dyoung  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     24   1.1    dyoung  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     25   1.1    dyoung  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     26   1.1    dyoung  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
     27   1.1    dyoung  * OF SUCH DAMAGE.
     28   1.1    dyoung  */
     29  1.14      elad #ifndef _NET80211_IEEE80211_RADIOTAP_H_
     30  1.14      elad #define _NET80211_IEEE80211_RADIOTAP_H_
     31   1.1    dyoung 
     32  1.15    dyoung /* A generic radio capture format is desirable. It must be
     33  1.15    dyoung  * rigidly defined (e.g., units for fields should be given),
     34  1.15    dyoung  * and easily extensible.
     35   1.1    dyoung  *
     36  1.15    dyoung  * The following is an extensible radio capture format. It is
     37   1.1    dyoung  * based on a bitmap indicating which fields are present.
     38   1.1    dyoung  *
     39   1.1    dyoung  * I am trying to describe precisely what the application programmer
     40   1.1    dyoung  * should expect in the following, and for that reason I tell the
     41   1.1    dyoung  * units and origin of each measurement (where it applies), or else I
     42   1.1    dyoung  * use sufficiently weaselly language ("is a monotonically nondecreasing
     43   1.1    dyoung  * function of...") that I cannot set false expectations for lawyerly
     44   1.1    dyoung  * readers.
     45   1.1    dyoung  */
     46  1.11    dyoung #if defined(__KERNEL__) || defined(_KERNEL)
     47   1.1    dyoung #ifndef DLT_IEEE802_11_RADIO
     48   1.1    dyoung #define	DLT_IEEE802_11_RADIO	127	/* 802.11 plus WLAN header */
     49   1.1    dyoung #endif
     50  1.11    dyoung #endif /* defined(__KERNEL__) || defined(_KERNEL) */
     51   1.1    dyoung 
     52   1.9    dyoung /* XXX tcpdump/libpcap do not tolerate variable-length headers,
     53   1.9    dyoung  * yet, so we pad every radiotap header to 64 bytes. Ugh.
     54   1.9    dyoung  */
     55   1.9    dyoung #define IEEE80211_RADIOTAP_HDRLEN	64
     56   1.9    dyoung 
     57  1.15    dyoung /*
     58  1.15    dyoung  * The radio capture header precedes the 802.11 header.
     59  1.15    dyoung  *
     60  1.15    dyoung  * Note well: all radiotap fields are little-endian.
     61  1.15    dyoung  */
     62   1.1    dyoung struct ieee80211_radiotap_header {
     63  1.22    cegger 	uint8_t	it_version;		/* Version 0. Only increases
     64   1.1    dyoung 					 * for drastic changes,
     65   1.1    dyoung 					 * introduction of compatible
     66   1.3    dyoung 					 * new fields does not count.
     67   1.1    dyoung 					 */
     68  1.22    cegger 	uint8_t	it_pad;
     69  1.22    cegger 	uint16_t       it_len;		/* length of the whole
     70   1.1    dyoung 					 * header in bytes, including
     71   1.1    dyoung 					 * it_version, it_pad,
     72   1.3    dyoung 					 * it_len, and data fields.
     73   1.1    dyoung 					 */
     74  1.22    cegger 	uint32_t       it_present;	/* A bitmap telling which
     75   1.1    dyoung 					 * fields are present. Set bit 31
     76   1.1    dyoung 					 * (0x80000000) to extend the
     77   1.1    dyoung 					 * bitmap by another 32 bits.
     78   1.1    dyoung 					 * Additional extensions are made
     79   1.1    dyoung 					 * by setting bit 31.
     80   1.1    dyoung 					 */
     81  1.25       mrg } __aligned(8);
     82   1.1    dyoung 
     83  1.15    dyoung /*
     84  1.15    dyoung  * Name                                 Data type       Units
     85   1.1    dyoung  * ----                                 ---------       -----
     86   1.1    dyoung  *
     87  1.22    cegger  * IEEE80211_RADIOTAP_TSFT              uint64_t        microseconds
     88   1.3    dyoung  *
     89   1.3    dyoung  *      Value in microseconds of the MAC's 64-bit 802.11 Time
     90   1.3    dyoung  *      Synchronization Function timer when the first bit of the
     91   1.3    dyoung  *      MPDU arrived at the MAC. For received frames, only.
     92   1.3    dyoung  *
     93  1.22    cegger  * IEEE80211_RADIOTAP_CHANNEL           2 x uint16_t    MHz, bitmap
     94   1.1    dyoung  *
     95   1.3    dyoung  *      Tx/Rx frequency in MHz, followed by flags (see below).
     96   1.1    dyoung  *
     97  1.22    cegger  * IEEE80211_RADIOTAP_FHSS              uint16_t        see below
     98   1.1    dyoung  *
     99   1.1    dyoung  *      For frequency-hopping radios, the hop set (first byte)
    100   1.1    dyoung  *      and pattern (second byte).
    101   1.1    dyoung  *
    102  1.22    cegger  * IEEE80211_RADIOTAP_RATE              uint8_t         500kb/s
    103   1.3    dyoung  *
    104   1.3    dyoung  *      Tx/Rx data rate
    105   1.1    dyoung  *
    106   1.4    dyoung  * IEEE80211_RADIOTAP_DBM_ANTSIGNAL     int8_t          decibels from
    107   1.4    dyoung  *                                                      one milliwatt (dBm)
    108   1.1    dyoung  *
    109   1.4    dyoung  *      RF signal power at the antenna, decibel difference from
    110   1.4    dyoung  *      one milliwatt.
    111   1.1    dyoung  *
    112   1.4    dyoung  * IEEE80211_RADIOTAP_DBM_ANTNOISE      int8_t          decibels from
    113   1.4    dyoung  *                                                      one milliwatt (dBm)
    114   1.1    dyoung  *
    115   1.4    dyoung  *      RF noise power at the antenna, decibel difference from one
    116   1.4    dyoung  *      milliwatt.
    117   1.4    dyoung  *
    118  1.22    cegger  * IEEE80211_RADIOTAP_DB_ANTSIGNAL      uint8_t         decibel (dB)
    119   1.4    dyoung  *
    120   1.4    dyoung  *      RF signal power at the antenna, decibel difference from an
    121   1.4    dyoung  *      arbitrary, fixed reference.
    122   1.4    dyoung  *
    123  1.22    cegger  * IEEE80211_RADIOTAP_DB_ANTNOISE       uint8_t         decibel (dB)
    124   1.4    dyoung  *
    125   1.4    dyoung  *      RF noise power at the antenna, decibel difference from an
    126   1.4    dyoung  *      arbitrary, fixed reference point.
    127   1.1    dyoung  *
    128  1.22    cegger  * IEEE80211_RADIOTAP_LOCK_QUALITY      uint16_t        unitless
    129   1.1    dyoung  *
    130   1.1    dyoung  *      Quality of Barker code lock. Unitless. Monotonically
    131   1.1    dyoung  *      nondecreasing with "better" lock strength. Called "Signal
    132   1.1    dyoung  *      Quality" in datasheets.  (Is there a standard way to measure
    133   1.1    dyoung  *      this?)
    134   1.1    dyoung  *
    135  1.22    cegger  * IEEE80211_RADIOTAP_TX_ATTENUATION    uint16_t        unitless
    136   1.1    dyoung  *
    137   1.1    dyoung  *      Transmit power expressed as unitless distance from max
    138   1.1    dyoung  *      power set at factory calibration.  0 is max power.
    139   1.1    dyoung  *      Monotonically nondecreasing with lower power levels.
    140   1.1    dyoung  *
    141  1.22    cegger  * IEEE80211_RADIOTAP_DB_TX_ATTENUATION uint16_t        decibels (dB)
    142   1.1    dyoung  *
    143   1.1    dyoung  *      Transmit power expressed as decibel distance from max power
    144   1.1    dyoung  *      set at factory calibration.  0 is max power.  Monotonically
    145   1.1    dyoung  *      nondecreasing with lower power levels.
    146   1.1    dyoung  *
    147   1.4    dyoung  * IEEE80211_RADIOTAP_DBM_TX_POWER      int8_t          decibels from
    148   1.4    dyoung  *                                                      one milliwatt (dBm)
    149   1.1    dyoung  *
    150   1.1    dyoung  *      Transmit power expressed as dBm (decibels from a 1 milliwatt
    151   1.1    dyoung  *      reference). This is the absolute power level measured at
    152   1.1    dyoung  *      the antenna port.
    153   1.1    dyoung  *
    154  1.22    cegger  * IEEE80211_RADIOTAP_FLAGS             uint8_t         bitmap
    155   1.1    dyoung  *
    156   1.1    dyoung  *      Properties of transmitted and received frames. See flags
    157   1.1    dyoung  *      defined below.
    158   1.1    dyoung  *
    159  1.22    cegger  * IEEE80211_RADIOTAP_ANTENNA           uint8_t         antenna index
    160   1.1    dyoung  *
    161   1.1    dyoung  *      Unitless indication of the Rx/Tx antenna for this packet.
    162   1.1    dyoung  *      The first antenna is antenna 0.
    163  1.17    dyoung  *
    164  1.22    cegger  * IEEE80211_RADIOTAP_RX_FLAGS          uint16_t        bitmap
    165  1.17    dyoung  *
    166  1.17    dyoung  *     Properties of received frames. See flags defined below.
    167  1.17    dyoung  *
    168  1.22    cegger  * IEEE80211_RADIOTAP_TX_FLAGS          uint16_t        bitmap
    169  1.17    dyoung  *
    170  1.17    dyoung  *     Properties of transmitted frames. See flags defined below.
    171  1.17    dyoung  *
    172  1.22    cegger  * IEEE80211_RADIOTAP_RTS_RETRIES       uint8_t         data
    173  1.17    dyoung  *
    174  1.17    dyoung  *     Number of rts retries a transmitted frame used.
    175  1.17    dyoung  *
    176  1.22    cegger  * IEEE80211_RADIOTAP_DATA_RETRIES      uint8_t         data
    177  1.17    dyoung  *
    178  1.17    dyoung  *     Number of unicast retries a transmitted frame used.
    179  1.22    cegger  *
    180  1.22    cegger  * IEEE80211_RADIOTAP_XCHANNEL          uint32_t        bitmap
    181  1.22    cegger  *                                      uint16_t        MHz
    182  1.22    cegger  *                                      uint8_t         channel number
    183  1.22    cegger  *                                      int8_t          .5 dBm
    184  1.22    cegger  *
    185  1.22    cegger  *      Extended channel specification: flags (see below) followed by
    186  1.22    cegger  *      frequency in MHz, the corresponding IEEE channel number, and
    187  1.22    cegger  *      finally the maximum regulatory transmit power cap in .5 dBm
    188  1.22    cegger  *      units.  This property supersedes IEEE80211_RADIOTAP_CHANNEL
    189  1.22    cegger  *      and only one of the two should be present.
    190   1.1    dyoung  */
    191   1.1    dyoung enum ieee80211_radiotap_type {
    192   1.3    dyoung 	IEEE80211_RADIOTAP_TSFT = 0,
    193   1.1    dyoung 	IEEE80211_RADIOTAP_FLAGS = 1,
    194   1.1    dyoung 	IEEE80211_RADIOTAP_RATE = 2,
    195   1.1    dyoung 	IEEE80211_RADIOTAP_CHANNEL = 3,
    196   1.1    dyoung 	IEEE80211_RADIOTAP_FHSS = 4,
    197   1.4    dyoung 	IEEE80211_RADIOTAP_DBM_ANTSIGNAL = 5,
    198   1.4    dyoung 	IEEE80211_RADIOTAP_DBM_ANTNOISE = 6,
    199   1.1    dyoung 	IEEE80211_RADIOTAP_LOCK_QUALITY = 7,
    200   1.1    dyoung 	IEEE80211_RADIOTAP_TX_ATTENUATION = 8,
    201   1.1    dyoung 	IEEE80211_RADIOTAP_DB_TX_ATTENUATION = 9,
    202   1.1    dyoung 	IEEE80211_RADIOTAP_DBM_TX_POWER = 10,
    203   1.1    dyoung 	IEEE80211_RADIOTAP_ANTENNA = 11,
    204   1.4    dyoung 	IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12,
    205   1.4    dyoung 	IEEE80211_RADIOTAP_DB_ANTNOISE = 13,
    206  1.17    dyoung 	IEEE80211_RADIOTAP_RX_FLAGS = 14,
    207  1.17    dyoung 	IEEE80211_RADIOTAP_TX_FLAGS = 15,
    208  1.17    dyoung 	IEEE80211_RADIOTAP_RTS_RETRIES = 16,
    209  1.17    dyoung 	IEEE80211_RADIOTAP_DATA_RETRIES = 17,
    210  1.22    cegger 	IEEE80211_RADIOTAP_XCHANNEL = 18,
    211  1.19  christos 	IEEE80211_RADIOTAP_EXT = 31
    212   1.1    dyoung };
    213   1.4    dyoung 
    214   1.1    dyoung /* For IEEE80211_RADIOTAP_FLAGS */
    215   1.3    dyoung #define	IEEE80211_RADIOTAP_F_CFP	0x01	/* sent/received
    216   1.1    dyoung 						 * during CFP
    217   1.1    dyoung 						 */
    218   1.3    dyoung #define	IEEE80211_RADIOTAP_F_SHORTPRE	0x02	/* sent/received
    219   1.1    dyoung 						 * with short
    220   1.1    dyoung 						 * preamble
    221   1.1    dyoung 						 */
    222   1.3    dyoung #define	IEEE80211_RADIOTAP_F_WEP	0x04	/* sent/received
    223   1.1    dyoung 						 * with WEP encryption
    224   1.1    dyoung 						 */
    225   1.3    dyoung #define	IEEE80211_RADIOTAP_F_FRAG	0x08	/* sent/received
    226   1.1    dyoung 						 * with fragmentation
    227   1.1    dyoung 						 */
    228  1.11    dyoung #define	IEEE80211_RADIOTAP_F_FCS	0x10	/* frame includes FCS */
    229  1.11    dyoung #define	IEEE80211_RADIOTAP_F_DATAPAD	0x20	/* frame has padding between
    230  1.11    dyoung 						 * 802.11 header and payload
    231  1.11    dyoung 						 * (to 32-bit boundary)
    232  1.11    dyoung 						 */
    233  1.13    dyoung #define	IEEE80211_RADIOTAP_F_BADFCS	0x40	/* does not pass FCS check */
    234  1.22    cegger #define IEEE80211_RADIOTAP_F_SHORTGI	0x80	/* HT short GI */
    235   1.1    dyoung 
    236  1.17    dyoung /* For IEEE80211_RADIOTAP_RX_FLAGS */
    237  1.17    dyoung #define IEEE80211_RADIOTAP_F_RX_BADFCS 0x0001  /* Frame failed CRC check.
    238  1.17    dyoung 						*
    239  1.17    dyoung 						* Deprecated: use the flag
    240  1.18    dyoung 						* IEEE80211_RADIOTAP_F_BADFCS in
    241  1.17    dyoung 						* the IEEE80211_RADIOTAP_FLAGS
    242  1.17    dyoung 						* field, instead.
    243  1.17    dyoung 						*/
    244  1.17    dyoung 
    245  1.17    dyoung /* For IEEE80211_RADIOTAP_TX_FLAGS */
    246  1.17    dyoung #define IEEE80211_RADIOTAP_F_TX_FAIL   0x0001  /* failed due to excessive
    247  1.17    dyoung 						* retries
    248  1.17    dyoung 						*/
    249  1.17    dyoung #define IEEE80211_RADIOTAP_F_TX_CTS    0x0002  /* used cts 'protection' */
    250  1.17    dyoung #define IEEE80211_RADIOTAP_F_TX_RTS    0x0004  /* used rts/cts handshake */
    251  1.17    dyoung 
    252  1.14      elad #endif /* !_NET80211_IEEE80211_RADIOTAP_H_ */
    253