summaryrefslogtreecommitdiff
path: root/lib/meta-flow.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2013-01-24 13:39:23 -0800
committerBen Pfaff <blp@nicira.com>2013-01-31 14:12:57 -0800
commit8f75dea3e4d5f92e2bc5d13a1d92cd368fcd9f11 (patch)
tree10e6697b0773280559ee080d1ef712ce705adb45 /lib/meta-flow.c
parentb47e6df6be58e4cf4d876dce5ffa36c42ee6e977 (diff)
downloadopenvswitch-8f75dea3e4d5f92e2bc5d13a1d92cd368fcd9f11.tar.gz
meta-flow: Avoid null pointer dereference in mf_format_frag_string().
The 'maskp' parameter to this function can be NULL, but the function always dereferenced it. This commit fixes the problem. This commit also fixes the order in which the value and mask were adjusted to correctly discard 1-bits outside of FLOW_NW_FRAG_MASK. Found by Coverity. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'lib/meta-flow.c')
-rw-r--r--lib/meta-flow.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/meta-flow.c b/lib/meta-flow.c
index e25103d9e..245ad44b8 100644
--- a/lib/meta-flow.c
+++ b/lib/meta-flow.c
@@ -2235,15 +2235,12 @@ mf_format_integer_string(const struct mf_field *mf, const uint8_t *valuep,
}
static void
-mf_format_frag_string(const uint8_t *valuep, const uint8_t *maskp,
- struct ds *s)
+mf_format_frag_string(uint8_t value, uint8_t mask, struct ds *s)
{
const struct frag_handling *h;
- uint8_t value = *valuep;
- uint8_t mask = *maskp;
- value &= mask;
mask &= FLOW_NW_FRAG_MASK;
+ value &= mask;
for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
if (value == h->value && mask == h->mask) {
@@ -2302,7 +2299,7 @@ mf_format(const struct mf_field *mf,
break;
case MFS_FRAG:
- mf_format_frag_string(&value->u8, &mask->u8, s);
+ mf_format_frag_string(value->u8, mask ? mask->u8 : UINT8_MAX, s);
break;
case MFS_TNL_FLAGS: