mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Assert socket buffer lock in sb_lock() to protect socket buffer sleep
lock state. Convert tsleep() into msleep() with socket buffer mutex as argument. Hold socket buffer lock over sbunlock() to protect sleep lock state. Assert socket buffer lock in sbwait() to protect the socket buffer wait state. Convert tsleep() into msleep() with socket buffer mutex as argument. Modify sofree(), sosend(), and soreceive() to acquire SOCKBUF_LOCK() in order to call into these functions with the lock, as well as to start protecting other socket buffer use in their implementation. Drop the socket buffer mutexes around calls into the protocol layer, around potentially blocking operations, for copying to/from user space, and VM operations relating to zero-copy. Assert the socket buffer mutex strategically after code sections or at the beginning of loops. In some cases, modify return code to ensure locks are properly dropped. Convert the potentially blocking allocation of storage for the remote address in soreceive() into a non-blocking allocation; we may wish to move the allocation earlier so that it can block prior to acquisition of the socket buffer lock. Drop some spl use. NOTE: Some races exist in the current structuring of sosend() and soreceive(). This commit only merges basic socket locking in this code; follow-up commits will close additional races. As merged, these changes are not sufficient to run without Giant safely. Reviewed by: juli, tjr
This commit is contained in:
parent
3e7fa136ea
commit
31f555a1c5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130705
@ -323,8 +323,10 @@ sbwait(sb)
|
|||||||
struct sockbuf *sb;
|
struct sockbuf *sb;
|
||||||
{
|
{
|
||||||
|
|
||||||
|
SOCKBUF_LOCK_ASSERT(sb);
|
||||||
|
|
||||||
sb->sb_flags |= SB_WAIT;
|
sb->sb_flags |= SB_WAIT;
|
||||||
return (tsleep(&sb->sb_cc,
|
return (msleep(&sb->sb_cc, &sb->sb_mtx,
|
||||||
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK | PCATCH, "sbwait",
|
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK | PCATCH, "sbwait",
|
||||||
sb->sb_timeo));
|
sb->sb_timeo));
|
||||||
}
|
}
|
||||||
@ -339,9 +341,11 @@ sb_lock(sb)
|
|||||||
{
|
{
|
||||||
int error;
|
int error;
|
||||||
|
|
||||||
|
SOCKBUF_LOCK_ASSERT(sb);
|
||||||
|
|
||||||
while (sb->sb_flags & SB_LOCK) {
|
while (sb->sb_flags & SB_LOCK) {
|
||||||
sb->sb_flags |= SB_WANT;
|
sb->sb_flags |= SB_WANT;
|
||||||
error = tsleep(&sb->sb_flags,
|
error = msleep(&sb->sb_flags, &sb->sb_mtx,
|
||||||
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK|PCATCH,
|
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK|PCATCH,
|
||||||
"sblock", 0);
|
"sblock", 0);
|
||||||
if (error)
|
if (error)
|
||||||
|
@ -295,7 +295,6 @@ sofree(so)
|
|||||||
struct socket *so;
|
struct socket *so;
|
||||||
{
|
{
|
||||||
struct socket *head;
|
struct socket *head;
|
||||||
int s;
|
|
||||||
|
|
||||||
KASSERT(so->so_count == 0, ("socket %p so_count not 0", so));
|
KASSERT(so->so_count == 0, ("socket %p so_count not 0", so));
|
||||||
SOCK_LOCK_ASSERT(so);
|
SOCK_LOCK_ASSERT(so);
|
||||||
@ -341,13 +340,13 @@ sofree(so)
|
|||||||
("sofree: so_head == NULL, but still SQ_COMP(%d) or SQ_INCOMP(%d)",
|
("sofree: so_head == NULL, but still SQ_COMP(%d) or SQ_INCOMP(%d)",
|
||||||
so->so_qstate & SQ_COMP, so->so_qstate & SQ_INCOMP));
|
so->so_qstate & SQ_COMP, so->so_qstate & SQ_INCOMP));
|
||||||
ACCEPT_UNLOCK();
|
ACCEPT_UNLOCK();
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
so->so_snd.sb_flags |= SB_NOINTR;
|
so->so_snd.sb_flags |= SB_NOINTR;
|
||||||
(void)sblock(&so->so_snd, M_WAITOK);
|
(void)sblock(&so->so_snd, M_WAITOK);
|
||||||
s = splimp();
|
|
||||||
socantsendmore(so);
|
socantsendmore(so);
|
||||||
splx(s);
|
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
sbrelease(&so->so_snd, so);
|
sbrelease(&so->so_snd, so);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
sorflush(so);
|
sorflush(so);
|
||||||
sodealloc(so);
|
sodealloc(so);
|
||||||
}
|
}
|
||||||
@ -597,11 +596,14 @@ sosend(so, addr, uio, top, control, flags, td)
|
|||||||
clen = control->m_len;
|
clen = control->m_len;
|
||||||
#define snderr(errno) { error = (errno); splx(s); goto release; }
|
#define snderr(errno) { error = (errno); splx(s); goto release; }
|
||||||
|
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
restart:
|
restart:
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_snd);
|
||||||
error = sblock(&so->so_snd, SBLOCKWAIT(flags));
|
error = sblock(&so->so_snd, SBLOCKWAIT(flags));
|
||||||
if (error)
|
if (error)
|
||||||
goto out;
|
goto out_locked;
|
||||||
do {
|
do {
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_snd);
|
||||||
s = splnet();
|
s = splnet();
|
||||||
if (so->so_snd.sb_state & SBS_CANTSENDMORE)
|
if (so->so_snd.sb_state & SBS_CANTSENDMORE)
|
||||||
snderr(EPIPE);
|
snderr(EPIPE);
|
||||||
@ -641,9 +643,10 @@ sosend(so, addr, uio, top, control, flags, td)
|
|||||||
error = sbwait(&so->so_snd);
|
error = sbwait(&so->so_snd);
|
||||||
splx(s);
|
splx(s);
|
||||||
if (error)
|
if (error)
|
||||||
goto out;
|
goto out_locked;
|
||||||
goto restart;
|
goto restart;
|
||||||
}
|
}
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
splx(s);
|
splx(s);
|
||||||
mp = ⊤
|
mp = ⊤
|
||||||
space -= clen;
|
space -= clen;
|
||||||
@ -665,6 +668,7 @@ sosend(so, addr, uio, top, control, flags, td)
|
|||||||
MGETHDR(m, M_TRYWAIT, MT_DATA);
|
MGETHDR(m, M_TRYWAIT, MT_DATA);
|
||||||
if (m == NULL) {
|
if (m == NULL) {
|
||||||
error = ENOBUFS;
|
error = ENOBUFS;
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
goto release;
|
goto release;
|
||||||
}
|
}
|
||||||
m->m_pkthdr.len = 0;
|
m->m_pkthdr.len = 0;
|
||||||
@ -673,6 +677,7 @@ sosend(so, addr, uio, top, control, flags, td)
|
|||||||
MGET(m, M_TRYWAIT, MT_DATA);
|
MGET(m, M_TRYWAIT, MT_DATA);
|
||||||
if (m == NULL) {
|
if (m == NULL) {
|
||||||
error = ENOBUFS;
|
error = ENOBUFS;
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
goto release;
|
goto release;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -726,6 +731,7 @@ sosend(so, addr, uio, top, control, flags, td)
|
|||||||
}
|
}
|
||||||
if (m == NULL) {
|
if (m == NULL) {
|
||||||
error = ENOBUFS;
|
error = ENOBUFS;
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
goto release;
|
goto release;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -740,8 +746,10 @@ sosend(so, addr, uio, top, control, flags, td)
|
|||||||
m->m_len = len;
|
m->m_len = len;
|
||||||
*mp = m;
|
*mp = m;
|
||||||
top->m_pkthdr.len += len;
|
top->m_pkthdr.len += len;
|
||||||
if (error)
|
if (error) {
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
goto release;
|
goto release;
|
||||||
|
}
|
||||||
mp = &m->m_next;
|
mp = &m->m_next;
|
||||||
if (resid <= 0) {
|
if (resid <= 0) {
|
||||||
if (flags & MSG_EOR)
|
if (flags & MSG_EOR)
|
||||||
@ -787,13 +795,20 @@ sosend(so, addr, uio, top, control, flags, td)
|
|||||||
control = NULL;
|
control = NULL;
|
||||||
top = NULL;
|
top = NULL;
|
||||||
mp = ⊤
|
mp = ⊤
|
||||||
if (error)
|
if (error) {
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
goto release;
|
goto release;
|
||||||
|
}
|
||||||
} while (resid && space > 0);
|
} while (resid && space > 0);
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
} while (resid);
|
} while (resid);
|
||||||
|
|
||||||
release:
|
release:
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_snd);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
out_locked:
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
out:
|
out:
|
||||||
if (top != NULL)
|
if (top != NULL)
|
||||||
m_freem(top);
|
m_freem(top);
|
||||||
@ -886,10 +901,12 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
if (so->so_state & SS_ISCONFIRMING && uio->uio_resid)
|
if (so->so_state & SS_ISCONFIRMING && uio->uio_resid)
|
||||||
(*pr->pr_usrreqs->pru_rcvd)(so, 0);
|
(*pr->pr_usrreqs->pru_rcvd)(so, 0);
|
||||||
|
|
||||||
|
SOCKBUF_LOCK(&so->so_rcv);
|
||||||
restart:
|
restart:
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
error = sblock(&so->so_rcv, SBLOCKWAIT(flags));
|
error = sblock(&so->so_rcv, SBLOCKWAIT(flags));
|
||||||
if (error)
|
if (error)
|
||||||
return (error);
|
goto out;
|
||||||
s = splnet();
|
s = splnet();
|
||||||
|
|
||||||
m = so->so_rcv.sb_mb;
|
m = so->so_rcv.sb_mb;
|
||||||
@ -949,10 +966,11 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
error = sbwait(&so->so_rcv);
|
error = sbwait(&so->so_rcv);
|
||||||
splx(s);
|
splx(s);
|
||||||
if (error)
|
if (error)
|
||||||
return (error);
|
goto out;
|
||||||
goto restart;
|
goto restart;
|
||||||
}
|
}
|
||||||
dontblock:
|
dontblock:
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
if (uio->uio_td)
|
if (uio->uio_td)
|
||||||
uio->uio_td->td_proc->p_stats->p_ru.ru_msgrcv++;
|
uio->uio_td->td_proc->p_stats->p_ru.ru_msgrcv++;
|
||||||
SBLASTRECORDCHK(&so->so_rcv);
|
SBLASTRECORDCHK(&so->so_rcv);
|
||||||
@ -964,7 +982,7 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
orig_resid = 0;
|
orig_resid = 0;
|
||||||
if (psa != NULL)
|
if (psa != NULL)
|
||||||
*psa = sodupsockaddr(mtod(m, struct sockaddr *),
|
*psa = sodupsockaddr(mtod(m, struct sockaddr *),
|
||||||
mp0 == NULL ? M_WAITOK : M_NOWAIT);
|
M_NOWAIT);
|
||||||
if (flags & MSG_PEEK) {
|
if (flags & MSG_PEEK) {
|
||||||
m = m->m_next;
|
m = m->m_next;
|
||||||
} else {
|
} else {
|
||||||
@ -982,10 +1000,12 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
sbfree(&so->so_rcv, m);
|
sbfree(&so->so_rcv, m);
|
||||||
so->so_rcv.sb_mb = m->m_next;
|
so->so_rcv.sb_mb = m->m_next;
|
||||||
m->m_next = NULL;
|
m->m_next = NULL;
|
||||||
if (pr->pr_domain->dom_externalize)
|
if (pr->pr_domain->dom_externalize) {
|
||||||
error =
|
SOCKBUF_UNLOCK(&so->so_rcv);
|
||||||
(*pr->pr_domain->dom_externalize)(m, controlp);
|
error = (*pr->pr_domain->dom_externalize)
|
||||||
else if (controlp != NULL)
|
(m, controlp);
|
||||||
|
SOCKBUF_LOCK(&so->so_rcv);
|
||||||
|
} else if (controlp != NULL)
|
||||||
*controlp = m;
|
*controlp = m;
|
||||||
else
|
else
|
||||||
m_freem(m);
|
m_freem(m);
|
||||||
@ -1021,12 +1041,14 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
SB_EMPTY_FIXUP(&so->so_rcv);
|
SB_EMPTY_FIXUP(&so->so_rcv);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
SBLASTRECORDCHK(&so->so_rcv);
|
SBLASTRECORDCHK(&so->so_rcv);
|
||||||
SBLASTMBUFCHK(&so->so_rcv);
|
SBLASTMBUFCHK(&so->so_rcv);
|
||||||
|
|
||||||
moff = 0;
|
moff = 0;
|
||||||
offset = 0;
|
offset = 0;
|
||||||
while (m != NULL && uio->uio_resid > 0 && error == 0) {
|
while (m != NULL && uio->uio_resid > 0 && error == 0) {
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
if (m->m_type == MT_OOBDATA) {
|
if (m->m_type == MT_OOBDATA) {
|
||||||
if (type != MT_OOBDATA)
|
if (type != MT_OOBDATA)
|
||||||
break;
|
break;
|
||||||
@ -1050,8 +1072,10 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
* block interrupts again.
|
* block interrupts again.
|
||||||
*/
|
*/
|
||||||
if (mp == NULL) {
|
if (mp == NULL) {
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
SBLASTRECORDCHK(&so->so_rcv);
|
SBLASTRECORDCHK(&so->so_rcv);
|
||||||
SBLASTMBUFCHK(&so->so_rcv);
|
SBLASTMBUFCHK(&so->so_rcv);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_rcv);
|
||||||
splx(s);
|
splx(s);
|
||||||
#ifdef ZERO_COPY_SOCKETS
|
#ifdef ZERO_COPY_SOCKETS
|
||||||
if (so_zero_copy_receive) {
|
if (so_zero_copy_receive) {
|
||||||
@ -1076,6 +1100,7 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
} else
|
} else
|
||||||
#endif /* ZERO_COPY_SOCKETS */
|
#endif /* ZERO_COPY_SOCKETS */
|
||||||
error = uiomove(mtod(m, char *) + moff, (int)len, uio);
|
error = uiomove(mtod(m, char *) + moff, (int)len, uio);
|
||||||
|
SOCKBUF_LOCK(&so->so_rcv);
|
||||||
s = splnet();
|
s = splnet();
|
||||||
if (error)
|
if (error)
|
||||||
goto release;
|
goto release;
|
||||||
@ -1125,6 +1150,7 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
if ((flags & MSG_PEEK) == 0) {
|
if ((flags & MSG_PEEK) == 0) {
|
||||||
so->so_oobmark -= len;
|
so->so_oobmark -= len;
|
||||||
if (so->so_oobmark == 0) {
|
if (so->so_oobmark == 0) {
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
so->so_rcv.sb_state |= SBS_RCVATMARK;
|
so->so_rcv.sb_state |= SBS_RCVATMARK;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -1145,22 +1171,23 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
*/
|
*/
|
||||||
while (flags & MSG_WAITALL && m == NULL && uio->uio_resid > 0 &&
|
while (flags & MSG_WAITALL && m == NULL && uio->uio_resid > 0 &&
|
||||||
!sosendallatonce(so) && nextrecord == NULL) {
|
!sosendallatonce(so) && nextrecord == NULL) {
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
if (so->so_error || so->so_rcv.sb_state & SBS_CANTRCVMORE)
|
if (so->so_error || so->so_rcv.sb_state & SBS_CANTRCVMORE)
|
||||||
break;
|
break;
|
||||||
/*
|
/*
|
||||||
* Notify the protocol that some data has been
|
* Notify the protocol that some data has been
|
||||||
* drained before blocking.
|
* drained before blocking.
|
||||||
*/
|
*/
|
||||||
if (pr->pr_flags & PR_WANTRCVD && so->so_pcb != NULL)
|
if (pr->pr_flags & PR_WANTRCVD && so->so_pcb != NULL) {
|
||||||
|
SOCKBUF_UNLOCK(&so->so_rcv);
|
||||||
(*pr->pr_usrreqs->pru_rcvd)(so, flags);
|
(*pr->pr_usrreqs->pru_rcvd)(so, flags);
|
||||||
|
SOCKBUF_LOCK(&so->so_rcv);
|
||||||
|
}
|
||||||
SBLASTRECORDCHK(&so->so_rcv);
|
SBLASTRECORDCHK(&so->so_rcv);
|
||||||
SBLASTMBUFCHK(&so->so_rcv);
|
SBLASTMBUFCHK(&so->so_rcv);
|
||||||
error = sbwait(&so->so_rcv);
|
error = sbwait(&so->so_rcv);
|
||||||
if (error) {
|
if (error)
|
||||||
sbunlock(&so->so_rcv);
|
goto release;
|
||||||
splx(s);
|
|
||||||
return (0);
|
|
||||||
}
|
|
||||||
m = so->so_rcv.sb_mb;
|
m = so->so_rcv.sb_mb;
|
||||||
if (m != NULL)
|
if (m != NULL)
|
||||||
nextrecord = m->m_nextpkt;
|
nextrecord = m->m_nextpkt;
|
||||||
@ -1169,8 +1196,10 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
|
|
||||||
if (m != NULL && pr->pr_flags & PR_ATOMIC) {
|
if (m != NULL && pr->pr_flags & PR_ATOMIC) {
|
||||||
flags |= MSG_TRUNC;
|
flags |= MSG_TRUNC;
|
||||||
if ((flags & MSG_PEEK) == 0)
|
if ((flags & MSG_PEEK) == 0) {
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
(void) sbdroprecord(&so->so_rcv);
|
(void) sbdroprecord(&so->so_rcv);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ((flags & MSG_PEEK) == 0) {
|
if ((flags & MSG_PEEK) == 0) {
|
||||||
if (m == NULL) {
|
if (m == NULL) {
|
||||||
@ -1188,9 +1217,13 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
}
|
}
|
||||||
SBLASTRECORDCHK(&so->so_rcv);
|
SBLASTRECORDCHK(&so->so_rcv);
|
||||||
SBLASTMBUFCHK(&so->so_rcv);
|
SBLASTMBUFCHK(&so->so_rcv);
|
||||||
if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
|
if (pr->pr_flags & PR_WANTRCVD && so->so_pcb) {
|
||||||
|
SOCKBUF_UNLOCK(&so->so_rcv);
|
||||||
(*pr->pr_usrreqs->pru_rcvd)(so, flags);
|
(*pr->pr_usrreqs->pru_rcvd)(so, flags);
|
||||||
|
SOCKBUF_LOCK(&so->so_rcv);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
if (orig_resid == uio->uio_resid && orig_resid &&
|
if (orig_resid == uio->uio_resid && orig_resid &&
|
||||||
(flags & MSG_EOR) == 0 && (so->so_rcv.sb_state & SBS_CANTRCVMORE) == 0) {
|
(flags & MSG_EOR) == 0 && (so->so_rcv.sb_state & SBS_CANTRCVMORE) == 0) {
|
||||||
sbunlock(&so->so_rcv);
|
sbunlock(&so->so_rcv);
|
||||||
@ -1201,7 +1234,10 @@ soreceive(so, psa, uio, mp0, controlp, flagsp)
|
|||||||
if (flagsp != NULL)
|
if (flagsp != NULL)
|
||||||
*flagsp |= flags;
|
*flagsp |= flags;
|
||||||
release:
|
release:
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_rcv);
|
||||||
sbunlock(&so->so_rcv);
|
sbunlock(&so->so_rcv);
|
||||||
|
out:
|
||||||
|
SOCKBUF_UNLOCK(&so->so_rcv);
|
||||||
splx(s);
|
splx(s);
|
||||||
return (error);
|
return (error);
|
||||||
}
|
}
|
||||||
@ -1229,12 +1265,11 @@ sorflush(so)
|
|||||||
{
|
{
|
||||||
struct sockbuf *sb = &so->so_rcv;
|
struct sockbuf *sb = &so->so_rcv;
|
||||||
struct protosw *pr = so->so_proto;
|
struct protosw *pr = so->so_proto;
|
||||||
int s;
|
|
||||||
struct sockbuf asb;
|
struct sockbuf asb;
|
||||||
|
|
||||||
|
SOCKBUF_LOCK(sb);
|
||||||
sb->sb_flags |= SB_NOINTR;
|
sb->sb_flags |= SB_NOINTR;
|
||||||
(void) sblock(sb, M_WAITOK);
|
(void) sblock(sb, M_WAITOK);
|
||||||
s = splimp();
|
|
||||||
socantrcvmore(so);
|
socantrcvmore(so);
|
||||||
sbunlock(sb);
|
sbunlock(sb);
|
||||||
asb = *sb;
|
asb = *sb;
|
||||||
@ -1244,7 +1279,7 @@ sorflush(so)
|
|||||||
*/
|
*/
|
||||||
bzero(&sb->sb_startzero,
|
bzero(&sb->sb_startzero,
|
||||||
sizeof(*sb) - offsetof(struct sockbuf, sb_startzero));
|
sizeof(*sb) - offsetof(struct sockbuf, sb_startzero));
|
||||||
splx(s);
|
SOCKBUF_UNLOCK(sb);
|
||||||
|
|
||||||
if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose != NULL)
|
if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose != NULL)
|
||||||
(*pr->pr_domain->dom_dispose)(asb.sb_mb);
|
(*pr->pr_domain->dom_dispose)(asb.sb_mb);
|
||||||
|
@ -323,8 +323,10 @@ sbwait(sb)
|
|||||||
struct sockbuf *sb;
|
struct sockbuf *sb;
|
||||||
{
|
{
|
||||||
|
|
||||||
|
SOCKBUF_LOCK_ASSERT(sb);
|
||||||
|
|
||||||
sb->sb_flags |= SB_WAIT;
|
sb->sb_flags |= SB_WAIT;
|
||||||
return (tsleep(&sb->sb_cc,
|
return (msleep(&sb->sb_cc, &sb->sb_mtx,
|
||||||
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK | PCATCH, "sbwait",
|
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK | PCATCH, "sbwait",
|
||||||
sb->sb_timeo));
|
sb->sb_timeo));
|
||||||
}
|
}
|
||||||
@ -339,9 +341,11 @@ sb_lock(sb)
|
|||||||
{
|
{
|
||||||
int error;
|
int error;
|
||||||
|
|
||||||
|
SOCKBUF_LOCK_ASSERT(sb);
|
||||||
|
|
||||||
while (sb->sb_flags & SB_LOCK) {
|
while (sb->sb_flags & SB_LOCK) {
|
||||||
sb->sb_flags |= SB_WANT;
|
sb->sb_flags |= SB_WANT;
|
||||||
error = tsleep(&sb->sb_flags,
|
error = msleep(&sb->sb_flags, &sb->sb_mtx,
|
||||||
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK|PCATCH,
|
(sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK|PCATCH,
|
||||||
"sblock", 0);
|
"sblock", 0);
|
||||||
if (error)
|
if (error)
|
||||||
|
@ -1801,7 +1801,9 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
/*
|
/*
|
||||||
* Protect against multiple writers to the socket.
|
* Protect against multiple writers to the socket.
|
||||||
*/
|
*/
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
(void) sblock(&so->so_snd, M_WAITOK);
|
(void) sblock(&so->so_snd, M_WAITOK);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Loop through the pages in the file, starting with the requested
|
* Loop through the pages in the file, starting with the requested
|
||||||
@ -1841,14 +1843,17 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
* Optimize the non-blocking case by looking at the socket space
|
* Optimize the non-blocking case by looking at the socket space
|
||||||
* before going to the extra work of constituting the sf_buf.
|
* before going to the extra work of constituting the sf_buf.
|
||||||
*/
|
*/
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
if ((so->so_state & SS_NBIO) && sbspace(&so->so_snd) <= 0) {
|
if ((so->so_state & SS_NBIO) && sbspace(&so->so_snd) <= 0) {
|
||||||
if (so->so_snd.sb_state & SBS_CANTSENDMORE)
|
if (so->so_snd.sb_state & SBS_CANTSENDMORE)
|
||||||
error = EPIPE;
|
error = EPIPE;
|
||||||
else
|
else
|
||||||
error = EAGAIN;
|
error = EAGAIN;
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
VM_OBJECT_LOCK(obj);
|
VM_OBJECT_LOCK(obj);
|
||||||
/*
|
/*
|
||||||
* Attempt to look up the page.
|
* Attempt to look up the page.
|
||||||
@ -1936,7 +1941,9 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
}
|
}
|
||||||
vm_page_unlock_queues();
|
vm_page_unlock_queues();
|
||||||
VM_OBJECT_UNLOCK(obj);
|
VM_OBJECT_UNLOCK(obj);
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
vm_page_unlock_queues();
|
vm_page_unlock_queues();
|
||||||
@ -1952,7 +1959,9 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
if (pg->wire_count == 0 && pg->object == NULL)
|
if (pg->wire_count == 0 && pg->object == NULL)
|
||||||
vm_page_free(pg);
|
vm_page_free(pg);
|
||||||
vm_page_unlock_queues();
|
vm_page_unlock_queues();
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
error = EINTR;
|
error = EINTR;
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
@ -1967,7 +1976,9 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
if (m == NULL) {
|
if (m == NULL) {
|
||||||
error = ENOBUFS;
|
error = ENOBUFS;
|
||||||
sf_buf_mext((void *)sf_buf_kva(sf), sf);
|
sf_buf_mext((void *)sf_buf_kva(sf), sf);
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
@ -1989,6 +2000,7 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
* Add the buffer to the socket buffer chain.
|
* Add the buffer to the socket buffer chain.
|
||||||
*/
|
*/
|
||||||
s = splnet();
|
s = splnet();
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
retry_space:
|
retry_space:
|
||||||
/*
|
/*
|
||||||
* Make sure that the socket is still able to take more data.
|
* Make sure that the socket is still able to take more data.
|
||||||
@ -2001,6 +2013,7 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
* blocks before the pru_send (or more accurately, any blocking
|
* blocks before the pru_send (or more accurately, any blocking
|
||||||
* results in a loop back to here to re-check).
|
* results in a loop back to here to re-check).
|
||||||
*/
|
*/
|
||||||
|
SOCKBUF_LOCK_ASSERT(&so->so_snd);
|
||||||
if ((so->so_snd.sb_state & SBS_CANTSENDMORE) || so->so_error) {
|
if ((so->so_snd.sb_state & SBS_CANTSENDMORE) || so->so_error) {
|
||||||
if (so->so_snd.sb_state & SBS_CANTSENDMORE) {
|
if (so->so_snd.sb_state & SBS_CANTSENDMORE) {
|
||||||
error = EPIPE;
|
error = EPIPE;
|
||||||
@ -2010,6 +2023,7 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
}
|
}
|
||||||
m_freem(m);
|
m_freem(m);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
splx(s);
|
splx(s);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
@ -2022,6 +2036,7 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
if (so->so_state & SS_NBIO) {
|
if (so->so_state & SS_NBIO) {
|
||||||
m_freem(m);
|
m_freem(m);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
splx(s);
|
splx(s);
|
||||||
error = EAGAIN;
|
error = EAGAIN;
|
||||||
goto done;
|
goto done;
|
||||||
@ -2035,20 +2050,26 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
|
|||||||
if (error) {
|
if (error) {
|
||||||
m_freem(m);
|
m_freem(m);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
splx(s);
|
splx(s);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
goto retry_space;
|
goto retry_space;
|
||||||
}
|
}
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
error = (*so->so_proto->pr_usrreqs->pru_send)(so, 0, m, 0, 0, td);
|
error = (*so->so_proto->pr_usrreqs->pru_send)(so, 0, m, 0, 0, td);
|
||||||
splx(s);
|
splx(s);
|
||||||
if (error) {
|
if (error) {
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
headersent = 1;
|
headersent = 1;
|
||||||
}
|
}
|
||||||
|
SOCKBUF_LOCK(&so->so_snd);
|
||||||
sbunlock(&so->so_snd);
|
sbunlock(&so->so_snd);
|
||||||
|
SOCKBUF_UNLOCK(&so->so_snd);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Send trailers. Wimp out and use writev(2).
|
* Send trailers. Wimp out and use writev(2).
|
||||||
|
Loading…
Reference in New Issue
Block a user