Home | History | Annotate | Line # | Download | only in net80211
ieee80211_radiotap.h revision 1.6
      1  1.1  dyoung /* $FreeBSD: src/sys/net80211/ieee80211_radiotap.h,v 1.1 2003/09/05 22:19:32 sam Exp $ */
      2  1.6  dyoung /* $NetBSD: ieee80211_radiotap.h,v 1.6 2004/03/29 04:04:48 dyoung 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  * 3. The name of David Young may not be used to endorse or promote
     16  1.1  dyoung  *    products derived from this software without specific prior
     17  1.1  dyoung  *    written permission.
     18  1.1  dyoung  *
     19  1.1  dyoung  * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
     20  1.1  dyoung  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
     21  1.1  dyoung  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
     22  1.1  dyoung  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DAVID
     23  1.1  dyoung  * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     24  1.1  dyoung  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
     25  1.1  dyoung  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  1.1  dyoung  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     27  1.1  dyoung  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     28  1.1  dyoung  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29  1.1  dyoung  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
     30  1.1  dyoung  * OF SUCH DAMAGE.
     31  1.1  dyoung  */
     32  1.1  dyoung #ifndef _NET_IF_IEEE80211RADIOTAP_H_
     33  1.1  dyoung #define _NET_IF_IEEE80211RADIOTAP_H_
     34  1.1  dyoung 
     35  1.1  dyoung /* A generic radio capture format is desirable. There is one for
     36  1.1  dyoung  * Linux, but it is neither rigidly defined (there were not even
     37  1.1  dyoung  * units given for some fields) nor easily extensible.
     38  1.1  dyoung  *
     39  1.1  dyoung  * I suggest the following extensible radio capture format. It is
     40  1.1  dyoung  * based on a bitmap indicating which fields are present.
     41  1.1  dyoung  *
     42  1.1  dyoung  * I am trying to describe precisely what the application programmer
     43  1.1  dyoung  * should expect in the following, and for that reason I tell the
     44  1.1  dyoung  * units and origin of each measurement (where it applies), or else I
     45  1.1  dyoung  * use sufficiently weaselly language ("is a monotonically nondecreasing
     46  1.1  dyoung  * function of...") that I cannot set false expectations for lawyerly
     47  1.1  dyoung  * readers.
     48  1.1  dyoung  */
     49  1.4  dyoung #ifdef _KERNEL
     50  1.1  dyoung #ifndef DLT_IEEE802_11_RADIO
     51  1.1  dyoung #define	DLT_IEEE802_11_RADIO	127	/* 802.11 plus WLAN header */
     52  1.1  dyoung #endif
     53  1.4  dyoung #endif /* _KERNEL */
     54  1.1  dyoung 
     55  1.1  dyoung /* The radio capture header precedes the 802.11 header. */
     56  1.1  dyoung struct ieee80211_radiotap_header {
     57  1.1  dyoung 	u_int8_t	it_version;	/* Version 0. Only increases
     58  1.1  dyoung 					 * for drastic changes,
     59  1.1  dyoung 					 * introduction of compatible
     60  1.3  dyoung 					 * new fields does not count.
     61  1.1  dyoung 					 */
     62  1.1  dyoung 	u_int8_t	it_pad;
     63  1.1  dyoung 	u_int16_t       it_len;         /* length of the whole
     64  1.1  dyoung 					 * header in bytes, including
     65  1.1  dyoung 					 * it_version, it_pad,
     66  1.3  dyoung 					 * it_len, and data fields.
     67  1.1  dyoung 					 */
     68  1.1  dyoung 	u_int32_t       it_present;     /* A bitmap telling which
     69  1.1  dyoung 					 * fields are present. Set bit 31
     70  1.1  dyoung 					 * (0x80000000) to extend the
     71  1.1  dyoung 					 * bitmap by another 32 bits.
     72  1.1  dyoung 					 * Additional extensions are made
     73  1.1  dyoung 					 * by setting bit 31.
     74  1.1  dyoung 					 */
     75  1.3  dyoung } __attribute__((__packed__));
     76  1.1  dyoung 
     77  1.1  dyoung /* Name                                 Data type       Units
     78  1.1  dyoung  * ----                                 ---------       -----
     79  1.1  dyoung  *
     80  1.3  dyoung  * IEEE80211_RADIOTAP_TSFT              u_int64_t       microseconds
     81  1.3  dyoung  *
     82  1.3  dyoung  *      Value in microseconds of the MAC's 64-bit 802.11 Time
     83  1.3  dyoung  *      Synchronization Function timer when the first bit of the
     84  1.3  dyoung  *      MPDU arrived at the MAC. For received frames, only.
     85  1.3  dyoung  *
     86  1.3  dyoung  * IEEE80211_RADIOTAP_CHANNEL           2 x u_int16_t   MHz, bitmap
     87  1.1  dyoung  *
     88  1.3  dyoung  *      Tx/Rx frequency in MHz, followed by flags (see below).
     89  1.1  dyoung  *
     90  1.1  dyoung  * IEEE80211_RADIOTAP_FHSS              u_int16_t       see below
     91  1.1  dyoung  *
     92  1.1  dyoung  *      For frequency-hopping radios, the hop set (first byte)
     93  1.1  dyoung  *      and pattern (second byte).
     94  1.1  dyoung  *
     95  1.4  dyoung  * IEEE80211_RADIOTAP_RATE              u_int8_t        500kb/s
     96  1.3  dyoung  *
     97  1.3  dyoung  *      Tx/Rx data rate
     98  1.1  dyoung  *
     99  1.4  dyoung  * IEEE80211_RADIOTAP_DBM_ANTSIGNAL     int8_t          decibels from
    100  1.4  dyoung  *                                                      one milliwatt (dBm)
    101  1.1  dyoung  *
    102  1.4  dyoung  *      RF signal power at the antenna, decibel difference from
    103  1.4  dyoung  *      one milliwatt.
    104  1.1  dyoung  *
    105  1.4  dyoung  * IEEE80211_RADIOTAP_DBM_ANTNOISE      int8_t          decibels from
    106  1.4  dyoung  *                                                      one milliwatt (dBm)
    107  1.1  dyoung  *
    108  1.4  dyoung  *      RF noise power at the antenna, decibel difference from one
    109  1.4  dyoung  *      milliwatt.
    110  1.4  dyoung  *
    111  1.4  dyoung  * IEEE80211_RADIOTAP_DB_ANTSIGNAL      u_int8_t        decibel (dB)
    112  1.4  dyoung  *
    113  1.4  dyoung  *      RF signal power at the antenna, decibel difference from an
    114  1.4  dyoung  *      arbitrary, fixed reference.
    115  1.4  dyoung  *
    116  1.4  dyoung  * IEEE80211_RADIOTAP_DB_ANTNOISE       u_int8_t        decibel (dB)
    117  1.4  dyoung  *
    118  1.4  dyoung  *      RF noise power at the antenna, decibel difference from an
    119  1.4  dyoung  *      arbitrary, fixed reference point.
    120  1.1  dyoung  *
    121  1.1  dyoung  * IEEE80211_RADIOTAP_BARKER_CODE_LOCK  u_int16_t       unitless
    122  1.1  dyoung  *
    123  1.1  dyoung  *      Quality of Barker code lock. Unitless. Monotonically
    124  1.1  dyoung  *      nondecreasing with "better" lock strength. Called "Signal
    125  1.1  dyoung  *      Quality" in datasheets.  (Is there a standard way to measure
    126  1.1  dyoung  *      this?)
    127  1.1  dyoung  *
    128  1.1  dyoung  * IEEE80211_RADIOTAP_TX_ATTENUATION    u_int16_t       unitless
    129  1.1  dyoung  *
    130  1.1  dyoung  *      Transmit power expressed as unitless distance from max
    131  1.1  dyoung  *      power set at factory calibration.  0 is max power.
    132  1.1  dyoung  *      Monotonically nondecreasing with lower power levels.
    133  1.1  dyoung  *
    134  1.1  dyoung  * IEEE80211_RADIOTAP_DB_TX_ATTENUATION u_int16_t       decibels (dB)
    135  1.1  dyoung  *
    136  1.1  dyoung  *      Transmit power expressed as decibel distance from max power
    137  1.1  dyoung  *      set at factory calibration.  0 is max power.  Monotonically
    138  1.1  dyoung  *      nondecreasing with lower power levels.
    139  1.1  dyoung  *
    140  1.4  dyoung  * IEEE80211_RADIOTAP_DBM_TX_POWER      int8_t          decibels from
    141  1.4  dyoung  *                                                      one milliwatt (dBm)
    142  1.1  dyoung  *
    143  1.1  dyoung  *      Transmit power expressed as dBm (decibels from a 1 milliwatt
    144  1.1  dyoung  *      reference). This is the absolute power level measured at
    145  1.1  dyoung  *      the antenna port.
    146  1.1  dyoung  *
    147  1.3  dyoung  * IEEE80211_RADIOTAP_FLAGS             u_int8_t        bitmap
    148  1.1  dyoung  *
    149  1.1  dyoung  *      Properties of transmitted and received frames. See flags
    150  1.1  dyoung  *      defined below.
    151  1.1  dyoung  *
    152  1.3  dyoung  * IEEE80211_RADIOTAP_ANTENNA           u_int8_t        antenna index
    153  1.1  dyoung  *
    154  1.1  dyoung  *      Unitless indication of the Rx/Tx antenna for this packet.
    155  1.1  dyoung  *      The first antenna is antenna 0.
    156  1.1  dyoung  */
    157  1.1  dyoung enum ieee80211_radiotap_type {
    158  1.3  dyoung 	IEEE80211_RADIOTAP_TSFT = 0,
    159  1.1  dyoung 	IEEE80211_RADIOTAP_FLAGS = 1,
    160  1.1  dyoung 	IEEE80211_RADIOTAP_RATE = 2,
    161  1.1  dyoung 	IEEE80211_RADIOTAP_CHANNEL = 3,
    162  1.1  dyoung 	IEEE80211_RADIOTAP_FHSS = 4,
    163  1.4  dyoung 	IEEE80211_RADIOTAP_DBM_ANTSIGNAL = 5,
    164  1.4  dyoung 	IEEE80211_RADIOTAP_DBM_ANTNOISE = 6,
    165  1.1  dyoung 	IEEE80211_RADIOTAP_LOCK_QUALITY = 7,
    166  1.1  dyoung 	IEEE80211_RADIOTAP_TX_ATTENUATION = 8,
    167  1.1  dyoung 	IEEE80211_RADIOTAP_DB_TX_ATTENUATION = 9,
    168  1.1  dyoung 	IEEE80211_RADIOTAP_DBM_TX_POWER = 10,
    169  1.1  dyoung 	IEEE80211_RADIOTAP_ANTENNA = 11,
    170  1.4  dyoung 	IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12,
    171  1.4  dyoung 	IEEE80211_RADIOTAP_DB_ANTNOISE = 13,
    172  1.3  dyoung 	IEEE80211_RADIOTAP_EXT = 31
    173  1.1  dyoung };
    174  1.4  dyoung 
    175  1.4  dyoung #ifndef _KERNEL
    176  1.4  dyoung /* Channel flags. */
    177  1.6  dyoung #define	IEEE80211_CHAN_TURBO	0x0010	/* Turbo channel */
    178  1.6  dyoung #define	IEEE80211_CHAN_CCK	0x0020	/* CCK channel */
    179  1.6  dyoung #define	IEEE80211_CHAN_OFDM	0x0040	/* OFDM channel */
    180  1.6  dyoung #define	IEEE80211_CHAN_2GHZ	0x0080	/* 2 GHz spectrum channel. */
    181  1.6  dyoung #define	IEEE80211_CHAN_5GHZ	0x0100	/* 5 GHz spectrum channel */
    182  1.6  dyoung #define	IEEE80211_CHAN_PASSIVE	0x0200	/* Only passive scan allowed */
    183  1.4  dyoung #endif /* !_KERNEL */
    184  1.1  dyoung 
    185  1.1  dyoung /* For IEEE80211_RADIOTAP_FLAGS */
    186  1.3  dyoung #define	IEEE80211_RADIOTAP_F_CFP	0x01	/* sent/received
    187  1.1  dyoung 						 * during CFP
    188  1.1  dyoung 						 */
    189  1.3  dyoung #define	IEEE80211_RADIOTAP_F_SHORTPRE	0x02	/* sent/received
    190  1.1  dyoung 						 * with short
    191  1.1  dyoung 						 * preamble
    192  1.1  dyoung 						 */
    193  1.3  dyoung #define	IEEE80211_RADIOTAP_F_WEP	0x04	/* sent/received
    194  1.1  dyoung 						 * with WEP encryption
    195  1.1  dyoung 						 */
    196  1.3  dyoung #define	IEEE80211_RADIOTAP_F_FRAG	0x08	/* sent/received
    197  1.1  dyoung 						 * with fragmentation
    198  1.1  dyoung 						 */
    199  1.1  dyoung 
    200  1.1  dyoung #endif /* _NET_IF_IEEE80211RADIOTAP_H_ */
    201