* [PATCH iproute2-next 0/2] iprule: Add DSCP support
@ 2024-10-09 6:20 Ido Schimmel
2024-10-09 6:20 ` [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target Ido Schimmel
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Ido Schimmel @ 2024-10-09 6:20 UTC (permalink / raw)
To: netdev; +Cc: dsahern, stephen, gnault, petrm, Ido Schimmel
Add DSCP selector support to ip-rule following kernel support that was
added in kernel commit 7bb50f30c123 ("Merge branch
'net-fib_rules-add-dscp-selector-support'").
Patch #1 adds ip-rule(8) as generation target so that we could use
variable substitutions there in a similar fashion to other man pages.
Patch #2 adds actual support. See the commit message for example usage
and output.
Ido Schimmel (2):
man: Add ip-rule(8) as generation target
iprule: Add DSCP support
include/rt_names.h | 2 ++
ip/iprule.c | 36 ++++++++++++++++++++++++++++
lib/rt_names.c | 23 ++++++++++++++++++
man/man8/.gitignore | 1 +
man/man8/Makefile | 2 +-
man/man8/{ip-rule.8 => ip-rule.8.in} | 17 +++++++++++++
6 files changed, 80 insertions(+), 1 deletion(-)
rename man/man8/{ip-rule.8 => ip-rule.8.in} (93%)
--
2.46.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target
2024-10-09 6:20 [PATCH iproute2-next 0/2] iprule: Add DSCP support Ido Schimmel
@ 2024-10-09 6:20 ` Ido Schimmel
2024-10-10 11:59 ` Daniel Machon
2024-10-10 22:14 ` Guillaume Nault
2024-10-09 6:20 ` [PATCH iproute2-next 2/2] iprule: Add DSCP support Ido Schimmel
2024-10-11 0:30 ` [PATCH iproute2-next 0/2] " patchwork-bot+netdevbpf
2 siblings, 2 replies; 8+ messages in thread
From: Ido Schimmel @ 2024-10-09 6:20 UTC (permalink / raw)
To: netdev; +Cc: dsahern, stephen, gnault, petrm, Ido Schimmel
In a similar fashion to other man pages, add ip-rule(8) as generation
target so that we could use variable substitutions there in a subsequent
patch.
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
---
man/man8/.gitignore | 1 +
man/man8/Makefile | 2 +-
man/man8/{ip-rule.8 => ip-rule.8.in} | 0
3 files changed, 2 insertions(+), 1 deletion(-)
rename man/man8/{ip-rule.8 => ip-rule.8.in} (100%)
diff --git a/man/man8/.gitignore b/man/man8/.gitignore
index 7b08e9114455..08098a2fb588 100644
--- a/man/man8/.gitignore
+++ b/man/man8/.gitignore
@@ -3,3 +3,4 @@ ip-address.8
ip-link.8
ip-netns.8
ip-route.8
+ip-rule.8
diff --git a/man/man8/Makefile b/man/man8/Makefile
index 6dab182fa8e3..82cbe89f7ce0 100644
--- a/man/man8/Makefile
+++ b/man/man8/Makefile
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-2.0
-TARGETS = ip-address.8 ip-link.8 ip-netns.8 ip-route.8
+TARGETS = ip-address.8 ip-link.8 ip-netns.8 ip-route.8 ip-rule.8
MAN8PAGES = $(TARGETS) $(filter-out $(TARGETS),$(wildcard *.8))
diff --git a/man/man8/ip-rule.8 b/man/man8/ip-rule.8.in
similarity index 100%
rename from man/man8/ip-rule.8
rename to man/man8/ip-rule.8.in
--
2.46.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH iproute2-next 2/2] iprule: Add DSCP support
2024-10-09 6:20 [PATCH iproute2-next 0/2] iprule: Add DSCP support Ido Schimmel
2024-10-09 6:20 ` [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target Ido Schimmel
@ 2024-10-09 6:20 ` Ido Schimmel
2024-10-10 12:00 ` Daniel Machon
2024-10-10 22:14 ` Guillaume Nault
2024-10-11 0:30 ` [PATCH iproute2-next 0/2] " patchwork-bot+netdevbpf
2 siblings, 2 replies; 8+ messages in thread
From: Ido Schimmel @ 2024-10-09 6:20 UTC (permalink / raw)
To: netdev; +Cc: dsahern, stephen, gnault, petrm, Ido Schimmel
Add support for 'dscp' selector in ip-rule.
Rules can be added with a numeric DSCP value:
# ip rule add dscp 1 table 100
# ip rule add dscp 0x02 table 200
Or using symbolic names from /usr/share/iproute2/rt_dsfield or
/etc/iproute2/rt_dsfield:
# ip rule add dscp AF42 table 300
Dump output:
$ ip rule show
0: from all lookup local
32763: from all lookup 300 dscp AF42
32764: from all lookup 200 dscp 2
32765: from all lookup 100 dscp 1
32766: from all lookup main
32767: from all lookup default
Dump can be filtered by DSCP value:
$ ip rule show dscp 1
32765: from all lookup 100 dscp 1
Or by a symbolic name:
$ ip rule show dscp AF42
32763: from all lookup 300 dscp AF42
When the numeric option is specified, symbolic names will be translated
to numeric values:
$ ip -N rule show
0: from all lookup 255
32763: from all lookup 300 dscp 36
32764: from all lookup 200 dscp 2
32765: from all lookup 100 dscp 1
32766: from all lookup 254
32767: from all lookup 253
The same applies to the JSON output in order to be consistent with
existing fields such as "tos" and "table":
$ ip -j -p rule show dscp AF42
[ {
"priority": 32763,
"src": "all",
"table": "300",
"dscp": "AF42"
} ]
$ ip -j -p -N rule show dscp AF42
[ {
"priority": 32763,
"src": "all",
"table": "300",
"dscp": "36"
} ]
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
---
include/rt_names.h | 2 ++
ip/iprule.c | 36 ++++++++++++++++++++++++++++++++++++
lib/rt_names.c | 23 +++++++++++++++++++++++
man/man8/ip-rule.8.in | 17 +++++++++++++++++
4 files changed, 78 insertions(+)
diff --git a/include/rt_names.h b/include/rt_names.h
index 0275030704c1..a5c73f3872a3 100644
--- a/include/rt_names.h
+++ b/include/rt_names.h
@@ -11,6 +11,7 @@ const char *rtnl_rttable_n2a(__u32 id, char *buf, int len);
const char *rtnl_rtrealm_n2a(int id, char *buf, int len);
const char *rtnl_dsfield_n2a(int id, char *buf, int len);
const char *rtnl_dsfield_get_name(int id);
+const char *rtnl_dscp_n2a(int id, char *buf, int len);
const char *rtnl_group_n2a(int id, char *buf, int len);
int rtnl_rtprot_a2n(__u32 *id, const char *arg);
@@ -19,6 +20,7 @@ int rtnl_rtscope_a2n(__u32 *id, const char *arg);
int rtnl_rttable_a2n(__u32 *id, const char *arg);
int rtnl_rtrealm_a2n(__u32 *id, const char *arg);
int rtnl_dsfield_a2n(__u32 *id, const char *arg);
+int rtnl_dscp_a2n(__u32 *id, const char *arg);
int rtnl_group_a2n(int *id, const char *arg);
const char *inet_proto_n2a(int proto, char *buf, int len);
diff --git a/ip/iprule.c b/ip/iprule.c
index 81938f2ed80c..ae067c72a66d 100644
--- a/ip/iprule.c
+++ b/ip/iprule.c
@@ -46,6 +46,7 @@ static void usage(void)
" [ ipproto PROTOCOL ]\n"
" [ sport [ NUMBER | NUMBER-NUMBER ]\n"
" [ dport [ NUMBER | NUMBER-NUMBER ] ]\n"
+ " [ dscp DSCP ]\n"
"ACTION := [ table TABLE_ID ]\n"
" [ protocol PROTO ]\n"
" [ nat ADDRESS ]\n"
@@ -67,6 +68,7 @@ static struct
unsigned int tos, tosmask;
unsigned int pref, prefmask;
unsigned int fwmark, fwmask;
+ unsigned int dscp, dscpmask;
uint64_t tun_id;
char iif[IFNAMSIZ];
char oif[IFNAMSIZ];
@@ -219,6 +221,17 @@ static bool filter_nlmsg(struct nlmsghdr *n, struct rtattr **tb, int host_len)
}
}
+ if (filter.dscpmask) {
+ if (tb[FRA_DSCP]) {
+ __u8 dscp = rta_getattr_u8(tb[FRA_DSCP]);
+
+ if (filter.dscp != dscp)
+ return false;
+ } else {
+ return false;
+ }
+ }
+
table = frh_get_table(frh, tb);
if (filter.tb > 0 && filter.tb ^ table)
return false;
@@ -468,6 +481,14 @@ int print_rule(struct nlmsghdr *n, void *arg)
rtnl_rtprot_n2a(protocol, b1, sizeof(b1)));
}
}
+
+ if (tb[FRA_DSCP]) {
+ __u8 dscp = rta_getattr_u8(tb[FRA_DSCP]);
+
+ print_string(PRINT_ANY, "dscp", " dscp %s",
+ rtnl_dscp_n2a(dscp, b1, sizeof(b1)));
+ }
+
print_string(PRINT_FP, NULL, "\n", "");
close_json_object();
fflush(fp);
@@ -697,6 +718,14 @@ static int iprule_list_flush_or_save(int argc, char **argv, int action)
else if (ret != 2)
invarg("invalid dport range\n", *argv);
filter.dport = r;
+ } else if (strcmp(*argv, "dscp") == 0) {
+ __u32 dscp;
+
+ NEXT_ARG();
+ if (rtnl_dscp_a2n(&dscp, *argv))
+ invarg("invalid dscp\n", *argv);
+ filter.dscp = dscp;
+ filter.dscpmask = 1;
} else {
if (matches(*argv, "dst") == 0 ||
matches(*argv, "to") == 0) {
@@ -975,6 +1004,13 @@ static int iprule_modify(int cmd, int argc, char **argv)
invarg("invalid dport range\n", *argv);
addattr_l(&req.n, sizeof(req), FRA_DPORT_RANGE, &r,
sizeof(r));
+ } else if (strcmp(*argv, "dscp") == 0) {
+ __u32 dscp;
+
+ NEXT_ARG();
+ if (rtnl_dscp_a2n(&dscp, *argv))
+ invarg("invalid dscp\n", *argv);
+ addattr8(&req.n, sizeof(req), FRA_DSCP, dscp);
} else {
int type;
diff --git a/lib/rt_names.c b/lib/rt_names.c
index e967e0cac5b4..723f0917b0ae 100644
--- a/lib/rt_names.c
+++ b/lib/rt_names.c
@@ -625,6 +625,17 @@ const char *rtnl_dsfield_get_name(int id)
return rtnl_rtdsfield_tab[id];
}
+const char *rtnl_dscp_n2a(int id, char *buf, int len)
+{
+ if (!numeric) {
+ const char *name = rtnl_dsfield_get_name(id << 2);
+
+ if (name != NULL)
+ return name;
+ }
+ snprintf(buf, len, "%u", id);
+ return buf;
+}
int rtnl_dsfield_a2n(__u32 *id, const char *arg)
{
@@ -658,6 +669,18 @@ int rtnl_dsfield_a2n(__u32 *id, const char *arg)
return 0;
}
+int rtnl_dscp_a2n(__u32 *id, const char *arg)
+{
+ if (get_u32(id, arg, 0) == 0)
+ return 0;
+
+ if (rtnl_dsfield_a2n(id, arg) != 0)
+ return -1;
+ /* Convert from DS field to DSCP */
+ *id >>= 2;
+
+ return 0;
+}
static struct rtnl_hash_entry dflt_group_entry = {
.id = 0, .name = "default"
diff --git a/man/man8/ip-rule.8.in b/man/man8/ip-rule.8.in
index 48f8222fe193..51f3050ae8f8 100644
--- a/man/man8/ip-rule.8.in
+++ b/man/man8/ip-rule.8.in
@@ -36,6 +36,8 @@ ip-rule \- routing policy database management
.IR PREFIX " ] [ "
.B tos
.IR TOS " ] [ "
+.B dscp
+.IR DSCP " ] [ "
.B fwmark
.IR FWMARK\fR[\fB/\fIMASK "] ] [ "
.B iif
@@ -234,6 +236,21 @@ a device.
.BI dsfield " TOS"
select the TOS value to match.
+.TP
+.BI dscp " DSCP"
+select the DSCP value to match. DSCP values can be written either directly as
+numeric values (valid values are 0-63), or using symbolic names specified in
+.BR @SYSCONF_USR_DIR@/rt_dsfield " or " @SYSCONF_ETC_DIR@/rt_dsfield
+(has precedence if exists).
+However, note that the file specifies full 8-bit dsfield values, whereas
+.B ip rule
+will only use the higher six bits.
+.B ip rule show
+will similarly format DSCP values as symbolic names if possible. The
+command line option
+.B -N
+turns the show translation off.
+
.TP
.BI fwmark " MARK"
select the
--
2.46.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target
2024-10-09 6:20 ` [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target Ido Schimmel
@ 2024-10-10 11:59 ` Daniel Machon
2024-10-10 22:14 ` Guillaume Nault
1 sibling, 0 replies; 8+ messages in thread
From: Daniel Machon @ 2024-10-10 11:59 UTC (permalink / raw)
To: Ido Schimmel; +Cc: netdev, dsahern, stephen, gnault, petrm
> In a similar fashion to other man pages, add ip-rule(8) as generation
> target so that we could use variable substitutions there in a subsequent
> patch.
>
> Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Reviewed-by: Daniel Machon <daniel.machon@microchip.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH iproute2-next 2/2] iprule: Add DSCP support
2024-10-09 6:20 ` [PATCH iproute2-next 2/2] iprule: Add DSCP support Ido Schimmel
@ 2024-10-10 12:00 ` Daniel Machon
2024-10-10 22:14 ` Guillaume Nault
1 sibling, 0 replies; 8+ messages in thread
From: Daniel Machon @ 2024-10-10 12:00 UTC (permalink / raw)
To: Ido Schimmel; +Cc: netdev, dsahern, stephen, gnault, petrm
> Add support for 'dscp' selector in ip-rule.
>
> Rules can be added with a numeric DSCP value:
>
> # ip rule add dscp 1 table 100
> # ip rule add dscp 0x02 table 200
>
> Or using symbolic names from /usr/share/iproute2/rt_dsfield or
> /etc/iproute2/rt_dsfield:
>
> # ip rule add dscp AF42 table 300
>
> Dump output:
>
> $ ip rule show
> 0: from all lookup local
> 32763: from all lookup 300 dscp AF42
> 32764: from all lookup 200 dscp 2
> 32765: from all lookup 100 dscp 1
> 32766: from all lookup main
> 32767: from all lookup default
>
> Dump can be filtered by DSCP value:
>
> $ ip rule show dscp 1
> 32765: from all lookup 100 dscp 1
>
> Or by a symbolic name:
>
> $ ip rule show dscp AF42
> 32763: from all lookup 300 dscp AF42
>
> When the numeric option is specified, symbolic names will be translated
> to numeric values:
>
> $ ip -N rule show
> 0: from all lookup 255
> 32763: from all lookup 300 dscp 36
> 32764: from all lookup 200 dscp 2
> 32765: from all lookup 100 dscp 1
> 32766: from all lookup 254
> 32767: from all lookup 253
>
> The same applies to the JSON output in order to be consistent with
> existing fields such as "tos" and "table":
>
> $ ip -j -p rule show dscp AF42
> [ {
> "priority": 32763,
> "src": "all",
> "table": "300",
> "dscp": "AF42"
> } ]
>
> $ ip -j -p -N rule show dscp AF42
> [ {
> "priority": 32763,
> "src": "all",
> "table": "300",
> "dscp": "36"
> } ]
>
> Signed-off-by: Ido Schimmel <idosch@nvidia.com>
LGTM.
Reviewed-by: Daniel Machon <daniel.machon@microchip.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target
2024-10-09 6:20 ` [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target Ido Schimmel
2024-10-10 11:59 ` Daniel Machon
@ 2024-10-10 22:14 ` Guillaume Nault
1 sibling, 0 replies; 8+ messages in thread
From: Guillaume Nault @ 2024-10-10 22:14 UTC (permalink / raw)
To: Ido Schimmel; +Cc: netdev, dsahern, stephen, petrm
On Wed, Oct 09, 2024 at 09:20:53AM +0300, Ido Schimmel wrote:
> In a similar fashion to other man pages, add ip-rule(8) as generation
> target so that we could use variable substitutions there in a subsequent
> patch.
Reviewed-by: Guillaume Nault <gnault@redhat.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH iproute2-next 2/2] iprule: Add DSCP support
2024-10-09 6:20 ` [PATCH iproute2-next 2/2] iprule: Add DSCP support Ido Schimmel
2024-10-10 12:00 ` Daniel Machon
@ 2024-10-10 22:14 ` Guillaume Nault
1 sibling, 0 replies; 8+ messages in thread
From: Guillaume Nault @ 2024-10-10 22:14 UTC (permalink / raw)
To: Ido Schimmel; +Cc: netdev, dsahern, stephen, petrm
On Wed, Oct 09, 2024 at 09:20:54AM +0300, Ido Schimmel wrote:
> Add support for 'dscp' selector in ip-rule.
Reviewed-by: Guillaume Nault <gnault@redhat.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH iproute2-next 0/2] iprule: Add DSCP support
2024-10-09 6:20 [PATCH iproute2-next 0/2] iprule: Add DSCP support Ido Schimmel
2024-10-09 6:20 ` [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target Ido Schimmel
2024-10-09 6:20 ` [PATCH iproute2-next 2/2] iprule: Add DSCP support Ido Schimmel
@ 2024-10-11 0:30 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 8+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-10-11 0:30 UTC (permalink / raw)
To: Ido Schimmel; +Cc: netdev, dsahern, stephen, gnault, petrm
Hello:
This series was applied to iproute2/iproute2-next.git (main)
by David Ahern <dsahern@kernel.org>:
On Wed, 9 Oct 2024 09:20:52 +0300 you wrote:
> Add DSCP selector support to ip-rule following kernel support that was
> added in kernel commit 7bb50f30c123 ("Merge branch
> 'net-fib_rules-add-dscp-selector-support'").
>
> Patch #1 adds ip-rule(8) as generation target so that we could use
> variable substitutions there in a similar fashion to other man pages.
>
> [...]
Here is the summary with links:
- [iproute2-next,1/2] man: Add ip-rule(8) as generation target
https://git.kernel.org/pub/scm/network/iproute2/iproute2-next.git/commit/?id=8ef80bcbbd21
- [iproute2-next,2/2] iprule: Add DSCP support
https://git.kernel.org/pub/scm/network/iproute2/iproute2-next.git/commit/?id=75e760026c4d
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-11 0:30 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-09 6:20 [PATCH iproute2-next 0/2] iprule: Add DSCP support Ido Schimmel
2024-10-09 6:20 ` [PATCH iproute2-next 1/2] man: Add ip-rule(8) as generation target Ido Schimmel
2024-10-10 11:59 ` Daniel Machon
2024-10-10 22:14 ` Guillaume Nault
2024-10-09 6:20 ` [PATCH iproute2-next 2/2] iprule: Add DSCP support Ido Schimmel
2024-10-10 12:00 ` Daniel Machon
2024-10-10 22:14 ` Guillaume Nault
2024-10-11 0:30 ` [PATCH iproute2-next 0/2] " patchwork-bot+netdevbpf
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).