ieee80211_radiotap.h 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /* $FreeBSD: src/sys/net80211/ieee80211_radiotap.h,v 1.5 2005/01/22 20:12:05 sam Exp $ */
  2. /* $NetBSD: ieee80211_radiotap.h,v 1.11 2005/06/22 06:16:02 dyoung Exp $ */
  3. /*-
  4. * Copyright (c) 2003, 2004 David Young. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. The name of David Young may not be used to endorse or promote
  15. * products derived from this software without specific prior
  16. * written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
  19. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  20. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  21. * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID
  22. * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  23. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  24. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  26. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  27. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  29. * OF SUCH DAMAGE.
  30. */
  31. /*
  32. * Modifications to fit into the linux IEEE 802.11 stack,
  33. * Mike Kershaw (dragorn@kismetwireless.net)
  34. */
  35. #ifndef IEEE80211RADIOTAP_H
  36. #define IEEE80211RADIOTAP_H
  37. #include <linux/if_ether.h>
  38. #include <linux/kernel.h>
  39. #include <asm/unaligned.h>
  40. /* Radiotap header version (from official NetBSD feed) */
  41. #define IEEE80211RADIOTAP_VERSION "1.5"
  42. /* Base version of the radiotap packet header data */
  43. #define PKTHDR_RADIOTAP_VERSION 0
  44. /* A generic radio capture format is desirable. There is one for
  45. * Linux, but it is neither rigidly defined (there were not even
  46. * units given for some fields) nor easily extensible.
  47. *
  48. * I suggest the following extensible radio capture format. It is
  49. * based on a bitmap indicating which fields are present.
  50. *
  51. * I am trying to describe precisely what the application programmer
  52. * should expect in the following, and for that reason I tell the
  53. * units and origin of each measurement (where it applies), or else I
  54. * use sufficiently weaselly language ("is a monotonically nondecreasing
  55. * function of...") that I cannot set false expectations for lawyerly
  56. * readers.
  57. */
  58. /* XXX tcpdump/libpcap do not tolerate variable-length headers,
  59. * yet, so we pad every radiotap header to 64 bytes. Ugh.
  60. */
  61. #define IEEE80211_RADIOTAP_HDRLEN 64
  62. /* The radio capture header precedes the 802.11 header.
  63. * All data in the header is little endian on all platforms.
  64. */
  65. struct ieee80211_radiotap_header {
  66. u8 it_version; /* Version 0. Only increases
  67. * for drastic changes,
  68. * introduction of compatible
  69. * new fields does not count.
  70. */
  71. u8 it_pad;
  72. __le16 it_len; /* length of the whole
  73. * header in bytes, including
  74. * it_version, it_pad,
  75. * it_len, and data fields.
  76. */
  77. __le32 it_present; /* A bitmap telling which
  78. * fields are present. Set bit 31
  79. * (0x80000000) to extend the
  80. * bitmap by another 32 bits.
  81. * Additional extensions are made
  82. * by setting bit 31.
  83. */
  84. };
  85. /* Name Data type Units
  86. * ---- --------- -----
  87. *
  88. * IEEE80211_RADIOTAP_TSFT __le64 microseconds
  89. *
  90. * Value in microseconds of the MAC's 64-bit 802.11 Time
  91. * Synchronization Function timer when the first bit of the
  92. * MPDU arrived at the MAC. For received frames, only.
  93. *
  94. * IEEE80211_RADIOTAP_CHANNEL 2 x __le16 MHz, bitmap
  95. *
  96. * Tx/Rx frequency in MHz, followed by flags (see below).
  97. *
  98. * IEEE80211_RADIOTAP_FHSS __le16 see below
  99. *
  100. * For frequency-hopping radios, the hop set (first byte)
  101. * 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 __le16 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 __le16 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 __le16 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 __le16 bitmap
  166. *
  167. * Properties of received frames. See flags defined below.
  168. *
  169. * IEEE80211_RADIOTAP_TX_FLAGS __le16 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. */
  182. enum 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. /* Channel flags. */
  204. #define IEEE80211_CHAN_TURBO 0x0010 /* Turbo channel */
  205. #define IEEE80211_CHAN_CCK 0x0020 /* CCK channel */
  206. #define IEEE80211_CHAN_OFDM 0x0040 /* OFDM channel */
  207. #define IEEE80211_CHAN_2GHZ 0x0080 /* 2 GHz spectrum channel. */
  208. #define IEEE80211_CHAN_5GHZ 0x0100 /* 5 GHz spectrum channel */
  209. #define IEEE80211_CHAN_PASSIVE 0x0200 /* Only passive scan allowed */
  210. #define IEEE80211_CHAN_DYN 0x0400 /* Dynamic CCK-OFDM channel */
  211. #define IEEE80211_CHAN_GFSK 0x0800 /* GFSK channel (FHSS PHY) */
  212. /* For IEEE80211_RADIOTAP_FLAGS */
  213. #define IEEE80211_RADIOTAP_F_CFP 0x01 /* sent/received
  214. * during CFP
  215. */
  216. #define IEEE80211_RADIOTAP_F_SHORTPRE 0x02 /* sent/received
  217. * with short
  218. * preamble
  219. */
  220. #define IEEE80211_RADIOTAP_F_WEP 0x04 /* sent/received
  221. * with WEP encryption
  222. */
  223. #define IEEE80211_RADIOTAP_F_FRAG 0x08 /* sent/received
  224. * with fragmentation
  225. */
  226. #define IEEE80211_RADIOTAP_F_FCS 0x10 /* frame includes FCS */
  227. #define IEEE80211_RADIOTAP_F_DATAPAD 0x20 /* frame has padding between
  228. * 802.11 header and payload
  229. * (to 32-bit boundary)
  230. */
  231. /* For IEEE80211_RADIOTAP_RX_FLAGS */
  232. #define IEEE80211_RADIOTAP_F_RX_BADFCS 0x0001 /* frame failed crc check */
  233. /* For IEEE80211_RADIOTAP_TX_FLAGS */
  234. #define IEEE80211_RADIOTAP_F_TX_FAIL 0x0001 /* failed due to excessive
  235. * retries */
  236. #define IEEE80211_RADIOTAP_F_TX_CTS 0x0002 /* used cts 'protection' */
  237. #define IEEE80211_RADIOTAP_F_TX_RTS 0x0004 /* used rts/cts handshake */
  238. /* Ugly macro to convert literal channel numbers into their mhz equivalents
  239. * There are certianly some conditions that will break this (like feeding it '30')
  240. * but they shouldn't arise since nothing talks on channel 30. */
  241. #define ieee80211chan2mhz(x) \
  242. (((x) <= 14) ? \
  243. (((x) == 14) ? 2484 : ((x) * 5) + 2407) : \
  244. ((x) + 1000) * 5)
  245. /* helpers */
  246. static inline int ieee80211_get_radiotap_len(unsigned char *data)
  247. {
  248. struct ieee80211_radiotap_header *hdr =
  249. (struct ieee80211_radiotap_header *)data;
  250. return le16_to_cpu(get_unaligned(&hdr->it_len));
  251. }
  252. #endif /* IEEE80211_RADIOTAP_H */