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