-
Notifications
You must be signed in to change notification settings - Fork 0
/
packet_parser.h
53 lines (47 loc) · 1.81 KB
/
packet_parser.h
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
/*
* 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: [email protected] (Neal Cardwell)
*
* Interface for a module to parse TCP/IP packets.
*/
#ifndef __PACKET_PARSER_H__
#define __PACKET_PARSER_H__
#include "packet.h"
/* What layer of headers is at the head of the packet? */
enum packet_layer_t {
PACKET_LAYER_3_IP = 0, /* no layer 2 headers */
PACKET_LAYER_2_ETHERNET, /* layer 2 is Ethernet */
};
enum packet_parse_result_t {
PACKET_OK, /* no errors detected */
PACKET_BAD, /* illegal header */
PACKET_UNKNOWN_L4, /* not TCP or UDP */
};
/* Given an input packet of length 'in_bytes' stored in the buffer
* whose location is given by the packet's 'buffer' field and whose
* full size is given by the 'buffer_bytes' field, parses the packets
* and fills in packet fields 'ip_bytes', 'ip', and 'tcp'. On success,
* returns PACKET_OK; on error, returns a enum packet_parse_result_t error
* code and fills in *error with a human-readable, malloc-allocated
* error message.
*/
int parse_packet(struct packet *packet, int in_bytes,
enum packet_layer_t layer, char **error);
#endif /* __PACKET_PARSER_H__ */