NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Packets / DefaultBundle / EthernetPacket.hh
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
6 //     Thorsten Horstmann <tho@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief EthernetPacket public header */
25
26 #ifndef HH_EthernetPacket_
27 #define HH_EthernetPacket_ 1
28
29 // Custom includes
30 #include <algorithm>
31 #include "../../Socket/Protocols/Raw/MACAddress.hh"
32 #include "../../Packets/Packets.hh"
33
34 //#include "EthernetPacket.mpp"
35 ///////////////////////////////hh.p////////////////////////////////////////
36
37 namespace senf {
38
39     /** \brief Parse an Ethernet MAC address 
40
41         The ethernet MAC is returned by value as a 6-byte sequence
42
43         \see MACAddress \n
44             EthernetPacket
45      */
46     struct MACAddressParser : public PacketParserBase
47     {
48         MACAddressParser(data_iterator i, state_type s) : PacketParserBase(i,s,fixed_bytes) {}
49        
50         ///////////////////////////////////////////////////////////////////////////
51
52         typedef MACAddress value_type;
53         static const size_type fixed_bytes = 6u;
54
55         value_type value() const { return MACAddress::from_data(i()); }
56         void value(value_type const & v) { std::copy(v.begin(), v.end(), i()); }
57         operator value_type () { return value(); }
58         byte & operator[](size_type index) { return *boost::next(i(),index);  }
59
60         MACAddressParser const & operator= (value_type const & other) { value(other); return *this; }
61     };
62     
63     /** \brief Parse an Ethernet packet
64
65         Parser implementing an ethernet header.
66
67         \see EthernetPacketType
68      */
69     struct EthernetPacketParser : public PacketParserBase
70     {
71 #       include SENF_FIXED_PARSER()
72
73         SENF_PARSER_FIELD( destination, MACAddressParser    );
74         SENF_PARSER_FIELD( source,      MACAddressParser    );
75         SENF_PARSER_FIELD( type_length, UInt16Parser );
76
77         SENF_PARSER_FINALIZE(EthernetPacketParser);
78     };
79
80     /** \brief EtherType registry
81
82         This registry registers packet types with their EtherType number.
83         
84         \see <a href="http://www.iana.org/assignments/ethernet-numbers">Ethernet numbers</a> \n
85             \ref PacketRegistry
86      */
87     struct EtherTypes {
88         // See 
89         typedef boost::uint16_t key_t;
90     };
91
92     /** \brief Ethernet packet
93
94         \par Packet type (typedef):
95             \ref EthernetPacket
96
97         \par Fields:
98             \ref EthernetPacketParser
99
100         \par Associated registries:
101             \ref EtherTypes
102
103         \par Finalize action:
104             Set \a type from type of next packet if found in \ref EtherTypes
105
106         \ingroup protocolbundle_default
107      */
108     struct EthernetPacketType
109         : public PacketTypeBase,
110           public PacketTypeMixin<EthernetPacketType, EtherTypes>
111     {
112 #ifndef DOXYGEN
113         typedef PacketTypeMixin<EthernetPacketType, EtherTypes> mixin;
114         typedef ConcretePacket<EthernetPacketType> packet;
115         typedef EthernetPacketParser parser;
116 #endif
117         using mixin::nextPacketRange;
118         using mixin::initSize;
119         using mixin::init;
120
121         static factory_t nextPacketType(packet p);
122         static void dump(packet p, std::ostream & os);
123         static void finalize(packet p);
124     };
125
126     /** \brief Ethernet packet typedef */
127     typedef ConcretePacket<EthernetPacketType> EthernetPacket;
128
129     /** \brief Parse an ethernet VLAN tag
130         
131         Parser interpreting the ethernet VLAN tag. Fields are
132
133         \see EthVLanPacketType
134      */
135     struct EthVLanPacketParser : public PacketParserBase
136     {
137 #       include SENF_FIXED_PARSER()
138
139         SENF_PARSER_BITFIELD( priority,  3, unsigned );
140         SENF_PARSER_BITFIELD( cfi,       1, bool     );
141         SENF_PARSER_BITFIELD( vlanId,   12, unsigned );
142
143         SENF_PARSER_FIELD( type, UInt16Parser );
144
145         SENF_PARSER_FINALIZE(EthVLanPacketParser);
146     };
147
148     /** \brief Ethernet VLAN tag
149
150         \par Packet type (typedef):
151             \ref EthVLanPacket
152
153         \par Fields:
154             \ref EthVLanPacketParser
155
156         \par Associated registries:
157             \ref EtherTypes
158
159         \par Finalize action:
160             Set \a type from type of next packet if found in \ref EtherTypes
161
162         \ingroup protocolbundle_default
163      */
164     struct EthVLanPacketType
165         : public PacketTypeBase, 
166           public PacketTypeMixin<EthVLanPacketType, EtherTypes>
167     {
168 #ifndef DOXYGEN
169         typedef PacketTypeMixin<EthVLanPacketType, EtherTypes> mixin;
170         typedef ConcretePacket<EthVLanPacketType> packet;
171         typedef EthVLanPacketParser parser;
172 #endif
173         using mixin::nextPacketRange;
174         using mixin::nextPacketType;
175         using mixin::initSize;
176         using mixin::init;
177
178         /** \todo Add LLC/SNAP support -> only use the registry
179             for type() values >=1536, otherwise expect an LLC header */
180         static registry_key_t nextPacketKey(packet p) 
181             { return p->type(); }
182
183         static void dump(packet p, std::ostream & os);
184         static void finalize(packet p);
185     };
186
187     /** \brief Ethernet VLAN tag typedef */
188     typedef ConcretePacket<EthVLanPacketType> EthVLanPacket;
189
190 }
191
192 ///////////////////////////////hh.e////////////////////////////////////////
193 #endif
194 #ifndef SENF_PACKETS_DECL_ONLY
195 //#include "EthernetPacket.cci"
196 //#include "EthernetPacket.ct"
197 //#include "EthernetPacket.cti"
198 #endif
199
200 \f
201 // Local Variables:
202 // mode: c++
203 // fill-column: 100
204 // c-file-style: "senf"
205 // indent-tabs-mode: nil
206 // ispell-local-dictionary: "american"
207 // compile-command: "scons -u test"
208 // comment-column: 40
209 // End: