From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Shivani Bhardwaj <shivanib134@gmail.com>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH] extensions: libxt_owner: Add translation to nft
Date: Wed, 2 Mar 2016 12:42:50 +0100 [thread overview]
Message-ID: <20160302114250.GA2580@salvia> (raw)
In-Reply-To: <20160301191726.GA15217@gmail.com>
On Wed, Mar 02, 2016 at 12:47:26AM +0530, Shivani Bhardwaj wrote:
> Add translation for module owner to nftables.
> Full translation of this match awaits the support for --socket-exists
> option.
>
> Examples:
>
> $ sudo iptables-translate -t nat -A OUTPUT -p tcp --dport 80 -m owner --uid-owner root -j ACCEPT
> nft add rule ip nat OUTPUT tcp dport 80 skuid 0 counter accept
>
> $ sudo iptables-translate -t nat -A OUTPUT -p tcp --dport 80 -m owner --gid-owner 0-10 -j ACCEPT
> nft add rule ip nat OUTPUT tcp dport 80 skgid 0-10 counter accept
>
> $ sudo iptables-translate -t nat -A OUTPUT -p tcp --dport 80 -m owner ! --uid-owner shivani -j ACCEPT
> nft add rule ip nat OUTPUT tcp dport 80 skuid != 1000 counter accept
> Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>
> ---
> extensions/libxt_owner.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 57 insertions(+)
>
> diff --git a/extensions/libxt_owner.c b/extensions/libxt_owner.c
> index d9adc12..d81080a 100644
> --- a/extensions/libxt_owner.c
> +++ b/extensions/libxt_owner.c
> @@ -492,6 +492,62 @@ static void owner_mt_save(const void *ip, const struct xt_entry_match *match)
> owner_mt_print_item(info, "--gid-owner", XT_OWNER_GID, true);
> }
>
> +static void
> +owner_mt_print_item_xlate(const struct xt_owner_match_info *info,
> + const char *label, uint8_t flag,
> + struct xt_xlate *xl, bool numeric)
> +{
> + if (!(info->match & flag))
> + return;
> +
> + xt_xlate_add(xl, "%s%s", label, info->invert & flag ? "!= " : "");
> +
> + switch (info->match & flag) {
> + case XT_OWNER_UID:
> + if (info->uid_min != info->uid_max) {
> + xt_xlate_add(xl, "%u-%u ", (unsigned int)info->uid_min,
> + (unsigned int)info->uid_max);
> + break;
> + } else if (!numeric) {
> + const struct passwd *pwd = getpwuid(info->uid_min);
> +
> + if (pwd != NULL && pwd->pw_name != NULL) {
> + xt_xlate_add(xl, " %s", pwd->pw_name);
> + break;
> + }
> + }
> + xt_xlate_add(xl, "%u ", (unsigned int)info->uid_min);
> + break;
> +
> + case XT_OWNER_GID:
> + if (info->gid_min != info->gid_max) {
> + xt_xlate_add(xl, "%u-%u ", (unsigned int)info->gid_min,
> + (unsigned int)info->gid_max);
> + break;
> + } else if (!numeric) {
> + const struct group *grp = getgrgid(info->gid_min);
> +
> + if (grp != NULL && grp->gr_name != NULL) {
> + xt_xlate_add(xl, "%s ", grp->gr_name);
> + break;
> + }
> + }
> + xt_xlate_add(xl, "%u ", (unsigned int)info->gid_min);
> + break;
> + }
Could you better split this in two functions?
> +}
> +
> +static int owner_mt_xlate(const struct xt_entry_match *match,
> + struct xt_xlate *xl, int numeric)
> +{
> + const struct xt_owner_match_info *info = (void *)match->data;
> +
> + owner_mt_print_item_xlate(info, "skuid ", XT_OWNER_UID, xl, true);
> + owner_mt_print_item_xlate(info, "skgid ", XT_OWNER_GID, xl, true);
The idea is this looks like:
switch (info->match & flag) {
case XT_OWNER_UID:
ret = owner_mt_print_uid_xlate(info, xl);
break;
case XT_OWNER_GID:
ret = owner_mt_print_gid_xlate(info, xl);
break;
}
There seem to be very little code we can actually consolidate from
what I can see.
Thanks.
prev parent reply other threads:[~2016-03-02 11:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-01 19:17 [PATCH] extensions: libxt_owner: Add translation to nft Shivani Bhardwaj
2016-03-02 11:42 ` Pablo Neira Ayuso [this message]
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=20160302114250.GA2580@salvia \
--to=pablo@netfilter.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=shivanib134@gmail.com \
/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).