oethernet.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. <chapter id='oethernet'>
  2. <title>
  3. Class oethernet
  4. </title>
  5. <section id="oethernet-class" >
  6. <title>
  7. Introduction
  8. </title>
  9. <para>
  10. This class implements an Ethernet header encoder/decoder. When instantiated, it provides access to Ethernet header source, destination and protocol fields in binary and string format. Class methods may be used to encode/decode or import/export a complete Ethernet header or individual header fields that are stored in external memory in network byte order. This is the base class for the <link linkend='ohomeplug'>ohomeplug</link> and <link linkend='ointellon'>ointellon</link> classes.
  11. </para>
  12. <para>
  13. Encode and export methods write class properties to external memory in network byte order. Decode and import methods read class properties from external memory in network byte order. Encode and decode methods always return the next unencoded or undecoded memory byte. Import and Export methods always return the object instance reference allowing class methods to be chained.
  14. </para>
  15. <para>
  16. The <link linkend='oethernet-Protocol'>Protocol</link> property and <link linkend='oethernet-SetProtocol'>SetProtocol</link> method perform implicit integer host-to-network and network-to-host byte ordering.
  17. </para>
  18. <para>
  19. This class is declared in <ulink url='oethernet.hpp.html'>oethernet.hpp</ulink> and defined in <ulink url='oethernet.cpp.html'>oethernet.cpp</ulink>.
  20. </para>
  21. <section id="oethernet-inheritance">
  22. <title>
  23. Inheritance
  24. </title>
  25. <para>
  26. None.
  27. </para>
  28. </section>
  29. <section id="oethernet-dependence">
  30. <title>
  31. Dependence
  32. </title>
  33. <para>
  34. This class references static class <link linkend='omemory'>omemory</link> to manipulate memory.
  35. </para>
  36. <para>
  37. This class references Ethernet related constants defined in header file <filename>net/ethernet.h</filename> which should be available on most systems. An abridged version is provided in <ulink url='ethernet.h.html'>VisualStudioNET/include/net/ethernet.h</ulink> for systems that may not have it.
  38. </para>
  39. </section>
  40. </section>
  41. <section id="oethernet-properties">
  42. <title>
  43. Properties
  44. </title>
  45. <para>
  46. </para>
  47. <section id="oethernet-BroadcastAddress">
  48. <title>
  49. oethernet::BroadcastAddress
  50. </title>
  51. <funcsynopsis>
  52. <funcprototype>
  53. <funcdef>const uint8_t * <function>BroadcastAddress</function></funcdef>
  54. <paramdef></paramdef>
  55. </funcprototype>
  56. </funcsynopsis>
  57. <para>
  58. Return the standard Ethernet broadcast address as a constant 48-bit integer in network byte order. The value is <constant>FF:FF:FF:FF:FF:FF</constant> and the length is <constant>ETHER_ADDR_LEN</constant> bytes. Although shown here as a property, this is implemented as a constant. Parentheses are omitted when referencing it.
  59. </para>
  60. </section>
  61. <section id="oethernet-HeaderLength">
  62. <title>
  63. oethernet::HeaderLength
  64. </title>
  65. <funcsynopsis>
  66. <funcprototype>
  67. <funcdef>unsigned <function>HeaderLength</function></funcdef>
  68. <paramdef>void</paramdef>
  69. </funcprototype>
  70. </funcsynopsis>
  71. <para>
  72. Return the Ethernet header length in bytes. The header length is the sum of the Ethernet <link linkend='oethernet-PeerAddress'>PeerAddress</link>, <link linkend='oethernet-HostAddress'>HostAddress</link> and <link linkend='oethernet-Protocol'>Protocol</link> lengths. For practical purposes, this property is a constant but should the <acronym>VLAN</acronym> tag be added then the length will change. Use this property to allocate buffer space in application programs.
  73. </para>
  74. </section>
  75. <section id="oethernet-HostAddress">
  76. <title>
  77. oethernet::HostAddress
  78. </title>
  79. <funcsynopsis>
  80. <funcprototype>
  81. <funcdef>const uint8_t * <function>HostAddress</function></funcdef>
  82. <paramdef>void</paramdef>
  83. </funcprototype>
  84. </funcsynopsis>
  85. <para>
  86. Return the host hardware address as a byte array in network byte order. The length is <constant>ETHER_ADDR_LEN</constant> bytes. The host hardware address is the same as the <varname>OSA</varname> field described in the <citetitle>HomePlug AV Specification</citetitle> and <citetitle>Firmware Technical Reference Manual</citetitle>. On instantiation, this property contains zeros.
  87. </para>
  88. </section>
  89. <section id="oethernet-HostAddressString">
  90. <title>
  91. oethernet::HostAddressString
  92. </title>
  93. <funcsynopsis>
  94. <funcprototype>
  95. <funcdef>const char * <function>HostAddressString</function></funcdef>
  96. <paramdef>void</paramdef>
  97. </funcprototype>
  98. </funcsynopsis>
  99. <para>
  100. Return the host hardware address as a string. The length is <constant>ETHER_ADDR_LEN</constant>*<constant>3</constant> characters long including the <constant>NUL</constant> terminator. It may be used anywhere a <constant>NUL</constant> terminated string is expected. The string is formatted as a colon-separated, hexadecimal octets, as in <quote>00:B0:52:BA:BE:15</quote>.
  101. </para>
  102. </section>
  103. <section id="oethernet-PeerAddress">
  104. <title>
  105. oethernet::PeerAddress
  106. </title>
  107. <funcsynopsis>
  108. <funcprototype>
  109. <funcdef>const uint8_t * <function>PeerAddress</function></funcdef>
  110. <paramdef>void</paramdef>
  111. </funcprototype>
  112. </funcsynopsis>
  113. <para>
  114. Return the peer hardware address as a byte array in network byte order. The length is in <constant>ETHER_ADDR_LEN</constant> bytes. The peer hardware address is the same as the <varname>ODA</varname> field described in the <citetitle>HomePlug AV Specification</citetitle> and <citetitle>Firmware Technical Reference Manual</citetitle>. On instantiation, this property contains zeros.
  115. </para>
  116. </section>
  117. <section id="oethernet-PeerAddressString">
  118. <title>
  119. oethernet::PeerAddressString
  120. </title>
  121. <funcsynopsis>
  122. <funcprototype>
  123. <funcdef>const char * <function>PeerAddressString</function></funcdef>
  124. <paramdef>void</paramdef>
  125. </funcprototype>
  126. </funcsynopsis>
  127. <para>
  128. Return the peer address as a string. The length is <constant>ETHER_ADDR_LEN</constant>*<constant>3</constant> characters long including the <constant>NUL</constant> terminator. It may be used anywhere a <constant>NUL</constant> terminated string is expected. The string is formatted as a colon-separated, hexadecimal octets, as in <quote>00:B0:52:DE:AD:99</quote>.
  129. </para>
  130. </section>
  131. <section id="oethernet-Protocol">
  132. <title>
  133. oethernet::Protocol
  134. </title>
  135. <funcsynopsis>
  136. <funcprototype>
  137. <funcdef>uint16_t <function>Protocol</function></funcdef>
  138. <paramdef>void</paramdef>
  139. </funcprototype>
  140. </funcsynopsis>
  141. <para>
  142. Return the Ethernet protocol as a 16-bit integer in host byte order. The Ethernet protocol is the same as the <varname>MTYPE</varname> field described in the <citetitle>HomePlug AV Specification</citetitle> and <citetitle>Firmware Technical Reference Manual</citetitle>. On instantiation, this property is <constant>0x0000</constant>.
  143. </para>
  144. </section>
  145. <section id="oethernet-ProtocolString">
  146. <title>
  147. oethernet::ProtocolString
  148. </title>
  149. <funcsynopsis>
  150. <funcprototype>
  151. <funcdef>char const * <function>ProtocolString</function></funcdef>
  152. <paramdef>void</paramdef>
  153. </funcprototype>
  154. </funcsynopsis>
  155. <para>
  156. Return the Ethernet protocol as a string. The length is <constant>ETHER_TYPE_LEN</constant>*<constant>3</constant> characters long including the <constant>NUL</constant> terminator. It is formatted as colon-seperated, hexadecimal octets, as in <constant>88:E1</constant>.
  157. </para>
  158. </section>
  159. </section>
  160. <section id="oethernet-methods">
  161. <title>
  162. Methods
  163. </title>
  164. <para>
  165. </para>
  166. <section id="oethernet-ExportHeader">
  167. <title>
  168. oethernet::ExportHeader
  169. </title>
  170. <funcsynopsis>
  171. <funcprototype>
  172. <funcdef>void * <function>ExportHeader</function></funcdef>
  173. <paramdef>void * <parameter>memory</parameter></paramdef>
  174. </funcprototype>
  175. </funcsynopsis>
  176. <para>
  177. Encode external memory with an Ethernet header and return the address of the next unencoded memory byte. No length argument is required. The number of bytes encoded will be <link linkend='oethernet-HeaderLength'>HeaderLength</link>. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent export operations. The encoded header will include the <link linkend='oethernet-PeerAddress'>PeerAddress</link>, <link linkend='oethernet-HostAddress'>HostAddress</link> and <link linkend='oethernet-Protocol'>Protocol</link>. Instance properties are not modified by this operation.
  178. </para>
  179. </section>
  180. <section id="oethernet-ExportHostAddress">
  181. <title>
  182. oethernet::ExportHostAddress
  183. </title>
  184. <funcsynopsis>
  185. <funcprototype>
  186. <funcdef>void * <function>EncodeHostAddress</function></funcdef>
  187. <paramdef>void * <parameter>memory</parameter></paramdef>
  188. </funcprototype>
  189. </funcsynopsis>
  190. <para>
  191. Copy the host hardware address to external memory in binary format. Return the address of the next uncopied memory byte. No length argument is required. The host hardware address is <constant>ETHER_ADDR_LEN</constant> bytes. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent export operations.
  192. </para>
  193. </section>
  194. <section id="oethernet-ExportPeerAddress">
  195. <title>
  196. oethernet::ExportPeerAddress
  197. </title>
  198. <funcsynopsis>
  199. <funcprototype>
  200. <funcdef>void * <function>ExportPeerAddress</function></funcdef>
  201. <paramdef>void * <parameter>memory</parameter></paramdef>
  202. </funcprototype>
  203. </funcsynopsis>
  204. <para>
  205. Copy the peer hardware address to external memory in binary format. Return the address of the next uncopied memory byte. No length argument is required. The peer hardware address is <constant>ETHER_ADDR_LEN</constant> bytes. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent export operations.
  206. </para>
  207. </section>
  208. <section id="oethernet-ExportProtocol">
  209. <title>
  210. oethernet::ExportProtocol
  211. </title>
  212. <funcsynopsis>
  213. <funcprototype>
  214. <funcdef>void * <function>ExportProtocol</function></funcdef>
  215. <paramdef>void * <parameter>memory</parameter></paramdef>
  216. </funcprototype>
  217. </funcsynopsis>
  218. <para>
  219. Copy the Ethernet protocol to external memory in network byte order. Return the address of the next uncopied byte. No length argument is required. The Ethernet protocol is <constant>ETHER_TYPE_LEN</constant> bytes. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent export operations.
  220. </para>
  221. </section>
  222. <section id="oethernet-ImportHeader">
  223. <title>
  224. oethernet::ImportHeader
  225. </title>
  226. <funcsynopsis>
  227. <funcprototype>
  228. <funcdef>void const * <function>ImportHeader</function></funcdef>
  229. <paramdef>void const * <parameter>memory</parameter></paramdef>
  230. </funcprototype>
  231. </funcsynopsis>
  232. <para>
  233. Decode external memory containing an Ethernet header. Return the address of the next undecoded memory byte. No length argument is needed. The number of bytes decoded will be <link linkend='oethernet-HeaderLength'>HeaderLength</link>. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent import operations. External memory is unpacked and stored in the <link linkend='oethernet-PeerAddress'>PeerAddress</link>, <link linkend='oethernet-HostAddress'>HostAddress</link> and <link linkend='oethernet-Protocol'>Protocol</link> properties. External memory is not modified by this operation.
  234. </para>
  235. </section>
  236. <section id="oethernet-ImportHostAddress">
  237. <title>
  238. oethernet::ImportHostAddress
  239. </title>
  240. <funcsynopsis>
  241. <funcprototype>
  242. <funcdef>void const * <function>ImportHostAddress</function></funcdef>
  243. <paramdef>void const * <parameter>memory</parameter></paramdef>
  244. </funcprototype>
  245. </funcsynopsis>
  246. <para>
  247. Copy the host hardware address from external memory in binary format. Return the address of the next uncopied memory byte. No length argument is needed. The host hardware address is <constant>ETHER_ADDR_LEN</constant> bytes. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent import operations.
  248. </para>
  249. </section>
  250. <section id="oethernet-ImportPeerAddress">
  251. <title>
  252. oethernet::ImportPeerAddress
  253. </title>
  254. <funcsynopsis>
  255. <funcprototype>
  256. <funcdef>void const * <function>ImportPeerAddress</function></funcdef>
  257. <paramdef>void const * <parameter>memory</parameter></paramdef>
  258. </funcprototype>
  259. </funcsynopsis>
  260. <para>
  261. Copy the peer hardware address from external memory in binary format. Return the address of the next uncopied memory byte. No length argument is required. The host hardware address is <constant>ETHER_ADDR_LEN</constant> bytes. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent import operations.
  262. </para>
  263. </section>
  264. <section id="oethernet-ImportProtocol">
  265. <title>
  266. oethernet::ImportProtocol
  267. </title>
  268. <funcsynopsis>
  269. <funcprototype>
  270. <funcdef>void const * <function>ImportProtocol</function></funcdef>
  271. <paramdef>void * <parameter>memory</parameter></paramdef>
  272. </funcprototype>
  273. </funcsynopsis>
  274. <para>
  275. Copy the Ethernet protocol from external memory in binary format. Return the address of the next uncopied memory byte. No length argument is required. The Ethernet protocol is <constant>ETHER_TYPE_LEN</constant> bytes. The <varname>memory</varname> address is incremented by that amount and returned as the method value for use in subsequent import operations.
  276. </para>
  277. </section>
  278. <section id="oethernet-Print">
  279. <title>
  280. oethernet::Print
  281. </title>
  282. <funcsynopsis>
  283. <funcprototype>
  284. <funcdef>oethernet &amp; <function>Print</function></funcdef>
  285. <paramdef>void</paramdef>
  286. </funcprototype>
  287. </funcsynopsis>
  288. <para>
  289. Print the Ethernet header on stdout in human-friendly format.
  290. </para>
  291. </section>
  292. <section id="oethernet-SetProtocol">
  293. <title>
  294. oethernet::SetProtocol
  295. </title>
  296. <funcsynopsis>
  297. <funcprototype>
  298. <funcdef>oethernet &amp; <function>SetProtocol</function></funcdef>
  299. <paramdef>uint16_t <parameter>protocol</parameter></paramdef>
  300. </funcprototype>
  301. </funcsynopsis>
  302. <para>
  303. Specify the Ethernet protocol as an integer in host byte order. The protocol is stored internally in network byte order.
  304. </para>
  305. </section>
  306. </section>
  307. <section id="oethernet-constructors">
  308. <title>
  309. Constructors
  310. </title>
  311. <funcsynopsis>
  312. <funcprototype>
  313. <funcdef><function>oethernet</function></funcdef>
  314. <paramdef>void</paramdef>
  315. </funcprototype>
  316. </funcsynopsis>
  317. <para>
  318. Initialize all properties to <constant>0</constant>.
  319. </para>
  320. <funcsynopsis>
  321. <funcprototype>
  322. <funcdef><function>oethernet</function></funcdef>
  323. <paramdef>uint16_t <parameter>protocol</parameter></paramdef>
  324. </funcprototype>
  325. </funcsynopsis>
  326. <para>
  327. Initialize the <link linkend='oethernet-PeerAddress'>PeerAddress</link> and <link linkend='oethernet-HostAddress'>HostAddress</link> properties to <constant>0</constant> and the <link linkend='oethernet-Protocol'>Protocol</link> property to <varname>protocol</varname>.
  328. </para>
  329. </section>
  330. <section id="oethernet-examples">
  331. <title>
  332. Examples
  333. </title>
  334. <para>
  335. There are several ways to use this class. One way is to set class properties and then export them to external memory. The other way is to import class properties from external memory and inspect them.
  336. </para>
  337. <example>
  338. <title>
  339. Encoding an Ethernet Header
  340. </title>
  341. <programlisting>
  342. oethernet <varname>header</varname>;
  343. byte <varname>hostaddress </varname>[] = { 0x00, 0xC7, 0x43, 0xDE, 0xAD, 0x02 }
  344. byte <varname>framebuffer</varname> [<constant>ETHER_MAX_LEN</constant>];
  345. byte <varname>framepointer</varname>;
  346. <varname>header</varname>.<function>ImportHostAddress </function>(oethernet::<constant>BroadcastAddress</constant>);
  347. <varname>header</varname>.<function>ImportPeerAddress </function>(<varname>hostaddress</varname>);
  348. <varname>framepointer</varname> = <varname>header</varname>.<function>ExportHeader </function>(<varname>framebuffer</varname>);
  349. </programlisting>
  350. <para>
  351. This example instantiates an oethernet <varname>header</varname> and allocates a <varname>hostaddress</varname> buffer and an empty Ethernet <varname>framebuffer</varname>. It then invokes the class <link linkend='oethernet-ImportHostAddress'>ImportHostAddress</link> method to copy class constant <link linkend='oethernet-BroadcastAddress'>Broadcast</link> into the header source address property and the <link linkend='oethernet-ImportPeerAddress'>ImportPeerAddress</link> method to copy the <varname>hostaddress</varname> value into the header destination address property. Finally, it invokes the <link linkend='oethernet-ExportHeader'>ExportHeader</link> method to encode the <varname>framebuffer</varname> with a complete Ethernet header. The <varname>framepointer</varname> now points to the next unencode <varname>framebuffer</varname> address which is the start of the Ethernet frame body.
  352. </para>
  353. </example>
  354. <example>
  355. <title>
  356. Decoding an Ethernet Header
  357. </title>
  358. <programlisting>
  359. oethernet <varname>header</varname>;
  360. byte <varname>framebuffer</varname> [<constant>ETHER_MAX_LEN</constant>];
  361. ...
  362. (fill the frame buffer with a valid Ethernet frame)
  363. ...
  364. <varname>header</varname>.<function>Print</function> ();
  365. <varname>header</varname>.<function>ImportHeader</function> (<varname>framebuffer</varname>);
  366. <varname>header</varname>.<function>Print</function>();
  367. </programlisting>
  368. <para>
  369. This example instantiates an oethernet <varname>header</varname> and allocates a <varname>framebuffer</varname>. Assuming that <varname>framebuffer</varname> contains a valid Ethernet frame from somewhere, it invokes the class <link linkend='oethernet-Print'>Print</link> method to print the contents of <varname>header</varname> then invokes the <link linkend='oethernet-ImportHeader'>ImportHeader</link> methoc to load the header portion of <varname>framebuffer</varname> in <varname>framebuffer</varname> then invokes the <link linkend='oethernet-Print'>Print</link> method again. This gives us a <quote>before</quote> and <quote>after</quote> picture of <varname>header</varname> content which illustrates frame decode functionality.
  370. </para>
  371. </example>
  372. </section>
  373. </chapter>