Add Nicira extension to OpenFlow for dropping spoofed ARP packets.
[sliver-openvswitch.git] / datapath / flow.h
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 #ifndef FLOW_H
10 #define FLOW_H 1
11
12 #include <linux/kernel.h>
13 #include <linux/spinlock.h>
14 #include <linux/types.h>
15 #include <linux/rcupdate.h>
16 #include <linux/gfp.h>
17 #include <linux/if_ether.h>
18 #include <linux/jiffies.h>
19 #include <linux/time.h>
20
21 #include "openvswitch/datapath-protocol.h"
22 #include "table.h"
23
24 struct sk_buff;
25
26 struct sw_flow_actions {
27         struct rcu_head rcu;
28         unsigned int n_actions;
29         union odp_action actions[];
30 };
31
32 struct sw_flow {
33         struct rcu_head rcu;
34         struct tbl_node tbl_node;
35
36         struct odp_flow_key key;
37         struct sw_flow_actions *sf_acts;
38
39         spinlock_t lock;        /* Lock for values below. */
40         unsigned long used;     /* Last used time (in jiffies). */
41         u64 packet_count;       /* Number of packets matched. */
42         u64 byte_count;         /* Number of bytes matched. */
43         u8 tcp_flags;           /* Union of seen TCP flags. */
44 };
45
46 struct arp_eth_header
47 {
48         __be16      ar_hrd;     /* format of hardware address   */
49         __be16      ar_pro;     /* format of protocol address   */
50         unsigned char   ar_hln; /* length of hardware address   */
51         unsigned char   ar_pln; /* length of protocol address   */
52         __be16      ar_op;      /* ARP opcode (command)     */
53
54         /* Ethernet+IPv4 specific members. */
55         unsigned char       ar_sha[ETH_ALEN];   /* sender hardware address  */
56         unsigned char       ar_sip[4];          /* sender IP address        */
57         unsigned char       ar_tha[ETH_ALEN];   /* target hardware address  */
58         unsigned char       ar_tip[4];          /* target IP address        */
59 } __attribute__((packed));
60
61 extern struct kmem_cache *flow_cache;
62
63 struct sw_flow_actions *flow_actions_alloc(size_t n_actions);
64 void flow_deferred_free(struct sw_flow *);
65 void flow_deferred_free_acts(struct sw_flow_actions *);
66 int flow_extract(struct sk_buff *, u16 in_port, struct odp_flow_key *);
67 void flow_used(struct sw_flow *, struct sk_buff *);
68
69 u32 flow_hash(const struct odp_flow_key *key);
70 int flow_cmp(const struct tbl_node *, void *target);
71 void flow_free_tbl(struct tbl_node *);
72
73 int flow_init(void);
74 void flow_exit(void);
75
76 static inline struct sw_flow *flow_cast(const struct tbl_node *node)
77 {
78         return container_of(node, struct sw_flow, tbl_node);
79 }
80
81 #endif /* flow.h */