linux_misc.c revision 1.83.2.20 1 /* $NetBSD: linux_misc.c,v 1.83.2.20 2002/12/11 06:37:24 thorpej Exp $ */
2
3 /*-
4 * Copyright (c) 1995, 1998, 1999 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Frank van der Linden and Eric Haszlakiewicz; by Jason R. Thorpe
9 * of the Numerical Aerospace Simulation Facility, NASA Ames Research Center.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the NetBSD
22 * Foundation, Inc. and its contributors.
23 * 4. Neither the name of The NetBSD Foundation nor the names of its
24 * contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40 /*
41 * Linux compatibility module. Try to deal with various Linux system calls.
42 */
43
44 /*
45 * These functions have been moved to multiarch to allow
46 * selection of which machines include them to be
47 * determined by the individual files.linux_<arch> files.
48 *
49 * Function in multiarch:
50 * linux_sys_break : linux_break.c
51 * linux_sys_alarm : linux_misc_notalpha.c
52 * linux_sys_getresgid : linux_misc_notalpha.c
53 * linux_sys_nice : linux_misc_notalpha.c
54 * linux_sys_readdir : linux_misc_notalpha.c
55 * linux_sys_setresgid : linux_misc_notalpha.c
56 * linux_sys_time : linux_misc_notalpha.c
57 * linux_sys_utime : linux_misc_notalpha.c
58 * linux_sys_waitpid : linux_misc_notalpha.c
59 * linux_sys_old_mmap : linux_oldmmap.c
60 * linux_sys_oldolduname : linux_oldolduname.c
61 * linux_sys_oldselect : linux_oldselect.c
62 * linux_sys_olduname : linux_olduname.c
63 * linux_sys_pipe : linux_pipe.c
64 */
65
66 #include <sys/cdefs.h>
67 __KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.83.2.20 2002/12/11 06:37:24 thorpej Exp $");
68
69 #include <sys/param.h>
70 #include <sys/systm.h>
71 #include <sys/namei.h>
72 #include <sys/proc.h>
73 #include <sys/dirent.h>
74 #include <sys/file.h>
75 #include <sys/stat.h>
76 #include <sys/filedesc.h>
77 #include <sys/ioctl.h>
78 #include <sys/kernel.h>
79 #include <sys/malloc.h>
80 #include <sys/mbuf.h>
81 #include <sys/mman.h>
82 #include <sys/mount.h>
83 #include <sys/reboot.h>
84 #include <sys/resource.h>
85 #include <sys/resourcevar.h>
86 #include <sys/signal.h>
87 #include <sys/signalvar.h>
88 #include <sys/socket.h>
89 #include <sys/time.h>
90 #include <sys/times.h>
91 #include <sys/vnode.h>
92 #include <sys/uio.h>
93 #include <sys/wait.h>
94 #include <sys/utsname.h>
95 #include <sys/unistd.h>
96 #include <sys/swap.h> /* for SWAP_ON */
97 #include <sys/sysctl.h> /* for KERN_DOMAINNAME */
98
99 #include <sys/ptrace.h>
100 #include <machine/ptrace.h>
101
102 #include <sys/sa.h>
103 #include <sys/syscallargs.h>
104
105 #include <compat/linux/common/linux_types.h>
106 #include <compat/linux/common/linux_signal.h>
107
108 #include <compat/linux/linux_syscallargs.h>
109
110 #include <compat/linux/common/linux_fcntl.h>
111 #include <compat/linux/common/linux_mmap.h>
112 #include <compat/linux/common/linux_dirent.h>
113 #include <compat/linux/common/linux_util.h>
114 #include <compat/linux/common/linux_misc.h>
115 #include <compat/linux/common/linux_ptrace.h>
116 #include <compat/linux/common/linux_reboot.h>
117 #include <compat/linux/common/linux_emuldata.h>
118
119 const int linux_ptrace_request_map[] = {
120 LINUX_PTRACE_TRACEME, PT_TRACE_ME,
121 LINUX_PTRACE_PEEKTEXT, PT_READ_I,
122 LINUX_PTRACE_PEEKDATA, PT_READ_D,
123 LINUX_PTRACE_POKETEXT, PT_WRITE_I,
124 LINUX_PTRACE_POKEDATA, PT_WRITE_D,
125 LINUX_PTRACE_CONT, PT_CONTINUE,
126 LINUX_PTRACE_KILL, PT_KILL,
127 LINUX_PTRACE_ATTACH, PT_ATTACH,
128 LINUX_PTRACE_DETACH, PT_DETACH,
129 #ifdef PT_STEP
130 LINUX_PTRACE_SINGLESTEP, PT_STEP,
131 #endif
132 -1
133 };
134
135 static const struct mnttypes {
136 char *bsd;
137 int linux;
138 } fstypes[] = {
139 { MOUNT_FFS, LINUX_DEFAULT_SUPER_MAGIC },
140 { MOUNT_NFS, LINUX_NFS_SUPER_MAGIC },
141 { MOUNT_MFS, LINUX_DEFAULT_SUPER_MAGIC },
142 { MOUNT_MSDOS, LINUX_MSDOS_SUPER_MAGIC },
143 { MOUNT_LFS, LINUX_DEFAULT_SUPER_MAGIC },
144 { MOUNT_FDESC, LINUX_DEFAULT_SUPER_MAGIC },
145 { MOUNT_PORTAL, LINUX_DEFAULT_SUPER_MAGIC },
146 { MOUNT_NULL, LINUX_DEFAULT_SUPER_MAGIC },
147 { MOUNT_OVERLAY, LINUX_DEFAULT_SUPER_MAGIC },
148 { MOUNT_UMAP, LINUX_DEFAULT_SUPER_MAGIC },
149 { MOUNT_KERNFS, LINUX_DEFAULT_SUPER_MAGIC },
150 { MOUNT_PROCFS, LINUX_PROC_SUPER_MAGIC },
151 { MOUNT_AFS, LINUX_DEFAULT_SUPER_MAGIC },
152 { MOUNT_CD9660, LINUX_ISOFS_SUPER_MAGIC },
153 { MOUNT_UNION, LINUX_DEFAULT_SUPER_MAGIC },
154 { MOUNT_ADOSFS, LINUX_ADFS_SUPER_MAGIC },
155 { MOUNT_EXT2FS, LINUX_EXT2_SUPER_MAGIC },
156 { MOUNT_CFS, LINUX_DEFAULT_SUPER_MAGIC },
157 { MOUNT_CODA, LINUX_CODA_SUPER_MAGIC },
158 { MOUNT_FILECORE, LINUX_DEFAULT_SUPER_MAGIC },
159 { MOUNT_NTFS, LINUX_DEFAULT_SUPER_MAGIC },
160 { MOUNT_SMBFS, LINUX_SMB_SUPER_MAGIC }
161 };
162 #define FSTYPESSIZE (sizeof(fstypes) / sizeof(fstypes[0]))
163
164 #ifdef DEBUG_LINUX
165 #define DPRINTF(a) uprintf a
166 #else
167 #define DPRINTF(a)
168 #endif
169
170 /* Local linux_misc.c functions: */
171 static void bsd_to_linux_statfs __P((struct statfs *, struct linux_statfs *));
172 static int linux_to_bsd_limit __P((int));
173
174 /*
175 * The information on a terminated (or stopped) process needs
176 * to be converted in order for Linux binaries to get a valid signal
177 * number out of it.
178 */
179 void
180 bsd_to_linux_wstat(st)
181 int *st;
182 {
183
184 int sig;
185
186 if (WIFSIGNALED(*st)) {
187 sig = WTERMSIG(*st);
188 if (sig >= 0 && sig < NSIG)
189 *st= (*st& ~0177) | native_to_linux_signo[sig];
190 } else if (WIFSTOPPED(*st)) {
191 sig = WSTOPSIG(*st);
192 if (sig >= 0 && sig < NSIG)
193 *st = (*st & ~0xff00) |
194 (native_to_linux_signo[sig] << 8);
195 }
196 }
197
198 /*
199 * This is very much the same as waitpid()
200 */
201 int
202 linux_sys_wait4(l, v, retval)
203 struct lwp *l;
204 void *v;
205 register_t *retval;
206 {
207 struct linux_sys_wait4_args /* {
208 syscallarg(int) pid;
209 syscallarg(int *) status;
210 syscallarg(int) options;
211 syscallarg(struct rusage *) rusage;
212 } */ *uap = v;
213 struct proc *p = l->l_proc;
214 struct sys_wait4_args w4a;
215 int error, *status, tstat, options, linux_options;
216 caddr_t sg;
217
218 if (SCARG(uap, status) != NULL) {
219 sg = stackgap_init(p, 0);
220 status = (int *) stackgap_alloc(p, &sg, sizeof *status);
221 } else
222 status = NULL;
223
224 linux_options = SCARG(uap, options);
225 options = 0;
226 if (linux_options &
227 ~(LINUX_WAIT4_WNOHANG|LINUX_WAIT4_WUNTRACED|LINUX_WAIT4_WALL|
228 LINUX_WAIT4_WCLONE))
229 return (EINVAL);
230
231 if (linux_options & LINUX_WAIT4_WNOHANG)
232 options |= WNOHANG;
233 if (linux_options & LINUX_WAIT4_WUNTRACED)
234 options |= WUNTRACED;
235 if (linux_options & LINUX_WAIT4_WALL)
236 options |= WALLSIG;
237 if (linux_options & LINUX_WAIT4_WCLONE)
238 options |= WALTSIG;
239
240 SCARG(&w4a, pid) = SCARG(uap, pid);
241 SCARG(&w4a, status) = status;
242 SCARG(&w4a, options) = options;
243 SCARG(&w4a, rusage) = SCARG(uap, rusage);
244
245 if ((error = sys_wait4(l, &w4a, retval)))
246 return error;
247
248 sigdelset(&p->p_sigctx.ps_siglist, SIGCHLD);
249
250 if (status != NULL) {
251 if ((error = copyin(status, &tstat, sizeof tstat)))
252 return error;
253
254 bsd_to_linux_wstat(&tstat);
255 return copyout(&tstat, SCARG(uap, status), sizeof tstat);
256 }
257
258 return 0;
259 }
260
261 /*
262 * Linux brk(2). The check if the new address is >= the old one is
263 * done in the kernel in Linux. NetBSD does it in the library.
264 */
265 int
266 linux_sys_brk(l, v, retval)
267 struct lwp *l;
268 void *v;
269 register_t *retval;
270 {
271 struct linux_sys_brk_args /* {
272 syscallarg(char *) nsize;
273 } */ *uap = v;
274 struct proc *p = l->l_proc;
275 char *nbrk = SCARG(uap, nsize);
276 struct sys_obreak_args oba;
277 struct vmspace *vm = p->p_vmspace;
278 struct linux_emuldata *ed = (struct linux_emuldata*)p->p_emuldata;
279
280 SCARG(&oba, nsize) = nbrk;
281
282 if ((caddr_t) nbrk > vm->vm_daddr && sys_obreak(l, &oba, retval) == 0)
283 ed->p_break = (char*)nbrk;
284 else
285 nbrk = ed->p_break;
286
287 retval[0] = (register_t)nbrk;
288
289 return 0;
290 }
291
292 /*
293 * Convert BSD statfs structure to Linux statfs structure.
294 * The Linux structure has less fields, and it also wants
295 * the length of a name in a dir entry in a field, which
296 * we fake (probably the wrong way).
297 */
298 static void
299 bsd_to_linux_statfs(bsp, lsp)
300 struct statfs *bsp;
301 struct linux_statfs *lsp;
302 {
303 int i;
304
305 for (i = 0; i < FSTYPESSIZE; i++)
306 if (strcmp(bsp->f_fstypename, fstypes[i].bsd) == 0)
307 break;
308
309 if (i == FSTYPESSIZE) {
310 DPRINTF(("unhandled fstype in linux emulation: %s\n",
311 bsp->f_fstypename));
312 lsp->l_ftype = LINUX_DEFAULT_SUPER_MAGIC;
313 } else {
314 lsp->l_ftype = fstypes[i].linux;
315 }
316
317 lsp->l_fbsize = bsp->f_bsize;
318 lsp->l_fblocks = bsp->f_blocks;
319 lsp->l_fbfree = bsp->f_bfree;
320 lsp->l_fbavail = bsp->f_bavail;
321 lsp->l_ffiles = bsp->f_files;
322 lsp->l_fffree = bsp->f_ffree;
323 /* Linux sets the fsid to 0..., we don't */
324 lsp->l_ffsid.val[0] = bsp->f_fsid.val[0];
325 lsp->l_ffsid.val[1] = bsp->f_fsid.val[1];
326 lsp->l_fnamelen = MAXNAMLEN; /* XXX */
327 (void)memset(lsp->l_fspare, 0, sizeof(lsp->l_fspare));
328 }
329
330 /*
331 * Implement the fs stat functions. Straightforward.
332 */
333 int
334 linux_sys_statfs(l, v, retval)
335 struct lwp *l;
336 void *v;
337 register_t *retval;
338 {
339 struct linux_sys_statfs_args /* {
340 syscallarg(const char *) path;
341 syscallarg(struct linux_statfs *) sp;
342 } */ *uap = v;
343 struct proc *p = l->l_proc;
344 struct statfs btmp, *bsp;
345 struct linux_statfs ltmp;
346 struct sys_statfs_args bsa;
347 caddr_t sg;
348 int error;
349
350 sg = stackgap_init(p, 0);
351 bsp = (struct statfs *) stackgap_alloc(p, &sg, sizeof (struct statfs));
352
353 CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
354
355 SCARG(&bsa, path) = SCARG(uap, path);
356 SCARG(&bsa, buf) = bsp;
357
358 if ((error = sys_statfs(l, &bsa, retval)))
359 return error;
360
361 if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
362 return error;
363
364 bsd_to_linux_statfs(&btmp, <mp);
365
366 return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
367 }
368
369 int
370 linux_sys_fstatfs(l, v, retval)
371 struct lwp *l;
372 void *v;
373 register_t *retval;
374 {
375 struct linux_sys_fstatfs_args /* {
376 syscallarg(int) fd;
377 syscallarg(struct linux_statfs *) sp;
378 } */ *uap = v;
379 struct proc *p = l->l_proc;
380 struct statfs btmp, *bsp;
381 struct linux_statfs ltmp;
382 struct sys_fstatfs_args bsa;
383 caddr_t sg;
384 int error;
385
386 sg = stackgap_init(p, 0);
387 bsp = (struct statfs *) stackgap_alloc(p, &sg, sizeof (struct statfs));
388
389 SCARG(&bsa, fd) = SCARG(uap, fd);
390 SCARG(&bsa, buf) = bsp;
391
392 if ((error = sys_fstatfs(l, &bsa, retval)))
393 return error;
394
395 if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
396 return error;
397
398 bsd_to_linux_statfs(&btmp, <mp);
399
400 return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
401 }
402
403 /*
404 * uname(). Just copy the info from the various strings stored in the
405 * kernel, and put it in the Linux utsname structure. That structure
406 * is almost the same as the NetBSD one, only it has fields 65 characters
407 * long, and an extra domainname field.
408 */
409 int
410 linux_sys_uname(l, v, retval)
411 struct lwp *l;
412 void *v;
413 register_t *retval;
414 {
415 struct linux_sys_uname_args /* {
416 syscallarg(struct linux_utsname *) up;
417 } */ *uap = v;
418 struct linux_utsname luts;
419
420 strncpy(luts.l_sysname, linux_sysname, sizeof(luts.l_sysname));
421 strncpy(luts.l_nodename, hostname, sizeof(luts.l_nodename));
422 strncpy(luts.l_release, linux_release, sizeof(luts.l_release));
423 strncpy(luts.l_version, linux_version, sizeof(luts.l_version));
424 strncpy(luts.l_machine, machine, sizeof(luts.l_machine));
425 strncpy(luts.l_domainname, domainname, sizeof(luts.l_domainname));
426
427 return copyout(&luts, SCARG(uap, up), sizeof(luts));
428 }
429
430 /* Used directly on: alpha, mips, ppc, sparc, sparc64 */
431 /* Used indirectly on: arm, i386, m68k */
432
433 /*
434 * New type Linux mmap call.
435 * Only called directly on machines with >= 6 free regs.
436 */
437 int
438 linux_sys_mmap(l, v, retval)
439 struct lwp *l;
440 void *v;
441 register_t *retval;
442 {
443 struct linux_sys_mmap_args /* {
444 syscallarg(unsigned long) addr;
445 syscallarg(size_t) len;
446 syscallarg(int) prot;
447 syscallarg(int) flags;
448 syscallarg(int) fd;
449 syscallarg(linux_off_t) offset;
450 } */ *uap = v;
451 struct sys_mmap_args cma;
452 int flags, fl = SCARG(uap, flags);
453
454 flags = 0;
455 flags |= cvtto_bsd_mask(fl, LINUX_MAP_SHARED, MAP_SHARED);
456 flags |= cvtto_bsd_mask(fl, LINUX_MAP_PRIVATE, MAP_PRIVATE);
457 flags |= cvtto_bsd_mask(fl, LINUX_MAP_FIXED, MAP_FIXED);
458 flags |= cvtto_bsd_mask(fl, LINUX_MAP_ANON, MAP_ANON);
459 /* XXX XAX ERH: Any other flags here? There are more defined... */
460
461 SCARG(&cma, addr) = (void *)SCARG(uap, addr);
462 SCARG(&cma, len) = SCARG(uap, len);
463 SCARG(&cma, prot) = SCARG(uap, prot);
464 if (SCARG(&cma, prot) & VM_PROT_WRITE) /* XXX */
465 SCARG(&cma, prot) |= VM_PROT_READ;
466 SCARG(&cma, flags) = flags;
467 SCARG(&cma, fd) = flags & MAP_ANON ? -1 : SCARG(uap, fd);
468 SCARG(&cma, pad) = 0;
469 SCARG(&cma, pos) = (off_t)SCARG(uap, offset);
470
471 return sys_mmap(l, &cma, retval);
472 }
473
474 int
475 linux_sys_mremap(l, v, retval)
476 struct lwp *l;
477 void *v;
478 register_t *retval;
479 {
480 struct linux_sys_mremap_args /* {
481 syscallarg(void *) old_address;
482 syscallarg(size_t) old_size;
483 syscallarg(size_t) new_size;
484 syscallarg(u_long) flags;
485 } */ *uap = v;
486 struct sys_munmap_args mua;
487 size_t old_size, new_size;
488 int error;
489
490 old_size = round_page(SCARG(uap, old_size));
491 new_size = round_page(SCARG(uap, new_size));
492
493 /*
494 * Growing mapped region.
495 */
496 if (new_size > old_size) {
497 /*
498 * XXX Implement me. What we probably want to do is
499 * XXX dig out the guts of the old mapping, mmap that
500 * XXX object again with the new size, then munmap
501 * XXX the old mapping.
502 */
503 *retval = 0;
504 return (ENOMEM);
505 }
506
507 /*
508 * Shrinking mapped region.
509 */
510 if (new_size < old_size) {
511 SCARG(&mua, addr) = (caddr_t)SCARG(uap, old_address) +
512 new_size;
513 SCARG(&mua, len) = old_size - new_size;
514 error = sys_munmap(l, &mua, retval);
515 *retval = error ? 0 : (register_t)SCARG(uap, old_address);
516 return (error);
517 }
518
519 /*
520 * No change.
521 */
522 *retval = (register_t)SCARG(uap, old_address);
523 return (0);
524 }
525
526 int
527 linux_sys_msync(l, v, retval)
528 struct lwp *l;
529 void *v;
530 register_t *retval;
531 {
532 struct linux_sys_msync_args /* {
533 syscallarg(caddr_t) addr;
534 syscallarg(int) len;
535 syscallarg(int) fl;
536 } */ *uap = v;
537
538 struct sys___msync13_args bma;
539
540 /* flags are ignored */
541 SCARG(&bma, addr) = SCARG(uap, addr);
542 SCARG(&bma, len) = SCARG(uap, len);
543 SCARG(&bma, flags) = SCARG(uap, fl);
544
545 return sys___msync13(l, &bma, retval);
546 }
547
548 int
549 linux_sys_mprotect(l, v, retval)
550 struct lwp *l;
551 void *v;
552 register_t *retval;
553 {
554 struct linux_sys_mprotect_args /* {
555 syscallarg(const void *) start;
556 syscallarg(unsigned long) len;
557 syscallarg(int) prot;
558 } */ *uap = v;
559 unsigned long end, start = (unsigned long)SCARG(uap, start), len;
560 int prot = SCARG(uap, prot);
561 struct vm_map_entry *entry;
562 struct vm_map *map = &l->l_proc->p_vmspace->vm_map;
563
564 if (start & PAGE_MASK)
565 return EINVAL;
566
567 len = round_page(SCARG(uap, len));
568 end = start + len;
569
570 if (end < start)
571 return EINVAL;
572 else if (end == start)
573 return 0;
574
575 if (SCARG(uap, prot) & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
576 return EINVAL;
577
578 vm_map_lock(map);
579 #ifdef notdef
580 VM_MAP_RANGE_CHECK(map, start, end);
581 #endif
582 if (!uvm_map_lookup_entry(map, start, &entry) || entry->start > start) {
583 vm_map_unlock(map);
584 return EFAULT;
585 }
586 vm_map_unlock(map);
587 return uvm_map_protect(map, start, end, prot, FALSE);
588 }
589
590 /*
591 * This code is partly stolen from src/lib/libc/compat-43/times.c
592 */
593
594 #define CONVTCK(r) (r.tv_sec * hz + r.tv_usec / (1000000 / hz))
595
596 int
597 linux_sys_times(l, v, retval)
598 struct lwp *l;
599 void *v;
600 register_t *retval;
601 {
602 struct linux_sys_times_args /* {
603 syscallarg(struct times *) tms;
604 } */ *uap = v;
605 struct proc *p = l->l_proc;
606 struct timeval t;
607 int error, s;
608
609 if (SCARG(uap, tms)) {
610 struct linux_tms ltms;
611 struct rusage ru;
612
613 calcru(p, &ru.ru_utime, &ru.ru_stime, NULL);
614 ltms.ltms_utime = CONVTCK(ru.ru_utime);
615 ltms.ltms_stime = CONVTCK(ru.ru_stime);
616
617 ltms.ltms_cutime = CONVTCK(p->p_stats->p_cru.ru_utime);
618 ltms.ltms_cstime = CONVTCK(p->p_stats->p_cru.ru_stime);
619
620 if ((error = copyout(<ms, SCARG(uap, tms), sizeof ltms)))
621 return error;
622 }
623
624 s = splclock();
625 timersub(&time, &boottime, &t);
626 splx(s);
627
628 retval[0] = ((linux_clock_t)(CONVTCK(t)));
629 return 0;
630 }
631
632 #undef CONVTCK
633
634 /*
635 * Linux 'readdir' call. This code is mostly taken from the
636 * SunOS getdents call (see compat/sunos/sunos_misc.c), though
637 * an attempt has been made to keep it a little cleaner (failing
638 * miserably, because of the cruft needed if count 1 is passed).
639 *
640 * The d_off field should contain the offset of the next valid entry,
641 * but in Linux it has the offset of the entry itself. We emulate
642 * that bug here.
643 *
644 * Read in BSD-style entries, convert them, and copy them out.
645 *
646 * Note that this doesn't handle union-mounted filesystems.
647 */
648 int
649 linux_sys_getdents(l, v, retval)
650 struct lwp *l;
651 void *v;
652 register_t *retval;
653 {
654 struct linux_sys_getdents_args /* {
655 syscallarg(int) fd;
656 syscallarg(struct linux_dirent *) dent;
657 syscallarg(unsigned int) count;
658 } */ *uap = v;
659 struct proc *p = l->l_proc;
660 struct dirent *bdp;
661 struct vnode *vp;
662 caddr_t inp, buf; /* BSD-format */
663 int len, reclen; /* BSD-format */
664 caddr_t outp; /* Linux-format */
665 int resid, linux_reclen = 0; /* Linux-format */
666 struct file *fp;
667 struct uio auio;
668 struct iovec aiov;
669 struct linux_dirent idb;
670 off_t off; /* true file offset */
671 int buflen, error, eofflag, nbytes, oldcall;
672 struct vattr va;
673 off_t *cookiebuf = NULL, *cookie;
674 int ncookies;
675
676 /* getvnode() will use the descriptor for us */
677 if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
678 return (error);
679
680 if ((fp->f_flag & FREAD) == 0) {
681 error = EBADF;
682 goto out1;
683 }
684
685 vp = (struct vnode *)fp->f_data;
686 if (vp->v_type != VDIR) {
687 error = EINVAL;
688 goto out1;
689 }
690
691 if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
692 goto out1;
693
694 nbytes = SCARG(uap, count);
695 if (nbytes == 1) { /* emulating old, broken behaviour */
696 nbytes = sizeof (idb);
697 buflen = max(va.va_blocksize, nbytes);
698 oldcall = 1;
699 } else {
700 buflen = min(MAXBSIZE, nbytes);
701 if (buflen < va.va_blocksize)
702 buflen = va.va_blocksize;
703 oldcall = 0;
704 }
705 buf = malloc(buflen, M_TEMP, M_WAITOK);
706
707 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
708 off = fp->f_offset;
709 again:
710 aiov.iov_base = buf;
711 aiov.iov_len = buflen;
712 auio.uio_iov = &aiov;
713 auio.uio_iovcnt = 1;
714 auio.uio_rw = UIO_READ;
715 auio.uio_segflg = UIO_SYSSPACE;
716 auio.uio_procp = p;
717 auio.uio_resid = buflen;
718 auio.uio_offset = off;
719 /*
720 * First we read into the malloc'ed buffer, then
721 * we massage it into user space, one record at a time.
722 */
723 error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
724 &ncookies);
725 if (error)
726 goto out;
727
728 inp = buf;
729 outp = (caddr_t)SCARG(uap, dent);
730 resid = nbytes;
731 if ((len = buflen - auio.uio_resid) == 0)
732 goto eof;
733
734 for (cookie = cookiebuf; len > 0; len -= reclen) {
735 bdp = (struct dirent *)inp;
736 reclen = bdp->d_reclen;
737 if (reclen & 3)
738 panic("linux_readdir");
739 if (bdp->d_fileno == 0) {
740 inp += reclen; /* it is a hole; squish it out */
741 off = *cookie++;
742 continue;
743 }
744 linux_reclen = LINUX_RECLEN(&idb, bdp->d_namlen);
745 if (reclen > len || resid < linux_reclen) {
746 /* entry too big for buffer, so just stop */
747 outp++;
748 break;
749 }
750 /*
751 * Massage in place to make a Linux-shaped dirent (otherwise
752 * we have to worry about touching user memory outside of
753 * the copyout() call).
754 */
755 idb.d_ino = bdp->d_fileno;
756 /*
757 * The old readdir() call misuses the offset and reclen fields.
758 */
759 if (oldcall) {
760 idb.d_off = (linux_off_t)linux_reclen;
761 idb.d_reclen = (u_short)bdp->d_namlen;
762 } else {
763 if (sizeof (idb.d_off) <= 4 && (off >> 32) != 0) {
764 compat_offseterr(vp, "linux_getdents");
765 error = EINVAL;
766 goto out;
767 }
768 idb.d_off = (linux_off_t)off;
769 idb.d_reclen = (u_short)linux_reclen;
770 }
771 strcpy(idb.d_name, bdp->d_name);
772 if ((error = copyout((caddr_t)&idb, outp, linux_reclen)))
773 goto out;
774 /* advance past this real entry */
775 inp += reclen;
776 off = *cookie++; /* each entry points to itself */
777 /* advance output past Linux-shaped entry */
778 outp += linux_reclen;
779 resid -= linux_reclen;
780 if (oldcall)
781 break;
782 }
783
784 /* if we squished out the whole block, try again */
785 if (outp == (caddr_t)SCARG(uap, dent))
786 goto again;
787 fp->f_offset = off; /* update the vnode offset */
788
789 if (oldcall)
790 nbytes = resid + linux_reclen;
791
792 eof:
793 *retval = nbytes - resid;
794 out:
795 VOP_UNLOCK(vp, 0);
796 if (cookiebuf)
797 free(cookiebuf, M_TEMP);
798 free(buf, M_TEMP);
799 out1:
800 FILE_UNUSE(fp, p);
801 return error;
802 }
803
804 /*
805 * Even when just using registers to pass arguments to syscalls you can
806 * have 5 of them on the i386. So this newer version of select() does
807 * this.
808 */
809 int
810 linux_sys_select(l, v, retval)
811 struct lwp *l;
812 void *v;
813 register_t *retval;
814 {
815 struct linux_sys_select_args /* {
816 syscallarg(int) nfds;
817 syscallarg(fd_set *) readfds;
818 syscallarg(fd_set *) writefds;
819 syscallarg(fd_set *) exceptfds;
820 syscallarg(struct timeval *) timeout;
821 } */ *uap = v;
822
823 return linux_select1(l, retval, SCARG(uap, nfds), SCARG(uap, readfds),
824 SCARG(uap, writefds), SCARG(uap, exceptfds), SCARG(uap, timeout));
825 }
826
827 /*
828 * Common code for the old and new versions of select(). A couple of
829 * things are important:
830 * 1) return the amount of time left in the 'timeout' parameter
831 * 2) select never returns ERESTART on Linux, always return EINTR
832 */
833 int
834 linux_select1(l, retval, nfds, readfds, writefds, exceptfds, timeout)
835 struct lwp *l;
836 register_t *retval;
837 int nfds;
838 fd_set *readfds, *writefds, *exceptfds;
839 struct timeval *timeout;
840 {
841 struct sys_select_args bsa;
842 struct proc *p = l->l_proc;
843 struct timeval tv0, tv1, utv, *tvp;
844 caddr_t sg;
845 int error;
846
847 SCARG(&bsa, nd) = nfds;
848 SCARG(&bsa, in) = readfds;
849 SCARG(&bsa, ou) = writefds;
850 SCARG(&bsa, ex) = exceptfds;
851 SCARG(&bsa, tv) = timeout;
852
853 /*
854 * Store current time for computation of the amount of
855 * time left.
856 */
857 if (timeout) {
858 if ((error = copyin(timeout, &utv, sizeof(utv))))
859 return error;
860 if (itimerfix(&utv)) {
861 /*
862 * The timeval was invalid. Convert it to something
863 * valid that will act as it does under Linux.
864 */
865 sg = stackgap_init(p, 0);
866 tvp = stackgap_alloc(p, &sg, sizeof(utv));
867 utv.tv_sec += utv.tv_usec / 1000000;
868 utv.tv_usec %= 1000000;
869 if (utv.tv_usec < 0) {
870 utv.tv_sec -= 1;
871 utv.tv_usec += 1000000;
872 }
873 if (utv.tv_sec < 0)
874 timerclear(&utv);
875 if ((error = copyout(&utv, tvp, sizeof(utv))))
876 return error;
877 SCARG(&bsa, tv) = tvp;
878 }
879 microtime(&tv0);
880 }
881
882 error = sys_select(l, &bsa, retval);
883 if (error) {
884 /*
885 * See fs/select.c in the Linux kernel. Without this,
886 * Maelstrom doesn't work.
887 */
888 if (error == ERESTART)
889 error = EINTR;
890 return error;
891 }
892
893 if (timeout) {
894 if (*retval) {
895 /*
896 * Compute how much time was left of the timeout,
897 * by subtracting the current time and the time
898 * before we started the call, and subtracting
899 * that result from the user-supplied value.
900 */
901 microtime(&tv1);
902 timersub(&tv1, &tv0, &tv1);
903 timersub(&utv, &tv1, &utv);
904 if (utv.tv_sec < 0)
905 timerclear(&utv);
906 } else
907 timerclear(&utv);
908 if ((error = copyout(&utv, timeout, sizeof(utv))))
909 return error;
910 }
911
912 return 0;
913 }
914
915 /*
916 * Get the process group of a certain process. Look it up
917 * and return the value.
918 */
919 int
920 linux_sys_getpgid(l, v, retval)
921 struct lwp *l;
922 void *v;
923 register_t *retval;
924 {
925 struct linux_sys_getpgid_args /* {
926 syscallarg(int) pid;
927 } */ *uap = v;
928 struct proc *p = l->l_proc;
929 struct proc *targp;
930
931 if (SCARG(uap, pid) != 0 && SCARG(uap, pid) != p->p_pid) {
932 if ((targp = pfind(SCARG(uap, pid))) == 0)
933 return ESRCH;
934 }
935 else
936 targp = p;
937
938 retval[0] = targp->p_pgid;
939 return 0;
940 }
941
942 /*
943 * Set the 'personality' (emulation mode) for the current process. Only
944 * accept the Linux personality here (0). This call is needed because
945 * the Linux ELF crt0 issues it in an ugly kludge to make sure that
946 * ELF binaries run in Linux mode, not SVR4 mode.
947 */
948 int
949 linux_sys_personality(l, v, retval)
950 struct lwp *l;
951 void *v;
952 register_t *retval;
953 {
954 struct linux_sys_personality_args /* {
955 syscallarg(int) per;
956 } */ *uap = v;
957
958 if (SCARG(uap, per) != 0)
959 return EINVAL;
960 retval[0] = 0;
961 return 0;
962 }
963
964 #if defined(__i386__) || defined(__m68k__)
965 /*
966 * The calls are here because of type conversions.
967 */
968 int
969 linux_sys_setreuid16(l, v, retval)
970 struct lwp *l;
971 void *v;
972 register_t *retval;
973 {
974 struct linux_sys_setreuid16_args /* {
975 syscallarg(int) ruid;
976 syscallarg(int) euid;
977 } */ *uap = v;
978 struct sys_setreuid_args bsa;
979
980 SCARG(&bsa, ruid) = ((linux_uid_t)SCARG(uap, ruid) == (linux_uid_t)-1) ?
981 (uid_t)-1 : SCARG(uap, ruid);
982 SCARG(&bsa, euid) = ((linux_uid_t)SCARG(uap, euid) == (linux_uid_t)-1) ?
983 (uid_t)-1 : SCARG(uap, euid);
984
985 return sys_setreuid(l, &bsa, retval);
986 }
987
988 int
989 linux_sys_setregid16(l, v, retval)
990 struct lwp *l;
991 void *v;
992 register_t *retval;
993 {
994 struct linux_sys_setregid16_args /* {
995 syscallarg(int) rgid;
996 syscallarg(int) egid;
997 } */ *uap = v;
998 struct sys_setregid_args bsa;
999
1000 SCARG(&bsa, rgid) = ((linux_gid_t)SCARG(uap, rgid) == (linux_gid_t)-1) ?
1001 (uid_t)-1 : SCARG(uap, rgid);
1002 SCARG(&bsa, egid) = ((linux_gid_t)SCARG(uap, egid) == (linux_gid_t)-1) ?
1003 (uid_t)-1 : SCARG(uap, egid);
1004
1005 return sys_setregid(l, &bsa, retval);
1006 }
1007
1008 int
1009 linux_sys_setresuid16(l, v, retval)
1010 struct lwp *l;
1011 void *v;
1012 register_t *retval;
1013 {
1014 struct linux_sys_setresuid16_args /* {
1015 syscallarg(uid_t) ruid;
1016 syscallarg(uid_t) euid;
1017 syscallarg(uid_t) suid;
1018 } */ *uap = v;
1019 struct linux_sys_setresuid16_args lsa;
1020
1021 SCARG(&lsa, ruid) = ((linux_uid_t)SCARG(uap, ruid) == (linux_uid_t)-1) ?
1022 (uid_t)-1 : SCARG(uap, ruid);
1023 SCARG(&lsa, euid) = ((linux_uid_t)SCARG(uap, euid) == (linux_uid_t)-1) ?
1024 (uid_t)-1 : SCARG(uap, euid);
1025 SCARG(&lsa, suid) = ((linux_uid_t)SCARG(uap, suid) == (linux_uid_t)-1) ?
1026 (uid_t)-1 : SCARG(uap, suid);
1027
1028 return linux_sys_setresuid(l, &lsa, retval);
1029 }
1030
1031 int
1032 linux_sys_setresgid16(l, v, retval)
1033 struct lwp *l;
1034 void *v;
1035 register_t *retval;
1036 {
1037 struct linux_sys_setresgid16_args /* {
1038 syscallarg(gid_t) rgid;
1039 syscallarg(gid_t) egid;
1040 syscallarg(gid_t) sgid;
1041 } */ *uap = v;
1042 struct linux_sys_setresgid16_args lsa;
1043
1044 SCARG(&lsa, rgid) = ((linux_gid_t)SCARG(uap, rgid) == (linux_gid_t)-1) ?
1045 (gid_t)-1 : SCARG(uap, rgid);
1046 SCARG(&lsa, egid) = ((linux_gid_t)SCARG(uap, egid) == (linux_gid_t)-1) ?
1047 (gid_t)-1 : SCARG(uap, egid);
1048 SCARG(&lsa, sgid) = ((linux_gid_t)SCARG(uap, sgid) == (linux_gid_t)-1) ?
1049 (gid_t)-1 : SCARG(uap, sgid);
1050
1051 return linux_sys_setresgid(l, &lsa, retval);
1052 }
1053
1054 int
1055 linux_sys_getgroups16(l, v, retval)
1056 struct lwp *l;
1057 void *v;
1058 register_t *retval;
1059 {
1060 struct linux_sys_getgroups16_args /* {
1061 syscallarg(int) gidsetsize;
1062 syscallarg(linux_gid_t *) gidset;
1063 } */ *uap = v;
1064 struct proc *p = l->l_proc;
1065 caddr_t sg;
1066 int n, error, i;
1067 struct sys_getgroups_args bsa;
1068 gid_t *bset, *kbset;
1069 linux_gid_t *lset;
1070 struct pcred *pc = p->p_cred;
1071
1072 n = SCARG(uap, gidsetsize);
1073 if (n < 0)
1074 return EINVAL;
1075 error = 0;
1076 bset = kbset = NULL;
1077 lset = NULL;
1078 if (n > 0) {
1079 n = min(pc->pc_ucred->cr_ngroups, n);
1080 sg = stackgap_init(p, 0);
1081 bset = stackgap_alloc(p, &sg, n * sizeof (gid_t));
1082 kbset = malloc(n * sizeof (gid_t), M_TEMP, M_WAITOK);
1083 lset = malloc(n * sizeof (linux_gid_t), M_TEMP, M_WAITOK);
1084 if (bset == NULL || kbset == NULL || lset == NULL)
1085 return ENOMEM;
1086 SCARG(&bsa, gidsetsize) = n;
1087 SCARG(&bsa, gidset) = bset;
1088 error = sys_getgroups(l, &bsa, retval);
1089 if (error != 0)
1090 goto out;
1091 error = copyin(bset, kbset, n * sizeof (gid_t));
1092 if (error != 0)
1093 goto out;
1094 for (i = 0; i < n; i++)
1095 lset[i] = (linux_gid_t)kbset[i];
1096 error = copyout(lset, SCARG(uap, gidset),
1097 n * sizeof (linux_gid_t));
1098 } else
1099 *retval = pc->pc_ucred->cr_ngroups;
1100 out:
1101 if (kbset != NULL)
1102 free(kbset, M_TEMP);
1103 if (lset != NULL)
1104 free(lset, M_TEMP);
1105 return error;
1106 }
1107
1108 int
1109 linux_sys_setgroups16(l, v, retval)
1110 struct lwp *l;
1111 void *v;
1112 register_t *retval;
1113 {
1114 struct linux_sys_setgroups16_args /* {
1115 syscallarg(int) gidsetsize;
1116 syscallarg(linux_gid_t *) gidset;
1117 } */ *uap = v;
1118 struct proc *p = l->l_proc;
1119 caddr_t sg;
1120 int n;
1121 int error, i;
1122 struct sys_setgroups_args bsa;
1123 gid_t *bset, *kbset;
1124 linux_gid_t *lset;
1125
1126 n = SCARG(uap, gidsetsize);
1127 if (n < 0 || n > NGROUPS)
1128 return EINVAL;
1129 sg = stackgap_init(p, 0);
1130 bset = stackgap_alloc(p, &sg, n * sizeof (gid_t));
1131 lset = malloc(n * sizeof (linux_gid_t), M_TEMP, M_WAITOK);
1132 kbset = malloc(n * sizeof (gid_t), M_TEMP, M_WAITOK);
1133 if (lset == NULL || bset == NULL)
1134 return ENOMEM;
1135 error = copyin(SCARG(uap, gidset), lset, n * sizeof (linux_gid_t));
1136 if (error != 0)
1137 goto out;
1138 for (i = 0; i < n; i++)
1139 kbset[i] = (gid_t)lset[i];
1140 error = copyout(kbset, bset, n * sizeof (gid_t));
1141 if (error != 0)
1142 goto out;
1143 SCARG(&bsa, gidsetsize) = n;
1144 SCARG(&bsa, gidset) = bset;
1145 error = sys_setgroups(l, &bsa, retval);
1146
1147 out:
1148 if (lset != NULL)
1149 free(lset, M_TEMP);
1150 if (kbset != NULL)
1151 free(kbset, M_TEMP);
1152
1153 return error;
1154 }
1155
1156 #endif /* __i386__ || __m68k__ */
1157
1158 /*
1159 * We have nonexistent fsuid equal to uid.
1160 * If modification is requested, refuse.
1161 */
1162 int
1163 linux_sys_setfsuid(l, v, retval)
1164 struct lwp *l;
1165 void *v;
1166 register_t *retval;
1167 {
1168 struct linux_sys_setfsuid_args /* {
1169 syscallarg(uid_t) uid;
1170 } */ *uap = v;
1171 struct proc *p = l->l_proc;
1172 uid_t uid;
1173
1174 uid = SCARG(uap, uid);
1175 if (p->p_cred->p_ruid != uid)
1176 return sys_nosys(l, v, retval);
1177 else
1178 return (0);
1179 }
1180
1181 /* XXX XXX XXX */
1182 #ifndef alpha
1183 int
1184 linux_sys_getfsuid(l, v, retval)
1185 struct lwp *l;
1186 void *v;
1187 register_t *retval;
1188 {
1189 return sys_getuid(l, v, retval);
1190 }
1191 #endif
1192
1193 int
1194 linux_sys_setresuid(l, v, retval)
1195 struct lwp *l;
1196 void *v;
1197 register_t *retval;
1198 {
1199 struct linux_sys_setresuid_args /* {
1200 syscallarg(uid_t) ruid;
1201 syscallarg(uid_t) euid;
1202 syscallarg(uid_t) suid;
1203 } */ *uap = v;
1204 struct proc *p = l->l_proc;
1205 struct pcred *pc = p->p_cred;
1206 uid_t ruid, euid, suid;
1207 int error;
1208
1209 ruid = SCARG(uap, ruid);
1210 euid = SCARG(uap, euid);
1211 suid = SCARG(uap, suid);
1212
1213 /*
1214 * Note: These checks are a little different than the NetBSD
1215 * setreuid(2) call performs. This precisely follows the
1216 * behavior of the Linux kernel.
1217 */
1218 if (ruid != (uid_t)-1 &&
1219 ruid != pc->p_ruid &&
1220 ruid != pc->pc_ucred->cr_uid &&
1221 ruid != pc->p_svuid &&
1222 (error = suser(pc->pc_ucred, &p->p_acflag)))
1223 return (error);
1224
1225 if (euid != (uid_t)-1 &&
1226 euid != pc->p_ruid &&
1227 euid != pc->pc_ucred->cr_uid &&
1228 euid != pc->p_svuid &&
1229 (error = suser(pc->pc_ucred, &p->p_acflag)))
1230 return (error);
1231
1232 if (suid != (uid_t)-1 &&
1233 suid != pc->p_ruid &&
1234 suid != pc->pc_ucred->cr_uid &&
1235 suid != pc->p_svuid &&
1236 (error = suser(pc->pc_ucred, &p->p_acflag)))
1237 return (error);
1238
1239 /*
1240 * Now assign the new real, effective, and saved UIDs.
1241 * Note that Linux, unlike NetBSD in setreuid(2), does not
1242 * set the saved UID in this call unless the user specifies
1243 * it.
1244 */
1245 if (ruid != (uid_t)-1) {
1246 (void)chgproccnt(pc->p_ruid, -1);
1247 (void)chgproccnt(ruid, 1);
1248 pc->p_ruid = ruid;
1249 }
1250
1251 if (euid != (uid_t)-1) {
1252 pc->pc_ucred = crcopy(pc->pc_ucred);
1253 pc->pc_ucred->cr_uid = euid;
1254 }
1255
1256 if (suid != (uid_t)-1)
1257 pc->p_svuid = suid;
1258
1259 if (ruid != (uid_t)-1 && euid != (uid_t)-1 && suid != (uid_t)-1)
1260 p->p_flag |= P_SUGID;
1261 return (0);
1262 }
1263
1264 int
1265 linux_sys_getresuid(l, v, retval)
1266 struct lwp *l;
1267 void *v;
1268 register_t *retval;
1269 {
1270 struct linux_sys_getresuid_args /* {
1271 syscallarg(uid_t *) ruid;
1272 syscallarg(uid_t *) euid;
1273 syscallarg(uid_t *) suid;
1274 } */ *uap = v;
1275 struct proc *p = l->l_proc;
1276 struct pcred *pc = p->p_cred;
1277 int error;
1278
1279 /*
1280 * Linux copies these values out to userspace like so:
1281 *
1282 * 1. Copy out ruid.
1283 * 2. If that succeeds, copy out euid.
1284 * 3. If both of those succeed, copy out suid.
1285 */
1286 if ((error = copyout(&pc->p_ruid, SCARG(uap, ruid),
1287 sizeof(uid_t))) != 0)
1288 return (error);
1289
1290 if ((error = copyout(&pc->pc_ucred->cr_uid, SCARG(uap, euid),
1291 sizeof(uid_t))) != 0)
1292 return (error);
1293
1294 return (copyout(&pc->p_svuid, SCARG(uap, suid), sizeof(uid_t)));
1295 }
1296
1297 int
1298 linux_sys_ptrace(l, v, retval)
1299 struct lwp *l;
1300 void *v;
1301 register_t *retval;
1302 {
1303 struct linux_sys_ptrace_args /* {
1304 i386, m68k, powerpc: T=int
1305 alpha: T=long
1306 syscallarg(T) request;
1307 syscallarg(T) pid;
1308 syscallarg(T) addr;
1309 syscallarg(T) data;
1310 } */ *uap = v;
1311 const int *ptr;
1312 int request;
1313 int error;
1314
1315 ptr = linux_ptrace_request_map;
1316 request = SCARG(uap, request);
1317 while (*ptr != -1)
1318 if (*ptr++ == request) {
1319 struct sys_ptrace_args pta;
1320
1321 SCARG(&pta, req) = *ptr;
1322 SCARG(&pta, pid) = SCARG(uap, pid);
1323 SCARG(&pta, addr) = (caddr_t)SCARG(uap, addr);
1324 SCARG(&pta, data) = SCARG(uap, data);
1325
1326 /*
1327 * Linux ptrace(PTRACE_CONT, pid, 0, 0) means actually
1328 * to continue where the process left off previously.
1329 * The same thing is achieved by addr == (caddr_t) 1
1330 * on NetBSD, so rewrite 'addr' appropriately.
1331 */
1332 if (request == LINUX_PTRACE_CONT && SCARG(uap, addr)==0)
1333 SCARG(&pta, addr) = (caddr_t) 1;
1334
1335 error = sys_ptrace(l, &pta, retval);
1336 if (error)
1337 return error;
1338 switch (request) {
1339 case LINUX_PTRACE_PEEKTEXT:
1340 case LINUX_PTRACE_PEEKDATA:
1341 error = copyout (retval,
1342 (caddr_t)SCARG(uap, data), sizeof *retval);
1343 *retval = SCARG(uap, data);
1344 break;
1345 default:
1346 break;
1347 }
1348 return error;
1349 }
1350 else
1351 ptr++;
1352
1353 return LINUX_SYS_PTRACE_ARCH(l, uap, retval);
1354 }
1355
1356 int
1357 linux_sys_reboot(struct lwp *l, void *v, register_t *retval)
1358 {
1359 struct linux_sys_reboot_args /* {
1360 syscallarg(int) magic1;
1361 syscallarg(int) magic2;
1362 syscallarg(int) cmd;
1363 syscallarg(void *) arg;
1364 } */ *uap = v;
1365 struct sys_reboot_args /* {
1366 syscallarg(int) opt;
1367 syscallarg(char *) bootstr;
1368 } */ sra;
1369 struct proc *p = l->l_proc;
1370 int error;
1371
1372 if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
1373 return(error);
1374
1375 if (SCARG(uap, magic1) != LINUX_REBOOT_MAGIC1)
1376 return(EINVAL);
1377 if (SCARG(uap, magic2) != LINUX_REBOOT_MAGIC2 &&
1378 SCARG(uap, magic2) != LINUX_REBOOT_MAGIC2A &&
1379 SCARG(uap, magic2) != LINUX_REBOOT_MAGIC2B)
1380 return(EINVAL);
1381
1382 switch (SCARG(uap, cmd)) {
1383 case LINUX_REBOOT_CMD_RESTART:
1384 SCARG(&sra, opt) = RB_AUTOBOOT;
1385 break;
1386 case LINUX_REBOOT_CMD_HALT:
1387 SCARG(&sra, opt) = RB_HALT;
1388 break;
1389 case LINUX_REBOOT_CMD_POWER_OFF:
1390 SCARG(&sra, opt) = RB_HALT|RB_POWERDOWN;
1391 break;
1392 case LINUX_REBOOT_CMD_RESTART2:
1393 /* Reboot with an argument. */
1394 SCARG(&sra, opt) = RB_AUTOBOOT|RB_STRING;
1395 SCARG(&sra, bootstr) = SCARG(uap, arg);
1396 break;
1397 case LINUX_REBOOT_CMD_CAD_ON:
1398 return(EINVAL); /* We don't implement ctrl-alt-delete */
1399 case LINUX_REBOOT_CMD_CAD_OFF:
1400 return(0);
1401 default:
1402 return(EINVAL);
1403 }
1404
1405 return(sys_reboot(l, &sra, retval));
1406 }
1407
1408 /*
1409 * Copy of compat_12_sys_swapon().
1410 */
1411 int
1412 linux_sys_swapon(l, v, retval)
1413 struct lwp *l;
1414 void *v;
1415 register_t *retval;
1416 {
1417 struct sys_swapctl_args ua;
1418 struct linux_sys_swapon_args /* {
1419 syscallarg(const char *) name;
1420 } */ *uap = v;
1421
1422 SCARG(&ua, cmd) = SWAP_ON;
1423 SCARG(&ua, arg) = (void *)SCARG(uap, name);
1424 SCARG(&ua, misc) = 0; /* priority */
1425 return (sys_swapctl(l, &ua, retval));
1426 }
1427
1428 /*
1429 * Stop swapping to the file or block device specified by path.
1430 */
1431 int
1432 linux_sys_swapoff(l, v, retval)
1433 struct lwp *l;
1434 void *v;
1435 register_t *retval;
1436 {
1437 struct sys_swapctl_args ua;
1438 struct linux_sys_swapoff_args /* {
1439 syscallarg(const char *) path;
1440 } */ *uap = v;
1441
1442 SCARG(&ua, cmd) = SWAP_OFF;
1443 SCARG(&ua, arg) = (void *)SCARG(uap, path);
1444 return (sys_swapctl(l, &ua, retval));
1445 }
1446
1447 /*
1448 * Copy of compat_09_sys_setdomainname()
1449 */
1450 /* ARGSUSED */
1451 int
1452 linux_sys_setdomainname(l, v, retval)
1453 struct lwp *l;
1454 void *v;
1455 register_t *retval;
1456 {
1457 struct linux_sys_setdomainname_args /* {
1458 syscallarg(char *) domainname;
1459 syscallarg(int) len;
1460 } */ *uap = v;
1461 struct proc *p = l->l_proc;
1462 int name;
1463 int error;
1464
1465 if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
1466 return (error);
1467 name = KERN_DOMAINNAME;
1468 return (kern_sysctl(&name, 1, 0, 0, SCARG(uap, domainname),
1469 SCARG(uap, len), p));
1470 }
1471
1472 /*
1473 * sysinfo()
1474 */
1475 /* ARGSUSED */
1476 int
1477 linux_sys_sysinfo(l, v, retval)
1478 struct lwp *l;
1479 void *v;
1480 register_t *retval;
1481 {
1482 struct linux_sys_sysinfo_args /* {
1483 syscallarg(struct linux_sysinfo *) arg;
1484 } */ *uap = v;
1485 struct linux_sysinfo si;
1486 struct loadavg *la;
1487
1488 si.uptime = time.tv_sec - boottime.tv_sec;
1489 la = &averunnable;
1490 si.loads[0] = la->ldavg[0] * LINUX_SYSINFO_LOADS_SCALE / la->fscale;
1491 si.loads[1] = la->ldavg[1] * LINUX_SYSINFO_LOADS_SCALE / la->fscale;
1492 si.loads[2] = la->ldavg[2] * LINUX_SYSINFO_LOADS_SCALE / la->fscale;
1493 si.totalram = ctob(physmem);
1494 si.freeram = uvmexp.free * uvmexp.pagesize;
1495 si.sharedram = 0; /* XXX */
1496 si.bufferram = uvmexp.filepages * uvmexp.pagesize;
1497 si.totalswap = uvmexp.swpages * uvmexp.pagesize;
1498 si.freeswap = (uvmexp.swpages - uvmexp.swpginuse) * uvmexp.pagesize;
1499 si.procs = nprocs;
1500
1501 /* The following are only present in newer Linux kernels. */
1502 si.totalbig = 0;
1503 si.freebig = 0;
1504 si.mem_unit = 1;
1505
1506 return (copyout(&si, SCARG(uap, arg), sizeof si));
1507 }
1508
1509 #define bsd_to_linux_rlimit1(l, b, f) \
1510 (l)->f = ((b)->f == RLIM_INFINITY || \
1511 ((b)->f & 0xffffffff00000000ULL) != 0) ? \
1512 LINUX_RLIM_INFINITY : (int32_t)(b)->f
1513 #define bsd_to_linux_rlimit(l, b) \
1514 bsd_to_linux_rlimit1(l, b, rlim_cur); \
1515 bsd_to_linux_rlimit1(l, b, rlim_max)
1516
1517 #define linux_to_bsd_rlimit1(b, l, f) \
1518 (b)->f = (l)->f == LINUX_RLIM_INFINITY ? RLIM_INFINITY : (l)->f
1519 #define linux_to_bsd_rlimit(b, l) \
1520 linux_to_bsd_rlimit1(b, l, rlim_cur); \
1521 linux_to_bsd_rlimit1(b, l, rlim_max)
1522
1523 static int
1524 linux_to_bsd_limit(lim)
1525 int lim;
1526 {
1527 switch (lim) {
1528 case LINUX_RLIMIT_CPU:
1529 return RLIMIT_CPU;
1530 case LINUX_RLIMIT_FSIZE:
1531 return RLIMIT_FSIZE;
1532 case LINUX_RLIMIT_DATA:
1533 return RLIMIT_DATA;
1534 case LINUX_RLIMIT_STACK:
1535 return RLIMIT_STACK;
1536 case LINUX_RLIMIT_CORE:
1537 return RLIMIT_CORE;
1538 case LINUX_RLIMIT_RSS:
1539 return RLIMIT_RSS;
1540 case LINUX_RLIMIT_NPROC:
1541 return RLIMIT_NPROC;
1542 case LINUX_RLIMIT_NOFILE:
1543 return RLIMIT_NOFILE;
1544 case LINUX_RLIMIT_MEMLOCK:
1545 return RLIMIT_MEMLOCK;
1546 case LINUX_RLIMIT_AS:
1547 case LINUX_RLIMIT_LOCKS:
1548 return -EOPNOTSUPP;
1549 default:
1550 return -EINVAL;
1551 }
1552 }
1553
1554
1555 int
1556 linux_sys_getrlimit(l, v, retval)
1557 struct lwp *l;
1558 void *v;
1559 register_t *retval;
1560 {
1561 struct linux_sys_getrlimit_args /* {
1562 syscallarg(int) which;
1563 syscallarg(struct orlimit *) rlp;
1564 } */ *uap = v;
1565 struct proc *p = l->l_proc;
1566 caddr_t sg = stackgap_init(p, 0);
1567 struct sys_getrlimit_args ap;
1568 struct rlimit rl;
1569 struct orlimit orl;
1570 int error;
1571
1572 SCARG(&ap, which) = linux_to_bsd_limit(SCARG(uap, which));
1573 if ((error = SCARG(&ap, which)) < 0)
1574 return -error;
1575 SCARG(&ap, rlp) = stackgap_alloc(p, &sg, sizeof rl);
1576 if ((error = sys_getrlimit(l, &ap, retval)) != 0)
1577 return error;
1578 if ((error = copyin(SCARG(&ap, rlp), &rl, sizeof(rl))) != 0)
1579 return error;
1580 bsd_to_linux_rlimit(&orl, &rl);
1581 return copyout(&orl, SCARG(uap, rlp), sizeof(orl));
1582 }
1583
1584 int
1585 linux_sys_setrlimit(l, v, retval)
1586 struct lwp *l;
1587 void *v;
1588 register_t *retval;
1589 {
1590 struct linux_sys_setrlimit_args /* {
1591 syscallarg(int) which;
1592 syscallarg(struct orlimit *) rlp;
1593 } */ *uap = v;
1594 struct proc *p = l->l_proc;
1595 caddr_t sg = stackgap_init(p, 0);
1596 struct sys_setrlimit_args ap;
1597 struct rlimit rl;
1598 struct orlimit orl;
1599 int error;
1600
1601 SCARG(&ap, which) = linux_to_bsd_limit(SCARG(uap, which));
1602 SCARG(&ap, rlp) = stackgap_alloc(p, &sg, sizeof rl);
1603 if ((error = SCARG(&ap, which)) < 0)
1604 return -error;
1605 if ((error = copyin(SCARG(uap, rlp), &orl, sizeof(orl))) != 0)
1606 return error;
1607 linux_to_bsd_rlimit(&rl, &orl);
1608 /* XXX: alpha complains about this */
1609 if ((error = copyout(&rl, (void *)SCARG(&ap, rlp), sizeof(rl))) != 0)
1610 return error;
1611 return sys_setrlimit(l, &ap, retval);
1612 }
1613
1614 #ifndef __mips__
1615 /* XXX: this doesn't look 100% common, at least mips doesn't have it */
1616 int
1617 linux_sys_ugetrlimit(l, v, retval)
1618 struct lwp *l;
1619 void *v;
1620 register_t *retval;
1621 {
1622 return linux_sys_getrlimit(l, v, retval);
1623 }
1624 #endif
1625
1626 /*
1627 * This gets called for unsupported syscalls. The difference to sys_nosys()
1628 * is that process does not get SIGSYS, the call just returns with ENOSYS.
1629 * This is the way Linux does it and glibc depends on this behaviour.
1630 */
1631 int
1632 linux_sys_nosys(l, v, retval)
1633 struct lwp *l;
1634 void *v;
1635 register_t *retval;
1636 {
1637 return (ENOSYS);
1638 }
1639