]> git.baikalelectronics.ru Git - kernel.git/commit
net/tls: Set count of SG entries if sk_alloc_sg returns -ENOSPC
authorVakul Garg <vakul.garg@nxp.com>
Thu, 6 Sep 2018 16:11:40 +0000 (21:41 +0530)
committerDavid S. Miller <davem@davemloft.net>
Sun, 9 Sep 2018 15:10:01 +0000 (08:10 -0700)
commit992f03fde3d73bb86ba26f8afbf325123945d92a
tree032f87084cff484a3ddd203027856790faefefdb
parent0eb243b9df4464a2949b0e8ce4b2bc66b6617272
net/tls: Set count of SG entries if sk_alloc_sg returns -ENOSPC

tls_sw_sendmsg() allocates plaintext and encrypted SG entries using
function sk_alloc_sg(). In case the number of SG entries hit
MAX_SKB_FRAGS, sk_alloc_sg() returns -ENOSPC and sets the variable for
current SG index to '0'. This leads to calling of function
tls_push_record() with 'sg_encrypted_num_elem = 0' and later causes
kernel crash. To fix this, set the number of SG elements to the number
of elements in plaintext/encrypted SG arrays in case sk_alloc_sg()
returns -ENOSPC.

Fixes: c2c217d10788 ("tls: kernel TLS support")
Signed-off-by: Vakul Garg <vakul.garg@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tls/tls_sw.c