linux_misc.c revision 1.53 1 1.53 christos /* $NetBSD: linux_misc.c,v 1.53 1999/02/09 20:37:19 christos Exp $ */
2 1.47 erh
3 1.47 erh /*-
4 1.50 fvdl * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
5 1.47 erh * All rights reserved.
6 1.47 erh *
7 1.47 erh * This code is derived from software contributed to The NetBSD Foundation
8 1.50 fvdl * by Frank van der Linden and Eric Haszlakiewicz.
9 1.47 erh *
10 1.47 erh * Redistribution and use in source and binary forms, with or without
11 1.47 erh * modification, are permitted provided that the following conditions
12 1.47 erh * are met:
13 1.47 erh * 1. Redistributions of source code must retain the above copyright
14 1.47 erh * notice, this list of conditions and the following disclaimer.
15 1.47 erh * 2. Redistributions in binary form must reproduce the above copyright
16 1.47 erh * notice, this list of conditions and the following disclaimer in the
17 1.47 erh * documentation and/or other materials provided with the distribution.
18 1.47 erh * 3. All advertising materials mentioning features or use of this software
19 1.47 erh * must display the following acknowledgement:
20 1.47 erh * This product includes software developed by the NetBSD
21 1.47 erh * Foundation, Inc. and its contributors.
22 1.47 erh * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.47 erh * contributors may be used to endorse or promote products derived
24 1.47 erh * from this software without specific prior written permission.
25 1.47 erh *
26 1.47 erh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.47 erh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.47 erh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.47 erh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.47 erh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.47 erh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.47 erh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.47 erh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.47 erh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.47 erh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.47 erh * POSSIBILITY OF SUCH DAMAGE.
37 1.1 fvdl */
38 1.1 fvdl
39 1.1 fvdl /*
40 1.1 fvdl * Linux compatibility module. Try to deal with various Linux system calls.
41 1.1 fvdl */
42 1.1 fvdl
43 1.47 erh /*
44 1.47 erh * These functions have been moved to multiarch to allow
45 1.47 erh * selection of which machines include them to be
46 1.47 erh * determined by the individual files.linux_<arch> files.
47 1.47 erh *
48 1.47 erh * Function in multiarch:
49 1.47 erh * linux_sys_break : linux_break.c
50 1.47 erh * linux_sys_alarm : linux_misc_notalpha.c
51 1.47 erh * linux_sys_nice : linux_misc_notalpha.c
52 1.47 erh * linux_sys_readdir : linux_misc_notalpha.c
53 1.47 erh * linux_sys_time : linux_misc_notalpha.c
54 1.47 erh * linux_sys_utime : linux_misc_notalpha.c
55 1.47 erh * linux_sys_waitpid : linux_misc_notalpha.c
56 1.47 erh * linux_sys_old_mmap : linux_oldmmap.c
57 1.47 erh * linux_sys_oldolduname : linux_oldolduname.c
58 1.47 erh * linux_sys_oldselect : linux_oldselect.c
59 1.47 erh * linux_sys_olduname : linux_olduname.c
60 1.47 erh * linux_sys_pipe : linux_pipe.c
61 1.47 erh */
62 1.47 erh
63 1.1 fvdl #include <sys/param.h>
64 1.1 fvdl #include <sys/systm.h>
65 1.1 fvdl #include <sys/namei.h>
66 1.1 fvdl #include <sys/proc.h>
67 1.29 mycroft #include <sys/dirent.h>
68 1.1 fvdl #include <sys/file.h>
69 1.1 fvdl #include <sys/stat.h>
70 1.1 fvdl #include <sys/filedesc.h>
71 1.1 fvdl #include <sys/ioctl.h>
72 1.1 fvdl #include <sys/kernel.h>
73 1.1 fvdl #include <sys/malloc.h>
74 1.1 fvdl #include <sys/mbuf.h>
75 1.1 fvdl #include <sys/mman.h>
76 1.1 fvdl #include <sys/mount.h>
77 1.1 fvdl #include <sys/ptrace.h>
78 1.1 fvdl #include <sys/resource.h>
79 1.1 fvdl #include <sys/resourcevar.h>
80 1.1 fvdl #include <sys/signal.h>
81 1.1 fvdl #include <sys/signalvar.h>
82 1.1 fvdl #include <sys/socket.h>
83 1.1 fvdl #include <sys/time.h>
84 1.1 fvdl #include <sys/times.h>
85 1.1 fvdl #include <sys/vnode.h>
86 1.1 fvdl #include <sys/uio.h>
87 1.1 fvdl #include <sys/wait.h>
88 1.1 fvdl #include <sys/utsname.h>
89 1.1 fvdl #include <sys/unistd.h>
90 1.1 fvdl
91 1.1 fvdl #include <sys/syscallargs.h>
92 1.1 fvdl
93 1.1 fvdl #include <vm/vm.h>
94 1.1 fvdl #include <vm/vm_param.h>
95 1.1 fvdl
96 1.49 christos #include <compat/linux/common/linux_types.h>
97 1.49 christos #include <compat/linux/common/linux_signal.h>
98 1.49 christos
99 1.1 fvdl #include <compat/linux/linux_syscallargs.h>
100 1.49 christos
101 1.49 christos #include <compat/linux/common/linux_fcntl.h>
102 1.49 christos #include <compat/linux/common/linux_mmap.h>
103 1.49 christos #include <compat/linux/common/linux_dirent.h>
104 1.49 christos #include <compat/linux/common/linux_util.h>
105 1.49 christos #include <compat/linux/common/linux_misc.h>
106 1.49 christos
107 1.1 fvdl
108 1.47 erh /* Local linux_misc.c functions: */
109 1.26 christos static void bsd_to_linux_statfs __P((struct statfs *, struct linux_statfs *));
110 1.26 christos
111 1.1 fvdl /*
112 1.1 fvdl * The information on a terminated (or stopped) process needs
113 1.1 fvdl * to be converted in order for Linux binaries to get a valid signal
114 1.1 fvdl * number out of it.
115 1.1 fvdl */
116 1.47 erh void
117 1.52 christos bsd_to_linux_wstat(st)
118 1.52 christos int *st;
119 1.1 fvdl {
120 1.21 mycroft
121 1.52 christos int sig;
122 1.52 christos
123 1.52 christos if (WIFSIGNALED(*st)) {
124 1.52 christos sig = WTERMSIG(*st);
125 1.52 christos if (sig >= 0 && sig < NSIG)
126 1.52 christos *st= (*st& ~0177) | native_to_linux_sig[sig];
127 1.52 christos } else if (WIFSTOPPED(*st)) {
128 1.52 christos sig = WSTOPSIG(*st);
129 1.52 christos if (sig >= 0 && sig < NSIG)
130 1.52 christos *st = (*st & ~0xff00) | (native_to_linux_sig[sig] << 8);
131 1.52 christos }
132 1.1 fvdl }
133 1.1 fvdl
134 1.1 fvdl /*
135 1.1 fvdl * This is very much the same as waitpid()
136 1.1 fvdl */
137 1.1 fvdl int
138 1.21 mycroft linux_sys_wait4(p, v, retval)
139 1.1 fvdl struct proc *p;
140 1.20 thorpej void *v;
141 1.20 thorpej register_t *retval;
142 1.20 thorpej {
143 1.21 mycroft struct linux_sys_wait4_args /* {
144 1.1 fvdl syscallarg(int) pid;
145 1.1 fvdl syscallarg(int *) status;
146 1.1 fvdl syscallarg(int) options;
147 1.1 fvdl syscallarg(struct rusage *) rusage;
148 1.20 thorpej } */ *uap = v;
149 1.21 mycroft struct sys_wait4_args w4a;
150 1.1 fvdl int error, *status, tstat;
151 1.1 fvdl caddr_t sg;
152 1.1 fvdl
153 1.16 fvdl if (SCARG(uap, status) != NULL) {
154 1.16 fvdl sg = stackgap_init(p->p_emul);
155 1.52 christos status = (int *) stackgap_alloc(&sg, sizeof *status);
156 1.16 fvdl } else
157 1.16 fvdl status = NULL;
158 1.1 fvdl
159 1.1 fvdl SCARG(&w4a, pid) = SCARG(uap, pid);
160 1.1 fvdl SCARG(&w4a, status) = status;
161 1.1 fvdl SCARG(&w4a, options) = SCARG(uap, options);
162 1.1 fvdl SCARG(&w4a, rusage) = SCARG(uap, rusage);
163 1.1 fvdl
164 1.21 mycroft if ((error = sys_wait4(p, &w4a, retval)))
165 1.1 fvdl return error;
166 1.1 fvdl
167 1.46 mycroft sigdelset(&p->p_siglist, SIGCHLD);
168 1.18 fvdl
169 1.16 fvdl if (status != NULL) {
170 1.16 fvdl if ((error = copyin(status, &tstat, sizeof tstat)))
171 1.16 fvdl return error;
172 1.16 fvdl
173 1.16 fvdl bsd_to_linux_wstat(&tstat);
174 1.16 fvdl return copyout(&tstat, SCARG(uap, status), sizeof tstat);
175 1.16 fvdl }
176 1.1 fvdl
177 1.16 fvdl return 0;
178 1.1 fvdl }
179 1.1 fvdl
180 1.1 fvdl /*
181 1.1 fvdl * Linux brk(2). The check if the new address is >= the old one is
182 1.1 fvdl * done in the kernel in Linux. NetBSD does it in the library.
183 1.1 fvdl */
184 1.1 fvdl int
185 1.21 mycroft linux_sys_brk(p, v, retval)
186 1.1 fvdl struct proc *p;
187 1.20 thorpej void *v;
188 1.20 thorpej register_t *retval;
189 1.20 thorpej {
190 1.21 mycroft struct linux_sys_brk_args /* {
191 1.1 fvdl syscallarg(char *) nsize;
192 1.20 thorpej } */ *uap = v;
193 1.1 fvdl char *nbrk = SCARG(uap, nsize);
194 1.21 mycroft struct sys_obreak_args oba;
195 1.1 fvdl struct vmspace *vm = p->p_vmspace;
196 1.26 christos caddr_t oldbrk;
197 1.1 fvdl
198 1.1 fvdl oldbrk = vm->vm_daddr + ctob(vm->vm_dsize);
199 1.1 fvdl /*
200 1.1 fvdl * XXX inconsistent.. Linux always returns at least the old
201 1.1 fvdl * brk value, but it will be page-aligned if this fails,
202 1.1 fvdl * and possibly not page aligned if it succeeds (the user
203 1.1 fvdl * supplied pointer is returned).
204 1.1 fvdl */
205 1.1 fvdl SCARG(&oba, nsize) = nbrk;
206 1.1 fvdl
207 1.21 mycroft if ((caddr_t) nbrk > vm->vm_daddr && sys_obreak(p, &oba, retval) == 0)
208 1.21 mycroft retval[0] = (register_t)nbrk;
209 1.1 fvdl else
210 1.21 mycroft retval[0] = (register_t)oldbrk;
211 1.1 fvdl
212 1.1 fvdl return 0;
213 1.1 fvdl }
214 1.1 fvdl
215 1.1 fvdl /*
216 1.2 fvdl * Convert BSD statfs structure to Linux statfs structure.
217 1.2 fvdl * The Linux structure has less fields, and it also wants
218 1.2 fvdl * the length of a name in a dir entry in a field, which
219 1.2 fvdl * we fake (probably the wrong way).
220 1.2 fvdl */
221 1.2 fvdl static void
222 1.2 fvdl bsd_to_linux_statfs(bsp, lsp)
223 1.2 fvdl struct statfs *bsp;
224 1.2 fvdl struct linux_statfs *lsp;
225 1.2 fvdl {
226 1.21 mycroft
227 1.2 fvdl lsp->l_ftype = bsp->f_type;
228 1.2 fvdl lsp->l_fbsize = bsp->f_bsize;
229 1.2 fvdl lsp->l_fblocks = bsp->f_blocks;
230 1.2 fvdl lsp->l_fbfree = bsp->f_bfree;
231 1.2 fvdl lsp->l_fbavail = bsp->f_bavail;
232 1.2 fvdl lsp->l_ffiles = bsp->f_files;
233 1.2 fvdl lsp->l_fffree = bsp->f_ffree;
234 1.2 fvdl lsp->l_ffsid.val[0] = bsp->f_fsid.val[0];
235 1.2 fvdl lsp->l_ffsid.val[1] = bsp->f_fsid.val[1];
236 1.2 fvdl lsp->l_fnamelen = MAXNAMLEN; /* XXX */
237 1.2 fvdl }
238 1.2 fvdl
239 1.2 fvdl /*
240 1.2 fvdl * Implement the fs stat functions. Straightforward.
241 1.1 fvdl */
242 1.1 fvdl int
243 1.21 mycroft linux_sys_statfs(p, v, retval)
244 1.1 fvdl struct proc *p;
245 1.20 thorpej void *v;
246 1.20 thorpej register_t *retval;
247 1.20 thorpej {
248 1.21 mycroft struct linux_sys_statfs_args /* {
249 1.53 christos syscallarg(const char *) path;
250 1.1 fvdl syscallarg(struct linux_statfs *) sp;
251 1.20 thorpej } */ *uap = v;
252 1.2 fvdl struct statfs btmp, *bsp;
253 1.2 fvdl struct linux_statfs ltmp;
254 1.21 mycroft struct sys_statfs_args bsa;
255 1.2 fvdl caddr_t sg;
256 1.2 fvdl int error;
257 1.2 fvdl
258 1.9 christos sg = stackgap_init(p->p_emul);
259 1.2 fvdl bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
260 1.2 fvdl
261 1.9 christos LINUX_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
262 1.2 fvdl
263 1.2 fvdl SCARG(&bsa, path) = SCARG(uap, path);
264 1.2 fvdl SCARG(&bsa, buf) = bsp;
265 1.2 fvdl
266 1.21 mycroft if ((error = sys_statfs(p, &bsa, retval)))
267 1.2 fvdl return error;
268 1.2 fvdl
269 1.2 fvdl if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
270 1.2 fvdl return error;
271 1.2 fvdl
272 1.2 fvdl bsd_to_linux_statfs(&btmp, <mp);
273 1.2 fvdl
274 1.2 fvdl return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
275 1.1 fvdl }
276 1.1 fvdl
277 1.1 fvdl int
278 1.21 mycroft linux_sys_fstatfs(p, v, retval)
279 1.1 fvdl struct proc *p;
280 1.20 thorpej void *v;
281 1.20 thorpej register_t *retval;
282 1.20 thorpej {
283 1.21 mycroft struct linux_sys_fstatfs_args /* {
284 1.2 fvdl syscallarg(int) fd;
285 1.1 fvdl syscallarg(struct linux_statfs *) sp;
286 1.20 thorpej } */ *uap = v;
287 1.2 fvdl struct statfs btmp, *bsp;
288 1.2 fvdl struct linux_statfs ltmp;
289 1.21 mycroft struct sys_fstatfs_args bsa;
290 1.2 fvdl caddr_t sg;
291 1.2 fvdl int error;
292 1.2 fvdl
293 1.9 christos sg = stackgap_init(p->p_emul);
294 1.2 fvdl bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
295 1.2 fvdl
296 1.2 fvdl SCARG(&bsa, fd) = SCARG(uap, fd);
297 1.2 fvdl SCARG(&bsa, buf) = bsp;
298 1.2 fvdl
299 1.21 mycroft if ((error = sys_fstatfs(p, &bsa, retval)))
300 1.2 fvdl return error;
301 1.2 fvdl
302 1.2 fvdl if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
303 1.2 fvdl return error;
304 1.2 fvdl
305 1.2 fvdl bsd_to_linux_statfs(&btmp, <mp);
306 1.2 fvdl
307 1.2 fvdl return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
308 1.1 fvdl }
309 1.1 fvdl
310 1.1 fvdl /*
311 1.1 fvdl * uname(). Just copy the info from the various strings stored in the
312 1.1 fvdl * kernel, and put it in the Linux utsname structure. That structure
313 1.1 fvdl * is almost the same as the NetBSD one, only it has fields 65 characters
314 1.1 fvdl * long, and an extra domainname field.
315 1.1 fvdl */
316 1.1 fvdl int
317 1.21 mycroft linux_sys_uname(p, v, retval)
318 1.1 fvdl struct proc *p;
319 1.20 thorpej void *v;
320 1.20 thorpej register_t *retval;
321 1.20 thorpej {
322 1.21 mycroft struct linux_sys_uname_args /* {
323 1.1 fvdl syscallarg(struct linux_utsname *) up;
324 1.20 thorpej } */ *uap = v;
325 1.15 mycroft extern char ostype[], hostname[], osrelease[], version[], machine[],
326 1.15 mycroft domainname[];
327 1.15 mycroft struct linux_utsname luts;
328 1.1 fvdl int len;
329 1.1 fvdl char *cp;
330 1.1 fvdl
331 1.15 mycroft strncpy(luts.l_sysname, ostype, sizeof(luts.l_sysname));
332 1.15 mycroft strncpy(luts.l_nodename, hostname, sizeof(luts.l_nodename));
333 1.15 mycroft strncpy(luts.l_release, osrelease, sizeof(luts.l_release));
334 1.15 mycroft strncpy(luts.l_version, version, sizeof(luts.l_version));
335 1.15 mycroft strncpy(luts.l_machine, machine, sizeof(luts.l_machine));
336 1.15 mycroft strncpy(luts.l_domainname, domainname, sizeof(luts.l_domainname));
337 1.1 fvdl
338 1.1 fvdl /* This part taken from the the uname() in libc */
339 1.15 mycroft len = sizeof(luts.l_version);
340 1.48 perry for (cp = luts.l_version; len--; ++cp) {
341 1.48 perry if (*cp == '\n' || *cp == '\t') {
342 1.15 mycroft if (len > 1)
343 1.15 mycroft *cp = ' ';
344 1.15 mycroft else
345 1.15 mycroft *cp = '\0';
346 1.48 perry }
347 1.48 perry }
348 1.15 mycroft
349 1.15 mycroft return copyout(&luts, SCARG(uap, up), sizeof(luts));
350 1.15 mycroft }
351 1.15 mycroft
352 1.47 erh /* Used directly on: alpha, mips, ppc, sparc, sparc64 */
353 1.47 erh /* Used indirectly on: arm, i386, m68k */
354 1.1 fvdl
355 1.1 fvdl /*
356 1.47 erh * New type Linux mmap call.
357 1.47 erh * Only called directly on machines with >= 6 free regs.
358 1.1 fvdl */
359 1.1 fvdl int
360 1.21 mycroft linux_sys_mmap(p, v, retval)
361 1.1 fvdl struct proc *p;
362 1.20 thorpej void *v;
363 1.20 thorpej register_t *retval;
364 1.20 thorpej {
365 1.21 mycroft struct linux_sys_mmap_args /* {
366 1.47 erh syscallarg(unsigned long) addr;
367 1.47 erh syscallarg(size_t) len;
368 1.47 erh syscallarg(int) prot;
369 1.47 erh syscallarg(int) flags;
370 1.47 erh syscallarg(int) fd;
371 1.47 erh syscallarg(off_t) offset;
372 1.20 thorpej } */ *uap = v;
373 1.21 mycroft struct sys_mmap_args cma;
374 1.47 erh int flags;
375 1.47 erh
376 1.1 fvdl flags = 0;
377 1.47 erh flags |= cvtto_bsd_mask(SCARG(uap,flags), LINUX_MAP_SHARED, MAP_SHARED);
378 1.47 erh flags |= cvtto_bsd_mask(SCARG(uap,flags), LINUX_MAP_PRIVATE, MAP_PRIVATE);
379 1.47 erh flags |= cvtto_bsd_mask(SCARG(uap,flags), LINUX_MAP_FIXED, MAP_FIXED);
380 1.47 erh flags |= cvtto_bsd_mask(SCARG(uap,flags), LINUX_MAP_ANON, MAP_ANON);
381 1.47 erh /* XXX XAX ERH: Any other flags here? There are more defined... */
382 1.47 erh
383 1.47 erh SCARG(&cma,addr) = (void *)SCARG(uap, addr);
384 1.47 erh SCARG(&cma,len) = SCARG(uap, len);
385 1.47 erh SCARG(&cma,prot) = SCARG(uap, prot);
386 1.47 erh if (SCARG(&cma,prot) & VM_PROT_WRITE) /* XXX */
387 1.47 erh SCARG(&cma,prot) |= VM_PROT_READ;
388 1.1 fvdl SCARG(&cma,flags) = flags;
389 1.47 erh SCARG(&cma,fd) = SCARG(uap, fd);
390 1.1 fvdl SCARG(&cma,pad) = 0;
391 1.47 erh SCARG(&cma,pos) = SCARG(uap, offset);
392 1.1 fvdl
393 1.21 mycroft return sys_mmap(p, &cma, retval);
394 1.34 mycroft }
395 1.34 mycroft
396 1.34 mycroft int
397 1.34 mycroft linux_sys_mremap(p, v, retval)
398 1.34 mycroft struct proc *p;
399 1.34 mycroft void *v;
400 1.34 mycroft register_t *retval;
401 1.34 mycroft {
402 1.34 mycroft struct linux_sys_mremap_args /* {
403 1.34 mycroft syscallarg(void *) old_address;
404 1.34 mycroft syscallarg(size_t) old_size;
405 1.34 mycroft syscallarg(size_t) new_size;
406 1.34 mycroft syscallarg(u_long) flags;
407 1.34 mycroft } */ *uap = v;
408 1.42 thorpej struct sys_munmap_args mua;
409 1.42 thorpej size_t old_size, new_size;
410 1.42 thorpej int error;
411 1.42 thorpej
412 1.42 thorpej old_size = round_page(SCARG(uap, old_size));
413 1.42 thorpej new_size = round_page(SCARG(uap, new_size));
414 1.42 thorpej
415 1.42 thorpej /*
416 1.42 thorpej * Growing mapped region.
417 1.42 thorpej */
418 1.42 thorpej if (new_size > old_size) {
419 1.42 thorpej /*
420 1.42 thorpej * XXX Implement me. What we probably want to do is
421 1.42 thorpej * XXX dig out the guts of the old mapping, mmap that
422 1.42 thorpej * XXX object again with the new size, then munmap
423 1.42 thorpej * XXX the old mapping.
424 1.42 thorpej */
425 1.42 thorpej *retval = 0;
426 1.42 thorpej return (ENOMEM);
427 1.42 thorpej }
428 1.42 thorpej
429 1.42 thorpej /*
430 1.42 thorpej * Shrinking mapped region.
431 1.42 thorpej */
432 1.42 thorpej if (new_size < old_size) {
433 1.42 thorpej SCARG(&mua, addr) = (caddr_t)SCARG(uap, old_address) +
434 1.43 thorpej new_size;
435 1.42 thorpej SCARG(&mua, len) = old_size - new_size;
436 1.42 thorpej error = sys_munmap(p, &mua, retval);
437 1.42 thorpej *retval = error ? 0 : (register_t)SCARG(uap, old_address);
438 1.42 thorpej return (error);
439 1.42 thorpej }
440 1.34 mycroft
441 1.42 thorpej /*
442 1.42 thorpej * No change.
443 1.42 thorpej */
444 1.42 thorpej *retval = (register_t)SCARG(uap, old_address);
445 1.42 thorpej return (0);
446 1.24 fvdl }
447 1.24 fvdl
448 1.24 fvdl int
449 1.24 fvdl linux_sys_msync(p, v, retval)
450 1.24 fvdl struct proc *p;
451 1.24 fvdl void *v;
452 1.24 fvdl register_t *retval;
453 1.24 fvdl {
454 1.24 fvdl struct linux_sys_msync_args /* {
455 1.24 fvdl syscallarg(caddr_t) addr;
456 1.24 fvdl syscallarg(int) len;
457 1.24 fvdl syscallarg(int) fl;
458 1.24 fvdl } */ *uap = v;
459 1.24 fvdl
460 1.36 fvdl struct sys___msync13_args bma;
461 1.24 fvdl
462 1.24 fvdl /* flags are ignored */
463 1.24 fvdl SCARG(&bma, addr) = SCARG(uap, addr);
464 1.24 fvdl SCARG(&bma, len) = SCARG(uap, len);
465 1.36 fvdl SCARG(&bma, flags) = SCARG(uap, fl);
466 1.24 fvdl
467 1.36 fvdl return sys___msync13(p, &bma, retval);
468 1.1 fvdl }
469 1.1 fvdl
470 1.1 fvdl /*
471 1.1 fvdl * This code is partly stolen from src/lib/libc/compat-43/times.c
472 1.1 fvdl * XXX - CLK_TCK isn't declared in /sys, just in <time.h>, done here
473 1.1 fvdl */
474 1.1 fvdl
475 1.1 fvdl #define CLK_TCK 100
476 1.1 fvdl #define CONVTCK(r) (r.tv_sec * CLK_TCK + r.tv_usec / (1000000 / CLK_TCK))
477 1.1 fvdl
478 1.1 fvdl int
479 1.21 mycroft linux_sys_times(p, v, retval)
480 1.1 fvdl struct proc *p;
481 1.20 thorpej void *v;
482 1.20 thorpej register_t *retval;
483 1.20 thorpej {
484 1.21 mycroft struct linux_sys_times_args /* {
485 1.1 fvdl syscallarg(struct times *) tms;
486 1.20 thorpej } */ *uap = v;
487 1.1 fvdl struct timeval t;
488 1.1 fvdl struct linux_tms ltms;
489 1.1 fvdl struct rusage ru;
490 1.4 mycroft int error, s;
491 1.1 fvdl
492 1.1 fvdl calcru(p, &ru.ru_utime, &ru.ru_stime, NULL);
493 1.1 fvdl ltms.ltms_utime = CONVTCK(ru.ru_utime);
494 1.1 fvdl ltms.ltms_stime = CONVTCK(ru.ru_stime);
495 1.1 fvdl
496 1.1 fvdl ltms.ltms_cutime = CONVTCK(p->p_stats->p_cru.ru_utime);
497 1.1 fvdl ltms.ltms_cstime = CONVTCK(p->p_stats->p_cru.ru_stime);
498 1.1 fvdl
499 1.1 fvdl if ((error = copyout(<ms, SCARG(uap, tms), sizeof ltms)))
500 1.1 fvdl return error;
501 1.1 fvdl
502 1.4 mycroft s = splclock();
503 1.4 mycroft timersub(&time, &boottime, &t);
504 1.4 mycroft splx(s);
505 1.1 fvdl
506 1.1 fvdl retval[0] = ((linux_clock_t)(CONVTCK(t)));
507 1.1 fvdl return 0;
508 1.1 fvdl }
509 1.1 fvdl
510 1.1 fvdl /*
511 1.1 fvdl * Linux 'readdir' call. This code is mostly taken from the
512 1.1 fvdl * SunOS getdents call (see compat/sunos/sunos_misc.c), though
513 1.1 fvdl * an attempt has been made to keep it a little cleaner (failing
514 1.1 fvdl * miserably, because of the cruft needed if count 1 is passed).
515 1.1 fvdl *
516 1.17 fvdl * The d_off field should contain the offset of the next valid entry,
517 1.17 fvdl * but in Linux it has the offset of the entry itself. We emulate
518 1.17 fvdl * that bug here.
519 1.17 fvdl *
520 1.1 fvdl * Read in BSD-style entries, convert them, and copy them out.
521 1.1 fvdl *
522 1.1 fvdl * Note that this doesn't handle union-mounted filesystems.
523 1.1 fvdl */
524 1.1 fvdl int
525 1.21 mycroft linux_sys_getdents(p, v, retval)
526 1.1 fvdl struct proc *p;
527 1.20 thorpej void *v;
528 1.20 thorpej register_t *retval;
529 1.20 thorpej {
530 1.47 erh struct linux_sys_getdents_args /* {
531 1.1 fvdl syscallarg(int) fd;
532 1.47 erh syscallarg(struct linux_dirent *) dent;
533 1.1 fvdl syscallarg(unsigned int) count;
534 1.20 thorpej } */ *uap = v;
535 1.1 fvdl register struct dirent *bdp;
536 1.1 fvdl struct vnode *vp;
537 1.26 christos caddr_t inp, buf; /* BSD-format */
538 1.26 christos int len, reclen; /* BSD-format */
539 1.51 fvdl caddr_t outp; /* Linux-format */
540 1.26 christos int resid, linux_reclen = 0; /* Linux-format */
541 1.1 fvdl struct file *fp;
542 1.1 fvdl struct uio auio;
543 1.1 fvdl struct iovec aiov;
544 1.1 fvdl struct linux_dirent idb;
545 1.1 fvdl off_t off; /* true file offset */
546 1.17 fvdl int buflen, error, eofflag, nbytes, oldcall;
547 1.1 fvdl struct vattr va;
548 1.40 fvdl off_t *cookiebuf = NULL, *cookie;
549 1.22 mycroft int ncookies;
550 1.1 fvdl
551 1.1 fvdl if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
552 1.1 fvdl return (error);
553 1.1 fvdl
554 1.1 fvdl if ((fp->f_flag & FREAD) == 0)
555 1.1 fvdl return (EBADF);
556 1.1 fvdl
557 1.5 mycroft vp = (struct vnode *)fp->f_data;
558 1.45 rvb if (vp->v_type != VDIR)
559 1.45 rvb return (EINVAL);
560 1.1 fvdl
561 1.1 fvdl if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
562 1.1 fvdl return error;
563 1.1 fvdl
564 1.1 fvdl nbytes = SCARG(uap, count);
565 1.17 fvdl if (nbytes == 1) { /* emulating old, broken behaviour */
566 1.1 fvdl nbytes = sizeof (struct linux_dirent);
567 1.5 mycroft buflen = max(va.va_blocksize, nbytes);
568 1.17 fvdl oldcall = 1;
569 1.5 mycroft } else {
570 1.5 mycroft buflen = min(MAXBSIZE, nbytes);
571 1.33 fvdl if (buflen < va.va_blocksize)
572 1.33 fvdl buflen = va.va_blocksize;
573 1.17 fvdl oldcall = 0;
574 1.1 fvdl }
575 1.1 fvdl buf = malloc(buflen, M_TEMP, M_WAITOK);
576 1.33 fvdl
577 1.39 fvdl vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
578 1.1 fvdl off = fp->f_offset;
579 1.1 fvdl again:
580 1.1 fvdl aiov.iov_base = buf;
581 1.1 fvdl aiov.iov_len = buflen;
582 1.1 fvdl auio.uio_iov = &aiov;
583 1.1 fvdl auio.uio_iovcnt = 1;
584 1.1 fvdl auio.uio_rw = UIO_READ;
585 1.1 fvdl auio.uio_segflg = UIO_SYSSPACE;
586 1.1 fvdl auio.uio_procp = p;
587 1.1 fvdl auio.uio_resid = buflen;
588 1.1 fvdl auio.uio_offset = off;
589 1.1 fvdl /*
590 1.1 fvdl * First we read into the malloc'ed buffer, then
591 1.1 fvdl * we massage it into user space, one record at a time.
592 1.1 fvdl */
593 1.39 fvdl error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
594 1.39 fvdl &ncookies);
595 1.1 fvdl if (error)
596 1.1 fvdl goto out;
597 1.1 fvdl
598 1.1 fvdl inp = buf;
599 1.51 fvdl outp = (caddr_t)SCARG(uap, dent);
600 1.1 fvdl resid = nbytes;
601 1.35 fvdl if ((len = buflen - auio.uio_resid) == 0)
602 1.1 fvdl goto eof;
603 1.1 fvdl
604 1.22 mycroft for (cookie = cookiebuf; len > 0; len -= reclen) {
605 1.5 mycroft bdp = (struct dirent *)inp;
606 1.5 mycroft reclen = bdp->d_reclen;
607 1.1 fvdl if (reclen & 3)
608 1.1 fvdl panic("linux_readdir");
609 1.1 fvdl if (bdp->d_fileno == 0) {
610 1.1 fvdl inp += reclen; /* it is a hole; squish it out */
611 1.22 mycroft off = *cookie++;
612 1.1 fvdl continue;
613 1.1 fvdl }
614 1.21 mycroft linux_reclen = LINUX_RECLEN(&idb, bdp->d_namlen);
615 1.21 mycroft if (reclen > len || resid < linux_reclen) {
616 1.1 fvdl /* entry too big for buffer, so just stop */
617 1.1 fvdl outp++;
618 1.1 fvdl break;
619 1.1 fvdl }
620 1.1 fvdl /*
621 1.1 fvdl * Massage in place to make a Linux-shaped dirent (otherwise
622 1.1 fvdl * we have to worry about touching user memory outside of
623 1.1 fvdl * the copyout() call).
624 1.1 fvdl */
625 1.22 mycroft idb.d_ino = (linux_ino_t)bdp->d_fileno;
626 1.17 fvdl /*
627 1.21 mycroft * The old readdir() call misuses the offset and reclen fields.
628 1.17 fvdl */
629 1.22 mycroft if (oldcall) {
630 1.22 mycroft idb.d_off = (linux_off_t)linux_reclen;
631 1.22 mycroft idb.d_reclen = (u_short)bdp->d_namlen;
632 1.22 mycroft } else {
633 1.33 fvdl if (sizeof (linux_off_t) < 4 && (off >> 32) != 0) {
634 1.33 fvdl compat_offseterr(vp, "linux_getdents");
635 1.33 fvdl error = EINVAL;
636 1.33 fvdl goto out;
637 1.33 fvdl }
638 1.22 mycroft idb.d_off = (linux_off_t)off;
639 1.22 mycroft idb.d_reclen = (u_short)linux_reclen;
640 1.22 mycroft }
641 1.5 mycroft strcpy(idb.d_name, bdp->d_name);
642 1.21 mycroft if ((error = copyout((caddr_t)&idb, outp, linux_reclen)))
643 1.1 fvdl goto out;
644 1.1 fvdl /* advance past this real entry */
645 1.1 fvdl inp += reclen;
646 1.22 mycroft off = *cookie++; /* each entry points to itself */
647 1.1 fvdl /* advance output past Linux-shaped entry */
648 1.21 mycroft outp += linux_reclen;
649 1.21 mycroft resid -= linux_reclen;
650 1.17 fvdl if (oldcall)
651 1.1 fvdl break;
652 1.1 fvdl }
653 1.1 fvdl
654 1.1 fvdl /* if we squished out the whole block, try again */
655 1.51 fvdl if (outp == (caddr_t)SCARG(uap, dent))
656 1.1 fvdl goto again;
657 1.1 fvdl fp->f_offset = off; /* update the vnode offset */
658 1.1 fvdl
659 1.17 fvdl if (oldcall)
660 1.21 mycroft nbytes = resid + linux_reclen;
661 1.1 fvdl
662 1.1 fvdl eof:
663 1.1 fvdl *retval = nbytes - resid;
664 1.1 fvdl out:
665 1.39 fvdl VOP_UNLOCK(vp, 0);
666 1.40 fvdl if (cookiebuf)
667 1.40 fvdl free(cookiebuf, M_TEMP);
668 1.1 fvdl free(buf, M_TEMP);
669 1.1 fvdl return error;
670 1.1 fvdl }
671 1.1 fvdl
672 1.1 fvdl /*
673 1.17 fvdl * Even when just using registers to pass arguments to syscalls you can
674 1.17 fvdl * have 5 of them on the i386. So this newer version of select() does
675 1.17 fvdl * this.
676 1.1 fvdl */
677 1.1 fvdl int
678 1.21 mycroft linux_sys_select(p, v, retval)
679 1.1 fvdl struct proc *p;
680 1.20 thorpej void *v;
681 1.20 thorpej register_t *retval;
682 1.20 thorpej {
683 1.21 mycroft struct linux_sys_select_args /* {
684 1.17 fvdl syscallarg(int) nfds;
685 1.17 fvdl syscallarg(fd_set *) readfds;
686 1.17 fvdl syscallarg(fd_set *) writefds;
687 1.17 fvdl syscallarg(fd_set *) exceptfds;
688 1.17 fvdl syscallarg(struct timeval *) timeout;
689 1.20 thorpej } */ *uap = v;
690 1.20 thorpej
691 1.17 fvdl return linux_select1(p, retval, SCARG(uap, nfds), SCARG(uap, readfds),
692 1.17 fvdl SCARG(uap, writefds), SCARG(uap, exceptfds), SCARG(uap, timeout));
693 1.17 fvdl }
694 1.17 fvdl
695 1.17 fvdl /*
696 1.17 fvdl * Common code for the old and new versions of select(). A couple of
697 1.17 fvdl * things are important:
698 1.17 fvdl * 1) return the amount of time left in the 'timeout' parameter
699 1.17 fvdl * 2) select never returns ERESTART on Linux, always return EINTR
700 1.17 fvdl */
701 1.17 fvdl int
702 1.17 fvdl linux_select1(p, retval, nfds, readfds, writefds, exceptfds, timeout)
703 1.17 fvdl struct proc *p;
704 1.17 fvdl register_t *retval;
705 1.17 fvdl int nfds;
706 1.17 fvdl fd_set *readfds, *writefds, *exceptfds;
707 1.17 fvdl struct timeval *timeout;
708 1.17 fvdl {
709 1.21 mycroft struct sys_select_args bsa;
710 1.13 mycroft struct timeval tv0, tv1, utv, *tvp;
711 1.13 mycroft caddr_t sg;
712 1.1 fvdl int error;
713 1.1 fvdl
714 1.17 fvdl SCARG(&bsa, nd) = nfds;
715 1.17 fvdl SCARG(&bsa, in) = readfds;
716 1.17 fvdl SCARG(&bsa, ou) = writefds;
717 1.17 fvdl SCARG(&bsa, ex) = exceptfds;
718 1.17 fvdl SCARG(&bsa, tv) = timeout;
719 1.1 fvdl
720 1.7 fvdl /*
721 1.7 fvdl * Store current time for computation of the amount of
722 1.7 fvdl * time left.
723 1.7 fvdl */
724 1.17 fvdl if (timeout) {
725 1.17 fvdl if ((error = copyin(timeout, &utv, sizeof(utv))))
726 1.13 mycroft return error;
727 1.13 mycroft if (itimerfix(&utv)) {
728 1.13 mycroft /*
729 1.13 mycroft * The timeval was invalid. Convert it to something
730 1.13 mycroft * valid that will act as it does under Linux.
731 1.13 mycroft */
732 1.13 mycroft sg = stackgap_init(p->p_emul);
733 1.13 mycroft tvp = stackgap_alloc(&sg, sizeof(utv));
734 1.13 mycroft utv.tv_sec += utv.tv_usec / 1000000;
735 1.13 mycroft utv.tv_usec %= 1000000;
736 1.13 mycroft if (utv.tv_usec < 0) {
737 1.13 mycroft utv.tv_sec -= 1;
738 1.13 mycroft utv.tv_usec += 1000000;
739 1.13 mycroft }
740 1.13 mycroft if (utv.tv_sec < 0)
741 1.13 mycroft timerclear(&utv);
742 1.13 mycroft if ((error = copyout(&utv, tvp, sizeof(utv))))
743 1.13 mycroft return error;
744 1.13 mycroft SCARG(&bsa, tv) = tvp;
745 1.13 mycroft }
746 1.7 fvdl microtime(&tv0);
747 1.13 mycroft }
748 1.7 fvdl
749 1.21 mycroft error = sys_select(p, &bsa, retval);
750 1.10 mycroft if (error) {
751 1.10 mycroft /*
752 1.10 mycroft * See fs/select.c in the Linux kernel. Without this,
753 1.10 mycroft * Maelstrom doesn't work.
754 1.10 mycroft */
755 1.10 mycroft if (error == ERESTART)
756 1.10 mycroft error = EINTR;
757 1.7 fvdl return error;
758 1.10 mycroft }
759 1.7 fvdl
760 1.17 fvdl if (timeout) {
761 1.14 mycroft if (*retval) {
762 1.7 fvdl /*
763 1.13 mycroft * Compute how much time was left of the timeout,
764 1.7 fvdl * by subtracting the current time and the time
765 1.7 fvdl * before we started the call, and subtracting
766 1.7 fvdl * that result from the user-supplied value.
767 1.7 fvdl */
768 1.7 fvdl microtime(&tv1);
769 1.7 fvdl timersub(&tv1, &tv0, &tv1);
770 1.7 fvdl timersub(&utv, &tv1, &utv);
771 1.14 mycroft if (utv.tv_sec < 0)
772 1.14 mycroft timerclear(&utv);
773 1.14 mycroft } else
774 1.14 mycroft timerclear(&utv);
775 1.17 fvdl if ((error = copyout(&utv, timeout, sizeof(utv))))
776 1.7 fvdl return error;
777 1.7 fvdl }
778 1.13 mycroft
779 1.7 fvdl return 0;
780 1.1 fvdl }
781 1.1 fvdl
782 1.1 fvdl /*
783 1.1 fvdl * Get the process group of a certain process. Look it up
784 1.1 fvdl * and return the value.
785 1.1 fvdl */
786 1.1 fvdl int
787 1.21 mycroft linux_sys_getpgid(p, v, retval)
788 1.1 fvdl struct proc *p;
789 1.20 thorpej void *v;
790 1.20 thorpej register_t *retval;
791 1.20 thorpej {
792 1.21 mycroft struct linux_sys_getpgid_args /* {
793 1.1 fvdl syscallarg(int) pid;
794 1.20 thorpej } */ *uap = v;
795 1.1 fvdl struct proc *targp;
796 1.1 fvdl
797 1.26 christos if (SCARG(uap, pid) != 0 && SCARG(uap, pid) != p->p_pid) {
798 1.1 fvdl if ((targp = pfind(SCARG(uap, pid))) == 0)
799 1.1 fvdl return ESRCH;
800 1.26 christos }
801 1.1 fvdl else
802 1.1 fvdl targp = p;
803 1.1 fvdl
804 1.1 fvdl retval[0] = targp->p_pgid;
805 1.6 fvdl return 0;
806 1.6 fvdl }
807 1.6 fvdl
808 1.6 fvdl /*
809 1.6 fvdl * Set the 'personality' (emulation mode) for the current process. Only
810 1.6 fvdl * accept the Linux personality here (0). This call is needed because
811 1.6 fvdl * the Linux ELF crt0 issues it in an ugly kludge to make sure that
812 1.6 fvdl * ELF binaries run in Linux mode, not SVR4 mode.
813 1.6 fvdl */
814 1.6 fvdl int
815 1.21 mycroft linux_sys_personality(p, v, retval)
816 1.6 fvdl struct proc *p;
817 1.20 thorpej void *v;
818 1.20 thorpej register_t *retval;
819 1.20 thorpej {
820 1.21 mycroft struct linux_sys_personality_args /* {
821 1.6 fvdl syscallarg(int) per;
822 1.20 thorpej } */ *uap = v;
823 1.20 thorpej
824 1.6 fvdl if (SCARG(uap, per) != 0)
825 1.6 fvdl return EINVAL;
826 1.6 fvdl retval[0] = 0;
827 1.1 fvdl return 0;
828 1.18 fvdl }
829 1.18 fvdl
830 1.18 fvdl /*
831 1.18 fvdl * The calls are here because of type conversions.
832 1.18 fvdl */
833 1.18 fvdl int
834 1.21 mycroft linux_sys_setreuid(p, v, retval)
835 1.18 fvdl struct proc *p;
836 1.20 thorpej void *v;
837 1.20 thorpej register_t *retval;
838 1.20 thorpej {
839 1.21 mycroft struct linux_sys_setreuid_args /* {
840 1.18 fvdl syscallarg(int) ruid;
841 1.18 fvdl syscallarg(int) euid;
842 1.20 thorpej } */ *uap = v;
843 1.28 mycroft struct sys_setreuid_args bsa;
844 1.18 fvdl
845 1.18 fvdl SCARG(&bsa, ruid) = ((linux_uid_t)SCARG(uap, ruid) == (linux_uid_t)-1) ?
846 1.18 fvdl (uid_t)-1 : SCARG(uap, ruid);
847 1.18 fvdl SCARG(&bsa, euid) = ((linux_uid_t)SCARG(uap, euid) == (linux_uid_t)-1) ?
848 1.18 fvdl (uid_t)-1 : SCARG(uap, euid);
849 1.18 fvdl
850 1.28 mycroft return sys_setreuid(p, &bsa, retval);
851 1.18 fvdl }
852 1.18 fvdl
853 1.18 fvdl int
854 1.21 mycroft linux_sys_setregid(p, v, retval)
855 1.18 fvdl struct proc *p;
856 1.20 thorpej void *v;
857 1.20 thorpej register_t *retval;
858 1.20 thorpej {
859 1.21 mycroft struct linux_sys_setregid_args /* {
860 1.18 fvdl syscallarg(int) rgid;
861 1.18 fvdl syscallarg(int) egid;
862 1.20 thorpej } */ *uap = v;
863 1.28 mycroft struct sys_setregid_args bsa;
864 1.18 fvdl
865 1.18 fvdl SCARG(&bsa, rgid) = ((linux_gid_t)SCARG(uap, rgid) == (linux_gid_t)-1) ?
866 1.18 fvdl (uid_t)-1 : SCARG(uap, rgid);
867 1.18 fvdl SCARG(&bsa, egid) = ((linux_gid_t)SCARG(uap, egid) == (linux_gid_t)-1) ?
868 1.18 fvdl (uid_t)-1 : SCARG(uap, egid);
869 1.18 fvdl
870 1.28 mycroft return sys_setregid(p, &bsa, retval);
871 1.27 fvdl }
872 1.27 fvdl
873 1.27 fvdl int
874 1.27 fvdl linux_sys___sysctl(p, v, retval)
875 1.27 fvdl struct proc *p;
876 1.27 fvdl void *v;
877 1.27 fvdl register_t *retval;
878 1.27 fvdl {
879 1.27 fvdl struct linux_sys___sysctl_args /* {
880 1.27 fvdl syscallarg(struct linux___sysctl *) lsp;
881 1.27 fvdl } */ *uap = v;
882 1.27 fvdl struct linux___sysctl ls;
883 1.27 fvdl struct sys___sysctl_args bsa;
884 1.27 fvdl int error;
885 1.27 fvdl
886 1.27 fvdl if ((error = copyin(SCARG(uap, lsp), &ls, sizeof ls)))
887 1.27 fvdl return error;
888 1.27 fvdl SCARG(&bsa, name) = ls.name;
889 1.27 fvdl SCARG(&bsa, namelen) = ls.namelen;
890 1.27 fvdl SCARG(&bsa, old) = ls.old;
891 1.27 fvdl SCARG(&bsa, oldlenp) = ls.oldlenp;
892 1.27 fvdl SCARG(&bsa, new) = ls.new;
893 1.27 fvdl SCARG(&bsa, newlen) = ls.newlen;
894 1.27 fvdl
895 1.27 fvdl return sys___sysctl(p, &bsa, retval);
896 1.1 fvdl }
897