net: inet_diag: export IPV6_V6ONLY sockopt
authorPhil Sutter <phil@nwl.cc>
Wed, 24 Jun 2015 09:02:51 +0000 (11:02 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 24 Jun 2015 09:51:39 +0000 (02:51 -0700)
For AF_INET6 sockets, the value of struct ipv6_pinfo.ipv6only is
exported to userspace. It indicates whether a socket bound to in6addr_any
listens on IPv4 as well as IPv6. Since the socket is natively IPv6, it is not
listed by e.g. 'ss -l -4'.

This patch is accompanied by an appropriate one for iproute2 to enable
the additional information in 'ss -e'.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/inet_diag.h
net/ipv4/inet_diag.c

index b629fc53b1090e73047b263a9231e34ebf64b2af..68a1f71fde9f7bcc90c21f586b57f1eab61de941 100644 (file)
@@ -112,9 +112,10 @@ enum {
        INET_DIAG_SHUTDOWN,
        INET_DIAG_DCTCPINFO,
        INET_DIAG_PROTOCOL,  /* response attribute only */
+       INET_DIAG_SKV6ONLY,
 };
 
-#define INET_DIAG_MAX INET_DIAG_PROTOCOL
+#define INET_DIAG_MAX INET_DIAG_SKV6ONLY
 
 /* INET_DIAG_MEM */
 
index 516a1f6fbdd38d191ea621f1a5bac6bf246c7b62..9bc26677058e0420739e4a7bcb7ffd1b593d6e67 100644 (file)
@@ -151,6 +151,10 @@ int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
                        if (nla_put_u8(skb, INET_DIAG_TCLASS,
                                       inet6_sk(sk)->tclass) < 0)
                                goto errout;
+
+               if (ipv6_only_sock(sk) &&
+                   nla_put_u8(skb, INET_DIAG_SKV6ONLY, 1))
+                       goto errout;
        }
 #endif
 
This page took 0.052696 seconds and 5 git commands to generate.