Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 1 | /* |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 2 | * Copyright (c) 2007-2014 Nicira, Inc. |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 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> |
Joe Stringer | a175a72 | 2013-08-22 12:30:48 -0700 | [diff] [blame] | 25 | #include <linux/sctp.h> |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 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> |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 31 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 32 | #include <net/ip.h> |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 33 | #include <net/ipv6.h> |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 34 | #include <net/checksum.h> |
| 35 | #include <net/dsfield.h> |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 36 | #include <net/mpls.h> |
Joe Stringer | a175a72 | 2013-08-22 12:30:48 -0700 | [diff] [blame] | 37 | #include <net/sctp/checksum.h> |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 38 | |
| 39 | #include "datapath.h" |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 40 | #include "flow.h" |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 41 | #include "vport.h" |
| 42 | |
| 43 | static int do_execute_actions(struct datapath *dp, struct sk_buff *skb, |
Pravin B Shelar | 2ff3e4e | 2014-09-15 19:15:28 -0700 | [diff] [blame] | 44 | struct sw_flow_key *key, |
Simon Horman | 651887b | 2014-07-21 15:12:34 -0700 | [diff] [blame] | 45 | const struct nlattr *attr, int len); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 46 | |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 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 | |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 72 | static bool action_fifo_is_empty(const struct action_fifo *fifo) |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 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, |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 95 | const struct sw_flow_key *key, |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 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 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 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 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 122 | static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key, |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 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 | |
Pravin B Shelar | cbe7e76 | 2014-12-23 16:20:28 -0800 | [diff] [blame] | 150 | if (!skb->inner_protocol) |
| 151 | skb_set_inner_protocol(skb, skb->protocol); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 152 | skb->protocol = mpls->mpls_ethertype; |
| 153 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 154 | invalidate_flow_key(key); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 155 | return 0; |
| 156 | } |
| 157 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 158 | static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key, |
| 159 | const __be16 ethertype) |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 160 | { |
| 161 | struct ethhdr *hdr; |
| 162 | int err; |
| 163 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 164 | err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 165 | if (unlikely(err)) |
| 166 | return err; |
| 167 | |
Jiri Pirko | 1abcd82 | 2014-11-19 14:04:55 +0100 | [diff] [blame] | 168 | skb_postpull_rcsum(skb, skb_mpls_header(skb), MPLS_HLEN); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 169 | |
| 170 | memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb), |
| 171 | skb->mac_len); |
| 172 | |
| 173 | __skb_pull(skb, MPLS_HLEN); |
| 174 | skb_reset_mac_header(skb); |
| 175 | |
| 176 | /* skb_mpls_header() is used to locate the ethertype |
| 177 | * field correctly in the presence of VLAN tags. |
| 178 | */ |
| 179 | hdr = (struct ethhdr *)(skb_mpls_header(skb) - ETH_HLEN); |
| 180 | hdr->h_proto = ethertype; |
| 181 | if (eth_p_mpls(skb->protocol)) |
| 182 | skb->protocol = ethertype; |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 183 | |
| 184 | invalidate_flow_key(key); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 185 | return 0; |
| 186 | } |
| 187 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 188 | static int set_mpls(struct sk_buff *skb, struct sw_flow_key *key, |
| 189 | const __be32 *mpls_lse) |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 190 | { |
| 191 | __be32 *stack; |
| 192 | int err; |
| 193 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 194 | err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 195 | if (unlikely(err)) |
| 196 | return err; |
| 197 | |
| 198 | stack = (__be32 *)skb_mpls_header(skb); |
| 199 | if (skb->ip_summed == CHECKSUM_COMPLETE) { |
| 200 | __be32 diff[] = { ~(*stack), *mpls_lse }; |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 201 | skb->csum = ~csum_partial((char *)diff, sizeof(diff), |
| 202 | ~skb->csum); |
| 203 | } |
| 204 | |
| 205 | *stack = *mpls_lse; |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 206 | key->mpls.top_lse = *mpls_lse; |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 210 | static int pop_vlan(struct sk_buff *skb, struct sw_flow_key *key) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 211 | { |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 212 | int err; |
| 213 | |
Jiri Pirko | 93515d5 | 2014-11-19 14:05:02 +0100 | [diff] [blame] | 214 | err = skb_vlan_pop(skb); |
Jiri Pirko | df8a39d | 2015-01-13 17:13:44 +0100 | [diff] [blame] | 215 | if (skb_vlan_tag_present(skb)) |
Jiri Pirko | 93515d5 | 2014-11-19 14:05:02 +0100 | [diff] [blame] | 216 | invalidate_flow_key(key); |
| 217 | else |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 218 | key->eth.tci = 0; |
Jiri Pirko | 93515d5 | 2014-11-19 14:05:02 +0100 | [diff] [blame] | 219 | return err; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 222 | static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key, |
| 223 | const struct ovs_action_push_vlan *vlan) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 224 | { |
Jiri Pirko | df8a39d | 2015-01-13 17:13:44 +0100 | [diff] [blame] | 225 | if (skb_vlan_tag_present(skb)) |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 226 | invalidate_flow_key(key); |
Jiri Pirko | 93515d5 | 2014-11-19 14:05:02 +0100 | [diff] [blame] | 227 | else |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 228 | key->eth.tci = vlan->vlan_tci; |
Jiri Pirko | 93515d5 | 2014-11-19 14:05:02 +0100 | [diff] [blame] | 229 | return skb_vlan_push(skb, vlan->vlan_tpid, |
| 230 | ntohs(vlan->vlan_tci) & ~VLAN_TAG_PRESENT); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 233 | static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *key, |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 234 | const struct ovs_key_ethernet *eth_key) |
| 235 | { |
| 236 | int err; |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 237 | err = skb_ensure_writable(skb, ETH_HLEN); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 238 | if (unlikely(err)) |
| 239 | return err; |
| 240 | |
Pravin B Shelar | b34df5e | 2013-06-13 11:11:44 -0700 | [diff] [blame] | 241 | skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2); |
| 242 | |
Joe Perches | 8c63ff0 | 2014-02-18 11:15:45 -0800 | [diff] [blame] | 243 | ether_addr_copy(eth_hdr(skb)->h_source, eth_key->eth_src); |
| 244 | ether_addr_copy(eth_hdr(skb)->h_dest, eth_key->eth_dst); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 245 | |
Pravin B Shelar | b34df5e | 2013-06-13 11:11:44 -0700 | [diff] [blame] | 246 | ovs_skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2); |
| 247 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 248 | ether_addr_copy(key->eth.src, eth_key->eth_src); |
| 249 | ether_addr_copy(key->eth.dst, eth_key->eth_dst); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 250 | return 0; |
| 251 | } |
| 252 | |
| 253 | static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh, |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 254 | __be32 *addr, __be32 new_addr) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 255 | { |
| 256 | int transport_len = skb->len - skb_transport_offset(skb); |
| 257 | |
| 258 | if (nh->protocol == IPPROTO_TCP) { |
| 259 | if (likely(transport_len >= sizeof(struct tcphdr))) |
| 260 | inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb, |
| 261 | *addr, new_addr, 1); |
| 262 | } else if (nh->protocol == IPPROTO_UDP) { |
Jesse Gross | 81e5d41 | 2012-03-06 15:05:46 -0800 | [diff] [blame] | 263 | if (likely(transport_len >= sizeof(struct udphdr))) { |
| 264 | struct udphdr *uh = udp_hdr(skb); |
| 265 | |
| 266 | if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) { |
| 267 | inet_proto_csum_replace4(&uh->check, skb, |
| 268 | *addr, new_addr, 1); |
| 269 | if (!uh->check) |
| 270 | uh->check = CSUM_MANGLED_0; |
| 271 | } |
| 272 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | csum_replace4(&nh->check, *addr, new_addr); |
Tom Herbert | 7539fad | 2013-12-15 22:12:18 -0800 | [diff] [blame] | 276 | skb_clear_hash(skb); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 277 | *addr = new_addr; |
| 278 | } |
| 279 | |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 280 | static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto, |
| 281 | __be32 addr[4], const __be32 new_addr[4]) |
| 282 | { |
| 283 | int transport_len = skb->len - skb_transport_offset(skb); |
| 284 | |
Jesse Gross | 856447d | 2014-11-11 14:32:20 -0800 | [diff] [blame] | 285 | if (l4_proto == NEXTHDR_TCP) { |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 286 | if (likely(transport_len >= sizeof(struct tcphdr))) |
| 287 | inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb, |
| 288 | addr, new_addr, 1); |
Jesse Gross | 856447d | 2014-11-11 14:32:20 -0800 | [diff] [blame] | 289 | } else if (l4_proto == NEXTHDR_UDP) { |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 290 | if (likely(transport_len >= sizeof(struct udphdr))) { |
| 291 | struct udphdr *uh = udp_hdr(skb); |
| 292 | |
| 293 | if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) { |
| 294 | inet_proto_csum_replace16(&uh->check, skb, |
| 295 | addr, new_addr, 1); |
| 296 | if (!uh->check) |
| 297 | uh->check = CSUM_MANGLED_0; |
| 298 | } |
| 299 | } |
Jesse Gross | 856447d | 2014-11-11 14:32:20 -0800 | [diff] [blame] | 300 | } else if (l4_proto == NEXTHDR_ICMP) { |
| 301 | if (likely(transport_len >= sizeof(struct icmp6hdr))) |
| 302 | inet_proto_csum_replace16(&icmp6_hdr(skb)->icmp6_cksum, |
| 303 | skb, addr, new_addr, 1); |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 304 | } |
| 305 | } |
| 306 | |
| 307 | static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto, |
| 308 | __be32 addr[4], const __be32 new_addr[4], |
| 309 | bool recalculate_csum) |
| 310 | { |
| 311 | if (recalculate_csum) |
| 312 | update_ipv6_checksum(skb, l4_proto, addr, new_addr); |
| 313 | |
Tom Herbert | 7539fad | 2013-12-15 22:12:18 -0800 | [diff] [blame] | 314 | skb_clear_hash(skb); |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 315 | memcpy(addr, new_addr, sizeof(__be32[4])); |
| 316 | } |
| 317 | |
| 318 | static void set_ipv6_tc(struct ipv6hdr *nh, u8 tc) |
| 319 | { |
| 320 | nh->priority = tc >> 4; |
| 321 | nh->flow_lbl[0] = (nh->flow_lbl[0] & 0x0F) | ((tc & 0x0F) << 4); |
| 322 | } |
| 323 | |
| 324 | static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl) |
| 325 | { |
| 326 | nh->flow_lbl[0] = (nh->flow_lbl[0] & 0xF0) | (fl & 0x000F0000) >> 16; |
| 327 | nh->flow_lbl[1] = (fl & 0x0000FF00) >> 8; |
| 328 | nh->flow_lbl[2] = fl & 0x000000FF; |
| 329 | } |
| 330 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 331 | static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl) |
| 332 | { |
| 333 | csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8)); |
| 334 | nh->ttl = new_ttl; |
| 335 | } |
| 336 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 337 | static int set_ipv4(struct sk_buff *skb, struct sw_flow_key *key, |
| 338 | const struct ovs_key_ipv4 *ipv4_key) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 339 | { |
| 340 | struct iphdr *nh; |
| 341 | int err; |
| 342 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 343 | err = skb_ensure_writable(skb, skb_network_offset(skb) + |
| 344 | sizeof(struct iphdr)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 345 | if (unlikely(err)) |
| 346 | return err; |
| 347 | |
| 348 | nh = ip_hdr(skb); |
| 349 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 350 | if (ipv4_key->ipv4_src != nh->saddr) { |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 351 | set_ip_addr(skb, nh, &nh->saddr, ipv4_key->ipv4_src); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 352 | key->ipv4.addr.src = ipv4_key->ipv4_src; |
| 353 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 354 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 355 | if (ipv4_key->ipv4_dst != nh->daddr) { |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 356 | set_ip_addr(skb, nh, &nh->daddr, ipv4_key->ipv4_dst); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 357 | key->ipv4.addr.dst = ipv4_key->ipv4_dst; |
| 358 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 359 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 360 | if (ipv4_key->ipv4_tos != nh->tos) { |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 361 | ipv4_change_dsfield(nh, 0, ipv4_key->ipv4_tos); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 362 | key->ip.tos = nh->tos; |
| 363 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 364 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 365 | if (ipv4_key->ipv4_ttl != nh->ttl) { |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 366 | set_ip_ttl(skb, nh, ipv4_key->ipv4_ttl); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 367 | key->ip.ttl = ipv4_key->ipv4_ttl; |
| 368 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 369 | |
| 370 | return 0; |
| 371 | } |
| 372 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 373 | static int set_ipv6(struct sk_buff *skb, struct sw_flow_key *key, |
| 374 | const struct ovs_key_ipv6 *ipv6_key) |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 375 | { |
| 376 | struct ipv6hdr *nh; |
| 377 | int err; |
| 378 | __be32 *saddr; |
| 379 | __be32 *daddr; |
| 380 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 381 | err = skb_ensure_writable(skb, skb_network_offset(skb) + |
| 382 | sizeof(struct ipv6hdr)); |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 383 | if (unlikely(err)) |
| 384 | return err; |
| 385 | |
| 386 | nh = ipv6_hdr(skb); |
| 387 | saddr = (__be32 *)&nh->saddr; |
| 388 | daddr = (__be32 *)&nh->daddr; |
| 389 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 390 | if (memcmp(ipv6_key->ipv6_src, saddr, sizeof(ipv6_key->ipv6_src))) { |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 391 | set_ipv6_addr(skb, ipv6_key->ipv6_proto, saddr, |
| 392 | ipv6_key->ipv6_src, true); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 393 | memcpy(&key->ipv6.addr.src, ipv6_key->ipv6_src, |
| 394 | sizeof(ipv6_key->ipv6_src)); |
| 395 | } |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 396 | |
| 397 | if (memcmp(ipv6_key->ipv6_dst, daddr, sizeof(ipv6_key->ipv6_dst))) { |
| 398 | unsigned int offset = 0; |
| 399 | int flags = IP6_FH_F_SKIP_RH; |
| 400 | bool recalc_csum = true; |
| 401 | |
| 402 | if (ipv6_ext_hdr(nh->nexthdr)) |
| 403 | recalc_csum = ipv6_find_hdr(skb, &offset, |
| 404 | NEXTHDR_ROUTING, NULL, |
| 405 | &flags) != NEXTHDR_ROUTING; |
| 406 | |
| 407 | set_ipv6_addr(skb, ipv6_key->ipv6_proto, daddr, |
| 408 | ipv6_key->ipv6_dst, recalc_csum); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 409 | memcpy(&key->ipv6.addr.dst, ipv6_key->ipv6_dst, |
| 410 | sizeof(ipv6_key->ipv6_dst)); |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | set_ipv6_tc(nh, ipv6_key->ipv6_tclass); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 414 | key->ip.tos = ipv6_get_dsfield(nh); |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 415 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 416 | set_ipv6_fl(nh, ntohl(ipv6_key->ipv6_label)); |
| 417 | key->ipv6.label = *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL); |
| 418 | |
| 419 | nh->hop_limit = ipv6_key->ipv6_hlimit; |
| 420 | key->ip.ttl = ipv6_key->ipv6_hlimit; |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 421 | return 0; |
| 422 | } |
| 423 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 424 | /* Must follow skb_ensure_writable() since that can move the skb data. */ |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 425 | static void set_tp_port(struct sk_buff *skb, __be16 *port, |
| 426 | __be16 new_port, __sum16 *check) |
| 427 | { |
| 428 | inet_proto_csum_replace2(check, skb, *port, new_port, 0); |
| 429 | *port = new_port; |
Tom Herbert | 7539fad | 2013-12-15 22:12:18 -0800 | [diff] [blame] | 430 | skb_clear_hash(skb); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Jesse Gross | 81e5d41 | 2012-03-06 15:05:46 -0800 | [diff] [blame] | 433 | static void set_udp_port(struct sk_buff *skb, __be16 *port, __be16 new_port) |
| 434 | { |
| 435 | struct udphdr *uh = udp_hdr(skb); |
| 436 | |
| 437 | if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) { |
| 438 | set_tp_port(skb, port, new_port, &uh->check); |
| 439 | |
| 440 | if (!uh->check) |
| 441 | uh->check = CSUM_MANGLED_0; |
| 442 | } else { |
| 443 | *port = new_port; |
Tom Herbert | 7539fad | 2013-12-15 22:12:18 -0800 | [diff] [blame] | 444 | skb_clear_hash(skb); |
Jesse Gross | 81e5d41 | 2012-03-06 15:05:46 -0800 | [diff] [blame] | 445 | } |
| 446 | } |
| 447 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 448 | static int set_udp(struct sk_buff *skb, struct sw_flow_key *key, |
| 449 | const struct ovs_key_udp *udp_port_key) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 450 | { |
| 451 | struct udphdr *uh; |
| 452 | int err; |
| 453 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 454 | err = skb_ensure_writable(skb, skb_transport_offset(skb) + |
| 455 | sizeof(struct udphdr)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 456 | if (unlikely(err)) |
| 457 | return err; |
| 458 | |
| 459 | uh = udp_hdr(skb); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 460 | if (udp_port_key->udp_src != uh->source) { |
Jesse Gross | 81e5d41 | 2012-03-06 15:05:46 -0800 | [diff] [blame] | 461 | set_udp_port(skb, &uh->source, udp_port_key->udp_src); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 462 | key->tp.src = udp_port_key->udp_src; |
| 463 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 464 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 465 | if (udp_port_key->udp_dst != uh->dest) { |
Jesse Gross | 81e5d41 | 2012-03-06 15:05:46 -0800 | [diff] [blame] | 466 | set_udp_port(skb, &uh->dest, udp_port_key->udp_dst); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 467 | key->tp.dst = udp_port_key->udp_dst; |
| 468 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 473 | static int set_tcp(struct sk_buff *skb, struct sw_flow_key *key, |
| 474 | const struct ovs_key_tcp *tcp_port_key) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 475 | { |
| 476 | struct tcphdr *th; |
| 477 | int err; |
| 478 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 479 | err = skb_ensure_writable(skb, skb_transport_offset(skb) + |
| 480 | sizeof(struct tcphdr)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 481 | if (unlikely(err)) |
| 482 | return err; |
| 483 | |
| 484 | th = tcp_hdr(skb); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 485 | if (tcp_port_key->tcp_src != th->source) { |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 486 | set_tp_port(skb, &th->source, tcp_port_key->tcp_src, &th->check); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 487 | key->tp.src = tcp_port_key->tcp_src; |
| 488 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 489 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 490 | if (tcp_port_key->tcp_dst != th->dest) { |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 491 | set_tp_port(skb, &th->dest, tcp_port_key->tcp_dst, &th->check); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 492 | key->tp.dst = tcp_port_key->tcp_dst; |
| 493 | } |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 494 | |
| 495 | return 0; |
| 496 | } |
| 497 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 498 | static int set_sctp(struct sk_buff *skb, struct sw_flow_key *key, |
| 499 | const struct ovs_key_sctp *sctp_port_key) |
Joe Stringer | a175a72 | 2013-08-22 12:30:48 -0700 | [diff] [blame] | 500 | { |
| 501 | struct sctphdr *sh; |
| 502 | int err; |
| 503 | unsigned int sctphoff = skb_transport_offset(skb); |
| 504 | |
Jiri Pirko | e219512 | 2014-11-19 14:05:01 +0100 | [diff] [blame] | 505 | err = skb_ensure_writable(skb, sctphoff + sizeof(struct sctphdr)); |
Joe Stringer | a175a72 | 2013-08-22 12:30:48 -0700 | [diff] [blame] | 506 | if (unlikely(err)) |
| 507 | return err; |
| 508 | |
| 509 | sh = sctp_hdr(skb); |
| 510 | if (sctp_port_key->sctp_src != sh->source || |
| 511 | sctp_port_key->sctp_dst != sh->dest) { |
| 512 | __le32 old_correct_csum, new_csum, old_csum; |
| 513 | |
| 514 | old_csum = sh->checksum; |
| 515 | old_correct_csum = sctp_compute_cksum(skb, sctphoff); |
| 516 | |
| 517 | sh->source = sctp_port_key->sctp_src; |
| 518 | sh->dest = sctp_port_key->sctp_dst; |
| 519 | |
| 520 | new_csum = sctp_compute_cksum(skb, sctphoff); |
| 521 | |
| 522 | /* Carry any checksum errors through. */ |
| 523 | sh->checksum = old_csum ^ old_correct_csum ^ new_csum; |
| 524 | |
Tom Herbert | 7539fad | 2013-12-15 22:12:18 -0800 | [diff] [blame] | 525 | skb_clear_hash(skb); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 526 | key->tp.src = sctp_port_key->sctp_src; |
| 527 | key->tp.dst = sctp_port_key->sctp_dst; |
Joe Stringer | a175a72 | 2013-08-22 12:30:48 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | return 0; |
| 531 | } |
| 532 | |
Andy Zhou | 738967b | 2014-09-08 00:35:02 -0700 | [diff] [blame] | 533 | static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 534 | { |
Andy Zhou | 738967b | 2014-09-08 00:35:02 -0700 | [diff] [blame] | 535 | struct vport *vport = ovs_vport_rcu(dp, out_port); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 536 | |
Andy Zhou | 738967b | 2014-09-08 00:35:02 -0700 | [diff] [blame] | 537 | if (likely(vport)) |
| 538 | ovs_vport_send(vport, skb); |
| 539 | else |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 540 | kfree_skb(skb); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | static int output_userspace(struct datapath *dp, struct sk_buff *skb, |
Pravin B Shelar | 2ff3e4e | 2014-09-15 19:15:28 -0700 | [diff] [blame] | 544 | struct sw_flow_key *key, const struct nlattr *attr) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 545 | { |
Wenyu Zhang | 8f0aad6 | 2014-11-06 06:51:24 -0800 | [diff] [blame] | 546 | struct ovs_tunnel_info info; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 547 | struct dp_upcall_info upcall; |
| 548 | const struct nlattr *a; |
| 549 | int rem; |
| 550 | |
| 551 | upcall.cmd = OVS_PACKET_CMD_ACTION; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 552 | upcall.userdata = NULL; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 553 | upcall.portid = 0; |
Wenyu Zhang | 8f0aad6 | 2014-11-06 06:51:24 -0800 | [diff] [blame] | 554 | upcall.egress_tun_info = NULL; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 555 | |
| 556 | for (a = nla_data(attr), rem = nla_len(attr); rem > 0; |
| 557 | a = nla_next(a, &rem)) { |
| 558 | switch (nla_type(a)) { |
| 559 | case OVS_USERSPACE_ATTR_USERDATA: |
| 560 | upcall.userdata = a; |
| 561 | break; |
| 562 | |
| 563 | case OVS_USERSPACE_ATTR_PID: |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 564 | upcall.portid = nla_get_u32(a); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 565 | break; |
Wenyu Zhang | 8f0aad6 | 2014-11-06 06:51:24 -0800 | [diff] [blame] | 566 | |
| 567 | case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: { |
| 568 | /* Get out tunnel info. */ |
| 569 | struct vport *vport; |
| 570 | |
| 571 | vport = ovs_vport_rcu(dp, nla_get_u32(a)); |
| 572 | if (vport) { |
| 573 | int err; |
| 574 | |
| 575 | err = ovs_vport_get_egress_tun_info(vport, skb, |
| 576 | &info); |
| 577 | if (!err) |
| 578 | upcall.egress_tun_info = &info; |
| 579 | } |
| 580 | break; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 581 | } |
Wenyu Zhang | 8f0aad6 | 2014-11-06 06:51:24 -0800 | [diff] [blame] | 582 | |
| 583 | } /* End of switch. */ |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 584 | } |
| 585 | |
Pravin B Shelar | e8eedb8 | 2014-11-06 06:57:27 -0800 | [diff] [blame] | 586 | return ovs_dp_upcall(dp, skb, key, &upcall); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | static int sample(struct datapath *dp, struct sk_buff *skb, |
Pravin B Shelar | 2ff3e4e | 2014-09-15 19:15:28 -0700 | [diff] [blame] | 590 | struct sw_flow_key *key, const struct nlattr *attr) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 591 | { |
| 592 | const struct nlattr *acts_list = NULL; |
| 593 | const struct nlattr *a; |
| 594 | int rem; |
| 595 | |
| 596 | for (a = nla_data(attr), rem = nla_len(attr); rem > 0; |
| 597 | a = nla_next(a, &rem)) { |
| 598 | switch (nla_type(a)) { |
| 599 | case OVS_SAMPLE_ATTR_PROBABILITY: |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 600 | if (prandom_u32() >= nla_get_u32(a)) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 601 | return 0; |
| 602 | break; |
| 603 | |
| 604 | case OVS_SAMPLE_ATTR_ACTIONS: |
| 605 | acts_list = a; |
| 606 | break; |
| 607 | } |
| 608 | } |
| 609 | |
Simon Horman | 651887b | 2014-07-21 15:12:34 -0700 | [diff] [blame] | 610 | rem = nla_len(acts_list); |
| 611 | a = nla_data(acts_list); |
| 612 | |
Andy Zhou | 32ae87f | 2014-09-15 19:33:50 -0700 | [diff] [blame] | 613 | /* Actions list is empty, do nothing */ |
| 614 | if (unlikely(!rem)) |
| 615 | return 0; |
Simon Horman | 651887b | 2014-07-21 15:12:34 -0700 | [diff] [blame] | 616 | |
Andy Zhou | 32ae87f | 2014-09-15 19:33:50 -0700 | [diff] [blame] | 617 | /* The only known usage of sample action is having a single user-space |
| 618 | * action. Treat this usage as a special case. |
| 619 | * The output_userspace() should clone the skb to be sent to the |
| 620 | * user space. This skb will be consumed by its caller. |
Simon Horman | 651887b | 2014-07-21 15:12:34 -0700 | [diff] [blame] | 621 | */ |
Andy Zhou | 32ae87f | 2014-09-15 19:33:50 -0700 | [diff] [blame] | 622 | if (likely(nla_type(a) == OVS_ACTION_ATTR_USERSPACE && |
Simon Horman | 941d8eb | 2014-10-27 16:12:16 +0900 | [diff] [blame] | 623 | nla_is_last(a, rem))) |
Andy Zhou | 32ae87f | 2014-09-15 19:33:50 -0700 | [diff] [blame] | 624 | return output_userspace(dp, skb, key, a); |
| 625 | |
| 626 | skb = skb_clone(skb, GFP_ATOMIC); |
| 627 | if (!skb) |
| 628 | /* Skip the sample action when out of memory. */ |
| 629 | return 0; |
| 630 | |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 631 | if (!add_deferred_actions(skb, key, a)) { |
| 632 | if (net_ratelimit()) |
| 633 | pr_warn("%s: deferred actions limit reached, dropping sample action\n", |
| 634 | ovs_dp_name(dp)); |
| 635 | |
| 636 | kfree_skb(skb); |
| 637 | } |
| 638 | return 0; |
| 639 | } |
| 640 | |
| 641 | static void execute_hash(struct sk_buff *skb, struct sw_flow_key *key, |
| 642 | const struct nlattr *attr) |
| 643 | { |
| 644 | struct ovs_action_hash *hash_act = nla_data(attr); |
| 645 | u32 hash = 0; |
| 646 | |
| 647 | /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */ |
| 648 | hash = skb_get_hash(skb); |
| 649 | hash = jhash_1word(hash, hash_act->hash_basis); |
| 650 | if (!hash) |
| 651 | hash = 0x1; |
| 652 | |
| 653 | key->ovs_flow_hash = hash; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 654 | } |
| 655 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 656 | static int execute_set_action(struct sk_buff *skb, struct sw_flow_key *key, |
| 657 | const struct nlattr *nested_attr) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 658 | { |
| 659 | int err = 0; |
| 660 | |
| 661 | switch (nla_type(nested_attr)) { |
| 662 | case OVS_KEY_ATTR_PRIORITY: |
| 663 | skb->priority = nla_get_u32(nested_attr); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 664 | key->phy.priority = skb->priority; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 665 | break; |
| 666 | |
Ansis Atteka | 39c7caeb | 2012-11-26 11:24:11 -0800 | [diff] [blame] | 667 | case OVS_KEY_ATTR_SKB_MARK: |
| 668 | skb->mark = nla_get_u32(nested_attr); |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 669 | key->phy.skb_mark = skb->mark; |
Ansis Atteka | 39c7caeb | 2012-11-26 11:24:11 -0800 | [diff] [blame] | 670 | break; |
| 671 | |
Jesse Gross | f0b128c | 2014-10-03 15:35:31 -0700 | [diff] [blame] | 672 | case OVS_KEY_ATTR_TUNNEL_INFO: |
| 673 | OVS_CB(skb)->egress_tun_info = nla_data(nested_attr); |
Pravin B Shelar | 7d5437c | 2013-06-17 17:50:18 -0700 | [diff] [blame] | 674 | break; |
| 675 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 676 | case OVS_KEY_ATTR_ETHERNET: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 677 | err = set_eth_addr(skb, key, nla_data(nested_attr)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 678 | break; |
| 679 | |
| 680 | case OVS_KEY_ATTR_IPV4: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 681 | err = set_ipv4(skb, key, nla_data(nested_attr)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 682 | break; |
| 683 | |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 684 | case OVS_KEY_ATTR_IPV6: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 685 | err = set_ipv6(skb, key, nla_data(nested_attr)); |
Ansis Atteka | 3fdbd1c | 2012-11-13 15:44:14 -0800 | [diff] [blame] | 686 | break; |
| 687 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 688 | case OVS_KEY_ATTR_TCP: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 689 | err = set_tcp(skb, key, nla_data(nested_attr)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 690 | break; |
| 691 | |
| 692 | case OVS_KEY_ATTR_UDP: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 693 | err = set_udp(skb, key, nla_data(nested_attr)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 694 | break; |
Joe Stringer | a175a72 | 2013-08-22 12:30:48 -0700 | [diff] [blame] | 695 | |
| 696 | case OVS_KEY_ATTR_SCTP: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 697 | err = set_sctp(skb, key, nla_data(nested_attr)); |
Joe Stringer | a175a72 | 2013-08-22 12:30:48 -0700 | [diff] [blame] | 698 | break; |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 699 | |
| 700 | case OVS_KEY_ATTR_MPLS: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 701 | err = set_mpls(skb, key, nla_data(nested_attr)); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 702 | break; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | return err; |
| 706 | } |
| 707 | |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 708 | static int execute_recirc(struct datapath *dp, struct sk_buff *skb, |
| 709 | struct sw_flow_key *key, |
| 710 | const struct nlattr *a, int rem) |
| 711 | { |
| 712 | struct deferred_action *da; |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 713 | |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 714 | if (!is_flow_key_valid(key)) { |
| 715 | int err; |
| 716 | |
| 717 | err = ovs_flow_key_update(skb, key); |
| 718 | if (err) |
| 719 | return err; |
| 720 | } |
| 721 | BUG_ON(!is_flow_key_valid(key)); |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 722 | |
Simon Horman | 941d8eb | 2014-10-27 16:12:16 +0900 | [diff] [blame] | 723 | if (!nla_is_last(a, rem)) { |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 724 | /* Recirc action is the not the last action |
| 725 | * of the action list, need to clone the skb. |
| 726 | */ |
| 727 | skb = skb_clone(skb, GFP_ATOMIC); |
| 728 | |
| 729 | /* Skip the recirc action when out of memory, but |
| 730 | * continue on with the rest of the action list. |
| 731 | */ |
| 732 | if (!skb) |
| 733 | return 0; |
| 734 | } |
| 735 | |
| 736 | da = add_deferred_actions(skb, key, NULL); |
| 737 | if (da) { |
| 738 | da->pkt_key.recirc_id = nla_get_u32(a); |
| 739 | } else { |
| 740 | kfree_skb(skb); |
| 741 | |
| 742 | if (net_ratelimit()) |
| 743 | pr_warn("%s: deferred action limit reached, drop recirc action\n", |
| 744 | ovs_dp_name(dp)); |
| 745 | } |
| 746 | |
| 747 | return 0; |
| 748 | } |
| 749 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 750 | /* Execute a list of actions against 'skb'. */ |
| 751 | static int do_execute_actions(struct datapath *dp, struct sk_buff *skb, |
Pravin B Shelar | 2ff3e4e | 2014-09-15 19:15:28 -0700 | [diff] [blame] | 752 | struct sw_flow_key *key, |
Simon Horman | 651887b | 2014-07-21 15:12:34 -0700 | [diff] [blame] | 753 | const struct nlattr *attr, int len) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 754 | { |
| 755 | /* Every output action needs a separate clone of 'skb', but the common |
| 756 | * case is just a single output action, so that doing a clone and |
| 757 | * then freeing the original skbuff is wasteful. So the following code |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 758 | * is slightly obscure just to avoid that. |
| 759 | */ |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 760 | int prev_port = -1; |
| 761 | const struct nlattr *a; |
| 762 | int rem; |
| 763 | |
| 764 | for (a = attr, rem = len; rem > 0; |
| 765 | a = nla_next(a, &rem)) { |
| 766 | int err = 0; |
| 767 | |
Andy Zhou | 738967b | 2014-09-08 00:35:02 -0700 | [diff] [blame] | 768 | if (unlikely(prev_port != -1)) { |
| 769 | struct sk_buff *out_skb = skb_clone(skb, GFP_ATOMIC); |
| 770 | |
| 771 | if (out_skb) |
| 772 | do_output(dp, out_skb, prev_port); |
| 773 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 774 | prev_port = -1; |
| 775 | } |
| 776 | |
| 777 | switch (nla_type(a)) { |
| 778 | case OVS_ACTION_ATTR_OUTPUT: |
| 779 | prev_port = nla_get_u32(a); |
| 780 | break; |
| 781 | |
| 782 | case OVS_ACTION_ATTR_USERSPACE: |
Pravin B Shelar | 2ff3e4e | 2014-09-15 19:15:28 -0700 | [diff] [blame] | 783 | output_userspace(dp, skb, key, a); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 784 | break; |
| 785 | |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 786 | case OVS_ACTION_ATTR_HASH: |
| 787 | execute_hash(skb, key, a); |
| 788 | break; |
| 789 | |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 790 | case OVS_ACTION_ATTR_PUSH_MPLS: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 791 | err = push_mpls(skb, key, nla_data(a)); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 792 | break; |
| 793 | |
| 794 | case OVS_ACTION_ATTR_POP_MPLS: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 795 | err = pop_mpls(skb, key, nla_get_be16(a)); |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 796 | break; |
| 797 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 798 | case OVS_ACTION_ATTR_PUSH_VLAN: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 799 | err = push_vlan(skb, key, nla_data(a)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 800 | break; |
| 801 | |
| 802 | case OVS_ACTION_ATTR_POP_VLAN: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 803 | err = pop_vlan(skb, key); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 804 | break; |
| 805 | |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 806 | case OVS_ACTION_ATTR_RECIRC: |
| 807 | err = execute_recirc(dp, skb, key, a, rem); |
Simon Horman | 941d8eb | 2014-10-27 16:12:16 +0900 | [diff] [blame] | 808 | if (nla_is_last(a, rem)) { |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 809 | /* If this is the last action, the skb has |
| 810 | * been consumed or freed. |
| 811 | * Return immediately. |
| 812 | */ |
| 813 | return err; |
| 814 | } |
| 815 | break; |
| 816 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 817 | case OVS_ACTION_ATTR_SET: |
Pravin B Shelar | fff06c3 | 2014-11-06 06:55:14 -0800 | [diff] [blame] | 818 | err = execute_set_action(skb, key, nla_data(a)); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 819 | break; |
| 820 | |
| 821 | case OVS_ACTION_ATTR_SAMPLE: |
Pravin B Shelar | 2ff3e4e | 2014-09-15 19:15:28 -0700 | [diff] [blame] | 822 | err = sample(dp, skb, key, a); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 823 | break; |
| 824 | } |
| 825 | |
| 826 | if (unlikely(err)) { |
| 827 | kfree_skb(skb); |
| 828 | return err; |
| 829 | } |
| 830 | } |
| 831 | |
Simon Horman | 651887b | 2014-07-21 15:12:34 -0700 | [diff] [blame] | 832 | if (prev_port != -1) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 833 | do_output(dp, skb, prev_port); |
Simon Horman | 651887b | 2014-07-21 15:12:34 -0700 | [diff] [blame] | 834 | else |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 835 | consume_skb(skb); |
| 836 | |
| 837 | return 0; |
| 838 | } |
| 839 | |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 840 | static void process_deferred_actions(struct datapath *dp) |
| 841 | { |
| 842 | struct action_fifo *fifo = this_cpu_ptr(action_fifos); |
| 843 | |
| 844 | /* Do not touch the FIFO in case there is no deferred actions. */ |
| 845 | if (action_fifo_is_empty(fifo)) |
| 846 | return; |
| 847 | |
| 848 | /* Finishing executing all deferred actions. */ |
| 849 | do { |
| 850 | struct deferred_action *da = action_fifo_get(fifo); |
| 851 | struct sk_buff *skb = da->skb; |
| 852 | struct sw_flow_key *key = &da->pkt_key; |
| 853 | const struct nlattr *actions = da->actions; |
| 854 | |
| 855 | if (actions) |
| 856 | do_execute_actions(dp, skb, key, actions, |
| 857 | nla_len(actions)); |
| 858 | else |
| 859 | ovs_dp_process_packet(skb, key); |
| 860 | } while (!action_fifo_is_empty(fifo)); |
| 861 | |
| 862 | /* Reset FIFO for the next packet. */ |
| 863 | action_fifo_init(fifo); |
| 864 | } |
| 865 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 866 | /* Execute a list of actions against 'skb'. */ |
Pravin B Shelar | 2ff3e4e | 2014-09-15 19:15:28 -0700 | [diff] [blame] | 867 | int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb, |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 868 | const struct sw_flow_actions *acts, |
| 869 | struct sw_flow_key *key) |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 870 | { |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 871 | int level = this_cpu_read(exec_actions_level); |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 872 | int err; |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 873 | |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 874 | this_cpu_inc(exec_actions_level); |
Jesse Gross | f0b128c | 2014-10-03 15:35:31 -0700 | [diff] [blame] | 875 | OVS_CB(skb)->egress_tun_info = NULL; |
Andy Zhou | 971427f3 | 2014-09-15 19:37:25 -0700 | [diff] [blame] | 876 | err = do_execute_actions(dp, skb, key, |
| 877 | acts->actions, acts->actions_len); |
| 878 | |
| 879 | if (!level) |
| 880 | process_deferred_actions(dp); |
| 881 | |
| 882 | this_cpu_dec(exec_actions_level); |
| 883 | return err; |
| 884 | } |
| 885 | |
| 886 | int action_fifos_init(void) |
| 887 | { |
| 888 | action_fifos = alloc_percpu(struct action_fifo); |
| 889 | if (!action_fifos) |
| 890 | return -ENOMEM; |
| 891 | |
| 892 | return 0; |
| 893 | } |
| 894 | |
| 895 | void action_fifos_exit(void) |
| 896 | { |
| 897 | free_percpu(action_fifos); |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 898 | } |