2018-01-04 04:42:25 +03:00
|
|
|
/* $NetBSD: uipc_socket.c,v 1.259 2018/01/04 01:42:25 christos Exp $ */
|
2002-05-02 21:55:48 +04:00
|
|
|
|
|
|
|
/*-
|
2009-04-04 14:12:51 +04:00
|
|
|
* Copyright (c) 2002, 2007, 2008, 2009 The NetBSD Foundation, Inc.
|
2002-05-02 21:55:48 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2009-04-04 14:12:51 +04:00
|
|
|
* by Jason R. Thorpe of Wasabi Systems, Inc, and by Andrew Doran.
|
2002-05-02 21:55:48 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
2008-04-14 19:42:20 +04:00
|
|
|
* Copyright (c) 2004 The FreeBSD Foundation
|
|
|
|
* Copyright (c) 2004 Robert Watson
|
1994-05-13 10:01:27 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1988, 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)uipc_socket.c 8.6 (Berkeley) 5/2/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2014-05-18 03:27:59 +04:00
|
|
|
/*
|
|
|
|
* Socket operation routines.
|
|
|
|
*
|
|
|
|
* These routines are called by the routines in sys_socket.c or from a
|
|
|
|
* system process, and implement the semantics of socket operations by
|
|
|
|
* switching out to the protocol specific routines.
|
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2018-01-04 04:42:25 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.259 2018/01/04 01:42:25 christos Exp $");
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2015-08-25 01:21:26 +03:00
|
|
|
#ifdef _KERNEL_OPT
|
2009-01-14 21:09:00 +03:00
|
|
|
#include "opt_compat_netbsd.h"
|
2002-05-02 21:55:48 +04:00
|
|
|
#include "opt_sock_counters.h"
|
|
|
|
#include "opt_sosend_loan.h"
|
2003-06-23 15:00:59 +04:00
|
|
|
#include "opt_mbuftrace.h"
|
2003-07-03 00:07:45 +04:00
|
|
|
#include "opt_somaxkva.h"
|
2008-05-29 01:01:42 +04:00
|
|
|
#include "opt_multiprocessor.h" /* XXX */
|
2015-10-14 00:28:34 +03:00
|
|
|
#include "opt_sctp.h"
|
2015-08-25 01:21:26 +03:00
|
|
|
#endif
|
1998-06-26 03:40:33 +04:00
|
|
|
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/file.h>
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
#include <sys/filedesc.h>
|
2008-10-10 23:49:49 +04:00
|
|
|
#include <sys/kmem.h>
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/domain.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/socketvar.h>
|
1996-02-04 05:17:43 +03:00
|
|
|
#include <sys/signalvar.h>
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/resourcevar.h>
|
2008-10-11 17:40:57 +04:00
|
|
|
#include <sys/uidinfo.h>
|
2002-10-23 13:10:23 +04:00
|
|
|
#include <sys/event.h>
|
2003-09-15 04:22:20 +04:00
|
|
|
#include <sys/poll.h>
|
2006-05-15 01:15:11 +04:00
|
|
|
#include <sys/kauth.h>
|
2007-03-13 00:33:07 +03:00
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/condvar.h>
|
2011-07-02 21:53:50 +04:00
|
|
|
#include <sys/kthread.h>
|
1998-08-02 08:53:11 +04:00
|
|
|
|
2009-01-14 21:09:00 +03:00
|
|
|
#ifdef COMPAT_50
|
|
|
|
#include <compat/sys/time.h>
|
2009-01-19 05:27:57 +03:00
|
|
|
#include <compat/sys/socket.h>
|
2009-01-14 21:09:00 +03:00
|
|
|
#endif
|
|
|
|
|
2011-01-17 10:13:31 +03:00
|
|
|
#include <uvm/uvm_extern.h>
|
|
|
|
#include <uvm/uvm_loan.h>
|
|
|
|
#include <uvm/uvm_page.h>
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2003-02-01 09:23:35 +03:00
|
|
|
MALLOC_DEFINE(M_SONAME, "soname", "socket name");
|
|
|
|
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
extern const struct fileops socketops;
|
|
|
|
|
2001-02-27 08:19:13 +03:00
|
|
|
extern int somaxconn; /* patchable (XXX sysctl) */
|
|
|
|
int somaxconn = SOMAXCONN;
|
2008-04-24 15:38:36 +04:00
|
|
|
kmutex_t *softnet_lock;
|
2000-02-07 21:43:26 +03:00
|
|
|
|
2002-05-02 21:55:48 +04:00
|
|
|
#ifdef SOSEND_COUNTERS
|
|
|
|
#include <sys/device.h>
|
|
|
|
|
2005-12-08 06:13:18 +03:00
|
|
|
static struct evcnt sosend_loan_big = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
|
2002-05-02 21:55:48 +04:00
|
|
|
NULL, "sosend", "loan big");
|
2005-12-08 06:13:18 +03:00
|
|
|
static struct evcnt sosend_copy_big = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
|
2002-05-02 21:55:48 +04:00
|
|
|
NULL, "sosend", "copy big");
|
2005-12-08 06:13:18 +03:00
|
|
|
static struct evcnt sosend_copy_small = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
|
2002-05-02 21:55:48 +04:00
|
|
|
NULL, "sosend", "copy small");
|
2005-12-08 06:13:18 +03:00
|
|
|
static struct evcnt sosend_kvalimit = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
|
2002-05-02 21:55:48 +04:00
|
|
|
NULL, "sosend", "kva limit");
|
|
|
|
|
|
|
|
#define SOSEND_COUNTER_INCR(ev) (ev)->ev_count++
|
|
|
|
|
2004-05-01 06:24:38 +04:00
|
|
|
EVCNT_ATTACH_STATIC(sosend_loan_big);
|
|
|
|
EVCNT_ATTACH_STATIC(sosend_copy_big);
|
|
|
|
EVCNT_ATTACH_STATIC(sosend_copy_small);
|
|
|
|
EVCNT_ATTACH_STATIC(sosend_kvalimit);
|
2002-05-02 21:55:48 +04:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define SOSEND_COUNTER_INCR(ev) /* nothing */
|
|
|
|
|
|
|
|
#endif /* SOSEND_COUNTERS */
|
|
|
|
|
2008-05-29 01:01:42 +04:00
|
|
|
#if defined(SOSEND_NO_LOAN) || defined(MULTIPROCESSOR)
|
2006-06-21 16:55:12 +04:00
|
|
|
int sock_loan_thresh = -1;
|
2002-08-21 09:13:36 +04:00
|
|
|
#else
|
2006-06-21 16:55:12 +04:00
|
|
|
int sock_loan_thresh = 4096;
|
2002-05-03 04:35:14 +04:00
|
|
|
#endif
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
static kmutex_t so_pendfree_lock;
|
2011-07-02 21:53:50 +04:00
|
|
|
static struct mbuf *so_pendfree = NULL;
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2003-07-03 00:07:45 +04:00
|
|
|
#ifndef SOMAXKVA
|
|
|
|
#define SOMAXKVA (16 * 1024 * 1024)
|
|
|
|
#endif
|
|
|
|
int somaxkva = SOMAXKVA;
|
2005-12-08 06:13:18 +03:00
|
|
|
static int socurkva;
|
2007-03-13 00:33:07 +03:00
|
|
|
static kcondvar_t socurkva_cv;
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2009-10-03 03:50:16 +04:00
|
|
|
static kauth_listener_t socket_listener;
|
|
|
|
|
2002-05-02 21:55:48 +04:00
|
|
|
#define SOCK_LOAN_CHUNK 65536
|
|
|
|
|
2011-07-02 21:53:50 +04:00
|
|
|
static void sopendfree_thread(void *);
|
|
|
|
static kcondvar_t pendfree_thread_cv;
|
|
|
|
static lwp_t *sopendfree_lwp;
|
2004-03-17 13:03:26 +03:00
|
|
|
|
2012-10-08 23:20:45 +04:00
|
|
|
static void sysctl_kern_socket_setup(void);
|
2008-12-07 23:58:46 +03:00
|
|
|
static struct sysctllog *socket_sysctllog;
|
|
|
|
|
2005-12-08 06:13:18 +03:00
|
|
|
static vsize_t
|
2006-11-01 13:17:58 +03:00
|
|
|
sokvareserve(struct socket *so, vsize_t len)
|
2003-05-03 21:53:17 +04:00
|
|
|
{
|
2004-04-17 19:15:29 +04:00
|
|
|
int error;
|
2003-05-03 21:53:17 +04:00
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&so_pendfree_lock);
|
2003-05-03 21:53:17 +04:00
|
|
|
while (socurkva + len > somaxkva) {
|
|
|
|
SOSEND_COUNTER_INCR(&sosend_kvalimit);
|
2007-03-13 00:33:07 +03:00
|
|
|
error = cv_wait_sig(&socurkva_cv, &so_pendfree_lock);
|
2004-04-17 19:15:29 +04:00
|
|
|
if (error) {
|
|
|
|
len = 0;
|
|
|
|
break;
|
|
|
|
}
|
2003-05-03 21:53:17 +04:00
|
|
|
}
|
2004-03-17 13:03:26 +03:00
|
|
|
socurkva += len;
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_exit(&so_pendfree_lock);
|
2004-04-17 19:15:29 +04:00
|
|
|
return len;
|
2004-03-17 13:30:18 +03:00
|
|
|
}
|
|
|
|
|
2005-12-08 06:13:18 +03:00
|
|
|
static void
|
2004-03-17 13:30:18 +03:00
|
|
|
sokvaunreserve(vsize_t len)
|
|
|
|
{
|
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&so_pendfree_lock);
|
2004-03-17 13:30:18 +03:00
|
|
|
socurkva -= len;
|
2007-03-13 00:33:07 +03:00
|
|
|
cv_broadcast(&socurkva_cv);
|
|
|
|
mutex_exit(&so_pendfree_lock);
|
2004-03-17 13:30:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sokvaalloc: allocate kva for loan.
|
|
|
|
*/
|
|
|
|
|
|
|
|
vaddr_t
|
2012-02-01 06:27:23 +04:00
|
|
|
sokvaalloc(vaddr_t sva, vsize_t len, struct socket *so)
|
2004-03-17 13:30:18 +03:00
|
|
|
{
|
|
|
|
vaddr_t lva;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* reserve kva.
|
|
|
|
*/
|
|
|
|
|
2004-04-17 19:15:29 +04:00
|
|
|
if (sokvareserve(so, len) == 0)
|
|
|
|
return 0;
|
2004-03-17 13:03:26 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* allocate kva.
|
|
|
|
*/
|
2003-05-03 21:53:17 +04:00
|
|
|
|
2012-02-01 06:27:23 +04:00
|
|
|
lva = uvm_km_alloc(kernel_map, len, atop(sva) & uvmexp.colormask,
|
|
|
|
UVM_KMF_COLORMATCH | UVM_KMF_VAONLY | UVM_KMF_WAITVA);
|
2004-03-17 13:30:18 +03:00
|
|
|
if (lva == 0) {
|
|
|
|
sokvaunreserve(len);
|
2003-05-03 21:53:17 +04:00
|
|
|
return (0);
|
2004-03-17 13:30:18 +03:00
|
|
|
}
|
2003-05-03 21:53:17 +04:00
|
|
|
|
|
|
|
return lva;
|
|
|
|
}
|
|
|
|
|
2004-03-17 13:03:26 +03:00
|
|
|
/*
|
|
|
|
* sokvafree: free kva for loan.
|
|
|
|
*/
|
|
|
|
|
2003-05-03 21:53:17 +04:00
|
|
|
void
|
|
|
|
sokvafree(vaddr_t sva, vsize_t len)
|
|
|
|
{
|
2004-03-17 13:03:26 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* free kva.
|
|
|
|
*/
|
2003-05-03 21:53:17 +04:00
|
|
|
|
2005-04-01 15:59:21 +04:00
|
|
|
uvm_km_free(kernel_map, sva, len, UVM_KMF_VAONLY);
|
2004-03-17 13:03:26 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* unreserve kva.
|
|
|
|
*/
|
|
|
|
|
2004-03-17 13:30:18 +03:00
|
|
|
sokvaunreserve(len);
|
2003-05-03 21:53:17 +04:00
|
|
|
}
|
|
|
|
|
2002-05-02 21:55:48 +04:00
|
|
|
static void
|
2007-03-04 08:59:00 +03:00
|
|
|
sodoloanfree(struct vm_page **pgs, void *buf, size_t size)
|
2002-05-02 21:55:48 +04:00
|
|
|
{
|
2008-03-24 15:24:37 +03:00
|
|
|
vaddr_t sva, eva;
|
2002-05-02 21:55:48 +04:00
|
|
|
vsize_t len;
|
2008-03-24 15:24:37 +03:00
|
|
|
int npgs;
|
|
|
|
|
|
|
|
KASSERT(pgs != NULL);
|
2002-05-02 21:55:48 +04:00
|
|
|
|
|
|
|
eva = round_page((vaddr_t) buf + size);
|
|
|
|
sva = trunc_page((vaddr_t) buf);
|
|
|
|
len = eva - sva;
|
|
|
|
npgs = len >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
pmap_kremove(sva, len);
|
|
|
|
pmap_update(pmap_kernel());
|
|
|
|
uvm_unloan(pgs, npgs, UVM_LOAN_TOPAGE);
|
2003-05-03 21:53:17 +04:00
|
|
|
sokvafree(sva, len);
|
2002-05-02 21:55:48 +04:00
|
|
|
}
|
|
|
|
|
2004-03-17 13:03:26 +03:00
|
|
|
/*
|
2011-07-02 21:53:50 +04:00
|
|
|
* sopendfree_thread: free mbufs on "pendfree" list.
|
2007-03-13 00:33:07 +03:00
|
|
|
* unlock and relock so_pendfree_lock when freeing mbufs.
|
2004-03-17 13:03:26 +03:00
|
|
|
*/
|
|
|
|
|
2011-07-02 21:53:50 +04:00
|
|
|
static void
|
|
|
|
sopendfree_thread(void *v)
|
2004-03-17 13:03:26 +03:00
|
|
|
{
|
2007-03-15 19:28:31 +03:00
|
|
|
struct mbuf *m, *next;
|
2011-07-02 21:53:50 +04:00
|
|
|
size_t rv;
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2011-07-02 21:53:50 +04:00
|
|
|
mutex_enter(&so_pendfree_lock);
|
2004-03-17 13:03:26 +03:00
|
|
|
|
2011-07-02 21:53:50 +04:00
|
|
|
for (;;) {
|
|
|
|
rv = 0;
|
|
|
|
while (so_pendfree != NULL) {
|
|
|
|
m = so_pendfree;
|
|
|
|
so_pendfree = NULL;
|
|
|
|
mutex_exit(&so_pendfree_lock);
|
|
|
|
|
|
|
|
for (; m != NULL; m = next) {
|
|
|
|
next = m->m_next;
|
2017-05-01 13:00:43 +03:00
|
|
|
KASSERT((~m->m_flags & (M_EXT|M_EXT_PAGES)) ==
|
|
|
|
0);
|
2011-07-02 21:53:50 +04:00
|
|
|
KASSERT(m->m_ext.ext_refcnt == 0);
|
|
|
|
|
|
|
|
rv += m->m_ext.ext_size;
|
|
|
|
sodoloanfree(m->m_ext.ext_pgs, m->m_ext.ext_buf,
|
|
|
|
m->m_ext.ext_size);
|
|
|
|
pool_cache_put(mb_cache, m);
|
|
|
|
}
|
2004-03-17 13:03:26 +03:00
|
|
|
|
2011-07-02 21:53:50 +04:00
|
|
|
mutex_enter(&so_pendfree_lock);
|
2004-03-17 13:03:26 +03:00
|
|
|
}
|
2011-07-02 21:53:50 +04:00
|
|
|
if (rv)
|
|
|
|
cv_broadcast(&socurkva_cv);
|
|
|
|
cv_wait(&pendfree_thread_cv, &so_pendfree_lock);
|
2002-05-02 21:55:48 +04:00
|
|
|
}
|
2011-07-02 21:53:50 +04:00
|
|
|
panic("sopendfree_thread");
|
|
|
|
/* NOTREACHED */
|
2002-05-02 21:55:48 +04:00
|
|
|
}
|
|
|
|
|
2003-05-03 21:53:17 +04:00
|
|
|
void
|
2007-03-04 08:59:00 +03:00
|
|
|
soloanfree(struct mbuf *m, void *buf, size_t size, void *arg)
|
2002-05-02 21:55:48 +04:00
|
|
|
{
|
|
|
|
|
2008-03-24 15:24:37 +03:00
|
|
|
KASSERT(m != NULL);
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2004-03-17 13:03:26 +03:00
|
|
|
/*
|
|
|
|
* postpone freeing mbuf.
|
|
|
|
*
|
|
|
|
* we can't do it in interrupt context
|
|
|
|
* because we need to put kva back to kernel_map.
|
|
|
|
*/
|
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&so_pendfree_lock);
|
2004-03-17 12:58:15 +03:00
|
|
|
m->m_next = so_pendfree;
|
|
|
|
so_pendfree = m;
|
2011-07-02 21:53:50 +04:00
|
|
|
cv_signal(&pendfree_thread_cv);
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_exit(&so_pendfree_lock);
|
1998-08-02 08:53:11 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2002-05-02 21:55:48 +04:00
|
|
|
static long
|
|
|
|
sosend_loan(struct socket *so, struct uio *uio, struct mbuf *m, long space)
|
|
|
|
{
|
|
|
|
struct iovec *iov = uio->uio_iov;
|
|
|
|
vaddr_t sva, eva;
|
|
|
|
vsize_t len;
|
2008-03-24 15:24:37 +03:00
|
|
|
vaddr_t lva;
|
|
|
|
int npgs, error;
|
|
|
|
vaddr_t va;
|
|
|
|
int i;
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2006-03-01 15:38:10 +03:00
|
|
|
if (VMSPACE_IS_KERNEL_P(uio->uio_vmspace))
|
2016-10-13 22:10:23 +03:00
|
|
|
return (0);
|
2002-05-02 21:55:48 +04:00
|
|
|
|
|
|
|
if (iov->iov_len < (size_t) space)
|
|
|
|
space = iov->iov_len;
|
|
|
|
if (space > SOCK_LOAN_CHUNK)
|
|
|
|
space = SOCK_LOAN_CHUNK;
|
|
|
|
|
|
|
|
eva = round_page((vaddr_t) iov->iov_base + space);
|
|
|
|
sva = trunc_page((vaddr_t) iov->iov_base);
|
|
|
|
len = eva - sva;
|
|
|
|
npgs = len >> PAGE_SHIFT;
|
|
|
|
|
2003-04-09 22:38:01 +04:00
|
|
|
KASSERT(npgs <= M_EXT_MAXPAGES);
|
|
|
|
|
2012-02-01 06:27:23 +04:00
|
|
|
lva = sokvaalloc(sva, len, so);
|
2002-05-02 21:55:48 +04:00
|
|
|
if (lva == 0)
|
2016-10-13 22:10:23 +03:00
|
|
|
return 0;
|
2002-05-02 21:55:48 +04:00
|
|
|
|
2006-03-01 15:38:10 +03:00
|
|
|
error = uvm_loan(&uio->uio_vmspace->vm_map, sva, len,
|
2003-04-09 22:38:01 +04:00
|
|
|
m->m_ext.ext_pgs, UVM_LOAN_TOPAGE);
|
2002-05-02 21:55:48 +04:00
|
|
|
if (error) {
|
2003-05-03 21:53:17 +04:00
|
|
|
sokvafree(lva, len);
|
2016-10-13 22:10:23 +03:00
|
|
|
return (0);
|
2002-05-02 21:55:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, va = lva; i < npgs; i++, va += PAGE_SIZE)
|
2003-04-09 22:38:01 +04:00
|
|
|
pmap_kenter_pa(va, VM_PAGE_TO_PHYS(m->m_ext.ext_pgs[i]),
|
2009-11-07 10:27:40 +03:00
|
|
|
VM_PROT_READ, 0);
|
2002-05-02 21:55:48 +04:00
|
|
|
pmap_update(pmap_kernel());
|
|
|
|
|
|
|
|
lva += (vaddr_t) iov->iov_base & PAGE_MASK;
|
|
|
|
|
2007-03-04 08:59:00 +03:00
|
|
|
MEXTADD(m, (void *) lva, space, M_MBUF, soloanfree, so);
|
2003-04-09 22:38:01 +04:00
|
|
|
m->m_flags |= M_EXT_PAGES | M_EXT_ROMAP;
|
2002-05-02 21:55:48 +04:00
|
|
|
|
|
|
|
uio->uio_resid -= space;
|
|
|
|
/* uio_offset not updated, not set/used for write(2) */
|
2007-03-04 08:59:00 +03:00
|
|
|
uio->uio_iov->iov_base = (char *)uio->uio_iov->iov_base + space;
|
2002-05-02 21:55:48 +04:00
|
|
|
uio->uio_iov->iov_len -= space;
|
|
|
|
if (uio->uio_iov->iov_len == 0) {
|
|
|
|
uio->uio_iov++;
|
|
|
|
uio->uio_iovcnt--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (space);
|
|
|
|
}
|
|
|
|
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
struct mbuf *
|
2007-11-24 10:49:03 +03:00
|
|
|
getsombuf(struct socket *so, int type)
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
{
|
|
|
|
struct mbuf *m;
|
|
|
|
|
2007-11-24 10:49:03 +03:00
|
|
|
m = m_get(M_WAIT, type);
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
MCLAIM(m, so->so_mowner);
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2009-10-03 03:50:16 +04:00
|
|
|
static int
|
|
|
|
socket_listener_cb(kauth_cred_t cred, kauth_action_t action, void *cookie,
|
|
|
|
void *arg0, void *arg1, void *arg2, void *arg3)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
enum kauth_network_req req;
|
|
|
|
|
|
|
|
result = KAUTH_RESULT_DEFER;
|
|
|
|
req = (enum kauth_network_req)arg0;
|
|
|
|
|
2009-10-03 07:59:39 +04:00
|
|
|
if ((action != KAUTH_NETWORK_SOCKET) &&
|
|
|
|
(action != KAUTH_NETWORK_BIND))
|
2009-10-03 03:50:16 +04:00
|
|
|
return result;
|
|
|
|
|
|
|
|
switch (req) {
|
2009-10-03 07:59:39 +04:00
|
|
|
case KAUTH_REQ_NETWORK_BIND_PORT:
|
|
|
|
result = KAUTH_RESULT_ALLOW;
|
|
|
|
break;
|
|
|
|
|
2009-10-03 03:50:16 +04:00
|
|
|
case KAUTH_REQ_NETWORK_SOCKET_DROP: {
|
|
|
|
/* Normal users can only drop their own connections. */
|
|
|
|
struct socket *so = (struct socket *)arg1;
|
|
|
|
|
2013-11-03 00:09:33 +04:00
|
|
|
if (so->so_cred && proc_uidmatch(cred, so->so_cred) == 0)
|
2009-10-03 03:50:16 +04:00
|
|
|
result = KAUTH_RESULT_ALLOW;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case KAUTH_REQ_NETWORK_SOCKET_OPEN:
|
|
|
|
/* We allow "raw" routing/bluetooth sockets to anyone. */
|
2017-05-25 23:42:36 +03:00
|
|
|
switch ((u_long)arg1) {
|
|
|
|
case PF_ROUTE:
|
|
|
|
case PF_OROUTE:
|
|
|
|
case PF_BLUETOOTH:
|
2017-05-28 00:02:54 +03:00
|
|
|
case PF_CAN:
|
2009-10-03 03:50:16 +04:00
|
|
|
result = KAUTH_RESULT_ALLOW;
|
2017-05-25 23:42:36 +03:00
|
|
|
break;
|
|
|
|
default:
|
2009-10-03 03:50:16 +04:00
|
|
|
/* Privileged, let secmodel handle this. */
|
|
|
|
if ((u_long)arg2 == SOCK_RAW)
|
|
|
|
break;
|
2017-05-25 23:42:36 +03:00
|
|
|
result = KAUTH_RESULT_ALLOW;
|
|
|
|
break;
|
2009-10-03 03:50:16 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-10-03 05:41:39 +04:00
|
|
|
case KAUTH_REQ_NETWORK_SOCKET_CANSEE:
|
|
|
|
result = KAUTH_RESULT_ALLOW;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2009-10-03 03:50:16 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-05-25 18:27:28 +04:00
|
|
|
void
|
|
|
|
soinit(void)
|
|
|
|
{
|
|
|
|
|
2012-10-08 23:20:45 +04:00
|
|
|
sysctl_kern_socket_setup();
|
2008-12-07 23:58:46 +03:00
|
|
|
|
2007-12-05 10:06:50 +03:00
|
|
|
mutex_init(&so_pendfree_lock, MUTEX_DEFAULT, IPL_VM);
|
2008-04-24 15:38:36 +04:00
|
|
|
softnet_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE);
|
2007-03-13 00:33:07 +03:00
|
|
|
cv_init(&socurkva_cv, "sokva");
|
2011-07-02 21:53:50 +04:00
|
|
|
cv_init(&pendfree_thread_cv, "sopendfr");
|
2008-05-26 21:21:18 +04:00
|
|
|
soinit2();
|
2007-03-13 00:33:07 +03:00
|
|
|
|
2006-05-25 18:27:28 +04:00
|
|
|
/* Set the initial adjusted socket buffer size. */
|
|
|
|
if (sb_max_set(sb_max))
|
|
|
|
panic("bad initial sb_max value: %lu", sb_max);
|
|
|
|
|
2009-10-03 03:50:16 +04:00
|
|
|
socket_listener = kauth_listen_scope(KAUTH_SCOPE_NETWORK,
|
|
|
|
socket_listener_cb, NULL);
|
2006-05-25 18:27:28 +04:00
|
|
|
}
|
|
|
|
|
2011-07-02 21:53:50 +04:00
|
|
|
void
|
|
|
|
soinit1(void)
|
|
|
|
{
|
|
|
|
int error = kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL,
|
|
|
|
sopendfree_thread, NULL, &sopendfree_lwp, "sopendfree");
|
|
|
|
if (error)
|
|
|
|
panic("soinit1 %d", error);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
2014-05-18 03:27:59 +04:00
|
|
|
* socreate: create a new socket of the specified type and the protocol.
|
|
|
|
*
|
|
|
|
* => Caller may specify another socket for lock sharing (must not be held).
|
|
|
|
* => Returns the new socket without lock held.
|
2014-05-19 06:51:24 +04:00
|
|
|
*/
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2008-04-24 15:38:36 +04:00
|
|
|
socreate(int dom, struct socket **aso, int type, int proto, struct lwp *l,
|
|
|
|
struct socket *lockso)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2004-04-22 05:01:40 +04:00
|
|
|
const struct protosw *prp;
|
2001-02-27 08:19:13 +03:00
|
|
|
struct socket *so;
|
2005-12-27 03:00:29 +03:00
|
|
|
uid_t uid;
|
2008-04-24 15:38:36 +04:00
|
|
|
int error;
|
|
|
|
kmutex_t *lock;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-01-17 15:21:34 +03:00
|
|
|
error = kauth_authorize_network(l->l_cred, KAUTH_NETWORK_SOCKET,
|
|
|
|
KAUTH_REQ_NETWORK_SOCKET_OPEN, KAUTH_ARG(dom), KAUTH_ARG(type),
|
|
|
|
KAUTH_ARG(proto));
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
if (error != 0)
|
|
|
|
return error;
|
2006-10-26 02:49:22 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (proto)
|
|
|
|
prp = pffindproto(dom, proto, type);
|
|
|
|
else
|
|
|
|
prp = pffindtype(dom, type);
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
if (prp == NULL) {
|
2006-06-14 01:19:56 +04:00
|
|
|
/* no support for domain */
|
|
|
|
if (pffinddomain(dom) == 0)
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return EAFNOSUPPORT;
|
2006-06-14 01:19:56 +04:00
|
|
|
/* no support for socket type */
|
|
|
|
if (proto == 0 && type != 0)
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return EPROTOTYPE;
|
|
|
|
return EPROTONOSUPPORT;
|
2006-06-14 01:19:56 +04:00
|
|
|
}
|
2014-05-18 18:46:15 +04:00
|
|
|
if (prp->pr_usrreqs == NULL)
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return EPROTONOSUPPORT;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (prp->pr_type != type)
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return EPROTOTYPE;
|
2008-04-24 15:38:36 +04:00
|
|
|
|
|
|
|
so = soget(true);
|
1993-03-21 12:45:37 +03:00
|
|
|
so->so_type = type;
|
|
|
|
so->so_proto = prp;
|
1998-04-25 21:35:18 +04:00
|
|
|
so->so_send = sosend;
|
|
|
|
so->so_receive = soreceive;
|
2003-02-26 09:31:08 +03:00
|
|
|
#ifdef MBUFTRACE
|
|
|
|
so->so_rcv.sb_mowner = &prp->pr_domain->dom_mowner;
|
|
|
|
so->so_snd.sb_mowner = &prp->pr_domain->dom_mowner;
|
|
|
|
so->so_mowner = &prp->pr_domain->dom_mowner;
|
|
|
|
#endif
|
2007-04-04 03:44:53 +04:00
|
|
|
uid = kauth_cred_geteuid(l->l_cred);
|
2005-12-27 03:00:29 +03:00
|
|
|
so->so_uidinfo = uid_find(uid);
|
2008-06-18 13:06:25 +04:00
|
|
|
so->so_cpid = l->l_proc->p_pid;
|
2014-05-19 06:51:24 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Lock assigned and taken during PCB attach, unless we share
|
|
|
|
* the lock with another socket, e.g. socketpair(2) case.
|
|
|
|
*/
|
|
|
|
if (lockso) {
|
2008-04-24 15:38:36 +04:00
|
|
|
lock = lockso->so_lock;
|
|
|
|
so->so_lock = lock;
|
|
|
|
mutex_obj_hold(lock);
|
|
|
|
mutex_enter(lock);
|
|
|
|
}
|
2014-05-19 06:51:24 +04:00
|
|
|
|
|
|
|
/* Attach the PCB (returns with the socket lock held). */
|
|
|
|
error = (*prp->pr_usrreqs->pr_attach)(so, proto);
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(solocked(so));
|
2014-05-19 06:51:24 +04:00
|
|
|
|
|
|
|
if (error) {
|
2014-05-18 03:27:59 +04:00
|
|
|
KASSERT(so->so_pcb == NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
so->so_state |= SS_NOFDREF;
|
|
|
|
sofree(so);
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2009-12-29 07:23:43 +03:00
|
|
|
so->so_cred = kauth_cred_dup(l->l_cred);
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2014-05-19 06:51:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
*aso = so;
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2014-05-18 03:27:59 +04:00
|
|
|
/*
|
|
|
|
* fsocreate: create a socket and a file descriptor associated with it.
|
|
|
|
*
|
|
|
|
* => On success, write file descriptor to fdout and return zero.
|
|
|
|
* => On failure, return non-zero; *fdout will be undefined.
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
*/
|
|
|
|
int
|
2014-05-18 03:27:59 +04:00
|
|
|
fsocreate(int domain, struct socket **sop, int type, int proto, int *fdout)
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
{
|
2014-05-18 03:27:59 +04:00
|
|
|
lwp_t *l = curlwp;
|
|
|
|
int error, fd, flags;
|
|
|
|
struct socket *so;
|
|
|
|
struct file *fp;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
|
2014-05-18 03:27:59 +04:00
|
|
|
if ((error = fd_allocfile(&fp, &fd)) != 0) {
|
2011-06-26 20:42:39 +04:00
|
|
|
return error;
|
2014-05-18 03:27:59 +04:00
|
|
|
}
|
|
|
|
flags = type & SOCK_FLAGS_MASK;
|
2011-06-26 20:42:39 +04:00
|
|
|
fd_set_exclose(l, fd, (flags & SOCK_CLOEXEC) != 0);
|
2012-01-25 04:28:35 +04:00
|
|
|
fp->f_flag = FREAD|FWRITE|((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
|
|
|
|
((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
fp->f_type = DTYPE_SOCKET;
|
|
|
|
fp->f_ops = &socketops;
|
2014-05-18 03:27:59 +04:00
|
|
|
|
|
|
|
type &= ~SOCK_FLAGS_MASK;
|
|
|
|
error = socreate(domain, &so, type, proto, l, NULL);
|
|
|
|
if (error) {
|
2008-03-22 00:54:58 +03:00
|
|
|
fd_abort(curproc, fp, fd);
|
2014-05-18 03:27:59 +04:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (flags & SOCK_NONBLOCK) {
|
|
|
|
so->so_state |= SS_NBIO;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
}
|
2014-09-05 13:20:59 +04:00
|
|
|
fp->f_socket = so;
|
2014-05-18 03:27:59 +04:00
|
|
|
fd_affix(curproc, fp, fd);
|
|
|
|
|
|
|
|
if (sop != NULL) {
|
|
|
|
*sop = so;
|
|
|
|
}
|
|
|
|
*fdout = fd;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
Make ifconfig(8) set and display preference numbers for IPv6
addresses. Make the kernel support SIOC[SG]IFADDRPREF for IPv6
interface addresses.
In in6ifa_ifpforlinklocal(), consult preference numbers before
making an otherwise arbitrary choice of in6_ifaddr. Otherwise,
preference numbers are *not* consulted by the kernel, but that will
be rather easy for somebody with a little bit of free time to fix.
Please note that setting the preference number for a link-local
IPv6 address does not work right, yet, but that ought to be fixed
soon.
In support of the changes above,
1 Add a method to struct domain for "externalizing" a sockaddr, and
provide an implementation for IPv6. Expect more work in this area: it
may be more proper to say that the IPv6 implementation "internalizes"
a sockaddr. Add sockaddr_externalize().
2 Add a subroutine, sofamily(), that returns a struct socket's address
family or AF_UNSPEC.
3 Make a lot of IPv4-specific code generic, and move it from
sys/netinet/ to sys/net/ for re-use by IPv6 parts of the kernel and
ifconfig(8).
2009-09-12 02:06:29 +04:00
|
|
|
int
|
|
|
|
sofamily(const struct socket *so)
|
|
|
|
{
|
|
|
|
const struct protosw *pr;
|
|
|
|
const struct domain *dom;
|
|
|
|
|
|
|
|
if ((pr = so->so_proto) == NULL)
|
|
|
|
return AF_UNSPEC;
|
|
|
|
if ((dom = pr->pr_domain) == NULL)
|
|
|
|
return AF_UNSPEC;
|
|
|
|
return dom->dom_family;
|
|
|
|
}
|
|
|
|
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2015-04-03 23:01:07 +03:00
|
|
|
sobind(struct socket *so, struct sockaddr *nam, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-24 15:38:36 +04:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2015-04-05 05:26:39 +03:00
|
|
|
if (nam->sa_family != so->so_proto->pr_domain->dom_family) {
|
|
|
|
sounlock(so);
|
2015-04-06 02:19:56 +03:00
|
|
|
return EAFNOSUPPORT;
|
2015-04-05 05:26:39 +03:00
|
|
|
}
|
2014-08-05 09:24:26 +04:00
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_bind)(so, nam, l);
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2007-12-17 00:25:59 +03:00
|
|
|
solisten(struct socket *so, int backlog, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-24 15:38:36 +04:00
|
|
|
int error;
|
2015-10-14 00:28:34 +03:00
|
|
|
short oldopt, oldqlimit;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2017-05-01 13:00:43 +03:00
|
|
|
if ((so->so_state & (SS_ISCONNECTED | SS_ISCONNECTING |
|
2008-04-29 21:35:31 +04:00
|
|
|
SS_ISDISCONNECTING)) != 0) {
|
2014-05-18 03:27:59 +04:00
|
|
|
sounlock(so);
|
|
|
|
return EINVAL;
|
2008-04-29 21:35:31 +04:00
|
|
|
}
|
2015-10-14 00:28:34 +03:00
|
|
|
oldopt = so->so_options;
|
|
|
|
oldqlimit = so->so_qlimit;
|
2002-04-06 12:04:17 +04:00
|
|
|
if (TAILQ_EMPTY(&so->so_q))
|
1993-03-21 12:45:37 +03:00
|
|
|
so->so_options |= SO_ACCEPTCONN;
|
|
|
|
if (backlog < 0)
|
|
|
|
backlog = 0;
|
2000-02-07 21:43:26 +03:00
|
|
|
so->so_qlimit = min(backlog, somaxconn);
|
2015-10-14 00:28:34 +03:00
|
|
|
|
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_listen)(so, l);
|
|
|
|
if (error != 0) {
|
|
|
|
so->so_options = oldopt;
|
|
|
|
so->so_qlimit = oldqlimit;
|
|
|
|
sounlock(so);
|
|
|
|
return error;
|
|
|
|
}
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-04 05:17:43 +03:00
|
|
|
void
|
2001-02-27 08:19:13 +03:00
|
|
|
sofree(struct socket *so)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-27 18:26:58 +04:00
|
|
|
u_int refs;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(solocked(so));
|
|
|
|
|
|
|
|
if (so->so_pcb || (so->so_state & SS_NOFDREF) == 0) {
|
|
|
|
sounlock(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
2008-04-24 15:38:36 +04:00
|
|
|
}
|
1999-01-22 01:09:10 +03:00
|
|
|
if (so->so_head) {
|
|
|
|
/*
|
|
|
|
* We must not decommission a socket that's on the accept(2)
|
|
|
|
* queue. If we do, then accept(2) may hang after select(2)
|
|
|
|
* indicated that the listening socket was ready.
|
|
|
|
*/
|
2008-04-24 15:38:36 +04:00
|
|
|
if (!soqremque(so, 0)) {
|
|
|
|
sounlock(so);
|
1999-01-22 01:09:10 +03:00
|
|
|
return;
|
2008-04-24 15:38:36 +04:00
|
|
|
}
|
1999-01-22 01:09:10 +03:00
|
|
|
}
|
2004-04-17 19:15:29 +04:00
|
|
|
if (so->so_rcv.sb_hiwat)
|
2005-05-07 21:42:09 +04:00
|
|
|
(void)chgsbsize(so->so_uidinfo, &so->so_rcv.sb_hiwat, 0,
|
2004-04-17 19:15:29 +04:00
|
|
|
RLIM_INFINITY);
|
|
|
|
if (so->so_snd.sb_hiwat)
|
2005-05-07 21:42:09 +04:00
|
|
|
(void)chgsbsize(so->so_uidinfo, &so->so_snd.sb_hiwat, 0,
|
2004-04-17 19:15:29 +04:00
|
|
|
RLIM_INFINITY);
|
|
|
|
sbrelease(&so->so_snd, so);
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(!cv_has_waiters(&so->so_cv));
|
|
|
|
KASSERT(!cv_has_waiters(&so->so_rcv.sb_cv));
|
|
|
|
KASSERT(!cv_has_waiters(&so->so_snd.sb_cv));
|
1993-03-21 12:45:37 +03:00
|
|
|
sorflush(so);
|
2008-04-27 18:26:58 +04:00
|
|
|
refs = so->so_aborting; /* XXX */
|
2008-10-14 17:45:26 +04:00
|
|
|
/* Remove acccept filter if one is present. */
|
2008-08-04 07:55:47 +04:00
|
|
|
if (so->so_accf != NULL)
|
2008-10-14 17:45:26 +04:00
|
|
|
(void)accept_filt_clear(so);
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2008-04-27 18:26:58 +04:00
|
|
|
if (refs == 0) /* XXX */
|
|
|
|
soput(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-05-18 03:27:59 +04:00
|
|
|
* soclose: close a socket on last file table reference removal.
|
|
|
|
* Initiate disconnect if connected. Free socket when disconnect complete.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2001-02-27 08:19:13 +03:00
|
|
|
soclose(struct socket *so)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2014-05-18 03:27:59 +04:00
|
|
|
struct socket *so2;
|
|
|
|
int error = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (so->so_options & SO_ACCEPTCONN) {
|
2008-10-10 15:20:15 +04:00
|
|
|
for (;;) {
|
|
|
|
if ((so2 = TAILQ_FIRST(&so->so_q0)) != 0) {
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(solocked2(so, so2));
|
|
|
|
(void) soqremque(so2, 0);
|
|
|
|
/* soabort drops the lock. */
|
|
|
|
(void) soabort(so2);
|
|
|
|
solock(so);
|
2008-10-10 15:20:15 +04:00
|
|
|
continue;
|
2008-04-24 15:38:36 +04:00
|
|
|
}
|
2008-10-10 15:20:15 +04:00
|
|
|
if ((so2 = TAILQ_FIRST(&so->so_q)) != 0) {
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(solocked2(so, so2));
|
|
|
|
(void) soqremque(so2, 1);
|
|
|
|
/* soabort drops the lock. */
|
|
|
|
(void) soabort(so2);
|
|
|
|
solock(so);
|
2008-10-10 15:20:15 +04:00
|
|
|
continue;
|
2008-04-24 15:38:36 +04:00
|
|
|
}
|
2008-10-10 15:20:15 +04:00
|
|
|
break;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2014-05-18 03:27:59 +04:00
|
|
|
if (so->so_pcb == NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto discard;
|
|
|
|
if (so->so_state & SS_ISCONNECTED) {
|
|
|
|
if ((so->so_state & SS_ISDISCONNECTING) == 0) {
|
|
|
|
error = sodisconnect(so);
|
|
|
|
if (error)
|
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
if (so->so_options & SO_LINGER) {
|
2011-12-21 03:56:28 +04:00
|
|
|
if ((so->so_state & (SS_ISDISCONNECTING|SS_NBIO)) ==
|
|
|
|
(SS_ISDISCONNECTING|SS_NBIO))
|
1993-03-21 12:45:37 +03:00
|
|
|
goto drop;
|
1996-02-04 05:17:43 +03:00
|
|
|
while (so->so_state & SS_ISCONNECTED) {
|
2009-01-21 09:59:29 +03:00
|
|
|
error = sowait(so, true, so->so_linger * hz);
|
1996-02-04 05:17:43 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
1996-02-04 05:17:43 +03:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
2001-02-27 08:19:13 +03:00
|
|
|
drop:
|
1993-03-21 12:45:37 +03:00
|
|
|
if (so->so_pcb) {
|
2014-05-19 06:51:24 +04:00
|
|
|
KASSERT(solocked(so));
|
|
|
|
(*so->so_proto->pr_usrreqs->pr_detach)(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2001-02-27 08:19:13 +03:00
|
|
|
discard:
|
2014-05-18 03:27:59 +04:00
|
|
|
KASSERT((so->so_state & SS_NOFDREF) == 0);
|
2009-12-29 07:23:43 +03:00
|
|
|
kauth_cred_free(so->so_cred);
|
1993-03-21 12:45:37 +03:00
|
|
|
so->so_state |= SS_NOFDREF;
|
|
|
|
sofree(so);
|
2014-05-18 03:27:59 +04:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-04-24 15:38:36 +04:00
|
|
|
* Must be called with the socket locked.. Will return with it unlocked.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2001-02-27 08:19:13 +03:00
|
|
|
soabort(struct socket *so)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-27 18:26:58 +04:00
|
|
|
u_int refs;
|
2007-04-15 09:25:48 +04:00
|
|
|
int error;
|
2017-05-01 13:00:43 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(solocked(so));
|
2007-04-15 09:25:48 +04:00
|
|
|
KASSERT(so->so_head == NULL);
|
2008-04-24 15:38:36 +04:00
|
|
|
|
2008-04-27 18:26:58 +04:00
|
|
|
so->so_aborting++; /* XXX */
|
2014-08-01 00:28:59 +04:00
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_abort)(so);
|
2008-04-27 18:26:58 +04:00
|
|
|
refs = --so->so_aborting; /* XXX */
|
2008-05-01 13:21:56 +04:00
|
|
|
if (error || (refs == 0)) {
|
2007-04-15 09:25:48 +04:00
|
|
|
sofree(so);
|
2008-04-24 15:38:36 +04:00
|
|
|
} else {
|
|
|
|
sounlock(so);
|
2007-04-15 09:25:48 +04:00
|
|
|
}
|
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2015-04-25 01:32:37 +03:00
|
|
|
soaccept(struct socket *so, struct sockaddr *nam)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2014-05-18 03:27:59 +04:00
|
|
|
int error;
|
2008-04-24 15:38:36 +04:00
|
|
|
|
|
|
|
KASSERT(solocked(so));
|
2014-05-18 03:27:59 +04:00
|
|
|
KASSERT((so->so_state & SS_NOFDREF) != 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
so->so_state &= ~SS_NOFDREF;
|
2001-03-21 22:22:27 +03:00
|
|
|
if ((so->so_state & SS_ISDISCONNECTED) == 0 ||
|
|
|
|
(so->so_proto->pr_flags & PR_ABRTACPTDIS) == 0)
|
2014-07-09 18:41:42 +04:00
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_accept)(so, nam);
|
1999-01-20 12:15:41 +03:00
|
|
|
else
|
2001-02-07 15:20:43 +03:00
|
|
|
error = ECONNABORTED;
|
2001-01-22 21:14:11 +03:00
|
|
|
|
2014-05-18 03:27:59 +04:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2015-05-02 20:18:03 +03:00
|
|
|
soconnect(struct socket *so, struct sockaddr *nam, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2014-05-18 03:27:59 +04:00
|
|
|
int error;
|
2008-04-24 15:38:36 +04:00
|
|
|
|
|
|
|
KASSERT(solocked(so));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (so->so_options & SO_ACCEPTCONN)
|
2014-05-18 03:27:59 +04:00
|
|
|
return EOPNOTSUPP;
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* If protocol is connection-based, can only connect once.
|
|
|
|
* Otherwise, if connected, try to disconnect first.
|
|
|
|
* This allows user to disconnect by connecting to, e.g.,
|
|
|
|
* a null address.
|
|
|
|
*/
|
|
|
|
if (so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING) &&
|
|
|
|
((so->so_proto->pr_flags & PR_CONNREQUIRED) ||
|
2015-05-02 23:10:26 +03:00
|
|
|
(error = sodisconnect(so)))) {
|
1993-03-21 12:45:37 +03:00
|
|
|
error = EISCONN;
|
2015-05-02 23:10:26 +03:00
|
|
|
} else {
|
2015-05-03 00:15:33 +03:00
|
|
|
if (nam->sa_family != so->so_proto->pr_domain->dom_family) {
|
2015-05-02 23:10:26 +03:00
|
|
|
return EAFNOSUPPORT;
|
|
|
|
}
|
2014-08-05 09:24:26 +04:00
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_connect)(so, nam, l);
|
2015-05-02 23:10:26 +03:00
|
|
|
}
|
2014-05-18 03:27:59 +04:00
|
|
|
|
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2001-02-27 08:19:13 +03:00
|
|
|
soconnect2(struct socket *so1, struct socket *so2)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(solocked2(so1, so2));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2014-08-09 09:33:00 +04:00
|
|
|
return (*so1->so_proto->pr_usrreqs->pr_connect2)(so1, so2);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2001-02-27 08:19:13 +03:00
|
|
|
sodisconnect(struct socket *so)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-24 15:38:36 +04:00
|
|
|
int error;
|
|
|
|
|
|
|
|
KASSERT(solocked(so));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if ((so->so_state & SS_ISCONNECTED) == 0) {
|
|
|
|
error = ENOTCONN;
|
2008-04-24 15:38:36 +04:00
|
|
|
} else if (so->so_state & SS_ISDISCONNECTING) {
|
1993-03-21 12:45:37 +03:00
|
|
|
error = EALREADY;
|
2008-04-24 15:38:36 +04:00
|
|
|
} else {
|
split PRU_DISCONNECT, PRU_SHUTDOWN and PRU_ABORT function out of
pr_generic() usrreq switches and put into separate functions
xxx_disconnect(struct socket *)
xxx_shutdown(struct socket *)
xxx_abort(struct socket *)
- always KASSERT(solocked(so)) even if not implemented
- replace calls to pr_generic() with req =
PRU_{DISCONNECT,SHUTDOWN,ABORT}
with calls to pr_{disconnect,shutdown,abort}() respectively
rename existing internal functions used to implement above functionality
to permit use of the names for xxx_{disconnect,shutdown,abort}().
- {l2cap,sco,rfcomm}_disconnect() ->
{l2cap,sco,rfcomm}_disconnect_pcb()
- {unp,rip,tcp}_disconnect() -> {unp,rip,tcp}_disconnect1()
- unp_shutdown() -> unp_shutdown1()
patch reviewed by rmind
2014-07-31 07:39:35 +04:00
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_disconnect)(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-13 10:01:27 +04:00
|
|
|
#define SBLOCKWAIT(f) (((f) & MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Send on a socket.
|
|
|
|
* If send must go all at once and message is larger than
|
|
|
|
* send buffering, then hard error.
|
|
|
|
* Lock against other senders.
|
|
|
|
* If must go all at once and not enough room now, then
|
|
|
|
* inform user that this would block and do nothing.
|
|
|
|
* Otherwise, if nonblocking, send as much as possible.
|
|
|
|
* The data to be sent is described by "uio" if nonzero,
|
|
|
|
* otherwise by the mbuf chain "top" (which must be null
|
|
|
|
* if uio is not). Data provided in mbuf chain must be small
|
|
|
|
* enough to send all at once.
|
|
|
|
*
|
|
|
|
* Returns nonzero on error, timeout or signal; callers
|
|
|
|
* must check for short counts if EINTR/ERESTART are returned.
|
|
|
|
* Data and control buffers are freed on return.
|
|
|
|
*/
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2015-05-09 18:22:47 +03:00
|
|
|
sosend(struct socket *so, struct sockaddr *addr, struct uio *uio,
|
|
|
|
struct mbuf *top, struct mbuf *control, int flags, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-02-27 08:19:13 +03:00
|
|
|
struct mbuf **mp, *m;
|
2001-09-29 18:16:19 +04:00
|
|
|
long space, len, resid, clen, mlen;
|
|
|
|
int error, s, dontroute, atomic;
|
2009-12-20 12:36:05 +03:00
|
|
|
short wakeup_state = 0;
|
2001-02-27 08:19:13 +03:00
|
|
|
|
|
|
|
clen = 0;
|
2008-04-24 15:38:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* solock() provides atomicity of access. splsoftnet() prevents
|
|
|
|
* protocol processing soft interrupts from interrupting us and
|
|
|
|
* blocking (expensive).
|
|
|
|
*/
|
|
|
|
s = splsoftnet();
|
|
|
|
solock(so);
|
2001-02-27 08:19:13 +03:00
|
|
|
atomic = sosendallatonce(so) || top;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (uio)
|
|
|
|
resid = uio->uio_resid;
|
|
|
|
else
|
|
|
|
resid = top->m_pkthdr.len;
|
1993-10-27 01:36:25 +03:00
|
|
|
/*
|
|
|
|
* In theory resid should be unsigned.
|
|
|
|
* However, space must be signed, as it might be less than 0
|
|
|
|
* if we over-committed, and we must use a signed comparison
|
|
|
|
* of space and resid. On the other hand, a negative resid
|
|
|
|
* causes us to loop sending 0-length segments to the protocol.
|
|
|
|
*/
|
1997-08-27 11:10:01 +04:00
|
|
|
if (resid < 0) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
dontroute =
|
|
|
|
(flags & MSG_DONTROUTE) && (so->so_options & SO_DONTROUTE) == 0 &&
|
|
|
|
(so->so_proto->pr_flags & PR_ATOMIC);
|
2008-05-24 22:43:02 +04:00
|
|
|
l->l_ru.ru_msgsnd++;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (control)
|
|
|
|
clen = control->m_len;
|
2001-02-27 08:19:13 +03:00
|
|
|
restart:
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((error = sblock(&so->so_snd, SBLOCKWAIT(flags))) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto out;
|
|
|
|
do {
|
2008-04-24 15:38:36 +04:00
|
|
|
if (so->so_state & SS_CANTSENDMORE) {
|
|
|
|
error = EPIPE;
|
|
|
|
goto release;
|
|
|
|
}
|
1999-06-08 06:39:57 +04:00
|
|
|
if (so->so_error) {
|
|
|
|
error = so->so_error;
|
|
|
|
so->so_error = 0;
|
|
|
|
goto release;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((so->so_state & SS_ISCONNECTED) == 0) {
|
|
|
|
if (so->so_proto->pr_flags & PR_CONNREQUIRED) {
|
2013-08-29 21:49:20 +04:00
|
|
|
if (resid || clen == 0) {
|
2008-04-24 15:38:36 +04:00
|
|
|
error = ENOTCONN;
|
|
|
|
goto release;
|
|
|
|
}
|
2015-05-03 07:18:45 +03:00
|
|
|
} else if (addr == NULL) {
|
2008-04-24 15:38:36 +04:00
|
|
|
error = EDESTADDRREQ;
|
|
|
|
goto release;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
space = sbspace(&so->so_snd);
|
|
|
|
if (flags & MSG_OOB)
|
|
|
|
space += 1024;
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((atomic && resid > so->so_snd.sb_hiwat) ||
|
2008-04-24 15:38:36 +04:00
|
|
|
clen > so->so_snd.sb_hiwat) {
|
|
|
|
error = EMSGSIZE;
|
|
|
|
goto release;
|
|
|
|
}
|
2004-03-21 03:54:46 +03:00
|
|
|
if (space < resid + clen &&
|
1993-03-21 12:45:37 +03:00
|
|
|
(atomic || space < so->so_snd.sb_lowat || space < clen)) {
|
2011-12-21 03:56:28 +04:00
|
|
|
if ((so->so_state & SS_NBIO) || (flags & MSG_NBIO)) {
|
2008-04-24 15:38:36 +04:00
|
|
|
error = EWOULDBLOCK;
|
|
|
|
goto release;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
sbunlock(&so->so_snd);
|
2009-12-20 12:36:05 +03:00
|
|
|
if (wakeup_state & SS_RESTARTSYS) {
|
|
|
|
error = ERESTART;
|
|
|
|
goto out;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
error = sbwait(&so->so_snd);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
2009-12-20 12:36:05 +03:00
|
|
|
wakeup_state = so->so_state;
|
1993-03-21 12:45:37 +03:00
|
|
|
goto restart;
|
|
|
|
}
|
2009-12-20 12:36:05 +03:00
|
|
|
wakeup_state = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
mp = ⊤
|
|
|
|
space -= clen;
|
|
|
|
do {
|
1999-05-15 20:42:48 +04:00
|
|
|
if (uio == NULL) {
|
|
|
|
/*
|
|
|
|
* Data is prepackaged in "top".
|
|
|
|
*/
|
|
|
|
resid = 0;
|
|
|
|
if (flags & MSG_EOR)
|
|
|
|
top->m_flags |= M_EOR;
|
|
|
|
} else do {
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
|
|
|
splx(s);
|
2007-10-05 06:40:25 +04:00
|
|
|
if (top == NULL) {
|
2003-02-26 09:31:08 +03:00
|
|
|
m = m_gethdr(M_WAIT, MT_DATA);
|
1999-05-15 20:42:48 +04:00
|
|
|
mlen = MHLEN;
|
|
|
|
m->m_pkthdr.len = 0;
|
2016-06-10 16:27:10 +03:00
|
|
|
m_reset_rcvif(m);
|
1999-05-15 20:42:48 +04:00
|
|
|
} else {
|
2003-02-26 09:31:08 +03:00
|
|
|
m = m_get(M_WAIT, MT_DATA);
|
1999-05-15 20:42:48 +04:00
|
|
|
mlen = MLEN;
|
|
|
|
}
|
2003-02-26 09:31:08 +03:00
|
|
|
MCLAIM(m, so->so_snd.sb_mowner);
|
2006-06-21 16:55:12 +04:00
|
|
|
if (sock_loan_thresh >= 0 &&
|
|
|
|
uio->uio_iov->iov_len >= sock_loan_thresh &&
|
|
|
|
space >= sock_loan_thresh &&
|
2002-05-02 21:55:48 +04:00
|
|
|
(len = sosend_loan(so, uio, m,
|
2016-10-13 22:10:23 +03:00
|
|
|
space)) != 0) {
|
2002-05-02 21:55:48 +04:00
|
|
|
SOSEND_COUNTER_INCR(&sosend_loan_big);
|
|
|
|
space -= len;
|
|
|
|
goto have_data;
|
|
|
|
}
|
1999-05-15 20:42:48 +04:00
|
|
|
if (resid >= MINCLSIZE && space >= MCLBYTES) {
|
2002-05-02 21:55:48 +04:00
|
|
|
SOSEND_COUNTER_INCR(&sosend_copy_big);
|
2010-10-14 07:07:51 +04:00
|
|
|
m_clget(m, M_DONTWAIT);
|
1999-05-15 20:42:48 +04:00
|
|
|
if ((m->m_flags & M_EXT) == 0)
|
|
|
|
goto nopages;
|
|
|
|
mlen = MCLBYTES;
|
|
|
|
if (atomic && top == 0) {
|
2001-09-29 18:16:19 +04:00
|
|
|
len = lmin(MCLBYTES - max_hdr,
|
2001-02-27 08:19:13 +03:00
|
|
|
resid);
|
1999-05-15 20:42:48 +04:00
|
|
|
m->m_data += max_hdr;
|
|
|
|
} else
|
2001-09-29 18:16:19 +04:00
|
|
|
len = lmin(MCLBYTES, resid);
|
1999-05-15 20:42:48 +04:00
|
|
|
space -= len;
|
|
|
|
} else {
|
2002-05-02 21:55:48 +04:00
|
|
|
nopages:
|
|
|
|
SOSEND_COUNTER_INCR(&sosend_copy_small);
|
2001-09-29 18:16:19 +04:00
|
|
|
len = lmin(lmin(mlen, resid), space);
|
1999-05-15 20:42:48 +04:00
|
|
|
space -= len;
|
|
|
|
/*
|
|
|
|
* For datagram protocols, leave room
|
|
|
|
* for protocol headers in first mbuf.
|
|
|
|
*/
|
|
|
|
if (atomic && top == 0 && len < mlen)
|
|
|
|
MH_ALIGN(m, len);
|
|
|
|
}
|
2007-10-05 06:40:25 +04:00
|
|
|
error = uiomove(mtod(m, void *), (int)len, uio);
|
2002-05-02 21:55:48 +04:00
|
|
|
have_data:
|
1999-05-15 20:42:48 +04:00
|
|
|
resid = uio->uio_resid;
|
|
|
|
m->m_len = len;
|
|
|
|
*mp = m;
|
|
|
|
top->m_pkthdr.len += len;
|
2008-04-24 15:38:36 +04:00
|
|
|
s = splsoftnet();
|
|
|
|
solock(so);
|
2007-10-05 06:40:25 +04:00
|
|
|
if (error != 0)
|
1999-05-15 20:42:48 +04:00
|
|
|
goto release;
|
|
|
|
mp = &m->m_next;
|
|
|
|
if (resid <= 0) {
|
|
|
|
if (flags & MSG_EOR)
|
|
|
|
top->m_flags |= M_EOR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (space > 0 && atomic);
|
2005-02-27 00:34:55 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
if (so->so_state & SS_CANTSENDMORE) {
|
|
|
|
error = EPIPE;
|
|
|
|
goto release;
|
|
|
|
}
|
1999-05-15 20:42:48 +04:00
|
|
|
if (dontroute)
|
|
|
|
so->so_options |= SO_DONTROUTE;
|
|
|
|
if (resid > 0)
|
|
|
|
so->so_state |= SS_MORETOCOME;
|
2015-05-02 20:18:03 +03:00
|
|
|
if (flags & MSG_OOB) {
|
2017-05-01 13:00:43 +03:00
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_sendoob)(
|
|
|
|
so, top, control);
|
2015-05-02 20:18:03 +03:00
|
|
|
} else {
|
2014-08-05 11:55:31 +04:00
|
|
|
error = (*so->so_proto->pr_usrreqs->pr_send)(so,
|
2015-05-09 18:22:47 +03:00
|
|
|
top, addr, control, l);
|
2015-05-02 20:18:03 +03:00
|
|
|
}
|
1999-05-15 20:42:48 +04:00
|
|
|
if (dontroute)
|
|
|
|
so->so_options &= ~SO_DONTROUTE;
|
|
|
|
if (resid > 0)
|
|
|
|
so->so_state &= ~SS_MORETOCOME;
|
|
|
|
clen = 0;
|
2007-10-05 06:40:25 +04:00
|
|
|
control = NULL;
|
|
|
|
top = NULL;
|
1999-05-15 20:42:48 +04:00
|
|
|
mp = ⊤
|
2007-10-05 06:40:25 +04:00
|
|
|
if (error != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto release;
|
|
|
|
} while (resid && space > 0);
|
|
|
|
} while (resid);
|
|
|
|
|
2001-02-27 08:19:13 +03:00
|
|
|
release:
|
1993-03-21 12:45:37 +03:00
|
|
|
sbunlock(&so->so_snd);
|
2001-02-27 08:19:13 +03:00
|
|
|
out:
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
|
|
|
splx(s);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (top)
|
|
|
|
m_freem(top);
|
|
|
|
if (control)
|
|
|
|
m_freem(control);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2008-04-14 19:42:20 +04:00
|
|
|
/*
|
|
|
|
* Following replacement or removal of the first mbuf on the first
|
|
|
|
* mbuf chain of a socket buffer, push necessary state changes back
|
|
|
|
* into the socket buffer so that other consumers see the values
|
|
|
|
* consistently. 'nextrecord' is the callers locally stored value of
|
|
|
|
* the original value of sb->sb_mb->m_nextpkt which must be restored
|
|
|
|
* when the lead mbuf changes. NOTE: 'nextrecord' may be NULL.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
sbsync(struct sockbuf *sb, struct mbuf *nextrecord)
|
|
|
|
{
|
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
KASSERT(solocked(sb->sb_so));
|
|
|
|
|
2008-04-14 19:42:20 +04:00
|
|
|
/*
|
|
|
|
* First, update for the new value of nextrecord. If necessary,
|
|
|
|
* make it the first record.
|
|
|
|
*/
|
|
|
|
if (sb->sb_mb != NULL)
|
|
|
|
sb->sb_mb->m_nextpkt = nextrecord;
|
|
|
|
else
|
|
|
|
sb->sb_mb = nextrecord;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now update any dependent socket buffer fields to reflect
|
|
|
|
* the new state. This is an inline of SB_EMPTY_FIXUP, with
|
|
|
|
* the addition of a second clause that takes care of the
|
|
|
|
* case where sb_mb has been updated, but remains the last
|
|
|
|
* record.
|
|
|
|
*/
|
|
|
|
if (sb->sb_mb == NULL) {
|
|
|
|
sb->sb_mbtail = NULL;
|
|
|
|
sb->sb_lastrecord = NULL;
|
|
|
|
} else if (sb->sb_mb->m_nextpkt == NULL)
|
|
|
|
sb->sb_lastrecord = sb->sb_mb;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Implement receive operations on a socket.
|
|
|
|
* We depend on the way that records are added to the sockbuf
|
|
|
|
* by sbappend*. In particular, each record (mbufs linked through m_next)
|
|
|
|
* must begin with an address if the protocol so specifies,
|
|
|
|
* followed by an optional mbuf or mbufs containing ancillary data,
|
|
|
|
* and then zero or more mbufs of data.
|
|
|
|
* In order to avoid blocking network interrupts for the entire time here,
|
|
|
|
* we splx() while doing the actual copy to user space.
|
|
|
|
* Although the sockbuf is locked, new data may still be appended,
|
|
|
|
* and thus we must maintain consistency of the sockbuf during that time.
|
|
|
|
*
|
|
|
|
* The caller may receive the data as a single mbuf chain by supplying
|
|
|
|
* an mbuf **mp0 for use in returning the chain. The uio is then used
|
|
|
|
* only for the count in uio_resid.
|
|
|
|
*/
|
1993-06-27 10:08:15 +04:00
|
|
|
int
|
2001-02-27 08:19:13 +03:00
|
|
|
soreceive(struct socket *so, struct mbuf **paddr, struct uio *uio,
|
|
|
|
struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2006-03-01 15:38:10 +03:00
|
|
|
struct lwp *l = curlwp;
|
2008-04-24 15:38:36 +04:00
|
|
|
struct mbuf *m, **mp, *mt;
|
2012-07-09 08:35:13 +04:00
|
|
|
size_t len, offset, moff, orig_resid;
|
|
|
|
int atomic, flags, error, s, type;
|
2004-04-22 05:01:40 +04:00
|
|
|
const struct protosw *pr;
|
2001-02-27 08:19:13 +03:00
|
|
|
struct mbuf *nextrecord;
|
2002-06-11 00:43:16 +04:00
|
|
|
int mbuf_removed = 0;
|
2007-11-24 10:46:11 +03:00
|
|
|
const struct domain *dom;
|
2009-12-20 12:36:05 +03:00
|
|
|
short wakeup_state = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2001-02-27 08:19:13 +03:00
|
|
|
pr = so->so_proto;
|
2007-11-24 10:46:11 +03:00
|
|
|
atomic = pr->pr_flags & PR_ATOMIC;
|
|
|
|
dom = pr->pr_domain;
|
1993-03-21 12:45:37 +03:00
|
|
|
mp = mp0;
|
2001-02-27 08:19:13 +03:00
|
|
|
type = 0;
|
|
|
|
orig_resid = uio->uio_resid;
|
2004-05-23 02:52:13 +04:00
|
|
|
|
2007-10-05 06:40:25 +04:00
|
|
|
if (paddr != NULL)
|
|
|
|
*paddr = NULL;
|
|
|
|
if (controlp != NULL)
|
|
|
|
*controlp = NULL;
|
|
|
|
if (flagsp != NULL)
|
2016-10-13 22:10:23 +03:00
|
|
|
flags = *flagsp &~ MSG_EOR;
|
1993-03-21 12:45:37 +03:00
|
|
|
else
|
|
|
|
flags = 0;
|
2002-05-07 12:06:35 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (flags & MSG_OOB) {
|
|
|
|
m = m_get(M_WAIT, MT_DATA);
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2014-07-23 17:17:18 +04:00
|
|
|
error = (*pr->pr_usrreqs->pr_recvoob)(so, m, flags & MSG_PEEK);
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error)
|
|
|
|
goto bad;
|
|
|
|
do {
|
2007-03-04 08:59:00 +03:00
|
|
|
error = uiomove(mtod(m, void *),
|
2012-07-09 08:35:13 +04:00
|
|
|
MIN(uio->uio_resid, m->m_len), uio);
|
1993-03-21 12:45:37 +03:00
|
|
|
m = m_free(m);
|
2007-10-05 06:40:25 +04:00
|
|
|
} while (uio->uio_resid > 0 && error == 0 && m);
|
2001-02-27 08:19:13 +03:00
|
|
|
bad:
|
2007-10-05 06:40:25 +04:00
|
|
|
if (m != NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
m_freem(m);
|
2007-10-05 06:40:25 +04:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2007-10-05 06:40:25 +04:00
|
|
|
if (mp != NULL)
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
*mp = NULL;
|
2008-04-24 15:38:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* solock() provides atomicity of access. splsoftnet() prevents
|
|
|
|
* protocol processing soft interrupts from interrupting us and
|
|
|
|
* blocking (expensive).
|
|
|
|
*/
|
|
|
|
s = splsoftnet();
|
|
|
|
solock(so);
|
2001-02-27 08:19:13 +03:00
|
|
|
restart:
|
2008-04-24 15:38:36 +04:00
|
|
|
if ((error = sblock(&so->so_rcv, SBLOCKWAIT(flags))) != 0) {
|
|
|
|
sounlock(so);
|
|
|
|
splx(s);
|
2007-10-05 06:40:25 +04:00
|
|
|
return error;
|
2008-04-24 15:38:36 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
m = so->so_rcv.sb_mb;
|
|
|
|
/*
|
|
|
|
* If we have less data than requested, block awaiting more
|
|
|
|
* (subject to any timeout) if:
|
1994-05-13 10:01:27 +04:00
|
|
|
* 1. the current count is less than the low water mark,
|
1993-03-21 12:45:37 +03:00
|
|
|
* 2. MSG_WAITALL is set, and it is possible to do the entire
|
1994-05-13 10:01:27 +04:00
|
|
|
* receive operation at once if we block (resid <= hiwat), or
|
|
|
|
* 3. MSG_DONTWAIT is not set.
|
1993-03-21 12:45:37 +03:00
|
|
|
* If MSG_WAITALL is set but resid is larger than the receive buffer,
|
|
|
|
* we have to do the receive in sections, and thus risk returning
|
|
|
|
* a short count if a timeout or signal occurs after we start.
|
|
|
|
*/
|
2007-10-05 06:40:25 +04:00
|
|
|
if (m == NULL ||
|
|
|
|
((flags & MSG_DONTWAIT) == 0 &&
|
|
|
|
so->so_rcv.sb_cc < uio->uio_resid &&
|
|
|
|
(so->so_rcv.sb_cc < so->so_rcv.sb_lowat ||
|
|
|
|
((flags & MSG_WAITALL) &&
|
|
|
|
uio->uio_resid <= so->so_rcv.sb_hiwat)) &&
|
2007-11-24 10:46:11 +03:00
|
|
|
m->m_nextpkt == NULL && !atomic)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
2007-10-05 06:40:25 +04:00
|
|
|
if (m == NULL && so->so_rcv.sb_cc)
|
1993-03-21 12:45:37 +03:00
|
|
|
panic("receive 1");
|
|
|
|
#endif
|
|
|
|
if (so->so_error) {
|
2007-10-05 06:40:25 +04:00
|
|
|
if (m != NULL)
|
1994-05-13 10:01:27 +04:00
|
|
|
goto dontblock;
|
1993-03-21 12:45:37 +03:00
|
|
|
error = so->so_error;
|
|
|
|
if ((flags & MSG_PEEK) == 0)
|
|
|
|
so->so_error = 0;
|
|
|
|
goto release;
|
|
|
|
}
|
|
|
|
if (so->so_state & SS_CANTRCVMORE) {
|
2007-10-05 06:40:25 +04:00
|
|
|
if (m != NULL)
|
1994-05-13 10:01:27 +04:00
|
|
|
goto dontblock;
|
1993-03-21 12:45:37 +03:00
|
|
|
else
|
|
|
|
goto release;
|
|
|
|
}
|
2007-10-05 06:40:25 +04:00
|
|
|
for (; m != NULL; m = m->m_next)
|
1993-03-21 12:45:37 +03:00
|
|
|
if (m->m_type == MT_OOBDATA || (m->m_flags & M_EOR)) {
|
|
|
|
m = so->so_rcv.sb_mb;
|
|
|
|
goto dontblock;
|
|
|
|
}
|
|
|
|
if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 &&
|
|
|
|
(so->so_proto->pr_flags & PR_CONNREQUIRED)) {
|
|
|
|
error = ENOTCONN;
|
|
|
|
goto release;
|
|
|
|
}
|
|
|
|
if (uio->uio_resid == 0)
|
|
|
|
goto release;
|
2011-12-21 03:56:28 +04:00
|
|
|
if ((so->so_state & SS_NBIO) ||
|
|
|
|
(flags & (MSG_DONTWAIT|MSG_NBIO))) {
|
1993-03-21 12:45:37 +03:00
|
|
|
error = EWOULDBLOCK;
|
|
|
|
goto release;
|
|
|
|
}
|
2002-07-03 23:06:47 +04:00
|
|
|
SBLASTRECORDCHK(&so->so_rcv, "soreceive sbwait 1");
|
|
|
|
SBLASTMBUFCHK(&so->so_rcv, "soreceive sbwait 1");
|
1993-03-21 12:45:37 +03:00
|
|
|
sbunlock(&so->so_rcv);
|
2009-12-20 12:36:05 +03:00
|
|
|
if (wakeup_state & SS_RESTARTSYS)
|
|
|
|
error = ERESTART;
|
|
|
|
else
|
|
|
|
error = sbwait(&so->so_rcv);
|
2008-04-24 15:38:36 +04:00
|
|
|
if (error != 0) {
|
|
|
|
sounlock(so);
|
|
|
|
splx(s);
|
2007-10-05 06:40:25 +04:00
|
|
|
return error;
|
2008-04-24 15:38:36 +04:00
|
|
|
}
|
2009-12-20 12:36:05 +03:00
|
|
|
wakeup_state = so->so_state;
|
1993-03-21 12:45:37 +03:00
|
|
|
goto restart;
|
|
|
|
}
|
2001-02-27 08:19:13 +03:00
|
|
|
dontblock:
|
2002-07-03 23:06:47 +04:00
|
|
|
/*
|
|
|
|
* On entry here, m points to the first record of the socket buffer.
|
2008-04-14 19:42:20 +04:00
|
|
|
* From this point onward, we maintain 'nextrecord' as a cache of the
|
|
|
|
* pointer to the next record in the socket buffer. We must keep the
|
|
|
|
* various socket buffer pointers and local stack versions of the
|
|
|
|
* pointers in sync, pushing out modifications before dropping the
|
2008-04-24 15:38:36 +04:00
|
|
|
* socket lock, and re-reading them when picking it up.
|
2008-04-14 19:42:20 +04:00
|
|
|
*
|
|
|
|
* Otherwise, we will race with the network stack appending new data
|
|
|
|
* or records onto the socket buffer by using inconsistent/stale
|
|
|
|
* versions of the field, possibly resulting in socket buffer
|
|
|
|
* corruption.
|
|
|
|
*
|
|
|
|
* By holding the high-level sblock(), we prevent simultaneous
|
|
|
|
* readers from pulling off the front of the socket buffer.
|
2002-07-03 23:06:47 +04:00
|
|
|
*/
|
2007-10-05 06:40:25 +04:00
|
|
|
if (l != NULL)
|
2008-03-27 22:06:51 +03:00
|
|
|
l->l_ru.ru_msgrcv++;
|
2002-07-03 23:06:47 +04:00
|
|
|
KASSERT(m == so->so_rcv.sb_mb);
|
|
|
|
SBLASTRECORDCHK(&so->so_rcv, "soreceive 1");
|
|
|
|
SBLASTMBUFCHK(&so->so_rcv, "soreceive 1");
|
1993-03-21 12:45:37 +03:00
|
|
|
nextrecord = m->m_nextpkt;
|
|
|
|
if (pr->pr_flags & PR_ADDR) {
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (m->m_type != MT_SONAME)
|
|
|
|
panic("receive 1a");
|
|
|
|
#endif
|
1993-06-27 10:08:15 +04:00
|
|
|
orig_resid = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (flags & MSG_PEEK) {
|
|
|
|
if (paddr)
|
|
|
|
*paddr = m_copy(m, 0, m->m_len);
|
|
|
|
m = m->m_next;
|
|
|
|
} else {
|
|
|
|
sbfree(&so->so_rcv, m);
|
2002-06-11 00:43:16 +04:00
|
|
|
mbuf_removed = 1;
|
2007-10-05 06:40:25 +04:00
|
|
|
if (paddr != NULL) {
|
1993-03-21 12:45:37 +03:00
|
|
|
*paddr = m;
|
|
|
|
so->so_rcv.sb_mb = m->m_next;
|
2007-10-05 06:40:25 +04:00
|
|
|
m->m_next = NULL;
|
1993-03-21 12:45:37 +03:00
|
|
|
m = so->so_rcv.sb_mb;
|
|
|
|
} else {
|
2016-10-02 22:26:46 +03:00
|
|
|
m = so->so_rcv.sb_mb = m_free(m);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2008-04-14 19:42:20 +04:00
|
|
|
sbsync(&so->so_rcv, nextrecord);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
2015-10-14 00:28:34 +03:00
|
|
|
if (pr->pr_flags & PR_ADDR_OPT) {
|
|
|
|
/*
|
|
|
|
* For SCTP we may be getting a
|
|
|
|
* whole message OR a partial delivery.
|
|
|
|
*/
|
|
|
|
if (m->m_type == MT_SONAME) {
|
|
|
|
orig_resid = 0;
|
|
|
|
if (flags & MSG_PEEK) {
|
|
|
|
if (paddr)
|
|
|
|
*paddr = m_copy(m, 0, m->m_len);
|
|
|
|
m = m->m_next;
|
|
|
|
} else {
|
|
|
|
sbfree(&so->so_rcv, m);
|
|
|
|
if (paddr) {
|
|
|
|
*paddr = m;
|
|
|
|
so->so_rcv.sb_mb = m->m_next;
|
|
|
|
m->m_next = 0;
|
|
|
|
m = so->so_rcv.sb_mb;
|
|
|
|
} else {
|
2016-10-02 22:26:46 +03:00
|
|
|
m = so->so_rcv.sb_mb = m_free(m);
|
2015-10-14 00:28:34 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-14 19:42:20 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Process one or more MT_CONTROL mbufs present before any data mbufs
|
|
|
|
* in the first mbuf chain on the socket buffer. If MSG_PEEK, we
|
|
|
|
* just copy the data; if !MSG_PEEK, we call into the protocol to
|
|
|
|
* perform externalization (or freeing if controlp == NULL).
|
|
|
|
*/
|
|
|
|
if (__predict_false(m != NULL && m->m_type == MT_CONTROL)) {
|
|
|
|
struct mbuf *cm = NULL, *cmn;
|
|
|
|
struct mbuf **cme = &cm;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (flags & MSG_PEEK) {
|
|
|
|
if (controlp != NULL) {
|
|
|
|
*controlp = m_copy(m, 0, m->m_len);
|
|
|
|
controlp = &(*controlp)->m_next;
|
|
|
|
}
|
|
|
|
m = m->m_next;
|
|
|
|
} else {
|
|
|
|
sbfree(&so->so_rcv, m);
|
1993-03-21 12:45:37 +03:00
|
|
|
so->so_rcv.sb_mb = m->m_next;
|
2007-10-05 06:40:25 +04:00
|
|
|
m->m_next = NULL;
|
2008-04-14 19:42:20 +04:00
|
|
|
*cme = m;
|
|
|
|
cme = &(*cme)->m_next;
|
1993-03-21 12:45:37 +03:00
|
|
|
m = so->so_rcv.sb_mb;
|
2008-04-14 19:42:20 +04:00
|
|
|
}
|
|
|
|
} while (m != NULL && m->m_type == MT_CONTROL);
|
|
|
|
if ((flags & MSG_PEEK) == 0)
|
|
|
|
sbsync(&so->so_rcv, nextrecord);
|
|
|
|
for (; cm != NULL; cm = cmn) {
|
|
|
|
cmn = cm->m_next;
|
|
|
|
cm->m_next = NULL;
|
|
|
|
type = mtod(cm, struct cmsghdr *)->cmsg_type;
|
|
|
|
if (controlp != NULL) {
|
|
|
|
if (dom->dom_externalize != NULL &&
|
|
|
|
type == SCM_RIGHTS) {
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2008-04-14 19:42:20 +04:00
|
|
|
splx(s);
|
2011-06-26 20:42:39 +04:00
|
|
|
error = (*dom->dom_externalize)(cm, l,
|
|
|
|
(flags & MSG_CMSG_CLOEXEC) ?
|
|
|
|
O_CLOEXEC : 0);
|
2008-04-14 19:42:20 +04:00
|
|
|
s = splsoftnet();
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2008-04-14 19:42:20 +04:00
|
|
|
}
|
|
|
|
*controlp = cm;
|
|
|
|
while (*controlp != NULL)
|
|
|
|
controlp = &(*controlp)->m_next;
|
1993-03-21 12:45:37 +03:00
|
|
|
} else {
|
2004-08-25 13:03:23 +04:00
|
|
|
/*
|
|
|
|
* Dispose of any SCM_RIGHTS message that went
|
|
|
|
* through the read path rather than recv.
|
|
|
|
*/
|
2008-04-14 19:42:20 +04:00
|
|
|
if (dom->dom_dispose != NULL &&
|
|
|
|
type == SCM_RIGHTS) {
|
2017-05-01 13:00:43 +03:00
|
|
|
sounlock(so);
|
2008-04-14 19:42:20 +04:00
|
|
|
(*dom->dom_dispose)(cm);
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2008-04-14 19:42:20 +04:00
|
|
|
}
|
|
|
|
m_freem(cm);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
2008-04-14 19:42:20 +04:00
|
|
|
if (m != NULL)
|
|
|
|
nextrecord = so->so_rcv.sb_mb->m_nextpkt;
|
|
|
|
else
|
|
|
|
nextrecord = so->so_rcv.sb_mb;
|
|
|
|
orig_resid = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2002-07-03 23:06:47 +04:00
|
|
|
|
2008-04-14 19:42:20 +04:00
|
|
|
/* If m is non-NULL, we have some data to read. */
|
|
|
|
if (__predict_true(m != NULL)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
type = m->m_type;
|
|
|
|
if (type == MT_OOBDATA)
|
|
|
|
flags |= MSG_OOB;
|
|
|
|
}
|
2002-07-03 23:06:47 +04:00
|
|
|
SBLASTRECORDCHK(&so->so_rcv, "soreceive 2");
|
|
|
|
SBLASTMBUFCHK(&so->so_rcv, "soreceive 2");
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
moff = 0;
|
|
|
|
offset = 0;
|
2007-10-05 06:40:25 +04:00
|
|
|
while (m != NULL && uio->uio_resid > 0 && error == 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (m->m_type == MT_OOBDATA) {
|
|
|
|
if (type != MT_OOBDATA)
|
|
|
|
break;
|
|
|
|
} else if (type == MT_OOBDATA)
|
|
|
|
break;
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
else if (m->m_type != MT_DATA && m->m_type != MT_HEADER)
|
|
|
|
panic("receive 3");
|
|
|
|
#endif
|
|
|
|
so->so_state &= ~SS_RCVATMARK;
|
2009-12-20 12:36:05 +03:00
|
|
|
wakeup_state = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
len = uio->uio_resid;
|
|
|
|
if (so->so_oobmark && len > so->so_oobmark - offset)
|
|
|
|
len = so->so_oobmark - offset;
|
|
|
|
if (len > m->m_len - moff)
|
|
|
|
len = m->m_len - moff;
|
|
|
|
/*
|
|
|
|
* If mp is set, just pass back the mbufs.
|
|
|
|
* Otherwise copy them out via the uio, then free.
|
|
|
|
* Sockbuf must be consistent here (points to current mbuf,
|
|
|
|
* it points to next record) when we drop priority;
|
|
|
|
* we must note any additions to the sockbuf when we
|
|
|
|
* block interrupts again.
|
|
|
|
*/
|
2007-10-05 06:40:25 +04:00
|
|
|
if (mp == NULL) {
|
2002-07-03 23:06:47 +04:00
|
|
|
SBLASTRECORDCHK(&so->so_rcv, "soreceive uiomove");
|
|
|
|
SBLASTMBUFCHK(&so->so_rcv, "soreceive uiomove");
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
2012-07-09 08:35:13 +04:00
|
|
|
error = uiomove(mtod(m, char *) + moff, len, uio);
|
1995-08-13 03:59:09 +04:00
|
|
|
s = splsoftnet();
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2007-10-05 06:40:25 +04:00
|
|
|
if (error != 0) {
|
2002-06-11 00:43:16 +04:00
|
|
|
/*
|
|
|
|
* If any part of the record has been removed
|
|
|
|
* (such as the MT_SONAME mbuf, which will
|
|
|
|
* happen when PR_ADDR, and thus also
|
|
|
|
* PR_ATOMIC, is set), then drop the entire
|
|
|
|
* record to maintain the atomicity of the
|
|
|
|
* receive operation.
|
|
|
|
*
|
|
|
|
* This avoids a later panic("receive 1a")
|
|
|
|
* when compiled with DIAGNOSTIC.
|
|
|
|
*/
|
2007-11-24 10:46:11 +03:00
|
|
|
if (m && mbuf_removed && atomic)
|
2002-06-11 00:43:16 +04:00
|
|
|
(void) sbdroprecord(&so->so_rcv);
|
|
|
|
|
2001-09-17 22:59:29 +04:00
|
|
|
goto release;
|
2002-06-11 00:43:16 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
} else
|
|
|
|
uio->uio_resid -= len;
|
|
|
|
if (len == m->m_len - moff) {
|
|
|
|
if (m->m_flags & M_EOR)
|
|
|
|
flags |= MSG_EOR;
|
2015-10-14 00:28:34 +03:00
|
|
|
#ifdef SCTP
|
|
|
|
if (m->m_flags & M_NOTIFICATION)
|
|
|
|
flags |= MSG_NOTIFICATION;
|
|
|
|
#endif /* SCTP */
|
1993-03-21 12:45:37 +03:00
|
|
|
if (flags & MSG_PEEK) {
|
|
|
|
m = m->m_next;
|
|
|
|
moff = 0;
|
|
|
|
} else {
|
|
|
|
nextrecord = m->m_nextpkt;
|
|
|
|
sbfree(&so->so_rcv, m);
|
|
|
|
if (mp) {
|
|
|
|
*mp = m;
|
|
|
|
mp = &m->m_next;
|
|
|
|
so->so_rcv.sb_mb = m = m->m_next;
|
Eliminate address family-specific route caches (struct route, struct
route_in6, struct route_iso), replacing all caches with a struct
route.
The principle benefit of this change is that all of the protocol
families can benefit from route cache-invalidation, which is
necessary for correct routing. Route-cache invalidation fixes an
ancient PR, kern/3508, at long last; it fixes various other PRs,
also.
Discussions with and ideas from Joerg Sonnenberger influenced this
work tremendously. Of course, all design oversights and bugs are
mine.
DETAILS
1 I added to each address family a pool of sockaddrs. I have
introduced routines for allocating, copying, and duplicating,
and freeing sockaddrs:
struct sockaddr *sockaddr_alloc(sa_family_t af, int flags);
struct sockaddr *sockaddr_copy(struct sockaddr *dst,
const struct sockaddr *src);
struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags);
void sockaddr_free(struct sockaddr *sa);
sockaddr_alloc() returns either a sockaddr from the pool belonging
to the specified family, or NULL if the pool is exhausted. The
returned sockaddr has the right size for that family; sa_family
and sa_len fields are initialized to the family and sockaddr
length---e.g., sa_family = AF_INET and sa_len = sizeof(struct
sockaddr_in). sockaddr_free() puts the given sockaddr back into
its family's pool.
sockaddr_dup() and sockaddr_copy() work analogously to strdup()
and strcpy(), respectively. sockaddr_copy() KASSERTs that the
family of the destination and source sockaddrs are alike.
The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is
passed directly to pool_get(9).
2 I added routines for initializing sockaddrs in each address
family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(),
etc. They are fairly self-explanatory.
3 structs route_in6 and route_iso are no more. All protocol families
use struct route. I have changed the route cache, 'struct route',
so that it does not contain storage space for a sockaddr. Instead,
struct route points to a sockaddr coming from the pool the sockaddr
belongs to. I added a new method to struct route, rtcache_setdst(),
for setting the cache destination:
int rtcache_setdst(struct route *, const struct sockaddr *);
rtcache_setdst() returns 0 on success, or ENOMEM if no memory is
available to create the sockaddr storage.
It is now possible for rtcache_getdst() to return NULL if, say,
rtcache_setdst() failed. I check the return value for NULL
everywhere in the kernel.
4 Each routing domain (struct domain) has a list of live route
caches, dom_rtcache. rtflushall(sa_family_t af) looks up the
domain indicated by 'af', walks the domain's list of route caches
and invalidates each one.
2007-05-03 00:40:22 +04:00
|
|
|
*mp = NULL;
|
1993-03-21 12:45:37 +03:00
|
|
|
} else {
|
2016-10-02 22:26:46 +03:00
|
|
|
m = so->so_rcv.sb_mb = m_free(m);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2002-07-03 23:06:47 +04:00
|
|
|
/*
|
|
|
|
* If m != NULL, we also know that
|
|
|
|
* so->so_rcv.sb_mb != NULL.
|
|
|
|
*/
|
|
|
|
KASSERT(so->so_rcv.sb_mb == m);
|
|
|
|
if (m) {
|
1993-03-21 12:45:37 +03:00
|
|
|
m->m_nextpkt = nextrecord;
|
2002-07-03 23:06:47 +04:00
|
|
|
if (nextrecord == NULL)
|
|
|
|
so->so_rcv.sb_lastrecord = m;
|
|
|
|
} else {
|
|
|
|
so->so_rcv.sb_mb = nextrecord;
|
2002-07-04 01:39:40 +04:00
|
|
|
SB_EMPTY_FIXUP(&so->so_rcv);
|
2002-07-03 23:06:47 +04:00
|
|
|
}
|
|
|
|
SBLASTRECORDCHK(&so->so_rcv, "soreceive 3");
|
|
|
|
SBLASTMBUFCHK(&so->so_rcv, "soreceive 3");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2007-10-05 06:40:25 +04:00
|
|
|
} else if (flags & MSG_PEEK)
|
|
|
|
moff += len;
|
|
|
|
else {
|
2008-04-24 15:38:36 +04:00
|
|
|
if (mp != NULL) {
|
|
|
|
mt = m_copym(m, 0, len, M_NOWAIT);
|
|
|
|
if (__predict_false(mt == NULL)) {
|
|
|
|
sounlock(so);
|
|
|
|
mt = m_copym(m, 0, len, M_WAIT);
|
|
|
|
solock(so);
|
|
|
|
}
|
|
|
|
*mp = mt;
|
|
|
|
}
|
2007-10-05 06:40:25 +04:00
|
|
|
m->m_data += len;
|
|
|
|
m->m_len -= len;
|
|
|
|
so->so_rcv.sb_cc -= len;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (so->so_oobmark) {
|
|
|
|
if ((flags & MSG_PEEK) == 0) {
|
|
|
|
so->so_oobmark -= len;
|
|
|
|
if (so->so_oobmark == 0) {
|
|
|
|
so->so_state |= SS_RCVATMARK;
|
|
|
|
break;
|
|
|
|
}
|
1993-10-27 01:36:25 +03:00
|
|
|
} else {
|
1993-03-21 12:45:37 +03:00
|
|
|
offset += len;
|
1993-10-27 01:36:25 +03:00
|
|
|
if (offset == so->so_oobmark)
|
|
|
|
break;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (flags & MSG_EOR)
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* If the MSG_WAITALL flag is set (for non-atomic socket),
|
|
|
|
* we must not quit until "uio->uio_resid == 0" or an error
|
|
|
|
* termination. If a signal/timeout occurs, return
|
|
|
|
* with a short count but without error.
|
|
|
|
* Keep sockbuf locked against other readers.
|
|
|
|
*/
|
2007-10-05 06:40:25 +04:00
|
|
|
while (flags & MSG_WAITALL && m == NULL && uio->uio_resid > 0 &&
|
1993-06-27 10:08:15 +04:00
|
|
|
!sosendallatonce(so) && !nextrecord) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (so->so_error || so->so_state & SS_CANTRCVMORE)
|
|
|
|
break;
|
2002-06-11 04:21:33 +04:00
|
|
|
/*
|
|
|
|
* If we are peeking and the socket receive buffer is
|
|
|
|
* full, stop since we can't get more data to peek at.
|
|
|
|
*/
|
|
|
|
if ((flags & MSG_PEEK) && sbspace(&so->so_rcv) <= 0)
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* If we've drained the socket buffer, tell the
|
|
|
|
* protocol in case it needs to do something to
|
|
|
|
* get it filled again.
|
|
|
|
*/
|
|
|
|
if ((pr->pr_flags & PR_WANTRCVD) && so->so_pcb)
|
2014-08-08 07:05:44 +04:00
|
|
|
(*pr->pr_usrreqs->pr_rcvd)(so, flags, l);
|
2002-07-03 23:06:47 +04:00
|
|
|
SBLASTRECORDCHK(&so->so_rcv, "soreceive sbwait 2");
|
|
|
|
SBLASTMBUFCHK(&so->so_rcv, "soreceive sbwait 2");
|
2009-12-20 12:36:05 +03:00
|
|
|
if (wakeup_state & SS_RESTARTSYS)
|
|
|
|
error = ERESTART;
|
|
|
|
else
|
|
|
|
error = sbwait(&so->so_rcv);
|
2007-10-05 06:40:25 +04:00
|
|
|
if (error != 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
sbunlock(&so->so_rcv);
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
2007-10-05 06:40:25 +04:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1996-02-04 05:17:43 +03:00
|
|
|
if ((m = so->so_rcv.sb_mb) != NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
nextrecord = m->m_nextpkt;
|
2009-12-20 12:36:05 +03:00
|
|
|
wakeup_state = so->so_state;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
1993-06-27 10:08:15 +04:00
|
|
|
|
2007-11-24 10:46:11 +03:00
|
|
|
if (m && atomic) {
|
1993-06-27 10:08:15 +04:00
|
|
|
flags |= MSG_TRUNC;
|
|
|
|
if ((flags & MSG_PEEK) == 0)
|
|
|
|
(void) sbdroprecord(&so->so_rcv);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((flags & MSG_PEEK) == 0) {
|
2007-10-05 06:40:25 +04:00
|
|
|
if (m == NULL) {
|
2002-07-03 23:06:47 +04:00
|
|
|
/*
|
2002-07-04 01:39:40 +04:00
|
|
|
* First part is an inline SB_EMPTY_FIXUP(). Second
|
2002-07-03 23:06:47 +04:00
|
|
|
* part makes sure sb_lastrecord is up-to-date if
|
|
|
|
* there is still data in the socket buffer.
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
so->so_rcv.sb_mb = nextrecord;
|
2002-07-03 23:06:47 +04:00
|
|
|
if (so->so_rcv.sb_mb == NULL) {
|
|
|
|
so->so_rcv.sb_mbtail = NULL;
|
|
|
|
so->so_rcv.sb_lastrecord = NULL;
|
|
|
|
} else if (nextrecord->m_nextpkt == NULL)
|
|
|
|
so->so_rcv.sb_lastrecord = nextrecord;
|
|
|
|
}
|
|
|
|
SBLASTRECORDCHK(&so->so_rcv, "soreceive 4");
|
|
|
|
SBLASTMBUFCHK(&so->so_rcv, "soreceive 4");
|
1993-03-21 12:45:37 +03:00
|
|
|
if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
|
2014-08-08 07:05:44 +04:00
|
|
|
(*pr->pr_usrreqs->pr_rcvd)(so, flags, l);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-06-27 10:08:15 +04:00
|
|
|
if (orig_resid == uio->uio_resid && orig_resid &&
|
|
|
|
(flags & MSG_EOR) == 0 && (so->so_state & SS_CANTRCVMORE) == 0) {
|
|
|
|
sbunlock(&so->so_rcv);
|
|
|
|
goto restart;
|
|
|
|
}
|
2005-02-27 00:34:55 +03:00
|
|
|
|
2007-10-05 06:40:25 +04:00
|
|
|
if (flagsp != NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
*flagsp |= flags;
|
2001-02-27 08:19:13 +03:00
|
|
|
release:
|
1993-03-21 12:45:37 +03:00
|
|
|
sbunlock(&so->so_rcv);
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
2007-10-05 06:40:25 +04:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-05-04 15:24:06 +04:00
|
|
|
int
|
2001-02-27 08:19:13 +03:00
|
|
|
soshutdown(struct socket *so, int how)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2004-04-22 05:01:40 +04:00
|
|
|
const struct protosw *pr;
|
2008-04-24 15:38:36 +04:00
|
|
|
int error;
|
|
|
|
|
|
|
|
KASSERT(solocked(so));
|
1998-04-27 17:31:45 +04:00
|
|
|
|
2001-02-27 08:19:13 +03:00
|
|
|
pr = so->so_proto;
|
1998-04-27 17:31:45 +04:00
|
|
|
if (!(how == SHUT_RD || how == SHUT_WR || how == SHUT_RDWR))
|
|
|
|
return (EINVAL);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
if (how == SHUT_RD || how == SHUT_RDWR) {
|
1993-03-21 12:45:37 +03:00
|
|
|
sorflush(so);
|
2008-04-24 15:38:36 +04:00
|
|
|
error = 0;
|
|
|
|
}
|
1998-04-27 17:31:45 +04:00
|
|
|
if (how == SHUT_WR || how == SHUT_RDWR)
|
split PRU_DISCONNECT, PRU_SHUTDOWN and PRU_ABORT function out of
pr_generic() usrreq switches and put into separate functions
xxx_disconnect(struct socket *)
xxx_shutdown(struct socket *)
xxx_abort(struct socket *)
- always KASSERT(solocked(so)) even if not implemented
- replace calls to pr_generic() with req =
PRU_{DISCONNECT,SHUTDOWN,ABORT}
with calls to pr_{disconnect,shutdown,abort}() respectively
rename existing internal functions used to implement above functionality
to permit use of the names for xxx_{disconnect,shutdown,abort}().
- {l2cap,sco,rfcomm}_disconnect() ->
{l2cap,sco,rfcomm}_disconnect_pcb()
- {unp,rip,tcp}_disconnect() -> {unp,rip,tcp}_disconnect1()
- unp_shutdown() -> unp_shutdown1()
patch reviewed by rmind
2014-07-31 07:39:35 +04:00
|
|
|
error = (*pr->pr_usrreqs->pr_shutdown)(so);
|
2008-04-24 15:38:36 +04:00
|
|
|
|
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2009-12-10 00:32:58 +03:00
|
|
|
void
|
2009-12-20 12:36:05 +03:00
|
|
|
sorestart(struct socket *so)
|
2009-04-04 14:12:51 +04:00
|
|
|
{
|
2009-12-20 12:36:05 +03:00
|
|
|
/*
|
|
|
|
* An application has called close() on an fd on which another
|
|
|
|
* of its threads has called a socket system call.
|
|
|
|
* Mark this and wake everyone up, and code that would block again
|
|
|
|
* instead returns ERESTART.
|
|
|
|
* On system call re-entry the fd is validated and EBADF returned.
|
|
|
|
* Any other fd will block again on the 2nd syscall.
|
|
|
|
*/
|
2009-04-04 14:12:51 +04:00
|
|
|
solock(so);
|
2009-12-20 12:36:05 +03:00
|
|
|
so->so_state |= SS_RESTARTSYS;
|
2009-04-04 14:12:51 +04:00
|
|
|
cv_broadcast(&so->so_cv);
|
2009-12-20 12:36:05 +03:00
|
|
|
cv_broadcast(&so->so_snd.sb_cv);
|
|
|
|
cv_broadcast(&so->so_rcv.sb_cv);
|
2009-04-04 14:12:51 +04:00
|
|
|
sounlock(so);
|
|
|
|
}
|
|
|
|
|
1994-05-04 15:24:06 +04:00
|
|
|
void
|
2001-02-27 08:19:13 +03:00
|
|
|
sorflush(struct socket *so)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-02-27 08:19:13 +03:00
|
|
|
struct sockbuf *sb, asb;
|
2004-04-22 05:01:40 +04:00
|
|
|
const struct protosw *pr;
|
2008-04-24 15:38:36 +04:00
|
|
|
|
|
|
|
KASSERT(solocked(so));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2001-02-27 08:19:13 +03:00
|
|
|
sb = &so->so_rcv;
|
|
|
|
pr = so->so_proto;
|
1993-03-21 12:45:37 +03:00
|
|
|
socantrcvmore(so);
|
2008-04-24 15:38:36 +04:00
|
|
|
sb->sb_flags |= SB_NOINTR;
|
|
|
|
(void )sblock(sb, M_WAITOK);
|
1993-03-21 12:45:37 +03:00
|
|
|
sbunlock(sb);
|
|
|
|
asb = *sb;
|
2003-09-04 20:44:05 +04:00
|
|
|
/*
|
|
|
|
* Clear most of the sockbuf structure, but leave some of the
|
|
|
|
* fields valid.
|
|
|
|
*/
|
|
|
|
memset(&sb->sb_startzero, 0,
|
|
|
|
sizeof(*sb) - offsetof(struct sockbuf, sb_startzero));
|
2008-04-24 15:38:36 +04:00
|
|
|
if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose) {
|
|
|
|
sounlock(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
(*pr->pr_domain->dom_dispose)(asb.sb_mb);
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
|
|
|
}
|
2004-04-17 19:15:29 +04:00
|
|
|
sbrelease(&asb, so);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
/*
|
|
|
|
* internal set SOL_SOCKET options
|
|
|
|
*/
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
static int
|
2008-08-06 19:01:23 +04:00
|
|
|
sosetopt1(struct socket *so, const struct sockopt *sopt)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2013-10-18 00:57:06 +04:00
|
|
|
int error = EINVAL, opt;
|
|
|
|
int optval = 0; /* XXX: gcc */
|
2008-08-06 19:01:23 +04:00
|
|
|
struct linger l;
|
|
|
|
struct timeval tv;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
|
2009-01-14 21:09:00 +03:00
|
|
|
switch ((opt = sopt->sopt_name)) {
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
|
2008-08-04 07:55:47 +04:00
|
|
|
case SO_ACCEPTFILTER:
|
2008-10-14 17:45:26 +04:00
|
|
|
error = accept_filt_setopt(so, sopt);
|
|
|
|
KASSERT(solocked(so));
|
2008-08-04 07:55:47 +04:00
|
|
|
break;
|
|
|
|
|
2017-05-01 13:00:43 +03:00
|
|
|
case SO_LINGER:
|
|
|
|
error = sockopt_get(sopt, &l, sizeof(l));
|
2008-10-14 17:45:26 +04:00
|
|
|
solock(so);
|
2017-05-01 13:00:43 +03:00
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
if (l.l_linger < 0 || l.l_linger > USHRT_MAX ||
|
|
|
|
l.l_linger > (INT_MAX / hz)) {
|
2008-10-14 17:45:26 +04:00
|
|
|
error = EDOM;
|
|
|
|
break;
|
|
|
|
}
|
2017-05-01 13:00:43 +03:00
|
|
|
so->so_linger = l.l_linger;
|
|
|
|
if (l.l_onoff)
|
|
|
|
so->so_options |= SO_LINGER;
|
|
|
|
else
|
|
|
|
so->so_options &= ~SO_LINGER;
|
|
|
|
break;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
|
|
|
|
case SO_DEBUG:
|
|
|
|
case SO_KEEPALIVE:
|
|
|
|
case SO_DONTROUTE:
|
|
|
|
case SO_USELOOPBACK:
|
|
|
|
case SO_BROADCAST:
|
|
|
|
case SO_REUSEADDR:
|
|
|
|
case SO_REUSEPORT:
|
|
|
|
case SO_OOBINLINE:
|
|
|
|
case SO_TIMESTAMP:
|
2012-01-25 04:28:35 +04:00
|
|
|
case SO_NOSIGPIPE:
|
2009-01-19 05:27:57 +03:00
|
|
|
#ifdef SO_OTIMESTAMP
|
|
|
|
case SO_OTIMESTAMP:
|
|
|
|
#endif
|
2008-08-06 19:01:23 +04:00
|
|
|
error = sockopt_getint(sopt, &optval);
|
2008-10-14 17:45:26 +04:00
|
|
|
solock(so);
|
2008-08-06 19:01:23 +04:00
|
|
|
if (error)
|
2008-10-14 17:45:26 +04:00
|
|
|
break;
|
2008-08-06 19:01:23 +04:00
|
|
|
if (optval)
|
2009-01-14 21:09:00 +03:00
|
|
|
so->so_options |= opt;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
else
|
2009-01-14 21:09:00 +03:00
|
|
|
so->so_options &= ~opt;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_SNDBUF:
|
|
|
|
case SO_RCVBUF:
|
|
|
|
case SO_SNDLOWAT:
|
|
|
|
case SO_RCVLOWAT:
|
2008-08-06 19:01:23 +04:00
|
|
|
error = sockopt_getint(sopt, &optval);
|
2008-10-14 17:45:26 +04:00
|
|
|
solock(so);
|
2008-08-06 19:01:23 +04:00
|
|
|
if (error)
|
2008-10-14 17:45:26 +04:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
/*
|
|
|
|
* Values < 1 make no sense for any of these
|
|
|
|
* options, so disallow them.
|
|
|
|
*/
|
2008-10-14 17:45:26 +04:00
|
|
|
if (optval < 1) {
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2009-01-14 21:09:00 +03:00
|
|
|
switch (opt) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case SO_SNDBUF:
|
2008-10-14 17:45:26 +04:00
|
|
|
if (sbreserve(&so->so_snd, (u_long)optval, so) == 0) {
|
|
|
|
error = ENOBUFS;
|
|
|
|
break;
|
|
|
|
}
|
2008-08-06 19:01:23 +04:00
|
|
|
so->so_snd.sb_flags &= ~SB_AUTOSIZE;
|
|
|
|
break;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
case SO_RCVBUF:
|
2008-10-14 17:45:26 +04:00
|
|
|
if (sbreserve(&so->so_rcv, (u_long)optval, so) == 0) {
|
|
|
|
error = ENOBUFS;
|
|
|
|
break;
|
|
|
|
}
|
2008-08-06 19:01:23 +04:00
|
|
|
so->so_rcv.sb_flags &= ~SB_AUTOSIZE;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the low-water is never greater than
|
|
|
|
* the high-water.
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
case SO_SNDLOWAT:
|
2008-08-06 19:01:23 +04:00
|
|
|
if (optval > so->so_snd.sb_hiwat)
|
|
|
|
optval = so->so_snd.sb_hiwat;
|
|
|
|
|
|
|
|
so->so_snd.sb_lowat = optval;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
break;
|
2008-08-06 19:01:23 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
case SO_RCVLOWAT:
|
2008-08-06 19:01:23 +04:00
|
|
|
if (optval > so->so_rcv.sb_hiwat)
|
|
|
|
optval = so->so_rcv.sb_hiwat;
|
|
|
|
|
|
|
|
so->so_rcv.sb_lowat = optval;
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-01-14 21:09:00 +03:00
|
|
|
#ifdef COMPAT_50
|
|
|
|
case SO_OSNDTIMEO:
|
|
|
|
case SO_ORCVTIMEO: {
|
|
|
|
struct timeval50 otv;
|
|
|
|
error = sockopt_get(sopt, &otv, sizeof(otv));
|
2009-01-23 18:40:19 +03:00
|
|
|
if (error) {
|
|
|
|
solock(so);
|
2009-01-15 18:29:10 +03:00
|
|
|
break;
|
2009-01-23 18:40:19 +03:00
|
|
|
}
|
2009-01-14 21:09:00 +03:00
|
|
|
timeval50_to_timeval(&otv, &tv);
|
|
|
|
opt = opt == SO_OSNDTIMEO ? SO_SNDTIMEO : SO_RCVTIMEO;
|
2009-01-15 18:25:37 +03:00
|
|
|
error = 0;
|
2009-01-14 21:09:00 +03:00
|
|
|
/*FALLTHROUGH*/
|
|
|
|
}
|
|
|
|
#endif /* COMPAT_50 */
|
|
|
|
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
case SO_SNDTIMEO:
|
|
|
|
case SO_RCVTIMEO:
|
2009-01-15 18:25:37 +03:00
|
|
|
if (error)
|
2009-01-14 21:09:00 +03:00
|
|
|
error = sockopt_get(sopt, &tv, sizeof(tv));
|
2008-10-14 17:45:26 +04:00
|
|
|
solock(so);
|
2008-08-06 19:01:23 +04:00
|
|
|
if (error)
|
2008-10-14 17:45:26 +04:00
|
|
|
break;
|
2008-08-06 19:01:23 +04:00
|
|
|
|
2008-10-14 17:45:26 +04:00
|
|
|
if (tv.tv_sec > (INT_MAX - tv.tv_usec / tick) / hz) {
|
|
|
|
error = EDOM;
|
|
|
|
break;
|
|
|
|
}
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
optval = tv.tv_sec * hz + tv.tv_usec / tick;
|
|
|
|
if (optval == 0 && tv.tv_usec != 0)
|
|
|
|
optval = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2009-01-14 21:09:00 +03:00
|
|
|
switch (opt) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case SO_SNDTIMEO:
|
2008-08-06 19:01:23 +04:00
|
|
|
so->so_snd.sb_timeo = optval;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
case SO_RCVTIMEO:
|
2008-08-06 19:01:23 +04:00
|
|
|
so->so_rcv.sb_timeo = optval;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
default:
|
2008-10-14 17:45:26 +04:00
|
|
|
solock(so);
|
|
|
|
error = ENOPROTOOPT;
|
|
|
|
break;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
}
|
2008-10-14 17:45:26 +04:00
|
|
|
KASSERT(solocked(so));
|
|
|
|
return error;
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
int
|
2008-08-06 19:01:23 +04:00
|
|
|
sosetopt(struct socket *so, struct sockopt *sopt)
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
{
|
|
|
|
int error, prerr;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-10-14 17:45:26 +04:00
|
|
|
if (sopt->sopt_level == SOL_SOCKET) {
|
2008-08-06 19:01:23 +04:00
|
|
|
error = sosetopt1(so, sopt);
|
2008-10-14 17:45:26 +04:00
|
|
|
KASSERT(solocked(so));
|
|
|
|
} else {
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
error = ENOPROTOOPT;
|
2008-10-14 17:45:26 +04:00
|
|
|
solock(so);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
if ((error == 0 || error == ENOPROTOOPT) &&
|
|
|
|
so->so_proto != NULL && so->so_proto->pr_ctloutput != NULL) {
|
|
|
|
/* give the protocol stack a shot */
|
2008-08-06 19:01:23 +04:00
|
|
|
prerr = (*so->so_proto->pr_ctloutput)(PRCO_SETOPT, so, sopt);
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
if (prerr == 0)
|
|
|
|
error = 0;
|
|
|
|
else if (prerr != ENOPROTOOPT)
|
|
|
|
error = prerr;
|
2008-08-06 19:01:23 +04:00
|
|
|
}
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
1) Introduce a new socket option, (SOL_SOCKET, SO_NOHEADER), that
tells a socket that it should both add a protocol header to tx'd
datagrams and remove the header from rx'd datagrams:
int onoff = 1, s = socket(...);
setsockopt(s, SOL_SOCKET, SO_NOHEADER, &onoff);
2) Add an implementation of (SOL_SOCKET, SO_NOHEADER) for raw IPv4
sockets.
3) Reorganize the protocols' pr_ctloutput implementations a bit.
Consistently return ENOPROTOOPT when an option is unsupported,
and EINVAL if a supported option's arguments are incorrect.
Reorganize the flow of code so that it's more clear how/when
options are passed down the stack until they are handled.
Shorten some pr_ctloutput staircases for readability.
4) Extract common mbuf code into subroutines, add new sockaddr
methods, and introduce a new subroutine, fsocreate(), for reuse
later; use it first in sys_socket():
struct mbuf *m_getsombuf(struct socket *so)
Create an mbuf and make its owner the socket `so'.
struct mbuf *m_intopt(struct socket *so, int val)
Create an mbuf, make its owner the socket `so', put the
int `val' into it, and set its length to sizeof(int).
int fsocreate(..., int *fd)
Create a socket, a la socreate(9), put the socket into the
given LWP's descriptor table, return the descriptor at `fd'
on success.
void *sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
const void *sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
Extract a pointer to the address part of a sockaddr. Write
the length of the address part at `slenp', if `slenp' is
not NULL.
socklen_t sockaddr_getlen(const struct sockaddr *sa)
Return the length of a sockaddr. This just evaluates to
sa->sa_len. I only add this for consistency with code that
appears in a portable userland library that I am going to
import.
const struct sockaddr *sockaddr_any(const struct sockaddr *sa)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
const void *sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
Return the "don't care" sockaddr in the same family as
`sa'. This is the address a client should sobind(9) if it
does not care the source address and, if applicable, the
port et cetera that it uses.
2007-09-19 08:33:42 +04:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
/*
|
|
|
|
* so_setsockopt() is a wrapper providing a sockopt structure for sosetopt()
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
so_setsockopt(struct lwp *l, struct socket *so, int level, int name,
|
|
|
|
const void *val, size_t valsize)
|
|
|
|
{
|
|
|
|
struct sockopt sopt;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
KASSERT(valsize == 0 || val != NULL);
|
|
|
|
|
|
|
|
sockopt_init(&sopt, level, name, valsize);
|
|
|
|
sockopt_set(&sopt, val, valsize);
|
|
|
|
|
|
|
|
error = sosetopt(so, &sopt);
|
|
|
|
|
|
|
|
sockopt_destroy(&sopt);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
2017-05-01 13:00:43 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
/*
|
|
|
|
* internal get SOL_SOCKET options
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sogetopt1(struct socket *so, struct sockopt *sopt)
|
|
|
|
{
|
2009-01-14 21:09:00 +03:00
|
|
|
int error, optval, opt;
|
2008-08-06 19:01:23 +04:00
|
|
|
struct linger l;
|
|
|
|
struct timeval tv;
|
|
|
|
|
2009-01-14 21:09:00 +03:00
|
|
|
switch ((opt = sopt->sopt_name)) {
|
2008-08-06 19:01:23 +04:00
|
|
|
|
|
|
|
case SO_ACCEPTFILTER:
|
2008-10-14 17:45:26 +04:00
|
|
|
error = accept_filt_getopt(so, sopt);
|
2008-08-06 19:01:23 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_LINGER:
|
|
|
|
l.l_onoff = (so->so_options & SO_LINGER) ? 1 : 0;
|
|
|
|
l.l_linger = so->so_linger;
|
|
|
|
|
|
|
|
error = sockopt_set(sopt, &l, sizeof(l));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_USELOOPBACK:
|
|
|
|
case SO_DONTROUTE:
|
|
|
|
case SO_DEBUG:
|
|
|
|
case SO_KEEPALIVE:
|
|
|
|
case SO_REUSEADDR:
|
|
|
|
case SO_REUSEPORT:
|
|
|
|
case SO_BROADCAST:
|
|
|
|
case SO_OOBINLINE:
|
|
|
|
case SO_TIMESTAMP:
|
2012-01-25 04:28:35 +04:00
|
|
|
case SO_NOSIGPIPE:
|
2009-01-19 05:27:57 +03:00
|
|
|
#ifdef SO_OTIMESTAMP
|
|
|
|
case SO_OTIMESTAMP:
|
|
|
|
#endif
|
2013-10-08 18:54:29 +04:00
|
|
|
case SO_ACCEPTCONN:
|
2009-01-14 21:09:00 +03:00
|
|
|
error = sockopt_setint(sopt, (so->so_options & opt) ? 1 : 0);
|
2008-08-06 19:01:23 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_TYPE:
|
|
|
|
error = sockopt_setint(sopt, so->so_type);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_ERROR:
|
|
|
|
error = sockopt_setint(sopt, so->so_error);
|
|
|
|
so->so_error = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_SNDBUF:
|
|
|
|
error = sockopt_setint(sopt, so->so_snd.sb_hiwat);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_RCVBUF:
|
|
|
|
error = sockopt_setint(sopt, so->so_rcv.sb_hiwat);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_SNDLOWAT:
|
|
|
|
error = sockopt_setint(sopt, so->so_snd.sb_lowat);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_RCVLOWAT:
|
|
|
|
error = sockopt_setint(sopt, so->so_rcv.sb_lowat);
|
|
|
|
break;
|
|
|
|
|
2009-01-14 21:09:00 +03:00
|
|
|
#ifdef COMPAT_50
|
|
|
|
case SO_OSNDTIMEO:
|
|
|
|
case SO_ORCVTIMEO: {
|
|
|
|
struct timeval50 otv;
|
|
|
|
|
|
|
|
optval = (opt == SO_OSNDTIMEO ?
|
|
|
|
so->so_snd.sb_timeo : so->so_rcv.sb_timeo);
|
|
|
|
|
|
|
|
otv.tv_sec = optval / hz;
|
|
|
|
otv.tv_usec = (optval % hz) * tick;
|
|
|
|
|
|
|
|
error = sockopt_set(sopt, &otv, sizeof(otv));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif /* COMPAT_50 */
|
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
case SO_SNDTIMEO:
|
|
|
|
case SO_RCVTIMEO:
|
2009-01-14 21:09:00 +03:00
|
|
|
optval = (opt == SO_SNDTIMEO ?
|
2008-08-06 19:01:23 +04:00
|
|
|
so->so_snd.sb_timeo : so->so_rcv.sb_timeo);
|
|
|
|
|
|
|
|
tv.tv_sec = optval / hz;
|
|
|
|
tv.tv_usec = (optval % hz) * tick;
|
|
|
|
|
|
|
|
error = sockopt_set(sopt, &tv, sizeof(tv));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SO_OVERFLOWED:
|
|
|
|
error = sockopt_setint(sopt, so->so_rcv.sb_overflowed);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
error = ENOPROTOOPT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-04 15:24:06 +04:00
|
|
|
int
|
2008-08-06 19:01:23 +04:00
|
|
|
sogetopt(struct socket *so, struct sockopt *sopt)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-24 15:38:36 +04:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2008-08-06 19:01:23 +04:00
|
|
|
if (sopt->sopt_level != SOL_SOCKET) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (so->so_proto && so->so_proto->pr_ctloutput) {
|
2008-04-24 15:38:36 +04:00
|
|
|
error = ((*so->so_proto->pr_ctloutput)
|
2008-08-06 19:01:23 +04:00
|
|
|
(PRCO_GETOPT, so, sopt));
|
1993-03-21 12:45:37 +03:00
|
|
|
} else
|
2008-04-24 15:38:36 +04:00
|
|
|
error = (ENOPROTOOPT);
|
1993-03-21 12:45:37 +03:00
|
|
|
} else {
|
2008-08-06 19:01:23 +04:00
|
|
|
error = sogetopt1(so, sopt);
|
|
|
|
}
|
|
|
|
sounlock(so);
|
|
|
|
return (error);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
/*
|
|
|
|
* alloc sockopt data buffer buffer
|
|
|
|
* - will be released at destroy
|
|
|
|
*/
|
2008-10-12 13:26:50 +04:00
|
|
|
static int
|
|
|
|
sockopt_alloc(struct sockopt *sopt, size_t len, km_flag_t kmflag)
|
2008-08-06 19:01:23 +04:00
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
KASSERT(sopt->sopt_size == 0);
|
2008-08-04 07:55:47 +04:00
|
|
|
|
2008-10-12 13:26:50 +04:00
|
|
|
if (len > sizeof(sopt->sopt_buf)) {
|
|
|
|
sopt->sopt_data = kmem_zalloc(len, kmflag);
|
|
|
|
if (sopt->sopt_data == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
} else
|
2008-08-06 19:01:23 +04:00
|
|
|
sopt->sopt_data = sopt->sopt_buf;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
sopt->sopt_size = len;
|
2008-10-12 13:26:50 +04:00
|
|
|
return 0;
|
2008-08-06 19:01:23 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
/*
|
|
|
|
* initialise sockopt storage
|
2008-10-12 13:26:50 +04:00
|
|
|
* - MAY sleep during allocation
|
2008-08-06 19:01:23 +04:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
sockopt_init(struct sockopt *sopt, int level, int name, size_t size)
|
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
memset(sopt, 0, sizeof(*sopt));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
sopt->sopt_level = level;
|
|
|
|
sopt->sopt_name = name;
|
2008-10-12 13:26:50 +04:00
|
|
|
(void)sockopt_alloc(sopt, size, KM_SLEEP);
|
2008-08-06 19:01:23 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
/*
|
|
|
|
* destroy sockopt storage
|
|
|
|
* - will release any held memory references
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
sockopt_destroy(struct sockopt *sopt)
|
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
if (sopt->sopt_data != sopt->sopt_buf)
|
2008-10-10 23:49:49 +04:00
|
|
|
kmem_free(sopt->sopt_data, sopt->sopt_size);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
memset(sopt, 0, sizeof(*sopt));
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
/*
|
|
|
|
* set sockopt value
|
|
|
|
* - value is copied into sockopt
|
2017-05-01 13:00:43 +03:00
|
|
|
* - memory is allocated when necessary, will not sleep
|
2008-08-06 19:01:23 +04:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
sockopt_set(struct sockopt *sopt, const void *buf, size_t len)
|
|
|
|
{
|
2008-10-12 13:26:50 +04:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-10-12 13:26:50 +04:00
|
|
|
if (sopt->sopt_size == 0) {
|
|
|
|
error = sockopt_alloc(sopt, len, KM_NOSLEEP);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
}
|
2004-09-03 22:14:09 +04:00
|
|
|
|
2018-01-01 03:45:12 +03:00
|
|
|
if (sopt->sopt_size < len)
|
|
|
|
return EINVAL;
|
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
memcpy(sopt->sopt_data, buf, len);
|
2018-01-04 04:42:25 +03:00
|
|
|
sopt->sopt_retsize = len;
|
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* common case of set sockopt integer value
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
sockopt_setint(struct sockopt *sopt, int val)
|
|
|
|
{
|
|
|
|
|
|
|
|
return sockopt_set(sopt, &val, sizeof(int));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get sockopt value
|
|
|
|
* - correct size must be given
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
sockopt_get(const struct sockopt *sopt, void *buf, size_t len)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (sopt->sopt_size != len)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
memcpy(buf, sopt->sopt_data, len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* common case of get sockopt integer value
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
sockopt_getint(const struct sockopt *sopt, int *valp)
|
|
|
|
{
|
|
|
|
|
|
|
|
return sockopt_get(sopt, valp, sizeof(int));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set sockopt value from mbuf
|
|
|
|
* - ONLY for legacy code
|
|
|
|
* - mbuf is released by sockopt
|
2008-10-12 13:26:50 +04:00
|
|
|
* - will not sleep
|
2008-08-06 19:01:23 +04:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
sockopt_setmbuf(struct sockopt *sopt, struct mbuf *m)
|
|
|
|
{
|
|
|
|
size_t len;
|
2008-10-12 13:26:50 +04:00
|
|
|
int error;
|
2008-08-06 19:01:23 +04:00
|
|
|
|
|
|
|
len = m_length(m);
|
|
|
|
|
2008-10-12 13:26:50 +04:00
|
|
|
if (sopt->sopt_size == 0) {
|
|
|
|
error = sockopt_alloc(sopt, len, KM_NOSLEEP);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
}
|
2008-08-06 19:01:23 +04:00
|
|
|
|
2018-01-01 03:45:12 +03:00
|
|
|
if (sopt->sopt_size < len)
|
|
|
|
return EINVAL;
|
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
m_copydata(m, 0, len, sopt->sopt_data);
|
|
|
|
m_freem(m);
|
2018-01-04 04:42:25 +03:00
|
|
|
sopt->sopt_retsize = len;
|
2008-08-06 19:01:23 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get sockopt value into mbuf
|
|
|
|
* - ONLY for legacy code
|
|
|
|
* - mbuf to be released by the caller
|
2008-10-12 13:26:50 +04:00
|
|
|
* - will not sleep
|
2008-08-06 19:01:23 +04:00
|
|
|
*/
|
|
|
|
struct mbuf *
|
|
|
|
sockopt_getmbuf(const struct sockopt *sopt)
|
|
|
|
{
|
|
|
|
struct mbuf *m;
|
|
|
|
|
2008-10-12 13:26:50 +04:00
|
|
|
if (sopt->sopt_size > MCLBYTES)
|
2008-08-06 19:01:23 +04:00
|
|
|
return NULL;
|
|
|
|
|
2008-10-12 13:26:50 +04:00
|
|
|
m = m_get(M_DONTWAIT, MT_SOOPTS);
|
|
|
|
if (m == NULL)
|
2008-08-06 19:01:23 +04:00
|
|
|
return NULL;
|
2008-10-12 13:26:50 +04:00
|
|
|
|
|
|
|
if (sopt->sopt_size > MLEN) {
|
|
|
|
MCLGET(m, M_DONTWAIT);
|
|
|
|
if ((m->m_flags & M_EXT) == 0) {
|
|
|
|
m_free(m);
|
|
|
|
return NULL;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2008-10-12 13:26:50 +04:00
|
|
|
|
|
|
|
memcpy(mtod(m, void *), sopt->sopt_data, sopt->sopt_size);
|
|
|
|
m->m_len = sopt->sopt_size;
|
2008-04-24 15:38:36 +04:00
|
|
|
|
2008-08-06 19:01:23 +04:00
|
|
|
return m;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-05-04 15:24:06 +04:00
|
|
|
void
|
2001-02-27 08:19:13 +03:00
|
|
|
sohasoutofband(struct socket *so)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-03-01 17:16:49 +03:00
|
|
|
|
2003-09-22 16:59:55 +04:00
|
|
|
fownsignal(so->so_pgid, SIGURG, POLL_PRI, POLLPRI|POLLRDBAND, so);
|
2009-05-01 00:41:33 +04:00
|
|
|
selnotify(&so->so_rcv.sb_sel, POLLPRI | POLLRDBAND, NOTE_SUBMIT);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
static void
|
|
|
|
filt_sordetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct socket *so;
|
|
|
|
|
2014-09-05 13:20:59 +04:00
|
|
|
so = ((file_t *)kn->kn_obj)->f_socket;
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2002-11-26 21:44:34 +03:00
|
|
|
SLIST_REMOVE(&so->so_rcv.sb_sel.sel_klist, kn, knote, kn_selnext);
|
|
|
|
if (SLIST_EMPTY(&so->so_rcv.sb_sel.sel_klist))
|
2002-10-23 13:10:23 +04:00
|
|
|
so->so_rcv.sb_flags &= ~SB_KNOTE;
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
static int
|
2006-11-01 13:17:58 +03:00
|
|
|
filt_soread(struct knote *kn, long hint)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
|
|
|
struct socket *so;
|
2008-04-24 15:38:36 +04:00
|
|
|
int rv;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
2014-09-05 13:20:59 +04:00
|
|
|
so = ((file_t *)kn->kn_obj)->f_socket;
|
2008-04-24 15:38:36 +04:00
|
|
|
if (hint != NOTE_SUBMIT)
|
|
|
|
solock(so);
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_data = so->so_rcv.sb_cc;
|
|
|
|
if (so->so_state & SS_CANTRCVMORE) {
|
2005-02-27 00:34:55 +03:00
|
|
|
kn->kn_flags |= EV_EOF;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fflags = so->so_error;
|
2008-04-24 15:38:36 +04:00
|
|
|
rv = 1;
|
|
|
|
} else if (so->so_error) /* temporary udp error */
|
|
|
|
rv = 1;
|
|
|
|
else if (kn->kn_sfflags & NOTE_LOWAT)
|
|
|
|
rv = (kn->kn_data >= kn->kn_sdata);
|
2017-05-01 13:00:43 +03:00
|
|
|
else
|
2008-04-24 15:38:36 +04:00
|
|
|
rv = (kn->kn_data >= so->so_rcv.sb_lowat);
|
|
|
|
if (hint != NOTE_SUBMIT)
|
|
|
|
sounlock(so);
|
|
|
|
return rv;
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
filt_sowdetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct socket *so;
|
|
|
|
|
2014-09-05 13:20:59 +04:00
|
|
|
so = ((file_t *)kn->kn_obj)->f_socket;
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2002-11-26 21:44:34 +03:00
|
|
|
SLIST_REMOVE(&so->so_snd.sb_sel.sel_klist, kn, knote, kn_selnext);
|
|
|
|
if (SLIST_EMPTY(&so->so_snd.sb_sel.sel_klist))
|
2002-10-23 13:10:23 +04:00
|
|
|
so->so_snd.sb_flags &= ~SB_KNOTE;
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
static int
|
2006-11-01 13:17:58 +03:00
|
|
|
filt_sowrite(struct knote *kn, long hint)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
|
|
|
struct socket *so;
|
2008-04-24 15:38:36 +04:00
|
|
|
int rv;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
2014-09-05 13:20:59 +04:00
|
|
|
so = ((file_t *)kn->kn_obj)->f_socket;
|
2008-04-24 15:38:36 +04:00
|
|
|
if (hint != NOTE_SUBMIT)
|
|
|
|
solock(so);
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_data = sbspace(&so->so_snd);
|
|
|
|
if (so->so_state & SS_CANTSENDMORE) {
|
2005-02-27 00:34:55 +03:00
|
|
|
kn->kn_flags |= EV_EOF;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fflags = so->so_error;
|
2008-04-24 15:38:36 +04:00
|
|
|
rv = 1;
|
|
|
|
} else if (so->so_error) /* temporary udp error */
|
|
|
|
rv = 1;
|
|
|
|
else if (((so->so_state & SS_ISCONNECTED) == 0) &&
|
2002-10-23 13:10:23 +04:00
|
|
|
(so->so_proto->pr_flags & PR_CONNREQUIRED))
|
2008-04-24 15:38:36 +04:00
|
|
|
rv = 0;
|
|
|
|
else if (kn->kn_sfflags & NOTE_LOWAT)
|
|
|
|
rv = (kn->kn_data >= kn->kn_sdata);
|
|
|
|
else
|
|
|
|
rv = (kn->kn_data >= so->so_snd.sb_lowat);
|
|
|
|
if (hint != NOTE_SUBMIT)
|
|
|
|
sounlock(so);
|
|
|
|
return rv;
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
static int
|
2006-11-01 13:17:58 +03:00
|
|
|
filt_solisten(struct knote *kn, long hint)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
|
|
|
struct socket *so;
|
2008-04-24 15:38:36 +04:00
|
|
|
int rv;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
2014-09-05 13:20:59 +04:00
|
|
|
so = ((file_t *)kn->kn_obj)->f_socket;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set kn_data to number of incoming connections, not
|
|
|
|
* counting partial (incomplete) connections.
|
2005-02-27 00:34:55 +03:00
|
|
|
*/
|
2008-04-24 15:38:36 +04:00
|
|
|
if (hint != NOTE_SUBMIT)
|
|
|
|
solock(so);
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_data = so->so_qlen;
|
2008-04-24 15:38:36 +04:00
|
|
|
rv = (kn->kn_data > 0);
|
|
|
|
if (hint != NOTE_SUBMIT)
|
|
|
|
sounlock(so);
|
|
|
|
return rv;
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
2017-10-25 11:12:37 +03:00
|
|
|
static const struct filterops solisten_filtops = {
|
|
|
|
.f_isfd = 1,
|
|
|
|
.f_attach = NULL,
|
|
|
|
.f_detach = filt_sordetach,
|
|
|
|
.f_event = filt_solisten,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct filterops soread_filtops = {
|
|
|
|
.f_isfd = 1,
|
|
|
|
.f_attach = NULL,
|
|
|
|
.f_detach = filt_sordetach,
|
|
|
|
.f_event = filt_soread,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct filterops sowrite_filtops = {
|
|
|
|
.f_isfd = 1,
|
|
|
|
.f_attach = NULL,
|
|
|
|
.f_detach = filt_sowdetach,
|
|
|
|
.f_event = filt_sowrite,
|
|
|
|
};
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
int
|
2006-11-01 13:17:58 +03:00
|
|
|
soo_kqfilter(struct file *fp, struct knote *kn)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
|
|
|
struct socket *so;
|
|
|
|
struct sockbuf *sb;
|
|
|
|
|
2014-09-05 13:20:59 +04:00
|
|
|
so = ((file_t *)kn->kn_obj)->f_socket;
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2002-10-23 13:10:23 +04:00
|
|
|
switch (kn->kn_filter) {
|
|
|
|
case EVFILT_READ:
|
|
|
|
if (so->so_options & SO_ACCEPTCONN)
|
|
|
|
kn->kn_fop = &solisten_filtops;
|
|
|
|
else
|
|
|
|
kn->kn_fop = &soread_filtops;
|
|
|
|
sb = &so->so_rcv;
|
|
|
|
break;
|
|
|
|
case EVFILT_WRITE:
|
|
|
|
kn->kn_fop = &sowrite_filtops;
|
|
|
|
sb = &so->so_snd;
|
|
|
|
break;
|
|
|
|
default:
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2007-12-05 20:19:46 +03:00
|
|
|
return (EINVAL);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
2002-11-26 21:44:34 +03:00
|
|
|
SLIST_INSERT_HEAD(&sb->sb_sel.sel_klist, kn, kn_selnext);
|
2002-10-23 13:10:23 +04:00
|
|
|
sb->sb_flags |= SB_KNOTE;
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2002-10-23 13:10:23 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2008-03-20 22:23:15 +03:00
|
|
|
static int
|
|
|
|
sodopoll(struct socket *so, int events)
|
|
|
|
{
|
|
|
|
int revents;
|
|
|
|
|
|
|
|
revents = 0;
|
|
|
|
|
|
|
|
if (events & (POLLIN | POLLRDNORM))
|
|
|
|
if (soreadable(so))
|
|
|
|
revents |= events & (POLLIN | POLLRDNORM);
|
|
|
|
|
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
|
|
|
if (sowritable(so))
|
|
|
|
revents |= events & (POLLOUT | POLLWRNORM);
|
|
|
|
|
|
|
|
if (events & (POLLPRI | POLLRDBAND))
|
|
|
|
if (so->so_oobmark || (so->so_state & SS_RCVATMARK))
|
|
|
|
revents |= events & (POLLPRI | POLLRDBAND);
|
|
|
|
|
|
|
|
return revents;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sopoll(struct socket *so, int events)
|
|
|
|
{
|
|
|
|
int revents = 0;
|
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
#ifndef DIAGNOSTIC
|
|
|
|
/*
|
|
|
|
* Do a quick, unlocked check in expectation that the socket
|
|
|
|
* will be ready for I/O. Don't do this check if DIAGNOSTIC,
|
|
|
|
* as the solocked() assertions will fail.
|
|
|
|
*/
|
2008-03-20 22:23:15 +03:00
|
|
|
if ((revents = sodopoll(so, events)) != 0)
|
|
|
|
return revents;
|
2008-04-24 15:38:36 +04:00
|
|
|
#endif
|
2008-03-20 22:23:15 +03:00
|
|
|
|
2008-04-24 15:38:36 +04:00
|
|
|
solock(so);
|
2008-03-20 22:23:15 +03:00
|
|
|
if ((revents = sodopoll(so, events)) == 0) {
|
|
|
|
if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
|
|
|
|
selrecord(curlwp, &so->so_rcv.sb_sel);
|
2008-04-24 15:38:36 +04:00
|
|
|
so->so_rcv.sb_flags |= SB_NOTIFY;
|
2008-03-20 22:23:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (events & (POLLOUT | POLLWRNORM)) {
|
|
|
|
selrecord(curlwp, &so->so_snd.sb_sel);
|
2008-04-24 15:38:36 +04:00
|
|
|
so->so_snd.sb_flags |= SB_NOTIFY;
|
2008-03-20 22:23:15 +03:00
|
|
|
}
|
|
|
|
}
|
2008-04-24 15:38:36 +04:00
|
|
|
sounlock(so);
|
2008-03-20 22:23:15 +03:00
|
|
|
|
|
|
|
return revents;
|
|
|
|
}
|
|
|
|
|
2017-07-06 20:42:39 +03:00
|
|
|
struct mbuf **
|
|
|
|
sbsavetimestamp(int opt, struct mbuf *m, struct mbuf **mp)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
microtime(&tv);
|
|
|
|
|
|
|
|
#ifdef SO_OTIMESTAMP
|
|
|
|
if (opt & SO_OTIMESTAMP) {
|
|
|
|
struct timeval50 tv50;
|
|
|
|
|
|
|
|
timeval_to_timeval50(&tv, &tv50);
|
|
|
|
*mp = sbcreatecontrol(&tv50, sizeof(tv50),
|
|
|
|
SCM_OTIMESTAMP, SOL_SOCKET);
|
|
|
|
if (*mp)
|
|
|
|
mp = &(*mp)->m_next;
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (opt & SO_TIMESTAMP) {
|
|
|
|
*mp = sbcreatecontrol(&tv, sizeof(tv),
|
|
|
|
SCM_TIMESTAMP, SOL_SOCKET);
|
|
|
|
if (*mp)
|
|
|
|
mp = &(*mp)->m_next;
|
|
|
|
}
|
|
|
|
return mp;
|
|
|
|
}
|
|
|
|
|
2008-03-20 22:23:15 +03:00
|
|
|
|
2004-03-17 13:21:59 +03:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
|
|
|
static int sysctl_kern_somaxkva(SYSCTLFN_PROTO);
|
2012-10-08 23:20:45 +04:00
|
|
|
static int sysctl_kern_sbmax(SYSCTLFN_PROTO);
|
2004-03-17 13:21:59 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* sysctl helper routine for kern.somaxkva. ensures that the given
|
|
|
|
* value is not too small.
|
|
|
|
* (XXX should we maybe make sure it's not too large as well?)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_kern_somaxkva(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
int error, new_somaxkva;
|
|
|
|
struct sysctlnode node;
|
|
|
|
|
|
|
|
new_somaxkva = somaxkva;
|
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &new_somaxkva;
|
|
|
|
error = sysctl_lookup(SYSCTLFN_CALL(&node));
|
|
|
|
if (error || newp == NULL)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
if (new_somaxkva < (16 * 1024 * 1024)) /* sanity */
|
|
|
|
return (EINVAL);
|
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&so_pendfree_lock);
|
2004-03-17 13:21:59 +03:00
|
|
|
somaxkva = new_somaxkva;
|
2007-03-13 00:33:07 +03:00
|
|
|
cv_broadcast(&socurkva_cv);
|
|
|
|
mutex_exit(&so_pendfree_lock);
|
2004-03-17 13:21:59 +03:00
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2012-10-08 23:20:45 +04:00
|
|
|
/*
|
|
|
|
* sysctl helper routine for kern.sbmax. Basically just ensures that
|
|
|
|
* any new value is not too small.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_kern_sbmax(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
int error, new_sbmax;
|
|
|
|
struct sysctlnode node;
|
|
|
|
|
|
|
|
new_sbmax = sb_max;
|
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &new_sbmax;
|
|
|
|
error = sysctl_lookup(SYSCTLFN_CALL(&node));
|
|
|
|
if (error || newp == NULL)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
KERNEL_LOCK(1, NULL);
|
|
|
|
error = sb_max_set(new_sbmax);
|
|
|
|
KERNEL_UNLOCK_ONE(NULL);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2008-12-07 23:58:46 +03:00
|
|
|
static void
|
2012-10-08 23:20:45 +04:00
|
|
|
sysctl_kern_socket_setup(void)
|
2004-03-17 13:21:59 +03:00
|
|
|
{
|
|
|
|
|
2008-12-07 23:58:46 +03:00
|
|
|
KASSERT(socket_sysctllog == NULL);
|
2004-03-24 18:34:46 +03:00
|
|
|
|
2008-12-07 23:58:46 +03:00
|
|
|
sysctl_createv(&socket_sysctllog, 0, NULL, NULL,
|
2004-03-24 18:34:46 +03:00
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
2004-05-25 08:30:32 +04:00
|
|
|
CTLTYPE_INT, "somaxkva",
|
|
|
|
SYSCTL_DESCR("Maximum amount of kernel memory to be "
|
|
|
|
"used for socket buffers"),
|
2004-03-17 13:21:59 +03:00
|
|
|
sysctl_kern_somaxkva, 0, NULL, 0,
|
|
|
|
CTL_KERN, KERN_SOMAXKVA, CTL_EOL);
|
2012-10-08 23:20:45 +04:00
|
|
|
|
|
|
|
sysctl_createv(&socket_sysctllog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_INT, "sbmax",
|
|
|
|
SYSCTL_DESCR("Maximum socket buffer size"),
|
|
|
|
sysctl_kern_sbmax, 0, NULL, 0,
|
|
|
|
CTL_KERN, KERN_SBMAX, CTL_EOL);
|
2004-03-17 13:21:59 +03:00
|
|
|
}
|