IB/uverbs: Fix validating mandatory attributes
[ Upstream commitf604db645a
] Previously, if a method contained mandatory attributes in a namespace that wasn't given by the user, these attributes weren't validated. Fixing this by iterating over all specification namespaces. Fixes:fac9658cab
("IB/core: Add new ioctl interface") Signed-off-by: Matan Barak <matanb@mellanox.com> Signed-off-by: Doug Ledford <dledford@redhat.com> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fb019834bf
commit
84f66378da
@ -191,6 +191,15 @@ static int uverbs_validate_kernel_mandatory(const struct uverbs_method_spec *met
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (; i < method_spec->num_buckets; i++) {
|
||||||
|
struct uverbs_attr_spec_hash *attr_spec_bucket =
|
||||||
|
method_spec->attr_buckets[i];
|
||||||
|
|
||||||
|
if (!bitmap_empty(attr_spec_bucket->mandatory_attrs_bitmask,
|
||||||
|
attr_spec_bucket->num_attrs))
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user