All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH iproute2-next] ip xfrm: support printing XFRMA_SET_MARK_MASK attribute in states
@ 2020-08-28 14:59 Antony Antony
  2020-09-02  1:55 ` David Ahern
  0 siblings, 1 reply; 2+ messages in thread
From: Antony Antony @ 2020-08-28 14:59 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: netdev

The XFRMA_SET_MARK_MASK attribute is set in states (4.19+).
It is the mask of XFRMA_SET_MARK(a.k.a. XFRMA_OUTPUT_MARK in 4.18)

sample output: note the output-mark mask
ip xfrm state
	src 192.1.2.23 dst 192.1.3.33
	proto esp spi 0xSPISPI reqid REQID mode tunnel
	replay-window 32 flag af-unspec
	output-mark 0x3/0xffffff
	aead rfc4106(gcm(aes)) 0xENCAUTHKEY 128
	if_id 0x1

Signed-off-by: Antony Antony <antony@phenome.org>
---
 ip/ipxfrm.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ip/ipxfrm.c b/ip/ipxfrm.c
index cac8ba25..e4a72bd0 100644
--- a/ip/ipxfrm.c
+++ b/ip/ipxfrm.c
@@ -649,6 +649,10 @@ static void xfrm_output_mark_print(struct rtattr *tb[], FILE *fp)
 	__u32 output_mark = rta_getattr_u32(tb[XFRMA_OUTPUT_MARK]);
 
 	fprintf(fp, "output-mark 0x%x", output_mark);
+	if (tb[XFRMA_SET_MARK_MASK]) {
+		__u32 mask = rta_getattr_u32(tb[XFRMA_SET_MARK_MASK]);
+		fprintf(fp, "/0x%x", mask);
+	}
 }
 
 int xfrm_parse_mark(struct xfrm_mark *mark, int *argcp, char ***argvp)
-- 
2.21.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH iproute2-next] ip xfrm: support printing XFRMA_SET_MARK_MASK attribute in states
  2020-08-28 14:59 [PATCH iproute2-next] ip xfrm: support printing XFRMA_SET_MARK_MASK attribute in states Antony Antony
@ 2020-09-02  1:55 ` David Ahern
  0 siblings, 0 replies; 2+ messages in thread
From: David Ahern @ 2020-09-02  1:55 UTC (permalink / raw)
  To: Antony Antony, Stephen Hemminger; +Cc: netdev

On 8/28/20 8:59 AM, Antony Antony wrote:
> The XFRMA_SET_MARK_MASK attribute is set in states (4.19+).
> It is the mask of XFRMA_SET_MARK(a.k.a. XFRMA_OUTPUT_MARK in 4.18)
> 
> sample output: note the output-mark mask
> ip xfrm state
> 	src 192.1.2.23 dst 192.1.3.33
> 	proto esp spi 0xSPISPI reqid REQID mode tunnel
> 	replay-window 32 flag af-unspec
> 	output-mark 0x3/0xffffff
> 	aead rfc4106(gcm(aes)) 0xENCAUTHKEY 128
> 	if_id 0x1
> 
> Signed-off-by: Antony Antony <antony@phenome.org>
> ---
>  ip/ipxfrm.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 

applied to iproute2-next. Thanks



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-09-02  1:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-28 14:59 [PATCH iproute2-next] ip xfrm: support printing XFRMA_SET_MARK_MASK attribute in states Antony Antony
2020-09-02  1:55 ` David Ahern

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.