linux32_sched.c revision 1.8.6.1 1 1.8.6.1 uebayasi /* $NetBSD: linux32_sched.c,v 1.8.6.1 2010/08/17 06:45:52 uebayasi Exp $ */
2 1.1 manu
3 1.1 manu /*-
4 1.1 manu * Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
5 1.1 manu *
6 1.1 manu * Redistribution and use in source and binary forms, with or without
7 1.1 manu * modification, are permitted provided that the following conditions
8 1.1 manu * are met:
9 1.1 manu * 1. Redistributions of source code must retain the above copyright
10 1.1 manu * notice, this list of conditions and the following disclaimer.
11 1.1 manu * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 manu * notice, this list of conditions and the following disclaimer in the
13 1.1 manu * documentation and/or other materials provided with the distribution.
14 1.1 manu * 3. All advertising materials mentioning features or use of this software
15 1.1 manu * must display the following acknowledgement:
16 1.1 manu * This product includes software developed by Emmanuel Dreyfus
17 1.1 manu * 4. The name of the author may not be used to endorse or promote
18 1.1 manu * products derived from this software without specific prior written
19 1.1 manu * permission.
20 1.1 manu *
21 1.1 manu * THIS SOFTWARE IS PROVIDED BY THE THE AUTHOR AND CONTRIBUTORS ``AS IS''
22 1.1 manu * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
23 1.1 manu * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 1.1 manu * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
25 1.1 manu * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 1.1 manu * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 1.1 manu * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 1.1 manu * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 1.1 manu * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 1.1 manu * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 1.1 manu * POSSIBILITY OF SUCH DAMAGE.
32 1.1 manu */
33 1.1 manu
34 1.1 manu #include <sys/cdefs.h>
35 1.1 manu
36 1.8.6.1 uebayasi __KERNEL_RCSID(0, "$NetBSD: linux32_sched.c,v 1.8.6.1 2010/08/17 06:45:52 uebayasi Exp $");
37 1.1 manu
38 1.1 manu #include <sys/types.h>
39 1.1 manu #include <sys/param.h>
40 1.1 manu #include <sys/fstypes.h>
41 1.1 manu #include <sys/signal.h>
42 1.1 manu #include <sys/dirent.h>
43 1.1 manu #include <sys/kernel.h>
44 1.1 manu #include <sys/fcntl.h>
45 1.1 manu #include <sys/select.h>
46 1.1 manu #include <sys/proc.h>
47 1.1 manu #include <sys/ucred.h>
48 1.1 manu #include <sys/swap.h>
49 1.1 manu
50 1.1 manu #include <machine/types.h>
51 1.1 manu
52 1.1 manu #include <sys/syscallargs.h>
53 1.1 manu
54 1.1 manu #include <compat/netbsd32/netbsd32.h>
55 1.1 manu #include <compat/netbsd32/netbsd32_conv.h>
56 1.1 manu #include <compat/netbsd32/netbsd32_syscallargs.h>
57 1.1 manu
58 1.1 manu #include <compat/linux/common/linux_types.h>
59 1.1 manu #include <compat/linux/common/linux_signal.h>
60 1.1 manu #include <compat/linux/common/linux_machdep.h>
61 1.1 manu #include <compat/linux/common/linux_misc.h>
62 1.8.6.1 uebayasi #include <compat/linux/common/linux_sched.h>
63 1.7 ad #include <compat/linux/common/linux_ipc.h>
64 1.7 ad #include <compat/linux/common/linux_sem.h>
65 1.1 manu #include <compat/linux/linux_syscallargs.h>
66 1.1 manu
67 1.1 manu #include <compat/linux32/common/linux32_types.h>
68 1.1 manu #include <compat/linux32/common/linux32_signal.h>
69 1.1 manu #include <compat/linux32/common/linux32_machdep.h>
70 1.1 manu #include <compat/linux32/common/linux32_sysctl.h>
71 1.1 manu #include <compat/linux32/common/linux32_socketcall.h>
72 1.1 manu #include <compat/linux32/linux32_syscallargs.h>
73 1.1 manu
74 1.1 manu int
75 1.6 dsl linux32_sys_clone(struct lwp *l, const struct linux32_sys_clone_args *uap, register_t *retval)
76 1.1 manu {
77 1.6 dsl /* {
78 1.1 manu syscallarg(int) flags;
79 1.1 manu syscallarg(netbsd32_voidp) stack;
80 1.8.6.1 uebayasi syscallarg(netbsd32_voidp) parent_tidptr;
81 1.8.6.1 uebayasi syscallarg(netbsd32_voidp) tls;
82 1.8.6.1 uebayasi syscallarg(netbsd32_voidp) child_tidptr;
83 1.6 dsl } */
84 1.1 manu struct linux_sys_clone_args ua;
85 1.1 manu
86 1.1 manu NETBSD32TO64_UAP(flags);
87 1.1 manu NETBSD32TOP_UAP(stack, void *);
88 1.8.6.1 uebayasi NETBSD32TOP_UAP(parent_tidptr, void *);
89 1.8.6.1 uebayasi NETBSD32TOP_UAP(tls, void *);
90 1.8.6.1 uebayasi NETBSD32TOP_UAP(child_tidptr, void *);
91 1.1 manu return linux_sys_clone(l, &ua, retval);
92 1.1 manu }
93 1.1 manu
94 1.1 manu int
95 1.6 dsl linux32_sys_sched_getscheduler(struct lwp *l, const struct linux32_sys_sched_getscheduler_args *uap, register_t *retval)
96 1.4 njoly {
97 1.6 dsl /* {
98 1.4 njoly syscallarg(pid_t) pid;
99 1.6 dsl } */
100 1.4 njoly struct linux_sys_sched_getscheduler_args ua;
101 1.4 njoly
102 1.4 njoly NETBSD32TO64_UAP(pid);
103 1.4 njoly return linux_sys_sched_getscheduler(l, &ua, retval);
104 1.4 njoly }
105 1.4 njoly
106 1.4 njoly int
107 1.6 dsl linux32_sys_sched_setscheduler(struct lwp *l, const struct linux32_sys_sched_setscheduler_args *uap, register_t *retval)
108 1.1 manu {
109 1.6 dsl /* {
110 1.1 manu syscallarg(int) pid;
111 1.1 manu syscallarg(int) policy;
112 1.1 manu syscallarg(const linux32_sched_paramp_t) sp;
113 1.6 dsl } */
114 1.1 manu struct linux_sys_sched_setscheduler_args ua;
115 1.1 manu
116 1.1 manu NETBSD32TO64_UAP(pid);
117 1.1 manu NETBSD32TO64_UAP(policy);
118 1.1 manu NETBSD32TOP_UAP(sp, const struct linux_sched_param);
119 1.1 manu return linux_sys_sched_setscheduler(l, &ua, retval);
120 1.1 manu }
121 1.2 manu
122 1.2 manu int
123 1.6 dsl linux32_sys_sched_getparam(struct lwp *l, const struct linux32_sys_sched_getparam_args *uap, register_t *retval)
124 1.2 manu {
125 1.6 dsl /* {
126 1.2 manu syscallarg(pid_t) pid;
127 1.8.6.1 uebayasi syscallarg(linux32_sched_paramp_t) sp;
128 1.6 dsl } */
129 1.2 manu struct linux_sys_sched_getparam_args ua;
130 1.2 manu
131 1.2 manu NETBSD32TO64_UAP(pid);
132 1.2 manu NETBSD32TOP_UAP(sp, struct linux_sched_param);
133 1.2 manu return linux_sys_sched_getparam(l, &ua, retval);
134 1.2 manu }
135 1.2 manu
136 1.4 njoly int
137 1.8.6.1 uebayasi linux32_sys_sched_setparam(struct lwp *l, const struct linux32_sys_sched_setparam_args *uap, register_t *retval)
138 1.8.6.1 uebayasi {
139 1.8.6.1 uebayasi /* {
140 1.8.6.1 uebayasi syscallarg(pid_t) pid;
141 1.8.6.1 uebayasi syscallarg(const linux32_sched_paramp_t) sp;
142 1.8.6.1 uebayasi } */
143 1.8.6.1 uebayasi struct linux_sys_sched_setparam_args ua;
144 1.8.6.1 uebayasi
145 1.8.6.1 uebayasi NETBSD32TO64_UAP(pid);
146 1.8.6.1 uebayasi NETBSD32TOP_UAP(sp, const struct linux_sched_param);
147 1.8.6.1 uebayasi return linux_sys_sched_setparam(l, &ua, retval);
148 1.8.6.1 uebayasi }
149 1.8.6.1 uebayasi
150 1.8.6.1 uebayasi int
151 1.6 dsl linux32_sys_exit_group(struct lwp *l, const struct linux32_sys_exit_group_args *uap, register_t *retval)
152 1.4 njoly {
153 1.6 dsl /* {
154 1.4 njoly syscallarg(int) error_code;
155 1.6 dsl } */
156 1.4 njoly struct linux_sys_exit_group_args ua;
157 1.4 njoly
158 1.4 njoly NETBSD32TO64_UAP(error_code);
159 1.4 njoly return linux_sys_exit_group(l, &ua, retval);
160 1.4 njoly }
161 1.8 njoly
162 1.8 njoly int
163 1.8.6.1 uebayasi linux32_sys_exit(struct lwp *l, const struct linux32_sys_exit_args *uap, register_t *retval)
164 1.8.6.1 uebayasi {
165 1.8.6.1 uebayasi
166 1.8.6.1 uebayasi /* {
167 1.8.6.1 uebayasi syscallarg(int) rval;
168 1.8.6.1 uebayasi } */
169 1.8.6.1 uebayasi struct linux_sys_exit_args ua;
170 1.8.6.1 uebayasi
171 1.8.6.1 uebayasi NETBSD32TO64_UAP(rval);
172 1.8.6.1 uebayasi return linux_sys_exit(l, &ua, retval);
173 1.8.6.1 uebayasi }
174 1.8.6.1 uebayasi
175 1.8.6.1 uebayasi int
176 1.8 njoly linux32_sys_sched_get_priority_max(struct lwp *l, const struct linux32_sys_sched_get_priority_max_args *uap, register_t *retval)
177 1.8 njoly {
178 1.8 njoly /* {
179 1.8 njoly syscallarg(int) policy;
180 1.8 njoly } */
181 1.8 njoly
182 1.8 njoly struct linux_sys_sched_get_priority_max_args ua;
183 1.8 njoly
184 1.8 njoly NETBSD32TO64_UAP(policy);
185 1.8 njoly return linux_sys_sched_get_priority_max(l, &ua, retval);
186 1.8 njoly }
187 1.8 njoly
188 1.8 njoly int
189 1.8 njoly linux32_sys_sched_get_priority_min(struct lwp *l, const struct linux32_sys_sched_get_priority_min_args *uap, register_t *retval)
190 1.8 njoly {
191 1.8 njoly /* {
192 1.8 njoly syscallarg(int) policy;
193 1.8 njoly } */
194 1.8 njoly
195 1.8 njoly struct linux_sys_sched_get_priority_min_args ua;
196 1.8 njoly
197 1.8 njoly NETBSD32TO64_UAP(policy);
198 1.8 njoly return linux_sys_sched_get_priority_min(l, &ua, retval);
199 1.8 njoly }
200 1.8.6.1 uebayasi
201 1.8.6.1 uebayasi
202 1.8.6.1 uebayasi int
203 1.8.6.1 uebayasi linux32_sys_set_tid_address(struct lwp *l, const struct linux32_sys_set_tid_address_args *uap, register_t *retval)
204 1.8.6.1 uebayasi {
205 1.8.6.1 uebayasi /* {
206 1.8.6.1 uebayasi syscallarg(linux32_intp_t) tid;
207 1.8.6.1 uebayasi } */
208 1.8.6.1 uebayasi struct linux_sys_set_tid_address_args ua;
209 1.8.6.1 uebayasi
210 1.8.6.1 uebayasi NETBSD32TOP_UAP(tid, int);
211 1.8.6.1 uebayasi return linux_sys_set_tid_address(l, &ua, retval);
212 1.8.6.1 uebayasi }
213 1.8.6.1 uebayasi
214 1.8.6.1 uebayasi int
215 1.8.6.1 uebayasi linux32_sys_sched_getaffinity(struct lwp *l, const struct linux32_sys_sched_getaffinity_args *uap, register_t *retval)
216 1.8.6.1 uebayasi {
217 1.8.6.1 uebayasi /* {
218 1.8.6.1 uebayasi syscallarg(linux_pid_t) pid;
219 1.8.6.1 uebayasi syscallarg(unsigned int) len;
220 1.8.6.1 uebayasi syscallarg(linux32_longp_t) mask;
221 1.8.6.1 uebayasi } */
222 1.8.6.1 uebayasi struct linux_sys_sched_getaffinity_args ua;
223 1.8.6.1 uebayasi
224 1.8.6.1 uebayasi NETBSD32TO64_UAP(pid);
225 1.8.6.1 uebayasi NETBSD32TO64_UAP(len);
226 1.8.6.1 uebayasi NETBSD32TOP_UAP(mask, long);
227 1.8.6.1 uebayasi return linux_sys_sched_getaffinity(l, &ua, retval);
228 1.8.6.1 uebayasi }
229 1.8.6.1 uebayasi
230 1.8.6.1 uebayasi int
231 1.8.6.1 uebayasi linux32_sys_sched_setaffinity(struct lwp *l, const struct linux32_sys_sched_setaffinity_args *uap, register_t *retval)
232 1.8.6.1 uebayasi {
233 1.8.6.1 uebayasi /* {
234 1.8.6.1 uebayasi syscallarg(linux_pid_t) pid;
235 1.8.6.1 uebayasi syscallarg(unsigned int) len;
236 1.8.6.1 uebayasi syscallarg(linux32_longp_t) mask;
237 1.8.6.1 uebayasi } */
238 1.8.6.1 uebayasi struct linux_sys_sched_setaffinity_args ua;
239 1.8.6.1 uebayasi
240 1.8.6.1 uebayasi NETBSD32TO64_UAP(pid);
241 1.8.6.1 uebayasi NETBSD32TO64_UAP(len);
242 1.8.6.1 uebayasi NETBSD32TOP_UAP(mask, long);
243 1.8.6.1 uebayasi return linux_sys_sched_setaffinity(l, &ua, retval);
244 1.8.6.1 uebayasi }
245 1.8.6.1 uebayasi
246 1.8.6.1 uebayasi int
247 1.8.6.1 uebayasi linux32_sys_tkill(struct lwp *l, const struct linux32_sys_tkill_args *uap, register_t *retval)
248 1.8.6.1 uebayasi {
249 1.8.6.1 uebayasi /* {
250 1.8.6.1 uebayasi syscallarg(int) tid;
251 1.8.6.1 uebayasi syscallarg(int) sig;
252 1.8.6.1 uebayasi } */
253 1.8.6.1 uebayasi struct linux_sys_tkill_args ua;
254 1.8.6.1 uebayasi
255 1.8.6.1 uebayasi NETBSD32TO64_UAP(tid);
256 1.8.6.1 uebayasi NETBSD32TO64_UAP(sig);
257 1.8.6.1 uebayasi return linux_sys_tkill(l, &ua, retval);
258 1.8.6.1 uebayasi }
259 1.8.6.1 uebayasi
260 1.8.6.1 uebayasi int
261 1.8.6.1 uebayasi linux32_sys_tgkill(struct lwp *l, const struct linux32_sys_tgkill_args *uap, register_t *retval)
262 1.8.6.1 uebayasi {
263 1.8.6.1 uebayasi /* {
264 1.8.6.1 uebayasi syscallarg(int) tgid;
265 1.8.6.1 uebayasi syscallarg(int) tid;
266 1.8.6.1 uebayasi syscallarg(int) sig;
267 1.8.6.1 uebayasi } */
268 1.8.6.1 uebayasi struct linux_sys_tgkill_args ua;
269 1.8.6.1 uebayasi
270 1.8.6.1 uebayasi NETBSD32TO64_UAP(tgid);
271 1.8.6.1 uebayasi NETBSD32TO64_UAP(tid);
272 1.8.6.1 uebayasi NETBSD32TO64_UAP(sig);
273 1.8.6.1 uebayasi return linux_sys_tgkill(l, &ua, retval);
274 1.8.6.1 uebayasi }
275