00ef6cb220992f9fefa282327a3bfa92fdd0f90a
[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 "LlcSnapPacket.hh"
31 #include <iomanip>
32 #include <boost/io/ios_state.hpp>
33
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 namespace {
38     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::EthVLanPacket>
39         registerEthVLanPacket(0x8100);
40 }
41
42 ///////////////////////////////////////////////////////////////////////////
43 // senf::EthernetPacketType
44
45 prefix_ void senf::EthernetPacketType::dump(packet p, std::ostream & os)
46 {
47     boost::io::ios_all_saver ias(os);
48     if (p->type_length() <= 1500)
49         os << "Ethernet 802.3";
50     else if (p->type_length() >= 0x600)
51         os << "Ethernet II (DIX)";
52     else
53         os << "Ethernet 802.3 (bad ethertype >1500 and <1536)";
54     os << ": \n"
55        << "  destination : " << p->destination() << "\n"
56        << "  source      : " << p->source() << "\n"
57        << "  type/length : 0x" 
58        << std::hex << std::setw(4) << std::setfill('0') << p->type_length() << "\n";
59 }
60
61 prefix_ senf::PacketInterpreterBase::factory_t senf::EthernetPacketType::nextPacketType(packet p)
62 {
63     if (p->type_length() >= 1536) {
64         PkReg_Entry const * e;
65         e = PacketRegistry<senf::EtherTypes>::lookup( p->type_length(), nothrow );
66         return e ? e->factory() : no_factory();
67     }
68     if (p->type_length() <= 1500)
69         return LlcSnapPacket::factory();
70     return no_factory();
71 }
72
73 prefix_ void senf::EthernetPacketType::finalize(packet p)
74 {
75     optional_registry_key_t k = key(p.next());
76     if (k)
77         p->type_length() << k;
78     else
79         if (p.next().is<LlcSnapPacket>())
80             p->type_length() << p.next().data().size();
81     // Do NOT reset type_length if the type is not known ... doing this will destroy read packets
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
101 ///////////////////////////////cc.e////////////////////////////////////////
102 #undef prefix_
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // fill-column: 100
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // comment-column: 40
113 // End: