]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/compat/svr4/svr4_misc.c
Upgrade our copy of clang and llvm to 3.5.1 release. This is a bugfix
[FreeBSD/FreeBSD.git] / sys / compat / svr4 / svr4_misc.c
1 /*-
2  * Copyright (c) 1998 Mark Newton
3  * Copyright (c) 1994 Christos Zoulas
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  * 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 /*
29  * SVR4 compatibility module.
30  *
31  * SVR4 system calls that are implemented differently in BSD are
32  * handled here.
33  */
34
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/capsicum.h>
41 #include <sys/dirent.h>
42 #include <sys/fcntl.h>
43 #include <sys/filedesc.h>
44 #include <sys/imgact.h>
45 #include <sys/kernel.h>
46 #include <sys/lock.h>
47 #include <sys/malloc.h>
48 #include <sys/file.h>           /* Must come after sys/malloc.h */
49 #include <sys/mman.h>
50 #include <sys/mount.h>
51 #include <sys/msg.h>
52 #include <sys/mutex.h>
53 #include <sys/namei.h>
54 #include <sys/priv.h>
55 #include <sys/proc.h>
56 #include <sys/ptrace.h>
57 #include <sys/resource.h>
58 #include <sys/resourcevar.h>
59 #include <sys/sem.h>
60 #include <sys/signalvar.h>
61 #include <sys/stat.h>
62 #include <sys/sx.h>
63 #include <sys/syscallsubr.h>
64 #include <sys/sysproto.h>
65 #include <sys/time.h>
66 #include <sys/times.h>
67 #include <sys/uio.h>
68 #include <sys/vnode.h>
69 #include <sys/wait.h>
70
71 #include <compat/svr4/svr4.h>
72 #include <compat/svr4/svr4_types.h>
73 #include <compat/svr4/svr4_signal.h>
74 #include <compat/svr4/svr4_proto.h>
75 #include <compat/svr4/svr4_util.h>
76 #include <compat/svr4/svr4_sysconfig.h>
77 #include <compat/svr4/svr4_dirent.h>
78 #include <compat/svr4/svr4_acl.h>
79 #include <compat/svr4/svr4_ulimit.h>
80 #include <compat/svr4/svr4_statvfs.h>
81 #include <compat/svr4/svr4_hrt.h>
82 #include <compat/svr4/svr4_mman.h>
83 #include <compat/svr4/svr4_wait.h>
84
85 #include <security/mac/mac_framework.h>
86
87 #include <machine/vmparam.h>
88 #include <vm/vm.h>
89 #include <vm/vm_param.h>
90 #include <vm/vm_map.h>
91 #if defined(__FreeBSD__)
92 #include <vm/uma.h>
93 #include <vm/vm_extern.h>
94 #endif
95
96 #if defined(NetBSD)
97 # if defined(UVM)
98 #  include <uvm/uvm_extern.h>
99 # endif
100 #endif
101
102 #define BSD_DIRENT(cp)          ((struct dirent *)(cp))
103
104 static int svr4_mknod(struct thread *, register_t *, char *,
105     svr4_mode_t, svr4_dev_t);
106
107 static __inline clock_t timeval_to_clock_t(struct timeval *);
108 static int svr4_setinfo (pid_t , struct rusage *, int, svr4_siginfo_t *);
109
110 struct svr4_hrtcntl_args;
111 static int svr4_hrtcntl (struct thread *, struct svr4_hrtcntl_args *,
112     register_t *);
113 static void bsd_statfs_to_svr4_statvfs(const struct statfs *,
114     struct svr4_statvfs *);
115 static void bsd_statfs_to_svr4_statvfs64(const struct statfs *,
116     struct svr4_statvfs64 *);
117 static struct proc *svr4_pfind(pid_t pid);
118
119 /* BOGUS noop */
120 #if defined(BOGUS)
121 int
122 svr4_sys_setitimer(td, uap)
123         struct thread *td;
124         struct svr4_sys_setitimer_args *uap;
125 {
126         td->td_retval[0] = 0;
127         return 0;
128 }
129 #endif
130
131 int
132 svr4_sys_wait(td, uap)
133         struct thread *td;
134         struct svr4_sys_wait_args *uap;
135 {
136         int error, st, sig;
137
138         error = kern_wait(td, WAIT_ANY, &st, 0, NULL);
139         if (error)
140                 return (error);
141       
142         if (WIFSIGNALED(st)) {
143                 sig = WTERMSIG(st);
144                 if (sig >= 0 && sig < NSIG)
145                         st = (st & ~0177) | SVR4_BSD2SVR4_SIG(sig);
146         } else if (WIFSTOPPED(st)) {
147                 sig = WSTOPSIG(st);
148                 if (sig >= 0 && sig < NSIG)
149                         st = (st & ~0xff00) | (SVR4_BSD2SVR4_SIG(sig) << 8);
150         }
151
152         /*
153          * It looks like wait(2) on svr4/solaris/2.4 returns
154          * the status in retval[1], and the pid on retval[0].
155          */
156         td->td_retval[1] = st;
157
158         if (uap->status)
159                 error = copyout(&st, uap->status, sizeof(st));
160
161         return (error);
162 }
163
164 int
165 svr4_sys_execv(td, uap)
166         struct thread *td;
167         struct svr4_sys_execv_args *uap;
168 {
169         struct image_args eargs;
170         char *path;
171         int error;
172
173         CHECKALTEXIST(td, uap->path, &path);
174
175         error = exec_copyin_args(&eargs, path, UIO_SYSSPACE, uap->argp, NULL);
176         free(path, M_TEMP);
177         if (error == 0)
178                 error = kern_execve(td, &eargs, NULL);
179         return (error);
180 }
181
182 int
183 svr4_sys_execve(td, uap)
184         struct thread *td;
185         struct svr4_sys_execve_args *uap;
186 {
187         struct image_args eargs;
188         char *path;
189         int error;
190
191         CHECKALTEXIST(td, uap->path, &path);
192
193         error = exec_copyin_args(&eargs, path, UIO_SYSSPACE, uap->argp,
194             uap->envp);
195         free(path, M_TEMP);
196         if (error == 0)
197                 error = kern_execve(td, &eargs, NULL);
198         return (error);
199 }
200
201 int
202 svr4_sys_time(td, v)
203         struct thread *td;
204         struct svr4_sys_time_args *v;
205 {
206         struct svr4_sys_time_args *uap = v;
207         int error = 0;
208         struct timeval tv;
209
210         microtime(&tv);
211         if (uap->t)
212                 error = copyout(&tv.tv_sec, uap->t,
213                                 sizeof(*(uap->t)));
214         td->td_retval[0] = (int) tv.tv_sec;
215
216         return error;
217 }
218
219
220 /*
221  * Read SVR4-style directory entries.  We suck them into kernel space so
222  * that they can be massaged before being copied out to user code.  
223  *
224  * This code is ported from the Linux emulator:  Changes to the VFS interface
225  * between FreeBSD and NetBSD have made it simpler to port it from there than
226  * to adapt the NetBSD version.
227  */
228 int
229 svr4_sys_getdents64(td, uap)
230         struct thread *td;
231         struct svr4_sys_getdents64_args *uap;
232 {
233         struct dirent *bdp;
234         struct vnode *vp;
235         caddr_t inp, buf;               /* BSD-format */
236         int len, reclen;                /* BSD-format */
237         caddr_t outp;                   /* SVR4-format */
238         int resid, svr4reclen=0;        /* SVR4-format */
239         cap_rights_t rights;
240         struct file *fp;
241         struct uio auio;
242         struct iovec aiov;
243         off_t off;
244         struct svr4_dirent64 svr4_dirent;
245         int buflen, error, eofflag, nbytes, justone;
246         u_long *cookies = NULL, *cookiep;
247         int ncookies;
248
249         DPRINTF(("svr4_sys_getdents64(%d, *, %d)\n",
250                 uap->fd, uap->nbytes));
251         error = getvnode(td->td_proc->p_fd, uap->fd,
252             cap_rights_init(&rights, CAP_READ), &fp);
253         if (error != 0)
254                 return (error);
255
256         if ((fp->f_flag & FREAD) == 0) {
257                 fdrop(fp, td);
258                 return (EBADF);
259         }
260
261         vp = fp->f_vnode;
262         if (vp->v_type != VDIR) {
263                 fdrop(fp, td);
264                 return (EINVAL);
265         }
266
267         nbytes = uap->nbytes;
268         if (nbytes == 1) {
269                 nbytes = sizeof (struct svr4_dirent64);
270                 justone = 1;
271         }
272         else
273                 justone = 0;
274
275         off = fp->f_offset;
276 #define DIRBLKSIZ       512             /* XXX we used to use ufs's DIRBLKSIZ */
277         buflen = max(DIRBLKSIZ, nbytes);
278         buflen = min(buflen, MAXBSIZE);
279         buf = malloc(buflen, M_TEMP, M_WAITOK);
280         vn_lock(vp, LK_SHARED | LK_RETRY);
281 again:
282         aiov.iov_base = buf;
283         aiov.iov_len = buflen;
284         auio.uio_iov = &aiov;
285         auio.uio_iovcnt = 1;
286         auio.uio_rw = UIO_READ;
287         auio.uio_segflg = UIO_SYSSPACE;
288         auio.uio_td = td;
289         auio.uio_resid = buflen;
290         auio.uio_offset = off;
291
292         if (cookies) {
293                 free(cookies, M_TEMP);
294                 cookies = NULL;
295         }
296
297 #ifdef MAC
298         error = mac_vnode_check_readdir(td->td_ucred, vp);
299         if (error)
300                 goto out;
301 #endif
302
303         error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag,
304                                                 &ncookies, &cookies);
305         if (error) {
306                 goto out;
307         }
308
309         inp = buf;
310         outp = (caddr_t) uap->dp;
311         resid = nbytes;
312         if ((len = buflen - auio.uio_resid) <= 0) {
313                 goto eof;
314         }
315
316         cookiep = cookies;
317
318         if (cookies) {
319                 /*
320                  * When using cookies, the vfs has the option of reading from
321                  * a different offset than that supplied (UFS truncates the
322                  * offset to a block boundary to make sure that it never reads
323                  * partway through a directory entry, even if the directory
324                  * has been compacted).
325                  */
326                 while (len > 0 && ncookies > 0 && *cookiep <= off) {
327                         bdp = (struct dirent *) inp;
328                         len -= bdp->d_reclen;
329                         inp += bdp->d_reclen;
330                         cookiep++;
331                         ncookies--;
332                 }
333         }
334
335         while (len > 0) {
336                 if (cookiep && ncookies == 0)
337                         break;
338                 bdp = (struct dirent *) inp;
339                 reclen = bdp->d_reclen;
340                 if (reclen & 3) {
341                         DPRINTF(("svr4_readdir: reclen=%d\n", reclen));
342                         error = EFAULT;
343                         goto out;
344                 }
345   
346                 if (bdp->d_fileno == 0) {
347                         inp += reclen;
348                         if (cookiep) {
349                                 off = *cookiep++;
350                                 ncookies--;
351                         } else
352                                 off += reclen;
353                         len -= reclen;
354                         continue;
355                 }
356                 svr4reclen = SVR4_RECLEN(&svr4_dirent, bdp->d_namlen);
357                 if (reclen > len || resid < svr4reclen) {
358                         outp++;
359                         break;
360                 }
361                 svr4_dirent.d_ino = (long) bdp->d_fileno;
362                 if (justone) {
363                         /*
364                          * old svr4-style readdir usage.
365                          */
366                         svr4_dirent.d_off = (svr4_off_t) svr4reclen;
367                         svr4_dirent.d_reclen = (u_short) bdp->d_namlen;
368                 } else {
369                         svr4_dirent.d_off = (svr4_off_t)(off + reclen);
370                         svr4_dirent.d_reclen = (u_short) svr4reclen;
371                 }
372                 strlcpy(svr4_dirent.d_name, bdp->d_name, sizeof(svr4_dirent.d_name));
373                 if ((error = copyout((caddr_t)&svr4_dirent, outp, svr4reclen)))
374                         goto out;
375                 inp += reclen;
376                 if (cookiep) {
377                         off = *cookiep++;
378                         ncookies--;
379                 } else
380                         off += reclen;
381                 outp += svr4reclen;
382                 resid -= svr4reclen;
383                 len -= reclen;
384                 if (justone)
385                         break;
386         }
387
388         if (outp == (caddr_t) uap->dp)
389                 goto again;
390         fp->f_offset = off;
391
392         if (justone)
393                 nbytes = resid + svr4reclen;
394
395 eof:
396         td->td_retval[0] = nbytes - resid;
397 out:
398         VOP_UNLOCK(vp, 0);
399         fdrop(fp, td);
400         if (cookies)
401                 free(cookies, M_TEMP);
402         free(buf, M_TEMP);
403         return error;
404 }
405
406
407 int
408 svr4_sys_getdents(td, uap)
409         struct thread *td;
410         struct svr4_sys_getdents_args *uap;
411 {
412         struct dirent *bdp;
413         struct vnode *vp;
414         caddr_t inp, buf;       /* BSD-format */
415         int len, reclen;        /* BSD-format */
416         caddr_t outp;           /* SVR4-format */
417         int resid, svr4_reclen; /* SVR4-format */
418         cap_rights_t rights;
419         struct file *fp;
420         struct uio auio;
421         struct iovec aiov;
422         struct svr4_dirent idb;
423         off_t off;              /* true file offset */
424         int buflen, error, eofflag;
425         u_long *cookiebuf = NULL, *cookie;
426         int ncookies = 0, *retval = td->td_retval;
427
428         if (uap->nbytes < 0)
429                 return (EINVAL);
430
431         error = getvnode(td->td_proc->p_fd, uap->fd,
432             cap_rights_init(&rights, CAP_READ), &fp);
433         if (error != 0)
434                 return (error);
435
436         if ((fp->f_flag & FREAD) == 0) {
437                 fdrop(fp, td);
438                 return (EBADF);
439         }
440
441         vp = fp->f_vnode;
442         if (vp->v_type != VDIR) {
443                 fdrop(fp, td);
444                 return (EINVAL);
445         }
446
447         buflen = min(MAXBSIZE, uap->nbytes);
448         buf = malloc(buflen, M_TEMP, M_WAITOK);
449         vn_lock(vp, LK_SHARED | LK_RETRY);
450         off = fp->f_offset;
451 again:
452         aiov.iov_base = buf;
453         aiov.iov_len = buflen;
454         auio.uio_iov = &aiov;
455         auio.uio_iovcnt = 1;
456         auio.uio_rw = UIO_READ;
457         auio.uio_segflg = UIO_SYSSPACE;
458         auio.uio_td = td;
459         auio.uio_resid = buflen;
460         auio.uio_offset = off;
461
462 #ifdef MAC
463         error = mac_vnode_check_readdir(td->td_ucred, vp);
464         if (error)
465                 goto out;
466 #endif
467
468         /*
469          * First we read into the malloc'ed buffer, then
470          * we massage it into user space, one record at a time.
471          */
472         error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &ncookies,
473             &cookiebuf);
474         if (error) {
475                 goto out;
476         }
477
478         inp = buf;
479         outp = uap->buf;
480         resid = uap->nbytes;
481         if ((len = buflen - auio.uio_resid) == 0)
482                 goto eof;
483
484         for (cookie = cookiebuf; len > 0; len -= reclen) {
485                 bdp = (struct dirent *)inp;
486                 reclen = bdp->d_reclen;
487                 if (reclen & 3)
488                         panic("svr4_sys_getdents64: bad reclen");
489                 if (cookie)
490                         off = *cookie++; /* each entry points to the next */
491                 else
492                         off += reclen;
493                 if ((off >> 32) != 0) {
494                         uprintf("svr4_sys_getdents64: dir offset too large for emulated program");
495                         error = EINVAL;
496                         goto out;
497                 }
498                 if (bdp->d_fileno == 0) {
499                         inp += reclen;  /* it is a hole; squish it out */
500                         continue;
501                 }
502                 svr4_reclen = SVR4_RECLEN(&idb, bdp->d_namlen);
503                 if (reclen > len || resid < svr4_reclen) {
504                         /* entry too big for buffer, so just stop */
505                         outp++;
506                         break;
507                 }
508                 /*
509                  * Massage in place to make a SVR4-shaped dirent (otherwise
510                  * we have to worry about touching user memory outside of
511                  * the copyout() call).
512                  */
513                 idb.d_ino = (svr4_ino_t)bdp->d_fileno;
514                 idb.d_off = (svr4_off_t)off;
515                 idb.d_reclen = (u_short)svr4_reclen;
516                 strlcpy(idb.d_name, bdp->d_name, sizeof(idb.d_name));
517                 if ((error = copyout((caddr_t)&idb, outp, svr4_reclen)))
518                         goto out;
519                 /* advance past this real entry */
520                 inp += reclen;
521                 /* advance output past SVR4-shaped entry */
522                 outp += svr4_reclen;
523                 resid -= svr4_reclen;
524         }
525
526         /* if we squished out the whole block, try again */
527         if (outp == uap->buf)
528                 goto again;
529         fp->f_offset = off;     /* update the vnode offset */
530
531 eof:
532         *retval = uap->nbytes - resid;
533 out:
534         VOP_UNLOCK(vp, 0);
535         fdrop(fp, td);
536         if (cookiebuf)
537                 free(cookiebuf, M_TEMP);
538         free(buf, M_TEMP);
539         return error;
540 }
541
542
543 int
544 svr4_sys_mmap(td, uap)
545         struct thread *td;
546         struct svr4_sys_mmap_args *uap;
547 {
548         struct mmap_args         mm;
549         int             *retval;
550
551         retval = td->td_retval;
552 #define _MAP_NEW        0x80000000
553         /*
554          * Verify the arguments.
555          */
556         if (uap->prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
557                 return EINVAL;  /* XXX still needed? */
558
559         if (uap->len == 0)
560                 return EINVAL;
561
562         mm.prot = uap->prot;
563         mm.len = uap->len;
564         mm.flags = uap->flags & ~_MAP_NEW;
565         mm.fd = uap->fd;
566         mm.addr = uap->addr;
567         mm.pos = uap->pos;
568
569         return sys_mmap(td, &mm);
570 }
571
572 int
573 svr4_sys_mmap64(td, uap)
574         struct thread *td;
575         struct svr4_sys_mmap64_args *uap;
576 {
577         struct mmap_args         mm;
578         void            *rp;
579
580 #define _MAP_NEW        0x80000000
581         /*
582          * Verify the arguments.
583          */
584         if (uap->prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
585                 return EINVAL;  /* XXX still needed? */
586
587         if (uap->len == 0)
588                 return EINVAL;
589
590         mm.prot = uap->prot;
591         mm.len = uap->len;
592         mm.flags = uap->flags & ~_MAP_NEW;
593         mm.fd = uap->fd;
594         mm.addr = uap->addr;
595         mm.pos = uap->pos;
596
597         rp = (void *) round_page((vm_offset_t)(td->td_proc->p_vmspace->vm_daddr + maxdsiz));
598         if ((mm.flags & MAP_FIXED) == 0 &&
599             mm.addr != 0 && (void *)mm.addr < rp)
600                 mm.addr = rp;
601
602         return sys_mmap(td, &mm);
603 }
604
605
606 int
607 svr4_sys_fchroot(td, uap)
608         struct thread *td;
609         struct svr4_sys_fchroot_args *uap;
610 {
611         struct filedesc *fdp = td->td_proc->p_fd;
612         struct vnode    *vp;
613         struct file     *fp;
614         int              error;
615
616         if ((error = priv_check(td, PRIV_VFS_FCHROOT)) != 0)
617                 return error;
618         /* XXX: we have the chroot priv... what cap might we need? all? */
619         if ((error = getvnode(fdp, uap->fd, 0, &fp)) != 0)
620                 return error;
621         vp = fp->f_vnode;
622         VREF(vp);
623         fdrop(fp, td);
624         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
625         error = change_dir(vp, td);
626         if (error)
627                 goto fail;
628 #ifdef MAC
629         error = mac_vnode_check_chroot(td->td_ucred, vp);
630         if (error)
631                 goto fail;
632 #endif
633         VOP_UNLOCK(vp, 0);
634         error = change_root(vp, td);
635         vrele(vp);
636         return (error);
637 fail:
638         vput(vp);
639         return (error);
640 }
641
642
643 static int
644 svr4_mknod(td, retval, path, mode, dev)
645         struct thread *td;
646         register_t *retval;
647         char *path;
648         svr4_mode_t mode;
649         svr4_dev_t dev;
650 {
651         char *newpath;
652         int error;
653
654         CHECKALTEXIST(td, path, &newpath);
655
656         if (S_ISFIFO(mode)) {
657                 error = kern_mkfifoat(td, AT_FDCWD, newpath, UIO_SYSSPACE,
658                     mode);
659         } else {
660                 error = kern_mknodat(td, AT_FDCWD, newpath, UIO_SYSSPACE,
661                     mode, dev);
662         }
663         free(newpath, M_TEMP);
664         return (error);
665 }
666
667
668 int
669 svr4_sys_mknod(td, uap)
670         struct thread *td;
671         struct svr4_sys_mknod_args *uap;
672 {
673         int *retval = td->td_retval;
674         return svr4_mknod(td, retval,
675                           uap->path, uap->mode,
676                           (svr4_dev_t)svr4_to_bsd_odev_t(uap->dev));
677 }
678
679
680 int
681 svr4_sys_xmknod(td, uap)
682         struct thread *td;
683         struct svr4_sys_xmknod_args *uap;
684 {
685         int *retval = td->td_retval;
686         return svr4_mknod(td, retval,
687                           uap->path, uap->mode,
688                           (svr4_dev_t)svr4_to_bsd_dev_t(uap->dev));
689 }
690
691
692 int
693 svr4_sys_vhangup(td, uap)
694         struct thread *td;
695         struct svr4_sys_vhangup_args *uap;
696 {
697         return 0;
698 }
699
700
701 int
702 svr4_sys_sysconfig(td, uap)
703         struct thread *td;
704         struct svr4_sys_sysconfig_args *uap;
705 {
706         int *retval;
707
708         retval = &(td->td_retval[0]);
709
710         switch (uap->name) {
711         case SVR4_CONFIG_NGROUPS:
712                 *retval = ngroups_max;
713                 break;
714         case SVR4_CONFIG_CHILD_MAX:
715                 *retval = maxproc;
716                 break;
717         case SVR4_CONFIG_OPEN_FILES:
718                 *retval = maxfiles;
719                 break;
720         case SVR4_CONFIG_POSIX_VER:
721                 *retval = 198808;
722                 break;
723         case SVR4_CONFIG_PAGESIZE:
724                 *retval = PAGE_SIZE;
725                 break;
726         case SVR4_CONFIG_CLK_TCK:
727                 *retval = 60;   /* should this be `hz', ie. 100? */
728                 break;
729         case SVR4_CONFIG_XOPEN_VER:
730                 *retval = 2;    /* XXX: What should that be? */
731                 break;
732         case SVR4_CONFIG_PROF_TCK:
733                 *retval = 60;   /* XXX: What should that be? */
734                 break;
735         case SVR4_CONFIG_NPROC_CONF:
736                 *retval = 1;    /* Only one processor for now */
737                 break;
738         case SVR4_CONFIG_NPROC_ONLN:
739                 *retval = 1;    /* And it better be online */
740                 break;
741         case SVR4_CONFIG_AIO_LISTIO_MAX:
742         case SVR4_CONFIG_AIO_MAX:
743         case SVR4_CONFIG_AIO_PRIO_DELTA_MAX:
744                 *retval = 0;    /* No aio support */
745                 break;
746         case SVR4_CONFIG_DELAYTIMER_MAX:
747                 *retval = 0;    /* No delaytimer support */
748                 break;
749         case SVR4_CONFIG_MQ_OPEN_MAX:
750                 *retval = msginfo.msgmni;
751                 break;
752         case SVR4_CONFIG_MQ_PRIO_MAX:
753                 *retval = 0;    /* XXX: Don't know */
754                 break;
755         case SVR4_CONFIG_RTSIG_MAX:
756                 *retval = 0;
757                 break;
758         case SVR4_CONFIG_SEM_NSEMS_MAX:
759                 *retval = seminfo.semmni;
760                 break;
761         case SVR4_CONFIG_SEM_VALUE_MAX:
762                 *retval = seminfo.semvmx;
763                 break;
764         case SVR4_CONFIG_SIGQUEUE_MAX:
765                 *retval = 0;    /* XXX: Don't know */
766                 break;
767         case SVR4_CONFIG_SIGRT_MIN:
768         case SVR4_CONFIG_SIGRT_MAX:
769                 *retval = 0;    /* No real time signals */
770                 break;
771         case SVR4_CONFIG_TIMER_MAX:
772                 *retval = 3;    /* XXX: real, virtual, profiling */
773                 break;
774 #if defined(NOTYET)
775         case SVR4_CONFIG_PHYS_PAGES:
776 #if defined(UVM)
777                 *retval = uvmexp.free;  /* XXX: free instead of total */
778 #else
779                 *retval = vm_cnt.v_free_count;  /* XXX: free instead of total */
780 #endif
781                 break;
782         case SVR4_CONFIG_AVPHYS_PAGES:
783 #if defined(UVM)
784                 *retval = uvmexp.active;        /* XXX: active instead of avg */
785 #else
786                 *retval = vm_cnt.v_active_count;/* XXX: active instead of avg */
787 #endif
788                 break;
789 #endif /* NOTYET */
790         case SVR4_CONFIG_COHERENCY:
791                 *retval = 0;    /* XXX */
792                 break;
793         case SVR4_CONFIG_SPLIT_CACHE:
794                 *retval = 0;    /* XXX */
795                 break;
796         case SVR4_CONFIG_ICACHESZ:
797                 *retval = 256;  /* XXX */
798                 break;
799         case SVR4_CONFIG_DCACHESZ:
800                 *retval = 256;  /* XXX */
801                 break;
802         case SVR4_CONFIG_ICACHELINESZ:
803                 *retval = 64;   /* XXX */
804                 break;
805         case SVR4_CONFIG_DCACHELINESZ:
806                 *retval = 64;   /* XXX */
807                 break;
808         case SVR4_CONFIG_ICACHEBLKSZ:
809                 *retval = 64;   /* XXX */
810                 break;
811         case SVR4_CONFIG_DCACHEBLKSZ:
812                 *retval = 64;   /* XXX */
813                 break;
814         case SVR4_CONFIG_DCACHETBLKSZ:
815                 *retval = 64;   /* XXX */
816                 break;
817         case SVR4_CONFIG_ICACHE_ASSOC:
818                 *retval = 1;    /* XXX */
819                 break;
820         case SVR4_CONFIG_DCACHE_ASSOC:
821                 *retval = 1;    /* XXX */
822                 break;
823         case SVR4_CONFIG_MAXPID:
824                 *retval = PID_MAX;
825                 break;
826         case SVR4_CONFIG_STACK_PROT:
827                 *retval = PROT_READ|PROT_WRITE|PROT_EXEC;
828                 break;
829         default:
830                 return EINVAL;
831         }
832         return 0;
833 }
834
835 /* ARGSUSED */
836 int
837 svr4_sys_break(td, uap)
838         struct thread *td;
839         struct svr4_sys_break_args *uap;
840 {
841         struct obreak_args ap;
842
843         ap.nsize = uap->nsize;
844         return (sys_obreak(td, &ap));
845 }
846
847 static __inline clock_t
848 timeval_to_clock_t(tv)
849         struct timeval *tv;
850 {
851         return tv->tv_sec * hz + tv->tv_usec / (1000000 / hz);
852 }
853
854
855 int
856 svr4_sys_times(td, uap)
857         struct thread *td;
858         struct svr4_sys_times_args *uap;
859 {
860         struct timeval tv, utime, stime, cutime, cstime;
861         struct tms tms;
862         struct proc *p;
863         int error;
864
865         p = td->td_proc;
866         PROC_LOCK(p);
867         PROC_STATLOCK(p);
868         calcru(p, &utime, &stime);
869         PROC_STATUNLOCK(p);
870         calccru(p, &cutime, &cstime);
871         PROC_UNLOCK(p);
872
873         tms.tms_utime = timeval_to_clock_t(&utime);
874         tms.tms_stime = timeval_to_clock_t(&stime);
875
876         tms.tms_cutime = timeval_to_clock_t(&cutime);
877         tms.tms_cstime = timeval_to_clock_t(&cstime);
878
879         error = copyout(&tms, uap->tp, sizeof(tms));
880         if (error)
881                 return (error);
882
883         microtime(&tv);
884         td->td_retval[0] = (int)timeval_to_clock_t(&tv);
885         return (0);
886 }
887
888
889 int
890 svr4_sys_ulimit(td, uap)
891         struct thread *td;
892         struct svr4_sys_ulimit_args *uap;
893 {
894         int *retval = td->td_retval;
895         int error;
896
897         switch (uap->cmd) {
898         case SVR4_GFILLIM:
899                 PROC_LOCK(td->td_proc);
900                 *retval = lim_cur(td->td_proc, RLIMIT_FSIZE) / 512;
901                 PROC_UNLOCK(td->td_proc);
902                 if (*retval == -1)
903                         *retval = 0x7fffffff;
904                 return 0;
905
906         case SVR4_SFILLIM:
907                 {
908                         struct rlimit krl;
909
910                         krl.rlim_cur = uap->newlimit * 512;
911                         PROC_LOCK(td->td_proc);
912                         krl.rlim_max = lim_max(td->td_proc, RLIMIT_FSIZE);
913                         PROC_UNLOCK(td->td_proc);
914
915                         error = kern_setrlimit(td, RLIMIT_FSIZE, &krl);
916                         if (error)
917                                 return error;
918
919                         PROC_LOCK(td->td_proc);
920                         *retval = lim_cur(td->td_proc, RLIMIT_FSIZE);
921                         PROC_UNLOCK(td->td_proc);
922                         if (*retval == -1)
923                                 *retval = 0x7fffffff;
924                         return 0;
925                 }
926
927         case SVR4_GMEMLIM:
928                 {
929                         struct vmspace *vm = td->td_proc->p_vmspace;
930                         register_t r;
931
932                         PROC_LOCK(td->td_proc);
933                         r = lim_cur(td->td_proc, RLIMIT_DATA);
934                         PROC_UNLOCK(td->td_proc);
935
936                         if (r == -1)
937                                 r = 0x7fffffff;
938                         r += (long) vm->vm_daddr;
939                         if (r < 0)
940                                 r = 0x7fffffff;
941                         *retval = r;
942                         return 0;
943                 }
944
945         case SVR4_GDESLIM:
946                 PROC_LOCK(td->td_proc);
947                 *retval = lim_cur(td->td_proc, RLIMIT_NOFILE);
948                 PROC_UNLOCK(td->td_proc);
949                 if (*retval == -1)
950                         *retval = 0x7fffffff;
951                 return 0;
952
953         default:
954                 return EINVAL;
955         }
956 }
957
958 static struct proc *
959 svr4_pfind(pid)
960         pid_t pid;
961 {
962         struct proc *p;
963
964         /* look in the live processes */
965         if ((p = pfind(pid)) == NULL)
966                 /* look in the zombies */
967                 p = zpfind(pid);
968
969         return p;
970 }
971
972
973 int
974 svr4_sys_pgrpsys(td, uap)
975         struct thread *td;
976         struct svr4_sys_pgrpsys_args *uap;
977 {
978         int *retval = td->td_retval;
979         struct proc *p = td->td_proc;
980
981         switch (uap->cmd) {
982         case 1:                 /* setpgrp() */
983                 /*
984                  * SVR4 setpgrp() (which takes no arguments) has the
985                  * semantics that the session ID is also created anew, so
986                  * in almost every sense, setpgrp() is identical to
987                  * setsid() for SVR4.  (Under BSD, the difference is that
988                  * a setpgid(0,0) will not create a new session.)
989                  */
990                 sys_setsid(td, NULL);
991                 /*FALLTHROUGH*/
992
993         case 0:                 /* getpgrp() */
994                 PROC_LOCK(p);
995                 *retval = p->p_pgrp->pg_id;
996                 PROC_UNLOCK(p);
997                 return 0;
998
999         case 2:                 /* getsid(pid) */
1000                 if (uap->pid == 0)
1001                         PROC_LOCK(p);
1002                 else if ((p = svr4_pfind(uap->pid)) == NULL)
1003                         return ESRCH;
1004                 /*
1005                  * This has already been initialized to the pid of
1006                  * the session leader.
1007                  */
1008                 *retval = (register_t) p->p_session->s_sid;
1009                 PROC_UNLOCK(p);
1010                 return 0;
1011
1012         case 3:                 /* setsid() */
1013                 return sys_setsid(td, NULL);
1014
1015         case 4:                 /* getpgid(pid) */
1016
1017                 if (uap->pid == 0)
1018                         PROC_LOCK(p);
1019                 else if ((p = svr4_pfind(uap->pid)) == NULL)
1020                         return ESRCH;
1021
1022                 *retval = (int) p->p_pgrp->pg_id;
1023                 PROC_UNLOCK(p);
1024                 return 0;
1025
1026         case 5:                 /* setpgid(pid, pgid); */
1027                 {
1028                         struct setpgid_args sa;
1029
1030                         sa.pid = uap->pid;
1031                         sa.pgid = uap->pgid;
1032                         return sys_setpgid(td, &sa);
1033                 }
1034
1035         default:
1036                 return EINVAL;
1037         }
1038 }
1039
1040 struct svr4_hrtcntl_args {
1041         int                     cmd;
1042         int                     fun;
1043         int                     clk;
1044         svr4_hrt_interval_t *   iv;
1045         svr4_hrt_time_t *       ti;
1046 };
1047
1048
1049 static int
1050 svr4_hrtcntl(td, uap, retval)
1051         struct thread *td;
1052         struct svr4_hrtcntl_args *uap;
1053         register_t *retval;
1054 {
1055         switch (uap->fun) {
1056         case SVR4_HRT_CNTL_RES:
1057                 DPRINTF(("htrcntl(RES)\n"));
1058                 *retval = SVR4_HRT_USEC;
1059                 return 0;
1060
1061         case SVR4_HRT_CNTL_TOFD:
1062                 DPRINTF(("htrcntl(TOFD)\n"));
1063                 {
1064                         struct timeval tv;
1065                         svr4_hrt_time_t t;
1066                         if (uap->clk != SVR4_HRT_CLK_STD) {
1067                                 DPRINTF(("clk == %d\n", uap->clk));
1068                                 return EINVAL;
1069                         }
1070                         if (uap->ti == NULL) {
1071                                 DPRINTF(("ti NULL\n"));
1072                                 return EINVAL;
1073                         }
1074                         microtime(&tv);
1075                         t.h_sec = tv.tv_sec;
1076                         t.h_rem = tv.tv_usec;
1077                         t.h_res = SVR4_HRT_USEC;
1078                         return copyout(&t, uap->ti, sizeof(t));
1079                 }
1080
1081         case SVR4_HRT_CNTL_START:
1082                 DPRINTF(("htrcntl(START)\n"));
1083                 return ENOSYS;
1084
1085         case SVR4_HRT_CNTL_GET:
1086                 DPRINTF(("htrcntl(GET)\n"));
1087                 return ENOSYS;
1088         default:
1089                 DPRINTF(("Bad htrcntl command %d\n", uap->fun));
1090                 return ENOSYS;
1091         }
1092 }
1093
1094
1095 int
1096 svr4_sys_hrtsys(td, uap) 
1097         struct thread *td;
1098         struct svr4_sys_hrtsys_args *uap;
1099 {
1100         int *retval = td->td_retval;
1101
1102         switch (uap->cmd) {
1103         case SVR4_HRT_CNTL:
1104                 return svr4_hrtcntl(td, (struct svr4_hrtcntl_args *) uap,
1105                                     retval);
1106
1107         case SVR4_HRT_ALRM:
1108                 DPRINTF(("hrtalarm\n"));
1109                 return ENOSYS;
1110
1111         case SVR4_HRT_SLP:
1112                 DPRINTF(("hrtsleep\n"));
1113                 return ENOSYS;
1114
1115         case SVR4_HRT_CAN:
1116                 DPRINTF(("hrtcancel\n"));
1117                 return ENOSYS;
1118
1119         default:
1120                 DPRINTF(("Bad hrtsys command %d\n", uap->cmd));
1121                 return EINVAL;
1122         }
1123 }
1124
1125
1126 static int
1127 svr4_setinfo(pid, ru, st, s)
1128         pid_t pid;
1129         struct rusage *ru;
1130         int st;
1131         svr4_siginfo_t *s;
1132 {
1133         svr4_siginfo_t i;
1134         int sig;
1135
1136         memset(&i, 0, sizeof(i));
1137
1138         i.svr4_si_signo = SVR4_SIGCHLD;
1139         i.svr4_si_errno = 0;    /* XXX? */
1140
1141         i.svr4_si_pid = pid;
1142         if (ru) {
1143                 i.svr4_si_stime = ru->ru_stime.tv_sec;
1144                 i.svr4_si_utime = ru->ru_utime.tv_sec;
1145         }
1146
1147         if (WIFEXITED(st)) {
1148                 i.svr4_si_status = WEXITSTATUS(st);
1149                 i.svr4_si_code = SVR4_CLD_EXITED;
1150         } else if (WIFSTOPPED(st)) {
1151                 sig = WSTOPSIG(st);
1152                 if (sig >= 0 && sig < NSIG)
1153                         i.svr4_si_status = SVR4_BSD2SVR4_SIG(sig);
1154
1155                 if (i.svr4_si_status == SVR4_SIGCONT)
1156                         i.svr4_si_code = SVR4_CLD_CONTINUED;
1157                 else
1158                         i.svr4_si_code = SVR4_CLD_STOPPED;
1159         } else {
1160                 sig = WTERMSIG(st);
1161                 if (sig >= 0 && sig < NSIG)
1162                         i.svr4_si_status = SVR4_BSD2SVR4_SIG(sig);
1163
1164                 if (WCOREDUMP(st))
1165                         i.svr4_si_code = SVR4_CLD_DUMPED;
1166                 else
1167                         i.svr4_si_code = SVR4_CLD_KILLED;
1168         }
1169
1170         DPRINTF(("siginfo [pid %ld signo %d code %d errno %d status %d]\n",
1171                  i.svr4_si_pid, i.svr4_si_signo, i.svr4_si_code, i.svr4_si_errno,
1172                  i.svr4_si_status));
1173
1174         return copyout(&i, s, sizeof(i));
1175 }
1176
1177
1178 int
1179 svr4_sys_waitsys(td, uap)
1180         struct thread *td;
1181         struct svr4_sys_waitsys_args *uap;
1182 {
1183         struct rusage ru;
1184         pid_t pid;
1185         int nfound, status;
1186         int error, *retval = td->td_retval;
1187         struct proc *p, *q;
1188
1189         DPRINTF(("waitsys(%d, %d, %p, %x)\n", 
1190                  uap->grp, uap->id,
1191                  uap->info, uap->options));
1192
1193         q = td->td_proc;
1194         switch (uap->grp) {
1195         case SVR4_P_PID:
1196                 pid = uap->id;
1197                 break;
1198
1199         case SVR4_P_PGID:
1200                 PROC_LOCK(q);
1201                 pid = -q->p_pgid;
1202                 PROC_UNLOCK(q);
1203                 break;
1204
1205         case SVR4_P_ALL:
1206                 pid = WAIT_ANY;
1207                 break;
1208
1209         default:
1210                 return EINVAL;
1211         }
1212
1213         /* Hand off the easy cases to kern_wait(). */
1214         if (!(uap->options & (SVR4_WNOWAIT)) &&
1215             (uap->options & (SVR4_WEXITED | SVR4_WTRAPPED))) {
1216                 int options;
1217
1218                 options = 0;
1219                 if (uap->options & SVR4_WSTOPPED)
1220                         options |= WUNTRACED;
1221                 if (uap->options & SVR4_WCONTINUED)
1222                         options |= WCONTINUED;
1223                 if (uap->options & SVR4_WNOHANG)
1224                         options |= WNOHANG;
1225
1226                 error = kern_wait(td, pid, &status, options, &ru);
1227                 if (error)
1228                         return (error);
1229                 if (uap->options & SVR4_WNOHANG && *retval == 0)
1230                         error = svr4_setinfo(*retval, NULL, 0, uap->info);
1231                 else
1232                         error = svr4_setinfo(*retval, &ru, status, uap->info);
1233                 *retval = 0;
1234                 return (error);
1235         }
1236
1237         /*
1238          * Ok, handle the weird cases.  Either WNOWAIT is set (meaning we
1239          * just want to see if there is a process to harvest, we don't
1240          * want to actually harvest it), or WEXIT and WTRAPPED are clear
1241          * meaning we want to ignore zombies.  Either way, we don't have
1242          * to handle harvesting zombies here.  We do have to duplicate the
1243          * other portions of kern_wait() though, especially for WCONTINUED
1244          * and WSTOPPED.
1245          */
1246 loop:
1247         nfound = 0;
1248         sx_slock(&proctree_lock);
1249         LIST_FOREACH(p, &q->p_children, p_sibling) {
1250                 PROC_LOCK(p);
1251                 if (pid != WAIT_ANY &&
1252                     p->p_pid != pid && p->p_pgid != -pid) {
1253                         PROC_UNLOCK(p);
1254                         DPRINTF(("pid %d pgid %d != %d\n", p->p_pid,
1255                                  p->p_pgid, pid));
1256                         continue;
1257                 }
1258                 if (p_canwait(td, p)) {
1259                         PROC_UNLOCK(p);
1260                         continue;
1261                 }
1262
1263                 nfound++;
1264
1265                 PROC_SLOCK(p);
1266                 /*
1267                  * See if we have a zombie.  If so, WNOWAIT should be set,
1268                  * as otherwise we should have called kern_wait() up above.
1269                  */
1270                 if ((p->p_state == PRS_ZOMBIE) && 
1271                     ((uap->options & (SVR4_WEXITED|SVR4_WTRAPPED)))) {
1272                         PROC_SUNLOCK(p);
1273                         KASSERT(uap->options & SVR4_WNOWAIT,
1274                             ("WNOWAIT is clear"));
1275
1276                         /* Found a zombie, so cache info in local variables. */
1277                         pid = p->p_pid;
1278                         status = p->p_xstat;
1279                         ru = p->p_ru;
1280                         PROC_STATLOCK(p);
1281                         calcru(p, &ru.ru_utime, &ru.ru_stime);
1282                         PROC_STATUNLOCK(p);
1283                         PROC_UNLOCK(p);
1284                         sx_sunlock(&proctree_lock);
1285
1286                         /* Copy the info out to userland. */
1287                         *retval = 0;
1288                         DPRINTF(("found %d\n", pid));
1289                         return (svr4_setinfo(pid, &ru, status, uap->info));
1290                 }
1291
1292                 /*
1293                  * See if we have a stopped or continued process.
1294                  * XXX: This duplicates the same code in kern_wait().
1295                  */
1296                 if ((p->p_flag & P_STOPPED_SIG) &&
1297                     (p->p_suspcount == p->p_numthreads) &&
1298                     (p->p_flag & P_WAITED) == 0 &&
1299                     (p->p_flag & P_TRACED || uap->options & SVR4_WSTOPPED)) {
1300                         PROC_SUNLOCK(p);
1301                         if (((uap->options & SVR4_WNOWAIT)) == 0)
1302                                 p->p_flag |= P_WAITED;
1303                         sx_sunlock(&proctree_lock);
1304                         pid = p->p_pid;
1305                         status = W_STOPCODE(p->p_xstat);
1306                         ru = p->p_ru;
1307                         PROC_STATLOCK(p);
1308                         calcru(p, &ru.ru_utime, &ru.ru_stime);
1309                         PROC_STATUNLOCK(p);
1310                         PROC_UNLOCK(p);
1311
1312                         if (((uap->options & SVR4_WNOWAIT)) == 0) {
1313                                 PROC_LOCK(q);
1314                                 sigqueue_take(p->p_ksi);
1315                                 PROC_UNLOCK(q);
1316                         }
1317
1318                         *retval = 0;
1319                         DPRINTF(("jobcontrol %d\n", pid));
1320                         return (svr4_setinfo(pid, &ru, status, uap->info));
1321                 }
1322                 PROC_SUNLOCK(p);
1323                 if (uap->options & SVR4_WCONTINUED &&
1324                     (p->p_flag & P_CONTINUED)) {
1325                         sx_sunlock(&proctree_lock);
1326                         if (((uap->options & SVR4_WNOWAIT)) == 0)
1327                                 p->p_flag &= ~P_CONTINUED;
1328                         pid = p->p_pid;
1329                         ru = p->p_ru;
1330                         status = SIGCONT;
1331                         PROC_STATLOCK(p);
1332                         calcru(p, &ru.ru_utime, &ru.ru_stime);
1333                         PROC_STATUNLOCK(p);
1334                         PROC_UNLOCK(p);
1335
1336                         if (((uap->options & SVR4_WNOWAIT)) == 0) {
1337                                 PROC_LOCK(q);
1338                                 sigqueue_take(p->p_ksi);
1339                                 PROC_UNLOCK(q);
1340                         }
1341
1342                         *retval = 0;
1343                         DPRINTF(("jobcontrol %d\n", pid));
1344                         return (svr4_setinfo(pid, &ru, status, uap->info));
1345                 }
1346                 PROC_UNLOCK(p);
1347         }
1348
1349         if (nfound == 0) {
1350                 sx_sunlock(&proctree_lock);
1351                 return (ECHILD);
1352         }
1353
1354         if (uap->options & SVR4_WNOHANG) {
1355                 sx_sunlock(&proctree_lock);
1356                 *retval = 0;
1357                 return (svr4_setinfo(0, NULL, 0, uap->info));
1358         }
1359
1360         PROC_LOCK(q);
1361         sx_sunlock(&proctree_lock);
1362         if (q->p_flag & P_STATCHILD) {
1363                 q->p_flag &= ~P_STATCHILD;
1364                 error = 0;
1365         } else
1366                 error = msleep(q, &q->p_mtx, PWAIT | PCATCH, "svr4_wait", 0);
1367         PROC_UNLOCK(q);
1368         if (error)
1369                 return error;
1370         goto loop;
1371 }
1372
1373
1374 static void
1375 bsd_statfs_to_svr4_statvfs(bfs, sfs)
1376         const struct statfs *bfs;
1377         struct svr4_statvfs *sfs;
1378 {
1379         sfs->f_bsize = bfs->f_iosize; /* XXX */
1380         sfs->f_frsize = bfs->f_bsize;
1381         sfs->f_blocks = bfs->f_blocks;
1382         sfs->f_bfree = bfs->f_bfree;
1383         sfs->f_bavail = bfs->f_bavail;
1384         sfs->f_files = bfs->f_files;
1385         sfs->f_ffree = bfs->f_ffree;
1386         sfs->f_favail = bfs->f_ffree;
1387         sfs->f_fsid = bfs->f_fsid.val[0];
1388         memcpy(sfs->f_basetype, bfs->f_fstypename, sizeof(sfs->f_basetype));
1389         sfs->f_flag = 0;
1390         if (bfs->f_flags & MNT_RDONLY)
1391                 sfs->f_flag |= SVR4_ST_RDONLY;
1392         if (bfs->f_flags & MNT_NOSUID)
1393                 sfs->f_flag |= SVR4_ST_NOSUID;
1394         sfs->f_namemax = MAXNAMLEN;
1395         memcpy(sfs->f_fstr, bfs->f_fstypename, sizeof(sfs->f_fstr)); /* XXX */
1396         memset(sfs->f_filler, 0, sizeof(sfs->f_filler));
1397 }
1398
1399
1400 static void
1401 bsd_statfs_to_svr4_statvfs64(bfs, sfs)
1402         const struct statfs *bfs;
1403         struct svr4_statvfs64 *sfs;
1404 {
1405         sfs->f_bsize = bfs->f_iosize; /* XXX */
1406         sfs->f_frsize = bfs->f_bsize;
1407         sfs->f_blocks = bfs->f_blocks;
1408         sfs->f_bfree = bfs->f_bfree;
1409         sfs->f_bavail = bfs->f_bavail;
1410         sfs->f_files = bfs->f_files;
1411         sfs->f_ffree = bfs->f_ffree;
1412         sfs->f_favail = bfs->f_ffree;
1413         sfs->f_fsid = bfs->f_fsid.val[0];
1414         memcpy(sfs->f_basetype, bfs->f_fstypename, sizeof(sfs->f_basetype));
1415         sfs->f_flag = 0;
1416         if (bfs->f_flags & MNT_RDONLY)
1417                 sfs->f_flag |= SVR4_ST_RDONLY;
1418         if (bfs->f_flags & MNT_NOSUID)
1419                 sfs->f_flag |= SVR4_ST_NOSUID;
1420         sfs->f_namemax = MAXNAMLEN;
1421         memcpy(sfs->f_fstr, bfs->f_fstypename, sizeof(sfs->f_fstr)); /* XXX */
1422         memset(sfs->f_filler, 0, sizeof(sfs->f_filler));
1423 }
1424
1425
1426 int
1427 svr4_sys_statvfs(td, uap)
1428         struct thread *td;
1429         struct svr4_sys_statvfs_args *uap;
1430 {
1431         struct svr4_statvfs sfs;
1432         struct statfs bfs;
1433         char *path;
1434         int error;
1435
1436         CHECKALTEXIST(td, uap->path, &path);
1437
1438         error = kern_statfs(td, path, UIO_SYSSPACE, &bfs);
1439         free(path, M_TEMP);
1440         if (error)
1441                 return (error);
1442         bsd_statfs_to_svr4_statvfs(&bfs, &sfs);
1443         return copyout(&sfs, uap->fs, sizeof(sfs));
1444 }
1445
1446
1447 int
1448 svr4_sys_fstatvfs(td, uap)
1449         struct thread *td;
1450         struct svr4_sys_fstatvfs_args *uap;
1451 {
1452         struct svr4_statvfs sfs;
1453         struct statfs bfs;
1454         int error;
1455
1456         error = kern_fstatfs(td, uap->fd, &bfs);
1457         if (error)
1458                 return (error);
1459         bsd_statfs_to_svr4_statvfs(&bfs, &sfs);
1460         return copyout(&sfs, uap->fs, sizeof(sfs));
1461 }
1462
1463
1464 int
1465 svr4_sys_statvfs64(td, uap)
1466         struct thread *td;
1467         struct svr4_sys_statvfs64_args *uap;
1468 {
1469         struct svr4_statvfs64 sfs;
1470         struct statfs bfs;
1471         char *path;
1472         int error;
1473
1474         CHECKALTEXIST(td, uap->path, &path);
1475
1476         error = kern_statfs(td, path, UIO_SYSSPACE, &bfs);
1477         free(path, M_TEMP);
1478         if (error)
1479                 return (error);
1480         bsd_statfs_to_svr4_statvfs64(&bfs, &sfs);
1481         return copyout(&sfs, uap->fs, sizeof(sfs));
1482 }
1483
1484
1485 int
1486 svr4_sys_fstatvfs64(td, uap) 
1487         struct thread *td;
1488         struct svr4_sys_fstatvfs64_args *uap;
1489 {
1490         struct svr4_statvfs64 sfs;
1491         struct statfs bfs;
1492         int error;
1493
1494         error = kern_fstatfs(td, uap->fd, &bfs);
1495         if (error)
1496                 return (error);
1497         bsd_statfs_to_svr4_statvfs64(&bfs, &sfs);
1498         return copyout(&sfs, uap->fs, sizeof(sfs));
1499 }
1500
1501 int
1502 svr4_sys_alarm(td, uap)
1503         struct thread *td;
1504         struct svr4_sys_alarm_args *uap;
1505 {
1506         struct itimerval itv, oitv;
1507         int error;
1508
1509         timevalclear(&itv.it_interval);
1510         itv.it_value.tv_sec = uap->sec;
1511         itv.it_value.tv_usec = 0;
1512         error = kern_setitimer(td, ITIMER_REAL, &itv, &oitv);
1513         if (error)
1514                 return (error);
1515         if (oitv.it_value.tv_usec != 0)
1516                 oitv.it_value.tv_sec++;
1517         td->td_retval[0] = oitv.it_value.tv_sec;
1518         return (0);
1519 }
1520
1521 int
1522 svr4_sys_gettimeofday(td, uap)
1523         struct thread *td;
1524         struct svr4_sys_gettimeofday_args *uap;
1525 {
1526         if (uap->tp) {
1527                 struct timeval atv;
1528
1529                 microtime(&atv);
1530                 return copyout(&atv, uap->tp, sizeof (atv));
1531         }
1532
1533         return 0;
1534 }
1535
1536 int
1537 svr4_sys_facl(td, uap)
1538         struct thread *td;
1539         struct svr4_sys_facl_args *uap;
1540 {
1541         int *retval;
1542
1543         retval = td->td_retval;
1544         *retval = 0;
1545
1546         switch (uap->cmd) {
1547         case SVR4_SYS_SETACL:
1548                 /* We don't support acls on any filesystem */
1549                 return ENOSYS;
1550
1551         case SVR4_SYS_GETACL:
1552                 return copyout(retval, &uap->num,
1553                     sizeof(uap->num));
1554
1555         case SVR4_SYS_GETACLCNT:
1556                 return 0;
1557
1558         default:
1559                 return EINVAL;
1560         }
1561 }
1562
1563
1564 int
1565 svr4_sys_acl(td, uap)
1566         struct thread *td;
1567         struct svr4_sys_acl_args *uap;
1568 {
1569         /* XXX: for now the same */
1570         return svr4_sys_facl(td, (struct svr4_sys_facl_args *)uap);
1571 }
1572
1573 int
1574 svr4_sys_auditsys(td, uap)
1575         struct thread *td;
1576         struct svr4_sys_auditsys_args *uap;
1577 {
1578         /*
1579          * XXX: Big brother is *not* watching.
1580          */
1581         return 0;
1582 }
1583
1584 int
1585 svr4_sys_memcntl(td, uap)
1586         struct thread *td;
1587         struct svr4_sys_memcntl_args *uap;
1588 {
1589         switch (uap->cmd) {
1590         case SVR4_MC_SYNC:
1591                 {
1592                         struct msync_args msa;
1593
1594                         msa.addr = uap->addr;
1595                         msa.len = uap->len;
1596                         msa.flags = (int)uap->arg;
1597
1598                         return sys_msync(td, &msa);
1599                 }
1600         case SVR4_MC_ADVISE:
1601                 {
1602                         struct madvise_args maa;
1603
1604                         maa.addr = uap->addr;
1605                         maa.len = uap->len;
1606                         maa.behav = (int)uap->arg;
1607
1608                         return sys_madvise(td, &maa);
1609                 }
1610         case SVR4_MC_LOCK:
1611         case SVR4_MC_UNLOCK:
1612         case SVR4_MC_LOCKAS:
1613         case SVR4_MC_UNLOCKAS:
1614                 return EOPNOTSUPP;
1615         default:
1616                 return ENOSYS;
1617         }
1618 }
1619
1620
1621 int
1622 svr4_sys_nice(td, uap)
1623         struct thread *td;
1624         struct svr4_sys_nice_args *uap;
1625 {
1626         struct setpriority_args ap;
1627         int error;
1628
1629         ap.which = PRIO_PROCESS;
1630         ap.who = 0;
1631         ap.prio = uap->prio;
1632
1633         if ((error = sys_setpriority(td, &ap)) != 0)
1634                 return error;
1635
1636         /* the cast is stupid, but the structures are the same */
1637         if ((error = sys_getpriority(td, (struct getpriority_args *)&ap)) != 0)
1638                 return error;
1639
1640         return 0;
1641 }
1642
1643 int
1644 svr4_sys_resolvepath(td, uap)
1645         struct thread *td;
1646         struct svr4_sys_resolvepath_args *uap;
1647 {
1648         struct nameidata nd;
1649         int error, *retval = td->td_retval;
1650         unsigned int ncopy;
1651
1652         NDINIT(&nd, LOOKUP, NOFOLLOW | SAVENAME, UIO_USERSPACE,
1653             uap->path, td);
1654
1655         if ((error = namei(&nd)) != 0)
1656                 return (error);
1657         NDFREE(&nd, NDF_NO_FREE_PNBUF);
1658
1659         ncopy = min(uap->bufsiz, strlen(nd.ni_cnd.cn_pnbuf) + 1);
1660         if ((error = copyout(nd.ni_cnd.cn_pnbuf, uap->buf, ncopy)) != 0)
1661                 goto bad;
1662
1663         *retval = ncopy;
1664 bad:
1665         NDFREE(&nd, NDF_ONLY_PNBUF);
1666         return error;
1667 }