radiotap.h revision 296373
150276Speter/* $FreeBSD: head/contrib/wpa/src/utils/radiotap.h 214734 2010-11-03 10:43:38Z rpaulo $ */
2166124Srafan/* $NetBSD: ieee80211_radiotap.h,v 1.11 2005/06/22 06:16:02 dyoung Exp $ */
350276Speter
450276Speter/*-
550276Speter * Copyright (c) 2003, 2004 David Young.  All rights reserved.
650276Speter *
750276Speter * Redistribution and use in source and binary forms, with or without
850276Speter * modification, are permitted provided that the following conditions
950276Speter * are met:
1050276Speter * 1. Redistributions of source code must retain the above copyright
1150276Speter *    notice, this list of conditions and the following disclaimer.
1250276Speter * 2. Redistributions in binary form must reproduce the above copyright
1350276Speter *    notice, this list of conditions and the following disclaimer in the
1450276Speter *    documentation and/or other materials provided with the distribution.
1550276Speter * 3. The name of David Young may not be used to endorse or promote
1650276Speter *    products derived from this software without specific prior
1750276Speter *    written permission.
1850276Speter *
1950276Speter * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
2050276Speter * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
2150276Speter * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
2250276Speter * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DAVID
2350276Speter * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
2450276Speter * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
2550276Speter * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2650276Speter * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
2750276Speter * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2850276Speter * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29174993Srafan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
3050276Speter * OF SUCH DAMAGE.
3150276Speter */
3262449Speter
3362449Speter/*
3462449Speter * Modifications to fit into the linux IEEE 802.11 stack,
3562449Speter * Mike Kershaw (dragorn@kismetwireless.net)
3662449Speter */
3762449Speter
3862449Speter#ifndef IEEE80211RADIOTAP_H
3962449Speter#define IEEE80211RADIOTAP_H
4050276Speter
4150276Speter#include <stdint.h>
4250276Speter
4350276Speter/* Base version of the radiotap packet header data */
4450276Speter#define PKTHDR_RADIOTAP_VERSION		0
4550276Speter
4650276Speter/* A generic radio capture format is desirable. There is one for
4750276Speter * Linux, but it is neither rigidly defined (there were not even
4850276Speter * units given for some fields) nor easily extensible.
4950276Speter *
5050276Speter * I suggest the following extensible radio capture format. It is
5150276Speter * based on a bitmap indicating which fields are present.
5250276Speter *
5350276Speter * I am trying to describe precisely what the application programmer
5450276Speter * should expect in the following, and for that reason I tell the
5550276Speter * units and origin of each measurement (where it applies), or else I
5650276Speter * use sufficiently weaselly language ("is a monotonically nondecreasing
5750276Speter * function of...") that I cannot set false expectations for lawyerly
5850276Speter * readers.
5950276Speter */
60166124Srafan
61166124Srafan/* The radio capture header precedes the 802.11 header.
62166124Srafan * All data in the header is little endian on all platforms.
63166124Srafan */
64166124Srafanstruct ieee80211_radiotap_header {
65166124Srafan	uint8_t it_version;	/* Version 0. Only increases
66166124Srafan				 * for drastic changes,
67166124Srafan				 * introduction of compatible
68166124Srafan				 * new fields does not count.
69166124Srafan				 */
70166124Srafan	uint8_t it_pad;
71166124Srafan	uint16_t it_len;	/* length of the whole
7250276Speter				 * header in bytes, including
7350276Speter				 * it_version, it_pad,
7450276Speter				 * it_len, and data fields.
7550276Speter				 */
76166124Srafan	uint32_t it_present;	/* A bitmap telling which
77166124Srafan				 * fields are present. Set bit 31
78166124Srafan				 * (0x80000000) to extend the
79166124Srafan				 * bitmap by another 32 bits.
80166124Srafan				 * Additional extensions are made
8150276Speter				 * by setting bit 31.
8250276Speter				 */
8350276Speter};
8450276Speter
85166124Srafan/* Name                                 Data type    Units
86166124Srafan * ----                                 ---------    -----
87166124Srafan *
88166124Srafan * IEEE80211_RADIOTAP_TSFT              __le64       microseconds
89166124Srafan *
90166124Srafan *      Value in microseconds of the MAC's 64-bit 802.11 Time
9150276Speter *      Synchronization Function timer when the first bit of the
92166124Srafan *      MPDU arrived at the MAC. For received frames, only.
93174993Srafan *
94166124Srafan * IEEE80211_RADIOTAP_CHANNEL           2 x uint16_t   MHz, bitmap
95166124Srafan *
9650276Speter *      Tx/Rx frequency in MHz, followed by flags (see below).
9750276Speter *
9850276Speter * IEEE80211_RADIOTAP_FHSS              uint16_t       see below
9950276Speter *
10050276Speter *      For frequency-hopping radios, the hop set (first byte)
10150276Speter *      and pattern (second byte).
102 *
103 * IEEE80211_RADIOTAP_RATE              u8           500kb/s
104 *
105 *      Tx/Rx data rate
106 *
107 * IEEE80211_RADIOTAP_DBM_ANTSIGNAL     s8           decibels from
108 *                                                   one milliwatt (dBm)
109 *
110 *      RF signal power at the antenna, decibel difference from
111 *      one milliwatt.
112 *
113 * IEEE80211_RADIOTAP_DBM_ANTNOISE      s8           decibels from
114 *                                                   one milliwatt (dBm)
115 *
116 *      RF noise power at the antenna, decibel difference from one
117 *      milliwatt.
118 *
119 * IEEE80211_RADIOTAP_DB_ANTSIGNAL      u8           decibel (dB)
120 *
121 *      RF signal power at the antenna, decibel difference from an
122 *      arbitrary, fixed reference.
123 *
124 * IEEE80211_RADIOTAP_DB_ANTNOISE       u8           decibel (dB)
125 *
126 *      RF noise power at the antenna, decibel difference from an
127 *      arbitrary, fixed reference point.
128 *
129 * IEEE80211_RADIOTAP_LOCK_QUALITY      uint16_t       unitless
130 *
131 *      Quality of Barker code lock. Unitless. Monotonically
132 *      nondecreasing with "better" lock strength. Called "Signal
133 *      Quality" in datasheets.  (Is there a standard way to measure
134 *      this?)
135 *
136 * IEEE80211_RADIOTAP_TX_ATTENUATION    uint16_t       unitless
137 *
138 *      Transmit power expressed as unitless distance from max
139 *      power set at factory calibration.  0 is max power.
140 *      Monotonically nondecreasing with lower power levels.
141 *
142 * IEEE80211_RADIOTAP_DB_TX_ATTENUATION uint16_t       decibels (dB)
143 *
144 *      Transmit power expressed as decibel distance from max power
145 *      set at factory calibration.  0 is max power.  Monotonically
146 *      nondecreasing with lower power levels.
147 *
148 * IEEE80211_RADIOTAP_DBM_TX_POWER      s8           decibels from
149 *                                                   one milliwatt (dBm)
150 *
151 *      Transmit power expressed as dBm (decibels from a 1 milliwatt
152 *      reference). This is the absolute power level measured at
153 *      the antenna port.
154 *
155 * IEEE80211_RADIOTAP_FLAGS             u8           bitmap
156 *
157 *      Properties of transmitted and received frames. See flags
158 *      defined below.
159 *
160 * IEEE80211_RADIOTAP_ANTENNA           u8           antenna index
161 *
162 *      Unitless indication of the Rx/Tx antenna for this packet.
163 *      The first antenna is antenna 0.
164 *
165 * IEEE80211_RADIOTAP_RX_FLAGS          uint16_t       bitmap
166 *
167 *     Properties of received frames. See flags defined below.
168 *
169 * IEEE80211_RADIOTAP_TX_FLAGS          uint16_t       bitmap
170 *
171 *     Properties of transmitted frames. See flags defined below.
172 *
173 * IEEE80211_RADIOTAP_RTS_RETRIES       u8           data
174 *
175 *     Number of rts retries a transmitted frame used.
176 *
177 * IEEE80211_RADIOTAP_DATA_RETRIES      u8           data
178 *
179 *     Number of unicast retries a transmitted frame used.
180 *
181 */
182enum ieee80211_radiotap_type {
183	IEEE80211_RADIOTAP_TSFT = 0,
184	IEEE80211_RADIOTAP_FLAGS = 1,
185	IEEE80211_RADIOTAP_RATE = 2,
186	IEEE80211_RADIOTAP_CHANNEL = 3,
187	IEEE80211_RADIOTAP_FHSS = 4,
188	IEEE80211_RADIOTAP_DBM_ANTSIGNAL = 5,
189	IEEE80211_RADIOTAP_DBM_ANTNOISE = 6,
190	IEEE80211_RADIOTAP_LOCK_QUALITY = 7,
191	IEEE80211_RADIOTAP_TX_ATTENUATION = 8,
192	IEEE80211_RADIOTAP_DB_TX_ATTENUATION = 9,
193	IEEE80211_RADIOTAP_DBM_TX_POWER = 10,
194	IEEE80211_RADIOTAP_ANTENNA = 11,
195	IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12,
196	IEEE80211_RADIOTAP_DB_ANTNOISE = 13,
197	IEEE80211_RADIOTAP_RX_FLAGS = 14,
198	IEEE80211_RADIOTAP_TX_FLAGS = 15,
199	IEEE80211_RADIOTAP_RTS_RETRIES = 16,
200	IEEE80211_RADIOTAP_DATA_RETRIES = 17,
201	IEEE80211_RADIOTAP_EXT = 31
202};
203
204/* Channel flags. */
205#define	IEEE80211_CHAN_TURBO	0x0010	/* Turbo channel */
206#define	IEEE80211_CHAN_CCK	0x0020	/* CCK channel */
207#define	IEEE80211_CHAN_OFDM	0x0040	/* OFDM channel */
208#define	IEEE80211_CHAN_2GHZ	0x0080	/* 2 GHz spectrum channel. */
209#define	IEEE80211_CHAN_5GHZ	0x0100	/* 5 GHz spectrum channel */
210#define	IEEE80211_CHAN_PASSIVE	0x0200	/* Only passive scan allowed */
211#define	IEEE80211_CHAN_DYN	0x0400	/* Dynamic CCK-OFDM channel */
212#define	IEEE80211_CHAN_GFSK	0x0800	/* GFSK channel (FHSS PHY) */
213
214/* For IEEE80211_RADIOTAP_FLAGS */
215#define	IEEE80211_RADIOTAP_F_CFP	0x01	/* sent/received
216						 * during CFP
217						 */
218#define	IEEE80211_RADIOTAP_F_SHORTPRE	0x02	/* sent/received
219						 * with short
220						 * preamble
221						 */
222#define	IEEE80211_RADIOTAP_F_WEP	0x04	/* sent/received
223						 * with WEP encryption
224						 */
225#define	IEEE80211_RADIOTAP_F_FRAG	0x08	/* sent/received
226						 * with fragmentation
227						 */
228#define	IEEE80211_RADIOTAP_F_FCS	0x10	/* frame includes FCS */
229#define	IEEE80211_RADIOTAP_F_DATAPAD	0x20	/* frame has padding between
230						 * 802.11 header and payload
231						 * (to 32-bit boundary)
232						 */
233/* For IEEE80211_RADIOTAP_RX_FLAGS */
234#define IEEE80211_RADIOTAP_F_RX_BADFCS	0x0001	/* frame failed crc check */
235
236/* For IEEE80211_RADIOTAP_TX_FLAGS */
237#define IEEE80211_RADIOTAP_F_TX_FAIL	0x0001	/* failed due to excessive
238						 * retries */
239#define IEEE80211_RADIOTAP_F_TX_CTS	0x0002	/* used cts 'protection' */
240#define IEEE80211_RADIOTAP_F_TX_RTS	0x0004	/* used rts/cts handshake */
241#define IEEE80211_RADIOTAP_F_TX_NOACK	0x0008	/* don't expect an ACK */
242
243#endif				/* IEEE80211_RADIOTAP_H */
244