cbaf6e353e8d1d73083cb6275075014aa79fdccd
[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_SENF_Packets_DefaultBundle_EthernetPacket_
27 #define HH_SENF_Packets_DefaultBundle_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         typedef PacketTypeMixin<EthernetPacketType, EtherTypes> mixin;
113         typedef ConcretePacket<EthernetPacketType> packet;
114         typedef EthernetPacketParser parser;
115
116         using mixin::nextPacketRange;
117         using mixin::initSize;
118         using mixin::init;
119
120         static factory_t nextPacketType(packet p);
121         static void dump(packet p, std::ostream & os);
122         static void finalize(packet p);
123     };
124
125     /** \brief Ethernet packet typedef */
126     typedef ConcretePacket<EthernetPacketType> EthernetPacket;
127
128     /** \brief Parse an ethernet VLAN tag
129         
130         Parser interpreting the ethernet VLAN tag. Fields are
131
132         \see EthVLanPacketType
133      */
134     struct EthVLanPacketParser : public PacketParserBase
135     {
136 #       include SENF_FIXED_PARSER()
137
138         SENF_PARSER_BITFIELD( priority,  3, unsigned );
139         SENF_PARSER_BITFIELD( cfi,       1, bool     );
140         SENF_PARSER_BITFIELD( vlanId,   12, unsigned );
141
142         SENF_PARSER_FIELD( type, UInt16Parser );
143
144         SENF_PARSER_FINALIZE(EthVLanPacketParser);
145     };
146
147     /** \brief Ethernet VLAN tag
148
149         \par Packet type (typedef):
150             \ref EthVLanPacket
151
152         \par Fields:
153             \ref EthVLanPacketParser
154
155         \par Associated registries:
156             \ref EtherTypes
157
158         \par Finalize action:
159             Set \a type from type of next packet if found in \ref EtherTypes
160
161         \ingroup protocolbundle_default
162      */
163     struct EthVLanPacketType
164         : public PacketTypeBase, 
165           public PacketTypeMixin<EthVLanPacketType, EtherTypes>
166     {
167         typedef PacketTypeMixin<EthVLanPacketType, EtherTypes> mixin;
168         typedef ConcretePacket<EthVLanPacketType> packet;
169         typedef EthVLanPacketParser parser;
170
171         using mixin::nextPacketRange;
172         using mixin::nextPacketType;
173         using mixin::initSize;
174         using mixin::init;
175
176         /** \todo Add LLC/SNAP support -> only use the registry
177             for type() values >=1536, otherwise expect an LLC header */
178         static key_t nextPacketKey(packet p) 
179             { return p->type(); }
180
181         static void dump(packet p, std::ostream & os);
182         static void finalize(packet p);
183     };
184
185     /** \brief Ethernet VLAN tag typedef */
186     typedef ConcretePacket<EthVLanPacketType> EthVLanPacket;
187
188 }
189
190 ///////////////////////////////hh.e////////////////////////////////////////
191 #endif
192 #ifndef SENF_PACKETS_DECL_ONLY
193 //#include "EthernetPacket.cci"
194 //#include "EthernetPacket.ct"
195 //#include "EthernetPacket.cti"
196 #endif
197
198 \f
199 // Local Variables:
200 // mode: c++
201 // fill-column: 100
202 // c-file-style: "senf"
203 // indent-tabs-mode: nil
204 // ispell-local-dictionary: "american"
205 // compile-command: "scons -u test"
206 // comment-column: 40
207 // End: