Revert "sockets: retire sorflush()"

Provide a comment in sorflush() why the socket I/O sx(9) lock is actually
important.

This reverts commit 507f87a799.
This commit is contained in:
Gleb Smirnoff 2024-02-03 13:08:41 -08:00
parent 9ed713d97b
commit ce69e37369
8 changed files with 55 additions and 24 deletions

View file

@ -95,9 +95,9 @@
*
* NOTE: With regard to VNETs the general rule is that callers do not set
* curvnet. Exceptions to this rule include soabort(), sodisconnect(),
* sofree() (and with that sorele(), sotryfree()), as well as sonewconn(),
* which are usually called from a pre-set VNET context. sopoll() currently
* does not need a VNET context to be set.
* sofree(), sorele(), sonewconn() and sorflush(), which are usually called
* from a pre-set VNET context. sopoll() currently does not need a VNET
* context to be set.
*/
#include <sys/cdefs.h>
@ -2964,6 +2964,42 @@ soshutdown(struct socket *so, enum shutdown_how how)
return (error);
}
/*
* Used by several pr_shutdown implementations that use generic socket buffers.
*/
void
sorflush(struct socket *so)
{
int error;
VNET_SO_ASSERT(so);
/*
* Dislodge threads currently blocked in receive and wait to acquire
* a lock against other simultaneous readers before clearing the
* socket buffer. Don't let our acquire be interrupted by a signal
* despite any existing socket disposition on interruptable waiting.
*
* The SOCK_IO_RECV_LOCK() is important here as there some pr_soreceive
* methods that read the top of the socket buffer without acquisition
* of the socket buffer mutex, assuming that top of the buffer
* exclusively belongs to the read(2) syscall. This is handy when
* performing MSG_PEEK.
*/
socantrcvmore(so);
error = SOCK_IO_RECV_LOCK(so, SBL_WAIT | SBL_NOINTR);
if (error != 0) {
KASSERT(SOLISTENING(so),
("%s: soiolock(%p) failed", __func__, so));
return;
}
sbrelease(so, SO_RCV);
SOCK_IO_RECV_UNLOCK(so);
}
/*
* Wrapper for Socket established helper hook.
* Parameters: socket, context of the hook point, hook id.

View file

@ -457,12 +457,10 @@ rts_shutdown(struct socket *so, enum shutdown_how how)
*/
switch (how) {
case SHUT_RD:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
break;
case SHUT_RDWR:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
/* FALLTHROUGH */
case SHUT_WR:
socantsendmore(so);

View file

@ -994,12 +994,10 @@ rip_shutdown(struct socket *so, enum shutdown_how how)
switch (how) {
case SHUT_RD:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
break;
case SHUT_RDWR:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
/* FALLTHROUGH */
case SHUT_WR:
socantsendmore(so);

View file

@ -868,7 +868,11 @@ sctp_shutdown(struct socket *so, enum shutdown_how how)
SCTP_TCB_UNLOCK(stcb);
}
SCTP_INP_WUNLOCK(inp);
socantrcvmore(so);
/*
* XXXGL: does SCTP need sorflush()? This is what old
* soshutdown() used to do for all kinds of sockets.
*/
sorflush(so);
if (how == SHUT_RD)
break;
/* FALLTHROUGH */

View file

@ -824,12 +824,10 @@ tcp_usr_shutdown(struct socket *so, enum shutdown_how how)
switch (how) {
case SHUT_RD:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
break;
case SHUT_RDWR:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
/* FALLTHROUGH */
case SHUT_WR:
/*

View file

@ -1722,12 +1722,10 @@ udp_shutdown(struct socket *so, enum shutdown_how how)
switch (how) {
case SHUT_RD:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
break;
case SHUT_RDWR:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
/* FALLTHROUGH */
case SHUT_WR:
socantsendmore(so);

View file

@ -839,12 +839,10 @@ rip6_shutdown(struct socket *so, enum shutdown_how how)
switch (how) {
case SHUT_RD:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
break;
case SHUT_RDWR:
socantrcvmore(so);
sbrelease(so, SO_RCV);
sorflush(so);
/* FALLTHROUGH */
case SHUT_WR:
socantsendmore(so);

View file

@ -501,6 +501,7 @@ int soreceive_generic(struct socket *so, struct sockaddr **paddr,
void sorele_locked(struct socket *so);
void sodealloc(struct socket *);
int soreserve(struct socket *so, u_long sndcc, u_long rcvcc);
void sorflush(struct socket *so);
int sosend(struct socket *so, struct sockaddr *addr, struct uio *uio,
struct mbuf *top, struct mbuf *control, int flags,
struct thread *td);