root/sys/compat/common/rtsock_14.c
/*      $NetBSD: rtsock_14.c,v 1.10 2020/01/29 05:47:12 thorpej Exp $   */

/*
 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
 * 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. Neither the name of the project nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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.
 */

/*
 * Copyright (c) 1988, 1991, 1993
 *      The Regents of the University of California.  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. Neither the name of the University nor the names of its contributors
 *    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.
 *
 *      @(#)rtsock.c    8.7 (Berkeley) 10/12/95
 */

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rtsock_14.c,v 1.10 2020/01/29 05:47:12 thorpej Exp $");

#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
#endif

#ifdef _KERNEL_OPT
#include "opt_inet.h"
#endif

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/domain.h>
#include <sys/protosw.h>
#include <sys/sysctl.h>
#include <sys/kauth.h>
#include <sys/compat_stub.h>
#ifdef RTSOCK_DEBUG
#include <netinet/in.h>
#endif /* RTSOCK_DEBUG */

#include <net/if.h>
#include <net/route.h>
#include <net/raw_cb.h>

#include <compat/net/if.h>
#include <compat/net/route.h>

#include <compat/common/compat_mod.h>

void
compat_14_rt_oifmsg(struct ifnet *ifp)
{
        struct if_msghdr14 oifm;
        struct if_data ifi;
        struct mbuf *m;
        struct rt_addrinfo info;
        struct timeval tv;

        if (compat_50_route_info.ri_cb.any_count == 0)
                return;
        (void)memset(&info, 0, sizeof(info));
        (void)memset(&oifm, 0, sizeof(oifm));
        if_export_if_data(ifp, &ifi, false);
        oifm.ifm_index = ifp->if_index;
        oifm.ifm_flags = ifp->if_flags;
        oifm.ifm_data.ifi_type = ifi.ifi_type;
        oifm.ifm_data.ifi_addrlen = ifi.ifi_addrlen;
        oifm.ifm_data.ifi_hdrlen = ifi.ifi_hdrlen;
        oifm.ifm_data.ifi_mtu = ifi.ifi_mtu;
        oifm.ifm_data.ifi_metric = ifi.ifi_metric;
        oifm.ifm_data.ifi_baudrate = ifi.ifi_baudrate;
        oifm.ifm_data.ifi_ipackets = ifi.ifi_ipackets;
        oifm.ifm_data.ifi_ierrors = ifi.ifi_ierrors;
        oifm.ifm_data.ifi_opackets = ifi.ifi_opackets;
        oifm.ifm_data.ifi_oerrors = ifi.ifi_oerrors;
        oifm.ifm_data.ifi_collisions = ifi.ifi_collisions;
        oifm.ifm_data.ifi_ibytes = ifi.ifi_ibytes;
        oifm.ifm_data.ifi_obytes = ifi.ifi_obytes;
        oifm.ifm_data.ifi_imcasts = ifi.ifi_imcasts;
        oifm.ifm_data.ifi_omcasts = ifi.ifi_omcasts;
        oifm.ifm_data.ifi_iqdrops = ifi.ifi_iqdrops;
        oifm.ifm_data.ifi_noproto = ifi.ifi_noproto;
        TIMESPEC_TO_TIMEVAL(&tv, &ifi.ifi_lastchange);
        timeval_to_timeval50(&tv, &oifm.ifm_data.ifi_lastchange);
        oifm.ifm_addrs = 0;
        m = compat_50_rt_msg1(RTM_OOIFINFO, &info, (void *)&oifm, sizeof(oifm));
        if (m == NULL)
                return;
        compat_50_route_enqueue(m, 0);
}

int
compat_14_iflist(struct ifnet *ifp, struct rt_walkarg *w,
    struct rt_addrinfo *info, size_t len)
{
        struct if_msghdr14 *ifm;
        struct if_data ifi;
        struct timeval tv;
        int error;

        ifm = (struct if_msghdr14 *)w->w_tmem;
        if_export_if_data(ifp, &ifi, false);
        ifm->ifm_index = ifp->if_index;
        ifm->ifm_flags = ifp->if_flags;
        ifm->ifm_data.ifi_type = ifi.ifi_type;
        ifm->ifm_data.ifi_addrlen = ifi.ifi_addrlen;
        ifm->ifm_data.ifi_hdrlen = ifi.ifi_hdrlen;
        ifm->ifm_data.ifi_mtu = ifi.ifi_mtu;
        ifm->ifm_data.ifi_metric = ifi.ifi_metric;
        ifm->ifm_data.ifi_baudrate = ifi.ifi_baudrate;
        ifm->ifm_data.ifi_ipackets = ifi.ifi_ipackets;
        ifm->ifm_data.ifi_ierrors = ifi.ifi_ierrors;
        ifm->ifm_data.ifi_opackets = ifi.ifi_opackets;
        ifm->ifm_data.ifi_oerrors = ifi.ifi_oerrors;
        ifm->ifm_data.ifi_collisions = ifi.ifi_collisions;
        ifm->ifm_data.ifi_ibytes = ifi.ifi_ibytes;
        ifm->ifm_data.ifi_obytes = ifi.ifi_obytes;
        ifm->ifm_data.ifi_imcasts = ifi.ifi_imcasts;
        ifm->ifm_data.ifi_omcasts = ifi.ifi_omcasts;
        ifm->ifm_data.ifi_iqdrops = ifi.ifi_iqdrops;
        ifm->ifm_data.ifi_noproto = ifi.ifi_noproto;
        TIMESPEC_TO_TIMEVAL(&tv, &ifi.ifi_lastchange);
        timeval_to_timeval50(&tv, &ifm->ifm_data.ifi_lastchange);
        ifm->ifm_addrs = info->rti_addrs;
        error = copyout(ifm, w->w_where, len);
        if (error)
                return error;
        w->w_where = (char *)w->w_where + len;
        return 0;
}

void
rtsock_14_init(void)
{

        MODULE_HOOK_SET(rtsock_oifmsg_14_hook, compat_14_rt_oifmsg);
        MODULE_HOOK_SET(rtsock_iflist_14_hook, compat_14_iflist);
}

void
rtsock_14_fini(void)
{

        MODULE_HOOK_UNSET(rtsock_oifmsg_14_hook);
        MODULE_HOOK_UNSET(rtsock_iflist_14_hook);
}