diff options
author | Jakub Kicinski <kuba@kernel.org> | 2020-03-02 21:05:26 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-03-20 10:54:12 +0100 |
commit | 402f86abf2c3dae913b166c217147f2e4c05eca6 (patch) | |
tree | b7c36a1bad8f66fa29a4b456a4752257290d5c82 /net | |
parent | 69f30950da6d4e954bc865a8c2632392d3dc3ed5 (diff) | |
download | linux-stable-402f86abf2c3dae913b166c217147f2e4c05eca6.tar.gz linux-stable-402f86abf2c3dae913b166c217147f2e4c05eca6.tar.bz2 linux-stable-402f86abf2c3dae913b166c217147f2e4c05eca6.zip |
nfc: add missing attribute validation for vendor subcommand
[ Upstream commit 6ba3da446551f2150fadbf8c7788edcb977683d3 ]
Add missing attribute validation for vendor subcommand attributes
to the netlink policy.
Fixes: 9e58095f9660 ("NFC: netlink: Implement vendor command support")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/nfc/netlink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/nfc/netlink.c b/net/nfc/netlink.c index 587aea4ae8c0..6199f4334fbd 100644 --- a/net/nfc/netlink.c +++ b/net/nfc/netlink.c @@ -57,6 +57,8 @@ static const struct nla_policy nfc_genl_policy[NFC_ATTR_MAX + 1] = { .len = NFC_FIRMWARE_NAME_MAXSIZE }, [NFC_ATTR_SE_INDEX] = { .type = NLA_U32 }, [NFC_ATTR_SE_APDU] = { .type = NLA_BINARY }, + [NFC_ATTR_VENDOR_ID] = { .type = NLA_U32 }, + [NFC_ATTR_VENDOR_SUBCMD] = { .type = NLA_U32 }, [NFC_ATTR_VENDOR_DATA] = { .type = NLA_BINARY }, }; |