plcdevs.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plcdevs.c - PLC device enumerator;
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <stdio.h>
  20. #include <limits.h>
  21. #include <memory.h>
  22. /*====================================================================*
  23. * custom header files;
  24. *--------------------------------------------------------------------*/
  25. #include "../tools/getoptv.h"
  26. #include "../tools/putoptv.h"
  27. #include "../tools/version.h"
  28. #include "../tools/memory.h"
  29. #include "../tools/number.h"
  30. #include "../tools/error.h"
  31. #include "../tools/flags.h"
  32. #include "../ether/channel.h"
  33. #include "../ether/ether.h"
  34. #include "../plc/plc.h"
  35. /*====================================================================*
  36. * custom source files;
  37. *--------------------------------------------------------------------*/
  38. #ifndef MAKEFILE
  39. #include "../tools/getoptv.c"
  40. #include "../tools/putoptv.c"
  41. #include "../tools/version.c"
  42. #include "../tools/error.c"
  43. #include "../tools/hexdecode.c"
  44. #include "../tools/decdecode.c"
  45. #include "../tools/hexstring.c"
  46. #include "../tools/decstring.c"
  47. #include "../tools/typename.c"
  48. #include "../tools/hexdump.c"
  49. #include "../tools/uintspec.c"
  50. #include "../tools/todigit.c"
  51. #include "../tools/error.c"
  52. #endif
  53. #ifndef MAKEFILE
  54. #include "../ether/hostnics.c"
  55. #include "../ether/openchannel.c"
  56. #include "../ether/readpacket.c"
  57. #include "../ether/sendpacket.c"
  58. #include "../ether/closechannel.c"
  59. #include "../ether/channel.c"
  60. #endif
  61. #ifndef MAKEFILE
  62. #include "../mme/EthernetHeader.c"
  63. #include "../mme/QualcommHeader.c"
  64. #include "../mme/UnwantedMessage.c"
  65. #endif
  66. #ifndef MAKEFILE
  67. #include "../plc/Platform.c"
  68. #include "../plc/chipset.c"
  69. #include "../plc/Devices.c"
  70. #endif
  71. /*====================================================================*
  72. *
  73. * void enumerate ();
  74. *
  75. * enumerate host interfaces on stdout;
  76. *
  77. *--------------------------------------------------------------------*/
  78. static void enumerate (struct channel * channel, struct nic nic [], unsigned size)
  79. {
  80. extern const byte localcast [ETHER_ADDR_LEN];
  81. for (; size--; nic++)
  82. {
  83. byte memory [ETHER_ADDR_LEN];
  84. char string [ETHER_ADDR_LEN * 3];
  85. memset (memory, 0x00, sizeof (memory));
  86. if (! memcmp (memory, nic->ethernet, sizeof (memory)))
  87. {
  88. continue;
  89. }
  90. memset (memory, 0xFF, sizeof (memory));
  91. if (! memcmp (memory, nic->ethernet, sizeof (memory)))
  92. {
  93. continue;
  94. }
  95. #if defined (WINPCAP) || defined (LIBPCAP)
  96. printf (" %d", nic->ifindex);
  97. #elif defined (__linux__) || defined (__OpenBSD__) || defined (__APPLE__)
  98. printf (" %s", nic->ifname);
  99. #else
  100. #error "Unknown environment"
  101. #endif
  102. printf (" %s", hexstring (string, sizeof (string), nic->ethernet, sizeof (nic->ethernet)));
  103. printf (" %s", decstring (string, sizeof (string), nic->internet, sizeof (nic->internet)));
  104. #if 0
  105. printf (" %s", nic->ifname);
  106. printf (" %s", nic->ifdesc);
  107. #endif
  108. channel->ifname = nic->ifname;
  109. openchannel (channel);
  110. Platform (channel, localcast);
  111. closechannel (channel);
  112. printf ("\n");
  113. }
  114. return;
  115. }
  116. /*====================================================================*
  117. *
  118. * int main (int argc, char const * argv []);
  119. *
  120. *--------------------------------------------------------------------*/
  121. int main (int argc, char const * argv [])
  122. {
  123. extern struct channel channel;
  124. static char const * optv [] =
  125. {
  126. "qt:v",
  127. PUTOPTV_S_DIVINE,
  128. "Qualcomm Atheros Ethernet Interface Enumerator",
  129. (char const *) (0)
  130. };
  131. struct nic nics [16];
  132. unsigned size = hostnics (nics, sizeof (nics) / sizeof (struct nic));
  133. signed c;
  134. while (~ (c = getoptv (argc, argv, optv)))
  135. {
  136. switch (c)
  137. {
  138. case 'q':
  139. _setbits (channel.flags, CHANNEL_SILENCE);
  140. break;
  141. case 't':
  142. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  143. break;
  144. case 'v':
  145. _setbits (channel.flags, CHANNEL_VERBOSE);
  146. break;
  147. default:
  148. break;
  149. }
  150. }
  151. argc -= optind;
  152. argv += optind;
  153. if (argc)
  154. {
  155. error (1, ENOTSUP, ERROR_TOOMANY);
  156. }
  157. enumerate (& channel, nics, size);
  158. return (0);
  159. }