int6krule.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6krule.c - Qualcomm Atheros Message MakeRule Utility;
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <unistd.h>
  20. #include <stdlib.h>
  21. #include <stdint.h>
  22. #include <limits.h>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../tools/getoptv.h"
  27. #include "../tools/putoptv.h"
  28. #include "../tools/memory.h"
  29. #include "../tools/number.h"
  30. #include "../tools/symbol.h"
  31. #include "../tools/types.h"
  32. #include "../tools/flags.h"
  33. #include "../tools/files.h"
  34. #include "../tools/error.h"
  35. #include "../plc/plc.h"
  36. #include "../plc/rules.h"
  37. /*====================================================================*
  38. * custom source files;
  39. *--------------------------------------------------------------------*/
  40. #ifndef MAKEFILE
  41. #include "../tools/getoptv.c"
  42. #include "../tools/putoptv.c"
  43. #include "../tools/version.c"
  44. #include "../tools/basespec.c"
  45. #include "../tools/hexdump.c"
  46. #include "../tools/hexencode.c"
  47. #include "../tools/bytespec.c"
  48. #include "../tools/ipv4spec.c"
  49. #include "../tools/ipv6spec.c"
  50. #include "../tools/uintspec.c"
  51. #include "../tools/hexdecode.c"
  52. #include "../tools/hexstring.c"
  53. #include "../tools/todigit.c"
  54. #include "../tools/error.c"
  55. #include "../tools/synonym.c"
  56. #include "../tools/assist.c"
  57. #include "../tools/lookup.c"
  58. #include "../tools/codelist.c"
  59. #include "../tools/memout.c"
  60. #include "../tools/reword.c"
  61. #endif
  62. #ifndef MAKEFILE
  63. #include "../plc/Confirm.c"
  64. #include "../plc/Display.c"
  65. #include "../plc/Failure.c"
  66. #include "../plc/ReadMME.c"
  67. #include "../plc/Request.c"
  68. #include "../plc/SendMME.c"
  69. #include "../plc/Devices.c"
  70. #include "../plc/rules.c"
  71. #include "../plc/ParseRule.c"
  72. #include "../plc/PrintRule.c"
  73. #include "../plc/MakeRule.c"
  74. #include "../plc/ReadRules.c"
  75. #endif
  76. #ifndef MAKEFILE
  77. #include "../ether/channel.c"
  78. #include "../ether/openchannel.c"
  79. #include "../ether/closechannel.c"
  80. #include "../ether/readpacket.c"
  81. #include "../ether/sendpacket.c"
  82. #endif
  83. #ifndef MAKEFILE
  84. #include "../mme/MMECode.c"
  85. #include "../mme/EthernetHeader.c"
  86. #include "../mme/QualcommHeader.c"
  87. #include "../mme/UnwantedMessage.c"
  88. #endif
  89. /*====================================================================*
  90. * program constants;
  91. *--------------------------------------------------------------------*/
  92. #define INT6KRULE_CSPEC_VERSION 0
  93. #define INT6KRULE_VLAN_TAG 0x00000000
  94. #define COMMA ","
  95. #define QUOTE "''"
  96. /*====================================================================*
  97. *
  98. * int main (int argc, char const * argv[]);
  99. *
  100. *--------------------------------------------------------------------*/
  101. int main (int argc, char const * argv [])
  102. {
  103. extern struct channel channel;
  104. static char const * optv [] =
  105. {
  106. "ei:qrst:T:vV:",
  107. "action operand condition [...] control volatility [device] [...]\n\n where a condition is: field operator value",
  108. "Qualcomm Atheros Stream MakeRule Utility",
  109. "e\tredirect stderr to stdout",
  110. #if defined (WINPCAP) || defined (LIBPCAP)
  111. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  112. #else
  113. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  114. #endif
  115. "q\tquiet mode",
  116. "r\tread rules from device",
  117. "s\tdisplay symbol tables",
  118. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  119. "T x\tinserted vlan tag is x [" LITERAL (INT6KRULE_VLAN_TAG) "]",
  120. "v\tverbose mode",
  121. "V n\tcspec version is n [" LITERAL (INT6KRULE_CSPEC_VERSION) "]",
  122. (char const *) (0)
  123. };
  124. #include "../plc/plc.c"
  125. struct cspec cspec;
  126. struct MMERule rule;
  127. signed c;
  128. memset (& rule, 0, sizeof (rule));
  129. memset (& cspec, 0, sizeof (cspec));
  130. cspec.VLAN_TAG = INT6KRULE_VLAN_TAG;
  131. cspec.CSPEC_VERSION = INT6KRULE_CSPEC_VERSION;
  132. if (getenv (PLCDEVICE))
  133. {
  134. #if defined (WINPCAP) || defined (LIBPCAP)
  135. channel.ifindex = atoi (getenv (PLCDEVICE));
  136. #else
  137. channel.ifname = strdup (getenv (PLCDEVICE));
  138. #endif
  139. }
  140. optind = 1;
  141. while (~ (c = getoptv (argc, argv, optv)))
  142. {
  143. switch (c)
  144. {
  145. case 'e':
  146. dup2 (STDOUT_FILENO, STDERR_FILENO);
  147. break;
  148. case 'i':
  149. #if defined (WINPCAP) || defined (LIBPCAP)
  150. channel.ifindex = atoi (optarg);
  151. #else
  152. channel.ifname = optarg;
  153. #endif
  154. break;
  155. case 'q':
  156. _setbits (channel.flags, CHANNEL_SILENCE);
  157. _setbits (plc.flags, PLC_SILENCE);
  158. break;
  159. case 'r':
  160. _setbits (plc.flags, PLC_ANALYSE);
  161. break;
  162. case 's':
  163. printf ("\n");
  164. printf (" Controls are ");
  165. codelist (controls, SIZEOF (controls), COMMA, QUOTE, stdout);
  166. printf (".\n");
  167. printf (" Volatilities are ");
  168. codelist (volatilities, SIZEOF (volatilities), COMMA, QUOTE, stdout);
  169. printf (".\n");
  170. printf (" Actions are ");
  171. codelist (actions, SIZEOF (actions), COMMA, QUOTE, stdout);
  172. printf (".\n");
  173. printf (" Operands are ");
  174. codelist (operands, SIZEOF (operands), COMMA, QUOTE, stdout);
  175. printf (".\n");
  176. printf (" Fields are ");
  177. codelist (fields, SIZEOF (fields), COMMA, QUOTE, stdout);
  178. printf (".\n");
  179. printf (" Operators are ");
  180. codelist (operators, SIZEOF (operators), COMMA, QUOTE, stdout);
  181. printf (".\n");
  182. printf (" States are ");
  183. codelist (states, SIZEOF (states), COMMA, QUOTE, stdout);
  184. printf (".\n");
  185. printf ("\n");
  186. return (0);
  187. case 't':
  188. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  189. break;
  190. case 'T':
  191. cspec.VLAN_TAG = (uint32_t) (basespec (optarg, 16, sizeof (cspec.VLAN_TAG)));
  192. cspec.VLAN_TAG = htonl (cspec.VLAN_TAG);
  193. break;
  194. case 'v':
  195. _setbits (channel.flags, CHANNEL_VERBOSE);
  196. _setbits (plc.flags, PLC_VERBOSE);
  197. break;
  198. case 'V':
  199. cspec.CSPEC_VERSION = (uint16_t) (basespec (optarg, 10, sizeof (cspec.CSPEC_VERSION)));
  200. cspec.CSPEC_VERSION = HTOLE16 (cspec.CSPEC_VERSION);
  201. break;
  202. default:
  203. break;
  204. }
  205. }
  206. argc -= optind;
  207. argv += optind;
  208. if (_allclr (plc.flags, PLC_ANALYSE))
  209. {
  210. if (ParseRule (& argc, & argv, & rule, & cspec) == -1)
  211. {
  212. error (1, 0, "invalid rule");
  213. }
  214. }
  215. openchannel (& channel);
  216. if (! (plc.message = malloc (sizeof (* plc.message))))
  217. {
  218. error (1, errno, PLC_NOMEMORY);
  219. }
  220. if (! argc)
  221. {
  222. if (_anyset (plc.flags, PLC_ANALYSE))
  223. {
  224. ReadRules (& plc);
  225. }
  226. else
  227. {
  228. MakeRule (& plc, & rule);
  229. }
  230. }
  231. while ((argc) && (* argv))
  232. {
  233. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  234. {
  235. error (1, errno, PLC_BAD_MAC, * argv);
  236. }
  237. if (_anyset (plc.flags, PLC_ANALYSE))
  238. {
  239. ReadRules (& plc);
  240. }
  241. else
  242. {
  243. MakeRule (& plc, & rule);
  244. }
  245. argc--;
  246. argv++;
  247. }
  248. free (plc.message);
  249. closechannel (& channel);
  250. exit (0);
  251. }