xref: /linux/net/openvswitch/flow.c (revision 4f647e0a3c37b8d5086214128614a136064110c3)
1ccb1352eSJesse Gross /*
203f0d916SAndy Zhou  * Copyright (c) 2007-2013 Nicira, Inc.
3ccb1352eSJesse Gross  *
4ccb1352eSJesse Gross  * This program is free software; you can redistribute it and/or
5ccb1352eSJesse Gross  * modify it under the terms of version 2 of the GNU General Public
6ccb1352eSJesse Gross  * License as published by the Free Software Foundation.
7ccb1352eSJesse Gross  *
8ccb1352eSJesse Gross  * This program is distributed in the hope that it will be useful, but
9ccb1352eSJesse Gross  * WITHOUT ANY WARRANTY; without even the implied warranty of
10ccb1352eSJesse Gross  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11ccb1352eSJesse Gross  * General Public License for more details.
12ccb1352eSJesse Gross  *
13ccb1352eSJesse Gross  * You should have received a copy of the GNU General Public License
14ccb1352eSJesse Gross  * along with this program; if not, write to the Free Software
15ccb1352eSJesse Gross  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16ccb1352eSJesse Gross  * 02110-1301, USA
17ccb1352eSJesse Gross  */
18ccb1352eSJesse Gross 
19ccb1352eSJesse Gross #include "flow.h"
20ccb1352eSJesse Gross #include "datapath.h"
21ccb1352eSJesse Gross #include <linux/uaccess.h>
22ccb1352eSJesse Gross #include <linux/netdevice.h>
23ccb1352eSJesse Gross #include <linux/etherdevice.h>
24ccb1352eSJesse Gross #include <linux/if_ether.h>
25ccb1352eSJesse Gross #include <linux/if_vlan.h>
26ccb1352eSJesse Gross #include <net/llc_pdu.h>
27ccb1352eSJesse Gross #include <linux/kernel.h>
28ccb1352eSJesse Gross #include <linux/jhash.h>
29ccb1352eSJesse Gross #include <linux/jiffies.h>
30ccb1352eSJesse Gross #include <linux/llc.h>
31ccb1352eSJesse Gross #include <linux/module.h>
32ccb1352eSJesse Gross #include <linux/in.h>
33ccb1352eSJesse Gross #include <linux/rcupdate.h>
34ccb1352eSJesse Gross #include <linux/if_arp.h>
35ccb1352eSJesse Gross #include <linux/ip.h>
36ccb1352eSJesse Gross #include <linux/ipv6.h>
37a175a723SJoe Stringer #include <linux/sctp.h>
38e298e505SPravin B Shelar #include <linux/smp.h>
39ccb1352eSJesse Gross #include <linux/tcp.h>
40ccb1352eSJesse Gross #include <linux/udp.h>
41ccb1352eSJesse Gross #include <linux/icmp.h>
42ccb1352eSJesse Gross #include <linux/icmpv6.h>
43ccb1352eSJesse Gross #include <linux/rculist.h>
44ccb1352eSJesse Gross #include <net/ip.h>
457d5437c7SPravin B Shelar #include <net/ip_tunnels.h>
46ccb1352eSJesse Gross #include <net/ipv6.h>
47ccb1352eSJesse Gross #include <net/ndisc.h>
48ccb1352eSJesse Gross 
49e6445719SPravin B Shelar u64 ovs_flow_used_time(unsigned long flow_jiffies)
5003f0d916SAndy Zhou {
51e6445719SPravin B Shelar 	struct timespec cur_ts;
52e6445719SPravin B Shelar 	u64 cur_ms, idle_ms;
5303f0d916SAndy Zhou 
54e6445719SPravin B Shelar 	ktime_get_ts(&cur_ts);
55e6445719SPravin B Shelar 	idle_ms = jiffies_to_msecs(jiffies - flow_jiffies);
56e6445719SPravin B Shelar 	cur_ms = (u64)cur_ts.tv_sec * MSEC_PER_SEC +
57e6445719SPravin B Shelar 		 cur_ts.tv_nsec / NSEC_PER_MSEC;
5803f0d916SAndy Zhou 
59e6445719SPravin B Shelar 	return cur_ms - idle_ms;
6003f0d916SAndy Zhou }
6103f0d916SAndy Zhou 
62df23e9f6SJarno Rajahalme #define TCP_FLAGS_BE16(tp) (*(__be16 *)&tcp_flag_word(tp) & htons(0x0FFF))
6303f0d916SAndy Zhou 
64e298e505SPravin B Shelar void ovs_flow_stats_update(struct sw_flow *flow, struct sk_buff *skb)
655828cd9aSAndy Zhou {
66e298e505SPravin B Shelar 	struct flow_stats *stats;
67df23e9f6SJarno Rajahalme 	__be16 tcp_flags = 0;
68e6445719SPravin B Shelar 
69e298e505SPravin B Shelar 	if (!flow->stats.is_percpu)
70e298e505SPravin B Shelar 		stats = flow->stats.stat;
71e298e505SPravin B Shelar 	else
72e298e505SPravin B Shelar 		stats = this_cpu_ptr(flow->stats.cpu_stats);
73e298e505SPravin B Shelar 
74e6445719SPravin B Shelar 	if ((flow->key.eth.type == htons(ETH_P_IP) ||
75e6445719SPravin B Shelar 	     flow->key.eth.type == htons(ETH_P_IPV6)) &&
7604382a33SJarno Rajahalme 	    flow->key.ip.frag != OVS_FRAG_TYPE_LATER &&
77e6445719SPravin B Shelar 	    flow->key.ip.proto == IPPROTO_TCP &&
78e6445719SPravin B Shelar 	    likely(skb->len >= skb_transport_offset(skb) + sizeof(struct tcphdr))) {
79df23e9f6SJarno Rajahalme 		tcp_flags = TCP_FLAGS_BE16(tcp_hdr(skb));
805828cd9aSAndy Zhou 	}
815828cd9aSAndy Zhou 
82e298e505SPravin B Shelar 	spin_lock(&stats->lock);
83e298e505SPravin B Shelar 	stats->used = jiffies;
84e298e505SPravin B Shelar 	stats->packet_count++;
85e298e505SPravin B Shelar 	stats->byte_count += skb->len;
86e298e505SPravin B Shelar 	stats->tcp_flags |= tcp_flags;
87e298e505SPravin B Shelar 	spin_unlock(&stats->lock);
88e298e505SPravin B Shelar }
89e298e505SPravin B Shelar 
90e298e505SPravin B Shelar static void stats_read(struct flow_stats *stats,
91e298e505SPravin B Shelar 		       struct ovs_flow_stats *ovs_stats,
92e298e505SPravin B Shelar 		       unsigned long *used, __be16 *tcp_flags)
93e298e505SPravin B Shelar {
94e298e505SPravin B Shelar 	spin_lock(&stats->lock);
95f9b8c4c8SBen Pfaff 	if (!*used || time_after(stats->used, *used))
96e298e505SPravin B Shelar 		*used = stats->used;
97e298e505SPravin B Shelar 	*tcp_flags |= stats->tcp_flags;
98e298e505SPravin B Shelar 	ovs_stats->n_packets += stats->packet_count;
99e298e505SPravin B Shelar 	ovs_stats->n_bytes += stats->byte_count;
100e298e505SPravin B Shelar 	spin_unlock(&stats->lock);
101e298e505SPravin B Shelar }
102e298e505SPravin B Shelar 
103e298e505SPravin B Shelar void ovs_flow_stats_get(struct sw_flow *flow, struct ovs_flow_stats *ovs_stats,
104e298e505SPravin B Shelar 			unsigned long *used, __be16 *tcp_flags)
105e298e505SPravin B Shelar {
106*4f647e0aSFlavio Leitner 	int cpu;
107e298e505SPravin B Shelar 
108e298e505SPravin B Shelar 	*used = 0;
109e298e505SPravin B Shelar 	*tcp_flags = 0;
110e298e505SPravin B Shelar 	memset(ovs_stats, 0, sizeof(*ovs_stats));
111e298e505SPravin B Shelar 
112*4f647e0aSFlavio Leitner 	local_bh_disable();
113e298e505SPravin B Shelar 	if (!flow->stats.is_percpu) {
114e298e505SPravin B Shelar 		stats_read(flow->stats.stat, ovs_stats, used, tcp_flags);
115e298e505SPravin B Shelar 	} else {
116e298e505SPravin B Shelar 		for_each_possible_cpu(cpu) {
117e298e505SPravin B Shelar 			struct flow_stats *stats;
118e298e505SPravin B Shelar 
119e298e505SPravin B Shelar 			stats = per_cpu_ptr(flow->stats.cpu_stats, cpu);
120e298e505SPravin B Shelar 			stats_read(stats, ovs_stats, used, tcp_flags);
121*4f647e0aSFlavio Leitner 		}
122*4f647e0aSFlavio Leitner 	}
123e298e505SPravin B Shelar 	local_bh_enable();
124e298e505SPravin B Shelar }
125e298e505SPravin B Shelar 
126e298e505SPravin B Shelar static void stats_reset(struct flow_stats *stats)
127e298e505SPravin B Shelar {
128e298e505SPravin B Shelar 	spin_lock(&stats->lock);
129e298e505SPravin B Shelar 	stats->used = 0;
130e298e505SPravin B Shelar 	stats->packet_count = 0;
131e298e505SPravin B Shelar 	stats->byte_count = 0;
132e298e505SPravin B Shelar 	stats->tcp_flags = 0;
133e298e505SPravin B Shelar 	spin_unlock(&stats->lock);
134e298e505SPravin B Shelar }
135e298e505SPravin B Shelar 
136e298e505SPravin B Shelar void ovs_flow_stats_clear(struct sw_flow *flow)
137e298e505SPravin B Shelar {
138*4f647e0aSFlavio Leitner 	int cpu;
139e298e505SPravin B Shelar 
140*4f647e0aSFlavio Leitner 	local_bh_disable();
141e298e505SPravin B Shelar 	if (!flow->stats.is_percpu) {
142e298e505SPravin B Shelar 		stats_reset(flow->stats.stat);
143e298e505SPravin B Shelar 	} else {
144e298e505SPravin B Shelar 		for_each_possible_cpu(cpu) {
145e298e505SPravin B Shelar 			stats_reset(per_cpu_ptr(flow->stats.cpu_stats, cpu));
146*4f647e0aSFlavio Leitner 		}
147*4f647e0aSFlavio Leitner 	}
148e298e505SPravin B Shelar 	local_bh_enable();
149e298e505SPravin B Shelar }
15003f0d916SAndy Zhou 
151ccb1352eSJesse Gross static int check_header(struct sk_buff *skb, int len)
152ccb1352eSJesse Gross {
153ccb1352eSJesse Gross 	if (unlikely(skb->len < len))
154ccb1352eSJesse Gross 		return -EINVAL;
155ccb1352eSJesse Gross 	if (unlikely(!pskb_may_pull(skb, len)))
156ccb1352eSJesse Gross 		return -ENOMEM;
157ccb1352eSJesse Gross 	return 0;
158ccb1352eSJesse Gross }
159ccb1352eSJesse Gross 
160ccb1352eSJesse Gross static bool arphdr_ok(struct sk_buff *skb)
161ccb1352eSJesse Gross {
162ccb1352eSJesse Gross 	return pskb_may_pull(skb, skb_network_offset(skb) +
163ccb1352eSJesse Gross 				  sizeof(struct arp_eth_header));
164ccb1352eSJesse Gross }
165ccb1352eSJesse Gross 
166ccb1352eSJesse Gross static int check_iphdr(struct sk_buff *skb)
167ccb1352eSJesse Gross {
168ccb1352eSJesse Gross 	unsigned int nh_ofs = skb_network_offset(skb);
169ccb1352eSJesse Gross 	unsigned int ip_len;
170ccb1352eSJesse Gross 	int err;
171ccb1352eSJesse Gross 
172ccb1352eSJesse Gross 	err = check_header(skb, nh_ofs + sizeof(struct iphdr));
173ccb1352eSJesse Gross 	if (unlikely(err))
174ccb1352eSJesse Gross 		return err;
175ccb1352eSJesse Gross 
176ccb1352eSJesse Gross 	ip_len = ip_hdrlen(skb);
177ccb1352eSJesse Gross 	if (unlikely(ip_len < sizeof(struct iphdr) ||
178ccb1352eSJesse Gross 		     skb->len < nh_ofs + ip_len))
179ccb1352eSJesse Gross 		return -EINVAL;
180ccb1352eSJesse Gross 
181ccb1352eSJesse Gross 	skb_set_transport_header(skb, nh_ofs + ip_len);
182ccb1352eSJesse Gross 	return 0;
183ccb1352eSJesse Gross }
184ccb1352eSJesse Gross 
185ccb1352eSJesse Gross static bool tcphdr_ok(struct sk_buff *skb)
186ccb1352eSJesse Gross {
187ccb1352eSJesse Gross 	int th_ofs = skb_transport_offset(skb);
188ccb1352eSJesse Gross 	int tcp_len;
189ccb1352eSJesse Gross 
190ccb1352eSJesse Gross 	if (unlikely(!pskb_may_pull(skb, th_ofs + sizeof(struct tcphdr))))
191ccb1352eSJesse Gross 		return false;
192ccb1352eSJesse Gross 
193ccb1352eSJesse Gross 	tcp_len = tcp_hdrlen(skb);
194ccb1352eSJesse Gross 	if (unlikely(tcp_len < sizeof(struct tcphdr) ||
195ccb1352eSJesse Gross 		     skb->len < th_ofs + tcp_len))
196ccb1352eSJesse Gross 		return false;
197ccb1352eSJesse Gross 
198ccb1352eSJesse Gross 	return true;
199ccb1352eSJesse Gross }
200ccb1352eSJesse Gross 
201ccb1352eSJesse Gross static bool udphdr_ok(struct sk_buff *skb)
202ccb1352eSJesse Gross {
203ccb1352eSJesse Gross 	return pskb_may_pull(skb, skb_transport_offset(skb) +
204ccb1352eSJesse Gross 				  sizeof(struct udphdr));
205ccb1352eSJesse Gross }
206ccb1352eSJesse Gross 
207a175a723SJoe Stringer static bool sctphdr_ok(struct sk_buff *skb)
208a175a723SJoe Stringer {
209a175a723SJoe Stringer 	return pskb_may_pull(skb, skb_transport_offset(skb) +
210a175a723SJoe Stringer 				  sizeof(struct sctphdr));
211a175a723SJoe Stringer }
212a175a723SJoe Stringer 
213ccb1352eSJesse Gross static bool icmphdr_ok(struct sk_buff *skb)
214ccb1352eSJesse Gross {
215ccb1352eSJesse Gross 	return pskb_may_pull(skb, skb_transport_offset(skb) +
216ccb1352eSJesse Gross 				  sizeof(struct icmphdr));
217ccb1352eSJesse Gross }
218ccb1352eSJesse Gross 
21903f0d916SAndy Zhou static int parse_ipv6hdr(struct sk_buff *skb, struct sw_flow_key *key)
220ccb1352eSJesse Gross {
221ccb1352eSJesse Gross 	unsigned int nh_ofs = skb_network_offset(skb);
222ccb1352eSJesse Gross 	unsigned int nh_len;
223ccb1352eSJesse Gross 	int payload_ofs;
224ccb1352eSJesse Gross 	struct ipv6hdr *nh;
225ccb1352eSJesse Gross 	uint8_t nexthdr;
226ccb1352eSJesse Gross 	__be16 frag_off;
227ccb1352eSJesse Gross 	int err;
228ccb1352eSJesse Gross 
229ccb1352eSJesse Gross 	err = check_header(skb, nh_ofs + sizeof(*nh));
230ccb1352eSJesse Gross 	if (unlikely(err))
231ccb1352eSJesse Gross 		return err;
232ccb1352eSJesse Gross 
233ccb1352eSJesse Gross 	nh = ipv6_hdr(skb);
234ccb1352eSJesse Gross 	nexthdr = nh->nexthdr;
235ccb1352eSJesse Gross 	payload_ofs = (u8 *)(nh + 1) - skb->data;
236ccb1352eSJesse Gross 
237ccb1352eSJesse Gross 	key->ip.proto = NEXTHDR_NONE;
238ccb1352eSJesse Gross 	key->ip.tos = ipv6_get_dsfield(nh);
239ccb1352eSJesse Gross 	key->ip.ttl = nh->hop_limit;
240ccb1352eSJesse Gross 	key->ipv6.label = *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL);
241ccb1352eSJesse Gross 	key->ipv6.addr.src = nh->saddr;
242ccb1352eSJesse Gross 	key->ipv6.addr.dst = nh->daddr;
243ccb1352eSJesse Gross 
244ccb1352eSJesse Gross 	payload_ofs = ipv6_skip_exthdr(skb, payload_ofs, &nexthdr, &frag_off);
245ccb1352eSJesse Gross 	if (unlikely(payload_ofs < 0))
246ccb1352eSJesse Gross 		return -EINVAL;
247ccb1352eSJesse Gross 
248ccb1352eSJesse Gross 	if (frag_off) {
249ccb1352eSJesse Gross 		if (frag_off & htons(~0x7))
250ccb1352eSJesse Gross 			key->ip.frag = OVS_FRAG_TYPE_LATER;
251ccb1352eSJesse Gross 		else
252ccb1352eSJesse Gross 			key->ip.frag = OVS_FRAG_TYPE_FIRST;
253ccb1352eSJesse Gross 	}
254ccb1352eSJesse Gross 
255ccb1352eSJesse Gross 	nh_len = payload_ofs - nh_ofs;
256ccb1352eSJesse Gross 	skb_set_transport_header(skb, nh_ofs + nh_len);
257ccb1352eSJesse Gross 	key->ip.proto = nexthdr;
258ccb1352eSJesse Gross 	return nh_len;
259ccb1352eSJesse Gross }
260ccb1352eSJesse Gross 
261ccb1352eSJesse Gross static bool icmp6hdr_ok(struct sk_buff *skb)
262ccb1352eSJesse Gross {
263ccb1352eSJesse Gross 	return pskb_may_pull(skb, skb_transport_offset(skb) +
264ccb1352eSJesse Gross 				  sizeof(struct icmp6hdr));
265ccb1352eSJesse Gross }
266ccb1352eSJesse Gross 
267ccb1352eSJesse Gross static int parse_vlan(struct sk_buff *skb, struct sw_flow_key *key)
268ccb1352eSJesse Gross {
269ccb1352eSJesse Gross 	struct qtag_prefix {
270ccb1352eSJesse Gross 		__be16 eth_type; /* ETH_P_8021Q */
271ccb1352eSJesse Gross 		__be16 tci;
272ccb1352eSJesse Gross 	};
273ccb1352eSJesse Gross 	struct qtag_prefix *qp;
274ccb1352eSJesse Gross 
275ccb1352eSJesse Gross 	if (unlikely(skb->len < sizeof(struct qtag_prefix) + sizeof(__be16)))
276ccb1352eSJesse Gross 		return 0;
277ccb1352eSJesse Gross 
278ccb1352eSJesse Gross 	if (unlikely(!pskb_may_pull(skb, sizeof(struct qtag_prefix) +
279ccb1352eSJesse Gross 					 sizeof(__be16))))
280ccb1352eSJesse Gross 		return -ENOMEM;
281ccb1352eSJesse Gross 
282ccb1352eSJesse Gross 	qp = (struct qtag_prefix *) skb->data;
283ccb1352eSJesse Gross 	key->eth.tci = qp->tci | htons(VLAN_TAG_PRESENT);
284ccb1352eSJesse Gross 	__skb_pull(skb, sizeof(struct qtag_prefix));
285ccb1352eSJesse Gross 
286ccb1352eSJesse Gross 	return 0;
287ccb1352eSJesse Gross }
288ccb1352eSJesse Gross 
289ccb1352eSJesse Gross static __be16 parse_ethertype(struct sk_buff *skb)
290ccb1352eSJesse Gross {
291ccb1352eSJesse Gross 	struct llc_snap_hdr {
292ccb1352eSJesse Gross 		u8  dsap;  /* Always 0xAA */
293ccb1352eSJesse Gross 		u8  ssap;  /* Always 0xAA */
294ccb1352eSJesse Gross 		u8  ctrl;
295ccb1352eSJesse Gross 		u8  oui[3];
296ccb1352eSJesse Gross 		__be16 ethertype;
297ccb1352eSJesse Gross 	};
298ccb1352eSJesse Gross 	struct llc_snap_hdr *llc;
299ccb1352eSJesse Gross 	__be16 proto;
300ccb1352eSJesse Gross 
301ccb1352eSJesse Gross 	proto = *(__be16 *) skb->data;
302ccb1352eSJesse Gross 	__skb_pull(skb, sizeof(__be16));
303ccb1352eSJesse Gross 
304e5c5d22eSSimon Horman 	if (ntohs(proto) >= ETH_P_802_3_MIN)
305ccb1352eSJesse Gross 		return proto;
306ccb1352eSJesse Gross 
307ccb1352eSJesse Gross 	if (skb->len < sizeof(struct llc_snap_hdr))
308ccb1352eSJesse Gross 		return htons(ETH_P_802_2);
309ccb1352eSJesse Gross 
310ccb1352eSJesse Gross 	if (unlikely(!pskb_may_pull(skb, sizeof(struct llc_snap_hdr))))
311ccb1352eSJesse Gross 		return htons(0);
312ccb1352eSJesse Gross 
313ccb1352eSJesse Gross 	llc = (struct llc_snap_hdr *) skb->data;
314ccb1352eSJesse Gross 	if (llc->dsap != LLC_SAP_SNAP ||
315ccb1352eSJesse Gross 	    llc->ssap != LLC_SAP_SNAP ||
316ccb1352eSJesse Gross 	    (llc->oui[0] | llc->oui[1] | llc->oui[2]) != 0)
317ccb1352eSJesse Gross 		return htons(ETH_P_802_2);
318ccb1352eSJesse Gross 
319ccb1352eSJesse Gross 	__skb_pull(skb, sizeof(struct llc_snap_hdr));
32017b682a0SRich Lane 
321e5c5d22eSSimon Horman 	if (ntohs(llc->ethertype) >= ETH_P_802_3_MIN)
322ccb1352eSJesse Gross 		return llc->ethertype;
32317b682a0SRich Lane 
32417b682a0SRich Lane 	return htons(ETH_P_802_2);
325ccb1352eSJesse Gross }
326ccb1352eSJesse Gross 
327ccb1352eSJesse Gross static int parse_icmpv6(struct sk_buff *skb, struct sw_flow_key *key,
32803f0d916SAndy Zhou 			int nh_len)
329ccb1352eSJesse Gross {
330ccb1352eSJesse Gross 	struct icmp6hdr *icmp = icmp6_hdr(skb);
331ccb1352eSJesse Gross 
332ccb1352eSJesse Gross 	/* The ICMPv6 type and code fields use the 16-bit transport port
333ccb1352eSJesse Gross 	 * fields, so we need to store them in 16-bit network byte order.
334ccb1352eSJesse Gross 	 */
335ccb1352eSJesse Gross 	key->ipv6.tp.src = htons(icmp->icmp6_type);
336ccb1352eSJesse Gross 	key->ipv6.tp.dst = htons(icmp->icmp6_code);
337ccb1352eSJesse Gross 
338ccb1352eSJesse Gross 	if (icmp->icmp6_code == 0 &&
339ccb1352eSJesse Gross 	    (icmp->icmp6_type == NDISC_NEIGHBOUR_SOLICITATION ||
340ccb1352eSJesse Gross 	     icmp->icmp6_type == NDISC_NEIGHBOUR_ADVERTISEMENT)) {
341ccb1352eSJesse Gross 		int icmp_len = skb->len - skb_transport_offset(skb);
342ccb1352eSJesse Gross 		struct nd_msg *nd;
343ccb1352eSJesse Gross 		int offset;
344ccb1352eSJesse Gross 
345ccb1352eSJesse Gross 		/* In order to process neighbor discovery options, we need the
346ccb1352eSJesse Gross 		 * entire packet.
347ccb1352eSJesse Gross 		 */
348ccb1352eSJesse Gross 		if (unlikely(icmp_len < sizeof(*nd)))
34903f0d916SAndy Zhou 			return 0;
35003f0d916SAndy Zhou 
35103f0d916SAndy Zhou 		if (unlikely(skb_linearize(skb)))
35203f0d916SAndy Zhou 			return -ENOMEM;
353ccb1352eSJesse Gross 
354ccb1352eSJesse Gross 		nd = (struct nd_msg *)skb_transport_header(skb);
355ccb1352eSJesse Gross 		key->ipv6.nd.target = nd->target;
356ccb1352eSJesse Gross 
357ccb1352eSJesse Gross 		icmp_len -= sizeof(*nd);
358ccb1352eSJesse Gross 		offset = 0;
359ccb1352eSJesse Gross 		while (icmp_len >= 8) {
360ccb1352eSJesse Gross 			struct nd_opt_hdr *nd_opt =
361ccb1352eSJesse Gross 				 (struct nd_opt_hdr *)(nd->opt + offset);
362ccb1352eSJesse Gross 			int opt_len = nd_opt->nd_opt_len * 8;
363ccb1352eSJesse Gross 
364ccb1352eSJesse Gross 			if (unlikely(!opt_len || opt_len > icmp_len))
36503f0d916SAndy Zhou 				return 0;
366ccb1352eSJesse Gross 
367ccb1352eSJesse Gross 			/* Store the link layer address if the appropriate
368ccb1352eSJesse Gross 			 * option is provided.  It is considered an error if
369ccb1352eSJesse Gross 			 * the same link layer option is specified twice.
370ccb1352eSJesse Gross 			 */
371ccb1352eSJesse Gross 			if (nd_opt->nd_opt_type == ND_OPT_SOURCE_LL_ADDR
372ccb1352eSJesse Gross 			    && opt_len == 8) {
373ccb1352eSJesse Gross 				if (unlikely(!is_zero_ether_addr(key->ipv6.nd.sll)))
374ccb1352eSJesse Gross 					goto invalid;
375ccb1352eSJesse Gross 				memcpy(key->ipv6.nd.sll,
376ccb1352eSJesse Gross 				    &nd->opt[offset+sizeof(*nd_opt)], ETH_ALEN);
377ccb1352eSJesse Gross 			} else if (nd_opt->nd_opt_type == ND_OPT_TARGET_LL_ADDR
378ccb1352eSJesse Gross 				   && opt_len == 8) {
379ccb1352eSJesse Gross 				if (unlikely(!is_zero_ether_addr(key->ipv6.nd.tll)))
380ccb1352eSJesse Gross 					goto invalid;
381ccb1352eSJesse Gross 				memcpy(key->ipv6.nd.tll,
382ccb1352eSJesse Gross 				    &nd->opt[offset+sizeof(*nd_opt)], ETH_ALEN);
383ccb1352eSJesse Gross 			}
384ccb1352eSJesse Gross 
385ccb1352eSJesse Gross 			icmp_len -= opt_len;
386ccb1352eSJesse Gross 			offset += opt_len;
387ccb1352eSJesse Gross 		}
388ccb1352eSJesse Gross 	}
389ccb1352eSJesse Gross 
39003f0d916SAndy Zhou 	return 0;
391ccb1352eSJesse Gross 
392ccb1352eSJesse Gross invalid:
393ccb1352eSJesse Gross 	memset(&key->ipv6.nd.target, 0, sizeof(key->ipv6.nd.target));
394ccb1352eSJesse Gross 	memset(key->ipv6.nd.sll, 0, sizeof(key->ipv6.nd.sll));
395ccb1352eSJesse Gross 	memset(key->ipv6.nd.tll, 0, sizeof(key->ipv6.nd.tll));
396ccb1352eSJesse Gross 
39703f0d916SAndy Zhou 	return 0;
398ccb1352eSJesse Gross }
399ccb1352eSJesse Gross 
400ccb1352eSJesse Gross /**
401ccb1352eSJesse Gross  * ovs_flow_extract - extracts a flow key from an Ethernet frame.
402ccb1352eSJesse Gross  * @skb: sk_buff that contains the frame, with skb->data pointing to the
403ccb1352eSJesse Gross  * Ethernet header
404ccb1352eSJesse Gross  * @in_port: port number on which @skb was received.
405ccb1352eSJesse Gross  * @key: output flow key
406ccb1352eSJesse Gross  *
407ccb1352eSJesse Gross  * The caller must ensure that skb->len >= ETH_HLEN.
408ccb1352eSJesse Gross  *
409ccb1352eSJesse Gross  * Returns 0 if successful, otherwise a negative errno value.
410ccb1352eSJesse Gross  *
411ccb1352eSJesse Gross  * Initializes @skb header pointers as follows:
412ccb1352eSJesse Gross  *
413ccb1352eSJesse Gross  *    - skb->mac_header: the Ethernet header.
414ccb1352eSJesse Gross  *
415ccb1352eSJesse Gross  *    - skb->network_header: just past the Ethernet header, or just past the
416ccb1352eSJesse Gross  *      VLAN header, to the first byte of the Ethernet payload.
417ccb1352eSJesse Gross  *
41834d94f21SLorand Jakab  *    - skb->transport_header: If key->eth.type is ETH_P_IP or ETH_P_IPV6
419ccb1352eSJesse Gross  *      on output, then just past the IP header, if one is present and
420ccb1352eSJesse Gross  *      of a correct length, otherwise the same as skb->network_header.
42134d94f21SLorand Jakab  *      For other key->eth.type values it is left untouched.
422ccb1352eSJesse Gross  */
42303f0d916SAndy Zhou int ovs_flow_extract(struct sk_buff *skb, u16 in_port, struct sw_flow_key *key)
424ccb1352eSJesse Gross {
42503f0d916SAndy Zhou 	int error;
426ccb1352eSJesse Gross 	struct ethhdr *eth;
427ccb1352eSJesse Gross 
428ccb1352eSJesse Gross 	memset(key, 0, sizeof(*key));
429ccb1352eSJesse Gross 
430ccb1352eSJesse Gross 	key->phy.priority = skb->priority;
4317d5437c7SPravin B Shelar 	if (OVS_CB(skb)->tun_key)
4327d5437c7SPravin B Shelar 		memcpy(&key->tun_key, OVS_CB(skb)->tun_key, sizeof(key->tun_key));
433ccb1352eSJesse Gross 	key->phy.in_port = in_port;
43439c7caebSAnsis Atteka 	key->phy.skb_mark = skb->mark;
435ccb1352eSJesse Gross 
436ccb1352eSJesse Gross 	skb_reset_mac_header(skb);
437ccb1352eSJesse Gross 
438ccb1352eSJesse Gross 	/* Link layer.  We are guaranteed to have at least the 14 byte Ethernet
439ccb1352eSJesse Gross 	 * header in the linear data area.
440ccb1352eSJesse Gross 	 */
441ccb1352eSJesse Gross 	eth = eth_hdr(skb);
442ccb1352eSJesse Gross 	memcpy(key->eth.src, eth->h_source, ETH_ALEN);
443ccb1352eSJesse Gross 	memcpy(key->eth.dst, eth->h_dest, ETH_ALEN);
444ccb1352eSJesse Gross 
445ccb1352eSJesse Gross 	__skb_pull(skb, 2 * ETH_ALEN);
446b34df5e8SPravin B Shelar 	/* We are going to push all headers that we pull, so no need to
447b34df5e8SPravin B Shelar 	 * update skb->csum here.
448b34df5e8SPravin B Shelar 	 */
449ccb1352eSJesse Gross 
450ccb1352eSJesse Gross 	if (vlan_tx_tag_present(skb))
451ccb1352eSJesse Gross 		key->eth.tci = htons(skb->vlan_tci);
452ccb1352eSJesse Gross 	else if (eth->h_proto == htons(ETH_P_8021Q))
453ccb1352eSJesse Gross 		if (unlikely(parse_vlan(skb, key)))
454ccb1352eSJesse Gross 			return -ENOMEM;
455ccb1352eSJesse Gross 
456ccb1352eSJesse Gross 	key->eth.type = parse_ethertype(skb);
457ccb1352eSJesse Gross 	if (unlikely(key->eth.type == htons(0)))
458ccb1352eSJesse Gross 		return -ENOMEM;
459ccb1352eSJesse Gross 
460ccb1352eSJesse Gross 	skb_reset_network_header(skb);
461ccb1352eSJesse Gross 	__skb_push(skb, skb->data - skb_mac_header(skb));
462ccb1352eSJesse Gross 
463ccb1352eSJesse Gross 	/* Network layer. */
464ccb1352eSJesse Gross 	if (key->eth.type == htons(ETH_P_IP)) {
465ccb1352eSJesse Gross 		struct iphdr *nh;
466ccb1352eSJesse Gross 		__be16 offset;
467ccb1352eSJesse Gross 
468ccb1352eSJesse Gross 		error = check_iphdr(skb);
469ccb1352eSJesse Gross 		if (unlikely(error)) {
470ccb1352eSJesse Gross 			if (error == -EINVAL) {
471ccb1352eSJesse Gross 				skb->transport_header = skb->network_header;
472ccb1352eSJesse Gross 				error = 0;
473ccb1352eSJesse Gross 			}
47403f0d916SAndy Zhou 			return error;
475ccb1352eSJesse Gross 		}
476ccb1352eSJesse Gross 
477ccb1352eSJesse Gross 		nh = ip_hdr(skb);
478ccb1352eSJesse Gross 		key->ipv4.addr.src = nh->saddr;
479ccb1352eSJesse Gross 		key->ipv4.addr.dst = nh->daddr;
480ccb1352eSJesse Gross 
481ccb1352eSJesse Gross 		key->ip.proto = nh->protocol;
482ccb1352eSJesse Gross 		key->ip.tos = nh->tos;
483ccb1352eSJesse Gross 		key->ip.ttl = nh->ttl;
484ccb1352eSJesse Gross 
485ccb1352eSJesse Gross 		offset = nh->frag_off & htons(IP_OFFSET);
486ccb1352eSJesse Gross 		if (offset) {
487ccb1352eSJesse Gross 			key->ip.frag = OVS_FRAG_TYPE_LATER;
48803f0d916SAndy Zhou 			return 0;
489ccb1352eSJesse Gross 		}
490ccb1352eSJesse Gross 		if (nh->frag_off & htons(IP_MF) ||
491ccb1352eSJesse Gross 			 skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
492ccb1352eSJesse Gross 			key->ip.frag = OVS_FRAG_TYPE_FIRST;
493ccb1352eSJesse Gross 
494ccb1352eSJesse Gross 		/* Transport layer. */
495ccb1352eSJesse Gross 		if (key->ip.proto == IPPROTO_TCP) {
496ccb1352eSJesse Gross 			if (tcphdr_ok(skb)) {
497ccb1352eSJesse Gross 				struct tcphdr *tcp = tcp_hdr(skb);
498ccb1352eSJesse Gross 				key->ipv4.tp.src = tcp->source;
499ccb1352eSJesse Gross 				key->ipv4.tp.dst = tcp->dest;
5005eb26b15SJarno Rajahalme 				key->ipv4.tp.flags = TCP_FLAGS_BE16(tcp);
501ccb1352eSJesse Gross 			}
502ccb1352eSJesse Gross 		} else if (key->ip.proto == IPPROTO_UDP) {
503ccb1352eSJesse Gross 			if (udphdr_ok(skb)) {
504ccb1352eSJesse Gross 				struct udphdr *udp = udp_hdr(skb);
505ccb1352eSJesse Gross 				key->ipv4.tp.src = udp->source;
506ccb1352eSJesse Gross 				key->ipv4.tp.dst = udp->dest;
507ccb1352eSJesse Gross 			}
508a175a723SJoe Stringer 		} else if (key->ip.proto == IPPROTO_SCTP) {
509a175a723SJoe Stringer 			if (sctphdr_ok(skb)) {
510a175a723SJoe Stringer 				struct sctphdr *sctp = sctp_hdr(skb);
511a175a723SJoe Stringer 				key->ipv4.tp.src = sctp->source;
512a175a723SJoe Stringer 				key->ipv4.tp.dst = sctp->dest;
513a175a723SJoe Stringer 			}
514ccb1352eSJesse Gross 		} else if (key->ip.proto == IPPROTO_ICMP) {
515ccb1352eSJesse Gross 			if (icmphdr_ok(skb)) {
516ccb1352eSJesse Gross 				struct icmphdr *icmp = icmp_hdr(skb);
517ccb1352eSJesse Gross 				/* The ICMP type and code fields use the 16-bit
518ccb1352eSJesse Gross 				 * transport port fields, so we need to store
519ccb1352eSJesse Gross 				 * them in 16-bit network byte order. */
520ccb1352eSJesse Gross 				key->ipv4.tp.src = htons(icmp->type);
521ccb1352eSJesse Gross 				key->ipv4.tp.dst = htons(icmp->code);
522ccb1352eSJesse Gross 			}
523ccb1352eSJesse Gross 		}
524ccb1352eSJesse Gross 
525c0618533SMehak Mahajan 	} else if ((key->eth.type == htons(ETH_P_ARP) ||
526c0618533SMehak Mahajan 		   key->eth.type == htons(ETH_P_RARP)) && arphdr_ok(skb)) {
527ccb1352eSJesse Gross 		struct arp_eth_header *arp;
528ccb1352eSJesse Gross 
529ccb1352eSJesse Gross 		arp = (struct arp_eth_header *)skb_network_header(skb);
530ccb1352eSJesse Gross 
531ccb1352eSJesse Gross 		if (arp->ar_hrd == htons(ARPHRD_ETHER)
532ccb1352eSJesse Gross 				&& arp->ar_pro == htons(ETH_P_IP)
533ccb1352eSJesse Gross 				&& arp->ar_hln == ETH_ALEN
534ccb1352eSJesse Gross 				&& arp->ar_pln == 4) {
535ccb1352eSJesse Gross 
536ccb1352eSJesse Gross 			/* We only match on the lower 8 bits of the opcode. */
537ccb1352eSJesse Gross 			if (ntohs(arp->ar_op) <= 0xff)
538ccb1352eSJesse Gross 				key->ip.proto = ntohs(arp->ar_op);
539ccb1352eSJesse Gross 			memcpy(&key->ipv4.addr.src, arp->ar_sip, sizeof(key->ipv4.addr.src));
540ccb1352eSJesse Gross 			memcpy(&key->ipv4.addr.dst, arp->ar_tip, sizeof(key->ipv4.addr.dst));
541ccb1352eSJesse Gross 			memcpy(key->ipv4.arp.sha, arp->ar_sha, ETH_ALEN);
542ccb1352eSJesse Gross 			memcpy(key->ipv4.arp.tha, arp->ar_tha, ETH_ALEN);
543ccb1352eSJesse Gross 		}
544ccb1352eSJesse Gross 	} else if (key->eth.type == htons(ETH_P_IPV6)) {
545ccb1352eSJesse Gross 		int nh_len;             /* IPv6 Header + Extensions */
546ccb1352eSJesse Gross 
54703f0d916SAndy Zhou 		nh_len = parse_ipv6hdr(skb, key);
548ccb1352eSJesse Gross 		if (unlikely(nh_len < 0)) {
54903f0d916SAndy Zhou 			if (nh_len == -EINVAL) {
550ccb1352eSJesse Gross 				skb->transport_header = skb->network_header;
55103f0d916SAndy Zhou 				error = 0;
55203f0d916SAndy Zhou 			} else {
553ccb1352eSJesse Gross 				error = nh_len;
55403f0d916SAndy Zhou 			}
55503f0d916SAndy Zhou 			return error;
556ccb1352eSJesse Gross 		}
557ccb1352eSJesse Gross 
558ccb1352eSJesse Gross 		if (key->ip.frag == OVS_FRAG_TYPE_LATER)
55903f0d916SAndy Zhou 			return 0;
560ccb1352eSJesse Gross 		if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
561ccb1352eSJesse Gross 			key->ip.frag = OVS_FRAG_TYPE_FIRST;
562ccb1352eSJesse Gross 
563ccb1352eSJesse Gross 		/* Transport layer. */
564ccb1352eSJesse Gross 		if (key->ip.proto == NEXTHDR_TCP) {
565ccb1352eSJesse Gross 			if (tcphdr_ok(skb)) {
566ccb1352eSJesse Gross 				struct tcphdr *tcp = tcp_hdr(skb);
567ccb1352eSJesse Gross 				key->ipv6.tp.src = tcp->source;
568ccb1352eSJesse Gross 				key->ipv6.tp.dst = tcp->dest;
5695eb26b15SJarno Rajahalme 				key->ipv6.tp.flags = TCP_FLAGS_BE16(tcp);
570ccb1352eSJesse Gross 			}
571ccb1352eSJesse Gross 		} else if (key->ip.proto == NEXTHDR_UDP) {
572ccb1352eSJesse Gross 			if (udphdr_ok(skb)) {
573ccb1352eSJesse Gross 				struct udphdr *udp = udp_hdr(skb);
574ccb1352eSJesse Gross 				key->ipv6.tp.src = udp->source;
575ccb1352eSJesse Gross 				key->ipv6.tp.dst = udp->dest;
576ccb1352eSJesse Gross 			}
577a175a723SJoe Stringer 		} else if (key->ip.proto == NEXTHDR_SCTP) {
578a175a723SJoe Stringer 			if (sctphdr_ok(skb)) {
579a175a723SJoe Stringer 				struct sctphdr *sctp = sctp_hdr(skb);
580a175a723SJoe Stringer 				key->ipv6.tp.src = sctp->source;
581a175a723SJoe Stringer 				key->ipv6.tp.dst = sctp->dest;
582a175a723SJoe Stringer 			}
583ccb1352eSJesse Gross 		} else if (key->ip.proto == NEXTHDR_ICMP) {
584ccb1352eSJesse Gross 			if (icmp6hdr_ok(skb)) {
58503f0d916SAndy Zhou 				error = parse_icmpv6(skb, key, nh_len);
58603f0d916SAndy Zhou 				if (error)
58703f0d916SAndy Zhou 					return error;
588ccb1352eSJesse Gross 			}
589ccb1352eSJesse Gross 		}
590ccb1352eSJesse Gross 	}
591ccb1352eSJesse Gross 
59203f0d916SAndy Zhou 	return 0;
593ccb1352eSJesse Gross }
594