xref: /freebsd/sys/kern/uipc_sockbuf.c (revision ecf723083f6d5f8b90010e9d0b0dae93c9c1780c)
1df8bae1dSRodney W. Grimes /*
2df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1988, 1990, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
7df8bae1dSRodney W. Grimes  * are met:
8df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13df8bae1dSRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
14df8bae1dSRodney W. Grimes  *    must display the following acknowledgement:
15df8bae1dSRodney W. Grimes  *	This product includes software developed by the University of
16df8bae1dSRodney W. Grimes  *	California, Berkeley and its contributors.
17df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
18df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
19df8bae1dSRodney W. Grimes  *    without specific prior written permission.
20df8bae1dSRodney W. Grimes  *
21df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
32df8bae1dSRodney W. Grimes  *
33df8bae1dSRodney W. Grimes  *	@(#)uipc_socket2.c	8.1 (Berkeley) 6/10/93
34c3aac50fSPeter Wemm  * $FreeBSD$
35df8bae1dSRodney W. Grimes  */
36df8bae1dSRodney W. Grimes 
37134c934cSMike Smith #include "opt_param.h"
38df8bae1dSRodney W. Grimes #include <sys/param.h>
39df8bae1dSRodney W. Grimes #include <sys/systm.h>
4098271db4SGarrett Wollman #include <sys/domain.h>
41134c934cSMike Smith #include <sys/file.h>	/* for maxfiles */
42ff5c09daSGarrett Wollman #include <sys/kernel.h>
43df8bae1dSRodney W. Grimes #include <sys/proc.h>
44df8bae1dSRodney W. Grimes #include <sys/malloc.h>
45df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
46df8bae1dSRodney W. Grimes #include <sys/protosw.h>
472f9a2132SBrian Feldman #include <sys/resourcevar.h>
48797f2d22SPoul-Henning Kamp #include <sys/stat.h>
49df8bae1dSRodney W. Grimes #include <sys/socket.h>
50df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
51797f2d22SPoul-Henning Kamp #include <sys/signalvar.h>
52ff5c09daSGarrett Wollman #include <sys/sysctl.h>
5326f9a767SRodney W. Grimes 
54134c934cSMike Smith int	maxsockets;
55134c934cSMike Smith 
56df8bae1dSRodney W. Grimes /*
57df8bae1dSRodney W. Grimes  * Primitive routines for operating on sockets and socket buffers
58df8bae1dSRodney W. Grimes  */
59df8bae1dSRodney W. Grimes 
60ff5c09daSGarrett Wollman u_long	sb_max = SB_MAX;		/* XXX should be static */
61df8bae1dSRodney W. Grimes 
624b29bc4fSGarrett Wollman static	u_long sb_efficiency = 8;	/* parameter for sbreserve() */
634b29bc4fSGarrett Wollman 
64df8bae1dSRodney W. Grimes /*
65df8bae1dSRodney W. Grimes  * Procedures to manipulate state flags of socket
66df8bae1dSRodney W. Grimes  * and do appropriate wakeups.  Normal sequence from the
67df8bae1dSRodney W. Grimes  * active (originating) side is that soisconnecting() is
68df8bae1dSRodney W. Grimes  * called during processing of connect() call,
69df8bae1dSRodney W. Grimes  * resulting in an eventual call to soisconnected() if/when the
70df8bae1dSRodney W. Grimes  * connection is established.  When the connection is torn down
71df8bae1dSRodney W. Grimes  * soisdisconnecting() is called during processing of disconnect() call,
72df8bae1dSRodney W. Grimes  * and soisdisconnected() is called when the connection to the peer
73df8bae1dSRodney W. Grimes  * is totally severed.  The semantics of these routines are such that
74df8bae1dSRodney W. Grimes  * connectionless protocols can call soisconnected() and soisdisconnected()
75df8bae1dSRodney W. Grimes  * only, bypassing the in-progress calls when setting up a ``connection''
76df8bae1dSRodney W. Grimes  * takes no time.
77df8bae1dSRodney W. Grimes  *
78df8bae1dSRodney W. Grimes  * From the passive side, a socket is created with
79dc97381eSPeter Wemm  * two queues of sockets: so_incomp for connections in progress
80dc97381eSPeter Wemm  * and so_comp for connections already made and awaiting user acceptance.
81df8bae1dSRodney W. Grimes  * As a protocol is preparing incoming connections, it creates a socket
82dc97381eSPeter Wemm  * structure queued on so_incomp by calling sonewconn().  When the connection
83df8bae1dSRodney W. Grimes  * is established, soisconnected() is called, and transfers the
84dc97381eSPeter Wemm  * socket structure to so_comp, making it available to accept().
85df8bae1dSRodney W. Grimes  *
86df8bae1dSRodney W. Grimes  * If a socket is closed with sockets on either
87dc97381eSPeter Wemm  * so_incomp or so_comp, these sockets are dropped.
88df8bae1dSRodney W. Grimes  *
89df8bae1dSRodney W. Grimes  * If higher level protocols are implemented in
90df8bae1dSRodney W. Grimes  * the kernel, the wakeups done here will sometimes
91df8bae1dSRodney W. Grimes  * cause software-interrupt process scheduling.
92df8bae1dSRodney W. Grimes  */
93df8bae1dSRodney W. Grimes 
9426f9a767SRodney W. Grimes void
95df8bae1dSRodney W. Grimes soisconnecting(so)
96df8bae1dSRodney W. Grimes 	register struct socket *so;
97df8bae1dSRodney W. Grimes {
98df8bae1dSRodney W. Grimes 
99df8bae1dSRodney W. Grimes 	so->so_state &= ~(SS_ISCONNECTED|SS_ISDISCONNECTING);
100df8bae1dSRodney W. Grimes 	so->so_state |= SS_ISCONNECTING;
101df8bae1dSRodney W. Grimes }
102df8bae1dSRodney W. Grimes 
10326f9a767SRodney W. Grimes void
104df8bae1dSRodney W. Grimes soisconnected(so)
105df8bae1dSRodney W. Grimes 	register struct socket *so;
106df8bae1dSRodney W. Grimes {
107df8bae1dSRodney W. Grimes 	register struct socket *head = so->so_head;
108df8bae1dSRodney W. Grimes 
109df8bae1dSRodney W. Grimes 	so->so_state &= ~(SS_ISCONNECTING|SS_ISDISCONNECTING|SS_ISCONFIRMING);
110df8bae1dSRodney W. Grimes 	so->so_state |= SS_ISCONNECTED;
111be24e9e8SDavid Greenman 	if (head && (so->so_state & SS_INCOMP)) {
112be24e9e8SDavid Greenman 		TAILQ_REMOVE(&head->so_incomp, so, so_list);
113a51764a8SPaul Traina 		head->so_incqlen--;
114be24e9e8SDavid Greenman 		so->so_state &= ~SS_INCOMP;
115be24e9e8SDavid Greenman 		TAILQ_INSERT_TAIL(&head->so_comp, so, so_list);
116be24e9e8SDavid Greenman 		so->so_state |= SS_COMP;
117df8bae1dSRodney W. Grimes 		sorwakeup(head);
118a91b8721SDavid Greenman 		wakeup_one(&head->so_timeo);
119df8bae1dSRodney W. Grimes 	} else {
120a91b8721SDavid Greenman 		wakeup(&so->so_timeo);
121df8bae1dSRodney W. Grimes 		sorwakeup(so);
122df8bae1dSRodney W. Grimes 		sowwakeup(so);
123df8bae1dSRodney W. Grimes 	}
124df8bae1dSRodney W. Grimes }
125df8bae1dSRodney W. Grimes 
12626f9a767SRodney W. Grimes void
127df8bae1dSRodney W. Grimes soisdisconnecting(so)
128df8bae1dSRodney W. Grimes 	register struct socket *so;
129df8bae1dSRodney W. Grimes {
130df8bae1dSRodney W. Grimes 
131df8bae1dSRodney W. Grimes 	so->so_state &= ~SS_ISCONNECTING;
132df8bae1dSRodney W. Grimes 	so->so_state |= (SS_ISDISCONNECTING|SS_CANTRCVMORE|SS_CANTSENDMORE);
133df8bae1dSRodney W. Grimes 	wakeup((caddr_t)&so->so_timeo);
134df8bae1dSRodney W. Grimes 	sowwakeup(so);
135df8bae1dSRodney W. Grimes 	sorwakeup(so);
136df8bae1dSRodney W. Grimes }
137df8bae1dSRodney W. Grimes 
13826f9a767SRodney W. Grimes void
139df8bae1dSRodney W. Grimes soisdisconnected(so)
140df8bae1dSRodney W. Grimes 	register struct socket *so;
141df8bae1dSRodney W. Grimes {
142df8bae1dSRodney W. Grimes 
143df8bae1dSRodney W. Grimes 	so->so_state &= ~(SS_ISCONNECTING|SS_ISCONNECTED|SS_ISDISCONNECTING);
144527b7a14SBill Fenner 	so->so_state |= (SS_CANTRCVMORE|SS_CANTSENDMORE|SS_ISDISCONNECTED);
145df8bae1dSRodney W. Grimes 	wakeup((caddr_t)&so->so_timeo);
146df8bae1dSRodney W. Grimes 	sowwakeup(so);
147df8bae1dSRodney W. Grimes 	sorwakeup(so);
148df8bae1dSRodney W. Grimes }
149df8bae1dSRodney W. Grimes 
150df8bae1dSRodney W. Grimes /*
151ebb0cbeaSPaul Traina  * Return a random connection that hasn't been serviced yet and
152a51764a8SPaul Traina  * is eligible for discard.  There is a one in qlen chance that
153a51764a8SPaul Traina  * we will return a null, saying that there are no dropable
154a51764a8SPaul Traina  * requests.  In this case, the protocol specific code should drop
155a51764a8SPaul Traina  * the new request.  This insures fairness.
156ebb0cbeaSPaul Traina  *
157ebb0cbeaSPaul Traina  * This may be used in conjunction with protocol specific queue
158ebb0cbeaSPaul Traina  * congestion routines.
159ebb0cbeaSPaul Traina  */
160ebb0cbeaSPaul Traina struct socket *
161ebb0cbeaSPaul Traina sodropablereq(head)
162ebb0cbeaSPaul Traina 	register struct socket *head;
163ebb0cbeaSPaul Traina {
164ebb0cbeaSPaul Traina 	register struct socket *so;
165ebb0cbeaSPaul Traina 	unsigned int i, j, qlen;
166ebb0cbeaSPaul Traina 	static int rnd;
16700af9731SPoul-Henning Kamp 	static struct timeval old_runtime;
168ebb0cbeaSPaul Traina 	static unsigned int cur_cnt, old_cnt;
16900af9731SPoul-Henning Kamp 	struct timeval tv;
170ebb0cbeaSPaul Traina 
171c21410e1SPoul-Henning Kamp 	getmicrouptime(&tv);
17200af9731SPoul-Henning Kamp 	if ((i = (tv.tv_sec - old_runtime.tv_sec)) != 0) {
17300af9731SPoul-Henning Kamp 		old_runtime = tv;
174ebb0cbeaSPaul Traina 		old_cnt = cur_cnt / i;
175ebb0cbeaSPaul Traina 		cur_cnt = 0;
176ebb0cbeaSPaul Traina 	}
177ebb0cbeaSPaul Traina 
178a51764a8SPaul Traina 	so = TAILQ_FIRST(&head->so_incomp);
179a51764a8SPaul Traina 	if (!so)
180a51764a8SPaul Traina 		return (so);
181a51764a8SPaul Traina 
182a51764a8SPaul Traina 	qlen = head->so_incqlen;
183ebb0cbeaSPaul Traina 	if (++cur_cnt > qlen || old_cnt > qlen) {
184ebb0cbeaSPaul Traina 		rnd = (314159 * rnd + 66329) & 0xffff;
185ebb0cbeaSPaul Traina 		j = ((qlen + 1) * rnd) >> 16;
186ebb0cbeaSPaul Traina 
187ebb0cbeaSPaul Traina 		while (j-- && so)
188ebb0cbeaSPaul Traina 		    so = TAILQ_NEXT(so, so_list);
189ebb0cbeaSPaul Traina 	}
190ebb0cbeaSPaul Traina 
191ebb0cbeaSPaul Traina 	return (so);
192ebb0cbeaSPaul Traina }
193ebb0cbeaSPaul Traina 
194ebb0cbeaSPaul Traina /*
195df8bae1dSRodney W. Grimes  * When an attempt at a new connection is noted on a socket
196df8bae1dSRodney W. Grimes  * which accepts connections, sonewconn is called.  If the
197df8bae1dSRodney W. Grimes  * connection is possible (subject to space constraints, etc.)
198df8bae1dSRodney W. Grimes  * then we allocate a new structure, propoerly linked into the
199df8bae1dSRodney W. Grimes  * data structure of the original socket, and return this.
200df8bae1dSRodney W. Grimes  * Connstatus may be 0, or SO_ISCONFIRMING, or SO_ISCONNECTED.
201df8bae1dSRodney W. Grimes  */
202df8bae1dSRodney W. Grimes struct socket *
203548af278SBill Fenner sonewconn(head, connstatus)
204df8bae1dSRodney W. Grimes 	register struct socket *head;
205df8bae1dSRodney W. Grimes 	int connstatus;
206df8bae1dSRodney W. Grimes {
2072f9a2132SBrian Feldman 
2082f9a2132SBrian Feldman 	return (sonewconn3(head, connstatus, NULL));
2092f9a2132SBrian Feldman }
2102f9a2132SBrian Feldman 
2112f9a2132SBrian Feldman struct socket *
2122f9a2132SBrian Feldman sonewconn3(head, connstatus, p)
2132f9a2132SBrian Feldman 	register struct socket *head;
2142f9a2132SBrian Feldman 	int connstatus;
2152f9a2132SBrian Feldman 	struct proc *p;
2162f9a2132SBrian Feldman {
217df8bae1dSRodney W. Grimes 	register struct socket *so;
218df8bae1dSRodney W. Grimes 
219ebb0cbeaSPaul Traina 	if (head->so_qlen > 3 * head->so_qlimit / 2)
220df8bae1dSRodney W. Grimes 		return ((struct socket *)0);
22198271db4SGarrett Wollman 	so = soalloc(0);
222df8bae1dSRodney W. Grimes 	if (so == NULL)
223df8bae1dSRodney W. Grimes 		return ((struct socket *)0);
224be24e9e8SDavid Greenman 	so->so_head = head;
225df8bae1dSRodney W. Grimes 	so->so_type = head->so_type;
226df8bae1dSRodney W. Grimes 	so->so_options = head->so_options &~ SO_ACCEPTCONN;
227df8bae1dSRodney W. Grimes 	so->so_linger = head->so_linger;
228df8bae1dSRodney W. Grimes 	so->so_state = head->so_state | SS_NOFDREF;
229df8bae1dSRodney W. Grimes 	so->so_proto = head->so_proto;
230df8bae1dSRodney W. Grimes 	so->so_timeo = head->so_timeo;
2312f9a2132SBrian Feldman 	so->so_cred = p ? p->p_ucred : head->so_cred;
2322f9a2132SBrian Feldman 	crhold(so->so_cred);
2332f9a2132SBrian Feldman 	if (soreserve(so, head->so_snd.sb_hiwat, head->so_rcv.sb_hiwat) ||
2342f9a2132SBrian Feldman 	    (*so->so_proto->pr_usrreqs->pru_attach)(so, 0, NULL)) {
23598271db4SGarrett Wollman 		sodealloc(so);
236b1396a35SGarrett Wollman 		return ((struct socket *)0);
237b1396a35SGarrett Wollman 	}
238b1396a35SGarrett Wollman 
239be24e9e8SDavid Greenman 	if (connstatus) {
240be24e9e8SDavid Greenman 		TAILQ_INSERT_TAIL(&head->so_comp, so, so_list);
241be24e9e8SDavid Greenman 		so->so_state |= SS_COMP;
242be24e9e8SDavid Greenman 	} else {
243be24e9e8SDavid Greenman 		TAILQ_INSERT_TAIL(&head->so_incomp, so, so_list);
244be24e9e8SDavid Greenman 		so->so_state |= SS_INCOMP;
245ebb0cbeaSPaul Traina 		head->so_incqlen++;
246be24e9e8SDavid Greenman 	}
247be24e9e8SDavid Greenman 	head->so_qlen++;
248df8bae1dSRodney W. Grimes 	if (connstatus) {
249df8bae1dSRodney W. Grimes 		sorwakeup(head);
250df8bae1dSRodney W. Grimes 		wakeup((caddr_t)&head->so_timeo);
251df8bae1dSRodney W. Grimes 		so->so_state |= connstatus;
252df8bae1dSRodney W. Grimes 	}
253df8bae1dSRodney W. Grimes 	return (so);
254df8bae1dSRodney W. Grimes }
255df8bae1dSRodney W. Grimes 
256df8bae1dSRodney W. Grimes /*
257df8bae1dSRodney W. Grimes  * Socantsendmore indicates that no more data will be sent on the
258df8bae1dSRodney W. Grimes  * socket; it would normally be applied to a socket when the user
259df8bae1dSRodney W. Grimes  * informs the system that no more data is to be sent, by the protocol
260df8bae1dSRodney W. Grimes  * code (in case PRU_SHUTDOWN).  Socantrcvmore indicates that no more data
261df8bae1dSRodney W. Grimes  * will be received, and will normally be applied to the socket by a
262df8bae1dSRodney W. Grimes  * protocol when it detects that the peer will send no more data.
263df8bae1dSRodney W. Grimes  * Data queued for reading in the socket may yet be read.
264df8bae1dSRodney W. Grimes  */
265df8bae1dSRodney W. Grimes 
26626f9a767SRodney W. Grimes void
267df8bae1dSRodney W. Grimes socantsendmore(so)
268df8bae1dSRodney W. Grimes 	struct socket *so;
269df8bae1dSRodney W. Grimes {
270df8bae1dSRodney W. Grimes 
271df8bae1dSRodney W. Grimes 	so->so_state |= SS_CANTSENDMORE;
272df8bae1dSRodney W. Grimes 	sowwakeup(so);
273df8bae1dSRodney W. Grimes }
274df8bae1dSRodney W. Grimes 
27526f9a767SRodney W. Grimes void
276df8bae1dSRodney W. Grimes socantrcvmore(so)
277df8bae1dSRodney W. Grimes 	struct socket *so;
278df8bae1dSRodney W. Grimes {
279df8bae1dSRodney W. Grimes 
280df8bae1dSRodney W. Grimes 	so->so_state |= SS_CANTRCVMORE;
281df8bae1dSRodney W. Grimes 	sorwakeup(so);
282df8bae1dSRodney W. Grimes }
283df8bae1dSRodney W. Grimes 
284df8bae1dSRodney W. Grimes /*
285df8bae1dSRodney W. Grimes  * Wait for data to arrive at/drain from a socket buffer.
286df8bae1dSRodney W. Grimes  */
28726f9a767SRodney W. Grimes int
288df8bae1dSRodney W. Grimes sbwait(sb)
289df8bae1dSRodney W. Grimes 	struct sockbuf *sb;
290df8bae1dSRodney W. Grimes {
291df8bae1dSRodney W. Grimes 
292df8bae1dSRodney W. Grimes 	sb->sb_flags |= SB_WAIT;
293df8bae1dSRodney W. Grimes 	return (tsleep((caddr_t)&sb->sb_cc,
29447daf5d5SBruce Evans 	    (sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK | PCATCH, "sbwait",
295df8bae1dSRodney W. Grimes 	    sb->sb_timeo));
296df8bae1dSRodney W. Grimes }
297df8bae1dSRodney W. Grimes 
298df8bae1dSRodney W. Grimes /*
299df8bae1dSRodney W. Grimes  * Lock a sockbuf already known to be locked;
300df8bae1dSRodney W. Grimes  * return any error returned from sleep (EINTR).
301df8bae1dSRodney W. Grimes  */
30226f9a767SRodney W. Grimes int
303df8bae1dSRodney W. Grimes sb_lock(sb)
304df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
305df8bae1dSRodney W. Grimes {
306df8bae1dSRodney W. Grimes 	int error;
307df8bae1dSRodney W. Grimes 
308df8bae1dSRodney W. Grimes 	while (sb->sb_flags & SB_LOCK) {
309df8bae1dSRodney W. Grimes 		sb->sb_flags |= SB_WANT;
310797f2d22SPoul-Henning Kamp 		error = tsleep((caddr_t)&sb->sb_flags,
311df8bae1dSRodney W. Grimes 		    (sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK|PCATCH,
31247daf5d5SBruce Evans 		    "sblock", 0);
313797f2d22SPoul-Henning Kamp 		if (error)
314df8bae1dSRodney W. Grimes 			return (error);
315df8bae1dSRodney W. Grimes 	}
316df8bae1dSRodney W. Grimes 	sb->sb_flags |= SB_LOCK;
317df8bae1dSRodney W. Grimes 	return (0);
318df8bae1dSRodney W. Grimes }
319df8bae1dSRodney W. Grimes 
320df8bae1dSRodney W. Grimes /*
321df8bae1dSRodney W. Grimes  * Wakeup processes waiting on a socket buffer.
322df8bae1dSRodney W. Grimes  * Do asynchronous notification via SIGIO
323df8bae1dSRodney W. Grimes  * if the socket has the SS_ASYNC flag set.
324df8bae1dSRodney W. Grimes  */
32526f9a767SRodney W. Grimes void
326df8bae1dSRodney W. Grimes sowakeup(so, sb)
327df8bae1dSRodney W. Grimes 	register struct socket *so;
328df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
329df8bae1dSRodney W. Grimes {
330df8bae1dSRodney W. Grimes 	selwakeup(&sb->sb_sel);
331df8bae1dSRodney W. Grimes 	sb->sb_flags &= ~SB_SEL;
332df8bae1dSRodney W. Grimes 	if (sb->sb_flags & SB_WAIT) {
333df8bae1dSRodney W. Grimes 		sb->sb_flags &= ~SB_WAIT;
334df8bae1dSRodney W. Grimes 		wakeup((caddr_t)&sb->sb_cc);
335df8bae1dSRodney W. Grimes 	}
336831d27a9SDon Lewis 	if ((so->so_state & SS_ASYNC) && so->so_sigio != NULL)
337831d27a9SDon Lewis 		pgsigio(so->so_sigio, SIGIO, 0);
3384dc75870SPeter Wemm 	if (sb->sb_flags & SB_UPCALL)
3394dc75870SPeter Wemm 		(*so->so_upcall)(so, so->so_upcallarg, M_DONTWAIT);
340df8bae1dSRodney W. Grimes }
341df8bae1dSRodney W. Grimes 
342df8bae1dSRodney W. Grimes /*
343df8bae1dSRodney W. Grimes  * Socket buffer (struct sockbuf) utility routines.
344df8bae1dSRodney W. Grimes  *
345df8bae1dSRodney W. Grimes  * Each socket contains two socket buffers: one for sending data and
346df8bae1dSRodney W. Grimes  * one for receiving data.  Each buffer contains a queue of mbufs,
347df8bae1dSRodney W. Grimes  * information about the number of mbufs and amount of data in the
348df8bae1dSRodney W. Grimes  * queue, and other fields allowing select() statements and notification
349df8bae1dSRodney W. Grimes  * on data availability to be implemented.
350df8bae1dSRodney W. Grimes  *
351df8bae1dSRodney W. Grimes  * Data stored in a socket buffer is maintained as a list of records.
352df8bae1dSRodney W. Grimes  * Each record is a list of mbufs chained together with the m_next
353df8bae1dSRodney W. Grimes  * field.  Records are chained together with the m_nextpkt field. The upper
354df8bae1dSRodney W. Grimes  * level routine soreceive() expects the following conventions to be
355df8bae1dSRodney W. Grimes  * observed when placing information in the receive buffer:
356df8bae1dSRodney W. Grimes  *
357df8bae1dSRodney W. Grimes  * 1. If the protocol requires each message be preceded by the sender's
358df8bae1dSRodney W. Grimes  *    name, then a record containing that name must be present before
359df8bae1dSRodney W. Grimes  *    any associated data (mbuf's must be of type MT_SONAME).
360df8bae1dSRodney W. Grimes  * 2. If the protocol supports the exchange of ``access rights'' (really
361df8bae1dSRodney W. Grimes  *    just additional data associated with the message), and there are
362df8bae1dSRodney W. Grimes  *    ``rights'' to be received, then a record containing this data
363df8bae1dSRodney W. Grimes  *    should be present (mbuf's must be of type MT_RIGHTS).
364df8bae1dSRodney W. Grimes  * 3. If a name or rights record exists, then it must be followed by
365df8bae1dSRodney W. Grimes  *    a data record, perhaps of zero length.
366df8bae1dSRodney W. Grimes  *
367df8bae1dSRodney W. Grimes  * Before using a new socket structure it is first necessary to reserve
368df8bae1dSRodney W. Grimes  * buffer space to the socket, by calling sbreserve().  This should commit
369df8bae1dSRodney W. Grimes  * some of the available buffer space in the system buffer pool for the
370df8bae1dSRodney W. Grimes  * socket (currently, it does nothing but enforce limits).  The space
371df8bae1dSRodney W. Grimes  * should be released by calling sbrelease() when the socket is destroyed.
372df8bae1dSRodney W. Grimes  */
373df8bae1dSRodney W. Grimes 
37426f9a767SRodney W. Grimes int
375df8bae1dSRodney W. Grimes soreserve(so, sndcc, rcvcc)
376df8bae1dSRodney W. Grimes 	register struct socket *so;
377df8bae1dSRodney W. Grimes 	u_long sndcc, rcvcc;
378df8bae1dSRodney W. Grimes {
379ecf72308SBrian Feldman 	struct proc *p = curproc;
380df8bae1dSRodney W. Grimes 
381ecf72308SBrian Feldman 	if (sbreserve(&so->so_snd, sndcc, so, p) == 0)
382df8bae1dSRodney W. Grimes 		goto bad;
383ecf72308SBrian Feldman 	if (sbreserve(&so->so_rcv, rcvcc, so, p) == 0)
384df8bae1dSRodney W. Grimes 		goto bad2;
385df8bae1dSRodney W. Grimes 	if (so->so_rcv.sb_lowat == 0)
386df8bae1dSRodney W. Grimes 		so->so_rcv.sb_lowat = 1;
387df8bae1dSRodney W. Grimes 	if (so->so_snd.sb_lowat == 0)
388df8bae1dSRodney W. Grimes 		so->so_snd.sb_lowat = MCLBYTES;
389df8bae1dSRodney W. Grimes 	if (so->so_snd.sb_lowat > so->so_snd.sb_hiwat)
390df8bae1dSRodney W. Grimes 		so->so_snd.sb_lowat = so->so_snd.sb_hiwat;
391df8bae1dSRodney W. Grimes 	return (0);
392df8bae1dSRodney W. Grimes bad2:
393ecf72308SBrian Feldman 	sbrelease(&so->so_snd, so);
394df8bae1dSRodney W. Grimes bad:
395df8bae1dSRodney W. Grimes 	return (ENOBUFS);
396df8bae1dSRodney W. Grimes }
397df8bae1dSRodney W. Grimes 
398df8bae1dSRodney W. Grimes /*
399df8bae1dSRodney W. Grimes  * Allot mbufs to a sockbuf.
400df8bae1dSRodney W. Grimes  * Attempt to scale mbmax so that mbcnt doesn't become limiting
401df8bae1dSRodney W. Grimes  * if buffering efficiency is near the normal case.
402df8bae1dSRodney W. Grimes  */
40326f9a767SRodney W. Grimes int
404ecf72308SBrian Feldman sbreserve(sb, cc, so, p)
405df8bae1dSRodney W. Grimes 	struct sockbuf *sb;
406df8bae1dSRodney W. Grimes 	u_long cc;
407ecf72308SBrian Feldman 	struct socket *so;
408ecf72308SBrian Feldman 	struct proc *p;
409df8bae1dSRodney W. Grimes {
410ecf72308SBrian Feldman 	rlim_t delta;
411ecf72308SBrian Feldman 
412ecf72308SBrian Feldman 	/*
413ecf72308SBrian Feldman 	 * p will only be NULL when we're in an interrupt
414ecf72308SBrian Feldman 	 * (e.g. in tcp_input())
415ecf72308SBrian Feldman 	 */
4165bee01c8SGarrett Wollman 	if ((u_quad_t)cc > (u_quad_t)sb_max * MCLBYTES / (MSIZE + MCLBYTES))
417df8bae1dSRodney W. Grimes 		return (0);
418ecf72308SBrian Feldman 	delta = (rlim_t)cc - sb->sb_hiwat;
419ecf72308SBrian Feldman 	if (p && delta >= 0 && chgsbsize(so->so_cred->cr_uid, 0) + delta >
420ecf72308SBrian Feldman 	    p->p_rlimit[RLIMIT_SBSIZE].rlim_cur)
421ecf72308SBrian Feldman 		return (0);
422ecf72308SBrian Feldman 	(void)chgsbsize(so->so_cred->cr_uid, delta);
423df8bae1dSRodney W. Grimes 	sb->sb_hiwat = cc;
4244b29bc4fSGarrett Wollman 	sb->sb_mbmax = min(cc * sb_efficiency, sb_max);
425df8bae1dSRodney W. Grimes 	if (sb->sb_lowat > sb->sb_hiwat)
426df8bae1dSRodney W. Grimes 		sb->sb_lowat = sb->sb_hiwat;
427df8bae1dSRodney W. Grimes 	return (1);
428df8bae1dSRodney W. Grimes }
429df8bae1dSRodney W. Grimes 
430df8bae1dSRodney W. Grimes /*
431df8bae1dSRodney W. Grimes  * Free mbufs held by a socket, and reserved mbuf space.
432df8bae1dSRodney W. Grimes  */
43326f9a767SRodney W. Grimes void
434ecf72308SBrian Feldman sbrelease(sb, so)
435df8bae1dSRodney W. Grimes 	struct sockbuf *sb;
436ecf72308SBrian Feldman 	struct socket *so;
437df8bae1dSRodney W. Grimes {
438df8bae1dSRodney W. Grimes 
439df8bae1dSRodney W. Grimes 	sbflush(sb);
440ecf72308SBrian Feldman 	(void)chgsbsize(so->so_cred->cr_uid, -(rlim_t)sb->sb_hiwat);
441df8bae1dSRodney W. Grimes 	sb->sb_hiwat = sb->sb_mbmax = 0;
442df8bae1dSRodney W. Grimes }
443df8bae1dSRodney W. Grimes 
444df8bae1dSRodney W. Grimes /*
445df8bae1dSRodney W. Grimes  * Routines to add and remove
446df8bae1dSRodney W. Grimes  * data from an mbuf queue.
447df8bae1dSRodney W. Grimes  *
448df8bae1dSRodney W. Grimes  * The routines sbappend() or sbappendrecord() are normally called to
449df8bae1dSRodney W. Grimes  * append new mbufs to a socket buffer, after checking that adequate
450df8bae1dSRodney W. Grimes  * space is available, comparing the function sbspace() with the amount
451df8bae1dSRodney W. Grimes  * of data to be added.  sbappendrecord() differs from sbappend() in
452df8bae1dSRodney W. Grimes  * that data supplied is treated as the beginning of a new record.
453df8bae1dSRodney W. Grimes  * To place a sender's address, optional access rights, and data in a
454df8bae1dSRodney W. Grimes  * socket receive buffer, sbappendaddr() should be used.  To place
455df8bae1dSRodney W. Grimes  * access rights and data in a socket receive buffer, sbappendrights()
456df8bae1dSRodney W. Grimes  * should be used.  In either case, the new data begins a new record.
457df8bae1dSRodney W. Grimes  * Note that unlike sbappend() and sbappendrecord(), these routines check
458df8bae1dSRodney W. Grimes  * for the caller that there will be enough space to store the data.
459df8bae1dSRodney W. Grimes  * Each fails if there is not enough space, or if it cannot find mbufs
460df8bae1dSRodney W. Grimes  * to store additional information in.
461df8bae1dSRodney W. Grimes  *
462df8bae1dSRodney W. Grimes  * Reliable protocols may use the socket send buffer to hold data
463df8bae1dSRodney W. Grimes  * awaiting acknowledgement.  Data is normally copied from a socket
464df8bae1dSRodney W. Grimes  * send buffer in a protocol with m_copy for output to a peer,
465df8bae1dSRodney W. Grimes  * and then removing the data from the socket buffer with sbdrop()
466df8bae1dSRodney W. Grimes  * or sbdroprecord() when the data is acknowledged by the peer.
467df8bae1dSRodney W. Grimes  */
468df8bae1dSRodney W. Grimes 
469df8bae1dSRodney W. Grimes /*
470df8bae1dSRodney W. Grimes  * Append mbuf chain m to the last record in the
471df8bae1dSRodney W. Grimes  * socket buffer sb.  The additional space associated
472df8bae1dSRodney W. Grimes  * the mbuf chain is recorded in sb.  Empty mbufs are
473df8bae1dSRodney W. Grimes  * discarded and mbufs are compacted where possible.
474df8bae1dSRodney W. Grimes  */
47526f9a767SRodney W. Grimes void
476df8bae1dSRodney W. Grimes sbappend(sb, m)
477df8bae1dSRodney W. Grimes 	struct sockbuf *sb;
478df8bae1dSRodney W. Grimes 	struct mbuf *m;
479df8bae1dSRodney W. Grimes {
480df8bae1dSRodney W. Grimes 	register struct mbuf *n;
481df8bae1dSRodney W. Grimes 
482df8bae1dSRodney W. Grimes 	if (m == 0)
483df8bae1dSRodney W. Grimes 		return;
484797f2d22SPoul-Henning Kamp 	n = sb->sb_mb;
485797f2d22SPoul-Henning Kamp 	if (n) {
486df8bae1dSRodney W. Grimes 		while (n->m_nextpkt)
487df8bae1dSRodney W. Grimes 			n = n->m_nextpkt;
488df8bae1dSRodney W. Grimes 		do {
489df8bae1dSRodney W. Grimes 			if (n->m_flags & M_EOR) {
490df8bae1dSRodney W. Grimes 				sbappendrecord(sb, m); /* XXXXXX!!!! */
491df8bae1dSRodney W. Grimes 				return;
492df8bae1dSRodney W. Grimes 			}
493df8bae1dSRodney W. Grimes 		} while (n->m_next && (n = n->m_next));
494df8bae1dSRodney W. Grimes 	}
495df8bae1dSRodney W. Grimes 	sbcompress(sb, m, n);
496df8bae1dSRodney W. Grimes }
497df8bae1dSRodney W. Grimes 
498df8bae1dSRodney W. Grimes #ifdef SOCKBUF_DEBUG
49926f9a767SRodney W. Grimes void
500df8bae1dSRodney W. Grimes sbcheck(sb)
501df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
502df8bae1dSRodney W. Grimes {
503df8bae1dSRodney W. Grimes 	register struct mbuf *m;
5040931333fSBill Fenner 	register struct mbuf *n = 0;
5050931333fSBill Fenner 	register u_long len = 0, mbcnt = 0;
506df8bae1dSRodney W. Grimes 
5070931333fSBill Fenner 	for (m = sb->sb_mb; m; m = n) {
5080931333fSBill Fenner 	    n = m->m_nextpkt;
5090931333fSBill Fenner 	    for (; m; m = m->m_next) {
510df8bae1dSRodney W. Grimes 		len += m->m_len;
511df8bae1dSRodney W. Grimes 		mbcnt += MSIZE;
512313861b8SJulian Elischer 		if (m->m_flags & M_EXT) /*XXX*/ /* pretty sure this is bogus */
513df8bae1dSRodney W. Grimes 			mbcnt += m->m_ext.ext_size;
5140931333fSBill Fenner 	    }
515df8bae1dSRodney W. Grimes 	}
516df8bae1dSRodney W. Grimes 	if (len != sb->sb_cc || mbcnt != sb->sb_mbcnt) {
5170931333fSBill Fenner 		printf("cc %ld != %ld || mbcnt %ld != %ld\n", len, sb->sb_cc,
518df8bae1dSRodney W. Grimes 		    mbcnt, sb->sb_mbcnt);
519df8bae1dSRodney W. Grimes 		panic("sbcheck");
520df8bae1dSRodney W. Grimes 	}
521df8bae1dSRodney W. Grimes }
522df8bae1dSRodney W. Grimes #endif
523df8bae1dSRodney W. Grimes 
524df8bae1dSRodney W. Grimes /*
525df8bae1dSRodney W. Grimes  * As above, except the mbuf chain
526df8bae1dSRodney W. Grimes  * begins a new record.
527df8bae1dSRodney W. Grimes  */
52826f9a767SRodney W. Grimes void
529df8bae1dSRodney W. Grimes sbappendrecord(sb, m0)
530df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
531df8bae1dSRodney W. Grimes 	register struct mbuf *m0;
532df8bae1dSRodney W. Grimes {
533df8bae1dSRodney W. Grimes 	register struct mbuf *m;
534df8bae1dSRodney W. Grimes 
535df8bae1dSRodney W. Grimes 	if (m0 == 0)
536df8bae1dSRodney W. Grimes 		return;
537797f2d22SPoul-Henning Kamp 	m = sb->sb_mb;
538797f2d22SPoul-Henning Kamp 	if (m)
539df8bae1dSRodney W. Grimes 		while (m->m_nextpkt)
540df8bae1dSRodney W. Grimes 			m = m->m_nextpkt;
541df8bae1dSRodney W. Grimes 	/*
542df8bae1dSRodney W. Grimes 	 * Put the first mbuf on the queue.
543df8bae1dSRodney W. Grimes 	 * Note this permits zero length records.
544df8bae1dSRodney W. Grimes 	 */
545df8bae1dSRodney W. Grimes 	sballoc(sb, m0);
546df8bae1dSRodney W. Grimes 	if (m)
547df8bae1dSRodney W. Grimes 		m->m_nextpkt = m0;
548df8bae1dSRodney W. Grimes 	else
549df8bae1dSRodney W. Grimes 		sb->sb_mb = m0;
550df8bae1dSRodney W. Grimes 	m = m0->m_next;
551df8bae1dSRodney W. Grimes 	m0->m_next = 0;
552df8bae1dSRodney W. Grimes 	if (m && (m0->m_flags & M_EOR)) {
553df8bae1dSRodney W. Grimes 		m0->m_flags &= ~M_EOR;
554df8bae1dSRodney W. Grimes 		m->m_flags |= M_EOR;
555df8bae1dSRodney W. Grimes 	}
556df8bae1dSRodney W. Grimes 	sbcompress(sb, m, m0);
557df8bae1dSRodney W. Grimes }
558df8bae1dSRodney W. Grimes 
559df8bae1dSRodney W. Grimes /*
560df8bae1dSRodney W. Grimes  * As above except that OOB data
561df8bae1dSRodney W. Grimes  * is inserted at the beginning of the sockbuf,
562df8bae1dSRodney W. Grimes  * but after any other OOB data.
563df8bae1dSRodney W. Grimes  */
56426f9a767SRodney W. Grimes void
565df8bae1dSRodney W. Grimes sbinsertoob(sb, m0)
566df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
567df8bae1dSRodney W. Grimes 	register struct mbuf *m0;
568df8bae1dSRodney W. Grimes {
569df8bae1dSRodney W. Grimes 	register struct mbuf *m;
570df8bae1dSRodney W. Grimes 	register struct mbuf **mp;
571df8bae1dSRodney W. Grimes 
572df8bae1dSRodney W. Grimes 	if (m0 == 0)
573df8bae1dSRodney W. Grimes 		return;
574797f2d22SPoul-Henning Kamp 	for (mp = &sb->sb_mb; *mp ; mp = &((*mp)->m_nextpkt)) {
575797f2d22SPoul-Henning Kamp 	    m = *mp;
576df8bae1dSRodney W. Grimes 	    again:
577df8bae1dSRodney W. Grimes 		switch (m->m_type) {
578df8bae1dSRodney W. Grimes 
579df8bae1dSRodney W. Grimes 		case MT_OOBDATA:
580df8bae1dSRodney W. Grimes 			continue;		/* WANT next train */
581df8bae1dSRodney W. Grimes 
582df8bae1dSRodney W. Grimes 		case MT_CONTROL:
583797f2d22SPoul-Henning Kamp 			m = m->m_next;
584797f2d22SPoul-Henning Kamp 			if (m)
585df8bae1dSRodney W. Grimes 				goto again;	/* inspect THIS train further */
586df8bae1dSRodney W. Grimes 		}
587df8bae1dSRodney W. Grimes 		break;
588df8bae1dSRodney W. Grimes 	}
589df8bae1dSRodney W. Grimes 	/*
590df8bae1dSRodney W. Grimes 	 * Put the first mbuf on the queue.
591df8bae1dSRodney W. Grimes 	 * Note this permits zero length records.
592df8bae1dSRodney W. Grimes 	 */
593df8bae1dSRodney W. Grimes 	sballoc(sb, m0);
594df8bae1dSRodney W. Grimes 	m0->m_nextpkt = *mp;
595df8bae1dSRodney W. Grimes 	*mp = m0;
596df8bae1dSRodney W. Grimes 	m = m0->m_next;
597df8bae1dSRodney W. Grimes 	m0->m_next = 0;
598df8bae1dSRodney W. Grimes 	if (m && (m0->m_flags & M_EOR)) {
599df8bae1dSRodney W. Grimes 		m0->m_flags &= ~M_EOR;
600df8bae1dSRodney W. Grimes 		m->m_flags |= M_EOR;
601df8bae1dSRodney W. Grimes 	}
602df8bae1dSRodney W. Grimes 	sbcompress(sb, m, m0);
603df8bae1dSRodney W. Grimes }
604df8bae1dSRodney W. Grimes 
605df8bae1dSRodney W. Grimes /*
606df8bae1dSRodney W. Grimes  * Append address and data, and optionally, control (ancillary) data
607df8bae1dSRodney W. Grimes  * to the receive queue of a socket.  If present,
608df8bae1dSRodney W. Grimes  * m0 must include a packet header with total length.
609df8bae1dSRodney W. Grimes  * Returns 0 if no space in sockbuf or insufficient mbufs.
610df8bae1dSRodney W. Grimes  */
61126f9a767SRodney W. Grimes int
612df8bae1dSRodney W. Grimes sbappendaddr(sb, asa, m0, control)
613df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
614df8bae1dSRodney W. Grimes 	struct sockaddr *asa;
615df8bae1dSRodney W. Grimes 	struct mbuf *m0, *control;
616df8bae1dSRodney W. Grimes {
617df8bae1dSRodney W. Grimes 	register struct mbuf *m, *n;
618df8bae1dSRodney W. Grimes 	int space = asa->sa_len;
619df8bae1dSRodney W. Grimes 
620df8bae1dSRodney W. Grimes if (m0 && (m0->m_flags & M_PKTHDR) == 0)
621df8bae1dSRodney W. Grimes panic("sbappendaddr");
622df8bae1dSRodney W. Grimes 	if (m0)
623df8bae1dSRodney W. Grimes 		space += m0->m_pkthdr.len;
624df8bae1dSRodney W. Grimes 	for (n = control; n; n = n->m_next) {
625df8bae1dSRodney W. Grimes 		space += n->m_len;
626df8bae1dSRodney W. Grimes 		if (n->m_next == 0)	/* keep pointer to last control buf */
627df8bae1dSRodney W. Grimes 			break;
628df8bae1dSRodney W. Grimes 	}
629df8bae1dSRodney W. Grimes 	if (space > sbspace(sb))
630df8bae1dSRodney W. Grimes 		return (0);
631df8bae1dSRodney W. Grimes 	if (asa->sa_len > MLEN)
632df8bae1dSRodney W. Grimes 		return (0);
633df8bae1dSRodney W. Grimes 	MGET(m, M_DONTWAIT, MT_SONAME);
634df8bae1dSRodney W. Grimes 	if (m == 0)
635df8bae1dSRodney W. Grimes 		return (0);
636df8bae1dSRodney W. Grimes 	m->m_len = asa->sa_len;
637df8bae1dSRodney W. Grimes 	bcopy((caddr_t)asa, mtod(m, caddr_t), asa->sa_len);
638df8bae1dSRodney W. Grimes 	if (n)
639df8bae1dSRodney W. Grimes 		n->m_next = m0;		/* concatenate data to control */
640df8bae1dSRodney W. Grimes 	else
641df8bae1dSRodney W. Grimes 		control = m0;
642df8bae1dSRodney W. Grimes 	m->m_next = control;
643df8bae1dSRodney W. Grimes 	for (n = m; n; n = n->m_next)
644df8bae1dSRodney W. Grimes 		sballoc(sb, n);
645797f2d22SPoul-Henning Kamp 	n = sb->sb_mb;
646797f2d22SPoul-Henning Kamp 	if (n) {
647df8bae1dSRodney W. Grimes 		while (n->m_nextpkt)
648df8bae1dSRodney W. Grimes 			n = n->m_nextpkt;
649df8bae1dSRodney W. Grimes 		n->m_nextpkt = m;
650df8bae1dSRodney W. Grimes 	} else
651df8bae1dSRodney W. Grimes 		sb->sb_mb = m;
652df8bae1dSRodney W. Grimes 	return (1);
653df8bae1dSRodney W. Grimes }
654df8bae1dSRodney W. Grimes 
65526f9a767SRodney W. Grimes int
656df8bae1dSRodney W. Grimes sbappendcontrol(sb, m0, control)
657df8bae1dSRodney W. Grimes 	struct sockbuf *sb;
658df8bae1dSRodney W. Grimes 	struct mbuf *control, *m0;
659df8bae1dSRodney W. Grimes {
660df8bae1dSRodney W. Grimes 	register struct mbuf *m, *n;
661df8bae1dSRodney W. Grimes 	int space = 0;
662df8bae1dSRodney W. Grimes 
663df8bae1dSRodney W. Grimes 	if (control == 0)
664df8bae1dSRodney W. Grimes 		panic("sbappendcontrol");
665df8bae1dSRodney W. Grimes 	for (m = control; ; m = m->m_next) {
666df8bae1dSRodney W. Grimes 		space += m->m_len;
667df8bae1dSRodney W. Grimes 		if (m->m_next == 0)
668df8bae1dSRodney W. Grimes 			break;
669df8bae1dSRodney W. Grimes 	}
670df8bae1dSRodney W. Grimes 	n = m;			/* save pointer to last control buffer */
671df8bae1dSRodney W. Grimes 	for (m = m0; m; m = m->m_next)
672df8bae1dSRodney W. Grimes 		space += m->m_len;
673df8bae1dSRodney W. Grimes 	if (space > sbspace(sb))
674df8bae1dSRodney W. Grimes 		return (0);
675df8bae1dSRodney W. Grimes 	n->m_next = m0;			/* concatenate data to control */
676df8bae1dSRodney W. Grimes 	for (m = control; m; m = m->m_next)
677df8bae1dSRodney W. Grimes 		sballoc(sb, m);
678797f2d22SPoul-Henning Kamp 	n = sb->sb_mb;
679797f2d22SPoul-Henning Kamp 	if (n) {
680df8bae1dSRodney W. Grimes 		while (n->m_nextpkt)
681df8bae1dSRodney W. Grimes 			n = n->m_nextpkt;
682df8bae1dSRodney W. Grimes 		n->m_nextpkt = control;
683df8bae1dSRodney W. Grimes 	} else
684df8bae1dSRodney W. Grimes 		sb->sb_mb = control;
685df8bae1dSRodney W. Grimes 	return (1);
686df8bae1dSRodney W. Grimes }
687df8bae1dSRodney W. Grimes 
688df8bae1dSRodney W. Grimes /*
689df8bae1dSRodney W. Grimes  * Compress mbuf chain m into the socket
690df8bae1dSRodney W. Grimes  * buffer sb following mbuf n.  If n
691df8bae1dSRodney W. Grimes  * is null, the buffer is presumed empty.
692df8bae1dSRodney W. Grimes  */
69326f9a767SRodney W. Grimes void
694df8bae1dSRodney W. Grimes sbcompress(sb, m, n)
695df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
696df8bae1dSRodney W. Grimes 	register struct mbuf *m, *n;
697df8bae1dSRodney W. Grimes {
698df8bae1dSRodney W. Grimes 	register int eor = 0;
699df8bae1dSRodney W. Grimes 	register struct mbuf *o;
700df8bae1dSRodney W. Grimes 
701df8bae1dSRodney W. Grimes 	while (m) {
702df8bae1dSRodney W. Grimes 		eor |= m->m_flags & M_EOR;
703df8bae1dSRodney W. Grimes 		if (m->m_len == 0 &&
704df8bae1dSRodney W. Grimes 		    (eor == 0 ||
705df8bae1dSRodney W. Grimes 		     (((o = m->m_next) || (o = n)) &&
706df8bae1dSRodney W. Grimes 		      o->m_type == m->m_type))) {
707df8bae1dSRodney W. Grimes 			m = m_free(m);
708df8bae1dSRodney W. Grimes 			continue;
709df8bae1dSRodney W. Grimes 		}
710df8bae1dSRodney W. Grimes 		if (n && (n->m_flags & (M_EXT | M_EOR)) == 0 &&
711df8bae1dSRodney W. Grimes 		    (n->m_data + n->m_len + m->m_len) < &n->m_dat[MLEN] &&
712df8bae1dSRodney W. Grimes 		    n->m_type == m->m_type) {
713df8bae1dSRodney W. Grimes 			bcopy(mtod(m, caddr_t), mtod(n, caddr_t) + n->m_len,
714df8bae1dSRodney W. Grimes 			    (unsigned)m->m_len);
715df8bae1dSRodney W. Grimes 			n->m_len += m->m_len;
716df8bae1dSRodney W. Grimes 			sb->sb_cc += m->m_len;
717df8bae1dSRodney W. Grimes 			m = m_free(m);
718df8bae1dSRodney W. Grimes 			continue;
719df8bae1dSRodney W. Grimes 		}
720df8bae1dSRodney W. Grimes 		if (n)
721df8bae1dSRodney W. Grimes 			n->m_next = m;
722df8bae1dSRodney W. Grimes 		else
723df8bae1dSRodney W. Grimes 			sb->sb_mb = m;
724df8bae1dSRodney W. Grimes 		sballoc(sb, m);
725df8bae1dSRodney W. Grimes 		n = m;
726df8bae1dSRodney W. Grimes 		m->m_flags &= ~M_EOR;
727df8bae1dSRodney W. Grimes 		m = m->m_next;
728df8bae1dSRodney W. Grimes 		n->m_next = 0;
729df8bae1dSRodney W. Grimes 	}
730df8bae1dSRodney W. Grimes 	if (eor) {
731df8bae1dSRodney W. Grimes 		if (n)
732df8bae1dSRodney W. Grimes 			n->m_flags |= eor;
733df8bae1dSRodney W. Grimes 		else
734df8bae1dSRodney W. Grimes 			printf("semi-panic: sbcompress\n");
735df8bae1dSRodney W. Grimes 	}
736df8bae1dSRodney W. Grimes }
737df8bae1dSRodney W. Grimes 
738df8bae1dSRodney W. Grimes /*
739df8bae1dSRodney W. Grimes  * Free all mbufs in a sockbuf.
740df8bae1dSRodney W. Grimes  * Check that all resources are reclaimed.
741df8bae1dSRodney W. Grimes  */
74226f9a767SRodney W. Grimes void
743df8bae1dSRodney W. Grimes sbflush(sb)
744df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
745df8bae1dSRodney W. Grimes {
746df8bae1dSRodney W. Grimes 
747df8bae1dSRodney W. Grimes 	if (sb->sb_flags & SB_LOCK)
748253ab668SAndrey A. Chernov 		panic("sbflush: locked");
74923f84772SPierre Beyssac 	while (sb->sb_mbcnt) {
75023f84772SPierre Beyssac 		/*
75123f84772SPierre Beyssac 		 * Don't call sbdrop(sb, 0) if the leading mbuf is non-empty:
75223f84772SPierre Beyssac 		 * we would loop forever. Panic instead.
75323f84772SPierre Beyssac 		 */
75423f84772SPierre Beyssac 		if (!sb->sb_cc && (sb->sb_mb == NULL || sb->sb_mb->m_len))
75523f84772SPierre Beyssac 			break;
756df8bae1dSRodney W. Grimes 		sbdrop(sb, (int)sb->sb_cc);
75723f84772SPierre Beyssac 	}
7580931333fSBill Fenner 	if (sb->sb_cc || sb->sb_mb || sb->sb_mbcnt)
7590931333fSBill Fenner 		panic("sbflush: cc %ld || mb %p || mbcnt %ld", sb->sb_cc, (void *)sb->sb_mb, sb->sb_mbcnt);
760df8bae1dSRodney W. Grimes }
761df8bae1dSRodney W. Grimes 
762df8bae1dSRodney W. Grimes /*
763df8bae1dSRodney W. Grimes  * Drop data from (the front of) a sockbuf.
764df8bae1dSRodney W. Grimes  */
76526f9a767SRodney W. Grimes void
766df8bae1dSRodney W. Grimes sbdrop(sb, len)
767df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
768df8bae1dSRodney W. Grimes 	register int len;
769df8bae1dSRodney W. Grimes {
770df8bae1dSRodney W. Grimes 	register struct mbuf *m, *mn;
771df8bae1dSRodney W. Grimes 	struct mbuf *next;
772df8bae1dSRodney W. Grimes 
773df8bae1dSRodney W. Grimes 	next = (m = sb->sb_mb) ? m->m_nextpkt : 0;
774df8bae1dSRodney W. Grimes 	while (len > 0) {
775df8bae1dSRodney W. Grimes 		if (m == 0) {
776df8bae1dSRodney W. Grimes 			if (next == 0)
777df8bae1dSRodney W. Grimes 				panic("sbdrop");
778df8bae1dSRodney W. Grimes 			m = next;
779df8bae1dSRodney W. Grimes 			next = m->m_nextpkt;
780df8bae1dSRodney W. Grimes 			continue;
781df8bae1dSRodney W. Grimes 		}
782df8bae1dSRodney W. Grimes 		if (m->m_len > len) {
783df8bae1dSRodney W. Grimes 			m->m_len -= len;
784df8bae1dSRodney W. Grimes 			m->m_data += len;
785df8bae1dSRodney W. Grimes 			sb->sb_cc -= len;
786df8bae1dSRodney W. Grimes 			break;
787df8bae1dSRodney W. Grimes 		}
788df8bae1dSRodney W. Grimes 		len -= m->m_len;
789df8bae1dSRodney W. Grimes 		sbfree(sb, m);
790df8bae1dSRodney W. Grimes 		MFREE(m, mn);
791df8bae1dSRodney W. Grimes 		m = mn;
792df8bae1dSRodney W. Grimes 	}
793df8bae1dSRodney W. Grimes 	while (m && m->m_len == 0) {
794df8bae1dSRodney W. Grimes 		sbfree(sb, m);
795df8bae1dSRodney W. Grimes 		MFREE(m, mn);
796df8bae1dSRodney W. Grimes 		m = mn;
797df8bae1dSRodney W. Grimes 	}
798df8bae1dSRodney W. Grimes 	if (m) {
799df8bae1dSRodney W. Grimes 		sb->sb_mb = m;
800df8bae1dSRodney W. Grimes 		m->m_nextpkt = next;
801df8bae1dSRodney W. Grimes 	} else
802df8bae1dSRodney W. Grimes 		sb->sb_mb = next;
803df8bae1dSRodney W. Grimes }
804df8bae1dSRodney W. Grimes 
805df8bae1dSRodney W. Grimes /*
806df8bae1dSRodney W. Grimes  * Drop a record off the front of a sockbuf
807df8bae1dSRodney W. Grimes  * and move the next record to the front.
808df8bae1dSRodney W. Grimes  */
80926f9a767SRodney W. Grimes void
810df8bae1dSRodney W. Grimes sbdroprecord(sb)
811df8bae1dSRodney W. Grimes 	register struct sockbuf *sb;
812df8bae1dSRodney W. Grimes {
813df8bae1dSRodney W. Grimes 	register struct mbuf *m, *mn;
814df8bae1dSRodney W. Grimes 
815df8bae1dSRodney W. Grimes 	m = sb->sb_mb;
816df8bae1dSRodney W. Grimes 	if (m) {
817df8bae1dSRodney W. Grimes 		sb->sb_mb = m->m_nextpkt;
818df8bae1dSRodney W. Grimes 		do {
819df8bae1dSRodney W. Grimes 			sbfree(sb, m);
820df8bae1dSRodney W. Grimes 			MFREE(m, mn);
821797f2d22SPoul-Henning Kamp 			m = mn;
822797f2d22SPoul-Henning Kamp 		} while (m);
823df8bae1dSRodney W. Grimes 	}
824df8bae1dSRodney W. Grimes }
8251e4ad9ceSGarrett Wollman 
82682c23ebaSBill Fenner /*
82782c23ebaSBill Fenner  * Create a "control" mbuf containing the specified data
82882c23ebaSBill Fenner  * with the specified type for presentation on a socket buffer.
82982c23ebaSBill Fenner  */
83082c23ebaSBill Fenner struct mbuf *
83182c23ebaSBill Fenner sbcreatecontrol(p, size, type, level)
83282c23ebaSBill Fenner 	caddr_t p;
83382c23ebaSBill Fenner 	register int size;
83482c23ebaSBill Fenner 	int type, level;
83582c23ebaSBill Fenner {
83682c23ebaSBill Fenner 	register struct cmsghdr *cp;
83782c23ebaSBill Fenner 	struct mbuf *m;
83882c23ebaSBill Fenner 
83982c23ebaSBill Fenner 	if ((m = m_get(M_DONTWAIT, MT_CONTROL)) == NULL)
84082c23ebaSBill Fenner 		return ((struct mbuf *) NULL);
84182c23ebaSBill Fenner 	cp = mtod(m, struct cmsghdr *);
84282c23ebaSBill Fenner 	/* XXX check size? */
84382c23ebaSBill Fenner 	(void)memcpy(CMSG_DATA(cp), p, size);
84482c23ebaSBill Fenner 	size += sizeof(*cp);
84582c23ebaSBill Fenner 	m->m_len = size;
84682c23ebaSBill Fenner 	cp->cmsg_len = size;
84782c23ebaSBill Fenner 	cp->cmsg_level = level;
84882c23ebaSBill Fenner 	cp->cmsg_type = type;
84982c23ebaSBill Fenner 	return (m);
85082c23ebaSBill Fenner }
85182c23ebaSBill Fenner 
8521e4ad9ceSGarrett Wollman /*
8532c37256eSGarrett Wollman  * Some routines that return EOPNOTSUPP for entry points that are not
8542c37256eSGarrett Wollman  * supported by a protocol.  Fill in as needed.
8551e4ad9ceSGarrett Wollman  */
8561e4ad9ceSGarrett Wollman int
85757bf258eSGarrett Wollman pru_accept_notsupp(struct socket *so, struct sockaddr **nam)
858d8392c6cSGarrett Wollman {
859d8392c6cSGarrett Wollman 	return EOPNOTSUPP;
860d8392c6cSGarrett Wollman }
861d8392c6cSGarrett Wollman 
862d8392c6cSGarrett Wollman int
86357bf258eSGarrett Wollman pru_connect_notsupp(struct socket *so, struct sockaddr *nam, struct proc *p)
8649f907986SPeter Wemm {
8659f907986SPeter Wemm 	return EOPNOTSUPP;
8669f907986SPeter Wemm }
8679f907986SPeter Wemm 
8689f907986SPeter Wemm int
8692c37256eSGarrett Wollman pru_connect2_notsupp(struct socket *so1, struct socket *so2)
8701e4ad9ceSGarrett Wollman {
8712c37256eSGarrett Wollman 	return EOPNOTSUPP;
8721e4ad9ceSGarrett Wollman }
873d8392c6cSGarrett Wollman 
874d8392c6cSGarrett Wollman int
875ecbb00a2SDoug Rabson pru_control_notsupp(struct socket *so, u_long cmd, caddr_t data,
876a29f300eSGarrett Wollman 		    struct ifnet *ifp, struct proc *p)
877a29f300eSGarrett Wollman {
878a29f300eSGarrett Wollman 	return EOPNOTSUPP;
879a29f300eSGarrett Wollman }
880a29f300eSGarrett Wollman 
881a29f300eSGarrett Wollman int
882a29f300eSGarrett Wollman pru_listen_notsupp(struct socket *so, struct proc *p)
883d8392c6cSGarrett Wollman {
884d8392c6cSGarrett Wollman 	return EOPNOTSUPP;
885d8392c6cSGarrett Wollman }
886d8392c6cSGarrett Wollman 
887d8392c6cSGarrett Wollman int
888d8392c6cSGarrett Wollman pru_rcvd_notsupp(struct socket *so, int flags)
889d8392c6cSGarrett Wollman {
890d8392c6cSGarrett Wollman 	return EOPNOTSUPP;
891d8392c6cSGarrett Wollman }
892d8392c6cSGarrett Wollman 
893d8392c6cSGarrett Wollman int
894d8392c6cSGarrett Wollman pru_rcvoob_notsupp(struct socket *so, struct mbuf *m, int flags)
895d8392c6cSGarrett Wollman {
896d8392c6cSGarrett Wollman 	return EOPNOTSUPP;
897d8392c6cSGarrett Wollman }
898d8392c6cSGarrett Wollman 
899d8392c6cSGarrett Wollman /*
900d8392c6cSGarrett Wollman  * This isn't really a ``null'' operation, but it's the default one
901d8392c6cSGarrett Wollman  * and doesn't do anything destructive.
902d8392c6cSGarrett Wollman  */
903d8392c6cSGarrett Wollman int
904d8392c6cSGarrett Wollman pru_sense_null(struct socket *so, struct stat *sb)
905d8392c6cSGarrett Wollman {
906d8392c6cSGarrett Wollman 	sb->st_blksize = so->so_snd.sb_hiwat;
907d8392c6cSGarrett Wollman 	return 0;
908d8392c6cSGarrett Wollman }
909639acc13SGarrett Wollman 
910639acc13SGarrett Wollman /*
91157bf258eSGarrett Wollman  * Make a copy of a sockaddr in a malloced buffer of type M_SONAME.
91257bf258eSGarrett Wollman  */
91357bf258eSGarrett Wollman struct sockaddr *
91457bf258eSGarrett Wollman dup_sockaddr(sa, canwait)
91557bf258eSGarrett Wollman 	struct sockaddr *sa;
91657bf258eSGarrett Wollman 	int canwait;
91757bf258eSGarrett Wollman {
91857bf258eSGarrett Wollman 	struct sockaddr *sa2;
91957bf258eSGarrett Wollman 
92057bf258eSGarrett Wollman 	MALLOC(sa2, struct sockaddr *, sa->sa_len, M_SONAME,
92157bf258eSGarrett Wollman 	       canwait ? M_WAITOK : M_NOWAIT);
92257bf258eSGarrett Wollman 	if (sa2)
92357bf258eSGarrett Wollman 		bcopy(sa, sa2, sa->sa_len);
92457bf258eSGarrett Wollman 	return sa2;
92557bf258eSGarrett Wollman }
92657bf258eSGarrett Wollman 
92757bf258eSGarrett Wollman /*
92898271db4SGarrett Wollman  * Create an external-format (``xsocket'') structure using the information
92998271db4SGarrett Wollman  * in the kernel-format socket structure pointed to by so.  This is done
93098271db4SGarrett Wollman  * to reduce the spew of irrelevant information over this interface,
93198271db4SGarrett Wollman  * to isolate user code from changes in the kernel structure, and
93298271db4SGarrett Wollman  * potentially to provide information-hiding if we decide that
93398271db4SGarrett Wollman  * some of this information should be hidden from users.
93498271db4SGarrett Wollman  */
93598271db4SGarrett Wollman void
93698271db4SGarrett Wollman sotoxsocket(struct socket *so, struct xsocket *xso)
93798271db4SGarrett Wollman {
93898271db4SGarrett Wollman 	xso->xso_len = sizeof *xso;
93998271db4SGarrett Wollman 	xso->xso_so = so;
94098271db4SGarrett Wollman 	xso->so_type = so->so_type;
94198271db4SGarrett Wollman 	xso->so_options = so->so_options;
94298271db4SGarrett Wollman 	xso->so_linger = so->so_linger;
94398271db4SGarrett Wollman 	xso->so_state = so->so_state;
94498271db4SGarrett Wollman 	xso->so_pcb = so->so_pcb;
94598271db4SGarrett Wollman 	xso->xso_protocol = so->so_proto->pr_protocol;
94698271db4SGarrett Wollman 	xso->xso_family = so->so_proto->pr_domain->dom_family;
94798271db4SGarrett Wollman 	xso->so_qlen = so->so_qlen;
94898271db4SGarrett Wollman 	xso->so_incqlen = so->so_incqlen;
94998271db4SGarrett Wollman 	xso->so_qlimit = so->so_qlimit;
95098271db4SGarrett Wollman 	xso->so_timeo = so->so_timeo;
95198271db4SGarrett Wollman 	xso->so_error = so->so_error;
952831d27a9SDon Lewis 	xso->so_pgid = so->so_sigio ? so->so_sigio->sio_pgid : 0;
95398271db4SGarrett Wollman 	xso->so_oobmark = so->so_oobmark;
95498271db4SGarrett Wollman 	sbtoxsockbuf(&so->so_snd, &xso->so_snd);
95598271db4SGarrett Wollman 	sbtoxsockbuf(&so->so_rcv, &xso->so_rcv);
9562f9a2132SBrian Feldman 	xso->so_uid = so->so_cred->cr_uid;
95798271db4SGarrett Wollman }
95898271db4SGarrett Wollman 
95998271db4SGarrett Wollman /*
96098271db4SGarrett Wollman  * This does the same for sockbufs.  Note that the xsockbuf structure,
96198271db4SGarrett Wollman  * since it is always embedded in a socket, does not include a self
96298271db4SGarrett Wollman  * pointer nor a length.  We make this entry point public in case
96398271db4SGarrett Wollman  * some other mechanism needs it.
96498271db4SGarrett Wollman  */
96598271db4SGarrett Wollman void
96698271db4SGarrett Wollman sbtoxsockbuf(struct sockbuf *sb, struct xsockbuf *xsb)
96798271db4SGarrett Wollman {
96898271db4SGarrett Wollman 	xsb->sb_cc = sb->sb_cc;
96998271db4SGarrett Wollman 	xsb->sb_hiwat = sb->sb_hiwat;
97098271db4SGarrett Wollman 	xsb->sb_mbcnt = sb->sb_mbcnt;
97198271db4SGarrett Wollman 	xsb->sb_mbmax = sb->sb_mbmax;
97298271db4SGarrett Wollman 	xsb->sb_lowat = sb->sb_lowat;
97398271db4SGarrett Wollman 	xsb->sb_flags = sb->sb_flags;
97498271db4SGarrett Wollman 	xsb->sb_timeo = sb->sb_timeo;
97598271db4SGarrett Wollman }
97698271db4SGarrett Wollman 
97798271db4SGarrett Wollman /*
978639acc13SGarrett Wollman  * Here is the definition of some of the basic objects in the kern.ipc
979639acc13SGarrett Wollman  * branch of the MIB.
980639acc13SGarrett Wollman  */
981639acc13SGarrett Wollman SYSCTL_NODE(_kern, KERN_IPC, ipc, CTLFLAG_RW, 0, "IPC");
982639acc13SGarrett Wollman 
983639acc13SGarrett Wollman /* This takes the place of kern.maxsockbuf, which moved to kern.ipc. */
984639acc13SGarrett Wollman static int dummy;
985639acc13SGarrett Wollman SYSCTL_INT(_kern, KERN_DUMMY, dummy, CTLFLAG_RW, &dummy, 0, "");
986639acc13SGarrett Wollman 
9873d177f46SBill Fumerola SYSCTL_INT(_kern_ipc, KIPC_MAXSOCKBUF, maxsockbuf, CTLFLAG_RW,
9883d177f46SBill Fumerola     &sb_max, 0, "Maximum socket buffer size");
9893d177f46SBill Fumerola SYSCTL_INT(_kern_ipc, OID_AUTO, maxsockets, CTLFLAG_RD,
9903d177f46SBill Fumerola     &maxsockets, 0, "Maximum number of sockets avaliable");
991639acc13SGarrett Wollman SYSCTL_INT(_kern_ipc, KIPC_SOCKBUF_WASTE, sockbuf_waste_factor, CTLFLAG_RW,
992639acc13SGarrett Wollman     &sb_efficiency, 0, "");
99357bf258eSGarrett Wollman 
994134c934cSMike Smith /*
995134c934cSMike Smith  * Initialise maxsockets
996134c934cSMike Smith  */
997134c934cSMike Smith static void init_maxsockets(void *ignored)
998134c934cSMike Smith {
999134c934cSMike Smith     TUNABLE_INT_FETCH("kern.ipc.maxsockets", 0, maxsockets);
1000134c934cSMike Smith     maxsockets = imax(maxsockets, imax(maxfiles, nmbclusters));
1001134c934cSMike Smith }
1002134c934cSMike Smith SYSINIT(param, SI_SUB_TUNABLES, SI_ORDER_ANY, init_maxsockets, NULL);
1003