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 #pragma ident "%Z%%M% %I% %E% SMI" 280Sstevel@tonic-gate 290Sstevel@tonic-gate #include "lint.h" 300Sstevel@tonic-gate #include "thr_uberdata.h" 313086Sraf #include <sys/libc_kernel.h> 320Sstevel@tonic-gate #include <sys/procset.h> 333235Sraf #include <sys/fork.h> 340Sstevel@tonic-gate #include <alloca.h> 350Sstevel@tonic-gate #include <spawn.h> 360Sstevel@tonic-gate 370Sstevel@tonic-gate #define ALL_POSIX_SPAWN_FLAGS \ 380Sstevel@tonic-gate (POSIX_SPAWN_RESETIDS | \ 390Sstevel@tonic-gate POSIX_SPAWN_SETPGROUP | \ 400Sstevel@tonic-gate POSIX_SPAWN_SETSIGDEF | \ 410Sstevel@tonic-gate POSIX_SPAWN_SETSIGMASK | \ 420Sstevel@tonic-gate POSIX_SPAWN_SETSCHEDPARAM | \ 433235Sraf POSIX_SPAWN_SETSCHEDULER | \ 443235Sraf POSIX_SPAWN_NOSIGCHLD_NP | \ 453235Sraf POSIX_SPAWN_WAITPID_NP) 460Sstevel@tonic-gate 470Sstevel@tonic-gate typedef struct { 486247Sraf int sa_psflags; /* POSIX_SPAWN_* flags */ 496247Sraf int sa_priority; 500Sstevel@tonic-gate int sa_schedpolicy; 510Sstevel@tonic-gate pid_t sa_pgroup; 520Sstevel@tonic-gate sigset_t sa_sigdefault; 530Sstevel@tonic-gate sigset_t sa_sigmask; 540Sstevel@tonic-gate } spawn_attr_t; 550Sstevel@tonic-gate 560Sstevel@tonic-gate typedef struct file_attr { 570Sstevel@tonic-gate struct file_attr *fa_next; /* circular list of file actions */ 580Sstevel@tonic-gate struct file_attr *fa_prev; 590Sstevel@tonic-gate enum {FA_OPEN, FA_CLOSE, FA_DUP2} fa_type; 600Sstevel@tonic-gate uint_t fa_pathsize; /* size of fa_path[] array */ 610Sstevel@tonic-gate char *fa_path; /* copied pathname for open() */ 620Sstevel@tonic-gate int fa_oflag; /* oflag for open() */ 630Sstevel@tonic-gate mode_t fa_mode; /* mode for open() */ 640Sstevel@tonic-gate int fa_filedes; /* file descriptor for open()/close() */ 650Sstevel@tonic-gate int fa_newfiledes; /* new file descriptor for dup2() */ 660Sstevel@tonic-gate } file_attr_t; 670Sstevel@tonic-gate 683235Sraf extern pid_t _vforkx(int); 693235Sraf #pragma unknown_control_flow(_vforkx) 700Sstevel@tonic-gate extern int __lwp_sigmask(int, const sigset_t *, sigset_t *); 710Sstevel@tonic-gate extern int __sigaction(int, const struct sigaction *, struct sigaction *); 720Sstevel@tonic-gate 733086Sraf static int 740Sstevel@tonic-gate perform_flag_actions(spawn_attr_t *sap) 750Sstevel@tonic-gate { 760Sstevel@tonic-gate int sig; 770Sstevel@tonic-gate 780Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGMASK) { 790Sstevel@tonic-gate (void) __lwp_sigmask(SIG_SETMASK, &sap->sa_sigmask, NULL); 800Sstevel@tonic-gate } 810Sstevel@tonic-gate 820Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGDEF) { 830Sstevel@tonic-gate struct sigaction sigdfl; 840Sstevel@tonic-gate 85*6515Sraf (void) memset(&sigdfl, 0, sizeof (sigdfl)); 860Sstevel@tonic-gate for (sig = 1; sig < NSIG; sig++) { 87*6515Sraf if (sigismember(&sap->sa_sigdefault, sig)) 880Sstevel@tonic-gate (void) __sigaction(sig, &sigdfl, NULL); 890Sstevel@tonic-gate } 900Sstevel@tonic-gate } 910Sstevel@tonic-gate 920Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_RESETIDS) { 93*6515Sraf if (setgid(getgid()) != 0 || setuid(getuid()) != 0) 943086Sraf return (errno); 950Sstevel@tonic-gate } 960Sstevel@tonic-gate 970Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETPGROUP) { 98*6515Sraf if (setpgid(0, sap->sa_pgroup) != 0) 993086Sraf return (errno); 1000Sstevel@tonic-gate } 1010Sstevel@tonic-gate 1020Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDULER) { 1036247Sraf if (setparam(P_LWPID, P_MYID, 1046247Sraf sap->sa_schedpolicy, sap->sa_priority) == -1) 1053086Sraf return (errno); 1060Sstevel@tonic-gate } else if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDPARAM) { 1076247Sraf if (setprio(P_LWPID, P_MYID, sap->sa_priority, NULL) == -1) 1083086Sraf return (errno); 1090Sstevel@tonic-gate } 1103086Sraf 1113086Sraf return (0); 1120Sstevel@tonic-gate } 1130Sstevel@tonic-gate 1143086Sraf static int 1150Sstevel@tonic-gate perform_file_actions(file_attr_t *fap) 1160Sstevel@tonic-gate { 1170Sstevel@tonic-gate file_attr_t *froot = fap; 1180Sstevel@tonic-gate int fd; 1190Sstevel@tonic-gate 1200Sstevel@tonic-gate do { 1210Sstevel@tonic-gate switch (fap->fa_type) { 1220Sstevel@tonic-gate case FA_OPEN: 123*6515Sraf fd = __open(fap->fa_path, 1245891Sraf fap->fa_oflag, fap->fa_mode); 1250Sstevel@tonic-gate if (fd < 0) 1263086Sraf return (errno); 1270Sstevel@tonic-gate if (fd != fap->fa_filedes) { 128*6515Sraf if (__fcntl(fd, F_DUP2FD, fap->fa_filedes) < 0) 1293086Sraf return (errno); 130*6515Sraf (void) __close(fd); 1310Sstevel@tonic-gate } 1320Sstevel@tonic-gate break; 1330Sstevel@tonic-gate case FA_CLOSE: 134*6515Sraf if (__close(fap->fa_filedes) == -1) 1353086Sraf return (errno); 1360Sstevel@tonic-gate break; 1370Sstevel@tonic-gate case FA_DUP2: 138*6515Sraf fd = __fcntl(fap->fa_filedes, F_DUP2FD, 1395891Sraf fap->fa_newfiledes); 1400Sstevel@tonic-gate if (fd < 0) 1413086Sraf return (errno); 1420Sstevel@tonic-gate break; 1430Sstevel@tonic-gate } 1440Sstevel@tonic-gate } while ((fap = fap->fa_next) != froot); 1453086Sraf 1463086Sraf return (0); 1473086Sraf } 1483086Sraf 1493235Sraf static int 1503235Sraf forkflags(spawn_attr_t *sap) 1513235Sraf { 1523235Sraf int flags = 0; 1533235Sraf 1543235Sraf if (sap != NULL) { 1553235Sraf if (sap->sa_psflags & POSIX_SPAWN_NOSIGCHLD_NP) 1563235Sraf flags |= FORK_NOSIGCHLD; 1573235Sraf if (sap->sa_psflags & POSIX_SPAWN_WAITPID_NP) 1583235Sraf flags |= FORK_WAITPID; 1593235Sraf } 1603235Sraf 1613235Sraf return (flags); 1623235Sraf } 1633235Sraf 1643086Sraf /* 1653086Sraf * set_error() / get_error() are used to guarantee that the local variable 1663086Sraf * 'error' is set correctly in memory on return from vfork() in the parent. 1673086Sraf */ 1683086Sraf 1693086Sraf static int 1703086Sraf set_error(int *errp, int err) 1713086Sraf { 1723086Sraf return (*errp = err); 1733086Sraf } 1743086Sraf 1753086Sraf static int 1763086Sraf get_error(int *errp) 1773086Sraf { 1783086Sraf return (*errp); 1790Sstevel@tonic-gate } 1800Sstevel@tonic-gate 1810Sstevel@tonic-gate /* 1820Sstevel@tonic-gate * For MT safety, do not invoke the dynamic linker after calling vfork(). 1830Sstevel@tonic-gate * If some other thread was in the dynamic linker when this thread's parent 1840Sstevel@tonic-gate * called vfork() then the dynamic linker's lock would still be held here 1850Sstevel@tonic-gate * (with a defunct owner) and we would deadlock ourself if we invoked it. 1860Sstevel@tonic-gate * 1870Sstevel@tonic-gate * Therefore, all of the functions we call here after returning from 1883235Sraf * _vforkx() in the child are not and must never be exported from libc 1890Sstevel@tonic-gate * as global symbols. To do so would risk invoking the dynamic linker. 1900Sstevel@tonic-gate */ 1910Sstevel@tonic-gate 1920Sstevel@tonic-gate #pragma weak posix_spawn = _posix_spawn 1930Sstevel@tonic-gate int 1940Sstevel@tonic-gate _posix_spawn( 1950Sstevel@tonic-gate pid_t *pidp, 1960Sstevel@tonic-gate const char *path, 1970Sstevel@tonic-gate const posix_spawn_file_actions_t *file_actions, 1980Sstevel@tonic-gate const posix_spawnattr_t *attrp, 1990Sstevel@tonic-gate char *const argv[], 2000Sstevel@tonic-gate char *const envp[]) 2010Sstevel@tonic-gate { 2020Sstevel@tonic-gate spawn_attr_t *sap = attrp? attrp->__spawn_attrp : NULL; 2030Sstevel@tonic-gate file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; 2043086Sraf int error; /* this will be set by the child */ 2050Sstevel@tonic-gate pid_t pid; 2060Sstevel@tonic-gate 2070Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 2080Sstevel@tonic-gate return (EINVAL); 2090Sstevel@tonic-gate 2103235Sraf switch (pid = _vforkx(forkflags(sap))) { 2110Sstevel@tonic-gate case 0: /* child */ 2120Sstevel@tonic-gate break; 2130Sstevel@tonic-gate case -1: /* parent, failure */ 2140Sstevel@tonic-gate return (errno); 2150Sstevel@tonic-gate default: /* parent, success */ 2163086Sraf /* 2173086Sraf * We don't get here until the child exec()s or exit()s 2183086Sraf */ 2193086Sraf if (pidp != NULL && get_error(&error) == 0) 2200Sstevel@tonic-gate *pidp = pid; 2213086Sraf return (get_error(&error)); 2220Sstevel@tonic-gate } 2230Sstevel@tonic-gate 2240Sstevel@tonic-gate if (sap != NULL) 2253086Sraf if (set_error(&error, perform_flag_actions(sap)) != 0) 226*6515Sraf _exit(_EVAPORATE); 2270Sstevel@tonic-gate 2280Sstevel@tonic-gate if (fap != NULL) 2293086Sraf if (set_error(&error, perform_file_actions(fap)) != 0) 230*6515Sraf _exit(_EVAPORATE); 2310Sstevel@tonic-gate 2323086Sraf (void) set_error(&error, 0); 233*6515Sraf (void) execve(path, argv, envp); 2343086Sraf (void) set_error(&error, errno); 235*6515Sraf _exit(_EVAPORATE); 2360Sstevel@tonic-gate return (0); /* not reached */ 2370Sstevel@tonic-gate } 2380Sstevel@tonic-gate 2390Sstevel@tonic-gate /* 2400Sstevel@tonic-gate * Much of posix_spawnp() blatently stolen from execvp() (port/gen/execvp.c). 2410Sstevel@tonic-gate */ 2420Sstevel@tonic-gate 2435891Sraf extern int libc__xpg4; 2440Sstevel@tonic-gate 2450Sstevel@tonic-gate static const char * 2460Sstevel@tonic-gate execat(const char *s1, const char *s2, char *si) 2470Sstevel@tonic-gate { 2480Sstevel@tonic-gate int cnt = PATH_MAX + 1; 2490Sstevel@tonic-gate char *s; 2500Sstevel@tonic-gate char c; 2510Sstevel@tonic-gate 2520Sstevel@tonic-gate for (s = si; (c = *s1) != '\0' && c != ':'; s1++) { 2530Sstevel@tonic-gate if (cnt > 0) { 2540Sstevel@tonic-gate *s++ = c; 2550Sstevel@tonic-gate cnt--; 2560Sstevel@tonic-gate } 2570Sstevel@tonic-gate } 2580Sstevel@tonic-gate if (si != s && cnt > 0) { 2590Sstevel@tonic-gate *s++ = '/'; 2600Sstevel@tonic-gate cnt--; 2610Sstevel@tonic-gate } 2620Sstevel@tonic-gate for (; (c = *s2) != '\0' && cnt > 0; s2++) { 2630Sstevel@tonic-gate *s++ = c; 2640Sstevel@tonic-gate cnt--; 2650Sstevel@tonic-gate } 2660Sstevel@tonic-gate *s = '\0'; 2670Sstevel@tonic-gate return (*s1? ++s1: NULL); 2680Sstevel@tonic-gate } 2690Sstevel@tonic-gate 2700Sstevel@tonic-gate #pragma weak posix_spawnp = _posix_spawnp 2710Sstevel@tonic-gate /* ARGSUSED */ 2720Sstevel@tonic-gate int 2730Sstevel@tonic-gate _posix_spawnp( 2740Sstevel@tonic-gate pid_t *pidp, 2750Sstevel@tonic-gate const char *file, 2760Sstevel@tonic-gate const posix_spawn_file_actions_t *file_actions, 2770Sstevel@tonic-gate const posix_spawnattr_t *attrp, 2780Sstevel@tonic-gate char *const argv[], 2790Sstevel@tonic-gate char *const envp[]) 2800Sstevel@tonic-gate { 2810Sstevel@tonic-gate spawn_attr_t *sap = attrp? attrp->__spawn_attrp : NULL; 2820Sstevel@tonic-gate file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; 2830Sstevel@tonic-gate const char *pathstr = (strchr(file, '/') == NULL)? getenv("PATH") : ""; 2845891Sraf int xpg4 = libc__xpg4; 2853086Sraf int error; /* this will be set by the child */ 2860Sstevel@tonic-gate char path[PATH_MAX+4]; 2870Sstevel@tonic-gate const char *cp; 2880Sstevel@tonic-gate pid_t pid; 2890Sstevel@tonic-gate char **newargs; 2900Sstevel@tonic-gate int argc; 2910Sstevel@tonic-gate int i; 2920Sstevel@tonic-gate static const char *sun_path = "/bin/sh"; 2930Sstevel@tonic-gate static const char *xpg4_path = "/usr/xpg4/bin/sh"; 2940Sstevel@tonic-gate static const char *shell = "sh"; 2950Sstevel@tonic-gate 2960Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 2970Sstevel@tonic-gate return (EINVAL); 2980Sstevel@tonic-gate 2993086Sraf if (*file == '\0') 3003086Sraf return (EACCES); 3013086Sraf 3020Sstevel@tonic-gate /* 3030Sstevel@tonic-gate * We may need to invoke the shell with a slightly modified 3040Sstevel@tonic-gate * argv[] array. To do this we need to preallocate the array. 3050Sstevel@tonic-gate * We must call alloca() before calling vfork() because doing 3060Sstevel@tonic-gate * it after vfork() (in the child) would corrupt the parent. 3070Sstevel@tonic-gate */ 3080Sstevel@tonic-gate for (argc = 0; argv[argc] != NULL; argc++) 3090Sstevel@tonic-gate continue; 3100Sstevel@tonic-gate newargs = alloca((argc + 2) * sizeof (char *)); 3110Sstevel@tonic-gate 3123235Sraf switch (pid = _vforkx(forkflags(sap))) { 3130Sstevel@tonic-gate case 0: /* child */ 3140Sstevel@tonic-gate break; 3150Sstevel@tonic-gate case -1: /* parent, failure */ 3160Sstevel@tonic-gate return (errno); 3170Sstevel@tonic-gate default: /* parent, success */ 3183086Sraf /* 3193086Sraf * We don't get here until the child exec()s or exit()s 3203086Sraf */ 3213086Sraf if (pidp != NULL && get_error(&error) == 0) 3220Sstevel@tonic-gate *pidp = pid; 3233086Sraf return (get_error(&error)); 3240Sstevel@tonic-gate } 3250Sstevel@tonic-gate 3260Sstevel@tonic-gate if (sap != NULL) 3273086Sraf if (set_error(&error, perform_flag_actions(sap)) != 0) 328*6515Sraf _exit(_EVAPORATE); 3290Sstevel@tonic-gate 3300Sstevel@tonic-gate if (fap != NULL) 3313086Sraf if (set_error(&error, perform_file_actions(fap)) != 0) 332*6515Sraf _exit(_EVAPORATE); 3330Sstevel@tonic-gate 3340Sstevel@tonic-gate if (pathstr == NULL) { 3350Sstevel@tonic-gate /* 3360Sstevel@tonic-gate * XPG4: pathstr is equivalent to _CS_PATH, except that 3370Sstevel@tonic-gate * :/usr/sbin is appended when root, and pathstr must end 3380Sstevel@tonic-gate * with a colon when not root. Keep these paths in sync 3390Sstevel@tonic-gate * with _CS_PATH in confstr.c. Note that pathstr must end 3400Sstevel@tonic-gate * with a colon when not root so that when file doesn't 3410Sstevel@tonic-gate * contain '/', the last call to execat() will result in an 3420Sstevel@tonic-gate * attempt to execv file from the current directory. 3430Sstevel@tonic-gate */ 344*6515Sraf if (geteuid() == 0 || getuid() == 0) { 3450Sstevel@tonic-gate if (!xpg4) 3460Sstevel@tonic-gate pathstr = "/usr/sbin:/usr/ccs/bin:/usr/bin"; 3470Sstevel@tonic-gate else 3480Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 3490Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:/usr/sbin"; 3500Sstevel@tonic-gate } else { 3510Sstevel@tonic-gate if (!xpg4) 3520Sstevel@tonic-gate pathstr = "/usr/ccs/bin:/usr/bin:"; 3530Sstevel@tonic-gate else 3540Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 3550Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:"; 3560Sstevel@tonic-gate } 3570Sstevel@tonic-gate } 3580Sstevel@tonic-gate 3590Sstevel@tonic-gate cp = pathstr; 3600Sstevel@tonic-gate do { 3610Sstevel@tonic-gate cp = execat(cp, file, path); 3620Sstevel@tonic-gate /* 3630Sstevel@tonic-gate * 4025035 and 4038378 3640Sstevel@tonic-gate * if a filename begins with a "-" prepend "./" so that 3650Sstevel@tonic-gate * the shell can't interpret it as an option 3660Sstevel@tonic-gate */ 3670Sstevel@tonic-gate if (*path == '-') { 3680Sstevel@tonic-gate char *s; 3690Sstevel@tonic-gate 3700Sstevel@tonic-gate for (s = path; *s != '\0'; s++) 3710Sstevel@tonic-gate continue; 3720Sstevel@tonic-gate for (; s >= path; s--) 3730Sstevel@tonic-gate *(s + 2) = *s; 3740Sstevel@tonic-gate path[0] = '.'; 3750Sstevel@tonic-gate path[1] = '/'; 3760Sstevel@tonic-gate } 3773086Sraf (void) set_error(&error, 0); 378*6515Sraf (void) execve(path, argv, envp); 3793086Sraf if (set_error(&error, errno) == ENOEXEC) { 3800Sstevel@tonic-gate newargs[0] = (char *)shell; 3810Sstevel@tonic-gate newargs[1] = path; 3820Sstevel@tonic-gate for (i = 1; i <= argc; i++) 3830Sstevel@tonic-gate newargs[i + 1] = argv[i]; 3843086Sraf (void) set_error(&error, 0); 385*6515Sraf (void) execve(xpg4? xpg4_path : sun_path, 3863086Sraf newargs, envp); 3873086Sraf (void) set_error(&error, errno); 388*6515Sraf _exit(_EVAPORATE); 3890Sstevel@tonic-gate } 3900Sstevel@tonic-gate } while (cp); 391*6515Sraf _exit(_EVAPORATE); 3920Sstevel@tonic-gate return (0); /* not reached */ 3930Sstevel@tonic-gate } 3940Sstevel@tonic-gate 3950Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_init = \ 3960Sstevel@tonic-gate _posix_spawn_file_actions_init 3970Sstevel@tonic-gate int 3980Sstevel@tonic-gate _posix_spawn_file_actions_init( 3990Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 4000Sstevel@tonic-gate { 4010Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4020Sstevel@tonic-gate return (0); 4030Sstevel@tonic-gate } 4040Sstevel@tonic-gate 4050Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_destroy = \ 4060Sstevel@tonic-gate _posix_spawn_file_actions_destroy 4070Sstevel@tonic-gate int 4080Sstevel@tonic-gate _posix_spawn_file_actions_destroy( 4090Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 4100Sstevel@tonic-gate { 4110Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4120Sstevel@tonic-gate file_attr_t *fap; 4130Sstevel@tonic-gate file_attr_t *next; 4140Sstevel@tonic-gate 4150Sstevel@tonic-gate if ((fap = froot) != NULL) { 4160Sstevel@tonic-gate do { 4170Sstevel@tonic-gate next = fap->fa_next; 4180Sstevel@tonic-gate if (fap-> fa_type == FA_OPEN) 4190Sstevel@tonic-gate lfree(fap->fa_path, fap->fa_pathsize); 4200Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 4210Sstevel@tonic-gate } while ((fap = next) != froot); 4220Sstevel@tonic-gate } 4230Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4240Sstevel@tonic-gate return (0); 4250Sstevel@tonic-gate } 4260Sstevel@tonic-gate 4270Sstevel@tonic-gate static void 4280Sstevel@tonic-gate add_file_attr(posix_spawn_file_actions_t *file_actions, file_attr_t *fap) 4290Sstevel@tonic-gate { 4300Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4310Sstevel@tonic-gate 4320Sstevel@tonic-gate if (froot == NULL) { 4330Sstevel@tonic-gate fap->fa_next = fap->fa_prev = fap; 4340Sstevel@tonic-gate file_actions->__file_attrp = fap; 4350Sstevel@tonic-gate } else { 4360Sstevel@tonic-gate fap->fa_next = froot; 4370Sstevel@tonic-gate fap->fa_prev = froot->fa_prev; 4380Sstevel@tonic-gate froot->fa_prev->fa_next = fap; 4390Sstevel@tonic-gate froot->fa_prev = fap; 4400Sstevel@tonic-gate } 4410Sstevel@tonic-gate } 4420Sstevel@tonic-gate 4430Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_addopen = \ 4440Sstevel@tonic-gate _posix_spawn_file_actions_addopen 4450Sstevel@tonic-gate int 4460Sstevel@tonic-gate _posix_spawn_file_actions_addopen( 4470Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 4480Sstevel@tonic-gate int filedes, 4490Sstevel@tonic-gate const char *path, 4500Sstevel@tonic-gate int oflag, 4510Sstevel@tonic-gate mode_t mode) 4520Sstevel@tonic-gate { 4530Sstevel@tonic-gate file_attr_t *fap; 4540Sstevel@tonic-gate 4550Sstevel@tonic-gate if (filedes < 0) 4560Sstevel@tonic-gate return (EBADF); 4570Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 4580Sstevel@tonic-gate return (ENOMEM); 4590Sstevel@tonic-gate 4600Sstevel@tonic-gate fap->fa_pathsize = strlen(path) + 1; 4610Sstevel@tonic-gate if ((fap->fa_path = lmalloc(fap->fa_pathsize)) == NULL) { 4620Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 4630Sstevel@tonic-gate return (ENOMEM); 4640Sstevel@tonic-gate } 4650Sstevel@tonic-gate (void) strcpy(fap->fa_path, path); 4660Sstevel@tonic-gate 4670Sstevel@tonic-gate fap->fa_type = FA_OPEN; 4680Sstevel@tonic-gate fap->fa_oflag = oflag; 4690Sstevel@tonic-gate fap->fa_mode = mode; 4700Sstevel@tonic-gate fap->fa_filedes = filedes; 4710Sstevel@tonic-gate add_file_attr(file_actions, fap); 4720Sstevel@tonic-gate 4730Sstevel@tonic-gate return (0); 4740Sstevel@tonic-gate } 4750Sstevel@tonic-gate 4760Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_addclose = \ 4770Sstevel@tonic-gate _posix_spawn_file_actions_addclose 4780Sstevel@tonic-gate int 4790Sstevel@tonic-gate _posix_spawn_file_actions_addclose( 4800Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 4810Sstevel@tonic-gate int filedes) 4820Sstevel@tonic-gate { 4830Sstevel@tonic-gate file_attr_t *fap; 4840Sstevel@tonic-gate 4850Sstevel@tonic-gate if (filedes < 0) 4860Sstevel@tonic-gate return (EBADF); 4870Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 4880Sstevel@tonic-gate return (ENOMEM); 4890Sstevel@tonic-gate 4900Sstevel@tonic-gate fap->fa_type = FA_CLOSE; 4910Sstevel@tonic-gate fap->fa_filedes = filedes; 4920Sstevel@tonic-gate add_file_attr(file_actions, fap); 4930Sstevel@tonic-gate 4940Sstevel@tonic-gate return (0); 4950Sstevel@tonic-gate } 4960Sstevel@tonic-gate 4970Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_adddup2 = \ 4980Sstevel@tonic-gate _posix_spawn_file_actions_adddup2 4990Sstevel@tonic-gate int 5000Sstevel@tonic-gate _posix_spawn_file_actions_adddup2( 5010Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 5020Sstevel@tonic-gate int filedes, 5030Sstevel@tonic-gate int newfiledes) 5040Sstevel@tonic-gate { 5050Sstevel@tonic-gate file_attr_t *fap; 5060Sstevel@tonic-gate 5070Sstevel@tonic-gate if (filedes < 0 || newfiledes < 0) 5080Sstevel@tonic-gate return (EBADF); 5090Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 5100Sstevel@tonic-gate return (ENOMEM); 5110Sstevel@tonic-gate 5120Sstevel@tonic-gate fap->fa_type = FA_DUP2; 5130Sstevel@tonic-gate fap->fa_filedes = filedes; 5140Sstevel@tonic-gate fap->fa_newfiledes = newfiledes; 5150Sstevel@tonic-gate add_file_attr(file_actions, fap); 5160Sstevel@tonic-gate 5170Sstevel@tonic-gate return (0); 5180Sstevel@tonic-gate } 5190Sstevel@tonic-gate 5200Sstevel@tonic-gate #pragma weak posix_spawnattr_init = \ 5210Sstevel@tonic-gate _posix_spawnattr_init 5220Sstevel@tonic-gate int 5230Sstevel@tonic-gate _posix_spawnattr_init( 5240Sstevel@tonic-gate posix_spawnattr_t *attr) 5250Sstevel@tonic-gate { 5263235Sraf if ((attr->__spawn_attrp = lmalloc(sizeof (posix_spawnattr_t))) == NULL) 5270Sstevel@tonic-gate return (ENOMEM); 5280Sstevel@tonic-gate /* 5290Sstevel@tonic-gate * Add default stuff here? 5300Sstevel@tonic-gate */ 5310Sstevel@tonic-gate return (0); 5320Sstevel@tonic-gate } 5330Sstevel@tonic-gate 5340Sstevel@tonic-gate #pragma weak posix_spawnattr_destroy = \ 5350Sstevel@tonic-gate _posix_spawnattr_destroy 5360Sstevel@tonic-gate int 5370Sstevel@tonic-gate _posix_spawnattr_destroy( 5380Sstevel@tonic-gate posix_spawnattr_t *attr) 5390Sstevel@tonic-gate { 5400Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5410Sstevel@tonic-gate 5420Sstevel@tonic-gate if (sap == NULL) 5430Sstevel@tonic-gate return (EINVAL); 5440Sstevel@tonic-gate 5450Sstevel@tonic-gate /* 5460Sstevel@tonic-gate * deallocate stuff here? 5470Sstevel@tonic-gate */ 5480Sstevel@tonic-gate lfree(sap, sizeof (*sap)); 5490Sstevel@tonic-gate attr->__spawn_attrp = NULL; 5500Sstevel@tonic-gate return (0); 5510Sstevel@tonic-gate } 5520Sstevel@tonic-gate 5530Sstevel@tonic-gate #pragma weak posix_spawnattr_setflags = \ 5540Sstevel@tonic-gate _posix_spawnattr_setflags 5550Sstevel@tonic-gate int 5560Sstevel@tonic-gate _posix_spawnattr_setflags( 5570Sstevel@tonic-gate posix_spawnattr_t *attr, 5580Sstevel@tonic-gate short flags) 5590Sstevel@tonic-gate { 5600Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5610Sstevel@tonic-gate 5620Sstevel@tonic-gate if (sap == NULL || 5630Sstevel@tonic-gate (flags & ~ALL_POSIX_SPAWN_FLAGS)) 5640Sstevel@tonic-gate return (EINVAL); 5650Sstevel@tonic-gate 5660Sstevel@tonic-gate sap->sa_psflags = flags; 5670Sstevel@tonic-gate return (0); 5680Sstevel@tonic-gate } 5690Sstevel@tonic-gate 5700Sstevel@tonic-gate #pragma weak posix_spawnattr_getflags = \ 5710Sstevel@tonic-gate _posix_spawnattr_getflags 5720Sstevel@tonic-gate int 5730Sstevel@tonic-gate _posix_spawnattr_getflags( 5740Sstevel@tonic-gate const posix_spawnattr_t *attr, 5750Sstevel@tonic-gate short *flags) 5760Sstevel@tonic-gate { 5770Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5780Sstevel@tonic-gate 5790Sstevel@tonic-gate if (sap == NULL) 5800Sstevel@tonic-gate return (EINVAL); 5810Sstevel@tonic-gate 5820Sstevel@tonic-gate *flags = sap->sa_psflags; 5830Sstevel@tonic-gate return (0); 5840Sstevel@tonic-gate } 5850Sstevel@tonic-gate 5860Sstevel@tonic-gate #pragma weak posix_spawnattr_setpgroup = \ 5870Sstevel@tonic-gate _posix_spawnattr_setpgroup 5880Sstevel@tonic-gate int 5890Sstevel@tonic-gate _posix_spawnattr_setpgroup( 5900Sstevel@tonic-gate posix_spawnattr_t *attr, 5910Sstevel@tonic-gate pid_t pgroup) 5920Sstevel@tonic-gate { 5930Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5940Sstevel@tonic-gate 5950Sstevel@tonic-gate if (sap == NULL) 5960Sstevel@tonic-gate return (EINVAL); 5970Sstevel@tonic-gate 5980Sstevel@tonic-gate sap->sa_pgroup = pgroup; 5990Sstevel@tonic-gate return (0); 6000Sstevel@tonic-gate } 6010Sstevel@tonic-gate 6020Sstevel@tonic-gate #pragma weak posix_spawnattr_getpgroup = \ 6030Sstevel@tonic-gate _posix_spawnattr_getpgroup 6040Sstevel@tonic-gate int 6050Sstevel@tonic-gate _posix_spawnattr_getpgroup( 6060Sstevel@tonic-gate const posix_spawnattr_t *attr, 6070Sstevel@tonic-gate pid_t *pgroup) 6080Sstevel@tonic-gate { 6090Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6100Sstevel@tonic-gate 6110Sstevel@tonic-gate if (sap == NULL) 6120Sstevel@tonic-gate return (EINVAL); 6130Sstevel@tonic-gate 6140Sstevel@tonic-gate *pgroup = sap->sa_pgroup; 6150Sstevel@tonic-gate return (0); 6160Sstevel@tonic-gate } 6170Sstevel@tonic-gate 6180Sstevel@tonic-gate #pragma weak posix_spawnattr_setschedparam = \ 6190Sstevel@tonic-gate _posix_spawnattr_setschedparam 6200Sstevel@tonic-gate int 6210Sstevel@tonic-gate _posix_spawnattr_setschedparam( 6220Sstevel@tonic-gate posix_spawnattr_t *attr, 6230Sstevel@tonic-gate const struct sched_param *schedparam) 6240Sstevel@tonic-gate { 6250Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6260Sstevel@tonic-gate 6270Sstevel@tonic-gate if (sap == NULL) 6280Sstevel@tonic-gate return (EINVAL); 6290Sstevel@tonic-gate 6300Sstevel@tonic-gate /* 6310Sstevel@tonic-gate * Check validity? 6320Sstevel@tonic-gate */ 6330Sstevel@tonic-gate sap->sa_priority = schedparam->sched_priority; 6340Sstevel@tonic-gate return (0); 6350Sstevel@tonic-gate } 6360Sstevel@tonic-gate 6370Sstevel@tonic-gate #pragma weak posix_spawnattr_getschedparam = \ 6380Sstevel@tonic-gate _posix_spawnattr_getschedparam 6390Sstevel@tonic-gate int 6400Sstevel@tonic-gate _posix_spawnattr_getschedparam( 6410Sstevel@tonic-gate const posix_spawnattr_t *attr, 6420Sstevel@tonic-gate struct sched_param *schedparam) 6430Sstevel@tonic-gate { 6440Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6450Sstevel@tonic-gate 6460Sstevel@tonic-gate if (sap == NULL) 6470Sstevel@tonic-gate return (EINVAL); 6480Sstevel@tonic-gate 6490Sstevel@tonic-gate schedparam->sched_priority = sap->sa_priority; 6500Sstevel@tonic-gate return (0); 6510Sstevel@tonic-gate } 6520Sstevel@tonic-gate 6530Sstevel@tonic-gate #pragma weak posix_spawnattr_setschedpolicy = \ 6540Sstevel@tonic-gate _posix_spawnattr_setschedpolicy 6550Sstevel@tonic-gate int 6560Sstevel@tonic-gate _posix_spawnattr_setschedpolicy( 6570Sstevel@tonic-gate posix_spawnattr_t *attr, 6580Sstevel@tonic-gate int schedpolicy) 6590Sstevel@tonic-gate { 6600Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6610Sstevel@tonic-gate 6626247Sraf if (sap == NULL || schedpolicy == SCHED_SYS) 6630Sstevel@tonic-gate return (EINVAL); 6640Sstevel@tonic-gate 6656247Sraf /* 6666247Sraf * Cache the policy information for later use 6676247Sraf * by the vfork() child of posix_spawn(). 6686247Sraf */ 6696247Sraf if (get_info_by_policy(schedpolicy) == NULL) 6706247Sraf return (errno); 6710Sstevel@tonic-gate 6720Sstevel@tonic-gate sap->sa_schedpolicy = schedpolicy; 6730Sstevel@tonic-gate return (0); 6740Sstevel@tonic-gate } 6750Sstevel@tonic-gate 6760Sstevel@tonic-gate #pragma weak posix_spawnattr_getschedpolicy = \ 6770Sstevel@tonic-gate _posix_spawnattr_getschedpolicy 6780Sstevel@tonic-gate int 6790Sstevel@tonic-gate _posix_spawnattr_getschedpolicy( 6800Sstevel@tonic-gate const posix_spawnattr_t *attr, 6810Sstevel@tonic-gate int *schedpolicy) 6820Sstevel@tonic-gate { 6830Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6840Sstevel@tonic-gate 6850Sstevel@tonic-gate if (sap == NULL) 6860Sstevel@tonic-gate return (EINVAL); 6870Sstevel@tonic-gate 6880Sstevel@tonic-gate *schedpolicy = sap->sa_schedpolicy; 6890Sstevel@tonic-gate return (0); 6900Sstevel@tonic-gate } 6910Sstevel@tonic-gate 6920Sstevel@tonic-gate #pragma weak posix_spawnattr_setsigdefault = \ 6930Sstevel@tonic-gate _posix_spawnattr_setsigdefault 6940Sstevel@tonic-gate int 6950Sstevel@tonic-gate _posix_spawnattr_setsigdefault( 6960Sstevel@tonic-gate posix_spawnattr_t *attr, 6970Sstevel@tonic-gate const sigset_t *sigdefault) 6980Sstevel@tonic-gate { 6990Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7000Sstevel@tonic-gate 7010Sstevel@tonic-gate if (sap == NULL) 7020Sstevel@tonic-gate return (EINVAL); 7030Sstevel@tonic-gate 7040Sstevel@tonic-gate sap->sa_sigdefault = *sigdefault; 7050Sstevel@tonic-gate return (0); 7060Sstevel@tonic-gate } 7070Sstevel@tonic-gate 7080Sstevel@tonic-gate #pragma weak posix_spawnattr_getsigdefault = \ 7090Sstevel@tonic-gate _posix_spawnattr_getsigdefault 7100Sstevel@tonic-gate int 7110Sstevel@tonic-gate _posix_spawnattr_getsigdefault( 7120Sstevel@tonic-gate const posix_spawnattr_t *attr, 7130Sstevel@tonic-gate sigset_t *sigdefault) 7140Sstevel@tonic-gate { 7150Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7160Sstevel@tonic-gate 7170Sstevel@tonic-gate if (sap == NULL) 7180Sstevel@tonic-gate return (EINVAL); 7190Sstevel@tonic-gate 7200Sstevel@tonic-gate *sigdefault = sap->sa_sigdefault; 7210Sstevel@tonic-gate return (0); 7220Sstevel@tonic-gate } 7230Sstevel@tonic-gate 7240Sstevel@tonic-gate #pragma weak posix_spawnattr_setsigmask = \ 7250Sstevel@tonic-gate _posix_spawnattr_setsigmask 7260Sstevel@tonic-gate int 7270Sstevel@tonic-gate _posix_spawnattr_setsigmask( 7280Sstevel@tonic-gate posix_spawnattr_t *attr, 7290Sstevel@tonic-gate const sigset_t *sigmask) 7300Sstevel@tonic-gate { 7310Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7320Sstevel@tonic-gate 7330Sstevel@tonic-gate if (sap == NULL) 7340Sstevel@tonic-gate return (EINVAL); 7350Sstevel@tonic-gate 7360Sstevel@tonic-gate sap->sa_sigmask = *sigmask; 7370Sstevel@tonic-gate return (0); 7380Sstevel@tonic-gate } 7390Sstevel@tonic-gate 7400Sstevel@tonic-gate #pragma weak posix_spawnattr_getsigmask = \ 7410Sstevel@tonic-gate _posix_spawnattr_getsigmask 7420Sstevel@tonic-gate int 7430Sstevel@tonic-gate _posix_spawnattr_getsigmask( 7440Sstevel@tonic-gate const posix_spawnattr_t *attr, 7450Sstevel@tonic-gate sigset_t *sigmask) 7460Sstevel@tonic-gate { 7470Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7480Sstevel@tonic-gate 7490Sstevel@tonic-gate if (sap == NULL) 7500Sstevel@tonic-gate return (EINVAL); 7510Sstevel@tonic-gate 7520Sstevel@tonic-gate *sigmask = sap->sa_sigmask; 7530Sstevel@tonic-gate return (0); 7540Sstevel@tonic-gate } 755