]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
selftests/bpf: Fix file descriptor assertion in open_tuntap helper
authorMarcus Wichelmann <marcus.wichelmann@hetzner-cloud.de>
Wed, 5 Mar 2025 21:34:38 +0000 (21:34 +0000)
committerMartin KaFai Lau <martin.lau@kernel.org>
Thu, 6 Mar 2025 20:31:08 +0000 (12:31 -0800)
The open_tuntap helper function uses open() to get a file descriptor for
/dev/net/tun.

The open(2) manpage writes this about its return value:

  On success, open(), openat(), and creat() return the new file
  descriptor (a nonnegative integer).  On error, -1 is returned and
  errno is set to indicate the error.

This means that the fd > 0 assertion in the open_tuntap helper is
incorrect and should rather check for fd >= 0.

When running the BPF selftests locally, this incorrect assertion was not
an issue, but the BPF kernel-patches CI failed because of this:

  open_tuntap:FAIL:open(/dev/net/tun) unexpected open(/dev/net/tun):
  actual 0 <= expected 0

Signed-off-by: Marcus Wichelmann <marcus.wichelmann@hetzner-cloud.de>
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Link: https://patch.msgid.link/20250305213438.3863922-7-marcus.wichelmann@hetzner-cloud.de
tools/testing/selftests/bpf/network_helpers.c

index fcee2c4a637a5238958d43bd62a988f67dd4fc6b..29541d486c5ef16525dd53123e3e1fec06dfa493 100644 (file)
@@ -554,7 +554,7 @@ int open_tuntap(const char *dev_name, bool need_mac)
        struct ifreq ifr;
        int fd = open("/dev/net/tun", O_RDWR);
 
-       if (!ASSERT_GT(fd, 0, "open(/dev/net/tun)"))
+       if (!ASSERT_GE(fd, 0, "open(/dev/net/tun)"))
                return -1;
 
        ifr.ifr_flags = IFF_NO_PI | (need_mac ? IFF_TAP : IFF_TUN);