Home | History | Annotate | Line # | Download | only in common
rtsock_50.c revision 1.6.2.5
      1  1.6.2.5  pgoyette /*	$NetBSD: rtsock_50.c,v 1.6.2.5 2019/01/15 03:40:35 pgoyette 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.6.2.5  pgoyette __KERNEL_RCSID(0, "$NetBSD: rtsock_50.c,v 1.6.2.5 2019/01/15 03:40:35 pgoyette Exp $");
     65      1.2  christos 
     66      1.4     pooka #ifdef _KERNEL_OPT
     67      1.3      matt #include "opt_compat_netbsd.h"
     68      1.4     pooka #endif
     69      1.2  christos 
     70  1.6.2.5  pgoyette #define	COMPAT_RTSOCK	/* Use the COMPATNAME/COMPATCALL macros and the
     71  1.6.2.5  pgoyette 			 * various other compat definitions - see
     72  1.6.2.5  pgoyette 			 * sys/net/rtsock_shared.c for details
     73  1.6.2.5  pgoyette 			 */
     74      1.2  christos 
     75  1.6.2.5  pgoyette #include <net/rtsock_shared.c>
     76  1.6.2.2  pgoyette #include <compat/net/route_50.h>
     77      1.2  christos 
     78  1.6.2.4  pgoyette void
     79      1.3      matt compat_50_rt_oifmsg(struct ifnet *ifp)
     80      1.2  christos {
     81      1.2  christos 	struct if_msghdr50 oifm;
     82      1.2  christos 	struct mbuf *m;
     83      1.2  christos 	struct rt_addrinfo info;
     84      1.2  christos 
     85      1.3      matt 	if (COMPATNAME(route_info).ri_cb.any_count == 0)
     86  1.6.2.4  pgoyette 		return;
     87      1.2  christos 	(void)memset(&info, 0, sizeof(info));
     88      1.2  christos 	(void)memset(&oifm, 0, sizeof(oifm));
     89      1.2  christos 	oifm.ifm_index = ifp->if_index;
     90      1.2  christos 	oifm.ifm_flags = ifp->if_flags;
     91      1.2  christos 	oifm.ifm_data.ifi_type = ifp->if_data.ifi_type;
     92      1.2  christos 	oifm.ifm_data.ifi_addrlen = ifp->if_data.ifi_addrlen;
     93      1.2  christos 	oifm.ifm_data.ifi_hdrlen = ifp->if_data.ifi_hdrlen;
     94  1.6.2.1  pgoyette 	oifm.ifm_data.ifi_link_state = ifp->if_data.ifi_link_state;
     95      1.2  christos 	oifm.ifm_data.ifi_mtu = ifp->if_data.ifi_mtu;
     96      1.2  christos 	oifm.ifm_data.ifi_metric = ifp->if_data.ifi_metric;
     97      1.2  christos 	oifm.ifm_data.ifi_baudrate = ifp->if_data.ifi_baudrate;
     98      1.2  christos 	oifm.ifm_data.ifi_ipackets = ifp->if_data.ifi_ipackets;
     99      1.2  christos 	oifm.ifm_data.ifi_ierrors = ifp->if_data.ifi_ierrors;
    100      1.2  christos 	oifm.ifm_data.ifi_opackets = ifp->if_data.ifi_opackets;
    101      1.2  christos 	oifm.ifm_data.ifi_oerrors = ifp->if_data.ifi_oerrors;
    102      1.2  christos 	oifm.ifm_data.ifi_collisions = ifp->if_data.ifi_collisions;
    103      1.2  christos 	oifm.ifm_data.ifi_ibytes = ifp->if_data.ifi_ibytes;
    104      1.2  christos 	oifm.ifm_data.ifi_obytes = ifp->if_data.ifi_obytes;
    105      1.2  christos 	oifm.ifm_data.ifi_imcasts = ifp->if_data.ifi_imcasts;
    106      1.2  christos 	oifm.ifm_data.ifi_omcasts = ifp->if_data.ifi_omcasts;
    107      1.2  christos 	oifm.ifm_data.ifi_iqdrops = ifp->if_data.ifi_iqdrops;
    108      1.2  christos 	oifm.ifm_data.ifi_noproto = ifp->if_data.ifi_noproto;
    109      1.2  christos 	TIMESPEC_TO_TIMEVAL(&oifm.ifm_data.ifi_lastchange,
    110      1.2  christos 	    &ifp->if_data.ifi_lastchange);
    111      1.2  christos 	oifm.ifm_addrs = 0;
    112      1.3      matt 	m = COMPATNAME(rt_msg1)(RTM_OIFINFO, &info, (void *)&oifm, sizeof(oifm));
    113      1.2  christos 	if (m == NULL)
    114  1.6.2.4  pgoyette 		return;
    115      1.3      matt 	COMPATNAME(route_enqueue)(m, 0);
    116      1.2  christos }
    117      1.2  christos 
    118      1.2  christos int
    119      1.2  christos compat_50_iflist(struct ifnet *ifp, struct rt_walkarg *w,
    120      1.2  christos     struct rt_addrinfo *info, size_t len)
    121      1.2  christos {
    122      1.2  christos 	struct if_msghdr50 *ifm;
    123      1.2  christos 	int error;
    124      1.2  christos 
    125      1.2  christos 	ifm = (struct if_msghdr50 *)w->w_tmem;
    126      1.2  christos 	ifm->ifm_index = ifp->if_index;
    127      1.2  christos 	ifm->ifm_flags = ifp->if_flags;
    128      1.2  christos 	ifm->ifm_data.ifi_type = ifp->if_data.ifi_type;
    129      1.2  christos 	ifm->ifm_data.ifi_addrlen = ifp->if_data.ifi_addrlen;
    130      1.2  christos 	ifm->ifm_data.ifi_hdrlen = ifp->if_data.ifi_hdrlen;
    131  1.6.2.1  pgoyette 	ifm->ifm_data.ifi_link_state = ifp->if_data.ifi_link_state;
    132      1.2  christos 	ifm->ifm_data.ifi_mtu = ifp->if_data.ifi_mtu;
    133      1.2  christos 	ifm->ifm_data.ifi_metric = ifp->if_data.ifi_metric;
    134      1.2  christos 	ifm->ifm_data.ifi_baudrate = ifp->if_data.ifi_baudrate;
    135      1.2  christos 	ifm->ifm_data.ifi_ipackets = ifp->if_data.ifi_ipackets;
    136      1.2  christos 	ifm->ifm_data.ifi_ierrors = ifp->if_data.ifi_ierrors;
    137      1.2  christos 	ifm->ifm_data.ifi_opackets = ifp->if_data.ifi_opackets;
    138      1.2  christos 	ifm->ifm_data.ifi_oerrors = ifp->if_data.ifi_oerrors;
    139      1.2  christos 	ifm->ifm_data.ifi_collisions = ifp->if_data.ifi_collisions;
    140      1.2  christos 	ifm->ifm_data.ifi_ibytes = ifp->if_data.ifi_ibytes;
    141      1.2  christos 	ifm->ifm_data.ifi_obytes = ifp->if_data.ifi_obytes;
    142      1.2  christos 	ifm->ifm_data.ifi_imcasts = ifp->if_data.ifi_imcasts;
    143      1.2  christos 	ifm->ifm_data.ifi_omcasts = ifp->if_data.ifi_omcasts;
    144      1.2  christos 	ifm->ifm_data.ifi_iqdrops = ifp->if_data.ifi_iqdrops;
    145      1.2  christos 	ifm->ifm_data.ifi_noproto = ifp->if_data.ifi_noproto;
    146      1.2  christos 	TIMESPEC_TO_TIMEVAL(&ifm->ifm_data.ifi_lastchange,
    147      1.2  christos 	    &ifp->if_data.ifi_lastchange);
    148      1.2  christos 	ifm->ifm_addrs = info->rti_addrs;
    149      1.2  christos 	error = copyout(ifm, w->w_where, len);
    150      1.2  christos 	if (error)
    151      1.2  christos 		return error;
    152      1.2  christos 	w->w_where = (char *)w->w_where + len;
    153      1.2  christos 	return 0;
    154      1.2  christos }
    155  1.6.2.2  pgoyette 
    156  1.6.2.3  pgoyette MODULE_SET_HOOK(rtsock_50_iflist_hook, "rts_50", compat_50_iflist);
    157  1.6.2.3  pgoyette MODULE_UNSET_HOOK(rtsock_50_iflist_hook);
    158  1.6.2.3  pgoyette 
    159  1.6.2.3  pgoyette MODULE_SET_HOOK(rtsock_50_oifmsg_hook, "rts_50", compat_50_rt_oifmsg);
    160  1.6.2.3  pgoyette MODULE_UNSET_HOOK(rtsock_50_oifmsg_hook);
    161  1.6.2.3  pgoyette 
    162  1.6.2.3  pgoyette MODULE_SET_HOOK(rtsock_50_rt_missmsg_hook, "rts_50", compat_50_rt_missmsg);
    163  1.6.2.3  pgoyette MODULE_UNSET_HOOK(rtsock_50_rt_missmsg_hook);
    164  1.6.2.3  pgoyette 
    165  1.6.2.3  pgoyette MODULE_SET_HOOK(rtsock_50_rt_ifmsg_hook, "rts_50", compat_50_rt_ifmsg);
    166  1.6.2.3  pgoyette MODULE_UNSET_HOOK(rtsock_50_rt_ifmsg_hook);
    167  1.6.2.3  pgoyette 
    168  1.6.2.3  pgoyette MODULE_SET_HOOK(rtsock_50_rt_newaddrmsg_hook, "rts_50",
    169  1.6.2.3  pgoyette     compat_50_rt_newaddrmsg);
    170  1.6.2.3  pgoyette MODULE_UNSET_HOOK(rtsock_50_rt_newaddrmsg_hook);
    171  1.6.2.3  pgoyette 
    172  1.6.2.3  pgoyette MODULE_SET_HOOK(rtsock_50_rt_ifannouncemsg_hook, "rts_50",
    173  1.6.2.3  pgoyette     compat_50_rt_ifannouncemsg);
    174  1.6.2.3  pgoyette MODULE_UNSET_HOOK(rtsock_50_rt_ifannouncemsg_hook);
    175  1.6.2.3  pgoyette 
    176  1.6.2.3  pgoyette MODULE_SET_HOOK(rtsock_50_rt_ieee80211msg_hook, "rts_50",
    177  1.6.2.3  pgoyette     compat_50_rt_ieee80211msg);
    178  1.6.2.3  pgoyette MODULE_UNSET_HOOK(rtsock_50_rt_ieee80211msg_hook);
    179  1.6.2.3  pgoyette 
    180  1.6.2.2  pgoyette void
    181  1.6.2.2  pgoyette rtsock_50_init(void)
    182  1.6.2.2  pgoyette {
    183  1.6.2.2  pgoyette 
    184  1.6.2.3  pgoyette 	rtsock_50_iflist_hook_set();
    185  1.6.2.3  pgoyette 	rtsock_50_oifmsg_hook_set();
    186  1.6.2.3  pgoyette 	rtsock_50_rt_missmsg_hook_set();
    187  1.6.2.3  pgoyette 	rtsock_50_rt_ifmsg_hook_set();
    188  1.6.2.3  pgoyette 	rtsock_50_rt_newaddrmsg_hook_set();
    189  1.6.2.3  pgoyette 	rtsock_50_rt_ifannouncemsg_hook_set();
    190  1.6.2.3  pgoyette 	rtsock_50_rt_ieee80211msg_hook_set();
    191  1.6.2.2  pgoyette }
    192  1.6.2.2  pgoyette 
    193  1.6.2.2  pgoyette void
    194  1.6.2.2  pgoyette rtsock_50_fini(void)
    195  1.6.2.2  pgoyette {
    196  1.6.2.2  pgoyette 
    197  1.6.2.3  pgoyette 	rtsock_50_iflist_hook_unset();
    198  1.6.2.3  pgoyette 	rtsock_50_oifmsg_hook_unset();
    199  1.6.2.3  pgoyette 	rtsock_50_rt_missmsg_hook_unset();
    200  1.6.2.3  pgoyette 	rtsock_50_rt_ifmsg_hook_unset();
    201  1.6.2.3  pgoyette 	rtsock_50_rt_newaddrmsg_hook_unset();
    202  1.6.2.3  pgoyette 	rtsock_50_rt_ifannouncemsg_hook_unset();
    203  1.6.2.3  pgoyette 	rtsock_50_rt_ieee80211msg_hook_unset();
    204  1.6.2.2  pgoyette }
    205