Return-path: Received: from s3.sipsolutions.net ([144.76.43.62]:55096 "EHLO sipsolutions.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726502AbeILNjx (ORCPT ); Wed, 12 Sep 2018 09:39:53 -0400 From: Johannes Berg To: linux-wireless@vger.kernel.org, netdev@vger.kernel.org Cc: Michal Kubecek , Johannes Berg Subject: [RFC v2 1/2] netlink: add NLA_REJECT policy type Date: Wed, 12 Sep 2018 10:36:09 +0200 Message-Id: <20180912083610.20857-1-johannes@sipsolutions.net> (sfid-20180912_103626_907703_3A24107A) Sender: linux-wireless-owner@vger.kernel.org List-ID: From: Johannes Berg In some situations some netlink attributes may be used for output only (kernel->userspace) or may be reserved for future use. It's then helpful to be able to prevent userspace from using them in messages sent to the kernel, since they'd otherwise be ignored and any future will become impossible if this happens. Add NLA_REJECT to the policy which does nothing but reject (with EINVAL) validation of any messages containing this attribute. Allow for returning a specific extended ACK error message in the validation_data pointer. While at it fix the indentation of NLA_BITFIELD32 and describe the validation_data pointer for it. The specific case I have in mind now is a shared nested attribute containing request/response data, and it would be pointless and potentially confusing to have userspace include response data in the messages that actually contain a request. Signed-off-by: Johannes Berg --- include/net/netlink.h | 6 +++++- lib/nlattr.c | 12 +++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/include/net/netlink.h b/include/net/netlink.h index 0c154f98e987..04e40fcc70d6 100644 --- a/include/net/netlink.h +++ b/include/net/netlink.h @@ -180,6 +180,7 @@ enum { NLA_S32, NLA_S64, NLA_BITFIELD32, + NLA_REJECT, __NLA_TYPE_MAX, }; @@ -208,7 +209,10 @@ enum { * NLA_MSECS Leaving the length field zero will verify the * given type fits, using it verifies minimum length * just like "All other" - * NLA_BITFIELD32 A 32-bit bitmap/bitselector attribute + * NLA_BITFIELD32 A 32-bit bitmap/bitselector attribute, validation + * data must point to a u32 value of valid flags + * NLA_REJECT Reject this attribute, validation data may point + * to a string to report as the error in extended ACK. * All other Minimum length of attribute payload * * Example: diff --git a/lib/nlattr.c b/lib/nlattr.c index e335bcafa9e4..9ec0cc151148 100644 --- a/lib/nlattr.c +++ b/lib/nlattr.c @@ -69,7 +69,8 @@ static int validate_nla_bitfield32(const struct nlattr *nla, } static int validate_nla(const struct nlattr *nla, int maxtype, - const struct nla_policy *policy) + const struct nla_policy *policy, + struct netlink_ext_ack *extack) { const struct nla_policy *pt; int minlen = 0, attrlen = nla_len(nla), type = nla_type(nla); @@ -87,6 +88,11 @@ static int validate_nla(const struct nlattr *nla, int maxtype, } switch (pt->type) { + case NLA_REJECT: + if (pt->validation_data && extack) + extack->_msg = pt->validation_data; + return -EINVAL; + case NLA_FLAG: if (attrlen > 0) return -ERANGE; @@ -180,7 +186,7 @@ int nla_validate(const struct nlattr *head, int len, int maxtype, int rem; nla_for_each_attr(nla, head, len, rem) { - int err = validate_nla(nla, maxtype, policy); + int err = validate_nla(nla, maxtype, policy, extack); if (err < 0) { if (extack) @@ -251,7 +257,7 @@ int nla_parse(struct nlattr **tb, int maxtype, const struct nlattr *head, if (type > 0 && type <= maxtype) { if (policy) { - err = validate_nla(nla, maxtype, policy); + err = validate_nla(nla, maxtype, policy, extack); if (err < 0) { NL_SET_ERR_MSG_ATTR(extack, nla, "Attribute failed policy validation"); -- 2.14.4