Home | History | Annotate | Line # | Download | only in kern
sys_socket.c revision 1.31.2.1
      1 /*	$NetBSD: sys_socket.c,v 1.31.2.1 2001/07/10 13:43:33 lukem Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1982, 1986, 1990, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *	This product includes software developed by the University of
     18  *	California, Berkeley and its contributors.
     19  * 4. Neither the name of the University nor the names of its contributors
     20  *    may be used to endorse or promote products derived from this software
     21  *    without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  * SUCH DAMAGE.
     34  *
     35  *	@(#)sys_socket.c	8.3 (Berkeley) 2/14/95
     36  */
     37 
     38 #include <sys/param.h>
     39 #include <sys/systm.h>
     40 #include <sys/file.h>
     41 #include <sys/mbuf.h>
     42 #include <sys/protosw.h>
     43 #include <sys/socket.h>
     44 #include <sys/socketvar.h>
     45 #include <sys/ioctl.h>
     46 #include <sys/stat.h>
     47 #include <sys/poll.h>
     48 #include <sys/proc.h>
     49 
     50 #include <net/if.h>
     51 #include <net/route.h>
     52 
     53 struct	fileops socketops = {
     54 	soo_read, soo_write, soo_ioctl, soo_fcntl, soo_poll,
     55 	soo_stat, soo_close, soo_kqfilter
     56 };
     57 
     58 /* ARGSUSED */
     59 int
     60 soo_read(fp, offset, uio, cred, flags)
     61 	struct file *fp;
     62 	off_t *offset;
     63 	struct uio *uio;
     64 	struct ucred *cred;
     65 	int flags;
     66 {
     67 	struct socket *so = (struct socket *) fp->f_data;
     68 	return ((*so->so_receive)(so, (struct mbuf **)0,
     69 		uio, (struct mbuf **)0, (struct mbuf **)0, (int *)0));
     70 }
     71 
     72 /* ARGSUSED */
     73 int
     74 soo_write(fp, offset, uio, cred, flags)
     75 	struct file *fp;
     76 	off_t *offset;
     77 	struct uio *uio;
     78 	struct ucred *cred;
     79 	int flags;
     80 {
     81 	struct socket *so = (struct socket *) fp->f_data;
     82 	return ((*so->so_send)(so, (struct mbuf *)0,
     83 		uio, (struct mbuf *)0, (struct mbuf *)0, 0));
     84 }
     85 
     86 int
     87 soo_ioctl(fp, cmd, data, p)
     88 	struct file *fp;
     89 	u_long cmd;
     90 	caddr_t data;
     91 	struct proc *p;
     92 {
     93 	struct socket *so = (struct socket *)fp->f_data;
     94 
     95 	switch (cmd) {
     96 
     97 	case FIONBIO:
     98 		if (*(int *)data)
     99 			so->so_state |= SS_NBIO;
    100 		else
    101 			so->so_state &= ~SS_NBIO;
    102 		return (0);
    103 
    104 	case FIOASYNC:
    105 		if (*(int *)data) {
    106 			so->so_state |= SS_ASYNC;
    107 			so->so_rcv.sb_flags |= SB_ASYNC;
    108 			so->so_snd.sb_flags |= SB_ASYNC;
    109 		} else {
    110 			so->so_state &= ~SS_ASYNC;
    111 			so->so_rcv.sb_flags &= ~SB_ASYNC;
    112 			so->so_snd.sb_flags &= ~SB_ASYNC;
    113 		}
    114 		return (0);
    115 
    116 	case FIONREAD:
    117 		*(int *)data = so->so_rcv.sb_cc;
    118 		return (0);
    119 
    120 	case SIOCSPGRP:
    121 		so->so_pgid = *(int *)data;
    122 		return (0);
    123 
    124 	case SIOCGPGRP:
    125 		*(int *)data = so->so_pgid;
    126 		return (0);
    127 
    128 	case SIOCATMARK:
    129 		*(int *)data = (so->so_state&SS_RCVATMARK) != 0;
    130 		return (0);
    131 	}
    132 	/*
    133 	 * Interface/routing/protocol specific ioctls:
    134 	 * interface and routing ioctls should have a
    135 	 * different entry since a socket's unnecessary
    136 	 */
    137 	if (IOCGROUP(cmd) == 'i')
    138 		return (ifioctl(so, cmd, data, p));
    139 	if (IOCGROUP(cmd) == 'r')
    140 		return (rtioctl(cmd, data, p));
    141 	return ((*so->so_proto->pr_usrreq)(so, PRU_CONTROL,
    142 	    (struct mbuf *)cmd, (struct mbuf *)data, (struct mbuf *)0, p));
    143 }
    144 
    145 int
    146 soo_fcntl(fp, cmd, data, p)
    147 	struct file *fp;
    148 	u_int cmd;
    149 	caddr_t data;
    150 	struct proc *p;
    151 {
    152 	if (cmd == F_SETFL)
    153 		return (0);
    154 	else
    155 		return (EOPNOTSUPP);
    156 }
    157 
    158 int
    159 soo_poll(fp, events, p)
    160 	struct file *fp;
    161 	int events;
    162 	struct proc *p;
    163 {
    164 	struct socket *so = (struct socket *)fp->f_data;
    165 	int revents = 0;
    166 	int s = splsoftnet();
    167 
    168 	if (events & (POLLIN | POLLRDNORM))
    169 		if (soreadable(so))
    170 			revents |= events & (POLLIN | POLLRDNORM);
    171 
    172 	if (events & (POLLOUT | POLLWRNORM))
    173 		if (sowriteable(so))
    174 			revents |= events & (POLLOUT | POLLWRNORM);
    175 
    176 	if (events & (POLLPRI | POLLRDBAND))
    177 		if (so->so_oobmark || (so->so_state & SS_RCVATMARK))
    178 			revents |= events & (POLLPRI | POLLRDBAND);
    179 
    180 	if (revents == 0) {
    181 		if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
    182 			selrecord(p, &so->so_rcv.sb_sel);
    183 			so->so_rcv.sb_flags |= SB_SEL;
    184 		}
    185 
    186 		if (events & (POLLOUT | POLLWRNORM)) {
    187 			selrecord(p, &so->so_snd.sb_sel);
    188 			so->so_snd.sb_flags |= SB_SEL;
    189 		}
    190 	}
    191 
    192 	splx(s);
    193 	return (revents);
    194 }
    195 
    196 int
    197 soo_stat(fp, ub, p)
    198 	struct file *fp;
    199 	struct stat *ub;
    200 	struct proc *p;
    201 {
    202 	struct socket *so = (struct socket *)fp->f_data;
    203 
    204 	memset((caddr_t)ub, 0, sizeof(*ub));
    205 	ub->st_mode = S_IFSOCK;
    206 	return ((*so->so_proto->pr_usrreq)(so, PRU_SENSE,
    207 	    (struct mbuf *)ub, (struct mbuf *)0, (struct mbuf *)0, p));
    208 }
    209 
    210 /* ARGSUSED */
    211 int
    212 soo_close(fp, p)
    213 	struct file *fp;
    214 	struct proc *p;
    215 {
    216 	int error = 0;
    217 
    218 	if (fp->f_data)
    219 		error = soclose((struct socket *)fp->f_data);
    220 	fp->f_data = 0;
    221 	return (error);
    222 }
    223