X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fodp-execute.c;h=12ad67981d3ae325a46a1681d2082e6b42bef178;hb=7d78f21c057ff50a823220d809ac38c3d907243c;hp=5b77fa9a925714b24132bd81e6a9619897a3ceca;hpb=758c456df570a1af1d9e913d50a3478785663e66;p=sliver-openvswitch.git diff --git a/lib/odp-execute.c b/lib/odp-execute.c index 5b77fa9a9..12ad67981 100644 --- a/lib/odp-execute.c +++ b/lib/odp-execute.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc. + * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc. * Copyright (c) 2013 Simon Horman * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -33,10 +33,12 @@ static void odp_eth_set_addrs(struct ofpbuf *packet, const struct ovs_key_ethernet *eth_key) { - struct eth_header *eh = packet->l2; + struct eth_header *eh = ofpbuf_l2(packet); - memcpy(eh->eth_src, eth_key->eth_src, sizeof eh->eth_src); - memcpy(eh->eth_dst, eth_key->eth_dst, sizeof eh->eth_dst); + if (eh) { + memcpy(eh->eth_src, eth_key->eth_src, sizeof eh->eth_src); + memcpy(eh->eth_dst, eth_key->eth_dst, sizeof eh->eth_dst); + } } static void @@ -51,7 +53,7 @@ odp_set_tunnel_action(const struct nlattr *a, struct flow_tnl *tun_key) static void set_arp(struct ofpbuf *packet, const struct ovs_key_arp *arp_key) { - struct arp_eth_header *arp = packet->l3; + struct arp_eth_header *arp = ofpbuf_l3(packet); arp->ar_op = arp_key->arp_op; memcpy(arp->ar_sha, arp_key->arp_sha, ETH_ADDR_LEN); @@ -125,6 +127,14 @@ odp_execute_set_action(struct ofpbuf *packet, const struct nlattr *a, set_arp(packet, nl_attr_get_unspec(a, sizeof(struct ovs_key_arp))); break; + case OVS_KEY_ATTR_DP_HASH: + md->dp_hash = nl_attr_get_u32(a); + break; + + case OVS_KEY_ATTR_RECIRC_ID: + md->recirc_id = nl_attr_get_u32(a); + break; + case OVS_KEY_ATTR_UNSPEC: case OVS_KEY_ATTR_ENCAP: case OVS_KEY_ATTR_ETHERTYPE: @@ -141,13 +151,14 @@ odp_execute_set_action(struct ofpbuf *packet, const struct nlattr *a, } static void -odp_execute_actions__(void *dp, struct ofpbuf *packet, struct pkt_metadata *, +odp_execute_actions__(void *dp, struct ofpbuf *packet, bool steal, + struct pkt_metadata *, const struct nlattr *actions, size_t actions_len, odp_execute_cb dp_execute_action, bool more_actions); static void -odp_execute_sample(void *dp, struct ofpbuf *packet, struct pkt_metadata *md, - const struct nlattr *action, +odp_execute_sample(void *dp, struct ofpbuf *packet, bool steal, + struct pkt_metadata *md, const struct nlattr *action, odp_execute_cb dp_execute_action, bool more_actions) { const struct nlattr *subactions = NULL; @@ -175,13 +186,14 @@ odp_execute_sample(void *dp, struct ofpbuf *packet, struct pkt_metadata *md, } } - odp_execute_actions__(dp, packet, md, nl_attr_get(subactions), + odp_execute_actions__(dp, packet, steal, md, nl_attr_get(subactions), nl_attr_get_size(subactions), dp_execute_action, more_actions); } static void -odp_execute_actions__(void *dp, struct ofpbuf *packet, struct pkt_metadata *md, +odp_execute_actions__(void *dp, struct ofpbuf *packet, bool steal, + struct pkt_metadata *md, const struct nlattr *actions, size_t actions_len, odp_execute_cb dp_execute_action, bool more_actions) { @@ -195,17 +207,21 @@ odp_execute_actions__(void *dp, struct ofpbuf *packet, struct pkt_metadata *md, /* These only make sense in the context of a datapath. */ case OVS_ACTION_ATTR_OUTPUT: case OVS_ACTION_ATTR_USERSPACE: + case OVS_ACTION_ATTR_RECIRC: + case OVS_ACTION_ATTR_HASH: if (dp_execute_action) { /* Allow 'dp_execute_action' to steal the packet data if we do * not need it any more. */ - bool steal = !more_actions && left <= NLA_ALIGN(a->nla_len); - dp_execute_action(dp, packet, md, a, steal); + bool may_steal = steal && (!more_actions + && left <= NLA_ALIGN(a->nla_len) + && type != OVS_ACTION_ATTR_RECIRC); + dp_execute_action(dp, packet, md, a, may_steal); } break; case OVS_ACTION_ATTR_PUSH_VLAN: { const struct ovs_action_push_vlan *vlan = nl_attr_get(a); - eth_push_vlan(packet, vlan->vlan_tci); + eth_push_vlan(packet, htons(ETH_TYPE_VLAN), vlan->vlan_tci); break; } @@ -228,7 +244,7 @@ odp_execute_actions__(void *dp, struct ofpbuf *packet, struct pkt_metadata *md, break; case OVS_ACTION_ATTR_SAMPLE: - odp_execute_sample(dp, packet, md, a, dp_execute_action, + odp_execute_sample(dp, packet, steal, md, a, dp_execute_action, more_actions || left > NLA_ALIGN(a->nla_len)); break; @@ -240,10 +256,16 @@ odp_execute_actions__(void *dp, struct ofpbuf *packet, struct pkt_metadata *md, } void -odp_execute_actions(void *dp, struct ofpbuf *packet, struct pkt_metadata *md, +odp_execute_actions(void *dp, struct ofpbuf *packet, bool steal, + struct pkt_metadata *md, const struct nlattr *actions, size_t actions_len, odp_execute_cb dp_execute_action) { - odp_execute_actions__(dp, packet, md, actions, actions_len, + odp_execute_actions__(dp, packet, steal, md, actions, actions_len, dp_execute_action, false); + + if (!actions_len && steal) { + /* Drop action. */ + ofpbuf_delete(packet); + } }