2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
3 * Distributed under the terms of the GNU GPL version 2.
5 * Significant portions of this file may be copied from parts of the Linux
6 * kernel, by Linus Torvalds and others.
12 #include <linux/kernel.h>
13 #include <linux/netlink.h>
14 #include <linux/spinlock.h>
15 #include <linux/types.h>
16 #include <linux/rcupdate.h>
17 #include <linux/if_ether.h>
18 #include <linux/jiffies.h>
19 #include <linux/time.h>
21 #include "openvswitch/datapath-protocol.h"
26 struct sw_flow_actions {
29 struct nlattr actions[];
33 __be64 tun_id; /* Encapsulating tunnel ID. */
36 __be32 ipv4_src; /* IPv4 source address. */
37 __be32 ipv4_dst; /* IPv4 destination address. */
40 __be32 ipv6_src[4]; /* IPv6 source address. */
41 __be32 ipv6_dst[4]; /* IPv6 source address. */
44 __be32 nd_target[4]; /* IPv6 ND target address. */
45 u16 in_port; /* Input switch port. */
46 __be16 dl_tci; /* 0 if no VLAN, VLAN_TAG_PRESENT set otherwise. */
47 __be16 dl_type; /* Ethernet frame type. */
48 __be16 tp_src; /* TCP/UDP source port. */
49 __be16 tp_dst; /* TCP/UDP destination port. */
50 u8 dl_src[ETH_ALEN]; /* Ethernet source address. */
51 u8 dl_dst[ETH_ALEN]; /* Ethernet destination address. */
52 u8 nw_proto; /* IP protocol or lower 8 bits of ARP opcode. */
53 u8 nw_tos; /* IP ToS (DSCP field, 6 bits). */
54 u8 arp_sha[ETH_ALEN]; /* ARP/ND source hardware address. */
55 u8 arp_tha[ETH_ALEN]; /* ARP/ND target hardware address. */
60 struct tbl_node tbl_node;
62 struct sw_flow_key key;
63 struct sw_flow_actions __rcu *sf_acts;
68 spinlock_t lock; /* Lock for values below. */
69 unsigned long used; /* Last used time (in jiffies). */
70 u64 packet_count; /* Number of packets matched. */
71 u64 byte_count; /* Number of bytes matched. */
72 u8 tcp_flags; /* Union of seen TCP flags. */
77 __be16 ar_hrd; /* format of hardware address */
78 __be16 ar_pro; /* format of protocol address */
79 unsigned char ar_hln; /* length of hardware address */
80 unsigned char ar_pln; /* length of protocol address */
81 __be16 ar_op; /* ARP opcode (command) */
83 /* Ethernet+IPv4 specific members. */
84 unsigned char ar_sha[ETH_ALEN]; /* sender hardware address */
85 unsigned char ar_sip[4]; /* sender IP address */
86 unsigned char ar_tha[ETH_ALEN]; /* target hardware address */
87 unsigned char ar_tip[4]; /* target IP address */
93 struct sw_flow *flow_alloc(void);
94 void flow_deferred_free(struct sw_flow *);
95 void flow_free_tbl(struct tbl_node *);
97 struct sw_flow_actions *flow_actions_alloc(const struct nlattr *);
98 void flow_deferred_free_acts(struct sw_flow_actions *);
100 void flow_hold(struct sw_flow *);
101 void flow_put(struct sw_flow *);
103 int flow_extract(struct sk_buff *, u16 in_port, struct sw_flow_key *, bool *is_frag);
104 void flow_used(struct sw_flow *, struct sk_buff *);
105 u64 flow_used_time(unsigned long flow_jiffies);
107 u32 flow_hash(const struct sw_flow_key *);
108 int flow_cmp(const struct tbl_node *, void *target);
110 /* Upper bound on the length of a nlattr-formatted flow key. The longest
111 * nlattr-formatted flow key would be:
113 * struct pad nl hdr total
114 * ------ --- ------ -----
115 * ODP_KEY_ATTR_TUN_ID 8 -- 4 12
116 * ODP_KEY_ATTR_IN_PORT 4 -- 4 8
117 * ODP_KEY_ATTR_ETHERNET 12 -- 4 16
118 * ODP_KEY_ATTR_8021Q 4 -- 4 8
119 * ODP_KEY_ATTR_ETHERTYPE 2 2 4 8
120 * ODP_KEY_ATTR_IPV6 34 2 4 40
121 * ODP_KEY_ATTR_ICMPV6 2 2 4 8
122 * ODP_KEY_ATTR_ND 28 -- 4 32
123 * -------------------------------------------------
126 #define FLOW_BUFSIZE 132
128 int flow_to_nlattrs(const struct sw_flow_key *, struct sk_buff *);
129 int flow_from_nlattrs(struct sw_flow_key *swkey, const struct nlattr *);
131 static inline struct sw_flow *flow_cast(const struct tbl_node *node)
133 return container_of(node, struct sw_flow, tbl_node);