X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=ofproto%2Fofproto-dpif-xlate.h;h=02067a7accbb549668c1cf354e7ad18e6aba8bef;hb=63eded989e13464bcc7a62ffae54467e5bebaebf;hp=91b913bf6c942ca3aff25deb87a20bce78b5421a;hpb=2031ef971435436037b77b379651c84b376e12a0;p=cascardo%2Fovs.git diff --git a/ofproto/ofproto-dpif-xlate.h b/ofproto/ofproto-dpif-xlate.h index 91b913bf6..02067a7ac 100644 --- a/ofproto/ofproto-dpif-xlate.h +++ b/ofproto/ofproto-dpif-xlate.h @@ -41,68 +41,10 @@ struct xlate_out { enum slow_path_reason slow; /* 0 if fast path may be used. */ bool fail_open; /* Initial rule is fail open? */ - /* Recirculation IDs on which references are held. */ - unsigned n_recircs; - union { - uint32_t recirc[2]; /* When n_recircs == 1 or 2 */ - uint32_t *recircs; /* When 'n_recircs' > 2 */ - }; + struct recirc_refs recircs; /* Recirc action IDs on which references are + * held. */ }; -/* Helpers to abstract the recirculation union away. */ -static inline void -xlate_out_add_recirc(struct xlate_out *xout, uint32_t id) -{ - if (OVS_LIKELY(xout->n_recircs < ARRAY_SIZE(xout->recirc))) { - xout->recirc[xout->n_recircs++] = id; - } else { - if (xout->n_recircs == ARRAY_SIZE(xout->recirc)) { - uint32_t *recircs = xmalloc(sizeof xout->recirc + sizeof id); - - memcpy(recircs, xout->recirc, sizeof xout->recirc); - xout->recircs = recircs; - } else { - xout->recircs = xrealloc(xout->recircs, - (xout->n_recircs + 1) * sizeof id); - } - xout->recircs[xout->n_recircs++] = id; - } -} - -static inline const uint32_t * -xlate_out_get_recircs(const struct xlate_out *xout) -{ - if (OVS_LIKELY(xout->n_recircs <= ARRAY_SIZE(xout->recirc))) { - return xout->recirc; - } else { - return xout->recircs; - } -} - -static inline void -xlate_out_take_recircs(struct xlate_out *xout) -{ - if (OVS_UNLIKELY(xout->n_recircs > ARRAY_SIZE(xout->recirc))) { - free(xout->recircs); - } - xout->n_recircs = 0; -} - -static inline void -xlate_out_free_recircs(struct xlate_out *xout) -{ - if (OVS_LIKELY(xout->n_recircs <= ARRAY_SIZE(xout->recirc))) { - for (int i = 0; i < xout->n_recircs; i++) { - recirc_free_id(xout->recirc[i]); - } - } else { - for (int i = 0; i < xout->n_recircs; i++) { - recirc_free_id(xout->recircs[i]); - } - free(xout->recircs); - } -} - struct xlate_in { struct ofproto_dpif *ofproto; @@ -163,6 +105,20 @@ struct xlate_in { * calling xlate_in_init(). */ const struct dpif_flow_stats *resubmit_stats; + /* Recursion and resubmission levels carried over from a pre-existing + * translation of a related flow. An example of when this can occur is + * the translation of an ARP packet that was generated as the result of + * outputting to a tunnel port. In this case, the original flow going to + * the tunnel is the related flow. Since the two flows are different, they + * should not use the same xlate_ctx structure. However, we still need + * limit the maximum recursion across the entire translation. + * + * These fields are normally set to zero, so the client has to set them + * manually after calling xlate_in_init(). In that case, they should be + * copied from the same-named fields in the related flow's xlate_ctx. */ + int recurse; + int resubmits; + /* If nonnull, flow translation populates this cache with references to all * modules that are affected by translation. This 'xlate_cache' may be * passed to xlate_push_stats() to perform the same function as @@ -225,7 +181,21 @@ int xlate_lookup(const struct dpif_backer *, const struct flow *, struct dpif_sflow **, struct netflow **, ofp_port_t *ofp_in_port); -void xlate_actions(struct xlate_in *, struct xlate_out *); +enum xlate_error { + XLATE_OK = 0, + XLATE_BRIDGE_NOT_FOUND, + XLATE_RECURSION_TOO_DEEP, + XLATE_TOO_MANY_RESUBMITS, + XLATE_STACK_TOO_DEEP, + XLATE_NO_RECIRCULATION_CONTEXT, + XLATE_RECIRCULATION_CONFLICT, + XLATE_TOO_MANY_MPLS_LABELS, +}; + +const char *xlate_strerror(enum xlate_error error); + +enum xlate_error xlate_actions(struct xlate_in *, struct xlate_out *); + void xlate_in_init(struct xlate_in *, struct ofproto_dpif *, const struct flow *, ofp_port_t in_port, struct rule_dpif *, uint16_t tcp_flags, const struct dp_packet *packet,