X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=lib%2Fautopath.c;h=9a39c6a1f62317a11dcc208fc8448529a262b27b;hb=28da1f8f725fc2a797174df18a7b3e31ef49ede0;hp=889b037bf5984f20424d37c9fd592b6e59fc67f6;hpb=3b6a2571f07e153e850a9bf2044699d8d4434ef0;p=openvswitch diff --git a/lib/autopath.c b/lib/autopath.c index 889b037b..9a39c6a1 100644 --- a/lib/autopath.c +++ b/lib/autopath.c @@ -29,19 +29,13 @@ VLOG_DEFINE_THIS_MODULE(autopath); -static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); - /* Loads 'ofp_port' into the appropriate register in accordance with the * autopath action. */ void autopath_execute(const struct nx_action_autopath *ap, struct flow *flow, uint16_t ofp_port) { - uint32_t *reg = &flow->regs[NXM_NX_REG_IDX(ntohl(ap->dst))]; - int ofs = nxm_decode_ofs(ap->ofs_nbits); - int n_bits = nxm_decode_n_bits(ap->ofs_nbits); - uint32_t mask = n_bits == 32 ? UINT32_MAX : (UINT32_C(1) << n_bits) - 1; - *reg = (*reg & ~(mask << ofs)) | ((ofp_port & mask) << ofs); + nxm_reg_load(ap->dst, ap->ofs_nbits, ofp_port, flow); } void @@ -68,20 +62,12 @@ autopath_parse(struct nx_action_autopath *ap, const char *s_) } nxm_parse_field_bits(dst, ®, &ofs, &n_bits); - if (!NXM_IS_NX_REG(reg) || NXM_NX_REG_IDX(reg) >= FLOW_N_REGS) { - ovs_fatal(0, "%s: destination field must be a register", s_); - } - if (n_bits < 16) { ovs_fatal(0, "%s: %d-bit destination field has %u possible values, " "less than required 65536", s_, n_bits, 1u << n_bits); } - memset(ap, 0, sizeof *ap); - ap->type = htons(OFPAT_VENDOR); - ap->len = htons(sizeof *ap); - ap->vendor = htonl(NX_VENDOR_ID); - ap->subtype = htons(NXAST_AUTOPATH); + ofputil_init_NXAST_AUTOPATH(ap); ap->id = htonl(id_int); ap->ofs_nbits = nxm_encode_ofs_nbits(ofs, n_bits); ap->dst = htonl(reg); @@ -90,21 +76,16 @@ autopath_parse(struct nx_action_autopath *ap, const char *s_) } int -autopath_check(const struct nx_action_autopath *ap) +autopath_check(const struct nx_action_autopath *ap, const struct flow *flow) { - uint32_t dst = ntohl(ap->dst); - int ofs = nxm_decode_ofs(ap->ofs_nbits); int n_bits = nxm_decode_n_bits(ap->ofs_nbits); + int ofs = nxm_decode_ofs(ap->ofs_nbits); - if (!NXM_IS_NX_REG(dst) || NXM_NX_REG_IDX(dst) >= FLOW_N_REGS) { - VLOG_WARN_RL(&rl, "unsupported destination field %#"PRIx32, dst); - } else if (ofs + n_bits > nxm_field_bits(dst)) { - VLOG_WARN_RL(&rl, "destination overflows output field"); - } else if (n_bits < 16) { - VLOG_WARN_RL(&rl, "minimum of 16 bits required in output field"); - } else { - return 0; + if (n_bits < 16) { + VLOG_WARN("at least 16 bit destination is required for autopath " + "action."); + return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT); } - return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT); + return nxm_dst_check(ap->dst, ofs, n_bits, flow); }