8c41023bfb3121ef7e1f4fc28681068ca255b903
[senf.git] / senf / Packets / DefaultBundle / ICMPv6Packet.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Philipp Batroff <pug@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 ICMPv6Packet non-inline non-template implementation */
25
26 #include "ICMPv6Packet.hh"
27 //#include "ICMPv6Packet.ih"
28
29 // Custom includes
30 #include <boost/io/ios_state.hpp>
31 #include <senf/Packets/DefaultBundle/IPv6Packet.hh>
32 #include <senf/Utils/IpChecksum.hh>
33 #include <iomanip>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 namespace {
39     SENF_PACKET_REGISTRY_REGISTER( senf::IpTypes, 58, senf::ICMPv6Packet);
40 }
41
42 prefix_ boost::uint16_t senf::ICMPv6PacketParser::calcChecksum() 
43     const
44 {
45
46     senf::IpChecksum summer;
47     senf::IPv6Packet ipv6 (packet().rfind<senf::IPv6Packet>(senf::nothrow));
48
49     if (! ipv6)
50         return 0u;
51     
52     summer.feed( ipv6->source().i(), 
53                     ipv6->source().i() + senf::IPv6Packet::Parser::source_t::fixed_bytes );
54     // The destination used here must be the *final* destination ...
55     summer.feed( ipv6->destination().i(), ipv6->destination().i() + senf::IPv6PacketParser::destination_t::fixed_bytes );
56
57     // This is a simplification. The value is really 32bit to support UDP Jumbograms
58     // (RFC2147). However, skipping an even number of 0 bytes does not change the checksum
59     summer.feed( i() + ipv6->length(), i() + ipv6->length() + 2 );
60     // --> http://www.iana.org/assignments/protocol-numbers 
61     // need to insert the correct protocol number here, NOT static 17!!
62     summer.feed( 0u );
63     summer.feed( 58u );
64     // since header are 16 / even 32bit aligned we don't have to care for padding. since IpChecksum 
65     // cares for padding at the final summing we don't have to care is the payload is 16nbit-aligned, too.
66     summer.feed( i(), i()+checksum_offset );
67     summer.feed( i()+checksum_offset+2, data().end() );
68
69     boost::uint16_t rv (summer.sum());
70     return rv ? rv : 0xffffu;
71 }
72
73 prefix_ void senf::ICMPv6PacketType::dump(packet p, std::ostream &os)
74 {
75     boost::io::ios_all_saver ias(os);
76     os << "ICMPv6 protocol:\n"
77        <<     "  type                    : " << unsigned(p->type()) <<"\n"
78        <<     "  code                    : " << unsigned(p->code()) <<"\n"
79        <<     "  checksum                : 0x" 
80        << std::hex << std::setw(4) << unsigned(p->checksum()) << "\n";
81 }
82
83 ///////////////////////////////cc.e////////////////////////////////////////
84 #undef prefix_
85
86 \f
87 // Local Variables:
88 // mode: c++
89 // fill-column: 100
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // comment-column: 40
95 // End: