-
Notifications
You must be signed in to change notification settings - Fork 192
/
packet.h
85 lines (71 loc) · 3.43 KB
/
packet.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
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
/* Copyright (c) 2011, TrafficLab, Ericsson Research, Hungary
* 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.
* * Neither the name of the Ericsson Research nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* 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 HOLDER 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.
*
*
* Author: Zoltán Lajos Kis <[email protected]>
*/
#ifndef PACKET_H
#define PACKET_H 1
#include <stdbool.h>
#include "action_set.h"
#include "datapath.h"
#include "packet_handle_std.h"
#include "ofpbuf.h"
#include "oflib/ofl-structs.h"
#include "packets.h"
/****************************************************************************
* Represents a packet received on the datapath, and its associated processing
* state.
****************************************************************************/
struct packet {
struct datapath *dp;
struct ofpbuf *buffer; /* buffer containing the packet */
uint32_t in_port;
struct action_set *action_set; /* action set associated with the packet */
bool packet_out; /* true if the packet arrived in a packet out msg */
uint32_t out_group; /* OFPG_ANY = no out group */
uint32_t out_port; /* OFPP_ANY = no out port */
uint16_t out_port_max_len; /* max length to send, if out_port is OFPP_CONTROLLER */
uint32_t out_queue;
uint8_t table_id; /* table in which is processed */
uint32_t buffer_id; /* if packet is stored in buffer, buffer_id;
otherwise 0xffffffff */
struct packet_handle_std *handle_std; /* handler for standard match structure */
};
/* Creates a packet. */
struct packet *
packet_create(struct datapath *dp, uint32_t in_port, struct ofpbuf *buf, bool packet_out);
/* Converts the packet to a string representation. */
char *
packet_to_string(struct packet *pkt);
/* Destroys a packet along with all its associated structures */
void
packet_destroy(struct packet *pkt);
/* Clones a packet deeply, i.e. all associated structures are also cloned. */
struct packet *
packet_clone(struct packet *pkt);
#endif /* PACKET_H */