-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpacket.c
236 lines (195 loc) · 7.18 KB
/
packet.c
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/*
* Copyright 2013 Google Inc.
*
* 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 the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/*
* Author: ncardwell@google.com (Neal Cardwell)
*
* Implementation for a representation of TCP/IP packets.
* Packets are represented in their wire format.
*/
#include "packet.h"
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include "ethernet.h"
#include "gre_packet.h"
#include "ip_packet.h"
#include "mpls_packet.h"
/* Info for all types of header we support. */
struct header_type_info header_types[HEADER_NUM_TYPES] = {
{ "NONE", 0, 0, NULL },
{ "IPV4", IPPROTO_IPIP, ETHERTYPE_IP, ipv4_header_finish },
{ "IPV6", IPPROTO_IPV6, ETHERTYPE_IPV6, ipv6_header_finish },
{ "GRE", IPPROTO_GRE, 0, gre_header_finish },
{ "MPLS", 0, ETHERTYPE_MPLS_UC, mpls_header_finish },
{ "TCP", IPPROTO_TCP, 0, NULL },
{ "UDP", IPPROTO_UDP, 0, NULL },
{ "ICMPV4", IPPROTO_ICMP, 0, NULL },
{ "ICMPV6", IPPROTO_ICMPV6, 0, NULL },
};
struct packet *packet_new(u32 buffer_bytes)
{
struct packet *packet = calloc(1, sizeof(struct packet));
packet->buffer = malloc(buffer_bytes);
packet->buffer_bytes = buffer_bytes;
return packet;
}
void packet_free(struct packet *packet)
{
free(packet->buffer);
memset(packet, 0, sizeof(*packet)); /* paranoia to help catch bugs */
free(packet);
}
int packet_header_count(const struct packet *packet)
{
int i;
for (i = 0; i < ARRAY_SIZE(packet->headers); ++i) {
if (packet->headers[i].type == HEADER_NONE)
break;
}
return i;
}
/* Copy any header info from old_packet to new_packet. */
static void packet_copy_headers(struct packet *new_packet,
struct packet *old_packet,
int bytes_headroom)
{
int i;
u8 *base = new_packet->buffer + bytes_headroom;
for (i = 0; i < ARRAY_SIZE(old_packet->headers); ++i) {
struct header *old_header = &old_packet->headers[i];
struct header *new_header = &new_packet->headers[i];
int offset = 0;
if (old_header->type == HEADER_NONE)
break;
offset = old_header->h.ptr - old_packet->buffer;
new_header->h.ptr = base + offset;
new_header->header_bytes = old_header->header_bytes;
new_header->total_bytes = old_header->total_bytes;
new_header->type = old_header->type;
}
}
struct header *packet_append_header(struct packet *packet,
enum header_t header_type,
int header_bytes)
{
struct header *header = NULL;
int num_headers = packet_header_count(packet);
int packet_bytes;
assert(num_headers <= PACKET_MAX_HEADERS);
if (num_headers == PACKET_MAX_HEADERS)
return NULL;
header = &packet->headers[num_headers];
if (packet->ip_bytes + header_bytes > packet->buffer_bytes)
return NULL;
packet_bytes = packet->l2_header_bytes + packet->ip_bytes;
header->h.ptr = packet->buffer + packet_bytes;
packet->ip_bytes += header_bytes;
header->type = header_type;
header->header_bytes = header_bytes;
header->total_bytes = 0;
return header;
}
/* Map a pointer to a packet offset from an old base to a new base. */
static void *offset_ptr(u8 *old_base, u8* new_base, void *old_ptr)
{
u8 *old = (u8*)old_ptr;
return (old == NULL) ? NULL : (new_base + (old - old_base));
}
/* Make a copy of the given old packet, but in the new copy reserve the
* given number of bytes of headroom at the start of the packet->buffer.
* This empty headroom can later be filled with outer packet headers.
* A slow but simple model.
*/
static struct packet *packet_copy_with_headroom(struct packet *old_packet,
int bytes_headroom)
{
/* Allocate a new packet and copy link layer header and IP datagram. */
const int bytes_used = packet_end(old_packet) - old_packet->buffer;
assert(bytes_used >= 0);
assert(bytes_used <= 128*1024);
struct packet *packet = packet_new(bytes_headroom + bytes_used);
u8 *old_base = old_packet->buffer;
u8 *new_base = packet->buffer + bytes_headroom;
memcpy(new_base, old_base, bytes_used);
packet->ip_bytes = old_packet->ip_bytes;
packet->direction = old_packet->direction;
packet->time_usecs = old_packet->time_usecs;
packet->flags = old_packet->flags;
packet->ecn = old_packet->ecn;
packet_copy_headers(packet, old_packet, bytes_headroom);
/* Set up layer 3 header pointer. */
packet->ipv4 = offset_ptr(old_base, new_base, old_packet->ipv4);
packet->ipv6 = offset_ptr(old_base, new_base, old_packet->ipv6);
packet->tcp = offset_ptr(old_base, new_base, old_packet->tcp);
packet->udp = offset_ptr(old_base, new_base, old_packet->udp);
packet->icmpv4 = offset_ptr(old_base, new_base, old_packet->icmpv4);
packet->icmpv6 = offset_ptr(old_base, new_base, old_packet->icmpv6);
packet->tcp_ts_val = offset_ptr(old_base, new_base,
old_packet->tcp_ts_val);
packet->tcp_ts_ecr = offset_ptr(old_base, new_base,
old_packet->tcp_ts_ecr);
return packet;
}
struct packet *packet_copy(struct packet *old_packet)
{
return packet_copy_with_headroom(old_packet, 0);
}
/* Finalize all the headers once we know what's inside inner layers. */
static void packet_finish_encapsulation_headers(struct packet *packet)
{
int i;
struct header *header = NULL, *next = NULL;
/* Proceed from inner to outer. */
for (i = ARRAY_SIZE(packet->headers) - 1; i >= 0; --i, next = header) {
struct header_type_info *type_info = NULL;
header = &packet->headers[i];
if (header->type == HEADER_NONE)
continue;
type_info = header_type_info(header->type);
if (type_info->finish != NULL)
type_info->finish(packet, header, next);
}
}
struct packet *packet_encapsulate(struct packet *outer, struct packet *inner)
{
struct packet *packet = NULL;
const int outer_headers = packet_header_count(outer);
const int inner_headers = packet_header_count(inner);
assert(outer_headers + inner_headers <= PACKET_MAX_HEADERS);
/* Copy the inner packet bits and header metadata. */
packet = packet_copy_with_headroom(inner, outer->ip_bytes);
/* Copy over the bits in the outer headers. */
memcpy(packet->buffer, outer->buffer, outer->ip_bytes);
/* Move the inner header metadata to make room for the outer. */
memmove(packet->headers + outer_headers, packet->headers + 0,
inner_headers * sizeof(struct header));
/* Copy over the metadata about the outer headers. */
packet_copy_headers(packet, outer, 0);
assert(packet_header_count(packet) == outer_headers + inner_headers);
packet_finish_encapsulation_headers(packet);
packet->ip_bytes = outer->ip_bytes + inner->ip_bytes;
return packet;
}
struct header_type_info *header_type_info(enum header_t header_type)
{
assert(header_type > HEADER_NONE);
assert(header_type < HEADER_NUM_TYPES);
assert(ARRAY_SIZE(header_types) == HEADER_NUM_TYPES);
return &header_types[header_type];
}