mdustats.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * mdustats.c -
  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. /*====================================================================*
  37. * custom source files;
  38. *--------------------------------------------------------------------*/
  39. #ifndef MAKEFILE
  40. #include "../plc/Display.c"
  41. #include "../plc/Request.c"
  42. #include "../plc/ReadMME.c"
  43. #include "../plc/SendMME.c"
  44. #include "../plc/MDUTrafficStats.c"
  45. #include "../plc/Devices.c"
  46. #include "../plc/chipset.c"
  47. #include "../mme/UnwantedMessage.c"
  48. #endif
  49. #ifndef MAKEFILE
  50. #include "../tools/error.c"
  51. #include "../tools/getoptv.c"
  52. #include "../tools/putoptv.c"
  53. #include "../tools/version.c"
  54. #include "../tools/uintspec.c"
  55. #include "../tools/hexdump.c"
  56. #include "../tools/hexencode.c"
  57. #include "../tools/hexdecode.c"
  58. #include "../tools/hexstring.c"
  59. #include "../tools/todigit.c"
  60. #include "../tools/set32bitmap.c"
  61. #include "../tools/synonym.c"
  62. #include "../tools/typename.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. #endif
  76. /*====================================================================*
  77. * program constants;
  78. *--------------------------------------------------------------------*/
  79. #define MDUSTATS_COMMAND 4
  80. #define MDUSTATS_SESSION 255
  81. #define MDUSTATS_SLAVE 0
  82. /*====================================================================*
  83. *
  84. * int main (int argc, char const * argv[]);
  85. *
  86. * parse command line, populate plc structure and perform selected
  87. * operations; show help summary if asked; see getoptv and putoptv
  88. * to understand command line parsing and help summary display; see
  89. * plc.h for the definition of struct plc;
  90. *
  91. * the command line accepts multiple MAC addresses and the program
  92. * performs the specified operations on each address, in turn; the
  93. * address order is significant but the option order is not; the
  94. * default address is a local broadcast that causes all devices on
  95. * the local H1 interface to respond but not those at the remote
  96. * end of the powerline;
  97. *
  98. * the default address is 00:B0:52:00:00:01; omitting the address
  99. * will automatically address the local device; some options will
  100. * cancel themselves if this makes no sense;
  101. *
  102. * the default interface is eth1 because most people use eth0 as
  103. * their principle network connection; you can specify another
  104. * interface with -i or define environment string PLC to make
  105. * that the default interface and save typing;
  106. *
  107. *--------------------------------------------------------------------*/
  108. int main (int argc, char const * argv [])
  109. {
  110. extern struct channel channel;
  111. static char const * optv [] =
  112. {
  113. "c:ei:qs:t:u:v",
  114. "device [device] [...] [> stdout]",
  115. "Qualcomm Atheros INT6x00 Powerline Link Statistics",
  116. #if defined (WINPCAP) || defined (LIBPCAP)
  117. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  118. #else
  119. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  120. #endif
  121. "c n\tcommand [" LITERAL (MDUSTATS_COMMAND) "]",
  122. "e\tredirect stderr to stdout",
  123. "q\tquiet mode",
  124. "s n\tsession identifier [" LITERAL (MDUSTATS_SESSION) "]",
  125. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  126. "u n\tslave unit number [" LITERAL (MDUSTATS_SLAVE) "]",
  127. "v\tverbose mode",
  128. (char const *) (0)
  129. };
  130. #include "../plc/plc.c"
  131. uint8_t command = MDUSTATS_COMMAND;
  132. uint8_t session = MDUSTATS_SESSION;
  133. uint8_t slave = MDUSTATS_SLAVE;
  134. signed c;
  135. if (getenv (PLCDEVICE))
  136. {
  137. #if defined (WINPCAP) || defined (LIBPCAP)
  138. channel.ifindex = atoi (getenv (PLCDEVICE));
  139. #else
  140. channel.ifname = strdup (getenv (PLCDEVICE));
  141. #endif
  142. }
  143. optind = 1;
  144. while (~ (c = getoptv (argc, argv, optv)))
  145. {
  146. switch (c)
  147. {
  148. case 'c':
  149. command = (uint8_t) (uintspec (optarg, 0, 255));
  150. break;
  151. case 'e':
  152. dup2 (STDOUT_FILENO, STDERR_FILENO);
  153. break;
  154. case 'i':
  155. #if defined (WINPCAP) || defined (LIBPCAP)
  156. channel.ifindex = atoi (optarg);
  157. #else
  158. channel.ifname = optarg;
  159. #endif
  160. break;
  161. case 'q':
  162. _setbits (channel.flags, CHANNEL_SILENCE);
  163. _setbits (plc.flags, PLC_SILENCE);
  164. break;
  165. case 's':
  166. session = (uint8_t) (uintspec (optarg, 0, 255));
  167. break;
  168. case 't':
  169. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  170. break;
  171. case 'u':
  172. slave = (uint8_t) (uintspec (optarg, 0, 255));
  173. break;
  174. case 'v':
  175. _setbits (channel.flags, CHANNEL_VERBOSE);
  176. _setbits (plc.flags, PLC_VERBOSE);
  177. break;
  178. default:
  179. break;
  180. }
  181. }
  182. argc -= optind;
  183. argv += optind;
  184. openchannel (& channel);
  185. if (! (plc.message = malloc (sizeof (* plc.message))))
  186. {
  187. error (1, errno, PLC_NOMEMORY);
  188. }
  189. if (! argc)
  190. {
  191. MDUTrafficStats (& plc, command, session, slave);
  192. }
  193. while ((argc) && (* argv))
  194. {
  195. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  196. {
  197. error (1, errno, PLC_BAD_MAC, * argv);
  198. }
  199. MDUTrafficStats (& plc, command, session, slave);
  200. argc--;
  201. argv++;
  202. }
  203. free (plc.message);
  204. closechannel (& channel);
  205. return (0);
  206. }