Skip to content

Commit e8e3698

Browse files
rdnaAlexei Starovoitov
authored andcommitted
bpf: Fix [::] -> [::1] rewrite in sys_sendmsg
sys_sendmsg has supported unspecified destination IPv6 (wildcard) for unconnected UDP sockets since 876c7f4. When [::] is passed by user as destination, sys_sendmsg rewrites it with [::1] to be consistent with BSD (see "BSD'ism" comment in the code). This didn't work when cgroup-bpf was enabled though since the rewrite [::] -> [::1] happened before passing control to cgroup-bpf block where fl6.daddr was updated with passed by user sockaddr_in6.sin6_addr (that might or might not be changed by BPF program). That way if user passed [::] as dst IPv6 it was first rewritten with [::1] by original code from 876c7f4, but then rewritten back with [::] by cgroup-bpf block. It happened even when BPF_CGROUP_UDP6_SENDMSG program was not present (CONFIG_CGROUP_BPF=y was enough). The fix is to apply BSD'ism after cgroup-bpf block so that [::] is replaced with [::1] no matter where it came from: passed by user to sys_sendmsg or set by BPF_CGROUP_UDP6_SENDMSG program. Fixes: 1cedee1 ("bpf: Hooks for sys_sendmsg") Reported-by: Nitin Rawat <nitin.rawat@intel.com> Signed-off-by: Andrey Ignatov <rdna@fb.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
1 parent ec90ad3 commit e8e3698

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

net/ipv6/udp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,10 +1390,7 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
13901390
ipc6.opt = opt;
13911391

13921392
fl6.flowi6_proto = sk->sk_protocol;
1393-
if (!ipv6_addr_any(daddr))
1394-
fl6.daddr = *daddr;
1395-
else
1396-
fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1393+
fl6.daddr = *daddr;
13971394
if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
13981395
fl6.saddr = np->saddr;
13991396
fl6.fl6_sport = inet->inet_sport;
@@ -1421,6 +1418,9 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
14211418
}
14221419
}
14231420

1421+
if (ipv6_addr_any(&fl6.daddr))
1422+
fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1423+
14241424
final_p = fl6_update_dst(&fl6, opt, &final);
14251425
if (final_p)
14261426
connected = false;

0 commit comments

Comments
 (0)