Revision da353fac65fede6b8b4cfe207f0d9408e3121105 authored by Daniel Jordan on 27 October 2021, 21:59:20 UTC, committed by David S. Miller on 28 October 2021, 13:41:20 UTC
sk->sk_err appears to expect a positive value, a convention that ktls
doesn't always follow and that leads to memory corruption in other code.
For instance,

    [kworker]
    tls_encrypt_done(..., err=<negative error from crypto request>)
      tls_err_abort(.., err)
        sk->sk_err = err;

    [task]
    splice_from_pipe_feed
      ...
        tls_sw_do_sendpage
          if (sk->sk_err) {
            ret = -sk->sk_err;  // ret is positive

    splice_from_pipe_feed (continued)
      ret = actor(...)  // ret is still positive and interpreted as bytes
                        // written, resulting in underflow of buf->len and
                        // sd->len, leading to huge buf->offset and bogus
                        // addresses computed in later calls to actor()

Fix all tls_err_abort() callers to pass a negative error code
consistently and centralize the error-prone sign flip there, throwing in
a warning to catch future misuse and uninlining the function so it
really does only warn once.

Cc: stable@vger.kernel.org
Fixes: c46234ebb4d1e ("tls: RX path for ktls")
Reported-by: syzbot+b187b77c8474f9648fae@syzkaller.appspotmail.com
Signed-off-by: Daniel Jordan <daniel.m.jordan@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent a32f07d
History
File Mode Size
gameport
joystick
keyboard
misc
mouse
rmi4
serio
tablet
touchscreen
Kconfig -rw-r--r-- 5.6 KB
Makefile -rw-r--r-- 942 bytes
apm-power.c -rw-r--r-- 2.4 KB
evbug.c -rw-r--r-- 2.2 KB
evdev.c -rw-r--r-- 32.4 KB
ff-core.c -rw-r--r-- 8.7 KB
ff-memless.c -rw-r--r-- 14.0 KB
input-compat.c -rw-r--r-- 3.1 KB
input-compat.h -rw-r--r-- 1.6 KB
input-leds.c -rw-r--r-- 5.0 KB
input-mt.c -rw-r--r-- 12.4 KB
input-poller.c -rw-r--r-- 5.3 KB
input-poller.h -rw-r--r-- 478 bytes
input.c -rw-r--r-- 64.7 KB
joydev.c -rw-r--r-- 26.0 KB
matrix-keymap.c -rw-r--r-- 5.3 KB
mousedev.c -rw-r--r-- 25.6 KB
sparse-keymap.c -rw-r--r-- 7.4 KB
touchscreen.c -rw-r--r-- 6.0 KB

back to top