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 5*2248Sraf * Common Development and Distribution License (the "License"). 6*2248Sraf * 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 */ 21*2248Sraf 220Sstevel@tonic-gate /* 23*2248Sraf * Copyright 2006 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" 310Sstevel@tonic-gate #include <sys/procset.h> 320Sstevel@tonic-gate #include <sys/rtpriocntl.h> 330Sstevel@tonic-gate #include <sys/tspriocntl.h> 340Sstevel@tonic-gate #include <sys/rt.h> 350Sstevel@tonic-gate #include <sys/ts.h> 360Sstevel@tonic-gate #include <alloca.h> 370Sstevel@tonic-gate #include <spawn.h> 38*2248Sraf #include "rtsched.h" 390Sstevel@tonic-gate 400Sstevel@tonic-gate #define ALL_POSIX_SPAWN_FLAGS \ 410Sstevel@tonic-gate (POSIX_SPAWN_RESETIDS | \ 420Sstevel@tonic-gate POSIX_SPAWN_SETPGROUP | \ 430Sstevel@tonic-gate POSIX_SPAWN_SETSIGDEF | \ 440Sstevel@tonic-gate POSIX_SPAWN_SETSIGMASK | \ 450Sstevel@tonic-gate POSIX_SPAWN_SETSCHEDPARAM | \ 460Sstevel@tonic-gate POSIX_SPAWN_SETSCHEDULER) 470Sstevel@tonic-gate 480Sstevel@tonic-gate typedef struct { 490Sstevel@tonic-gate short sa_psflags; /* POSIX_SPAWN_* flags */ 500Sstevel@tonic-gate pri_t sa_priority; 510Sstevel@tonic-gate int sa_schedpolicy; 520Sstevel@tonic-gate pid_t sa_pgroup; 530Sstevel@tonic-gate sigset_t sa_sigdefault; 540Sstevel@tonic-gate sigset_t sa_sigmask; 550Sstevel@tonic-gate } spawn_attr_t; 560Sstevel@tonic-gate 570Sstevel@tonic-gate typedef struct file_attr { 580Sstevel@tonic-gate struct file_attr *fa_next; /* circular list of file actions */ 590Sstevel@tonic-gate struct file_attr *fa_prev; 600Sstevel@tonic-gate enum {FA_OPEN, FA_CLOSE, FA_DUP2} fa_type; 610Sstevel@tonic-gate uint_t fa_pathsize; /* size of fa_path[] array */ 620Sstevel@tonic-gate char *fa_path; /* copied pathname for open() */ 630Sstevel@tonic-gate int fa_oflag; /* oflag for open() */ 640Sstevel@tonic-gate mode_t fa_mode; /* mode for open() */ 650Sstevel@tonic-gate int fa_filedes; /* file descriptor for open()/close() */ 660Sstevel@tonic-gate int fa_newfiledes; /* new file descriptor for dup2() */ 670Sstevel@tonic-gate } file_attr_t; 680Sstevel@tonic-gate 69*2248Sraf extern struct pcclass ts_class, rt_class; 70*2248Sraf 710Sstevel@tonic-gate extern pid_t _vfork(void); 720Sstevel@tonic-gate #pragma unknown_control_flow(_vfork) 730Sstevel@tonic-gate extern void *_private_memset(void *, int, size_t); 740Sstevel@tonic-gate extern int __lwp_sigmask(int, const sigset_t *, sigset_t *); 750Sstevel@tonic-gate extern int __open(const char *, int, mode_t); 760Sstevel@tonic-gate extern int __sigaction(int, const struct sigaction *, struct sigaction *); 770Sstevel@tonic-gate extern int _private_close(int); 780Sstevel@tonic-gate extern int _private_execve(const char *, char *const *, char *const *); 790Sstevel@tonic-gate extern int _private_fcntl(int, int, intptr_t); 800Sstevel@tonic-gate extern int _private_setgid(gid_t); 810Sstevel@tonic-gate extern int _private_setpgid(pid_t, pid_t); 820Sstevel@tonic-gate extern int _private_setuid(uid_t); 830Sstevel@tonic-gate extern int _private_sigismember(sigset_t *, int); 840Sstevel@tonic-gate extern gid_t _private_getgid(void); 850Sstevel@tonic-gate extern uid_t _private_getuid(void); 860Sstevel@tonic-gate extern uid_t _private_geteuid(void); 870Sstevel@tonic-gate extern void _private_exit(int); 880Sstevel@tonic-gate 890Sstevel@tonic-gate /* 900Sstevel@tonic-gate * We call this function rather than priocntl() because we must not call 910Sstevel@tonic-gate * any function that is exported from libc while in the child of vfork(). 920Sstevel@tonic-gate * Also, we are not using PC_GETXPARMS or PC_SETXPARMS so we can use 930Sstevel@tonic-gate * the simple call to __priocntlset() rather than the varargs version. 940Sstevel@tonic-gate */ 950Sstevel@tonic-gate static long 960Sstevel@tonic-gate _private_priocntl(idtype_t idtype, id_t id, int cmd, caddr_t arg) 970Sstevel@tonic-gate { 980Sstevel@tonic-gate extern long _private__priocntlset(int, procset_t *, int, caddr_t, ...); 990Sstevel@tonic-gate procset_t procset; 1000Sstevel@tonic-gate 1010Sstevel@tonic-gate setprocset(&procset, POP_AND, idtype, id, P_ALL, 0); 1020Sstevel@tonic-gate return (_private__priocntlset(PC_VERSION, &procset, cmd, arg, 0)); 1030Sstevel@tonic-gate } 1040Sstevel@tonic-gate 1050Sstevel@tonic-gate /* 1060Sstevel@tonic-gate * The following two functions are blatently stolen from 1070Sstevel@tonic-gate * sched_setscheduler() and sched_setparam() in librt. 1080Sstevel@tonic-gate * This would be a lot easier if librt were folded into libc. 1090Sstevel@tonic-gate */ 1100Sstevel@tonic-gate static int 1110Sstevel@tonic-gate setscheduler(int policy, pri_t prio) 1120Sstevel@tonic-gate { 1130Sstevel@tonic-gate pcparms_t pcparm; 1140Sstevel@tonic-gate tsinfo_t *tsi; 1150Sstevel@tonic-gate tsparms_t *tsp; 1160Sstevel@tonic-gate int scale; 1170Sstevel@tonic-gate 1180Sstevel@tonic-gate switch (policy) { 1190Sstevel@tonic-gate case SCHED_FIFO: 1200Sstevel@tonic-gate case SCHED_RR: 1210Sstevel@tonic-gate if (prio < rt_class.pcc_primin || prio > rt_class.pcc_primax) { 1220Sstevel@tonic-gate errno = EINVAL; 1230Sstevel@tonic-gate return (-1); 1240Sstevel@tonic-gate } 1250Sstevel@tonic-gate pcparm.pc_cid = rt_class.pcc_info.pc_cid; 1260Sstevel@tonic-gate ((rtparms_t *)pcparm.pc_clparms)->rt_pri = prio; 1270Sstevel@tonic-gate ((rtparms_t *)pcparm.pc_clparms)->rt_tqnsecs = 1280Sstevel@tonic-gate (policy == SCHED_RR ? RT_TQDEF : RT_TQINF); 1290Sstevel@tonic-gate break; 1300Sstevel@tonic-gate 1310Sstevel@tonic-gate case SCHED_OTHER: 1320Sstevel@tonic-gate pcparm.pc_cid = ts_class.pcc_info.pc_cid; 1330Sstevel@tonic-gate tsi = (tsinfo_t *)ts_class.pcc_info.pc_clinfo; 1340Sstevel@tonic-gate scale = tsi->ts_maxupri; 1350Sstevel@tonic-gate tsp = (tsparms_t *)pcparm.pc_clparms; 1360Sstevel@tonic-gate tsp->ts_uprilim = tsp->ts_upri = -(scale * prio) / 20; 1370Sstevel@tonic-gate break; 1380Sstevel@tonic-gate 1390Sstevel@tonic-gate default: 1400Sstevel@tonic-gate errno = EINVAL; 1410Sstevel@tonic-gate return (-1); 1420Sstevel@tonic-gate } 1430Sstevel@tonic-gate 1440Sstevel@tonic-gate return (_private_priocntl(P_PID, P_MYID, 1450Sstevel@tonic-gate PC_SETPARMS, (caddr_t)&pcparm)); 1460Sstevel@tonic-gate } 1470Sstevel@tonic-gate 1480Sstevel@tonic-gate static int 1490Sstevel@tonic-gate setparam(pcparms_t *pcparmp, pri_t prio) 1500Sstevel@tonic-gate { 1510Sstevel@tonic-gate tsparms_t *tsp; 1520Sstevel@tonic-gate tsinfo_t *tsi; 1530Sstevel@tonic-gate int scale; 1540Sstevel@tonic-gate 1550Sstevel@tonic-gate if (pcparmp->pc_cid == rt_class.pcc_info.pc_cid) { 1560Sstevel@tonic-gate /* SCHED_FIFO or SCHED_RR policy */ 1570Sstevel@tonic-gate if (prio < rt_class.pcc_primin || prio > rt_class.pcc_primax) { 1580Sstevel@tonic-gate errno = EINVAL; 1590Sstevel@tonic-gate return (-1); 1600Sstevel@tonic-gate } 1610Sstevel@tonic-gate ((rtparms_t *)pcparmp->pc_clparms)->rt_tqnsecs = RT_NOCHANGE; 1620Sstevel@tonic-gate ((rtparms_t *)pcparmp->pc_clparms)->rt_pri = prio; 1630Sstevel@tonic-gate } else if (pcparmp->pc_cid == ts_class.pcc_info.pc_cid) { 1640Sstevel@tonic-gate /* SCHED_OTHER policy */ 1650Sstevel@tonic-gate tsi = (tsinfo_t *)ts_class.pcc_info.pc_clinfo; 1660Sstevel@tonic-gate scale = tsi->ts_maxupri; 1670Sstevel@tonic-gate tsp = (tsparms_t *)pcparmp->pc_clparms; 1680Sstevel@tonic-gate tsp->ts_uprilim = tsp->ts_upri = -(scale * prio) / 20; 1690Sstevel@tonic-gate } else { 1700Sstevel@tonic-gate errno = EINVAL; 1710Sstevel@tonic-gate return (-1); 1720Sstevel@tonic-gate } 1730Sstevel@tonic-gate 1740Sstevel@tonic-gate return (_private_priocntl(P_PID, P_MYID, 1750Sstevel@tonic-gate PC_SETPARMS, (caddr_t)pcparmp)); 1760Sstevel@tonic-gate } 1770Sstevel@tonic-gate 1780Sstevel@tonic-gate static void 1790Sstevel@tonic-gate perform_flag_actions(spawn_attr_t *sap) 1800Sstevel@tonic-gate { 1810Sstevel@tonic-gate int sig; 1820Sstevel@tonic-gate 1830Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGMASK) { 1840Sstevel@tonic-gate (void) __lwp_sigmask(SIG_SETMASK, &sap->sa_sigmask, NULL); 1850Sstevel@tonic-gate } 1860Sstevel@tonic-gate 1870Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSIGDEF) { 1880Sstevel@tonic-gate struct sigaction sigdfl; 1890Sstevel@tonic-gate 1900Sstevel@tonic-gate (void) _private_memset(&sigdfl, 0, sizeof (sigdfl)); 1910Sstevel@tonic-gate for (sig = 1; sig < NSIG; sig++) { 1920Sstevel@tonic-gate if (_private_sigismember(&sap->sa_sigdefault, sig)) 1930Sstevel@tonic-gate (void) __sigaction(sig, &sigdfl, NULL); 1940Sstevel@tonic-gate } 1950Sstevel@tonic-gate } 1960Sstevel@tonic-gate 1970Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_RESETIDS) { 1980Sstevel@tonic-gate if (_private_setgid(_private_getgid()) != 0 || 1990Sstevel@tonic-gate _private_setuid(_private_getuid()) != 0) 2000Sstevel@tonic-gate _private_exit(127); 2010Sstevel@tonic-gate } 2020Sstevel@tonic-gate 2030Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETPGROUP) { 2040Sstevel@tonic-gate if (_private_setpgid(0, sap->sa_pgroup) != 0) 2050Sstevel@tonic-gate _private_exit(127); 2060Sstevel@tonic-gate } 2070Sstevel@tonic-gate 2080Sstevel@tonic-gate if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDULER) { 2090Sstevel@tonic-gate if (setscheduler(sap->sa_schedpolicy, sap->sa_priority) != 0) 2100Sstevel@tonic-gate _private_exit(127); 2110Sstevel@tonic-gate } else if (sap->sa_psflags & POSIX_SPAWN_SETSCHEDPARAM) { 2120Sstevel@tonic-gate /* 2130Sstevel@tonic-gate * Get the process's current scheduling parameters, 2140Sstevel@tonic-gate * then modify to set the new priority. 2150Sstevel@tonic-gate */ 2160Sstevel@tonic-gate pcparms_t pcparm; 2170Sstevel@tonic-gate 2180Sstevel@tonic-gate pcparm.pc_cid = PC_CLNULL; 2190Sstevel@tonic-gate if (_private_priocntl(P_PID, P_MYID, 2200Sstevel@tonic-gate PC_GETPARMS, (caddr_t)&pcparm) == -1) 2210Sstevel@tonic-gate _private_exit(127); 2220Sstevel@tonic-gate if (setparam(&pcparm, sap->sa_priority) != 0) 2230Sstevel@tonic-gate _private_exit(127); 2240Sstevel@tonic-gate } 2250Sstevel@tonic-gate } 2260Sstevel@tonic-gate 2270Sstevel@tonic-gate static void 2280Sstevel@tonic-gate perform_file_actions(file_attr_t *fap) 2290Sstevel@tonic-gate { 2300Sstevel@tonic-gate file_attr_t *froot = fap; 2310Sstevel@tonic-gate int fd; 2320Sstevel@tonic-gate 2330Sstevel@tonic-gate do { 2340Sstevel@tonic-gate switch (fap->fa_type) { 2350Sstevel@tonic-gate case FA_OPEN: 2360Sstevel@tonic-gate fd = __open(fap->fa_path, fap->fa_oflag, fap->fa_mode); 2370Sstevel@tonic-gate if (fd < 0) 2380Sstevel@tonic-gate _private_exit(127); 2390Sstevel@tonic-gate if (fd != fap->fa_filedes) { 2400Sstevel@tonic-gate if (_private_fcntl(fd, F_DUP2FD, 2410Sstevel@tonic-gate fap->fa_filedes) < 0) 2420Sstevel@tonic-gate _private_exit(127); 2430Sstevel@tonic-gate (void) _private_close(fd); 2440Sstevel@tonic-gate } 2450Sstevel@tonic-gate break; 2460Sstevel@tonic-gate case FA_CLOSE: 2470Sstevel@tonic-gate if (_private_close(fap->fa_filedes) == -1) 2480Sstevel@tonic-gate _private_exit(127); 2490Sstevel@tonic-gate break; 2500Sstevel@tonic-gate case FA_DUP2: 2510Sstevel@tonic-gate fd = _private_fcntl(fap->fa_filedes, F_DUP2FD, 2520Sstevel@tonic-gate fap->fa_newfiledes); 2530Sstevel@tonic-gate if (fd < 0) 2540Sstevel@tonic-gate _private_exit(127); 2550Sstevel@tonic-gate break; 2560Sstevel@tonic-gate } 2570Sstevel@tonic-gate } while ((fap = fap->fa_next) != froot); 2580Sstevel@tonic-gate } 2590Sstevel@tonic-gate 2600Sstevel@tonic-gate /* 2610Sstevel@tonic-gate * For MT safety, do not invoke the dynamic linker after calling vfork(). 2620Sstevel@tonic-gate * If some other thread was in the dynamic linker when this thread's parent 2630Sstevel@tonic-gate * called vfork() then the dynamic linker's lock would still be held here 2640Sstevel@tonic-gate * (with a defunct owner) and we would deadlock ourself if we invoked it. 2650Sstevel@tonic-gate * 2660Sstevel@tonic-gate * Therefore, all of the functions we call here after returning from 2670Sstevel@tonic-gate * _vfork() in the child are not and must never be exported from libc 2680Sstevel@tonic-gate * as global symbols. To do so would risk invoking the dynamic linker. 2690Sstevel@tonic-gate */ 2700Sstevel@tonic-gate 2710Sstevel@tonic-gate #pragma weak posix_spawn = _posix_spawn 2720Sstevel@tonic-gate int 2730Sstevel@tonic-gate _posix_spawn( 2740Sstevel@tonic-gate pid_t *pidp, 2750Sstevel@tonic-gate const char *path, 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 pid_t pid; 2840Sstevel@tonic-gate 2850Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 2860Sstevel@tonic-gate return (EINVAL); 2870Sstevel@tonic-gate 2880Sstevel@tonic-gate switch (pid = _vfork()) { 2890Sstevel@tonic-gate case 0: /* child */ 2900Sstevel@tonic-gate break; 2910Sstevel@tonic-gate case -1: /* parent, failure */ 2920Sstevel@tonic-gate return (errno); 2930Sstevel@tonic-gate default: /* parent, success */ 2940Sstevel@tonic-gate if (pidp != NULL) 2950Sstevel@tonic-gate *pidp = pid; 2960Sstevel@tonic-gate return (0); 2970Sstevel@tonic-gate } 2980Sstevel@tonic-gate 2990Sstevel@tonic-gate if (sap != NULL) 3000Sstevel@tonic-gate perform_flag_actions(sap); 3010Sstevel@tonic-gate 3020Sstevel@tonic-gate if (fap != NULL) 3030Sstevel@tonic-gate perform_file_actions(fap); 3040Sstevel@tonic-gate 3050Sstevel@tonic-gate (void) _private_execve(path, argv, envp); 3060Sstevel@tonic-gate _private_exit(127); 3070Sstevel@tonic-gate return (0); /* not reached */ 3080Sstevel@tonic-gate } 3090Sstevel@tonic-gate 3100Sstevel@tonic-gate /* 3110Sstevel@tonic-gate * Much of posix_spawnp() blatently stolen from execvp() (port/gen/execvp.c). 3120Sstevel@tonic-gate */ 3130Sstevel@tonic-gate 3140Sstevel@tonic-gate extern int __xpg4; /* defined in xpg4.c; 0 if not xpg4-compiled program */ 3150Sstevel@tonic-gate 3160Sstevel@tonic-gate static const char * 3170Sstevel@tonic-gate execat(const char *s1, const char *s2, char *si) 3180Sstevel@tonic-gate { 3190Sstevel@tonic-gate int cnt = PATH_MAX + 1; 3200Sstevel@tonic-gate char *s; 3210Sstevel@tonic-gate char c; 3220Sstevel@tonic-gate 3230Sstevel@tonic-gate for (s = si; (c = *s1) != '\0' && c != ':'; s1++) { 3240Sstevel@tonic-gate if (cnt > 0) { 3250Sstevel@tonic-gate *s++ = c; 3260Sstevel@tonic-gate cnt--; 3270Sstevel@tonic-gate } 3280Sstevel@tonic-gate } 3290Sstevel@tonic-gate if (si != s && cnt > 0) { 3300Sstevel@tonic-gate *s++ = '/'; 3310Sstevel@tonic-gate cnt--; 3320Sstevel@tonic-gate } 3330Sstevel@tonic-gate for (; (c = *s2) != '\0' && cnt > 0; s2++) { 3340Sstevel@tonic-gate *s++ = c; 3350Sstevel@tonic-gate cnt--; 3360Sstevel@tonic-gate } 3370Sstevel@tonic-gate *s = '\0'; 3380Sstevel@tonic-gate return (*s1? ++s1: NULL); 3390Sstevel@tonic-gate } 3400Sstevel@tonic-gate 3410Sstevel@tonic-gate #pragma weak posix_spawnp = _posix_spawnp 3420Sstevel@tonic-gate /* ARGSUSED */ 3430Sstevel@tonic-gate int 3440Sstevel@tonic-gate _posix_spawnp( 3450Sstevel@tonic-gate pid_t *pidp, 3460Sstevel@tonic-gate const char *file, 3470Sstevel@tonic-gate const posix_spawn_file_actions_t *file_actions, 3480Sstevel@tonic-gate const posix_spawnattr_t *attrp, 3490Sstevel@tonic-gate char *const argv[], 3500Sstevel@tonic-gate char *const envp[]) 3510Sstevel@tonic-gate { 3520Sstevel@tonic-gate spawn_attr_t *sap = attrp? attrp->__spawn_attrp : NULL; 3530Sstevel@tonic-gate file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; 3540Sstevel@tonic-gate const char *pathstr = (strchr(file, '/') == NULL)? getenv("PATH") : ""; 3550Sstevel@tonic-gate int xpg4 = __xpg4; 3560Sstevel@tonic-gate char path[PATH_MAX+4]; 3570Sstevel@tonic-gate const char *cp; 3580Sstevel@tonic-gate pid_t pid; 3590Sstevel@tonic-gate char **newargs; 3600Sstevel@tonic-gate int argc; 3610Sstevel@tonic-gate int i; 3620Sstevel@tonic-gate static const char *sun_path = "/bin/sh"; 3630Sstevel@tonic-gate static const char *xpg4_path = "/usr/xpg4/bin/sh"; 3640Sstevel@tonic-gate static const char *shell = "sh"; 3650Sstevel@tonic-gate 3660Sstevel@tonic-gate if (attrp != NULL && sap == NULL) 3670Sstevel@tonic-gate return (EINVAL); 3680Sstevel@tonic-gate 3690Sstevel@tonic-gate /* 3700Sstevel@tonic-gate * We may need to invoke the shell with a slightly modified 3710Sstevel@tonic-gate * argv[] array. To do this we need to preallocate the array. 3720Sstevel@tonic-gate * We must call alloca() before calling vfork() because doing 3730Sstevel@tonic-gate * it after vfork() (in the child) would corrupt the parent. 3740Sstevel@tonic-gate */ 3750Sstevel@tonic-gate for (argc = 0; argv[argc] != NULL; argc++) 3760Sstevel@tonic-gate continue; 3770Sstevel@tonic-gate newargs = alloca((argc + 2) * sizeof (char *)); 3780Sstevel@tonic-gate 3790Sstevel@tonic-gate switch (pid = _vfork()) { 3800Sstevel@tonic-gate case 0: /* child */ 3810Sstevel@tonic-gate break; 3820Sstevel@tonic-gate case -1: /* parent, failure */ 3830Sstevel@tonic-gate return (errno); 3840Sstevel@tonic-gate default: /* parent, success */ 3850Sstevel@tonic-gate if (pidp != NULL) 3860Sstevel@tonic-gate *pidp = pid; 3870Sstevel@tonic-gate return (0); 3880Sstevel@tonic-gate } 3890Sstevel@tonic-gate 3900Sstevel@tonic-gate if (*file == '\0') 3910Sstevel@tonic-gate _private_exit(127); 3920Sstevel@tonic-gate 3930Sstevel@tonic-gate if (sap != NULL) 3940Sstevel@tonic-gate perform_flag_actions(sap); 3950Sstevel@tonic-gate 3960Sstevel@tonic-gate if (fap != NULL) 3970Sstevel@tonic-gate perform_file_actions(fap); 3980Sstevel@tonic-gate 3990Sstevel@tonic-gate if (pathstr == NULL) { 4000Sstevel@tonic-gate /* 4010Sstevel@tonic-gate * XPG4: pathstr is equivalent to _CS_PATH, except that 4020Sstevel@tonic-gate * :/usr/sbin is appended when root, and pathstr must end 4030Sstevel@tonic-gate * with a colon when not root. Keep these paths in sync 4040Sstevel@tonic-gate * with _CS_PATH in confstr.c. Note that pathstr must end 4050Sstevel@tonic-gate * with a colon when not root so that when file doesn't 4060Sstevel@tonic-gate * contain '/', the last call to execat() will result in an 4070Sstevel@tonic-gate * attempt to execv file from the current directory. 4080Sstevel@tonic-gate */ 4090Sstevel@tonic-gate if (_private_geteuid() == 0 || _private_getuid() == 0) { 4100Sstevel@tonic-gate if (!xpg4) 4110Sstevel@tonic-gate pathstr = "/usr/sbin:/usr/ccs/bin:/usr/bin"; 4120Sstevel@tonic-gate else 4130Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 4140Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:/usr/sbin"; 4150Sstevel@tonic-gate } else { 4160Sstevel@tonic-gate if (!xpg4) 4170Sstevel@tonic-gate pathstr = "/usr/ccs/bin:/usr/bin:"; 4180Sstevel@tonic-gate else 4190Sstevel@tonic-gate pathstr = "/usr/xpg4/bin:/usr/ccs/bin:" 4200Sstevel@tonic-gate "/usr/bin:/opt/SUNWspro/bin:"; 4210Sstevel@tonic-gate } 4220Sstevel@tonic-gate } 4230Sstevel@tonic-gate 4240Sstevel@tonic-gate cp = pathstr; 4250Sstevel@tonic-gate do { 4260Sstevel@tonic-gate cp = execat(cp, file, path); 4270Sstevel@tonic-gate /* 4280Sstevel@tonic-gate * 4025035 and 4038378 4290Sstevel@tonic-gate * if a filename begins with a "-" prepend "./" so that 4300Sstevel@tonic-gate * the shell can't interpret it as an option 4310Sstevel@tonic-gate */ 4320Sstevel@tonic-gate if (*path == '-') { 4330Sstevel@tonic-gate char *s; 4340Sstevel@tonic-gate 4350Sstevel@tonic-gate for (s = path; *s != '\0'; s++) 4360Sstevel@tonic-gate continue; 4370Sstevel@tonic-gate for (; s >= path; s--) 4380Sstevel@tonic-gate *(s + 2) = *s; 4390Sstevel@tonic-gate path[0] = '.'; 4400Sstevel@tonic-gate path[1] = '/'; 4410Sstevel@tonic-gate } 4420Sstevel@tonic-gate (void) _private_execve(path, argv, envp); 4430Sstevel@tonic-gate if (errno == ENOEXEC) { 4440Sstevel@tonic-gate newargs[0] = (char *)shell; 4450Sstevel@tonic-gate newargs[1] = path; 4460Sstevel@tonic-gate for (i = 1; i <= argc; i++) 4470Sstevel@tonic-gate newargs[i + 1] = argv[i]; 4480Sstevel@tonic-gate (void) _private_execve(xpg4? xpg4_path : sun_path, 4490Sstevel@tonic-gate newargs, envp); 4500Sstevel@tonic-gate _private_exit(127); 4510Sstevel@tonic-gate } 4520Sstevel@tonic-gate } while (cp); 4530Sstevel@tonic-gate _private_exit(127); 4540Sstevel@tonic-gate return (0); /* not reached */ 4550Sstevel@tonic-gate } 4560Sstevel@tonic-gate 4570Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_init = \ 4580Sstevel@tonic-gate _posix_spawn_file_actions_init 4590Sstevel@tonic-gate int 4600Sstevel@tonic-gate _posix_spawn_file_actions_init( 4610Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 4620Sstevel@tonic-gate { 4630Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4640Sstevel@tonic-gate return (0); 4650Sstevel@tonic-gate } 4660Sstevel@tonic-gate 4670Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_destroy = \ 4680Sstevel@tonic-gate _posix_spawn_file_actions_destroy 4690Sstevel@tonic-gate int 4700Sstevel@tonic-gate _posix_spawn_file_actions_destroy( 4710Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions) 4720Sstevel@tonic-gate { 4730Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4740Sstevel@tonic-gate file_attr_t *fap; 4750Sstevel@tonic-gate file_attr_t *next; 4760Sstevel@tonic-gate 4770Sstevel@tonic-gate if ((fap = froot) != NULL) { 4780Sstevel@tonic-gate do { 4790Sstevel@tonic-gate next = fap->fa_next; 4800Sstevel@tonic-gate if (fap-> fa_type == FA_OPEN) 4810Sstevel@tonic-gate lfree(fap->fa_path, fap->fa_pathsize); 4820Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 4830Sstevel@tonic-gate } while ((fap = next) != froot); 4840Sstevel@tonic-gate } 4850Sstevel@tonic-gate file_actions->__file_attrp = NULL; 4860Sstevel@tonic-gate return (0); 4870Sstevel@tonic-gate } 4880Sstevel@tonic-gate 4890Sstevel@tonic-gate static void 4900Sstevel@tonic-gate add_file_attr(posix_spawn_file_actions_t *file_actions, file_attr_t *fap) 4910Sstevel@tonic-gate { 4920Sstevel@tonic-gate file_attr_t *froot = file_actions->__file_attrp; 4930Sstevel@tonic-gate 4940Sstevel@tonic-gate if (froot == NULL) { 4950Sstevel@tonic-gate fap->fa_next = fap->fa_prev = fap; 4960Sstevel@tonic-gate file_actions->__file_attrp = fap; 4970Sstevel@tonic-gate } else { 4980Sstevel@tonic-gate fap->fa_next = froot; 4990Sstevel@tonic-gate fap->fa_prev = froot->fa_prev; 5000Sstevel@tonic-gate froot->fa_prev->fa_next = fap; 5010Sstevel@tonic-gate froot->fa_prev = fap; 5020Sstevel@tonic-gate } 5030Sstevel@tonic-gate } 5040Sstevel@tonic-gate 5050Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_addopen = \ 5060Sstevel@tonic-gate _posix_spawn_file_actions_addopen 5070Sstevel@tonic-gate int 5080Sstevel@tonic-gate _posix_spawn_file_actions_addopen( 5090Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 5100Sstevel@tonic-gate int filedes, 5110Sstevel@tonic-gate const char *path, 5120Sstevel@tonic-gate int oflag, 5130Sstevel@tonic-gate mode_t mode) 5140Sstevel@tonic-gate { 5150Sstevel@tonic-gate file_attr_t *fap; 5160Sstevel@tonic-gate 5170Sstevel@tonic-gate if (filedes < 0) 5180Sstevel@tonic-gate return (EBADF); 5190Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 5200Sstevel@tonic-gate return (ENOMEM); 5210Sstevel@tonic-gate 5220Sstevel@tonic-gate fap->fa_pathsize = strlen(path) + 1; 5230Sstevel@tonic-gate if ((fap->fa_path = lmalloc(fap->fa_pathsize)) == NULL) { 5240Sstevel@tonic-gate lfree(fap, sizeof (*fap)); 5250Sstevel@tonic-gate return (ENOMEM); 5260Sstevel@tonic-gate } 5270Sstevel@tonic-gate (void) strcpy(fap->fa_path, path); 5280Sstevel@tonic-gate 5290Sstevel@tonic-gate fap->fa_type = FA_OPEN; 5300Sstevel@tonic-gate fap->fa_oflag = oflag; 5310Sstevel@tonic-gate fap->fa_mode = mode; 5320Sstevel@tonic-gate fap->fa_filedes = filedes; 5330Sstevel@tonic-gate add_file_attr(file_actions, fap); 5340Sstevel@tonic-gate 5350Sstevel@tonic-gate return (0); 5360Sstevel@tonic-gate } 5370Sstevel@tonic-gate 5380Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_addclose = \ 5390Sstevel@tonic-gate _posix_spawn_file_actions_addclose 5400Sstevel@tonic-gate int 5410Sstevel@tonic-gate _posix_spawn_file_actions_addclose( 5420Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 5430Sstevel@tonic-gate int filedes) 5440Sstevel@tonic-gate { 5450Sstevel@tonic-gate file_attr_t *fap; 5460Sstevel@tonic-gate 5470Sstevel@tonic-gate if (filedes < 0) 5480Sstevel@tonic-gate return (EBADF); 5490Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 5500Sstevel@tonic-gate return (ENOMEM); 5510Sstevel@tonic-gate 5520Sstevel@tonic-gate fap->fa_type = FA_CLOSE; 5530Sstevel@tonic-gate fap->fa_filedes = filedes; 5540Sstevel@tonic-gate add_file_attr(file_actions, fap); 5550Sstevel@tonic-gate 5560Sstevel@tonic-gate return (0); 5570Sstevel@tonic-gate } 5580Sstevel@tonic-gate 5590Sstevel@tonic-gate #pragma weak posix_spawn_file_actions_adddup2 = \ 5600Sstevel@tonic-gate _posix_spawn_file_actions_adddup2 5610Sstevel@tonic-gate int 5620Sstevel@tonic-gate _posix_spawn_file_actions_adddup2( 5630Sstevel@tonic-gate posix_spawn_file_actions_t *file_actions, 5640Sstevel@tonic-gate int filedes, 5650Sstevel@tonic-gate int newfiledes) 5660Sstevel@tonic-gate { 5670Sstevel@tonic-gate file_attr_t *fap; 5680Sstevel@tonic-gate 5690Sstevel@tonic-gate if (filedes < 0 || newfiledes < 0) 5700Sstevel@tonic-gate return (EBADF); 5710Sstevel@tonic-gate if ((fap = lmalloc(sizeof (*fap))) == NULL) 5720Sstevel@tonic-gate return (ENOMEM); 5730Sstevel@tonic-gate 5740Sstevel@tonic-gate fap->fa_type = FA_DUP2; 5750Sstevel@tonic-gate fap->fa_filedes = filedes; 5760Sstevel@tonic-gate fap->fa_newfiledes = newfiledes; 5770Sstevel@tonic-gate add_file_attr(file_actions, fap); 5780Sstevel@tonic-gate 5790Sstevel@tonic-gate return (0); 5800Sstevel@tonic-gate } 5810Sstevel@tonic-gate 5820Sstevel@tonic-gate #pragma weak posix_spawnattr_init = \ 5830Sstevel@tonic-gate _posix_spawnattr_init 5840Sstevel@tonic-gate int 5850Sstevel@tonic-gate _posix_spawnattr_init( 5860Sstevel@tonic-gate posix_spawnattr_t *attr) 5870Sstevel@tonic-gate { 5880Sstevel@tonic-gate spawn_attr_t *sap; 5890Sstevel@tonic-gate 5900Sstevel@tonic-gate if ((sap = lmalloc(sizeof (*sap))) == NULL) 5910Sstevel@tonic-gate return (ENOMEM); 5920Sstevel@tonic-gate 5930Sstevel@tonic-gate /* 5940Sstevel@tonic-gate * Add default stuff here? 5950Sstevel@tonic-gate */ 5960Sstevel@tonic-gate attr->__spawn_attrp = sap; 5970Sstevel@tonic-gate return (0); 5980Sstevel@tonic-gate } 5990Sstevel@tonic-gate 6000Sstevel@tonic-gate #pragma weak posix_spawnattr_destroy = \ 6010Sstevel@tonic-gate _posix_spawnattr_destroy 6020Sstevel@tonic-gate int 6030Sstevel@tonic-gate _posix_spawnattr_destroy( 6040Sstevel@tonic-gate posix_spawnattr_t *attr) 6050Sstevel@tonic-gate { 6060Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6070Sstevel@tonic-gate 6080Sstevel@tonic-gate if (sap == NULL) 6090Sstevel@tonic-gate return (EINVAL); 6100Sstevel@tonic-gate 6110Sstevel@tonic-gate /* 6120Sstevel@tonic-gate * deallocate stuff here? 6130Sstevel@tonic-gate */ 6140Sstevel@tonic-gate lfree(sap, sizeof (*sap)); 6150Sstevel@tonic-gate attr->__spawn_attrp = NULL; 6160Sstevel@tonic-gate return (0); 6170Sstevel@tonic-gate } 6180Sstevel@tonic-gate 6190Sstevel@tonic-gate #pragma weak posix_spawnattr_setflags = \ 6200Sstevel@tonic-gate _posix_spawnattr_setflags 6210Sstevel@tonic-gate int 6220Sstevel@tonic-gate _posix_spawnattr_setflags( 6230Sstevel@tonic-gate posix_spawnattr_t *attr, 6240Sstevel@tonic-gate short flags) 6250Sstevel@tonic-gate { 6260Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6270Sstevel@tonic-gate 6280Sstevel@tonic-gate if (sap == NULL || 6290Sstevel@tonic-gate (flags & ~ALL_POSIX_SPAWN_FLAGS)) 6300Sstevel@tonic-gate return (EINVAL); 6310Sstevel@tonic-gate 6320Sstevel@tonic-gate if (flags & (POSIX_SPAWN_SETSCHEDPARAM | POSIX_SPAWN_SETSCHEDULER)) { 6330Sstevel@tonic-gate /* 6340Sstevel@tonic-gate * Populate ts_class and rt_class. 6350Sstevel@tonic-gate * We will need them in the child of vfork(). 6360Sstevel@tonic-gate */ 637*2248Sraf if (rt_class.pcc_state == 0) 638*2248Sraf (void) get_info_by_policy(SCHED_FIFO); 639*2248Sraf if (ts_class.pcc_state == 0) 640*2248Sraf (void) get_info_by_policy(SCHED_OTHER); 6410Sstevel@tonic-gate } 6420Sstevel@tonic-gate 6430Sstevel@tonic-gate sap->sa_psflags = flags; 6440Sstevel@tonic-gate return (0); 6450Sstevel@tonic-gate } 6460Sstevel@tonic-gate 6470Sstevel@tonic-gate #pragma weak posix_spawnattr_getflags = \ 6480Sstevel@tonic-gate _posix_spawnattr_getflags 6490Sstevel@tonic-gate int 6500Sstevel@tonic-gate _posix_spawnattr_getflags( 6510Sstevel@tonic-gate const posix_spawnattr_t *attr, 6520Sstevel@tonic-gate short *flags) 6530Sstevel@tonic-gate { 6540Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6550Sstevel@tonic-gate 6560Sstevel@tonic-gate if (sap == NULL) 6570Sstevel@tonic-gate return (EINVAL); 6580Sstevel@tonic-gate 6590Sstevel@tonic-gate *flags = sap->sa_psflags; 6600Sstevel@tonic-gate return (0); 6610Sstevel@tonic-gate } 6620Sstevel@tonic-gate 6630Sstevel@tonic-gate #pragma weak posix_spawnattr_setpgroup = \ 6640Sstevel@tonic-gate _posix_spawnattr_setpgroup 6650Sstevel@tonic-gate int 6660Sstevel@tonic-gate _posix_spawnattr_setpgroup( 6670Sstevel@tonic-gate posix_spawnattr_t *attr, 6680Sstevel@tonic-gate pid_t pgroup) 6690Sstevel@tonic-gate { 6700Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6710Sstevel@tonic-gate 6720Sstevel@tonic-gate if (sap == NULL) 6730Sstevel@tonic-gate return (EINVAL); 6740Sstevel@tonic-gate 6750Sstevel@tonic-gate sap->sa_pgroup = pgroup; 6760Sstevel@tonic-gate return (0); 6770Sstevel@tonic-gate } 6780Sstevel@tonic-gate 6790Sstevel@tonic-gate #pragma weak posix_spawnattr_getpgroup = \ 6800Sstevel@tonic-gate _posix_spawnattr_getpgroup 6810Sstevel@tonic-gate int 6820Sstevel@tonic-gate _posix_spawnattr_getpgroup( 6830Sstevel@tonic-gate const posix_spawnattr_t *attr, 6840Sstevel@tonic-gate pid_t *pgroup) 6850Sstevel@tonic-gate { 6860Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 6870Sstevel@tonic-gate 6880Sstevel@tonic-gate if (sap == NULL) 6890Sstevel@tonic-gate return (EINVAL); 6900Sstevel@tonic-gate 6910Sstevel@tonic-gate *pgroup = sap->sa_pgroup; 6920Sstevel@tonic-gate return (0); 6930Sstevel@tonic-gate } 6940Sstevel@tonic-gate 6950Sstevel@tonic-gate #pragma weak posix_spawnattr_setschedparam = \ 6960Sstevel@tonic-gate _posix_spawnattr_setschedparam 6970Sstevel@tonic-gate int 6980Sstevel@tonic-gate _posix_spawnattr_setschedparam( 6990Sstevel@tonic-gate posix_spawnattr_t *attr, 7000Sstevel@tonic-gate const struct sched_param *schedparam) 7010Sstevel@tonic-gate { 7020Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7030Sstevel@tonic-gate 7040Sstevel@tonic-gate if (sap == NULL) 7050Sstevel@tonic-gate return (EINVAL); 7060Sstevel@tonic-gate 7070Sstevel@tonic-gate /* 7080Sstevel@tonic-gate * Check validity? 7090Sstevel@tonic-gate */ 7100Sstevel@tonic-gate sap->sa_priority = schedparam->sched_priority; 7110Sstevel@tonic-gate return (0); 7120Sstevel@tonic-gate } 7130Sstevel@tonic-gate 7140Sstevel@tonic-gate #pragma weak posix_spawnattr_getschedparam = \ 7150Sstevel@tonic-gate _posix_spawnattr_getschedparam 7160Sstevel@tonic-gate int 7170Sstevel@tonic-gate _posix_spawnattr_getschedparam( 7180Sstevel@tonic-gate const posix_spawnattr_t *attr, 7190Sstevel@tonic-gate struct sched_param *schedparam) 7200Sstevel@tonic-gate { 7210Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7220Sstevel@tonic-gate 7230Sstevel@tonic-gate if (sap == NULL) 7240Sstevel@tonic-gate return (EINVAL); 7250Sstevel@tonic-gate 7260Sstevel@tonic-gate schedparam->sched_priority = sap->sa_priority; 7270Sstevel@tonic-gate return (0); 7280Sstevel@tonic-gate } 7290Sstevel@tonic-gate 7300Sstevel@tonic-gate #pragma weak posix_spawnattr_setschedpolicy = \ 7310Sstevel@tonic-gate _posix_spawnattr_setschedpolicy 7320Sstevel@tonic-gate int 7330Sstevel@tonic-gate _posix_spawnattr_setschedpolicy( 7340Sstevel@tonic-gate posix_spawnattr_t *attr, 7350Sstevel@tonic-gate int schedpolicy) 7360Sstevel@tonic-gate { 7370Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7380Sstevel@tonic-gate 7390Sstevel@tonic-gate if (sap == NULL) 7400Sstevel@tonic-gate return (EINVAL); 7410Sstevel@tonic-gate 7420Sstevel@tonic-gate switch (schedpolicy) { 7430Sstevel@tonic-gate case SCHED_OTHER: 7440Sstevel@tonic-gate case SCHED_FIFO: 7450Sstevel@tonic-gate case SCHED_RR: 7460Sstevel@tonic-gate break; 7470Sstevel@tonic-gate default: 7480Sstevel@tonic-gate return (EINVAL); 7490Sstevel@tonic-gate } 7500Sstevel@tonic-gate 7510Sstevel@tonic-gate sap->sa_schedpolicy = schedpolicy; 7520Sstevel@tonic-gate return (0); 7530Sstevel@tonic-gate } 7540Sstevel@tonic-gate 7550Sstevel@tonic-gate #pragma weak posix_spawnattr_getschedpolicy = \ 7560Sstevel@tonic-gate _posix_spawnattr_getschedpolicy 7570Sstevel@tonic-gate int 7580Sstevel@tonic-gate _posix_spawnattr_getschedpolicy( 7590Sstevel@tonic-gate const posix_spawnattr_t *attr, 7600Sstevel@tonic-gate int *schedpolicy) 7610Sstevel@tonic-gate { 7620Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7630Sstevel@tonic-gate 7640Sstevel@tonic-gate if (sap == NULL) 7650Sstevel@tonic-gate return (EINVAL); 7660Sstevel@tonic-gate 7670Sstevel@tonic-gate *schedpolicy = sap->sa_schedpolicy; 7680Sstevel@tonic-gate return (0); 7690Sstevel@tonic-gate } 7700Sstevel@tonic-gate 7710Sstevel@tonic-gate #pragma weak posix_spawnattr_setsigdefault = \ 7720Sstevel@tonic-gate _posix_spawnattr_setsigdefault 7730Sstevel@tonic-gate int 7740Sstevel@tonic-gate _posix_spawnattr_setsigdefault( 7750Sstevel@tonic-gate posix_spawnattr_t *attr, 7760Sstevel@tonic-gate const sigset_t *sigdefault) 7770Sstevel@tonic-gate { 7780Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7790Sstevel@tonic-gate 7800Sstevel@tonic-gate if (sap == NULL) 7810Sstevel@tonic-gate return (EINVAL); 7820Sstevel@tonic-gate 7830Sstevel@tonic-gate sap->sa_sigdefault = *sigdefault; 7840Sstevel@tonic-gate return (0); 7850Sstevel@tonic-gate } 7860Sstevel@tonic-gate 7870Sstevel@tonic-gate #pragma weak posix_spawnattr_getsigdefault = \ 7880Sstevel@tonic-gate _posix_spawnattr_getsigdefault 7890Sstevel@tonic-gate int 7900Sstevel@tonic-gate _posix_spawnattr_getsigdefault( 7910Sstevel@tonic-gate const posix_spawnattr_t *attr, 7920Sstevel@tonic-gate sigset_t *sigdefault) 7930Sstevel@tonic-gate { 7940Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 7950Sstevel@tonic-gate 7960Sstevel@tonic-gate if (sap == NULL) 7970Sstevel@tonic-gate return (EINVAL); 7980Sstevel@tonic-gate 7990Sstevel@tonic-gate *sigdefault = sap->sa_sigdefault; 8000Sstevel@tonic-gate return (0); 8010Sstevel@tonic-gate } 8020Sstevel@tonic-gate 8030Sstevel@tonic-gate #pragma weak posix_spawnattr_setsigmask = \ 8040Sstevel@tonic-gate _posix_spawnattr_setsigmask 8050Sstevel@tonic-gate int 8060Sstevel@tonic-gate _posix_spawnattr_setsigmask( 8070Sstevel@tonic-gate posix_spawnattr_t *attr, 8080Sstevel@tonic-gate const sigset_t *sigmask) 8090Sstevel@tonic-gate { 8100Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 8110Sstevel@tonic-gate 8120Sstevel@tonic-gate if (sap == NULL) 8130Sstevel@tonic-gate return (EINVAL); 8140Sstevel@tonic-gate 8150Sstevel@tonic-gate sap->sa_sigmask = *sigmask; 8160Sstevel@tonic-gate return (0); 8170Sstevel@tonic-gate } 8180Sstevel@tonic-gate 8190Sstevel@tonic-gate #pragma weak posix_spawnattr_getsigmask = \ 8200Sstevel@tonic-gate _posix_spawnattr_getsigmask 8210Sstevel@tonic-gate int 8220Sstevel@tonic-gate _posix_spawnattr_getsigmask( 8230Sstevel@tonic-gate const posix_spawnattr_t *attr, 8240Sstevel@tonic-gate sigset_t *sigmask) 8250Sstevel@tonic-gate { 8260Sstevel@tonic-gate spawn_attr_t *sap = attr->__spawn_attrp; 8270Sstevel@tonic-gate 8280Sstevel@tonic-gate if (sap == NULL) 8290Sstevel@tonic-gate return (EINVAL); 8300Sstevel@tonic-gate 8310Sstevel@tonic-gate *sigmask = sap->sa_sigmask; 8320Sstevel@tonic-gate return (0); 8330Sstevel@tonic-gate } 834