added tests for LLC/SNAP
[senf.git] / Packets / DefaultBundle / EthernetPacket.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 non-inline non-template implementation */
25
26 #include "EthernetPacket.hh"
27 //#include "EthernetPacket.ih"
28
29 // Custom includes
30 #include <iomanip>
31 #include <boost/io/ios_state.hpp>
32
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 namespace {
37     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::EthVLanPacket>
38         registerEthVLanPacket(0x8100);
39 }
40
41 ///////////////////////////////////////////////////////////////////////////
42 // senf::EthernetPacketType
43
44 prefix_ void senf::EthernetPacketType::dump(packet p, std::ostream & os)
45 {
46     boost::io::ios_all_saver ias(os);
47     if (p->type_length() <= 1500)
48         os << "Ethernet 802.3";
49     else if (p->type_length() >= 0x600)
50         os << "Ethernet II (DIX)";
51     else
52         os << "Ethernet 802.3 (bad ethertype >1500 and <1536)";
53     os << ": \n"
54        << "  destination : " << p->destination() << "\n"
55        << "  source      : " << p->source() << "\n"
56        << "  type/length : 0x" 
57        << std::hex << std::setw(4) << std::setfill('0') << p->type_length() << "\n";
58 }
59
60 prefix_ senf::PacketInterpreterBase::factory_t senf::EthernetPacketType::nextPacketType(packet p)
61 {
62     if (p->type_length() >= 1536) {
63         PkReg_Entry const * e;
64         e = PacketRegistry<senf::EtherTypes>::lookup( p->type_length(), nothrow );
65         return e ? e->factory() : no_factory();
66     }
67     if (p->type_length() <= 1500)
68         return EthLlcSnapPacket::factory();
69     return no_factory();
70 }
71
72 prefix_ void senf::EthernetPacketType::finalize(packet p)
73 {
74     optional_registry_key_t k = key(p.next());
75     if (k)
76         p->type_length() << k;
77     else
78         if (p.next().is<EthLlcSnapPacket>())
79             p->type_length() << p.next().data().size();
80         else
81             p->type_length() << 0;
82 }
83
84 prefix_ void senf::EthVLanPacketType::dump(packet p, std::ostream & os)
85 {
86     boost::io::ios_all_saver ias(os);
87     os << "Ethernet 802.1q (VLAN):\n"
88        << "  priority      : " << p->priority() << "\n"
89        << "  cfi           : " << p->cfi() << "\n"
90        << "  vlan-ID       : " << p->vlanId() << "\n"
91        << "  ethertype     : 0x" 
92        << std::hex << std::setw(4) << std::setfill('0') << p->type() << "\n";
93 }
94
95 prefix_ void senf::EthVLanPacketType::finalize(packet p)
96 {
97     p->type() << key(p.next());
98 }
99
100 prefix_ void senf::EthLlcSnapPacketType::dump(packet p, std::ostream & os)
101 {
102     boost::io::ios_all_saver ias(os);
103     os << "Ethernet LLC/SNAP\n"
104        << std::hex << std::setfill('0')
105        << "  LLC\n"
106        << "    DSAP: 0x" << unsigned(p->dsap()) << "\n"
107        << "    SSAP: 0x" << unsigned(p->ssap()) << "\n"
108        << "    controlId: 0x" << unsigned(p->ctrl()) << "\n"
109        << "  SNAP\n"       
110        << "    ProtocolId: 0x" << std::setw(6) << unsigned(p->protocolId()) << "\n"
111        << "    type      : 0x" << std::setw(4) << unsigned(p->type()) << "\n";
112 }
113
114 prefix_ void senf::EthLlcSnapPacketType::finalize(packet p)
115 {
116     p->type() << key(p.next());
117 }
118
119
120 ///////////////////////////////cc.e////////////////////////////////////////
121 #undef prefix_
122
123 \f
124 // Local Variables:
125 // mode: c++
126 // fill-column: 100
127 // c-file-style: "senf"
128 // indent-tabs-mode: nil
129 // ispell-local-dictionary: "american"
130 // compile-command: "scons -u test"
131 // comment-column: 40
132 // End: