coqos_man.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * coqos_man.c - Manage MCSMA streams
  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/uintspec.c"
  47. #include "../tools/hexdump.c"
  48. #include "../tools/hexencode.c"
  49. #include "../tools/hexdecode.c"
  50. #include "../tools/todigit.c"
  51. #include "../tools/typename.c"
  52. #include "../tools/error.c"
  53. #include "../tools/synonym.c"
  54. #endif
  55. #ifndef MAKEFILE
  56. #include "../plc/Request.c"
  57. #include "../plc/Confirm.c"
  58. #include "../plc/Failure.c"
  59. #include "../plc/Display.c"
  60. #include "../plc/ReadMME.c"
  61. #include "../plc/SendMME.c"
  62. #include "../plc/Devices.c"
  63. #endif
  64. #ifndef MAKEFILE
  65. #include "../ether/openchannel.c"
  66. #include "../ether/closechannel.c"
  67. #include "../ether/readpacket.c"
  68. #include "../ether/sendpacket.c"
  69. #include "../ether/channel.c"
  70. #endif
  71. #ifndef MAKEFILE
  72. #include "../mme/MMECode.c"
  73. #include "../mme/EthernetHeader.c"
  74. #include "../mme/QualcommHeader.c"
  75. #include "../mme/UnwantedMessage.c"
  76. #endif
  77. /*====================================================================*
  78. *
  79. * signed con_man (struct plc * plc, uint16_t TOT_BW_USED);
  80. *
  81. * Contributor(s):
  82. * Bill Wike <bill.wike@qca.qualcomm.com>
  83. *
  84. *--------------------------------------------------------------------*/
  85. signed con_man (struct plc * plc, uint16_t TOT_BW_USED)
  86. {
  87. struct channel * channel = (struct channel *) (plc->channel);
  88. struct message * message = (struct message *) (plc->message);
  89. #ifndef __GNUC__
  90. #pragma pack (push,1)
  91. #endif
  92. struct __packed vs_con_info_req
  93. {
  94. struct ethernet_hdr ethernet;
  95. struct qualcomm_hdr qualcomm;
  96. uint8_t REQ_TYPE;
  97. uint32_t RSVD;
  98. uint16_t CSPEC_VER;
  99. uint16_t CID;
  100. uint16_t TOT_BW_USED;
  101. }
  102. * request = (struct vs_con_info_req *) (message);
  103. struct __packed vs_con_info_cnf
  104. {
  105. struct ethernet_hdr ethernet;
  106. struct qualcomm_hdr qualcomm;
  107. uint8_t REQ_TYPE;
  108. uint8_t MSTATUS;
  109. uint16_t ERR_REC_CODE;
  110. uint32_t RSVD;
  111. uint8_t NUM_CONN;
  112. struct conn_info CONN_INFO [64];
  113. }
  114. * confirm = (struct vs_con_info_cnf *) (message);
  115. struct conn_info * conn_info = (struct conn_info *) (confirm->CONN_INFO);
  116. struct vs_con_info_cnf * indicate = (struct vs_con_info_cnf *) (message);
  117. struct __packed vs_mod_conn_req
  118. {
  119. struct ethernet_hdr ethernet;
  120. struct qualcomm_hdr qualcomm;
  121. uint32_t REQ_ID;
  122. uint32_t RSVD;
  123. uint16_t CID;
  124. uint8_t MOD_CTRL;
  125. }
  126. * mc_request = (struct vs_mod_conn_req *) (message);
  127. struct __packed vs_mod_conn_cnf
  128. {
  129. struct ethernet_hdr ethernet;
  130. struct qualcomm_hdr qualcomm;
  131. uint32_t REQ_ID;
  132. uint8_t MSTATUS;
  133. uint16_t ERR_REC_CODE;
  134. uint32_t RSVD;
  135. }
  136. * mc_confirm = (struct vs_mod_conn_cnf *) (message);
  137. #ifndef __GNUC__
  138. #pragma pack (pop)
  139. #endif
  140. int i;
  141. int bwused;
  142. int lowest;
  143. uint16_t lowcid;
  144. while (1)
  145. {
  146. Request (plc, "COQOS connection information (requesting bandwidth notification)");
  147. memset (message, 0, sizeof (* message));
  148. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  149. QualcommHeader (& request->qualcomm, 0, (VS_CONN_INFO | MMTYPE_REQ));
  150. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  151. request->REQ_TYPE = 0x04;
  152. request->CID = 0x00;
  153. request->CSPEC_VER = 0x01;
  154. request->TOT_BW_USED = TOT_BW_USED;
  155. if (SendMME (plc) <= 0)
  156. {
  157. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  158. return (-1);
  159. }
  160. while (ReadMME (plc, 0, (VS_CONN_INFO | MMTYPE_CNF)) <= 0);
  161. if (confirm->MSTATUS)
  162. {
  163. Failure (plc, "Could not set up bandwidth notification.");
  164. }
  165. else
  166. {
  167. Confirm (plc, "Set up bandwidth monitoring.");
  168. break;
  169. }
  170. sleep (1);
  171. }
  172. while (1)
  173. {
  174. /*
  175. * Wait for indications saying too much bandwidth is
  176. * in use.
  177. */
  178. while (ReadMME (plc, 0, (VS_CONN_INFO | MMTYPE_IND)) <= 0)
  179. {
  180. continue;
  181. }
  182. if (indicate->MSTATUS)
  183. {
  184. Failure (plc, "Connection Info Indicate error");
  185. continue;
  186. }
  187. printf ("Number of Connections: %d\n", indicate->NUM_CONN);
  188. conn_info = (struct conn_info *) (confirm->CONN_INFO);
  189. bwused = 0;
  190. lowest = conn_info->CONN_COQOS_PRIO;
  191. lowcid = conn_info->CID;
  192. for (i = 0; i < indicate->NUM_CONN; i++)
  193. {
  194. bwused += conn_info->BW_USED;
  195. if (conn_info->CONN_COQOS_PRIO < lowest)
  196. {
  197. lowest = conn_info->CONN_COQOS_PRIO;
  198. lowcid = conn_info->CID;
  199. }
  200. conn_info++;
  201. }
  202. printf ("Total bandwidth used: %d\n", bwused);
  203. if (bwused <= TOT_BW_USED)
  204. {
  205. continue;
  206. }
  207. printf ("Bandwidth limit exceeded dropping: %04X\n", lowcid);
  208. Request (plc, "COQOS Modify Connection (suspend)");
  209. memset (message, 0, sizeof (* message));
  210. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  211. QualcommHeader (& request->qualcomm, 0, (VS_CONN_MOD | MMTYPE_REQ));
  212. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  213. mc_request->MOD_CTRL = 0x00;
  214. mc_request->CID = lowcid;
  215. if (SendMME (plc) <= 0)
  216. {
  217. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  218. return (-1);
  219. }
  220. while (ReadMME (plc, 0, (VS_CONN_MOD | MMTYPE_CNF)) <= 0);
  221. if (mc_confirm->MSTATUS)
  222. {
  223. Failure (plc, "Could not suspend stream.");
  224. continue;
  225. }
  226. printf ("Connection ID: %04X suspended\n", lowcid);
  227. sleep (5);
  228. /* flush out old data */
  229. while (ReadMME (plc, 0, (VS_CONN_INFO | MMTYPE_IND)) > 0);
  230. }
  231. return (0);
  232. }
  233. /*====================================================================*
  234. *
  235. * int main (int argc, char const * argv[]);
  236. *
  237. *--------------------------------------------------------------------*/
  238. int main (int argc, char const * argv [])
  239. {
  240. extern struct channel channel;
  241. static char const * optv [] =
  242. {
  243. "ei:qv",
  244. "limit [device] [...]",
  245. "CoQos Stream Utility",
  246. "e\tredirect stderr to stdout",
  247. #if defined (WINPCAP) || defined (LIBPCAP)
  248. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  249. #else
  250. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  251. #endif
  252. "q\tquiet mode",
  253. "v\tverbose mode",
  254. (char const *) (0)
  255. };
  256. #include "../plc/plc.c"
  257. uint16_t limit;
  258. signed c;
  259. if (getenv (PLCDEVICE))
  260. {
  261. #if defined (WINPCAP) || defined (LIBPCAP)
  262. channel.ifindex = atoi (getenv (PLCDEVICE));
  263. #else
  264. channel.ifname = strdup (getenv (PLCDEVICE));
  265. #endif
  266. }
  267. optind = 1;
  268. while (~ (c = getoptv (argc, argv, optv)))
  269. {
  270. switch (c)
  271. {
  272. case 'e':
  273. dup2 (STDOUT_FILENO, STDERR_FILENO);
  274. break;
  275. case 'i':
  276. #if defined (WINPCAP) || defined (LIBPCAP)
  277. channel.ifindex = atoi (optarg);
  278. #else
  279. channel.ifname = optarg;
  280. #endif
  281. break;
  282. case 'q':
  283. _setbits (channel.flags, CHANNEL_SILENCE);
  284. _setbits (plc.flags, PLC_SILENCE);
  285. break;
  286. case 'v':
  287. _setbits (channel.flags, CHANNEL_VERBOSE);
  288. _setbits (plc.flags, PLC_VERBOSE);
  289. break;
  290. default:
  291. break;
  292. }
  293. }
  294. argc -= optind;
  295. argv += optind;
  296. if (! argc)
  297. {
  298. error (1, ECANCELED, "No limit given");
  299. }
  300. limit = (uint16_t) (uintspec (* argv++, 10, 90000));
  301. argc--;
  302. openchannel (& channel);
  303. if (! (plc.message = malloc (sizeof (* plc.message))))
  304. {
  305. error (1, errno, PLC_NOMEMORY);
  306. }
  307. if (! argc)
  308. {
  309. con_man (& plc, limit);
  310. }
  311. while ((argc) && (* argv))
  312. {
  313. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  314. {
  315. error (1, errno, PLC_BAD_MAC, * argv);
  316. }
  317. con_man (& plc, limit);
  318. argc--;
  319. argv++;
  320. }
  321. free (plc.message);
  322. closechannel (& channel);
  323. exit (0);
  324. }