CVE-2022-50486
Published: Oct 4, 2025
Modified: May 11, 2026
Description
In the Linux kernel, the following vulnerability has been resolved: net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() 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 proposed warning in clang aims to catch these at compile time, which reveals: drivers/net/ethernet/ti/netcp_core.c:1944:21: error: 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 *)' [-Werror,-Wincompatible-function-pointer-types-strict] .ndo_start_xmit = netcp_ndo_start_xmit, ^~~~~~~~~~~~~~~~~~~~ 1 error generated. ->ndo_start_xmit() in 'struct net_device_ops' expects a return type of 'netdev_tx_t', not 'int'. Adjust the return type of netcp_ndo_start_xmit() to match the prototype's to resolve the warning and CFI failure.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected 84640e27f23041d474c31d3362c3e2185ad68ec2 - < a447479ea2cf35603b5739ea947885024b901222affected 84640e27f23041d474c31d3362c3e2185ad68ec2 - < 17bb9bdf701f3e811a9f4820b08b9538ade2641caffected 84640e27f23041d474c31d3362c3e2185ad68ec2 - < d837d74eae077cc3ef9e191ba8535b5f602d4673affected 84640e27f23041d474c31d3362c3e2185ad68ec2 - < dbe1a6b930ae9647e8ce0b684c903ac67d4398ebaffected 84640e27f23041d474c31d3362c3e2185ad68ec2 - < 5b0b6553bf4ad3a435a57e02c68d6075f384e1be+4 more versions |
Linux | Linux | affected 4.0unaffected 0 - < 4.0unaffected 4.9.337 - <= 4.9.*unaffected 4.14.303 - <= 4.14.*unaffected 4.19.270 - <= 4.19.*+6 more versions |
References
Security Training
Train your team to recognize and prevent security threats with our comprehensive security awareness program.
Start TrainingVulnerability Scanning
Discover vulnerabilities in your applications and infrastructure before attackers do.
Scan Now