* [PATCH v3] ipv4: make DSCP values works with ip rules
@ 2018-11-27 10:07 Pavel Balaev
2018-11-30 21:12 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Pavel Balaev @ 2018-11-27 10:07 UTC (permalink / raw)
To: netdev; +Cc: davem
Introduce support of DSCP values in ip rules (as
described in RFC2474 and RFC2597).
Values are defined in /etc/iproute2/rt_dsfield.
Example:
$ ip ru add from 10.88.0.2 tos AF23 lookup dscp_table
$ ip ru add tos CS1 lookup dscp_table
Patch was tested with this configuration:
+-----------+
| 10.88.0.2 | -> ping 172.16.0.1 -Q 0x58 ->
| host0 |
+-----------+
+-------------------------------------+
| router with patched kernel |
| |
-> | from 10.88.0.2 tos AF43 lookup dscp |->
| table dscp: |
| 172.16.0.0/24 via 10.200.0.2 |
+-------------------------------------+
+------------------+
-> | eth0: 10.200.0.2 |
| eth1: 172.16.0.1 |
| host1 |
+------------------+
Signed-off-by: Pavel Balaev <mail@void.so>
---
include/net/route.h | 2 +-
include/uapi/linux/ip.h | 2 ++
net/ipv4/fib_rules.c | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/include/net/route.h b/include/net/route.h
index bb53cdba..b984ecff 100644
--- a/include/net/route.h
+++ b/include/net/route.h
@@ -239,7 +239,7 @@ static inline void ip_rt_put(struct rtable *rt)
dst_release(&rt->dst);
}
-#define IPTOS_RT_MASK (IPTOS_TOS_MASK & ~3)
+#define IPTOS_RT_MASK (IPTOS_DSCP_MASK & ~3)
extern const __u8 ip_tos2prio[16];
diff --git a/include/uapi/linux/ip.h b/include/uapi/linux/ip.h
index e42d13b5..307ce2b1 100644
--- a/include/uapi/linux/ip.h
+++ b/include/uapi/linux/ip.h
@@ -38,6 +38,8 @@
#define IPTOS_PREC_PRIORITY 0x20
#define IPTOS_PREC_ROUTINE 0x00
+#define IPTOS_DSCP_MASK (IPTOS_TOS_MASK | IPTOS_PREC_MASK)
+#define IPTOS_DSCP(tos) ((tos)&IPTOS_DSCP_MASK)
/* IP options */
#define IPOPT_COPY 0x80
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c
index f8eb78d0..9ba91ef0 100644
--- a/net/ipv4/fib_rules.c
+++ b/net/ipv4/fib_rules.c
@@ -220,7 +220,7 @@ static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
int err = -EINVAL;
struct fib4_rule *rule4 = (struct fib4_rule *) rule;
- if (frh->tos & ~IPTOS_TOS_MASK) {
+ if (frh->tos & ~IPTOS_DSCP_MASK) {
NL_SET_ERR_MSG(extack, "Invalid tos");
goto errout;
}
--
2.18.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] ipv4: make DSCP values works with ip rules
2018-11-27 10:07 [PATCH v3] ipv4: make DSCP values works with ip rules Pavel Balaev
@ 2018-11-30 21:12 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2018-11-30 21:12 UTC (permalink / raw)
To: mail; +Cc: netdev
From: Pavel Balaev <mail@void.so>
Date: Tue, 27 Nov 2018 13:07:10 +0300
> -#define IPTOS_RT_MASK (IPTOS_TOS_MASK & ~3)
> +#define IPTOS_RT_MASK (IPTOS_DSCP_MASK & ~3)
I was hoping my original feedback would have you actually go
investigate why IPTOS_RT_MASK is defined the way that it is.
I will try again.
Please grep around for RTO_ONLINK and see how that specifically
interferes with what you are trying to do here.
I don't think your goal is achievable with how things are defined
currently.
Sorry.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-12-01 8:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-27 10:07 [PATCH v3] ipv4: make DSCP values works with ip rules Pavel Balaev
2018-11-30 21:12 ` David Miller
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).