2 * Copyright (c) 2007-2013 Nicira, Inc.
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.
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.
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
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/skbuff.h>
24 #include <linux/openvswitch.h>
25 #include <linux/sctp.h>
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>
33 #include <net/checksum.h>
34 #include <net/dsfield.h>
35 #include <net/sctp/checksum.h>
40 static int do_execute_actions(struct datapath
*dp
, struct sk_buff
*skb
,
41 const struct nlattr
*attr
, int len
, bool keep_skb
);
43 static int make_writable(struct sk_buff
*skb
, int write_len
)
45 if (!skb_cloned(skb
) || skb_clone_writable(skb
, write_len
))
48 return pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
51 /* remove VLAN header from packet and update csum accordingly. */
52 static int __pop_vlan_tci(struct sk_buff
*skb
, __be16
*current_tci
)
54 struct vlan_hdr
*vhdr
;
57 err
= make_writable(skb
, VLAN_ETH_HLEN
);
61 if (skb
->ip_summed
== CHECKSUM_COMPLETE
)
62 skb
->csum
= csum_sub(skb
->csum
, csum_partial(skb
->data
63 + (2 * ETH_ALEN
), VLAN_HLEN
, 0));
65 vhdr
= (struct vlan_hdr
*)(skb
->data
+ ETH_HLEN
);
66 *current_tci
= vhdr
->h_vlan_TCI
;
68 memmove(skb
->data
+ VLAN_HLEN
, skb
->data
, 2 * ETH_ALEN
);
69 __skb_pull(skb
, VLAN_HLEN
);
71 vlan_set_encap_proto(skb
, vhdr
);
72 skb
->mac_header
+= VLAN_HLEN
;
73 skb_reset_mac_len(skb
);
78 static int pop_vlan(struct sk_buff
*skb
)
83 if (likely(vlan_tx_tag_present(skb
))) {
86 if (unlikely(skb
->protocol
!= htons(ETH_P_8021Q
) ||
87 skb
->len
< VLAN_ETH_HLEN
))
90 err
= __pop_vlan_tci(skb
, &tci
);
94 /* move next vlan tag to hw accel tag */
95 if (likely(skb
->protocol
!= htons(ETH_P_8021Q
) ||
96 skb
->len
< VLAN_ETH_HLEN
))
99 err
= __pop_vlan_tci(skb
, &tci
);
103 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
), ntohs(tci
));
107 static int push_vlan(struct sk_buff
*skb
, const struct ovs_action_push_vlan
*vlan
)
109 if (unlikely(vlan_tx_tag_present(skb
))) {
112 /* push down current VLAN tag */
113 current_tag
= vlan_tx_tag_get(skb
);
115 if (!__vlan_put_tag(skb
, skb
->vlan_proto
, current_tag
))
118 if (skb
->ip_summed
== CHECKSUM_COMPLETE
)
119 skb
->csum
= csum_add(skb
->csum
, csum_partial(skb
->data
120 + (2 * ETH_ALEN
), VLAN_HLEN
, 0));
123 __vlan_hwaccel_put_tag(skb
, vlan
->vlan_tpid
, ntohs(vlan
->vlan_tci
) & ~VLAN_TAG_PRESENT
);
127 static int set_eth_addr(struct sk_buff
*skb
,
128 const struct ovs_key_ethernet
*eth_key
)
131 err
= make_writable(skb
, ETH_HLEN
);
135 skb_postpull_rcsum(skb
, eth_hdr(skb
), ETH_ALEN
* 2);
137 ether_addr_copy(eth_hdr(skb
)->h_source
, eth_key
->eth_src
);
138 ether_addr_copy(eth_hdr(skb
)->h_dest
, eth_key
->eth_dst
);
140 ovs_skb_postpush_rcsum(skb
, eth_hdr(skb
), ETH_ALEN
* 2);
145 static void set_ip_addr(struct sk_buff
*skb
, struct iphdr
*nh
,
146 __be32
*addr
, __be32 new_addr
)
148 int transport_len
= skb
->len
- skb_transport_offset(skb
);
150 if (nh
->protocol
== IPPROTO_TCP
) {
151 if (likely(transport_len
>= sizeof(struct tcphdr
)))
152 inet_proto_csum_replace4(&tcp_hdr(skb
)->check
, skb
,
154 } else if (nh
->protocol
== IPPROTO_UDP
) {
155 if (likely(transport_len
>= sizeof(struct udphdr
))) {
156 struct udphdr
*uh
= udp_hdr(skb
);
158 if (uh
->check
|| skb
->ip_summed
== CHECKSUM_PARTIAL
) {
159 inet_proto_csum_replace4(&uh
->check
, skb
,
162 uh
->check
= CSUM_MANGLED_0
;
167 csum_replace4(&nh
->check
, *addr
, new_addr
);
172 static void update_ipv6_checksum(struct sk_buff
*skb
, u8 l4_proto
,
173 __be32 addr
[4], const __be32 new_addr
[4])
175 int transport_len
= skb
->len
- skb_transport_offset(skb
);
177 if (l4_proto
== IPPROTO_TCP
) {
178 if (likely(transport_len
>= sizeof(struct tcphdr
)))
179 inet_proto_csum_replace16(&tcp_hdr(skb
)->check
, skb
,
181 } else if (l4_proto
== IPPROTO_UDP
) {
182 if (likely(transport_len
>= sizeof(struct udphdr
))) {
183 struct udphdr
*uh
= udp_hdr(skb
);
185 if (uh
->check
|| skb
->ip_summed
== CHECKSUM_PARTIAL
) {
186 inet_proto_csum_replace16(&uh
->check
, skb
,
189 uh
->check
= CSUM_MANGLED_0
;
195 static void set_ipv6_addr(struct sk_buff
*skb
, u8 l4_proto
,
196 __be32 addr
[4], const __be32 new_addr
[4],
197 bool recalculate_csum
)
199 if (recalculate_csum
)
200 update_ipv6_checksum(skb
, l4_proto
, addr
, new_addr
);
203 memcpy(addr
, new_addr
, sizeof(__be32
[4]));
206 static void set_ipv6_tc(struct ipv6hdr
*nh
, u8 tc
)
208 nh
->priority
= tc
>> 4;
209 nh
->flow_lbl
[0] = (nh
->flow_lbl
[0] & 0x0F) | ((tc
& 0x0F) << 4);
212 static void set_ipv6_fl(struct ipv6hdr
*nh
, u32 fl
)
214 nh
->flow_lbl
[0] = (nh
->flow_lbl
[0] & 0xF0) | (fl
& 0x000F0000) >> 16;
215 nh
->flow_lbl
[1] = (fl
& 0x0000FF00) >> 8;
216 nh
->flow_lbl
[2] = fl
& 0x000000FF;
219 static void set_ip_ttl(struct sk_buff
*skb
, struct iphdr
*nh
, u8 new_ttl
)
221 csum_replace2(&nh
->check
, htons(nh
->ttl
<< 8), htons(new_ttl
<< 8));
225 static int set_ipv4(struct sk_buff
*skb
, const struct ovs_key_ipv4
*ipv4_key
)
230 err
= make_writable(skb
, skb_network_offset(skb
) +
231 sizeof(struct iphdr
));
237 if (ipv4_key
->ipv4_src
!= nh
->saddr
)
238 set_ip_addr(skb
, nh
, &nh
->saddr
, ipv4_key
->ipv4_src
);
240 if (ipv4_key
->ipv4_dst
!= nh
->daddr
)
241 set_ip_addr(skb
, nh
, &nh
->daddr
, ipv4_key
->ipv4_dst
);
243 if (ipv4_key
->ipv4_tos
!= nh
->tos
)
244 ipv4_change_dsfield(nh
, 0, ipv4_key
->ipv4_tos
);
246 if (ipv4_key
->ipv4_ttl
!= nh
->ttl
)
247 set_ip_ttl(skb
, nh
, ipv4_key
->ipv4_ttl
);
252 static int set_ipv6(struct sk_buff
*skb
, const struct ovs_key_ipv6
*ipv6_key
)
259 err
= make_writable(skb
, skb_network_offset(skb
) +
260 sizeof(struct ipv6hdr
));
265 saddr
= (__be32
*)&nh
->saddr
;
266 daddr
= (__be32
*)&nh
->daddr
;
268 if (memcmp(ipv6_key
->ipv6_src
, saddr
, sizeof(ipv6_key
->ipv6_src
)))
269 set_ipv6_addr(skb
, ipv6_key
->ipv6_proto
, saddr
,
270 ipv6_key
->ipv6_src
, true);
272 if (memcmp(ipv6_key
->ipv6_dst
, daddr
, sizeof(ipv6_key
->ipv6_dst
))) {
273 unsigned int offset
= 0;
274 int flags
= IP6_FH_F_SKIP_RH
;
275 bool recalc_csum
= true;
277 if (ipv6_ext_hdr(nh
->nexthdr
))
278 recalc_csum
= ipv6_find_hdr(skb
, &offset
,
279 NEXTHDR_ROUTING
, NULL
,
280 &flags
) != NEXTHDR_ROUTING
;
282 set_ipv6_addr(skb
, ipv6_key
->ipv6_proto
, daddr
,
283 ipv6_key
->ipv6_dst
, recalc_csum
);
286 set_ipv6_tc(nh
, ipv6_key
->ipv6_tclass
);
287 set_ipv6_fl(nh
, ntohl(ipv6_key
->ipv6_label
));
288 nh
->hop_limit
= ipv6_key
->ipv6_hlimit
;
293 /* Must follow make_writable() since that can move the skb data. */
294 static void set_tp_port(struct sk_buff
*skb
, __be16
*port
,
295 __be16 new_port
, __sum16
*check
)
297 inet_proto_csum_replace2(check
, skb
, *port
, new_port
, 0);
302 static void set_udp_port(struct sk_buff
*skb
, __be16
*port
, __be16 new_port
)
304 struct udphdr
*uh
= udp_hdr(skb
);
306 if (uh
->check
&& skb
->ip_summed
!= CHECKSUM_PARTIAL
) {
307 set_tp_port(skb
, port
, new_port
, &uh
->check
);
310 uh
->check
= CSUM_MANGLED_0
;
317 static int set_udp(struct sk_buff
*skb
, const struct ovs_key_udp
*udp_port_key
)
322 err
= make_writable(skb
, skb_transport_offset(skb
) +
323 sizeof(struct udphdr
));
328 if (udp_port_key
->udp_src
!= uh
->source
)
329 set_udp_port(skb
, &uh
->source
, udp_port_key
->udp_src
);
331 if (udp_port_key
->udp_dst
!= uh
->dest
)
332 set_udp_port(skb
, &uh
->dest
, udp_port_key
->udp_dst
);
337 static int set_tcp(struct sk_buff
*skb
, const struct ovs_key_tcp
*tcp_port_key
)
342 err
= make_writable(skb
, skb_transport_offset(skb
) +
343 sizeof(struct tcphdr
));
348 if (tcp_port_key
->tcp_src
!= th
->source
)
349 set_tp_port(skb
, &th
->source
, tcp_port_key
->tcp_src
, &th
->check
);
351 if (tcp_port_key
->tcp_dst
!= th
->dest
)
352 set_tp_port(skb
, &th
->dest
, tcp_port_key
->tcp_dst
, &th
->check
);
357 static int set_sctp(struct sk_buff
*skb
,
358 const struct ovs_key_sctp
*sctp_port_key
)
362 unsigned int sctphoff
= skb_transport_offset(skb
);
364 err
= make_writable(skb
, sctphoff
+ sizeof(struct sctphdr
));
369 if (sctp_port_key
->sctp_src
!= sh
->source
||
370 sctp_port_key
->sctp_dst
!= sh
->dest
) {
371 __le32 old_correct_csum
, new_csum
, old_csum
;
373 old_csum
= sh
->checksum
;
374 old_correct_csum
= sctp_compute_cksum(skb
, sctphoff
);
376 sh
->source
= sctp_port_key
->sctp_src
;
377 sh
->dest
= sctp_port_key
->sctp_dst
;
379 new_csum
= sctp_compute_cksum(skb
, sctphoff
);
381 /* Carry any checksum errors through. */
382 sh
->checksum
= old_csum
^ old_correct_csum
^ new_csum
;
390 static int do_output(struct datapath
*dp
, struct sk_buff
*skb
, int out_port
)
397 vport
= ovs_vport_rcu(dp
, out_port
);
398 if (unlikely(!vport
)) {
403 ovs_vport_send(vport
, skb
);
407 static int output_userspace(struct datapath
*dp
, struct sk_buff
*skb
,
408 const struct nlattr
*attr
)
410 struct dp_upcall_info upcall
;
411 const struct nlattr
*a
;
414 BUG_ON(!OVS_CB(skb
)->pkt_key
);
416 upcall
.cmd
= OVS_PACKET_CMD_ACTION
;
417 upcall
.key
= OVS_CB(skb
)->pkt_key
;
418 upcall
.userdata
= NULL
;
421 for (a
= nla_data(attr
), rem
= nla_len(attr
); rem
> 0;
422 a
= nla_next(a
, &rem
)) {
423 switch (nla_type(a
)) {
424 case OVS_USERSPACE_ATTR_USERDATA
:
428 case OVS_USERSPACE_ATTR_PID
:
429 upcall
.portid
= nla_get_u32(a
);
434 return ovs_dp_upcall(dp
, skb
, &upcall
);
437 static int sample(struct datapath
*dp
, struct sk_buff
*skb
,
438 const struct nlattr
*attr
)
440 const struct nlattr
*acts_list
= NULL
;
441 const struct nlattr
*a
;
444 for (a
= nla_data(attr
), rem
= nla_len(attr
); rem
> 0;
445 a
= nla_next(a
, &rem
)) {
446 switch (nla_type(a
)) {
447 case OVS_SAMPLE_ATTR_PROBABILITY
:
448 if (prandom_u32() >= nla_get_u32(a
))
452 case OVS_SAMPLE_ATTR_ACTIONS
:
458 return do_execute_actions(dp
, skb
, nla_data(acts_list
),
459 nla_len(acts_list
), true);
462 static int execute_set_action(struct sk_buff
*skb
,
463 const struct nlattr
*nested_attr
)
467 switch (nla_type(nested_attr
)) {
468 case OVS_KEY_ATTR_PRIORITY
:
469 skb
->priority
= nla_get_u32(nested_attr
);
472 case OVS_KEY_ATTR_SKB_MARK
:
473 skb
->mark
= nla_get_u32(nested_attr
);
476 case OVS_KEY_ATTR_IPV4_TUNNEL
:
477 OVS_CB(skb
)->tun_key
= nla_data(nested_attr
);
480 case OVS_KEY_ATTR_ETHERNET
:
481 err
= set_eth_addr(skb
, nla_data(nested_attr
));
484 case OVS_KEY_ATTR_IPV4
:
485 err
= set_ipv4(skb
, nla_data(nested_attr
));
488 case OVS_KEY_ATTR_IPV6
:
489 err
= set_ipv6(skb
, nla_data(nested_attr
));
492 case OVS_KEY_ATTR_TCP
:
493 err
= set_tcp(skb
, nla_data(nested_attr
));
496 case OVS_KEY_ATTR_UDP
:
497 err
= set_udp(skb
, nla_data(nested_attr
));
500 case OVS_KEY_ATTR_SCTP
:
501 err
= set_sctp(skb
, nla_data(nested_attr
));
508 /* Execute a list of actions against 'skb'. */
509 static int do_execute_actions(struct datapath
*dp
, struct sk_buff
*skb
,
510 const struct nlattr
*attr
, int len
, bool keep_skb
)
512 /* Every output action needs a separate clone of 'skb', but the common
513 * case is just a single output action, so that doing a clone and
514 * then freeing the original skbuff is wasteful. So the following code
515 * is slightly obscure just to avoid that. */
517 const struct nlattr
*a
;
520 for (a
= attr
, rem
= len
; rem
> 0;
521 a
= nla_next(a
, &rem
)) {
524 if (prev_port
!= -1) {
525 do_output(dp
, skb_clone(skb
, GFP_ATOMIC
), prev_port
);
529 switch (nla_type(a
)) {
530 case OVS_ACTION_ATTR_OUTPUT
:
531 prev_port
= nla_get_u32(a
);
534 case OVS_ACTION_ATTR_USERSPACE
:
535 output_userspace(dp
, skb
, a
);
538 case OVS_ACTION_ATTR_PUSH_VLAN
:
539 err
= push_vlan(skb
, nla_data(a
));
540 if (unlikely(err
)) /* skb already freed. */
544 case OVS_ACTION_ATTR_POP_VLAN
:
548 case OVS_ACTION_ATTR_SET
:
549 err
= execute_set_action(skb
, nla_data(a
));
552 case OVS_ACTION_ATTR_SAMPLE
:
553 err
= sample(dp
, skb
, a
);
563 if (prev_port
!= -1) {
565 skb
= skb_clone(skb
, GFP_ATOMIC
);
567 do_output(dp
, skb
, prev_port
);
568 } else if (!keep_skb
)
574 /* Execute a list of actions against 'skb'. */
575 int ovs_execute_actions(struct datapath
*dp
, struct sk_buff
*skb
)
577 struct sw_flow_actions
*acts
= rcu_dereference(OVS_CB(skb
)->flow
->sf_acts
);
579 OVS_CB(skb
)->tun_key
= NULL
;
580 return do_execute_actions(dp
, skb
, acts
->actions
,
581 acts
->actions_len
, false);