From: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
To: Paul Blakey <paulb@mellanox.com>
Cc: Jiri Pirko <jiri@mellanox.com>, Roi Dayan <roid@mellanox.com>,
Yossi Kuperman <yossiku@mellanox.com>,
Oz Shlomo <ozsh@mellanox.com>,
netdev@vger.kernel.org, David Miller <davem@davemloft.net>,
Aaron Conole <aconole@redhat.com>, Zhike Wang <wangzhike@jd.com>,
Justin Pettit <jpettit@ovn.org>,
John Hurley <john.hurley@netronome.com>,
Rony Efraim <ronye@mellanox.com>,
nst-kernel@redhat.com, Simon Horman <simon.horman@netronome.com>
Subject: Re: [PATCH net-next iproute2 2/3] tc: Introduce tc ct action
Date: Mon, 8 Jul 2019 14:54:46 -0300 [thread overview]
Message-ID: <20190708175446.GL3449@localhost.localdomain> (raw)
In-Reply-To: <1562489628-5925-3-git-send-email-paulb@mellanox.com>
On Sun, Jul 07, 2019 at 11:53:47AM +0300, Paul Blakey wrote:
> New tc action to send packets to conntrack module, commit
> them, and set a zone, labels, mark, and nat on the connection.
>
> It can also clear the packet's conntrack state by using clear.
>
> Usage:
> ct clear
> ct commit [force] [zone] [mark] [label] [nat]
Isn't the 'commit' also optional? More like
ct [commit [force]] [zone] [mark] [label] [nat]
> ct [nat] [zone]
>
> Signed-off-by: Paul Blakey <paulb@mellanox.com>
> Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
> Signed-off-by: Yossi Kuperman <yossiku@mellanox.com>
> Acked-by: Jiri Pirko <jiri@mellanox.com>
> Acked-by: Roi Dayan <roid@mellanox.com>
> ---
...
> +static void
> +usage(void)
> +{
> + fprintf(stderr,
> + "Usage: ct clear\n"
> + " ct commit [force] [zone ZONE] [mark MASKED_MARK] [label MASKED_LABEL] [nat NAT_SPEC]\n"
Ditto here then.
> + " ct [nat] [zone ZONE]\n"
> + "Where: ZONE is the conntrack zone table number\n"
> + " NAT_SPEC is {src|dst} addr addr1[-addr2] [port port1[-port2]]\n"
> + "\n");
> + exit(-1);
> +}
...
The validation below doesn't enforce that commit must be there for
such case.
> +static int
> +parse_ct(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
> + struct nlmsghdr *n)
> +{
> + struct tc_ct sel = {};
> + char **argv = *argv_p;
> + struct rtattr *tail;
> + int argc = *argc_p;
> + int ct_action = 0;
> + int ret;
> +
> + tail = addattr_nest(n, MAX_MSG, tca_id);
> +
> + if (argc && matches(*argv, "ct") == 0)
> + NEXT_ARG_FWD();
> +
> + while (argc > 0) {
> + if (matches(*argv, "zone") == 0) {
> + NEXT_ARG();
> +
> + if (ct_parse_u16(*argv,
> + TCA_CT_ZONE, TCA_CT_UNSPEC, n)) {
> + fprintf(stderr, "ct: Illegal \"zone\"\n");
> + return -1;
> + }
> + } else if (matches(*argv, "nat") == 0) {
> + ct_action |= TCA_CT_ACT_NAT;
> +
> + NEXT_ARG();
> + if (matches(*argv, "src") == 0)
> + ct_action |= TCA_CT_ACT_NAT_SRC;
> + else if (matches(*argv, "dst") == 0)
> + ct_action |= TCA_CT_ACT_NAT_DST;
> + else
> + continue;
> +
> + NEXT_ARG();
> + if (matches(*argv, "addr") != 0)
> + usage();
> +
> + NEXT_ARG();
> + ret = ct_parse_nat_addr_range(*argv, n);
> + if (ret) {
> + fprintf(stderr, "ct: Illegal nat address range\n");
> + return -1;
> + }
> +
> + NEXT_ARG_FWD();
> + if (matches(*argv, "port") != 0)
> + continue;
> +
> + NEXT_ARG();
> + ret = ct_parse_nat_port_range(*argv, n);
> + if (ret) {
> + fprintf(stderr, "ct: Illegal nat port range\n");
> + return -1;
> + }
> + } else if (matches(*argv, "clear") == 0) {
> + ct_action |= TCA_CT_ACT_CLEAR;
> + } else if (matches(*argv, "commit") == 0) {
> + ct_action |= TCA_CT_ACT_COMMIT;
> + } else if (matches(*argv, "force") == 0) {
> + ct_action |= TCA_CT_ACT_FORCE;
> + } else if (matches(*argv, "index") == 0) {
> + NEXT_ARG();
> + if (get_u32(&sel.index, *argv, 10)) {
> + fprintf(stderr, "ct: Illegal \"index\"\n");
> + return -1;
> + }
> + } else if (matches(*argv, "mark") == 0) {
> + NEXT_ARG();
> +
> + ret = ct_parse_mark(*argv, n);
> + if (ret) {
> + fprintf(stderr, "ct: Illegal \"mark\"\n");
> + return -1;
> + }
> + } else if (matches(*argv, "label") == 0) {
> + NEXT_ARG();
> +
> + ret = ct_parse_labels(*argv, n);
> + if (ret) {
> + fprintf(stderr, "ct: Illegal \"label\"\n");
> + return -1;
> + }
> + } else if (matches(*argv, "help") == 0) {
> + usage();
> + } else {
> + break;
> + }
> + NEXT_ARG_FWD();
> + }
> +
> + if (ct_action & TCA_CT_ACT_CLEAR &&
> + ct_action & ~TCA_CT_ACT_CLEAR) {
> + fprintf(stderr, "ct: clear can only be used alone\n");
> + return -1;
> + }
> +
> + if (ct_action & TCA_CT_ACT_NAT_SRC &&
> + ct_action & TCA_CT_ACT_NAT_DST) {
> + fprintf(stderr, "ct: src and dst nat can't be used together\n");
> + return -1;
> + }
> +
> + if ((ct_action & TCA_CT_ACT_COMMIT) &&
> + (ct_action & TCA_CT_ACT_NAT) &&
> + !(ct_action & (TCA_CT_ACT_NAT_SRC | TCA_CT_ACT_NAT_DST))) {
> + fprintf(stderr, "ct: commit and nat must set src or dst\n");
> + return -1;
> + }
> +
> + if (!(ct_action & TCA_CT_ACT_COMMIT) &&
> + (ct_action & (TCA_CT_ACT_NAT_SRC | TCA_CT_ACT_NAT_DST))) {
> + fprintf(stderr, "ct: src or dst is only valid if commit is set\n");
> + return -1;
> + }
> +
> + parse_action_control_dflt(&argc, &argv, &sel.action, false,
> + TC_ACT_PIPE);
> + NEXT_ARG_FWD();
> +
> + addattr16(n, MAX_MSG, TCA_CT_ACTION, ct_action);
> + addattr_l(n, MAX_MSG, TCA_CT_PARMS, &sel, sizeof(sel));
> + addattr_nest_end(n, tail);
> +
> + *argc_p = argc;
> + *argv_p = argv;
> + return 0;
> +}
...
next prev parent reply other threads:[~2019-07-08 17:54 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-07 8:53 [PATCH net-next iproute2 0/3] net/sched: Introduce tc connection tracking Paul Blakey
2019-07-07 8:53 ` [PATCH net-next iproute2 1/3] tc: add NLA_F_NESTED flag to all actions options nested block Paul Blakey
2019-07-07 8:53 ` [PATCH net-next iproute2 2/3] tc: Introduce tc ct action Paul Blakey
2019-07-08 17:54 ` Marcelo Ricardo Leitner [this message]
2019-07-09 6:58 ` Paul Blakey
2019-07-09 15:36 ` Marcelo Ricardo Leitner
2019-07-11 7:21 ` Paul Blakey
2019-07-11 17:40 ` Marcelo Ricardo Leitner
2019-07-07 8:53 ` [PATCH net-next iproute2 3/3] tc: flower: Add matching on conntrack info Paul Blakey
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=20190708175446.GL3449@localhost.localdomain \
--to=marcelo.leitner@gmail.com \
--cc=aconole@redhat.com \
--cc=davem@davemloft.net \
--cc=jiri@mellanox.com \
--cc=john.hurley@netronome.com \
--cc=jpettit@ovn.org \
--cc=netdev@vger.kernel.org \
--cc=nst-kernel@redhat.com \
--cc=ozsh@mellanox.com \
--cc=paulb@mellanox.com \
--cc=roid@mellanox.com \
--cc=ronye@mellanox.com \
--cc=simon.horman@netronome.com \
--cc=wangzhike@jd.com \
--cc=yossiku@mellanox.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).