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