NetBSD/sys/kern/compat_stub.c

277 lines
7.4 KiB
C
Raw Normal View History

/* $NetBSD: compat_stub.c,v 1.15 2019/07/20 18:23:05 christos Exp $ */
2019-01-27 05:08:33 +03:00
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Paul Goyette
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
*/
#include <sys/cdefs.h>
#ifdef _KERNEL_OPT
#include "opt_ntp.h"
#endif
#include <sys/systm.h>
#include <sys/compat_stub.h>
#ifdef NTP
#include <sys/timespec.h>
#include <sys/timex.h>
#endif
/*
* Routine vectors for compat_50___sys_ntp_gettime
*
* MP-hooks not needed since the NTP code is not modular
*/
#ifdef NTP
void (*vec_ntp_gettime)(struct ntptimeval *) = ntp_gettime;
int (*vec_ntp_timestatus)(void) = ntp_timestatus;
void (*vec_ntp_adjtime1)(struct timex *) = ntp_adjtime1;
#else
void (*vec_ntp_gettime)(struct ntptimeval *) = NULL;
int (*vec_ntp_timestatus)(void) = NULL;
void (*vec_ntp_adjtime1)(struct timex *) = NULL;
#endif
/*
* Routine vectors for sctp (called from within rtsock)
*
* MP-hooks not needed since the SCTP code is not modular
*
* For now, just point these at NULL. Network initialization code
* in if.c will overwrite these with correct values. This is needed
* to enable building of rumpkern library without creating circular
* dependency with rumpnet library
2019-01-27 05:08:33 +03:00
*/
void (*vec_sctp_add_ip_address)(struct ifaddr *) = NULL;
void (*vec_sctp_delete_ip_address)(struct ifaddr *) = NULL;
/*
* usb device_info compatability
*/
struct usb_subr_fill_30_hook_t usb_subr_fill_30_hook;
struct usb_subr_copy_30_hook_t usb_subr_copy_30_hook;
2019-01-27 05:08:33 +03:00
/*
* ccd device compatability ioctl
*/
struct ccd_ioctl_60_hook_t ccd_ioctl_60_hook;
/*
* clockctl device compatability ioctl
*/
struct clockctl_ioctl_50_hook_t clockctl_ioctl_50_hook;
/*
* if_sppp device compatability ioctl subroutine
*/
struct sppp_params_50_hook_t sppp_params_50_hook;
/*
* cryptodev compatability ioctl
*/
struct ocryptof_50_hook_t ocryptof_50_hook;
/*
* raidframe compatability
*/
struct raidframe_ioctl_50_hook_t raidframe_ioctl_50_hook;
struct raidframe_ioctl_80_hook_t raidframe_ioctl_80_hook;
struct raidframe_netbsd32_ioctl_hook_t raidframe_netbsd32_ioctl_hook;
2019-01-27 05:08:33 +03:00
/*
* puffs compatability
*/
struct puffs_out_50_hook_t puffs_out_50_hook;
struct puffs_in_50_hook_t puffs_in_50_hook;
2019-01-27 05:08:33 +03:00
/* XXX
int (*puffs50_compat_outgoing)(struct puffs_req *, struct puffs_req **,
ssize_t *) = (void *)enosys;
void (*puffs50_compat_incoming)(struct puffs_req *, struct puffs_req *) =
(void *)voidop;
XXX */
/*
* wsevents compatability
*/
struct wscons_copyout_events_50_hook_t wscons_copyout_events_50_hook;
2019-01-27 05:08:33 +03:00
/*
* sysmon_power compatability
*/
struct compat_sysmon_power_40_hook_t compat_sysmon_power_40_hook;
/*
* compat_bio compatability
*/
struct compat_bio_30_hook_t compat_bio_30_hook;
/*
* vnd ioctl compatability
*/
struct compat_vndioctl_30_hook_t compat_vndioctl_30_hook;
struct compat_vndioctl_50_hook_t compat_vndioctl_50_hook;
/*
* ieee80211 ioctl compatability
*/
struct ieee80211_ioctl_20_hook_t ieee80211_ioctl_20_hook;
2019-01-27 05:08:33 +03:00
/*
* if_43 compatability
*/
struct if_cvtcmd_43_hook_t if_cvtcmd_43_hook;
struct if_ifioctl_43_hook_t if_ifioctl_43_hook;
2019-01-27 05:08:33 +03:00
/*
* if43_cvtcmd_20 compatability
2019-01-27 05:08:33 +03:00
*/
struct if43_cvtcmd_20_hook_t if43_cvtcmd_20_hook;
2019-01-27 05:08:33 +03:00
/*
* tty 43 ioctl compatibility
*/
struct tty_ttioctl_43_hook_t tty_ttioctl_43_hook;
2019-01-27 05:08:33 +03:00
/*
* uipc_syscalls_40 compatibility
2019-01-27 05:08:33 +03:00
*/
struct uipc_syscalls_40_hook_t uipc_syscalls_40_hook;
/*
* uipc_socket_50 compatibility
*/
struct uipc_socket_50_setopt1_hook_t uipc_socket_50_setopt1_hook;
struct uipc_socket_50_getopt1_hook_t uipc_socket_50_getopt1_hook;
struct uipc_socket_50_sbts_hook_t uipc_socket_50_sbts_hook;
2019-01-27 05:08:33 +03:00
/*
* uipc_syscalls_50 compatability
2019-01-27 05:08:33 +03:00
*/
struct uipc_syscalls_50_hook_t uipc_syscalls_50_hook;
/*
* rtsock 14 compatability
*/
struct rtsock_oifmsg_14_hook_t rtsock_oifmsg_14_hook;
struct rtsock_iflist_14_hook_t rtsock_iflist_14_hook;
2019-01-27 05:08:33 +03:00
/*
* rtsock 50 compatability
*/
struct rtsock_iflist_50_hook_t rtsock_iflist_50_hook;
struct rtsock_oifmsg_50_hook_t rtsock_oifmsg_50_hook;
struct rtsock_rt_missmsg_50_hook_t rtsock_rt_missmsg_50_hook;
struct rtsock_rt_ifmsg_50_hook_t rtsock_rt_ifmsg_50_hook;
struct rtsock_rt_ifannouncemsg_50_hook_t rtsock_rt_ifannouncemsg_50_hook;
struct rtsock_rt_addrmsg_rt_50_hook_t rtsock_rt_addrmsg_rt_50_hook;
struct rtsock_rt_addrmsg_src_50_hook_t rtsock_rt_addrmsg_src_50_hook;
struct rtsock_rt_addrmsg_50_hook_t rtsock_rt_addrmsg_50_hook;
struct rtsock_rt_ieee80211msg_50_hook_t rtsock_rt_ieee80211msg_50_hook;
2019-01-27 05:08:33 +03:00
/*
* rtsock 70 compatability
*/
struct rtsock_newaddr_70_hook_t rtsock_newaddr_70_hook;
struct rtsock_iflist_70_hook_t rtsock_iflist_70_hook;
2019-01-27 05:08:33 +03:00
/*
* modctl handler for old style OSTAT
*/
struct compat_modstat_80_hook_t compat_modstat_80_hook;
/*
* mask for kern_sig_43's killpg (updated by compat_09)
*/
int kern_sig_43_pgid_mask = ~0;
/*
* hook for kern_proc_32
*/
struct kern_proc32_copyin_hook_t kern_proc32_copyin_hook;
struct kern_proc32_base_hook_t kern_proc32_base_hook;
2019-01-27 05:08:33 +03:00
/*
* Hook for sparc fpu code to check if a process is running
* under sunos emulation
*/
struct get_emul_sunos_hook_t get_emul_sunos_hook;
/*
* Hook for rnd_ioctl_50 callbacks
*/
struct rnd_ioctl_50_hook_t rnd_ioctl_50_hook;
struct rnd_ioctl32_50_hook_t rnd_ioctl32_50_hook;
2019-01-27 05:08:33 +03:00
/*
* Hooks for compat_60 ttioctl and ptmioctl
*/
struct tty_ttioctl_60_hook_t tty_ttioctl_60_hook;
struct tty_ptmioctl_60_hook_t tty_ptmioctl_60_hook;
2019-01-27 05:08:33 +03:00
/*
* Hook for compat_10 openat
*/
struct vfs_openat_10_hook_t vfs_openat_10_hook;
2019-01-27 05:08:33 +03:00
/*
* Hook for compat_70_unp_addsockcred
*/
struct uipc_unp_70_hook_t uipc_unp_70_hook;
2019-01-27 05:08:33 +03:00
/*
* Hook for sysvipc50_sysctl
*/
struct sysvipc_sysctl_50_hook_t sysvipc_sysctl_50_hook;
2019-01-27 05:08:33 +03:00
The max subtype of the ifmedia word is 31. It's too small for Ethernet now. We currently use use it up to 30. We should extend the limit to be able to use more than 10Gbps speeds. Our ifmedia(4) is inconvenience and have some problem so we should redesign the interface, but it's too late for netbsd-9 to do it. So, we keep the data structure size and modify the structure a bit. The strategy is almost the same as FreeBSD. Many bits of IFM_OMASK for Ethernet have not used, so use some of them for Ethernet's subtype. The differences against FreeBSD are: - We use NetBSD style compat code (i.e. no SIOCGIFXMEDIA). - FreeBSD's IFM_ETH_XTYPE's bit location is from 11 to "14" even though IFM_OMASK is from 8 to "15". We use _IFM_ETH_XTMASK from bit 13 to "15". - FreeBSD changed the meaning of IFM_TYPE_MATCH(). I think we should not do it. We keep it not changing and added new IFM_TYPE_SUBTYPE_MATCH() macro for matching both TYPE and SUBTYPE. - Added up to 400GBASE-SR16. New layout of the media word is as follows (from ifmedia_h): * if_media Options word: * Bits Use * ---- ------- * 0-4 Media subtype MAX SUBTYPE == 255 for ETH and 31 for others * 5-7 Media type * 8-15 Type specific options * 16-18 Mode (for multi-mode devices) * 19 (Reserved for Future Use) * 20-27 Shared (global) options * 28-31 Instance * * 3 2 1 * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 * +-------+---------------+-+-----+---------------+-----+---------+ * | | |R| | | | | * | IMASK | GMASK |F|MMASK+-----+ OMASK |NMASK| TMASK | * | | |U| |XTMSK| | | | * +-------+---------------+-+-----+-----+---------+-----+---------+ * <-----> <---> <---> * IFM_INST() IFM_MODE() IFM_TYPE() * * IFM_SUBTYPE(other than ETH)<-------> * * <---> IFM_SUBTYPE(ETH)<-------> * * * <-------------> <-------------> * IFM_OPTIONS()
2019-05-17 10:37:11 +03:00
/*
* ifmedia_80 compatability
*/
struct ifmedia_80_pre_hook_t ifmedia_80_pre_hook;
struct ifmedia_80_post_hook_t ifmedia_80_post_hook;
2019-01-27 05:08:33 +03:00
/*
* Hook for 32-bit machine name
*
* This probably would be better placed in compat/netbsd32/netbsd32_mod.c
* but the consumer code in linux32_exec_elf32.c is sometimes included in
* the main kernel, and not in a compat_netbsd32 module. (In particular,
* this is true for i386 and sgimips.)
*/
struct netbsd32_machine32_hook_t netbsd32_machine32_hook;
struct netbsd32_reg_validate_hook_t netbsd32_reg_validate_hook;