Rename printf -> kprintf in sys/ and add some defines where necessary
[dragonfly.git] / sys / emulation / linux / i386 / linux_machdep.c
1 /*-
2  * Copyright (c) 2000 Marcel Moolenaar
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer 
10  *    in this position and unchanged.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/i386/linux/linux_machdep.c,v 1.6.2.4 2001/11/05 19:08:23 marcel Exp $
29  * $DragonFly: src/sys/emulation/linux/i386/linux_machdep.c,v 1.19 2006/12/23 00:27:02 swildner Exp $
30  */
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/imgact.h>
35 #include <sys/kern_syscall.h>
36 #include <sys/lock.h>
37 #include <sys/mman.h>
38 #include <sys/nlookup.h>
39 #include <sys/proc.h>
40 #include <sys/resource.h>
41 #include <sys/resourcevar.h>
42 #include <sys/sysproto.h>
43 #include <sys/unistd.h>
44
45 #include <machine/frame.h>
46 #include <machine/psl.h>
47 #include <machine/segments.h>
48 #include <machine/sysarch.h>
49
50 #include <vm/vm.h>
51 #include <vm/pmap.h>
52 #include <vm/vm_map.h>
53
54 #include "linux.h"
55 #include "linux_proto.h"
56 #include "../linux_ipc.h"
57 #include "../linux_signal.h"
58 #include "../linux_util.h"
59
60 struct l_descriptor {
61         l_uint          entry_number;
62         l_ulong         base_addr;
63         l_uint          limit;
64         l_uint          seg_32bit:1;
65         l_uint          contents:2;
66         l_uint          read_exec_only:1;
67         l_uint          limit_in_pages:1;
68         l_uint          seg_not_present:1;
69         l_uint          useable:1;
70 };
71
72 struct l_old_select_argv {
73         l_int           nfds;
74         l_fd_set        *readfds;
75         l_fd_set        *writefds;
76         l_fd_set        *exceptfds;
77         struct l_timeval        *timeout;
78 };
79
80 int
81 linux_to_bsd_sigaltstack(int lsa)
82 {
83         int bsa = 0;
84
85         if (lsa & LINUX_SS_DISABLE)
86                 bsa |= SS_DISABLE;
87         if (lsa & LINUX_SS_ONSTACK)
88                 bsa |= SS_ONSTACK;
89         return (bsa);
90 }
91
92 int
93 bsd_to_linux_sigaltstack(int bsa)
94 {
95         int lsa = 0;
96
97         if (bsa & SS_DISABLE)
98                 lsa |= LINUX_SS_DISABLE;
99         if (bsa & SS_ONSTACK)
100                 lsa |= LINUX_SS_ONSTACK;
101         return (lsa);
102 }
103
104 int
105 sys_linux_execve(struct linux_execve_args *args)
106 {
107         struct nlookupdata nd;
108         struct image_args exec_args;
109         char *path;
110         int error;
111
112         error = linux_copyin_path(args->path, &path, LINUX_PATH_EXISTS);
113         if (error)
114                 return (error);
115 #ifdef DEBUG
116         if (ldebug(execve))
117                 kprintf(ARGS(execve, "%s"), path);
118 #endif
119         error = nlookup_init(&nd, path, UIO_SYSSPACE, NLC_FOLLOW);
120         if (error == 0) {
121                 error = exec_copyin_args(&exec_args, path, PATH_SYSSPACE,
122                                         args->argp, args->envp);
123         }
124         if (error == 0)
125                 error = kern_execve(&nd, &exec_args);
126         nlookup_done(&nd);
127
128         /*
129          * The syscall result is returned in registers to the new program.
130          * Linux will register %edx as an atexit function and we must be
131          * sure to set it to 0.  XXX
132          */
133         if (error == 0)
134                 args->sysmsg_result64 = 0;
135
136         exec_free_args(&exec_args);
137         linux_free_path(&path);
138         return(error);
139 }
140
141 struct l_ipc_kludge {
142         struct l_msgbuf *msgp;
143         l_long msgtyp;
144 };
145
146 int
147 sys_linux_ipc(struct linux_ipc_args *args)
148 {
149         int error = 0;
150
151         switch (args->what & 0xFFFF) {
152         case LINUX_SEMOP: {
153                 struct linux_semop_args a;
154
155                 a.semid = args->arg1;
156                 a.tsops = args->ptr;
157                 a.nsops = args->arg2;
158                 a.sysmsg_lresult = 0;
159                 error = linux_semop(&a);
160                 args->sysmsg_lresult = a.sysmsg_lresult;
161                 break;
162         }
163         case LINUX_SEMGET: {
164                 struct linux_semget_args a;
165
166                 a.key = args->arg1;
167                 a.nsems = args->arg2;
168                 a.semflg = args->arg3;
169                 a.sysmsg_lresult = 0;
170                 error = linux_semget(&a);
171                 args->sysmsg_lresult = a.sysmsg_lresult;
172                 break;
173         }
174         case LINUX_SEMCTL: {
175                 struct linux_semctl_args a;
176                 int error;
177
178                 a.semid = args->arg1;
179                 a.semnum = args->arg2;
180                 a.cmd = args->arg3;
181                 a.sysmsg_lresult = 0;
182                 error = copyin((caddr_t)args->ptr, &a.arg, sizeof(a.arg));
183                 if (error)
184                         return (error);
185                 error = linux_semctl(&a);
186                 args->sysmsg_lresult = a.sysmsg_lresult;
187                 break;
188         }
189         case LINUX_MSGSND: {
190                 struct linux_msgsnd_args a;
191
192                 a.msqid = args->arg1;
193                 a.msgp = args->ptr;
194                 a.msgsz = args->arg2;
195                 a.msgflg = args->arg3;
196                 a.sysmsg_lresult = 0;
197                 error = linux_msgsnd(&a);
198                 args->sysmsg_lresult = a.sysmsg_lresult;
199                 break;
200         }
201         case LINUX_MSGRCV: {
202                 struct linux_msgrcv_args a;
203
204                 a.msqid = args->arg1;
205                 a.msgsz = args->arg2;
206                 a.msgflg = args->arg3;
207                 a.sysmsg_lresult = 0;
208                 if ((args->what >> 16) == 0) {
209                         struct l_ipc_kludge tmp;
210                         int error;
211
212                         if (args->ptr == NULL)
213                                 return (EINVAL);
214                         error = copyin((caddr_t)args->ptr, &tmp, sizeof(tmp));
215                         if (error)
216                                 return (error);
217                         a.msgp = tmp.msgp;
218                         a.msgtyp = tmp.msgtyp;
219                 } else {
220                         a.msgp = args->ptr;
221                         a.msgtyp = args->arg5;
222                 }
223                 error = linux_msgrcv(&a);
224                 args->sysmsg_lresult = a.sysmsg_lresult;
225                 break;
226         }
227         case LINUX_MSGGET: {
228                 struct linux_msgget_args a;
229
230                 a.key = args->arg1;
231                 a.msgflg = args->arg2;
232                 a.sysmsg_lresult = 0;
233                 error = linux_msgget(&a);
234                 args->sysmsg_lresult = a.sysmsg_lresult;
235                 break;
236         }
237         case LINUX_MSGCTL: {
238                 struct linux_msgctl_args a;
239
240                 a.msqid = args->arg1;
241                 a.cmd = args->arg2;
242                 a.buf = args->ptr;
243                 a.sysmsg_lresult = 0;
244                 error = linux_msgctl(&a);
245                 args->sysmsg_lresult = a.sysmsg_lresult;
246                 break;
247         }
248         case LINUX_SHMAT: {
249                 struct linux_shmat_args a;
250
251                 a.shmid = args->arg1;
252                 a.shmaddr = args->ptr;
253                 a.shmflg = args->arg2;
254                 a.raddr = (l_ulong *)args->arg3;
255                 a.sysmsg_lresult = 0;
256                 error = linux_shmat(&a);
257                 args->sysmsg_lresult = a.sysmsg_lresult;
258                 break;
259         }
260         case LINUX_SHMDT: {
261                 struct linux_shmdt_args a;
262
263                 a.shmaddr = args->ptr;
264                 a.sysmsg_lresult = 0;
265                 error = linux_shmdt(&a);
266                 args->sysmsg_lresult = a.sysmsg_lresult;
267                 break;
268         }
269         case LINUX_SHMGET: {
270                 struct linux_shmget_args a;
271
272                 a.key = args->arg1;
273                 a.size = args->arg2;
274                 a.shmflg = args->arg3;
275                 a.sysmsg_lresult = 0;
276                 error = linux_shmget(&a);
277                 args->sysmsg_lresult = a.sysmsg_lresult;
278                 break;
279         }
280         case LINUX_SHMCTL: {
281                 struct linux_shmctl_args a;
282
283                 a.shmid = args->arg1;
284                 a.cmd = args->arg2;
285                 a.buf = args->ptr;
286                 a.sysmsg_lresult = 0;
287                 error = linux_shmctl(&a);
288                 args->sysmsg_lresult = a.sysmsg_lresult;
289                 break;
290         }
291         default:
292                 error = EINVAL;
293                 break;
294         }
295         return(error);
296 }
297
298 int
299 sys_linux_old_select(struct linux_old_select_args *args)
300 {
301         struct l_old_select_argv linux_args;
302         struct linux_select_args newsel;
303         int error;
304
305 #ifdef DEBUG
306         if (ldebug(old_select))
307                 kprintf(ARGS(old_select, "%p"), args->ptr);
308 #endif
309
310         error = copyin((caddr_t)args->ptr, &linux_args, sizeof(linux_args));
311         if (error)
312                 return (error);
313
314         newsel.sysmsg_result = 0;
315         newsel.nfds = linux_args.nfds;
316         newsel.readfds = linux_args.readfds;
317         newsel.writefds = linux_args.writefds;
318         newsel.exceptfds = linux_args.exceptfds;
319         newsel.timeout = linux_args.timeout;
320         error = sys_linux_select(&newsel);
321         args->sysmsg_result = newsel.sysmsg_result;
322         return(error);
323 }
324
325 int
326 sys_linux_fork(struct linux_fork_args *args)
327 {
328         int error;
329
330 #ifdef DEBUG
331         if (ldebug(fork))
332                 kprintf(ARGS(fork, ""));
333 #endif
334
335         if ((error = sys_fork((struct fork_args *)args)) != 0)
336                 return (error);
337
338         if (args->sysmsg_result == 1)
339                 args->sysmsg_result = 0;
340         return (0);
341 }
342
343 int
344 sys_linux_exit_group(struct linux_exit_group_args *args)
345 {
346         struct exit_args newargs;
347         int error;
348
349         newargs.sysmsg_result = 0;
350         newargs.rval = args->rval;
351         error = sys_exit(&newargs);
352         args->sysmsg_result = newargs.sysmsg_result;
353         return (error);
354 }
355
356 int
357 sys_linux_vfork(struct linux_vfork_args *args)
358 {
359         int error;
360
361 #ifdef DEBUG
362         if (ldebug(vfork))
363                 kprintf(ARGS(vfork, ""));
364 #endif
365
366         if ((error = sys_vfork((struct vfork_args *)args)) != 0)
367                 return (error);
368         /* Are we the child? */
369         if (args->sysmsg_result == 1)
370                 args->sysmsg_result = 0;
371         return (0);
372 }
373
374 #define CLONE_VM        0x100
375 #define CLONE_FS        0x200
376 #define CLONE_FILES     0x400
377 #define CLONE_SIGHAND   0x800
378 #define CLONE_PID       0x1000
379
380 int
381 sys_linux_clone(struct linux_clone_args *args)
382 {
383         int error, ff = RFPROC;
384         struct proc *p2;
385         int exit_signal;
386         vm_offset_t start;
387         struct rfork_args rf_args;
388
389 #ifdef DEBUG
390         if (ldebug(clone)) {
391                 kprintf(ARGS(clone, "flags %x, stack %x"), 
392                     (unsigned int)args->flags, (unsigned int)args->stack);
393                 if (args->flags & CLONE_PID)
394                         kprintf(LMSG("CLONE_PID not yet supported"));
395         }
396 #endif
397
398         if (!args->stack)
399                 return (EINVAL);
400
401         exit_signal = args->flags & 0x000000ff;
402         if (exit_signal >= LINUX_NSIG)
403                 return (EINVAL);
404
405         if (exit_signal <= LINUX_SIGTBLSZ)
406                 exit_signal = linux_to_bsd_signal[_SIG_IDX(exit_signal)];
407
408         /* RFTHREAD probably not necessary here, but it shouldn't hurt */
409         ff |= RFTHREAD;
410
411         if (args->flags & CLONE_VM)
412                 ff |= RFMEM;
413         if (args->flags & CLONE_SIGHAND)
414                 ff |= RFSIGSHARE;
415         if (!(args->flags & CLONE_FILES))
416                 ff |= RFFDG;
417
418         error = 0;
419         start = 0;
420
421         rf_args.flags = ff;
422         rf_args.sysmsg_result = 0;
423         if ((error = sys_rfork(&rf_args)) != 0)
424                 return (error);
425         args->sysmsg_result = rf_args.sysmsg_result;
426
427         p2 = pfind(rf_args.sysmsg_result);
428         if (p2 == NULL)
429                 return (ESRCH);
430
431         p2->p_sigparent = exit_signal;
432         p2->p_md.md_regs->tf_esp = (unsigned int)args->stack;
433
434 #ifdef DEBUG
435         if (ldebug(clone))
436                 kprintf(LMSG("clone: successful rfork to %ld"),
437                     (long)p2->p_pid);
438 #endif
439
440         return (0);
441 }
442
443 /* XXX move */
444 struct l_mmap_argv {
445         l_caddr_t       addr;
446         l_int           len;
447         l_int           prot;
448         l_int           flags;
449         l_int           fd;
450         l_int           pos;
451 };
452
453 #define STACK_SIZE  (2 * 1024 * 1024)
454 #define GUARD_SIZE  (4 * PAGE_SIZE)
455
456 static int
457 linux_mmap_common(caddr_t linux_addr, size_t linux_len, int linux_prot,
458     int linux_flags, int linux_fd, off_t pos, void **res)
459 {
460         struct thread *td = curthread;
461         struct proc *p = td->td_proc;
462         caddr_t addr;
463         void *new;
464         int error, flags, len, prot, fd;
465
466         flags = 0;
467         if (linux_flags & LINUX_MAP_SHARED)
468                 flags |= MAP_SHARED;
469         if (linux_flags & LINUX_MAP_PRIVATE)
470                 flags |= MAP_PRIVATE;
471         if (linux_flags & LINUX_MAP_FIXED)
472                 flags |= MAP_FIXED;
473         if (linux_flags & LINUX_MAP_ANON) {
474                 flags |= MAP_ANON;
475         } else {
476                 flags |= MAP_NOSYNC;
477         }
478         if (linux_flags & LINUX_MAP_GROWSDOWN) {
479                 flags |= MAP_STACK;
480                 /* The linux MAP_GROWSDOWN option does not limit auto
481                  * growth of the region.  Linux mmap with this option
482                  * takes as addr the inital BOS, and as len, the initial
483                  * region size.  It can then grow down from addr without
484                  * limit.  However, linux threads has an implicit internal
485                  * limit to stack size of STACK_SIZE.  Its just not
486                  * enforced explicitly in linux.  But, here we impose
487                  * a limit of (STACK_SIZE - GUARD_SIZE) on the stack
488                  * region, since we can do this with our mmap.
489                  *
490                  * Our mmap with MAP_STACK takes addr as the maximum
491                  * downsize limit on BOS, and as len the max size of
492                  * the region.  It them maps the top SGROWSIZ bytes,
493                  * and autgrows the region down, up to the limit
494                  * in addr.
495                  *
496                  * If we don't use the MAP_STACK option, the effect
497                  * of this code is to allocate a stack region of a
498                  * fixed size of (STACK_SIZE - GUARD_SIZE).
499                  */
500
501                 /* This gives us TOS */
502                 addr = linux_addr + linux_len;
503
504                 if (addr > p->p_vmspace->vm_maxsaddr) {
505                         /* Some linux apps will attempt to mmap
506                          * thread stacks near the top of their
507                          * address space.  If their TOS is greater
508                          * than vm_maxsaddr, vm_map_growstack()
509                          * will confuse the thread stack with the
510                          * process stack and deliver a SEGV if they
511                          * attempt to grow the thread stack past their
512                          * current stacksize rlimit.  To avoid this,
513                          * adjust vm_maxsaddr upwards to reflect
514                          * the current stacksize rlimit rather
515                          * than the maximum possible stacksize.
516                          * It would be better to adjust the
517                          * mmap'ed region, but some apps do not check
518                          * mmap's return value.
519                          */
520                         p->p_vmspace->vm_maxsaddr = (char *)USRSTACK -
521                             p->p_rlimit[RLIMIT_STACK].rlim_cur;
522                 }
523
524                 /* This gives us our maximum stack size */
525                 if (linux_len > STACK_SIZE - GUARD_SIZE) {
526                         len = linux_len;
527                 } else {
528                         len = STACK_SIZE - GUARD_SIZE;
529                 }
530                 /* This gives us a new BOS.  If we're using VM_STACK, then
531                  * mmap will just map the top SGROWSIZ bytes, and let
532                  * the stack grow down to the limit at BOS.  If we're
533                  * not using VM_STACK we map the full stack, since we
534                  * don't have a way to autogrow it.
535                  */
536                 addr -= len;
537         } else {
538                 addr = linux_addr;
539                 len = linux_len;
540         }
541
542         prot = linux_prot | PROT_READ;
543         if (linux_flags & LINUX_MAP_ANON) {
544                 fd = -1;
545         } else {
546                 fd = linux_fd;
547         }
548         
549 #ifdef DEBUG
550         if (ldebug(mmap) || ldebug(mmap2))
551                 kprintf("-> (%p, %d, %d, 0x%08x, %d, %lld)\n",
552                     addr, len, prot, flags, fd, pos);
553 #endif
554         error = kern_mmap(curproc->p_vmspace, addr, len,
555                           prot, flags, fd, pos, &new);
556
557         if (error == 0)
558                 *res = new;
559         return (error);
560 }
561
562 int
563 sys_linux_mmap(struct linux_mmap_args *args)
564 {
565         struct l_mmap_argv linux_args;
566         int error;
567
568         error = copyin((caddr_t)args->ptr, &linux_args, sizeof(linux_args));
569         if (error)
570                 return (error);
571
572 #ifdef DEBUG
573         if (ldebug(mmap))
574                 kprintf(ARGS(mmap, "%p, %d, %d, 0x%08x, %d, %d"),
575                     (void *)linux_args.addr, linux_args.len, linux_args.prot,
576                     linux_args.flags, linux_args.fd, linux_args.pos);
577 #endif
578         error = linux_mmap_common(linux_args.addr, linux_args.len,
579             linux_args.prot, linux_args.flags, linux_args.fd,
580             linux_args.pos, &args->sysmsg_resultp);
581 #ifdef DEBUG
582         if (ldebug(mmap))
583                 kprintf("-> %p\n", args->sysmsg_resultp);
584 #endif
585         return(error);
586 }
587
588 int
589 sys_linux_mmap2(struct linux_mmap2_args *args)
590 {
591         int error;
592
593 #ifdef DEBUG
594         if (ldebug(mmap2))
595                 kprintf(ARGS(mmap2, "%p, %d, %d, 0x%08x, %d, %d"),
596                     (void *)args->addr, args->len, args->prot, args->flags,
597                     args->fd, args->pgoff);
598 #endif
599         error = linux_mmap_common((void *)args->addr, args->len, args->prot,
600             args->flags, args->fd, args->pgoff * PAGE_SIZE,
601             &args->sysmsg_resultp);
602 #ifdef DEBUG
603         if (ldebug(mmap2))
604                 kprintf("-> %p\n", args->sysmsg_resultp);
605 #endif
606         return (error);
607 }
608
609 int
610 sys_linux_pipe(struct linux_pipe_args *args)
611 {
612         int error;
613         int reg_edx;
614         struct pipe_args bsd_args;
615
616 #ifdef DEBUG
617         if (ldebug(pipe))
618                 kprintf(ARGS(pipe, "*"));
619 #endif
620
621         reg_edx = args->sysmsg_fds[1];
622         error = sys_pipe(&bsd_args);
623         if (error) {
624                 args->sysmsg_fds[1] = reg_edx;
625                 return (error);
626         }
627
628         error = copyout(bsd_args.sysmsg_fds, args->pipefds, 2*sizeof(int));
629         if (error) {
630                 args->sysmsg_fds[1] = reg_edx;
631                 return (error);
632         }
633
634         args->sysmsg_fds[1] = reg_edx;
635         args->sysmsg_fds[0] = 0;
636         return (0);
637 }
638
639 int
640 sys_linux_ioperm(struct linux_ioperm_args *args)
641 {
642         struct sysarch_args sa;
643         struct i386_ioperm_args *iia;
644         caddr_t sg;
645         int error;
646
647         sg = stackgap_init();
648         iia = stackgap_alloc(&sg, sizeof(struct i386_ioperm_args));
649         iia->start = args->start;
650         iia->length = args->length;
651         iia->enable = args->enable;
652         sa.sysmsg_resultp = NULL;
653         sa.op = I386_SET_IOPERM;
654         sa.parms = (char *)iia;
655         error = sys_sysarch(&sa);
656         args->sysmsg_resultp = sa.sysmsg_resultp;
657         return(error);
658 }
659
660 int
661 sys_linux_iopl(struct linux_iopl_args *args)
662 {
663         struct thread *td = curthread;
664         struct proc *p = td->td_proc;
665         int error;
666
667         KKASSERT(p);
668
669         if (args->level < 0 || args->level > 3)
670                 return (EINVAL);
671         if ((error = suser(td)) != 0)
672                 return (error);
673         if (securelevel > 0)
674                 return (EPERM);
675         p->p_md.md_regs->tf_eflags = (p->p_md.md_regs->tf_eflags & ~PSL_IOPL) |
676             (args->level * (PSL_IOPL / 3));
677         return (0);
678 }
679
680 int
681 sys_linux_modify_ldt(struct linux_modify_ldt_args *uap)
682 {
683         int error;
684         caddr_t sg;
685         struct sysarch_args args;
686         struct i386_ldt_args *ldt;
687         struct l_descriptor ld;
688         union descriptor *desc;
689
690         sg = stackgap_init();
691
692         if (uap->ptr == NULL)
693                 return (EINVAL);
694
695         switch (uap->func) {
696         case 0x00: /* read_ldt */
697                 ldt = stackgap_alloc(&sg, sizeof(*ldt));
698                 ldt->start = 0;
699                 ldt->descs = uap->ptr;
700                 ldt->num = uap->bytecount / sizeof(union descriptor);
701                 args.op = I386_GET_LDT;
702                 args.parms = (char*)ldt;
703                 args.sysmsg_result = 0;
704                 error = sys_sysarch(&args);
705                 uap->sysmsg_result = args.sysmsg_result *
706                                             sizeof(union descriptor);
707                 break;
708         case 0x01: /* write_ldt */
709         case 0x11: /* write_ldt */
710                 if (uap->bytecount != sizeof(ld))
711                         return (EINVAL);
712
713                 error = copyin(uap->ptr, &ld, sizeof(ld));
714                 if (error)
715                         return (error);
716
717                 ldt = stackgap_alloc(&sg, sizeof(*ldt));
718                 desc = stackgap_alloc(&sg, sizeof(*desc));
719                 ldt->start = ld.entry_number;
720                 ldt->descs = desc;
721                 ldt->num = 1;
722                 desc->sd.sd_lolimit = (ld.limit & 0x0000ffff);
723                 desc->sd.sd_hilimit = (ld.limit & 0x000f0000) >> 16;
724                 desc->sd.sd_lobase = (ld.base_addr & 0x00ffffff);
725                 desc->sd.sd_hibase = (ld.base_addr & 0xff000000) >> 24;
726                 desc->sd.sd_type = SDT_MEMRO | ((ld.read_exec_only ^ 1) << 1) |
727                         (ld.contents << 2);
728                 desc->sd.sd_dpl = 3;
729                 desc->sd.sd_p = (ld.seg_not_present ^ 1);
730                 desc->sd.sd_xx = 0;
731                 desc->sd.sd_def32 = ld.seg_32bit;
732                 desc->sd.sd_gran = ld.limit_in_pages;
733                 args.op = I386_SET_LDT;
734                 args.parms = (char*)ldt;
735                 args.sysmsg_result = 0;
736                 error = sys_sysarch(&args);
737                 uap->sysmsg_result = args.sysmsg_result;
738                 break;
739         default:
740                 error = EINVAL;
741                 break;
742         }
743
744         return (error);
745 }
746
747 int
748 sys_linux_sigaction(struct linux_sigaction_args *args)
749 {
750         l_osigaction_t osa;
751         l_sigaction_t linux_act, linux_oact;
752         struct sigaction act, oact;
753         int error;
754
755 #ifdef DEBUG
756         if (ldebug(sigaction))
757                 kprintf(ARGS(sigaction, "%d, %p, %p"),
758                     args->sig, (void *)args->nsa, (void *)args->osa);
759 #endif
760
761         if (args->nsa) {
762                 error = copyin(args->nsa, &osa, sizeof(l_osigaction_t));
763                 if (error)
764                         return (error);
765                 linux_act.lsa_handler = osa.lsa_handler;
766                 linux_act.lsa_flags = osa.lsa_flags;
767                 linux_act.lsa_restorer = osa.lsa_restorer;
768                 LINUX_SIGEMPTYSET(linux_act.lsa_mask);
769                 linux_act.lsa_mask.__bits[0] = osa.lsa_mask;
770                 linux_to_bsd_sigaction(&linux_act, &act);
771         }
772
773         error = kern_sigaction(args->sig, args->nsa ? &act : NULL,
774             args->osa ? &oact : NULL);
775
776         if (args->osa != NULL && !error) {
777                 bsd_to_linux_sigaction(&oact, &linux_oact);
778                 osa.lsa_handler = linux_oact.lsa_handler;
779                 osa.lsa_flags = linux_oact.lsa_flags;
780                 osa.lsa_restorer = linux_oact.lsa_restorer;
781                 osa.lsa_mask = linux_oact.lsa_mask.__bits[0];
782                 error = copyout(&osa, args->osa, sizeof(l_osigaction_t));
783         }
784         return (error);
785 }
786
787 /*
788  * Linux has two extra args, restart and oldmask.  We dont use these,
789  * but it seems that "restart" is actually a context pointer that
790  * enables the signal to happen with a different register set.
791  */
792 int
793 sys_linux_sigsuspend(struct linux_sigsuspend_args *args)
794 {
795         l_sigset_t linux_mask;
796         sigset_t mask;
797         int error;
798
799 #ifdef DEBUG
800         if (ldebug(sigsuspend))
801                 kprintf(ARGS(sigsuspend, "%08lx"), (unsigned long)args->mask);
802 #endif
803
804         LINUX_SIGEMPTYSET(mask);
805         mask.__bits[0] = args->mask;
806         linux_to_bsd_sigset(&linux_mask, &mask);
807
808         error = kern_sigsuspend(&mask);
809
810         return(error);
811 }
812
813 int
814 sys_linux_rt_sigsuspend(struct linux_rt_sigsuspend_args *uap)
815 {
816         l_sigset_t linux_mask;
817         sigset_t mask;
818         int error;
819
820 #ifdef DEBUG
821         if (ldebug(rt_sigsuspend))
822                 kprintf(ARGS(rt_sigsuspend, "%p, %d"),
823                     (void *)uap->newset, uap->sigsetsize);
824 #endif
825
826         if (uap->sigsetsize != sizeof(l_sigset_t))
827                 return (EINVAL);
828
829         error = copyin(uap->newset, &linux_mask, sizeof(l_sigset_t));
830         if (error)
831                 return (error);
832
833         linux_to_bsd_sigset(&linux_mask, &mask);
834
835         error = kern_sigsuspend(&mask);
836
837         return(error);
838 }
839
840 int
841 sys_linux_pause(struct linux_pause_args *args)
842 {
843         struct thread *td = curthread;
844         struct proc *p = td->td_proc;
845         sigset_t mask;
846         int error;
847
848 #ifdef DEBUG
849         if (ldebug(pause))
850                 kprintf(ARGS(pause, ""));
851 #endif
852
853         mask = p->p_sigmask;
854
855         error = kern_sigsuspend(&mask);
856
857         return(error);
858 }
859
860 int
861 sys_linux_sigaltstack(struct linux_sigaltstack_args *uap)
862 {
863         stack_t ss, oss;
864         l_stack_t linux_ss;
865         int error;
866
867 #ifdef DEBUG
868         if (ldebug(sigaltstack))
869                 kprintf(ARGS(sigaltstack, "%p, %p"), uap->uss, uap->uoss);
870 #endif
871
872         if (uap->uss) {
873                 error = copyin(uap->uss, &linux_ss, sizeof(l_stack_t));
874                 if (error)
875                         return (error);
876
877                 ss.ss_sp = linux_ss.ss_sp;
878                 ss.ss_size = linux_ss.ss_size;
879                 ss.ss_flags = linux_to_bsd_sigaltstack(linux_ss.ss_flags);
880         }
881
882         error = kern_sigaltstack(uap->uss ? &ss : NULL,
883             uap->uoss ? &oss : NULL);
884
885         if (error == 0 && uap->uoss) {
886                 linux_ss.ss_sp = oss.ss_sp;
887                 linux_ss.ss_size = oss.ss_size;
888                 linux_ss.ss_flags = bsd_to_linux_sigaltstack(oss.ss_flags);
889                 error = copyout(&linux_ss, uap->uoss, sizeof(l_stack_t));
890         }
891
892         return (error);
893 }