Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_ioctl.c revision 1.8.2.5
      1  1.8.2.5  nathanw /*	$NetBSD: netbsd32_ioctl.c,v 1.8.2.5 2002/02/28 04:12:58 nathanw Exp $	*/
      2      1.1      mrg 
      3      1.1      mrg /*
      4  1.8.2.2  nathanw  * Copyright (c) 1998, 2001 Matthew R. Green
      5      1.1      mrg  * All rights reserved.
      6      1.1      mrg  *
      7      1.1      mrg  * Redistribution and use in source and binary forms, with or without
      8      1.1      mrg  * modification, are permitted provided that the following conditions
      9      1.1      mrg  * are met:
     10      1.1      mrg  * 1. Redistributions of source code must retain the above copyright
     11      1.1      mrg  *    notice, this list of conditions and the following disclaimer.
     12      1.1      mrg  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1      mrg  *    notice, this list of conditions and the following disclaimer in the
     14      1.1      mrg  *    documentation and/or other materials provided with the distribution.
     15      1.1      mrg  * 3. The name of the author may not be used to endorse or promote products
     16      1.1      mrg  *    derived from this software without specific prior written permission.
     17      1.1      mrg  *
     18      1.1      mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19      1.1      mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20      1.1      mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21      1.1      mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22      1.1      mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     23      1.1      mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     24      1.1      mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     25      1.1      mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     26      1.1      mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27      1.1      mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28      1.1      mrg  * SUCH DAMAGE.
     29      1.1      mrg  */
     30      1.1      mrg 
     31      1.1      mrg /*
     32  1.8.2.4  nathanw  * handle ioctl conversions from netbsd32 -> 64-bit kernel
     33      1.1      mrg  */
     34  1.8.2.3  nathanw 
     35  1.8.2.3  nathanw #include <sys/cdefs.h>
     36  1.8.2.5  nathanw __KERNEL_RCSID(0, "$NetBSD: netbsd32_ioctl.c,v 1.8.2.5 2002/02/28 04:12:58 nathanw Exp $");
     37      1.1      mrg 
     38      1.1      mrg #include <sys/param.h>
     39      1.1      mrg #include <sys/systm.h>
     40      1.7      eeh #include <sys/filedesc.h>
     41      1.7      eeh #include <sys/ioctl.h>
     42      1.7      eeh #include <sys/file.h>
     43      1.7      eeh #include <sys/proc.h>
     44      1.7      eeh #include <sys/socketvar.h>
     45      1.1      mrg #include <sys/audioio.h>
     46      1.1      mrg #include <sys/disklabel.h>
     47      1.1      mrg #include <sys/dkio.h>
     48      1.1      mrg #include <sys/malloc.h>
     49      1.1      mrg #include <sys/proc.h>
     50      1.1      mrg #include <sys/sockio.h>
     51      1.1      mrg #include <sys/socket.h>
     52      1.1      mrg #include <sys/ttycom.h>
     53      1.1      mrg #include <sys/mount.h>
     54      1.1      mrg #include <sys/syscallargs.h>
     55      1.1      mrg 
     56  1.8.2.1  nathanw #ifdef __sparc__
     57  1.8.2.2  nathanw #include <dev/sun/fbio.h>
     58      1.1      mrg #include <machine/openpromio.h>
     59  1.8.2.1  nathanw #endif
     60      1.1      mrg 
     61      1.1      mrg #include <net/if.h>
     62      1.1      mrg #include <net/route.h>
     63      1.1      mrg 
     64      1.1      mrg #include <netinet/in.h>
     65      1.1      mrg #include <netinet/in_var.h>
     66      1.1      mrg #include <netinet/igmp.h>
     67      1.1      mrg #include <netinet/igmp_var.h>
     68      1.1      mrg #include <netinet/ip_mroute.h>
     69      1.1      mrg 
     70      1.2      mrg #include <compat/netbsd32/netbsd32.h>
     71      1.2      mrg #include <compat/netbsd32/netbsd32_ioctl.h>
     72      1.2      mrg #include <compat/netbsd32/netbsd32_syscallargs.h>
     73      1.1      mrg 
     74      1.6      mrg /* prototypes for the converters */
     75      1.6      mrg static __inline void
     76      1.7      eeh netbsd32_to_partinfo(struct netbsd32_partinfo *, struct partinfo *, u_long);
     77      1.6      mrg static __inline void
     78      1.7      eeh netbsd32_to_format_op(struct netbsd32_format_op *, struct format_op *, u_long);
     79      1.6      mrg static __inline void
     80      1.7      eeh netbsd32_to_ifconf(struct netbsd32_ifconf *, struct ifconf *, u_long);
     81      1.6      mrg static __inline void
     82      1.7      eeh netbsd32_to_ifmediareq(struct netbsd32_ifmediareq *, struct ifmediareq *, u_long);
     83      1.6      mrg static __inline void
     84      1.7      eeh netbsd32_to_ifdrv(struct netbsd32_ifdrv *, struct ifdrv *, u_long);
     85      1.6      mrg static __inline void
     86      1.7      eeh netbsd32_to_sioc_vif_req(struct netbsd32_sioc_vif_req *, struct sioc_vif_req *, u_long);
     87      1.6      mrg static __inline void
     88      1.7      eeh netbsd32_to_sioc_sg_req(struct netbsd32_sioc_sg_req *, struct sioc_sg_req *, u_long);
     89      1.6      mrg static __inline void
     90      1.7      eeh netbsd32_from_partinfo(struct partinfo *, struct netbsd32_partinfo *);
     91      1.7      eeh static __inline void
     92      1.6      mrg netbsd32_from_format_op(struct format_op *, struct netbsd32_format_op *);
     93      1.6      mrg static __inline void
     94      1.6      mrg netbsd32_from_ifconf(struct ifconf *, struct netbsd32_ifconf *);
     95      1.6      mrg static __inline void
     96      1.6      mrg netbsd32_from_ifmediareq(struct ifmediareq *, struct netbsd32_ifmediareq *);
     97      1.6      mrg static __inline void
     98      1.6      mrg netbsd32_from_ifdrv(struct ifdrv *, struct netbsd32_ifdrv *);
     99      1.6      mrg static __inline void
    100      1.6      mrg netbsd32_from_sioc_vif_req(struct sioc_vif_req *, struct netbsd32_sioc_vif_req *);
    101      1.6      mrg static __inline void
    102      1.6      mrg netbsd32_from_sioc_sg_req(struct sioc_sg_req *, struct netbsd32_sioc_sg_req *);
    103      1.6      mrg 
    104      1.6      mrg /* convert to/from different structures */
    105      1.6      mrg 
    106      1.6      mrg static __inline void
    107      1.7      eeh netbsd32_to_partinfo(s32p, p, cmd)
    108      1.2      mrg 	struct netbsd32_partinfo *s32p;
    109      1.1      mrg 	struct partinfo *p;
    110      1.7      eeh 	u_long cmd;
    111      1.1      mrg {
    112      1.1      mrg 
    113      1.1      mrg 	p->disklab = (struct disklabel *)(u_long)s32p->disklab;
    114      1.1      mrg 	p->part = (struct partition *)(u_long)s32p->part;
    115      1.1      mrg }
    116      1.1      mrg 
    117      1.6      mrg static __inline void
    118      1.7      eeh netbsd32_to_format_op(s32p, p, cmd)
    119      1.2      mrg 	struct netbsd32_format_op *s32p;
    120      1.1      mrg 	struct format_op *p;
    121      1.7      eeh 	u_long cmd;
    122      1.1      mrg {
    123      1.1      mrg 
    124      1.1      mrg 	p->df_buf = (char *)(u_long)s32p->df_buf;
    125      1.1      mrg 	p->df_count = s32p->df_count;
    126      1.1      mrg 	p->df_startblk = s32p->df_startblk;
    127      1.1      mrg 	memcpy(p->df_reg, s32p->df_reg, sizeof(s32p->df_reg));
    128      1.1      mrg }
    129      1.1      mrg 
    130      1.1      mrg #if 0 /* XXX see below */
    131      1.6      mrg static __inline void
    132      1.2      mrg netbsd32_to_ifreq(s32p, p, cmd)
    133      1.2      mrg 	struct netbsd32_ifreq *s32p;
    134      1.1      mrg 	struct ifreq *p;
    135      1.1      mrg 	u_long cmd;	/* XXX unused yet */
    136      1.1      mrg {
    137      1.1      mrg 
    138      1.1      mrg 	/*
    139      1.1      mrg 	 * XXX
    140      1.1      mrg 	 * struct ifreq says the same, but sometimes the ifr_data
    141      1.1      mrg 	 * union member needs to be converted to 64 bits... this
    142      1.1      mrg 	 * is very driver specific and so we ignore it for now..
    143      1.1      mrg 	 */
    144      1.1      mrg 	memcpy(p, s32p, sizeof *s32p);
    145      1.1      mrg }
    146      1.1      mrg #endif
    147      1.1      mrg 
    148      1.6      mrg static __inline void
    149      1.7      eeh netbsd32_to_ifconf(s32p, p, cmd)
    150      1.2      mrg 	struct netbsd32_ifconf *s32p;
    151      1.1      mrg 	struct ifconf *p;
    152      1.7      eeh 	u_long cmd;
    153      1.1      mrg {
    154      1.1      mrg 
    155      1.1      mrg 	p->ifc_len = s32p->ifc_len;
    156      1.1      mrg 	/* ifc_buf & ifc_req are the same size so this works */
    157      1.1      mrg 	p->ifc_buf = (caddr_t)(u_long)s32p->ifc_buf;
    158      1.1      mrg }
    159      1.1      mrg 
    160      1.6      mrg static __inline void
    161      1.7      eeh netbsd32_to_ifmediareq(s32p, p, cmd)
    162      1.2      mrg 	struct netbsd32_ifmediareq *s32p;
    163      1.1      mrg 	struct ifmediareq *p;
    164      1.7      eeh 	u_long cmd;
    165      1.1      mrg {
    166      1.1      mrg 
    167      1.1      mrg 	memcpy(p, s32p, sizeof *s32p);
    168      1.1      mrg 	p->ifm_ulist = (int *)(u_long)s32p->ifm_ulist;
    169      1.1      mrg }
    170      1.1      mrg 
    171      1.6      mrg static __inline void
    172      1.7      eeh netbsd32_to_ifdrv(s32p, p, cmd)
    173      1.2      mrg 	struct netbsd32_ifdrv *s32p;
    174      1.1      mrg 	struct ifdrv *p;
    175      1.7      eeh 	u_long cmd;
    176      1.1      mrg {
    177      1.1      mrg 
    178      1.1      mrg 	memcpy(p, s32p, sizeof *s32p);
    179      1.1      mrg 	p->ifd_data = (void *)(u_long)s32p->ifd_data;
    180      1.1      mrg }
    181      1.1      mrg 
    182      1.6      mrg static __inline void
    183      1.7      eeh netbsd32_to_sioc_vif_req(s32p, p, cmd)
    184      1.2      mrg 	struct netbsd32_sioc_vif_req *s32p;
    185      1.1      mrg 	struct sioc_vif_req *p;
    186      1.7      eeh 	u_long cmd;
    187      1.1      mrg {
    188      1.1      mrg 
    189      1.1      mrg 	p->vifi = s32p->vifi;
    190      1.1      mrg 	p->icount = (u_long)s32p->icount;
    191      1.1      mrg 	p->ocount = (u_long)s32p->ocount;
    192      1.1      mrg 	p->ibytes = (u_long)s32p->ibytes;
    193      1.1      mrg 	p->obytes = (u_long)s32p->obytes;
    194      1.1      mrg }
    195      1.1      mrg 
    196      1.6      mrg static __inline void
    197      1.7      eeh netbsd32_to_sioc_sg_req(s32p, p, cmd)
    198      1.2      mrg 	struct netbsd32_sioc_sg_req *s32p;
    199      1.1      mrg 	struct sioc_sg_req *p;
    200      1.7      eeh 	u_long cmd;
    201      1.1      mrg {
    202      1.1      mrg 
    203      1.1      mrg 	p->src = s32p->src;
    204      1.1      mrg 	p->grp = s32p->grp;
    205      1.1      mrg 	p->pktcnt = (u_long)s32p->pktcnt;
    206      1.1      mrg 	p->bytecnt = (u_long)s32p->bytecnt;
    207      1.1      mrg 	p->wrong_if = (u_long)s32p->wrong_if;
    208      1.1      mrg }
    209      1.1      mrg 
    210      1.1      mrg /*
    211  1.8.2.4  nathanw  * handle ioctl conversions from 64-bit kernel -> netbsd32
    212      1.1      mrg  */
    213      1.1      mrg 
    214      1.6      mrg static __inline void
    215      1.7      eeh netbsd32_from_partinfo(p, s32p)
    216      1.7      eeh 	struct partinfo *p;
    217      1.7      eeh 	struct netbsd32_partinfo *s32p;
    218      1.7      eeh {
    219      1.7      eeh 
    220      1.7      eeh 	s32p->disklab = (netbsd32_disklabel_tp_t)(u_long)p->disklab;
    221      1.7      eeh 	s32p->part = s32p->part;
    222      1.7      eeh }
    223      1.7      eeh 
    224      1.7      eeh static __inline void
    225      1.2      mrg netbsd32_from_format_op(p, s32p)
    226      1.1      mrg 	struct format_op *p;
    227      1.2      mrg 	struct netbsd32_format_op *s32p;
    228      1.1      mrg {
    229      1.1      mrg 
    230      1.1      mrg /* filled in */
    231      1.1      mrg #if 0
    232      1.2      mrg 	s32p->df_buf = (netbsd32_charp)p->df_buf;
    233      1.1      mrg #endif
    234      1.1      mrg 	s32p->df_count = p->df_count;
    235      1.1      mrg 	s32p->df_startblk = p->df_startblk;
    236      1.1      mrg 	memcpy(s32p->df_reg, p->df_reg, sizeof(p->df_reg));
    237      1.1      mrg }
    238      1.1      mrg 
    239      1.1      mrg #if 0 /* XXX see below */
    240      1.6      mrg static __inline void
    241      1.2      mrg netbsd32_from_ifreq(p, s32p, cmd)
    242      1.1      mrg 	struct ifreq *p;
    243      1.2      mrg 	struct netbsd32_ifreq *s32p;
    244      1.1      mrg 	u_long cmd;	/* XXX unused yet */
    245      1.1      mrg {
    246      1.1      mrg 
    247      1.1      mrg 	/*
    248      1.1      mrg 	 * XXX
    249      1.1      mrg 	 * struct ifreq says the same, but sometimes the ifr_data
    250      1.1      mrg 	 * union member needs to be converted to 64 bits... this
    251      1.1      mrg 	 * is very driver specific and so we ignore it for now..
    252      1.1      mrg 	 */
    253      1.1      mrg 	*s32p = *p;
    254      1.1      mrg }
    255      1.1      mrg #endif
    256      1.1      mrg 
    257      1.6      mrg static __inline void
    258      1.2      mrg netbsd32_from_ifconf(p, s32p)
    259      1.1      mrg 	struct ifconf *p;
    260      1.2      mrg 	struct netbsd32_ifconf *s32p;
    261      1.1      mrg {
    262      1.1      mrg 
    263      1.1      mrg 	s32p->ifc_len = p->ifc_len;
    264      1.1      mrg 	/* ifc_buf & ifc_req are the same size so this works */
    265      1.2      mrg 	s32p->ifc_buf = (netbsd32_caddr_t)(u_long)p->ifc_buf;
    266      1.1      mrg }
    267      1.1      mrg 
    268      1.6      mrg static __inline void
    269      1.2      mrg netbsd32_from_ifmediareq(p, s32p)
    270      1.1      mrg 	struct ifmediareq *p;
    271      1.2      mrg 	struct netbsd32_ifmediareq *s32p;
    272      1.1      mrg {
    273      1.1      mrg 
    274      1.1      mrg 	memcpy(s32p, p, sizeof *p);
    275      1.1      mrg /* filled in? */
    276      1.1      mrg #if 0
    277      1.2      mrg 	s32p->ifm_ulist = (netbsd32_intp_t)p->ifm_ulist;
    278      1.1      mrg #endif
    279      1.1      mrg }
    280      1.1      mrg 
    281      1.6      mrg static __inline void
    282      1.2      mrg netbsd32_from_ifdrv(p, s32p)
    283      1.1      mrg 	struct ifdrv *p;
    284      1.2      mrg 	struct netbsd32_ifdrv *s32p;
    285      1.1      mrg {
    286      1.1      mrg 
    287      1.1      mrg 	memcpy(s32p, p, sizeof *p);
    288      1.1      mrg /* filled in? */
    289      1.1      mrg #if 0
    290      1.2      mrg 	s32p->ifm_data = (netbsd32_u_longp_t)p->ifm_data;
    291      1.1      mrg #endif
    292      1.1      mrg }
    293      1.1      mrg 
    294      1.6      mrg static __inline void
    295      1.2      mrg netbsd32_from_sioc_vif_req(p, s32p)
    296      1.1      mrg 	struct sioc_vif_req *p;
    297      1.2      mrg 	struct netbsd32_sioc_vif_req *s32p;
    298      1.1      mrg {
    299      1.1      mrg 
    300      1.1      mrg 	s32p->vifi = p->vifi;
    301      1.2      mrg 	s32p->icount = (netbsd32_u_long)p->icount;
    302      1.2      mrg 	s32p->ocount = (netbsd32_u_long)p->ocount;
    303      1.2      mrg 	s32p->ibytes = (netbsd32_u_long)p->ibytes;
    304      1.2      mrg 	s32p->obytes = (netbsd32_u_long)p->obytes;
    305      1.1      mrg }
    306      1.1      mrg 
    307      1.6      mrg static __inline void
    308      1.2      mrg netbsd32_from_sioc_sg_req(p, s32p)
    309      1.1      mrg 	struct sioc_sg_req *p;
    310      1.2      mrg 	struct netbsd32_sioc_sg_req *s32p;
    311      1.1      mrg {
    312      1.1      mrg 
    313      1.1      mrg 	s32p->src = p->src;
    314      1.1      mrg 	s32p->grp = p->grp;
    315      1.2      mrg 	s32p->pktcnt = (netbsd32_u_long)p->pktcnt;
    316      1.2      mrg 	s32p->bytecnt = (netbsd32_u_long)p->bytecnt;
    317      1.2      mrg 	s32p->wrong_if = (netbsd32_u_long)p->wrong_if;
    318      1.1      mrg }
    319      1.1      mrg 
    320      1.1      mrg 
    321      1.1      mrg /*
    322      1.1      mrg  * main ioctl syscall.
    323      1.1      mrg  *
    324      1.1      mrg  * ok, here we are in the biggy.  we have to do fix ups depending
    325      1.1      mrg  * on the ioctl command before and afterwards.
    326      1.1      mrg  */
    327      1.1      mrg int
    328      1.4      eeh netbsd32_ioctl(p, v, retval)
    329      1.1      mrg 	struct proc *p;
    330      1.1      mrg 	void *v;
    331      1.1      mrg 	register_t *retval;
    332      1.1      mrg {
    333      1.4      eeh 	struct netbsd32_ioctl_args /* {
    334      1.1      mrg 		syscallarg(int) fd;
    335      1.2      mrg 		syscallarg(netbsd32_u_long) com;
    336      1.2      mrg 		syscallarg(netbsd32_voidp) data;
    337      1.1      mrg 	} */ *uap = v;
    338      1.7      eeh 	struct file *fp;
    339      1.7      eeh 	struct filedesc *fdp;
    340      1.7      eeh 	u_long com;
    341      1.7      eeh 	int error = 0;
    342      1.7      eeh 	u_int size, size32;
    343      1.7      eeh 	caddr_t data, memp = NULL;
    344      1.7      eeh 	caddr_t data32, memp32 = NULL;
    345      1.7      eeh 	int tmp;
    346      1.7      eeh #define STK_PARAMS	128
    347      1.7      eeh 	u_long stkbuf[STK_PARAMS/sizeof(u_long)];
    348      1.7      eeh 	u_long stkbuf32[STK_PARAMS/sizeof(u_long)];
    349      1.1      mrg 
    350      1.1      mrg 	/*
    351      1.1      mrg 	 * we need to translate some commands (_IOW) before calling sys_ioctl,
    352      1.1      mrg 	 * some after (_IOR), and some both (_IOWR).
    353      1.1      mrg 	 */
    354      1.5      eeh #if 0
    355      1.5      eeh 	{
    356      1.5      eeh char *dirs[8] = { "NONE!", "VOID", "OUT", "VOID|OUT!", "IN", "VOID|IN!",
    357      1.5      eeh 		"INOUT", "VOID|IN|OUT!" };
    358      1.5      eeh 
    359      1.5      eeh printf("netbsd32_ioctl(%d, %x, %x): %s group %c base %d len %d\n",
    360      1.5      eeh        SCARG(uap, fd), SCARG(uap, com), SCARG(uap, data),
    361      1.5      eeh        dirs[((SCARG(uap, com) & IOC_DIRMASK)>>29)],
    362      1.5      eeh        IOCGROUP(SCARG(uap, com)), IOCBASECMD(SCARG(uap, com)),
    363      1.5      eeh        IOCPARM_LEN(SCARG(uap, com)));
    364      1.5      eeh 	}
    365      1.5      eeh #endif
    366      1.1      mrg 
    367      1.7      eeh 	fdp = p->p_fd;
    368  1.8.2.1  nathanw 	if ((fp = fd_getfile(fdp, SCARG(uap, fd))) == NULL)
    369      1.7      eeh 		return (EBADF);
    370      1.7      eeh 
    371      1.7      eeh 	FILE_USE(fp);
    372      1.7      eeh 
    373      1.7      eeh 	if ((fp->f_flag & (FREAD | FWRITE)) == 0) {
    374      1.7      eeh 		error = EBADF;
    375      1.7      eeh 		goto out;
    376      1.7      eeh 	}
    377      1.7      eeh 
    378      1.7      eeh 	switch (com = SCARG(uap, com)) {
    379      1.7      eeh 	case FIONCLEX:
    380      1.7      eeh 		fdp->fd_ofileflags[SCARG(uap, fd)] &= ~UF_EXCLOSE;
    381      1.7      eeh 		goto out;
    382      1.7      eeh 
    383      1.7      eeh 	case FIOCLEX:
    384      1.7      eeh 		fdp->fd_ofileflags[SCARG(uap, fd)] |= UF_EXCLOSE;
    385      1.7      eeh 		goto out;
    386      1.7      eeh 	}
    387      1.7      eeh 
    388      1.7      eeh 	/*
    389      1.7      eeh 	 * Interpret high order word to find amount of data to be
    390      1.7      eeh 	 * copied to/from the user's address space.
    391      1.7      eeh 	 */
    392      1.7      eeh 	size32 = IOCPARM_LEN(com);
    393      1.7      eeh 	if (size32 > IOCPARM_MAX) {
    394      1.7      eeh 		error = ENOTTY;
    395      1.7      eeh 		goto out;
    396      1.7      eeh 	}
    397      1.7      eeh 	memp = NULL;
    398      1.7      eeh 	if (size32 > sizeof(stkbuf)) {
    399      1.7      eeh 		memp32 = (caddr_t)malloc((u_long)size32, M_IOCTLOPS, M_WAITOK);
    400      1.7      eeh 		data32 = memp32;
    401      1.7      eeh 	} else
    402      1.7      eeh 		data32 = (caddr_t)stkbuf32;
    403      1.7      eeh 	if (com&IOC_IN) {
    404      1.7      eeh 		if (size32) {
    405      1.7      eeh 			error = copyin((caddr_t)(u_long)SCARG(uap, data),
    406      1.7      eeh 				       data32, size32);
    407      1.7      eeh 			if (error) {
    408      1.7      eeh 				if (memp32)
    409      1.7      eeh 					free(memp32, M_IOCTLOPS);
    410      1.7      eeh 				goto out;
    411      1.7      eeh 			}
    412      1.7      eeh 		} else
    413      1.7      eeh 			*(caddr_t *)data32 = (caddr_t)(u_long)SCARG(uap, data);
    414      1.7      eeh 	} else if ((com&IOC_OUT) && size32)
    415      1.7      eeh 		/*
    416      1.7      eeh 		 * Zero the buffer so the user always
    417      1.7      eeh 		 * gets back something deterministic.
    418      1.7      eeh 		 */
    419      1.7      eeh 		memset(data32, 0, size32);
    420      1.7      eeh 	else if (com&IOC_VOID)
    421      1.8      eeh 		*(caddr_t *)data32 = (caddr_t)(u_long)SCARG(uap, data);
    422      1.7      eeh 
    423      1.1      mrg 	/*
    424      1.1      mrg 	 * convert various structures, pointers, and other objects that
    425      1.1      mrg 	 * change size from 32 bit -> 64 bit, for all ioctl commands.
    426      1.1      mrg 	 */
    427      1.1      mrg 	switch (SCARG(uap, com)) {
    428      1.7      eeh 	case FIONBIO:
    429      1.8      eeh 		if ((tmp = *(int *)data32) != 0)
    430      1.7      eeh 			fp->f_flag |= FNONBLOCK;
    431      1.7      eeh 		else
    432      1.7      eeh 			fp->f_flag &= ~FNONBLOCK;
    433      1.7      eeh 		error = (*fp->f_ops->fo_ioctl)(fp, FIONBIO, (caddr_t)&tmp, p);
    434      1.7      eeh 		break;
    435      1.7      eeh 
    436      1.7      eeh 	case FIOASYNC:
    437      1.8      eeh 		if ((tmp = *(int *)data32) != 0)
    438      1.7      eeh 			fp->f_flag |= FASYNC;
    439      1.7      eeh 		else
    440      1.7      eeh 			fp->f_flag &= ~FASYNC;
    441      1.7      eeh 		error = (*fp->f_ops->fo_ioctl)(fp, FIOASYNC, (caddr_t)&tmp, p);
    442      1.7      eeh 		break;
    443      1.7      eeh 
    444      1.7      eeh 	case FIOSETOWN:
    445      1.8      eeh 		tmp = *(int *)data32;
    446      1.7      eeh 		if (fp->f_type == DTYPE_SOCKET) {
    447      1.7      eeh 			((struct socket *)fp->f_data)->so_pgid = tmp;
    448      1.7      eeh 			error = 0;
    449      1.7      eeh 			break;
    450      1.7      eeh 		}
    451      1.7      eeh 		if (tmp <= 0) {
    452      1.7      eeh 			tmp = -tmp;
    453      1.7      eeh 		} else {
    454      1.7      eeh 			struct proc *p1 = pfind(tmp);
    455      1.7      eeh 			if (p1 == 0) {
    456      1.7      eeh 				error = ESRCH;
    457      1.7      eeh 				break;
    458      1.7      eeh 			}
    459      1.7      eeh 			tmp = p1->p_pgrp->pg_id;
    460      1.7      eeh 		}
    461      1.7      eeh 		error = (*fp->f_ops->fo_ioctl)
    462      1.7      eeh 			(fp, TIOCSPGRP, (caddr_t)&tmp, p);
    463      1.7      eeh 		break;
    464      1.7      eeh 
    465      1.7      eeh 	case FIOGETOWN:
    466      1.7      eeh 		if (fp->f_type == DTYPE_SOCKET) {
    467      1.7      eeh 			error = 0;
    468      1.8      eeh 			*(int *)data32 = ((struct socket *)fp->f_data)->so_pgid;
    469      1.7      eeh 			break;
    470      1.7      eeh 		}
    471      1.8      eeh 		error = (*fp->f_ops->fo_ioctl)(fp, TIOCGPGRP, data32, p);
    472      1.8      eeh 		*(int *)data32 = -*(int *)data32;
    473      1.1      mrg 		break;
    474      1.1      mrg 
    475      1.7      eeh 	case DIOCGPART32:
    476      1.7      eeh 		IOCTL_STRUCT_CONV_TO(DIOCGPART, partinfo);
    477      1.7      eeh 
    478      1.7      eeh 	case DIOCRFORMAT32:
    479      1.7      eeh 		IOCTL_STRUCT_CONV_TO(DIOCRFORMAT, format_op);
    480      1.7      eeh 	case DIOCWFORMAT32:
    481      1.7      eeh 		IOCTL_STRUCT_CONV_TO(DIOCWFORMAT, format_op);
    482      1.1      mrg 
    483      1.1      mrg /*
    484      1.1      mrg  * only a few ifreq syscalls need conversion and those are
    485      1.1      mrg  * all driver specific... XXX
    486      1.1      mrg  */
    487      1.1      mrg #if 0
    488      1.7      eeh 	case SIOCGADDRROM3232:
    489      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGADDRROM32, ifreq);
    490      1.7      eeh 	case SIOCGCHIPID32:
    491      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGCHIPID, ifreq);
    492      1.7      eeh 	case SIOCSIFADDR32:
    493      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFADDR, ifreq);
    494      1.7      eeh 	case OSIOCGIFADDR32:
    495      1.7      eeh 		IOCTL_STRUCT_CONV_TO(OSIOCGIFADDR, ifreq);
    496      1.7      eeh 	case SIOCGIFADDR32:
    497      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFADDR, ifreq);
    498      1.7      eeh 	case SIOCSIFDSTADDR32:
    499      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFDSTADDR, ifreq);
    500      1.7      eeh 	case OSIOCGIFDSTADDR32:
    501      1.7      eeh 		IOCTL_STRUCT_CONV_TO(OSIOCGIFDSTADDR, ifreq);
    502      1.7      eeh 	case SIOCGIFDSTADDR32:
    503      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFDSTADDR, ifreq);
    504      1.7      eeh 	case SIOCSIFFLAGS32:
    505      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFFLAGS, ifreq);
    506      1.7      eeh 	case SIOCGIFFLAGS32:
    507      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFFLAGS, ifreq);
    508      1.7      eeh 	case OSIOCGIFBRDADDR32:
    509      1.7      eeh 		IOCTL_STRUCT_CONV_TO(OSIOCGIFBRDADDR, ifreq);
    510      1.7      eeh 	case SIOCGIFBRDADDR32:
    511      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFBRDADDR, ifreq);
    512      1.7      eeh 	case SIOCSIFBRDADDR32:
    513      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFBRDADDR, ifreq);
    514      1.7      eeh 	case OSIOCGIFNETMASK32:
    515      1.7      eeh 		IOCTL_STRUCT_CONV_TO(OSIOCGIFNETMASK, ifreq);
    516      1.7      eeh 	case SIOCGIFNETMASK32:
    517      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFNETMASK, ifreq);
    518      1.7      eeh 	case SIOCSIFNETMASK32:
    519      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFNETMASK, ifreq);
    520      1.7      eeh 	case SIOCGIFMETRIC32:
    521      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFMETRIC, ifreq);
    522      1.7      eeh 	case SIOCSIFMETRIC32:
    523      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFMETRIC, ifreq);
    524      1.7      eeh 	case SIOCDIFADDR32:
    525      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCDIFADDR, ifreq);
    526      1.7      eeh 	case SIOCADDMULTI32:
    527      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCADDMULTI, ifreq);
    528      1.7      eeh 	case SIOCDELMULTI32:
    529      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCDELMULTI, ifreq);
    530      1.7      eeh 	case SIOCSIFMEDIA32:
    531      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFMEDIA, ifreq);
    532      1.7      eeh 	case SIOCSIFMTU32:
    533      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFMTU, ifreq);
    534      1.7      eeh 	case SIOCGIFMTU32:
    535      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFMTU, ifreq);
    536      1.7      eeh 	case SIOCSIFASYNCMAP32:
    537      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSIFASYNCMAP, ifreq);
    538      1.7      eeh 	case SIOCGIFASYNCMAP32:
    539      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFASYNCMAP, ifreq);
    540      1.7      eeh /*		IOCTL_STRUCT_CONV_TO(BIOCGETIF, ifreq); READ ONLY */
    541      1.7      eeh 	case BIOCSETIF32:
    542      1.7      eeh 		IOCTL_STRUCT_CONV_TO(BIOCSETIF, ifreq);
    543      1.7      eeh 	case SIOCPHASE132:
    544      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCPHASE1, ifreq);
    545      1.7      eeh 	case SIOCPHASE232:
    546      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCPHASE2, ifreq);
    547      1.1      mrg #endif
    548      1.1      mrg 
    549      1.7      eeh 	case OSIOCGIFCONF32:
    550      1.7      eeh 		IOCTL_STRUCT_CONV_TO(OSIOCGIFCONF, ifconf);
    551      1.7      eeh 	case SIOCGIFCONF32:
    552      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFCONF, ifconf);
    553      1.7      eeh 
    554      1.7      eeh 	case SIOCGIFMEDIA32:
    555      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGIFMEDIA, ifmediareq);
    556      1.1      mrg 
    557      1.7      eeh 	case SIOCSDRVSPEC32:
    558      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCSDRVSPEC, ifdrv);
    559      1.1      mrg 
    560      1.7      eeh 	case SIOCGETVIFCNT32:
    561      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGETVIFCNT, sioc_vif_req);
    562      1.1      mrg 
    563      1.7      eeh 	case SIOCGETSGCNT32:
    564      1.7      eeh 		IOCTL_STRUCT_CONV_TO(SIOCGETSGCNT, sioc_sg_req);
    565      1.1      mrg 
    566      1.7      eeh 	default:
    567  1.8.2.4  nathanw #ifdef NETBSD32_MD_IOCTL
    568  1.8.2.4  nathanw 		error = netbsd32_md_ioctl(fp, com, data32, p);
    569  1.8.2.4  nathanw #else
    570      1.7      eeh 		error = (*fp->f_ops->fo_ioctl)(fp, com, data32, p);
    571  1.8.2.4  nathanw #endif
    572      1.1      mrg 		break;
    573      1.1      mrg 	}
    574      1.1      mrg 
    575      1.1      mrg 	/*
    576      1.7      eeh 	 * Copy any data to user, size was
    577      1.7      eeh 	 * already set and checked above.
    578      1.1      mrg 	 */
    579      1.7      eeh 	if (error == 0 && (com&IOC_OUT) && size32)
    580      1.7      eeh 		error = copyout(data32, (caddr_t)(u_long)SCARG(uap, data), size32);
    581      1.1      mrg 
    582      1.1      mrg 	/* if we malloced data, free it here */
    583      1.7      eeh 	if (memp32)
    584      1.7      eeh 		free(memp32, M_IOCTLOPS);
    585      1.7      eeh 	if (memp)
    586      1.7      eeh 		free(memp, M_IOCTLOPS);
    587      1.7      eeh 
    588      1.7      eeh  out:
    589      1.7      eeh 	FILE_UNUSE(fp, p);
    590      1.7      eeh 	return (error);
    591      1.1      mrg }
    592