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