xref: /freebsd/sys/arm64/linux/linux_machdep.c (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2018 Turing Robotic Industries Inc.
5  * Copyright (c) 2000 Marcel Moolenaar
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 #include <sys/param.h>
31 #include <sys/fcntl.h>
32 #include <sys/ktr.h>
33 #include <sys/proc.h>
34 #include <sys/ptrace.h>
35 #include <sys/reg.h>
36 #include <sys/sdt.h>
37 
38 #include <vm/vm_param.h>
39 
40 #include <arm64/linux/linux.h>
41 #include <arm64/linux/linux_proto.h>
42 #include <compat/linux/linux_dtrace.h>
43 #include <compat/linux/linux_fork.h>
44 #include <compat/linux/linux_misc.h>
45 #include <compat/linux/linux_mmap.h>
46 #include <compat/linux/linux_util.h>
47 
48 #define	LINUX_ARCH_AARCH64		0xc00000b7
49 
50 /* DTrace init */
51 LIN_SDT_PROVIDER_DECLARE(LINUX_DTRACE);
52 
53 /* DTrace probes */
54 LIN_SDT_PROBE_DEFINE0(machdep, linux_mmap2, todo);
55 
56 int
57 linux_set_upcall(struct thread *td, register_t stack)
58 {
59 
60 	if (stack)
61 		td->td_frame->tf_sp = stack;
62 
63 	/*
64 	 * The newly created Linux thread returns
65 	 * to the user space by the same path that a parent does.
66 	 */
67 	td->td_frame->tf_x[0] = 0;
68 	return (0);
69 }
70 
71 /* LINUXTODO: deduplicate arm64 linux_mmap2 */
72 int
73 linux_mmap2(struct thread *td, struct linux_mmap2_args *uap)
74 {
75 
76 	LIN_SDT_PROBE0(machdep, linux_mmap2, todo);
77 	return (linux_mmap_common(td, PTROUT(uap->addr), uap->len, uap->prot,
78 	    uap->flags, uap->fd, uap->pgoff));
79 }
80 
81 int
82 linux_mprotect(struct thread *td, struct linux_mprotect_args *uap)
83 {
84 
85 	return (linux_mprotect_common(td, PTROUT(uap->addr), uap->len,
86 	    uap->prot));
87 }
88 
89 int
90 linux_madvise(struct thread *td, struct linux_madvise_args *uap)
91 {
92 
93 	return (linux_madvise_common(td, PTROUT(uap->addr), uap->len, uap->behav));
94 }
95 
96 int
97 linux_set_cloned_tls(struct thread *td, void *desc)
98 {
99 
100 	if ((uint64_t)desc >= VM_MAXUSER_ADDRESS)
101 		return (EPERM);
102 
103 	return (cpu_set_user_tls(td, desc));
104 }
105 
106 void
107 bsd_to_linux_regset(const struct reg *b_reg, struct linux_pt_regset *l_regset)
108 {
109 
110 	KASSERT(sizeof(l_regset->x) == sizeof(b_reg->x) + sizeof(l_ulong),
111 	    ("%s: size mismatch\n", __func__));
112 	memcpy(l_regset->x, b_reg->x, sizeof(b_reg->x));
113 
114 	l_regset->x[30] = b_reg->lr;
115 	l_regset->sp = b_reg->sp;
116 	l_regset->pc = b_reg->elr;
117 	l_regset->cpsr = b_reg->spsr;
118 }
119 
120 void
121 linux_to_bsd_regset(struct reg *b_reg, const struct linux_pt_regset *l_regset)
122 {
123 
124 	KASSERT(sizeof(l_regset->x) == sizeof(b_reg->x) + sizeof(l_ulong),
125 	    ("%s: size mismatch\n", __func__));
126 
127 	memcpy(b_reg->x, l_regset->x, sizeof(b_reg->x));
128 	b_reg->sp = l_regset->sp;
129 	b_reg->elr = l_regset->pc;
130 	b_reg->spsr = l_regset->cpsr;
131 }
132 
133 void
134 linux_ptrace_get_syscall_info_machdep(const struct reg *reg,
135     struct syscall_info *si)
136 {
137 
138 	si->arch = LINUX_ARCH_AARCH64;
139 	si->instruction_pointer = reg->lr;
140 	si->stack_pointer = reg->sp;
141 }
142 
143 int
144 linux_ptrace_getregs_machdep(struct thread *td __unused, pid_t pid __unused,
145     struct linux_pt_regset *l_regset __unused)
146 {
147 
148 	return (0);
149 }
150 
151 int
152 linux_ptrace_peekuser(struct thread *td, pid_t pid, void *addr, void *data)
153 {
154 
155 	LINUX_RATELIMIT_MSG_OPT1("PTRACE_PEEKUSER offset %ld not implemented; "
156 	    "returning EINVAL", (uintptr_t)addr);
157 	return (EINVAL);
158 }
159 
160 int
161 linux_ptrace_pokeuser(struct thread *td, pid_t pid, void *addr, void *data)
162 {
163 
164 	LINUX_RATELIMIT_MSG_OPT1("PTRACE_POKEUSER offset %ld "
165 	    "not implemented; returning EINVAL", (uintptr_t)addr);
166 	return (EINVAL);
167 }
168