coqos_add.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * coqos_add.c - Add MCMSA Stream
  11. *
  12. * Contributor(s):
  13. * Bill Wike <bill.wike@qca.qualcomm.com>
  14. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. /*====================================================================*
  19. * system header files;
  20. *--------------------------------------------------------------------*/
  21. #include <unistd.h>
  22. #include <stdlib.h>
  23. #include <stdint.h>
  24. #include <limits.h>
  25. /*====================================================================*
  26. * custom header files;
  27. *--------------------------------------------------------------------*/
  28. #include "../tools/getoptv.h"
  29. #include "../tools/putoptv.h"
  30. #include "../tools/memory.h"
  31. #include "../tools/number.h"
  32. #include "../tools/symbol.h"
  33. #include "../tools/types.h"
  34. #include "../tools/flags.h"
  35. #include "../tools/files.h"
  36. #include "../tools/error.h"
  37. #include "../plc/plc.h"
  38. #include "../plc/coqos.h"
  39. /*====================================================================*
  40. * custom source files;
  41. *--------------------------------------------------------------------*/
  42. #ifndef MAKEFILE
  43. #include "../tools/getoptv.c"
  44. #include "../tools/putoptv.c"
  45. #include "../tools/version.c"
  46. #include "../tools/basespec.c"
  47. #include "../tools/uintspec.c"
  48. #include "../tools/hexdump.c"
  49. #include "../tools/hexencode.c"
  50. #include "../tools/bytespec.c"
  51. #include "../tools/ipv4spec.c"
  52. #include "../tools/ipv6spec.c"
  53. #include "../tools/hexdecode.c"
  54. #include "../tools/todigit.c"
  55. #include "../tools/typename.c"
  56. #include "../tools/error.c"
  57. #include "../tools/synonym.c"
  58. #include "../tools/lookup.c"
  59. #include "../tools/assist.c"
  60. #include "../tools/codelist.c"
  61. #endif
  62. #ifndef MAKEFILE
  63. #include "../plc/Request.c"
  64. #include "../plc/Confirm.c"
  65. #include "../plc/Failure.c"
  66. #include "../plc/Display.c"
  67. #include "../plc/ReadMME.c"
  68. #include "../plc/SendMME.c"
  69. #include "../plc/Devices.c"
  70. #include "../plc/rules.c"
  71. #endif
  72. #ifndef MAKEFILE
  73. #include "../ether/channel.c"
  74. #include "../ether/openchannel.c"
  75. #include "../ether/closechannel.c"
  76. #include "../ether/readpacket.c"
  77. #include "../ether/sendpacket.c"
  78. #endif
  79. #ifndef MAKEFILE
  80. #include "../mme/MMECode.c"
  81. #include "../mme/EthernetHeader.c"
  82. #include "../mme/QualcommHeader.c"
  83. #include "../mme/UnwantedMessage.c"
  84. #endif
  85. /*====================================================================*
  86. *
  87. * signed add_conn (struct plc * plc, struct connection * connection);
  88. *
  89. * Contributor(s):
  90. * Bill Wike <bill.wike@qca.qualcomm.com>
  91. *
  92. *--------------------------------------------------------------------*/
  93. static signed add_conn (struct plc * plc, struct connection * connection)
  94. {
  95. struct channel * channel = (struct channel *) (plc->channel);
  96. struct message * message = (struct message *) (plc->message);
  97. #ifndef __GNUC__
  98. #pragma pack (push,1)
  99. #endif
  100. struct __packed vs_add_conn_req
  101. {
  102. struct ethernet_hdr ethernet;
  103. struct qualcomm_hdr qualcomm;
  104. struct connection connection;
  105. }
  106. * request = (struct vs_add_conn_req *) (message);
  107. struct __packed vs_add_conn_cnf
  108. {
  109. struct ethernet_hdr ethernet;
  110. struct qualcomm_hdr qualcomm;
  111. uint32_t REQ_ID;
  112. uint8_t MSTATUS;
  113. uint16_t ERR_REC_CODE;
  114. uint32_t RSVD;
  115. uint16_t CID;
  116. uint8_t REJECT_MAC [ETHER_ADDR_LEN];
  117. uint16_t CSPEC_VERSION;
  118. uint8_t CONN_CAP;
  119. uint8_t CONN_COQOS_PRIO;
  120. uint16_t CONN_RATE;
  121. uint32_t CONN_TTL;
  122. }
  123. * confirm = (struct vs_add_conn_cnf *) (message);
  124. #ifndef __GNUC__
  125. #pragma pack (pop)
  126. #endif
  127. Request (plc, "Add COQOS connection");
  128. memset (message, 0, sizeof (* message));
  129. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  130. QualcommHeader (& request->qualcomm, 0, (VS_CONN_ADD | MMTYPE_REQ));
  131. memcpy (& request->connection, connection, sizeof (struct connection));
  132. memcpy (& request->connection.rule.CLASSIFIERS [request->connection.rule.NUM_CLASSIFIERS], & request->connection.cspec, sizeof (request->connection.cspec));
  133. plc->packetsize = sizeof (struct vs_add_conn_req);
  134. if (SendMME (plc) <= 0)
  135. {
  136. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  137. return (-1);
  138. }
  139. while (ReadMME (plc, 0, (VS_CONN_ADD | MMTYPE_CNF)) <= 0)
  140. {
  141. if (confirm->MSTATUS)
  142. {
  143. Failure (plc, "Device won't add connection");
  144. return (-1);
  145. }
  146. Confirm (plc, "Setting ...");
  147. }
  148. return (0);
  149. }
  150. /*====================================================================*
  151. *
  152. * int main (int argc, char const * argv[]);
  153. *
  154. *--------------------------------------------------------------------*/
  155. int main (int argc, char const * argv [])
  156. {
  157. extern struct channel channel;
  158. static char const * optv [] =
  159. {
  160. "ei:qv",
  161. "action priority destination rate ttl operand condition [...] [device] [...]\n\n where condition is field operator value",
  162. "CoQos Stream Utility",
  163. "e\tredirect stderr to stdout",
  164. #if defined (WINPCAP) || defined (LIBPCAP)
  165. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  166. #else
  167. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  168. #endif
  169. "q\tquiet mode",
  170. "v\tverbose mode",
  171. (char const *) (0)
  172. };
  173. #include "../plc/plc.c"
  174. struct connection connection;
  175. struct MMEClassifier * rule = (struct MMEClassifier *) (& connection.rule.CLASSIFIERS);
  176. uint16_t * word;
  177. uint8_t * byte;
  178. signed code;
  179. signed c;
  180. if (getenv (PLCDEVICE))
  181. {
  182. #if defined (WINPCAP) || defined (LIBPCAP)
  183. channel.ifindex = atoi (getenv (PLCDEVICE));
  184. #else
  185. channel.ifname = strdup (getenv (PLCDEVICE));
  186. #endif
  187. }
  188. optind = 1;
  189. while (~ (c = getoptv (argc, argv, optv)))
  190. {
  191. switch (c)
  192. {
  193. case 'e':
  194. dup2 (STDOUT_FILENO, STDERR_FILENO);
  195. break;
  196. case 'i':
  197. #if defined (WINPCAP) || defined (LIBPCAP)
  198. channel.ifindex = atoi (optarg);
  199. #else
  200. channel.ifname = optarg;
  201. #endif
  202. break;
  203. case 'q':
  204. _setbits (channel.flags, CHANNEL_SILENCE);
  205. _setbits (plc.flags, PLC_SILENCE);
  206. break;
  207. case 'v':
  208. _setbits (channel.flags, CHANNEL_VERBOSE);
  209. _setbits (plc.flags, PLC_VERBOSE);
  210. break;
  211. default:
  212. break;
  213. }
  214. }
  215. argc -= optind;
  216. argv += optind;
  217. memset (& connection, 0, sizeof (connection));
  218. if ((code = lookup (* argv++, actions, SIZEOF (actions))) == -1)
  219. {
  220. assist (* -- argv, CLASSIFIER_ACTION_NAME, actions, SIZEOF (actions));
  221. }
  222. connection.cspec.CONN_CAP = (uint8_t) (code);
  223. argc--;
  224. if (! argc)
  225. {
  226. error (1, ECANCELED, "Expected Priority: 0-15");
  227. }
  228. connection.cspec.CONN_COQOS_PRIO = (uint8_t) (uintspec (* argv++, 0, 15));
  229. argc--;
  230. if (! argc)
  231. {
  232. error (1, ECANCELED, "Expected Destination MAC Address");
  233. }
  234. if (! hexencode (connection.APP_DA, sizeof (connection.APP_DA), synonym (* argv++, devices, SIZEOF (devices))))
  235. {
  236. error (1, errno, "Invalid MAC=[%s]", * -- argv);
  237. }
  238. argc--;
  239. if (! argc)
  240. {
  241. error (1, ECANCELED, "Expected Data Rate: 10-9000 (kbps)");
  242. }
  243. connection.cspec.CONN_RATE = (uint16_t) (uintspec (* argv++, 1, 9000));
  244. argc--;
  245. if (! argc)
  246. {
  247. error (1, ECANCELED, "Expected TTL: 10000-2000000 (microseconds)");
  248. }
  249. connection.cspec.CONN_TTL = (uint32_t) (uintspec (* argv++, 10000, 2000000));
  250. argc--;
  251. if ((code = lookup (* argv++, operands, SIZEOF (operands))) == -1)
  252. {
  253. assist (* -- argv, CLASSIFIER_OPERAND_NAME, operands, SIZEOF (operands));
  254. }
  255. connection.rule.MOPERAND = (uint8_t) (code);
  256. argc--;
  257. while ((* argv) && (lookup (* argv, controls, CLASSIFIER_CONTROLS) == -1))
  258. {
  259. if ((code = lookup (* argv++, fields, SIZEOF (fields))) == -1)
  260. {
  261. assist (* -- argv, CLASSIFIER_FIELD_NAME, fields, CLASSIFIER_CONTROLS);
  262. }
  263. rule->CR_PID = (uint8_t) (code);
  264. argc--;
  265. if ((code = lookup (* argv++, operators, SIZEOF (operators))) == -1)
  266. {
  267. assist (* -- argv, CLASSIFIER_OPERATOR_NAME, operators, SIZEOF (operators));
  268. }
  269. rule->CR_OPERAND = (uint8_t) (code);
  270. argc--;
  271. if (! argc || ! * argv)
  272. {
  273. error (1, ENOTSUP, "Have %s '%s' without any value", CLASSIFIER_OPERATOR_NAME, * -- argv);
  274. }
  275. switch (rule->CR_PID)
  276. {
  277. case FIELD_ETH_SA:
  278. case FIELD_ETH_DA:
  279. bytespec (* argv++, rule->CR_VALUE, ETHER_ADDR_LEN);
  280. break;
  281. case FIELD_IPV4_SA:
  282. case FIELD_IPV4_DA:
  283. ipv4spec (* argv++, rule->CR_VALUE);
  284. break;
  285. case FIELD_IPV6_SA:
  286. case FIELD_IPV6_DA:
  287. ipv6spec (* argv++, rule->CR_VALUE);
  288. break;
  289. case FIELD_VLAN_UP:
  290. case FIELD_IPV4_TOS:
  291. case FIELD_IPV4_PROT:
  292. byte = (uint8_t *) (rule->CR_VALUE);
  293. * byte = (uint8_t) (basespec (* argv++, 0, sizeof (* byte)));
  294. break;
  295. case FIELD_VLAN_ID:
  296. case FIELD_TCP_SP:
  297. case FIELD_TCP_DP:
  298. case FIELD_UDP_SP:
  299. case FIELD_UDP_DP:
  300. case FIELD_IP_SP:
  301. case FIELD_IP_DP:
  302. word = (uint16_t *) (rule->CR_VALUE);
  303. * word = (uint16_t) (basespec (* argv++, 0, sizeof (* word)));
  304. * word = htons (* word);
  305. break;
  306. case FIELD_ETH_TYPE:
  307. word = (uint16_t *) (rule->CR_VALUE);
  308. * word = (uint16_t) (basespec (* argv++, 0, sizeof (* word)));
  309. * word = htons (* word);
  310. break;
  311. case FIELD_HPAV_MME:
  312. bytespec (* argv++, rule->CR_VALUE, sizeof (uint8_t) + sizeof (uint16_t));
  313. #if 0
  314. byte = (uint8_t *) (rule->CR_VALUE);
  315. endian (++ byte, sizeof (uint16_t));
  316. #else
  317. * byte = rule->CR_VALUE [1];
  318. rule->CR_VALUE [1] = rule->CR_VALUE [2];
  319. rule->CR_VALUE [2] = * byte;
  320. #endif
  321. break;
  322. case FIELD_IPV6_TC:
  323. case FIELD_IPV6_FL:
  324. case FIELD_TCP_ACK:
  325. default:
  326. error (1, ENOTSUP, "Field '%s' (0x%02X)", argv [- 2], rule->CR_PID);
  327. break;
  328. }
  329. connection.rule.NUM_CLASSIFIERS++;
  330. if (connection.rule.NUM_CLASSIFIERS > RULE_MAX_CLASSIFIERS)
  331. {
  332. error (1, ENOTSUP, "More than %d classifiers in rule", RULE_MAX_CLASSIFIERS);
  333. }
  334. rule++;
  335. argc--;
  336. }
  337. connection.cspec.CSPEC_VERSION = 0x0001;
  338. openchannel (& channel);
  339. if (! (plc.message = malloc (sizeof (* plc.message))))
  340. {
  341. error (1, errno, PLC_NOMEMORY);
  342. }
  343. if (! argc)
  344. {
  345. add_conn (& plc, & connection);
  346. }
  347. while ((argc) && (* argv))
  348. {
  349. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  350. {
  351. error (1, errno, PLC_BAD_MAC, * argv);
  352. }
  353. add_conn (& plc, & connection);
  354. argc--;
  355. argv++;
  356. }
  357. free (plc.message);
  358. closechannel (& channel);
  359. exit (0);
  360. }