diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-06-30 16:27:46 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-30 22:36:56 +0200 |
commit | a6ed3ebca49b62d7a917287b9986feff4e9fa7b1 (patch) | |
tree | 28470429562a87d1f2bcf9ffbaf3beea9004518b /net/mptcp | |
parent | Merge branch 'sfc-prerequisites-for-EF100-driver-part-2' (diff) | |
download | linux-a6ed3ebca49b62d7a917287b9986feff4e9fa7b1.tar.xz linux-a6ed3ebca49b62d7a917287b9986feff4e9fa7b1.zip |
net/tls: fix sign extension issue when left shifting u16 value
Left shifting the u16 value promotes it to a int and then it
gets sign extended to a u64. If len << 16 is greater than 0x7fffffff
then the upper bits get set to 1 because of the implicit sign extension.
Fix this by casting len to u64 before shifting it.
Addresses-Coverity: ("integer handling issues")
Fixes: ed9b7646b06a ("net/tls: Add asynchronous resync")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mptcp')
0 files changed, 0 insertions, 0 deletions