]>
Commit | Line | Data |
---|---|---|
ccb1352e | 1 | /* |
971427f3 | 2 | * Copyright (c) 2007-2014 Nicira, Inc. |
ccb1352e JG |
3 | * |
4 | * This program is free software; you can redistribute it and/or | |
5 | * modify it under the terms of version 2 of the GNU General Public | |
6 | * License as published by the Free Software Foundation. | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, but | |
9 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
11 | * General Public License for more details. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public License | |
14 | * along with this program; if not, write to the Free Software | |
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | |
16 | * 02110-1301, USA | |
17 | */ | |
18 | ||
19 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | |
20 | ||
21 | #include <linux/skbuff.h> | |
22 | #include <linux/in.h> | |
23 | #include <linux/ip.h> | |
24 | #include <linux/openvswitch.h> | |
a175a723 | 25 | #include <linux/sctp.h> |
ccb1352e JG |
26 | #include <linux/tcp.h> |
27 | #include <linux/udp.h> | |
28 | #include <linux/in6.h> | |
29 | #include <linux/if_arp.h> | |
30 | #include <linux/if_vlan.h> | |
25cd9ba0 | 31 | |
ccb1352e | 32 | #include <net/ip.h> |
3fdbd1ce | 33 | #include <net/ipv6.h> |
ccb1352e JG |
34 | #include <net/checksum.h> |
35 | #include <net/dsfield.h> | |
25cd9ba0 | 36 | #include <net/mpls.h> |
a175a723 | 37 | #include <net/sctp/checksum.h> |
ccb1352e JG |
38 | |
39 | #include "datapath.h" | |
971427f3 | 40 | #include "flow.h" |
ccb1352e JG |
41 | #include "vport.h" |
42 | ||
43 | static int do_execute_actions(struct datapath *dp, struct sk_buff *skb, | |
2ff3e4e4 | 44 | struct sw_flow_key *key, |
651887b0 | 45 | const struct nlattr *attr, int len); |
ccb1352e | 46 | |
971427f3 AZ |
47 | struct deferred_action { |
48 | struct sk_buff *skb; | |
49 | const struct nlattr *actions; | |
50 | ||
51 | /* Store pkt_key clone when creating deferred action. */ | |
52 | struct sw_flow_key pkt_key; | |
53 | }; | |
54 | ||
55 | #define DEFERRED_ACTION_FIFO_SIZE 10 | |
56 | struct action_fifo { | |
57 | int head; | |
58 | int tail; | |
59 | /* Deferred action fifo queue storage. */ | |
60 | struct deferred_action fifo[DEFERRED_ACTION_FIFO_SIZE]; | |
61 | }; | |
62 | ||
63 | static struct action_fifo __percpu *action_fifos; | |
64 | static DEFINE_PER_CPU(int, exec_actions_level); | |
65 | ||
66 | static void action_fifo_init(struct action_fifo *fifo) | |
67 | { | |
68 | fifo->head = 0; | |
69 | fifo->tail = 0; | |
70 | } | |
71 | ||
12eb18f7 | 72 | static bool action_fifo_is_empty(const struct action_fifo *fifo) |
971427f3 AZ |
73 | { |
74 | return (fifo->head == fifo->tail); | |
75 | } | |
76 | ||
77 | static struct deferred_action *action_fifo_get(struct action_fifo *fifo) | |
78 | { | |
79 | if (action_fifo_is_empty(fifo)) | |
80 | return NULL; | |
81 | ||
82 | return &fifo->fifo[fifo->tail++]; | |
83 | } | |
84 | ||
85 | static struct deferred_action *action_fifo_put(struct action_fifo *fifo) | |
86 | { | |
87 | if (fifo->head >= DEFERRED_ACTION_FIFO_SIZE - 1) | |
88 | return NULL; | |
89 | ||
90 | return &fifo->fifo[fifo->head++]; | |
91 | } | |
92 | ||
93 | /* Return true if fifo is not full */ | |
94 | static struct deferred_action *add_deferred_actions(struct sk_buff *skb, | |
12eb18f7 | 95 | const struct sw_flow_key *key, |
971427f3 AZ |
96 | const struct nlattr *attr) |
97 | { | |
98 | struct action_fifo *fifo; | |
99 | struct deferred_action *da; | |
100 | ||
101 | fifo = this_cpu_ptr(action_fifos); | |
102 | da = action_fifo_put(fifo); | |
103 | if (da) { | |
104 | da->skb = skb; | |
105 | da->actions = attr; | |
106 | da->pkt_key = *key; | |
107 | } | |
108 | ||
109 | return da; | |
110 | } | |
111 | ||
fff06c36 PS |
112 | static void invalidate_flow_key(struct sw_flow_key *key) |
113 | { | |
114 | key->eth.type = htons(0); | |
115 | } | |
116 | ||
117 | static bool is_flow_key_valid(const struct sw_flow_key *key) | |
118 | { | |
119 | return !!key->eth.type; | |
120 | } | |
121 | ||
fff06c36 | 122 | static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key, |
25cd9ba0 SH |
123 | const struct ovs_action_push_mpls *mpls) |
124 | { | |
125 | __be32 *new_mpls_lse; | |
126 | struct ethhdr *hdr; | |
127 | ||
128 | /* Networking stack do not allow simultaneous Tunnel and MPLS GSO. */ | |
129 | if (skb->encapsulation) | |
130 | return -ENOTSUPP; | |
131 | ||
132 | if (skb_cow_head(skb, MPLS_HLEN) < 0) | |
133 | return -ENOMEM; | |
134 | ||
135 | skb_push(skb, MPLS_HLEN); | |
136 | memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb), | |
137 | skb->mac_len); | |
138 | skb_reset_mac_header(skb); | |
139 | ||
140 | new_mpls_lse = (__be32 *)skb_mpls_header(skb); | |
141 | *new_mpls_lse = mpls->mpls_lse; | |
142 | ||
143 | if (skb->ip_summed == CHECKSUM_COMPLETE) | |
144 | skb->csum = csum_add(skb->csum, csum_partial(new_mpls_lse, | |
145 | MPLS_HLEN, 0)); | |
146 | ||
147 | hdr = eth_hdr(skb); | |
148 | hdr->h_proto = mpls->mpls_ethertype; | |
149 | ||
150 | skb_set_inner_protocol(skb, skb->protocol); | |
151 | skb->protocol = mpls->mpls_ethertype; | |
152 | ||
fff06c36 | 153 | invalidate_flow_key(key); |
25cd9ba0 SH |
154 | return 0; |
155 | } | |
156 | ||
fff06c36 PS |
157 | static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key, |
158 | const __be16 ethertype) | |
25cd9ba0 SH |
159 | { |
160 | struct ethhdr *hdr; | |
161 | int err; | |
162 | ||
e2195121 | 163 | err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN); |
25cd9ba0 SH |
164 | if (unlikely(err)) |
165 | return err; | |
166 | ||
1abcd82c | 167 | skb_postpull_rcsum(skb, skb_mpls_header(skb), MPLS_HLEN); |
25cd9ba0 SH |
168 | |
169 | memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb), | |
170 | skb->mac_len); | |
171 | ||
172 | __skb_pull(skb, MPLS_HLEN); | |
173 | skb_reset_mac_header(skb); | |
174 | ||
175 | /* skb_mpls_header() is used to locate the ethertype | |
176 | * field correctly in the presence of VLAN tags. | |
177 | */ | |
178 | hdr = (struct ethhdr *)(skb_mpls_header(skb) - ETH_HLEN); | |
179 | hdr->h_proto = ethertype; | |
180 | if (eth_p_mpls(skb->protocol)) | |
181 | skb->protocol = ethertype; | |
fff06c36 PS |
182 | |
183 | invalidate_flow_key(key); | |
25cd9ba0 SH |
184 | return 0; |
185 | } | |
186 | ||
fff06c36 PS |
187 | static int set_mpls(struct sk_buff *skb, struct sw_flow_key *key, |
188 | const __be32 *mpls_lse) | |
25cd9ba0 SH |
189 | { |
190 | __be32 *stack; | |
191 | int err; | |
192 | ||
e2195121 | 193 | err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN); |
25cd9ba0 SH |
194 | if (unlikely(err)) |
195 | return err; | |
196 | ||
197 | stack = (__be32 *)skb_mpls_header(skb); | |
198 | if (skb->ip_summed == CHECKSUM_COMPLETE) { | |
199 | __be32 diff[] = { ~(*stack), *mpls_lse }; | |
25cd9ba0 SH |
200 | skb->csum = ~csum_partial((char *)diff, sizeof(diff), |
201 | ~skb->csum); | |
202 | } | |
203 | ||
204 | *stack = *mpls_lse; | |
fff06c36 | 205 | key->mpls.top_lse = *mpls_lse; |
25cd9ba0 SH |
206 | return 0; |
207 | } | |
208 | ||
39855b5b | 209 | /* remove VLAN header from packet and update csum accordingly. */ |
ccb1352e JG |
210 | static int __pop_vlan_tci(struct sk_buff *skb, __be16 *current_tci) |
211 | { | |
212 | struct vlan_hdr *vhdr; | |
213 | int err; | |
214 | ||
e2195121 | 215 | err = skb_ensure_writable(skb, VLAN_ETH_HLEN); |
ccb1352e JG |
216 | if (unlikely(err)) |
217 | return err; | |
218 | ||
1abcd82c | 219 | skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN); |
ccb1352e JG |
220 | |
221 | vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN); | |
222 | *current_tci = vhdr->h_vlan_TCI; | |
223 | ||
224 | memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN); | |
225 | __skb_pull(skb, VLAN_HLEN); | |
226 | ||
227 | vlan_set_encap_proto(skb, vhdr); | |
228 | skb->mac_header += VLAN_HLEN; | |
25cd9ba0 | 229 | |
2ba5af42 JB |
230 | if (skb_network_offset(skb) < ETH_HLEN) |
231 | skb_set_network_header(skb, ETH_HLEN); | |
ccb1352e | 232 | |
25cd9ba0 SH |
233 | /* Update mac_len for subsequent MPLS actions */ |
234 | skb_reset_mac_len(skb); | |
ccb1352e JG |
235 | return 0; |
236 | } | |
237 | ||
fff06c36 | 238 | static int pop_vlan(struct sk_buff *skb, struct sw_flow_key *key) |
ccb1352e JG |
239 | { |
240 | __be16 tci; | |
241 | int err; | |
242 | ||
243 | if (likely(vlan_tx_tag_present(skb))) { | |
244 | skb->vlan_tci = 0; | |
245 | } else { | |
246 | if (unlikely(skb->protocol != htons(ETH_P_8021Q) || | |
247 | skb->len < VLAN_ETH_HLEN)) | |
248 | return 0; | |
249 | ||
250 | err = __pop_vlan_tci(skb, &tci); | |
251 | if (err) | |
252 | return err; | |
253 | } | |
254 | /* move next vlan tag to hw accel tag */ | |
255 | if (likely(skb->protocol != htons(ETH_P_8021Q) || | |
fff06c36 PS |
256 | skb->len < VLAN_ETH_HLEN)) { |
257 | key->eth.tci = 0; | |
ccb1352e | 258 | return 0; |
fff06c36 | 259 | } |
ccb1352e | 260 | |
fff06c36 | 261 | invalidate_flow_key(key); |
ccb1352e JG |
262 | err = __pop_vlan_tci(skb, &tci); |
263 | if (unlikely(err)) | |
264 | return err; | |
265 | ||
86a9bad3 | 266 | __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(tci)); |
ccb1352e JG |
267 | return 0; |
268 | } | |
269 | ||
fff06c36 PS |
270 | static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key, |
271 | const struct ovs_action_push_vlan *vlan) | |
ccb1352e JG |
272 | { |
273 | if (unlikely(vlan_tx_tag_present(skb))) { | |
274 | u16 current_tag; | |
275 | ||
276 | /* push down current VLAN tag */ | |
277 | current_tag = vlan_tx_tag_get(skb); | |
278 | ||
62749e2c JP |
279 | skb = vlan_insert_tag_set_proto(skb, skb->vlan_proto, |
280 | current_tag); | |
281 | if (!skb) | |
ccb1352e | 282 | return -ENOMEM; |
25cd9ba0 SH |
283 | /* Update mac_len for subsequent MPLS actions */ |
284 | skb->mac_len += VLAN_HLEN; | |
ccb1352e JG |
285 | |
286 | if (skb->ip_summed == CHECKSUM_COMPLETE) | |
287 | skb->csum = csum_add(skb->csum, csum_partial(skb->data | |
7b024082 | 288 | + (2 * ETH_ALEN), VLAN_HLEN, 0)); |
ccb1352e | 289 | |
fff06c36 PS |
290 | invalidate_flow_key(key); |
291 | } else { | |
292 | key->eth.tci = vlan->vlan_tci; | |
ccb1352e | 293 | } |
86a9bad3 | 294 | __vlan_hwaccel_put_tag(skb, vlan->vlan_tpid, ntohs(vlan->vlan_tci) & ~VLAN_TAG_PRESENT); |
ccb1352e JG |
295 | return 0; |
296 | } | |
297 | ||
fff06c36 | 298 | static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *key, |
ccb1352e JG |
299 | const struct ovs_key_ethernet *eth_key) |
300 | { | |
301 | int err; | |
e2195121 | 302 | err = skb_ensure_writable(skb, ETH_HLEN); |
ccb1352e JG |
303 | if (unlikely(err)) |
304 | return err; | |
305 | ||
b34df5e8 PS |
306 | skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2); |
307 | ||
8c63ff09 JP |
308 | ether_addr_copy(eth_hdr(skb)->h_source, eth_key->eth_src); |
309 | ether_addr_copy(eth_hdr(skb)->h_dest, eth_key->eth_dst); | |
ccb1352e | 310 | |
b34df5e8 PS |
311 | ovs_skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2); |
312 | ||
fff06c36 PS |
313 | ether_addr_copy(key->eth.src, eth_key->eth_src); |
314 | ether_addr_copy(key->eth.dst, eth_key->eth_dst); | |
ccb1352e JG |
315 | return 0; |
316 | } | |
317 | ||
318 | static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh, | |
fff06c36 | 319 | __be32 *addr, __be32 new_addr) |
ccb1352e JG |
320 | { |
321 | int transport_len = skb->len - skb_transport_offset(skb); | |
322 | ||
323 | if (nh->protocol == IPPROTO_TCP) { | |
324 | if (likely(transport_len >= sizeof(struct tcphdr))) | |
325 | inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb, | |
326 | *addr, new_addr, 1); | |
327 | } else if (nh->protocol == IPPROTO_UDP) { | |
81e5d41d JG |
328 | if (likely(transport_len >= sizeof(struct udphdr))) { |
329 | struct udphdr *uh = udp_hdr(skb); | |
330 | ||
331 | if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) { | |
332 | inet_proto_csum_replace4(&uh->check, skb, | |
333 | *addr, new_addr, 1); | |
334 | if (!uh->check) | |
335 | uh->check = CSUM_MANGLED_0; | |
336 | } | |
337 | } | |
ccb1352e JG |
338 | } |
339 | ||
340 | csum_replace4(&nh->check, *addr, new_addr); | |
7539fadc | 341 | skb_clear_hash(skb); |
ccb1352e JG |
342 | *addr = new_addr; |
343 | } | |
344 | ||
3fdbd1ce AA |
345 | static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto, |
346 | __be32 addr[4], const __be32 new_addr[4]) | |
347 | { | |
348 | int transport_len = skb->len - skb_transport_offset(skb); | |
349 | ||
350 | if (l4_proto == IPPROTO_TCP) { | |
351 | if (likely(transport_len >= sizeof(struct tcphdr))) | |
352 | inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb, | |
353 | addr, new_addr, 1); | |
354 | } else if (l4_proto == IPPROTO_UDP) { | |
355 | if (likely(transport_len >= sizeof(struct udphdr))) { | |
356 | struct udphdr *uh = udp_hdr(skb); | |
357 | ||
358 | if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) { | |
359 | inet_proto_csum_replace16(&uh->check, skb, | |
360 | addr, new_addr, 1); | |
361 | if (!uh->check) | |
362 | uh->check = CSUM_MANGLED_0; | |
363 | } | |
364 | } | |
365 | } | |
366 | } | |
367 | ||
368 | static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto, | |
369 | __be32 addr[4], const __be32 new_addr[4], | |
370 | bool recalculate_csum) | |
371 | { | |
372 | if (recalculate_csum) | |
373 | update_ipv6_checksum(skb, l4_proto, addr, new_addr); | |
374 | ||
7539fadc | 375 | skb_clear_hash(skb); |
3fdbd1ce AA |
376 | memcpy(addr, new_addr, sizeof(__be32[4])); |
377 | } | |
378 | ||
379 | static void set_ipv6_tc(struct ipv6hdr *nh, u8 tc) | |
380 | { | |
381 | nh->priority = tc >> 4; | |
382 | nh->flow_lbl[0] = (nh->flow_lbl[0] & 0x0F) | ((tc & 0x0F) << 4); | |
383 | } | |
384 | ||
385 | static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl) | |
386 | { | |
387 | nh->flow_lbl[0] = (nh->flow_lbl[0] & 0xF0) | (fl & 0x000F0000) >> 16; | |
388 | nh->flow_lbl[1] = (fl & 0x0000FF00) >> 8; | |
389 | nh->flow_lbl[2] = fl & 0x000000FF; | |
390 | } | |
391 | ||
ccb1352e JG |
392 | static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl) |
393 | { | |
394 | csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8)); | |
395 | nh->ttl = new_ttl; | |
396 | } | |
397 | ||
fff06c36 PS |
398 | static int set_ipv4(struct sk_buff *skb, struct sw_flow_key *key, |
399 | const struct ovs_key_ipv4 *ipv4_key) | |
ccb1352e JG |
400 | { |
401 | struct iphdr *nh; | |
402 | int err; | |
403 | ||
e2195121 JP |
404 | err = skb_ensure_writable(skb, skb_network_offset(skb) + |
405 | sizeof(struct iphdr)); | |
ccb1352e JG |
406 | if (unlikely(err)) |
407 | return err; | |
408 | ||
409 | nh = ip_hdr(skb); | |
410 | ||
fff06c36 | 411 | if (ipv4_key->ipv4_src != nh->saddr) { |
ccb1352e | 412 | set_ip_addr(skb, nh, &nh->saddr, ipv4_key->ipv4_src); |
fff06c36 PS |
413 | key->ipv4.addr.src = ipv4_key->ipv4_src; |
414 | } | |
ccb1352e | 415 | |
fff06c36 | 416 | if (ipv4_key->ipv4_dst != nh->daddr) { |
ccb1352e | 417 | set_ip_addr(skb, nh, &nh->daddr, ipv4_key->ipv4_dst); |
fff06c36 PS |
418 | key->ipv4.addr.dst = ipv4_key->ipv4_dst; |
419 | } | |
ccb1352e | 420 | |
fff06c36 | 421 | if (ipv4_key->ipv4_tos != nh->tos) { |
ccb1352e | 422 | ipv4_change_dsfield(nh, 0, ipv4_key->ipv4_tos); |
fff06c36 PS |
423 | key->ip.tos = nh->tos; |
424 | } | |
ccb1352e | 425 | |
fff06c36 | 426 | if (ipv4_key->ipv4_ttl != nh->ttl) { |
ccb1352e | 427 | set_ip_ttl(skb, nh, ipv4_key->ipv4_ttl); |
fff06c36 PS |
428 | key->ip.ttl = ipv4_key->ipv4_ttl; |
429 | } | |
ccb1352e JG |
430 | |
431 | return 0; | |
432 | } | |
433 | ||
fff06c36 PS |
434 | static int set_ipv6(struct sk_buff *skb, struct sw_flow_key *key, |
435 | const struct ovs_key_ipv6 *ipv6_key) | |
3fdbd1ce AA |
436 | { |
437 | struct ipv6hdr *nh; | |
438 | int err; | |
439 | __be32 *saddr; | |
440 | __be32 *daddr; | |
441 | ||
e2195121 JP |
442 | err = skb_ensure_writable(skb, skb_network_offset(skb) + |
443 | sizeof(struct ipv6hdr)); | |
3fdbd1ce AA |
444 | if (unlikely(err)) |
445 | return err; | |
446 | ||
447 | nh = ipv6_hdr(skb); | |
448 | saddr = (__be32 *)&nh->saddr; | |
449 | daddr = (__be32 *)&nh->daddr; | |
450 | ||
fff06c36 | 451 | if (memcmp(ipv6_key->ipv6_src, saddr, sizeof(ipv6_key->ipv6_src))) { |
3fdbd1ce AA |
452 | set_ipv6_addr(skb, ipv6_key->ipv6_proto, saddr, |
453 | ipv6_key->ipv6_src, true); | |
fff06c36 PS |
454 | memcpy(&key->ipv6.addr.src, ipv6_key->ipv6_src, |
455 | sizeof(ipv6_key->ipv6_src)); | |
456 | } | |
3fdbd1ce AA |
457 | |
458 | if (memcmp(ipv6_key->ipv6_dst, daddr, sizeof(ipv6_key->ipv6_dst))) { | |
459 | unsigned int offset = 0; | |
460 | int flags = IP6_FH_F_SKIP_RH; | |
461 | bool recalc_csum = true; | |
462 | ||
463 | if (ipv6_ext_hdr(nh->nexthdr)) | |
464 | recalc_csum = ipv6_find_hdr(skb, &offset, | |
465 | NEXTHDR_ROUTING, NULL, | |
466 | &flags) != NEXTHDR_ROUTING; | |
467 | ||
468 | set_ipv6_addr(skb, ipv6_key->ipv6_proto, daddr, | |
469 | ipv6_key->ipv6_dst, recalc_csum); | |
fff06c36 PS |
470 | memcpy(&key->ipv6.addr.dst, ipv6_key->ipv6_dst, |
471 | sizeof(ipv6_key->ipv6_dst)); | |
3fdbd1ce AA |
472 | } |
473 | ||
474 | set_ipv6_tc(nh, ipv6_key->ipv6_tclass); | |
fff06c36 PS |
475 | key->ip.tos = ipv6_get_dsfield(nh); |
476 | ||
3fdbd1ce | 477 | set_ipv6_fl(nh, ntohl(ipv6_key->ipv6_label)); |
fff06c36 | 478 | key->ipv6.label = *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL); |
3fdbd1ce | 479 | |
fff06c36 PS |
480 | nh->hop_limit = ipv6_key->ipv6_hlimit; |
481 | key->ip.ttl = ipv6_key->ipv6_hlimit; | |
3fdbd1ce AA |
482 | return 0; |
483 | } | |
484 | ||
e2195121 | 485 | /* Must follow skb_ensure_writable() since that can move the skb data. */ |
ccb1352e JG |
486 | static void set_tp_port(struct sk_buff *skb, __be16 *port, |
487 | __be16 new_port, __sum16 *check) | |
488 | { | |
489 | inet_proto_csum_replace2(check, skb, *port, new_port, 0); | |
490 | *port = new_port; | |
7539fadc | 491 | skb_clear_hash(skb); |
ccb1352e JG |
492 | } |
493 | ||
81e5d41d JG |
494 | static void set_udp_port(struct sk_buff *skb, __be16 *port, __be16 new_port) |
495 | { | |
496 | struct udphdr *uh = udp_hdr(skb); | |
497 | ||
498 | if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) { | |
499 | set_tp_port(skb, port, new_port, &uh->check); | |
500 | ||
501 | if (!uh->check) | |
502 | uh->check = CSUM_MANGLED_0; | |
503 | } else { | |
504 | *port = new_port; | |
7539fadc | 505 | skb_clear_hash(skb); |
81e5d41d JG |
506 | } |
507 | } | |
508 | ||
fff06c36 PS |
509 | static int set_udp(struct sk_buff *skb, struct sw_flow_key *key, |
510 | const struct ovs_key_udp *udp_port_key) | |
ccb1352e JG |
511 | { |
512 | struct udphdr *uh; | |
513 | int err; | |
514 | ||
e2195121 JP |
515 | err = skb_ensure_writable(skb, skb_transport_offset(skb) + |
516 | sizeof(struct udphdr)); | |
ccb1352e JG |
517 | if (unlikely(err)) |
518 | return err; | |
519 | ||
520 | uh = udp_hdr(skb); | |
fff06c36 | 521 | if (udp_port_key->udp_src != uh->source) { |
81e5d41d | 522 | set_udp_port(skb, &uh->source, udp_port_key->udp_src); |
fff06c36 PS |
523 | key->tp.src = udp_port_key->udp_src; |
524 | } | |
ccb1352e | 525 | |
fff06c36 | 526 | if (udp_port_key->udp_dst != uh->dest) { |
81e5d41d | 527 | set_udp_port(skb, &uh->dest, udp_port_key->udp_dst); |
fff06c36 PS |
528 | key->tp.dst = udp_port_key->udp_dst; |
529 | } | |
ccb1352e JG |
530 | |
531 | return 0; | |
532 | } | |
533 | ||
fff06c36 PS |
534 | static int set_tcp(struct sk_buff *skb, struct sw_flow_key *key, |
535 | const struct ovs_key_tcp *tcp_port_key) | |
ccb1352e JG |
536 | { |
537 | struct tcphdr *th; | |
538 | int err; | |
539 | ||
e2195121 JP |
540 | err = skb_ensure_writable(skb, skb_transport_offset(skb) + |
541 | sizeof(struct tcphdr)); | |
ccb1352e JG |
542 | if (unlikely(err)) |
543 | return err; | |
544 | ||
545 | th = tcp_hdr(skb); | |
fff06c36 | 546 | if (tcp_port_key->tcp_src != th->source) { |
ccb1352e | 547 | set_tp_port(skb, &th->source, tcp_port_key->tcp_src, &th->check); |
fff06c36 PS |
548 | key->tp.src = tcp_port_key->tcp_src; |
549 | } | |
ccb1352e | 550 | |
fff06c36 | 551 | if (tcp_port_key->tcp_dst != th->dest) { |
ccb1352e | 552 | set_tp_port(skb, &th->dest, tcp_port_key->tcp_dst, &th->check); |
fff06c36 PS |
553 | key->tp.dst = tcp_port_key->tcp_dst; |
554 | } | |
ccb1352e JG |
555 | |
556 | return 0; | |
557 | } | |
558 | ||
fff06c36 PS |
559 | static int set_sctp(struct sk_buff *skb, struct sw_flow_key *key, |
560 | const struct ovs_key_sctp *sctp_port_key) | |
a175a723 JS |
561 | { |
562 | struct sctphdr *sh; | |
563 | int err; | |
564 | unsigned int sctphoff = skb_transport_offset(skb); | |
565 | ||
e2195121 | 566 | err = skb_ensure_writable(skb, sctphoff + sizeof(struct sctphdr)); |
a175a723 JS |
567 | if (unlikely(err)) |
568 | return err; | |
569 | ||
570 | sh = sctp_hdr(skb); | |
571 | if (sctp_port_key->sctp_src != sh->source || | |
572 | sctp_port_key->sctp_dst != sh->dest) { | |
573 | __le32 old_correct_csum, new_csum, old_csum; | |
574 | ||
575 | old_csum = sh->checksum; | |
576 | old_correct_csum = sctp_compute_cksum(skb, sctphoff); | |
577 | ||
578 | sh->source = sctp_port_key->sctp_src; | |
579 | sh->dest = sctp_port_key->sctp_dst; | |
580 | ||
581 | new_csum = sctp_compute_cksum(skb, sctphoff); | |
582 | ||
583 | /* Carry any checksum errors through. */ | |
584 | sh->checksum = old_csum ^ old_correct_csum ^ new_csum; | |
585 | ||
7539fadc | 586 | skb_clear_hash(skb); |
fff06c36 PS |
587 | key->tp.src = sctp_port_key->sctp_src; |
588 | key->tp.dst = sctp_port_key->sctp_dst; | |
a175a723 JS |
589 | } |
590 | ||
591 | return 0; | |
592 | } | |
593 | ||
738967b8 | 594 | static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port) |
ccb1352e | 595 | { |
738967b8 | 596 | struct vport *vport = ovs_vport_rcu(dp, out_port); |
ccb1352e | 597 | |
738967b8 AZ |
598 | if (likely(vport)) |
599 | ovs_vport_send(vport, skb); | |
600 | else | |
ccb1352e | 601 | kfree_skb(skb); |
ccb1352e JG |
602 | } |
603 | ||
604 | static int output_userspace(struct datapath *dp, struct sk_buff *skb, | |
2ff3e4e4 | 605 | struct sw_flow_key *key, const struct nlattr *attr) |
ccb1352e | 606 | { |
8f0aad6f | 607 | struct ovs_tunnel_info info; |
ccb1352e JG |
608 | struct dp_upcall_info upcall; |
609 | const struct nlattr *a; | |
610 | int rem; | |
611 | ||
612 | upcall.cmd = OVS_PACKET_CMD_ACTION; | |
ccb1352e | 613 | upcall.userdata = NULL; |
15e47304 | 614 | upcall.portid = 0; |
8f0aad6f | 615 | upcall.egress_tun_info = NULL; |
ccb1352e JG |
616 | |
617 | for (a = nla_data(attr), rem = nla_len(attr); rem > 0; | |
618 | a = nla_next(a, &rem)) { | |
619 | switch (nla_type(a)) { | |
620 | case OVS_USERSPACE_ATTR_USERDATA: | |
621 | upcall.userdata = a; | |
622 | break; | |
623 | ||
624 | case OVS_USERSPACE_ATTR_PID: | |
15e47304 | 625 | upcall.portid = nla_get_u32(a); |
ccb1352e | 626 | break; |
8f0aad6f WZ |
627 | |
628 | case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: { | |
629 | /* Get out tunnel info. */ | |
630 | struct vport *vport; | |
631 | ||
632 | vport = ovs_vport_rcu(dp, nla_get_u32(a)); | |
633 | if (vport) { | |
634 | int err; | |
635 | ||
636 | err = ovs_vport_get_egress_tun_info(vport, skb, | |
637 | &info); | |
638 | if (!err) | |
639 | upcall.egress_tun_info = &info; | |
640 | } | |
641 | break; | |
ccb1352e | 642 | } |
8f0aad6f WZ |
643 | |
644 | } /* End of switch. */ | |
ccb1352e JG |
645 | } |
646 | ||
e8eedb85 | 647 | return ovs_dp_upcall(dp, skb, key, &upcall); |
ccb1352e JG |
648 | } |
649 | ||
650 | static int sample(struct datapath *dp, struct sk_buff *skb, | |
2ff3e4e4 | 651 | struct sw_flow_key *key, const struct nlattr *attr) |
ccb1352e JG |
652 | { |
653 | const struct nlattr *acts_list = NULL; | |
654 | const struct nlattr *a; | |
655 | int rem; | |
656 | ||
657 | for (a = nla_data(attr), rem = nla_len(attr); rem > 0; | |
658 | a = nla_next(a, &rem)) { | |
659 | switch (nla_type(a)) { | |
660 | case OVS_SAMPLE_ATTR_PROBABILITY: | |
63862b5b | 661 | if (prandom_u32() >= nla_get_u32(a)) |
ccb1352e JG |
662 | return 0; |
663 | break; | |
664 | ||
665 | case OVS_SAMPLE_ATTR_ACTIONS: | |
666 | acts_list = a; | |
667 | break; | |
668 | } | |
669 | } | |
670 | ||
651887b0 SH |
671 | rem = nla_len(acts_list); |
672 | a = nla_data(acts_list); | |
673 | ||
32ae87ff AZ |
674 | /* Actions list is empty, do nothing */ |
675 | if (unlikely(!rem)) | |
676 | return 0; | |
651887b0 | 677 | |
32ae87ff AZ |
678 | /* The only known usage of sample action is having a single user-space |
679 | * action. Treat this usage as a special case. | |
680 | * The output_userspace() should clone the skb to be sent to the | |
681 | * user space. This skb will be consumed by its caller. | |
651887b0 | 682 | */ |
32ae87ff | 683 | if (likely(nla_type(a) == OVS_ACTION_ATTR_USERSPACE && |
941d8ebc | 684 | nla_is_last(a, rem))) |
32ae87ff AZ |
685 | return output_userspace(dp, skb, key, a); |
686 | ||
687 | skb = skb_clone(skb, GFP_ATOMIC); | |
688 | if (!skb) | |
689 | /* Skip the sample action when out of memory. */ | |
690 | return 0; | |
691 | ||
971427f3 AZ |
692 | if (!add_deferred_actions(skb, key, a)) { |
693 | if (net_ratelimit()) | |
694 | pr_warn("%s: deferred actions limit reached, dropping sample action\n", | |
695 | ovs_dp_name(dp)); | |
696 | ||
697 | kfree_skb(skb); | |
698 | } | |
699 | return 0; | |
700 | } | |
701 | ||
702 | static void execute_hash(struct sk_buff *skb, struct sw_flow_key *key, | |
703 | const struct nlattr *attr) | |
704 | { | |
705 | struct ovs_action_hash *hash_act = nla_data(attr); | |
706 | u32 hash = 0; | |
707 | ||
708 | /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */ | |
709 | hash = skb_get_hash(skb); | |
710 | hash = jhash_1word(hash, hash_act->hash_basis); | |
711 | if (!hash) | |
712 | hash = 0x1; | |
713 | ||
714 | key->ovs_flow_hash = hash; | |
ccb1352e JG |
715 | } |
716 | ||
fff06c36 PS |
717 | static int execute_set_action(struct sk_buff *skb, struct sw_flow_key *key, |
718 | const struct nlattr *nested_attr) | |
ccb1352e JG |
719 | { |
720 | int err = 0; | |
721 | ||
722 | switch (nla_type(nested_attr)) { | |
723 | case OVS_KEY_ATTR_PRIORITY: | |
724 | skb->priority = nla_get_u32(nested_attr); | |
fff06c36 | 725 | key->phy.priority = skb->priority; |
ccb1352e JG |
726 | break; |
727 | ||
39c7caeb AA |
728 | case OVS_KEY_ATTR_SKB_MARK: |
729 | skb->mark = nla_get_u32(nested_attr); | |
fff06c36 | 730 | key->phy.skb_mark = skb->mark; |
39c7caeb AA |
731 | break; |
732 | ||
f0b128c1 JG |
733 | case OVS_KEY_ATTR_TUNNEL_INFO: |
734 | OVS_CB(skb)->egress_tun_info = nla_data(nested_attr); | |
7d5437c7 PS |
735 | break; |
736 | ||
ccb1352e | 737 | case OVS_KEY_ATTR_ETHERNET: |
fff06c36 | 738 | err = set_eth_addr(skb, key, nla_data(nested_attr)); |
ccb1352e JG |
739 | break; |
740 | ||
741 | case OVS_KEY_ATTR_IPV4: | |
fff06c36 | 742 | err = set_ipv4(skb, key, nla_data(nested_attr)); |
ccb1352e JG |
743 | break; |
744 | ||
3fdbd1ce | 745 | case OVS_KEY_ATTR_IPV6: |
fff06c36 | 746 | err = set_ipv6(skb, key, nla_data(nested_attr)); |
3fdbd1ce AA |
747 | break; |
748 | ||
ccb1352e | 749 | case OVS_KEY_ATTR_TCP: |
fff06c36 | 750 | err = set_tcp(skb, key, nla_data(nested_attr)); |
ccb1352e JG |
751 | break; |
752 | ||
753 | case OVS_KEY_ATTR_UDP: | |
fff06c36 | 754 | err = set_udp(skb, key, nla_data(nested_attr)); |
ccb1352e | 755 | break; |
a175a723 JS |
756 | |
757 | case OVS_KEY_ATTR_SCTP: | |
fff06c36 | 758 | err = set_sctp(skb, key, nla_data(nested_attr)); |
a175a723 | 759 | break; |
25cd9ba0 SH |
760 | |
761 | case OVS_KEY_ATTR_MPLS: | |
fff06c36 | 762 | err = set_mpls(skb, key, nla_data(nested_attr)); |
25cd9ba0 | 763 | break; |
ccb1352e JG |
764 | } |
765 | ||
766 | return err; | |
767 | } | |
768 | ||
971427f3 AZ |
769 | static int execute_recirc(struct datapath *dp, struct sk_buff *skb, |
770 | struct sw_flow_key *key, | |
771 | const struct nlattr *a, int rem) | |
772 | { | |
773 | struct deferred_action *da; | |
971427f3 | 774 | |
fff06c36 PS |
775 | if (!is_flow_key_valid(key)) { |
776 | int err; | |
777 | ||
778 | err = ovs_flow_key_update(skb, key); | |
779 | if (err) | |
780 | return err; | |
781 | } | |
782 | BUG_ON(!is_flow_key_valid(key)); | |
971427f3 | 783 | |
941d8ebc | 784 | if (!nla_is_last(a, rem)) { |
971427f3 AZ |
785 | /* Recirc action is the not the last action |
786 | * of the action list, need to clone the skb. | |
787 | */ | |
788 | skb = skb_clone(skb, GFP_ATOMIC); | |
789 | ||
790 | /* Skip the recirc action when out of memory, but | |
791 | * continue on with the rest of the action list. | |
792 | */ | |
793 | if (!skb) | |
794 | return 0; | |
795 | } | |
796 | ||
797 | da = add_deferred_actions(skb, key, NULL); | |
798 | if (da) { | |
799 | da->pkt_key.recirc_id = nla_get_u32(a); | |
800 | } else { | |
801 | kfree_skb(skb); | |
802 | ||
803 | if (net_ratelimit()) | |
804 | pr_warn("%s: deferred action limit reached, drop recirc action\n", | |
805 | ovs_dp_name(dp)); | |
806 | } | |
807 | ||
808 | return 0; | |
809 | } | |
810 | ||
ccb1352e JG |
811 | /* Execute a list of actions against 'skb'. */ |
812 | static int do_execute_actions(struct datapath *dp, struct sk_buff *skb, | |
2ff3e4e4 | 813 | struct sw_flow_key *key, |
651887b0 | 814 | const struct nlattr *attr, int len) |
ccb1352e JG |
815 | { |
816 | /* Every output action needs a separate clone of 'skb', but the common | |
817 | * case is just a single output action, so that doing a clone and | |
818 | * then freeing the original skbuff is wasteful. So the following code | |
fff06c36 PS |
819 | * is slightly obscure just to avoid that. |
820 | */ | |
ccb1352e JG |
821 | int prev_port = -1; |
822 | const struct nlattr *a; | |
823 | int rem; | |
824 | ||
825 | for (a = attr, rem = len; rem > 0; | |
826 | a = nla_next(a, &rem)) { | |
827 | int err = 0; | |
828 | ||
738967b8 AZ |
829 | if (unlikely(prev_port != -1)) { |
830 | struct sk_buff *out_skb = skb_clone(skb, GFP_ATOMIC); | |
831 | ||
832 | if (out_skb) | |
833 | do_output(dp, out_skb, prev_port); | |
834 | ||
ccb1352e JG |
835 | prev_port = -1; |
836 | } | |
837 | ||
838 | switch (nla_type(a)) { | |
839 | case OVS_ACTION_ATTR_OUTPUT: | |
840 | prev_port = nla_get_u32(a); | |
841 | break; | |
842 | ||
843 | case OVS_ACTION_ATTR_USERSPACE: | |
2ff3e4e4 | 844 | output_userspace(dp, skb, key, a); |
ccb1352e JG |
845 | break; |
846 | ||
971427f3 AZ |
847 | case OVS_ACTION_ATTR_HASH: |
848 | execute_hash(skb, key, a); | |
849 | break; | |
850 | ||
25cd9ba0 | 851 | case OVS_ACTION_ATTR_PUSH_MPLS: |
fff06c36 | 852 | err = push_mpls(skb, key, nla_data(a)); |
25cd9ba0 SH |
853 | break; |
854 | ||
855 | case OVS_ACTION_ATTR_POP_MPLS: | |
fff06c36 | 856 | err = pop_mpls(skb, key, nla_get_be16(a)); |
25cd9ba0 SH |
857 | break; |
858 | ||
ccb1352e | 859 | case OVS_ACTION_ATTR_PUSH_VLAN: |
fff06c36 | 860 | err = push_vlan(skb, key, nla_data(a)); |
ccb1352e JG |
861 | if (unlikely(err)) /* skb already freed. */ |
862 | return err; | |
863 | break; | |
864 | ||
865 | case OVS_ACTION_ATTR_POP_VLAN: | |
fff06c36 | 866 | err = pop_vlan(skb, key); |
ccb1352e JG |
867 | break; |
868 | ||
971427f3 AZ |
869 | case OVS_ACTION_ATTR_RECIRC: |
870 | err = execute_recirc(dp, skb, key, a, rem); | |
941d8ebc | 871 | if (nla_is_last(a, rem)) { |
971427f3 AZ |
872 | /* If this is the last action, the skb has |
873 | * been consumed or freed. | |
874 | * Return immediately. | |
875 | */ | |
876 | return err; | |
877 | } | |
878 | break; | |
879 | ||
ccb1352e | 880 | case OVS_ACTION_ATTR_SET: |
fff06c36 | 881 | err = execute_set_action(skb, key, nla_data(a)); |
ccb1352e JG |
882 | break; |
883 | ||
884 | case OVS_ACTION_ATTR_SAMPLE: | |
2ff3e4e4 | 885 | err = sample(dp, skb, key, a); |
fe984c08 AZ |
886 | if (unlikely(err)) /* skb already freed. */ |
887 | return err; | |
ccb1352e JG |
888 | break; |
889 | } | |
890 | ||
891 | if (unlikely(err)) { | |
892 | kfree_skb(skb); | |
893 | return err; | |
894 | } | |
895 | } | |
896 | ||
651887b0 | 897 | if (prev_port != -1) |
ccb1352e | 898 | do_output(dp, skb, prev_port); |
651887b0 | 899 | else |
ccb1352e JG |
900 | consume_skb(skb); |
901 | ||
902 | return 0; | |
903 | } | |
904 | ||
971427f3 AZ |
905 | static void process_deferred_actions(struct datapath *dp) |
906 | { | |
907 | struct action_fifo *fifo = this_cpu_ptr(action_fifos); | |
908 | ||
909 | /* Do not touch the FIFO in case there is no deferred actions. */ | |
910 | if (action_fifo_is_empty(fifo)) | |
911 | return; | |
912 | ||
913 | /* Finishing executing all deferred actions. */ | |
914 | do { | |
915 | struct deferred_action *da = action_fifo_get(fifo); | |
916 | struct sk_buff *skb = da->skb; | |
917 | struct sw_flow_key *key = &da->pkt_key; | |
918 | const struct nlattr *actions = da->actions; | |
919 | ||
920 | if (actions) | |
921 | do_execute_actions(dp, skb, key, actions, | |
922 | nla_len(actions)); | |
923 | else | |
924 | ovs_dp_process_packet(skb, key); | |
925 | } while (!action_fifo_is_empty(fifo)); | |
926 | ||
927 | /* Reset FIFO for the next packet. */ | |
928 | action_fifo_init(fifo); | |
929 | } | |
930 | ||
ccb1352e | 931 | /* Execute a list of actions against 'skb'. */ |
2ff3e4e4 | 932 | int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb, |
12eb18f7 TG |
933 | const struct sw_flow_actions *acts, |
934 | struct sw_flow_key *key) | |
ccb1352e | 935 | { |
971427f3 | 936 | int level = this_cpu_read(exec_actions_level); |
971427f3 AZ |
937 | int err; |
938 | ||
971427f3 | 939 | this_cpu_inc(exec_actions_level); |
f0b128c1 | 940 | OVS_CB(skb)->egress_tun_info = NULL; |
971427f3 AZ |
941 | err = do_execute_actions(dp, skb, key, |
942 | acts->actions, acts->actions_len); | |
943 | ||
944 | if (!level) | |
945 | process_deferred_actions(dp); | |
946 | ||
947 | this_cpu_dec(exec_actions_level); | |
948 | return err; | |
949 | } | |
950 | ||
951 | int action_fifos_init(void) | |
952 | { | |
953 | action_fifos = alloc_percpu(struct action_fifo); | |
954 | if (!action_fifos) | |
955 | return -ENOMEM; | |
ccb1352e | 956 | |
971427f3 AZ |
957 | return 0; |
958 | } | |
959 | ||
960 | void action_fifos_exit(void) | |
961 | { | |
962 | free_percpu(action_fifos); | |
ccb1352e | 963 | } |