rules.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * rules.c - Classification Rules Lookup Tables;
  11. *
  12. * rules.h
  13. *
  14. * QoS related symbol tables used by function ParseRule;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <cmaier@qca.qualcomm.com>
  18. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef RULES_SOURCE
  22. #define RULES_SOURCE
  23. #include "../plc/rules.h"
  24. struct _code_ const controls [SIZEOF (controls)] =
  25. {
  26. {
  27. CONTROL_ADD,
  28. "Add"
  29. },
  30. {
  31. CONTROL_REM,
  32. "Rem"
  33. },
  34. {
  35. CONTROL_REMOVE,
  36. "Remove"
  37. }
  38. };
  39. struct _code_ const volatilities [SIZEOF (volatilities)] =
  40. {
  41. {
  42. VOLATILITY_TEMP,
  43. "Temp"
  44. },
  45. {
  46. VOLATILITY_PERM,
  47. "Perm"
  48. }
  49. };
  50. struct _code_ const actions [SIZEOF (actions)] =
  51. {
  52. {
  53. ACTION_CAP0,
  54. "CAP0"
  55. },
  56. {
  57. ACTION_CAP1,
  58. "CAP1"
  59. },
  60. {
  61. ACTION_CAP2,
  62. "CAP2"
  63. },
  64. {
  65. ACTION_CAP3,
  66. "CAP3"
  67. },
  68. {
  69. ACTION_BOOST,
  70. "Boost"
  71. },
  72. {
  73. ACTION_DROP,
  74. "Drop"
  75. },
  76. {
  77. ACTION_DROPTX,
  78. "DropTX"
  79. },
  80. {
  81. ACTION_DROPRX,
  82. "DropRX"
  83. },
  84. {
  85. ACTION_AUTOCONNECT,
  86. "AutoConnect"
  87. },
  88. {
  89. ACTION_STRIPTX,
  90. "StripTX"
  91. },
  92. {
  93. ACTION_STRIPRX,
  94. "StripRX"
  95. },
  96. {
  97. ACTION_TAGTX,
  98. "TagTX"
  99. },
  100. {
  101. ACTION_TAGRX,
  102. "TagRX"
  103. }
  104. };
  105. struct _code_ const operands [SIZEOF (operands)] =
  106. {
  107. {
  108. OPERAND_ALL,
  109. "All"
  110. },
  111. {
  112. OPERAND_ANY,
  113. "Any"
  114. },
  115. {
  116. OPERAND_ALWAYS,
  117. "Always"
  118. }
  119. };
  120. struct _code_ const fields [SIZEOF (fields)] =
  121. {
  122. {
  123. FIELD_ETH_DA,
  124. "EthDA"
  125. },
  126. {
  127. FIELD_ETH_SA,
  128. "EthSA"
  129. },
  130. {
  131. FIELD_VLAN_UP,
  132. "VLANUP"
  133. },
  134. {
  135. FIELD_VLAN_ID,
  136. "VLANID"
  137. },
  138. {
  139. FIELD_IPV4_TOS,
  140. "IPv4TOS"
  141. },
  142. {
  143. FIELD_IPV4_PROT,
  144. "IPv4PROT"
  145. },
  146. {
  147. FIELD_IPV4_SA,
  148. "IPv4SA"
  149. },
  150. {
  151. FIELD_IPV4_DA,
  152. "IPv4DA"
  153. },
  154. {
  155. FIELD_IPV6_TC,
  156. "IPv6TC"
  157. },
  158. {
  159. FIELD_IPV6_FL,
  160. "IPv6FL"
  161. },
  162. {
  163. FIELD_IPV6_SA,
  164. "IPv6SA"
  165. },
  166. {
  167. FIELD_IPV6_DA,
  168. "IPv6DA"
  169. },
  170. {
  171. FIELD_TCP_SP,
  172. "TCPSP"
  173. },
  174. {
  175. FIELD_TCP_DP,
  176. "TCPDP"
  177. },
  178. {
  179. FIELD_UDP_SP,
  180. "UDPSP"
  181. },
  182. {
  183. FIELD_UDP_DP,
  184. "UDPDP"
  185. },
  186. {
  187. FIELD_IP_SP,
  188. "IPSP"
  189. },
  190. {
  191. FIELD_IP_DP,
  192. "IPDP"
  193. },
  194. {
  195. FIELD_HPAV_MME,
  196. "MME"
  197. },
  198. {
  199. FIELD_ETH_TYPE,
  200. "ET"
  201. },
  202. {
  203. FIELD_TCP_ACK,
  204. "TCPAck"
  205. },
  206. {
  207. FIELD_VLAN_TAG,
  208. "VLANTag"
  209. }
  210. };
  211. struct _code_ const operators [SIZEOF (operators)] =
  212. {
  213. {
  214. OPERATOR_IS,
  215. "Is"
  216. },
  217. {
  218. OPERATOR_NOT,
  219. "Not"
  220. }
  221. };
  222. struct _code_ const states [SIZEOF (states)] =
  223. {
  224. {
  225. OPERATOR_IS,
  226. "True"
  227. },
  228. {
  229. OPERATOR_NOT,
  230. "False"
  231. },
  232. {
  233. OPERATOR_IS,
  234. "On"
  235. },
  236. {
  237. OPERATOR_NOT,
  238. "Off"
  239. },
  240. {
  241. OPERATOR_IS,
  242. "Yes"
  243. },
  244. {
  245. OPERATOR_NOT,
  246. "No"
  247. },
  248. {
  249. OPERATOR_IS,
  250. "Present"
  251. },
  252. {
  253. OPERATOR_NOT,
  254. "Missing"
  255. }
  256. };
  257. #endif