5695f4b532e9855c377e3747a5a88ee9fecfeef4
[senf.git] / Packets / 80211Bundle / WLANPacket.cc
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 //     Christian Niephaus <christian.niephaus@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 // Definition of non-inline non-template functions
24
25 // Custom includes
26 #include "WLANPacket.hh"
27 #include "../../Packets/Packets.hh"
28 #include "../DefaultBundle/LlcSnapPacket.hh"
29 #include <boost/io/ios_state.hpp>
30
31 #define prefix_
32
33 namespace
34 {
35
36 }
37
38 prefix_ senf::MACAddressParser senf::WLANPacketParser_DataFrameParser::da()
39     const
40 {
41     switch (dsBits())
42     {
43     case 0 :
44     case 2 :
45         return addr1();
46         break;
47     case 1 :
48     case 3 :
49         return addr3();
50         break;
51     }
52     //just to avoid compiler warning
53     //TODO
54     return addr1();
55 }
56
57 prefix_ senf::MACAddressParser senf::WLANPacketParser_DataFrameParser::sa()
58     const
59 {
60     switch (dsBits())
61     {
62     case 0 :
63     case 1 :
64         return addr2();
65         break;
66     case 2 :
67         return addr3();
68         break;
69 //TODO wds frames
70 //    case 3:
71 //        return addr4();
72     }
73     //just to avoid compiler warning
74     //TODO
75     return addr1();
76 }
77
78 prefix_ senf::MACAddressParser senf::WLANPacketParser_DataFrameParser::bssid()
79     const
80 {
81     switch (dsBits())
82     {
83     case 0 :
84         return addr3();
85         break;
86     case 1 :
87         return addr1();
88         break;
89     case 2:
90         return addr2();
91     }
92     //just to avoid compiler warning
93     //TODO
94     return addr1();
95 }
96
97 //shift some bits to read the 12bit sequence number bit field in LSB byte order
98 prefix_ boost::uint16_t senf::WLANPacketParser_MgtFrameParser::sequenceNumber()
99     const
100 {
101     boost::uint16_t seqN = 0;
102     seqN |= seqNumber_2();
103     seqN <<= 4;
104     seqN |= seqNumber_1();
105     return seqN;
106 }
107
108 //shift some bits to read the 12bit sequence number bit field in LSB byte order
109 prefix_ boost::uint16_t senf::WLANPacketParser_DataFrameParser::sequenceNumber()
110     const
111 {
112     boost::uint16_t seqN = 0;
113     seqN |= seqNumber_2();
114     seqN <<= 4;
115     seqN |= seqNumber_1();
116     return seqN;
117 }
118
119 prefix_ void senf::WLANPacketType::dump(packet p, std::ostream &os)
120 {
121     boost::io::ios_all_saver ias(os);
122     os  << "802.11 MAC Frame:\n"
123         << "  Type              : " << unsigned (p->type()) << "\n"
124         << "  Subtype           : " << unsigned (p->subtype()) << "\n"
125         << "  Retransmission    : " << unsigned (p->retry()) << "\n"
126         << "  Duration          : " << unsigned (p->duration()) << "\n";
127
128     if (p->has_mgtFrame())
129     {
130         os << "  BSSID              : " << p->mgtFrame().bssid() << "\n";
131         os << "  Destination Addr.  : " << p->mgtFrame().da() << "\n";
132         os << "  Source Addr.  : " << p->mgtFrame().sa() << "\n";
133     }
134
135 };
136
137
138
139
140 #undef prefix_