ieee80211_radiotap.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. /*
  2. * Copyright (c) 2003, 2004 David Young. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * 3. The name of David Young may not be used to endorse or promote
  13. * products derived from this software without specific prior
  14. * written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  18. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  19. * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID
  20. * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  21. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  22. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  25. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  27. * OF SUCH DAMAGE.
  28. */
  29. /*
  30. * Modifications to fit into the linux IEEE 802.11 stack,
  31. * Mike Kershaw (dragorn@kismetwireless.net)
  32. */
  33. #ifndef IEEE80211RADIOTAP_H
  34. #define IEEE80211RADIOTAP_H
  35. #include <linux/if_ether.h>
  36. #include <linux/kernel.h>
  37. #include <asm/unaligned.h>
  38. /* Base version of the radiotap packet header data */
  39. #define PKTHDR_RADIOTAP_VERSION 0
  40. /* A generic radio capture format is desirable. There is one for
  41. * Linux, but it is neither rigidly defined (there were not even
  42. * units given for some fields) nor easily extensible.
  43. *
  44. * I suggest the following extensible radio capture format. It is
  45. * based on a bitmap indicating which fields are present.
  46. *
  47. * I am trying to describe precisely what the application programmer
  48. * should expect in the following, and for that reason I tell the
  49. * units and origin of each measurement (where it applies), or else I
  50. * use sufficiently weaselly language ("is a monotonically nondecreasing
  51. * function of...") that I cannot set false expectations for lawyerly
  52. * readers.
  53. */
  54. /*
  55. * The radio capture header precedes the 802.11 header.
  56. * All data in the header is little endian on all platforms.
  57. */
  58. struct ieee80211_radiotap_header {
  59. u8 it_version; /* Version 0. Only increases
  60. * for drastic changes,
  61. * introduction of compatible
  62. * new fields does not count.
  63. */
  64. u8 it_pad;
  65. __le16 it_len; /* length of the whole
  66. * header in bytes, including
  67. * it_version, it_pad,
  68. * it_len, and data fields.
  69. */
  70. __le32 it_present; /* A bitmap telling which
  71. * fields are present. Set bit 31
  72. * (0x80000000) to extend the
  73. * bitmap by another 32 bits.
  74. * Additional extensions are made
  75. * by setting bit 31.
  76. */
  77. } __packed;
  78. /* Name Data type Units
  79. * ---- --------- -----
  80. *
  81. * IEEE80211_RADIOTAP_TSFT __le64 microseconds
  82. *
  83. * Value in microseconds of the MAC's 64-bit 802.11 Time
  84. * Synchronization Function timer when the first bit of the
  85. * MPDU arrived at the MAC. For received frames, only.
  86. *
  87. * IEEE80211_RADIOTAP_CHANNEL 2 x __le16 MHz, bitmap
  88. *
  89. * Tx/Rx frequency in MHz, followed by flags (see below).
  90. *
  91. * IEEE80211_RADIOTAP_FHSS __le16 see below
  92. *
  93. * For frequency-hopping radios, the hop set (first byte)
  94. * and pattern (second byte).
  95. *
  96. * IEEE80211_RADIOTAP_RATE u8 500kb/s
  97. *
  98. * Tx/Rx data rate
  99. *
  100. * IEEE80211_RADIOTAP_DBM_ANTSIGNAL s8 decibels from
  101. * one milliwatt (dBm)
  102. *
  103. * RF signal power at the antenna, decibel difference from
  104. * one milliwatt.
  105. *
  106. * IEEE80211_RADIOTAP_DBM_ANTNOISE s8 decibels from
  107. * one milliwatt (dBm)
  108. *
  109. * RF noise power at the antenna, decibel difference from one
  110. * milliwatt.
  111. *
  112. * IEEE80211_RADIOTAP_DB_ANTSIGNAL u8 decibel (dB)
  113. *
  114. * RF signal power at the antenna, decibel difference from an
  115. * arbitrary, fixed reference.
  116. *
  117. * IEEE80211_RADIOTAP_DB_ANTNOISE u8 decibel (dB)
  118. *
  119. * RF noise power at the antenna, decibel difference from an
  120. * arbitrary, fixed reference point.
  121. *
  122. * IEEE80211_RADIOTAP_LOCK_QUALITY __le16 unitless
  123. *
  124. * Quality of Barker code lock. Unitless. Monotonically
  125. * nondecreasing with "better" lock strength. Called "Signal
  126. * Quality" in datasheets. (Is there a standard way to measure
  127. * this?)
  128. *
  129. * IEEE80211_RADIOTAP_TX_ATTENUATION __le16 unitless
  130. *
  131. * Transmit power expressed as unitless distance from max
  132. * power set at factory calibration. 0 is max power.
  133. * Monotonically nondecreasing with lower power levels.
  134. *
  135. * IEEE80211_RADIOTAP_DB_TX_ATTENUATION __le16 decibels (dB)
  136. *
  137. * Transmit power expressed as decibel distance from max power
  138. * set at factory calibration. 0 is max power. Monotonically
  139. * nondecreasing with lower power levels.
  140. *
  141. * IEEE80211_RADIOTAP_DBM_TX_POWER s8 decibels from
  142. * one milliwatt (dBm)
  143. *
  144. * Transmit power expressed as dBm (decibels from a 1 milliwatt
  145. * reference). This is the absolute power level measured at
  146. * the antenna port.
  147. *
  148. * IEEE80211_RADIOTAP_FLAGS u8 bitmap
  149. *
  150. * Properties of transmitted and received frames. See flags
  151. * defined below.
  152. *
  153. * IEEE80211_RADIOTAP_ANTENNA u8 antenna index
  154. *
  155. * Unitless indication of the Rx/Tx antenna for this packet.
  156. * The first antenna is antenna 0.
  157. *
  158. * IEEE80211_RADIOTAP_RX_FLAGS __le16 bitmap
  159. *
  160. * Properties of received frames. See flags defined below.
  161. *
  162. * IEEE80211_RADIOTAP_TX_FLAGS __le16 bitmap
  163. *
  164. * Properties of transmitted frames. See flags defined below.
  165. *
  166. * IEEE80211_RADIOTAP_RTS_RETRIES u8 data
  167. *
  168. * Number of rts retries a transmitted frame used.
  169. *
  170. * IEEE80211_RADIOTAP_DATA_RETRIES u8 data
  171. *
  172. * Number of unicast retries a transmitted frame used.
  173. *
  174. * IEEE80211_RADIOTAP_MCS u8, u8, u8 unitless
  175. *
  176. * Contains a bitmap of known fields/flags, the flags, and
  177. * the MCS index.
  178. *
  179. * IEEE80211_RADIOTAP_AMPDU_STATUS u32, u16, u8, u8 unitless
  180. *
  181. * Contains the AMPDU information for the subframe.
  182. *
  183. * IEEE80211_RADIOTAP_VHT u16, u8, u8, u8[4], u8, u8, u16
  184. *
  185. * Contains VHT information about this frame.
  186. */
  187. enum ieee80211_radiotap_type {
  188. IEEE80211_RADIOTAP_TSFT = 0,
  189. IEEE80211_RADIOTAP_FLAGS = 1,
  190. IEEE80211_RADIOTAP_RATE = 2,
  191. IEEE80211_RADIOTAP_CHANNEL = 3,
  192. IEEE80211_RADIOTAP_FHSS = 4,
  193. IEEE80211_RADIOTAP_DBM_ANTSIGNAL = 5,
  194. IEEE80211_RADIOTAP_DBM_ANTNOISE = 6,
  195. IEEE80211_RADIOTAP_LOCK_QUALITY = 7,
  196. IEEE80211_RADIOTAP_TX_ATTENUATION = 8,
  197. IEEE80211_RADIOTAP_DB_TX_ATTENUATION = 9,
  198. IEEE80211_RADIOTAP_DBM_TX_POWER = 10,
  199. IEEE80211_RADIOTAP_ANTENNA = 11,
  200. IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12,
  201. IEEE80211_RADIOTAP_DB_ANTNOISE = 13,
  202. IEEE80211_RADIOTAP_RX_FLAGS = 14,
  203. IEEE80211_RADIOTAP_TX_FLAGS = 15,
  204. IEEE80211_RADIOTAP_RTS_RETRIES = 16,
  205. IEEE80211_RADIOTAP_DATA_RETRIES = 17,
  206. IEEE80211_RADIOTAP_MCS = 19,
  207. IEEE80211_RADIOTAP_AMPDU_STATUS = 20,
  208. IEEE80211_RADIOTAP_VHT = 21,
  209. /* valid in every it_present bitmap, even vendor namespaces */
  210. IEEE80211_RADIOTAP_RADIOTAP_NAMESPACE = 29,
  211. IEEE80211_RADIOTAP_VENDOR_NAMESPACE = 30,
  212. IEEE80211_RADIOTAP_EXT = 31
  213. };
  214. /* Channel flags. */
  215. #define IEEE80211_CHAN_TURBO 0x0010 /* Turbo channel */
  216. #define IEEE80211_CHAN_CCK 0x0020 /* CCK channel */
  217. #define IEEE80211_CHAN_OFDM 0x0040 /* OFDM channel */
  218. #define IEEE80211_CHAN_2GHZ 0x0080 /* 2 GHz spectrum channel. */
  219. #define IEEE80211_CHAN_5GHZ 0x0100 /* 5 GHz spectrum channel */
  220. #define IEEE80211_CHAN_PASSIVE 0x0200 /* Only passive scan allowed */
  221. #define IEEE80211_CHAN_DYN 0x0400 /* Dynamic CCK-OFDM channel */
  222. #define IEEE80211_CHAN_GFSK 0x0800 /* GFSK channel (FHSS PHY) */
  223. #define IEEE80211_CHAN_GSM 0x1000 /* GSM (900 MHz) */
  224. #define IEEE80211_CHAN_STURBO 0x2000 /* Static Turbo */
  225. #define IEEE80211_CHAN_HALF 0x4000 /* Half channel (10 MHz wide) */
  226. #define IEEE80211_CHAN_QUARTER 0x8000 /* Quarter channel (5 MHz wide) */
  227. /* For IEEE80211_RADIOTAP_FLAGS */
  228. #define IEEE80211_RADIOTAP_F_CFP 0x01 /* sent/received
  229. * during CFP
  230. */
  231. #define IEEE80211_RADIOTAP_F_SHORTPRE 0x02 /* sent/received
  232. * with short
  233. * preamble
  234. */
  235. #define IEEE80211_RADIOTAP_F_WEP 0x04 /* sent/received
  236. * with WEP encryption
  237. */
  238. #define IEEE80211_RADIOTAP_F_FRAG 0x08 /* sent/received
  239. * with fragmentation
  240. */
  241. #define IEEE80211_RADIOTAP_F_FCS 0x10 /* frame includes FCS */
  242. #define IEEE80211_RADIOTAP_F_DATAPAD 0x20 /* frame has padding between
  243. * 802.11 header and payload
  244. * (to 32-bit boundary)
  245. */
  246. #define IEEE80211_RADIOTAP_F_BADFCS 0x40 /* bad FCS */
  247. /* For IEEE80211_RADIOTAP_RX_FLAGS */
  248. #define IEEE80211_RADIOTAP_F_RX_BADPLCP 0x0002 /* frame has bad PLCP */
  249. /* For IEEE80211_RADIOTAP_TX_FLAGS */
  250. #define IEEE80211_RADIOTAP_F_TX_FAIL 0x0001 /* failed due to excessive
  251. * retries */
  252. #define IEEE80211_RADIOTAP_F_TX_CTS 0x0002 /* used cts 'protection' */
  253. #define IEEE80211_RADIOTAP_F_TX_RTS 0x0004 /* used rts/cts handshake */
  254. #define IEEE80211_RADIOTAP_F_TX_NOACK 0x0008 /* don't expect an ack */
  255. /* For IEEE80211_RADIOTAP_MCS */
  256. #define IEEE80211_RADIOTAP_MCS_HAVE_BW 0x01
  257. #define IEEE80211_RADIOTAP_MCS_HAVE_MCS 0x02
  258. #define IEEE80211_RADIOTAP_MCS_HAVE_GI 0x04
  259. #define IEEE80211_RADIOTAP_MCS_HAVE_FMT 0x08
  260. #define IEEE80211_RADIOTAP_MCS_HAVE_FEC 0x10
  261. #define IEEE80211_RADIOTAP_MCS_HAVE_STBC 0x20
  262. #define IEEE80211_RADIOTAP_MCS_BW_MASK 0x03
  263. #define IEEE80211_RADIOTAP_MCS_BW_20 0
  264. #define IEEE80211_RADIOTAP_MCS_BW_40 1
  265. #define IEEE80211_RADIOTAP_MCS_BW_20L 2
  266. #define IEEE80211_RADIOTAP_MCS_BW_20U 3
  267. #define IEEE80211_RADIOTAP_MCS_SGI 0x04
  268. #define IEEE80211_RADIOTAP_MCS_FMT_GF 0x08
  269. #define IEEE80211_RADIOTAP_MCS_FEC_LDPC 0x10
  270. #define IEEE80211_RADIOTAP_MCS_STBC_MASK 0x60
  271. #define IEEE80211_RADIOTAP_MCS_STBC_1 1
  272. #define IEEE80211_RADIOTAP_MCS_STBC_2 2
  273. #define IEEE80211_RADIOTAP_MCS_STBC_3 3
  274. #define IEEE80211_RADIOTAP_MCS_STBC_SHIFT 5
  275. /* For IEEE80211_RADIOTAP_AMPDU_STATUS */
  276. #define IEEE80211_RADIOTAP_AMPDU_REPORT_ZEROLEN 0x0001
  277. #define IEEE80211_RADIOTAP_AMPDU_IS_ZEROLEN 0x0002
  278. #define IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN 0x0004
  279. #define IEEE80211_RADIOTAP_AMPDU_IS_LAST 0x0008
  280. #define IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR 0x0010
  281. #define IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN 0x0020
  282. /* For IEEE80211_RADIOTAP_VHT */
  283. #define IEEE80211_RADIOTAP_VHT_KNOWN_STBC 0x0001
  284. #define IEEE80211_RADIOTAP_VHT_KNOWN_TXOP_PS_NA 0x0002
  285. #define IEEE80211_RADIOTAP_VHT_KNOWN_GI 0x0004
  286. #define IEEE80211_RADIOTAP_VHT_KNOWN_SGI_NSYM_DIS 0x0008
  287. #define IEEE80211_RADIOTAP_VHT_KNOWN_LDPC_EXTRA_OFDM_SYM 0x0010
  288. #define IEEE80211_RADIOTAP_VHT_KNOWN_BEAMFORMED 0x0020
  289. #define IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH 0x0040
  290. #define IEEE80211_RADIOTAP_VHT_KNOWN_GROUP_ID 0x0080
  291. #define IEEE80211_RADIOTAP_VHT_KNOWN_PARTIAL_AID 0x0100
  292. #define IEEE80211_RADIOTAP_VHT_FLAG_STBC 0x01
  293. #define IEEE80211_RADIOTAP_VHT_FLAG_TXOP_PS_NA 0x02
  294. #define IEEE80211_RADIOTAP_VHT_FLAG_SGI 0x04
  295. #define IEEE80211_RADIOTAP_VHT_FLAG_SGI_NSYM_M10_9 0x08
  296. #define IEEE80211_RADIOTAP_VHT_FLAG_LDPC_EXTRA_OFDM_SYM 0x10
  297. #define IEEE80211_RADIOTAP_VHT_FLAG_BEAMFORMED 0x20
  298. #define IEEE80211_RADIOTAP_CODING_LDPC_USER0 0x01
  299. #define IEEE80211_RADIOTAP_CODING_LDPC_USER1 0x02
  300. #define IEEE80211_RADIOTAP_CODING_LDPC_USER2 0x04
  301. #define IEEE80211_RADIOTAP_CODING_LDPC_USER3 0x08
  302. /* helpers */
  303. static inline int ieee80211_get_radiotap_len(unsigned char *data)
  304. {
  305. struct ieee80211_radiotap_header *hdr =
  306. (struct ieee80211_radiotap_header *)data;
  307. return get_unaligned_le16(&hdr->it_len);
  308. }
  309. #endif /* IEEE80211_RADIOTAP_H */