Open
Description
These results are from the 20230608 snapshot of Debian 12 GNU/Hurd. The original problem manifested in libpcap build matrix, which runs testprogs/findalldevstest
. Upon a closer look it became clear that other test programs also do not work as expected:
capturetest
andnonblocktest
default to a non-network device and fail:capturetest: WARNING: SIOCGIFADDR: dbus-system: No such device capturetest: pcap_setnonblock failed: Non-blocking mode isn't supported for capturing on D-Bus
findalldevstest
fails withdbus-system Description: D-Bus system bus Flags: dbus-session Description: D-Bus session bus Flags: Error in pcap_lookupnet: SIOCGIFADDR: dbus-system: No such device
selpolltest
andthreadsignaltest
generate a warning:selpolltest: WARNING: SIOCGIFADDR: dbus-system: No such device Listening on dbus-system, using pcap_dispatch() 1 packets seen, 1 packets counted after pcap_dispatch returns ^C
All of the above was attempted as a non-root user. The network interfaces are as follows:
$ ifconfig
/dev/eth0 (2):
inet address 192.168.0.24
netmask 255.255.255.0
broadcast 192.168.0.255
flags UP BROADCAST RUNNING ALLMULTI MULTICAST
mtu 1500
link encap Ethernet
hardware addr 08:00:27:72:46:74
lo (1):
inet address 127.0.0.1
netmask 255.0.0.0
flags UP LOOPBACK RUNNING
mtu 3924
link encap Local Loopback
However, tcpdump does not see any network interfaces (whether run as root or not):
$ ./tcpdump -D
1.dbus-system (D-Bus system bus) [none]
2.dbus-session (D-Bus session bus) [none]
To reproduce these results, libdbus-1-dev must be installed before compiling libpcap. If it is not installed, the list of capture devices is empty.