mac80211_hwsim.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * mac80211_hwsim - software simulator of 802.11 radio(s) for mac80211
  3. * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2011, Javier Lopez <jlopex@gmail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef __MAC80211_HWSIM_H
  11. #define __MAC80211_HWSIM_H
  12. /**
  13. * enum hwsim_tx_control_flags - flags to describe transmission info/status
  14. *
  15. * These flags are used to give the wmediumd extra information in order to
  16. * modify its behavior for each frame
  17. *
  18. * @HWSIM_TX_CTL_REQ_TX_STATUS: require TX status callback for this frame.
  19. * @HWSIM_TX_CTL_NO_ACK: tell the wmediumd not to wait for an ack
  20. * @HWSIM_TX_STAT_ACK: Frame was acknowledged
  21. *
  22. */
  23. enum hwsim_tx_control_flags {
  24. HWSIM_TX_CTL_REQ_TX_STATUS = BIT(0),
  25. HWSIM_TX_CTL_NO_ACK = BIT(1),
  26. HWSIM_TX_STAT_ACK = BIT(2),
  27. };
  28. /**
  29. * DOC: Frame transmission/registration support
  30. *
  31. * Frame transmission and registration support exists to allow userspace
  32. * entities such as wmediumd to receive and process all broadcasted
  33. * frames from a mac80211_hwsim radio device.
  34. *
  35. * This allow user space applications to decide if the frame should be
  36. * dropped or not and implement a wireless medium simulator at user space.
  37. *
  38. * Registration is done by sending a register message to the driver and
  39. * will be automatically unregistered if the user application doesn't
  40. * responds to sent frames.
  41. * Once registered the user application has to take responsibility of
  42. * broadcasting the frames to all listening mac80211_hwsim radio
  43. * interfaces.
  44. *
  45. * For more technical details, see the corresponding command descriptions
  46. * below.
  47. */
  48. /**
  49. * enum hwsim_commands - supported hwsim commands
  50. *
  51. * @HWSIM_CMD_UNSPEC: unspecified command to catch errors
  52. *
  53. * @HWSIM_CMD_REGISTER: request to register and received all broadcasted
  54. * frames by any mac80211_hwsim radio device.
  55. * @HWSIM_CMD_FRAME: send/receive a broadcasted frame from/to kernel/user
  56. * space, uses:
  57. * %HWSIM_ATTR_ADDR_TRANSMITTER, %HWSIM_ATTR_ADDR_RECEIVER,
  58. * %HWSIM_ATTR_FRAME, %HWSIM_ATTR_FLAGS, %HWSIM_ATTR_RX_RATE,
  59. * %HWSIM_ATTR_SIGNAL, %HWSIM_ATTR_COOKIE
  60. * @HWSIM_CMD_TX_INFO_FRAME: Transmission info report from user space to
  61. * kernel, uses:
  62. * %HWSIM_ATTR_ADDR_TRANSMITTER, %HWSIM_ATTR_FLAGS,
  63. * %HWSIM_ATTR_TX_INFO, %HWSIM_ATTR_SIGNAL, %HWSIM_ATTR_COOKIE
  64. * @HWSIM_CMD_CREATE_RADIO: create a new radio with the given parameters,
  65. * returns the radio ID (>= 0) or negative on errors
  66. * @HWSIM_CMD_DESTROY_RADIO: destroy a radio
  67. * @__HWSIM_CMD_MAX: enum limit
  68. */
  69. enum {
  70. HWSIM_CMD_UNSPEC,
  71. HWSIM_CMD_REGISTER,
  72. HWSIM_CMD_FRAME,
  73. HWSIM_CMD_TX_INFO_FRAME,
  74. HWSIM_CMD_CREATE_RADIO,
  75. HWSIM_CMD_DESTROY_RADIO,
  76. __HWSIM_CMD_MAX,
  77. };
  78. #define HWSIM_CMD_MAX (_HWSIM_CMD_MAX - 1)
  79. /**
  80. * enum hwsim_attrs - hwsim netlink attributes
  81. *
  82. * @HWSIM_ATTR_UNSPEC: unspecified attribute to catch errors
  83. *
  84. * @HWSIM_ATTR_ADDR_RECEIVER: MAC address of the radio device that
  85. * the frame is broadcasted to
  86. * @HWSIM_ATTR_ADDR_TRANSMITTER: MAC address of the radio device that
  87. * the frame was broadcasted from
  88. * @HWSIM_ATTR_FRAME: Data array
  89. * @HWSIM_ATTR_FLAGS: mac80211 transmission flags, used to process
  90. properly the frame at user space
  91. * @HWSIM_ATTR_RX_RATE: estimated rx rate index for this frame at user
  92. space
  93. * @HWSIM_ATTR_SIGNAL: estimated RX signal for this frame at user
  94. space
  95. * @HWSIM_ATTR_TX_INFO: ieee80211_tx_rate array
  96. * @HWSIM_ATTR_COOKIE: sk_buff cookie to identify the frame
  97. * @HWSIM_ATTR_CHANNELS: u32 attribute used with the %HWSIM_CMD_CREATE_RADIO
  98. * command giving the number of channels supported by the new radio
  99. * @HWSIM_ATTR_RADIO_ID: u32 attribute used with %HWSIM_CMD_DESTROY_RADIO
  100. * only to destroy a radio
  101. * @HWSIM_ATTR_REG_HINT_ALPHA2: alpha2 for regulatoro driver hint
  102. * (nla string, length 2)
  103. * @HWSIM_ATTR_REG_CUSTOM_REG: custom regulatory domain index (u32 attribute)
  104. * @HWSIM_ATTR_REG_STRICT_REG: request REGULATORY_STRICT_REG (flag attribute)
  105. * @HWSIM_ATTR_SUPPORT_P2P_DEVICE: support P2P Device virtual interface (flag)
  106. * @HWSIM_ATTR_USE_CHANCTX: used with the %HWSIM_CMD_CREATE_RADIO
  107. * command to force use of channel contexts even when only a
  108. * single channel is supported
  109. * @__HWSIM_ATTR_MAX: enum limit
  110. */
  111. enum {
  112. HWSIM_ATTR_UNSPEC,
  113. HWSIM_ATTR_ADDR_RECEIVER,
  114. HWSIM_ATTR_ADDR_TRANSMITTER,
  115. HWSIM_ATTR_FRAME,
  116. HWSIM_ATTR_FLAGS,
  117. HWSIM_ATTR_RX_RATE,
  118. HWSIM_ATTR_SIGNAL,
  119. HWSIM_ATTR_TX_INFO,
  120. HWSIM_ATTR_COOKIE,
  121. HWSIM_ATTR_CHANNELS,
  122. HWSIM_ATTR_RADIO_ID,
  123. HWSIM_ATTR_REG_HINT_ALPHA2,
  124. HWSIM_ATTR_REG_CUSTOM_REG,
  125. HWSIM_ATTR_REG_STRICT_REG,
  126. HWSIM_ATTR_SUPPORT_P2P_DEVICE,
  127. HWSIM_ATTR_USE_CHANCTX,
  128. __HWSIM_ATTR_MAX,
  129. };
  130. #define HWSIM_ATTR_MAX (__HWSIM_ATTR_MAX - 1)
  131. /**
  132. * struct hwsim_tx_rate - rate selection/status
  133. *
  134. * @idx: rate index to attempt to send with
  135. * @count: number of tries in this rate before going to the next rate
  136. *
  137. * A value of -1 for @idx indicates an invalid rate and, if used
  138. * in an array of retry rates, that no more rates should be tried.
  139. *
  140. * When used for transmit status reporting, the driver should
  141. * always report the rate and number of retries used.
  142. *
  143. */
  144. struct hwsim_tx_rate {
  145. s8 idx;
  146. u8 count;
  147. } __packed;
  148. #endif /* __MAC80211_HWSIM_H */