X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FDefaultBundle%2FEthernetPacket.cc;h=78fe56c3746ad495b91a1ba6b9f7fd7548db9073;hb=bd9f9d3fd6fbcff0112a7bf48ab9284da9576b11;hp=4a50ee29ccb048775cd5655c9bd5aa24542c130a;hpb=47368f306a577d1e46df69a7f729bd3893cbe5e7;p=senf.git diff --git a/Packets/DefaultBundle/EthernetPacket.cc b/Packets/DefaultBundle/EthernetPacket.cc index 4a50ee2..78fe56c 100644 --- a/Packets/DefaultBundle/EthernetPacket.cc +++ b/Packets/DefaultBundle/EthernetPacket.cc @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Stefan Bund // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -20,117 +20,81 @@ // Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -// Definition of non-inline non-template functions +/** \file + \brief EthernetPacket non-inline non-template implementation */ #include "EthernetPacket.hh" //#include "EthernetPacket.ih" // Custom includes +#include "LlcSnapPacket.hh" #include #include -#include #define prefix_ ///////////////////////////////cc.p//////////////////////////////////////// namespace { - senf::PacketRegistry::RegistrationProxy + senf::PacketRegistry::RegistrationProxy registerEthVLanPacket(0x8100); } /////////////////////////////////////////////////////////////////////////// -// senf::MACAddress - -namespace { - senf::PacketParserBase::byte hexToNibble(char c) - { - if (c<'0') - throw senf::MACAddress::SyntaxException(); - else if (c<='9') - return c-'-'; - else if (c<'A') - throw senf::MACAddress::SyntaxException(); - else if (c<='F') - return c-'A'+10; - else if (c<'a') - throw senf::MACAddress::SyntaxException(); - else if (c<='f') - return c-'a'+10; - else - throw senf::MACAddress::SyntaxException(); - } - - template - senf::PacketParserBase::byte hexToByte(Range const & range) - { - if (boost::size(range) != 2) - throw senf::MACAddress::SyntaxException(); - typename boost::range_const_iterator::type i (boost::begin(range)); - return hexToNibble(i[0])*16+hexToNibble(i[1]); - } -} - -prefix_ senf::MACAddress::MACAddress(std::string addr) -{ - typedef boost::char_separator separator; - typedef boost::tokenizer tokenizer; - separator sep (":"); - tokenizer tok (addr,sep); - tokenizer::iterator i (tok.begin()); - tokenizer::iterator i_end (tok.end()); - iterator j (begin()); - iterator j_end (end()); - for (; i!=i_end && j!=j_end; ++i, ++j) - *j = hexToByte(*i); - if (i!=i_end || j!=j_end) - throw SyntaxException(); -} - -/////////////////////////////////////////////////////////////////////////// // senf::EthernetPacketType -namespace { - void dumpmac(std::ostream & os, senf::MACAddress mac) - { - boost::io::ios_all_saver ias(os); - for (unsigned i = 0; i < 6; ++i) { - if (i > 0) - os << ':'; - os << std::hex << std::setw(2) << std::setfill('0') - << unsigned(mac[i]); - } - } -} - prefix_ void senf::EthernetPacketType::dump(packet p, std::ostream & os) { - if (p->type() <= 1500) + boost::io::ios_all_saver ias(os); + if (p->type_length() <= 1500) os << "Ethernet 802.3"; - else if (p->type() >= 0x600) + else if (p->type_length() >= 0x600) os << "Ethernet II (DIX)"; else os << "Ethernet 802.3 (bad ethertype >1500 and <1536)"; os << ": \n" - << " destination : "; - dumpmac(os,p->destination()); - os << "\n" - << " source : "; - dumpmac(os,p->source()); - os << "\n" - << " ethertype : " << std::hex << std::setw(4) << std::setfill('0') - << unsigned(p->type()) << "\n" << std::dec; + << " destination : " << p->destination() << "\n" + << " source : " << p->source() << "\n" + << " type/length : 0x" + << std::hex << std::setw(4) << std::setfill('0') << p->type_length() << "\n"; +} + +prefix_ senf::PacketInterpreterBase::factory_t senf::EthernetPacketType::nextPacketType(packet p) +{ + if (p->type_length() >= 1536) return lookup(p->type_length()); + else if (p->type_length() <= 1500) return LlcSnapPacket::factory(); + else return no_factory(); +} + +prefix_ void senf::EthernetPacketType::finalize(packet p) +{ + Packet n (p.next(nothrow)); + if (n) { + optional_key_t k (key(n)); + if (k) + p->type_length() << k; + else if (n.is()) + p->type_length() << n.data().size(); + } + // Do NOT reset type_length if the type is not known ... doing this will destroy read packets } prefix_ void senf::EthVLanPacketType::dump(packet p, std::ostream & os) { + boost::io::ios_all_saver ias(os); os << "Ethernet 802.1q (VLAN):\n" << " priority : " << p->priority() << "\n" << " cfi : " << p->cfi() << "\n" << " vlan-ID : " << p->vlanId() << "\n" - << " ethertype : " << std::hex << std::setw(4) << std::setfill('0') - << p->type() << "\n" << std::dec; + << " ethertype : 0x" + << std::hex << std::setw(4) << std::setfill('0') << p->type() << "\n"; +} + +prefix_ void senf::EthVLanPacketType::finalize(packet p) +{ + p->type() << key(p.next(nothrow)); } + ///////////////////////////////cc.e//////////////////////////////////////// #undef prefix_