Home | History | Annotate | Line # | Download | only in common
      1  1.10   thorpej /*	$NetBSD: rtsock_14.c,v 1.10 2020/01/29 05:47:12 thorpej Exp $	*/
      2   1.2  christos 
      3   1.2  christos /*
      4   1.2  christos  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5   1.2  christos  * All rights reserved.
      6   1.2  christos  *
      7   1.2  christos  * Redistribution and use in source and binary forms, with or without
      8   1.2  christos  * modification, are permitted provided that the following conditions
      9   1.2  christos  * are met:
     10   1.2  christos  * 1. Redistributions of source code must retain the above copyright
     11   1.2  christos  *    notice, this list of conditions and the following disclaimer.
     12   1.2  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.2  christos  *    notice, this list of conditions and the following disclaimer in the
     14   1.2  christos  *    documentation and/or other materials provided with the distribution.
     15   1.2  christos  * 3. Neither the name of the project nor the names of its contributors
     16   1.2  christos  *    may be used to endorse or promote products derived from this software
     17   1.2  christos  *    without specific prior written permission.
     18   1.2  christos  *
     19   1.2  christos  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20   1.2  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.2  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.2  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23   1.2  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.2  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.2  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.2  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.2  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.2  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.2  christos  * SUCH DAMAGE.
     30   1.2  christos  */
     31   1.2  christos 
     32   1.2  christos /*
     33   1.2  christos  * Copyright (c) 1988, 1991, 1993
     34   1.2  christos  *	The Regents of the University of California.  All rights reserved.
     35   1.2  christos  *
     36   1.2  christos  * Redistribution and use in source and binary forms, with or without
     37   1.2  christos  * modification, are permitted provided that the following conditions
     38   1.2  christos  * are met:
     39   1.2  christos  * 1. Redistributions of source code must retain the above copyright
     40   1.2  christos  *    notice, this list of conditions and the following disclaimer.
     41   1.2  christos  * 2. Redistributions in binary form must reproduce the above copyright
     42   1.2  christos  *    notice, this list of conditions and the following disclaimer in the
     43   1.2  christos  *    documentation and/or other materials provided with the distribution.
     44   1.2  christos  * 3. Neither the name of the University nor the names of its contributors
     45   1.2  christos  *    may be used to endorse or promote products derived from this software
     46   1.2  christos  *    without specific prior written permission.
     47   1.2  christos  *
     48   1.2  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49   1.2  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50   1.2  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51   1.2  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52   1.2  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53   1.2  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54   1.2  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55   1.2  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56   1.2  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57   1.2  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58   1.2  christos  * SUCH DAMAGE.
     59   1.2  christos  *
     60   1.2  christos  *	@(#)rtsock.c	8.7 (Berkeley) 10/12/95
     61   1.2  christos  */
     62   1.2  christos 
     63   1.2  christos #include <sys/cdefs.h>
     64  1.10   thorpej __KERNEL_RCSID(0, "$NetBSD: rtsock_14.c,v 1.10 2020/01/29 05:47:12 thorpej Exp $");
     65   1.6  pgoyette 
     66   1.6  pgoyette #if defined(_KERNEL_OPT)
     67   1.6  pgoyette #include "opt_compat_netbsd.h"
     68   1.6  pgoyette #endif
     69   1.2  christos 
     70   1.5  riastrad #ifdef _KERNEL_OPT
     71   1.2  christos #include "opt_inet.h"
     72   1.5  riastrad #endif
     73   1.2  christos 
     74   1.2  christos #include <sys/param.h>
     75   1.2  christos #include <sys/systm.h>
     76   1.2  christos #include <sys/proc.h>
     77   1.2  christos #include <sys/mbuf.h>
     78   1.2  christos #include <sys/socket.h>
     79   1.2  christos #include <sys/socketvar.h>
     80   1.2  christos #include <sys/domain.h>
     81   1.2  christos #include <sys/protosw.h>
     82   1.2  christos #include <sys/sysctl.h>
     83   1.2  christos #include <sys/kauth.h>
     84   1.6  pgoyette #include <sys/compat_stub.h>
     85   1.2  christos #ifdef RTSOCK_DEBUG
     86   1.2  christos #include <netinet/in.h>
     87   1.2  christos #endif /* RTSOCK_DEBUG */
     88   1.2  christos 
     89   1.2  christos #include <net/if.h>
     90   1.2  christos #include <net/route.h>
     91   1.2  christos #include <net/raw_cb.h>
     92   1.2  christos 
     93   1.2  christos #include <compat/net/if.h>
     94   1.3      matt #include <compat/net/route.h>
     95   1.2  christos 
     96   1.6  pgoyette #include <compat/common/compat_mod.h>
     97   1.6  pgoyette 
     98   1.2  christos void
     99   1.3      matt compat_14_rt_oifmsg(struct ifnet *ifp)
    100   1.2  christos {
    101   1.2  christos 	struct if_msghdr14 oifm;
    102  1.10   thorpej 	struct if_data ifi;
    103   1.2  christos 	struct mbuf *m;
    104   1.2  christos 	struct rt_addrinfo info;
    105   1.2  christos 	struct timeval tv;
    106   1.2  christos 
    107   1.3      matt 	if (compat_50_route_info.ri_cb.any_count == 0)
    108   1.2  christos 		return;
    109   1.2  christos 	(void)memset(&info, 0, sizeof(info));
    110   1.2  christos 	(void)memset(&oifm, 0, sizeof(oifm));
    111  1.10   thorpej 	if_export_if_data(ifp, &ifi, false);
    112   1.2  christos 	oifm.ifm_index = ifp->if_index;
    113   1.2  christos 	oifm.ifm_flags = ifp->if_flags;
    114  1.10   thorpej 	oifm.ifm_data.ifi_type = ifi.ifi_type;
    115  1.10   thorpej 	oifm.ifm_data.ifi_addrlen = ifi.ifi_addrlen;
    116  1.10   thorpej 	oifm.ifm_data.ifi_hdrlen = ifi.ifi_hdrlen;
    117  1.10   thorpej 	oifm.ifm_data.ifi_mtu = ifi.ifi_mtu;
    118  1.10   thorpej 	oifm.ifm_data.ifi_metric = ifi.ifi_metric;
    119  1.10   thorpej 	oifm.ifm_data.ifi_baudrate = ifi.ifi_baudrate;
    120  1.10   thorpej 	oifm.ifm_data.ifi_ipackets = ifi.ifi_ipackets;
    121  1.10   thorpej 	oifm.ifm_data.ifi_ierrors = ifi.ifi_ierrors;
    122  1.10   thorpej 	oifm.ifm_data.ifi_opackets = ifi.ifi_opackets;
    123  1.10   thorpej 	oifm.ifm_data.ifi_oerrors = ifi.ifi_oerrors;
    124  1.10   thorpej 	oifm.ifm_data.ifi_collisions = ifi.ifi_collisions;
    125  1.10   thorpej 	oifm.ifm_data.ifi_ibytes = ifi.ifi_ibytes;
    126  1.10   thorpej 	oifm.ifm_data.ifi_obytes = ifi.ifi_obytes;
    127  1.10   thorpej 	oifm.ifm_data.ifi_imcasts = ifi.ifi_imcasts;
    128  1.10   thorpej 	oifm.ifm_data.ifi_omcasts = ifi.ifi_omcasts;
    129  1.10   thorpej 	oifm.ifm_data.ifi_iqdrops = ifi.ifi_iqdrops;
    130  1.10   thorpej 	oifm.ifm_data.ifi_noproto = ifi.ifi_noproto;
    131  1.10   thorpej 	TIMESPEC_TO_TIMEVAL(&tv, &ifi.ifi_lastchange);
    132   1.2  christos 	timeval_to_timeval50(&tv, &oifm.ifm_data.ifi_lastchange);
    133   1.2  christos 	oifm.ifm_addrs = 0;
    134   1.3      matt 	m = compat_50_rt_msg1(RTM_OOIFINFO, &info, (void *)&oifm, sizeof(oifm));
    135   1.2  christos 	if (m == NULL)
    136   1.2  christos 		return;
    137   1.3      matt 	compat_50_route_enqueue(m, 0);
    138   1.2  christos }
    139   1.2  christos 
    140   1.2  christos int
    141   1.2  christos compat_14_iflist(struct ifnet *ifp, struct rt_walkarg *w,
    142   1.2  christos     struct rt_addrinfo *info, size_t len)
    143   1.2  christos {
    144   1.2  christos 	struct if_msghdr14 *ifm;
    145  1.10   thorpej 	struct if_data ifi;
    146   1.2  christos 	struct timeval tv;
    147   1.2  christos 	int error;
    148   1.2  christos 
    149   1.2  christos 	ifm = (struct if_msghdr14 *)w->w_tmem;
    150  1.10   thorpej 	if_export_if_data(ifp, &ifi, false);
    151   1.2  christos 	ifm->ifm_index = ifp->if_index;
    152   1.2  christos 	ifm->ifm_flags = ifp->if_flags;
    153  1.10   thorpej 	ifm->ifm_data.ifi_type = ifi.ifi_type;
    154  1.10   thorpej 	ifm->ifm_data.ifi_addrlen = ifi.ifi_addrlen;
    155  1.10   thorpej 	ifm->ifm_data.ifi_hdrlen = ifi.ifi_hdrlen;
    156  1.10   thorpej 	ifm->ifm_data.ifi_mtu = ifi.ifi_mtu;
    157  1.10   thorpej 	ifm->ifm_data.ifi_metric = ifi.ifi_metric;
    158  1.10   thorpej 	ifm->ifm_data.ifi_baudrate = ifi.ifi_baudrate;
    159  1.10   thorpej 	ifm->ifm_data.ifi_ipackets = ifi.ifi_ipackets;
    160  1.10   thorpej 	ifm->ifm_data.ifi_ierrors = ifi.ifi_ierrors;
    161  1.10   thorpej 	ifm->ifm_data.ifi_opackets = ifi.ifi_opackets;
    162  1.10   thorpej 	ifm->ifm_data.ifi_oerrors = ifi.ifi_oerrors;
    163  1.10   thorpej 	ifm->ifm_data.ifi_collisions = ifi.ifi_collisions;
    164  1.10   thorpej 	ifm->ifm_data.ifi_ibytes = ifi.ifi_ibytes;
    165  1.10   thorpej 	ifm->ifm_data.ifi_obytes = ifi.ifi_obytes;
    166  1.10   thorpej 	ifm->ifm_data.ifi_imcasts = ifi.ifi_imcasts;
    167  1.10   thorpej 	ifm->ifm_data.ifi_omcasts = ifi.ifi_omcasts;
    168  1.10   thorpej 	ifm->ifm_data.ifi_iqdrops = ifi.ifi_iqdrops;
    169  1.10   thorpej 	ifm->ifm_data.ifi_noproto = ifi.ifi_noproto;
    170  1.10   thorpej 	TIMESPEC_TO_TIMEVAL(&tv, &ifi.ifi_lastchange);
    171   1.2  christos 	timeval_to_timeval50(&tv, &ifm->ifm_data.ifi_lastchange);
    172   1.2  christos 	ifm->ifm_addrs = info->rti_addrs;
    173   1.2  christos 	error = copyout(ifm, w->w_where, len);
    174   1.2  christos 	if (error)
    175   1.2  christos 		return error;
    176   1.2  christos 	w->w_where = (char *)w->w_where + len;
    177   1.2  christos 	return 0;
    178   1.2  christos }
    179   1.6  pgoyette 
    180   1.6  pgoyette void
    181   1.6  pgoyette rtsock_14_init(void)
    182   1.6  pgoyette {
    183   1.6  pgoyette 
    184   1.9  pgoyette 	MODULE_HOOK_SET(rtsock_oifmsg_14_hook, compat_14_rt_oifmsg);
    185   1.9  pgoyette 	MODULE_HOOK_SET(rtsock_iflist_14_hook, compat_14_iflist);
    186   1.6  pgoyette }
    187   1.6  pgoyette 
    188   1.6  pgoyette void
    189   1.6  pgoyette rtsock_14_fini(void)
    190   1.6  pgoyette {
    191   1.6  pgoyette 
    192   1.8  pgoyette 	MODULE_HOOK_UNSET(rtsock_oifmsg_14_hook);
    193   1.8  pgoyette 	MODULE_HOOK_UNSET(rtsock_iflist_14_hook);
    194   1.6  pgoyette }
    195