1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2021 Dmitry Chagin <dchagin@FreeBSD.org> 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 29 #include <sys/cdefs.h> 30 __FBSDID("$FreeBSD$"); 31 32 #include <sys/elf.h> 33 #include <sys/errno.h> 34 #include <sys/proc.h> 35 #include <sys/stddef.h> 36 #define _KERNEL 37 #include <sys/vdso.h> 38 #undef _KERNEL 39 #include <stdbool.h> 40 41 #include <machine/atomic.h> 42 #include <machine/stdarg.h> 43 44 #include <amd64/linux32/linux.h> 45 #include <amd64/linux32/linux32_syscall.h> 46 #include <compat/linux/linux_errno.h> 47 #include <compat/linux/linux_timer.h> 48 49 /* The kernel fixup this at vDSO install */ 50 uintptr_t *kern_timekeep_base = NULL; 51 uint32_t kern_tsc_selector = 0; 52 53 #include <x86/linux/linux_vdso_gettc_x86.inc> 54 55 static int 56 write(int fd, const void *buf, size_t size) 57 { 58 int res; 59 60 __asm__ __volatile__ 61 ( 62 "int $0x80" 63 : "=a"(res) 64 : "a"(LINUX32_SYS_write), "b"(fd), "c"(buf), "d"(size) 65 : "cc", "memory" 66 ); 67 return (res); 68 } 69 70 static int 71 __vdso_clock_gettime_fallback(clockid_t clock_id, struct l_timespec *ts) 72 { 73 int res; 74 75 __asm__ __volatile__ 76 ( 77 "int $0x80" 78 : "=a"(res) 79 : "a"(LINUX32_SYS_linux_clock_gettime), "b"(clock_id), "c"(ts) 80 : "cc", "memory" 81 ); 82 return (res); 83 } 84 85 static int 86 __vdso_clock_gettime64_fallback(clockid_t clock_id, struct l_timespec64 *ts) 87 { 88 int res; 89 90 __asm__ __volatile__ 91 ( 92 "int $0x80" 93 : "=a"(res) 94 : "a"(LINUX32_SYS_linux_clock_gettime64), "b"(clock_id), "c"(ts) 95 : "cc", "memory" 96 ); 97 return (res); 98 } 99 100 static int 101 __vdso_gettimeofday_fallback(l_timeval *tv, struct timezone *tz) 102 { 103 int res; 104 105 __asm__ __volatile__ 106 ( 107 "int $0x80" 108 : "=a"(res) 109 : "a"(LINUX32_SYS_linux_gettimeofday), "b"(tv), "c"(tz) 110 : "cc", "memory" 111 ); 112 return (res); 113 } 114 115 static int 116 __vdso_clock_getres_fallback(clockid_t clock_id, struct l_timespec *ts) 117 { 118 int res; 119 120 __asm__ __volatile__ 121 ( 122 "int $0x80" 123 : "=a"(res) 124 : "a"(LINUX32_SYS_linux_clock_getres), "b"(clock_id), "c"(ts) 125 : "cc", "memory" 126 ); 127 return (res); 128 } 129 130 static int 131 __vdso_time_fallback(long *tm) 132 { 133 int res; 134 135 __asm__ __volatile__ 136 ( 137 "int $0x80" 138 : "=a"(res) 139 : "a"(LINUX32_SYS_linux_time), "b"(tm) 140 : "cc", "memory" 141 ); 142 return (res); 143 } 144 145 #include <compat/linux/linux_vdso_gtod.inc> 146