1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2009 Konstantin Belousov 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #include <sys/cdefs.h> 30 __FBSDID("$FreeBSD$"); 31 32 #include "opt_compat.h" 33 34 #include <sys/param.h> 35 #include <sys/mount.h> 36 #include <sys/proc.h> 37 #include <sys/socket.h> 38 #include <sys/sysent.h> 39 #include <sys/sysproto.h> 40 #include <sys/systm.h> 41 #include <sys/uio.h> 42 43 #include <machine/cpu.h> 44 #include <machine/sysarch.h> 45 46 #include <compat/freebsd32/freebsd32_util.h> 47 #include <compat/freebsd32/freebsd32.h> 48 #include <compat/freebsd32/freebsd32_proto.h> 49 50 int 51 freebsd32_sysarch(struct thread *td, struct freebsd32_sysarch_args *uap) 52 { 53 struct sysarch_args uap1; 54 struct i386_ldt_args uapl; 55 struct i386_ldt_args32 uapl32; 56 int error; 57 58 if (uap->op == I386_SET_LDT || uap->op == I386_GET_LDT) { 59 if ((error = copyin(uap->parms, &uapl32, sizeof(uapl32))) != 0) 60 return (error); 61 uap1.op = uap->op; 62 uap1.parms = (char *)&uapl; 63 uapl.start = uapl32.start; 64 uapl.descs = (struct user_segment_descriptor *)(uintptr_t) 65 uapl32.descs; 66 uapl.num = uapl32.num; 67 return (sysarch_ldt(td, &uap1, UIO_SYSSPACE)); 68 } else { 69 uap1.op = uap->op; 70 uap1.parms = uap->parms; 71 return (sysarch(td, &uap1)); 72 } 73 } 74 75 #ifdef COMPAT_43 76 int 77 ofreebsd32_getpagesize(struct thread *td, 78 struct ofreebsd32_getpagesize_args *uap) 79 { 80 81 td->td_retval[0] = IA32_PAGE_SIZE; 82 return (0); 83 } 84 #endif 85