115 lines
2.5 KiB
C
115 lines
2.5 KiB
C
/* $NetBSD: uipc_syscalls_40.c,v 1.7 2011/01/19 10:21:16 tsutsui Exp $ */
|
|
|
|
/* written by Pavel Cahyna, 2006. Public domain. */
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls_40.c,v 1.7 2011/01/19 10:21:16 tsutsui Exp $");
|
|
|
|
/*
|
|
* System call interface to the socket abstraction.
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/msg.h>
|
|
#include <sys/sysctl.h>
|
|
#include <sys/syscallargs.h>
|
|
#include <sys/errno.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <compat/sys/socket.h>
|
|
#include <compat/sys/sockio.h>
|
|
|
|
#ifdef COMPAT_OIFREQ
|
|
/*
|
|
* Return interface configuration
|
|
* of system. List may be used
|
|
* in later ioctl's (above) to get
|
|
* other information.
|
|
*/
|
|
/*ARGSUSED*/
|
|
int
|
|
compat_ifconf(u_long cmd, void *data)
|
|
{
|
|
struct oifconf *ifc = data;
|
|
struct ifnet *ifp;
|
|
struct ifaddr *ifa;
|
|
struct oifreq ifr, *ifrp;
|
|
int space, error = 0;
|
|
const int sz = (int)sizeof(ifr);
|
|
|
|
if ((ifrp = ifc->ifc_req) == NULL)
|
|
space = 0;
|
|
else
|
|
space = ifc->ifc_len;
|
|
IFNET_FOREACH(ifp) {
|
|
(void)strncpy(ifr.ifr_name, ifp->if_xname,
|
|
sizeof(ifr.ifr_name));
|
|
if (ifr.ifr_name[sizeof(ifr.ifr_name) - 1] != '\0')
|
|
return ENAMETOOLONG;
|
|
if (IFADDR_EMPTY(ifp)) {
|
|
memset(&ifr.ifr_addr, 0, sizeof(ifr.ifr_addr));
|
|
if (space >= sz) {
|
|
error = copyout(&ifr, ifrp, sz);
|
|
if (error != 0)
|
|
return (error);
|
|
ifrp++;
|
|
}
|
|
space -= sizeof(ifr);
|
|
continue;
|
|
}
|
|
|
|
IFADDR_FOREACH(ifa, ifp) {
|
|
struct sockaddr *sa = ifa->ifa_addr;
|
|
#ifdef COMPAT_OSOCK
|
|
if (cmd == OOSIOCGIFCONF) {
|
|
struct osockaddr *osa =
|
|
(struct osockaddr *)&ifr.ifr_addr;
|
|
/*
|
|
* If it does not fit, we don't bother with it
|
|
*/
|
|
if (sa->sa_len > sizeof(*osa))
|
|
continue;
|
|
memcpy(&ifr.ifr_addr, sa, sa->sa_len);
|
|
osa->sa_family = sa->sa_family;
|
|
if (space >= sz) {
|
|
error = copyout(&ifr, ifrp, sz);
|
|
ifrp++;
|
|
}
|
|
} else
|
|
#endif
|
|
if (sa->sa_len <= sizeof(*sa)) {
|
|
memcpy(&ifr.ifr_addr, sa, sa->sa_len);
|
|
if (space >= sz) {
|
|
error = copyout(&ifr, ifrp, sz);
|
|
ifrp++;
|
|
}
|
|
} else {
|
|
space -= sa->sa_len - sizeof(*sa);
|
|
if (space >= sz) {
|
|
error = copyout(&ifr, ifrp,
|
|
sizeof(ifr.ifr_name));
|
|
if (error == 0) {
|
|
error = copyout(sa,
|
|
&ifrp->ifr_addr,
|
|
sa->sa_len);
|
|
}
|
|
ifrp = (struct oifreq *)
|
|
(sa->sa_len +
|
|
(char *)&ifrp->ifr_addr);
|
|
}
|
|
}
|
|
if (error != 0)
|
|
return (error);
|
|
space -= sz;
|
|
}
|
|
}
|
|
if (ifrp != NULL)
|
|
ifc->ifc_len -= space;
|
|
else
|
|
ifc->ifc_len = -space;
|
|
return (0);
|
|
}
|
|
#endif
|