mirror of
https://github.com/openvswitch/ovs
synced 2025-10-23 14:57:06 +00:00
odp-execute: Add set skb_mark, set_priority, tunnel support.
The motivation for this is to allow such actions to be honoured if they are encountered; by the user-space datapath before recirculation; or by internal processing of actions by ovs-vswitchd before recirculation. Recirculation will be added by a subsequent patch. Signed-off-by: Simon Horman <horms@verge.net.au> Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -159,6 +159,10 @@ static void dp_netdev_execute_actions(struct dp_netdev *,
|
||||
struct ofpbuf *, struct flow *,
|
||||
const struct nlattr *actions,
|
||||
size_t actions_len);
|
||||
static void dp_netdev_port_input(struct dp_netdev *dp,
|
||||
struct dp_netdev_port *port,
|
||||
struct ofpbuf *packet, uint32_t skb_priority,
|
||||
uint32_t skb_mark, const struct flow_tnl *tnl);
|
||||
|
||||
static struct dpif_netdev *
|
||||
dpif_netdev_cast(const struct dpif *dpif)
|
||||
@@ -1032,7 +1036,8 @@ dp_netdev_flow_used(struct dp_netdev_flow *flow, const struct ofpbuf *packet)
|
||||
|
||||
static void
|
||||
dp_netdev_port_input(struct dp_netdev *dp, struct dp_netdev_port *port,
|
||||
struct ofpbuf *packet)
|
||||
struct ofpbuf *packet, uint32_t skb_priority,
|
||||
uint32_t skb_mark, const struct flow_tnl *tnl)
|
||||
{
|
||||
struct dp_netdev_flow *flow;
|
||||
struct flow key;
|
||||
@@ -1040,7 +1045,7 @@ dp_netdev_port_input(struct dp_netdev *dp, struct dp_netdev_port *port,
|
||||
if (packet->size < ETH_HEADER_LEN) {
|
||||
return;
|
||||
}
|
||||
flow_extract(packet, 0, 0, NULL, port->port_no, &key);
|
||||
flow_extract(packet, skb_priority, skb_mark, tnl, port->port_no, &key);
|
||||
flow = dp_netdev_lookup_flow(dp, &key);
|
||||
if (flow) {
|
||||
dp_netdev_flow_used(flow, packet);
|
||||
@@ -1071,7 +1076,7 @@ dpif_netdev_run(struct dpif *dpif)
|
||||
|
||||
error = port->rx ? netdev_rx_recv(port->rx, &packet) : EOPNOTSUPP;
|
||||
if (!error) {
|
||||
dp_netdev_port_input(dp, port, &packet);
|
||||
dp_netdev_port_input(dp, port, &packet, 0, 0, NULL);
|
||||
} else if (error != EAGAIN && error != EOPNOTSUPP) {
|
||||
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
|
||||
VLOG_ERR_RL(&rl, "error receiving data from %s: %s",
|
||||
|
@@ -23,6 +23,7 @@
|
||||
|
||||
#include "netlink.h"
|
||||
#include "ofpbuf.h"
|
||||
#include "odp-util.h"
|
||||
#include "packets.h"
|
||||
#include "util.h"
|
||||
|
||||
@@ -36,7 +37,17 @@ odp_eth_set_addrs(struct ofpbuf *packet, const struct ovs_key_ethernet *eth_key)
|
||||
}
|
||||
|
||||
static void
|
||||
odp_execute_set_action(struct ofpbuf *packet, const struct nlattr *a)
|
||||
odp_set_tunnel_action(const struct nlattr *a, struct flow_tnl *tun_key)
|
||||
{
|
||||
enum odp_key_fitness fitness;
|
||||
|
||||
fitness = odp_tun_key_from_attr(a, tun_key);
|
||||
ovs_assert(fitness != ODP_FIT_ERROR);
|
||||
}
|
||||
|
||||
static void
|
||||
odp_execute_set_action(struct ofpbuf *packet, const struct nlattr *a,
|
||||
struct flow *flow)
|
||||
{
|
||||
enum ovs_key_attr type = nl_attr_type(a);
|
||||
const struct ovs_key_ipv4 *ipv4_key;
|
||||
@@ -46,9 +57,15 @@ odp_execute_set_action(struct ofpbuf *packet, const struct nlattr *a)
|
||||
|
||||
switch (type) {
|
||||
case OVS_KEY_ATTR_PRIORITY:
|
||||
flow->skb_priority = nl_attr_get_u32(a);
|
||||
break;
|
||||
|
||||
case OVS_KEY_ATTR_TUNNEL:
|
||||
odp_set_tunnel_action(a, &flow->tunnel);
|
||||
break;
|
||||
|
||||
case OVS_KEY_ATTR_SKB_MARK:
|
||||
/* not implemented */
|
||||
flow->skb_mark = nl_attr_get_u32(a);
|
||||
break;
|
||||
|
||||
case OVS_KEY_ATTR_ETHERNET:
|
||||
@@ -185,7 +202,7 @@ odp_execute_actions(void *dp, struct ofpbuf *packet, struct flow *key,
|
||||
break;
|
||||
|
||||
case OVS_ACTION_ATTR_SET:
|
||||
odp_execute_set_action(packet, nl_attr_get(a));
|
||||
odp_execute_set_action(packet, nl_attr_get(a), key);
|
||||
break;
|
||||
|
||||
case OVS_ACTION_ATTR_SAMPLE:
|
||||
|
Reference in New Issue
Block a user