Home | History | Annotate | Line # | Download | only in kern
sys_socket.c revision 1.44
      1 /*	$NetBSD: sys_socket.c,v 1.44 2005/12/07 06:05:20 thorpej 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. Neither the name of the University nor the names of its contributors
     16  *    may be used to endorse or promote products derived from this software
     17  *    without specific prior written permission.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  * SUCH DAMAGE.
     30  *
     31  *	@(#)sys_socket.c	8.3 (Berkeley) 2/14/95
     32  */
     33 
     34 #include <sys/cdefs.h>
     35 __KERNEL_RCSID(0, "$NetBSD: sys_socket.c,v 1.44 2005/12/07 06:05:20 thorpej Exp $");
     36 
     37 #include <sys/param.h>
     38 #include <sys/systm.h>
     39 #include <sys/file.h>
     40 #include <sys/mbuf.h>
     41 #include <sys/protosw.h>
     42 #include <sys/socket.h>
     43 #include <sys/socketvar.h>
     44 #include <sys/ioctl.h>
     45 #include <sys/stat.h>
     46 #include <sys/poll.h>
     47 #include <sys/proc.h>
     48 
     49 #include <net/if.h>
     50 #include <net/route.h>
     51 
     52 struct	fileops socketops = {
     53 	soo_read, soo_write, soo_ioctl, soo_fcntl, soo_poll,
     54 	soo_stat, soo_close, soo_kqfilter
     55 };
     56 
     57 /* ARGSUSED */
     58 int
     59 soo_read(struct file *fp, off_t *offset, struct uio *uio, struct ucred *cred,
     60     int flags)
     61 {
     62 	struct socket *so = (struct socket *) fp->f_data;
     63 	return ((*so->so_receive)(so, (struct mbuf **)0,
     64 		uio, (struct mbuf **)0, (struct mbuf **)0, (int *)0));
     65 }
     66 
     67 /* ARGSUSED */
     68 int
     69 soo_write(struct file *fp, off_t *offset, struct uio *uio, struct ucred *cred,
     70     int flags)
     71 {
     72 	struct socket *so = (struct socket *) fp->f_data;
     73 	return ((*so->so_send)(so, (struct mbuf *)0,
     74 		uio, (struct mbuf *)0, (struct mbuf *)0, 0, uio->uio_procp));
     75 }
     76 
     77 int
     78 soo_ioctl(struct file *fp, u_long cmd, void *data, struct proc *p)
     79 {
     80 	struct socket *so = (struct socket *)fp->f_data;
     81 
     82 	switch (cmd) {
     83 
     84 	case FIONBIO:
     85 		if (*(int *)data)
     86 			so->so_state |= SS_NBIO;
     87 		else
     88 			so->so_state &= ~SS_NBIO;
     89 		return (0);
     90 
     91 	case FIOASYNC:
     92 		if (*(int *)data) {
     93 			so->so_state |= SS_ASYNC;
     94 			so->so_rcv.sb_flags |= SB_ASYNC;
     95 			so->so_snd.sb_flags |= SB_ASYNC;
     96 		} else {
     97 			so->so_state &= ~SS_ASYNC;
     98 			so->so_rcv.sb_flags &= ~SB_ASYNC;
     99 			so->so_snd.sb_flags &= ~SB_ASYNC;
    100 		}
    101 		return (0);
    102 
    103 	case FIONREAD:
    104 		*(int *)data = so->so_rcv.sb_cc;
    105 		return (0);
    106 
    107 	case FIONWRITE:
    108 		*(int *)data = so->so_snd.sb_cc;
    109 		return (0);
    110 
    111 	case FIONSPACE:
    112 		/*
    113 		 * See the comment around sbspace()'s definition
    114 		 * in sys/socketvar.h in face of counts about maximum
    115 		 * to understand the following test. We detect overflow
    116 		 * and return zero.
    117 		 */
    118 		if ((so->so_snd.sb_hiwat < so->so_snd.sb_cc)
    119 		    || (so->so_snd.sb_mbmax < so->so_snd.sb_mbcnt))
    120 			*(int *)data = 0;
    121 		else
    122 			*(int *)data = sbspace(&so->so_snd);
    123 		return (0);
    124 
    125 	case SIOCSPGRP:
    126 	case FIOSETOWN:
    127 	case TIOCSPGRP:
    128 		return fsetown(p, &so->so_pgid, cmd, data);
    129 
    130 	case SIOCGPGRP:
    131 	case FIOGETOWN:
    132 	case TIOCGPGRP:
    133 		return fgetown(p, so->so_pgid, cmd, data);
    134 
    135 	case SIOCATMARK:
    136 		*(int *)data = (so->so_state&SS_RCVATMARK) != 0;
    137 		return (0);
    138 	}
    139 	/*
    140 	 * Interface/routing/protocol specific ioctls:
    141 	 * interface and routing ioctls should have a
    142 	 * different entry since a socket's unnecessary
    143 	 */
    144 	if (IOCGROUP(cmd) == 'i')
    145 		return (ifioctl(so, cmd, data, p));
    146 	if (IOCGROUP(cmd) == 'r')
    147 		return (rtioctl(cmd, data, p));
    148 	return ((*so->so_proto->pr_usrreq)(so, PRU_CONTROL,
    149 	    (struct mbuf *)cmd, (struct mbuf *)data, (struct mbuf *)0, p));
    150 }
    151 
    152 int
    153 soo_fcntl(struct file *fp, u_int cmd, void *data, struct proc *p)
    154 {
    155 	if (cmd == F_SETFL)
    156 		return (0);
    157 	else
    158 		return (EOPNOTSUPP);
    159 }
    160 
    161 int
    162 soo_poll(struct file *fp, int events, 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 (sowritable(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(struct file *fp, struct stat *ub, struct proc *p)
    198 {
    199 	struct socket *so = (struct socket *)fp->f_data;
    200 
    201 	memset((caddr_t)ub, 0, sizeof(*ub));
    202 	ub->st_mode = S_IFSOCK;
    203 	return ((*so->so_proto->pr_usrreq)(so, PRU_SENSE,
    204 	    (struct mbuf *)ub, (struct mbuf *)0, (struct mbuf *)0, p));
    205 }
    206 
    207 /* ARGSUSED */
    208 int
    209 soo_close(struct file *fp, struct proc *p)
    210 {
    211 	int error = 0;
    212 
    213 	if (fp->f_data)
    214 		error = soclose((struct socket *)fp->f_data);
    215 	fp->f_data = 0;
    216 	return (error);
    217 }
    218