Home | History | Annotate | Line # | Download | only in kern
uipc_socket2.c revision 1.54
      1  1.54       agc /*	$NetBSD: uipc_socket2.c,v 1.54 2003/08/07 16:31:59 agc Exp $	*/
      2   1.9       cgd 
      3   1.1       cgd /*
      4   1.7   mycroft  * Copyright (c) 1982, 1986, 1988, 1990, 1993
      5   1.7   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.54       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  *
     31  1.23      fvdl  *	@(#)uipc_socket2.c	8.2 (Berkeley) 2/14/95
     32   1.1       cgd  */
     33  1.42     lukem 
     34  1.42     lukem #include <sys/cdefs.h>
     35  1.54       agc __KERNEL_RCSID(0, "$NetBSD: uipc_socket2.c,v 1.54 2003/08/07 16:31:59 agc Exp $");
     36  1.51    martin 
     37  1.51    martin #include "opt_mbuftrace.h"
     38   1.1       cgd 
     39   1.5   mycroft #include <sys/param.h>
     40   1.5   mycroft #include <sys/systm.h>
     41   1.5   mycroft #include <sys/proc.h>
     42   1.5   mycroft #include <sys/file.h>
     43   1.5   mycroft #include <sys/buf.h>
     44   1.5   mycroft #include <sys/malloc.h>
     45   1.5   mycroft #include <sys/mbuf.h>
     46   1.5   mycroft #include <sys/protosw.h>
     47   1.5   mycroft #include <sys/socket.h>
     48   1.5   mycroft #include <sys/socketvar.h>
     49  1.11  christos #include <sys/signalvar.h>
     50   1.1       cgd 
     51   1.1       cgd /*
     52   1.1       cgd  * Primitive routines for operating on sockets and socket buffers
     53   1.1       cgd  */
     54   1.1       cgd 
     55   1.1       cgd /* strings for sleep message: */
     56  1.21   mycroft const char	netcon[] = "netcon";
     57  1.21   mycroft const char	netcls[] = "netcls";
     58  1.41     enami const char	netio[] = "netio";
     59  1.41     enami const char	netlck[] = "netlck";
     60   1.1       cgd 
     61   1.1       cgd /*
     62   1.1       cgd  * Procedures to manipulate state flags of socket
     63   1.1       cgd  * and do appropriate wakeups.  Normal sequence from the
     64   1.1       cgd  * active (originating) side is that soisconnecting() is
     65   1.1       cgd  * called during processing of connect() call,
     66   1.1       cgd  * resulting in an eventual call to soisconnected() if/when the
     67   1.1       cgd  * connection is established.  When the connection is torn down
     68   1.1       cgd  * soisdisconnecting() is called during processing of disconnect() call,
     69   1.1       cgd  * and soisdisconnected() is called when the connection to the peer
     70   1.1       cgd  * is totally severed.  The semantics of these routines are such that
     71   1.1       cgd  * connectionless protocols can call soisconnected() and soisdisconnected()
     72   1.1       cgd  * only, bypassing the in-progress calls when setting up a ``connection''
     73   1.1       cgd  * takes no time.
     74   1.1       cgd  *
     75   1.1       cgd  * From the passive side, a socket is created with
     76   1.1       cgd  * two queues of sockets: so_q0 for connections in progress
     77   1.1       cgd  * and so_q for connections already made and awaiting user acceptance.
     78   1.1       cgd  * As a protocol is preparing incoming connections, it creates a socket
     79   1.1       cgd  * structure queued on so_q0 by calling sonewconn().  When the connection
     80   1.1       cgd  * is established, soisconnected() is called, and transfers the
     81   1.1       cgd  * socket structure to so_q, making it available to accept().
     82   1.1       cgd  *
     83   1.1       cgd  * If a socket is closed with sockets on either
     84   1.1       cgd  * so_q0 or so_q, these sockets are dropped.
     85   1.1       cgd  *
     86   1.1       cgd  * If higher level protocols are implemented in
     87   1.1       cgd  * the kernel, the wakeups done here will sometimes
     88   1.1       cgd  * cause software-interrupt process scheduling.
     89   1.1       cgd  */
     90   1.1       cgd 
     91   1.7   mycroft void
     92  1.37     lukem soisconnecting(struct socket *so)
     93   1.1       cgd {
     94   1.1       cgd 
     95   1.1       cgd 	so->so_state &= ~(SS_ISCONNECTED|SS_ISDISCONNECTING);
     96   1.1       cgd 	so->so_state |= SS_ISCONNECTING;
     97   1.1       cgd }
     98   1.1       cgd 
     99   1.7   mycroft void
    100  1.37     lukem soisconnected(struct socket *so)
    101   1.1       cgd {
    102  1.37     lukem 	struct socket	*head;
    103   1.1       cgd 
    104  1.37     lukem 	head = so->so_head;
    105   1.1       cgd 	so->so_state &= ~(SS_ISCONNECTING|SS_ISDISCONNECTING|SS_ISCONFIRMING);
    106   1.1       cgd 	so->so_state |= SS_ISCONNECTED;
    107   1.1       cgd 	if (head && soqremque(so, 0)) {
    108   1.1       cgd 		soqinsque(head, so, 1);
    109   1.1       cgd 		sorwakeup(head);
    110   1.1       cgd 		wakeup((caddr_t)&head->so_timeo);
    111   1.1       cgd 	} else {
    112   1.1       cgd 		wakeup((caddr_t)&so->so_timeo);
    113   1.1       cgd 		sorwakeup(so);
    114   1.1       cgd 		sowwakeup(so);
    115   1.1       cgd 	}
    116   1.1       cgd }
    117   1.1       cgd 
    118   1.7   mycroft void
    119  1.37     lukem soisdisconnecting(struct socket *so)
    120   1.1       cgd {
    121   1.1       cgd 
    122   1.1       cgd 	so->so_state &= ~SS_ISCONNECTING;
    123   1.1       cgd 	so->so_state |= (SS_ISDISCONNECTING|SS_CANTRCVMORE|SS_CANTSENDMORE);
    124   1.1       cgd 	wakeup((caddr_t)&so->so_timeo);
    125   1.1       cgd 	sowwakeup(so);
    126   1.1       cgd 	sorwakeup(so);
    127   1.1       cgd }
    128   1.1       cgd 
    129   1.7   mycroft void
    130  1.37     lukem soisdisconnected(struct socket *so)
    131   1.1       cgd {
    132   1.1       cgd 
    133   1.1       cgd 	so->so_state &= ~(SS_ISCONNECTING|SS_ISCONNECTED|SS_ISDISCONNECTING);
    134  1.27   mycroft 	so->so_state |= (SS_CANTRCVMORE|SS_CANTSENDMORE|SS_ISDISCONNECTED);
    135   1.1       cgd 	wakeup((caddr_t)&so->so_timeo);
    136   1.1       cgd 	sowwakeup(so);
    137   1.1       cgd 	sorwakeup(so);
    138   1.1       cgd }
    139   1.1       cgd 
    140   1.1       cgd /*
    141   1.1       cgd  * When an attempt at a new connection is noted on a socket
    142   1.1       cgd  * which accepts connections, sonewconn is called.  If the
    143   1.1       cgd  * connection is possible (subject to space constraints, etc.)
    144   1.1       cgd  * then we allocate a new structure, propoerly linked into the
    145   1.1       cgd  * data structure of the original socket, and return this.
    146   1.1       cgd  * Connstatus may be 0, or SO_ISCONFIRMING, or SO_ISCONNECTED.
    147   1.1       cgd  *
    148   1.1       cgd  * Currently, sonewconn() is defined as sonewconn1() in socketvar.h
    149   1.1       cgd  * to catch calls that are missing the (new) second parameter.
    150   1.1       cgd  */
    151   1.1       cgd struct socket *
    152  1.37     lukem sonewconn1(struct socket *head, int connstatus)
    153   1.1       cgd {
    154  1.37     lukem 	struct socket	*so;
    155  1.37     lukem 	int		soqueue;
    156   1.1       cgd 
    157  1.37     lukem 	soqueue = connstatus ? 1 : 0;
    158   1.1       cgd 	if (head->so_qlen + head->so_q0len > 3 * head->so_qlimit / 2)
    159   1.1       cgd 		return ((struct socket *)0);
    160  1.25   thorpej 	so = pool_get(&socket_pool, PR_NOWAIT);
    161   1.1       cgd 	if (so == NULL)
    162  1.25   thorpej 		return (NULL);
    163  1.26     perry 	memset((caddr_t)so, 0, sizeof(*so));
    164   1.1       cgd 	so->so_type = head->so_type;
    165   1.1       cgd 	so->so_options = head->so_options &~ SO_ACCEPTCONN;
    166   1.1       cgd 	so->so_linger = head->so_linger;
    167   1.1       cgd 	so->so_state = head->so_state | SS_NOFDREF;
    168   1.1       cgd 	so->so_proto = head->so_proto;
    169   1.1       cgd 	so->so_timeo = head->so_timeo;
    170   1.1       cgd 	so->so_pgid = head->so_pgid;
    171  1.24      matt 	so->so_send = head->so_send;
    172  1.24      matt 	so->so_receive = head->so_receive;
    173  1.28     lukem 	so->so_uid = head->so_uid;
    174  1.49      matt #ifdef MBUFTRACE
    175  1.49      matt 	so->so_mowner = head->so_mowner;
    176  1.49      matt 	so->so_rcv.sb_mowner = head->so_rcv.sb_mowner;
    177  1.49      matt 	so->so_snd.sb_mowner = head->so_snd.sb_mowner;
    178  1.49      matt #endif
    179   1.1       cgd 	(void) soreserve(so, head->so_snd.sb_hiwat, head->so_rcv.sb_hiwat);
    180   1.1       cgd 	soqinsque(head, so, soqueue);
    181   1.1       cgd 	if ((*so->so_proto->pr_usrreq)(so, PRU_ATTACH,
    182  1.12   mycroft 	    (struct mbuf *)0, (struct mbuf *)0, (struct mbuf *)0,
    183  1.53      fvdl 	    (struct proc *)0)) {
    184   1.1       cgd 		(void) soqremque(so, soqueue);
    185  1.25   thorpej 		pool_put(&socket_pool, so);
    186  1.25   thorpej 		return (NULL);
    187   1.1       cgd 	}
    188   1.1       cgd 	if (connstatus) {
    189   1.1       cgd 		sorwakeup(head);
    190   1.1       cgd 		wakeup((caddr_t)&head->so_timeo);
    191   1.1       cgd 		so->so_state |= connstatus;
    192   1.1       cgd 	}
    193   1.1       cgd 	return (so);
    194   1.1       cgd }
    195   1.1       cgd 
    196   1.7   mycroft void
    197  1.37     lukem soqinsque(struct socket *head, struct socket *so, int q)
    198   1.1       cgd {
    199   1.1       cgd 
    200  1.22   thorpej #ifdef DIAGNOSTIC
    201  1.22   thorpej 	if (so->so_onq != NULL)
    202  1.22   thorpej 		panic("soqinsque");
    203  1.22   thorpej #endif
    204  1.22   thorpej 
    205   1.1       cgd 	so->so_head = head;
    206   1.1       cgd 	if (q == 0) {
    207   1.1       cgd 		head->so_q0len++;
    208  1.22   thorpej 		so->so_onq = &head->so_q0;
    209   1.1       cgd 	} else {
    210   1.1       cgd 		head->so_qlen++;
    211  1.22   thorpej 		so->so_onq = &head->so_q;
    212   1.1       cgd 	}
    213  1.22   thorpej 	TAILQ_INSERT_TAIL(so->so_onq, so, so_qe);
    214   1.1       cgd }
    215   1.1       cgd 
    216   1.7   mycroft int
    217  1.37     lukem soqremque(struct socket *so, int q)
    218   1.1       cgd {
    219  1.37     lukem 	struct socket	*head;
    220   1.1       cgd 
    221  1.37     lukem 	head = so->so_head;
    222  1.22   thorpej 	if (q == 0) {
    223  1.22   thorpej 		if (so->so_onq != &head->so_q0)
    224  1.17   thorpej 			return (0);
    225   1.1       cgd 		head->so_q0len--;
    226   1.1       cgd 	} else {
    227  1.22   thorpej 		if (so->so_onq != &head->so_q)
    228  1.22   thorpej 			return (0);
    229   1.1       cgd 		head->so_qlen--;
    230   1.1       cgd 	}
    231  1.22   thorpej 	TAILQ_REMOVE(so->so_onq, so, so_qe);
    232  1.22   thorpej 	so->so_onq = NULL;
    233  1.22   thorpej 	so->so_head = NULL;
    234   1.1       cgd 	return (1);
    235   1.1       cgd }
    236   1.1       cgd 
    237   1.1       cgd /*
    238   1.1       cgd  * Socantsendmore indicates that no more data will be sent on the
    239   1.1       cgd  * socket; it would normally be applied to a socket when the user
    240   1.1       cgd  * informs the system that no more data is to be sent, by the protocol
    241   1.1       cgd  * code (in case PRU_SHUTDOWN).  Socantrcvmore indicates that no more data
    242   1.1       cgd  * will be received, and will normally be applied to the socket by a
    243   1.1       cgd  * protocol when it detects that the peer will send no more data.
    244   1.1       cgd  * Data queued for reading in the socket may yet be read.
    245   1.1       cgd  */
    246   1.1       cgd 
    247   1.4    andrew void
    248  1.37     lukem socantsendmore(struct socket *so)
    249   1.1       cgd {
    250   1.1       cgd 
    251   1.1       cgd 	so->so_state |= SS_CANTSENDMORE;
    252   1.1       cgd 	sowwakeup(so);
    253   1.1       cgd }
    254   1.1       cgd 
    255   1.4    andrew void
    256  1.37     lukem socantrcvmore(struct socket *so)
    257   1.1       cgd {
    258   1.1       cgd 
    259   1.1       cgd 	so->so_state |= SS_CANTRCVMORE;
    260   1.1       cgd 	sorwakeup(so);
    261   1.1       cgd }
    262   1.1       cgd 
    263   1.1       cgd /*
    264   1.1       cgd  * Wait for data to arrive at/drain from a socket buffer.
    265   1.1       cgd  */
    266   1.7   mycroft int
    267  1.37     lukem sbwait(struct sockbuf *sb)
    268   1.1       cgd {
    269   1.1       cgd 
    270   1.1       cgd 	sb->sb_flags |= SB_WAIT;
    271   1.1       cgd 	return (tsleep((caddr_t)&sb->sb_cc,
    272   1.1       cgd 	    (sb->sb_flags & SB_NOINTR) ? PSOCK : PSOCK | PCATCH, netio,
    273   1.1       cgd 	    sb->sb_timeo));
    274   1.1       cgd }
    275   1.1       cgd 
    276   1.1       cgd /*
    277   1.1       cgd  * Lock a sockbuf already known to be locked;
    278   1.1       cgd  * return any error returned from sleep (EINTR).
    279   1.1       cgd  */
    280   1.7   mycroft int
    281  1.37     lukem sb_lock(struct sockbuf *sb)
    282   1.1       cgd {
    283  1.37     lukem 	int	error;
    284   1.1       cgd 
    285   1.1       cgd 	while (sb->sb_flags & SB_LOCK) {
    286   1.1       cgd 		sb->sb_flags |= SB_WANT;
    287  1.11  christos 		error = tsleep((caddr_t)&sb->sb_flags,
    288  1.41     enami 		    (sb->sb_flags & SB_NOINTR) ?  PSOCK : PSOCK|PCATCH,
    289  1.41     enami 		    netlck, 0);
    290  1.11  christos 		if (error)
    291   1.1       cgd 			return (error);
    292   1.1       cgd 	}
    293   1.1       cgd 	sb->sb_flags |= SB_LOCK;
    294   1.1       cgd 	return (0);
    295   1.1       cgd }
    296   1.1       cgd 
    297   1.1       cgd /*
    298   1.1       cgd  * Wakeup processes waiting on a socket buffer.
    299   1.1       cgd  * Do asynchronous notification via SIGIO
    300  1.39      manu  * if the socket buffer has the SB_ASYNC flag set.
    301   1.1       cgd  */
    302   1.7   mycroft void
    303  1.37     lukem sowakeup(struct socket *so, struct sockbuf *sb)
    304   1.1       cgd {
    305  1.37     lukem 	struct proc	*p;
    306   1.1       cgd 
    307  1.48  jdolecek 	selnotify(&sb->sb_sel, 0);
    308   1.7   mycroft 	sb->sb_flags &= ~SB_SEL;
    309   1.1       cgd 	if (sb->sb_flags & SB_WAIT) {
    310   1.1       cgd 		sb->sb_flags &= ~SB_WAIT;
    311   1.1       cgd 		wakeup((caddr_t)&sb->sb_cc);
    312   1.1       cgd 	}
    313  1.39      manu 	if (sb->sb_flags & SB_ASYNC) {
    314   1.1       cgd 		if (so->so_pgid < 0)
    315   1.1       cgd 			gsignal(-so->so_pgid, SIGIO);
    316   1.1       cgd 		else if (so->so_pgid > 0 && (p = pfind(so->so_pgid)) != 0)
    317   1.1       cgd 			psignal(p, SIGIO);
    318   1.1       cgd 	}
    319  1.24      matt 	if (sb->sb_flags & SB_UPCALL)
    320  1.24      matt 		(*so->so_upcall)(so, so->so_upcallarg, M_DONTWAIT);
    321   1.1       cgd }
    322   1.1       cgd 
    323   1.1       cgd /*
    324   1.1       cgd  * Socket buffer (struct sockbuf) utility routines.
    325   1.1       cgd  *
    326   1.1       cgd  * Each socket contains two socket buffers: one for sending data and
    327   1.1       cgd  * one for receiving data.  Each buffer contains a queue of mbufs,
    328   1.1       cgd  * information about the number of mbufs and amount of data in the
    329  1.13   mycroft  * queue, and other fields allowing poll() statements and notification
    330   1.1       cgd  * on data availability to be implemented.
    331   1.1       cgd  *
    332   1.1       cgd  * Data stored in a socket buffer is maintained as a list of records.
    333   1.1       cgd  * Each record is a list of mbufs chained together with the m_next
    334   1.1       cgd  * field.  Records are chained together with the m_nextpkt field. The upper
    335   1.1       cgd  * level routine soreceive() expects the following conventions to be
    336   1.1       cgd  * observed when placing information in the receive buffer:
    337   1.1       cgd  *
    338   1.1       cgd  * 1. If the protocol requires each message be preceded by the sender's
    339   1.1       cgd  *    name, then a record containing that name must be present before
    340   1.1       cgd  *    any associated data (mbuf's must be of type MT_SONAME).
    341   1.1       cgd  * 2. If the protocol supports the exchange of ``access rights'' (really
    342   1.1       cgd  *    just additional data associated with the message), and there are
    343   1.1       cgd  *    ``rights'' to be received, then a record containing this data
    344  1.10   mycroft  *    should be present (mbuf's must be of type MT_CONTROL).
    345   1.1       cgd  * 3. If a name or rights record exists, then it must be followed by
    346   1.1       cgd  *    a data record, perhaps of zero length.
    347   1.1       cgd  *
    348   1.1       cgd  * Before using a new socket structure it is first necessary to reserve
    349   1.1       cgd  * buffer space to the socket, by calling sbreserve().  This should commit
    350   1.1       cgd  * some of the available buffer space in the system buffer pool for the
    351   1.1       cgd  * socket (currently, it does nothing but enforce limits).  The space
    352   1.1       cgd  * should be released by calling sbrelease() when the socket is destroyed.
    353   1.1       cgd  */
    354   1.1       cgd 
    355   1.7   mycroft int
    356  1.37     lukem soreserve(struct socket *so, u_long sndcc, u_long rcvcc)
    357   1.1       cgd {
    358   1.1       cgd 
    359   1.1       cgd 	if (sbreserve(&so->so_snd, sndcc) == 0)
    360   1.1       cgd 		goto bad;
    361   1.1       cgd 	if (sbreserve(&so->so_rcv, rcvcc) == 0)
    362   1.1       cgd 		goto bad2;
    363   1.1       cgd 	if (so->so_rcv.sb_lowat == 0)
    364   1.1       cgd 		so->so_rcv.sb_lowat = 1;
    365   1.1       cgd 	if (so->so_snd.sb_lowat == 0)
    366   1.1       cgd 		so->so_snd.sb_lowat = MCLBYTES;
    367   1.1       cgd 	if (so->so_snd.sb_lowat > so->so_snd.sb_hiwat)
    368   1.1       cgd 		so->so_snd.sb_lowat = so->so_snd.sb_hiwat;
    369   1.1       cgd 	return (0);
    370  1.37     lukem  bad2:
    371   1.1       cgd 	sbrelease(&so->so_snd);
    372  1.37     lukem  bad:
    373   1.1       cgd 	return (ENOBUFS);
    374   1.1       cgd }
    375   1.1       cgd 
    376   1.1       cgd /*
    377   1.1       cgd  * Allot mbufs to a sockbuf.
    378   1.1       cgd  * Attempt to scale mbmax so that mbcnt doesn't become limiting
    379   1.1       cgd  * if buffering efficiency is near the normal case.
    380   1.1       cgd  */
    381   1.7   mycroft int
    382  1.37     lukem sbreserve(struct sockbuf *sb, u_long cc)
    383   1.1       cgd {
    384   1.1       cgd 
    385  1.38       kml 	if (cc == 0 ||
    386  1.38       kml 	    (u_quad_t) cc > (u_quad_t) sb_max * MCLBYTES / (MSIZE + MCLBYTES))
    387   1.1       cgd 		return (0);
    388   1.1       cgd 	sb->sb_hiwat = cc;
    389   1.1       cgd 	sb->sb_mbmax = min(cc * 2, sb_max);
    390   1.1       cgd 	if (sb->sb_lowat > sb->sb_hiwat)
    391   1.1       cgd 		sb->sb_lowat = sb->sb_hiwat;
    392   1.1       cgd 	return (1);
    393   1.1       cgd }
    394   1.1       cgd 
    395   1.1       cgd /*
    396   1.1       cgd  * Free mbufs held by a socket, and reserved mbuf space.
    397   1.1       cgd  */
    398   1.7   mycroft void
    399  1.37     lukem sbrelease(struct sockbuf *sb)
    400   1.1       cgd {
    401   1.1       cgd 
    402   1.1       cgd 	sbflush(sb);
    403   1.1       cgd 	sb->sb_hiwat = sb->sb_mbmax = 0;
    404   1.1       cgd }
    405   1.1       cgd 
    406   1.1       cgd /*
    407   1.1       cgd  * Routines to add and remove
    408   1.1       cgd  * data from an mbuf queue.
    409   1.1       cgd  *
    410   1.1       cgd  * The routines sbappend() or sbappendrecord() are normally called to
    411   1.1       cgd  * append new mbufs to a socket buffer, after checking that adequate
    412   1.1       cgd  * space is available, comparing the function sbspace() with the amount
    413   1.1       cgd  * of data to be added.  sbappendrecord() differs from sbappend() in
    414   1.1       cgd  * that data supplied is treated as the beginning of a new record.
    415   1.1       cgd  * To place a sender's address, optional access rights, and data in a
    416   1.1       cgd  * socket receive buffer, sbappendaddr() should be used.  To place
    417   1.1       cgd  * access rights and data in a socket receive buffer, sbappendrights()
    418   1.1       cgd  * should be used.  In either case, the new data begins a new record.
    419   1.1       cgd  * Note that unlike sbappend() and sbappendrecord(), these routines check
    420   1.1       cgd  * for the caller that there will be enough space to store the data.
    421   1.1       cgd  * Each fails if there is not enough space, or if it cannot find mbufs
    422   1.1       cgd  * to store additional information in.
    423   1.1       cgd  *
    424   1.1       cgd  * Reliable protocols may use the socket send buffer to hold data
    425   1.1       cgd  * awaiting acknowledgement.  Data is normally copied from a socket
    426   1.1       cgd  * send buffer in a protocol with m_copy for output to a peer,
    427   1.1       cgd  * and then removing the data from the socket buffer with sbdrop()
    428   1.1       cgd  * or sbdroprecord() when the data is acknowledged by the peer.
    429   1.1       cgd  */
    430   1.1       cgd 
    431  1.43   thorpej #ifdef SOCKBUF_DEBUG
    432  1.43   thorpej void
    433  1.43   thorpej sblastrecordchk(struct sockbuf *sb, const char *where)
    434  1.43   thorpej {
    435  1.43   thorpej 	struct mbuf *m = sb->sb_mb;
    436  1.43   thorpej 
    437  1.43   thorpej 	while (m && m->m_nextpkt)
    438  1.43   thorpej 		m = m->m_nextpkt;
    439  1.43   thorpej 
    440  1.43   thorpej 	if (m != sb->sb_lastrecord) {
    441  1.43   thorpej 		printf("sblastrecordchk: sb_mb %p sb_lastrecord %p last %p\n",
    442  1.43   thorpej 		    sb->sb_mb, sb->sb_lastrecord, m);
    443  1.43   thorpej 		printf("packet chain:\n");
    444  1.43   thorpej 		for (m = sb->sb_mb; m != NULL; m = m->m_nextpkt)
    445  1.43   thorpej 			printf("\t%p\n", m);
    446  1.47    provos 		panic("sblastrecordchk from %s", where);
    447  1.43   thorpej 	}
    448  1.43   thorpej }
    449  1.43   thorpej 
    450  1.43   thorpej void
    451  1.43   thorpej sblastmbufchk(struct sockbuf *sb, const char *where)
    452  1.43   thorpej {
    453  1.43   thorpej 	struct mbuf *m = sb->sb_mb;
    454  1.43   thorpej 	struct mbuf *n;
    455  1.43   thorpej 
    456  1.43   thorpej 	while (m && m->m_nextpkt)
    457  1.43   thorpej 		m = m->m_nextpkt;
    458  1.43   thorpej 
    459  1.43   thorpej 	while (m && m->m_next)
    460  1.43   thorpej 		m = m->m_next;
    461  1.43   thorpej 
    462  1.43   thorpej 	if (m != sb->sb_mbtail) {
    463  1.43   thorpej 		printf("sblastmbufchk: sb_mb %p sb_mbtail %p last %p\n",
    464  1.43   thorpej 		    sb->sb_mb, sb->sb_mbtail, m);
    465  1.43   thorpej 		printf("packet tree:\n");
    466  1.43   thorpej 		for (m = sb->sb_mb; m != NULL; m = m->m_nextpkt) {
    467  1.43   thorpej 			printf("\t");
    468  1.43   thorpej 			for (n = m; n != NULL; n = n->m_next)
    469  1.43   thorpej 				printf("%p ", n);
    470  1.43   thorpej 			printf("\n");
    471  1.43   thorpej 		}
    472  1.43   thorpej 		panic("sblastmbufchk from %s", where);
    473  1.43   thorpej 	}
    474  1.43   thorpej }
    475  1.43   thorpej #endif /* SOCKBUF_DEBUG */
    476  1.43   thorpej 
    477  1.43   thorpej #define	SBLINKRECORD(sb, m0)						\
    478  1.43   thorpej do {									\
    479  1.43   thorpej 	if ((sb)->sb_lastrecord != NULL)				\
    480  1.43   thorpej 		(sb)->sb_lastrecord->m_nextpkt = (m0);			\
    481  1.43   thorpej 	else								\
    482  1.43   thorpej 		(sb)->sb_mb = (m0);					\
    483  1.43   thorpej 	(sb)->sb_lastrecord = (m0);					\
    484  1.43   thorpej } while (/*CONSTCOND*/0)
    485  1.43   thorpej 
    486   1.1       cgd /*
    487   1.1       cgd  * Append mbuf chain m to the last record in the
    488   1.1       cgd  * socket buffer sb.  The additional space associated
    489   1.1       cgd  * the mbuf chain is recorded in sb.  Empty mbufs are
    490   1.1       cgd  * discarded and mbufs are compacted where possible.
    491   1.1       cgd  */
    492   1.7   mycroft void
    493  1.37     lukem sbappend(struct sockbuf *sb, struct mbuf *m)
    494   1.1       cgd {
    495  1.37     lukem 	struct mbuf	*n;
    496   1.1       cgd 
    497   1.1       cgd 	if (m == 0)
    498   1.1       cgd 		return;
    499  1.43   thorpej 
    500  1.49      matt #ifdef MBUFTRACE
    501  1.49      matt 	m_claim(m, sb->sb_mowner);
    502  1.49      matt #endif
    503  1.49      matt 
    504  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappend 1");
    505  1.43   thorpej 
    506  1.43   thorpej 	if ((n = sb->sb_lastrecord) != NULL) {
    507  1.43   thorpej 		/*
    508  1.43   thorpej 		 * XXX Would like to simply use sb_mbtail here, but
    509  1.43   thorpej 		 * XXX I need to verify that I won't miss an EOR that
    510  1.43   thorpej 		 * XXX way.
    511  1.43   thorpej 		 */
    512   1.1       cgd 		do {
    513   1.1       cgd 			if (n->m_flags & M_EOR) {
    514   1.1       cgd 				sbappendrecord(sb, m); /* XXXXXX!!!! */
    515   1.1       cgd 				return;
    516   1.1       cgd 			}
    517   1.1       cgd 		} while (n->m_next && (n = n->m_next));
    518  1.43   thorpej 	} else {
    519  1.43   thorpej 		/*
    520  1.43   thorpej 		 * If this is the first record in the socket buffer, it's
    521  1.43   thorpej 		 * also the last record.
    522  1.43   thorpej 		 */
    523  1.43   thorpej 		sb->sb_lastrecord = m;
    524   1.1       cgd 	}
    525   1.1       cgd 	sbcompress(sb, m, n);
    526  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappend 2");
    527  1.43   thorpej }
    528  1.43   thorpej 
    529  1.43   thorpej /*
    530  1.43   thorpej  * This version of sbappend() should only be used when the caller
    531  1.43   thorpej  * absolutely knows that there will never be more than one record
    532  1.43   thorpej  * in the socket buffer, that is, a stream protocol (such as TCP).
    533  1.43   thorpej  */
    534  1.43   thorpej void
    535  1.44   thorpej sbappendstream(struct sockbuf *sb, struct mbuf *m)
    536  1.43   thorpej {
    537  1.43   thorpej 
    538  1.43   thorpej 	KDASSERT(m->m_nextpkt == NULL);
    539  1.43   thorpej 	KASSERT(sb->sb_mb == sb->sb_lastrecord);
    540  1.43   thorpej 
    541  1.43   thorpej 	SBLASTMBUFCHK(sb, __func__);
    542  1.43   thorpej 
    543  1.49      matt #ifdef MBUFTRACE
    544  1.49      matt 	m_claim(m, sb->sb_mowner);
    545  1.49      matt #endif
    546  1.49      matt 
    547  1.43   thorpej 	sbcompress(sb, m, sb->sb_mbtail);
    548  1.43   thorpej 
    549  1.43   thorpej 	sb->sb_lastrecord = sb->sb_mb;
    550  1.43   thorpej 	SBLASTRECORDCHK(sb, __func__);
    551   1.1       cgd }
    552   1.1       cgd 
    553   1.1       cgd #ifdef SOCKBUF_DEBUG
    554   1.7   mycroft void
    555  1.37     lukem sbcheck(struct sockbuf *sb)
    556   1.1       cgd {
    557  1.37     lukem 	struct mbuf	*m;
    558  1.43   thorpej 	u_long		len, mbcnt;
    559   1.1       cgd 
    560  1.37     lukem 	len = 0;
    561  1.37     lukem 	mbcnt = 0;
    562   1.1       cgd 	for (m = sb->sb_mb; m; m = m->m_next) {
    563   1.1       cgd 		len += m->m_len;
    564   1.1       cgd 		mbcnt += MSIZE;
    565   1.1       cgd 		if (m->m_flags & M_EXT)
    566   1.1       cgd 			mbcnt += m->m_ext.ext_size;
    567   1.1       cgd 		if (m->m_nextpkt)
    568   1.1       cgd 			panic("sbcheck nextpkt");
    569   1.1       cgd 	}
    570   1.1       cgd 	if (len != sb->sb_cc || mbcnt != sb->sb_mbcnt) {
    571  1.43   thorpej 		printf("cc %lu != %lu || mbcnt %lu != %lu\n", len, sb->sb_cc,
    572   1.1       cgd 		    mbcnt, sb->sb_mbcnt);
    573   1.1       cgd 		panic("sbcheck");
    574   1.1       cgd 	}
    575   1.1       cgd }
    576   1.1       cgd #endif
    577   1.1       cgd 
    578   1.1       cgd /*
    579   1.1       cgd  * As above, except the mbuf chain
    580   1.1       cgd  * begins a new record.
    581   1.1       cgd  */
    582   1.7   mycroft void
    583  1.37     lukem sbappendrecord(struct sockbuf *sb, struct mbuf *m0)
    584   1.1       cgd {
    585  1.37     lukem 	struct mbuf	*m;
    586   1.1       cgd 
    587   1.1       cgd 	if (m0 == 0)
    588   1.1       cgd 		return;
    589  1.43   thorpej 
    590  1.49      matt #ifdef MBUFTRACE
    591  1.49      matt 	m_claim(m0, sb->sb_mowner);
    592  1.49      matt #endif
    593   1.1       cgd 	/*
    594   1.1       cgd 	 * Put the first mbuf on the queue.
    595   1.1       cgd 	 * Note this permits zero length records.
    596   1.1       cgd 	 */
    597   1.1       cgd 	sballoc(sb, m0);
    598  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappendrecord 1");
    599  1.43   thorpej 	SBLINKRECORD(sb, m0);
    600   1.1       cgd 	m = m0->m_next;
    601   1.1       cgd 	m0->m_next = 0;
    602   1.1       cgd 	if (m && (m0->m_flags & M_EOR)) {
    603   1.1       cgd 		m0->m_flags &= ~M_EOR;
    604   1.1       cgd 		m->m_flags |= M_EOR;
    605   1.1       cgd 	}
    606   1.1       cgd 	sbcompress(sb, m, m0);
    607  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappendrecord 2");
    608   1.1       cgd }
    609   1.1       cgd 
    610   1.1       cgd /*
    611   1.1       cgd  * As above except that OOB data
    612   1.1       cgd  * is inserted at the beginning of the sockbuf,
    613   1.1       cgd  * but after any other OOB data.
    614   1.1       cgd  */
    615   1.7   mycroft void
    616  1.37     lukem sbinsertoob(struct sockbuf *sb, struct mbuf *m0)
    617   1.1       cgd {
    618  1.37     lukem 	struct mbuf	*m, **mp;
    619   1.1       cgd 
    620   1.1       cgd 	if (m0 == 0)
    621   1.1       cgd 		return;
    622  1.43   thorpej 
    623  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbinsertoob 1");
    624  1.43   thorpej 
    625  1.11  christos 	for (mp = &sb->sb_mb; (m = *mp) != NULL; mp = &((*mp)->m_nextpkt)) {
    626   1.1       cgd 	    again:
    627   1.1       cgd 		switch (m->m_type) {
    628   1.1       cgd 
    629   1.1       cgd 		case MT_OOBDATA:
    630   1.1       cgd 			continue;		/* WANT next train */
    631   1.1       cgd 
    632   1.1       cgd 		case MT_CONTROL:
    633  1.11  christos 			if ((m = m->m_next) != NULL)
    634   1.1       cgd 				goto again;	/* inspect THIS train further */
    635   1.1       cgd 		}
    636   1.1       cgd 		break;
    637   1.1       cgd 	}
    638   1.1       cgd 	/*
    639   1.1       cgd 	 * Put the first mbuf on the queue.
    640   1.1       cgd 	 * Note this permits zero length records.
    641   1.1       cgd 	 */
    642   1.1       cgd 	sballoc(sb, m0);
    643   1.1       cgd 	m0->m_nextpkt = *mp;
    644  1.43   thorpej 	if (*mp == NULL) {
    645  1.43   thorpej 		/* m0 is actually the new tail */
    646  1.43   thorpej 		sb->sb_lastrecord = m0;
    647  1.43   thorpej 	}
    648   1.1       cgd 	*mp = m0;
    649   1.1       cgd 	m = m0->m_next;
    650   1.1       cgd 	m0->m_next = 0;
    651   1.1       cgd 	if (m && (m0->m_flags & M_EOR)) {
    652   1.1       cgd 		m0->m_flags &= ~M_EOR;
    653   1.1       cgd 		m->m_flags |= M_EOR;
    654   1.1       cgd 	}
    655   1.1       cgd 	sbcompress(sb, m, m0);
    656  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbinsertoob 2");
    657   1.1       cgd }
    658   1.1       cgd 
    659   1.1       cgd /*
    660   1.1       cgd  * Append address and data, and optionally, control (ancillary) data
    661   1.1       cgd  * to the receive queue of a socket.  If present,
    662   1.1       cgd  * m0 must include a packet header with total length.
    663   1.1       cgd  * Returns 0 if no space in sockbuf or insufficient mbufs.
    664   1.1       cgd  */
    665   1.7   mycroft int
    666  1.37     lukem sbappendaddr(struct sockbuf *sb, struct sockaddr *asa, struct mbuf *m0,
    667  1.37     lukem 	struct mbuf *control)
    668   1.1       cgd {
    669  1.43   thorpej 	struct mbuf	*m, *n, *nlast;
    670  1.50      fvdl 	int		space, len;
    671   1.1       cgd 
    672  1.37     lukem 	space = asa->sa_len;
    673  1.37     lukem 
    674  1.49      matt 	if (m0 != NULL) {
    675  1.49      matt 		if ((m0->m_flags & M_PKTHDR) == 0)
    676  1.49      matt 			panic("sbappendaddr");
    677   1.1       cgd 		space += m0->m_pkthdr.len;
    678  1.49      matt #ifdef MBUFTRACE
    679  1.49      matt 		m_claim(m0, sb->sb_mowner);
    680  1.49      matt #endif
    681  1.49      matt 	}
    682   1.1       cgd 	for (n = control; n; n = n->m_next) {
    683   1.1       cgd 		space += n->m_len;
    684  1.49      matt 		MCLAIM(n, sb->sb_mowner);
    685   1.1       cgd 		if (n->m_next == 0)	/* keep pointer to last control buf */
    686   1.1       cgd 			break;
    687   1.1       cgd 	}
    688   1.1       cgd 	if (space > sbspace(sb))
    689   1.1       cgd 		return (0);
    690   1.1       cgd 	MGET(m, M_DONTWAIT, MT_SONAME);
    691   1.1       cgd 	if (m == 0)
    692   1.1       cgd 		return (0);
    693  1.49      matt 	MCLAIM(m, sb->sb_mowner);
    694  1.50      fvdl 	/*
    695  1.50      fvdl 	 * XXX avoid 'comparison always true' warning which isn't easily
    696  1.50      fvdl 	 * avoided.
    697  1.50      fvdl 	 */
    698  1.50      fvdl 	len = asa->sa_len;
    699  1.50      fvdl 	if (len > MLEN) {
    700  1.20   thorpej 		MEXTMALLOC(m, asa->sa_len, M_NOWAIT);
    701  1.20   thorpej 		if ((m->m_flags & M_EXT) == 0) {
    702  1.20   thorpej 			m_free(m);
    703  1.20   thorpej 			return (0);
    704  1.20   thorpej 		}
    705  1.20   thorpej 	}
    706   1.1       cgd 	m->m_len = asa->sa_len;
    707  1.26     perry 	memcpy(mtod(m, caddr_t), (caddr_t)asa, asa->sa_len);
    708   1.1       cgd 	if (n)
    709   1.1       cgd 		n->m_next = m0;		/* concatenate data to control */
    710   1.1       cgd 	else
    711   1.1       cgd 		control = m0;
    712   1.1       cgd 	m->m_next = control;
    713  1.43   thorpej 
    714  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappendaddr 1");
    715  1.43   thorpej 
    716  1.43   thorpej 	for (n = m; n->m_next != NULL; n = n->m_next)
    717   1.1       cgd 		sballoc(sb, n);
    718  1.43   thorpej 	sballoc(sb, n);
    719  1.43   thorpej 	nlast = n;
    720  1.43   thorpej 	SBLINKRECORD(sb, m);
    721  1.43   thorpej 
    722  1.43   thorpej 	sb->sb_mbtail = nlast;
    723  1.43   thorpej 	SBLASTMBUFCHK(sb, "sbappendaddr");
    724  1.43   thorpej 
    725  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappendaddr 2");
    726  1.43   thorpej 
    727   1.1       cgd 	return (1);
    728   1.1       cgd }
    729   1.1       cgd 
    730   1.7   mycroft int
    731  1.37     lukem sbappendcontrol(struct sockbuf *sb, struct mbuf *m0, struct mbuf *control)
    732   1.1       cgd {
    733  1.43   thorpej 	struct mbuf	*m, *mlast, *n;
    734  1.37     lukem 	int		space;
    735   1.1       cgd 
    736  1.37     lukem 	space = 0;
    737   1.1       cgd 	if (control == 0)
    738   1.1       cgd 		panic("sbappendcontrol");
    739   1.1       cgd 	for (m = control; ; m = m->m_next) {
    740   1.1       cgd 		space += m->m_len;
    741  1.49      matt 		MCLAIM(m, sb->sb_mowner);
    742   1.1       cgd 		if (m->m_next == 0)
    743   1.1       cgd 			break;
    744   1.1       cgd 	}
    745   1.1       cgd 	n = m;			/* save pointer to last control buffer */
    746  1.49      matt 	for (m = m0; m; m = m->m_next) {
    747  1.49      matt 		MCLAIM(m, sb->sb_mowner);
    748   1.1       cgd 		space += m->m_len;
    749  1.49      matt 	}
    750   1.1       cgd 	if (space > sbspace(sb))
    751   1.1       cgd 		return (0);
    752   1.1       cgd 	n->m_next = m0;			/* concatenate data to control */
    753  1.43   thorpej 
    754  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappendcontrol 1");
    755  1.43   thorpej 
    756  1.43   thorpej 	for (m = control; m->m_next != NULL; m = m->m_next)
    757   1.1       cgd 		sballoc(sb, m);
    758  1.43   thorpej 	sballoc(sb, m);
    759  1.43   thorpej 	mlast = m;
    760  1.43   thorpej 	SBLINKRECORD(sb, control);
    761  1.43   thorpej 
    762  1.43   thorpej 	sb->sb_mbtail = mlast;
    763  1.43   thorpej 	SBLASTMBUFCHK(sb, "sbappendcontrol");
    764  1.43   thorpej 
    765  1.43   thorpej 	SBLASTRECORDCHK(sb, "sbappendcontrol 2");
    766  1.43   thorpej 
    767   1.1       cgd 	return (1);
    768   1.1       cgd }
    769   1.1       cgd 
    770   1.1       cgd /*
    771   1.1       cgd  * Compress mbuf chain m into the socket
    772   1.1       cgd  * buffer sb following mbuf n.  If n
    773   1.1       cgd  * is null, the buffer is presumed empty.
    774   1.1       cgd  */
    775   1.7   mycroft void
    776  1.37     lukem sbcompress(struct sockbuf *sb, struct mbuf *m, struct mbuf *n)
    777   1.1       cgd {
    778  1.37     lukem 	int		eor;
    779  1.37     lukem 	struct mbuf	*o;
    780   1.1       cgd 
    781  1.37     lukem 	eor = 0;
    782   1.1       cgd 	while (m) {
    783   1.1       cgd 		eor |= m->m_flags & M_EOR;
    784   1.1       cgd 		if (m->m_len == 0 &&
    785   1.1       cgd 		    (eor == 0 ||
    786   1.1       cgd 		     (((o = m->m_next) || (o = n)) &&
    787   1.1       cgd 		      o->m_type == m->m_type))) {
    788  1.46   thorpej 			if (sb->sb_lastrecord == m)
    789  1.46   thorpej 				sb->sb_lastrecord = m->m_next;
    790   1.1       cgd 			m = m_free(m);
    791   1.1       cgd 			continue;
    792   1.1       cgd 		}
    793  1.40   thorpej 		if (n && (n->m_flags & M_EOR) == 0 &&
    794  1.40   thorpej 		    /* M_TRAILINGSPACE() checks buffer writeability */
    795  1.40   thorpej 		    m->m_len <= MCLBYTES / 4 && /* XXX Don't copy too much */
    796  1.40   thorpej 		    m->m_len <= M_TRAILINGSPACE(n) &&
    797  1.40   thorpej 		    n->m_type == m->m_type) {
    798  1.26     perry 			memcpy(mtod(n, caddr_t) + n->m_len, mtod(m, caddr_t),
    799   1.1       cgd 			    (unsigned)m->m_len);
    800   1.1       cgd 			n->m_len += m->m_len;
    801   1.1       cgd 			sb->sb_cc += m->m_len;
    802   1.1       cgd 			m = m_free(m);
    803   1.1       cgd 			continue;
    804   1.1       cgd 		}
    805   1.1       cgd 		if (n)
    806   1.1       cgd 			n->m_next = m;
    807   1.1       cgd 		else
    808   1.1       cgd 			sb->sb_mb = m;
    809  1.43   thorpej 		sb->sb_mbtail = m;
    810   1.1       cgd 		sballoc(sb, m);
    811   1.1       cgd 		n = m;
    812   1.1       cgd 		m->m_flags &= ~M_EOR;
    813   1.1       cgd 		m = m->m_next;
    814   1.1       cgd 		n->m_next = 0;
    815   1.1       cgd 	}
    816   1.1       cgd 	if (eor) {
    817   1.1       cgd 		if (n)
    818   1.1       cgd 			n->m_flags |= eor;
    819   1.1       cgd 		else
    820  1.15  christos 			printf("semi-panic: sbcompress\n");
    821   1.1       cgd 	}
    822  1.43   thorpej 	SBLASTMBUFCHK(sb, __func__);
    823   1.1       cgd }
    824   1.1       cgd 
    825   1.1       cgd /*
    826   1.1       cgd  * Free all mbufs in a sockbuf.
    827   1.1       cgd  * Check that all resources are reclaimed.
    828   1.1       cgd  */
    829   1.7   mycroft void
    830  1.37     lukem sbflush(struct sockbuf *sb)
    831   1.1       cgd {
    832   1.1       cgd 
    833  1.43   thorpej 	KASSERT((sb->sb_flags & SB_LOCK) == 0);
    834  1.43   thorpej 
    835   1.1       cgd 	while (sb->sb_mbcnt)
    836   1.1       cgd 		sbdrop(sb, (int)sb->sb_cc);
    837  1.43   thorpej 
    838  1.43   thorpej 	KASSERT(sb->sb_cc == 0);
    839  1.43   thorpej 	KASSERT(sb->sb_mb == NULL);
    840  1.43   thorpej 	KASSERT(sb->sb_mbtail == NULL);
    841  1.43   thorpej 	KASSERT(sb->sb_lastrecord == NULL);
    842   1.1       cgd }
    843   1.1       cgd 
    844   1.1       cgd /*
    845   1.1       cgd  * Drop data from (the front of) a sockbuf.
    846   1.1       cgd  */
    847   1.7   mycroft void
    848  1.37     lukem sbdrop(struct sockbuf *sb, int len)
    849   1.1       cgd {
    850  1.37     lukem 	struct mbuf	*m, *mn, *next;
    851   1.1       cgd 
    852   1.1       cgd 	next = (m = sb->sb_mb) ? m->m_nextpkt : 0;
    853   1.1       cgd 	while (len > 0) {
    854   1.1       cgd 		if (m == 0) {
    855   1.1       cgd 			if (next == 0)
    856   1.1       cgd 				panic("sbdrop");
    857   1.1       cgd 			m = next;
    858   1.1       cgd 			next = m->m_nextpkt;
    859   1.1       cgd 			continue;
    860   1.1       cgd 		}
    861   1.1       cgd 		if (m->m_len > len) {
    862   1.1       cgd 			m->m_len -= len;
    863   1.1       cgd 			m->m_data += len;
    864   1.1       cgd 			sb->sb_cc -= len;
    865   1.1       cgd 			break;
    866   1.1       cgd 		}
    867   1.1       cgd 		len -= m->m_len;
    868   1.1       cgd 		sbfree(sb, m);
    869   1.1       cgd 		MFREE(m, mn);
    870   1.1       cgd 		m = mn;
    871   1.1       cgd 	}
    872   1.1       cgd 	while (m && m->m_len == 0) {
    873   1.1       cgd 		sbfree(sb, m);
    874   1.1       cgd 		MFREE(m, mn);
    875   1.1       cgd 		m = mn;
    876   1.1       cgd 	}
    877   1.1       cgd 	if (m) {
    878   1.1       cgd 		sb->sb_mb = m;
    879   1.1       cgd 		m->m_nextpkt = next;
    880   1.1       cgd 	} else
    881   1.1       cgd 		sb->sb_mb = next;
    882  1.43   thorpej 	/*
    883  1.45   thorpej 	 * First part is an inline SB_EMPTY_FIXUP().  Second part
    884  1.43   thorpej 	 * makes sure sb_lastrecord is up-to-date if we dropped
    885  1.43   thorpej 	 * part of the last record.
    886  1.43   thorpej 	 */
    887  1.43   thorpej 	m = sb->sb_mb;
    888  1.43   thorpej 	if (m == NULL) {
    889  1.43   thorpej 		sb->sb_mbtail = NULL;
    890  1.43   thorpej 		sb->sb_lastrecord = NULL;
    891  1.43   thorpej 	} else if (m->m_nextpkt == NULL)
    892  1.43   thorpej 		sb->sb_lastrecord = m;
    893   1.1       cgd }
    894   1.1       cgd 
    895   1.1       cgd /*
    896   1.1       cgd  * Drop a record off the front of a sockbuf
    897   1.1       cgd  * and move the next record to the front.
    898   1.1       cgd  */
    899   1.7   mycroft void
    900  1.37     lukem sbdroprecord(struct sockbuf *sb)
    901   1.1       cgd {
    902  1.37     lukem 	struct mbuf	*m, *mn;
    903   1.1       cgd 
    904   1.1       cgd 	m = sb->sb_mb;
    905   1.1       cgd 	if (m) {
    906   1.1       cgd 		sb->sb_mb = m->m_nextpkt;
    907   1.1       cgd 		do {
    908   1.1       cgd 			sbfree(sb, m);
    909   1.1       cgd 			MFREE(m, mn);
    910  1.11  christos 		} while ((m = mn) != NULL);
    911   1.1       cgd 	}
    912  1.45   thorpej 	SB_EMPTY_FIXUP(sb);
    913  1.19   thorpej }
    914  1.19   thorpej 
    915  1.19   thorpej /*
    916  1.19   thorpej  * Create a "control" mbuf containing the specified data
    917  1.19   thorpej  * with the specified type for presentation on a socket buffer.
    918  1.19   thorpej  */
    919  1.19   thorpej struct mbuf *
    920  1.37     lukem sbcreatecontrol(caddr_t p, int size, int type, int level)
    921  1.19   thorpej {
    922  1.37     lukem 	struct cmsghdr	*cp;
    923  1.37     lukem 	struct mbuf	*m;
    924  1.19   thorpej 
    925  1.35    itojun 	if (CMSG_SPACE(size) > MCLBYTES) {
    926  1.30    itojun 		printf("sbcreatecontrol: message too large %d\n", size);
    927  1.30    itojun 		return NULL;
    928  1.30    itojun 	}
    929  1.30    itojun 
    930  1.19   thorpej 	if ((m = m_get(M_DONTWAIT, MT_CONTROL)) == NULL)
    931  1.19   thorpej 		return ((struct mbuf *) NULL);
    932  1.35    itojun 	if (CMSG_SPACE(size) > MLEN) {
    933  1.30    itojun 		MCLGET(m, M_DONTWAIT);
    934  1.30    itojun 		if ((m->m_flags & M_EXT) == 0) {
    935  1.30    itojun 			m_free(m);
    936  1.30    itojun 			return NULL;
    937  1.30    itojun 		}
    938  1.30    itojun 	}
    939  1.19   thorpej 	cp = mtod(m, struct cmsghdr *);
    940  1.26     perry 	memcpy(CMSG_DATA(cp), p, size);
    941  1.35    itojun 	m->m_len = CMSG_SPACE(size);
    942  1.35    itojun 	cp->cmsg_len = CMSG_LEN(size);
    943  1.19   thorpej 	cp->cmsg_level = level;
    944  1.19   thorpej 	cp->cmsg_type = type;
    945  1.19   thorpej 	return (m);
    946   1.1       cgd }
    947