coqos_rel.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * coqos_rel.c - Release MCSMA 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. /*====================================================================*
  39. * custom source files;
  40. *--------------------------------------------------------------------*/
  41. #ifndef MAKEFILE
  42. #include "../tools/getoptv.c"
  43. #include "../tools/putoptv.c"
  44. #include "../tools/version.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/hexdecode.c"
  51. #include "../tools/todigit.c"
  52. #include "../tools/typename.c"
  53. #include "../tools/endian.c"
  54. #include "../tools/error.c"
  55. #include "../tools/synonym.c"
  56. #endif
  57. #ifndef MAKEFILE
  58. #include "../plc/Request.c"
  59. #include "../plc/Confirm.c"
  60. #include "../plc/Failure.c"
  61. #include "../plc/Display.c"
  62. #include "../plc/ReadMME.c"
  63. #include "../plc/SendMME.c"
  64. #include "../plc/Devices.c"
  65. #include "../mme/EthernetHeader.c"
  66. #include "../mme/QualcommHeader.c"
  67. #include "../mme/UnwantedMessage.c"
  68. #endif
  69. #ifndef MAKEFILE
  70. #include "../ether/channel.c"
  71. #include "../ether/openchannel.c"
  72. #include "../ether/closechannel.c"
  73. #include "../ether/readpacket.c"
  74. #include "../ether/sendpacket.c"
  75. #endif
  76. #ifndef MAKEFILE
  77. #include "../mme/MMECode.c"
  78. #endif
  79. /*====================================================================*
  80. *
  81. * signed rel_conn (struct plc * plc, uint16_t CID);
  82. *
  83. * Contributor(s):
  84. * Bill Wike <bill.wike@qca.qualcomm.com>
  85. *
  86. *--------------------------------------------------------------------*/
  87. signed rel_conn (struct plc * plc, uint16_t CID)
  88. {
  89. struct channel * channel = (struct channel *) (plc->channel);
  90. struct message * message = (struct message *) (plc->message);
  91. #ifndef __GNUC__
  92. #pragma pack (push,1)
  93. #endif
  94. struct __packed vs_rel_conn_req
  95. {
  96. struct ethernet_hdr ethernet;
  97. struct qualcomm_hdr qualcomm;
  98. uint32_t REQ_ID;
  99. uint32_t RSVD;
  100. uint16_t CID;
  101. }
  102. * request = (struct vs_rel_conn_req *) (message);
  103. struct __packed vs_rel_conn_cnf
  104. {
  105. struct ethernet_hdr ethernet;
  106. struct qualcomm_hdr qualcomm;
  107. uint32_t REQ_ID;
  108. uint8_t MSTATUS;
  109. uint16_t ERR_REC_CODE;
  110. uint32_t RSVD;
  111. }
  112. * confirm = (struct vs_rel_conn_cnf *) (message);
  113. #ifndef __GNUC__
  114. #pragma pack (pop)
  115. #endif
  116. Request (plc, "Release COQOS connection");
  117. memset (message, 0, sizeof (* message));
  118. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  119. QualcommHeader (& request->qualcomm, 0, (VS_CONN_REL | MMTYPE_REQ));
  120. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  121. request->CID = CID;
  122. if (SendMME (plc) <= 0)
  123. {
  124. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  125. return (-1);
  126. }
  127. while (ReadMME (plc, 0, (VS_CONN_REL | MMTYPE_CNF)) > 0)
  128. {
  129. if (confirm->MSTATUS)
  130. {
  131. Failure (plc, PLC_WONTDOIT);
  132. return (-1);
  133. }
  134. Confirm (plc, "Released %04X", CID);
  135. }
  136. return (0);
  137. }
  138. /*====================================================================*
  139. *
  140. * int main (int argc, char const * argv[]);
  141. *
  142. *--------------------------------------------------------------------*/
  143. int main (int argc, char const * argv [])
  144. {
  145. extern struct channel channel;
  146. static char const * optv [] =
  147. {
  148. "ei:qv",
  149. "cid",
  150. "CoQos Stream Utility",
  151. "e\tredirect stderr to stdout",
  152. #if defined (WINPCAP) || defined (LIBPCAP)
  153. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  154. #else
  155. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  156. #endif
  157. "q\tquiet mode",
  158. "v\tverbose mode",
  159. (char const *) (0)
  160. };
  161. #include "../plc/plc.c"
  162. uint16_t cid;
  163. signed c;
  164. if (getenv (PLCDEVICE))
  165. {
  166. #if defined (WINPCAP) || defined (LIBPCAP)
  167. channel.ifindex = atoi (getenv (PLCDEVICE));
  168. #else
  169. channel.ifname = strdup (getenv (PLCDEVICE));
  170. #endif
  171. }
  172. optind = 1;
  173. while (~ (c = getoptv (argc, argv, optv)))
  174. {
  175. switch (c)
  176. {
  177. case 'e':
  178. dup2 (STDOUT_FILENO, STDERR_FILENO);
  179. break;
  180. case 'i':
  181. #if defined (WINPCAP) || defined (LIBPCAP)
  182. channel.ifindex = atoi (optarg);
  183. #else
  184. channel.ifname = optarg;
  185. #endif
  186. break;
  187. case 'q':
  188. _setbits (channel.flags, CHANNEL_SILENCE);
  189. _setbits (plc.flags, PLC_SILENCE);
  190. break;
  191. case 'v':
  192. _setbits (channel.flags, CHANNEL_VERBOSE);
  193. _setbits (plc.flags, PLC_VERBOSE);
  194. break;
  195. default:
  196. break;
  197. }
  198. }
  199. argc -= optind;
  200. argv += optind;
  201. if (! argc)
  202. {
  203. error (1, ECANCELED, "Missing CID");
  204. }
  205. if (! hexencode ((uint8_t *) (& cid), sizeof (cid), * argv++))
  206. {
  207. error (1, EINVAL, "CID=[%s]", * -- argv);
  208. }
  209. cid = htons (cid);
  210. argc--;
  211. openchannel (& channel);
  212. if (! (plc.message = malloc (sizeof (* plc.message))))
  213. {
  214. error (1, errno, PLC_NOMEMORY);
  215. }
  216. if (! argc)
  217. {
  218. rel_conn (& plc, cid);
  219. }
  220. while ((argc) && (* argv))
  221. {
  222. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  223. {
  224. error (1, errno, PLC_BAD_MAC, * argv);
  225. }
  226. rel_conn (& plc, cid);
  227. argc--;
  228. argv++;
  229. }
  230. free (plc.message);
  231. closechannel (& channel);
  232. exit (0);
  233. }