linux-stable/arch/um/drivers
Nathan Chancellor 1e3d449b15 um: net: Fix return type of uml_net_start_xmit()
[ Upstream commit 7d748f60a4 ]

With clang's kernel control flow integrity (kCFI, CONFIG_CFI_CLANG),
indirect call targets are validated against the expected function
pointer prototype to make sure the call target is valid to help mitigate
ROP attacks. If they are not identical, there is a failure at run time,
which manifests as either a kernel panic or thread getting killed. A
warning in clang aims to catch these at compile time, which reveals:

  arch/um/drivers/net_kern.c:353:21: warning: incompatible function pointer types initializing 'netdev_tx_t (*)(struct sk_buff *, struct net_device *)' (aka 'enum netdev_tx (*)(struct sk_buff *, struct net_device *)') with an expression of type 'int (struct sk_buff *, struct net_device *)' [-Wincompatible-function-pointer-types-strict]
    353 |         .ndo_start_xmit         = uml_net_start_xmit,
        |                                   ^~~~~~~~~~~~~~~~~~
  1 warning generated.

->ndo_start_xmit() in 'struct net_device_ops' expects a return type of
'netdev_tx_t', not 'int'. Adjust the return type of uml_net_start_xmit()
to match the prototype's to resolve the warning. While UML does not
currently implement support for kCFI, it could in the future, which
means this warning becomes a fatal CFI failure at run time.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202310031340.v1vPh207-lkp@intel.com/
Acked-by: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-02-23 08:54:50 +01:00
..
Kconfig um: Fix hostaudio build errors 2023-09-19 12:22:49 +02:00
Makefile um: Fix hostaudio build errors 2023-09-19 12:22:49 +02:00
chan.h
chan_kern.c um: line: Use separate IRQs per line 2022-06-14 18:36:23 +02:00
chan_user.c um: chan_user: Fix winch_tramp() return value 2022-06-09 10:23:27 +02:00
chan_user.h
cow.h treewide: remove editor modelines and cruft 2021-05-07 00:26:34 -07:00
cow_sys.h
cow_user.c
daemon.h
daemon_kern.c
daemon_user.c um: Some fixes to build UML with musl 2020-10-11 23:13:06 +02:00
fd.c
harddog.h um: harddog: fix modular build 2023-06-09 10:32:22 +02:00
harddog_kern.c um: harddog: fix modular build 2023-06-09 10:32:22 +02:00
harddog_user.c um: harddog: fix modular build 2023-06-09 10:32:22 +02:00
harddog_user_exp.c um: harddog: fix modular build 2023-06-09 10:32:22 +02:00
hostaudio_kern.c um: Remove unneeded variable 'ret' 2021-04-15 23:10:33 +02:00
line.c um: line: Use separate IRQs per line 2022-06-14 18:36:23 +02:00
line.h um: line: Use separate IRQs per line 2022-06-14 18:36:23 +02:00
mconsole.h
mconsole_kern.c um: Fix uml_mconsole stop/go 2022-04-08 14:24:16 +02:00
mconsole_kern.h
mconsole_user.c
mmapper_kern.c
net_kern.c um: net: Fix return type of uml_net_start_xmit() 2024-02-23 08:54:50 +01:00
net_user.c
null.c
pcap_kern.c
pcap_user.c um: Some fixes to build UML with musl 2020-10-11 23:13:06 +02:00
pcap_user.h
port.h
port_kern.c um: Support dynamic IRQ allocation 2020-12-13 22:22:08 +01:00
port_user.c
pty.c
random.c um: random: Don't initialise hwrng struct with zero 2022-08-17 14:23:53 +02:00
rtc.h um: add a pseudo RTC 2021-02-12 21:38:52 +01:00
rtc_kern.c um: add a pseudo RTC 2021-02-12 21:38:52 +01:00
rtc_user.c isystem: trim/fixup stdarg.h and other headers 2021-08-19 09:02:55 +09:00
slip.h
slip_common.c
slip_common.h
slip_kern.c
slip_user.c um: fix error return code in slip_open() 2021-06-17 22:10:05 +02:00
slirp.h
slirp_kern.c
slirp_user.c
ssl.c um: line: Use separate IRQs per line 2022-06-14 18:36:23 +02:00
stderr_console.c
stdio_console.c um: line: Use separate IRQs per line 2022-06-14 18:36:23 +02:00
stdio_console.h
tty.c
ubd.h
ubd_kern.c block: drop unused includes in <linux/genhd.h> 2022-03-16 14:23:46 +01:00
ubd_user.c
umcast.h
umcast_kern.c
umcast_user.c
vde.h
vde_kern.c
vde_user.c
vector_kern.c um: vector: Fix memory leak in vector_config 2023-03-11 13:57:23 +01:00
vector_kern.h um: virtio: Replace zero-length array with flexible-array 2020-06-02 22:38:00 +02:00
vector_transports.c
vector_user.c isystem: trim/fixup stdarg.h and other headers 2021-08-19 09:02:55 +09:00
vector_user.h
vhost_user.h um: virtio: Replace zero-length array with flexible-array 2020-06-02 22:38:00 +02:00
virt-pci.c um: virt-pci: properly remove PCI device from bus 2023-03-11 13:57:27 +01:00
virtio_uml.c um: virtio_uml: move device breaking into workqueue 2023-03-11 13:57:27 +01:00
xterm.c um: chan_xterm: Fix fd leak 2020-12-13 22:38:28 +01:00
xterm.h
xterm_kern.c um: Support dynamic IRQ allocation 2020-12-13 22:22:08 +01:00