1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
/*
* Copyright (c) 2017, Matias Fontanini
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <tins/utils/radiotap_writer.h>
#ifdef TINS_HAVE_DOT11
#include <cmath>
#include <tins/utils/radiotap_parser.h>
#include <tins/exceptions.h>
using std::vector;
namespace Tins {
namespace Utils {
uint32_t calculate_padding(uint32_t alignment, uint32_t offset) {
uint32_t extra = offset % alignment;
return extra == 0 ? 0 : alignment - extra;
}
uint32_t get_bit(uint32_t value) {
return round(log2(value));
}
RadioTapWriter::RadioTapWriter(vector<uint8_t>& buffer)
: buffer_(buffer) {
}
void RadioTapWriter::write_option(const RadioTap::option& option) {
const uint32_t bit = get_bit(option.option());
if (bit >= RadioTapParser::MAX_RADIOTAP_FIELD) {
throw malformed_option();
}
const bool is_empty = buffer_.empty();
RadioTapParser parser(buffer_);
const uint8_t* candidate_ptr = parser.current_option_ptr();
// Loop while we find lower fields and we're still in the first namespace
while (parser.has_fields()) {
if (parser.current_field() > option.option()) {
break;
}
else if (parser.current_field() == option.option()) {
memcpy(const_cast<uint8_t*>(parser.current_option_ptr()),
option.data_ptr(), option.data_size());
return;
}
else {
const uint32_t bit = get_bit(parser.current_field());
const RadioTapParser::FieldMetadata& meta = RadioTapParser::RADIOTAP_METADATA[bit];
candidate_ptr = parser.current_option_ptr() + meta.size;
}
parser.advance_field();
}
size_t offset = is_empty ? 0 : candidate_ptr - &*buffer_.begin();
const RadioTapParser::FieldMetadata& meta = RadioTapParser::RADIOTAP_METADATA[bit];
vector<uint8_t> paddings = build_padding_vector(candidate_ptr, parser);
// Calculate the offset based on the RadioTap header (add 4 bytes)
const uint32_t padding = calculate_padding(meta.alignment, offset + sizeof(uint32_t));
// Now actually insert our new field (padding first)
buffer_.insert(buffer_.begin() + offset, padding, 0);
buffer_.insert(buffer_.begin() + offset + padding, option.data_ptr(),
option.data_ptr() + option.data_size());
update_paddings(paddings, offset + padding + option.data_size());
// Finally, update the flags
uint32_t flags = 0;
if (is_empty) {
buffer_.insert(buffer_.begin(), sizeof(flags), 0);
}
else {
memcpy(&flags, &*buffer_.begin(), sizeof(flags));
}
flags |= Endian::host_to_le<uint32_t>(option.option());
memcpy(&*buffer_.begin(), &flags, sizeof(flags));
}
// Builds a vector that will contain the padding required for every position.
// e.g. if a 2 byte field is found, then in those 2 indexes we'll have the values [2, 1].
// 2 to indicate that the first field requires 16 bit padding and the second one is fine
// with 1 byte padding as long as the first one is as well.
//
// Padding bytes are filled with the value 0 to indicate a special index that can be
// compacted/removed if less/more padding is required
vector<uint8_t> RadioTapWriter::build_padding_vector(const uint8_t* last_ptr,
RadioTapParser& parser) {
vector<uint8_t> paddings;
while (parser.has_fields()) {
const uint32_t flag = static_cast<uint32_t>(parser.current_field());
const uint32_t bit = get_bit(flag);
const RadioTapParser::FieldMetadata& meta = RadioTapParser::RADIOTAP_METADATA[bit];
const uint8_t* current_ptr = parser.current_option_ptr();
// These are just paddings
paddings.insert(paddings.end(), current_ptr - last_ptr, 0);
// Say this byte has to be padded to whatever the alignment is for this field
paddings.push_back(meta.alignment);
// The rest of the bytes for this field don't really need alignment
for (size_t i = 0; i < meta.size - 1; ++i) {
paddings.push_back(1);
}
last_ptr = current_ptr + meta.size;
parser.advance_field();
}
return paddings;
}
// Iterates the padding vector and extends/compacts the paddings as needed
void RadioTapWriter::update_paddings(const vector<uint8_t>& paddings, uint32_t offset) {
size_t i = 0;
while (i != paddings.size()) {
// Skip everything that doesn't need padding
while (i != paddings.size() && paddings[i] == 1) {
++i;
}
const size_t start = i;
// Find the next field
while (i != paddings.size() && paddings[i] == 0) {
++i;
}
if (i == paddings.size()) {
break;
}
offset += start;
const uint8_t needed_padding = calculate_padding(paddings[i], offset + sizeof(uint32_t));
const size_t existing_padding = i - start;
// Remove padding if there's too much
if (existing_padding > needed_padding) {
buffer_.erase(buffer_.begin() + offset,
buffer_.begin() + offset + (existing_padding - needed_padding));
offset -= existing_padding - needed_padding;
}
// Add padding if there's too little
else if (existing_padding < needed_padding) {
buffer_.insert(buffer_.begin() + offset, needed_padding - existing_padding, 0);
offset += needed_padding - existing_padding;
}
offset += i - start;
++i;
}
}
} // Utils
} // Tins
#endif // TINS_HAVE_DOT11
|