Skip to content
Commit e7a5f1f1 authored by Lingpeng Chen's avatar Lingpeng Chen Committed by Daniel Borkmann
Browse files

bpf/sockmap: Read psock ingress_msg before sk_receive_queue

Right now in tcp_bpf_recvmsg, sock read data first from sk_receive_queue
if not empty than psock->ingress_msg otherwise. If a FIN packet arrives
and there's also some data in psock->ingress_msg, the data in
psock->ingress_msg will be purged. It is always happen when request to a
HTTP1.0 server like python SimpleHTTPServer since the server send FIN
packet after data is sent out.

Fixes: 604326b4

 ("bpf, sockmap: convert to generic sk_msg interface")
Reported-by: default avatarArika Chen <eaglesora@gmail.com>
Suggested-by: default avatarArika Chen <eaglesora@gmail.com>
Signed-off-by: default avatarLingpeng Chen <forrest0579@gmail.com>
Signed-off-by: default avatarJohn Fastabend <john.fastabend@gmail.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Acked-by: default avatarSong Liu <songliubraving@fb.com>
Link: https://lore.kernel.org/bpf/20200109014833.18951-1-forrest0579@gmail.com
parent da29f2d8
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment