netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH 0/2] tcp: factor out a couple of helpers
@ 2020-10-16 10:51 Paolo Abeni
  2020-10-16 10:51 ` [RFC PATCH 1/2] tcp: factor out tcp_build_frag() Paolo Abeni
  2020-10-16 10:51 ` [RFC PATCH 2/2] tcp: factor out __tcp_close() helper Paolo Abeni
  0 siblings, 2 replies; 3+ messages in thread
From: Paolo Abeni @ 2020-10-16 10:51 UTC (permalink / raw)
  To: netdev; +Cc: Eric Dumazet, mptcp

Upcoming improvement in MPTCP subflows management will require to keep write
data enqueued at the MPTCP level. As a side effect, such data could be sent
via orphaned TCP subflows after close().

To implement the above MPTCP needs to cope directly with memory allocation
failures in do_tcp_sendpages(). The solution proposed in patch 1/2 
is to factor-out the relevant slice of do_tcp_sendpages().

Other possible alternatives could be:
- duplicating the relevant code inside MPTCP (will require exposing a few
  additional TCP helpers) 
or
- add an explicit check for orphaned socket in do_tcp_sendpages()

Additionally, due to the above, we will need to dispose of already orphaned
TCP subflows, avoiding racing with tcp_done(). We need to check the
subflow status and destroy it atomically. The solution proposed in patch 2/2
is to factor-out the unlocked body of tcp_close().

These changes are part of a quite larger MPTCP series, with all the other
patches touching only MPTCP code. To hopefully simplify the review, such
patches are not included here. Please advice if you prefer otherwise
- e.g. the whole series as RFC.

Paolo Abeni (2):
  tcp: factor out tcp_build_frag()
  tcp: factor out __tcp_close() helper

 include/net/tcp.h |   4 ++
 net/ipv4/tcp.c    | 128 +++++++++++++++++++++++++++-------------------
 2 files changed, 78 insertions(+), 54 deletions(-)

-- 
2.26.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-10-16 10:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-16 10:51 [RFC PATCH 0/2] tcp: factor out a couple of helpers Paolo Abeni
2020-10-16 10:51 ` [RFC PATCH 1/2] tcp: factor out tcp_build_frag() Paolo Abeni
2020-10-16 10:51 ` [RFC PATCH 2/2] tcp: factor out __tcp_close() helper Paolo Abeni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).