Home | History | Annotate | Line # | Download | only in common
if_43.c revision 1.14.2.10
      1  1.14.2.10  pgoyette /*	$NetBSD: if_43.c,v 1.14.2.10 2018/10/15 04:33:34 pgoyette Exp $	*/
      2        1.1        ad 
      3        1.1        ad /*
      4        1.1        ad  * Copyright (c) 1982, 1986, 1989, 1990, 1993
      5        1.1        ad  *	The Regents of the University of California.  All rights reserved.
      6        1.1        ad  *
      7        1.1        ad  * Redistribution and use in source and binary forms, with or without
      8        1.1        ad  * modification, are permitted provided that the following conditions
      9        1.1        ad  * are met:
     10        1.1        ad  * 1. Redistributions of source code must retain the above copyright
     11        1.1        ad  *    notice, this list of conditions and the following disclaimer.
     12        1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     13        1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     14        1.1        ad  *    documentation and/or other materials provided with the distribution.
     15        1.1        ad  * 3. Neither the name of the University nor the names of its contributors
     16        1.1        ad  *    may be used to endorse or promote products derived from this software
     17        1.1        ad  *    without specific prior written permission.
     18        1.1        ad  *
     19        1.1        ad  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20        1.1        ad  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21        1.1        ad  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22        1.1        ad  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23        1.1        ad  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24        1.1        ad  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25        1.1        ad  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26        1.1        ad  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27        1.1        ad  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28        1.1        ad  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29        1.1        ad  * SUCH DAMAGE.
     30        1.1        ad  *
     31        1.1        ad  *	@(#)uipc_syscalls.c	8.4 (Berkeley) 2/21/94
     32        1.1        ad  */
     33        1.1        ad 
     34        1.1        ad #include <sys/cdefs.h>
     35  1.14.2.10  pgoyette __KERNEL_RCSID(0, "$NetBSD: if_43.c,v 1.14.2.10 2018/10/15 04:33:34 pgoyette Exp $");
     36        1.2    dyoung 
     37        1.2    dyoung #if defined(_KERNEL_OPT)
     38        1.2    dyoung #include "opt_compat_netbsd.h"
     39        1.2    dyoung #endif
     40        1.1        ad 
     41        1.1        ad #include <sys/param.h>
     42        1.1        ad #include <sys/systm.h>
     43        1.1        ad #include <sys/filedesc.h>
     44        1.1        ad #include <sys/kernel.h>
     45        1.1        ad #include <sys/proc.h>
     46        1.1        ad #include <sys/file.h>
     47        1.1        ad #include <sys/socket.h>
     48        1.1        ad #include <sys/socketvar.h>
     49        1.1        ad #include <sys/stat.h>
     50        1.1        ad #include <sys/ioctl.h>
     51        1.1        ad #include <sys/fcntl.h>
     52        1.1        ad #include <sys/syslog.h>
     53        1.1        ad #include <sys/unistd.h>
     54        1.1        ad #include <sys/resourcevar.h>
     55        1.1        ad #include <sys/mbuf.h>		/* for MLEN */
     56        1.1        ad #include <sys/protosw.h>
     57   1.14.2.1  pgoyette #include <sys/compat_stub.h>
     58        1.1        ad 
     59        1.1        ad #include <sys/syscallargs.h>
     60        1.1        ad 
     61        1.1        ad #include <net/if.h>
     62        1.1        ad #include <net/bpf.h>
     63        1.1        ad #include <net/route.h>
     64        1.1        ad #include <netinet/in.h>
     65        1.1        ad #include <netinet/in_systm.h>
     66        1.1        ad #include <netinet/ip.h>
     67        1.1        ad #include <net/if_gre.h>
     68        1.1        ad #include <net/if_tap.h>
     69        1.1        ad #include <net80211/ieee80211_ioctl.h>
     70        1.1        ad #include <netinet6/in6_var.h>
     71        1.1        ad #include <netinet6/nd6.h>
     72        1.1        ad #include <compat/sys/socket.h>
     73        1.1        ad #include <compat/sys/sockio.h>
     74        1.1        ad 
     75        1.1        ad #include <compat/common/compat_util.h>
     76   1.14.2.9  pgoyette #include <compat/common/compat_mod.h>
     77        1.1        ad #include <uvm/uvm_extern.h>
     78        1.1        ad 
     79   1.14.2.5  pgoyette #if defined(COMPAT_43)
     80   1.14.2.2  pgoyette 
     81   1.14.2.5  pgoyette /*
     82   1.14.2.5  pgoyette  * Hook for calling the if43_20 compatability routine.
     83   1.14.2.5  pgoyette  *
     84   1.14.2.5  pgoyette  * XXX The if43_20 routine doesn't really have any effect, since its
     85   1.14.2.5  pgoyette  * XXX return value is ignored (see compat/common/if_43.c)!
     86   1.14.2.5  pgoyette  */
     87   1.14.2.6  pgoyette MODULE_CALL_HOOK_DECL(if43_20_hook, f, (u_long ncmd));
     88   1.14.2.5  pgoyette MODULE_CALL_HOOK(if43_20_hook, f, (u_long ncmd), (ncmd), enosys());
     89   1.14.2.5  pgoyette 
     90   1.14.2.5  pgoyette /*
     91   1.14.2.5  pgoyette  * Use a wrapper so that the compat_cvtcmd() can return a u_long
     92   1.14.2.5  pgoyette  */
     93   1.14.2.5  pgoyette static int
     94   1.14.2.5  pgoyette do_compat_cvtcmd(u_long *ncmd, u_long ocmd)
     95        1.1        ad {
     96   1.14.2.5  pgoyette 
     97   1.14.2.5  pgoyette 	*ncmd = compat_cvtcmd(ocmd);
     98   1.14.2.5  pgoyette 	return 0;
     99   1.14.2.5  pgoyette }
    100   1.14.2.5  pgoyette 
    101   1.14.2.5  pgoyette u_long
    102   1.14.2.5  pgoyette compat_cvtcmd(u_long cmd)
    103   1.14.2.5  pgoyette {
    104        1.1        ad 	u_long ncmd;
    105        1.1        ad 
    106        1.1        ad 	if (IOCPARM_LEN(cmd) != sizeof(struct oifreq))
    107        1.1        ad 		return cmd;
    108        1.1        ad 
    109        1.3  christos 	switch (cmd) {
    110        1.3  christos 	case OSIOCSIFADDR:
    111        1.3  christos 		return SIOCSIFADDR;
    112        1.3  christos 	case OOSIOCGIFADDR:
    113        1.3  christos 		return SIOCGIFADDR;
    114        1.3  christos 	case OSIOCSIFDSTADDR:
    115        1.3  christos 		return SIOCSIFDSTADDR;
    116        1.3  christos 	case OOSIOCGIFDSTADDR:
    117        1.3  christos 		return SIOCGIFDSTADDR;
    118        1.3  christos 	case OSIOCSIFFLAGS:
    119        1.3  christos 		return SIOCSIFFLAGS;
    120        1.3  christos 	case OSIOCGIFFLAGS:
    121        1.3  christos 		return SIOCGIFFLAGS;
    122        1.3  christos 	case OOSIOCGIFBRDADDR:
    123        1.3  christos 		return SIOCGIFBRDADDR;
    124        1.3  christos 	case OSIOCSIFBRDADDR:
    125        1.3  christos 		return SIOCSIFBRDADDR;
    126        1.3  christos 	case OOSIOCGIFCONF:
    127        1.3  christos 		return SIOCGIFCONF;
    128        1.3  christos 	case OOSIOCGIFNETMASK:
    129        1.3  christos 		return SIOCGIFNETMASK;
    130        1.3  christos 	case OSIOCSIFNETMASK:
    131        1.3  christos 		return SIOCSIFNETMASK;
    132        1.3  christos 	case OSIOCGIFCONF:
    133        1.3  christos 		return SIOCGIFCONF;
    134        1.3  christos 	case OSIOCADDMULTI:
    135        1.3  christos 		return SIOCADDMULTI;
    136        1.3  christos 	case OSIOCDELMULTI:
    137        1.3  christos 		return SIOCDELMULTI;
    138        1.3  christos 	case OSIOCSIFMEDIA:
    139        1.3  christos 		return SIOCSIFMEDIA;
    140        1.3  christos 	case OSIOCGIFMTU:
    141        1.3  christos 		return SIOCGIFMTU;
    142        1.3  christos 	case OSIOCGIFDATA:
    143        1.3  christos 		return SIOCGIFDATA;
    144        1.3  christos 	case OSIOCZIFDATA:
    145        1.3  christos 		return SIOCZIFDATA;
    146        1.3  christos 	case OBIOCGETIF:
    147        1.3  christos 		return BIOCGETIF;
    148        1.3  christos 	case OBIOCSETIF:
    149        1.3  christos 		return BIOCSETIF;
    150        1.3  christos 	case OTAPGIFNAME:
    151        1.3  christos 		return TAPGIFNAME;
    152        1.3  christos 	default:
    153        1.3  christos 		/*
    154        1.3  christos 		 * XXX: the following code should be removed and the
    155        1.3  christos 		 * needing treatment ioctls should move to the switch
    156        1.3  christos 		 * above.
    157        1.3  christos 		 */
    158        1.3  christos 		ncmd = ((cmd) & ~(IOCPARM_MASK << IOCPARM_SHIFT)) |
    159        1.3  christos 		    (sizeof(struct ifreq) << IOCPARM_SHIFT);
    160        1.3  christos 		switch (ncmd) {
    161        1.3  christos 		case BIOCGETIF:
    162        1.3  christos 		case BIOCSETIF:
    163        1.3  christos 		case GREDSOCK:
    164        1.3  christos 		case GREGADDRD:
    165        1.3  christos 		case GREGADDRS:
    166        1.3  christos 		case GREGPROTO:
    167        1.3  christos 		case GRESADDRD:
    168        1.3  christos 		case GRESADDRS:
    169        1.3  christos 		case GRESPROTO:
    170        1.3  christos 		case GRESSOCK:
    171        1.3  christos 		case SIOCADDMULTI:
    172        1.3  christos 		case SIOCDELMULTI:
    173        1.3  christos 		case SIOCDIFADDR:
    174        1.3  christos 		case SIOCDIFADDR_IN6:
    175        1.3  christos 		case SIOCDIFPHYADDR:
    176        1.3  christos 		case SIOCGDEFIFACE_IN6:
    177        1.3  christos 		case SIOCG80211NWID:
    178        1.3  christos 		case SIOCG80211STATS:
    179        1.3  christos 		case SIOCG80211ZSTATS:
    180        1.3  christos 		case SIOCGIFADDR:
    181        1.3  christos 		case SIOCGIFADDR_IN6:
    182        1.3  christos 		case SIOCGIFAFLAG_IN6:
    183        1.3  christos 		case SIOCGIFALIFETIME_IN6:
    184        1.3  christos 		case SIOCGIFBRDADDR:
    185        1.3  christos 		case SIOCGIFDLT:
    186        1.3  christos 		case SIOCGIFDSTADDR:
    187        1.3  christos 		case SIOCGIFDSTADDR_IN6:
    188        1.3  christos 		case SIOCGIFFLAGS:
    189        1.3  christos 		case SIOCGIFGENERIC:
    190        1.3  christos 		case SIOCGIFMETRIC:
    191        1.3  christos 		case SIOCGIFMTU:
    192        1.3  christos 		case SIOCGIFNETMASK:
    193        1.3  christos 		case SIOCGIFNETMASK_IN6:
    194        1.3  christos 		case SIOCGIFPDSTADDR:
    195        1.3  christos 		case SIOCGIFPDSTADDR_IN6:
    196        1.3  christos 		case SIOCGIFPSRCADDR:
    197        1.3  christos 		case SIOCGIFPSRCADDR_IN6:
    198        1.3  christos 		case SIOCGIFSTAT_ICMP6:
    199        1.3  christos 		case SIOCGIFSTAT_IN6:
    200        1.3  christos 		case SIOCGVH:
    201        1.3  christos 		case SIOCIFCREATE:
    202        1.3  christos 		case SIOCIFDESTROY:
    203        1.3  christos 		case SIOCS80211NWID:
    204        1.3  christos 		case SIOCSDEFIFACE_IN6:
    205        1.3  christos 		case SIOCSIFADDR:
    206        1.3  christos 		case SIOCSIFADDR_IN6:
    207        1.3  christos 		case SIOCSIFBRDADDR:
    208        1.3  christos 		case SIOCSIFDSTADDR:
    209        1.3  christos 		case SIOCSIFDSTADDR_IN6:
    210        1.3  christos 		case SIOCSIFFLAGS:
    211        1.3  christos 		case SIOCSIFGENERIC:
    212        1.3  christos 		case SIOCSIFMEDIA:
    213        1.3  christos 		case SIOCSIFMETRIC:
    214        1.3  christos 		case SIOCSIFMTU:
    215        1.3  christos 		case SIOCSIFNETMASK:
    216        1.3  christos 		case SIOCSIFNETMASK_IN6:
    217        1.3  christos 		case SIOCSNDFLUSH_IN6:
    218        1.3  christos 		case SIOCSPFXFLUSH_IN6:
    219        1.3  christos 		case SIOCSRTRFLUSH_IN6:
    220        1.3  christos 		case SIOCSVH:
    221        1.3  christos 		case TAPGIFNAME:
    222        1.3  christos 			return ncmd;
    223        1.3  christos 		default:
    224   1.14.2.5  pgoyette 			(void)if43_20_hook_f_call(ncmd);
    225   1.14.2.5  pgoyette 			return ncmd;
    226        1.3  christos 		}
    227        1.1        ad 	}
    228        1.1        ad }
    229        1.1        ad 
    230        1.1        ad int
    231        1.1        ad compat_ifioctl(struct socket *so, u_long ocmd, u_long cmd, void *data,
    232        1.1        ad     struct lwp *l)
    233        1.1        ad {
    234        1.1        ad 	int error;
    235        1.8      matt 	struct ifreq *ifr = (struct ifreq *)data;
    236       1.10  christos 	struct ifreq ifrb;
    237       1.10  christos 	struct oifreq *oifr = NULL;
    238       1.12     ozaki 	struct ifnet *ifp;
    239        1.1        ad 	struct sockaddr *sa;
    240       1.12     ozaki 	struct psref psref;
    241       1.12     ozaki 	int bound = curlwp_bind();
    242        1.1        ad 
    243       1.12     ozaki 	ifp = if_get(ifr->ifr_name, &psref);
    244       1.12     ozaki 	if (ifp == NULL) {
    245       1.12     ozaki 		curlwp_bindx(bound);
    246        1.1        ad 		return ENXIO;
    247       1.12     ozaki 	}
    248        1.1        ad 
    249       1.10  christos 	/*
    250       1.10  christos 	 * If we have not been converted, make sure that we are.
    251       1.10  christos 	 * (because the upper layer handles old socket calls, but
    252       1.10  christos 	 * not oifreq calls.
    253       1.10  christos 	 */
    254       1.10  christos 	if (cmd == ocmd) {
    255       1.10  christos 		cmd = compat_cvtcmd(ocmd);
    256       1.11     njoly 	}
    257       1.11     njoly 	if (cmd != ocmd) {
    258       1.11     njoly 		oifr = data;
    259       1.11     njoly 		data = ifr = &ifrb;
    260       1.11     njoly 		ifreqo2n(oifr, ifr);
    261       1.10  christos 	}
    262       1.10  christos 
    263        1.1        ad 	switch (ocmd) {
    264        1.1        ad 	case OSIOCSIFADDR:
    265        1.1        ad 	case OSIOCSIFDSTADDR:
    266        1.1        ad 	case OSIOCSIFBRDADDR:
    267        1.1        ad 	case OSIOCSIFNETMASK:
    268        1.1        ad 		sa = &ifr->ifr_addr;
    269        1.1        ad #if BYTE_ORDER != BIG_ENDIAN
    270        1.1        ad 		if (sa->sa_family == 0 && sa->sa_len < 16) {
    271        1.1        ad 			sa->sa_family = sa->sa_len;
    272        1.1        ad 			sa->sa_len = 16;
    273        1.1        ad 		}
    274        1.1        ad #else
    275        1.1        ad 		if (sa->sa_len == 0)
    276        1.1        ad 			sa->sa_len = 16;
    277        1.1        ad #endif
    278        1.1        ad 		break;
    279        1.1        ad 	}
    280        1.1        ad 
    281        1.7       rtr 	error = (*so->so_proto->pr_usrreqs->pr_ioctl)(so, cmd, ifr, ifp);
    282       1.12     ozaki 	if_put(ifp, &psref);
    283       1.12     ozaki 	curlwp_bindx(bound);
    284        1.1        ad 
    285        1.1        ad 	switch (ocmd) {
    286        1.1        ad 	case OOSIOCGIFADDR:
    287        1.1        ad 	case OOSIOCGIFDSTADDR:
    288        1.1        ad 	case OOSIOCGIFBRDADDR:
    289        1.1        ad 	case OOSIOCGIFNETMASK:
    290        1.1        ad 		*(u_int16_t *)&ifr->ifr_addr =
    291        1.1        ad 		    ((struct sockaddr *)&ifr->ifr_addr)->sa_family;
    292       1.10  christos 		break;
    293        1.1        ad 	}
    294       1.10  christos 
    295       1.10  christos 	if (cmd != ocmd)
    296       1.10  christos 		ifreqn2o(oifr, ifr);
    297       1.10  christos 
    298        1.1        ad 	return error;
    299        1.1        ad }
    300       1.13  pgoyette 
    301   1.14.2.5  pgoyette MODULE_SET_HOOK2(if_43_hook, "if_43", do_compat_cvtcmd, compat_ifioctl);
    302   1.14.2.5  pgoyette MODULE_UNSET_HOOK2(if_43_hook);
    303       1.13  pgoyette 
    304   1.14.2.8  pgoyette int
    305       1.13  pgoyette if_43_init(void)
    306       1.13  pgoyette {
    307       1.13  pgoyette 
    308   1.14.2.5  pgoyette 	if_43_hook_set();
    309   1.14.2.8  pgoyette 	return 0;
    310       1.13  pgoyette }
    311       1.13  pgoyette 
    312   1.14.2.8  pgoyette int
    313       1.13  pgoyette if_43_fini(void)
    314       1.13  pgoyette {
    315       1.13  pgoyette 
    316   1.14.2.5  pgoyette 	if_43_hook_unset();
    317   1.14.2.8  pgoyette 	return 0;
    318       1.13  pgoyette }
    319       1.13  pgoyette #endif /* defined(COMPAT_43) */
    320