2009-07-08 13:19:16 -07:00
|
|
|
|
/*
|
2010-04-13 16:50:31 -07:00
|
|
|
|
* Copyright (c) 2009, 2010 Nicira Networks.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include "odp-util.h"
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2010-12-10 10:40:58 -08:00
|
|
|
|
#include "byte-order.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include "coverage.h"
|
|
|
|
|
#include "dynamic-string.h"
|
|
|
|
|
#include "flow.h"
|
2010-12-10 10:40:58 -08:00
|
|
|
|
#include "netlink.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include "packets.h"
|
|
|
|
|
#include "timeval.h"
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
2010-10-11 13:31:35 -07:00
|
|
|
|
void
|
|
|
|
|
format_odp_flow_key(struct ds *ds, const struct odp_flow_key *key)
|
|
|
|
|
{
|
2010-12-10 10:42:42 -08:00
|
|
|
|
ds_put_format(ds, "tun_id%#"PRIx64" in_port%d tci(",
|
|
|
|
|
ntohll(key->tun_id), key->in_port);
|
2010-10-08 16:26:21 -07:00
|
|
|
|
if (key->dl_tci) {
|
|
|
|
|
ds_put_format(ds, "vlan%"PRIu16",pcp%d",
|
|
|
|
|
vlan_tci_to_vid(key->dl_tci),
|
|
|
|
|
vlan_tci_to_pcp(key->dl_tci));
|
|
|
|
|
} else {
|
|
|
|
|
ds_put_char(ds, '0');
|
|
|
|
|
}
|
|
|
|
|
ds_put_format(ds, ") mac"ETH_ADDR_FMT"->"ETH_ADDR_FMT" type%04x "
|
|
|
|
|
"proto%"PRId8" tos%"PRIu8" ip"IP_FMT"->"IP_FMT" port%d->%d",
|
2010-10-11 13:31:35 -07:00
|
|
|
|
ETH_ADDR_ARGS(key->dl_src), ETH_ADDR_ARGS(key->dl_dst),
|
|
|
|
|
ntohs(key->dl_type), key->nw_proto, key->nw_tos,
|
|
|
|
|
IP_ARGS(&key->nw_src), IP_ARGS(&key->nw_dst),
|
|
|
|
|
ntohs(key->tp_src), ntohs(key->tp_dst));
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-10 10:40:58 -08:00
|
|
|
|
int
|
|
|
|
|
odp_action_len(uint16_t type)
|
|
|
|
|
{
|
|
|
|
|
if (type > ODPAT_MAX) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch ((enum odp_action_type) type) {
|
|
|
|
|
case ODPAT_OUTPUT: return 4;
|
2010-12-10 10:42:42 -08:00
|
|
|
|
case ODPAT_CONTROLLER: return 8;
|
2010-12-10 10:40:58 -08:00
|
|
|
|
case ODPAT_SET_DL_TCI: return 2;
|
|
|
|
|
case ODPAT_STRIP_VLAN: return 0;
|
|
|
|
|
case ODPAT_SET_DL_SRC: return ETH_ADDR_LEN;
|
|
|
|
|
case ODPAT_SET_DL_DST: return ETH_ADDR_LEN;
|
|
|
|
|
case ODPAT_SET_NW_SRC: return 4;
|
|
|
|
|
case ODPAT_SET_NW_DST: return 4;
|
|
|
|
|
case ODPAT_SET_NW_TOS: return 1;
|
|
|
|
|
case ODPAT_SET_TP_SRC: return 2;
|
|
|
|
|
case ODPAT_SET_TP_DST: return 2;
|
2010-12-10 10:42:42 -08:00
|
|
|
|
case ODPAT_SET_TUNNEL: return 8;
|
2010-12-10 10:40:58 -08:00
|
|
|
|
case ODPAT_SET_PRIORITY: return 4;
|
|
|
|
|
case ODPAT_POP_PRIORITY: return 0;
|
|
|
|
|
case ODPAT_DROP_SPOOFED_ARP: return 0;
|
|
|
|
|
|
|
|
|
|
case ODPAT_UNSPEC:
|
|
|
|
|
case __ODPAT_MAX:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
format_generic_odp_action(struct ds *ds, const struct nlattr *a)
|
|
|
|
|
{
|
|
|
|
|
ds_put_format(ds, "action%"PRId16, nl_attr_type(a));
|
|
|
|
|
if (a->nla_len) {
|
|
|
|
|
const uint8_t *unspec;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
unspec = nl_attr_get(a);
|
|
|
|
|
for (i = 0; i < a->nla_len; i++) {
|
|
|
|
|
ds_put_char(ds, i ? ' ': '(');
|
|
|
|
|
ds_put_format(ds, "%02x", unspec[i]);
|
|
|
|
|
}
|
|
|
|
|
ds_put_char(ds, ')');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
void
|
2010-12-10 10:40:58 -08:00
|
|
|
|
format_odp_action(struct ds *ds, const struct nlattr *a)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-12-10 10:40:58 -08:00
|
|
|
|
const uint8_t *eth;
|
|
|
|
|
ovs_be32 ip;
|
|
|
|
|
|
|
|
|
|
if (nl_attr_get_size(a) != odp_action_len(a->nla_len)) {
|
|
|
|
|
ds_put_format(ds, "***bad action: length is %zu, expected %d*** ",
|
|
|
|
|
nl_attr_get_size(a), odp_action_len(a->nla_len));
|
|
|
|
|
format_generic_odp_action(ds, a);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (nl_attr_type(a)) {
|
2009-07-08 13:19:16 -07:00
|
|
|
|
case ODPAT_OUTPUT:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
ds_put_format(ds, "%"PRIu16, nl_attr_get_u32(a));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
|
|
|
|
case ODPAT_CONTROLLER:
|
2010-12-10 10:42:42 -08:00
|
|
|
|
ds_put_format(ds, "ctl(%"PRIu64")", nl_attr_get_u64(a));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
2010-04-12 11:49:16 -04:00
|
|
|
|
case ODPAT_SET_TUNNEL:
|
2010-12-10 10:42:42 -08:00
|
|
|
|
ds_put_format(ds, "set_tunnel(%#"PRIx64")",
|
|
|
|
|
ntohll(nl_attr_get_be64(a)));
|
2010-04-12 11:49:16 -04:00
|
|
|
|
break;
|
2010-10-18 11:18:10 -07:00
|
|
|
|
case ODPAT_SET_DL_TCI:
|
|
|
|
|
ds_put_format(ds, "set_tci(vid=%"PRIu16",pcp=%d)",
|
2010-12-10 10:40:58 -08:00
|
|
|
|
vlan_tci_to_vid(nl_attr_get_be16(a)),
|
|
|
|
|
vlan_tci_to_pcp(nl_attr_get_be16(a)));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
|
|
|
|
case ODPAT_STRIP_VLAN:
|
|
|
|
|
ds_put_format(ds, "strip_vlan");
|
|
|
|
|
break;
|
|
|
|
|
case ODPAT_SET_DL_SRC:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
eth = nl_attr_get_unspec(a, ETH_ADDR_LEN);
|
|
|
|
|
ds_put_format(ds, "set_dl_src("ETH_ADDR_FMT")", ETH_ADDR_ARGS(eth));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
|
|
|
|
case ODPAT_SET_DL_DST:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
eth = nl_attr_get_unspec(a, ETH_ADDR_LEN);
|
|
|
|
|
ds_put_format(ds, "set_dl_dst("ETH_ADDR_FMT")", ETH_ADDR_ARGS(eth));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
|
|
|
|
case ODPAT_SET_NW_SRC:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
ip = nl_attr_get_be32(a);
|
|
|
|
|
ds_put_format(ds, "set_nw_src("IP_FMT")", IP_ARGS(&ip));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
|
|
|
|
case ODPAT_SET_NW_DST:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
ip = nl_attr_get_be32(a);
|
|
|
|
|
ds_put_format(ds, "set_nw_dst("IP_FMT")", IP_ARGS(&ip));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
2009-11-11 14:59:49 -08:00
|
|
|
|
case ODPAT_SET_NW_TOS:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
ds_put_format(ds, "set_nw_tos(%"PRIu8")", nl_attr_get_u8(a));
|
2009-11-11 14:59:49 -08:00
|
|
|
|
break;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
case ODPAT_SET_TP_SRC:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
ds_put_format(ds, "set_tp_src(%"PRIu16")", ntohs(nl_attr_get_be16(a)));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
|
|
|
|
case ODPAT_SET_TP_DST:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
ds_put_format(ds, "set_tp_dst(%"PRIu16")", ntohs(nl_attr_get_be16(a)));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
2010-07-16 15:30:09 -07:00
|
|
|
|
case ODPAT_SET_PRIORITY:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
ds_put_format(ds, "set_priority(%#"PRIx32")", nl_attr_get_u32(a));
|
2010-07-16 15:30:09 -07:00
|
|
|
|
break;
|
|
|
|
|
case ODPAT_POP_PRIORITY:
|
|
|
|
|
ds_put_cstr(ds, "pop_priority");
|
|
|
|
|
break;
|
2010-09-15 13:26:08 -07:00
|
|
|
|
case ODPAT_DROP_SPOOFED_ARP:
|
|
|
|
|
ds_put_cstr(ds, "drop_spoofed_arp");
|
|
|
|
|
break;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
default:
|
2010-12-10 10:40:58 -08:00
|
|
|
|
format_generic_odp_action(ds, a);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2010-12-10 10:40:58 -08:00
|
|
|
|
format_odp_actions(struct ds *ds, const struct nlattr *actions,
|
|
|
|
|
unsigned int actions_len)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-12-10 10:40:58 -08:00
|
|
|
|
if (actions_len) {
|
|
|
|
|
const struct nlattr *a;
|
|
|
|
|
unsigned int left;
|
|
|
|
|
|
|
|
|
|
NL_ATTR_FOR_EACH (a, left, actions, actions_len) {
|
|
|
|
|
if (a != actions) {
|
|
|
|
|
ds_put_char(ds, ',');
|
|
|
|
|
}
|
|
|
|
|
format_odp_action(ds, a);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
2010-12-10 10:40:58 -08:00
|
|
|
|
if (left) {
|
|
|
|
|
ds_put_format(ds, " ***%u leftover bytes***", left);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2009-07-08 13:19:16 -07:00
|
|
|
|
ds_put_cstr(ds, "drop");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
format_odp_flow_stats(struct ds *ds, const struct odp_flow_stats *s)
|
|
|
|
|
{
|
2009-11-06 10:43:50 -08:00
|
|
|
|
ds_put_format(ds, "packets:%llu, bytes:%llu, used:",
|
|
|
|
|
(unsigned long long int) s->n_packets,
|
|
|
|
|
(unsigned long long int) s->n_bytes);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
if (s->used_sec) {
|
|
|
|
|
long long int used = s->used_sec * 1000 + s->used_nsec / 1000000;
|
|
|
|
|
ds_put_format(ds, "%.3fs", (time_msec() - used) / 1000.0);
|
|
|
|
|
} else {
|
|
|
|
|
ds_put_format(ds, "never");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
format_odp_flow(struct ds *ds, const struct odp_flow *f)
|
|
|
|
|
{
|
2010-10-11 13:31:35 -07:00
|
|
|
|
format_odp_flow_key(ds, &f->key);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
ds_put_cstr(ds, ", ");
|
|
|
|
|
format_odp_flow_stats(ds, &f->stats);
|
|
|
|
|
ds_put_cstr(ds, ", actions:");
|
2010-12-10 10:40:58 -08:00
|
|
|
|
format_odp_actions(ds, f->actions, f->actions_len);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
2010-10-11 13:31:35 -07:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
odp_flow_key_from_flow(struct odp_flow_key *key, const struct flow *flow)
|
|
|
|
|
{
|
|
|
|
|
key->tun_id = flow->tun_id;
|
|
|
|
|
key->nw_src = flow->nw_src;
|
|
|
|
|
key->nw_dst = flow->nw_dst;
|
|
|
|
|
key->in_port = flow->in_port;
|
2010-11-23 10:06:28 -08:00
|
|
|
|
key->dl_tci = flow->vlan_tci;
|
2010-10-11 13:31:35 -07:00
|
|
|
|
key->dl_type = flow->dl_type;
|
|
|
|
|
key->tp_src = flow->tp_src;
|
|
|
|
|
key->tp_dst = flow->tp_dst;
|
|
|
|
|
memcpy(key->dl_src, flow->dl_src, ETH_ADDR_LEN);
|
|
|
|
|
memcpy(key->dl_dst, flow->dl_dst, ETH_ADDR_LEN);
|
|
|
|
|
key->nw_proto = flow->nw_proto;
|
|
|
|
|
key->nw_tos = flow->nw_tos;
|
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2010-10-11 13:31:35 -07:00
|
|
|
|
void
|
|
|
|
|
odp_flow_key_to_flow(const struct odp_flow_key *key, struct flow *flow)
|
|
|
|
|
{
|
2010-11-11 10:41:33 -08:00
|
|
|
|
memset(flow->regs, 0, sizeof flow->regs);
|
2010-10-11 13:31:35 -07:00
|
|
|
|
flow->tun_id = key->tun_id;
|
|
|
|
|
flow->nw_src = key->nw_src;
|
|
|
|
|
flow->nw_dst = key->nw_dst;
|
|
|
|
|
flow->in_port = key->in_port;
|
2010-11-23 10:06:28 -08:00
|
|
|
|
flow->vlan_tci = key->dl_tci;
|
2010-10-11 13:31:35 -07:00
|
|
|
|
flow->dl_type = key->dl_type;
|
|
|
|
|
flow->tp_src = key->tp_src;
|
|
|
|
|
flow->tp_dst = key->tp_dst;
|
|
|
|
|
memcpy(flow->dl_src, key->dl_src, ETH_ADDR_LEN);
|
|
|
|
|
memcpy(flow->dl_dst, key->dl_dst, ETH_ADDR_LEN);
|
|
|
|
|
flow->nw_proto = key->nw_proto;
|
|
|
|
|
flow->nw_tos = key->nw_tos;
|
|
|
|
|
}
|