1995-06-25 17:32:43 +00:00
|
|
|
|
/*-
|
|
|
|
|
* Copyright (c) 1995 S<EFBFBD>ren Schmidt
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
* in this position and unchanged.
|
|
|
|
|
* 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.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
* derived from this software withough specific prior written permission
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
|
* $FreeBSD$
|
1995-06-25 17:32:43 +00:00
|
|
|
|
*/
|
|
|
|
|
|
1995-11-22 07:43:53 +00:00
|
|
|
|
/* XXX we use functions that might not exist. */
|
1997-12-16 17:40:42 +00:00
|
|
|
|
#include "opt_compat.h"
|
|
|
|
|
|
|
|
|
|
#ifndef COMPAT_43
|
|
|
|
|
#error "Unable to compile Linux-emulator due to missing COMPAT_43 option!"
|
|
|
|
|
#endif
|
1995-11-22 07:43:53 +00:00
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <sys/param.h>
|
1997-12-14 03:17:54 +00:00
|
|
|
|
#include <sys/proc.h>
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <sys/systm.h>
|
1995-11-22 07:43:53 +00:00
|
|
|
|
#include <sys/sysproto.h>
|
1998-02-07 02:13:27 +00:00
|
|
|
|
#include <sys/fcntl.h>
|
2001-03-01 21:44:40 +00:00
|
|
|
|
#include <sys/file.h>
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <sys/socket.h>
|
2001-03-01 21:44:40 +00:00
|
|
|
|
#include <sys/socketvar.h>
|
1998-03-28 10:33:27 +00:00
|
|
|
|
#include <sys/uio.h>
|
1995-11-22 07:43:53 +00:00
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <netinet/in.h>
|
1997-12-14 03:17:54 +00:00
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
|
#include <netinet/ip.h>
|
1995-06-25 17:32:43 +00:00
|
|
|
|
|
2000-08-22 01:51:54 +00:00
|
|
|
|
#include <machine/../linux/linux.h>
|
2000-11-10 21:30:19 +00:00
|
|
|
|
#include <machine/../linux/linux_proto.h>
|
2000-12-19 00:24:25 +00:00
|
|
|
|
#include <compat/linux/linux_socket.h>
|
2000-08-22 01:51:54 +00:00
|
|
|
|
#include <compat/linux/linux_util.h>
|
1995-06-25 17:32:43 +00:00
|
|
|
|
|
2001-10-26 23:10:08 +00:00
|
|
|
|
/*
|
|
|
|
|
* FreeBSD's socket calls require the sockaddr struct length to agree
|
|
|
|
|
* with the address family. Linux does not, so we must force it.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
linux_to_bsd_namelen(caddr_t name, int namelen)
|
|
|
|
|
{
|
|
|
|
|
uint16_t family; /* XXX must match Linux sockaddr */
|
|
|
|
|
|
|
|
|
|
if (copyin(name, &family, sizeof(family)))
|
|
|
|
|
return namelen;
|
|
|
|
|
|
|
|
|
|
switch (family) {
|
|
|
|
|
case AF_INET:
|
|
|
|
|
return sizeof(struct sockaddr_in);
|
|
|
|
|
case AF_INET6:
|
|
|
|
|
return sizeof(struct sockaddr_in6);
|
|
|
|
|
}
|
|
|
|
|
return namelen;
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-01 19:48:35 +00:00
|
|
|
|
#ifndef __alpha__
|
1995-06-25 17:32:43 +00:00
|
|
|
|
static int
|
|
|
|
|
linux_to_bsd_domain(int domain)
|
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
|
|
|
|
switch (domain) {
|
|
|
|
|
case LINUX_AF_UNSPEC:
|
|
|
|
|
return (AF_UNSPEC);
|
|
|
|
|
case LINUX_AF_UNIX:
|
|
|
|
|
return (AF_LOCAL);
|
|
|
|
|
case LINUX_AF_INET:
|
|
|
|
|
return (AF_INET);
|
|
|
|
|
case LINUX_AF_AX25:
|
|
|
|
|
return (AF_CCITT);
|
|
|
|
|
case LINUX_AF_IPX:
|
|
|
|
|
return (AF_IPX);
|
|
|
|
|
case LINUX_AF_APPLETALK:
|
|
|
|
|
return (AF_APPLETALK);
|
|
|
|
|
}
|
|
|
|
|
return (-1);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
linux_to_bsd_sockopt_level(int level)
|
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
|
|
|
|
switch (level) {
|
|
|
|
|
case LINUX_SOL_SOCKET:
|
|
|
|
|
return (SOL_SOCKET);
|
|
|
|
|
}
|
|
|
|
|
return (level);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-08-26 05:12:16 +00:00
|
|
|
|
static int
|
|
|
|
|
linux_to_bsd_ip_sockopt(int opt)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
|
|
|
|
switch (opt) {
|
|
|
|
|
case LINUX_IP_TOS:
|
|
|
|
|
return (IP_TOS);
|
|
|
|
|
case LINUX_IP_TTL:
|
|
|
|
|
return (IP_TTL);
|
|
|
|
|
case LINUX_IP_OPTIONS:
|
|
|
|
|
return (IP_OPTIONS);
|
|
|
|
|
case LINUX_IP_MULTICAST_IF:
|
|
|
|
|
return (IP_MULTICAST_IF);
|
|
|
|
|
case LINUX_IP_MULTICAST_TTL:
|
|
|
|
|
return (IP_MULTICAST_TTL);
|
|
|
|
|
case LINUX_IP_MULTICAST_LOOP:
|
|
|
|
|
return (IP_MULTICAST_LOOP);
|
|
|
|
|
case LINUX_IP_ADD_MEMBERSHIP:
|
|
|
|
|
return (IP_ADD_MEMBERSHIP);
|
|
|
|
|
case LINUX_IP_DROP_MEMBERSHIP:
|
|
|
|
|
return (IP_DROP_MEMBERSHIP);
|
|
|
|
|
case LINUX_IP_HDRINCL:
|
|
|
|
|
return (IP_HDRINCL);
|
|
|
|
|
}
|
|
|
|
|
return (-1);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
linux_to_bsd_so_sockopt(int opt)
|
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
|
|
|
|
switch (opt) {
|
|
|
|
|
case LINUX_SO_DEBUG:
|
|
|
|
|
return (SO_DEBUG);
|
|
|
|
|
case LINUX_SO_REUSEADDR:
|
|
|
|
|
return (SO_REUSEADDR);
|
|
|
|
|
case LINUX_SO_TYPE:
|
|
|
|
|
return (SO_TYPE);
|
|
|
|
|
case LINUX_SO_ERROR:
|
|
|
|
|
return (SO_ERROR);
|
|
|
|
|
case LINUX_SO_DONTROUTE:
|
|
|
|
|
return (SO_DONTROUTE);
|
|
|
|
|
case LINUX_SO_BROADCAST:
|
|
|
|
|
return (SO_BROADCAST);
|
|
|
|
|
case LINUX_SO_SNDBUF:
|
|
|
|
|
return (SO_SNDBUF);
|
|
|
|
|
case LINUX_SO_RCVBUF:
|
|
|
|
|
return (SO_RCVBUF);
|
|
|
|
|
case LINUX_SO_KEEPALIVE:
|
|
|
|
|
return (SO_KEEPALIVE);
|
|
|
|
|
case LINUX_SO_OOBINLINE:
|
|
|
|
|
return (SO_OOBINLINE);
|
|
|
|
|
case LINUX_SO_LINGER:
|
|
|
|
|
return (SO_LINGER);
|
|
|
|
|
}
|
|
|
|
|
return (-1);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-12-19 00:24:25 +00:00
|
|
|
|
static int
|
|
|
|
|
linux_to_bsd_msg_flags(int flags)
|
|
|
|
|
{
|
|
|
|
|
int ret_flags = 0;
|
|
|
|
|
|
|
|
|
|
if (flags & LINUX_MSG_OOB)
|
|
|
|
|
ret_flags |= MSG_OOB;
|
|
|
|
|
if (flags & LINUX_MSG_PEEK)
|
|
|
|
|
ret_flags |= MSG_PEEK;
|
|
|
|
|
if (flags & LINUX_MSG_DONTROUTE)
|
|
|
|
|
ret_flags |= MSG_DONTROUTE;
|
|
|
|
|
if (flags & LINUX_MSG_CTRUNC)
|
|
|
|
|
ret_flags |= MSG_CTRUNC;
|
|
|
|
|
if (flags & LINUX_MSG_TRUNC)
|
|
|
|
|
ret_flags |= MSG_TRUNC;
|
|
|
|
|
if (flags & LINUX_MSG_DONTWAIT)
|
|
|
|
|
ret_flags |= MSG_DONTWAIT;
|
|
|
|
|
if (flags & LINUX_MSG_EOR)
|
|
|
|
|
ret_flags |= MSG_EOR;
|
|
|
|
|
if (flags & LINUX_MSG_WAITALL)
|
|
|
|
|
ret_flags |= MSG_WAITALL;
|
|
|
|
|
#if 0 /* not handled */
|
|
|
|
|
if (flags & LINUX_MSG_PROXY)
|
|
|
|
|
;
|
|
|
|
|
if (flags & LINUX_MSG_FIN)
|
|
|
|
|
;
|
|
|
|
|
if (flags & LINUX_MSG_SYN)
|
|
|
|
|
;
|
|
|
|
|
if (flags & LINUX_MSG_CONFIRM)
|
|
|
|
|
;
|
|
|
|
|
if (flags & LINUX_MSG_RST)
|
|
|
|
|
;
|
|
|
|
|
if (flags & LINUX_MSG_ERRQUEUE)
|
|
|
|
|
;
|
|
|
|
|
if (flags & LINUX_MSG_NOSIGNAL)
|
|
|
|
|
;
|
|
|
|
|
#endif
|
|
|
|
|
return ret_flags;
|
|
|
|
|
}
|
|
|
|
|
|
2000-08-26 05:12:16 +00:00
|
|
|
|
/* Return 0 if IP_HDRINCL is set for the given socket. */
|
1997-12-14 03:17:54 +00:00
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_check_hdrincl(struct thread *td, int s)
|
1997-12-14 03:17:54 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct getsockopt_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
int level;
|
|
|
|
|
int name;
|
|
|
|
|
caddr_t val;
|
|
|
|
|
int *avalsize;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
caddr_t sg, val, valsize;
|
|
|
|
|
int size_val = sizeof val;
|
|
|
|
|
int optval;
|
|
|
|
|
|
|
|
|
|
sg = stackgap_init();
|
|
|
|
|
val = stackgap_alloc(&sg, sizeof(int));
|
|
|
|
|
valsize = stackgap_alloc(&sg, sizeof(int));
|
|
|
|
|
|
|
|
|
|
if ((error = copyout(&size_val, valsize, sizeof(size_val))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = s;
|
|
|
|
|
bsd_args.level = IPPROTO_IP;
|
|
|
|
|
bsd_args.name = IP_HDRINCL;
|
|
|
|
|
bsd_args.val = val;
|
|
|
|
|
bsd_args.avalsize = (int *)valsize;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
if ((error = getsockopt(td, &bsd_args)))
|
2000-08-26 05:12:16 +00:00
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(val, &optval, sizeof(optval))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
return (optval == 0);
|
1997-12-14 03:17:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Updated sendto() when IP_HDRINCL is set:
|
|
|
|
|
* tweak endian-dependent fields in the IP packet.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_sendto_hdrincl(struct thread *td, struct sendto_args *bsd_args)
|
1997-12-14 03:17:54 +00:00
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* linux_ip_copysize defines how many bytes we should copy
|
|
|
|
|
* from the beginning of the IP packet before we customize it for BSD.
|
|
|
|
|
* It should include all the fields we modify (ip_len and ip_off)
|
|
|
|
|
* and be as small as possible to minimize copying overhead.
|
|
|
|
|
*/
|
|
|
|
|
#define linux_ip_copysize 8
|
|
|
|
|
|
2000-08-26 05:12:16 +00:00
|
|
|
|
caddr_t sg;
|
|
|
|
|
struct ip *packet;
|
|
|
|
|
struct msghdr *msg;
|
|
|
|
|
struct iovec *iov;
|
1997-12-14 03:17:54 +00:00
|
|
|
|
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int error;
|
|
|
|
|
struct sendmsg_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t msg;
|
|
|
|
|
int flags;
|
|
|
|
|
} */ sendmsg_args;
|
|
|
|
|
|
|
|
|
|
/* Check the packet isn't too small before we mess with it */
|
|
|
|
|
if (bsd_args->len < linux_ip_copysize)
|
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Tweaking the user buffer in place would be bad manners.
|
|
|
|
|
* We create a corrected IP header with just the needed length,
|
|
|
|
|
* then use an iovec to glue it to the rest of the user packet
|
|
|
|
|
* when calling sendmsg().
|
|
|
|
|
*/
|
|
|
|
|
sg = stackgap_init();
|
|
|
|
|
packet = (struct ip *)stackgap_alloc(&sg, linux_ip_copysize);
|
|
|
|
|
msg = (struct msghdr *)stackgap_alloc(&sg, sizeof(*msg));
|
|
|
|
|
iov = (struct iovec *)stackgap_alloc(&sg, sizeof(*iov)*2);
|
|
|
|
|
|
|
|
|
|
/* Make a copy of the beginning of the packet to be sent */
|
|
|
|
|
if ((error = copyin(bsd_args->buf, packet, linux_ip_copysize)))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
/* Convert fields from Linux to BSD raw IP socket format */
|
|
|
|
|
packet->ip_len = bsd_args->len;
|
|
|
|
|
packet->ip_off = ntohs(packet->ip_off);
|
|
|
|
|
|
|
|
|
|
/* Prepare the msghdr and iovec structures describing the new packet */
|
|
|
|
|
msg->msg_name = bsd_args->to;
|
|
|
|
|
msg->msg_namelen = bsd_args->tolen;
|
|
|
|
|
msg->msg_iov = iov;
|
|
|
|
|
msg->msg_iovlen = 2;
|
|
|
|
|
msg->msg_control = NULL;
|
|
|
|
|
msg->msg_controllen = 0;
|
|
|
|
|
msg->msg_flags = 0;
|
|
|
|
|
iov[0].iov_base = (char *)packet;
|
|
|
|
|
iov[0].iov_len = linux_ip_copysize;
|
|
|
|
|
iov[1].iov_base = (char *)(bsd_args->buf) + linux_ip_copysize;
|
|
|
|
|
iov[1].iov_len = bsd_args->len - linux_ip_copysize;
|
|
|
|
|
|
|
|
|
|
sendmsg_args.s = bsd_args->s;
|
|
|
|
|
sendmsg_args.msg = (caddr_t)msg;
|
|
|
|
|
sendmsg_args.flags = bsd_args->flags;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (sendmsg(td, &sendmsg_args));
|
1997-12-14 03:17:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
struct linux_socket_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int domain;
|
|
|
|
|
int type;
|
|
|
|
|
int protocol;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_socket(struct thread *td, struct linux_socket_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_socket_args linux_args;
|
|
|
|
|
struct socket_args /* {
|
|
|
|
|
int domain;
|
|
|
|
|
int type;
|
|
|
|
|
int protocol;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
int retval_socket;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.protocol = linux_args.protocol;
|
|
|
|
|
bsd_args.type = linux_args.type;
|
|
|
|
|
bsd_args.domain = linux_to_bsd_domain(linux_args.domain);
|
|
|
|
|
if (bsd_args.domain == -1)
|
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
|
retval_socket = socket(td, &bsd_args);
|
2000-08-26 05:12:16 +00:00
|
|
|
|
if (bsd_args.type == SOCK_RAW
|
|
|
|
|
&& (bsd_args.protocol == IPPROTO_RAW || bsd_args.protocol == 0)
|
|
|
|
|
&& bsd_args.domain == AF_INET
|
|
|
|
|
&& retval_socket >= 0) {
|
|
|
|
|
/* It's a raw IP socket: set the IP_HDRINCL option. */
|
|
|
|
|
struct setsockopt_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
int level;
|
|
|
|
|
int name;
|
|
|
|
|
caddr_t val;
|
|
|
|
|
int valsize;
|
|
|
|
|
} */ bsd_setsockopt_args;
|
|
|
|
|
caddr_t sg;
|
|
|
|
|
int *hdrincl;
|
|
|
|
|
|
|
|
|
|
sg = stackgap_init();
|
|
|
|
|
hdrincl = (int *)stackgap_alloc(&sg, sizeof(*hdrincl));
|
|
|
|
|
*hdrincl = 1;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
bsd_setsockopt_args.s = td->td_retval[0];
|
2000-08-26 05:12:16 +00:00
|
|
|
|
bsd_setsockopt_args.level = IPPROTO_IP;
|
|
|
|
|
bsd_setsockopt_args.name = IP_HDRINCL;
|
|
|
|
|
bsd_setsockopt_args.val = (caddr_t)hdrincl;
|
|
|
|
|
bsd_setsockopt_args.valsize = sizeof(*hdrincl);
|
|
|
|
|
/* We ignore any error returned by setsockopt() */
|
2001-09-12 08:38:13 +00:00
|
|
|
|
setsockopt(td, &bsd_setsockopt_args);
|
2000-08-26 05:12:16 +00:00
|
|
|
|
/* Copy back the return value from socket() */
|
2001-09-12 08:38:13 +00:00
|
|
|
|
td->td_retval[0] = bsd_setsockopt_args.s;
|
2000-08-26 05:12:16 +00:00
|
|
|
|
}
|
1997-12-14 03:17:54 +00:00
|
|
|
|
|
2000-08-26 05:12:16 +00:00
|
|
|
|
return (retval_socket);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_bind_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
struct sockaddr *name;
|
|
|
|
|
int namelen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_bind(struct thread *td, struct linux_bind_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_bind_args linux_args;
|
|
|
|
|
struct bind_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t name;
|
|
|
|
|
int namelen;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.name = (caddr_t)linux_args.name;
|
2001-10-26 23:10:08 +00:00
|
|
|
|
bsd_args.namelen = linux_to_bsd_namelen(bsd_args.name, linux_args.namelen);
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (bind(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_connect_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
struct sockaddr * name;
|
|
|
|
|
int namelen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
2001-09-12 08:38:13 +00:00
|
|
|
|
int linux_connect(struct thread *, struct linux_connect_args *);
|
2000-11-16 01:05:53 +00:00
|
|
|
|
#endif /* !__alpha__*/
|
1995-06-25 17:32:43 +00:00
|
|
|
|
|
2000-11-16 01:05:53 +00:00
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_connect(struct thread *td, struct linux_connect_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_connect_args linux_args;
|
|
|
|
|
struct connect_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t name;
|
|
|
|
|
int namelen;
|
|
|
|
|
} */ bsd_args;
|
2001-03-01 21:44:40 +00:00
|
|
|
|
struct socket *so;
|
2001-11-17 18:43:13 +00:00
|
|
|
|
u_int fflag;
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int error;
|
|
|
|
|
|
2000-11-16 01:05:53 +00:00
|
|
|
|
#ifdef __alpha__
|
|
|
|
|
bcopy(args, &linux_args, sizeof(linux_args));
|
|
|
|
|
#else
|
2000-08-26 05:12:16 +00:00
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
2000-11-16 01:05:53 +00:00
|
|
|
|
#endif /* __alpha__ */
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.name = (caddr_t)linux_args.name;
|
2001-10-26 23:10:08 +00:00
|
|
|
|
bsd_args.namelen = linux_to_bsd_namelen(bsd_args.name, linux_args.namelen);
|
2001-09-12 08:38:13 +00:00
|
|
|
|
error = connect(td, &bsd_args);
|
2001-03-01 21:44:40 +00:00
|
|
|
|
if (error != EISCONN)
|
|
|
|
|
return (error);
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
2001-03-01 21:44:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* Linux doesn't return EISCONN the first time it occurs,
|
|
|
|
|
* when on a non-blocking socket. Instead it returns the
|
|
|
|
|
* error getsockopt(SOL_SOCKET, SO_ERROR) would return on BSD.
|
|
|
|
|
*/
|
2001-11-17 18:43:13 +00:00
|
|
|
|
if ((error = fgetsock(td, linux_args.s, &so, &fflag)) != 0)
|
|
|
|
|
return(error);
|
2001-03-01 21:44:40 +00:00
|
|
|
|
error = EISCONN;
|
2001-11-17 18:43:13 +00:00
|
|
|
|
if (fflag & FNONBLOCK) {
|
2001-09-08 19:07:04 +00:00
|
|
|
|
if (so->so_emuldata == 0)
|
2001-03-01 21:44:40 +00:00
|
|
|
|
error = so->so_error;
|
|
|
|
|
so->so_emuldata = (void *)1;
|
1998-02-07 02:13:27 +00:00
|
|
|
|
}
|
2001-11-17 18:43:13 +00:00
|
|
|
|
fputsock(so);
|
2000-08-26 05:12:16 +00:00
|
|
|
|
return (error);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-11-16 01:05:53 +00:00
|
|
|
|
#ifndef __alpha__
|
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
struct linux_listen_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
int backlog;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_listen(struct thread *td, struct linux_listen_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_listen_args linux_args;
|
|
|
|
|
struct listen_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
int backlog;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.backlog = linux_args.backlog;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (listen(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_accept_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
struct sockaddr *addr;
|
|
|
|
|
int *namelen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_accept(struct thread *td, struct linux_accept_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_accept_args linux_args;
|
|
|
|
|
struct accept_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t name;
|
|
|
|
|
int *anamelen;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
struct fcntl_args /* {
|
|
|
|
|
int fd;
|
|
|
|
|
int cmd;
|
|
|
|
|
long arg;
|
|
|
|
|
} */ f_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.name = (caddr_t)linux_args.addr;
|
|
|
|
|
bsd_args.anamelen = linux_args.namelen;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
error = oaccept(td, &bsd_args);
|
2000-08-26 05:12:16 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
2000-02-28 18:58:59 +00:00
|
|
|
|
|
2000-08-26 05:12:16 +00:00
|
|
|
|
/*
|
|
|
|
|
* linux appears not to copy flags from the parent socket to the
|
|
|
|
|
* accepted one, so we must clear the flags in the new descriptor.
|
|
|
|
|
* Ignore any errors, because we already have an open fd.
|
|
|
|
|
*/
|
2001-09-12 08:38:13 +00:00
|
|
|
|
f_args.fd = td->td_retval[0];
|
2000-08-26 05:12:16 +00:00
|
|
|
|
f_args.cmd = F_SETFL;
|
|
|
|
|
f_args.arg = 0;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
(void)fcntl(td, &f_args);
|
|
|
|
|
td->td_retval[0] = f_args.fd;
|
2000-08-26 05:12:16 +00:00
|
|
|
|
return (0);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_getsockname_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
struct sockaddr *addr;
|
|
|
|
|
int *namelen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_getsockname(struct thread *td, struct linux_getsockname_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_getsockname_args linux_args;
|
|
|
|
|
struct getsockname_args /* {
|
|
|
|
|
int fdes;
|
|
|
|
|
caddr_t asa;
|
|
|
|
|
int *alen;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.fdes = linux_args.s;
|
|
|
|
|
bsd_args.asa = (caddr_t) linux_args.addr;
|
|
|
|
|
bsd_args.alen = linux_args.namelen;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (ogetsockname(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_getpeername_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
struct sockaddr *addr;
|
|
|
|
|
int *namelen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_getpeername(struct thread *td, struct linux_getpeername_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_getpeername_args linux_args;
|
|
|
|
|
struct ogetpeername_args /* {
|
|
|
|
|
int fdes;
|
|
|
|
|
caddr_t asa;
|
|
|
|
|
int *alen;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.fdes = linux_args.s;
|
|
|
|
|
bsd_args.asa = (caddr_t) linux_args.addr;
|
|
|
|
|
bsd_args.alen = linux_args.namelen;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (ogetpeername(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_socketpair_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int domain;
|
|
|
|
|
int type;
|
|
|
|
|
int protocol;
|
|
|
|
|
int *rsv;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_socketpair(struct thread *td, struct linux_socketpair_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_socketpair_args linux_args;
|
|
|
|
|
struct socketpair_args /* {
|
|
|
|
|
int domain;
|
|
|
|
|
int type;
|
|
|
|
|
int protocol;
|
|
|
|
|
int *rsv;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.domain = linux_to_bsd_domain(linux_args.domain);
|
|
|
|
|
if (bsd_args.domain == -1)
|
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
|
|
bsd_args.type = linux_args.type;
|
|
|
|
|
bsd_args.protocol = linux_args.protocol;
|
|
|
|
|
bsd_args.rsv = linux_args.rsv;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (socketpair(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_send_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
void *msg;
|
|
|
|
|
int len;
|
|
|
|
|
int flags;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_send(struct thread *td, struct linux_send_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_send_args linux_args;
|
|
|
|
|
struct osend_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t buf;
|
|
|
|
|
int len;
|
|
|
|
|
int flags;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.buf = linux_args.msg;
|
|
|
|
|
bsd_args.len = linux_args.len;
|
|
|
|
|
bsd_args.flags = linux_args.flags;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (osend(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_recv_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
void *msg;
|
|
|
|
|
int len;
|
|
|
|
|
int flags;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_recv(struct thread *td, struct linux_recv_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_recv_args linux_args;
|
|
|
|
|
struct orecv_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t buf;
|
|
|
|
|
int len;
|
|
|
|
|
int flags;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.buf = linux_args.msg;
|
|
|
|
|
bsd_args.len = linux_args.len;
|
|
|
|
|
bsd_args.flags = linux_args.flags;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (orecv(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_sendto_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
void *msg;
|
|
|
|
|
int len;
|
|
|
|
|
int flags;
|
|
|
|
|
caddr_t to;
|
|
|
|
|
int tolen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_sendto(struct thread *td, struct linux_sendto_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_sendto_args linux_args;
|
|
|
|
|
struct sendto_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t buf;
|
|
|
|
|
size_t len;
|
|
|
|
|
int flags;
|
|
|
|
|
caddr_t to;
|
|
|
|
|
int tolen;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.buf = linux_args.msg;
|
|
|
|
|
bsd_args.len = linux_args.len;
|
|
|
|
|
bsd_args.flags = linux_args.flags;
|
|
|
|
|
bsd_args.to = linux_args.to;
|
|
|
|
|
bsd_args.tolen = linux_args.tolen;
|
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
|
if (linux_check_hdrincl(td, linux_args.s) == 0)
|
2000-08-26 05:12:16 +00:00
|
|
|
|
/* IP_HDRINCL set, tweak the packet before sending */
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_sendto_hdrincl(td, &bsd_args));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (sendto(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_recvfrom_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
void *buf;
|
|
|
|
|
int len;
|
|
|
|
|
int flags;
|
|
|
|
|
caddr_t from;
|
|
|
|
|
int *fromlen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_recvfrom(struct thread *td, struct linux_recvfrom_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_recvfrom_args linux_args;
|
|
|
|
|
struct recvfrom_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
caddr_t buf;
|
|
|
|
|
size_t len;
|
|
|
|
|
int flags;
|
|
|
|
|
caddr_t from;
|
|
|
|
|
int *fromlenaddr;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.buf = linux_args.buf;
|
|
|
|
|
bsd_args.len = linux_args.len;
|
2000-12-19 00:24:25 +00:00
|
|
|
|
bsd_args.flags = linux_to_bsd_msg_flags(linux_args.flags);
|
2000-08-26 05:12:16 +00:00
|
|
|
|
bsd_args.from = linux_args.from;
|
|
|
|
|
bsd_args.fromlenaddr = linux_args.fromlen;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (orecvfrom(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-12-19 00:24:25 +00:00
|
|
|
|
struct linux_recvmsg_args {
|
|
|
|
|
int s;
|
|
|
|
|
struct msghdr *msg;
|
|
|
|
|
int flags;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_recvmsg(struct thread *td, struct linux_recvmsg_args *args)
|
2000-12-19 00:24:25 +00:00
|
|
|
|
{
|
|
|
|
|
struct linux_recvmsg_args linux_args;
|
|
|
|
|
struct recvmsg_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
struct msghdr *msg;
|
|
|
|
|
int flags;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.msg = linux_args.msg;
|
|
|
|
|
bsd_args.flags = linux_to_bsd_msg_flags(linux_args.flags);
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (recvmsg(td, &bsd_args));
|
2000-12-19 00:24:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
struct linux_shutdown_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
int how;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_shutdown(struct thread *td, struct linux_shutdown_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_shutdown_args linux_args;
|
|
|
|
|
struct shutdown_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
int how;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.how = linux_args.how;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (shutdown(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_setsockopt_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
int level;
|
|
|
|
|
int optname;
|
|
|
|
|
void *optval;
|
|
|
|
|
int optlen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_setsockopt(struct thread *td, struct linux_setsockopt_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_setsockopt_args linux_args;
|
|
|
|
|
struct setsockopt_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
int level;
|
|
|
|
|
int name;
|
|
|
|
|
caddr_t val;
|
|
|
|
|
int valsize;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error, name;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.level = linux_to_bsd_sockopt_level(linux_args.level);
|
|
|
|
|
switch (bsd_args.level) {
|
|
|
|
|
case SOL_SOCKET:
|
|
|
|
|
name = linux_to_bsd_so_sockopt(linux_args.optname);
|
|
|
|
|
break;
|
|
|
|
|
case IPPROTO_IP:
|
|
|
|
|
name = linux_to_bsd_ip_sockopt(linux_args.optname);
|
|
|
|
|
break;
|
|
|
|
|
case IPPROTO_TCP:
|
|
|
|
|
/* Linux TCP option values match BSD's */
|
|
|
|
|
name = linux_args.optname;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
name = -1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (name == -1)
|
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
|
|
bsd_args.name = name;
|
|
|
|
|
bsd_args.val = linux_args.optval;
|
|
|
|
|
bsd_args.valsize = linux_args.optlen;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (setsockopt(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct linux_getsockopt_args {
|
2000-08-26 05:12:16 +00:00
|
|
|
|
int s;
|
|
|
|
|
int level;
|
|
|
|
|
int optname;
|
|
|
|
|
void *optval;
|
|
|
|
|
int *optlen;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_getsockopt(struct thread *td, struct linux_getsockopt_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2000-08-26 05:12:16 +00:00
|
|
|
|
struct linux_getsockopt_args linux_args;
|
|
|
|
|
struct getsockopt_args /* {
|
|
|
|
|
int s;
|
|
|
|
|
int level;
|
|
|
|
|
int name;
|
|
|
|
|
caddr_t val;
|
|
|
|
|
int *avalsize;
|
|
|
|
|
} */ bsd_args;
|
|
|
|
|
int error, name;
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(args, &linux_args, sizeof(linux_args))))
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
bsd_args.s = linux_args.s;
|
|
|
|
|
bsd_args.level = linux_to_bsd_sockopt_level(linux_args.level);
|
|
|
|
|
switch (bsd_args.level) {
|
|
|
|
|
case SOL_SOCKET:
|
|
|
|
|
name = linux_to_bsd_so_sockopt(linux_args.optname);
|
|
|
|
|
break;
|
|
|
|
|
case IPPROTO_IP:
|
|
|
|
|
name = linux_to_bsd_ip_sockopt(linux_args.optname);
|
|
|
|
|
break;
|
|
|
|
|
case IPPROTO_TCP:
|
|
|
|
|
/* Linux TCP option values match BSD's */
|
|
|
|
|
name = linux_args.optname;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
name = -1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (name == -1)
|
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
|
|
bsd_args.name = name;
|
|
|
|
|
bsd_args.val = linux_args.optval;
|
|
|
|
|
bsd_args.avalsize = linux_args.optlen;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (getsockopt(td, &bsd_args));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_socketcall(struct thread *td, struct linux_socketcall_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
2001-09-08 19:07:04 +00:00
|
|
|
|
void *arg = (void *)args->args;
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
|
|
|
|
switch (args->what) {
|
|
|
|
|
case LINUX_SOCKET:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_socket(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_BIND:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_bind(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_CONNECT:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_connect(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_LISTEN:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_listen(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_ACCEPT:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_accept(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_GETSOCKNAME:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_getsockname(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_GETPEERNAME:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_getpeername(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_SOCKETPAIR:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_socketpair(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_SEND:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_send(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_RECV:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_recv(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_SENDTO:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_sendto(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_RECVFROM:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_recvfrom(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_SHUTDOWN:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_shutdown(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_SETSOCKOPT:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_setsockopt(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_GETSOCKOPT:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_getsockopt(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
case LINUX_SENDMSG:
|
|
|
|
|
do {
|
|
|
|
|
int error;
|
|
|
|
|
int level;
|
|
|
|
|
caddr_t control;
|
|
|
|
|
struct {
|
|
|
|
|
int s;
|
|
|
|
|
const struct msghdr *msg;
|
|
|
|
|
int flags;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
} *uap = arg;
|
2000-08-26 05:12:16 +00:00
|
|
|
|
|
|
|
|
|
error = copyin(&uap->msg->msg_control, &control,
|
|
|
|
|
sizeof(caddr_t));
|
1999-01-11 05:28:44 +00:00
|
|
|
|
if (error)
|
2000-08-26 05:12:16 +00:00
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
if (control == NULL)
|
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
|
|
error = copyin(&((struct cmsghdr*)control)->cmsg_level,
|
|
|
|
|
&level, sizeof(int));
|
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
if (level == 1) {
|
|
|
|
|
/*
|
|
|
|
|
* Linux thinks that SOL_SOCKET is 1; we know
|
|
|
|
|
* that it's really 0xffff, of course.
|
|
|
|
|
*/
|
|
|
|
|
level = SOL_SOCKET;
|
|
|
|
|
error = copyout(&level,
|
|
|
|
|
&((struct cmsghdr *)control)->cmsg_level,
|
|
|
|
|
sizeof(int));
|
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
}
|
|
|
|
|
done:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (sendmsg(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
} while (0);
|
|
|
|
|
case LINUX_RECVMSG:
|
2001-09-12 08:38:13 +00:00
|
|
|
|
return (linux_recvmsg(td, arg));
|
2000-08-26 05:12:16 +00:00
|
|
|
|
}
|
1998-12-30 21:20:00 +00:00
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
uprintf("LINUX: 'socket' typ=%d not implemented\n", args->what);
|
2000-08-26 05:12:16 +00:00
|
|
|
|
return (ENOSYS);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
2000-11-01 19:48:35 +00:00
|
|
|
|
#endif /*!__alpha__*/
|