plclist.c 4.8 KB

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