Total vulnerabilities in the database
In the Linux kernel, the following vulnerability has been resolved:
IB/hfi1: Fix sdma.h tx->num_descs off-by-one error
Unfortunately the commit fd8958efe877
introduced another error
causing the descs
array to overflow. This reults in further crashes
easily reproducible by sendmsg
system call.
[ 1081.148347] __sys_sendmsg+0x59/0xa0
crash> ipoib_txreq 0xffff9cfeba229f00 struct ipoib_txreq { txreq = { list = { next = 0xffff9cfeba229f00, prev = 0xffff9cfeba229f00 }, descp = 0xffff9cfeba229f40, coalesce_buf = 0x0, wait = 0xffff9cfea4e69a48, complete = 0xffffffffc0fe0760 <hfi1_ipoib_sdma_complete>, packet_len = 0x46d, tlen = 0x0, num_desc = 0x0, desc_limit = 0x6, next_descq_idx = 0x45c, coalesce_idx = 0x0, flags = 0x0, descs = {{ qw = {0x8024000120dffb00, 0x4} # SDMA_DESC0_FIRST_DESC_FLAG (bit 63) }, { qw = { 0x3800014231b108, 0x4} }, { qw = { 0x310000e4ee0fcf0, 0x8} }, { qw = { 0x3000012e9f8000, 0x8} }, { qw = { 0x59000dfb9d0000, 0x8} }, { qw = { 0x78000e02e40000, 0x8} }} }, sdma_hdr = 0x400300015528b000, <<< invalid pointer in the tx request structure sdma_status = 0x0, SDMA_DESC0_LAST_DESC_FLAG (bit 62) complete = 0x0, priv = 0x0, txq = 0xffff9cfea4e69880, skb = 0xffff9d099809f400 }
If an SDMA send consists of exactly 6 descriptors and requires dword padding (in the 7th descriptor), the sdma_txreq descriptor array is not properly expanded and the packet will overflow into the container structure. This results in a panic when the send completion runs. The exact panic varies depending on what elements of the container structure get corrupted. The fix is to use the correct expression in _pad_sdma_tx_descs() to test the need to expand the descriptor array.
With this patch the crashes are no longer reproducible and the machine is stable.
Software | From | Fixed in |
---|---|---|
linux / linux_kernel | 6.8-rc1 | 6.8-rc1.x |
linux / linux_kernel | 6.8-rc3 | 6.8-rc3.x |
linux / linux_kernel | 6.8-rc4 | 6.8-rc4.x |
linux / linux_kernel | 6.8-rc2 | 6.8-rc2.x |
linux / linux_kernel | 6.8-rc5 | 6.8-rc5.x |
linux / linux_kernel | 6.7 | 6.7.7 |
linux / linux_kernel | 4.19.291 | 4.19.308 |
linux / linux_kernel | 5.4.251 | 5.4.270 |
linux / linux_kernel | 5.10.188 | 5.10.211 |
linux / linux_kernel | 5.15.99 | 5.15.150 |
linux / linux_kernel | 6.1.16 | 6.1.80 |
linux / linux_kernel | 6.2.3 | 6.6.19 |
debian / debian_linux | 10.0 | 10.0.x |