socketvar.h revision 2112
11541Srgrimes/*-
21541Srgrimes * Copyright (c) 1982, 1986, 1990, 1993
31541Srgrimes *	The Regents of the University of California.  All rights reserved.
41541Srgrimes *
51541Srgrimes * Redistribution and use in source and binary forms, with or without
61541Srgrimes * modification, are permitted provided that the following conditions
71541Srgrimes * are met:
81541Srgrimes * 1. Redistributions of source code must retain the above copyright
91541Srgrimes *    notice, this list of conditions and the following disclaimer.
101541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111541Srgrimes *    notice, this list of conditions and the following disclaimer in the
121541Srgrimes *    documentation and/or other materials provided with the distribution.
131541Srgrimes * 3. All advertising materials mentioning features or use of this software
141541Srgrimes *    must display the following acknowledgement:
151541Srgrimes *	This product includes software developed by the University of
161541Srgrimes *	California, Berkeley and its contributors.
171541Srgrimes * 4. Neither the name of the University nor the names of its contributors
181541Srgrimes *    may be used to endorse or promote products derived from this software
191541Srgrimes *    without specific prior written permission.
201541Srgrimes *
211541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311541Srgrimes * SUCH DAMAGE.
321541Srgrimes *
331541Srgrimes *	@(#)socketvar.h	8.1 (Berkeley) 6/2/93
342112Swollman * $Id: socketvar.h,v 1.2 1994/08/02 07:53:36 davidg Exp $
351541Srgrimes */
361541Srgrimes
371541Srgrimes#include <sys/select.h>			/* for struct selinfo */
381541Srgrimes
391541Srgrimes/*
401541Srgrimes * Kernel structure per socket.
411541Srgrimes * Contains send and receive buffer queues,
421541Srgrimes * handle on protocol and pointer to protocol
431541Srgrimes * private data and error information.
441541Srgrimes */
451541Srgrimesstruct socket {
461541Srgrimes	short	so_type;		/* generic type, see socket.h */
471541Srgrimes	short	so_options;		/* from socket call, see socket.h */
481541Srgrimes	short	so_linger;		/* time to linger while closing */
491541Srgrimes	short	so_state;		/* internal state flags SS_*, below */
501541Srgrimes	caddr_t	so_pcb;			/* protocol control block */
511541Srgrimes	struct	protosw *so_proto;	/* protocol handle */
521541Srgrimes/*
531541Srgrimes * Variables for connection queueing.
541541Srgrimes * Socket where accepts occur is so_head in all subsidiary sockets.
551541Srgrimes * If so_head is 0, socket is not related to an accept.
561541Srgrimes * For head socket so_q0 queues partially completed connections,
571541Srgrimes * while so_q is a queue of connections ready to be accepted.
581541Srgrimes * If a connection is aborted and it has so_head set, then
591541Srgrimes * it has to be pulled out of either so_q0 or so_q.
601541Srgrimes * We allow connections to queue up based on current queue lengths
611541Srgrimes * and limit on number of queued connections for this socket.
621541Srgrimes */
631541Srgrimes	struct	socket *so_head;	/* back pointer to accept socket */
641541Srgrimes	struct	socket *so_q0;		/* queue of partial connections */
651541Srgrimes	struct	socket *so_q;		/* queue of incoming connections */
661541Srgrimes	short	so_q0len;		/* partials on so_q0 */
671541Srgrimes	short	so_qlen;		/* number of connections on so_q */
681541Srgrimes	short	so_qlimit;		/* max number queued connections */
691541Srgrimes	short	so_timeo;		/* connection timeout */
701541Srgrimes	u_short	so_error;		/* error affecting connection */
711541Srgrimes	pid_t	so_pgid;		/* pgid for signals */
721541Srgrimes	u_long	so_oobmark;		/* chars to oob mark */
731541Srgrimes/*
741541Srgrimes * Variables for socket buffering.
751541Srgrimes */
761541Srgrimes	struct	sockbuf {
771541Srgrimes		u_long	sb_cc;		/* actual chars in buffer */
781541Srgrimes		u_long	sb_hiwat;	/* max actual char count */
791541Srgrimes		u_long	sb_mbcnt;	/* chars of mbufs used */
801541Srgrimes		u_long	sb_mbmax;	/* max chars of mbufs to use */
811541Srgrimes		long	sb_lowat;	/* low water mark */
821541Srgrimes		struct	mbuf *sb_mb;	/* the mbuf chain */
831541Srgrimes		struct	selinfo sb_sel;	/* process selecting read/write */
841541Srgrimes		short	sb_flags;	/* flags, see below */
851541Srgrimes		short	sb_timeo;	/* timeout for read/write */
861541Srgrimes	} so_rcv, so_snd;
871541Srgrimes#define	SB_MAX		(256*1024)	/* default for max chars in sockbuf */
881541Srgrimes#define	SB_LOCK		0x01		/* lock on data queue */
891541Srgrimes#define	SB_WANT		0x02		/* someone is waiting to lock */
901541Srgrimes#define	SB_WAIT		0x04		/* someone is waiting for data/space */
911541Srgrimes#define	SB_SEL		0x08		/* someone is selecting */
921541Srgrimes#define	SB_ASYNC	0x10		/* ASYNC I/O, need signals */
931541Srgrimes#define	SB_NOTIFY	(SB_WAIT|SB_SEL|SB_ASYNC)
941541Srgrimes#define	SB_NOINTR	0x40		/* operations not interruptible */
951541Srgrimes
961541Srgrimes	caddr_t	so_tpcb;		/* Wisc. protocol control block XXX */
971541Srgrimes	void	(*so_upcall) __P((struct socket *so, caddr_t arg, int waitf));
981541Srgrimes	caddr_t	so_upcallarg;		/* Arg for above */
991541Srgrimes};
1001541Srgrimes
1011541Srgrimes/*
1021541Srgrimes * Socket state bits.
1031541Srgrimes */
1041541Srgrimes#define	SS_NOFDREF		0x001	/* no file table ref any more */
1051541Srgrimes#define	SS_ISCONNECTED		0x002	/* socket connected to a peer */
1061541Srgrimes#define	SS_ISCONNECTING		0x004	/* in process of connecting to peer */
1071541Srgrimes#define	SS_ISDISCONNECTING	0x008	/* in process of disconnecting */
1081541Srgrimes#define	SS_CANTSENDMORE		0x010	/* can't send more data to peer */
1091541Srgrimes#define	SS_CANTRCVMORE		0x020	/* can't receive more data from peer */
1101541Srgrimes#define	SS_RCVATMARK		0x040	/* at mark on input */
1111541Srgrimes
1121541Srgrimes#define	SS_PRIV			0x080	/* privileged for broadcast, raw... */
1131541Srgrimes#define	SS_NBIO			0x100	/* non-blocking ops */
1141541Srgrimes#define	SS_ASYNC		0x200	/* async i/o notify */
1151541Srgrimes#define	SS_ISCONFIRMING		0x400	/* deciding to accept connection req */
1161541Srgrimes
1171541Srgrimes
1181541Srgrimes/*
1191541Srgrimes * Macros for sockets and socket buffering.
1201541Srgrimes */
1211541Srgrimes
1221541Srgrimes/*
1231541Srgrimes * How much space is there in a socket buffer (so->so_snd or so->so_rcv)?
1241541Srgrimes * This is problematical if the fields are unsigned, as the space might
1251541Srgrimes * still be negative (cc > hiwat or mbcnt > mbmax).  Should detect
1261541Srgrimes * overflow and return 0.  Should use "lmin" but it doesn't exist now.
1271541Srgrimes */
1281541Srgrimes#define	sbspace(sb) \
1291541Srgrimes    ((long) imin((int)((sb)->sb_hiwat - (sb)->sb_cc), \
1301541Srgrimes	 (int)((sb)->sb_mbmax - (sb)->sb_mbcnt)))
1311541Srgrimes
1321541Srgrimes/* do we have to send all at once on a socket? */
1331541Srgrimes#define	sosendallatonce(so) \
1341541Srgrimes    ((so)->so_proto->pr_flags & PR_ATOMIC)
1351541Srgrimes
1361541Srgrimes/* can we read something from so? */
1371541Srgrimes#define	soreadable(so) \
1381541Srgrimes    ((so)->so_rcv.sb_cc >= (so)->so_rcv.sb_lowat || \
1391541Srgrimes	((so)->so_state & SS_CANTRCVMORE) || \
1401541Srgrimes	(so)->so_qlen || (so)->so_error)
1411541Srgrimes
1421541Srgrimes/* can we write something to so? */
1431541Srgrimes#define	sowriteable(so) \
1441541Srgrimes    (sbspace(&(so)->so_snd) >= (so)->so_snd.sb_lowat && \
1451541Srgrimes	(((so)->so_state&SS_ISCONNECTED) || \
1461541Srgrimes	  ((so)->so_proto->pr_flags&PR_CONNREQUIRED)==0) || \
1471541Srgrimes     ((so)->so_state & SS_CANTSENDMORE) || \
1481541Srgrimes     (so)->so_error)
1491541Srgrimes
1501541Srgrimes/* adjust counters in sb reflecting allocation of m */
1511541Srgrimes#define	sballoc(sb, m) { \
1521541Srgrimes	(sb)->sb_cc += (m)->m_len; \
1531541Srgrimes	(sb)->sb_mbcnt += MSIZE; \
1541541Srgrimes	if ((m)->m_flags & M_EXT) \
1551541Srgrimes		(sb)->sb_mbcnt += (m)->m_ext.ext_size; \
1561541Srgrimes}
1571541Srgrimes
1581541Srgrimes/* adjust counters in sb reflecting freeing of m */
1591541Srgrimes#define	sbfree(sb, m) { \
1601541Srgrimes	(sb)->sb_cc -= (m)->m_len; \
1611541Srgrimes	(sb)->sb_mbcnt -= MSIZE; \
1621541Srgrimes	if ((m)->m_flags & M_EXT) \
1631541Srgrimes		(sb)->sb_mbcnt -= (m)->m_ext.ext_size; \
1641541Srgrimes}
1651541Srgrimes
1661541Srgrimes/*
1671541Srgrimes * Set lock on sockbuf sb; sleep if lock is already held.
1681541Srgrimes * Unless SB_NOINTR is set on sockbuf, sleep is interruptible.
1691541Srgrimes * Returns error without lock if sleep is interrupted.
1701541Srgrimes */
1711541Srgrimes#define sblock(sb, wf) ((sb)->sb_flags & SB_LOCK ? \
1721541Srgrimes		(((wf) == M_WAITOK) ? sb_lock(sb) : EWOULDBLOCK) : \
1731541Srgrimes		((sb)->sb_flags |= SB_LOCK), 0)
1741541Srgrimes
1751541Srgrimes/* release lock on sockbuf sb */
1761541Srgrimes#define	sbunlock(sb) { \
1771541Srgrimes	(sb)->sb_flags &= ~SB_LOCK; \
1781541Srgrimes	if ((sb)->sb_flags & SB_WANT) { \
1791541Srgrimes		(sb)->sb_flags &= ~SB_WANT; \
1801541Srgrimes		wakeup((caddr_t)&(sb)->sb_flags); \
1811541Srgrimes	} \
1821541Srgrimes}
1831541Srgrimes
1841541Srgrimes#define	sorwakeup(so)	{ sowakeup((so), &(so)->so_rcv); \
1851541Srgrimes			  if ((so)->so_upcall) \
1861541Srgrimes			    (*((so)->so_upcall))((so), (so)->so_upcallarg, M_DONTWAIT); \
1871541Srgrimes			}
1881541Srgrimes
1891541Srgrimes#define	sowwakeup(so)	sowakeup((so), &(so)->so_snd)
1901541Srgrimes
1911541Srgrimes#ifdef KERNEL
1922112Swollmanextern u_long	sb_max;
1931541Srgrimes/* to catch callers missing new second argument to sonewconn: */
1941541Srgrimes#define	sonewconn(head, connstatus)	sonewconn1((head), (connstatus))
1951541Srgrimesstruct	socket *sonewconn1 __P((struct socket *head, int connstatus));
1961541Srgrimes
1971541Srgrimes/* strings for sleep message: */
1981541Srgrimesextern	char netio[], netcon[], netcls[];
1991541Srgrimes
2001541Srgrimes/*
2011541Srgrimes * File operations on sockets.
2021541Srgrimes */
2031541Srgrimesint	soo_read __P((struct file *fp, struct uio *uio, struct ucred *cred));
2041541Srgrimesint	soo_write __P((struct file *fp, struct uio *uio, struct ucred *cred));
2051541Srgrimesint	soo_ioctl __P((struct file *fp, int com, caddr_t data, struct proc *p));
2061541Srgrimesint	soo_select __P((struct file *fp, int which, struct proc *p));
2071541Srgrimesint 	soo_close __P((struct file *fp, struct proc *p));
2081541Srgrimes#endif
209