Make some adjustments to low level madvise/mcontrol/mmap support code to
[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.17 2006/09/17 21:07:26 dillon 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                 printf(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                 printf(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                 printf(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         error = sys_exit(&newargs);
351         args->sysmsg_result = newargs.sysmsg_result;
352         return (error);
353 }
354
355 int
356 sys_linux_vfork(struct linux_vfork_args *args)
357 {
358         int error;
359
360 #ifdef DEBUG
361         if (ldebug(vfork))
362                 printf(ARGS(vfork, ""));
363 #endif
364
365         if ((error = sys_vfork((struct vfork_args *)args)) != 0)
366                 return (error);
367         /* Are we the child? */
368         if (args->sysmsg_result == 1)
369                 args->sysmsg_result = 0;
370         return (0);
371 }
372
373 #define CLONE_VM        0x100
374 #define CLONE_FS        0x200
375 #define CLONE_FILES     0x400
376 #define CLONE_SIGHAND   0x800
377 #define CLONE_PID       0x1000
378
379 int
380 sys_linux_clone(struct linux_clone_args *args)
381 {
382         int error, ff = RFPROC;
383         struct proc *p2;
384         int exit_signal;
385         vm_offset_t start;
386         struct rfork_args rf_args;
387
388 #ifdef DEBUG
389         if (ldebug(clone)) {
390                 printf(ARGS(clone, "flags %x, stack %x"), 
391                     (unsigned int)args->flags, (unsigned int)args->stack);
392                 if (args->flags & CLONE_PID)
393                         printf(LMSG("CLONE_PID not yet supported"));
394         }
395 #endif
396
397         if (!args->stack)
398                 return (EINVAL);
399
400         exit_signal = args->flags & 0x000000ff;
401         if (exit_signal >= LINUX_NSIG)
402                 return (EINVAL);
403
404         if (exit_signal <= LINUX_SIGTBLSZ)
405                 exit_signal = linux_to_bsd_signal[_SIG_IDX(exit_signal)];
406
407         /* RFTHREAD probably not necessary here, but it shouldn't hurt */
408         ff |= RFTHREAD;
409
410         if (args->flags & CLONE_VM)
411                 ff |= RFMEM;
412         if (args->flags & CLONE_SIGHAND)
413                 ff |= RFSIGSHARE;
414         if (!(args->flags & CLONE_FILES))
415                 ff |= RFFDG;
416
417         error = 0;
418         start = 0;
419
420         rf_args.flags = ff;
421         rf_args.sysmsg_result = 0;
422         if ((error = sys_rfork(&rf_args)) != 0)
423                 return (error);
424         args->sysmsg_result = rf_args.sysmsg_result;
425
426         p2 = pfind(rf_args.sysmsg_result);
427         if (p2 == NULL)
428                 return (ESRCH);
429
430         p2->p_sigparent = exit_signal;
431         p2->p_md.md_regs->tf_esp = (unsigned int)args->stack;
432
433 #ifdef DEBUG
434         if (ldebug(clone))
435                 printf(LMSG("clone: successful rfork to %ld"),
436                     (long)p2->p_pid);
437 #endif
438
439         return (0);
440 }
441
442 /* XXX move */
443 struct l_mmap_argv {
444         l_caddr_t       addr;
445         l_int           len;
446         l_int           prot;
447         l_int           flags;
448         l_int           fd;
449         l_int           pos;
450 };
451
452 #define STACK_SIZE  (2 * 1024 * 1024)
453 #define GUARD_SIZE  (4 * PAGE_SIZE)
454
455 static int
456 linux_mmap_common(caddr_t linux_addr, size_t linux_len, int linux_prot,
457     int linux_flags, int linux_fd, off_t pos, void **res)
458 {
459         struct thread *td = curthread;
460         struct proc *p = td->td_proc;
461         caddr_t addr;
462         void *new;
463         int error, flags, len, prot, fd;
464
465         flags = 0;
466         if (linux_flags & LINUX_MAP_SHARED)
467                 flags |= MAP_SHARED;
468         if (linux_flags & LINUX_MAP_PRIVATE)
469                 flags |= MAP_PRIVATE;
470         if (linux_flags & LINUX_MAP_FIXED)
471                 flags |= MAP_FIXED;
472         if (linux_flags & LINUX_MAP_ANON) {
473                 flags |= MAP_ANON;
474         } else {
475                 flags |= MAP_NOSYNC;
476         }
477         if (linux_flags & LINUX_MAP_GROWSDOWN) {
478                 flags |= MAP_STACK;
479                 /* The linux MAP_GROWSDOWN option does not limit auto
480                  * growth of the region.  Linux mmap with this option
481                  * takes as addr the inital BOS, and as len, the initial
482                  * region size.  It can then grow down from addr without
483                  * limit.  However, linux threads has an implicit internal
484                  * limit to stack size of STACK_SIZE.  Its just not
485                  * enforced explicitly in linux.  But, here we impose
486                  * a limit of (STACK_SIZE - GUARD_SIZE) on the stack
487                  * region, since we can do this with our mmap.
488                  *
489                  * Our mmap with MAP_STACK takes addr as the maximum
490                  * downsize limit on BOS, and as len the max size of
491                  * the region.  It them maps the top SGROWSIZ bytes,
492                  * and autgrows the region down, up to the limit
493                  * in addr.
494                  *
495                  * If we don't use the MAP_STACK option, the effect
496                  * of this code is to allocate a stack region of a
497                  * fixed size of (STACK_SIZE - GUARD_SIZE).
498                  */
499
500                 /* This gives us TOS */
501                 addr = linux_addr + linux_len;
502
503                 if (addr > p->p_vmspace->vm_maxsaddr) {
504                         /* Some linux apps will attempt to mmap
505                          * thread stacks near the top of their
506                          * address space.  If their TOS is greater
507                          * than vm_maxsaddr, vm_map_growstack()
508                          * will confuse the thread stack with the
509                          * process stack and deliver a SEGV if they
510                          * attempt to grow the thread stack past their
511                          * current stacksize rlimit.  To avoid this,
512                          * adjust vm_maxsaddr upwards to reflect
513                          * the current stacksize rlimit rather
514                          * than the maximum possible stacksize.
515                          * It would be better to adjust the
516                          * mmap'ed region, but some apps do not check
517                          * mmap's return value.
518                          */
519                         p->p_vmspace->vm_maxsaddr = (char *)USRSTACK -
520                             p->p_rlimit[RLIMIT_STACK].rlim_cur;
521                 }
522
523                 /* This gives us our maximum stack size */
524                 if (linux_len > STACK_SIZE - GUARD_SIZE) {
525                         len = linux_len;
526                 } else {
527                         len = STACK_SIZE - GUARD_SIZE;
528                 }
529                 /* This gives us a new BOS.  If we're using VM_STACK, then
530                  * mmap will just map the top SGROWSIZ bytes, and let
531                  * the stack grow down to the limit at BOS.  If we're
532                  * not using VM_STACK we map the full stack, since we
533                  * don't have a way to autogrow it.
534                  */
535                 addr -= len;
536         } else {
537                 addr = linux_addr;
538                 len = linux_len;
539         }
540
541         prot = linux_prot | PROT_READ;
542         if (linux_flags & LINUX_MAP_ANON) {
543                 fd = -1;
544         } else {
545                 fd = linux_fd;
546         }
547         
548 #ifdef DEBUG
549         if (ldebug(mmap) || ldebug(mmap2))
550                 printf("-> (%p, %d, %d, 0x%08x, %d, %lld)\n",
551                     addr, len, prot, flags, fd, pos);
552 #endif
553         error = kern_mmap(curproc->p_vmspace, addr, len,
554                           prot, flags, fd, pos, &new);
555
556         if (error == 0)
557                 *res = new;
558         return (error);
559 }
560
561 int
562 sys_linux_mmap(struct linux_mmap_args *args)
563 {
564         struct l_mmap_argv linux_args;
565         int error;
566
567         error = copyin((caddr_t)args->ptr, &linux_args, sizeof(linux_args));
568         if (error)
569                 return (error);
570
571 #ifdef DEBUG
572         if (ldebug(mmap))
573                 printf(ARGS(mmap, "%p, %d, %d, 0x%08x, %d, %d"),
574                     (void *)linux_args.addr, linux_args.len, linux_args.prot,
575                     linux_args.flags, linux_args.fd, linux_args.pos);
576 #endif
577         error = linux_mmap_common(linux_args.addr, linux_args.len,
578             linux_args.prot, linux_args.flags, linux_args.fd,
579             linux_args.pos, &args->sysmsg_resultp);
580 #ifdef DEBUG
581         if (ldebug(mmap))
582                 printf("-> %p\n", args->sysmsg_resultp);
583 #endif
584         return(error);
585 }
586
587 int
588 sys_linux_mmap2(struct linux_mmap2_args *args)
589 {
590         int error;
591
592 #ifdef DEBUG
593         if (ldebug(mmap2))
594                 printf(ARGS(mmap2, "%p, %d, %d, 0x%08x, %d, %d"),
595                     (void *)args->addr, args->len, args->prot, args->flags,
596                     args->fd, args->pgoff);
597 #endif
598         error = linux_mmap_common((void *)args->addr, args->len, args->prot,
599             args->flags, args->fd, args->pgoff * PAGE_SIZE,
600             &args->sysmsg_resultp);
601 #ifdef DEBUG
602         if (ldebug(mmap2))
603                 printf("-> %p\n", args->sysmsg_resultp);
604 #endif
605         return (error);
606 }
607
608 int
609 sys_linux_pipe(struct linux_pipe_args *args)
610 {
611         int error;
612         int reg_edx;
613         struct pipe_args bsd_args;
614
615 #ifdef DEBUG
616         if (ldebug(pipe))
617                 printf(ARGS(pipe, "*"));
618 #endif
619
620         reg_edx = args->sysmsg_fds[1];
621         error = sys_pipe(&bsd_args);
622         if (error) {
623                 args->sysmsg_fds[1] = reg_edx;
624                 return (error);
625         }
626
627         error = copyout(bsd_args.sysmsg_fds, args->pipefds, 2*sizeof(int));
628         if (error) {
629                 args->sysmsg_fds[1] = reg_edx;
630                 return (error);
631         }
632
633         args->sysmsg_fds[1] = reg_edx;
634         args->sysmsg_fds[0] = 0;
635         return (0);
636 }
637
638 int
639 sys_linux_ioperm(struct linux_ioperm_args *args)
640 {
641         struct sysarch_args sa;
642         struct i386_ioperm_args *iia;
643         caddr_t sg;
644         int error;
645
646         sg = stackgap_init();
647         iia = stackgap_alloc(&sg, sizeof(struct i386_ioperm_args));
648         iia->start = args->start;
649         iia->length = args->length;
650         iia->enable = args->enable;
651         sa.sysmsg_resultp = NULL;
652         sa.op = I386_SET_IOPERM;
653         sa.parms = (char *)iia;
654         error = sys_sysarch(&sa);
655         args->sysmsg_resultp = sa.sysmsg_resultp;
656         return(error);
657 }
658
659 int
660 sys_linux_iopl(struct linux_iopl_args *args)
661 {
662         struct thread *td = curthread;
663         struct proc *p = td->td_proc;
664         int error;
665
666         KKASSERT(p);
667
668         if (args->level < 0 || args->level > 3)
669                 return (EINVAL);
670         if ((error = suser(td)) != 0)
671                 return (error);
672         if (securelevel > 0)
673                 return (EPERM);
674         p->p_md.md_regs->tf_eflags = (p->p_md.md_regs->tf_eflags & ~PSL_IOPL) |
675             (args->level * (PSL_IOPL / 3));
676         return (0);
677 }
678
679 int
680 sys_linux_modify_ldt(struct linux_modify_ldt_args *uap)
681 {
682         int error;
683         caddr_t sg;
684         struct sysarch_args args;
685         struct i386_ldt_args *ldt;
686         struct l_descriptor ld;
687         union descriptor *desc;
688
689         sg = stackgap_init();
690
691         if (uap->ptr == NULL)
692                 return (EINVAL);
693
694         switch (uap->func) {
695         case 0x00: /* read_ldt */
696                 ldt = stackgap_alloc(&sg, sizeof(*ldt));
697                 ldt->start = 0;
698                 ldt->descs = uap->ptr;
699                 ldt->num = uap->bytecount / sizeof(union descriptor);
700                 args.op = I386_GET_LDT;
701                 args.parms = (char*)ldt;
702                 args.sysmsg_result = 0;
703                 error = sys_sysarch(&args);
704                 uap->sysmsg_result = args.sysmsg_result *
705                                             sizeof(union descriptor);
706                 break;
707         case 0x01: /* write_ldt */
708         case 0x11: /* write_ldt */
709                 if (uap->bytecount != sizeof(ld))
710                         return (EINVAL);
711
712                 error = copyin(uap->ptr, &ld, sizeof(ld));
713                 if (error)
714                         return (error);
715
716                 ldt = stackgap_alloc(&sg, sizeof(*ldt));
717                 desc = stackgap_alloc(&sg, sizeof(*desc));
718                 ldt->start = ld.entry_number;
719                 ldt->descs = desc;
720                 ldt->num = 1;
721                 desc->sd.sd_lolimit = (ld.limit & 0x0000ffff);
722                 desc->sd.sd_hilimit = (ld.limit & 0x000f0000) >> 16;
723                 desc->sd.sd_lobase = (ld.base_addr & 0x00ffffff);
724                 desc->sd.sd_hibase = (ld.base_addr & 0xff000000) >> 24;
725                 desc->sd.sd_type = SDT_MEMRO | ((ld.read_exec_only ^ 1) << 1) |
726                         (ld.contents << 2);
727                 desc->sd.sd_dpl = 3;
728                 desc->sd.sd_p = (ld.seg_not_present ^ 1);
729                 desc->sd.sd_xx = 0;
730                 desc->sd.sd_def32 = ld.seg_32bit;
731                 desc->sd.sd_gran = ld.limit_in_pages;
732                 args.op = I386_SET_LDT;
733                 args.parms = (char*)ldt;
734                 args.sysmsg_result = 0;
735                 error = sys_sysarch(&args);
736                 uap->sysmsg_result = args.sysmsg_result;
737                 break;
738         default:
739                 error = EINVAL;
740                 break;
741         }
742
743         return (error);
744 }
745
746 int
747 sys_linux_sigaction(struct linux_sigaction_args *args)
748 {
749         l_osigaction_t osa;
750         l_sigaction_t linux_act, linux_oact;
751         struct sigaction act, oact;
752         int error;
753
754 #ifdef DEBUG
755         if (ldebug(sigaction))
756                 printf(ARGS(sigaction, "%d, %p, %p"),
757                     args->sig, (void *)args->nsa, (void *)args->osa);
758 #endif
759
760         if (args->nsa) {
761                 error = copyin(args->nsa, &osa, sizeof(l_osigaction_t));
762                 if (error)
763                         return (error);
764                 linux_act.lsa_handler = osa.lsa_handler;
765                 linux_act.lsa_flags = osa.lsa_flags;
766                 linux_act.lsa_restorer = osa.lsa_restorer;
767                 LINUX_SIGEMPTYSET(linux_act.lsa_mask);
768                 linux_act.lsa_mask.__bits[0] = osa.lsa_mask;
769                 linux_to_bsd_sigaction(&linux_act, &act);
770         }
771
772         error = kern_sigaction(args->sig, args->nsa ? &act : NULL,
773             args->osa ? &oact : NULL);
774
775         if (args->osa != NULL && !error) {
776                 bsd_to_linux_sigaction(&oact, &linux_oact);
777                 osa.lsa_handler = linux_oact.lsa_handler;
778                 osa.lsa_flags = linux_oact.lsa_flags;
779                 osa.lsa_restorer = linux_oact.lsa_restorer;
780                 osa.lsa_mask = linux_oact.lsa_mask.__bits[0];
781                 error = copyout(&osa, args->osa, sizeof(l_osigaction_t));
782         }
783         return (error);
784 }
785
786 /*
787  * Linux has two extra args, restart and oldmask.  We dont use these,
788  * but it seems that "restart" is actually a context pointer that
789  * enables the signal to happen with a different register set.
790  */
791 int
792 sys_linux_sigsuspend(struct linux_sigsuspend_args *args)
793 {
794         l_sigset_t linux_mask;
795         sigset_t mask;
796         int error;
797
798 #ifdef DEBUG
799         if (ldebug(sigsuspend))
800                 printf(ARGS(sigsuspend, "%08lx"), (unsigned long)args->mask);
801 #endif
802
803         LINUX_SIGEMPTYSET(mask);
804         mask.__bits[0] = args->mask;
805         linux_to_bsd_sigset(&linux_mask, &mask);
806
807         error = kern_sigsuspend(&mask);
808
809         return(error);
810 }
811
812 int
813 sys_linux_rt_sigsuspend(struct linux_rt_sigsuspend_args *uap)
814 {
815         l_sigset_t linux_mask;
816         sigset_t mask;
817         int error;
818
819 #ifdef DEBUG
820         if (ldebug(rt_sigsuspend))
821                 printf(ARGS(rt_sigsuspend, "%p, %d"),
822                     (void *)uap->newset, uap->sigsetsize);
823 #endif
824
825         if (uap->sigsetsize != sizeof(l_sigset_t))
826                 return (EINVAL);
827
828         error = copyin(uap->newset, &linux_mask, sizeof(l_sigset_t));
829         if (error)
830                 return (error);
831
832         linux_to_bsd_sigset(&linux_mask, &mask);
833
834         error = kern_sigsuspend(&mask);
835
836         return(error);
837 }
838
839 int
840 sys_linux_pause(struct linux_pause_args *args)
841 {
842         struct thread *td = curthread;
843         struct proc *p = td->td_proc;
844         sigset_t mask;
845         int error;
846
847 #ifdef DEBUG
848         if (ldebug(pause))
849                 printf(ARGS(pause, ""));
850 #endif
851
852         mask = p->p_sigmask;
853
854         error = kern_sigsuspend(&mask);
855
856         return(error);
857 }
858
859 int
860 sys_linux_sigaltstack(struct linux_sigaltstack_args *uap)
861 {
862         stack_t ss, oss;
863         l_stack_t linux_ss;
864         int error;
865
866 #ifdef DEBUG
867         if (ldebug(sigaltstack))
868                 printf(ARGS(sigaltstack, "%p, %p"), uap->uss, uap->uoss);
869 #endif
870
871         if (uap->uss) {
872                 error = copyin(uap->uss, &linux_ss, sizeof(l_stack_t));
873                 if (error)
874                         return (error);
875
876                 ss.ss_sp = linux_ss.ss_sp;
877                 ss.ss_size = linux_ss.ss_size;
878                 ss.ss_flags = linux_to_bsd_sigaltstack(linux_ss.ss_flags);
879         }
880
881         error = kern_sigaltstack(uap->uss ? &ss : NULL,
882             uap->uoss ? &oss : NULL);
883
884         if (error == 0 && uap->uoss) {
885                 linux_ss.ss_sp = oss.ss_sp;
886                 linux_ss.ss_size = oss.ss_size;
887                 linux_ss.ss_flags = bsd_to_linux_sigaltstack(oss.ss_flags);
888                 error = copyout(&linux_ss, uap->uoss, sizeof(l_stack_t));
889         }
890
891         return (error);
892 }