As discussed in tech-kern, provide the means to prevent delivery of SIGPIPE

on EPIPE for all file descriptor types:

- provide O_NOSIGPIPE for open,kqueue1,pipe2,dup3,fcntl(F_{G,S}ETFL) [NetBSD]
- provide SOCK_NOSIGPIPE for socket,socketpair [NetBSD]
- provide SO_NOSIGPIPE for {g,s}seckopt [NetBSD/FreeBSD/MacOSX]
- provide F_{G,S}ETNOSIGPIPE for fcntl [MacOSX]
This commit is contained in:
christos 2012-01-25 00:28:35 +00:00
parent d716fa09ba
commit 5418d2a724
17 changed files with 149 additions and 74 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: dup.2,v 1.27 2011/07/22 11:02:39 wiz Exp $
.\" $NetBSD: dup.2,v 1.28 2012/01/25 00:28:35 christos Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -29,7 +29,7 @@
.\"
.\" @(#)dup.2 8.1 (Berkeley) 6/4/93
.\"
.Dd July 16, 2011
.Dd January 23, 2012
.Dt DUP 2
.Os
.Sh NAME
@ -118,6 +118,11 @@ Set the
property.
.It Dv O_NONBLOCK
Sets non-blocking I/O.
.It Dv O_NOSIGPIPE
Return
.Er EPIPE
instead of raising
.Dv SIGPIPE .
.El
.Sh RETURN VALUES
The value \-1 is returned if an error occurs in either call.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: fcntl.2,v 1.39 2011/06/27 08:21:08 wiz Exp $
.\" $NetBSD: fcntl.2,v 1.40 2012/01/25 00:28:35 christos Exp $
.\"
.\" Copyright (c) 1983, 1993
.\" The Regents of the University of California. All rights reserved.
@ -29,7 +29,7 @@
.\"
.\" @(#)fcntl.2 8.2 (Berkeley) 1/12/94
.\"
.Dd June 25, 2011
.Dd January 23, 2012
.Dt FCNTL 2
.Os
.Sh NAME
@ -146,35 +146,32 @@ Close all file descriptors greater than or equal to
.Ar fd .
.It Dv F_MAXFD
Return the maximum file descriptor number currently open by the process.
.It Dv F_GETNOSIGPIPE
Return if the
.Dv O_NOSIGPIPE
flag is set in the file descriptor.
.It Dv F_SETNOSIGPIPE
Set or clear the
.Dv O_NOSIGPIPE
in the file descriptor.
.El
.Pp
The flags for the
The set of valid flags for the
.Dv F_GETFL
and
.Dv F_SETFL
flags are as follows:
.Bl -tag -width O_NONBLOCKX
.It Dv O_NONBLOCK
Non-blocking I/O; if no data is available to a
.Xr read 2
call, or if a
.Xr write 2
operation would block,
the read or write call returns \-1 with the error
.Er EAGAIN .
.It Dv O_APPEND
Force each write to append at the end of file;
corresponds to the
.Dv O_APPEND
flag of
.Dv O_APPEND ,
.Dv O_ASYNC ,
.Dv O_FSYNC ,
.Dv O_NONBLOCK ,
.Dv O_DSYNC ,
.Dv O_RSYNC ,
.Dv O_ALT_IO ,
.Dv O_DIRECT ,
.Dv O_NOSIGPIPE .
These flags are described in
.Xr open 2 .
.It Dv O_ASYNC
Enable the
.Dv SIGIO
signal to be sent to the process group
when I/O is possible, e.g.,
upon availability of data to be read.
.El
.Pp
Several commands are available for doing advisory file locking;
they all operate on the following structure:

View File

@ -1,4 +1,4 @@
.\" $NetBSD: getsockopt.2,v 1.34 2009/06/29 08:38:07 wiz Exp $
.\" $NetBSD: getsockopt.2,v 1.35 2012/01/25 00:28:35 christos Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -29,7 +29,7 @@
.\"
.\" @(#)getsockopt.2 8.4 (Berkeley) 5/2/95
.\"
.Dd June 28, 2009
.Dd January 23, 2012
.Dt GETSOCKOPT 2
.Os
.Sh NAME
@ -167,6 +167,10 @@ and set with
.It Dv SO_RCVTIMEO Ta "set timeout value for input"
.It Dv SO_TIMESTAMP Ta "enables reception of a timestamp with datagrams"
.It Dv SO_ACCEPTFILTER Ta "set accept filter on listening socket"
.It Dv SO_NOSIGPIPE Ta
controls generation of
.Dv SIGPIPE
for the socket
.It Dv SO_TYPE Ta "get the type of the socket (get only)"
.It Dv SO_ERROR Ta "get and clear error on the socket (get only)"
.El

View File

@ -1,4 +1,4 @@
.\" $NetBSD: kqueue.2,v 1.31 2011/06/26 16:42:41 christos Exp $
.\" $NetBSD: kqueue.2,v 1.32 2012/01/25 00:28:35 christos Exp $
.\"
.\" Copyright (c) 2000 Jonathan Lemon
.\" All rights reserved.
@ -32,7 +32,7 @@
.\"
.\" $FreeBSD: src/lib/libc/sys/kqueue.2,v 1.22 2001/06/27 19:55:57 dd Exp $
.\"
.Dd June 24, 2011
.Dd January 23, 2012
.Dt KQUEUE 2
.Os
.Sh NAME
@ -92,6 +92,11 @@ on the returned file descriptor:
Set the close on exec property.
.It Dv O_NONBLOCK
Sets non-blocking I/O.
.It Dv O_NOSIGPIPE
Return
.Er EPIPE
instead of raising
.Dv SIGPIPE .
.El
The queue is not inherited by a child created with
.Xr fork 2 .

View File

@ -1,4 +1,4 @@
.\" $NetBSD: open.2,v 1.50 2011/04/20 19:57:58 christos Exp $
.\" $NetBSD: open.2,v 1.51 2012/01/25 00:28:35 christos Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -29,7 +29,7 @@
.\"
.\" @(#)open.2 8.2 (Berkeley) 11/16/93
.\"
.Dd April 20, 2011
.Dd January 23, 2012
.Dt OPEN 2
.Os
.Sh NAME
@ -99,6 +99,11 @@ Set the
on
.Xr exec 3
flag.
.It Dv O_NOSIGPIPE
Return
.Er EPIPE
instead of raising
.Dv SIGPIPE .
.It Dv O_DSYNC
If set, write operations will be performed according to synchronized
I/O data integrity completion:
@ -153,6 +158,12 @@ using an interface that supports scatter/gather via struct iovec, each
element of the request must meet the above alignment constraints.
.It Dv O_DIRECTORY
Fail if the file is not a directory.
.It Dv O_ASYNC
Enable the
.Dv SIGIO
signal to be sent to the process group
when I/O is possible, e.g.,
upon availability of data to be read.
.El
.Pp
Opening a file with

View File

@ -1,4 +1,4 @@
.\" $NetBSD: pipe.2,v 1.27 2011/07/22 11:02:39 wiz Exp $
.\" $NetBSD: pipe.2,v 1.28 2012/01/25 00:28:35 christos Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -29,7 +29,7 @@
.\"
.\" @(#)pipe.2 8.1 (Berkeley) 6/4/93
.\"
.Dd July 15, 2011
.Dd January 23, 2012
.Dt PIPE 2
.Os
.Sh NAME
@ -97,6 +97,11 @@ Set the
property.
.It Dv O_NONBLOCK
Sets non-blocking I/O.
.It Dv O_NOSIGPIPE
Return
.Er EPIPE
instead of raising
.Dv SIGPIPE .
.El
.Sh RETURN VALUES
On successful creation of the pipe, zero is returned.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: socket.2,v 1.37 2011/06/26 16:42:41 christos Exp $
.\" $NetBSD: socket.2,v 1.38 2012/01/25 00:28:35 christos Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -86,6 +86,11 @@ The following flags are valid:
Set the close on exec property.
.It Dv SOCK_NONBLOCK
Sets non-blocking I/O.
.It Dv SOCK_NOSIGPIPE
Return
.Er EPIPE
instead of raising
.Dv SIGPIPE .
.El
.Pp
A

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_descrip.c,v 1.217 2011/09/25 13:40:37 chs Exp $ */
/* $NetBSD: kern_descrip.c,v 1.218 2012/01/25 00:28:35 christos Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_descrip.c,v 1.217 2011/09/25 13:40:37 chs Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_descrip.c,v 1.218 2012/01/25 00:28:35 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -500,22 +500,27 @@ fd_getvnode(unsigned fd, file_t **fpp)
* to a socket.
*/
int
fd_getsock(unsigned fd, struct socket **sop)
fd_getsock1(unsigned fd, struct socket **sop, file_t **fp)
{
file_t *fp;
fp = fd_getfile(fd);
if (__predict_false(fp == NULL)) {
*fp = fd_getfile(fd);
if (__predict_false(*fp == NULL)) {
return EBADF;
}
if (__predict_false(fp->f_type != DTYPE_SOCKET)) {
if (__predict_false((*fp)->f_type != DTYPE_SOCKET)) {
fd_putfile(fd);
return ENOTSOCK;
}
*sop = fp->f_data;
*sop = (*fp)->f_data;
return 0;
}
int
fd_getsock(unsigned fd, struct socket **sop)
{
file_t *fp;
return fd_getsock1(fd, sop, &fp);
}
/*
* Look up the file structure corresponding to a file descriptor
* and return it with a reference held on the file, not the

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_event.c,v 1.74 2011/11/17 22:41:55 rmind Exp $ */
/* $NetBSD: kern_event.c,v 1.75 2012/01/25 00:28:35 christos Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@ -58,7 +58,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_event.c,v 1.74 2011/11/17 22:41:55 rmind Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_event.c,v 1.75 2012/01/25 00:28:35 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -725,7 +725,7 @@ kqueue1(struct lwp *l, int flags, register_t *retval)
if ((error = fd_allocfile(&fp, &fd)) != 0)
return error;
fp->f_flag = FREAD | FWRITE | (flags & FNONBLOCK);
fp->f_flag = FREAD | FWRITE | (flags & (FNONBLOCK|FNOSIGPIPE));
fp->f_type = DTYPE_KQUEUE;
fp->f_ops = &kqueueops;
kq = kmem_zalloc(sizeof(*kq), KM_SLEEP);

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_descrip.c,v 1.23 2011/10/31 21:31:29 christos Exp $ */
/* $NetBSD: sys_descrip.c,v 1.24 2012/01/25 00:28:36 christos Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sys_descrip.c,v 1.23 2011/10/31 21:31:29 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: sys_descrip.c,v 1.24 2012/01/25 00:28:36 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -403,6 +403,18 @@ sys_fcntl(struct lwp *l, const struct sys_fcntl_args *uap, register_t *retval)
((long)SCARG(uap, arg) & FD_CLOEXEC) != 0);
break;
case F_GETNOSIGPIPE:
*retval = (fp->f_flag & FNOSIGPIPE) != 0;
break;
case F_SETNOSIGPIPE:
if (SCARG(uap, arg))
fp->f_flag |= FNOSIGPIPE;
else
fp->f_flag &= ~FNOSIGPIPE;
*retval = 0;
break;
case F_GETFL:
*retval = OFLAGS(fp->f_flag);
break;

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_generic.c,v 1.127 2011/07/27 14:35:34 uebayasi Exp $ */
/* $NetBSD: sys_generic.c,v 1.128 2012/01/25 00:28:36 christos Exp $ */
/*-
* Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sys_generic.c,v 1.127 2011/07/27 14:35:34 uebayasi Exp $");
__KERNEL_RCSID(0, "$NetBSD: sys_generic.c,v 1.128 2012/01/25 00:28:36 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -357,7 +357,7 @@ dofilewrite(int fd, struct file *fp, const void *buf,
if (auio.uio_resid != cnt && (error == ERESTART ||
error == EINTR || error == EWOULDBLOCK))
error = 0;
if (error == EPIPE) {
if (error == EPIPE && !(fp->f_flag & FNOSIGPIPE)) {
mutex_enter(proc_lock);
psignal(curproc, SIGPIPE);
mutex_exit(proc_lock);
@ -484,7 +484,7 @@ do_filewritev(int fd, const struct iovec *iovp, int iovcnt,
if (auio.uio_resid != cnt && (error == ERESTART ||
error == EINTR || error == EWOULDBLOCK))
error = 0;
if (error == EPIPE) {
if (error == EPIPE && !(fp->f_flag & FNOSIGPIPE)) {
mutex_enter(proc_lock);
psignal(curproc, SIGPIPE);
mutex_exit(proc_lock);

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_pipe.c,v 1.134 2011/10/20 18:18:21 njoly Exp $ */
/* $NetBSD: sys_pipe.c,v 1.135 2012/01/25 00:28:36 christos Exp $ */
/*-
* Copyright (c) 2003, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.134 2011/10/20 18:18:21 njoly Exp $");
__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.135 2012/01/25 00:28:36 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -251,7 +251,7 @@ pipe1(struct lwp *l, register_t *retval, int flags)
int fd, error;
proc_t *p;
if (flags & ~(O_CLOEXEC|O_NONBLOCK))
if (flags & ~(O_CLOEXEC|O_NONBLOCK|O_NOSIGPIPE))
return EINVAL;
p = curproc;
rpipe = wpipe = NULL;

View File

@ -1,4 +1,4 @@
/* $NetBSD: uipc_socket.c,v 1.206 2011/12/20 23:56:28 christos Exp $ */
/* $NetBSD: uipc_socket.c,v 1.207 2012/01/25 00:28:36 christos Exp $ */
/*-
* Copyright (c) 2002, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@ -63,7 +63,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.206 2011/12/20 23:56:28 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.207 2012/01/25 00:28:36 christos Exp $");
#include "opt_compat_netbsd.h"
#include "opt_sock_counters.h"
@ -589,7 +589,8 @@ fsocreate(int domain, struct socket **sop, int type, int protocol,
if ((error = fd_allocfile(&fp, &fd)) != 0)
return error;
fd_set_exclose(l, fd, (flags & SOCK_CLOEXEC) != 0);
fp->f_flag = FREAD|FWRITE|((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0);
fp->f_flag = FREAD|FWRITE|((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
fp->f_type = DTYPE_SOCKET;
fp->f_ops = &socketops;
error = socreate(domain, &so, type, protocol, l, NULL);
@ -1719,6 +1720,7 @@ sosetopt1(struct socket *so, const struct sockopt *sopt)
case SO_REUSEPORT:
case SO_OOBINLINE:
case SO_TIMESTAMP:
case SO_NOSIGPIPE:
#ifdef SO_OTIMESTAMP
case SO_OTIMESTAMP:
#endif
@ -1919,6 +1921,7 @@ sogetopt1(struct socket *so, struct sockopt *sopt)
case SO_BROADCAST:
case SO_OOBINLINE:
case SO_TIMESTAMP:
case SO_NOSIGPIPE:
#ifdef SO_OTIMESTAMP
case SO_OTIMESTAMP:
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: uipc_syscalls.c,v 1.150 2011/12/21 15:26:57 christos Exp $ */
/* $NetBSD: uipc_syscalls.c,v 1.151 2012/01/25 00:28:36 christos Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.150 2011/12/21 15:26:57 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.151 2012/01/25 00:28:36 christos Exp $");
#include "opt_pipe.h"
@ -229,7 +229,8 @@ do_sys_accept(struct lwp *l, int sock, struct mbuf **name, register_t *new_sock,
panic("accept");
fp2->f_type = DTYPE_SOCKET;
fp2->f_flag = (fp->f_flag & ~clrflags) |
((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0);
((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
fp2->f_ops = &socketops;
fp2->f_data = so2;
error = soaccept(so2, nam);
@ -407,7 +408,6 @@ makesocket(struct lwp *l, file_t **fp, int *fd, int flags, int type,
{
int error;
struct socket *so;
int fnonblock = (flags & SOCK_NONBLOCK) ? FNONBLOCK : 0;
if ((error = socreate(domain, &so, type, proto, l, soo)) != 0)
return error;
@ -417,7 +417,9 @@ makesocket(struct lwp *l, file_t **fp, int *fd, int flags, int type,
return error;
}
fd_set_exclose(l, *fd, (flags & SOCK_CLOEXEC) != 0);
(*fp)->f_flag = FREAD|FWRITE|fnonblock;
(*fp)->f_flag = FREAD|FWRITE|
((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
(*fp)->f_type = DTYPE_SOCKET;
(*fp)->f_ops = &socketops;
(*fp)->f_data = so;
@ -533,6 +535,7 @@ do_sys_sendmsg(struct lwp *l, int s, struct msghdr *mp, int flags,
struct iovec aiov[UIO_SMALLIOV], *iov = aiov, *tiov, *ktriov = NULL;
struct mbuf *to, *control;
struct socket *so;
file_t *fp;
struct uio auio;
size_t len, iovsz;
int i, error;
@ -606,7 +609,7 @@ do_sys_sendmsg(struct lwp *l, int s, struct msghdr *mp, int flags,
memcpy(ktriov, auio.uio_iov, iovsz);
}
if ((error = fd_getsock(s, &so)) != 0)
if ((error = fd_getsock1(s, &so, &fp)) != 0)
goto bad;
if (mp->msg_name)
@ -625,7 +628,8 @@ do_sys_sendmsg(struct lwp *l, int s, struct msghdr *mp, int flags,
if (auio.uio_resid != len && (error == ERESTART ||
error == EINTR || error == EWOULDBLOCK))
error = 0;
if (error == EPIPE && (flags & MSG_NOSIGNAL) == 0) {
if (error == EPIPE && (fp->f_flag & FNOSIGPIPE) == 0 &&
(flags & MSG_NOSIGNAL) == 0) {
mutex_enter(proc_lock);
psignal(l->l_proc, SIGPIPE);
mutex_exit(proc_lock);
@ -946,6 +950,7 @@ sys_setsockopt(struct lwp *l, const struct sys_setsockopt_args *uap, register_t
} */
struct sockopt sopt;
struct socket *so;
file_t *fp;
int error;
unsigned int len;
@ -956,7 +961,7 @@ sys_setsockopt(struct lwp *l, const struct sys_setsockopt_args *uap, register_t
if (len > MCLBYTES)
return (EINVAL);
if ((error = fd_getsock(SCARG(uap, s), &so)) != 0)
if ((error = fd_getsock1(SCARG(uap, s), &so, &fp)) != 0)
return (error);
sockopt_init(&sopt, SCARG(uap, level), SCARG(uap, name), len);
@ -968,6 +973,10 @@ sys_setsockopt(struct lwp *l, const struct sys_setsockopt_args *uap, register_t
}
error = sosetopt(so, &sopt);
if (so->so_options & SO_NOSIGPIPE)
fp->f_flag |= FNOSIGPIPE;
else
fp->f_flag &= ~FNOSIGPIPE;
out:
sockopt_destroy(&sopt);
@ -988,6 +997,7 @@ sys_getsockopt(struct lwp *l, const struct sys_getsockopt_args *uap, register_t
} */
struct sockopt sopt;
struct socket *so;
file_t *fp;
unsigned int valsize, len;
int error;
@ -998,11 +1008,15 @@ sys_getsockopt(struct lwp *l, const struct sys_getsockopt_args *uap, register_t
} else
valsize = 0;
if ((error = fd_getsock(SCARG(uap, s), &so)) != 0)
if ((error = fd_getsock1(SCARG(uap, s), &so, &fp)) != 0)
return (error);
sockopt_init(&sopt, SCARG(uap, level), SCARG(uap, name), 0);
if (fp->f_flag & FNOSIGPIPE)
so->so_options |= SO_NOSIGPIPE;
else
so->so_options &= ~SO_NOSIGPIPE;
error = sogetopt(so, &sopt);
if (error)
goto out;
@ -1034,7 +1048,7 @@ pipe1(struct lwp *l, register_t *retval, int flags)
int fd, error;
proc_t *p;
if (flags & ~(O_CLOEXEC|O_NONBLOCK))
if (flags & ~(O_CLOEXEC|O_NONBLOCK|O_NOSIGPIPE))
return EINVAL;
p = curproc;
if ((error = socreate(AF_LOCAL, &rso, SOCK_STREAM, 0, l, NULL)) != 0)

View File

@ -1,4 +1,4 @@
/* $NetBSD: fcntl.h,v 1.41 2011/08/09 04:19:17 manu Exp $ */
/* $NetBSD: fcntl.h,v 1.42 2012/01/25 00:28:35 christos Exp $ */
/*-
* Copyright (c) 1983, 1990, 1993
@ -117,6 +117,9 @@
#if defined(_INCOMPLETE_XOPEN_C063) || defined(_KERNEL)
#define O_SEARCH 0x00800000 /* skip search permission checks */
#endif
#if defined(_NETBSD_SOURCE)
#define O_NOSIGPIPE 0x01000000 /* don't deliver sigpipe */
#endif
#ifdef _KERNEL
/* convert from open() flags to/from fflags; convert O_RD/WR to FREAD/FWRITE */
@ -127,7 +130,7 @@
#define O_MASK (O_ACCMODE|O_NONBLOCK|O_APPEND|O_SHLOCK|O_EXLOCK|\
O_ASYNC|O_SYNC|O_CREAT|O_TRUNC|O_EXCL|O_DSYNC|\
O_RSYNC|O_NOCTTY|O_ALT_IO|O_NOFOLLOW|O_DIRECT|\
O_DIRECTORY|O_CLOEXEC)
O_DIRECTORY|O_CLOEXEC|O_NOSIGPIPE)
#define FMARK 0x00001000 /* mark during gc() */
#define FDEFER 0x00002000 /* defer for next gc pass */
@ -137,7 +140,7 @@
#define FKIOCTL 0x80000000 /* kernel originated ioctl */
/* bits settable by fcntl(F_SETFL, ...) */
#define FCNTLFLAGS (FAPPEND|FASYNC|FFSYNC|FNONBLOCK|FDSYNC|FRSYNC|FALTIO|\
FDIRECT)
FDIRECT|FNOSIGPIPE)
/* bits to save after open(2) */
#define FMASK (FREAD|FWRITE|FCNTLFLAGS)
#endif /* _KERNEL */
@ -155,6 +158,7 @@
#define O_NDELAY O_NONBLOCK /* compat */
#endif
#if defined(_KERNEL)
#define FNOSIGPIPE O_NOSIGPIPE /* kernel */
#define FNONBLOCK O_NONBLOCK /* kernel */
#define FFSYNC O_SYNC /* kernel */
#define FDSYNC O_DSYNC /* kernel */
@ -185,6 +189,8 @@
#define F_CLOSEM 10 /* close all fds >= to the one given */
#define F_MAXFD 11 /* return the max open fd */
#define F_DUPFD_CLOEXEC 12 /* close on exec duplicated fd */
#define F_GETNOSIGPIPE 13 /* get SIGPIPE disposition */
#define F_SETNOSIGPIPE 14 /* set SIGPIPE disposition */
#endif
/* file descriptor flags (F_GETFD, F_SETFD) */

View File

@ -1,4 +1,4 @@
/* $NetBSD: filedesc.h,v 1.61 2011/06/26 16:43:12 christos Exp $ */
/* $NetBSD: filedesc.h,v 1.62 2012/01/25 00:28:35 christos Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -200,6 +200,7 @@ file_t *fd_getfile2(proc_t *, unsigned);
void fd_putfile(unsigned);
int fd_getvnode(unsigned, file_t **);
int fd_getsock(unsigned, struct socket **);
int fd_getsock1(unsigned, struct socket **, file_t **);
void fd_putvnode(unsigned);
void fd_putsock(unsigned);
int fd_close(unsigned);

View File

@ -1,4 +1,4 @@
/* $NetBSD: socket.h,v 1.104 2012/01/20 14:08:07 joerg Exp $ */
/* $NetBSD: socket.h,v 1.105 2012/01/25 00:28:35 christos Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -110,6 +110,7 @@ typedef _BSD_SSIZE_T_ ssize_t;
#define SOCK_CLOEXEC 0x10000000 /* set close on exec on socket */
#define SOCK_NONBLOCK 0x20000000 /* set non blocking i/o socket */
#define SOCK_NOSIGPIPE 0x40000000 /* don't send sigpipe */
#define SOCK_FLAGS_MASK 0xf0000000 /* flags mask */
/*
@ -126,6 +127,7 @@ typedef _BSD_SSIZE_T_ ssize_t;
#define SO_OOBINLINE 0x0100 /* leave received OOB data in line */
#define SO_REUSEPORT 0x0200 /* allow local address & port reuse */
/* SO_OTIMESTAMP 0x0400 */
#define SO_NOSIGPIPE 0x0800 /* no SIGPIPE from EPIPE */
#define SO_ACCEPTFILTER 0x1000 /* there is an accept filter */
#define SO_TIMESTAMP 0x2000 /* timestamp received dgram traffic */