10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 52248Sraf * Common Development and Distribution License (the "License"). 62248Sraf * You may not use this file except in compliance with the License. 70Sstevel@tonic-gate * 80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate * See the License for the specific language governing permissions 110Sstevel@tonic-gate * and limitations under the License. 120Sstevel@tonic-gate * 130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate * 190Sstevel@tonic-gate * CDDL HEADER END 200Sstevel@tonic-gate */ 212248Sraf 220Sstevel@tonic-gate /* 235891Sraf * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 240Sstevel@tonic-gate * Use is subject to license terms. 250Sstevel@tonic-gate */ 260Sstevel@tonic-gate 270Sstevel@tonic-gate #include "lint.h" 280Sstevel@tonic-gate #include "thr_uberdata.h" 293086Sraf #include <sys/libc_kernel.h> 300Sstevel@tonic-gate #include <sys/procset.h> 313235Sraf #include <sys/fork.h> 320Sstevel@tonic-gate #include <alloca.h> 330Sstevel@tonic-gate #include <spawn.h> 340Sstevel@tonic-gate 350Sstevel@tonic-gate #define ALL_POSIX_SPAWN_FLAGS \ 360Sstevel@tonic-gate (POSIX_SPAWN_RESETIDS | \ 370Sstevel@tonic-gate POSIX_SPAWN_SETPGROUP | \ 380Sstevel@tonic-gate POSIX_SPAWN_SETSIGDEF | \ 390Sstevel@tonic-gate POSIX_SPAWN_SETSIGMASK | \ 400Sstevel@tonic-gate POSIX_SPAWN_SETSCHEDPARAM | \ 413235Sraf POSIX_SPAWN_SETSCHEDULER | \ 423235Sraf POSIX_SPAWN_NOSIGCHLD_NP | \ 43*7635SRoger.Faulkner@Sun.COM POSIX_SPAWN_WAITPID_NP | \ 44*7635SRoger.Faulkner@Sun.COM POSIX_SPAWN_NOEXECERR_NP) 450Sstevel@tonic-gate 460Sstevel@tonic-gate typedef struct { 476247Sraf int sa_psflags; /* POSIX_SPAWN_* flags */ 486247Sraf int sa_priority; 490Sstevel@tonic-gate int sa_schedpolicy; 500Sstevel@tonic-gate pid_t sa_pgroup; 510Sstevel@tonic-gate sigset_t sa_sigdefault; 520Sstevel@tonic-gate sigset_t sa_sigmask; 530Sstevel@tonic-gate } spawn_attr_t; 540Sstevel@tonic-gate 550Sstevel@tonic-gate typedef struct file_attr { 560Sstevel@tonic-gate struct file_attr *fa_next; /* circular list of file actions */ 570Sstevel@tonic-gate struct file_attr *fa_prev; 580Sstevel@tonic-gate enum {FA_OPEN, FA_CLOSE, FA_DUP2} fa_type; 590Sstevel@tonic-gate uint_t fa_pathsize; /* size of fa_path[] array */ 600Sstevel@tonic-gate char *fa_path; /* copied pathname for open() */ 610Sstevel@tonic-gate int fa_oflag; /* oflag for open() */ 620Sstevel@tonic-gate mode_t fa_mode; /* mode for open() */ 630Sstevel@tonic-gate int fa_filedes; /* file descriptor for open()/close() */ 640Sstevel@tonic-gate int fa_newfiledes; /* new file descriptor for dup2() */ 650Sstevel@tonic-gate } file_attr_t; 660Sstevel@tonic-gate 670Sstevel@tonic-gate extern int __lwp_sigmask(int, const sigset_t *, sigset_t *); 680Sstevel@tonic-gate extern int __sigaction(int, const struct sigaction *, struct sigaction *); 690Sstevel@tonic-gate 703086Sraf static int 710Sstevel@tonic-gate perform_flag_actions(spawn_attr_t *sap) 720Sstevel@tonic-gate { 730Sstevel@tonic-gate int sig; 740Sstevel@tonic-gate 750Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGMASK) { 760Sstevel@tonic-gate (void) __lwp_sigmask(SIG_SETMASK, &sap->sa_sigmask, NULL); 770Sstevel@tonic-gate } 780Sstevel@tonic-gate 790Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGDEF) { 800Sstevel@tonic-gate struct sigaction sigdfl; 810Sstevel@tonic-gate 826515Sraf (void) memset(&sigdfl, 0, sizeof (sigdfl)); 830Sstevel@tonic-gate for (sig = 1; sig < NSIG; sig++) { 846515Sraf if (sigismember(&sap->sa_sigdefault, sig)) 850Sstevel@tonic-gate (void) __sigaction(sig, &sigdfl, NULL); 860Sstevel@tonic-gate } 870Sstevel@tonic-gate } 880Sstevel@tonic-gate 890Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_RESETIDS) { 906515Sraf if (setgid(getgid()) != 0 || setuid(getuid()) != 0) 913086Sraf return (errno); 920Sstevel@tonic-gate } 930Sstevel@tonic-gate 940Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETPGROUP) { 956515Sraf if (setpgid(0, sap->sa_pgroup) != 0) 963086Sraf return (errno); 970Sstevel@tonic-gate } 980Sstevel@tonic-gate 990Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDULER) { 1006247Sraf if (setparam(P_LWPID, P_MYID, 1016247Sraf sap->sa_schedpolicy, sap->sa_priority) == -1) 1023086Sraf return (errno); 1030Sstevel@tonic-gate } else if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDPARAM) { 1046247Sraf if (setprio(P_LWPID, P_MYID, sap->sa_priority, NULL) == -1) 1053086Sraf return (errno); 1060Sstevel@tonic-gate } 1073086Sraf 1083086Sraf return (0); 1090Sstevel@tonic-gate } 1100Sstevel@tonic-gate 1113086Sraf static int 1120Sstevel@tonic-gate perform_file_actions(file_attr_t *fap) 1130Sstevel@tonic-gate { 1140Sstevel@tonic-gate file_attr_t *froot = fap; 1150Sstevel@tonic-gate int fd; 1160Sstevel@tonic-gate 1170Sstevel@tonic-gate do { 1180Sstevel@tonic-gate switch (fap->fa_type) { 1190Sstevel@tonic-gate case FA_OPEN: 1206515Sraf fd = __open(fap->fa_path, 1215891Sraf fap->fa_oflag, fap->fa_mode); 1220Sstevel@tonic-gate if (fd < 0) 1233086Sraf return (errno); 1240Sstevel@tonic-gate if (fd != fap->fa_filedes) { 1256515Sraf if (__fcntl(fd, F_DUP2FD, fap->fa_filedes) < 0) 1263086Sraf return (errno); 1276515Sraf (void) __close(fd); 1280Sstevel@tonic-gate } 1290Sstevel@tonic-gate break; 1300Sstevel@tonic-gate case FA_CLOSE: 1316515Sraf if (__close(fap->fa_filedes) == -1) 1323086Sraf return (errno); 1330Sstevel@tonic-gate break; 1340Sstevel@tonic-gate case FA_DUP2: 1356515Sraf fd = __fcntl(fap->fa_filedes, F_DUP2FD, 1365891Sraf fap->fa_newfiledes); 1370Sstevel@tonic-gate if (fd < 0) 1383086Sraf return (errno); 1390Sstevel@tonic-gate break; 1400Sstevel@tonic-gate } 1410Sstevel@tonic-gate } while ((fap = fap->fa_next) != froot); 1423086Sraf 1433086Sraf return (0); 1443086Sraf } 1453086Sraf 1463235Sraf static int 1473235Sraf forkflags(spawn_attr_t *sap) 1483235Sraf { 1493235Sraf int flags = 0; 1503235Sraf 1513235Sraf if (sap != NULL) { 1523235Sraf if (sap->sa_psflags & POSIX_SPAWN_NOSIGCHLD_NP) 1533235Sraf flags |= FORK_NOSIGCHLD; 1543235Sraf if (sap->sa_psflags & POSIX_SPAWN_WAITPID_NP) 1553235Sraf flags |= FORK_WAITPID; 1563235Sraf } 1573235Sraf 1583235Sraf return (flags); 1593235Sraf } 1603235Sraf 1613086Sraf /* 1623086Sraf * set_error() / get_error() are used to guarantee that the local variable 1633086Sraf * 'error' is set correctly in memory on return from vfork() in the parent. 1643086Sraf */ 1653086Sraf 1663086Sraf static int 1673086Sraf set_error(int *errp, int err) 1683086Sraf { 1693086Sraf return (*errp = err); 1703086Sraf } 1713086Sraf 1723086Sraf static int 1733086Sraf get_error(int *errp) 1743086Sraf { 1753086Sraf return (*errp); 1760Sstevel@tonic-gate } 1770Sstevel@tonic-gate 1780Sstevel@tonic-gate /* 1790Sstevel@tonic-gate * For MT safety, do not invoke the dynamic linker after calling vfork(). 1800Sstevel@tonic-gate * If some other thread was in the dynamic linker when this thread's parent 1810Sstevel@tonic-gate * called vfork() then the dynamic linker's lock would still be held here 1820Sstevel@tonic-gate * (with a defunct owner) and we would deadlock ourself if we invoked it. 1830Sstevel@tonic-gate * 1840Sstevel@tonic-gate * Therefore, all of the functions we call here after returning from 1856812Sraf * vforkx() in the child are not and must never be exported from libc 1860Sstevel@tonic-gate * as global symbols. To do so would risk invoking the dynamic linker. 1870Sstevel@tonic-gate */ 1880Sstevel@tonic-gate 1890Sstevel@tonic-gate int 1906812Sraf posix_spawn( 1910Sstevel@tonic-gate pid_t *pidp, 1920Sstevel@tonic-gate const char *path, 1930Sstevel@tonic-gate const posix_spawn_file_actions_t *file_actions, 1940Sstevel@tonic-gate const posix_spawnattr_t *attrp, 1950Sstevel@tonic-gate char *const argv[], 1960Sstevel@tonic-gate char *const envp[]) 1970Sstevel@tonic-gate { 1980Sstevel@tonic-gate spawn_attr_t *sap = attrp? attrp->__spawn_attrp : NULL; 1990Sstevel@tonic-gate file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; 2003086Sraf int error; /* this will be set by the child */ 2010Sstevel@tonic-gate pid_t pid; 2020Sstevel@tonic-gate 2030Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 2040Sstevel@tonic-gate return (EINVAL); 2050Sstevel@tonic-gate 2066812Sraf switch (pid = vforkx(forkflags(sap))) { 2070Sstevel@tonic-gate case 0: /* child */ 2080Sstevel@tonic-gate break; 2090Sstevel@tonic-gate case -1: /* parent, failure */ 2100Sstevel@tonic-gate return (errno); 2110Sstevel@tonic-gate default: /* parent, success */ 2123086Sraf /* 2133086Sraf * We don't get here until the child exec()s or exit()s 2143086Sraf */ 2153086Sraf if (pidp != NULL && get_error(&error) == 0) 2160Sstevel@tonic-gate *pidp = pid; 2173086Sraf return (get_error(&error)); 2180Sstevel@tonic-gate } 2190Sstevel@tonic-gate 2200Sstevel@tonic-gate if (sap != NULL) 2213086Sraf if (set_error(&error, perform_flag_actions(sap)) != 0) 2226515Sraf _exit(_EVAPORATE); 2230Sstevel@tonic-gate 2240Sstevel@tonic-gate if (fap != NULL) 2253086Sraf if (set_error(&error, perform_file_actions(fap)) != 0) 2266515Sraf _exit(_EVAPORATE); 2270Sstevel@tonic-gate 2283086Sraf (void) set_error(&error, 0); 2296515Sraf (void) execve(path, argv, envp); 230*7635SRoger.Faulkner@Sun.COM if (sap != NULL && (sap->sa_psflags & POSIX_SPAWN_NOEXECERR_NP)) 231*7635SRoger.Faulkner@Sun.COM _exit(127); 2323086Sraf (void) set_error(&error, errno); 2336515Sraf _exit(_EVAPORATE); 2340Sstevel@tonic-gate return (0); /* not reached */ 2350Sstevel@tonic-gate } 2360Sstevel@tonic-gate 2370Sstevel@tonic-gate /* 2380Sstevel@tonic-gate * Much of posix_spawnp() blatently stolen from execvp() (port/gen/execvp.c). 2390Sstevel@tonic-gate */ 2400Sstevel@tonic-gate 2415891Sraf extern int libc__xpg4; 2420Sstevel@tonic-gate 2430Sstevel@tonic-gate static const char * 2440Sstevel@tonic-gate execat(const char *s1, const char *s2, char *si) 2450Sstevel@tonic-gate { 2460Sstevel@tonic-gate int cnt = PATH_MAX + 1; 2470Sstevel@tonic-gate char *s; 2480Sstevel@tonic-gate char c; 2490Sstevel@tonic-gate 2500Sstevel@tonic-gate for (s = si; (c = *s1) != '\0' && c != ':'; s1++) { 2510Sstevel@tonic-gate if (cnt > 0) { 2520Sstevel@tonic-gate *s++ = c; 2530Sstevel@tonic-gate cnt--; 2540Sstevel@tonic-gate } 2550Sstevel@tonic-gate } 2560Sstevel@tonic-gate if (si != s && cnt > 0) { 2570Sstevel@tonic-gate *s++ = '/'; 2580Sstevel@tonic-gate cnt--; 2590Sstevel@tonic-gate } 2600Sstevel@tonic-gate for (; (c = *s2) != '\0' && cnt > 0; s2++) { 2610Sstevel@tonic-gate *s++ = c; 2620Sstevel@tonic-gate cnt--; 2630Sstevel@tonic-gate } 2640Sstevel@tonic-gate *s = '\0'; 2650Sstevel@tonic-gate return (*s1? ++s1: NULL); 2660Sstevel@tonic-gate } 2670Sstevel@tonic-gate 2680Sstevel@tonic-gate /* ARGSUSED */ 2690Sstevel@tonic-gate int 2706812Sraf posix_spawnp( 2710Sstevel@tonic-gate pid_t *pidp, 2720Sstevel@tonic-gate const char *file, 2730Sstevel@tonic-gate const posix_spawn_file_actions_t *file_actions, 2740Sstevel@tonic-gate const posix_spawnattr_t *attrp, 2750Sstevel@tonic-gate char *const argv[], 2760Sstevel@tonic-gate char *const envp[]) 2770Sstevel@tonic-gate { 2780Sstevel@tonic-gate spawn_attr_t *sap = attrp? attrp->__spawn_attrp : NULL; 2790Sstevel@tonic-gate file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; 2800Sstevel@tonic-gate const char *pathstr = (strchr(file, '/') == NULL)? getenv("PATH") : ""; 2815891Sraf int xpg4 = libc__xpg4; 2823086Sraf int error; /* this will be set by the child */ 2830Sstevel@tonic-gate char path[PATH_MAX+4]; 2840Sstevel@tonic-gate const char *cp; 2850Sstevel@tonic-gate pid_t pid; 2860Sstevel@tonic-gate char **newargs; 2870Sstevel@tonic-gate int argc; 2880Sstevel@tonic-gate int i; 2890Sstevel@tonic-gate static const char *sun_path = "/bin/sh"; 2900Sstevel@tonic-gate static const char *xpg4_path = "/usr/xpg4/bin/sh"; 2910Sstevel@tonic-gate static const char *shell = "sh"; 2920Sstevel@tonic-gate 2930Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 2940Sstevel@tonic-gate return (EINVAL); 2950Sstevel@tonic-gate 2963086Sraf if (*file == '\0') 2973086Sraf return (EACCES); 2983086Sraf 2990Sstevel@tonic-gate /* 3000Sstevel@tonic-gate * We may need to invoke the shell with a slightly modified 3010Sstevel@tonic-gate * argv[] array. To do this we need to preallocate the array. 3020Sstevel@tonic-gate * We must call alloca() before calling vfork() because doing 3030Sstevel@tonic-gate * it after vfork() (in the child) would corrupt the parent. 3040Sstevel@tonic-gate */ 3050Sstevel@tonic-gate for (argc = 0; argv[argc] != NULL; argc++) 3060Sstevel@tonic-gate continue; 3070Sstevel@tonic-gate newargs = alloca((argc + 2) * sizeof (char *)); 3080Sstevel@tonic-gate 3096812Sraf switch (pid = vforkx(forkflags(sap))) { 3100Sstevel@tonic-gate case 0: /* child */ 3110Sstevel@tonic-gate break; 3120Sstevel@tonic-gate case -1: /* parent, failure */ 3130Sstevel@tonic-gate return (errno); 3140Sstevel@tonic-gate default: /* parent, success */ 3153086Sraf /* 3163086Sraf * We don't get here until the child exec()s or exit()s 3173086Sraf */ 3183086Sraf if (pidp != NULL && get_error(&error) == 0) 3190Sstevel@tonic-gate *pidp = pid; 3203086Sraf return (get_error(&error)); 3210Sstevel@tonic-gate } 3220Sstevel@tonic-gate 3230Sstevel@tonic-gate if (sap != NULL) 3243086Sraf if (set_error(&error, perform_flag_actions(sap)) != 0) 3256515Sraf _exit(_EVAPORATE); 3260Sstevel@tonic-gate 3270Sstevel@tonic-gate if (fap != NULL) 3283086Sraf if (set_error(&error, perform_file_actions(fap)) != 0) 3296515Sraf _exit(_EVAPORATE); 3300Sstevel@tonic-gate 3310Sstevel@tonic-gate if (pathstr == NULL) { 3320Sstevel@tonic-gate /* 3330Sstevel@tonic-gate * XPG4: pathstr is equivalent to _CS_PATH, except that 3340Sstevel@tonic-gate * :/usr/sbin is appended when root, and pathstr must end 3350Sstevel@tonic-gate * with a colon when not root. Keep these paths in sync 3360Sstevel@tonic-gate * with _CS_PATH in confstr.c. Note that pathstr must end 3370Sstevel@tonic-gate * with a colon when not root so that when file doesn't 3380Sstevel@tonic-gate * contain '/', the last call to execat() will result in an 3390Sstevel@tonic-gate * attempt to execv file from the current directory. 3400Sstevel@tonic-gate */ 3416515Sraf if (geteuid() == 0 || getuid() == 0) { 3420Sstevel@tonic-gate if (!xpg4) 3430Sstevel@tonic-gate pathstr = "/usr/sbin:/usr/ccs/bin:/usr/bin"; 3440Sstevel@tonic-gate else 3450Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 3460Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:/usr/sbin"; 3470Sstevel@tonic-gate } else { 3480Sstevel@tonic-gate if (!xpg4) 3490Sstevel@tonic-gate pathstr = "/usr/ccs/bin:/usr/bin:"; 3500Sstevel@tonic-gate else 3510Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 3520Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:"; 3530Sstevel@tonic-gate } 3540Sstevel@tonic-gate } 3550Sstevel@tonic-gate 3560Sstevel@tonic-gate cp = pathstr; 3570Sstevel@tonic-gate do { 3580Sstevel@tonic-gate cp = execat(cp, file, path); 3590Sstevel@tonic-gate /* 3600Sstevel@tonic-gate * 4025035 and 4038378 3610Sstevel@tonic-gate * if a filename begins with a "-" prepend "./" so that 3620Sstevel@tonic-gate * the shell can't interpret it as an option 3630Sstevel@tonic-gate */ 3640Sstevel@tonic-gate if (*path == '-') { 3650Sstevel@tonic-gate char *s; 3660Sstevel@tonic-gate 3670Sstevel@tonic-gate for (s = path; *s != '\0'; s++) 3680Sstevel@tonic-gate continue; 3690Sstevel@tonic-gate for (; s >= path; s--) 3700Sstevel@tonic-gate *(s + 2) = *s; 3710Sstevel@tonic-gate path[0] = '.'; 3720Sstevel@tonic-gate path[1] = '/'; 3730Sstevel@tonic-gate } 3743086Sraf (void) set_error(&error, 0); 3756515Sraf (void) execve(path, argv, envp); 3763086Sraf if (set_error(&error, errno) == ENOEXEC) { 3770Sstevel@tonic-gate newargs[0] = (char *)shell; 3780Sstevel@tonic-gate newargs[1] = path; 3790Sstevel@tonic-gate for (i = 1; i <= argc; i++) 3800Sstevel@tonic-gate newargs[i + 1] = argv[i]; 3813086Sraf (void) set_error(&error, 0); 3826515Sraf (void) execve(xpg4? xpg4_path : sun_path, 3833086Sraf newargs, envp); 384*7635SRoger.Faulkner@Sun.COM if (sap != NULL && 385*7635SRoger.Faulkner@Sun.COM (sap->sa_psflags & POSIX_SPAWN_NOEXECERR_NP)) 386*7635SRoger.Faulkner@Sun.COM _exit(127); 3873086Sraf (void) set_error(&error, errno); 3886515Sraf _exit(_EVAPORATE); 3890Sstevel@tonic-gate } 3900Sstevel@tonic-gate } while (cp); 3916515Sraf _exit(_EVAPORATE); 3920Sstevel@tonic-gate return (0); /* not reached */ 3930Sstevel@tonic-gate } 3940Sstevel@tonic-gate 3950Sstevel@tonic-gate int 3966812Sraf posix_spawn_file_actions_init( 3970Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 3980Sstevel@tonic-gate { 3990Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4000Sstevel@tonic-gate return (0); 4010Sstevel@tonic-gate } 4020Sstevel@tonic-gate 4030Sstevel@tonic-gate int 4046812Sraf posix_spawn_file_actions_destroy( 4050Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 4060Sstevel@tonic-gate { 4070Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4080Sstevel@tonic-gate file_attr_t *fap; 4090Sstevel@tonic-gate file_attr_t *next; 4100Sstevel@tonic-gate 4110Sstevel@tonic-gate if ((fap = froot) != NULL) { 4120Sstevel@tonic-gate do { 4130Sstevel@tonic-gate next = fap->fa_next; 4140Sstevel@tonic-gate if (fap-> fa_type == FA_OPEN) 4150Sstevel@tonic-gate lfree(fap->fa_path, fap->fa_pathsize); 4160Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 4170Sstevel@tonic-gate } while ((fap = next) != froot); 4180Sstevel@tonic-gate } 4190Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4200Sstevel@tonic-gate return (0); 4210Sstevel@tonic-gate } 4220Sstevel@tonic-gate 4230Sstevel@tonic-gate static void 4240Sstevel@tonic-gate add_file_attr(posix_spawn_file_actions_t *file_actions, file_attr_t *fap) 4250Sstevel@tonic-gate { 4260Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4270Sstevel@tonic-gate 4280Sstevel@tonic-gate if (froot == NULL) { 4290Sstevel@tonic-gate fap->fa_next = fap->fa_prev = fap; 4300Sstevel@tonic-gate file_actions->__file_attrp = fap; 4310Sstevel@tonic-gate } else { 4320Sstevel@tonic-gate fap->fa_next = froot; 4330Sstevel@tonic-gate fap->fa_prev = froot->fa_prev; 4340Sstevel@tonic-gate froot->fa_prev->fa_next = fap; 4350Sstevel@tonic-gate froot->fa_prev = fap; 4360Sstevel@tonic-gate } 4370Sstevel@tonic-gate } 4380Sstevel@tonic-gate 4390Sstevel@tonic-gate int 4406812Sraf posix_spawn_file_actions_addopen( 4410Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 4420Sstevel@tonic-gate int filedes, 4430Sstevel@tonic-gate const char *path, 4440Sstevel@tonic-gate int oflag, 4450Sstevel@tonic-gate mode_t mode) 4460Sstevel@tonic-gate { 4470Sstevel@tonic-gate file_attr_t *fap; 4480Sstevel@tonic-gate 4490Sstevel@tonic-gate if (filedes < 0) 4500Sstevel@tonic-gate return (EBADF); 4510Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 4520Sstevel@tonic-gate return (ENOMEM); 4530Sstevel@tonic-gate 4540Sstevel@tonic-gate fap->fa_pathsize = strlen(path) + 1; 4550Sstevel@tonic-gate if ((fap->fa_path = lmalloc(fap->fa_pathsize)) == NULL) { 4560Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 4570Sstevel@tonic-gate return (ENOMEM); 4580Sstevel@tonic-gate } 4590Sstevel@tonic-gate (void) strcpy(fap->fa_path, path); 4600Sstevel@tonic-gate 4610Sstevel@tonic-gate fap->fa_type = FA_OPEN; 4620Sstevel@tonic-gate fap->fa_oflag = oflag; 4630Sstevel@tonic-gate fap->fa_mode = mode; 4640Sstevel@tonic-gate fap->fa_filedes = filedes; 4650Sstevel@tonic-gate add_file_attr(file_actions, fap); 4660Sstevel@tonic-gate 4670Sstevel@tonic-gate return (0); 4680Sstevel@tonic-gate } 4690Sstevel@tonic-gate 4700Sstevel@tonic-gate int 4716812Sraf posix_spawn_file_actions_addclose( 4720Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 4730Sstevel@tonic-gate int filedes) 4740Sstevel@tonic-gate { 4750Sstevel@tonic-gate file_attr_t *fap; 4760Sstevel@tonic-gate 4770Sstevel@tonic-gate if (filedes < 0) 4780Sstevel@tonic-gate return (EBADF); 4790Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 4800Sstevel@tonic-gate return (ENOMEM); 4810Sstevel@tonic-gate 4820Sstevel@tonic-gate fap->fa_type = FA_CLOSE; 4830Sstevel@tonic-gate fap->fa_filedes = filedes; 4840Sstevel@tonic-gate add_file_attr(file_actions, fap); 4850Sstevel@tonic-gate 4860Sstevel@tonic-gate return (0); 4870Sstevel@tonic-gate } 4880Sstevel@tonic-gate 4890Sstevel@tonic-gate int 4906812Sraf posix_spawn_file_actions_adddup2( 4910Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 4920Sstevel@tonic-gate int filedes, 4930Sstevel@tonic-gate int newfiledes) 4940Sstevel@tonic-gate { 4950Sstevel@tonic-gate file_attr_t *fap; 4960Sstevel@tonic-gate 4970Sstevel@tonic-gate if (filedes < 0 || newfiledes < 0) 4980Sstevel@tonic-gate return (EBADF); 4990Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 5000Sstevel@tonic-gate return (ENOMEM); 5010Sstevel@tonic-gate 5020Sstevel@tonic-gate fap->fa_type = FA_DUP2; 5030Sstevel@tonic-gate fap->fa_filedes = filedes; 5040Sstevel@tonic-gate fap->fa_newfiledes = newfiledes; 5050Sstevel@tonic-gate add_file_attr(file_actions, fap); 5060Sstevel@tonic-gate 5070Sstevel@tonic-gate return (0); 5080Sstevel@tonic-gate } 5090Sstevel@tonic-gate 5100Sstevel@tonic-gate int 5116812Sraf posix_spawnattr_init( 5120Sstevel@tonic-gate posix_spawnattr_t *attr) 5130Sstevel@tonic-gate { 5143235Sraf if ((attr->__spawn_attrp = lmalloc(sizeof (posix_spawnattr_t))) == NULL) 5150Sstevel@tonic-gate return (ENOMEM); 5160Sstevel@tonic-gate /* 5170Sstevel@tonic-gate * Add default stuff here? 5180Sstevel@tonic-gate */ 5190Sstevel@tonic-gate return (0); 5200Sstevel@tonic-gate } 5210Sstevel@tonic-gate 5220Sstevel@tonic-gate int 5236812Sraf posix_spawnattr_destroy( 5240Sstevel@tonic-gate posix_spawnattr_t *attr) 5250Sstevel@tonic-gate { 5260Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5270Sstevel@tonic-gate 5280Sstevel@tonic-gate if (sap == NULL) 5290Sstevel@tonic-gate return (EINVAL); 5300Sstevel@tonic-gate 5310Sstevel@tonic-gate /* 5320Sstevel@tonic-gate * deallocate stuff here? 5330Sstevel@tonic-gate */ 5340Sstevel@tonic-gate lfree(sap, sizeof (*sap)); 5350Sstevel@tonic-gate attr->__spawn_attrp = NULL; 5360Sstevel@tonic-gate return (0); 5370Sstevel@tonic-gate } 5380Sstevel@tonic-gate 5390Sstevel@tonic-gate int 5406812Sraf posix_spawnattr_setflags( 5410Sstevel@tonic-gate posix_spawnattr_t *attr, 5420Sstevel@tonic-gate short flags) 5430Sstevel@tonic-gate { 5440Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5450Sstevel@tonic-gate 5460Sstevel@tonic-gate if (sap == NULL || 5470Sstevel@tonic-gate (flags & ~ALL_POSIX_SPAWN_FLAGS)) 5480Sstevel@tonic-gate return (EINVAL); 5490Sstevel@tonic-gate 5500Sstevel@tonic-gate sap->sa_psflags = flags; 5510Sstevel@tonic-gate return (0); 5520Sstevel@tonic-gate } 5530Sstevel@tonic-gate 5540Sstevel@tonic-gate int 5556812Sraf posix_spawnattr_getflags( 5560Sstevel@tonic-gate const posix_spawnattr_t *attr, 5570Sstevel@tonic-gate short *flags) 5580Sstevel@tonic-gate { 5590Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5600Sstevel@tonic-gate 5610Sstevel@tonic-gate if (sap == NULL) 5620Sstevel@tonic-gate return (EINVAL); 5630Sstevel@tonic-gate 5640Sstevel@tonic-gate *flags = sap->sa_psflags; 5650Sstevel@tonic-gate return (0); 5660Sstevel@tonic-gate } 5670Sstevel@tonic-gate 5680Sstevel@tonic-gate int 5696812Sraf posix_spawnattr_setpgroup( 5700Sstevel@tonic-gate posix_spawnattr_t *attr, 5710Sstevel@tonic-gate pid_t pgroup) 5720Sstevel@tonic-gate { 5730Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5740Sstevel@tonic-gate 5750Sstevel@tonic-gate if (sap == NULL) 5760Sstevel@tonic-gate return (EINVAL); 5770Sstevel@tonic-gate 5780Sstevel@tonic-gate sap->sa_pgroup = pgroup; 5790Sstevel@tonic-gate return (0); 5800Sstevel@tonic-gate } 5810Sstevel@tonic-gate 5820Sstevel@tonic-gate int 5836812Sraf posix_spawnattr_getpgroup( 5840Sstevel@tonic-gate const posix_spawnattr_t *attr, 5850Sstevel@tonic-gate pid_t *pgroup) 5860Sstevel@tonic-gate { 5870Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5880Sstevel@tonic-gate 5890Sstevel@tonic-gate if (sap == NULL) 5900Sstevel@tonic-gate return (EINVAL); 5910Sstevel@tonic-gate 5920Sstevel@tonic-gate *pgroup = sap->sa_pgroup; 5930Sstevel@tonic-gate return (0); 5940Sstevel@tonic-gate } 5950Sstevel@tonic-gate 5960Sstevel@tonic-gate int 5976812Sraf posix_spawnattr_setschedparam( 5980Sstevel@tonic-gate posix_spawnattr_t *attr, 5990Sstevel@tonic-gate const struct sched_param *schedparam) 6000Sstevel@tonic-gate { 6010Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6020Sstevel@tonic-gate 6030Sstevel@tonic-gate if (sap == NULL) 6040Sstevel@tonic-gate return (EINVAL); 6050Sstevel@tonic-gate 6060Sstevel@tonic-gate /* 6070Sstevel@tonic-gate * Check validity? 6080Sstevel@tonic-gate */ 6090Sstevel@tonic-gate sap->sa_priority = schedparam->sched_priority; 6100Sstevel@tonic-gate return (0); 6110Sstevel@tonic-gate } 6120Sstevel@tonic-gate 6130Sstevel@tonic-gate int 6146812Sraf posix_spawnattr_getschedparam( 6150Sstevel@tonic-gate const posix_spawnattr_t *attr, 6160Sstevel@tonic-gate struct sched_param *schedparam) 6170Sstevel@tonic-gate { 6180Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6190Sstevel@tonic-gate 6200Sstevel@tonic-gate if (sap == NULL) 6210Sstevel@tonic-gate return (EINVAL); 6220Sstevel@tonic-gate 6230Sstevel@tonic-gate schedparam->sched_priority = sap->sa_priority; 6240Sstevel@tonic-gate return (0); 6250Sstevel@tonic-gate } 6260Sstevel@tonic-gate 6270Sstevel@tonic-gate int 6286812Sraf posix_spawnattr_setschedpolicy( 6290Sstevel@tonic-gate posix_spawnattr_t *attr, 6300Sstevel@tonic-gate int schedpolicy) 6310Sstevel@tonic-gate { 6320Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6330Sstevel@tonic-gate 6346247Sraf if (sap == NULL || schedpolicy == SCHED_SYS) 6350Sstevel@tonic-gate return (EINVAL); 6360Sstevel@tonic-gate 6376247Sraf /* 6386247Sraf * Cache the policy information for later use 6396247Sraf * by the vfork() child of posix_spawn(). 6406247Sraf */ 6416247Sraf if (get_info_by_policy(schedpolicy) == NULL) 6426247Sraf return (errno); 6430Sstevel@tonic-gate 6440Sstevel@tonic-gate sap->sa_schedpolicy = schedpolicy; 6450Sstevel@tonic-gate return (0); 6460Sstevel@tonic-gate } 6470Sstevel@tonic-gate 6480Sstevel@tonic-gate int 6496812Sraf posix_spawnattr_getschedpolicy( 6500Sstevel@tonic-gate const posix_spawnattr_t *attr, 6510Sstevel@tonic-gate int *schedpolicy) 6520Sstevel@tonic-gate { 6530Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6540Sstevel@tonic-gate 6550Sstevel@tonic-gate if (sap == NULL) 6560Sstevel@tonic-gate return (EINVAL); 6570Sstevel@tonic-gate 6580Sstevel@tonic-gate *schedpolicy = sap->sa_schedpolicy; 6590Sstevel@tonic-gate return (0); 6600Sstevel@tonic-gate } 6610Sstevel@tonic-gate 6620Sstevel@tonic-gate int 6636812Sraf posix_spawnattr_setsigdefault( 6640Sstevel@tonic-gate posix_spawnattr_t *attr, 6650Sstevel@tonic-gate const sigset_t *sigdefault) 6660Sstevel@tonic-gate { 6670Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6680Sstevel@tonic-gate 6690Sstevel@tonic-gate if (sap == NULL) 6700Sstevel@tonic-gate return (EINVAL); 6710Sstevel@tonic-gate 6720Sstevel@tonic-gate sap->sa_sigdefault = *sigdefault; 6730Sstevel@tonic-gate return (0); 6740Sstevel@tonic-gate } 6750Sstevel@tonic-gate 6760Sstevel@tonic-gate int 6776812Sraf posix_spawnattr_getsigdefault( 6780Sstevel@tonic-gate const posix_spawnattr_t *attr, 6790Sstevel@tonic-gate sigset_t *sigdefault) 6800Sstevel@tonic-gate { 6810Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6820Sstevel@tonic-gate 6830Sstevel@tonic-gate if (sap == NULL) 6840Sstevel@tonic-gate return (EINVAL); 6850Sstevel@tonic-gate 6860Sstevel@tonic-gate *sigdefault = sap->sa_sigdefault; 6870Sstevel@tonic-gate return (0); 6880Sstevel@tonic-gate } 6890Sstevel@tonic-gate 6900Sstevel@tonic-gate int 6916812Sraf posix_spawnattr_setsigmask( 6920Sstevel@tonic-gate posix_spawnattr_t *attr, 6930Sstevel@tonic-gate const sigset_t *sigmask) 6940Sstevel@tonic-gate { 6950Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6960Sstevel@tonic-gate 6970Sstevel@tonic-gate if (sap == NULL) 6980Sstevel@tonic-gate return (EINVAL); 6990Sstevel@tonic-gate 7000Sstevel@tonic-gate sap->sa_sigmask = *sigmask; 7010Sstevel@tonic-gate return (0); 7020Sstevel@tonic-gate } 7030Sstevel@tonic-gate 7040Sstevel@tonic-gate int 7056812Sraf posix_spawnattr_getsigmask( 7060Sstevel@tonic-gate const posix_spawnattr_t *attr, 7070Sstevel@tonic-gate sigset_t *sigmask) 7080Sstevel@tonic-gate { 7090Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7100Sstevel@tonic-gate 7110Sstevel@tonic-gate if (sap == NULL) 7120Sstevel@tonic-gate return (EINVAL); 7130Sstevel@tonic-gate 7140Sstevel@tonic-gate *sigmask = sap->sa_sigmask; 7150Sstevel@tonic-gate return (0); 7160Sstevel@tonic-gate } 717