int6klist.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6klist.c -
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. /*====================================================================*
  18. * system header files;
  19. *--------------------------------------------------------------------*/
  20. #include <unistd.h>
  21. #include <stdlib.h>
  22. #include <stdint.h>
  23. #include <limits.h>
  24. /*====================================================================*
  25. * custom header files;
  26. *--------------------------------------------------------------------*/
  27. #include "../tools/getoptv.h"
  28. #include "../tools/putoptv.h"
  29. #include "../tools/symbol.h"
  30. #include "../tools/types.h"
  31. #include "../tools/flags.h"
  32. #include "../tools/files.h"
  33. #include "../tools/error.h"
  34. #include "../plc/plc.h"
  35. /*====================================================================*
  36. * custom source files;
  37. *--------------------------------------------------------------------*/
  38. #ifndef MAKEFILE
  39. #include "../plc/Confirm.c"
  40. #include "../plc/Display.c"
  41. #include "../plc/Failure.c"
  42. #include "../plc/Request.c"
  43. #include "../plc/ReadMME.c"
  44. #include "../plc/SendMME.c"
  45. #include "../plc/Devices.c"
  46. #include "../plc/ListLocalDevices.c"
  47. #include "../plc/ListRemoteDevices1.c"
  48. #endif
  49. #ifndef MAKEFILE
  50. #include "../tools/getoptv.c"
  51. #include "../tools/putoptv.c"
  52. #include "../tools/version.c"
  53. #include "../tools/uintspec.c"
  54. #include "../tools/hexdump.c"
  55. #include "../tools/hexencode.c"
  56. #include "../tools/hexdecode.c"
  57. #include "../tools/hexout.c"
  58. #include "../tools/todigit.c"
  59. #include "../tools/synonym.c"
  60. #include "../tools/error.c"
  61. #endif
  62. #ifndef MAKEFILE
  63. #include "../ether/openchannel.c"
  64. #include "../ether/closechannel.c"
  65. #include "../ether/readpacket.c"
  66. #include "../ether/sendpacket.c"
  67. #include "../ether/channel.c"
  68. #endif
  69. #ifndef MAKEFILE
  70. #include "../mme/EthernetHeader.c"
  71. #include "../mme/QualcommHeader.c"
  72. #include "../mme/UnwantedMessage.c"
  73. #include "../mme/MMECode.c"
  74. #endif
  75. /*====================================================================*
  76. *
  77. * int main (int argc, char const * argv[]);
  78. *
  79. * Contributor(s):
  80. * Charles Maier <cmaier@qca.qualcomm.com>
  81. *
  82. *--------------------------------------------------------------------*/
  83. int main (int argc, char const * argv [])
  84. {
  85. extern struct channel channel;
  86. extern const struct _term_ devices [];
  87. static char const * optv [] =
  88. {
  89. "i:bnqrsv",
  90. "device [device] [...] [> stdout]",
  91. "Qualcomm Atheros Device Statistics Utility",
  92. "b\tprint bridge devices; exclude remote devices",
  93. #if defined (WINPCAP) || defined (LIBPCAP)
  94. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  95. #else
  96. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  97. #endif
  98. "n\tappend newline to output",
  99. "q\tquiet mode",
  100. "r\tprint remote devices; exclude bridge devices",
  101. "s\tprint newlines instead of spaces",
  102. "v\tverbose mode",
  103. (char const *) (0)
  104. };
  105. #include "../plc/plc.c"
  106. char const * space = " ";
  107. char const * comma = "\0";
  108. signed c;
  109. if (getenv (PLCDEVICE))
  110. {
  111. #if defined (WINPCAP) || defined (LIBPCAP)
  112. channel.ifindex = atoi (getenv (PLCDEVICE));
  113. #else
  114. channel.ifname = strdup (getenv (PLCDEVICE));
  115. #endif
  116. }
  117. optind = 1;
  118. while (~ (c = getoptv (argc, argv, optv)))
  119. {
  120. switch (c)
  121. {
  122. case 'b':
  123. _setbits (plc.flags, PLC_BRIDGE_LIST);
  124. break;
  125. case 'i':
  126. #if defined (WINPCAP) || defined (LIBPCAP)
  127. channel.ifindex = atoi (optarg);
  128. #else
  129. channel.ifname = optarg;
  130. #endif
  131. break;
  132. case 'n':
  133. comma = "\n";
  134. break;
  135. case 'r':
  136. _setbits (plc.flags, PLC_REMOTE_LIST);
  137. break;
  138. case 's':
  139. space = "\n";
  140. break;
  141. case 'q':
  142. _setbits (channel.flags, CHANNEL_SILENCE);
  143. _setbits (plc.flags, PLC_SILENCE);
  144. break;
  145. case 'v':
  146. _setbits (channel.flags, CHANNEL_VERBOSE);
  147. _setbits (plc.flags, PLC_VERBOSE);
  148. break;
  149. default:
  150. break;
  151. }
  152. }
  153. argc -= optind;
  154. argv += optind;
  155. if (_allclr (plc.flags, (PLC_BRIDGE_LIST | PLC_REMOTE_LIST)))
  156. {
  157. _setbits (plc.flags, (PLC_BRIDGE_LIST | PLC_REMOTE_LIST));
  158. }
  159. openchannel (& channel);
  160. if (! (plc.message = malloc (sizeof (* plc.message))))
  161. {
  162. error (1, errno, PLC_NOMEMORY);
  163. }
  164. if (! argc)
  165. {
  166. ListLocalDevices (& plc, space, comma);
  167. }
  168. while ((argc) && (* argv))
  169. {
  170. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  171. {
  172. error (1, errno, PLC_BAD_MAC, * argv);
  173. }
  174. ListRemoteDevices1 (& plc, space, comma);
  175. argc--;
  176. argv++;
  177. }
  178. closechannel (& channel);
  179. return (0);
  180. }