From: "Maciej Żenczykowski" <maze@google.com>
To: "Maciej Żenczykowski" <zenczykowski@gmail.com>
Cc: "Linux Network Development Mailing List" <netdev@vger.kernel.org>,
"David S . Miller" <davem@davemloft.net>,
"Eric Dumazet" <edumazet@google.com>,
"Jakub Kicinski" <kuba@kernel.org>,
"Paolo Abeni" <pabeni@redhat.com>,
"Maciej Żenczykowski" <maze@google.com>,
"Lorenzo Colitti" <lorenzo@google.com>
Subject: [PATCH net-next] net: define and implement new SOL_SOCKET SO_RX_IFINDEX option
Date: Thu, 24 Oct 2024 08:41:19 -0700 [thread overview]
Message-ID: <20241024154119.1096947-1-maze@google.com> (raw)
This is currently only implemented for TCP and is not
guaranteed to return correct information for a multitude
of reasons (including multipath reception), but there are
scenarios where it is useful: in particular a strong host
model where connections are only viable via a single interface,
for example a VPN interface. One could for example choose
to use this to SO_BINDTODEVICE.
Test:
// Python 2.7.18 (default, Jul 13 2022, 18:14:36)
import socket
SO_RX_IFINDEX=82
s = socket.socket(socket.AF_INET6, socket.SOCK_STREAM, 0)
c = socket.socket(socket.AF_INET6, socket.SOCK_STREAM, 0)
s.bind(('::', 8888))
s.listen(128)
c.connect(('::', 8888))
a = s.accept()
print a # (<socket._socketobject object>, ('::1', 58144, 0, 0))
p=a[0]
p.getsockname() # ('::1', 8888, 0, 0)
p.getpeername() # ('::1', 58144, 0, 0)
c.getsockname() # ('::1', 58144, 0, 0)
c.getpeername() # ('::1', 8888, 0, 0)
p.getsockopt(socket.SOL_SOCKET, SO_RX_IFINDEX) # 1 (lo)
c.getsockopt(socket.SOL_SOCKET, SO_RX_IFINDEX) # 0 (unknown)
c.send(b'X') # 1
p.recv(2) # 'X'
p.getsockopt(socket.SOL_SOCKET, SO_RX_IFINDEX) # 1 (lo)
c.getsockopt(socket.SOL_SOCKET, SO_RX_IFINDEX) # 0 (unknown)
p.send(b'Z') # 1
c.recv(2) # 'Z'
p.getsockopt(socket.SOL_SOCKET, SO_RX_IFINDEX) # 1 (lo)
c.getsockopt(socket.SOL_SOCKET, SO_RX_IFINDEX) # 1 (lo)
Which shows we should possibly fix the 3-way handshake SYN-ACK
to set sk->sk_rx_dst_ifindex.
Cc: Lorenzo Colitti <lorenzo@google.com>
Cc: Eric Dumazet <edumazet@google.com>
Signed-off-by: Maciej Żenczykowski <maze@google.com>
---
arch/alpha/include/uapi/asm/socket.h | 2 ++
arch/mips/include/uapi/asm/socket.h | 2 ++
arch/parisc/include/uapi/asm/socket.h | 2 ++
arch/sparc/include/uapi/asm/socket.h | 2 ++
include/uapi/asm-generic/socket.h | 2 ++
net/core/sock.c | 4 ++++
6 files changed, 14 insertions(+)
diff --git a/arch/alpha/include/uapi/asm/socket.h b/arch/alpha/include/uapi/asm/socket.h
index 302507bf9b5d..5f139b095a49 100644
--- a/arch/alpha/include/uapi/asm/socket.h
+++ b/arch/alpha/include/uapi/asm/socket.h
@@ -148,6 +148,8 @@
#define SCM_TS_OPT_ID 81
+#define SO_RX_IFINDEX 82
+
#if !defined(__KERNEL__)
#if __BITS_PER_LONG == 64
diff --git a/arch/mips/include/uapi/asm/socket.h b/arch/mips/include/uapi/asm/socket.h
index d118d4731580..ff25d24b4dea 100644
--- a/arch/mips/include/uapi/asm/socket.h
+++ b/arch/mips/include/uapi/asm/socket.h
@@ -159,6 +159,8 @@
#define SCM_TS_OPT_ID 81
+#define SO_RX_IFINDEX 82
+
#if !defined(__KERNEL__)
#if __BITS_PER_LONG == 64
diff --git a/arch/parisc/include/uapi/asm/socket.h b/arch/parisc/include/uapi/asm/socket.h
index d268d69bfcd2..3f89c388e356 100644
--- a/arch/parisc/include/uapi/asm/socket.h
+++ b/arch/parisc/include/uapi/asm/socket.h
@@ -140,6 +140,8 @@
#define SCM_TS_OPT_ID 0x404C
+#define SO_RX_IFINDEX 82
+
#if !defined(__KERNEL__)
#if __BITS_PER_LONG == 64
diff --git a/arch/sparc/include/uapi/asm/socket.h b/arch/sparc/include/uapi/asm/socket.h
index 113cd9f353e3..f1af74f5f1ad 100644
--- a/arch/sparc/include/uapi/asm/socket.h
+++ b/arch/sparc/include/uapi/asm/socket.h
@@ -141,6 +141,8 @@
#define SCM_TS_OPT_ID 0x005a
+#define SO_RX_IFINDEX 0x005b
+
#if !defined(__KERNEL__)
diff --git a/include/uapi/asm-generic/socket.h b/include/uapi/asm-generic/socket.h
index deacfd6dd197..b16c69e22606 100644
--- a/include/uapi/asm-generic/socket.h
+++ b/include/uapi/asm-generic/socket.h
@@ -143,6 +143,8 @@
#define SCM_TS_OPT_ID 81
+#define SO_RX_IFINDEX 82
+
#if !defined(__KERNEL__)
#if __BITS_PER_LONG == 64 || (defined(__x86_64__) && defined(__ILP32__))
diff --git a/net/core/sock.c b/net/core/sock.c
index 7f398bd07fb7..6c985413c21f 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -1932,6 +1932,10 @@ int sk_getsockopt(struct sock *sk, int level, int optname,
v.val = READ_ONCE(sk->sk_mark);
break;
+ case SO_RX_IFINDEX:
+ v.val = READ_ONCE(sk->sk_rx_dst_ifindex);
+ break;
+
case SO_RCVMARK:
v.val = sock_flag(sk, SOCK_RCVMARK);
break;
--
2.47.0.105.g07ac214952-goog
next reply other threads:[~2024-10-24 15:41 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-24 15:41 Maciej Żenczykowski [this message]
2024-10-24 15:44 ` [PATCH net-next] net: define and implement new SOL_SOCKET SO_RX_IFINDEX option Maciej Żenczykowski
2024-10-25 14:44 ` Willem de Bruijn
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=20241024154119.1096947-1-maze@google.com \
--to=maze@google.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=lorenzo@google.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=zenczykowski@gmail.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).