1995-10-07 09:25:19 +03:00
|
|
|
/* $NetBSD: svr4_stream.c,v 1.9 1995/10/07 06:27:52 mycroft Exp $ */
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 Christos Zoulas
|
|
|
|
* 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.
|
|
|
|
* 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 without 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pretend that we have streams...
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/tty.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/filedesc.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/socketvar.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
|
|
|
#include <compat/svr4/svr4_types.h>
|
|
|
|
#include <compat/svr4/svr4_util.h>
|
1994-11-18 05:53:37 +03:00
|
|
|
#include <compat/svr4/svr4_signal.h>
|
1994-11-14 09:13:11 +03:00
|
|
|
#include <compat/svr4/svr4_syscallargs.h>
|
|
|
|
#include <compat/svr4/svr4_stropts.h>
|
|
|
|
#include <compat/svr4/svr4_timod.h>
|
|
|
|
#include <compat/svr4/svr4_sockmod.h>
|
|
|
|
#include <compat/svr4/svr4_ioctl.h>
|
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
static void svr4_getparm __P((struct socket *, struct svr4_si_sockparms *));
|
|
|
|
static int svr4_sockmod __P((struct file *, struct svr4_strioctl *,
|
|
|
|
struct proc *));
|
|
|
|
static int svr4_timod __P((struct file *, struct svr4_strioctl *,
|
|
|
|
struct proc *));
|
|
|
|
#ifdef DEBUG_SVR4
|
|
|
|
static int svr4_showioc __P((const char *, struct svr4_strioctl *));
|
|
|
|
static int svr4_getstrbuf __P((struct svr4_strbuf *));
|
|
|
|
static void svr4_showmsg __P((const char *, int, struct svr4_strbuf *,
|
|
|
|
struct svr4_strbuf *, int));
|
|
|
|
#endif /* DEBUG_SVR4 */
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
svr4_getparm(so, pa)
|
|
|
|
struct socket *so;
|
|
|
|
struct svr4_si_sockparms *pa;
|
|
|
|
{
|
|
|
|
pa->family = AF_INET;
|
|
|
|
|
|
|
|
switch (so->so_type) {
|
|
|
|
case SOCK_DGRAM:
|
|
|
|
pa->type = SVR4_SOCK_DGRAM;
|
|
|
|
pa->protocol = IPPROTO_UDP;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case SOCK_STREAM:
|
|
|
|
pa->type = SVR4_SOCK_STREAM;
|
|
|
|
pa->protocol = IPPROTO_TCP;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case SOCK_RAW:
|
|
|
|
pa->type = SVR4_SOCK_RAW;
|
|
|
|
pa->protocol = IPPROTO_RAW;
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
pa->type = 0;
|
|
|
|
pa->protocol = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
static int
|
|
|
|
svr4_sockmod(fp, ioc, p)
|
|
|
|
struct file *fp;
|
|
|
|
struct svr4_strioctl *ioc;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
switch (ioc->cmd) {
|
1995-03-31 07:06:17 +04:00
|
|
|
case SVR4_SI_OGETUDATA:
|
|
|
|
DPRINTF(("SI_OGETUDATA\n"));
|
1994-11-14 09:13:11 +03:00
|
|
|
{
|
1995-03-31 07:06:17 +04:00
|
|
|
struct svr4_si_oudata ud;
|
|
|
|
struct svr4_si_sockparms pa;
|
1994-11-18 05:53:37 +03:00
|
|
|
struct socket *so = (struct socket *) fp->f_data;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
if (sizeof(ud) != ioc->len) {
|
|
|
|
DPRINTF(("Wrong size %d != %d\n",
|
|
|
|
sizeof(ud), ioc->len));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = copyin(ioc->buf, &ud, sizeof(ud))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
/* I have no idea what these should be! */
|
|
|
|
ud.tidusize = 16384;
|
1994-11-18 05:53:37 +03:00
|
|
|
ud.addrsize = sizeof(struct sockaddr_in);
|
1994-11-14 09:13:11 +03:00
|
|
|
ud.optsize = 128;
|
1994-11-18 05:53:37 +03:00
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
svr4_getparm(so, &pa);
|
1994-11-18 05:53:37 +03:00
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
if (pa.type == SVR4_SOCK_STREAM)
|
1994-11-18 05:53:37 +03:00
|
|
|
ud.etsdusize = 1;
|
1995-03-31 07:06:17 +04:00
|
|
|
else
|
1994-11-18 05:53:37 +03:00
|
|
|
ud.etsdusize = 0;
|
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
ud.servtype = pa.type;
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
/* XXX: Fixme */
|
1994-11-14 09:13:11 +03:00
|
|
|
ud.so_state = 0;
|
|
|
|
ud.so_options = 0;
|
|
|
|
return copyout(&ud, ioc->buf, sizeof(ud));
|
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_SI_SHUTDOWN:
|
|
|
|
DPRINTF(("SI_SHUTDOWN\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SI_LISTEN:
|
|
|
|
DPRINTF(("SI_LISTEN\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SI_SETMYNAME:
|
|
|
|
DPRINTF(("SI_SETMYNAME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SI_SETPEERNAME:
|
|
|
|
DPRINTF(("SI_SETPEERNAME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SI_GETINTRANSIT:
|
|
|
|
DPRINTF(("SI_GETINTRANSIT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SI_TCL_LINK:
|
|
|
|
DPRINTF(("SI_TCL_LINK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SI_TCL_UNLINK:
|
|
|
|
DPRINTF(("SI_TCL_UNLINK\n"));
|
|
|
|
return 0;
|
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
case SVR4_SI_SOCKPARAMS:
|
|
|
|
DPRINTF(("SI_SOCKPARAMS\n"));
|
|
|
|
{
|
|
|
|
struct socket *so = (struct socket *) fp->f_data;
|
|
|
|
struct svr4_si_sockparms pa;
|
|
|
|
|
|
|
|
svr4_getparm(so, &pa);
|
|
|
|
return copyout(&pa, ioc->buf, sizeof(pa));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SI_GETUDATA:
|
|
|
|
DPRINTF(("SI_GETUDATA\n"));
|
|
|
|
{
|
|
|
|
struct svr4_si_udata ud;
|
|
|
|
struct socket *so = (struct socket *) fp->f_data;
|
|
|
|
|
|
|
|
if (sizeof(ud) != ioc->len) {
|
|
|
|
DPRINTF(("Wrong size %d != %d\n",
|
|
|
|
sizeof(ud), ioc->len));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = copyin(ioc->buf, &ud, sizeof(ud))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
/* I have no idea what these should be! */
|
|
|
|
ud.tidusize = 16384;
|
|
|
|
ud.addrsize = sizeof(struct sockaddr_in);
|
|
|
|
ud.optsize = 128;
|
|
|
|
ud.tsdusize = 16384;
|
|
|
|
|
|
|
|
svr4_getparm(so, &ud.sockparms);
|
|
|
|
|
|
|
|
if (ud.sockparms.type == SVR4_SOCK_STREAM)
|
|
|
|
ud.etsdusize = 1;
|
|
|
|
else
|
|
|
|
ud.etsdusize = 0;
|
|
|
|
|
|
|
|
ud.servtype = ud.sockparms.type;
|
|
|
|
|
|
|
|
/* XXX: Fixme */
|
|
|
|
ud.so_state = 0;
|
|
|
|
ud.so_options = 0;
|
|
|
|
return copyout(&ud, ioc->buf, sizeof(ud));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
default:
|
|
|
|
DPRINTF(("Unknown sockmod ioctl %x\n", ioc->cmd));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
svr4_timod(fp, ioc, p)
|
|
|
|
struct file *fp;
|
|
|
|
struct svr4_strioctl *ioc;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
1994-11-18 05:53:37 +03:00
|
|
|
int error;
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
switch (ioc->cmd) {
|
|
|
|
case SVR4_TI_GETINFO:
|
|
|
|
DPRINTF(("TI_GETINFO\n"));
|
1995-01-10 03:04:03 +03:00
|
|
|
{
|
|
|
|
struct svr4_infocmd info;
|
|
|
|
|
|
|
|
bzero(&info, sizeof(info));
|
|
|
|
|
|
|
|
if ((error = copyin(ioc->buf, &info, ioc->len)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (info.cmd != SVR4_TI_INFO_REQUEST)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
info.cmd = SVR4_TI_INFO_REPLY;
|
|
|
|
info.tsdu = 0;
|
|
|
|
info.etsdu = 1;
|
|
|
|
info.cdata = -2;
|
|
|
|
info.ddata = -2;
|
|
|
|
info.addr = 16;
|
|
|
|
info.opt = -1;
|
|
|
|
info.tidu = 16384;
|
|
|
|
info.serv = 2;
|
|
|
|
info.current = 0;
|
|
|
|
info.provider = 2;
|
|
|
|
|
|
|
|
ioc->len = sizeof(info);
|
|
|
|
if ((error = copyout(&info, ioc->buf, ioc->len)) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
1994-11-14 09:13:11 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_TI_OPTMGMT:
|
|
|
|
DPRINTF(("TI_OPTMGMT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_TI_BIND:
|
|
|
|
DPRINTF(("TI_BIND\n"));
|
1994-11-18 05:53:37 +03:00
|
|
|
{
|
|
|
|
struct svr4_strmcmd bnd;
|
|
|
|
bzero(&bnd, sizeof(bnd));
|
|
|
|
|
|
|
|
if ((error = copyin(ioc->buf, &bnd, ioc->len)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (bnd.cmd != SVR4_TI_BIND_REQUEST)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
ioc->len = 32;
|
|
|
|
|
|
|
|
bzero(&bnd, sizeof(bnd));
|
|
|
|
|
|
|
|
bnd.cmd = SVR4_TI_BIND_REPLY;
|
|
|
|
bnd.len = sizeof(struct sockaddr_in);
|
|
|
|
bnd.offs = 0x10;
|
|
|
|
|
|
|
|
if ((error = copyout(&bnd, ioc->buf, ioc->len)) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
1994-11-14 09:13:11 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_TI_UNBIND:
|
|
|
|
DPRINTF(("TI_UNBIND\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_TI_GETMYNAME:
|
|
|
|
DPRINTF(("TI_GETMYNAME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_TI_GETPEERNAME:
|
|
|
|
DPRINTF(("TI_GETPEERNAME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_TI_SETMYNAME:
|
|
|
|
DPRINTF(("TI_SETMYNAME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_TI_SETPEERNAME:
|
|
|
|
DPRINTF(("TI_SETPEERNAME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DPRINTF(("Unknown timod ioctl %x\n", ioc->cmd));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
#ifdef DEBUG_SVR4
|
|
|
|
static int
|
|
|
|
svr4_showioc(str, ioc)
|
|
|
|
const char *str;
|
|
|
|
struct svr4_strioctl *ioc;
|
|
|
|
{
|
|
|
|
char *ptr = (char *) malloc(ioc->len, M_TEMP, M_WAITOK);
|
|
|
|
int error;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
printf("%s cmd = %d, timeout = %d, len = %d, buf = %x { ",
|
|
|
|
str, ioc->cmd, ioc->timeout, ioc->len, ioc->buf);
|
|
|
|
|
|
|
|
if ((error = copyin(ioc->buf, ptr, ioc->len)) != 0) {
|
|
|
|
free((char *) ptr, M_TEMP);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ioc->len; i++)
|
|
|
|
printf("%x ", (unsigned char) ptr[i]);
|
|
|
|
|
|
|
|
printf("}\n");
|
|
|
|
|
|
|
|
free((char *) ptr, M_TEMP);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* DEBUG_SVR4 */
|
|
|
|
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
int
|
|
|
|
svr4_streamioctl(fp, cmd, dat, p, retval)
|
1995-10-07 09:25:19 +03:00
|
|
|
struct file *fp;
|
|
|
|
u_long cmd;
|
|
|
|
caddr_t dat;
|
|
|
|
struct proc *p;
|
|
|
|
register_t *retval;
|
1994-11-14 09:13:11 +03:00
|
|
|
{
|
|
|
|
struct svr4_strioctl ioc;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
*retval = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All the following stuff assumes "sockmod" is pushed...
|
|
|
|
*/
|
|
|
|
switch (cmd) {
|
|
|
|
case SVR4_I_NREAD:
|
|
|
|
DPRINTF(("I_NREAD\n"));
|
1995-02-01 04:37:33 +03:00
|
|
|
{
|
|
|
|
int nread = 0; /* XXX: is that FIONREAD? */
|
|
|
|
if ((error = copyout(&nread, dat, sizeof(nread))) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
1994-11-14 09:13:11 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_PUSH:
|
|
|
|
DPRINTF(("I_PUSH\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_POP:
|
|
|
|
DPRINTF(("I_POP\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_LOOK:
|
|
|
|
DPRINTF(("I_LOOK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_FLUSH:
|
|
|
|
DPRINTF(("I_FLUSH\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_SRDOPT:
|
|
|
|
DPRINTF(("I_SRDOPT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_GRDOPT:
|
|
|
|
DPRINTF(("I_GRDOPT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_STR:
|
|
|
|
DPRINTF(("I_STR\n"));
|
|
|
|
if ((error = copyin(dat, &ioc, sizeof(ioc))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
#ifdef DEBUG_SVR4
|
1995-03-31 07:06:17 +04:00
|
|
|
if ((error = svr4_showioc(">", &ioc)) != 0)
|
|
|
|
return error;
|
|
|
|
#endif /* DEBUG_SVR4 */
|
1994-11-14 09:13:11 +03:00
|
|
|
switch (ioc.cmd & 0xff00) {
|
|
|
|
case SVR4_SIMOD:
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = svr4_sockmod(fp, &ioc, p)) != 0)
|
|
|
|
return error;
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
case SVR4_TIMOD:
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = svr4_timod(fp, &ioc, p)) != 0)
|
|
|
|
return error;
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
default:
|
|
|
|
DPRINTF(("Unimplemented module %c %d\n",
|
|
|
|
(char) (cmd >> 8), cmd & 0xff));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
#ifdef DEBUG_SVR4
|
|
|
|
if ((error = svr4_showioc("<", &ioc)) != 0)
|
|
|
|
return error;
|
|
|
|
#endif /* DEBUG_SVR4 */
|
1994-11-18 05:53:37 +03:00
|
|
|
return copyout(&ioc, dat, sizeof(ioc));
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
case SVR4_I_SETSIG:
|
|
|
|
DPRINTF(("I_SETSIG\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_GETSIG:
|
|
|
|
DPRINTF(("I_GETSIG\n"));
|
1994-11-18 05:53:37 +03:00
|
|
|
return EINVAL;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
case SVR4_I_FIND:
|
|
|
|
DPRINTF(("I_FIND\n"));
|
|
|
|
/*
|
|
|
|
* Here we are not pushing modules really, we just
|
|
|
|
* pretend all are present
|
|
|
|
*/
|
|
|
|
*retval = 1;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_LINK:
|
|
|
|
DPRINTF(("I_LINK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_UNLINK:
|
|
|
|
DPRINTF(("I_UNLINK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_ERECVFD:
|
|
|
|
DPRINTF(("I_ERECVFD\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_PEEK:
|
|
|
|
DPRINTF(("I_PEEK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_FDINSERT:
|
|
|
|
DPRINTF(("I_FDINSERT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_SENDFD:
|
|
|
|
DPRINTF(("I_SENDFD\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_RECVFD:
|
|
|
|
DPRINTF(("I_RECVFD\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_SWROPT:
|
|
|
|
DPRINTF(("I_SWROPT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_GWROPT:
|
|
|
|
DPRINTF(("I_GWROPT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_LIST:
|
|
|
|
DPRINTF(("I_LIST\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_PLINK:
|
|
|
|
DPRINTF(("I_PLINK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_PUNLINK:
|
|
|
|
DPRINTF(("I_PUNLINK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_SETEV:
|
|
|
|
DPRINTF(("I_SETEV\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_GETEV:
|
|
|
|
DPRINTF(("I_GETEV\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_STREV:
|
|
|
|
DPRINTF(("I_STREV\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_UNSTREV:
|
|
|
|
DPRINTF(("I_UNSTREV\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_FLUSHBAND:
|
|
|
|
DPRINTF(("I_FLUSHBAND\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_CKBAND:
|
|
|
|
DPRINTF(("I_CKBAND\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_GETBAND:
|
|
|
|
DPRINTF(("I_GETBANK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_ATMARK:
|
|
|
|
DPRINTF(("I_ATMARK\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_SETCLTIME:
|
|
|
|
DPRINTF(("I_SETCLTIME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_GETCLTIME:
|
|
|
|
DPRINTF(("I_GETCLTIME\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_I_CANPUT:
|
|
|
|
DPRINTF(("I_CANPUT\n"));
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DPRINTF(("unimpl cmd = %x\n", cmd));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG_SVR4
|
|
|
|
static int
|
|
|
|
svr4_getstrbuf(str)
|
|
|
|
struct svr4_strbuf *str;
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
int i;
|
|
|
|
char *ptr = NULL;
|
|
|
|
int maxlen = str->maxlen;
|
|
|
|
int len = str->len;
|
|
|
|
|
|
|
|
if (maxlen < 0)
|
|
|
|
maxlen = 0;
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
if (len >= maxlen || len <= 0)
|
1994-11-14 09:13:11 +03:00
|
|
|
len = maxlen;
|
|
|
|
|
|
|
|
if (len != 0) {
|
|
|
|
ptr = malloc(len, M_TEMP, M_WAITOK);
|
|
|
|
|
|
|
|
if ((error = copyin(str->buf, ptr, len)) != 0) {
|
|
|
|
free((char *) ptr, M_TEMP);
|
|
|
|
return error;
|
1994-11-18 05:53:37 +03:00
|
|
|
}
|
|
|
|
}
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
printf(", { %d, %d, %x=[ ", str->maxlen, str->len, str->buf);
|
1995-03-31 07:06:17 +04:00
|
|
|
for (i = 0; i < len; i++) {
|
1994-11-14 09:13:11 +03:00
|
|
|
printf("%x ", (unsigned char) ptr[i]);
|
1995-03-31 07:06:17 +04:00
|
|
|
if (i > 20) {
|
|
|
|
printf("...");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1994-11-14 09:13:11 +03:00
|
|
|
printf("]}");
|
|
|
|
|
|
|
|
if (ptr)
|
|
|
|
free((char *) ptr, M_TEMP);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
svr4_showmsg(str, fd, ctl, dat, flags)
|
|
|
|
const char *str;
|
|
|
|
int fd;
|
|
|
|
struct svr4_strbuf *ctl;
|
|
|
|
struct svr4_strbuf *dat;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
struct svr4_strbuf buf;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
printf("%s(%d", str, fd);
|
|
|
|
if (ctl != NULL) {
|
|
|
|
if ((error = copyin(ctl, &buf, sizeof(buf))) != 0)
|
|
|
|
return;
|
|
|
|
svr4_getstrbuf(&buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf(", NULL");
|
|
|
|
|
|
|
|
if (dat != NULL) {
|
|
|
|
if ((error = copyin(dat, &buf, sizeof(buf))) != 0)
|
|
|
|
return;
|
|
|
|
svr4_getstrbuf(&buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf(", NULL");
|
|
|
|
|
|
|
|
printf(", %x);\n", flags);
|
|
|
|
}
|
1995-03-31 07:06:17 +04:00
|
|
|
#endif /* DEBUG_SVR4 */
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_putmsg(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-11-14 09:13:11 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_putmsg_args *uap = v;
|
1994-11-14 09:13:11 +03:00
|
|
|
struct filedesc *fdp = p->p_fd;
|
1995-06-24 22:47:08 +04:00
|
|
|
struct file *fp;
|
1994-11-14 09:13:11 +03:00
|
|
|
struct svr4_strbuf dat, ctl;
|
1994-11-18 05:53:37 +03:00
|
|
|
struct svr4_strmcmd sc;
|
|
|
|
struct svr4_netaddr *na;
|
|
|
|
struct socket *so;
|
|
|
|
struct svr4_strm *st;
|
1994-11-14 09:13:11 +03:00
|
|
|
int error;
|
|
|
|
struct sockaddr_in sa, *sap;
|
|
|
|
caddr_t sg;
|
|
|
|
|
1995-06-25 00:29:17 +04:00
|
|
|
if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles ||
|
|
|
|
(fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
|
|
|
|
return EBADF;
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
#ifdef DEBUG_SVR4
|
|
|
|
svr4_showmsg(">putmsg", SCARG(uap, fd), SCARG(uap, ctl),
|
|
|
|
SCARG(uap, dat), SCARG(uap, flags));
|
1995-03-31 07:06:17 +04:00
|
|
|
#endif /* DEBUG_SVR4 */
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1995-06-24 22:47:08 +04:00
|
|
|
if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles ||
|
|
|
|
(fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
|
|
|
|
return EBADF;
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
if (SCARG(uap, ctl) != NULL) {
|
|
|
|
if ((error = copyin(SCARG(uap, ctl), &ctl, sizeof(ctl))) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ctl.len = -1;
|
|
|
|
|
|
|
|
if (SCARG(uap, dat) != NULL) {
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = copyin(SCARG(uap, dat), &dat, sizeof(dat))) != 0)
|
1994-11-14 09:13:11 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dat.len = -1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only for sockets for now.
|
|
|
|
*/
|
|
|
|
if (fp == NULL || fp->f_type != DTYPE_SOCKET) {
|
|
|
|
DPRINTF(("putmsg: bad file type\n"));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
so = (struct socket *) fp->f_data;
|
|
|
|
st = (struct svr4_strm *) so->so_tpcb;
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
if (ctl.len > sizeof(sc)) {
|
1994-11-14 09:13:11 +03:00
|
|
|
DPRINTF(("putmsg: Bad control size %d != %d\n", ctl.len,
|
1994-11-18 05:53:37 +03:00
|
|
|
sizeof(struct svr4_strmcmd)));
|
1994-11-14 09:13:11 +03:00
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = copyin(ctl.buf, &sc, ctl.len)) != 0)
|
1994-11-14 09:13:11 +03:00
|
|
|
return error;
|
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
if (sc.len != sizeof(sa)) {
|
|
|
|
DPRINTF(("putmsg: Cannot handle variable address lengths\n"));
|
1994-11-18 05:53:37 +03:00
|
|
|
return ENOSYS;
|
1995-03-31 07:06:17 +04:00
|
|
|
}
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
na = SVR4_ADDROF(&sc);
|
1994-11-14 09:13:11 +03:00
|
|
|
bzero(&sa, sizeof(sa));
|
1994-11-18 05:53:37 +03:00
|
|
|
sa.sin_family = na->family;
|
|
|
|
sa.sin_port = na->port;
|
|
|
|
sa.sin_addr.s_addr = na->addr;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1995-06-25 00:29:17 +04:00
|
|
|
sg = stackgap_init(p->p_emul);
|
1994-11-14 09:13:11 +03:00
|
|
|
sap = (struct sockaddr_in *) stackgap_alloc(&sg,
|
|
|
|
sizeof(struct sockaddr_in));
|
|
|
|
|
|
|
|
if ((error = copyout(&sa, sap, sizeof(sa))) != 0)
|
|
|
|
return error;
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
switch (st->s_cmd = sc.cmd) {
|
|
|
|
case SVR4_TI_CONNECT_REQUEST: /* connect */
|
1994-11-14 09:13:11 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_connect_args co;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
co.s = SCARG(uap, fd);
|
|
|
|
co.name = (caddr_t) sap;
|
|
|
|
co.namelen = (int) sizeof(sa);
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_connect(p, &co, retval);
|
1994-11-14 09:13:11 +03:00
|
|
|
}
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
case SVR4_TI_SENDTO_REQUEST: /* sendto */
|
1994-11-14 09:13:11 +03:00
|
|
|
{
|
|
|
|
struct msghdr msg;
|
|
|
|
struct iovec aiov;
|
|
|
|
msg.msg_name = (caddr_t) sap;
|
|
|
|
msg.msg_namelen = sizeof(sa);
|
|
|
|
msg.msg_iov = &aiov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
msg.msg_control = 0;
|
|
|
|
#ifdef COMPAT_OLDSOCK
|
|
|
|
msg.msg_flags = 0;
|
1995-03-31 07:06:17 +04:00
|
|
|
#endif /* COMPAT_OLDSOCK */
|
1994-11-14 09:13:11 +03:00
|
|
|
aiov.iov_base = dat.buf;
|
|
|
|
aiov.iov_len = dat.len;
|
|
|
|
error = sendit(p, SCARG(uap, fd), &msg,
|
|
|
|
SCARG(uap, flags), retval);
|
|
|
|
|
|
|
|
*retval = 0;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
default:
|
1995-03-31 07:06:17 +04:00
|
|
|
DPRINTF(("putmsg: Unimplemented command %x\n", sc.cmd));
|
1994-11-14 09:13:11 +03:00
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_getmsg(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-11-14 09:13:11 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_getmsg_args *uap = v;
|
1994-11-14 09:13:11 +03:00
|
|
|
struct filedesc *fdp = p->p_fd;
|
1995-06-24 22:47:08 +04:00
|
|
|
struct file *fp;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_getpeername_args ga;
|
1994-11-14 09:13:11 +03:00
|
|
|
struct svr4_strbuf dat, ctl;
|
1994-11-18 05:53:37 +03:00
|
|
|
struct svr4_strmcmd sc;
|
|
|
|
struct svr4_netaddr *na;
|
1994-11-14 09:13:11 +03:00
|
|
|
int error;
|
|
|
|
struct msghdr msg;
|
|
|
|
struct iovec aiov;
|
|
|
|
struct sockaddr_in sa, *sap;
|
1994-11-18 05:53:37 +03:00
|
|
|
struct socket *so;
|
|
|
|
struct svr4_strm *st;
|
1994-11-14 09:13:11 +03:00
|
|
|
int *flen;
|
|
|
|
int fl;
|
|
|
|
caddr_t sg;
|
|
|
|
|
1995-06-25 00:29:17 +04:00
|
|
|
if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles ||
|
|
|
|
(fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
|
|
|
|
return EBADF;
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
bzero(&sc, sizeof(sc));
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
#ifdef DEBUG_SVR4
|
|
|
|
svr4_showmsg(">getmsg", SCARG(uap, fd), SCARG(uap, ctl),
|
|
|
|
SCARG(uap, dat), 0);
|
1995-03-31 07:06:17 +04:00
|
|
|
#endif /* DEBUG_SVR4 */
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1995-06-24 22:47:08 +04:00
|
|
|
if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles ||
|
|
|
|
(fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
|
|
|
|
return EBADF;
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
if (SCARG(uap, ctl) != NULL) {
|
|
|
|
if ((error = copyin(SCARG(uap, ctl), &ctl, sizeof(ctl))) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ctl.len = -1;
|
|
|
|
ctl.maxlen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SCARG(uap, dat) != NULL) {
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = copyin(SCARG(uap, dat), &dat, sizeof(dat))) != 0)
|
1994-11-14 09:13:11 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dat.len = -1;
|
|
|
|
dat.maxlen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only for sockets for now.
|
|
|
|
*/
|
|
|
|
if (fp == NULL || fp->f_type != DTYPE_SOCKET) {
|
|
|
|
DPRINTF(("getmsg: bad file type\n"));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
so = (struct socket *) fp->f_data;
|
|
|
|
st = (struct svr4_strm *) so->so_tpcb;
|
|
|
|
|
1994-11-14 09:13:11 +03:00
|
|
|
if (ctl.maxlen == -1 || dat.maxlen == -1) {
|
|
|
|
DPRINTF(("getmsg: Cannot handle -1 maxlen (yet)\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
|
1995-06-25 00:29:17 +04:00
|
|
|
sg = stackgap_init(p->p_emul);
|
1994-11-14 09:13:11 +03:00
|
|
|
sap = (struct sockaddr_in *) stackgap_alloc(&sg,
|
|
|
|
sizeof(struct sockaddr_in));
|
|
|
|
flen = (int *) stackgap_alloc(&sg, sizeof(*flen));
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
fl = sizeof(sa);
|
|
|
|
if ((error = copyout(&fl, flen, sizeof(fl))) != 0)
|
|
|
|
return error;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
switch (st->s_cmd) {
|
|
|
|
case SVR4_TI_CONNECT_REQUEST:
|
1994-11-14 09:13:11 +03:00
|
|
|
/*
|
1994-11-18 05:53:37 +03:00
|
|
|
* We do the connect in one step, so the putmsg should
|
|
|
|
* have gotten the error.
|
1994-11-14 09:13:11 +03:00
|
|
|
*/
|
1994-11-18 05:53:37 +03:00
|
|
|
sc.cmd = SVR4_TI_OK_REPLY;
|
|
|
|
sc.len = 0;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
ctl.len = 8;
|
|
|
|
dat.len = -1;
|
|
|
|
fl = 1;
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
case SVR4_TI_OK_REPLY:
|
|
|
|
/*
|
|
|
|
* We are immediately after a connect reply, so we send
|
|
|
|
* an connect verification.
|
|
|
|
*/
|
|
|
|
SCARG(&ga, fdes) = SCARG(uap, fd);
|
|
|
|
SCARG(&ga, asa) = (caddr_t) sap;
|
|
|
|
SCARG(&ga, alen) = flen;
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
if ((error = sys_getpeername(p, &ga, retval)) != 0) {
|
1995-03-31 07:06:17 +04:00
|
|
|
DPRINTF(("getmsg: getpeername failed %d\n", error));
|
1994-11-18 05:53:37 +03:00
|
|
|
return error;
|
|
|
|
}
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = copyin(sap, &sa, sizeof(sa))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
sc.cmd = SVR4_TI_CONNECT_REPLY;
|
|
|
|
sc.len = sizeof(struct sockaddr_in);
|
|
|
|
sc.offs = 0x18;
|
|
|
|
sc.pad[0] = 0x4;
|
|
|
|
sc.pad[1] = 0x14;
|
|
|
|
sc.pad[2] = 0x04000402;
|
|
|
|
na = SVR4_ADDROF(&sc);
|
|
|
|
|
|
|
|
na->family = sa.sin_family;
|
|
|
|
na->port = sa.sin_port;
|
|
|
|
na->addr = sa.sin_addr.s_addr;
|
|
|
|
|
|
|
|
ctl.len = 40;
|
|
|
|
dat.len = -1;
|
|
|
|
fl = 0;
|
|
|
|
break;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
case SVR4_TI_SENDTO_REQUEST:
|
|
|
|
if (ctl.maxlen > 36 && ctl.len < 36)
|
|
|
|
ctl.len = 36;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = copyin(ctl.buf, &sc, ctl.len)) != 0)
|
|
|
|
return error;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
na = SVR4_ADDROF(&sc);
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
bzero(&sa, sizeof(sa));
|
|
|
|
sa.sin_family = na->family;
|
|
|
|
sa.sin_port = na->port;
|
|
|
|
sa.sin_addr.s_addr = na->addr;
|
1994-11-14 09:13:11 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = copyout(&sa, sap, sizeof(sa))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
msg.msg_name = (caddr_t) sap;
|
|
|
|
msg.msg_namelen = sizeof(sa);
|
|
|
|
msg.msg_iov = &aiov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
msg.msg_control = 0;
|
|
|
|
aiov.iov_base = dat.buf;
|
|
|
|
aiov.iov_len = dat.maxlen;
|
|
|
|
msg.msg_flags = 0;
|
|
|
|
|
|
|
|
error = recvit(p, SCARG(uap, fd), &msg, flen, retval);
|
|
|
|
|
|
|
|
if (error) {
|
1995-03-31 07:06:17 +04:00
|
|
|
DPRINTF(("getmsg: recvit failed %d\n", error))
|
1994-11-18 05:53:37 +03:00
|
|
|
return error;
|
1994-11-14 09:13:11 +03:00
|
|
|
}
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
|
|
|
|
if ((error = copyin(msg.msg_name, &sa, sizeof(sa))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
sc.cmd = SVR4_TI_RECVFROM_REPLY;
|
|
|
|
sc.len = sizeof(sa);
|
|
|
|
|
|
|
|
na->family = sa.sin_family;
|
|
|
|
na->port = sa.sin_port;
|
|
|
|
na->addr = sa.sin_addr.s_addr;
|
|
|
|
|
|
|
|
dat.len = *retval;
|
|
|
|
fl = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1995-03-31 07:06:17 +04:00
|
|
|
DPRINTF(("getmsg: Unknown state %x\n", st->s_cmd));
|
1994-11-18 05:53:37 +03:00
|
|
|
return EINVAL;
|
1994-11-14 09:13:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
st->s_cmd = sc.cmd;
|
1994-11-14 09:13:11 +03:00
|
|
|
if (SCARG(uap, ctl)) {
|
|
|
|
if (ctl.len != -1)
|
1994-11-18 05:53:37 +03:00
|
|
|
if ((error = copyout(&sc, ctl.buf, ctl.len)) != 0)
|
1994-11-14 09:13:11 +03:00
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyout(&ctl, SCARG(uap, ctl), sizeof(ctl))) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SCARG(uap, dat)) {
|
|
|
|
if ((error = copyout(&dat, SCARG(uap, dat), sizeof(dat))) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SCARG(uap, flags)) { /* XXX: Need translation */
|
|
|
|
if ((error = copyout(&fl, SCARG(uap, flags), sizeof(fl))) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
*retval = 0;
|
|
|
|
|
|
|
|
#ifdef DEBUG_SVR4
|
|
|
|
svr4_showmsg("<getmsg", SCARG(uap, fd), SCARG(uap, ctl),
|
|
|
|
SCARG(uap, dat), fl);
|
1995-03-31 07:06:17 +04:00
|
|
|
#endif /* DEBUG_SVR4 */
|
1994-11-14 09:13:11 +03:00
|
|
|
return error;
|
|
|
|
}
|