]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
svcrpc: fix BUG() in svc_tcp_clear_pages
authorJ. Bruce Fields <bfields@redhat.com>
Thu, 9 Aug 2012 22:12:28 +0000 (18:12 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 14 Sep 2012 16:59:36 +0000 (09:59 -0700)
commitf5babb0b4ed1988a740d1e103c3ecc4d0dc8deec
treef871f9c38c81e58437730e5adaed3665041768e4
parent4d46966ed3e2917bbfcbdb644fb278dca23cc783
svcrpc: fix BUG() in svc_tcp_clear_pages

commit be1e44441a560c43c136a562d49a1c9623c91197 upstream.

Examination of svc_tcp_clear_pages shows that it assumes sk_tcplen is
consistent with sk_pages[] (in particular, sk_pages[n] can't be NULL if
sk_tcplen would lead us to expect n pages of data).

svc_tcp_restore_pages zeroes out sk_pages[] while leaving sk_tcplen.
This is OK, since both functions are serialized by XPT_BUSY.  However,
that means the inconsistency must be repaired before dropping XPT_BUSY.

Therefore we should be ensuring that svc_tcp_save_pages repairs the
problem before exiting svc_tcp_recv_record on error.

Symptoms were a BUG() in svc_tcp_clear_pages.

Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/sunrpc/svcsock.c