ultrix_misc.c revision 1.58 1 /* $NetBSD: ultrix_misc.c,v 1.58 2000/06/28 15:39:36 mrg Exp $ */
2
3 /*
4 * Copyright (c) 1995, 1997 Jonathan Stone (hereinafter referred to as the author)
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Jonathan Stone for
18 * the NetBSD Project.
19 * 4. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35 /*
36 * Copyright (c) 1992, 1993
37 * The Regents of the University of California. All rights reserved.
38 *
39 * This software was developed by the Computer Systems Engineering group
40 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
41 * contributed to Berkeley.
42 *
43 * All advertising materials mentioning features or use of this software
44 * must display the following acknowledgement:
45 * This product includes software developed by the University of
46 * California, Lawrence Berkeley Laboratory.
47 *
48 * Redistribution and use in source and binary forms, with or without
49 * modification, are permitted provided that the following conditions
50 * are met:
51 * 1. Redistributions of source code must retain the above copyright
52 * notice, this list of conditions and the following disclaimer.
53 * 2. Redistributions in binary form must reproduce the above copyright
54 * notice, this list of conditions and the following disclaimer in the
55 * documentation and/or other materials provided with the distribution.
56 * 3. All advertising materials mentioning features or use of this software
57 * must display the following acknowledgement:
58 * This product includes software developed by the University of
59 * California, Berkeley and its contributors.
60 * 4. Neither the name of the University nor the names of its contributors
61 * may be used to endorse or promote products derived from this software
62 * without specific prior written permission.
63 *
64 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
65 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
66 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
67 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
68 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
69 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
70 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
71 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
72 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
73 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
74 * SUCH DAMAGE.
75 *
76 *
77 * @(#)sun_misc.c 8.1 (Berkeley) 6/18/93
78 *
79 * from: Header: sun_misc.c,v 1.16 93/04/07 02:46:27 torek Exp
80 */
81
82 #include "opt_nfsserver.h"
83 #include "opt_sysv.h"
84
85 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
86
87 /*
88 * Ultrix compatibility module.
89 *
90 * Ultrix system calls that are implemented differently in BSD are
91 * handled here.
92 */
93
94 #include "fs_nfs.h"
95
96 #include <sys/param.h>
97 #include <sys/systm.h>
98 #include <sys/namei.h>
99 #include <sys/dirent.h>
100 #include <sys/proc.h>
101 #include <sys/file.h>
102 #include <sys/filedesc.h>
103 #include <sys/kernel.h>
104 #include <sys/exec.h>
105 #include <sys/malloc.h>
106 #include <sys/mbuf.h>
107 #include <sys/mman.h>
108 #include <sys/mount.h>
109 #include <sys/resource.h>
110 #include <sys/resourcevar.h>
111 #include <sys/signal.h>
112 #include <sys/signalvar.h>
113 #include <sys/socket.h>
114 #include <sys/vnode.h>
115 #include <sys/uio.h>
116 #include <sys/wait.h>
117 #include <sys/utsname.h>
118 #include <sys/unistd.h>
119 #include <sys/ipc.h>
120
121 #include <sys/syscallargs.h>
122
123 #include <compat/ultrix/ultrix_syscall.h>
124 #include <compat/ultrix/ultrix_syscallargs.h>
125 #include <compat/common/compat_util.h>
126
127 #include <netinet/in.h>
128
129 #include <miscfs/specfs/specdev.h>
130
131 #include <nfs/rpcv2.h>
132 #include <nfs/nfsproto.h>
133 #include <nfs/nfs.h>
134
135 #include <sys/conf.h> /* iszerodev() */
136 #include <sys/socketvar.h> /* sosetopt() */
137
138 #include <compat/ultrix/ultrix_flock.h>
139
140 static int ultrix_to_bsd_flock __P((struct ultrix_flock *, struct flock *));
141 static void bsd_to_ultrix_flock __P((struct flock *, struct ultrix_flock *));
142
143 extern struct sysent ultrix_sysent[];
144 extern char *ultrix_syscallnames[];
145
146
147 /*
148 * Select the appropriate setregs callback for the target architecture.
149 */
150 #ifdef __mips__
151 #include <machine/ecoff_machdep.h>
152 #define ULTRIX_EXEC_SETREGS cpu_exec_ecoff_setregs
153 #endif /* mips */
154
155 #ifdef __vax__
156 #define ULTRIX_EXEC_SETREGS setregs
157 #endif /* vax */
158
159
160 extern void ULTRIX_EXEC_SETREGS __P((struct proc *, struct exec_package *,
161 u_long));
162 extern char ultrix_sigcode[], ultrix_esigcode[];
163
164 struct emul emul_ultrix = {
165 "ultrix",
166 NULL,
167 sendsig,
168 ULTRIX_SYS_syscall,
169 ULTRIX_SYS_MAXSYSCALL,
170 ultrix_sysent,
171 ultrix_syscallnames,
172 0,
173 copyargs,
174 ULTRIX_EXEC_SETREGS,
175 ultrix_sigcode,
176 ultrix_esigcode,
177 };
178
179 #define GSI_PROG_ENV 1
180
181 int
182 ultrix_sys_getsysinfo(p, v, retval)
183 struct proc *p;
184 void *v;
185 register_t *retval;
186 {
187 struct ultrix_sys_getsysinfo_args *uap = v;
188 static short progenv = 0;
189
190 switch (SCARG(uap, op)) {
191 /* operations implemented: */
192 case GSI_PROG_ENV:
193 if (SCARG(uap, nbytes) < sizeof(short))
194 return EINVAL;
195 *retval = 1;
196 return (copyout(&progenv, SCARG(uap, buffer), sizeof(short)));
197 default:
198 *retval = 0; /* info unavail */
199 return 0;
200 }
201 }
202
203 int
204 ultrix_sys_setsysinfo(p, v, retval)
205 struct proc *p;
206 void *v;
207 register_t *retval;
208 {
209
210 #ifdef notyet
211 struct ultrix_sys_setsysinfo_args *uap = v;
212 #endif
213
214 *retval = 0;
215 return 0;
216 }
217
218 int
219 ultrix_sys_waitpid(p, v, retval)
220 struct proc *p;
221 void *v;
222 register_t *retval;
223 {
224 struct ultrix_sys_waitpid_args *uap = v;
225 struct sys_wait4_args ua;
226
227 SCARG(&ua, pid) = SCARG(uap, pid);
228 SCARG(&ua, status) = SCARG(uap, status);
229 SCARG(&ua, options) = SCARG(uap, options);
230 SCARG(&ua, rusage) = 0;
231
232 return (sys_wait4(p, &ua, retval));
233 }
234
235 int
236 ultrix_sys_wait3(p, v, retval)
237 struct proc *p;
238 void *v;
239 register_t *retval;
240 {
241 struct ultrix_sys_wait3_args *uap = v;
242 struct sys_wait4_args ua;
243
244 SCARG(&ua, pid) = -1;
245 SCARG(&ua, status) = SCARG(uap, status);
246 SCARG(&ua, options) = SCARG(uap, options);
247 SCARG(&ua, rusage) = SCARG(uap, rusage);
248
249 return (sys_wait4(p, &ua, retval));
250 }
251
252 /*
253 * Ultrix binaries pass in FD_MAX as the first arg to select().
254 * On Ultrix, FD_MAX is 4096, which is more than the NetBSD sys_select()
255 * can handle.
256 * Since we can't have more than the (native) FD_MAX descriptors open,
257 * limit nfds to at most FD_MAX.
258 */
259 int
260 ultrix_sys_select(p, v, retval)
261 struct proc *p;
262 void *v;
263 register_t *retval;
264 {
265 struct sys_select_args *uap = v;
266 struct timeval atv;
267 int error;
268
269 /* Limit number of FDs selected on to the native maximum */
270
271 if (SCARG(uap, nd) > FD_SETSIZE)
272 SCARG(uap, nd) = FD_SETSIZE;
273
274 /* Check for negative timeval */
275 if (SCARG(uap, tv)) {
276 error = copyin((caddr_t)SCARG(uap, tv), (caddr_t)&atv,
277 sizeof(atv));
278 if (error)
279 goto done;
280 #ifdef DEBUG
281 /* Ultrix clients sometimes give negative timeouts? */
282 if (atv.tv_sec < 0 || atv.tv_usec < 0)
283 printf("ultrix select( %ld, %ld): negative timeout\n",
284 atv.tv_sec, atv.tv_usec);
285 /*tvp = (timeval *)STACKGAPBASE;*/
286 #endif
287
288 }
289 error = sys_select(p, (void*) uap, retval);
290 if (error == EINVAL)
291 printf("ultrix select: bad args?\n");
292
293 done:
294 return error;
295 }
296
297 #if defined(NFS)
298 int
299 async_daemon(p, v, retval)
300 struct proc *p;
301 void *v;
302 register_t *retval;
303 {
304 struct sys_nfssvc_args ouap;
305
306 SCARG(&ouap, flag) = NFSSVC_BIOD;
307 SCARG(&ouap, argp) = NULL;
308
309 return (sys_nfssvc(p, &ouap, retval));
310 }
311 #endif /* NFS */
312
313
314 #define SUN__MAP_NEW 0x80000000 /* if not, old mmap & cannot handle */
315
316 int
317 ultrix_sys_mmap(p, v, retval)
318 struct proc *p;
319 void *v;
320 register_t *retval;
321 {
322 struct ultrix_sys_mmap_args *uap = v;
323 struct sys_mmap_args ouap;
324 struct filedesc *fdp;
325 struct file *fp;
326 struct vnode *vp;
327
328 /*
329 * Verify the arguments.
330 */
331 if (SCARG(uap, prot) & ~(PROT_READ|PROT_WRITE|PROT_EXEC))
332 return (EINVAL); /* XXX still needed? */
333
334 if ((SCARG(uap, flags) & SUN__MAP_NEW) == 0)
335 return (EINVAL);
336
337 SCARG(&ouap, flags) = SCARG(uap, flags) & ~SUN__MAP_NEW;
338 SCARG(&ouap, addr) = SCARG(uap, addr);
339
340 if ((SCARG(&ouap, flags) & MAP_FIXED) == 0 &&
341 SCARG(&ouap, addr) != 0 &&
342 SCARG(&ouap, addr) < (void *)round_page((vaddr_t)p->p_vmspace->vm_daddr+MAXDSIZ))
343 SCARG(&ouap, addr) = (void *)round_page((vaddr_t)p->p_vmspace->vm_daddr+MAXDSIZ);
344
345 SCARG(&ouap, len) = SCARG(uap, len);
346 SCARG(&ouap, prot) = SCARG(uap, prot);
347 SCARG(&ouap, fd) = SCARG(uap, fd);
348 SCARG(&ouap, pos) = SCARG(uap, pos);
349
350 /*
351 * Special case: if fd refers to /dev/zero, map as MAP_ANON. (XXX)
352 */
353 fdp = p->p_fd;
354 if ((unsigned)SCARG(&ouap, fd) < fdp->fd_nfiles && /*XXX*/
355 (fp = fdp->fd_ofiles[SCARG(&ouap, fd)]) != NULL && /*XXX*/
356 fp->f_type == DTYPE_VNODE && /*XXX*/
357 (vp = (struct vnode *)fp->f_data)->v_type == VCHR && /*XXX*/
358 iszerodev(vp->v_rdev)) { /*XXX*/
359 SCARG(&ouap, flags) |= MAP_ANON;
360 SCARG(&ouap, fd) = -1;
361 }
362
363 return (sys_mmap(p, &ouap, retval));
364 }
365
366 int
367 ultrix_sys_setsockopt(p, v, retval)
368 struct proc *p;
369 void *v;
370 register_t *retval;
371 {
372 struct ultrix_sys_setsockopt_args *uap = v;
373 struct file *fp;
374 struct mbuf *m = NULL;
375 int error;
376
377 /* getsock() will use the descriptor for us */
378 if ((error = getsock(p->p_fd, SCARG(uap, s), &fp)) != 0)
379 return (error);
380 #define SO_DONTLINGER (~SO_LINGER)
381 if (SCARG(uap, name) == SO_DONTLINGER) {
382 m = m_get(M_WAIT, MT_SOOPTS);
383 mtod(m, struct linger *)->l_onoff = 0;
384 m->m_len = sizeof(struct linger);
385 error = sosetopt((struct socket *)fp->f_data, SCARG(uap, level),
386 SO_LINGER, m);
387 }
388 if (SCARG(uap, level) == IPPROTO_IP) {
389 #define EMUL_IP_MULTICAST_IF 2
390 #define EMUL_IP_MULTICAST_TTL 3
391 #define EMUL_IP_MULTICAST_LOOP 4
392 #define EMUL_IP_ADD_MEMBERSHIP 5
393 #define EMUL_IP_DROP_MEMBERSHIP 6
394 static int ipoptxlat[] = {
395 IP_MULTICAST_IF,
396 IP_MULTICAST_TTL,
397 IP_MULTICAST_LOOP,
398 IP_ADD_MEMBERSHIP,
399 IP_DROP_MEMBERSHIP
400 };
401 if (SCARG(uap, name) >= EMUL_IP_MULTICAST_IF &&
402 SCARG(uap, name) <= EMUL_IP_DROP_MEMBERSHIP) {
403 SCARG(uap, name) =
404 ipoptxlat[SCARG(uap, name) - EMUL_IP_MULTICAST_IF];
405 }
406 }
407 if (SCARG(uap, valsize) > MLEN) {
408 error = EINVAL;
409 goto out;
410 }
411 if (SCARG(uap, val)) {
412 m = m_get(M_WAIT, MT_SOOPTS);
413 error = copyin(SCARG(uap, val), mtod(m, caddr_t),
414 (u_int)SCARG(uap, valsize));
415 if (error) {
416 (void) m_free(m);
417 goto out;
418 }
419 m->m_len = SCARG(uap, valsize);
420 }
421 error = sosetopt((struct socket *)fp->f_data, SCARG(uap, level),
422 SCARG(uap, name), m);
423 out:
424 FILE_UNUSE(fp, p);
425 return (error);
426 }
427
428 #define ULTRIX__SYS_NMLN 32
429
430 struct ultrix_utsname {
431 char sysname[ULTRIX__SYS_NMLN];
432 char nodename[ULTRIX__SYS_NMLN];
433 char release[ULTRIX__SYS_NMLN];
434 char version[ULTRIX__SYS_NMLN];
435 char machine[ULTRIX__SYS_NMLN];
436 };
437
438 int
439 ultrix_sys_uname(p, v, retval)
440 struct proc *p;
441 void *v;
442 register_t *retval;
443 {
444 struct ultrix_sys_uname_args *uap = v;
445 struct ultrix_utsname sut;
446 char *cp, *dp, *ep;
447
448 memset(&sut, 0, sizeof(sut));
449
450 strncpy(sut.sysname, ostype, sizeof(sut.sysname) - 1);
451 strncpy(sut.nodename, hostname, sizeof(sut.nodename) - 1);
452 strncpy(sut.release, osrelease, sizeof(sut.release) - 1);
453 dp = sut.version;
454 ep = &sut.version[sizeof(sut.version) - 1];
455 for (cp = version; *cp && *cp != '('; cp++)
456 ;
457 for (cp++; *cp && *cp != ')' && dp < ep; cp++)
458 *dp++ = *cp;
459 for (; *cp && *cp != '#'; cp++)
460 ;
461 for (; *cp && *cp != ':' && dp < ep; cp++)
462 *dp++ = *cp;
463 *dp = '\0';
464 strncpy(sut.machine, machine, sizeof(sut.machine) - 1);
465
466 return copyout((caddr_t)&sut, (caddr_t)SCARG(uap, name),
467 sizeof(struct ultrix_utsname));
468 }
469
470 int
471 ultrix_sys_setpgrp(p, v, retval)
472 struct proc *p;
473 void *v;
474 register_t *retval;
475 {
476 struct ultrix_sys_setpgrp_args *uap = v;
477
478 /*
479 * difference to our setpgid call is to include backwards
480 * compatibility to pre-setsid() binaries. Do setsid()
481 * instead of setpgid() in those cases where the process
482 * tries to create a new session the old way.
483 */
484 if (!SCARG(uap, pgid) &&
485 (!SCARG(uap, pid) || SCARG(uap, pid) == p->p_pid))
486 return sys_setsid(p, uap, retval);
487 else
488 return sys_setpgid(p, uap, retval);
489 }
490
491 #if defined (NFSSERVER)
492 int
493 ultrix_sys_nfssvc(p, v, retval)
494 struct proc *p;
495 void *v;
496 register_t *retval;
497 {
498
499 #if 0 /* XXX */
500 struct ultrix_sys_nfssvc_args *uap = v;
501 struct emul *e = p->p_emul;
502 struct sys_nfssvc_args outuap;
503 struct sockaddr sa;
504 int error;
505
506 memset(&outuap, 0, sizeof outuap);
507 SCARG(&outuap, fd) = SCARG(uap, fd);
508 SCARG(&outuap, mskval) = STACKGAPBASE;
509 SCARG(&outuap, msklen) = sizeof sa;
510 SCARG(&outuap, mtchval) = outuap.mskval + sizeof sa;
511 SCARG(&outuap, mtchlen) = sizeof sa;
512
513 memset(&sa, 0, sizeof sa);
514 if (error = copyout(&sa, SCARG(&outuap, mskval), SCARG(&outuap, msklen)))
515 return (error);
516 if (error = copyout(&sa, SCARG(&outuap, mtchval), SCARG(&outuap, mtchlen)))
517 return (error);
518
519 return nfssvc(p, &outuap, retval);
520 #else
521 return (ENOSYS);
522 #endif
523 }
524 #endif /* NFSSERVER */
525
526 struct ultrix_ustat {
527 daddr_t f_tfree; /* total free */
528 ino_t f_tinode; /* total inodes free */
529 char f_fname[6]; /* filsys name */
530 char f_fpack[6]; /* filsys pack name */
531 };
532
533 int
534 ultrix_sys_ustat(p, v, retval)
535 struct proc *p;
536 void *v;
537 register_t *retval;
538 {
539 struct ultrix_sys_ustat_args *uap = v;
540 struct ultrix_ustat us;
541 int error;
542
543 memset(&us, 0, sizeof us);
544
545 /*
546 * XXX: should set f_tfree and f_tinode at least
547 * How do we translate dev -> fstat? (and then to ultrix_ustat)
548 */
549
550 if ((error = copyout(&us, SCARG(uap, buf), sizeof us)) != 0)
551 return (error);
552 return 0;
553 }
554
555 int
556 ultrix_sys_quotactl(p, v, retval)
557 struct proc *p;
558 void *v;
559 register_t *retval;
560 {
561
562 #ifdef notyet
563 struct ultrix_sys_quotactl_args *uap = v;
564 #endif
565
566 return EINVAL;
567 }
568
569 int
570 ultrix_sys_vhangup(p, v, retval)
571 struct proc *p;
572 void *v;
573 register_t *retval;
574 {
575
576 return 0;
577 }
578
579
580 /*
581 * RISC Ultrix cache control syscalls
582 */
583 #ifdef __mips
584 int
585 ultrix_sys_cacheflush(p, v, retval)
586 struct proc *p;
587 void *v;
588 register_t *retval;
589 {
590 struct ultrix_sys_cacheflush_args /* {
591 syscallarg(void *) addr;
592 syscallarg(int) nbytes;
593 syscallarg(int) flag;
594 } */ *uap = v;
595 vaddr_t va = (vaddr_t)SCARG(uap, addr);
596 int nbytes = SCARG(uap, nbytes);
597 int whichcache = SCARG(uap, whichcache);
598
599 return (mips_user_cacheflush(p, va, nbytes, whichcache));
600 }
601
602
603 int
604 ultrix_sys_cachectl(p, v, retval)
605 struct proc *p;
606 void *v;
607 register_t *retval;
608 {
609 struct ultrix_sys_cachectl_args /* {
610 syscallarg(void *) addr;
611 syscallarg(int) nbytes;
612 syscallarg(int) cacheop;
613 } */ *uap = v;
614 vaddr_t va = (vaddr_t)SCARG(uap, addr);
615 int nbytes = SCARG(uap, nbytes);
616 int cacheop = SCARG(uap, cacheop);
617
618 return mips_user_cachectl(p, va, nbytes, cacheop);
619 }
620
621 #endif /* __mips */
622
623
624 int
625 ultrix_sys_exportfs(p, v, retval)
626 struct proc *p;
627 void *v;
628 register_t *retval;
629 {
630 #ifdef notyet
631 struct ultrix_sys_exportfs_args *uap = v;
632 #endif
633
634 /*
635 * XXX: should perhaps translate into a mount(2)
636 * with MOUNT_EXPORT?
637 */
638 return 0;
639 }
640
641 int
642 ultrix_sys_sigpending(p, v, retval)
643 struct proc *p;
644 void *v;
645 register_t *retval;
646 {
647 struct ultrix_sys_sigpending_args *uap = v;
648 sigset_t ss;
649 int mask;
650
651 sigpending1(p, &ss);
652 mask = ss.__bits[0];
653
654 return (copyout((caddr_t)&mask, (caddr_t)SCARG(uap, mask), sizeof(int)));
655 }
656
657 int
658 ultrix_sys_sigreturn(p, v, retval)
659 struct proc *p;
660 void *v;
661 register_t *retval;
662 {
663 struct ultrix_sys_sigreturn_args *uap = v;
664
665 /* struct sigcontext13 is close enough to Ultrix */
666
667 return (compat_13_sys_sigreturn(p, uap, retval));
668 }
669
670 int
671 ultrix_sys_sigcleanup(p, v, retval)
672 struct proc *p;
673 void *v;
674 register_t *retval;
675 {
676 struct ultrix_sys_sigcleanup_args *uap = v;
677
678 /* struct sigcontext13 is close enough to Ultrix */
679
680 return (compat_13_sys_sigreturn(p, uap, retval));
681 }
682
683 int
684 ultrix_sys_sigsuspend(p, v, retval)
685 struct proc *p;
686 void *v;
687 register_t *retval;
688 {
689 struct ultrix_sys_sigsuspend_args *uap = v;
690 int mask = SCARG(uap, mask);
691 sigset_t ss;
692
693 ss.__bits[0] = mask;
694 ss.__bits[1] = 0;
695 ss.__bits[2] = 0;
696 ss.__bits[3] = 0;
697
698 return (sigsuspend1(p, &ss));
699 }
700
701 #define ULTRIX_SV_ONSTACK 0x0001 /* take signal on signal stack */
702 #define ULTRIX_SV_INTERRUPT 0x0002 /* do not restart system on signal return */
703 #define ULTRIX_SV_OLDSIG 0x1000 /* Emulate old signal() for POSIX */
704
705 int
706 ultrix_sys_sigvec(p, v, retval)
707 struct proc *p;
708 void *v;
709 register_t *retval;
710 {
711 struct ultrix_sys_sigvec_args *uap = v;
712 struct sigvec nsv, osv;
713 struct sigaction nsa, osa;
714 int error;
715
716 if (SCARG(uap, nsv)) {
717 error = copyin(SCARG(uap, nsv), &nsv, sizeof(nsv));
718 if (error)
719 return (error);
720 nsa.sa_handler = nsv.sv_handler;
721 #if 0 /* documentation */
722 /* ONSTACK is identical */
723 nsa.sa_flags = nsv.sv_flags & ULTRIX_SV_ONSTACK;
724 if ((nsv.sv_flags & ULTRIX_SV_OLDSIG)
725 /* old signal() - always restart */
726 || (!(nsv.sv_flags & ULTRIX_SV_INTERRUPT))
727 /* inverted meaning (same bit) */
728 )
729 nsa.sa_flags |= SA_RESTART;
730 #else /* optimized - assuming ULTRIX_SV_OLDSIG=>!ULTRIX_SV_INTERRUPT */
731 nsa.sa_flags = nsv.sv_flags & ~ULTRIX_SV_OLDSIG;
732 nsa.sa_flags ^= SA_RESTART;
733 #endif
734 native_sigset13_to_sigset(&nsv.sv_mask, &nsa.sa_mask);
735 }
736 error = sigaction1(p, SCARG(uap, signum),
737 SCARG(uap, nsv) ? &nsa : 0, SCARG(uap, osv) ? &osa : 0);
738 if (error)
739 return (error);
740 if (SCARG(uap, osv)) {
741 osv.sv_handler = osa.sa_handler;
742 osv.sv_flags = osa.sa_flags ^ SA_RESTART;
743 osv.sv_flags &= (ULTRIX_SV_ONSTACK | ULTRIX_SV_INTERRUPT);
744 native_sigset_to_sigset13(&osa.sa_mask, &osv.sv_mask);
745 error = copyout(&osv, SCARG(uap, osv), sizeof(osv));
746 if (error)
747 return (error);
748 }
749 return (0);
750 }
751
752 int
753 ultrix_sys_shmsys(p, v, retval)
754 struct proc *p;
755 void *v;
756 register_t *retval;
757 {
758
759 #ifdef SYSVSHM
760
761 /* Ultrix SVSHM weirndess: */
762 struct ultrix_sys_shmsys_args *uap = v;
763 struct sys_shmat_args shmat_args;
764 struct compat_14_sys_shmctl_args shmctl_args;
765 struct sys_shmdt_args shmdt_args;
766 struct sys_shmget_args shmget_args;
767
768
769 switch (SCARG(uap, shmop)) {
770 case 0: /* Ultrix shmat() */
771 SCARG(&shmat_args, shmid) = SCARG(uap, a2);
772 SCARG(&shmat_args, shmaddr) = (void *)SCARG(uap, a3);
773 SCARG(&shmat_args, shmflg) = SCARG(uap, a4);
774 return (sys_shmat(p, &shmat_args, retval));
775
776 case 1: /* Ultrix shmctl() */
777 SCARG(&shmctl_args, shmid) = SCARG(uap, a2);
778 SCARG(&shmctl_args, cmd) = SCARG(uap, a3);
779 SCARG(&shmctl_args, buf) = (struct shmid_ds14 *)SCARG(uap, a4);
780 return (compat_14_sys_shmctl(p, &shmctl_args, retval));
781
782 case 2: /* Ultrix shmdt() */
783 SCARG(&shmat_args, shmaddr) = (void *)SCARG(uap, a2);
784 return (sys_shmdt(p, &shmdt_args, retval));
785
786 case 3: /* Ultrix shmget() */
787 SCARG(&shmget_args, key) = SCARG(uap, a2);
788 SCARG(&shmget_args, size) = SCARG(uap, a3);
789 SCARG(&shmget_args, shmflg) = SCARG(uap, a4)
790 & (IPC_CREAT|IPC_EXCL|IPC_NOWAIT);
791 return (sys_shmget(p, &shmget_args, retval));
792
793 default:
794 return (EINVAL);
795 }
796 #else
797 return (EOPNOTSUPP);
798 #endif /* SYSVSHM */
799 }
800
801 static int
802 ultrix_to_bsd_flock(ufl, fl)
803 struct ultrix_flock *ufl;
804 struct flock *fl;
805 {
806
807 fl->l_start = ufl->l_start;
808 fl->l_len = ufl->l_len;
809 fl->l_pid = ufl->l_pid;
810 fl->l_whence = ufl->l_whence;
811
812 switch (ufl->l_type) {
813 case ULTRIX_F_RDLCK:
814 fl->l_type = F_RDLCK;
815 break;
816 case ULTRIX_F_WRLCK:
817 fl->l_type = F_WRLCK;
818 break;
819 case ULTRIX_F_UNLCK:
820 fl->l_type = F_UNLCK;
821 break;
822 default:
823 return (EINVAL);
824 }
825
826 return (0);
827 }
828
829 static void
830 bsd_to_ultrix_flock(fl, ufl)
831 struct flock *fl;
832 struct ultrix_flock *ufl;
833 {
834
835 ufl->l_start = fl->l_start;
836 ufl->l_len = fl->l_len;
837 ufl->l_pid = fl->l_pid;
838 ufl->l_whence = fl->l_whence;
839
840 switch (fl->l_type) {
841 case F_RDLCK:
842 ufl->l_type = ULTRIX_F_RDLCK;
843 break;
844 case F_WRLCK:
845 ufl->l_type = ULTRIX_F_WRLCK;
846 break;
847 case F_UNLCK:
848 ufl->l_type = ULTRIX_F_UNLCK;
849 break;
850 }
851 }
852
853 int
854 ultrix_sys_fcntl(p, v, retval)
855 struct proc *p;
856 void *v;
857 register_t *retval;
858 {
859 struct ultrix_sys_fcntl_args *uap = v;
860 int error;
861 struct ultrix_flock ufl;
862 struct flock fl, *flp;
863 caddr_t sg;
864 struct sys_fcntl_args *args, fca;
865
866 switch (SCARG(uap, cmd)) {
867 case F_GETLK:
868 case F_SETLK:
869 case F_SETLKW:
870 error = copyin(SCARG(uap, arg), &ufl, sizeof(ufl));
871 if (error)
872 return (error);
873 error = ultrix_to_bsd_flock(&ufl, &fl);
874 if (error)
875 return (error);
876 sg = stackgap_init(p->p_emul);
877 flp = (struct flock *)stackgap_alloc(&sg, sizeof(*flp));
878 error = copyout(&fl, flp, sizeof(*flp));
879 if (error)
880 return (error);
881
882 SCARG(&fca, fd) = SCARG(uap, fd);
883 SCARG(&fca, cmd) = SCARG(uap, cmd);
884 SCARG(&fca, arg) = flp;
885 args = &fca;
886 break;
887 default:
888 args = v;
889 break;
890 }
891
892 error = sys_fcntl(p, args, retval);
893 if (error)
894 return (error);
895
896 switch (SCARG(uap, cmd)) {
897 case F_GETLK:
898 error = copyin(flp, &fl, sizeof(fl));
899 if (error)
900 return (error);
901 bsd_to_ultrix_flock(&fl, &ufl);
902 error = copyout(&ufl, SCARG(uap, arg), sizeof(ufl));
903 break;
904 }
905
906 return (error);
907 }
908