From: Yi-Hung Wei <[email protected]> decode_nx_packet_in2() may be used by the switch to parse NXT_RESUME messages, where we need exact match on the oxm header. It's also used by OVN to parse NXT_PACKET_IN2 messages. For the switch, strict prerequisites should be applied but for the controller, this should not be the case. Pass the 'loose' parameter down to oxm_decode() to apply these restrictions correctly based on which code is performing decode.
Signed-off-by: Yi-Hung Wei <[email protected]> Signed-off-by: Joe Stringer <[email protected]> --- lib/nx-match.c | 8 +++++--- lib/nx-match.h | 4 ++-- lib/ofp-util.c | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/nx-match.c b/lib/nx-match.c index 91401e2201c6..c258869eec80 100644 --- a/lib/nx-match.c +++ b/lib/nx-match.c @@ -678,12 +678,14 @@ oxm_pull_match_loose(struct ofpbuf *b, const struct tun_table *tun_table, * * Fails with an error when encountering unknown OXM headers. * - * Returns 0 if successful, otherwise an OpenFlow error code. */ + * If 'loose' is true, encountering unknown OXM headers or missing field + * prerequisites are not considered as error conditions. + */ enum ofperr -oxm_decode_match(const void *oxm, size_t oxm_len, +oxm_decode_match(const void *oxm, size_t oxm_len, bool loose, const struct tun_table *tun_table, struct match *match) { - return nx_pull_raw(oxm, oxm_len, true, match, NULL, NULL, tun_table); + return nx_pull_raw(oxm, oxm_len, !loose, match, NULL, NULL, tun_table); } /* Verify an array of OXM TLVs treating value of each TLV as a mask, diff --git a/lib/nx-match.h b/lib/nx-match.h index 5dca24a01a49..e103dd5fa74d 100644 --- a/lib/nx-match.h +++ b/lib/nx-match.h @@ -61,8 +61,8 @@ enum ofperr oxm_pull_match(struct ofpbuf *, const struct tun_table *, struct match *); enum ofperr oxm_pull_match_loose(struct ofpbuf *, const struct tun_table *, struct match *); -enum ofperr oxm_decode_match(const void *, size_t, const struct tun_table *, - struct match *); +enum ofperr oxm_decode_match(const void *, size_t, bool, + const struct tun_table *, struct match *); enum ofperr oxm_pull_field_array(const void *, size_t fields_len, struct field_array *); diff --git a/lib/ofp-util.c b/lib/ofp-util.c index 0c9343ec400b..d3153370f2e6 100644 --- a/lib/ofp-util.c +++ b/lib/ofp-util.c @@ -3398,7 +3398,7 @@ decode_nx_packet_in2(const struct ofp_header *oh, bool loose, case NXPINT_METADATA: error = oxm_decode_match(payload.msg, ofpbuf_msgsize(&payload), - tun_table, &pin->flow_metadata); + loose, tun_table, &pin->flow_metadata); break; case NXPINT_USERDATA: -- 2.11.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
