rules.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * rules.h - Classification Rules Definitions and Declarations;
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. #ifndef RULES_HEADER
  18. #define RULES_HEADER
  19. /*====================================================================*
  20. * system header files;
  21. *--------------------------------------------------------------------*/
  22. #include <stdint.h>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../plc/plc.h"
  27. #include "../tools/symbol.h"
  28. /*====================================================================*
  29. * constants;
  30. *--------------------------------------------------------------------*/
  31. #define CLASSIFIER_STRING 64
  32. #define CLASSIFIER_CONTROLS 3
  33. #define CLASSIFIER_VOLATILITIES 2
  34. #define CLASSIFIER_ACTIONS 13
  35. #define CLASSIFIER_OPERANDS 3
  36. #define CLASSIFIER_OPERATORS 2
  37. #define CLASSIFIER_STATES 8
  38. #define CLASSIFIER_FIELDS 22
  39. #define CLASSIFIER_CONTROL_NAME "control"
  40. #define CLASSIFIER_VOLATILITY_NAME "volatility"
  41. #define CLASSIFIER_ACTION_NAME "action"
  42. #define CLASSIFIER_OPERAND_NAME "operand"
  43. #define CLASSIFIER_OPERATOR_NAME "operator"
  44. #define CLASSIFIER_STATE_NAME "state"
  45. #define CLASSIFIER_FIELD_NAME "field"
  46. #define CONTROL_ADD 0x00
  47. #define CONTROL_REM 0x01
  48. #define CONTROL_READ 0x02
  49. #define CONTROL_REMOVE CONTROL_REM
  50. #define VOLATILITY_TEMP 0x00
  51. #define VOLATILITY_PERM 0x01
  52. #define ACTION_CAP0 0x00
  53. #define ACTION_CAP1 0x01
  54. #define ACTION_CAP2 0x02
  55. #define ACTION_CAP3 0x03
  56. #define ACTION_DROP 0x04
  57. #define ACTION_DROPTX ACTION_DROP
  58. #define ACTION_BOOST 0x05
  59. #define ACTION_DROPRX 0x06
  60. #define ACTION_AUTOCONNECT 0x10
  61. #define ACTION_STRIPTX 0x20
  62. #define ACTION_STRIPRX 0x21
  63. #define ACTION_TAGTX 0x22
  64. #define ACTION_TAGRX 0x23
  65. #define OPERAND_ALL 0x00
  66. #define OPERAND_ANY 0x01
  67. #define OPERAND_ALWAYS 0x02
  68. #define OPERATOR_IS 0x00
  69. #define OPERATOR_NOT 0x01
  70. #define FIELD_ETH_DA 0x00
  71. #define FIELD_ETH_SA 0x01
  72. #define FIELD_VLAN_UP 0x02
  73. #define FIELD_VLAN_ID 0x03
  74. #define FIELD_IPV4_TOS 0x04
  75. #define FIELD_IPV4_PROT 0x05
  76. #define FIELD_IPV4_SA 0x06
  77. #define FIELD_IPV4_DA 0x07
  78. #define FIELD_IPV6_TC 0x08
  79. #define FIELD_IPV6_FL 0x09
  80. #define FIELD_IPV6_SA 0x0A
  81. #define FIELD_IPV6_DA 0x0B
  82. #define FIELD_TCP_SP 0x0C
  83. #define FIELD_TCP_DP 0x0D
  84. #define FIELD_UDP_SP 0x0E
  85. #define FIELD_UDP_DP 0x0F
  86. #define FIELD_IP_SP 0xE0
  87. #define FIELD_IP_DP 0xE1
  88. #define FIELD_HPAV_MME 0xE2
  89. #define FIELD_ETH_TYPE 0xE3
  90. #define FIELD_TCP_ACK 0xE4
  91. #define FIELD_VLAN_TAG 0xE5
  92. #define RULE_MAX_AUTOCONN 16
  93. #define RULE_MAX_PRIORITY_MAPS 8
  94. #define RULE_MAX_CLASSIFIERS 3
  95. /*====================================================================*
  96. * variables;
  97. *--------------------------------------------------------------------*/
  98. extern struct _code_ const controls [CLASSIFIER_CONTROLS];
  99. extern struct _code_ const volatilities [CLASSIFIER_VOLATILITIES];
  100. extern struct _code_ const actions [CLASSIFIER_ACTIONS];
  101. extern struct _code_ const operands [CLASSIFIER_OPERANDS];
  102. extern struct _code_ const fields [CLASSIFIER_FIELDS];
  103. extern struct _code_ const operators [CLASSIFIER_OPERATORS];
  104. extern struct _code_ const states [CLASSIFIER_STATES];
  105. #ifndef __GNUC__
  106. #pragma pack (push,1)
  107. #endif
  108. /*
  109. * MME and PIB Classifier Rules are similar but differ in size
  110. * and so we declare structures for each use; observe that
  111. * function ParseRule uses the compact MMERule structure;
  112. */
  113. typedef struct __packed cspec
  114. {
  115. uint16_t CSPEC_VERSION;
  116. uint32_t VLAN_TAG;
  117. uint32_t RSVD;
  118. }
  119. cspec;
  120. typedef struct __packed MMEClassifier
  121. {
  122. uint8_t CR_PID;
  123. uint8_t CR_OPERAND;
  124. uint8_t CR_VALUE [16];
  125. }
  126. MMEClassifier;
  127. typedef struct __packed PIBClassifier
  128. {
  129. uint32_t CR_PID;
  130. uint32_t CR_OPERAND;
  131. uint8_t CR_VALUE [16];
  132. }
  133. PIBClassifier;
  134. typedef struct __packed MMERule
  135. {
  136. uint8_t MCONTROL;
  137. uint8_t MVOLATILITY;
  138. uint8_t MACTION;
  139. uint8_t MOPERAND;
  140. uint8_t NUM_CLASSIFIERS;
  141. struct MMEClassifier CLASSIFIER [RULE_MAX_CLASSIFIERS];
  142. struct cspec cspec;
  143. }
  144. MMERule;
  145. typedef struct __packed PIBRule
  146. {
  147. uint8_t MCONTROL;
  148. uint8_t MVOLATILITY;
  149. uint8_t MACTION;
  150. uint8_t MOPERAND;
  151. uint32_t NUM_CLASSIFIERS;
  152. struct PIBClassifier CLASSIFIER [RULE_MAX_CLASSIFIERS];
  153. struct cspec cspec;
  154. }
  155. PIBRule;
  156. typedef struct __packed PIBClassifiers
  157. {
  158. uint32_t priority_count;
  159. uint32_t autoconn_count;
  160. struct __packed classifier_priority_map
  161. {
  162. uint32_t Priority;
  163. struct PIBClassifier CLASSIFIER;
  164. }
  165. classifier_priority_map [RULE_MAX_PRIORITY_MAPS];
  166. struct __packed auto_connection
  167. {
  168. uint8_t MACTION;
  169. uint8_t MOPERAND;
  170. uint16_t NUM_CLASSIFIERS;
  171. struct PIBClassifier CLASSIFIER [RULE_MAX_CLASSIFIERS];
  172. struct cspec cspec;
  173. uint8_t RSVD [14];
  174. }
  175. auto_connection [RULE_MAX_AUTOCONN];
  176. }
  177. PIBClassifiers;
  178. #ifndef __GNUC__
  179. #pragma pack (pop)
  180. #endif
  181. /*====================================================================*
  182. * functions;
  183. *--------------------------------------------------------------------*/
  184. signed ParseRule (int * argcp, char const ** argvp [], struct MMERule *, struct cspec *);
  185. signed PrintRule (uint32_t CR_PID, uint32_t CR_OPERAND, uint8_t CR_VALUE []);
  186. signed MakeRule (struct plc *, struct MMERule *);
  187. signed ReadRules (struct plc *);
  188. void cspec_dump (struct cspec *);
  189. void classifier_priority_map_dump (struct classifier_priority_map *);
  190. void auto_connection_dump (struct auto_connection *);
  191. void PIBClassifiersDump (struct PIBClassifiers *);
  192. void PIBClassifierDump (struct PIBClassifier *);
  193. void MMEClassifierDump (struct MMEClassifier *);
  194. void PIBRuleDump (struct PIBRule *);
  195. void MMERuleDump (struct MMERule *);
  196. /*====================================================================*
  197. *
  198. *--------------------------------------------------------------------*/
  199. #endif