oethernet.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * oethernet.cpp - oethernet class definition;
  11. *
  12. * implement a standard Ethernet header consisting of peer address,
  13. * host address and ethertype; provide methods to encode and decode
  14. * external memory;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <charles.maier@intellon.com>
  18. *
  19. *--------------------------------------------------------------------*/
  20. #ifndef oETHERNET_SOURCE
  21. #define oETHERNET_SOURCE
  22. /*====================================================================*
  23. * system header files;
  24. *--------------------------------------------------------------------*/
  25. #include <cstring>
  26. #include <iostream>
  27. /*====================================================================*
  28. * system header files;
  29. *--------------------------------------------------------------------*/
  30. #include <arpa/inet.h>
  31. /*====================================================================*
  32. * custom header files;
  33. *--------------------------------------------------------------------*/
  34. #include "../classes/oethernet.hpp"
  35. #include "../classes/omemory.hpp"
  36. /*====================================================================*
  37. * class constants;
  38. *--------------------------------------------------------------------*/
  39. byte const oethernet::EmptycastAddress [ETHER_ADDR_LEN] =
  40. {
  41. 0x00,
  42. 0x00,
  43. 0x00,
  44. 0x00,
  45. 0x00,
  46. 0x00
  47. };
  48. byte const oethernet::BroadcastAddress [ETHER_ADDR_LEN] =
  49. {
  50. 0xFF,
  51. 0xFF,
  52. 0xFF,
  53. 0xFF,
  54. 0xFF,
  55. 0xFF
  56. };
  57. /*====================================================================*
  58. *
  59. * size_t HeaderLength (void) const;
  60. *
  61. * return the length of an encoded Ethernet header in bytes;
  62. *
  63. *--------------------------------------------------------------------*/
  64. size_t oethernet::HeaderLength (void) const
  65. {
  66. return (sizeof (this->mpeeraddr) + sizeof (this->mhostaddr) + sizeof (this->mprotocol));
  67. }
  68. /*====================================================================*
  69. *
  70. * void * ExportHeader (void * memory) const;
  71. *
  72. * encode external memory with an Ethernet header and return the
  73. * address of the next unencoded memory byte;
  74. *
  75. *--------------------------------------------------------------------*/
  76. void * oethernet::ExportHeader (void * memory) const
  77. {
  78. memory = oethernet::ExportPeerAddress (memory);
  79. memory = oethernet::ExportHostAddress (memory);
  80. memory = oethernet::ExportProtocol (memory);
  81. return (memory);
  82. }
  83. /*====================================================================*
  84. *
  85. * void const * ImportHeader (void * memory);
  86. *
  87. * decode external memory containing an Ethernet header and return
  88. * the address of the next undecoded memory byte;
  89. *
  90. *--------------------------------------------------------------------*/
  91. void const * oethernet::ImportHeader (void const * memory)
  92. {
  93. memory = oethernet::ImportPeerAddress (memory);
  94. memory = oethernet::ImportHostAddress (memory);
  95. memory = oethernet::ImportProtocol (memory);
  96. return (memory);
  97. }
  98. /*====================================================================*
  99. *
  100. * void * ExportPeerAddress (void * memory) const;
  101. *
  102. * encode external memory with the peer hardware address and return
  103. * the address of the next unencoded memory byte;
  104. *
  105. *--------------------------------------------------------------------*/
  106. void * oethernet::ExportPeerAddress (void * memory) const
  107. {
  108. memory = omemory::encode (memory, this->mpeeraddr, sizeof (this->mpeeraddr));
  109. return (memory);
  110. }
  111. /*====================================================================*
  112. *
  113. * void * ExportHostAddress (void * memory) const;
  114. *
  115. * encode external memory with the host hardware address and return
  116. * the address of the next unencoded memory byte;
  117. *
  118. *--------------------------------------------------------------------*/
  119. void * oethernet::ExportHostAddress (void * memory) const
  120. {
  121. memory = omemory::encode (memory, this->mhostaddr, sizeof (this->mhostaddr));
  122. return (memory);
  123. }
  124. /*====================================================================*
  125. *
  126. * void * oethernet::ExportProtocol (void * memory) const;
  127. *
  128. * encode external memory with the Ethernet protocol and return
  129. * the address of the next unencoded memory byte;
  130. *
  131. *--------------------------------------------------------------------*/
  132. void * oethernet::ExportProtocol (void * memory) const
  133. {
  134. memory = omemory::encode (memory, &this->mprotocol, sizeof (this->mprotocol));
  135. return (memory);
  136. }
  137. /*====================================================================*
  138. *
  139. * void const * ImportPeerAddress (void const * memory);
  140. *
  141. * decode external memory containing the peer hardware address and
  142. * return the address of the next undecoded byte;
  143. *
  144. *--------------------------------------------------------------------*/
  145. void const * oethernet::ImportPeerAddress (void const * memory)
  146. {
  147. memory = omemory::decode (memory, this->mpeeraddr, sizeof (this->mpeeraddr));
  148. return (memory);
  149. }
  150. /*====================================================================*
  151. *
  152. * void const * ImportHostAddress (void const * memory);
  153. *
  154. * decode external memory containing the host hardware address and
  155. * return the address of the next undecoded byte;
  156. *
  157. *--------------------------------------------------------------------*/
  158. void const * oethernet::ImportHostAddress (void const * memory)
  159. {
  160. memory = omemory::decode (memory, this->mhostaddr, sizeof (this->mhostaddr));
  161. return (memory);
  162. }
  163. /*====================================================================*
  164. *
  165. * void const * ImportProtocol (void const * memory);
  166. *
  167. * decode external memory containing the Ethernet protocol and
  168. * return the address of the next undecoded byte;
  169. *
  170. *--------------------------------------------------------------------*/
  171. void const * oethernet::ImportProtocol (void const * memory)
  172. {
  173. memory = omemory::decode (memory, &this->mprotocol, sizeof (this->mprotocol));
  174. return (memory);
  175. }
  176. /*====================================================================*
  177. *
  178. * const byte * PeerAddress (void) const;
  179. *
  180. * return the binary peer address location;
  181. *
  182. *--------------------------------------------------------------------*/
  183. const byte * oethernet::PeerAddress (void) const
  184. {
  185. return (this->mpeeraddr);
  186. }
  187. /*====================================================================*
  188. *
  189. * const byte * HostAddress (void) const;
  190. *
  191. * return the binary host address location;
  192. *
  193. *--------------------------------------------------------------------*/
  194. const byte * oethernet::HostAddress (void) const
  195. {
  196. return (this->mhostaddr);
  197. }
  198. /*====================================================================*
  199. *
  200. * uint16_t oethernet::Protocol (void) const;
  201. *
  202. * return the Ethernet protocol as an integer in host byte order;
  203. *
  204. * the Ethernet protocol is stored internally in network byte order
  205. * so that it can be encoded/decoded and imported/exported directly
  206. * without modification;
  207. *
  208. *--------------------------------------------------------------------*/
  209. uint16_t oethernet::Protocol (void) const
  210. {
  211. return (ntohs (this->mprotocol));
  212. }
  213. /*====================================================================*
  214. *
  215. * oethernet & SetProtocol (uint16_t protocol);
  216. *
  217. * accept a new Ethernet protocol specified as an integer in host
  218. * byte order;
  219. *
  220. * the Ethernet protocol is stored internally in network byte order
  221. * so that it may be encoded/decoded and imported/exported directly
  222. * without modification;
  223. *
  224. *--------------------------------------------------------------------*/
  225. oethernet & oethernet::SetProtocol (uint16_t protocol)
  226. {
  227. this->mprotocol = htons (protocol);
  228. return (*this);
  229. }
  230. /*====================================================================*
  231. *
  232. * char const * PeerAddressString (void) const;
  233. *
  234. * return the peer address string location;
  235. *
  236. *--------------------------------------------------------------------*/
  237. char const * oethernet::PeerAddressString (void) const
  238. {
  239. static char buffer [sizeof (this->mpeeraddr) * 3];
  240. omemory::hexdecode (this->mpeeraddr, sizeof (this->mpeeraddr), buffer, sizeof (buffer));
  241. return (buffer);
  242. }
  243. /*====================================================================*
  244. *
  245. * char const * HostAddressString (void) const;
  246. *
  247. * return the host address string location;
  248. *
  249. *--------------------------------------------------------------------*/
  250. char const * oethernet::HostAddressString (void) const
  251. {
  252. static char buffer [sizeof (this->mhostaddr) * 3];
  253. omemory::hexdecode (this->mhostaddr, sizeof (this->mhostaddr), buffer, sizeof (buffer));
  254. return (buffer);
  255. }
  256. /*====================================================================*
  257. *
  258. * char const * ProtocolString (void) const;
  259. *
  260. * return the protocol string location;
  261. *
  262. *--------------------------------------------------------------------*/
  263. char const * oethernet::ProtocolString (void) const
  264. {
  265. static char buffer [sizeof (this->mprotocol) * 3];
  266. omemory::hexdecode (&this->mprotocol, sizeof (this->mprotocol), buffer, sizeof (buffer));
  267. return (buffer);
  268. }
  269. /*====================================================================*
  270. *
  271. * oethernet & Print ();
  272. *
  273. * print peer address, host address and ethertype on stdout in hex
  274. * format; return the object instance address;
  275. *
  276. *--------------------------------------------------------------------*/
  277. oethernet & oethernet::Print ()
  278. {
  279. std::cerr << oethernet::PeerAddressString () << " ";
  280. std::cerr << oethernet::HostAddressString () << " ";
  281. std::cerr << oethernet::ProtocolString () << std::endl;
  282. return (*this);
  283. }
  284. /*====================================================================*
  285. *
  286. * oethernet (uint16_t protocol);
  287. *
  288. * clear peer and host hardware addresses; set protocol to default
  289. * in network byte order;
  290. *
  291. *--------------------------------------------------------------------*/
  292. oethernet::oethernet (uint16_t protocol)
  293. {
  294. std::memset (this->mpeeraddr, 0, sizeof (this->mpeeraddr));
  295. std::memset (this->mhostaddr, 0, sizeof (this->mhostaddr));
  296. this->mprotocol = htons (protocol);
  297. return;
  298. }
  299. /*====================================================================*
  300. *
  301. * oethernet (void);
  302. *
  303. * clear peer and host hardware addresses; set protocol to default
  304. * value in network byte order;
  305. *
  306. *--------------------------------------------------------------------*/
  307. oethernet::oethernet (void)
  308. {
  309. std::memset (this->mpeeraddr, 0, sizeof (this->mpeeraddr));
  310. std::memset (this->mhostaddr, 0, sizeof (this->mhostaddr));
  311. this->mprotocol = 0;
  312. return;
  313. }
  314. /*====================================================================*
  315. *
  316. * ~oethernet (void);
  317. *
  318. *--------------------------------------------------------------------*/
  319. oethernet::~oethernet (void)
  320. {
  321. return;
  322. }
  323. /*====================================================================*
  324. * end definition;
  325. *--------------------------------------------------------------------*/
  326. #endif