Page MenuHomeFreeBSD

sctp: Fix races around sctp_inpcb_free()
ClosedPublic

Authored by markj on Sep 2 2021, 9:12 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 29, 3:37 PM
Unknown Object (File)
Sat, Apr 27, 9:09 PM
Unknown Object (File)
Jan 12 2024, 7:24 AM
Unknown Object (File)
Jan 11 2024, 2:04 AM
Unknown Object (File)
Jan 2 2024, 5:44 PM
Unknown Object (File)
Dec 22 2023, 10:16 PM
Unknown Object (File)
Dec 14 2023, 8:39 PM
Unknown Object (File)
Dec 6 2023, 10:31 PM
Subscribers

Details

Summary

sctp_close() and sctp_abort() disassociate the PCB from its socket.
As a part of this, they attempt to free the PCB, which may end up
lingering. Fix some bugs in this area:

- For some reason, sctp_close() and sctp_abort() set
  SCTP_PCB_FLAGS_SOCKET_GONE using an atomic compare-and-set without the
  PCB lock held.  This is racy since sctp_flags is normally updated
  without atomics, using the PCB lock to synchronize.  So, the update
  can be lost, which can cause all sort of races with other SCTP
  components which look for the _GONE flag.  Fix the problem simply by
  acquiring the PCB lock in order to set the flag.  Note that we have to
  drop and re-acquire the lock again in sctp_inpcb_free(), but I don't
  see a good way around that for now.  If it's a real problem, the _GONE
  flag could be split out of sctp_flags and into a dedicated sctp_inpcb
  field.
- In sctp_inpcb_free(), load sctp_socket after acquiring the PCB lock,
  to avoid possible races with parallel sctp_inpcb_free() calls.
- Use an assertion to verify that _ALLGONE is not set.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable