]> CyberLeo.Net >> Repos - FreeBSD/releng/10.1.git/blob - sys/compat/linux/linux_misc.c
o Fix invalid TCP checksums with pf(4). [EN-16:02.pf]
[FreeBSD/releng/10.1.git] / sys / compat / linux / linux_misc.c
1 /*-
2  * Copyright (c) 2002 Doug Rabson
3  * Copyright (c) 1994-1995 Søren Schmidt
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer
11  *    in this position and unchanged.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include "opt_compat.h"
34 #include "opt_kdtrace.h"
35
36 #include <sys/param.h>
37 #include <sys/blist.h>
38 #include <sys/fcntl.h>
39 #if defined(__i386__)
40 #include <sys/imgact_aout.h>
41 #endif
42 #include <sys/jail.h>
43 #include <sys/kernel.h>
44 #include <sys/limits.h>
45 #include <sys/lock.h>
46 #include <sys/malloc.h>
47 #include <sys/mman.h>
48 #include <sys/mount.h>
49 #include <sys/mutex.h>
50 #include <sys/namei.h>
51 #include <sys/priv.h>
52 #include <sys/proc.h>
53 #include <sys/reboot.h>
54 #include <sys/racct.h>
55 #include <sys/resourcevar.h>
56 #include <sys/sched.h>
57 #include <sys/sdt.h>
58 #include <sys/signalvar.h>
59 #include <sys/stat.h>
60 #include <sys/syscallsubr.h>
61 #include <sys/sysctl.h>
62 #include <sys/sysproto.h>
63 #include <sys/systm.h>
64 #include <sys/time.h>
65 #include <sys/vmmeter.h>
66 #include <sys/vnode.h>
67 #include <sys/wait.h>
68 #include <sys/cpuset.h>
69
70 #include <security/mac/mac_framework.h>
71
72 #include <vm/vm.h>
73 #include <vm/pmap.h>
74 #include <vm/vm_kern.h>
75 #include <vm/vm_map.h>
76 #include <vm/vm_extern.h>
77 #include <vm/vm_object.h>
78 #include <vm/swap_pager.h>
79
80 #ifdef COMPAT_LINUX32
81 #include <machine/../linux32/linux.h>
82 #include <machine/../linux32/linux32_proto.h>
83 #else
84 #include <machine/../linux/linux.h>
85 #include <machine/../linux/linux_proto.h>
86 #endif
87
88 #include <compat/linux/linux_dtrace.h>
89 #include <compat/linux/linux_file.h>
90 #include <compat/linux/linux_mib.h>
91 #include <compat/linux/linux_signal.h>
92 #include <compat/linux/linux_util.h>
93 #include <compat/linux/linux_sysproto.h>
94 #include <compat/linux/linux_emul.h>
95 #include <compat/linux/linux_misc.h>
96
97 /* DTrace init */
98 LIN_SDT_PROVIDER_DECLARE(LINUX_DTRACE);
99
100 /* Linuxulator-global DTrace probes */
101 LIN_SDT_PROBE_DECLARE(locks, emul_lock, locked);
102 LIN_SDT_PROBE_DECLARE(locks, emul_lock, unlock);
103 LIN_SDT_PROBE_DECLARE(locks, emul_shared_rlock, locked);
104 LIN_SDT_PROBE_DECLARE(locks, emul_shared_rlock, unlock);
105 LIN_SDT_PROBE_DECLARE(locks, emul_shared_wlock, locked);
106 LIN_SDT_PROBE_DECLARE(locks, emul_shared_wlock, unlock);
107
108 int stclohz;                            /* Statistics clock frequency */
109
110 static unsigned int linux_to_bsd_resource[LINUX_RLIM_NLIMITS] = {
111         RLIMIT_CPU, RLIMIT_FSIZE, RLIMIT_DATA, RLIMIT_STACK,
112         RLIMIT_CORE, RLIMIT_RSS, RLIMIT_NPROC, RLIMIT_NOFILE,
113         RLIMIT_MEMLOCK, RLIMIT_AS 
114 };
115
116 struct l_sysinfo {
117         l_long          uptime;         /* Seconds since boot */
118         l_ulong         loads[3];       /* 1, 5, and 15 minute load averages */
119 #define LINUX_SYSINFO_LOADS_SCALE 65536
120         l_ulong         totalram;       /* Total usable main memory size */
121         l_ulong         freeram;        /* Available memory size */
122         l_ulong         sharedram;      /* Amount of shared memory */
123         l_ulong         bufferram;      /* Memory used by buffers */
124         l_ulong         totalswap;      /* Total swap space size */
125         l_ulong         freeswap;       /* swap space still available */
126         l_ushort        procs;          /* Number of current processes */
127         l_ushort        pads;
128         l_ulong         totalbig;
129         l_ulong         freebig;
130         l_uint          mem_unit;
131         char            _f[20-2*sizeof(l_long)-sizeof(l_int)];  /* padding */
132 };
133 int
134 linux_sysinfo(struct thread *td, struct linux_sysinfo_args *args)
135 {
136         struct l_sysinfo sysinfo;
137         vm_object_t object;
138         int i, j;
139         struct timespec ts;
140
141         getnanouptime(&ts);
142         if (ts.tv_nsec != 0)
143                 ts.tv_sec++;
144         sysinfo.uptime = ts.tv_sec;
145
146         /* Use the information from the mib to get our load averages */
147         for (i = 0; i < 3; i++)
148                 sysinfo.loads[i] = averunnable.ldavg[i] *
149                     LINUX_SYSINFO_LOADS_SCALE / averunnable.fscale;
150
151         sysinfo.totalram = physmem * PAGE_SIZE;
152         sysinfo.freeram = sysinfo.totalram - cnt.v_wire_count * PAGE_SIZE;
153
154         sysinfo.sharedram = 0;
155         mtx_lock(&vm_object_list_mtx);
156         TAILQ_FOREACH(object, &vm_object_list, object_list)
157                 if (object->shadow_count > 1)
158                         sysinfo.sharedram += object->resident_page_count;
159         mtx_unlock(&vm_object_list_mtx);
160
161         sysinfo.sharedram *= PAGE_SIZE;
162         sysinfo.bufferram = 0;
163
164         swap_pager_status(&i, &j);
165         sysinfo.totalswap = i * PAGE_SIZE;
166         sysinfo.freeswap = (i - j) * PAGE_SIZE;
167
168         sysinfo.procs = nprocs;
169
170         /* The following are only present in newer Linux kernels. */
171         sysinfo.totalbig = 0;
172         sysinfo.freebig = 0;
173         sysinfo.mem_unit = 1;
174
175         return (copyout(&sysinfo, args->info, sizeof(sysinfo)));
176 }
177
178 int
179 linux_alarm(struct thread *td, struct linux_alarm_args *args)
180 {
181         struct itimerval it, old_it;
182         u_int secs;
183         int error;
184
185 #ifdef DEBUG
186         if (ldebug(alarm))
187                 printf(ARGS(alarm, "%u"), args->secs);
188 #endif
189         
190         secs = args->secs;
191
192         if (secs > INT_MAX)
193                 secs = INT_MAX;
194
195         it.it_value.tv_sec = (long) secs;
196         it.it_value.tv_usec = 0;
197         it.it_interval.tv_sec = 0;
198         it.it_interval.tv_usec = 0;
199         error = kern_setitimer(td, ITIMER_REAL, &it, &old_it);
200         if (error)
201                 return (error);
202         if (timevalisset(&old_it.it_value)) {
203                 if (old_it.it_value.tv_usec != 0)
204                         old_it.it_value.tv_sec++;
205                 td->td_retval[0] = old_it.it_value.tv_sec;
206         }
207         return (0);
208 }
209
210 int
211 linux_brk(struct thread *td, struct linux_brk_args *args)
212 {
213         struct vmspace *vm = td->td_proc->p_vmspace;
214         vm_offset_t new, old;
215         struct obreak_args /* {
216                 char * nsize;
217         } */ tmp;
218
219 #ifdef DEBUG
220         if (ldebug(brk))
221                 printf(ARGS(brk, "%p"), (void *)(uintptr_t)args->dsend);
222 #endif
223         old = (vm_offset_t)vm->vm_daddr + ctob(vm->vm_dsize);
224         new = (vm_offset_t)args->dsend;
225         tmp.nsize = (char *)new;
226         if (((caddr_t)new > vm->vm_daddr) && !sys_obreak(td, &tmp))
227                 td->td_retval[0] = (long)new;
228         else
229                 td->td_retval[0] = (long)old;
230
231         return (0);
232 }
233
234 #if defined(__i386__)
235 /* XXX: what about amd64/linux32? */
236
237 int
238 linux_uselib(struct thread *td, struct linux_uselib_args *args)
239 {
240         struct nameidata ni;
241         struct vnode *vp;
242         struct exec *a_out;
243         struct vattr attr;
244         vm_offset_t vmaddr;
245         unsigned long file_offset;
246         unsigned long bss_size;
247         char *library;
248         ssize_t aresid;
249         int error, locked, writecount;
250
251         LCONVPATHEXIST(td, args->library, &library);
252
253 #ifdef DEBUG
254         if (ldebug(uselib))
255                 printf(ARGS(uselib, "%s"), library);
256 #endif
257
258         a_out = NULL;
259         locked = 0;
260         vp = NULL;
261
262         NDINIT(&ni, LOOKUP, ISOPEN | FOLLOW | LOCKLEAF | AUDITVNODE1,
263             UIO_SYSSPACE, library, td);
264         error = namei(&ni);
265         LFREEPATH(library);
266         if (error)
267                 goto cleanup;
268
269         vp = ni.ni_vp;
270         NDFREE(&ni, NDF_ONLY_PNBUF);
271
272         /*
273          * From here on down, we have a locked vnode that must be unlocked.
274          * XXX: The code below largely duplicates exec_check_permissions().
275          */
276         locked = 1;
277
278         /* Writable? */
279         error = VOP_GET_WRITECOUNT(vp, &writecount);
280         if (error != 0)
281                 goto cleanup;
282         if (writecount != 0) {
283                 error = ETXTBSY;
284                 goto cleanup;
285         }
286
287         /* Executable? */
288         error = VOP_GETATTR(vp, &attr, td->td_ucred);
289         if (error)
290                 goto cleanup;
291
292         if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
293             ((attr.va_mode & 0111) == 0) || (attr.va_type != VREG)) {
294                 /* EACCESS is what exec(2) returns. */
295                 error = ENOEXEC;
296                 goto cleanup;
297         }
298
299         /* Sensible size? */
300         if (attr.va_size == 0) {
301                 error = ENOEXEC;
302                 goto cleanup;
303         }
304
305         /* Can we access it? */
306         error = VOP_ACCESS(vp, VEXEC, td->td_ucred, td);
307         if (error)
308                 goto cleanup;
309
310         /*
311          * XXX: This should use vn_open() so that it is properly authorized,
312          * and to reduce code redundancy all over the place here.
313          * XXX: Not really, it duplicates far more of exec_check_permissions()
314          * than vn_open().
315          */
316 #ifdef MAC
317         error = mac_vnode_check_open(td->td_ucred, vp, VREAD);
318         if (error)
319                 goto cleanup;
320 #endif
321         error = VOP_OPEN(vp, FREAD, td->td_ucred, td, NULL);
322         if (error)
323                 goto cleanup;
324
325         /* Pull in executable header into exec_map */
326         error = vm_mmap(exec_map, (vm_offset_t *)&a_out, PAGE_SIZE,
327             VM_PROT_READ, VM_PROT_READ, 0, OBJT_VNODE, vp, 0);
328         if (error)
329                 goto cleanup;
330
331         /* Is it a Linux binary ? */
332         if (((a_out->a_magic >> 16) & 0xff) != 0x64) {
333                 error = ENOEXEC;
334                 goto cleanup;
335         }
336
337         /*
338          * While we are here, we should REALLY do some more checks
339          */
340
341         /* Set file/virtual offset based on a.out variant. */
342         switch ((int)(a_out->a_magic & 0xffff)) {
343         case 0413:                      /* ZMAGIC */
344                 file_offset = 1024;
345                 break;
346         case 0314:                      /* QMAGIC */
347                 file_offset = 0;
348                 break;
349         default:
350                 error = ENOEXEC;
351                 goto cleanup;
352         }
353
354         bss_size = round_page(a_out->a_bss);
355
356         /* Check various fields in header for validity/bounds. */
357         if (a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK) {
358                 error = ENOEXEC;
359                 goto cleanup;
360         }
361
362         /* text + data can't exceed file size */
363         if (a_out->a_data + a_out->a_text > attr.va_size) {
364                 error = EFAULT;
365                 goto cleanup;
366         }
367
368         /*
369          * text/data/bss must not exceed limits
370          * XXX - this is not complete. it should check current usage PLUS
371          * the resources needed by this library.
372          */
373         PROC_LOCK(td->td_proc);
374         if (a_out->a_text > maxtsiz ||
375             a_out->a_data + bss_size > lim_cur(td->td_proc, RLIMIT_DATA) ||
376             racct_set(td->td_proc, RACCT_DATA, a_out->a_data +
377             bss_size) != 0) {
378                 PROC_UNLOCK(td->td_proc);
379                 error = ENOMEM;
380                 goto cleanup;
381         }
382         PROC_UNLOCK(td->td_proc);
383
384         /*
385          * Prevent more writers.
386          * XXX: Note that if any of the VM operations fail below we don't
387          * clear this flag.
388          */
389         VOP_SET_TEXT(vp);
390
391         /*
392          * Lock no longer needed
393          */
394         locked = 0;
395         VOP_UNLOCK(vp, 0);
396
397         /*
398          * Check if file_offset page aligned. Currently we cannot handle
399          * misalinged file offsets, and so we read in the entire image
400          * (what a waste).
401          */
402         if (file_offset & PAGE_MASK) {
403 #ifdef DEBUG
404                 printf("uselib: Non page aligned binary %lu\n", file_offset);
405 #endif
406                 /* Map text+data read/write/execute */
407
408                 /* a_entry is the load address and is page aligned */
409                 vmaddr = trunc_page(a_out->a_entry);
410
411                 /* get anon user mapping, read+write+execute */
412                 error = vm_map_find(&td->td_proc->p_vmspace->vm_map, NULL, 0,
413                     &vmaddr, a_out->a_text + a_out->a_data, 0, VMFS_NO_SPACE,
414                     VM_PROT_ALL, VM_PROT_ALL, 0);
415                 if (error)
416                         goto cleanup;
417
418                 error = vn_rdwr(UIO_READ, vp, (void *)vmaddr, file_offset,
419                     a_out->a_text + a_out->a_data, UIO_USERSPACE, 0,
420                     td->td_ucred, NOCRED, &aresid, td);
421                 if (error != 0)
422                         goto cleanup;
423                 if (aresid != 0) {
424                         error = ENOEXEC;
425                         goto cleanup;
426                 }
427         } else {
428 #ifdef DEBUG
429                 printf("uselib: Page aligned binary %lu\n", file_offset);
430 #endif
431                 /*
432                  * for QMAGIC, a_entry is 20 bytes beyond the load address
433                  * to skip the executable header
434                  */
435                 vmaddr = trunc_page(a_out->a_entry);
436
437                 /*
438                  * Map it all into the process's space as a single
439                  * copy-on-write "data" segment.
440                  */
441                 error = vm_mmap(&td->td_proc->p_vmspace->vm_map, &vmaddr,
442                     a_out->a_text + a_out->a_data, VM_PROT_ALL, VM_PROT_ALL,
443                     MAP_PRIVATE | MAP_FIXED, OBJT_VNODE, vp, file_offset);
444                 if (error)
445                         goto cleanup;
446         }
447 #ifdef DEBUG
448         printf("mem=%08lx = %08lx %08lx\n", (long)vmaddr, ((long *)vmaddr)[0],
449             ((long *)vmaddr)[1]);
450 #endif
451         if (bss_size != 0) {
452                 /* Calculate BSS start address */
453                 vmaddr = trunc_page(a_out->a_entry) + a_out->a_text +
454                     a_out->a_data;
455
456                 /* allocate some 'anon' space */
457                 error = vm_map_find(&td->td_proc->p_vmspace->vm_map, NULL, 0,
458                     &vmaddr, bss_size, 0, VMFS_NO_SPACE, VM_PROT_ALL,
459                     VM_PROT_ALL, 0);
460                 if (error)
461                         goto cleanup;
462         }
463
464 cleanup:
465         /* Unlock vnode if needed */
466         if (locked)
467                 VOP_UNLOCK(vp, 0);
468
469         /* Release the temporary mapping. */
470         if (a_out)
471                 kmap_free_wakeup(exec_map, (vm_offset_t)a_out, PAGE_SIZE);
472
473         return (error);
474 }
475
476 #endif  /* __i386__ */
477
478 int
479 linux_select(struct thread *td, struct linux_select_args *args)
480 {
481         l_timeval ltv;
482         struct timeval tv0, tv1, utv, *tvp;
483         int error;
484
485 #ifdef DEBUG
486         if (ldebug(select))
487                 printf(ARGS(select, "%d, %p, %p, %p, %p"), args->nfds,
488                     (void *)args->readfds, (void *)args->writefds,
489                     (void *)args->exceptfds, (void *)args->timeout);
490 #endif
491
492         /*
493          * Store current time for computation of the amount of
494          * time left.
495          */
496         if (args->timeout) {
497                 if ((error = copyin(args->timeout, &ltv, sizeof(ltv))))
498                         goto select_out;
499                 utv.tv_sec = ltv.tv_sec;
500                 utv.tv_usec = ltv.tv_usec;
501 #ifdef DEBUG
502                 if (ldebug(select))
503                         printf(LMSG("incoming timeout (%jd/%ld)"),
504                             (intmax_t)utv.tv_sec, utv.tv_usec);
505 #endif
506
507                 if (itimerfix(&utv)) {
508                         /*
509                          * The timeval was invalid.  Convert it to something
510                          * valid that will act as it does under Linux.
511                          */
512                         utv.tv_sec += utv.tv_usec / 1000000;
513                         utv.tv_usec %= 1000000;
514                         if (utv.tv_usec < 0) {
515                                 utv.tv_sec -= 1;
516                                 utv.tv_usec += 1000000;
517                         }
518                         if (utv.tv_sec < 0)
519                                 timevalclear(&utv);
520                 }
521                 microtime(&tv0);
522                 tvp = &utv;
523         } else
524                 tvp = NULL;
525
526         error = kern_select(td, args->nfds, args->readfds, args->writefds,
527             args->exceptfds, tvp, sizeof(l_int) * 8);
528
529 #ifdef DEBUG
530         if (ldebug(select))
531                 printf(LMSG("real select returns %d"), error);
532 #endif
533         if (error)
534                 goto select_out;
535
536         if (args->timeout) {
537                 if (td->td_retval[0]) {
538                         /*
539                          * Compute how much time was left of the timeout,
540                          * by subtracting the current time and the time
541                          * before we started the call, and subtracting
542                          * that result from the user-supplied value.
543                          */
544                         microtime(&tv1);
545                         timevalsub(&tv1, &tv0);
546                         timevalsub(&utv, &tv1);
547                         if (utv.tv_sec < 0)
548                                 timevalclear(&utv);
549                 } else
550                         timevalclear(&utv);
551 #ifdef DEBUG
552                 if (ldebug(select))
553                         printf(LMSG("outgoing timeout (%jd/%ld)"),
554                             (intmax_t)utv.tv_sec, utv.tv_usec);
555 #endif
556                 ltv.tv_sec = utv.tv_sec;
557                 ltv.tv_usec = utv.tv_usec;
558                 if ((error = copyout(&ltv, args->timeout, sizeof(ltv))))
559                         goto select_out;
560         }
561
562 select_out:
563 #ifdef DEBUG
564         if (ldebug(select))
565                 printf(LMSG("select_out -> %d"), error);
566 #endif
567         return (error);
568 }
569
570 int
571 linux_mremap(struct thread *td, struct linux_mremap_args *args)
572 {
573         struct munmap_args /* {
574                 void *addr;
575                 size_t len;
576         } */ bsd_args;
577         int error = 0;
578
579 #ifdef DEBUG
580         if (ldebug(mremap))
581                 printf(ARGS(mremap, "%p, %08lx, %08lx, %08lx"),
582                     (void *)(uintptr_t)args->addr,
583                     (unsigned long)args->old_len,
584                     (unsigned long)args->new_len,
585                     (unsigned long)args->flags);
586 #endif
587
588         if (args->flags & ~(LINUX_MREMAP_FIXED | LINUX_MREMAP_MAYMOVE)) {
589                 td->td_retval[0] = 0;
590                 return (EINVAL);
591         }
592
593         /*
594          * Check for the page alignment.
595          * Linux defines PAGE_MASK to be FreeBSD ~PAGE_MASK.
596          */
597         if (args->addr & PAGE_MASK) {
598                 td->td_retval[0] = 0;
599                 return (EINVAL);
600         }
601
602         args->new_len = round_page(args->new_len);
603         args->old_len = round_page(args->old_len);
604
605         if (args->new_len > args->old_len) {
606                 td->td_retval[0] = 0;
607                 return (ENOMEM);
608         }
609
610         if (args->new_len < args->old_len) {
611                 bsd_args.addr =
612                     (caddr_t)((uintptr_t)args->addr + args->new_len);
613                 bsd_args.len = args->old_len - args->new_len;
614                 error = sys_munmap(td, &bsd_args);
615         }
616
617         td->td_retval[0] = error ? 0 : (uintptr_t)args->addr;
618         return (error);
619 }
620
621 #define LINUX_MS_ASYNC       0x0001
622 #define LINUX_MS_INVALIDATE  0x0002
623 #define LINUX_MS_SYNC        0x0004
624
625 int
626 linux_msync(struct thread *td, struct linux_msync_args *args)
627 {
628         struct msync_args bsd_args;
629
630         bsd_args.addr = (caddr_t)(uintptr_t)args->addr;
631         bsd_args.len = (uintptr_t)args->len;
632         bsd_args.flags = args->fl & ~LINUX_MS_SYNC;
633
634         return (sys_msync(td, &bsd_args));
635 }
636
637 int
638 linux_time(struct thread *td, struct linux_time_args *args)
639 {
640         struct timeval tv;
641         l_time_t tm;
642         int error;
643
644 #ifdef DEBUG
645         if (ldebug(time))
646                 printf(ARGS(time, "*"));
647 #endif
648
649         microtime(&tv);
650         tm = tv.tv_sec;
651         if (args->tm && (error = copyout(&tm, args->tm, sizeof(tm))))
652                 return (error);
653         td->td_retval[0] = tm;
654         return (0);
655 }
656
657 struct l_times_argv {
658         l_clock_t       tms_utime;
659         l_clock_t       tms_stime;
660         l_clock_t       tms_cutime;
661         l_clock_t       tms_cstime;
662 };
663
664
665 /*
666  * Glibc versions prior to 2.2.1 always use hard-coded CLK_TCK value.
667  * Since 2.2.1 Glibc uses value exported from kernel via AT_CLKTCK
668  * auxiliary vector entry.
669  */
670 #define CLK_TCK         100
671
672 #define CONVOTCK(r)     (r.tv_sec * CLK_TCK + r.tv_usec / (1000000 / CLK_TCK))
673 #define CONVNTCK(r)     (r.tv_sec * stclohz + r.tv_usec / (1000000 / stclohz))
674
675 #define CONVTCK(r)      (linux_kernver(td) >= LINUX_KERNVER_2004000 ?           \
676                             CONVNTCK(r) : CONVOTCK(r))
677
678 int
679 linux_times(struct thread *td, struct linux_times_args *args)
680 {
681         struct timeval tv, utime, stime, cutime, cstime;
682         struct l_times_argv tms;
683         struct proc *p;
684         int error;
685
686 #ifdef DEBUG
687         if (ldebug(times))
688                 printf(ARGS(times, "*"));
689 #endif
690
691         if (args->buf != NULL) {
692                 p = td->td_proc;
693                 PROC_LOCK(p);
694                 PROC_SLOCK(p);
695                 calcru(p, &utime, &stime);
696                 PROC_SUNLOCK(p);
697                 calccru(p, &cutime, &cstime);
698                 PROC_UNLOCK(p);
699
700                 tms.tms_utime = CONVTCK(utime);
701                 tms.tms_stime = CONVTCK(stime);
702
703                 tms.tms_cutime = CONVTCK(cutime);
704                 tms.tms_cstime = CONVTCK(cstime);
705
706                 if ((error = copyout(&tms, args->buf, sizeof(tms))))
707                         return (error);
708         }
709
710         microuptime(&tv);
711         td->td_retval[0] = (int)CONVTCK(tv);
712         return (0);
713 }
714
715 int
716 linux_newuname(struct thread *td, struct linux_newuname_args *args)
717 {
718         struct l_new_utsname utsname;
719         char osname[LINUX_MAX_UTSNAME];
720         char osrelease[LINUX_MAX_UTSNAME];
721         char *p;
722
723 #ifdef DEBUG
724         if (ldebug(newuname))
725                 printf(ARGS(newuname, "*"));
726 #endif
727
728         linux_get_osname(td, osname);
729         linux_get_osrelease(td, osrelease);
730
731         bzero(&utsname, sizeof(utsname));
732         strlcpy(utsname.sysname, osname, LINUX_MAX_UTSNAME);
733         getcredhostname(td->td_ucred, utsname.nodename, LINUX_MAX_UTSNAME);
734         getcreddomainname(td->td_ucred, utsname.domainname, LINUX_MAX_UTSNAME);
735         strlcpy(utsname.release, osrelease, LINUX_MAX_UTSNAME);
736         strlcpy(utsname.version, version, LINUX_MAX_UTSNAME);
737         for (p = utsname.version; *p != '\0'; ++p)
738                 if (*p == '\n') {
739                         *p = '\0';
740                         break;
741                 }
742         strlcpy(utsname.machine, linux_platform, LINUX_MAX_UTSNAME);
743
744         return (copyout(&utsname, args->buf, sizeof(utsname)));
745 }
746
747 #if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
748 struct l_utimbuf {
749         l_time_t l_actime;
750         l_time_t l_modtime;
751 };
752
753 int
754 linux_utime(struct thread *td, struct linux_utime_args *args)
755 {
756         struct timeval tv[2], *tvp;
757         struct l_utimbuf lut;
758         char *fname;
759         int error;
760
761         LCONVPATHEXIST(td, args->fname, &fname);
762
763 #ifdef DEBUG
764         if (ldebug(utime))
765                 printf(ARGS(utime, "%s, *"), fname);
766 #endif
767
768         if (args->times) {
769                 if ((error = copyin(args->times, &lut, sizeof lut))) {
770                         LFREEPATH(fname);
771                         return (error);
772                 }
773                 tv[0].tv_sec = lut.l_actime;
774                 tv[0].tv_usec = 0;
775                 tv[1].tv_sec = lut.l_modtime;
776                 tv[1].tv_usec = 0;
777                 tvp = tv;
778         } else
779                 tvp = NULL;
780
781         error = kern_utimes(td, fname, UIO_SYSSPACE, tvp, UIO_SYSSPACE);
782         LFREEPATH(fname);
783         return (error);
784 }
785
786 int
787 linux_utimes(struct thread *td, struct linux_utimes_args *args)
788 {
789         l_timeval ltv[2];
790         struct timeval tv[2], *tvp = NULL;
791         char *fname;
792         int error;
793
794         LCONVPATHEXIST(td, args->fname, &fname);
795
796 #ifdef DEBUG
797         if (ldebug(utimes))
798                 printf(ARGS(utimes, "%s, *"), fname);
799 #endif
800
801         if (args->tptr != NULL) {
802                 if ((error = copyin(args->tptr, ltv, sizeof ltv))) {
803                         LFREEPATH(fname);
804                         return (error);
805                 }
806                 tv[0].tv_sec = ltv[0].tv_sec;
807                 tv[0].tv_usec = ltv[0].tv_usec;
808                 tv[1].tv_sec = ltv[1].tv_sec;
809                 tv[1].tv_usec = ltv[1].tv_usec;
810                 tvp = tv;
811         }
812
813         error = kern_utimes(td, fname, UIO_SYSSPACE, tvp, UIO_SYSSPACE);
814         LFREEPATH(fname);
815         return (error);
816 }
817
818 int
819 linux_futimesat(struct thread *td, struct linux_futimesat_args *args)
820 {
821         l_timeval ltv[2];
822         struct timeval tv[2], *tvp = NULL;
823         char *fname;
824         int error, dfd;
825
826         dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
827         LCONVPATHEXIST_AT(td, args->filename, &fname, dfd);
828
829 #ifdef DEBUG
830         if (ldebug(futimesat))
831                 printf(ARGS(futimesat, "%s, *"), fname);
832 #endif
833
834         if (args->utimes != NULL) {
835                 if ((error = copyin(args->utimes, ltv, sizeof ltv))) {
836                         LFREEPATH(fname);
837                         return (error);
838                 }
839                 tv[0].tv_sec = ltv[0].tv_sec;
840                 tv[0].tv_usec = ltv[0].tv_usec;
841                 tv[1].tv_sec = ltv[1].tv_sec;
842                 tv[1].tv_usec = ltv[1].tv_usec;
843                 tvp = tv;
844         }
845
846         error = kern_utimesat(td, dfd, fname, UIO_SYSSPACE, tvp, UIO_SYSSPACE);
847         LFREEPATH(fname);
848         return (error);
849 }
850 #endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
851
852 int
853 linux_common_wait(struct thread *td, int pid, int *status,
854     int options, struct rusage *ru)
855 {
856         int error, tmpstat;
857
858         error = kern_wait(td, pid, &tmpstat, options, ru);
859         if (error)
860                 return (error);
861
862         if (status) {
863                 tmpstat &= 0xffff;
864                 if (WIFSIGNALED(tmpstat))
865                         tmpstat = (tmpstat & 0xffffff80) |
866                             BSD_TO_LINUX_SIGNAL(WTERMSIG(tmpstat));
867                 else if (WIFSTOPPED(tmpstat))
868                         tmpstat = (tmpstat & 0xffff00ff) |
869                             (BSD_TO_LINUX_SIGNAL(WSTOPSIG(tmpstat)) << 8);
870                 error = copyout(&tmpstat, status, sizeof(int));
871         }
872
873         return (error);
874 }
875
876 int
877 linux_waitpid(struct thread *td, struct linux_waitpid_args *args)
878 {
879         int options;
880  
881 #ifdef DEBUG
882         if (ldebug(waitpid))
883                 printf(ARGS(waitpid, "%d, %p, %d"),
884                     args->pid, (void *)args->status, args->options);
885 #endif
886         /*
887          * this is necessary because the test in kern_wait doesn't work
888          * because we mess with the options here
889          */
890         if (args->options & ~(WUNTRACED | WNOHANG | WCONTINUED | __WCLONE))
891                 return (EINVAL);
892    
893         options = (args->options & (WNOHANG | WUNTRACED));
894         /* WLINUXCLONE should be equal to __WCLONE, but we make sure */
895         if (args->options & __WCLONE)
896                 options |= WLINUXCLONE;
897
898         return (linux_common_wait(td, args->pid, args->status, options, NULL));
899 }
900
901
902 int
903 linux_mknod(struct thread *td, struct linux_mknod_args *args)
904 {
905         char *path;
906         int error;
907
908         LCONVPATHCREAT(td, args->path, &path);
909
910 #ifdef DEBUG
911         if (ldebug(mknod))
912                 printf(ARGS(mknod, "%s, %d, %d"), path, args->mode, args->dev);
913 #endif
914
915         switch (args->mode & S_IFMT) {
916         case S_IFIFO:
917         case S_IFSOCK:
918                 error = kern_mkfifo(td, path, UIO_SYSSPACE, args->mode);
919                 break;
920
921         case S_IFCHR:
922         case S_IFBLK:
923                 error = kern_mknod(td, path, UIO_SYSSPACE, args->mode,
924                     args->dev);
925                 break;
926
927         case S_IFDIR:
928                 error = EPERM;
929                 break;
930
931         case 0:
932                 args->mode |= S_IFREG;
933                 /* FALLTHROUGH */
934         case S_IFREG:
935                 error = kern_open(td, path, UIO_SYSSPACE,
936                     O_WRONLY | O_CREAT | O_TRUNC, args->mode);
937                 if (error == 0)
938                         kern_close(td, td->td_retval[0]);
939                 break;
940
941         default:
942                 error = EINVAL;
943                 break;
944         }
945         LFREEPATH(path);
946         return (error);
947 }
948
949 int
950 linux_mknodat(struct thread *td, struct linux_mknodat_args *args)
951 {
952         char *path;
953         int error, dfd;
954
955         dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
956         LCONVPATHCREAT_AT(td, args->filename, &path, dfd);
957
958 #ifdef DEBUG
959         if (ldebug(mknodat))
960                 printf(ARGS(mknodat, "%s, %d, %d"), path, args->mode, args->dev);
961 #endif
962
963         switch (args->mode & S_IFMT) {
964         case S_IFIFO:
965         case S_IFSOCK:
966                 error = kern_mkfifoat(td, dfd, path, UIO_SYSSPACE, args->mode);
967                 break;
968
969         case S_IFCHR:
970         case S_IFBLK:
971                 error = kern_mknodat(td, dfd, path, UIO_SYSSPACE, args->mode,
972                     args->dev);
973                 break;
974
975         case S_IFDIR:
976                 error = EPERM;
977                 break;
978
979         case 0:
980                 args->mode |= S_IFREG;
981                 /* FALLTHROUGH */
982         case S_IFREG:
983                 error = kern_openat(td, dfd, path, UIO_SYSSPACE,
984                     O_WRONLY | O_CREAT | O_TRUNC, args->mode);
985                 if (error == 0)
986                         kern_close(td, td->td_retval[0]);
987                 break;
988
989         default:
990                 error = EINVAL;
991                 break;
992         }
993         LFREEPATH(path);
994         return (error);
995 }
996
997 /*
998  * UGH! This is just about the dumbest idea I've ever heard!!
999  */
1000 int
1001 linux_personality(struct thread *td, struct linux_personality_args *args)
1002 {
1003 #ifdef DEBUG
1004         if (ldebug(personality))
1005                 printf(ARGS(personality, "%lu"), (unsigned long)args->per);
1006 #endif
1007         if (args->per != 0)
1008                 return (EINVAL);
1009
1010         /* Yes Jim, it's still a Linux... */
1011         td->td_retval[0] = 0;
1012         return (0);
1013 }
1014
1015 struct l_itimerval {
1016         l_timeval it_interval;
1017         l_timeval it_value;
1018 };
1019
1020 #define B2L_ITIMERVAL(bip, lip)                                         \
1021         (bip)->it_interval.tv_sec = (lip)->it_interval.tv_sec;          \
1022         (bip)->it_interval.tv_usec = (lip)->it_interval.tv_usec;        \
1023         (bip)->it_value.tv_sec = (lip)->it_value.tv_sec;                \
1024         (bip)->it_value.tv_usec = (lip)->it_value.tv_usec;
1025
1026 int
1027 linux_setitimer(struct thread *td, struct linux_setitimer_args *uap)
1028 {
1029         int error;
1030         struct l_itimerval ls;
1031         struct itimerval aitv, oitv;
1032
1033 #ifdef DEBUG
1034         if (ldebug(setitimer))
1035                 printf(ARGS(setitimer, "%p, %p"),
1036                     (void *)uap->itv, (void *)uap->oitv);
1037 #endif
1038
1039         if (uap->itv == NULL) {
1040                 uap->itv = uap->oitv;
1041                 return (linux_getitimer(td, (struct linux_getitimer_args *)uap));
1042         }
1043
1044         error = copyin(uap->itv, &ls, sizeof(ls));
1045         if (error != 0)
1046                 return (error);
1047         B2L_ITIMERVAL(&aitv, &ls);
1048 #ifdef DEBUG
1049         if (ldebug(setitimer)) {
1050                 printf("setitimer: value: sec: %jd, usec: %ld\n",
1051                     (intmax_t)aitv.it_value.tv_sec, aitv.it_value.tv_usec);
1052                 printf("setitimer: interval: sec: %jd, usec: %ld\n",
1053                     (intmax_t)aitv.it_interval.tv_sec, aitv.it_interval.tv_usec);
1054         }
1055 #endif
1056         error = kern_setitimer(td, uap->which, &aitv, &oitv);
1057         if (error != 0 || uap->oitv == NULL)
1058                 return (error);
1059         B2L_ITIMERVAL(&ls, &oitv);
1060
1061         return (copyout(&ls, uap->oitv, sizeof(ls)));
1062 }
1063
1064 int
1065 linux_getitimer(struct thread *td, struct linux_getitimer_args *uap)
1066 {
1067         int error;
1068         struct l_itimerval ls;
1069         struct itimerval aitv;
1070
1071 #ifdef DEBUG
1072         if (ldebug(getitimer))
1073                 printf(ARGS(getitimer, "%p"), (void *)uap->itv);
1074 #endif
1075         error = kern_getitimer(td, uap->which, &aitv);
1076         if (error != 0)
1077                 return (error);
1078         B2L_ITIMERVAL(&ls, &aitv);
1079         return (copyout(&ls, uap->itv, sizeof(ls)));
1080 }
1081
1082 int
1083 linux_nice(struct thread *td, struct linux_nice_args *args)
1084 {
1085         struct setpriority_args bsd_args;
1086
1087         bsd_args.which = PRIO_PROCESS;
1088         bsd_args.who = 0;               /* current process */
1089         bsd_args.prio = args->inc;
1090         return (sys_setpriority(td, &bsd_args));
1091 }
1092
1093 int
1094 linux_setgroups(struct thread *td, struct linux_setgroups_args *args)
1095 {
1096         struct ucred *newcred, *oldcred;
1097         l_gid_t *linux_gidset;
1098         gid_t *bsd_gidset;
1099         int ngrp, error;
1100         struct proc *p;
1101
1102         ngrp = args->gidsetsize;
1103         if (ngrp < 0 || ngrp >= ngroups_max + 1)
1104                 return (EINVAL);
1105         linux_gidset = malloc(ngrp * sizeof(*linux_gidset), M_TEMP, M_WAITOK);
1106         error = copyin(args->grouplist, linux_gidset, ngrp * sizeof(l_gid_t));
1107         if (error)
1108                 goto out;
1109         newcred = crget();
1110         crextend(newcred, ngrp + 1);
1111         p = td->td_proc;
1112         PROC_LOCK(p);
1113         oldcred = p->p_ucred;
1114         crcopy(newcred, oldcred);
1115
1116         /*
1117          * cr_groups[0] holds egid. Setting the whole set from
1118          * the supplied set will cause egid to be changed too.
1119          * Keep cr_groups[0] unchanged to prevent that.
1120          */
1121
1122         if ((error = priv_check_cred(oldcred, PRIV_CRED_SETGROUPS, 0)) != 0) {
1123                 PROC_UNLOCK(p);
1124                 crfree(newcred);
1125                 goto out;
1126         }
1127
1128         if (ngrp > 0) {
1129                 newcred->cr_ngroups = ngrp + 1;
1130
1131                 bsd_gidset = newcred->cr_groups;
1132                 ngrp--;
1133                 while (ngrp >= 0) {
1134                         bsd_gidset[ngrp + 1] = linux_gidset[ngrp];
1135                         ngrp--;
1136                 }
1137         } else
1138                 newcred->cr_ngroups = 1;
1139
1140         setsugid(p);
1141         p->p_ucred = newcred;
1142         PROC_UNLOCK(p);
1143         crfree(oldcred);
1144         error = 0;
1145 out:
1146         free(linux_gidset, M_TEMP);
1147         return (error);
1148 }
1149
1150 int
1151 linux_getgroups(struct thread *td, struct linux_getgroups_args *args)
1152 {
1153         struct ucred *cred;
1154         l_gid_t *linux_gidset;
1155         gid_t *bsd_gidset;
1156         int bsd_gidsetsz, ngrp, error;
1157
1158         cred = td->td_ucred;
1159         bsd_gidset = cred->cr_groups;
1160         bsd_gidsetsz = cred->cr_ngroups - 1;
1161
1162         /*
1163          * cr_groups[0] holds egid. Returning the whole set
1164          * here will cause a duplicate. Exclude cr_groups[0]
1165          * to prevent that.
1166          */
1167
1168         if ((ngrp = args->gidsetsize) == 0) {
1169                 td->td_retval[0] = bsd_gidsetsz;
1170                 return (0);
1171         }
1172
1173         if (ngrp < bsd_gidsetsz)
1174                 return (EINVAL);
1175
1176         ngrp = 0;
1177         linux_gidset = malloc(bsd_gidsetsz * sizeof(*linux_gidset),
1178             M_TEMP, M_WAITOK);
1179         while (ngrp < bsd_gidsetsz) {
1180                 linux_gidset[ngrp] = bsd_gidset[ngrp + 1];
1181                 ngrp++;
1182         }
1183
1184         error = copyout(linux_gidset, args->grouplist, ngrp * sizeof(l_gid_t));
1185         free(linux_gidset, M_TEMP);
1186         if (error)
1187                 return (error);
1188
1189         td->td_retval[0] = ngrp;
1190         return (0);
1191 }
1192
1193 int
1194 linux_setrlimit(struct thread *td, struct linux_setrlimit_args *args)
1195 {
1196         struct rlimit bsd_rlim;
1197         struct l_rlimit rlim;
1198         u_int which;
1199         int error;
1200
1201 #ifdef DEBUG
1202         if (ldebug(setrlimit))
1203                 printf(ARGS(setrlimit, "%d, %p"),
1204                     args->resource, (void *)args->rlim);
1205 #endif
1206
1207         if (args->resource >= LINUX_RLIM_NLIMITS)
1208                 return (EINVAL);
1209
1210         which = linux_to_bsd_resource[args->resource];
1211         if (which == -1)
1212                 return (EINVAL);
1213
1214         error = copyin(args->rlim, &rlim, sizeof(rlim));
1215         if (error)
1216                 return (error);
1217
1218         bsd_rlim.rlim_cur = (rlim_t)rlim.rlim_cur;
1219         bsd_rlim.rlim_max = (rlim_t)rlim.rlim_max;
1220         return (kern_setrlimit(td, which, &bsd_rlim));
1221 }
1222
1223 int
1224 linux_old_getrlimit(struct thread *td, struct linux_old_getrlimit_args *args)
1225 {
1226         struct l_rlimit rlim;
1227         struct proc *p = td->td_proc;
1228         struct rlimit bsd_rlim;
1229         u_int which;
1230
1231 #ifdef DEBUG
1232         if (ldebug(old_getrlimit))
1233                 printf(ARGS(old_getrlimit, "%d, %p"),
1234                     args->resource, (void *)args->rlim);
1235 #endif
1236
1237         if (args->resource >= LINUX_RLIM_NLIMITS)
1238                 return (EINVAL);
1239
1240         which = linux_to_bsd_resource[args->resource];
1241         if (which == -1)
1242                 return (EINVAL);
1243
1244         PROC_LOCK(p);
1245         lim_rlimit(p, which, &bsd_rlim);
1246         PROC_UNLOCK(p);
1247
1248 #ifdef COMPAT_LINUX32
1249         rlim.rlim_cur = (unsigned int)bsd_rlim.rlim_cur;
1250         if (rlim.rlim_cur == UINT_MAX)
1251                 rlim.rlim_cur = INT_MAX;
1252         rlim.rlim_max = (unsigned int)bsd_rlim.rlim_max;
1253         if (rlim.rlim_max == UINT_MAX)
1254                 rlim.rlim_max = INT_MAX;
1255 #else
1256         rlim.rlim_cur = (unsigned long)bsd_rlim.rlim_cur;
1257         if (rlim.rlim_cur == ULONG_MAX)
1258                 rlim.rlim_cur = LONG_MAX;
1259         rlim.rlim_max = (unsigned long)bsd_rlim.rlim_max;
1260         if (rlim.rlim_max == ULONG_MAX)
1261                 rlim.rlim_max = LONG_MAX;
1262 #endif
1263         return (copyout(&rlim, args->rlim, sizeof(rlim)));
1264 }
1265
1266 int
1267 linux_getrlimit(struct thread *td, struct linux_getrlimit_args *args)
1268 {
1269         struct l_rlimit rlim;
1270         struct proc *p = td->td_proc;
1271         struct rlimit bsd_rlim;
1272         u_int which;
1273
1274 #ifdef DEBUG
1275         if (ldebug(getrlimit))
1276                 printf(ARGS(getrlimit, "%d, %p"),
1277                     args->resource, (void *)args->rlim);
1278 #endif
1279
1280         if (args->resource >= LINUX_RLIM_NLIMITS)
1281                 return (EINVAL);
1282
1283         which = linux_to_bsd_resource[args->resource];
1284         if (which == -1)
1285                 return (EINVAL);
1286
1287         PROC_LOCK(p);
1288         lim_rlimit(p, which, &bsd_rlim);
1289         PROC_UNLOCK(p);
1290
1291         rlim.rlim_cur = (l_ulong)bsd_rlim.rlim_cur;
1292         rlim.rlim_max = (l_ulong)bsd_rlim.rlim_max;
1293         return (copyout(&rlim, args->rlim, sizeof(rlim)));
1294 }
1295
1296 int
1297 linux_sched_setscheduler(struct thread *td,
1298     struct linux_sched_setscheduler_args *args)
1299 {
1300         struct sched_setscheduler_args bsd;
1301
1302 #ifdef DEBUG
1303         if (ldebug(sched_setscheduler))
1304                 printf(ARGS(sched_setscheduler, "%d, %d, %p"),
1305                     args->pid, args->policy, (const void *)args->param);
1306 #endif
1307
1308         switch (args->policy) {
1309         case LINUX_SCHED_OTHER:
1310                 bsd.policy = SCHED_OTHER;
1311                 break;
1312         case LINUX_SCHED_FIFO:
1313                 bsd.policy = SCHED_FIFO;
1314                 break;
1315         case LINUX_SCHED_RR:
1316                 bsd.policy = SCHED_RR;
1317                 break;
1318         default:
1319                 return (EINVAL);
1320         }
1321
1322         bsd.pid = args->pid;
1323         bsd.param = (struct sched_param *)args->param;
1324         return (sys_sched_setscheduler(td, &bsd));
1325 }
1326
1327 int
1328 linux_sched_getscheduler(struct thread *td,
1329     struct linux_sched_getscheduler_args *args)
1330 {
1331         struct sched_getscheduler_args bsd;
1332         int error;
1333
1334 #ifdef DEBUG
1335         if (ldebug(sched_getscheduler))
1336                 printf(ARGS(sched_getscheduler, "%d"), args->pid);
1337 #endif
1338
1339         bsd.pid = args->pid;
1340         error = sys_sched_getscheduler(td, &bsd);
1341
1342         switch (td->td_retval[0]) {
1343         case SCHED_OTHER:
1344                 td->td_retval[0] = LINUX_SCHED_OTHER;
1345                 break;
1346         case SCHED_FIFO:
1347                 td->td_retval[0] = LINUX_SCHED_FIFO;
1348                 break;
1349         case SCHED_RR:
1350                 td->td_retval[0] = LINUX_SCHED_RR;
1351                 break;
1352         }
1353
1354         return (error);
1355 }
1356
1357 int
1358 linux_sched_get_priority_max(struct thread *td,
1359     struct linux_sched_get_priority_max_args *args)
1360 {
1361         struct sched_get_priority_max_args bsd;
1362
1363 #ifdef DEBUG
1364         if (ldebug(sched_get_priority_max))
1365                 printf(ARGS(sched_get_priority_max, "%d"), args->policy);
1366 #endif
1367
1368         switch (args->policy) {
1369         case LINUX_SCHED_OTHER:
1370                 bsd.policy = SCHED_OTHER;
1371                 break;
1372         case LINUX_SCHED_FIFO:
1373                 bsd.policy = SCHED_FIFO;
1374                 break;
1375         case LINUX_SCHED_RR:
1376                 bsd.policy = SCHED_RR;
1377                 break;
1378         default:
1379                 return (EINVAL);
1380         }
1381         return (sys_sched_get_priority_max(td, &bsd));
1382 }
1383
1384 int
1385 linux_sched_get_priority_min(struct thread *td,
1386     struct linux_sched_get_priority_min_args *args)
1387 {
1388         struct sched_get_priority_min_args bsd;
1389
1390 #ifdef DEBUG
1391         if (ldebug(sched_get_priority_min))
1392                 printf(ARGS(sched_get_priority_min, "%d"), args->policy);
1393 #endif
1394
1395         switch (args->policy) {
1396         case LINUX_SCHED_OTHER:
1397                 bsd.policy = SCHED_OTHER;
1398                 break;
1399         case LINUX_SCHED_FIFO:
1400                 bsd.policy = SCHED_FIFO;
1401                 break;
1402         case LINUX_SCHED_RR:
1403                 bsd.policy = SCHED_RR;
1404                 break;
1405         default:
1406                 return (EINVAL);
1407         }
1408         return (sys_sched_get_priority_min(td, &bsd));
1409 }
1410
1411 #define REBOOT_CAD_ON   0x89abcdef
1412 #define REBOOT_CAD_OFF  0
1413 #define REBOOT_HALT     0xcdef0123
1414 #define REBOOT_RESTART  0x01234567
1415 #define REBOOT_RESTART2 0xA1B2C3D4
1416 #define REBOOT_POWEROFF 0x4321FEDC
1417 #define REBOOT_MAGIC1   0xfee1dead
1418 #define REBOOT_MAGIC2   0x28121969
1419 #define REBOOT_MAGIC2A  0x05121996
1420 #define REBOOT_MAGIC2B  0x16041998
1421
1422 int
1423 linux_reboot(struct thread *td, struct linux_reboot_args *args)
1424 {
1425         struct reboot_args bsd_args;
1426
1427 #ifdef DEBUG
1428         if (ldebug(reboot))
1429                 printf(ARGS(reboot, "0x%x"), args->cmd);
1430 #endif
1431
1432         if (args->magic1 != REBOOT_MAGIC1)
1433                 return (EINVAL);
1434
1435         switch (args->magic2) {
1436         case REBOOT_MAGIC2:
1437         case REBOOT_MAGIC2A:
1438         case REBOOT_MAGIC2B:
1439                 break;
1440         default:
1441                 return (EINVAL);
1442         }
1443
1444         switch (args->cmd) {
1445         case REBOOT_CAD_ON:
1446         case REBOOT_CAD_OFF:
1447                 return (priv_check(td, PRIV_REBOOT));
1448         case REBOOT_HALT:
1449                 bsd_args.opt = RB_HALT;
1450                 break;
1451         case REBOOT_RESTART:
1452         case REBOOT_RESTART2:
1453                 bsd_args.opt = 0;
1454                 break;
1455         case REBOOT_POWEROFF:
1456                 bsd_args.opt = RB_POWEROFF;
1457                 break;
1458         default:
1459                 return (EINVAL);
1460         }
1461         return (sys_reboot(td, &bsd_args));
1462 }
1463
1464
1465 /*
1466  * The FreeBSD native getpid(2), getgid(2) and getuid(2) also modify
1467  * td->td_retval[1] when COMPAT_43 is defined. This clobbers registers that
1468  * are assumed to be preserved. The following lightweight syscalls fixes
1469  * this. See also linux_getgid16() and linux_getuid16() in linux_uid16.c
1470  *
1471  * linux_getpid() - MP SAFE
1472  * linux_getgid() - MP SAFE
1473  * linux_getuid() - MP SAFE
1474  */
1475
1476 int
1477 linux_getpid(struct thread *td, struct linux_getpid_args *args)
1478 {
1479         struct linux_emuldata *em;
1480
1481 #ifdef DEBUG
1482         if (ldebug(getpid))
1483                 printf(ARGS(getpid, ""));
1484 #endif
1485
1486         if (linux_use26(td)) {
1487                 em = em_find(td->td_proc, EMUL_DONTLOCK);
1488                 KASSERT(em != NULL, ("getpid: emuldata not found.\n"));
1489                 td->td_retval[0] = em->shared->group_pid;
1490         } else {
1491                 td->td_retval[0] = td->td_proc->p_pid;
1492         }
1493
1494         return (0);
1495 }
1496
1497 int
1498 linux_gettid(struct thread *td, struct linux_gettid_args *args)
1499 {
1500
1501 #ifdef DEBUG
1502         if (ldebug(gettid))
1503                 printf(ARGS(gettid, ""));
1504 #endif
1505
1506         td->td_retval[0] = td->td_proc->p_pid;
1507         return (0);
1508 }
1509
1510
1511 int
1512 linux_getppid(struct thread *td, struct linux_getppid_args *args)
1513 {
1514         struct linux_emuldata *em;
1515         struct proc *p, *pp;
1516
1517 #ifdef DEBUG
1518         if (ldebug(getppid))
1519                 printf(ARGS(getppid, ""));
1520 #endif
1521
1522         if (!linux_use26(td)) {
1523                 PROC_LOCK(td->td_proc);
1524                 td->td_retval[0] = td->td_proc->p_pptr->p_pid;
1525                 PROC_UNLOCK(td->td_proc);
1526                 return (0);
1527         }
1528
1529         em = em_find(td->td_proc, EMUL_DONTLOCK);
1530
1531         KASSERT(em != NULL, ("getppid: process emuldata not found.\n"));
1532
1533         /* find the group leader */
1534         p = pfind(em->shared->group_pid);
1535
1536         if (p == NULL) {
1537 #ifdef DEBUG
1538                 printf(LMSG("parent process not found.\n"));
1539 #endif
1540                 return (0);
1541         }
1542
1543         pp = p->p_pptr;         /* switch to parent */
1544         PROC_LOCK(pp);
1545         PROC_UNLOCK(p);
1546
1547         /* if its also linux process */
1548         if (pp->p_sysent == &elf_linux_sysvec) {
1549                 em = em_find(pp, EMUL_DONTLOCK);
1550                 KASSERT(em != NULL, ("getppid: parent emuldata not found.\n"));
1551
1552                 td->td_retval[0] = em->shared->group_pid;
1553         } else
1554                 td->td_retval[0] = pp->p_pid;
1555
1556         PROC_UNLOCK(pp);
1557
1558         return (0);
1559 }
1560
1561 int
1562 linux_getgid(struct thread *td, struct linux_getgid_args *args)
1563 {
1564
1565 #ifdef DEBUG
1566         if (ldebug(getgid))
1567                 printf(ARGS(getgid, ""));
1568 #endif
1569
1570         td->td_retval[0] = td->td_ucred->cr_rgid;
1571         return (0);
1572 }
1573
1574 int
1575 linux_getuid(struct thread *td, struct linux_getuid_args *args)
1576 {
1577
1578 #ifdef DEBUG
1579         if (ldebug(getuid))
1580                 printf(ARGS(getuid, ""));
1581 #endif
1582
1583         td->td_retval[0] = td->td_ucred->cr_ruid;
1584         return (0);
1585 }
1586
1587
1588 int
1589 linux_getsid(struct thread *td, struct linux_getsid_args *args)
1590 {
1591         struct getsid_args bsd;
1592
1593 #ifdef DEBUG
1594         if (ldebug(getsid))
1595                 printf(ARGS(getsid, "%i"), args->pid);
1596 #endif
1597
1598         bsd.pid = args->pid;
1599         return (sys_getsid(td, &bsd));
1600 }
1601
1602 int
1603 linux_nosys(struct thread *td, struct nosys_args *ignore)
1604 {
1605
1606         return (ENOSYS);
1607 }
1608
1609 int
1610 linux_getpriority(struct thread *td, struct linux_getpriority_args *args)
1611 {
1612         struct getpriority_args bsd_args;
1613         int error;
1614
1615 #ifdef DEBUG
1616         if (ldebug(getpriority))
1617                 printf(ARGS(getpriority, "%i, %i"), args->which, args->who);
1618 #endif
1619
1620         bsd_args.which = args->which;
1621         bsd_args.who = args->who;
1622         error = sys_getpriority(td, &bsd_args);
1623         td->td_retval[0] = 20 - td->td_retval[0];
1624         return (error);
1625 }
1626
1627 int
1628 linux_sethostname(struct thread *td, struct linux_sethostname_args *args)
1629 {
1630         int name[2];
1631
1632 #ifdef DEBUG
1633         if (ldebug(sethostname))
1634                 printf(ARGS(sethostname, "*, %i"), args->len);
1635 #endif
1636
1637         name[0] = CTL_KERN;
1638         name[1] = KERN_HOSTNAME;
1639         return (userland_sysctl(td, name, 2, 0, 0, 0, args->hostname,
1640             args->len, 0, 0));
1641 }
1642
1643 int
1644 linux_setdomainname(struct thread *td, struct linux_setdomainname_args *args)
1645 {
1646         int name[2];
1647
1648 #ifdef DEBUG
1649         if (ldebug(setdomainname))
1650                 printf(ARGS(setdomainname, "*, %i"), args->len);
1651 #endif
1652
1653         name[0] = CTL_KERN;
1654         name[1] = KERN_NISDOMAINNAME;
1655         return (userland_sysctl(td, name, 2, 0, 0, 0, args->name,
1656             args->len, 0, 0));
1657 }
1658
1659 int
1660 linux_exit_group(struct thread *td, struct linux_exit_group_args *args)
1661 {
1662         struct linux_emuldata *em;
1663
1664 #ifdef DEBUG
1665         if (ldebug(exit_group))
1666                 printf(ARGS(exit_group, "%i"), args->error_code);
1667 #endif
1668
1669         em = em_find(td->td_proc, EMUL_DONTLOCK);
1670         if (em->shared->refs > 1) {
1671                 EMUL_SHARED_WLOCK(&emul_shared_lock);
1672                 em->shared->flags |= EMUL_SHARED_HASXSTAT;
1673                 em->shared->xstat = W_EXITCODE(args->error_code, 0);
1674                 EMUL_SHARED_WUNLOCK(&emul_shared_lock);
1675                 if (linux_use26(td))
1676                         linux_kill_threads(td, SIGKILL);
1677         }
1678
1679         /*
1680          * XXX: we should send a signal to the parent if
1681          * SIGNAL_EXIT_GROUP is set. We ignore that (temporarily?)
1682          * as it doesnt occur often.
1683          */
1684         exit1(td, W_EXITCODE(args->error_code, 0));
1685
1686         return (0);
1687 }
1688
1689 #define _LINUX_CAPABILITY_VERSION  0x19980330
1690
1691 struct l_user_cap_header {
1692         l_int   version;
1693         l_int   pid;
1694 };
1695
1696 struct l_user_cap_data {
1697         l_int   effective;
1698         l_int   permitted;
1699         l_int   inheritable;
1700 };
1701
1702 int
1703 linux_capget(struct thread *td, struct linux_capget_args *args)
1704 {
1705         struct l_user_cap_header luch;
1706         struct l_user_cap_data lucd;
1707         int error;
1708
1709         if (args->hdrp == NULL)
1710                 return (EFAULT);
1711
1712         error = copyin(args->hdrp, &luch, sizeof(luch));
1713         if (error != 0)
1714                 return (error);
1715
1716         if (luch.version != _LINUX_CAPABILITY_VERSION) {
1717                 luch.version = _LINUX_CAPABILITY_VERSION;
1718                 error = copyout(&luch, args->hdrp, sizeof(luch));
1719                 if (error)
1720                         return (error);
1721                 return (EINVAL);
1722         }
1723
1724         if (luch.pid)
1725                 return (EPERM);
1726
1727         if (args->datap) {
1728                 /*
1729                  * The current implementation doesn't support setting
1730                  * a capability (it's essentially a stub) so indicate
1731                  * that no capabilities are currently set or available
1732                  * to request.
1733                  */
1734                 bzero (&lucd, sizeof(lucd));
1735                 error = copyout(&lucd, args->datap, sizeof(lucd));
1736         }
1737
1738         return (error);
1739 }
1740
1741 int
1742 linux_capset(struct thread *td, struct linux_capset_args *args)
1743 {
1744         struct l_user_cap_header luch;
1745         struct l_user_cap_data lucd;
1746         int error;
1747
1748         if (args->hdrp == NULL || args->datap == NULL)
1749                 return (EFAULT);
1750
1751         error = copyin(args->hdrp, &luch, sizeof(luch));
1752         if (error != 0)
1753                 return (error);
1754
1755         if (luch.version != _LINUX_CAPABILITY_VERSION) {
1756                 luch.version = _LINUX_CAPABILITY_VERSION;
1757                 error = copyout(&luch, args->hdrp, sizeof(luch));
1758                 if (error)
1759                         return (error);
1760                 return (EINVAL);
1761         }
1762
1763         if (luch.pid)
1764                 return (EPERM);
1765
1766         error = copyin(args->datap, &lucd, sizeof(lucd));
1767         if (error != 0)
1768                 return (error);
1769
1770         /* We currently don't support setting any capabilities. */
1771         if (lucd.effective || lucd.permitted || lucd.inheritable) {
1772                 linux_msg(td,
1773                           "capset effective=0x%x, permitted=0x%x, "
1774                           "inheritable=0x%x is not implemented",
1775                           (int)lucd.effective, (int)lucd.permitted,
1776                           (int)lucd.inheritable);
1777                 return (EPERM);
1778         }
1779
1780         return (0);
1781 }
1782
1783 int
1784 linux_prctl(struct thread *td, struct linux_prctl_args *args)
1785 {
1786         int error = 0, max_size;
1787         struct proc *p = td->td_proc;
1788         char comm[LINUX_MAX_COMM_LEN];
1789         struct linux_emuldata *em;
1790         int pdeath_signal;
1791
1792 #ifdef DEBUG
1793         if (ldebug(prctl))
1794                 printf(ARGS(prctl, "%d, %d, %d, %d, %d"), args->option,
1795                     args->arg2, args->arg3, args->arg4, args->arg5);
1796 #endif
1797
1798         switch (args->option) {
1799         case LINUX_PR_SET_PDEATHSIG:
1800                 if (!LINUX_SIG_VALID(args->arg2))
1801                         return (EINVAL);
1802                 em = em_find(p, EMUL_DOLOCK);
1803                 KASSERT(em != NULL, ("prctl: emuldata not found.\n"));
1804                 em->pdeath_signal = args->arg2;
1805                 EMUL_UNLOCK(&emul_lock);
1806                 break;
1807         case LINUX_PR_GET_PDEATHSIG:
1808                 em = em_find(p, EMUL_DOLOCK);
1809                 KASSERT(em != NULL, ("prctl: emuldata not found.\n"));
1810                 pdeath_signal = em->pdeath_signal;
1811                 EMUL_UNLOCK(&emul_lock);
1812                 error = copyout(&pdeath_signal,
1813                     (void *)(register_t)args->arg2,
1814                     sizeof(pdeath_signal));
1815                 break;
1816         case LINUX_PR_GET_KEEPCAPS:
1817                 /*
1818                  * Indicate that we always clear the effective and
1819                  * permitted capability sets when the user id becomes
1820                  * non-zero (actually the capability sets are simply
1821                  * always zero in the current implementation).
1822                  */
1823                 td->td_retval[0] = 0;
1824                 break;
1825         case LINUX_PR_SET_KEEPCAPS:
1826                 /*
1827                  * Ignore requests to keep the effective and permitted
1828                  * capability sets when the user id becomes non-zero.
1829                  */
1830                 break;
1831         case LINUX_PR_SET_NAME:
1832                 /*
1833                  * To be on the safe side we need to make sure to not
1834                  * overflow the size a linux program expects. We already
1835                  * do this here in the copyin, so that we don't need to
1836                  * check on copyout.
1837                  */
1838                 max_size = MIN(sizeof(comm), sizeof(p->p_comm));
1839                 error = copyinstr((void *)(register_t)args->arg2, comm,
1840                     max_size, NULL);
1841
1842                 /* Linux silently truncates the name if it is too long. */
1843                 if (error == ENAMETOOLONG) {
1844                         /*
1845                          * XXX: copyinstr() isn't documented to populate the
1846                          * array completely, so do a copyin() to be on the
1847                          * safe side. This should be changed in case
1848                          * copyinstr() is changed to guarantee this.
1849                          */
1850                         error = copyin((void *)(register_t)args->arg2, comm,
1851                             max_size - 1);
1852                         comm[max_size - 1] = '\0';
1853                 }
1854                 if (error)
1855                         return (error);
1856
1857                 PROC_LOCK(p);
1858                 strlcpy(p->p_comm, comm, sizeof(p->p_comm));
1859                 PROC_UNLOCK(p);
1860                 break;
1861         case LINUX_PR_GET_NAME:
1862                 PROC_LOCK(p);
1863                 strlcpy(comm, p->p_comm, sizeof(comm));
1864                 PROC_UNLOCK(p);
1865                 error = copyout(comm, (void *)(register_t)args->arg2,
1866                     strlen(comm) + 1);
1867                 break;
1868         default:
1869                 error = EINVAL;
1870                 break;
1871         }
1872
1873         return (error);
1874 }
1875
1876 /*
1877  * Get affinity of a process.
1878  */
1879 int
1880 linux_sched_getaffinity(struct thread *td,
1881     struct linux_sched_getaffinity_args *args)
1882 {
1883         int error;
1884         struct cpuset_getaffinity_args cga;
1885
1886 #ifdef DEBUG
1887         if (ldebug(sched_getaffinity))
1888                 printf(ARGS(sched_getaffinity, "%d, %d, *"), args->pid,
1889                     args->len);
1890 #endif
1891         if (args->len < sizeof(cpuset_t))
1892                 return (EINVAL);
1893
1894         cga.level = CPU_LEVEL_WHICH;
1895         cga.which = CPU_WHICH_PID;
1896         cga.id = args->pid;
1897         cga.cpusetsize = sizeof(cpuset_t);
1898         cga.mask = (cpuset_t *) args->user_mask_ptr;
1899
1900         if ((error = sys_cpuset_getaffinity(td, &cga)) == 0)
1901                 td->td_retval[0] = sizeof(cpuset_t);
1902
1903         return (error);
1904 }
1905
1906 /*
1907  *  Set affinity of a process.
1908  */
1909 int
1910 linux_sched_setaffinity(struct thread *td,
1911     struct linux_sched_setaffinity_args *args)
1912 {
1913         struct cpuset_setaffinity_args csa;
1914
1915 #ifdef DEBUG
1916         if (ldebug(sched_setaffinity))
1917                 printf(ARGS(sched_setaffinity, "%d, %d, *"), args->pid,
1918                     args->len);
1919 #endif
1920         if (args->len < sizeof(cpuset_t))
1921                 return (EINVAL);
1922
1923         csa.level = CPU_LEVEL_WHICH;
1924         csa.which = CPU_WHICH_PID;
1925         csa.id = args->pid;
1926         csa.cpusetsize = sizeof(cpuset_t);
1927         csa.mask = (cpuset_t *) args->user_mask_ptr;
1928
1929         return (sys_cpuset_setaffinity(td, &csa));
1930 }