ointerfaces.cpp 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ointerfaces.cpp - ointerfaces class definition;
  11. *
  12. * host interface enumerator;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef oINTERFACES_SOURCE
  19. #define oINTERFACES_SOURCE
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #include <iostream>
  24. /*====================================================================*
  25. * system header files;
  26. *--------------------------------------------------------------------*/
  27. #if defined (__linux__)
  28. # include <sys/socket.h>
  29. # include <net/if.h>
  30. #elif defined (__APPLE__)
  31. # include <sys/types.h>
  32. # include <sys/socket.h>
  33. # include <net/if.h>
  34. #elif defined (__OpenBSD__)
  35. # include <sys/types.h>
  36. # include <sys/socket.h>
  37. # include <net/if.h>
  38. #elif defined (WINPCAP)
  39. # include <pcap.h>
  40. #endif
  41. /*====================================================================*
  42. * custom header files;
  43. *--------------------------------------------------------------------*/
  44. #include "../classes/ointerfaces.hpp"
  45. /*====================================================================*
  46. *
  47. * bool Empty (void) const;
  48. *
  49. * return true if there are no interfaces;
  50. *
  51. *--------------------------------------------------------------------*/
  52. bool ointerfaces::Empty (void) const
  53. {
  54. return (!this->mcount);
  55. }
  56. /*====================================================================*
  57. *
  58. * bool End (void) const;
  59. *
  60. * return true if the last interface has been reached;
  61. *
  62. *--------------------------------------------------------------------*/
  63. bool ointerfaces::End (void) const
  64. {
  65. return (this->mindex >= this->mcount);
  66. }
  67. /*====================================================================*
  68. *
  69. * unsigned Count (void) const;
  70. *
  71. * return the number of interfaces;
  72. *
  73. *--------------------------------------------------------------------*/
  74. unsigned ointerfaces::Count (void) const
  75. {
  76. return (this->mcount);
  77. }
  78. /*====================================================================*
  79. *
  80. * unsigned Index (void) const;
  81. *
  82. * return the current interface index;
  83. *
  84. *--------------------------------------------------------------------*/
  85. unsigned ointerfaces::Index (void) const
  86. {
  87. return (this->mindex);
  88. }
  89. /*====================================================================*
  90. *
  91. * ointerfaces & SelectFirst (void);
  92. *
  93. * select first interfac;
  94. *
  95. *--------------------------------------------------------------------*/
  96. ointerfaces & ointerfaces::SelectFirst (void)
  97. {
  98. this->mindex = 0;
  99. return (*this);
  100. }
  101. /*====================================================================*
  102. *
  103. * ointerfaces & SelectFinal (void);
  104. *
  105. * select final interface;
  106. *
  107. *--------------------------------------------------------------------*/
  108. ointerfaces & ointerfaces::SelectFinal (void)
  109. {
  110. this->mindex = this->mcount - 1;
  111. return (*this);
  112. }
  113. /*====================================================================*
  114. *
  115. * ointerfaces & SelectPrev (void)
  116. *
  117. * select the prev interface unless the current interface is the
  118. * first interface; same as operator --;
  119. *
  120. *--------------------------------------------------------------------*/
  121. ointerfaces & ointerfaces::SelectPrev (void)
  122. {
  123. if (this->mindex > 0)
  124. {
  125. this->mindex--;
  126. }
  127. return (*this);
  128. }
  129. /*====================================================================*
  130. *
  131. * ointerfaces & SelectNext (void)
  132. *
  133. * select the next interface unless the current interface is the
  134. * final interface; same as operator ++;
  135. *
  136. *--------------------------------------------------------------------*/
  137. ointerfaces & ointerfaces::SelectNext (void)
  138. {
  139. if (this->mindex < this->mcount)
  140. {
  141. this->mindex++;
  142. }
  143. return (*this);
  144. }
  145. /*====================================================================*
  146. *
  147. * ointerfaces & Select (unsigned index);
  148. *
  149. * select an interface by number; same as operator [];
  150. *
  151. *--------------------------------------------------------------------*/
  152. ointerfaces & ointerfaces::Select (unsigned index)
  153. {
  154. this->mindex = index;
  155. if (this->mindex > this->mcount)
  156. {
  157. this->mindex = this->mcount;
  158. }
  159. return (*this);
  160. }
  161. /*====================================================================*
  162. *
  163. * ointerface & operator = (unsigned index)
  164. *
  165. * select an interface; this has the same effect as calling the
  166. * ( select method with argument index.
  167. *
  168. *--------------------------------------------------------------------*/
  169. ointerfaces & ointerfaces::operator = (unsigned index)
  170. {
  171. return (this->Select (index));
  172. }
  173. /*====================================================================*
  174. *
  175. * ointerface & operator [] (unsigned index)
  176. *
  177. * select an interface then return an instance of it; this has the
  178. * same effect as calling the select method with argument index then
  179. * reading the Selected or Interface property;
  180. *
  181. *--------------------------------------------------------------------*/
  182. ointerface & ointerfaces::operator [] (unsigned index)
  183. {
  184. return (this->Select (index).Selected ());
  185. }
  186. /*====================================================================*
  187. *
  188. * ointerface & Selected (void) const
  189. *
  190. * return the selected interface; this is the same as the Interface
  191. * property;
  192. *
  193. *--------------------------------------------------------------------*/
  194. ointerface & ointerfaces::Selected (void) const
  195. {
  196. return (* this->mtable [this->mindex]);
  197. }
  198. /*====================================================================*
  199. *
  200. * ointerface & Interface (void) const
  201. *
  202. * return the selected interface; this is the same as the Selected
  203. * property;
  204. *
  205. *--------------------------------------------------------------------*/
  206. ointerface & ointerfaces::Interface (void) const
  207. {
  208. return (* this->mtable [this->mindex]);
  209. }
  210. /*====================================================================*
  211. *
  212. * ointerfaces & Enumerate (void);
  213. *
  214. * interate through interfaces and print them on stdout; do not
  215. * change the selected interface;
  216. *
  217. *--------------------------------------------------------------------*/
  218. ointerfaces & ointerfaces::Enumerate (void)
  219. {
  220. for (unsigned index = 0; index < this->mcount; index++)
  221. {
  222. ointerface * ifp = this->mtable [index];
  223. if (!ifp->Disabled ())
  224. {
  225. ifp->Print ();
  226. }
  227. }
  228. return (*this);
  229. }
  230. /*====================================================================*
  231. *
  232. * ointerfaces ()
  233. *
  234. * detect host interfaces and constuct a collection of ointerface
  235. * objects; omit devices with hardware address 00:00:00:00:00:00;
  236. *
  237. * WinPcap provides a true device description; Linux, MacOSX and
  238. * OpenBSD do not so we substiture the device name;
  239. *
  240. *--------------------------------------------------------------------*/
  241. ointerfaces::ointerfaces ()
  242. {
  243. #if defined (WINPCAP)
  244. char buffer [PCAP_ERRBUF_SIZE];
  245. pcap_if_t * devices = (pcap_if_t *)(0);
  246. pcap_if_t * device;
  247. this->mindex = 0;
  248. this->mcount = 0;
  249. if (pcap_findalldevs (&devices, buffer) != -1)
  250. {
  251. for (device = devices; device; device = device->next)
  252. {
  253. this->mcount++;
  254. }
  255. this->mtable = new ointerface * [this->mcount];
  256. for (device = devices; device; device = device->next)
  257. {
  258. ointerface * ifo = new ointerface (device->name);
  259. ifo->Description (device->description);
  260. this->mtable [this->mindex++] = ifo;
  261. }
  262. pcap_freealldevs (devices);
  263. }
  264. #else
  265. struct if_nameindex * ifs = if_nameindex ();
  266. struct if_nameindex * ifp;
  267. this->mindex = 0;
  268. this->mcount = 0;
  269. for (ifp = ifs; ifp->if_index; ++ifp)
  270. {
  271. this->mcount++;
  272. }
  273. this->mtable = new ointerface * [this->mcount];
  274. for (ifp = ifs; ifp->if_index; ++ifp)
  275. {
  276. ointerface * ifo = new ointerface (ifp->if_name);
  277. ifo->Description (ifp->if_name);
  278. this->mtable [this->mindex++] = ifo;
  279. }
  280. if_freenameindex (ifs);
  281. #endif
  282. if (!this->mcount)
  283. {
  284. this->mtable = new ointerface * [1];
  285. }
  286. this->mindex = 0;
  287. return;
  288. }
  289. /*====================================================================*
  290. *
  291. * ~ointerfaces ()
  292. *
  293. * delete the table after deleting all entries;
  294. *
  295. *--------------------------------------------------------------------*/
  296. ointerfaces::~ointerfaces ()
  297. {
  298. while (this->mcount--)
  299. {
  300. delete this->mtable [this->mcount];
  301. }
  302. delete [] this->mtable;
  303. return;
  304. }
  305. /*====================================================================*
  306. * end definition;
  307. *--------------------------------------------------------------------*/
  308. #endif