From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Phil Sutter <phil@nwl.cc>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [nft PATCH] monitor: Print NEWGEN events
Date: Mon, 24 Jul 2017 13:17:30 +0200 [thread overview]
Message-ID: <20170724111730.GA6691@salvia> (raw)
In-Reply-To: <20170719143257.3772-1-phil@nwl.cc>
On Wed, Jul 19, 2017 at 04:32:57PM +0200, Phil Sutter wrote:
> Now that they contain process information, they're actually interesting.
> For backwards compatibility, print process information only if it was
> present in the message.
Wait, a couple of comments.
[...]
> diff --git a/src/netlink.c b/src/netlink.c
> index e3c90dac8c7a6..44a9806097d00 100644
> --- a/src/netlink.c
> +++ b/src/netlink.c
> @@ -2915,6 +2915,43 @@ static void netlink_events_debug(uint16_t type)
> #endif /* DEBUG */
> }
>
> +static int netlink_events_newgen_cb(const struct nlmsghdr *nlh, int type,
> + struct netlink_mon_handler *monh)
> +{
> + const struct nlattr *attr;
> + char name[256] = "";
> + int genid, pid = -1;
> +
> + mnl_attr_for_each(attr, nlh, sizeof(struct nfgenmsg)) {
> + switch (mnl_attr_get_type(attr)) {
> + case NFTA_GEN_ID:
> + if (mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
> + break;
I think it's better to hit netlink_abi_error() error. If validation
fails, it means someone in the kernel has accidentally changed the
size/type of this attribute. This it's basically breaking the ABI.
Better bail out here so people come to us so we quickly fix this.
> + genid = ntohl(mnl_attr_get_u32(attr));
> + break;
> + case NFTA_GEN_PROC_NAME:
> + if (mnl_attr_validate(attr, MNL_TYPE_NUL_STRING) < 0)
> + break;
> + strncpy(name, mnl_attr_get_str(attr), sizeof(name));
What is maximum process name length? If we hit this bound, we have to
make sure this does:
name[X - 1] = '\0';
Where X is the name buffer size.
> + break;
> + case NFTA_GEN_PROC_ID:
> + if (mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
> + break;
> + pid = ntohl(mnl_attr_get_u32(attr));
> + break;
> + }
> + }
> + printf("new generation %d", genid);
Please, prepend '#' to this message.
> + if (pid >= 0) {
> + printf(" by process %d", pid);
> + if (!monh->ctx->octx->numeric)
> + printf(" (%s)", name);
> + }
> + printf("\n");
> +
> + return MNL_CB_OK;
> +}
Thanks!
next prev parent reply other threads:[~2017-07-24 11:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-19 14:32 [nft PATCH] monitor: Print NEWGEN events Phil Sutter
2017-07-24 11:09 ` Pablo Neira Ayuso
2017-07-24 11:17 ` Pablo Neira Ayuso [this message]
2017-07-24 15:37 ` Phil Sutter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170724111730.GA6691@salvia \
--to=pablo@netfilter.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=phil@nwl.cc \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).