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 { 48*6247Sraf int sa_psflags; /* POSIX_SPAWN_* flags */ 49*6247Sraf 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 void *_private_memset(void *, int, size_t); 710Sstevel@tonic-gate extern int __lwp_sigmask(int, const sigset_t *, sigset_t *); 720Sstevel@tonic-gate extern int __sigaction(int, const struct sigaction *, struct sigaction *); 730Sstevel@tonic-gate extern int _private_close(int); 740Sstevel@tonic-gate extern int _private_execve(const char *, char *const *, char *const *); 750Sstevel@tonic-gate extern int _private_fcntl(int, int, intptr_t); 760Sstevel@tonic-gate extern int _private_setgid(gid_t); 770Sstevel@tonic-gate extern int _private_setpgid(pid_t, pid_t); 780Sstevel@tonic-gate extern int _private_setuid(uid_t); 790Sstevel@tonic-gate extern int _private_sigismember(sigset_t *, int); 800Sstevel@tonic-gate extern gid_t _private_getgid(void); 810Sstevel@tonic-gate extern uid_t _private_getuid(void); 820Sstevel@tonic-gate extern uid_t _private_geteuid(void); 830Sstevel@tonic-gate extern void _private_exit(int); 840Sstevel@tonic-gate 853086Sraf static int 860Sstevel@tonic-gate perform_flag_actions(spawn_attr_t *sap) 870Sstevel@tonic-gate { 880Sstevel@tonic-gate int sig; 890Sstevel@tonic-gate 900Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGMASK) { 910Sstevel@tonic-gate (void) __lwp_sigmask(SIG_SETMASK, &sap->sa_sigmask, NULL); 920Sstevel@tonic-gate } 930Sstevel@tonic-gate 940Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGDEF) { 950Sstevel@tonic-gate struct sigaction sigdfl; 960Sstevel@tonic-gate 970Sstevel@tonic-gate (void) _private_memset(&sigdfl, 0, sizeof (sigdfl)); 980Sstevel@tonic-gate for (sig = 1; sig < NSIG; sig++) { 990Sstevel@tonic-gate if (_private_sigismember(&sap->sa_sigdefault, sig)) 1000Sstevel@tonic-gate (void) __sigaction(sig, &sigdfl, NULL); 1010Sstevel@tonic-gate } 1020Sstevel@tonic-gate } 1030Sstevel@tonic-gate 1040Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_RESETIDS) { 1050Sstevel@tonic-gate if (_private_setgid(_private_getgid()) != 0 || 1060Sstevel@tonic-gate _private_setuid(_private_getuid()) != 0) 1073086Sraf return (errno); 1080Sstevel@tonic-gate } 1090Sstevel@tonic-gate 1100Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETPGROUP) { 1110Sstevel@tonic-gate if (_private_setpgid(0, sap->sa_pgroup) != 0) 1123086Sraf return (errno); 1130Sstevel@tonic-gate } 1140Sstevel@tonic-gate 1150Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDULER) { 116*6247Sraf if (setparam(P_LWPID, P_MYID, 117*6247Sraf sap->sa_schedpolicy, sap->sa_priority) == -1) 1183086Sraf return (errno); 1190Sstevel@tonic-gate } else if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDPARAM) { 120*6247Sraf if (setprio(P_LWPID, P_MYID, sap->sa_priority, NULL) == -1) 1213086Sraf return (errno); 1220Sstevel@tonic-gate } 1233086Sraf 1243086Sraf return (0); 1250Sstevel@tonic-gate } 1260Sstevel@tonic-gate 1273086Sraf static int 1280Sstevel@tonic-gate perform_file_actions(file_attr_t *fap) 1290Sstevel@tonic-gate { 1300Sstevel@tonic-gate file_attr_t *froot = fap; 1310Sstevel@tonic-gate int fd; 1320Sstevel@tonic-gate 1330Sstevel@tonic-gate do { 1340Sstevel@tonic-gate switch (fap->fa_type) { 1350Sstevel@tonic-gate case FA_OPEN: 1365891Sraf fd = _private_open(fap->fa_path, 1375891Sraf fap->fa_oflag, fap->fa_mode); 1380Sstevel@tonic-gate if (fd < 0) 1393086Sraf return (errno); 1400Sstevel@tonic-gate if (fd != fap->fa_filedes) { 1410Sstevel@tonic-gate if (_private_fcntl(fd, F_DUP2FD, 1420Sstevel@tonic-gate fap->fa_filedes) < 0) 1433086Sraf return (errno); 1440Sstevel@tonic-gate (void) _private_close(fd); 1450Sstevel@tonic-gate } 1460Sstevel@tonic-gate break; 1470Sstevel@tonic-gate case FA_CLOSE: 1480Sstevel@tonic-gate if (_private_close(fap->fa_filedes) == -1) 1493086Sraf return (errno); 1500Sstevel@tonic-gate break; 1510Sstevel@tonic-gate case FA_DUP2: 1520Sstevel@tonic-gate fd = _private_fcntl(fap->fa_filedes, F_DUP2FD, 1535891Sraf fap->fa_newfiledes); 1540Sstevel@tonic-gate if (fd < 0) 1553086Sraf return (errno); 1560Sstevel@tonic-gate break; 1570Sstevel@tonic-gate } 1580Sstevel@tonic-gate } while ((fap = fap->fa_next) != froot); 1593086Sraf 1603086Sraf return (0); 1613086Sraf } 1623086Sraf 1633235Sraf static int 1643235Sraf forkflags(spawn_attr_t *sap) 1653235Sraf { 1663235Sraf int flags = 0; 1673235Sraf 1683235Sraf if (sap != NULL) { 1693235Sraf if (sap->sa_psflags & POSIX_SPAWN_NOSIGCHLD_NP) 1703235Sraf flags |= FORK_NOSIGCHLD; 1713235Sraf if (sap->sa_psflags & POSIX_SPAWN_WAITPID_NP) 1723235Sraf flags |= FORK_WAITPID; 1733235Sraf } 1743235Sraf 1753235Sraf return (flags); 1763235Sraf } 1773235Sraf 1783086Sraf /* 1793086Sraf * set_error() / get_error() are used to guarantee that the local variable 1803086Sraf * 'error' is set correctly in memory on return from vfork() in the parent. 1813086Sraf */ 1823086Sraf 1833086Sraf static int 1843086Sraf set_error(int *errp, int err) 1853086Sraf { 1863086Sraf return (*errp = err); 1873086Sraf } 1883086Sraf 1893086Sraf static int 1903086Sraf get_error(int *errp) 1913086Sraf { 1923086Sraf return (*errp); 1930Sstevel@tonic-gate } 1940Sstevel@tonic-gate 1950Sstevel@tonic-gate /* 1960Sstevel@tonic-gate * For MT safety, do not invoke the dynamic linker after calling vfork(). 1970Sstevel@tonic-gate * If some other thread was in the dynamic linker when this thread's parent 1980Sstevel@tonic-gate * called vfork() then the dynamic linker's lock would still be held here 1990Sstevel@tonic-gate * (with a defunct owner) and we would deadlock ourself if we invoked it. 2000Sstevel@tonic-gate * 2010Sstevel@tonic-gate * Therefore, all of the functions we call here after returning from 2023235Sraf * _vforkx() in the child are not and must never be exported from libc 2030Sstevel@tonic-gate * as global symbols. To do so would risk invoking the dynamic linker. 2040Sstevel@tonic-gate */ 2050Sstevel@tonic-gate 2060Sstevel@tonic-gate #pragma weak posix_spawn = _posix_spawn 2070Sstevel@tonic-gate int 2080Sstevel@tonic-gate _posix_spawn( 2090Sstevel@tonic-gate pid_t *pidp, 2100Sstevel@tonic-gate const char *path, 2110Sstevel@tonic-gate const posix_spawn_file_actions_t *file_actions, 2120Sstevel@tonic-gate const posix_spawnattr_t *attrp, 2130Sstevel@tonic-gate char *const argv[], 2140Sstevel@tonic-gate char *const envp[]) 2150Sstevel@tonic-gate { 2160Sstevel@tonic-gate spawn_attr_t *sap = attrp? attrp->__spawn_attrp : NULL; 2170Sstevel@tonic-gate file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; 2183086Sraf int error; /* this will be set by the child */ 2190Sstevel@tonic-gate pid_t pid; 2200Sstevel@tonic-gate 2210Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 2220Sstevel@tonic-gate return (EINVAL); 2230Sstevel@tonic-gate 2243235Sraf switch (pid = _vforkx(forkflags(sap))) { 2250Sstevel@tonic-gate case 0: /* child */ 2260Sstevel@tonic-gate break; 2270Sstevel@tonic-gate case -1: /* parent, failure */ 2280Sstevel@tonic-gate return (errno); 2290Sstevel@tonic-gate default: /* parent, success */ 2303086Sraf /* 2313086Sraf * We don't get here until the child exec()s or exit()s 2323086Sraf */ 2333086Sraf if (pidp != NULL && get_error(&error) == 0) 2340Sstevel@tonic-gate *pidp = pid; 2353086Sraf return (get_error(&error)); 2360Sstevel@tonic-gate } 2370Sstevel@tonic-gate 2380Sstevel@tonic-gate if (sap != NULL) 2393086Sraf if (set_error(&error, perform_flag_actions(sap)) != 0) 2403086Sraf _private_exit(_EVAPORATE); 2410Sstevel@tonic-gate 2420Sstevel@tonic-gate if (fap != NULL) 2433086Sraf if (set_error(&error, perform_file_actions(fap)) != 0) 2443086Sraf _private_exit(_EVAPORATE); 2450Sstevel@tonic-gate 2463086Sraf (void) set_error(&error, 0); 2470Sstevel@tonic-gate (void) _private_execve(path, argv, envp); 2483086Sraf (void) set_error(&error, errno); 2493086Sraf _private_exit(_EVAPORATE); 2500Sstevel@tonic-gate return (0); /* not reached */ 2510Sstevel@tonic-gate } 2520Sstevel@tonic-gate 2530Sstevel@tonic-gate /* 2540Sstevel@tonic-gate * Much of posix_spawnp() blatently stolen from execvp() (port/gen/execvp.c). 2550Sstevel@tonic-gate */ 2560Sstevel@tonic-gate 2575891Sraf extern int libc__xpg4; 2580Sstevel@tonic-gate 2590Sstevel@tonic-gate static const char * 2600Sstevel@tonic-gate execat(const char *s1, const char *s2, char *si) 2610Sstevel@tonic-gate { 2620Sstevel@tonic-gate int cnt = PATH_MAX + 1; 2630Sstevel@tonic-gate char *s; 2640Sstevel@tonic-gate char c; 2650Sstevel@tonic-gate 2660Sstevel@tonic-gate for (s = si; (c = *s1) != '\0' && c != ':'; s1++) { 2670Sstevel@tonic-gate if (cnt > 0) { 2680Sstevel@tonic-gate *s++ = c; 2690Sstevel@tonic-gate cnt--; 2700Sstevel@tonic-gate } 2710Sstevel@tonic-gate } 2720Sstevel@tonic-gate if (si != s && cnt > 0) { 2730Sstevel@tonic-gate *s++ = '/'; 2740Sstevel@tonic-gate cnt--; 2750Sstevel@tonic-gate } 2760Sstevel@tonic-gate for (; (c = *s2) != '\0' && cnt > 0; s2++) { 2770Sstevel@tonic-gate *s++ = c; 2780Sstevel@tonic-gate cnt--; 2790Sstevel@tonic-gate } 2800Sstevel@tonic-gate *s = '\0'; 2810Sstevel@tonic-gate return (*s1? ++s1: NULL); 2820Sstevel@tonic-gate } 2830Sstevel@tonic-gate 2840Sstevel@tonic-gate #pragma weak posix_spawnp = _posix_spawnp 2850Sstevel@tonic-gate /* ARGSUSED */ 2860Sstevel@tonic-gate int 2870Sstevel@tonic-gate _posix_spawnp( 2880Sstevel@tonic-gate pid_t *pidp, 2890Sstevel@tonic-gate const char *file, 2900Sstevel@tonic-gate const posix_spawn_file_actions_t *file_actions, 2910Sstevel@tonic-gate const posix_spawnattr_t *attrp, 2920Sstevel@tonic-gate char *const argv[], 2930Sstevel@tonic-gate char *const envp[]) 2940Sstevel@tonic-gate { 2950Sstevel@tonic-gate spawn_attr_t *sap = attrp? attrp->__spawn_attrp : NULL; 2960Sstevel@tonic-gate file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; 2970Sstevel@tonic-gate const char *pathstr = (strchr(file, '/') == NULL)? getenv("PATH") : ""; 2985891Sraf int xpg4 = libc__xpg4; 2993086Sraf int error; /* this will be set by the child */ 3000Sstevel@tonic-gate char path[PATH_MAX+4]; 3010Sstevel@tonic-gate const char *cp; 3020Sstevel@tonic-gate pid_t pid; 3030Sstevel@tonic-gate char **newargs; 3040Sstevel@tonic-gate int argc; 3050Sstevel@tonic-gate int i; 3060Sstevel@tonic-gate static const char *sun_path = "/bin/sh"; 3070Sstevel@tonic-gate static const char *xpg4_path = "/usr/xpg4/bin/sh"; 3080Sstevel@tonic-gate static const char *shell = "sh"; 3090Sstevel@tonic-gate 3100Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 3110Sstevel@tonic-gate return (EINVAL); 3120Sstevel@tonic-gate 3133086Sraf if (*file == '\0') 3143086Sraf return (EACCES); 3153086Sraf 3160Sstevel@tonic-gate /* 3170Sstevel@tonic-gate * We may need to invoke the shell with a slightly modified 3180Sstevel@tonic-gate * argv[] array. To do this we need to preallocate the array. 3190Sstevel@tonic-gate * We must call alloca() before calling vfork() because doing 3200Sstevel@tonic-gate * it after vfork() (in the child) would corrupt the parent. 3210Sstevel@tonic-gate */ 3220Sstevel@tonic-gate for (argc = 0; argv[argc] != NULL; argc++) 3230Sstevel@tonic-gate continue; 3240Sstevel@tonic-gate newargs = alloca((argc + 2) * sizeof (char *)); 3250Sstevel@tonic-gate 3263235Sraf switch (pid = _vforkx(forkflags(sap))) { 3270Sstevel@tonic-gate case 0: /* child */ 3280Sstevel@tonic-gate break; 3290Sstevel@tonic-gate case -1: /* parent, failure */ 3300Sstevel@tonic-gate return (errno); 3310Sstevel@tonic-gate default: /* parent, success */ 3323086Sraf /* 3333086Sraf * We don't get here until the child exec()s or exit()s 3343086Sraf */ 3353086Sraf if (pidp != NULL && get_error(&error) == 0) 3360Sstevel@tonic-gate *pidp = pid; 3373086Sraf return (get_error(&error)); 3380Sstevel@tonic-gate } 3390Sstevel@tonic-gate 3400Sstevel@tonic-gate if (sap != NULL) 3413086Sraf if (set_error(&error, perform_flag_actions(sap)) != 0) 3423086Sraf _private_exit(_EVAPORATE); 3430Sstevel@tonic-gate 3440Sstevel@tonic-gate if (fap != NULL) 3453086Sraf if (set_error(&error, perform_file_actions(fap)) != 0) 3463086Sraf _private_exit(_EVAPORATE); 3470Sstevel@tonic-gate 3480Sstevel@tonic-gate if (pathstr == NULL) { 3490Sstevel@tonic-gate /* 3500Sstevel@tonic-gate * XPG4: pathstr is equivalent to _CS_PATH, except that 3510Sstevel@tonic-gate * :/usr/sbin is appended when root, and pathstr must end 3520Sstevel@tonic-gate * with a colon when not root. Keep these paths in sync 3530Sstevel@tonic-gate * with _CS_PATH in confstr.c. Note that pathstr must end 3540Sstevel@tonic-gate * with a colon when not root so that when file doesn't 3550Sstevel@tonic-gate * contain '/', the last call to execat() will result in an 3560Sstevel@tonic-gate * attempt to execv file from the current directory. 3570Sstevel@tonic-gate */ 3580Sstevel@tonic-gate if (_private_geteuid() == 0 || _private_getuid() == 0) { 3590Sstevel@tonic-gate if (!xpg4) 3600Sstevel@tonic-gate pathstr = "/usr/sbin:/usr/ccs/bin:/usr/bin"; 3610Sstevel@tonic-gate else 3620Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 3630Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:/usr/sbin"; 3640Sstevel@tonic-gate } else { 3650Sstevel@tonic-gate if (!xpg4) 3660Sstevel@tonic-gate pathstr = "/usr/ccs/bin:/usr/bin:"; 3670Sstevel@tonic-gate else 3680Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 3690Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:"; 3700Sstevel@tonic-gate } 3710Sstevel@tonic-gate } 3720Sstevel@tonic-gate 3730Sstevel@tonic-gate cp = pathstr; 3740Sstevel@tonic-gate do { 3750Sstevel@tonic-gate cp = execat(cp, file, path); 3760Sstevel@tonic-gate /* 3770Sstevel@tonic-gate * 4025035 and 4038378 3780Sstevel@tonic-gate * if a filename begins with a "-" prepend "./" so that 3790Sstevel@tonic-gate * the shell can't interpret it as an option 3800Sstevel@tonic-gate */ 3810Sstevel@tonic-gate if (*path == '-') { 3820Sstevel@tonic-gate char *s; 3830Sstevel@tonic-gate 3840Sstevel@tonic-gate for (s = path; *s != '\0'; s++) 3850Sstevel@tonic-gate continue; 3860Sstevel@tonic-gate for (; s >= path; s--) 3870Sstevel@tonic-gate *(s + 2) = *s; 3880Sstevel@tonic-gate path[0] = '.'; 3890Sstevel@tonic-gate path[1] = '/'; 3900Sstevel@tonic-gate } 3913086Sraf (void) set_error(&error, 0); 3920Sstevel@tonic-gate (void) _private_execve(path, argv, envp); 3933086Sraf if (set_error(&error, errno) == ENOEXEC) { 3940Sstevel@tonic-gate newargs[0] = (char *)shell; 3950Sstevel@tonic-gate newargs[1] = path; 3960Sstevel@tonic-gate for (i = 1; i <= argc; i++) 3970Sstevel@tonic-gate newargs[i + 1] = argv[i]; 3983086Sraf (void) set_error(&error, 0); 3990Sstevel@tonic-gate (void) _private_execve(xpg4? xpg4_path : sun_path, 4003086Sraf newargs, envp); 4013086Sraf (void) set_error(&error, errno); 4023086Sraf _private_exit(_EVAPORATE); 4030Sstevel@tonic-gate } 4040Sstevel@tonic-gate } while (cp); 4053086Sraf _private_exit(_EVAPORATE); 4060Sstevel@tonic-gate return (0); /* not reached */ 4070Sstevel@tonic-gate } 4080Sstevel@tonic-gate 4090Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_init = \ 4100Sstevel@tonic-gate _posix_spawn_file_actions_init 4110Sstevel@tonic-gate int 4120Sstevel@tonic-gate _posix_spawn_file_actions_init( 4130Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 4140Sstevel@tonic-gate { 4150Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4160Sstevel@tonic-gate return (0); 4170Sstevel@tonic-gate } 4180Sstevel@tonic-gate 4190Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_destroy = \ 4200Sstevel@tonic-gate _posix_spawn_file_actions_destroy 4210Sstevel@tonic-gate int 4220Sstevel@tonic-gate _posix_spawn_file_actions_destroy( 4230Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 4240Sstevel@tonic-gate { 4250Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4260Sstevel@tonic-gate file_attr_t *fap; 4270Sstevel@tonic-gate file_attr_t *next; 4280Sstevel@tonic-gate 4290Sstevel@tonic-gate if ((fap = froot) != NULL) { 4300Sstevel@tonic-gate do { 4310Sstevel@tonic-gate next = fap->fa_next; 4320Sstevel@tonic-gate if (fap-> fa_type == FA_OPEN) 4330Sstevel@tonic-gate lfree(fap->fa_path, fap->fa_pathsize); 4340Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 4350Sstevel@tonic-gate } while ((fap = next) != froot); 4360Sstevel@tonic-gate } 4370Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4380Sstevel@tonic-gate return (0); 4390Sstevel@tonic-gate } 4400Sstevel@tonic-gate 4410Sstevel@tonic-gate static void 4420Sstevel@tonic-gate add_file_attr(posix_spawn_file_actions_t *file_actions, file_attr_t *fap) 4430Sstevel@tonic-gate { 4440Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4450Sstevel@tonic-gate 4460Sstevel@tonic-gate if (froot == NULL) { 4470Sstevel@tonic-gate fap->fa_next = fap->fa_prev = fap; 4480Sstevel@tonic-gate file_actions->__file_attrp = fap; 4490Sstevel@tonic-gate } else { 4500Sstevel@tonic-gate fap->fa_next = froot; 4510Sstevel@tonic-gate fap->fa_prev = froot->fa_prev; 4520Sstevel@tonic-gate froot->fa_prev->fa_next = fap; 4530Sstevel@tonic-gate froot->fa_prev = fap; 4540Sstevel@tonic-gate } 4550Sstevel@tonic-gate } 4560Sstevel@tonic-gate 4570Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_addopen = \ 4580Sstevel@tonic-gate _posix_spawn_file_actions_addopen 4590Sstevel@tonic-gate int 4600Sstevel@tonic-gate _posix_spawn_file_actions_addopen( 4610Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 4620Sstevel@tonic-gate int filedes, 4630Sstevel@tonic-gate const char *path, 4640Sstevel@tonic-gate int oflag, 4650Sstevel@tonic-gate mode_t mode) 4660Sstevel@tonic-gate { 4670Sstevel@tonic-gate file_attr_t *fap; 4680Sstevel@tonic-gate 4690Sstevel@tonic-gate if (filedes < 0) 4700Sstevel@tonic-gate return (EBADF); 4710Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 4720Sstevel@tonic-gate return (ENOMEM); 4730Sstevel@tonic-gate 4740Sstevel@tonic-gate fap->fa_pathsize = strlen(path) + 1; 4750Sstevel@tonic-gate if ((fap->fa_path = lmalloc(fap->fa_pathsize)) == NULL) { 4760Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 4770Sstevel@tonic-gate return (ENOMEM); 4780Sstevel@tonic-gate } 4790Sstevel@tonic-gate (void) strcpy(fap->fa_path, path); 4800Sstevel@tonic-gate 4810Sstevel@tonic-gate fap->fa_type = FA_OPEN; 4820Sstevel@tonic-gate fap->fa_oflag = oflag; 4830Sstevel@tonic-gate fap->fa_mode = mode; 4840Sstevel@tonic-gate fap->fa_filedes = filedes; 4850Sstevel@tonic-gate add_file_attr(file_actions, fap); 4860Sstevel@tonic-gate 4870Sstevel@tonic-gate return (0); 4880Sstevel@tonic-gate } 4890Sstevel@tonic-gate 4900Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_addclose = \ 4910Sstevel@tonic-gate _posix_spawn_file_actions_addclose 4920Sstevel@tonic-gate int 4930Sstevel@tonic-gate _posix_spawn_file_actions_addclose( 4940Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 4950Sstevel@tonic-gate int filedes) 4960Sstevel@tonic-gate { 4970Sstevel@tonic-gate file_attr_t *fap; 4980Sstevel@tonic-gate 4990Sstevel@tonic-gate if (filedes < 0) 5000Sstevel@tonic-gate return (EBADF); 5010Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 5020Sstevel@tonic-gate return (ENOMEM); 5030Sstevel@tonic-gate 5040Sstevel@tonic-gate fap->fa_type = FA_CLOSE; 5050Sstevel@tonic-gate fap->fa_filedes = filedes; 5060Sstevel@tonic-gate add_file_attr(file_actions, fap); 5070Sstevel@tonic-gate 5080Sstevel@tonic-gate return (0); 5090Sstevel@tonic-gate } 5100Sstevel@tonic-gate 5110Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_adddup2 = \ 5120Sstevel@tonic-gate _posix_spawn_file_actions_adddup2 5130Sstevel@tonic-gate int 5140Sstevel@tonic-gate _posix_spawn_file_actions_adddup2( 5150Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 5160Sstevel@tonic-gate int filedes, 5170Sstevel@tonic-gate int newfiledes) 5180Sstevel@tonic-gate { 5190Sstevel@tonic-gate file_attr_t *fap; 5200Sstevel@tonic-gate 5210Sstevel@tonic-gate if (filedes < 0 || newfiledes < 0) 5220Sstevel@tonic-gate return (EBADF); 5230Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 5240Sstevel@tonic-gate return (ENOMEM); 5250Sstevel@tonic-gate 5260Sstevel@tonic-gate fap->fa_type = FA_DUP2; 5270Sstevel@tonic-gate fap->fa_filedes = filedes; 5280Sstevel@tonic-gate fap->fa_newfiledes = newfiledes; 5290Sstevel@tonic-gate add_file_attr(file_actions, fap); 5300Sstevel@tonic-gate 5310Sstevel@tonic-gate return (0); 5320Sstevel@tonic-gate } 5330Sstevel@tonic-gate 5340Sstevel@tonic-gate #pragma weak posix_spawnattr_init = \ 5350Sstevel@tonic-gate _posix_spawnattr_init 5360Sstevel@tonic-gate int 5370Sstevel@tonic-gate _posix_spawnattr_init( 5380Sstevel@tonic-gate posix_spawnattr_t *attr) 5390Sstevel@tonic-gate { 5403235Sraf if ((attr->__spawn_attrp = lmalloc(sizeof (posix_spawnattr_t))) == NULL) 5410Sstevel@tonic-gate return (ENOMEM); 5420Sstevel@tonic-gate /* 5430Sstevel@tonic-gate * Add default stuff here? 5440Sstevel@tonic-gate */ 5450Sstevel@tonic-gate return (0); 5460Sstevel@tonic-gate } 5470Sstevel@tonic-gate 5480Sstevel@tonic-gate #pragma weak posix_spawnattr_destroy = \ 5490Sstevel@tonic-gate _posix_spawnattr_destroy 5500Sstevel@tonic-gate int 5510Sstevel@tonic-gate _posix_spawnattr_destroy( 5520Sstevel@tonic-gate posix_spawnattr_t *attr) 5530Sstevel@tonic-gate { 5540Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5550Sstevel@tonic-gate 5560Sstevel@tonic-gate if (sap == NULL) 5570Sstevel@tonic-gate return (EINVAL); 5580Sstevel@tonic-gate 5590Sstevel@tonic-gate /* 5600Sstevel@tonic-gate * deallocate stuff here? 5610Sstevel@tonic-gate */ 5620Sstevel@tonic-gate lfree(sap, sizeof (*sap)); 5630Sstevel@tonic-gate attr->__spawn_attrp = NULL; 5640Sstevel@tonic-gate return (0); 5650Sstevel@tonic-gate } 5660Sstevel@tonic-gate 5670Sstevel@tonic-gate #pragma weak posix_spawnattr_setflags = \ 5680Sstevel@tonic-gate _posix_spawnattr_setflags 5690Sstevel@tonic-gate int 5700Sstevel@tonic-gate _posix_spawnattr_setflags( 5710Sstevel@tonic-gate posix_spawnattr_t *attr, 5720Sstevel@tonic-gate short flags) 5730Sstevel@tonic-gate { 5740Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5750Sstevel@tonic-gate 5760Sstevel@tonic-gate if (sap == NULL || 5770Sstevel@tonic-gate (flags & ~ALL_POSIX_SPAWN_FLAGS)) 5780Sstevel@tonic-gate return (EINVAL); 5790Sstevel@tonic-gate 5800Sstevel@tonic-gate sap->sa_psflags = flags; 5810Sstevel@tonic-gate return (0); 5820Sstevel@tonic-gate } 5830Sstevel@tonic-gate 5840Sstevel@tonic-gate #pragma weak posix_spawnattr_getflags = \ 5850Sstevel@tonic-gate _posix_spawnattr_getflags 5860Sstevel@tonic-gate int 5870Sstevel@tonic-gate _posix_spawnattr_getflags( 5880Sstevel@tonic-gate const posix_spawnattr_t *attr, 5890Sstevel@tonic-gate short *flags) 5900Sstevel@tonic-gate { 5910Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 5920Sstevel@tonic-gate 5930Sstevel@tonic-gate if (sap == NULL) 5940Sstevel@tonic-gate return (EINVAL); 5950Sstevel@tonic-gate 5960Sstevel@tonic-gate *flags = sap->sa_psflags; 5970Sstevel@tonic-gate return (0); 5980Sstevel@tonic-gate } 5990Sstevel@tonic-gate 6000Sstevel@tonic-gate #pragma weak posix_spawnattr_setpgroup = \ 6010Sstevel@tonic-gate _posix_spawnattr_setpgroup 6020Sstevel@tonic-gate int 6030Sstevel@tonic-gate _posix_spawnattr_setpgroup( 6040Sstevel@tonic-gate posix_spawnattr_t *attr, 6050Sstevel@tonic-gate pid_t pgroup) 6060Sstevel@tonic-gate { 6070Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6080Sstevel@tonic-gate 6090Sstevel@tonic-gate if (sap == NULL) 6100Sstevel@tonic-gate return (EINVAL); 6110Sstevel@tonic-gate 6120Sstevel@tonic-gate sap->sa_pgroup = pgroup; 6130Sstevel@tonic-gate return (0); 6140Sstevel@tonic-gate } 6150Sstevel@tonic-gate 6160Sstevel@tonic-gate #pragma weak posix_spawnattr_getpgroup = \ 6170Sstevel@tonic-gate _posix_spawnattr_getpgroup 6180Sstevel@tonic-gate int 6190Sstevel@tonic-gate _posix_spawnattr_getpgroup( 6200Sstevel@tonic-gate const posix_spawnattr_t *attr, 6210Sstevel@tonic-gate pid_t *pgroup) 6220Sstevel@tonic-gate { 6230Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6240Sstevel@tonic-gate 6250Sstevel@tonic-gate if (sap == NULL) 6260Sstevel@tonic-gate return (EINVAL); 6270Sstevel@tonic-gate 6280Sstevel@tonic-gate *pgroup = sap->sa_pgroup; 6290Sstevel@tonic-gate return (0); 6300Sstevel@tonic-gate } 6310Sstevel@tonic-gate 6320Sstevel@tonic-gate #pragma weak posix_spawnattr_setschedparam = \ 6330Sstevel@tonic-gate _posix_spawnattr_setschedparam 6340Sstevel@tonic-gate int 6350Sstevel@tonic-gate _posix_spawnattr_setschedparam( 6360Sstevel@tonic-gate posix_spawnattr_t *attr, 6370Sstevel@tonic-gate const struct sched_param *schedparam) 6380Sstevel@tonic-gate { 6390Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6400Sstevel@tonic-gate 6410Sstevel@tonic-gate if (sap == NULL) 6420Sstevel@tonic-gate return (EINVAL); 6430Sstevel@tonic-gate 6440Sstevel@tonic-gate /* 6450Sstevel@tonic-gate * Check validity? 6460Sstevel@tonic-gate */ 6470Sstevel@tonic-gate sap->sa_priority = schedparam->sched_priority; 6480Sstevel@tonic-gate return (0); 6490Sstevel@tonic-gate } 6500Sstevel@tonic-gate 6510Sstevel@tonic-gate #pragma weak posix_spawnattr_getschedparam = \ 6520Sstevel@tonic-gate _posix_spawnattr_getschedparam 6530Sstevel@tonic-gate int 6540Sstevel@tonic-gate _posix_spawnattr_getschedparam( 6550Sstevel@tonic-gate const posix_spawnattr_t *attr, 6560Sstevel@tonic-gate struct sched_param *schedparam) 6570Sstevel@tonic-gate { 6580Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6590Sstevel@tonic-gate 6600Sstevel@tonic-gate if (sap == NULL) 6610Sstevel@tonic-gate return (EINVAL); 6620Sstevel@tonic-gate 6630Sstevel@tonic-gate schedparam->sched_priority = sap->sa_priority; 6640Sstevel@tonic-gate return (0); 6650Sstevel@tonic-gate } 6660Sstevel@tonic-gate 6670Sstevel@tonic-gate #pragma weak posix_spawnattr_setschedpolicy = \ 6680Sstevel@tonic-gate _posix_spawnattr_setschedpolicy 6690Sstevel@tonic-gate int 6700Sstevel@tonic-gate _posix_spawnattr_setschedpolicy( 6710Sstevel@tonic-gate posix_spawnattr_t *attr, 6720Sstevel@tonic-gate int schedpolicy) 6730Sstevel@tonic-gate { 6740Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6750Sstevel@tonic-gate 676*6247Sraf if (sap == NULL || schedpolicy == SCHED_SYS) 6770Sstevel@tonic-gate return (EINVAL); 6780Sstevel@tonic-gate 679*6247Sraf /* 680*6247Sraf * Cache the policy information for later use 681*6247Sraf * by the vfork() child of posix_spawn(). 682*6247Sraf */ 683*6247Sraf if (get_info_by_policy(schedpolicy) == NULL) 684*6247Sraf return (errno); 6850Sstevel@tonic-gate 6860Sstevel@tonic-gate sap->sa_schedpolicy = schedpolicy; 6870Sstevel@tonic-gate return (0); 6880Sstevel@tonic-gate } 6890Sstevel@tonic-gate 6900Sstevel@tonic-gate #pragma weak posix_spawnattr_getschedpolicy = \ 6910Sstevel@tonic-gate _posix_spawnattr_getschedpolicy 6920Sstevel@tonic-gate int 6930Sstevel@tonic-gate _posix_spawnattr_getschedpolicy( 6940Sstevel@tonic-gate const posix_spawnattr_t *attr, 6950Sstevel@tonic-gate int *schedpolicy) 6960Sstevel@tonic-gate { 6970Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6980Sstevel@tonic-gate 6990Sstevel@tonic-gate if (sap == NULL) 7000Sstevel@tonic-gate return (EINVAL); 7010Sstevel@tonic-gate 7020Sstevel@tonic-gate *schedpolicy = sap->sa_schedpolicy; 7030Sstevel@tonic-gate return (0); 7040Sstevel@tonic-gate } 7050Sstevel@tonic-gate 7060Sstevel@tonic-gate #pragma weak posix_spawnattr_setsigdefault = \ 7070Sstevel@tonic-gate _posix_spawnattr_setsigdefault 7080Sstevel@tonic-gate int 7090Sstevel@tonic-gate _posix_spawnattr_setsigdefault( 7100Sstevel@tonic-gate posix_spawnattr_t *attr, 7110Sstevel@tonic-gate const sigset_t *sigdefault) 7120Sstevel@tonic-gate { 7130Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7140Sstevel@tonic-gate 7150Sstevel@tonic-gate if (sap == NULL) 7160Sstevel@tonic-gate return (EINVAL); 7170Sstevel@tonic-gate 7180Sstevel@tonic-gate sap->sa_sigdefault = *sigdefault; 7190Sstevel@tonic-gate return (0); 7200Sstevel@tonic-gate } 7210Sstevel@tonic-gate 7220Sstevel@tonic-gate #pragma weak posix_spawnattr_getsigdefault = \ 7230Sstevel@tonic-gate _posix_spawnattr_getsigdefault 7240Sstevel@tonic-gate int 7250Sstevel@tonic-gate _posix_spawnattr_getsigdefault( 7260Sstevel@tonic-gate const posix_spawnattr_t *attr, 7270Sstevel@tonic-gate sigset_t *sigdefault) 7280Sstevel@tonic-gate { 7290Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7300Sstevel@tonic-gate 7310Sstevel@tonic-gate if (sap == NULL) 7320Sstevel@tonic-gate return (EINVAL); 7330Sstevel@tonic-gate 7340Sstevel@tonic-gate *sigdefault = sap->sa_sigdefault; 7350Sstevel@tonic-gate return (0); 7360Sstevel@tonic-gate } 7370Sstevel@tonic-gate 7380Sstevel@tonic-gate #pragma weak posix_spawnattr_setsigmask = \ 7390Sstevel@tonic-gate _posix_spawnattr_setsigmask 7400Sstevel@tonic-gate int 7410Sstevel@tonic-gate _posix_spawnattr_setsigmask( 7420Sstevel@tonic-gate posix_spawnattr_t *attr, 7430Sstevel@tonic-gate const sigset_t *sigmask) 7440Sstevel@tonic-gate { 7450Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7460Sstevel@tonic-gate 7470Sstevel@tonic-gate if (sap == NULL) 7480Sstevel@tonic-gate return (EINVAL); 7490Sstevel@tonic-gate 7500Sstevel@tonic-gate sap->sa_sigmask = *sigmask; 7510Sstevel@tonic-gate return (0); 7520Sstevel@tonic-gate } 7530Sstevel@tonic-gate 7540Sstevel@tonic-gate #pragma weak posix_spawnattr_getsigmask = \ 7550Sstevel@tonic-gate _posix_spawnattr_getsigmask 7560Sstevel@tonic-gate int 7570Sstevel@tonic-gate _posix_spawnattr_getsigmask( 7580Sstevel@tonic-gate const posix_spawnattr_t *attr, 7590Sstevel@tonic-gate sigset_t *sigmask) 7600Sstevel@tonic-gate { 7610Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7620Sstevel@tonic-gate 7630Sstevel@tonic-gate if (sap == NULL) 7640Sstevel@tonic-gate return (EINVAL); 7650Sstevel@tonic-gate 7660Sstevel@tonic-gate *sigmask = sap->sa_sigmask; 7670Sstevel@tonic-gate return (0); 7680Sstevel@tonic-gate } 769