2012-07-03 22:17:14 -07:00
|
|
|
|
/*
|
2013-01-03 09:02:52 -08:00
|
|
|
|
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
|
2012-07-03 22:17:14 -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:
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include "ofp-actions.h"
|
|
|
|
|
#include "bundle.h"
|
|
|
|
|
#include "byte-order.h"
|
|
|
|
|
#include "compiler.h"
|
|
|
|
|
#include "dynamic-string.h"
|
|
|
|
|
#include "learn.h"
|
|
|
|
|
#include "meta-flow.h"
|
|
|
|
|
#include "multipath.h"
|
|
|
|
|
#include "nx-match.h"
|
|
|
|
|
#include "ofp-util.h"
|
|
|
|
|
#include "ofpbuf.h"
|
2012-11-06 13:14:55 -08:00
|
|
|
|
#include "util.h"
|
2012-07-03 22:17:14 -07:00
|
|
|
|
#include "vlog.h"
|
|
|
|
|
|
|
|
|
|
VLOG_DEFINE_THIS_MODULE(ofp_actions);
|
|
|
|
|
|
|
|
|
|
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
|
|
|
|
|
|
|
|
|
|
/* Converting OpenFlow 1.0 to ofpacts. */
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
2012-07-03 22:14:29 -07:00
|
|
|
|
output_from_openflow10(const struct ofp10_action_output *oao,
|
2012-07-03 22:17:14 -07:00
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_output *output;
|
|
|
|
|
|
|
|
|
|
output = ofpact_put_OUTPUT(out);
|
2013-06-19 16:58:44 -07:00
|
|
|
|
output->port = u16_to_ofp(ntohs(oao->port));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
output->max_len = ntohs(oao->max_len);
|
|
|
|
|
|
|
|
|
|
return ofputil_check_output_port(output->port, OFPP_MAX);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
2012-12-03 12:37:56 +02:00
|
|
|
|
enqueue_from_openflow10(const struct ofp10_action_enqueue *oae,
|
2012-07-03 22:17:14 -07:00
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_enqueue *enqueue;
|
|
|
|
|
|
|
|
|
|
enqueue = ofpact_put_ENQUEUE(out);
|
2013-06-19 16:58:44 -07:00
|
|
|
|
enqueue->port = u16_to_ofp(ntohs(oae->port));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
enqueue->queue = ntohl(oae->queue_id);
|
2013-06-19 16:58:44 -07:00
|
|
|
|
if (ofp_to_u16(enqueue->port) >= ofp_to_u16(OFPP_MAX)
|
|
|
|
|
&& enqueue->port != OFPP_IN_PORT
|
2012-07-03 22:17:14 -07:00
|
|
|
|
&& enqueue->port != OFPP_LOCAL) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_OUT_PORT;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
resubmit_from_openflow(const struct nx_action_resubmit *nar,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_resubmit *resubmit;
|
|
|
|
|
|
|
|
|
|
resubmit = ofpact_put_RESUBMIT(out);
|
|
|
|
|
resubmit->ofpact.compat = OFPUTIL_NXAST_RESUBMIT;
|
2013-06-19 16:58:44 -07:00
|
|
|
|
resubmit->in_port = u16_to_ofp(ntohs(nar->in_port));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
resubmit->table_id = 0xff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
resubmit_table_from_openflow(const struct nx_action_resubmit *nar,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_resubmit *resubmit;
|
|
|
|
|
|
|
|
|
|
if (nar->pad[0] || nar->pad[1] || nar->pad[2]) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
resubmit = ofpact_put_RESUBMIT(out);
|
|
|
|
|
resubmit->ofpact.compat = OFPUTIL_NXAST_RESUBMIT_TABLE;
|
2013-06-19 16:58:44 -07:00
|
|
|
|
resubmit->in_port = u16_to_ofp(ntohs(nar->in_port));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
resubmit->table_id = nar->table;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
output_reg_from_openflow(const struct nx_action_output_reg *naor,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_output_reg *output_reg;
|
|
|
|
|
|
|
|
|
|
if (!is_all_zeros(naor->zero, sizeof naor->zero)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
output_reg = ofpact_put_OUTPUT_REG(out);
|
|
|
|
|
output_reg->src.field = mf_from_nxm_header(ntohl(naor->src));
|
|
|
|
|
output_reg->src.ofs = nxm_decode_ofs(naor->ofs_nbits);
|
|
|
|
|
output_reg->src.n_bits = nxm_decode_n_bits(naor->ofs_nbits);
|
|
|
|
|
output_reg->max_len = ntohs(naor->max_len);
|
|
|
|
|
|
|
|
|
|
return mf_check_src(&output_reg->src, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
fin_timeout_from_openflow(const struct nx_action_fin_timeout *naft,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_fin_timeout *oft;
|
|
|
|
|
|
|
|
|
|
oft = ofpact_put_FIN_TIMEOUT(out);
|
|
|
|
|
oft->fin_idle_timeout = ntohs(naft->fin_idle_timeout);
|
|
|
|
|
oft->fin_hard_timeout = ntohs(naft->fin_hard_timeout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
controller_from_openflow(const struct nx_action_controller *nac,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_controller *oc;
|
|
|
|
|
|
|
|
|
|
oc = ofpact_put_CONTROLLER(out);
|
|
|
|
|
oc->max_len = ntohs(nac->max_len);
|
|
|
|
|
oc->controller_id = ntohs(nac->controller_id);
|
|
|
|
|
oc->reason = nac->reason;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
static enum ofperr
|
|
|
|
|
metadata_from_nxast(const struct nx_action_write_metadata *nawm,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_metadata *om;
|
|
|
|
|
|
|
|
|
|
if (!is_all_zeros(nawm->zeros, sizeof nawm->zeros)) {
|
|
|
|
|
return OFPERR_NXBRC_MUST_BE_ZERO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
om = ofpact_put_WRITE_METADATA(out);
|
|
|
|
|
om->metadata = nawm->metadata;
|
|
|
|
|
om->mask = nawm->mask;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static void
|
|
|
|
|
note_from_openflow(const struct nx_action_note *nan, struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_note *note;
|
|
|
|
|
unsigned int length;
|
|
|
|
|
|
|
|
|
|
length = ntohs(nan->len) - offsetof(struct nx_action_note, note);
|
|
|
|
|
note = ofpact_put(out, OFPACT_NOTE,
|
|
|
|
|
offsetof(struct ofpact_note, data) + length);
|
|
|
|
|
note->length = length;
|
|
|
|
|
memcpy(note->data, nan->note, length);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-16 14:25:07 -07:00
|
|
|
|
static enum ofperr
|
2012-10-18 07:02:04 +09:00
|
|
|
|
dec_ttl_from_openflow(struct ofpbuf *out, enum ofputil_action_code compat)
|
2012-08-16 14:25:07 -07:00
|
|
|
|
{
|
|
|
|
|
uint16_t id = 0;
|
|
|
|
|
struct ofpact_cnt_ids *ids;
|
|
|
|
|
enum ofperr error = 0;
|
|
|
|
|
|
|
|
|
|
ids = ofpact_put_DEC_TTL(out);
|
2012-10-18 07:02:04 +09:00
|
|
|
|
ids->ofpact.compat = compat;
|
2012-08-16 14:25:07 -07:00
|
|
|
|
ids->n_controllers = 1;
|
|
|
|
|
ofpbuf_put(out, &id, sizeof id);
|
|
|
|
|
ids = out->l2;
|
|
|
|
|
ofpact_update_len(out, &ids->ofpact);
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
dec_ttl_cnt_ids_from_openflow(const struct nx_action_cnt_ids *nac_ids,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_cnt_ids *ids;
|
|
|
|
|
size_t ids_size;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
ids = ofpact_put_DEC_TTL(out);
|
|
|
|
|
ids->ofpact.compat = OFPUTIL_NXAST_DEC_TTL_CNT_IDS;
|
|
|
|
|
ids->n_controllers = ntohs(nac_ids->n_controllers);
|
|
|
|
|
ids_size = ntohs(nac_ids->len) - sizeof *nac_ids;
|
|
|
|
|
|
|
|
|
|
if (!is_all_zeros(nac_ids->zeros, sizeof nac_ids->zeros)) {
|
|
|
|
|
return OFPERR_NXBRC_MUST_BE_ZERO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ids_size < ids->n_controllers * sizeof(ovs_be16)) {
|
|
|
|
|
VLOG_WARN_RL(&rl, "Nicira action dec_ttl_cnt_ids only has %zu bytes "
|
|
|
|
|
"allocated for controller ids. %zu bytes are required for "
|
|
|
|
|
"%"PRIu16" controllers.", ids_size,
|
|
|
|
|
ids->n_controllers * sizeof(ovs_be16), ids->n_controllers);
|
|
|
|
|
return OFPERR_OFPBAC_BAD_LEN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < ids->n_controllers; i++) {
|
|
|
|
|
uint16_t id = ntohs(((ovs_be16 *)(nac_ids + 1))[i]);
|
|
|
|
|
ofpbuf_put(out, &id, sizeof id);
|
2013-06-03 14:46:30 +09:00
|
|
|
|
ids = out->l2;
|
2012-08-16 14:25:07 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ofpact_update_len(out, &ids->ofpact);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 10:01:14 -07:00
|
|
|
|
static enum ofperr
|
|
|
|
|
sample_from_openflow(const struct nx_action_sample *nas,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_sample *sample;
|
|
|
|
|
|
|
|
|
|
sample = ofpact_put_SAMPLE(out);
|
|
|
|
|
sample->probability = ntohs(nas->probability);
|
|
|
|
|
sample->collector_set_id = ntohl(nas->collector_set_id);
|
|
|
|
|
sample->obs_domain_id = ntohl(nas->obs_domain_id);
|
|
|
|
|
sample->obs_point_id = ntohl(nas->obs_point_id);
|
|
|
|
|
|
|
|
|
|
if (sample->probability == 0) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static enum ofperr
|
|
|
|
|
decode_nxast_action(const union ofp_action *a, enum ofputil_action_code *code)
|
|
|
|
|
{
|
|
|
|
|
const struct nx_action_header *nah = (const struct nx_action_header *) a;
|
|
|
|
|
uint16_t len = ntohs(a->header.len);
|
|
|
|
|
|
|
|
|
|
if (len < sizeof(struct nx_action_header)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_LEN;
|
|
|
|
|
} else if (a->vendor.vendor != CONSTANT_HTONL(NX_VENDOR_ID)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_VENDOR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (nah->subtype) {
|
|
|
|
|
#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
|
|
|
|
|
case CONSTANT_HTONS(ENUM): \
|
|
|
|
|
if (EXTENSIBLE \
|
|
|
|
|
? len >= sizeof(struct STRUCT) \
|
|
|
|
|
: len == sizeof(struct STRUCT)) { \
|
|
|
|
|
*code = OFPUTIL_##ENUM; \
|
|
|
|
|
return 0; \
|
|
|
|
|
} else { \
|
|
|
|
|
return OFPERR_OFPBAC_BAD_LEN; \
|
|
|
|
|
} \
|
|
|
|
|
NOT_REACHED();
|
|
|
|
|
#include "ofp-util.def"
|
|
|
|
|
|
|
|
|
|
case CONSTANT_HTONS(NXAST_SNAT__OBSOLETE):
|
|
|
|
|
case CONSTANT_HTONS(NXAST_DROP_SPOOFED_ARP__OBSOLETE):
|
|
|
|
|
default:
|
|
|
|
|
return OFPERR_OFPBAC_BAD_TYPE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parses 'a' to determine its type. On success stores the correct type into
|
|
|
|
|
* '*code' and returns 0. On failure returns an OFPERR_* error code and
|
|
|
|
|
* '*code' is indeterminate.
|
|
|
|
|
*
|
|
|
|
|
* The caller must have already verified that 'a''s length is potentially
|
|
|
|
|
* correct (that is, a->header.len is nonzero and a multiple of sizeof(union
|
|
|
|
|
* ofp_action) and no longer than the amount of space allocated to 'a').
|
|
|
|
|
*
|
|
|
|
|
* This function verifies that 'a''s length is correct for the type of action
|
|
|
|
|
* that it represents. */
|
|
|
|
|
static enum ofperr
|
|
|
|
|
decode_openflow10_action(const union ofp_action *a,
|
|
|
|
|
enum ofputil_action_code *code)
|
|
|
|
|
{
|
|
|
|
|
switch (a->type) {
|
|
|
|
|
case CONSTANT_HTONS(OFPAT10_VENDOR):
|
|
|
|
|
return decode_nxast_action(a, code);
|
|
|
|
|
|
|
|
|
|
#define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
|
|
|
|
|
case CONSTANT_HTONS(ENUM): \
|
|
|
|
|
if (a->header.len == htons(sizeof(struct STRUCT))) { \
|
|
|
|
|
*code = OFPUTIL_##ENUM; \
|
|
|
|
|
return 0; \
|
|
|
|
|
} else { \
|
|
|
|
|
return OFPERR_OFPBAC_BAD_LEN; \
|
|
|
|
|
} \
|
|
|
|
|
break;
|
|
|
|
|
#include "ofp-util.def"
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return OFPERR_OFPBAC_BAD_TYPE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
2012-07-03 22:14:29 -07:00
|
|
|
|
ofpact_from_nxast(const union ofp_action *a, enum ofputil_action_code code,
|
|
|
|
|
struct ofpbuf *out)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
const struct nx_action_resubmit *nar;
|
|
|
|
|
const struct nx_action_set_tunnel *nast;
|
|
|
|
|
const struct nx_action_set_queue *nasq;
|
|
|
|
|
const struct nx_action_note *nan;
|
|
|
|
|
const struct nx_action_set_tunnel64 *nast64;
|
2012-10-19 02:37:37 +09:00
|
|
|
|
const struct nx_action_write_metadata *nawm;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
struct ofpact_tunnel *tunnel;
|
2012-07-03 22:14:29 -07:00
|
|
|
|
enum ofperr error = 0;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
|
case OFPUTIL_ACTION_INVALID:
|
2012-07-03 22:14:29 -07:00
|
|
|
|
#define OFPAT10_ACTION(ENUM, STRUCT, NAME) case OFPUTIL_##ENUM:
|
2012-09-24 13:18:38 -07:00
|
|
|
|
#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
|
2012-07-03 22:14:29 -07:00
|
|
|
|
#include "ofp-util.def"
|
2012-07-03 22:17:14 -07:00
|
|
|
|
NOT_REACHED();
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_RESUBMIT:
|
|
|
|
|
resubmit_from_openflow((const struct nx_action_resubmit *) a, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_SET_TUNNEL:
|
|
|
|
|
nast = (const struct nx_action_set_tunnel *) a;
|
|
|
|
|
tunnel = ofpact_put_SET_TUNNEL(out);
|
|
|
|
|
tunnel->ofpact.compat = code;
|
|
|
|
|
tunnel->tun_id = ntohl(nast->tun_id);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
case OFPUTIL_NXAST_WRITE_METADATA:
|
2013-07-22 15:47:19 -07:00
|
|
|
|
nawm = ALIGNED_CAST(const struct nx_action_write_metadata *, a);
|
2012-10-19 02:37:37 +09:00
|
|
|
|
error = metadata_from_nxast(nawm, out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPUTIL_NXAST_SET_QUEUE:
|
|
|
|
|
nasq = (const struct nx_action_set_queue *) a;
|
|
|
|
|
ofpact_put_SET_QUEUE(out)->queue_id = ntohl(nasq->queue_id);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_POP_QUEUE:
|
|
|
|
|
ofpact_put_POP_QUEUE(out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_REG_MOVE:
|
|
|
|
|
error = nxm_reg_move_from_openflow(
|
|
|
|
|
(const struct nx_action_reg_move *) a, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_REG_LOAD:
|
|
|
|
|
error = nxm_reg_load_from_openflow(
|
2013-07-22 15:47:19 -07:00
|
|
|
|
ALIGNED_CAST(const struct nx_action_reg_load *, a), out);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2013-03-05 16:27:55 -08:00
|
|
|
|
case OFPUTIL_NXAST_STACK_PUSH:
|
|
|
|
|
error = nxm_stack_push_from_openflow(
|
|
|
|
|
(const struct nx_action_stack *) a, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_STACK_POP:
|
|
|
|
|
error = nxm_stack_pop_from_openflow(
|
|
|
|
|
(const struct nx_action_stack *) a, out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPUTIL_NXAST_NOTE:
|
|
|
|
|
nan = (const struct nx_action_note *) a;
|
|
|
|
|
note_from_openflow(nan, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_SET_TUNNEL64:
|
2013-07-22 15:47:19 -07:00
|
|
|
|
nast64 = ALIGNED_CAST(const struct nx_action_set_tunnel64 *, a);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
tunnel = ofpact_put_SET_TUNNEL(out);
|
|
|
|
|
tunnel->ofpact.compat = code;
|
|
|
|
|
tunnel->tun_id = ntohll(nast64->tun_id);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_MULTIPATH:
|
|
|
|
|
error = multipath_from_openflow((const struct nx_action_multipath *) a,
|
|
|
|
|
ofpact_put_MULTIPATH(out));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_BUNDLE:
|
|
|
|
|
case OFPUTIL_NXAST_BUNDLE_LOAD:
|
|
|
|
|
error = bundle_from_openflow((const struct nx_action_bundle *) a, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_OUTPUT_REG:
|
|
|
|
|
error = output_reg_from_openflow(
|
|
|
|
|
(const struct nx_action_output_reg *) a, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_RESUBMIT_TABLE:
|
|
|
|
|
nar = (const struct nx_action_resubmit *) a;
|
|
|
|
|
error = resubmit_table_from_openflow(nar, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_LEARN:
|
2013-07-22 15:47:19 -07:00
|
|
|
|
error = learn_from_openflow(
|
|
|
|
|
ALIGNED_CAST(const struct nx_action_learn *, a), out);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_EXIT:
|
|
|
|
|
ofpact_put_EXIT(out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_DEC_TTL:
|
2012-10-18 07:02:04 +09:00
|
|
|
|
error = dec_ttl_from_openflow(out, code);
|
2012-08-16 14:25:07 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_DEC_TTL_CNT_IDS:
|
|
|
|
|
error = dec_ttl_cnt_ids_from_openflow(
|
|
|
|
|
(const struct nx_action_cnt_ids *) a, out);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_FIN_TIMEOUT:
|
|
|
|
|
fin_timeout_from_openflow(
|
|
|
|
|
(const struct nx_action_fin_timeout *) a, out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_CONTROLLER:
|
|
|
|
|
controller_from_openflow((const struct nx_action_controller *) a, out);
|
|
|
|
|
break;
|
2013-01-25 16:22:07 +09:00
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_PUSH_MPLS: {
|
|
|
|
|
struct nx_action_push_mpls *nxapm = (struct nx_action_push_mpls *)a;
|
|
|
|
|
if (!eth_type_mpls(nxapm->ethertype)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_PUSH_MPLS(out)->ethertype = nxapm->ethertype;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPUTIL_NXAST_SET_MPLS_TTL: {
|
|
|
|
|
struct nx_action_mpls_ttl *nxamt = (struct nx_action_mpls_ttl *)a;
|
|
|
|
|
ofpact_put_SET_MPLS_TTL(out)->ttl = nxamt->ttl;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPUTIL_NXAST_DEC_MPLS_TTL:
|
|
|
|
|
ofpact_put_DEC_MPLS_TTL(out);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPUTIL_NXAST_POP_MPLS: {
|
|
|
|
|
struct nx_action_pop_mpls *nxapm = (struct nx_action_pop_mpls *)a;
|
|
|
|
|
if (eth_type_mpls(nxapm->ethertype)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_POP_MPLS(out)->ethertype = nxapm->ethertype;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2013-04-22 10:01:14 -07:00
|
|
|
|
|
|
|
|
|
case OFPUTIL_NXAST_SAMPLE:
|
|
|
|
|
error = sample_from_openflow(
|
|
|
|
|
(const struct nx_action_sample *) a, out);
|
|
|
|
|
break;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
static enum ofperr
|
|
|
|
|
ofpact_from_openflow10(const union ofp_action *a, struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
enum ofputil_action_code code;
|
|
|
|
|
enum ofperr error;
|
|
|
|
|
|
|
|
|
|
error = decode_openflow10_action(a, &code);
|
|
|
|
|
if (error) {
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
|
case OFPUTIL_ACTION_INVALID:
|
2012-09-24 13:18:38 -07:00
|
|
|
|
#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
|
2012-07-03 22:14:29 -07:00
|
|
|
|
#include "ofp-util.def"
|
|
|
|
|
NOT_REACHED();
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_OUTPUT:
|
|
|
|
|
return output_from_openflow10(&a->output10, out);
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_VLAN_VID:
|
|
|
|
|
if (a->vlan_vid.vlan_vid & ~htons(0xfff)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_SET_VLAN_VID(out)->vlan_vid = ntohs(a->vlan_vid.vlan_vid);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_VLAN_PCP:
|
|
|
|
|
if (a->vlan_pcp.vlan_pcp & ~7) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_SET_VLAN_PCP(out)->vlan_pcp = a->vlan_pcp.vlan_pcp;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_STRIP_VLAN:
|
|
|
|
|
ofpact_put_STRIP_VLAN(out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_DL_SRC:
|
|
|
|
|
memcpy(ofpact_put_SET_ETH_SRC(out)->mac,
|
|
|
|
|
((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_DL_DST:
|
|
|
|
|
memcpy(ofpact_put_SET_ETH_DST(out)->mac,
|
|
|
|
|
((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_NW_SRC:
|
|
|
|
|
ofpact_put_SET_IPV4_SRC(out)->ipv4 = a->nw_addr.nw_addr;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_NW_DST:
|
|
|
|
|
ofpact_put_SET_IPV4_DST(out)->ipv4 = a->nw_addr.nw_addr;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_NW_TOS:
|
|
|
|
|
if (a->nw_tos.nw_tos & ~IP_DSCP_MASK) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_SET_IPV4_DSCP(out)->dscp = a->nw_tos.nw_tos;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_TP_SRC:
|
|
|
|
|
ofpact_put_SET_L4_SRC_PORT(out)->port = ntohs(a->tp_port.tp_port);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_SET_TP_DST:
|
|
|
|
|
ofpact_put_SET_L4_DST_PORT(out)->port = ntohs(a->tp_port.tp_port);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT10_ENQUEUE:
|
2012-12-03 12:37:56 +02:00
|
|
|
|
error = enqueue_from_openflow10((const struct ofp10_action_enqueue *) a,
|
2012-07-03 22:14:29 -07:00
|
|
|
|
out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
|
|
|
|
|
#include "ofp-util.def"
|
|
|
|
|
return ofpact_from_nxast(a, code, out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static inline union ofp_action *
|
|
|
|
|
action_next(const union ofp_action *a)
|
|
|
|
|
{
|
|
|
|
|
return ((union ofp_action *) (void *)
|
|
|
|
|
((uint8_t *) a + ntohs(a->header.len)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
|
action_is_valid(const union ofp_action *a, size_t n_actions)
|
|
|
|
|
{
|
|
|
|
|
uint16_t len = ntohs(a->header.len);
|
|
|
|
|
return (!(len % OFP_ACTION_ALIGN)
|
|
|
|
|
&& len >= sizeof *a
|
|
|
|
|
&& len / sizeof *a <= n_actions);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This macro is careful to check for actions with bad lengths. */
|
|
|
|
|
#define ACTION_FOR_EACH(ITER, LEFT, ACTIONS, N_ACTIONS) \
|
|
|
|
|
for ((ITER) = (ACTIONS), (LEFT) = (N_ACTIONS); \
|
|
|
|
|
(LEFT) > 0 && action_is_valid(ITER, LEFT); \
|
|
|
|
|
((LEFT) -= ntohs((ITER)->header.len) / sizeof(union ofp_action), \
|
|
|
|
|
(ITER) = action_next(ITER)))
|
|
|
|
|
|
2012-07-12 12:29:40 -07:00
|
|
|
|
static void
|
|
|
|
|
log_bad_action(const union ofp_action *actions, size_t n_actions, size_t ofs,
|
|
|
|
|
enum ofperr error)
|
|
|
|
|
{
|
|
|
|
|
if (!VLOG_DROP_WARN(&rl)) {
|
|
|
|
|
struct ds s;
|
|
|
|
|
|
|
|
|
|
ds_init(&s);
|
|
|
|
|
ds_put_hex_dump(&s, actions, n_actions * sizeof *actions, 0, false);
|
|
|
|
|
VLOG_WARN("bad action at offset %#zx (%s):\n%s",
|
|
|
|
|
ofs * sizeof *actions, ofperr_get_name(error), ds_cstr(&s));
|
|
|
|
|
ds_destroy(&s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static enum ofperr
|
2012-07-18 20:41:15 +09:00
|
|
|
|
ofpacts_from_openflow(const union ofp_action *in, size_t n_in,
|
|
|
|
|
struct ofpbuf *out,
|
|
|
|
|
enum ofperr (*ofpact_from_openflow)(
|
|
|
|
|
const union ofp_action *a, struct ofpbuf *out))
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
const union ofp_action *a;
|
|
|
|
|
size_t left;
|
|
|
|
|
|
|
|
|
|
ACTION_FOR_EACH (a, left, in, n_in) {
|
2012-07-18 20:41:15 +09:00
|
|
|
|
enum ofperr error = ofpact_from_openflow(a, out);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
if (error) {
|
2012-07-12 12:29:40 -07:00
|
|
|
|
log_bad_action(in, n_in, a - in, error);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (left) {
|
2012-07-12 12:29:40 -07:00
|
|
|
|
enum ofperr error = OFPERR_OFPBAC_BAD_LEN;
|
|
|
|
|
log_bad_action(in, n_in, n_in - left, error);
|
|
|
|
|
return error;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ofpact_pad(out);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-18 20:41:15 +09:00
|
|
|
|
static enum ofperr
|
|
|
|
|
ofpacts_from_openflow10(const union ofp_action *in, size_t n_in,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
return ofpacts_from_openflow(in, n_in, out, ofpact_from_openflow10);
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
static enum ofperr
|
|
|
|
|
ofpacts_pull_actions(struct ofpbuf *openflow, unsigned int actions_len,
|
|
|
|
|
struct ofpbuf *ofpacts,
|
|
|
|
|
enum ofperr (*translate)(const union ofp_action *actions,
|
|
|
|
|
size_t n_actions,
|
|
|
|
|
struct ofpbuf *ofpacts))
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
|
|
|
|
|
const union ofp_action *actions;
|
|
|
|
|
enum ofperr error;
|
|
|
|
|
|
|
|
|
|
ofpbuf_clear(ofpacts);
|
|
|
|
|
|
|
|
|
|
if (actions_len % OFP_ACTION_ALIGN != 0) {
|
|
|
|
|
VLOG_WARN_RL(&rl, "OpenFlow message actions length %u is not a "
|
|
|
|
|
"multiple of %d", actions_len, OFP_ACTION_ALIGN);
|
|
|
|
|
return OFPERR_OFPBRC_BAD_LEN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
actions = ofpbuf_try_pull(openflow, actions_len);
|
|
|
|
|
if (actions == NULL) {
|
|
|
|
|
VLOG_WARN_RL(&rl, "OpenFlow message actions length %u exceeds "
|
|
|
|
|
"remaining message length (%zu)",
|
|
|
|
|
actions_len, openflow->size);
|
|
|
|
|
return OFPERR_OFPBRC_BAD_LEN;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
error = translate(actions, actions_len / OFP_ACTION_ALIGN, ofpacts);
|
2012-10-19 02:37:37 +09:00
|
|
|
|
if (error) {
|
|
|
|
|
ofpbuf_clear(ofpacts);
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
error = ofpacts_verify(ofpacts->data, ofpacts->size);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
if (error) {
|
|
|
|
|
ofpbuf_clear(ofpacts);
|
|
|
|
|
}
|
2012-07-03 22:14:29 -07:00
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attempts to convert 'actions_len' bytes of OpenFlow 1.0 actions from the
|
|
|
|
|
* front of 'openflow' into ofpacts. On success, replaces any existing content
|
|
|
|
|
* in 'ofpacts' by the converted ofpacts; on failure, clears 'ofpacts'.
|
|
|
|
|
* Returns 0 if successful, otherwise an OpenFlow error.
|
|
|
|
|
*
|
2012-07-16 09:37:22 -07:00
|
|
|
|
* The parsed actions are valid generically, but they may not be valid in a
|
|
|
|
|
* specific context. For example, port numbers up to OFPP_MAX are valid
|
|
|
|
|
* generically, but specific datapaths may only support port numbers in a
|
|
|
|
|
* smaller range. Use ofpacts_check() to additional check whether actions are
|
|
|
|
|
* valid in a specific context. */
|
2012-07-03 22:14:29 -07:00
|
|
|
|
enum ofperr
|
|
|
|
|
ofpacts_pull_openflow10(struct ofpbuf *openflow, unsigned int actions_len,
|
|
|
|
|
struct ofpbuf *ofpacts)
|
|
|
|
|
{
|
|
|
|
|
return ofpacts_pull_actions(openflow, actions_len, ofpacts,
|
|
|
|
|
ofpacts_from_openflow10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* OpenFlow 1.1 actions. */
|
|
|
|
|
|
|
|
|
|
/* Parses 'a' to determine its type. On success stores the correct type into
|
|
|
|
|
* '*code' and returns 0. On failure returns an OFPERR_* error code and
|
|
|
|
|
* '*code' is indeterminate.
|
|
|
|
|
*
|
|
|
|
|
* The caller must have already verified that 'a''s length is potentially
|
|
|
|
|
* correct (that is, a->header.len is nonzero and a multiple of sizeof(union
|
|
|
|
|
* ofp_action) and no longer than the amount of space allocated to 'a').
|
|
|
|
|
*
|
|
|
|
|
* This function verifies that 'a''s length is correct for the type of action
|
|
|
|
|
* that it represents. */
|
|
|
|
|
static enum ofperr
|
|
|
|
|
decode_openflow11_action(const union ofp_action *a,
|
|
|
|
|
enum ofputil_action_code *code)
|
|
|
|
|
{
|
2012-09-24 13:18:38 -07:00
|
|
|
|
uint16_t len;
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
switch (a->type) {
|
|
|
|
|
case CONSTANT_HTONS(OFPAT11_EXPERIMENTER):
|
|
|
|
|
return decode_nxast_action(a, code);
|
|
|
|
|
|
2012-09-24 13:18:38 -07:00
|
|
|
|
#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
|
|
|
|
|
case CONSTANT_HTONS(ENUM): \
|
|
|
|
|
len = ntohs(a->header.len); \
|
|
|
|
|
if (EXTENSIBLE \
|
|
|
|
|
? len >= sizeof(struct STRUCT) \
|
|
|
|
|
: len == sizeof(struct STRUCT)) { \
|
|
|
|
|
*code = OFPUTIL_##ENUM; \
|
|
|
|
|
return 0; \
|
|
|
|
|
} else { \
|
|
|
|
|
return OFPERR_OFPBAC_BAD_LEN; \
|
|
|
|
|
} \
|
|
|
|
|
NOT_REACHED();
|
2012-07-03 22:14:29 -07:00
|
|
|
|
#include "ofp-util.def"
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return OFPERR_OFPBAC_BAD_TYPE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
output_from_openflow11(const struct ofp11_action_output *oao,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact_output *output;
|
|
|
|
|
enum ofperr error;
|
|
|
|
|
|
|
|
|
|
output = ofpact_put_OUTPUT(out);
|
|
|
|
|
output->max_len = ntohs(oao->max_len);
|
|
|
|
|
|
|
|
|
|
error = ofputil_port_from_ofp11(oao->port, &output->port);
|
|
|
|
|
if (error) {
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ofputil_check_output_port(output->port, OFPP_MAX);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
ofpact_from_openflow11(const union ofp_action *a, struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
enum ofputil_action_code code;
|
|
|
|
|
enum ofperr error;
|
|
|
|
|
|
|
|
|
|
error = decode_openflow11_action(a, &code);
|
|
|
|
|
if (error) {
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
|
case OFPUTIL_ACTION_INVALID:
|
|
|
|
|
#define OFPAT10_ACTION(ENUM, STRUCT, NAME) case OFPUTIL_##ENUM:
|
|
|
|
|
#include "ofp-util.def"
|
|
|
|
|
NOT_REACHED();
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_OUTPUT:
|
|
|
|
|
return output_from_openflow11((const struct ofp11_action_output *) a,
|
|
|
|
|
out);
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_SET_VLAN_VID:
|
|
|
|
|
if (a->vlan_vid.vlan_vid & ~htons(0xfff)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_SET_VLAN_VID(out)->vlan_vid = ntohs(a->vlan_vid.vlan_vid);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_SET_VLAN_PCP:
|
|
|
|
|
if (a->vlan_pcp.vlan_pcp & ~7) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_SET_VLAN_PCP(out)->vlan_pcp = a->vlan_pcp.vlan_pcp;
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-26 13:43:19 +09:00
|
|
|
|
case OFPUTIL_OFPAT11_PUSH_VLAN:
|
|
|
|
|
if (((const struct ofp11_action_push *)a)->ethertype !=
|
|
|
|
|
htons(ETH_TYPE_VLAN_8021Q)) {
|
2012-12-14 20:43:30 -08:00
|
|
|
|
/* XXX 802.1AD(QinQ) isn't supported at the moment */
|
2012-11-30 13:45:08 -08:00
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
2012-10-26 13:43:19 +09:00
|
|
|
|
}
|
|
|
|
|
ofpact_put_PUSH_VLAN(out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-18 03:51:58 +09:00
|
|
|
|
case OFPUTIL_OFPAT11_POP_VLAN:
|
|
|
|
|
ofpact_put_STRIP_VLAN(out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-11-30 10:04:06 +09:00
|
|
|
|
case OFPUTIL_OFPAT11_SET_QUEUE:
|
|
|
|
|
ofpact_put_SET_QUEUE(out)->queue_id =
|
|
|
|
|
ntohl(((const struct ofp11_action_set_queue *)a)->queue_id);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
case OFPUTIL_OFPAT11_SET_DL_SRC:
|
|
|
|
|
memcpy(ofpact_put_SET_ETH_SRC(out)->mac,
|
|
|
|
|
((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_SET_DL_DST:
|
|
|
|
|
memcpy(ofpact_put_SET_ETH_DST(out)->mac,
|
|
|
|
|
((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-18 07:02:04 +09:00
|
|
|
|
case OFPUTIL_OFPAT11_DEC_NW_TTL:
|
|
|
|
|
dec_ttl_from_openflow(out, code);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
case OFPUTIL_OFPAT11_SET_NW_SRC:
|
|
|
|
|
ofpact_put_SET_IPV4_SRC(out)->ipv4 = a->nw_addr.nw_addr;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_SET_NW_DST:
|
|
|
|
|
ofpact_put_SET_IPV4_DST(out)->ipv4 = a->nw_addr.nw_addr;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_SET_NW_TOS:
|
|
|
|
|
if (a->nw_tos.nw_tos & ~IP_DSCP_MASK) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_SET_IPV4_DSCP(out)->dscp = a->nw_tos.nw_tos;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_SET_TP_SRC:
|
|
|
|
|
ofpact_put_SET_L4_SRC_PORT(out)->port = ntohs(a->tp_port.tp_port);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_SET_TP_DST:
|
|
|
|
|
ofpact_put_SET_L4_DST_PORT(out)->port = ntohs(a->tp_port.tp_port);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-09-25 10:23:38 -07:00
|
|
|
|
case OFPUTIL_OFPAT12_SET_FIELD:
|
2012-09-24 13:11:11 -07:00
|
|
|
|
return nxm_reg_load_from_openflow12_set_field(
|
|
|
|
|
(const struct ofp12_action_set_field *)a, out);
|
2012-09-25 10:23:38 -07:00
|
|
|
|
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPUTIL_OFPAT11_SET_MPLS_TTL: {
|
|
|
|
|
struct ofp11_action_mpls_ttl *oamt = (struct ofp11_action_mpls_ttl *)a;
|
|
|
|
|
ofpact_put_SET_MPLS_TTL(out)->ttl = oamt->mpls_ttl;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPUTIL_OFPAT11_DEC_MPLS_TTL:
|
|
|
|
|
ofpact_put_DEC_MPLS_TTL(out);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPUTIL_OFPAT11_PUSH_MPLS: {
|
|
|
|
|
struct ofp11_action_push *oap = (struct ofp11_action_push *)a;
|
|
|
|
|
if (!eth_type_mpls(oap->ethertype)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_PUSH_MPLS(out)->ethertype = oap->ethertype;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case OFPUTIL_OFPAT11_POP_MPLS: {
|
|
|
|
|
struct ofp11_action_pop_mpls *oapm = (struct ofp11_action_pop_mpls *)a;
|
|
|
|
|
if (eth_type_mpls(oapm->ethertype)) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_ARGUMENT;
|
|
|
|
|
}
|
|
|
|
|
ofpact_put_POP_MPLS(out)->ethertype = oapm->ethertype;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
|
|
|
|
|
#include "ofp-util.def"
|
|
|
|
|
return ofpact_from_nxast(a, code, out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
ofpacts_from_openflow11(const union ofp_action *in, size_t n_in,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
2012-07-18 20:41:15 +09:00
|
|
|
|
return ofpacts_from_openflow(in, n_in, out, ofpact_from_openflow11);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
/* OpenFlow 1.1 instructions. */
|
|
|
|
|
|
|
|
|
|
#define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME) \
|
2012-08-02 00:24:10 +09:00
|
|
|
|
static inline const struct STRUCT * \
|
|
|
|
|
instruction_get_##ENUM(const struct ofp11_instruction *inst)\
|
|
|
|
|
{ \
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(inst->type == htons(ENUM)); \
|
2013-07-22 15:47:19 -07:00
|
|
|
|
return ALIGNED_CAST(struct STRUCT *, inst); \
|
2012-08-02 00:24:10 +09:00
|
|
|
|
} \
|
|
|
|
|
\
|
2012-07-03 22:14:29 -07:00
|
|
|
|
static inline void \
|
|
|
|
|
instruction_init_##ENUM(struct STRUCT *s) \
|
|
|
|
|
{ \
|
|
|
|
|
memset(s, 0, sizeof *s); \
|
|
|
|
|
s->type = htons(ENUM); \
|
|
|
|
|
s->len = htons(sizeof *s); \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static inline struct STRUCT * \
|
|
|
|
|
instruction_put_##ENUM(struct ofpbuf *buf) \
|
|
|
|
|
{ \
|
|
|
|
|
struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
|
|
|
|
|
instruction_init_##ENUM(s); \
|
|
|
|
|
return s; \
|
|
|
|
|
}
|
|
|
|
|
OVS_INSTRUCTIONS
|
|
|
|
|
#undef DEFINE_INST
|
|
|
|
|
|
2012-08-02 00:24:10 +09:00
|
|
|
|
struct instruction_type_info {
|
|
|
|
|
enum ovs_instruction_type type;
|
|
|
|
|
const char *name;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct instruction_type_info inst_info[] = {
|
|
|
|
|
#define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME) {OVSINST_##ENUM, NAME},
|
|
|
|
|
OVS_INSTRUCTIONS
|
|
|
|
|
#undef DEFINE_INST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const char *
|
2013-06-27 11:04:50 -07:00
|
|
|
|
ovs_instruction_name_from_type(enum ovs_instruction_type type)
|
2012-08-02 00:24:10 +09:00
|
|
|
|
{
|
2012-08-29 02:19:00 +09:00
|
|
|
|
return inst_info[type].name;
|
2012-08-02 00:24:10 +09:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2013-06-27 11:04:50 -07:00
|
|
|
|
ovs_instruction_type_from_name(const char *name)
|
2012-08-02 00:24:10 +09:00
|
|
|
|
{
|
|
|
|
|
const struct instruction_type_info *p;
|
|
|
|
|
for (p = inst_info; p < &inst_info[ARRAY_SIZE(inst_info)]; p++) {
|
|
|
|
|
if (!strcasecmp(name, p->name)) {
|
|
|
|
|
return p->type;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-27 11:01:18 -07:00
|
|
|
|
enum ovs_instruction_type
|
|
|
|
|
ovs_instruction_type_from_ofpact_type(enum ofpact_type type)
|
|
|
|
|
{
|
|
|
|
|
switch (type) {
|
|
|
|
|
case OFPACT_METER:
|
|
|
|
|
return OVSINST_OFPIT13_METER;
|
|
|
|
|
case OFPACT_CLEAR_ACTIONS:
|
|
|
|
|
return OVSINST_OFPIT11_CLEAR_ACTIONS;
|
|
|
|
|
case OFPACT_WRITE_METADATA:
|
|
|
|
|
return OVSINST_OFPIT11_WRITE_METADATA;
|
|
|
|
|
case OFPACT_GOTO_TABLE:
|
|
|
|
|
return OVSINST_OFPIT11_GOTO_TABLE;
|
|
|
|
|
case OFPACT_OUTPUT:
|
|
|
|
|
case OFPACT_CONTROLLER:
|
|
|
|
|
case OFPACT_ENQUEUE:
|
|
|
|
|
case OFPACT_OUTPUT_REG:
|
|
|
|
|
case OFPACT_BUNDLE:
|
|
|
|
|
case OFPACT_SET_VLAN_VID:
|
|
|
|
|
case OFPACT_SET_VLAN_PCP:
|
|
|
|
|
case OFPACT_STRIP_VLAN:
|
|
|
|
|
case OFPACT_PUSH_VLAN:
|
|
|
|
|
case OFPACT_SET_ETH_SRC:
|
|
|
|
|
case OFPACT_SET_ETH_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_SRC:
|
|
|
|
|
case OFPACT_SET_IPV4_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_DSCP:
|
|
|
|
|
case OFPACT_SET_L4_SRC_PORT:
|
|
|
|
|
case OFPACT_SET_L4_DST_PORT:
|
|
|
|
|
case OFPACT_REG_MOVE:
|
|
|
|
|
case OFPACT_REG_LOAD:
|
|
|
|
|
case OFPACT_STACK_PUSH:
|
|
|
|
|
case OFPACT_STACK_POP:
|
|
|
|
|
case OFPACT_DEC_TTL:
|
|
|
|
|
case OFPACT_SET_MPLS_TTL:
|
|
|
|
|
case OFPACT_DEC_MPLS_TTL:
|
|
|
|
|
case OFPACT_PUSH_MPLS:
|
|
|
|
|
case OFPACT_POP_MPLS:
|
|
|
|
|
case OFPACT_SET_TUNNEL:
|
|
|
|
|
case OFPACT_SET_QUEUE:
|
|
|
|
|
case OFPACT_POP_QUEUE:
|
|
|
|
|
case OFPACT_FIN_TIMEOUT:
|
|
|
|
|
case OFPACT_RESUBMIT:
|
|
|
|
|
case OFPACT_LEARN:
|
|
|
|
|
case OFPACT_MULTIPATH:
|
|
|
|
|
case OFPACT_NOTE:
|
|
|
|
|
case OFPACT_EXIT:
|
|
|
|
|
case OFPACT_SAMPLE:
|
|
|
|
|
default:
|
|
|
|
|
return OVSINST_OFPIT11_APPLY_ACTIONS;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
static inline struct ofp11_instruction *
|
|
|
|
|
instruction_next(const struct ofp11_instruction *inst)
|
|
|
|
|
{
|
|
|
|
|
return ((struct ofp11_instruction *) (void *)
|
|
|
|
|
((uint8_t *) inst + ntohs(inst->len)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
|
instruction_is_valid(const struct ofp11_instruction *inst,
|
|
|
|
|
size_t n_instructions)
|
|
|
|
|
{
|
|
|
|
|
uint16_t len = ntohs(inst->len);
|
|
|
|
|
return (!(len % OFP11_INSTRUCTION_ALIGN)
|
|
|
|
|
&& len >= sizeof *inst
|
|
|
|
|
&& len / sizeof *inst <= n_instructions);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This macro is careful to check for instructions with bad lengths. */
|
|
|
|
|
#define INSTRUCTION_FOR_EACH(ITER, LEFT, INSTRUCTIONS, N_INSTRUCTIONS) \
|
|
|
|
|
for ((ITER) = (INSTRUCTIONS), (LEFT) = (N_INSTRUCTIONS); \
|
|
|
|
|
(LEFT) > 0 && instruction_is_valid(ITER, LEFT); \
|
|
|
|
|
((LEFT) -= (ntohs((ITER)->len) \
|
|
|
|
|
/ sizeof(struct ofp11_instruction)), \
|
|
|
|
|
(ITER) = instruction_next(ITER)))
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
decode_openflow11_instruction(const struct ofp11_instruction *inst,
|
|
|
|
|
enum ovs_instruction_type *type)
|
|
|
|
|
{
|
|
|
|
|
uint16_t len = ntohs(inst->len);
|
|
|
|
|
|
|
|
|
|
switch (inst->type) {
|
|
|
|
|
case CONSTANT_HTONS(OFPIT11_EXPERIMENTER):
|
|
|
|
|
return OFPERR_OFPBIC_BAD_EXPERIMENTER;
|
|
|
|
|
|
|
|
|
|
#define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME) \
|
|
|
|
|
case CONSTANT_HTONS(ENUM): \
|
|
|
|
|
if (EXTENSIBLE \
|
|
|
|
|
? len >= sizeof(struct STRUCT) \
|
|
|
|
|
: len == sizeof(struct STRUCT)) { \
|
|
|
|
|
*type = OVSINST_##ENUM; \
|
|
|
|
|
return 0; \
|
|
|
|
|
} else { \
|
|
|
|
|
return OFPERR_OFPBIC_BAD_LEN; \
|
|
|
|
|
}
|
|
|
|
|
OVS_INSTRUCTIONS
|
|
|
|
|
#undef DEFINE_INST
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return OFPERR_OFPBIC_UNKNOWN_INST;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum ofperr
|
|
|
|
|
decode_openflow11_instructions(const struct ofp11_instruction insts[],
|
|
|
|
|
size_t n_insts,
|
|
|
|
|
const struct ofp11_instruction *out[])
|
|
|
|
|
{
|
|
|
|
|
const struct ofp11_instruction *inst;
|
|
|
|
|
size_t left;
|
|
|
|
|
|
|
|
|
|
memset(out, 0, N_OVS_INSTRUCTIONS * sizeof *out);
|
|
|
|
|
INSTRUCTION_FOR_EACH (inst, left, insts, n_insts) {
|
|
|
|
|
enum ovs_instruction_type type;
|
|
|
|
|
enum ofperr error;
|
|
|
|
|
|
|
|
|
|
error = decode_openflow11_instruction(inst, &type);
|
|
|
|
|
if (error) {
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (out[type]) {
|
2013-06-24 13:49:47 -07:00
|
|
|
|
return OFPERR_ONFBIC_DUP_INSTRUCTION;
|
2012-07-03 22:14:29 -07:00
|
|
|
|
}
|
|
|
|
|
out[type] = inst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (left) {
|
|
|
|
|
VLOG_WARN_RL(&rl, "bad instruction format at offset %zu",
|
|
|
|
|
(n_insts - left) * sizeof *inst);
|
|
|
|
|
return OFPERR_OFPBIC_BAD_LEN;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
get_actions_from_instruction(const struct ofp11_instruction *inst,
|
2013-07-22 15:47:19 -07:00
|
|
|
|
const union ofp_action **actions,
|
|
|
|
|
size_t *n_actions)
|
2012-07-03 22:14:29 -07:00
|
|
|
|
{
|
2013-07-22 15:47:19 -07:00
|
|
|
|
*actions = ALIGNED_CAST(const union ofp_action *, inst + 1);
|
2012-07-03 22:14:29 -07:00
|
|
|
|
*n_actions = (ntohs(inst->len) - sizeof *inst) / OFP11_INSTRUCTION_ALIGN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attempts to convert 'actions_len' bytes of OpenFlow 1.1 actions from the
|
|
|
|
|
* front of 'openflow' into ofpacts. On success, replaces any existing content
|
|
|
|
|
* in 'ofpacts' by the converted ofpacts; on failure, clears 'ofpacts'.
|
|
|
|
|
* Returns 0 if successful, otherwise an OpenFlow error.
|
|
|
|
|
*
|
|
|
|
|
* In most places in OpenFlow 1.1 and 1.2, actions appear encapsulated in
|
|
|
|
|
* instructions, so you should call ofpacts_pull_openflow11_instructions()
|
|
|
|
|
* instead of this function.
|
|
|
|
|
*
|
2012-07-16 09:37:22 -07:00
|
|
|
|
* The parsed actions are valid generically, but they may not be valid in a
|
|
|
|
|
* specific context. For example, port numbers up to OFPP_MAX are valid
|
|
|
|
|
* generically, but specific datapaths may only support port numbers in a
|
|
|
|
|
* smaller range. Use ofpacts_check() to additional check whether actions are
|
|
|
|
|
* valid in a specific context. */
|
2012-07-03 22:14:29 -07:00
|
|
|
|
enum ofperr
|
|
|
|
|
ofpacts_pull_openflow11_actions(struct ofpbuf *openflow,
|
|
|
|
|
unsigned int actions_len,
|
|
|
|
|
struct ofpbuf *ofpacts)
|
|
|
|
|
{
|
2012-07-18 20:41:15 +09:00
|
|
|
|
return ofpacts_pull_actions(openflow, actions_len, ofpacts,
|
|
|
|
|
ofpacts_from_openflow11);
|
2012-07-03 22:14:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum ofperr
|
|
|
|
|
ofpacts_pull_openflow11_instructions(struct ofpbuf *openflow,
|
|
|
|
|
unsigned int instructions_len,
|
|
|
|
|
struct ofpbuf *ofpacts)
|
|
|
|
|
{
|
|
|
|
|
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
|
|
|
|
|
const struct ofp11_instruction *instructions;
|
|
|
|
|
const struct ofp11_instruction *insts[N_OVS_INSTRUCTIONS];
|
|
|
|
|
enum ofperr error;
|
|
|
|
|
|
|
|
|
|
ofpbuf_clear(ofpacts);
|
|
|
|
|
|
|
|
|
|
if (instructions_len % OFP11_INSTRUCTION_ALIGN != 0) {
|
|
|
|
|
VLOG_WARN_RL(&rl, "OpenFlow message instructions length %u is not a "
|
|
|
|
|
"multiple of %d",
|
|
|
|
|
instructions_len, OFP11_INSTRUCTION_ALIGN);
|
|
|
|
|
error = OFPERR_OFPBIC_BAD_LEN;
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
instructions = ofpbuf_try_pull(openflow, instructions_len);
|
|
|
|
|
if (instructions == NULL) {
|
|
|
|
|
VLOG_WARN_RL(&rl, "OpenFlow message instructions length %u exceeds "
|
|
|
|
|
"remaining message length (%zu)",
|
|
|
|
|
instructions_len, openflow->size);
|
|
|
|
|
error = OFPERR_OFPBIC_BAD_LEN;
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
error = decode_openflow11_instructions(
|
|
|
|
|
instructions, instructions_len / OFP11_INSTRUCTION_ALIGN,
|
|
|
|
|
insts);
|
|
|
|
|
if (error) {
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-20 17:26:18 +03:00
|
|
|
|
if (insts[OVSINST_OFPIT13_METER]) {
|
|
|
|
|
const struct ofp13_instruction_meter *oim;
|
|
|
|
|
struct ofpact_meter *om;
|
|
|
|
|
|
2013-07-22 15:47:19 -07:00
|
|
|
|
oim = ALIGNED_CAST(const struct ofp13_instruction_meter *,
|
|
|
|
|
insts[OVSINST_OFPIT13_METER]);
|
2013-06-20 17:26:18 +03:00
|
|
|
|
|
|
|
|
|
om = ofpact_put_METER(ofpacts);
|
|
|
|
|
om->meter_id = ntohl(oim->meter_id);
|
|
|
|
|
}
|
2012-07-03 22:14:29 -07:00
|
|
|
|
if (insts[OVSINST_OFPIT11_APPLY_ACTIONS]) {
|
|
|
|
|
const union ofp_action *actions;
|
|
|
|
|
size_t n_actions;
|
|
|
|
|
|
|
|
|
|
get_actions_from_instruction(insts[OVSINST_OFPIT11_APPLY_ACTIONS],
|
|
|
|
|
&actions, &n_actions);
|
|
|
|
|
error = ofpacts_from_openflow11(actions, n_actions, ofpacts);
|
|
|
|
|
if (error) {
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-05 15:56:57 +09:00
|
|
|
|
if (insts[OVSINST_OFPIT11_CLEAR_ACTIONS]) {
|
|
|
|
|
instruction_get_OFPIT11_CLEAR_ACTIONS(
|
|
|
|
|
insts[OVSINST_OFPIT11_CLEAR_ACTIONS]);
|
|
|
|
|
ofpact_put_CLEAR_ACTIONS(ofpacts);
|
|
|
|
|
}
|
2012-12-14 20:43:30 -08:00
|
|
|
|
/* XXX Write-Actions */
|
2012-10-19 02:37:37 +09:00
|
|
|
|
if (insts[OVSINST_OFPIT11_WRITE_METADATA]) {
|
|
|
|
|
const struct ofp11_instruction_write_metadata *oiwm;
|
|
|
|
|
struct ofpact_metadata *om;
|
|
|
|
|
|
2013-07-22 15:47:19 -07:00
|
|
|
|
oiwm = ALIGNED_CAST(const struct ofp11_instruction_write_metadata *,
|
|
|
|
|
insts[OVSINST_OFPIT11_WRITE_METADATA]);
|
2012-10-19 02:37:37 +09:00
|
|
|
|
|
|
|
|
|
om = ofpact_put_WRITE_METADATA(ofpacts);
|
|
|
|
|
om->metadata = oiwm->metadata;
|
|
|
|
|
om->mask = oiwm->metadata_mask;
|
|
|
|
|
}
|
2012-10-05 15:56:56 +09:00
|
|
|
|
if (insts[OVSINST_OFPIT11_GOTO_TABLE]) {
|
|
|
|
|
const struct ofp11_instruction_goto_table *oigt;
|
|
|
|
|
struct ofpact_goto_table *ogt;
|
|
|
|
|
|
|
|
|
|
oigt = instruction_get_OFPIT11_GOTO_TABLE(
|
|
|
|
|
insts[OVSINST_OFPIT11_GOTO_TABLE]);
|
|
|
|
|
ogt = ofpact_put_GOTO_TABLE(ofpacts);
|
|
|
|
|
ogt->table_id = oigt->table_id;
|
|
|
|
|
}
|
2012-07-03 22:14:29 -07:00
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
if (insts[OVSINST_OFPIT11_WRITE_ACTIONS]) {
|
2012-07-03 22:14:29 -07:00
|
|
|
|
error = OFPERR_OFPBIC_UNSUP_INST;
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
error = ofpacts_verify(ofpacts->data, ofpacts->size);
|
2012-07-03 22:14:29 -07:00
|
|
|
|
exit:
|
|
|
|
|
if (error) {
|
|
|
|
|
ofpbuf_clear(ofpacts);
|
|
|
|
|
}
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-20 17:26:17 +03:00
|
|
|
|
/* May modify flow->dl_type, caller must restore it. */
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static enum ofperr
|
2013-06-28 19:44:03 +03:00
|
|
|
|
ofpact_check__(const struct ofpact *a, struct flow *flow, ofp_port_t max_ports,
|
|
|
|
|
uint8_t table_id)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
const struct ofpact_enqueue *enqueue;
|
|
|
|
|
|
|
|
|
|
switch (a->type) {
|
|
|
|
|
case OFPACT_OUTPUT:
|
|
|
|
|
return ofputil_check_output_port(ofpact_get_OUTPUT(a)->port,
|
|
|
|
|
max_ports);
|
|
|
|
|
|
|
|
|
|
case OFPACT_CONTROLLER:
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case OFPACT_ENQUEUE:
|
|
|
|
|
enqueue = ofpact_get_ENQUEUE(a);
|
2013-06-19 16:58:44 -07:00
|
|
|
|
if (ofp_to_u16(enqueue->port) >= ofp_to_u16(max_ports)
|
|
|
|
|
&& enqueue->port != OFPP_IN_PORT
|
2012-07-03 22:17:14 -07:00
|
|
|
|
&& enqueue->port != OFPP_LOCAL) {
|
|
|
|
|
return OFPERR_OFPBAC_BAD_OUT_PORT;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case OFPACT_OUTPUT_REG:
|
|
|
|
|
return mf_check_src(&ofpact_get_OUTPUT_REG(a)->src, flow);
|
|
|
|
|
|
|
|
|
|
case OFPACT_BUNDLE:
|
|
|
|
|
return bundle_check(ofpact_get_BUNDLE(a), max_ports, flow);
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_VLAN_VID:
|
|
|
|
|
case OFPACT_SET_VLAN_PCP:
|
|
|
|
|
case OFPACT_STRIP_VLAN:
|
2012-10-26 13:43:19 +09:00
|
|
|
|
case OFPACT_PUSH_VLAN:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_ETH_SRC:
|
|
|
|
|
case OFPACT_SET_ETH_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_SRC:
|
|
|
|
|
case OFPACT_SET_IPV4_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_DSCP:
|
|
|
|
|
case OFPACT_SET_L4_SRC_PORT:
|
|
|
|
|
case OFPACT_SET_L4_DST_PORT:
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case OFPACT_REG_MOVE:
|
|
|
|
|
return nxm_reg_move_check(ofpact_get_REG_MOVE(a), flow);
|
|
|
|
|
|
|
|
|
|
case OFPACT_REG_LOAD:
|
2013-05-10 11:00:06 +09:00
|
|
|
|
return nxm_reg_load_check(ofpact_get_REG_LOAD(a), flow);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
|
2013-03-05 16:27:55 -08:00
|
|
|
|
case OFPACT_STACK_PUSH:
|
|
|
|
|
return nxm_stack_push_check(ofpact_get_STACK_PUSH(a), flow);
|
|
|
|
|
|
|
|
|
|
case OFPACT_STACK_POP:
|
|
|
|
|
return nxm_stack_pop_check(ofpact_get_STACK_POP(a), flow);
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_DEC_TTL:
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPACT_SET_MPLS_TTL:
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPACT_DEC_MPLS_TTL:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_TUNNEL:
|
|
|
|
|
case OFPACT_SET_QUEUE:
|
|
|
|
|
case OFPACT_POP_QUEUE:
|
|
|
|
|
case OFPACT_FIN_TIMEOUT:
|
|
|
|
|
case OFPACT_RESUBMIT:
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case OFPACT_LEARN:
|
|
|
|
|
return learn_check(ofpact_get_LEARN(a), flow);
|
|
|
|
|
|
|
|
|
|
case OFPACT_MULTIPATH:
|
|
|
|
|
return multipath_check(ofpact_get_MULTIPATH(a), flow);
|
|
|
|
|
|
|
|
|
|
case OFPACT_NOTE:
|
|
|
|
|
case OFPACT_EXIT:
|
|
|
|
|
return 0;
|
|
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPACT_PUSH_MPLS:
|
2013-06-20 17:26:17 +03:00
|
|
|
|
flow->dl_type = ofpact_get_PUSH_MPLS(a)->ethertype;
|
2013-01-25 16:22:07 +09:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case OFPACT_POP_MPLS:
|
2013-06-20 17:26:17 +03:00
|
|
|
|
flow->dl_type = ofpact_get_POP_MPLS(a)->ethertype;
|
2013-01-25 16:22:07 +09:00
|
|
|
|
return 0;
|
|
|
|
|
|
2013-04-22 10:01:14 -07:00
|
|
|
|
case OFPACT_SAMPLE:
|
|
|
|
|
return 0;
|
|
|
|
|
|
2012-10-05 15:56:57 +09:00
|
|
|
|
case OFPACT_CLEAR_ACTIONS:
|
2012-10-19 02:37:37 +09:00
|
|
|
|
case OFPACT_WRITE_METADATA:
|
2012-10-05 15:56:56 +09:00
|
|
|
|
return 0;
|
|
|
|
|
|
2013-06-27 01:39:51 +03:00
|
|
|
|
case OFPACT_METER: {
|
|
|
|
|
uint32_t mid = ofpact_get_METER(a)->meter_id;
|
|
|
|
|
if (mid == 0 || mid > OFPM13_MAX) {
|
|
|
|
|
return OFPERR_OFPMMFC_INVALID_METER;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2013-06-28 19:44:03 +03:00
|
|
|
|
|
|
|
|
|
case OFPACT_GOTO_TABLE:
|
|
|
|
|
if (ofpact_get_GOTO_TABLE(a)->table_id <= table_id) {
|
|
|
|
|
return OFPERR_OFPBRC_BAD_TABLE_ID;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
default:
|
|
|
|
|
NOT_REACHED();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Checks that the 'ofpacts_len' bytes of actions in 'ofpacts' are
|
|
|
|
|
* appropriate for a packet with the prerequisites satisfied by 'flow' in a
|
2013-06-20 17:26:17 +03:00
|
|
|
|
* switch with no more than 'max_ports' ports.
|
|
|
|
|
*
|
|
|
|
|
* May temporarily modify 'flow', but restores the changes before returning. */
|
2012-07-03 22:17:14 -07:00
|
|
|
|
enum ofperr
|
|
|
|
|
ofpacts_check(const struct ofpact ofpacts[], size_t ofpacts_len,
|
2013-06-28 19:44:03 +03:00
|
|
|
|
struct flow *flow, ofp_port_t max_ports, uint8_t table_id)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
const struct ofpact *a;
|
2013-01-25 16:22:07 +09:00
|
|
|
|
ovs_be16 dl_type = flow->dl_type;
|
2013-06-20 17:26:17 +03:00
|
|
|
|
enum ofperr error = 0;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
|
|
|
|
|
OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
|
2013-06-28 19:44:03 +03:00
|
|
|
|
error = ofpact_check__(a, flow, max_ports, table_id);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
if (error) {
|
2013-06-20 17:26:17 +03:00
|
|
|
|
break;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-20 17:26:17 +03:00
|
|
|
|
flow->dl_type = dl_type; /* Restore. */
|
|
|
|
|
return error;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
2012-10-19 02:37:37 +09:00
|
|
|
|
|
|
|
|
|
/* Verifies that the 'ofpacts_len' bytes of actions in 'ofpacts' are
|
|
|
|
|
* in the appropriate order as defined by the OpenFlow spec. */
|
|
|
|
|
enum ofperr
|
|
|
|
|
ofpacts_verify(const struct ofpact ofpacts[], size_t ofpacts_len)
|
|
|
|
|
{
|
|
|
|
|
const struct ofpact *a;
|
2013-01-03 09:02:52 -08:00
|
|
|
|
enum ovs_instruction_type inst;
|
2012-10-19 02:37:37 +09:00
|
|
|
|
|
2013-01-03 09:02:52 -08:00
|
|
|
|
inst = OVSINST_OFPIT11_APPLY_ACTIONS;
|
2012-10-19 02:37:37 +09:00
|
|
|
|
OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
|
2013-01-03 09:02:52 -08:00
|
|
|
|
enum ovs_instruction_type next;
|
|
|
|
|
|
2013-06-27 11:01:18 -07:00
|
|
|
|
next = ovs_instruction_type_from_ofpact_type(a->type);
|
2013-01-03 09:02:52 -08:00
|
|
|
|
if (inst != OVSINST_OFPIT11_APPLY_ACTIONS && next <= inst) {
|
2013-06-27 11:04:50 -07:00
|
|
|
|
const char *name = ovs_instruction_name_from_type(inst);
|
|
|
|
|
const char *next_name = ovs_instruction_name_from_type(next);
|
2013-01-03 09:02:52 -08:00
|
|
|
|
|
|
|
|
|
if (next == inst) {
|
|
|
|
|
VLOG_WARN("duplicate %s instruction not allowed, for OpenFlow "
|
|
|
|
|
"1.1+ compatibility", name);
|
2012-10-19 02:37:37 +09:00
|
|
|
|
} else {
|
2013-01-03 09:02:52 -08:00
|
|
|
|
VLOG_WARN("invalid instruction ordering: %s must appear "
|
|
|
|
|
"before %s, for OpenFlow 1.1+ compatibility",
|
|
|
|
|
next_name, name);
|
2012-10-19 02:37:37 +09:00
|
|
|
|
}
|
2013-01-03 09:02:52 -08:00
|
|
|
|
return OFPERR_OFPBAC_UNSUPPORTED_ORDER;
|
2012-10-19 02:37:37 +09:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-03 09:02:52 -08:00
|
|
|
|
inst = next;
|
2012-10-19 02:37:37 +09:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2012-07-03 22:17:14 -07:00
|
|
|
|
|
|
|
|
|
/* Converting ofpacts to Nicira OpenFlow extensions. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_output_reg_to_nxast(const struct ofpact_output_reg *output_reg,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct nx_action_output_reg *naor = ofputil_put_NXAST_OUTPUT_REG(out);
|
|
|
|
|
|
|
|
|
|
naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
|
|
|
|
|
output_reg->src.n_bits);
|
|
|
|
|
naor->src = htonl(output_reg->src.field->nxm_header);
|
|
|
|
|
naor->max_len = htons(output_reg->max_len);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_resubmit_to_nxast(const struct ofpact_resubmit *resubmit,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct nx_action_resubmit *nar;
|
|
|
|
|
|
|
|
|
|
if (resubmit->table_id == 0xff
|
|
|
|
|
&& resubmit->ofpact.compat != OFPUTIL_NXAST_RESUBMIT_TABLE) {
|
|
|
|
|
nar = ofputil_put_NXAST_RESUBMIT(out);
|
|
|
|
|
} else {
|
|
|
|
|
nar = ofputil_put_NXAST_RESUBMIT_TABLE(out);
|
|
|
|
|
nar->table = resubmit->table_id;
|
|
|
|
|
}
|
2013-06-19 16:58:44 -07:00
|
|
|
|
nar->in_port = htons(ofp_to_u16(resubmit->in_port));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_set_tunnel_to_nxast(const struct ofpact_tunnel *tunnel,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
uint64_t tun_id = tunnel->tun_id;
|
|
|
|
|
|
|
|
|
|
if (tun_id <= UINT32_MAX
|
|
|
|
|
&& tunnel->ofpact.compat != OFPUTIL_NXAST_SET_TUNNEL64) {
|
|
|
|
|
ofputil_put_NXAST_SET_TUNNEL(out)->tun_id = htonl(tun_id);
|
|
|
|
|
} else {
|
|
|
|
|
ofputil_put_NXAST_SET_TUNNEL64(out)->tun_id = htonll(tun_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
static void
|
|
|
|
|
ofpact_write_metadata_to_nxast(const struct ofpact_metadata *om,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct nx_action_write_metadata *nawm;
|
|
|
|
|
|
|
|
|
|
nawm = ofputil_put_NXAST_WRITE_METADATA(out);
|
|
|
|
|
nawm->metadata = om->metadata;
|
|
|
|
|
nawm->mask = om->mask;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static void
|
|
|
|
|
ofpact_note_to_nxast(const struct ofpact_note *note, struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
size_t start_ofs = out->size;
|
|
|
|
|
struct nx_action_note *nan;
|
|
|
|
|
unsigned int remainder;
|
|
|
|
|
unsigned int len;
|
|
|
|
|
|
|
|
|
|
nan = ofputil_put_NXAST_NOTE(out);
|
|
|
|
|
out->size -= sizeof nan->note;
|
|
|
|
|
|
|
|
|
|
ofpbuf_put(out, note->data, note->length);
|
|
|
|
|
|
|
|
|
|
len = out->size - start_ofs;
|
|
|
|
|
remainder = len % OFP_ACTION_ALIGN;
|
|
|
|
|
if (remainder) {
|
|
|
|
|
ofpbuf_put_zeros(out, OFP_ACTION_ALIGN - remainder);
|
|
|
|
|
}
|
2013-07-22 15:47:19 -07:00
|
|
|
|
nan = ofpbuf_at(out, start_ofs, sizeof *nan);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
nan->len = htons(out->size - start_ofs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_controller_to_nxast(const struct ofpact_controller *oc,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct nx_action_controller *nac;
|
|
|
|
|
|
|
|
|
|
nac = ofputil_put_NXAST_CONTROLLER(out);
|
|
|
|
|
nac->max_len = htons(oc->max_len);
|
|
|
|
|
nac->controller_id = htons(oc->controller_id);
|
|
|
|
|
nac->reason = oc->reason;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-16 14:25:07 -07:00
|
|
|
|
static void
|
|
|
|
|
ofpact_dec_ttl_to_nxast(const struct ofpact_cnt_ids *oc_ids,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
if (oc_ids->ofpact.compat == OFPUTIL_NXAST_DEC_TTL) {
|
|
|
|
|
ofputil_put_NXAST_DEC_TTL(out);
|
|
|
|
|
} else {
|
|
|
|
|
struct nx_action_cnt_ids *nac_ids =
|
|
|
|
|
ofputil_put_NXAST_DEC_TTL_CNT_IDS(out);
|
|
|
|
|
int ids_len = ROUND_UP(2 * oc_ids->n_controllers, OFP_ACTION_ALIGN);
|
|
|
|
|
ovs_be16 *ids;
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
nac_ids->len = htons(ntohs(nac_ids->len) + ids_len);
|
|
|
|
|
nac_ids->n_controllers = htons(oc_ids->n_controllers);
|
|
|
|
|
|
|
|
|
|
ids = ofpbuf_put_zeros(out, ids_len);
|
|
|
|
|
for (i = 0; i < oc_ids->n_controllers; i++) {
|
|
|
|
|
ids[i] = htons(oc_ids->cnt_ids[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static void
|
|
|
|
|
ofpact_fin_timeout_to_nxast(const struct ofpact_fin_timeout *fin_timeout,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct nx_action_fin_timeout *naft = ofputil_put_NXAST_FIN_TIMEOUT(out);
|
|
|
|
|
naft->fin_idle_timeout = htons(fin_timeout->fin_idle_timeout);
|
|
|
|
|
naft->fin_hard_timeout = htons(fin_timeout->fin_hard_timeout);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 10:01:14 -07:00
|
|
|
|
static void
|
|
|
|
|
ofpact_sample_to_nxast(const struct ofpact_sample *os,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct nx_action_sample *nas;
|
|
|
|
|
|
|
|
|
|
nas = ofputil_put_NXAST_SAMPLE(out);
|
|
|
|
|
nas->probability = htons(os->probability);
|
|
|
|
|
nas->collector_set_id = htonl(os->collector_set_id);
|
|
|
|
|
nas->obs_domain_id = htonl(os->obs_domain_id);
|
|
|
|
|
nas->obs_point_id = htonl(os->obs_point_id);
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static void
|
|
|
|
|
ofpact_to_nxast(const struct ofpact *a, struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
switch (a->type) {
|
|
|
|
|
case OFPACT_CONTROLLER:
|
|
|
|
|
ofpact_controller_to_nxast(ofpact_get_CONTROLLER(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_OUTPUT_REG:
|
|
|
|
|
ofpact_output_reg_to_nxast(ofpact_get_OUTPUT_REG(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_BUNDLE:
|
|
|
|
|
bundle_to_nxast(ofpact_get_BUNDLE(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_REG_MOVE:
|
|
|
|
|
nxm_reg_move_to_nxast(ofpact_get_REG_MOVE(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_REG_LOAD:
|
|
|
|
|
nxm_reg_load_to_nxast(ofpact_get_REG_LOAD(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-03-05 16:27:55 -08:00
|
|
|
|
case OFPACT_STACK_PUSH:
|
|
|
|
|
nxm_stack_push_to_nxast(ofpact_get_STACK_PUSH(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_STACK_POP:
|
|
|
|
|
nxm_stack_pop_to_nxast(ofpact_get_STACK_POP(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_DEC_TTL:
|
2012-08-16 14:25:07 -07:00
|
|
|
|
ofpact_dec_ttl_to_nxast(ofpact_get_DEC_TTL(a), out);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPACT_SET_MPLS_TTL:
|
|
|
|
|
ofputil_put_NXAST_SET_MPLS_TTL(out)->ttl
|
|
|
|
|
= ofpact_get_SET_MPLS_TTL(a)->ttl;
|
|
|
|
|
break;
|
|
|
|
|
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPACT_DEC_MPLS_TTL:
|
|
|
|
|
ofputil_put_NXAST_DEC_MPLS_TTL(out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_TUNNEL:
|
|
|
|
|
ofpact_set_tunnel_to_nxast(ofpact_get_SET_TUNNEL(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
case OFPACT_WRITE_METADATA:
|
|
|
|
|
ofpact_write_metadata_to_nxast(ofpact_get_WRITE_METADATA(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_QUEUE:
|
|
|
|
|
ofputil_put_NXAST_SET_QUEUE(out)->queue_id
|
|
|
|
|
= htonl(ofpact_get_SET_QUEUE(a)->queue_id);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_POP_QUEUE:
|
|
|
|
|
ofputil_put_NXAST_POP_QUEUE(out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_FIN_TIMEOUT:
|
|
|
|
|
ofpact_fin_timeout_to_nxast(ofpact_get_FIN_TIMEOUT(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_RESUBMIT:
|
|
|
|
|
ofpact_resubmit_to_nxast(ofpact_get_RESUBMIT(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_LEARN:
|
|
|
|
|
learn_to_nxast(ofpact_get_LEARN(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_MULTIPATH:
|
|
|
|
|
multipath_to_nxast(ofpact_get_MULTIPATH(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_NOTE:
|
|
|
|
|
ofpact_note_to_nxast(ofpact_get_NOTE(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_EXIT:
|
|
|
|
|
ofputil_put_NXAST_EXIT(out);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPACT_PUSH_MPLS:
|
|
|
|
|
ofputil_put_NXAST_PUSH_MPLS(out)->ethertype =
|
|
|
|
|
ofpact_get_PUSH_MPLS(a)->ethertype;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_POP_MPLS:
|
|
|
|
|
ofputil_put_NXAST_POP_MPLS(out)->ethertype =
|
|
|
|
|
ofpact_get_POP_MPLS(a)->ethertype;
|
|
|
|
|
break;
|
|
|
|
|
|
2013-04-22 10:01:14 -07:00
|
|
|
|
case OFPACT_SAMPLE:
|
|
|
|
|
ofpact_sample_to_nxast(ofpact_get_SAMPLE(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_OUTPUT:
|
|
|
|
|
case OFPACT_ENQUEUE:
|
|
|
|
|
case OFPACT_SET_VLAN_VID:
|
|
|
|
|
case OFPACT_SET_VLAN_PCP:
|
|
|
|
|
case OFPACT_STRIP_VLAN:
|
2012-10-26 13:43:19 +09:00
|
|
|
|
case OFPACT_PUSH_VLAN:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_ETH_SRC:
|
|
|
|
|
case OFPACT_SET_ETH_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_SRC:
|
|
|
|
|
case OFPACT_SET_IPV4_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_DSCP:
|
|
|
|
|
case OFPACT_SET_L4_SRC_PORT:
|
|
|
|
|
case OFPACT_SET_L4_DST_PORT:
|
2012-10-05 15:56:57 +09:00
|
|
|
|
case OFPACT_CLEAR_ACTIONS:
|
2012-10-05 15:56:56 +09:00
|
|
|
|
case OFPACT_GOTO_TABLE:
|
2013-06-20 17:26:18 +03:00
|
|
|
|
case OFPACT_METER:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
NOT_REACHED();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Converting ofpacts to OpenFlow 1.0. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_output_to_openflow10(const struct ofpact_output *output,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
2012-07-03 22:14:29 -07:00
|
|
|
|
struct ofp10_action_output *oao;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
|
|
|
|
|
oao = ofputil_put_OFPAT10_OUTPUT(out);
|
2013-06-19 16:58:44 -07:00
|
|
|
|
oao->port = htons(ofp_to_u16(output->port));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
oao->max_len = htons(output->max_len);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_enqueue_to_openflow10(const struct ofpact_enqueue *enqueue,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
2012-12-03 12:37:56 +02:00
|
|
|
|
struct ofp10_action_enqueue *oae;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
|
|
|
|
|
oae = ofputil_put_OFPAT10_ENQUEUE(out);
|
2013-06-19 16:58:44 -07:00
|
|
|
|
oae->port = htons(ofp_to_u16(enqueue->port));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
oae->queue_id = htonl(enqueue->queue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_to_openflow10(const struct ofpact *a, struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
switch (a->type) {
|
|
|
|
|
case OFPACT_OUTPUT:
|
|
|
|
|
ofpact_output_to_openflow10(ofpact_get_OUTPUT(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_ENQUEUE:
|
|
|
|
|
ofpact_enqueue_to_openflow10(ofpact_get_ENQUEUE(a), out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_VLAN_VID:
|
|
|
|
|
ofputil_put_OFPAT10_SET_VLAN_VID(out)->vlan_vid
|
|
|
|
|
= htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_VLAN_PCP:
|
|
|
|
|
ofputil_put_OFPAT10_SET_VLAN_PCP(out)->vlan_pcp
|
|
|
|
|
= ofpact_get_SET_VLAN_PCP(a)->vlan_pcp;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_STRIP_VLAN:
|
|
|
|
|
ofputil_put_OFPAT10_STRIP_VLAN(out);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_ETH_SRC:
|
|
|
|
|
memcpy(ofputil_put_OFPAT10_SET_DL_SRC(out)->dl_addr,
|
|
|
|
|
ofpact_get_SET_ETH_SRC(a)->mac, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_ETH_DST:
|
|
|
|
|
memcpy(ofputil_put_OFPAT10_SET_DL_DST(out)->dl_addr,
|
|
|
|
|
ofpact_get_SET_ETH_DST(a)->mac, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_SRC:
|
|
|
|
|
ofputil_put_OFPAT10_SET_NW_SRC(out)->nw_addr
|
|
|
|
|
= ofpact_get_SET_IPV4_SRC(a)->ipv4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_DST:
|
|
|
|
|
ofputil_put_OFPAT10_SET_NW_DST(out)->nw_addr
|
|
|
|
|
= ofpact_get_SET_IPV4_DST(a)->ipv4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_DSCP:
|
|
|
|
|
ofputil_put_OFPAT10_SET_NW_TOS(out)->nw_tos
|
|
|
|
|
= ofpact_get_SET_IPV4_DSCP(a)->dscp;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_L4_SRC_PORT:
|
|
|
|
|
ofputil_put_OFPAT10_SET_TP_SRC(out)->tp_port
|
|
|
|
|
= htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_L4_DST_PORT:
|
|
|
|
|
ofputil_put_OFPAT10_SET_TP_DST(out)->tp_port
|
|
|
|
|
= htons(ofpact_get_SET_L4_DST_PORT(a)->port);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-26 13:43:19 +09:00
|
|
|
|
case OFPACT_PUSH_VLAN:
|
2012-10-05 15:56:57 +09:00
|
|
|
|
case OFPACT_CLEAR_ACTIONS:
|
2012-10-05 15:56:56 +09:00
|
|
|
|
case OFPACT_GOTO_TABLE:
|
2013-06-20 17:26:18 +03:00
|
|
|
|
case OFPACT_METER:
|
2012-12-14 20:43:30 -08:00
|
|
|
|
/* XXX */
|
2012-10-05 15:56:56 +09:00
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_CONTROLLER:
|
|
|
|
|
case OFPACT_OUTPUT_REG:
|
|
|
|
|
case OFPACT_BUNDLE:
|
|
|
|
|
case OFPACT_REG_MOVE:
|
|
|
|
|
case OFPACT_REG_LOAD:
|
2013-03-05 16:27:55 -08:00
|
|
|
|
case OFPACT_STACK_PUSH:
|
|
|
|
|
case OFPACT_STACK_POP:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_DEC_TTL:
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPACT_SET_MPLS_TTL:
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPACT_DEC_MPLS_TTL:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_TUNNEL:
|
2012-10-19 02:37:37 +09:00
|
|
|
|
case OFPACT_WRITE_METADATA:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_QUEUE:
|
|
|
|
|
case OFPACT_POP_QUEUE:
|
|
|
|
|
case OFPACT_FIN_TIMEOUT:
|
|
|
|
|
case OFPACT_RESUBMIT:
|
|
|
|
|
case OFPACT_LEARN:
|
|
|
|
|
case OFPACT_MULTIPATH:
|
|
|
|
|
case OFPACT_NOTE:
|
|
|
|
|
case OFPACT_EXIT:
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPACT_PUSH_MPLS:
|
|
|
|
|
case OFPACT_POP_MPLS:
|
2013-04-22 10:01:14 -07:00
|
|
|
|
case OFPACT_SAMPLE:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
ofpact_to_nxast(a, out);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
/* Converts the 'ofpacts_len' bytes of ofpacts in 'ofpacts' into OpenFlow 1.0
|
2012-07-03 22:17:14 -07:00
|
|
|
|
* actions in 'openflow', appending the actions to any existing data in
|
|
|
|
|
* 'openflow'. */
|
|
|
|
|
void
|
2012-07-03 22:14:29 -07:00
|
|
|
|
ofpacts_put_openflow10(const struct ofpact ofpacts[], size_t ofpacts_len,
|
|
|
|
|
struct ofpbuf *openflow)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
const struct ofpact *a;
|
|
|
|
|
|
|
|
|
|
OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
|
|
|
|
|
ofpact_to_openflow10(a, openflow);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
/* Converting ofpacts to OpenFlow 1.1. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_output_to_openflow11(const struct ofpact_output *output,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
struct ofp11_action_output *oao;
|
|
|
|
|
|
|
|
|
|
oao = ofputil_put_OFPAT11_OUTPUT(out);
|
|
|
|
|
oao->port = ofputil_port_to_ofp11(output->port);
|
|
|
|
|
oao->max_len = htons(output->max_len);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-18 11:12:38 -07:00
|
|
|
|
static void
|
|
|
|
|
ofpact_dec_ttl_to_openflow11(const struct ofpact_cnt_ids *dec_ttl,
|
|
|
|
|
struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
if (dec_ttl->n_controllers == 1 && dec_ttl->cnt_ids[0] == 0
|
|
|
|
|
&& (!dec_ttl->ofpact.compat ||
|
|
|
|
|
dec_ttl->ofpact.compat == OFPUTIL_OFPAT11_DEC_NW_TTL)) {
|
|
|
|
|
ofputil_put_OFPAT11_DEC_NW_TTL(out);
|
|
|
|
|
} else {
|
|
|
|
|
ofpact_dec_ttl_to_nxast(dec_ttl, out);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
static void
|
|
|
|
|
ofpact_to_openflow11(const struct ofpact *a, struct ofpbuf *out)
|
|
|
|
|
{
|
|
|
|
|
switch (a->type) {
|
|
|
|
|
case OFPACT_OUTPUT:
|
|
|
|
|
return ofpact_output_to_openflow11(ofpact_get_OUTPUT(a), out);
|
|
|
|
|
|
|
|
|
|
case OFPACT_ENQUEUE:
|
|
|
|
|
/* XXX */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_VLAN_VID:
|
|
|
|
|
ofputil_put_OFPAT11_SET_VLAN_VID(out)->vlan_vid
|
|
|
|
|
= htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_VLAN_PCP:
|
|
|
|
|
ofputil_put_OFPAT11_SET_VLAN_PCP(out)->vlan_pcp
|
|
|
|
|
= ofpact_get_SET_VLAN_PCP(a)->vlan_pcp;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_STRIP_VLAN:
|
2012-10-18 03:51:58 +09:00
|
|
|
|
ofputil_put_OFPAT11_POP_VLAN(out);
|
2012-07-03 22:14:29 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2012-10-26 13:43:19 +09:00
|
|
|
|
case OFPACT_PUSH_VLAN:
|
2012-12-14 20:43:30 -08:00
|
|
|
|
/* XXX ETH_TYPE_VLAN_8021AD case */
|
2012-10-26 13:43:19 +09:00
|
|
|
|
ofputil_put_OFPAT11_PUSH_VLAN(out)->ethertype =
|
|
|
|
|
htons(ETH_TYPE_VLAN_8021Q);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-11-30 10:04:06 +09:00
|
|
|
|
case OFPACT_SET_QUEUE:
|
|
|
|
|
ofputil_put_OFPAT11_SET_QUEUE(out)->queue_id
|
|
|
|
|
= htonl(ofpact_get_SET_QUEUE(a)->queue_id);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
case OFPACT_SET_ETH_SRC:
|
|
|
|
|
memcpy(ofputil_put_OFPAT11_SET_DL_SRC(out)->dl_addr,
|
|
|
|
|
ofpact_get_SET_ETH_SRC(a)->mac, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_ETH_DST:
|
|
|
|
|
memcpy(ofputil_put_OFPAT11_SET_DL_DST(out)->dl_addr,
|
|
|
|
|
ofpact_get_SET_ETH_DST(a)->mac, ETH_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_SRC:
|
|
|
|
|
ofputil_put_OFPAT11_SET_NW_SRC(out)->nw_addr
|
|
|
|
|
= ofpact_get_SET_IPV4_SRC(a)->ipv4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_DST:
|
|
|
|
|
ofputil_put_OFPAT11_SET_NW_DST(out)->nw_addr
|
|
|
|
|
= ofpact_get_SET_IPV4_DST(a)->ipv4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_DSCP:
|
|
|
|
|
ofputil_put_OFPAT11_SET_NW_TOS(out)->nw_tos
|
|
|
|
|
= ofpact_get_SET_IPV4_DSCP(a)->dscp;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_L4_SRC_PORT:
|
|
|
|
|
ofputil_put_OFPAT11_SET_TP_SRC(out)->tp_port
|
|
|
|
|
= htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_L4_DST_PORT:
|
|
|
|
|
ofputil_put_OFPAT11_SET_TP_DST(out)->tp_port
|
|
|
|
|
= htons(ofpact_get_SET_L4_DST_PORT(a)->port);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-18 07:02:04 +09:00
|
|
|
|
case OFPACT_DEC_TTL:
|
2012-10-18 11:12:38 -07:00
|
|
|
|
ofpact_dec_ttl_to_openflow11(ofpact_get_DEC_TTL(a), out);
|
2012-10-18 07:02:04 +09:00
|
|
|
|
break;
|
|
|
|
|
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPACT_SET_MPLS_TTL:
|
|
|
|
|
ofputil_put_OFPAT11_SET_MPLS_TTL(out)->mpls_ttl
|
|
|
|
|
= ofpact_get_SET_MPLS_TTL(a)->ttl;
|
|
|
|
|
break;
|
|
|
|
|
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPACT_DEC_MPLS_TTL:
|
|
|
|
|
ofputil_put_OFPAT11_DEC_MPLS_TTL(out);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
case OFPACT_WRITE_METADATA:
|
|
|
|
|
/* OpenFlow 1.1 uses OFPIT_WRITE_METADATA to express this action. */
|
|
|
|
|
break;
|
|
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPACT_PUSH_MPLS:
|
|
|
|
|
ofputil_put_OFPAT11_PUSH_MPLS(out)->ethertype =
|
|
|
|
|
ofpact_get_PUSH_MPLS(a)->ethertype;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_POP_MPLS:
|
|
|
|
|
ofputil_put_OFPAT11_POP_MPLS(out)->ethertype =
|
|
|
|
|
ofpact_get_POP_MPLS(a)->ethertype;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-05 15:56:57 +09:00
|
|
|
|
case OFPACT_CLEAR_ACTIONS:
|
2012-10-05 15:56:56 +09:00
|
|
|
|
case OFPACT_GOTO_TABLE:
|
2013-06-20 17:26:18 +03:00
|
|
|
|
case OFPACT_METER:
|
2012-10-05 15:56:56 +09:00
|
|
|
|
NOT_REACHED();
|
|
|
|
|
|
2012-07-03 22:14:29 -07:00
|
|
|
|
case OFPACT_CONTROLLER:
|
|
|
|
|
case OFPACT_OUTPUT_REG:
|
|
|
|
|
case OFPACT_BUNDLE:
|
|
|
|
|
case OFPACT_REG_MOVE:
|
|
|
|
|
case OFPACT_REG_LOAD:
|
2013-03-05 16:27:55 -08:00
|
|
|
|
case OFPACT_STACK_PUSH:
|
|
|
|
|
case OFPACT_STACK_POP:
|
2012-07-03 22:14:29 -07:00
|
|
|
|
case OFPACT_SET_TUNNEL:
|
|
|
|
|
case OFPACT_POP_QUEUE:
|
|
|
|
|
case OFPACT_FIN_TIMEOUT:
|
|
|
|
|
case OFPACT_RESUBMIT:
|
|
|
|
|
case OFPACT_LEARN:
|
|
|
|
|
case OFPACT_MULTIPATH:
|
|
|
|
|
case OFPACT_NOTE:
|
|
|
|
|
case OFPACT_EXIT:
|
2013-04-22 10:01:14 -07:00
|
|
|
|
case OFPACT_SAMPLE:
|
2012-07-03 22:14:29 -07:00
|
|
|
|
ofpact_to_nxast(a, out);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Converts the ofpacts in 'ofpacts' (terminated by OFPACT_END) into OpenFlow
|
|
|
|
|
* 1.1 actions in 'openflow', appending the actions to any existing data in
|
|
|
|
|
* 'openflow'. */
|
2012-08-08 06:49:41 +09:00
|
|
|
|
size_t
|
2012-07-03 22:14:29 -07:00
|
|
|
|
ofpacts_put_openflow11_actions(const struct ofpact ofpacts[],
|
|
|
|
|
size_t ofpacts_len, struct ofpbuf *openflow)
|
|
|
|
|
{
|
|
|
|
|
const struct ofpact *a;
|
2012-08-08 06:49:41 +09:00
|
|
|
|
size_t start_size = openflow->size;
|
2012-07-03 22:14:29 -07:00
|
|
|
|
|
|
|
|
|
OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
|
|
|
|
|
ofpact_to_openflow11(a, openflow);
|
|
|
|
|
}
|
2012-08-08 06:49:41 +09:00
|
|
|
|
|
|
|
|
|
return openflow->size - start_size;
|
2012-07-03 22:14:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
2012-10-05 15:56:56 +09:00
|
|
|
|
static void
|
|
|
|
|
ofpacts_update_instruction_actions(struct ofpbuf *openflow, size_t ofs)
|
2012-07-03 22:14:29 -07:00
|
|
|
|
{
|
|
|
|
|
struct ofp11_instruction_actions *oia;
|
|
|
|
|
|
|
|
|
|
/* Update the instruction's length (or, if it's empty, delete it). */
|
|
|
|
|
oia = ofpbuf_at_assert(openflow, ofs, sizeof *oia);
|
|
|
|
|
if (openflow->size > ofs + sizeof *oia) {
|
|
|
|
|
oia->len = htons(openflow->size - ofs);
|
|
|
|
|
} else {
|
|
|
|
|
openflow->size = ofs;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-05 15:56:56 +09:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ofpacts_put_openflow11_instructions(const struct ofpact ofpacts[],
|
|
|
|
|
size_t ofpacts_len,
|
|
|
|
|
struct ofpbuf *openflow)
|
|
|
|
|
{
|
|
|
|
|
const struct ofpact *a;
|
|
|
|
|
|
|
|
|
|
OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
|
2013-06-27 11:01:18 -07:00
|
|
|
|
switch (ovs_instruction_type_from_ofpact_type(a->type)) {
|
|
|
|
|
case OVSINST_OFPIT11_CLEAR_ACTIONS:
|
2012-10-16 15:40:27 -07:00
|
|
|
|
instruction_put_OFPIT11_CLEAR_ACTIONS(openflow);
|
2013-06-27 11:01:18 -07:00
|
|
|
|
break;
|
2012-10-05 15:56:56 +09:00
|
|
|
|
|
2013-06-27 11:01:18 -07:00
|
|
|
|
case OVSINST_OFPIT11_GOTO_TABLE: {
|
|
|
|
|
struct ofp11_instruction_goto_table *oigt;
|
2012-10-05 15:56:56 +09:00
|
|
|
|
oigt = instruction_put_OFPIT11_GOTO_TABLE(openflow);
|
|
|
|
|
oigt->table_id = ofpact_get_GOTO_TABLE(a)->table_id;
|
|
|
|
|
memset(oigt->pad, 0, sizeof oigt->pad);
|
2013-06-27 11:01:18 -07:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case OVSINST_OFPIT11_WRITE_METADATA: {
|
2012-10-19 02:37:37 +09:00
|
|
|
|
const struct ofpact_metadata *om;
|
|
|
|
|
struct ofp11_instruction_write_metadata *oiwm;
|
|
|
|
|
|
|
|
|
|
om = ofpact_get_WRITE_METADATA(a);
|
|
|
|
|
oiwm = instruction_put_OFPIT11_WRITE_METADATA(openflow);
|
|
|
|
|
oiwm->metadata = om->metadata;
|
|
|
|
|
oiwm->metadata_mask = om->mask;
|
2013-06-27 11:01:18 -07:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case OVSINST_OFPIT13_METER: {
|
2013-06-20 17:26:18 +03:00
|
|
|
|
const struct ofpact_meter *om;
|
|
|
|
|
struct ofp13_instruction_meter *oim;
|
|
|
|
|
|
|
|
|
|
om = ofpact_get_METER(a);
|
|
|
|
|
oim = instruction_put_OFPIT13_METER(openflow);
|
|
|
|
|
oim->meter_id = htonl(om->meter_id);
|
2013-06-27 11:01:18 -07:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case OVSINST_OFPIT11_APPLY_ACTIONS: {
|
2012-10-05 15:56:56 +09:00
|
|
|
|
const size_t ofs = openflow->size;
|
|
|
|
|
const size_t ofpacts_len_left =
|
|
|
|
|
(uint8_t*)ofpact_end(ofpacts, ofpacts_len) - (uint8_t*)a;
|
|
|
|
|
const struct ofpact *action;
|
|
|
|
|
const struct ofpact *processed = a;
|
|
|
|
|
|
|
|
|
|
instruction_put_OFPIT11_APPLY_ACTIONS(openflow);
|
|
|
|
|
OFPACT_FOR_EACH(action, a, ofpacts_len_left) {
|
2013-06-27 11:01:18 -07:00
|
|
|
|
if (ovs_instruction_type_from_ofpact_type(action->type)
|
|
|
|
|
!= OVSINST_OFPIT11_APPLY_ACTIONS) {
|
2012-10-05 15:56:56 +09:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
ofpact_to_openflow11(action, openflow);
|
|
|
|
|
processed = action;
|
|
|
|
|
}
|
|
|
|
|
ofpacts_update_instruction_actions(openflow, ofs);
|
|
|
|
|
a = processed;
|
2013-06-27 11:01:18 -07:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case OVSINST_OFPIT11_WRITE_ACTIONS:
|
|
|
|
|
NOT_REACHED();
|
2012-10-05 15:56:56 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-07-03 22:14:29 -07:00
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
/* Returns true if 'action' outputs to 'port', false otherwise. */
|
|
|
|
|
static bool
|
2013-06-19 16:58:44 -07:00
|
|
|
|
ofpact_outputs_to_port(const struct ofpact *ofpact, ofp_port_t port)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
switch (ofpact->type) {
|
|
|
|
|
case OFPACT_OUTPUT:
|
|
|
|
|
return ofpact_get_OUTPUT(ofpact)->port == port;
|
|
|
|
|
case OFPACT_ENQUEUE:
|
|
|
|
|
return ofpact_get_ENQUEUE(ofpact)->port == port;
|
|
|
|
|
case OFPACT_CONTROLLER:
|
|
|
|
|
return port == OFPP_CONTROLLER;
|
|
|
|
|
|
|
|
|
|
case OFPACT_OUTPUT_REG:
|
|
|
|
|
case OFPACT_BUNDLE:
|
|
|
|
|
case OFPACT_SET_VLAN_VID:
|
|
|
|
|
case OFPACT_SET_VLAN_PCP:
|
|
|
|
|
case OFPACT_STRIP_VLAN:
|
2012-10-26 13:43:19 +09:00
|
|
|
|
case OFPACT_PUSH_VLAN:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_ETH_SRC:
|
|
|
|
|
case OFPACT_SET_ETH_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_SRC:
|
|
|
|
|
case OFPACT_SET_IPV4_DST:
|
|
|
|
|
case OFPACT_SET_IPV4_DSCP:
|
|
|
|
|
case OFPACT_SET_L4_SRC_PORT:
|
|
|
|
|
case OFPACT_SET_L4_DST_PORT:
|
|
|
|
|
case OFPACT_REG_MOVE:
|
|
|
|
|
case OFPACT_REG_LOAD:
|
2013-03-05 16:27:55 -08:00
|
|
|
|
case OFPACT_STACK_PUSH:
|
|
|
|
|
case OFPACT_STACK_POP:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_DEC_TTL:
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPACT_SET_MPLS_TTL:
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPACT_DEC_MPLS_TTL:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_TUNNEL:
|
2012-10-19 02:37:37 +09:00
|
|
|
|
case OFPACT_WRITE_METADATA:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_QUEUE:
|
|
|
|
|
case OFPACT_POP_QUEUE:
|
|
|
|
|
case OFPACT_FIN_TIMEOUT:
|
|
|
|
|
case OFPACT_RESUBMIT:
|
|
|
|
|
case OFPACT_LEARN:
|
|
|
|
|
case OFPACT_MULTIPATH:
|
|
|
|
|
case OFPACT_NOTE:
|
|
|
|
|
case OFPACT_EXIT:
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPACT_PUSH_MPLS:
|
|
|
|
|
case OFPACT_POP_MPLS:
|
2013-04-22 10:01:14 -07:00
|
|
|
|
case OFPACT_SAMPLE:
|
2012-10-05 15:56:57 +09:00
|
|
|
|
case OFPACT_CLEAR_ACTIONS:
|
2012-10-05 15:56:56 +09:00
|
|
|
|
case OFPACT_GOTO_TABLE:
|
2013-06-20 17:26:18 +03:00
|
|
|
|
case OFPACT_METER:
|
2012-07-03 22:17:14 -07:00
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns true if any action in the 'ofpacts_len' bytes of 'ofpacts' outputs
|
|
|
|
|
* to 'port', false otherwise. */
|
|
|
|
|
bool
|
|
|
|
|
ofpacts_output_to_port(const struct ofpact *ofpacts, size_t ofpacts_len,
|
2013-06-19 16:58:44 -07:00
|
|
|
|
ofp_port_t port)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
|
|
|
|
const struct ofpact *a;
|
|
|
|
|
|
|
|
|
|
OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
|
|
|
|
|
if (ofpact_outputs_to_port(a, port)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
ofpacts_equal(const struct ofpact *a, size_t a_len,
|
|
|
|
|
const struct ofpact *b, size_t b_len)
|
|
|
|
|
{
|
|
|
|
|
return a_len == b_len && !memcmp(a, b, a_len);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Formatting ofpacts. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_note(const struct ofpact_note *note, struct ds *string)
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
ds_put_cstr(string, "note:");
|
|
|
|
|
for (i = 0; i < note->length; i++) {
|
|
|
|
|
if (i) {
|
|
|
|
|
ds_put_char(string, '.');
|
|
|
|
|
}
|
|
|
|
|
ds_put_format(string, "%02"PRIx8, note->data[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-16 14:25:07 -07:00
|
|
|
|
static void
|
|
|
|
|
print_dec_ttl(const struct ofpact_cnt_ids *ids,
|
|
|
|
|
struct ds *s)
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
ds_put_cstr(s, "dec_ttl");
|
|
|
|
|
if (ids->ofpact.compat == OFPUTIL_NXAST_DEC_TTL_CNT_IDS) {
|
|
|
|
|
ds_put_cstr(s, "(");
|
|
|
|
|
for (i = 0; i < ids->n_controllers; i++) {
|
|
|
|
|
if (i) {
|
|
|
|
|
ds_put_cstr(s, ",");
|
|
|
|
|
}
|
|
|
|
|
ds_put_format(s, "%"PRIu16, ids->cnt_ids[i]);
|
|
|
|
|
}
|
|
|
|
|
ds_put_cstr(s, ")");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
static void
|
|
|
|
|
print_fin_timeout(const struct ofpact_fin_timeout *fin_timeout,
|
|
|
|
|
struct ds *s)
|
|
|
|
|
{
|
|
|
|
|
ds_put_cstr(s, "fin_timeout(");
|
|
|
|
|
if (fin_timeout->fin_idle_timeout) {
|
|
|
|
|
ds_put_format(s, "idle_timeout=%"PRIu16",",
|
|
|
|
|
fin_timeout->fin_idle_timeout);
|
|
|
|
|
}
|
|
|
|
|
if (fin_timeout->fin_hard_timeout) {
|
|
|
|
|
ds_put_format(s, "hard_timeout=%"PRIu16",",
|
|
|
|
|
fin_timeout->fin_hard_timeout);
|
|
|
|
|
}
|
|
|
|
|
ds_chomp(s, ',');
|
|
|
|
|
ds_put_char(s, ')');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ofpact_format(const struct ofpact *a, struct ds *s)
|
|
|
|
|
{
|
|
|
|
|
const struct ofpact_enqueue *enqueue;
|
|
|
|
|
const struct ofpact_resubmit *resubmit;
|
|
|
|
|
const struct ofpact_controller *controller;
|
2012-10-19 02:37:37 +09:00
|
|
|
|
const struct ofpact_metadata *metadata;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
const struct ofpact_tunnel *tunnel;
|
2013-04-22 10:01:14 -07:00
|
|
|
|
const struct ofpact_sample *sample;
|
2013-06-19 16:58:44 -07:00
|
|
|
|
ofp_port_t port;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
|
|
|
|
|
switch (a->type) {
|
|
|
|
|
case OFPACT_OUTPUT:
|
|
|
|
|
port = ofpact_get_OUTPUT(a)->port;
|
2013-06-19 16:58:44 -07:00
|
|
|
|
if (ofp_to_u16(port) < ofp_to_u16(OFPP_MAX)) {
|
2012-07-03 22:17:14 -07:00
|
|
|
|
ds_put_format(s, "output:%"PRIu16, port);
|
|
|
|
|
} else {
|
|
|
|
|
ofputil_format_port(port, s);
|
|
|
|
|
if (port == OFPP_CONTROLLER) {
|
|
|
|
|
ds_put_format(s, ":%"PRIu16, ofpact_get_OUTPUT(a)->max_len);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_CONTROLLER:
|
|
|
|
|
controller = ofpact_get_CONTROLLER(a);
|
|
|
|
|
if (controller->reason == OFPR_ACTION &&
|
|
|
|
|
controller->controller_id == 0) {
|
|
|
|
|
ds_put_format(s, "CONTROLLER:%"PRIu16,
|
|
|
|
|
ofpact_get_CONTROLLER(a)->max_len);
|
|
|
|
|
} else {
|
|
|
|
|
enum ofp_packet_in_reason reason = controller->reason;
|
|
|
|
|
|
|
|
|
|
ds_put_cstr(s, "controller(");
|
|
|
|
|
if (reason != OFPR_ACTION) {
|
2013-04-16 15:13:21 -07:00
|
|
|
|
char reasonbuf[OFPUTIL_PACKET_IN_REASON_BUFSIZE];
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
ds_put_format(s, "reason=%s,",
|
2013-04-16 15:13:21 -07:00
|
|
|
|
ofputil_packet_in_reason_to_string(
|
|
|
|
|
reason, reasonbuf, sizeof reasonbuf));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
|
|
|
|
if (controller->max_len != UINT16_MAX) {
|
|
|
|
|
ds_put_format(s, "max_len=%"PRIu16",", controller->max_len);
|
|
|
|
|
}
|
|
|
|
|
if (controller->controller_id != 0) {
|
|
|
|
|
ds_put_format(s, "id=%"PRIu16",", controller->controller_id);
|
|
|
|
|
}
|
|
|
|
|
ds_chomp(s, ',');
|
|
|
|
|
ds_put_char(s, ')');
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_ENQUEUE:
|
|
|
|
|
enqueue = ofpact_get_ENQUEUE(a);
|
|
|
|
|
ds_put_format(s, "enqueue:");
|
|
|
|
|
ofputil_format_port(enqueue->port, s);
|
|
|
|
|
ds_put_format(s, "q%"PRIu32, enqueue->queue);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_OUTPUT_REG:
|
|
|
|
|
ds_put_cstr(s, "output:");
|
|
|
|
|
mf_format_subfield(&ofpact_get_OUTPUT_REG(a)->src, s);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_BUNDLE:
|
|
|
|
|
bundle_format(ofpact_get_BUNDLE(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_VLAN_VID:
|
|
|
|
|
ds_put_format(s, "mod_vlan_vid:%"PRIu16,
|
|
|
|
|
ofpact_get_SET_VLAN_VID(a)->vlan_vid);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_VLAN_PCP:
|
|
|
|
|
ds_put_format(s, "mod_vlan_pcp:%"PRIu8,
|
|
|
|
|
ofpact_get_SET_VLAN_PCP(a)->vlan_pcp);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_STRIP_VLAN:
|
|
|
|
|
ds_put_cstr(s, "strip_vlan");
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-26 13:43:19 +09:00
|
|
|
|
case OFPACT_PUSH_VLAN:
|
2012-12-14 20:43:30 -08:00
|
|
|
|
/* XXX 802.1AD case*/
|
2012-10-26 13:43:19 +09:00
|
|
|
|
ds_put_format(s, "push_vlan:%#"PRIx16, ETH_TYPE_VLAN_8021Q);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_ETH_SRC:
|
|
|
|
|
ds_put_format(s, "mod_dl_src:"ETH_ADDR_FMT,
|
|
|
|
|
ETH_ADDR_ARGS(ofpact_get_SET_ETH_SRC(a)->mac));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_ETH_DST:
|
|
|
|
|
ds_put_format(s, "mod_dl_dst:"ETH_ADDR_FMT,
|
|
|
|
|
ETH_ADDR_ARGS(ofpact_get_SET_ETH_DST(a)->mac));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_SRC:
|
|
|
|
|
ds_put_format(s, "mod_nw_src:"IP_FMT,
|
2012-12-12 15:26:21 -08:00
|
|
|
|
IP_ARGS(ofpact_get_SET_IPV4_SRC(a)->ipv4));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_DST:
|
|
|
|
|
ds_put_format(s, "mod_nw_dst:"IP_FMT,
|
2012-12-12 15:26:21 -08:00
|
|
|
|
IP_ARGS(ofpact_get_SET_IPV4_DST(a)->ipv4));
|
2012-07-03 22:17:14 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_IPV4_DSCP:
|
|
|
|
|
ds_put_format(s, "mod_nw_tos:%d", ofpact_get_SET_IPV4_DSCP(a)->dscp);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_L4_SRC_PORT:
|
|
|
|
|
ds_put_format(s, "mod_tp_src:%d", ofpact_get_SET_L4_SRC_PORT(a)->port);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_L4_DST_PORT:
|
|
|
|
|
ds_put_format(s, "mod_tp_dst:%d", ofpact_get_SET_L4_DST_PORT(a)->port);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_REG_MOVE:
|
|
|
|
|
nxm_format_reg_move(ofpact_get_REG_MOVE(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_REG_LOAD:
|
|
|
|
|
nxm_format_reg_load(ofpact_get_REG_LOAD(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-03-05 16:27:55 -08:00
|
|
|
|
case OFPACT_STACK_PUSH:
|
|
|
|
|
nxm_format_stack_push(ofpact_get_STACK_PUSH(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_STACK_POP:
|
|
|
|
|
nxm_format_stack_pop(ofpact_get_STACK_POP(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_DEC_TTL:
|
2012-08-16 14:25:07 -07:00
|
|
|
|
print_dec_ttl(ofpact_get_DEC_TTL(a), s);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2013-03-06 16:08:12 +09:00
|
|
|
|
case OFPACT_SET_MPLS_TTL:
|
|
|
|
|
ds_put_format(s, "set_mpls_ttl(%"PRIu8")",
|
|
|
|
|
ofpact_get_SET_MPLS_TTL(a)->ttl);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-03-06 16:08:23 +09:00
|
|
|
|
case OFPACT_DEC_MPLS_TTL:
|
|
|
|
|
ds_put_cstr(s, "dec_mpls_ttl");
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_SET_TUNNEL:
|
|
|
|
|
tunnel = ofpact_get_SET_TUNNEL(a);
|
|
|
|
|
ds_put_format(s, "set_tunnel%s:%#"PRIx64,
|
|
|
|
|
(tunnel->tun_id > UINT32_MAX
|
|
|
|
|
|| a->compat == OFPUTIL_NXAST_SET_TUNNEL64 ? "64" : ""),
|
|
|
|
|
tunnel->tun_id);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_SET_QUEUE:
|
|
|
|
|
ds_put_format(s, "set_queue:%"PRIu32,
|
|
|
|
|
ofpact_get_SET_QUEUE(a)->queue_id);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_POP_QUEUE:
|
|
|
|
|
ds_put_cstr(s, "pop_queue");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_FIN_TIMEOUT:
|
|
|
|
|
print_fin_timeout(ofpact_get_FIN_TIMEOUT(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_RESUBMIT:
|
|
|
|
|
resubmit = ofpact_get_RESUBMIT(a);
|
|
|
|
|
if (resubmit->in_port != OFPP_IN_PORT && resubmit->table_id == 255) {
|
2012-09-20 08:40:29 -07:00
|
|
|
|
ds_put_cstr(s, "resubmit:");
|
|
|
|
|
ofputil_format_port(resubmit->in_port, s);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
} else {
|
|
|
|
|
ds_put_format(s, "resubmit(");
|
|
|
|
|
if (resubmit->in_port != OFPP_IN_PORT) {
|
|
|
|
|
ofputil_format_port(resubmit->in_port, s);
|
|
|
|
|
}
|
|
|
|
|
ds_put_char(s, ',');
|
|
|
|
|
if (resubmit->table_id != 255) {
|
|
|
|
|
ds_put_format(s, "%"PRIu8, resubmit->table_id);
|
|
|
|
|
}
|
|
|
|
|
ds_put_char(s, ')');
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_LEARN:
|
|
|
|
|
learn_format(ofpact_get_LEARN(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_MULTIPATH:
|
|
|
|
|
multipath_format(ofpact_get_MULTIPATH(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_NOTE:
|
|
|
|
|
print_note(ofpact_get_NOTE(a), s);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
|
case OFPACT_PUSH_MPLS:
|
|
|
|
|
ds_put_format(s, "push_mpls:0x%04"PRIx16,
|
|
|
|
|
ntohs(ofpact_get_PUSH_MPLS(a)->ethertype));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OFPACT_POP_MPLS:
|
|
|
|
|
ds_put_format(s, "pop_mpls:0x%04"PRIx16,
|
|
|
|
|
ntohs(ofpact_get_POP_MPLS(a)->ethertype));
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
case OFPACT_EXIT:
|
|
|
|
|
ds_put_cstr(s, "exit");
|
|
|
|
|
break;
|
2012-10-05 15:56:56 +09:00
|
|
|
|
|
2013-04-22 10:01:14 -07:00
|
|
|
|
case OFPACT_SAMPLE:
|
|
|
|
|
sample = ofpact_get_SAMPLE(a);
|
|
|
|
|
ds_put_format(
|
|
|
|
|
s, "sample(probability=%"PRIu16",collector_set_id=%"PRIu32
|
|
|
|
|
",obs_domain_id=%"PRIu32",obs_point_id=%"PRIu32")",
|
|
|
|
|
sample->probability, sample->collector_set_id,
|
|
|
|
|
sample->obs_domain_id, sample->obs_point_id);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-05 15:56:57 +09:00
|
|
|
|
case OFPACT_CLEAR_ACTIONS:
|
|
|
|
|
ds_put_format(s, "%s",
|
2013-06-27 11:04:50 -07:00
|
|
|
|
ovs_instruction_name_from_type(
|
2012-10-05 15:56:57 +09:00
|
|
|
|
OVSINST_OFPIT11_CLEAR_ACTIONS));
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-19 02:37:37 +09:00
|
|
|
|
case OFPACT_WRITE_METADATA:
|
|
|
|
|
metadata = ofpact_get_WRITE_METADATA(a);
|
|
|
|
|
ds_put_format(s, "%s:%#"PRIx64,
|
2013-06-27 11:04:50 -07:00
|
|
|
|
ovs_instruction_name_from_type(
|
2012-10-19 02:37:37 +09:00
|
|
|
|
OVSINST_OFPIT11_WRITE_METADATA),
|
|
|
|
|
ntohll(metadata->metadata));
|
|
|
|
|
if (metadata->mask != htonll(UINT64_MAX)) {
|
|
|
|
|
ds_put_format(s, "/%#"PRIx64, ntohll(metadata->mask));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-05 15:56:56 +09:00
|
|
|
|
case OFPACT_GOTO_TABLE:
|
|
|
|
|
ds_put_format(s, "%s:%"PRIu8,
|
2013-06-27 11:04:50 -07:00
|
|
|
|
ovs_instruction_name_from_type(
|
2012-10-05 15:56:56 +09:00
|
|
|
|
OVSINST_OFPIT11_GOTO_TABLE),
|
|
|
|
|
ofpact_get_GOTO_TABLE(a)->table_id);
|
|
|
|
|
break;
|
2013-06-20 17:26:18 +03:00
|
|
|
|
|
|
|
|
|
case OFPACT_METER:
|
|
|
|
|
ds_put_format(s, "%s:%"PRIu32,
|
2013-06-27 11:04:50 -07:00
|
|
|
|
ovs_instruction_name_from_type(OVSINST_OFPIT13_METER),
|
2013-06-20 17:26:18 +03:00
|
|
|
|
ofpact_get_METER(a)->meter_id);
|
|
|
|
|
break;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends a string representing the 'ofpacts_len' bytes of ofpacts in
|
|
|
|
|
* 'ofpacts' to 'string'. */
|
|
|
|
|
void
|
|
|
|
|
ofpacts_format(const struct ofpact *ofpacts, size_t ofpacts_len,
|
|
|
|
|
struct ds *string)
|
|
|
|
|
{
|
|
|
|
|
ds_put_cstr(string, "actions=");
|
|
|
|
|
if (!ofpacts_len) {
|
|
|
|
|
ds_put_cstr(string, "drop");
|
|
|
|
|
} else {
|
|
|
|
|
const struct ofpact *a;
|
|
|
|
|
|
|
|
|
|
OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
|
|
|
|
|
if (a != ofpacts) {
|
|
|
|
|
ds_put_cstr(string, ",");
|
|
|
|
|
}
|
2012-10-05 15:56:56 +09:00
|
|
|
|
|
2012-12-14 20:43:30 -08:00
|
|
|
|
/* XXX write-actions */
|
2012-07-03 22:17:14 -07:00
|
|
|
|
ofpact_format(a, string);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Internal use by helpers. */
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
|
ofpact_put(struct ofpbuf *ofpacts, enum ofpact_type type, size_t len)
|
|
|
|
|
{
|
|
|
|
|
struct ofpact *ofpact;
|
|
|
|
|
|
|
|
|
|
ofpact_pad(ofpacts);
|
|
|
|
|
ofpact = ofpacts->l2 = ofpbuf_put_uninit(ofpacts, len);
|
|
|
|
|
ofpact_init(ofpact, type, len);
|
|
|
|
|
return ofpact;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ofpact_init(struct ofpact *ofpact, enum ofpact_type type, size_t len)
|
|
|
|
|
{
|
|
|
|
|
memset(ofpact, 0, len);
|
|
|
|
|
ofpact->type = type;
|
|
|
|
|
ofpact->compat = OFPUTIL_ACTION_INVALID;
|
|
|
|
|
ofpact->len = len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Updates 'ofpact->len' to the number of bytes in the tail of 'ofpacts'
|
|
|
|
|
* starting at 'ofpact'.
|
|
|
|
|
*
|
|
|
|
|
* This is the correct way to update a variable-length ofpact's length after
|
|
|
|
|
* adding the variable-length part of the payload. (See the large comment
|
|
|
|
|
* near the end of ofp-actions.h for more information.) */
|
|
|
|
|
void
|
|
|
|
|
ofpact_update_len(struct ofpbuf *ofpacts, struct ofpact *ofpact)
|
|
|
|
|
{
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(ofpact == ofpacts->l2);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
ofpact->len = (char *) ofpbuf_tail(ofpacts) - (char *) ofpact;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Pads out 'ofpacts' to a multiple of OFPACT_ALIGNTO bytes in length. Each
|
|
|
|
|
* ofpact_put_<ENUM>() calls this function automatically beforehand, but the
|
|
|
|
|
* client must call this itself after adding the final ofpact to an array of
|
|
|
|
|
* them.
|
|
|
|
|
*
|
|
|
|
|
* (The consequences of failing to call this function are probably not dire.
|
|
|
|
|
* OFPACT_FOR_EACH will calculate a pointer beyond the end of the ofpacts, but
|
|
|
|
|
* not dereference it. That's undefined behavior, technically, but it will not
|
|
|
|
|
* cause a real problem on common systems. Still, it seems better to call
|
|
|
|
|
* it.) */
|
|
|
|
|
void
|
|
|
|
|
ofpact_pad(struct ofpbuf *ofpacts)
|
|
|
|
|
{
|
|
|
|
|
unsigned int rem = ofpacts->size % OFPACT_ALIGNTO;
|
|
|
|
|
if (rem) {
|
|
|
|
|
ofpbuf_put_zeros(ofpacts, OFPACT_ALIGNTO - rem);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-09-28 14:59:10 +09:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ofpact_set_field_init(struct ofpact_reg_load *load, const struct mf_field *mf,
|
|
|
|
|
const void *src)
|
|
|
|
|
{
|
|
|
|
|
load->ofpact.compat = OFPUTIL_OFPAT12_SET_FIELD;
|
|
|
|
|
load->dst.field = mf;
|
|
|
|
|
load->dst.ofs = 0;
|
|
|
|
|
load->dst.n_bits = mf->n_bits;
|
|
|
|
|
bitwise_copy(src, mf->n_bytes, load->dst.ofs,
|
|
|
|
|
&load->subvalue, sizeof load->subvalue, 0, mf->n_bits);
|
|
|
|
|
}
|