]>
Commit | Line | Data |
---|---|---|
39236c6e A |
1 | /* |
2 | * Copyright (c) 2006-2012 Apple Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
12 | * | |
13 | * The Original Code and all software distributed under the License are | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
20 | * | |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
23 | ||
24 | /* | |
25 | * [SPN] Support for _POSIX_SPAWN | |
26 | */ | |
27 | ||
28 | #define CONFIG_MEMORYSTATUS 1 // <rdar://problem/13604997> | |
29 | #include <sys/types.h> /* for user_size_t */ | |
30 | #include <spawn.h> | |
31 | #include <spawn_private.h> | |
32 | #include <sys/spawn_internal.h> | |
33 | #include <sys/process_policy.h> | |
34 | #include <stdlib.h> | |
35 | #include <errno.h> | |
36 | #include <limits.h> /* for OPEN_MAX, PATH_MAX */ | |
37 | #include <string.h> | |
38 | #include <strings.h> | |
39 | #include <mach/port.h> | |
40 | #include <mach/exception_types.h> | |
3e170ce0 | 41 | #include <mach/coalition.h> /* for COALITION_TYPE_MAX */ |
39037602 | 42 | #include <sys/kern_memorystatus.h> |
39236c6e A |
43 | |
44 | /* | |
45 | * posix_spawnattr_init | |
46 | * | |
47 | * Description: Initialize a spawn attributes object attr with default values | |
48 | * | |
49 | * Parameters: attr The spawn attributes object to be | |
50 | * initialized | |
51 | * | |
52 | * Returns: 0 Success | |
53 | * ENOMEM Insufficient memory exists to | |
54 | * initialize the spawn attributes object. | |
55 | * | |
56 | * Note: As an implementation detail, the externally visibily type | |
57 | * posix_spawnattr_t is defined to be a void *, and initialization | |
58 | * involves allocation of a memory object. Subsequent changes to | |
59 | * the spawn attributes may result in reallocation under the | |
60 | * covers. | |
61 | * | |
62 | * Reinitialization of an already initialized spawn attributes | |
63 | * object will result in memory being leaked. Because spawn | |
64 | * attributes are not required to be used in conjunction with a | |
65 | * static initializer, there is no way to distinguish a spawn | |
66 | * attribute with stack garbage from one that's been initialized. | |
67 | * This is arguably an API design error. | |
68 | */ | |
69 | int | |
70 | posix_spawnattr_init(posix_spawnattr_t *attr) | |
71 | { | |
72 | _posix_spawnattr_t *psattrp = (_posix_spawnattr_t *)attr; | |
73 | int err = 0; | |
74 | ||
75 | if ((*psattrp = (_posix_spawnattr_t)malloc(sizeof(struct _posix_spawnattr))) == NULL) { | |
76 | err = ENOMEM; | |
77 | } else { | |
78 | ||
79 | /* | |
80 | * The default value of this attribute shall be as if no | |
81 | * flags were set | |
82 | */ | |
83 | (*psattrp)->psa_flags = 0; | |
84 | ||
85 | /* | |
86 | * The default value of this attribute shall be an empty | |
87 | * signal set | |
88 | */ | |
89 | (*psattrp)->psa_sigdefault = 0; | |
90 | ||
91 | /* The default value of this attribute is unspecified */ | |
92 | (*psattrp)->psa_sigmask = 0; | |
93 | ||
94 | /* The default value of this attribute shall be zero */ | |
95 | (*psattrp)->psa_pgroup = 0; /* doesn't matter */ | |
96 | ||
97 | /* Default is no binary preferences, i.e. use normal grading */ | |
98 | memset((*psattrp)->psa_binprefs, 0, | |
99 | sizeof((*psattrp)->psa_binprefs)); | |
100 | ||
101 | /* Default is no port actions to take */ | |
102 | (*psattrp)->psa_ports = NULL; | |
103 | ||
104 | /* | |
105 | * The default value of this attribute shall be an no | |
106 | * process control on resource starvation | |
107 | */ | |
108 | (*psattrp)->psa_pcontrol = 0; | |
109 | ||
110 | /* | |
111 | * Initializing the alignment paddings. | |
112 | */ | |
113 | ||
114 | (*psattrp)->short_padding = 0; | |
115 | (*psattrp)->flags_padding = 0; | |
39236c6e | 116 | |
fe8ab488 A |
117 | /* Default is no new apptype requested */ |
118 | (*psattrp)->psa_apptype = POSIX_SPAWN_PROCESS_TYPE_DEFAULT; | |
39236c6e A |
119 | |
120 | /* Jetsam related */ | |
121 | (*psattrp)->psa_jetsam_flags = 0; | |
122 | (*psattrp)->psa_priority = -1; | |
3e170ce0 A |
123 | (*psattrp)->psa_memlimit_active = -1; |
124 | (*psattrp)->psa_memlimit_inactive = -1; | |
39236c6e A |
125 | |
126 | /* Default is no CPU usage monitor active. */ | |
127 | (*psattrp)->psa_cpumonitor_percent = 0; | |
128 | (*psattrp)->psa_cpumonitor_interval = 0; | |
129 | ||
130 | /* Default is no MAC policy extensions. */ | |
131 | (*psattrp)->psa_mac_extensions = NULL; | |
fe8ab488 | 132 | |
3e170ce0 A |
133 | /* Default is to inherit parent's coalition(s) */ |
134 | (*psattrp)->psa_coalition_info = NULL; | |
135 | ||
490019cf | 136 | (*psattrp)->psa_persona_info = NULL; |
3e170ce0 A |
137 | |
138 | /* | |
139 | * old coalition field | |
140 | * For backwards compatibility reasons, we set this to 1 | |
141 | * which is the first valid coalition id. This will allow | |
142 | * newer user space code to properly spawn processes on | |
143 | * older kernels | |
144 | * (they will just all end up in the same coalition). | |
145 | */ | |
146 | (*psattrp)->psa_reserved = 1; | |
fe8ab488 A |
147 | |
148 | /* Default is no new clamp */ | |
149 | (*psattrp)->psa_qos_clamp = POSIX_SPAWN_PROC_CLAMP_NONE; | |
3e170ce0 A |
150 | |
151 | /* Default is no change to role */ | |
152 | (*psattrp)->psa_darwin_role = POSIX_SPAWN_DARWIN_ROLE_NONE; | |
39236c6e A |
153 | } |
154 | ||
155 | return (err); | |
156 | } | |
157 | ||
158 | ||
159 | /* | |
160 | * posix_spawnattr_destroy | |
161 | * | |
162 | * Description: Destroy a spawn attributes object that was previously | |
163 | * initialized via posix_spawnattr_init() by freeing any | |
164 | * memory associated with it and setting it to an invalid value. | |
165 | * | |
166 | * Parameters: attr The spawn attributes object to be | |
167 | * destroyed. | |
168 | * | |
169 | * Returns: 0 Success | |
170 | * | |
171 | * Notes: The destroyed spawn attribute results in the void * pointer | |
172 | * being set to NULL; subsequent use without reinitialization | |
173 | * will result in explicit program failure (rather than merely | |
174 | * "undefined behaviour"). | |
175 | * | |
176 | * NOTIMP: Allowed failures (checking NOT required): | |
177 | * EINVAL The value specified by attr is invalid. | |
178 | */ | |
179 | static int posix_spawn_destroyportactions_np(posix_spawnattr_t *); | |
3e170ce0 | 180 | static int posix_spawn_destroycoalition_info_np(posix_spawnattr_t *); |
490019cf | 181 | static int posix_spawn_destroypersona_info_np(posix_spawnattr_t *); |
39236c6e A |
182 | |
183 | int | |
184 | posix_spawnattr_destroy(posix_spawnattr_t *attr) | |
185 | { | |
186 | _posix_spawnattr_t psattr; | |
187 | ||
188 | if (attr == NULL || *attr == NULL) | |
189 | return EINVAL; | |
190 | ||
191 | psattr = *(_posix_spawnattr_t *)attr; | |
192 | posix_spawn_destroyportactions_np(attr); | |
3e170ce0 | 193 | posix_spawn_destroycoalition_info_np(attr); |
490019cf | 194 | posix_spawn_destroypersona_info_np(attr); |
39236c6e A |
195 | |
196 | free(psattr); | |
197 | *attr = NULL; | |
198 | ||
199 | return (0); | |
200 | } | |
201 | ||
202 | ||
203 | /* | |
204 | * posix_spawnattr_setflags | |
205 | * | |
206 | * Description: Set the spawn flags attribute for the spawn attribute object | |
207 | * referred to by 'attr'. | |
208 | * | |
209 | * Parameters: attr The spawn attributes object whose flags | |
210 | * are to be set | |
211 | * flags The flags value to set | |
212 | * | |
213 | * Returns: 0 Success | |
214 | * | |
215 | * NOTIMP: Allowed failures (checking NOT required): | |
216 | * EINVAL The value specified by attr is invalid. | |
217 | * EINVAL The value of the attribute being set is not valid. | |
218 | */ | |
219 | int | |
220 | posix_spawnattr_setflags(posix_spawnattr_t *attr, short flags) | |
221 | { | |
222 | _posix_spawnattr_t psattr; | |
223 | ||
224 | if (attr == NULL || *attr == NULL) | |
225 | return EINVAL; | |
226 | ||
227 | psattr = *(_posix_spawnattr_t *)attr; | |
228 | psattr->psa_flags = flags; | |
229 | ||
230 | return (0); | |
231 | } | |
232 | ||
233 | ||
234 | /* | |
235 | * posix_spawnattr_getflags | |
236 | * | |
237 | * Description: Retrieve the spawn attributes flag for the spawn attributes | |
238 | * object referenced by 'attr' and place them in the memory | |
239 | * location referenced by 'flagsp' | |
240 | * | |
241 | * Parameters: attr The spawn attributes object whose flags | |
242 | * are to be retrieved | |
243 | * flagsp A pointer to a short value to receive | |
244 | * the flags | |
245 | * | |
246 | * Returns: 0 Success | |
247 | * | |
248 | * Implicit Returns: | |
249 | * *flagps (modified) The flags value from the spawn | |
250 | * attributes object | |
251 | * | |
252 | * NOTIMP: Allowed failures (checking NOT required): | |
253 | * EINVAL The value specified by attr is invalid. | |
254 | * EINVAL The value of the attribute being set is not valid. | |
255 | */ | |
256 | int | |
257 | posix_spawnattr_getflags(const posix_spawnattr_t * __restrict attr, | |
258 | short * __restrict flagsp) | |
259 | { | |
260 | _posix_spawnattr_t psattr; | |
261 | ||
262 | if (attr == NULL || *attr == NULL) | |
263 | return EINVAL; | |
264 | ||
265 | psattr = *(_posix_spawnattr_t *)attr; | |
266 | *flagsp = psattr->psa_flags; | |
267 | ||
268 | return (0); | |
269 | } | |
270 | ||
271 | ||
272 | /* | |
273 | * posix_spawnattr_getsigdefault | |
274 | * | |
275 | * Description: Retrieve the set of signals to be set to default according to | |
276 | * the spawn attribute value referenced by 'attr' and place the | |
277 | * result into the memory containing the sigset_t referenced by | |
278 | * 'sigdefault' | |
279 | * | |
280 | * Parameters: attr The spawn attributes object whose | |
281 | * signal set for default signals is to | |
282 | * be retrieved | |
283 | * sigdefault A pointer to the sigset_t to receive | |
284 | * the signal set | |
285 | * | |
286 | * Returns: 0 Success | |
287 | * | |
288 | * Implicit Returns: | |
289 | * *sigdefault (modified) The signal set of signals to default | |
290 | * from the spawn attributes object | |
291 | */ | |
292 | int | |
293 | posix_spawnattr_getsigdefault(const posix_spawnattr_t * __restrict attr, | |
294 | sigset_t * __restrict sigdefault) | |
295 | { | |
296 | _posix_spawnattr_t psattr; | |
297 | ||
298 | if (attr == NULL || *attr == NULL) | |
299 | return EINVAL; | |
300 | ||
301 | psattr = *(_posix_spawnattr_t *)attr; | |
302 | *sigdefault = psattr->psa_sigdefault; | |
303 | ||
304 | return (0); | |
305 | } | |
306 | ||
307 | ||
308 | /* | |
309 | * posix_spawnattr_getpgroup | |
310 | * | |
311 | * Description: Obtain the value of the spawn process group attribute from the | |
312 | * spawn attributes object referenced by 'attr' and place the | |
313 | * results in the memory location referenced by 'pgroup' | |
314 | * | |
315 | * Parameters: attr The spawn attributes object whose | |
316 | * process group information is to be | |
317 | * retrieved | |
318 | * pgroup A pointer to the pid_t to receive the | |
319 | * process group | |
320 | * | |
321 | * Returns: 0 Success | |
322 | * | |
323 | * Implicit Returns: | |
324 | * *pgroup (modified) The process group information from the | |
325 | * spawn attributes object | |
326 | */ | |
327 | int | |
328 | posix_spawnattr_getpgroup(const posix_spawnattr_t * __restrict attr, | |
329 | pid_t * __restrict pgroup) | |
330 | { | |
331 | _posix_spawnattr_t psattr; | |
332 | ||
333 | if (attr == NULL || *attr == NULL) | |
334 | return EINVAL; | |
335 | ||
336 | psattr = *(_posix_spawnattr_t *)attr; | |
337 | *pgroup = psattr->psa_pgroup; | |
338 | ||
339 | return (0); | |
340 | } | |
341 | ||
342 | ||
343 | /* | |
344 | * posix_spawnattr_getsigmask | |
345 | * | |
346 | * Description: Obtain the value of the spawn signal mask attribute from the | |
347 | * spawn attributes object referenced by 'attr' and place the | |
348 | * result into the memory containing the sigset_t referenced by | |
349 | * 'sigmask' | |
350 | * | |
351 | * Parameters: attr The spawn attributes object whose | |
352 | * signal set for masked signals is to | |
353 | * be retrieved | |
354 | * sigmask A pointer to the sigset_t to receive | |
355 | * the signal set | |
356 | * | |
357 | * Returns: 0 Success | |
358 | * | |
359 | * Implicit Returns: | |
360 | * *sigmask (modified) The signal set of signals to mask | |
361 | * from the spawn attributes object | |
362 | */ | |
363 | int | |
364 | posix_spawnattr_getsigmask(const posix_spawnattr_t * __restrict attr, | |
365 | sigset_t * __restrict sigmask) | |
366 | { | |
367 | _posix_spawnattr_t psattr; | |
368 | ||
369 | if (attr == NULL || *attr == NULL) | |
370 | return EINVAL; | |
371 | ||
372 | psattr = *(_posix_spawnattr_t *)attr; | |
373 | *sigmask = psattr->psa_sigmask; | |
374 | ||
375 | return (0); | |
376 | } | |
377 | ||
378 | /* | |
379 | * posix_spawnattr_getbinpref_np | |
380 | * | |
381 | * Description: Obtain the value of the spawn binary preferences attribute from | |
382 | * the spawn attributes object referenced by 'attr' and place the | |
383 | * result into the memory referenced by 'pref'. | |
384 | * | |
385 | * Parameters: attr The spawn attributes object whose | |
386 | * binary preferences are to be retrieved | |
387 | * count The size of the cpu_type_t array | |
388 | * pref An array of cpu types | |
389 | * ocount The actual number copied | |
390 | * | |
391 | * Returns: 0 No binary preferences found | |
392 | * > 0 The number of cpu types (less than | |
393 | * count) copied over from 'attr'. | |
394 | * | |
395 | * Implicit Returns: | |
396 | * *pref (modified) The binary preferences array | |
397 | * from the spawn attributes object | |
398 | */ | |
399 | int | |
400 | posix_spawnattr_getbinpref_np(const posix_spawnattr_t * __restrict attr, | |
401 | size_t count, cpu_type_t *pref, size_t * __restrict ocount) | |
402 | { | |
403 | _posix_spawnattr_t psattr; | |
404 | int i = 0; | |
405 | ||
406 | if (attr == NULL || *attr == NULL) | |
407 | return EINVAL; | |
408 | ||
409 | psattr = *(_posix_spawnattr_t *)attr; | |
410 | for (i = 0; i < count && i < 4; i++) { | |
411 | pref[i] = psattr->psa_binprefs[i]; | |
412 | } | |
413 | ||
414 | if (ocount) | |
415 | *ocount = i; | |
416 | return 0; | |
417 | } | |
418 | ||
419 | ||
420 | /* | |
421 | * posix_spawnattr_getpcontrol_np | |
422 | * | |
423 | * Description: Retrieve the process control property set default according to | |
424 | * the spawn attribute value referenced by 'attr' and place the | |
425 | * result into the memory containing the control referenced by | |
426 | * 'pcontrol' | |
427 | * | |
428 | * Parameters: attr The spawn attributes object whose | |
429 | * signal set for default signals is to | |
430 | * be retrieved | |
431 | * pcontrol A pointer to an int to receive | |
432 | * the process control info | |
433 | * | |
434 | * Returns: 0 Success | |
435 | * | |
436 | * Implicit Returns: | |
437 | * *pcontrol (modified) The signal set of signals to default | |
438 | * from the spawn attributes object | |
439 | */ | |
440 | int | |
441 | posix_spawnattr_getpcontrol_np(const posix_spawnattr_t * __restrict attr, | |
442 | int * __restrict pcontrol) | |
443 | { | |
444 | _posix_spawnattr_t psattr; | |
445 | ||
446 | if (attr == NULL || *attr == NULL) | |
447 | return EINVAL; | |
448 | ||
449 | psattr = *(_posix_spawnattr_t *)attr; | |
450 | *pcontrol = psattr->psa_pcontrol; | |
451 | ||
452 | return (0); | |
453 | } | |
454 | ||
455 | /* | |
456 | * posix_spawnattr_getprocesstype_np | |
457 | * | |
458 | * Description: Retrieve the process specific behaviors and app launch types | |
459 | * spawn attribute value referenced by 'attr' and place the | |
460 | * result into the memory containing the control referenced by | |
461 | * 'proctype' | |
462 | * | |
463 | * Parameters: attr The spawn attributes object whose | |
464 | * signal set for default signals is to | |
465 | * be retrieved | |
466 | * proctype A pointer to an int to receive | |
467 | * the process type info | |
468 | * | |
469 | * Returns: 0 Success | |
470 | * | |
471 | * Implicit Returns: | |
472 | * *proctype (modified) The process type set to value | |
473 | * from the spawn attributes object | |
474 | */ | |
475 | int | |
476 | posix_spawnattr_getprocesstype_np(const posix_spawnattr_t * __restrict attr, | |
477 | int * __restrict proctype) | |
478 | { | |
479 | _posix_spawnattr_t psattr; | |
480 | ||
481 | if (attr == NULL || *attr == NULL) | |
482 | return EINVAL; | |
483 | ||
484 | psattr = *(_posix_spawnattr_t *)attr; | |
485 | *proctype = psattr->psa_apptype; | |
486 | ||
487 | return (0); | |
488 | } | |
489 | /* | |
490 | * posix_spawnattr_setsigdefault | |
491 | * | |
492 | * Description: Set the set of signals to be set to default for the spawn | |
493 | * attribute value referenced by 'attr' from the memory | |
494 | * containing the sigset_t referenced by 'sigdefault' | |
495 | * | |
496 | * Parameters: attr The spawn attributes object whose | |
497 | * signal set for default signals is to | |
498 | * be set | |
499 | * sigdefault A pointer to the sigset_t from which to | |
500 | * obtain the signal set | |
501 | * | |
502 | * Returns: 0 Success | |
503 | */ | |
504 | int | |
505 | posix_spawnattr_setsigdefault(posix_spawnattr_t * __restrict attr, | |
506 | const sigset_t * __restrict sigdefault) | |
507 | { | |
508 | _posix_spawnattr_t psattr; | |
509 | ||
510 | if (attr == NULL || *attr == NULL) | |
511 | return EINVAL; | |
512 | ||
513 | psattr = *(_posix_spawnattr_t *)attr; | |
514 | psattr->psa_sigdefault = *sigdefault; | |
515 | ||
516 | return (0); | |
517 | } | |
518 | ||
519 | ||
520 | /* | |
521 | * posix_spawnattr_setpgroup | |
522 | * | |
523 | * Description: Set the value of the spawn process group attribute for the | |
524 | * spawn attributes object referenced by 'attr' from the value | |
525 | * of 'pgroup' | |
526 | * | |
527 | * Parameters: attr The spawn attributes object for which | |
528 | * the process group information is to be | |
529 | * set | |
530 | * pgroup The process group to set | |
531 | * | |
532 | * Returns: 0 Success | |
533 | */ | |
534 | int | |
535 | posix_spawnattr_setpgroup(posix_spawnattr_t * attr, pid_t pgroup) | |
536 | { | |
537 | _posix_spawnattr_t psattr; | |
538 | ||
539 | if (attr == NULL || *attr == NULL) | |
540 | return EINVAL; | |
541 | ||
542 | psattr = *(_posix_spawnattr_t *)attr; | |
543 | psattr->psa_pgroup = pgroup; | |
544 | ||
545 | return (0); | |
546 | } | |
547 | ||
548 | ||
549 | /* | |
550 | * posix_spawnattr_setsigmask | |
551 | * | |
552 | * Description: Set the set of signals to be masked for the spawn attribute | |
553 | * value referenced by 'attr' from the memory containing the | |
554 | * sigset_t referenced by 'sigmask' | |
555 | * | |
556 | * Parameters: attr The spawn attributes object whose | |
557 | * signal set for masked signals is to | |
558 | * be set | |
559 | * sigmask A pointer to the sigset_t from which to | |
560 | * obtain the signal set | |
561 | * | |
562 | * Returns: 0 Success | |
563 | */ | |
564 | int | |
565 | posix_spawnattr_setsigmask(posix_spawnattr_t * __restrict attr, | |
566 | const sigset_t * __restrict sigmask) | |
567 | { | |
568 | _posix_spawnattr_t psattr; | |
569 | ||
570 | if (attr == NULL || *attr == NULL) | |
571 | return EINVAL; | |
572 | ||
573 | psattr = *(_posix_spawnattr_t *)attr; | |
574 | psattr->psa_sigmask = *sigmask; | |
575 | ||
576 | return (0); | |
577 | } | |
578 | ||
579 | ||
580 | /* | |
581 | * posix_spawnattr_setbinpref_np | |
582 | * | |
583 | * Description: Set the universal binary preferences for the spawn attribute | |
584 | * value referenced by 'attr' from the memory containing the | |
585 | * cpu_type_t array referenced by 'pref', size of 'count' | |
586 | * | |
587 | * Parameters: attr The spawn attributes object whose | |
588 | * binary preferences are to be set | |
589 | * count Size of the array pointed to by 'pref' | |
590 | * pref cpu_type_t array of binary preferences | |
591 | * ocount The actual number copied | |
592 | * | |
593 | * Returns: 0 No preferences copied | |
594 | * > 0 Number of preferences copied | |
595 | * | |
596 | * Note: The posix_spawnattr_t currently only holds four cpu_type_t's. | |
597 | * If the caller provides more preferences than this limit, they | |
598 | * will be ignored, as reflected in the return value. | |
599 | */ | |
600 | int | |
601 | posix_spawnattr_setbinpref_np(posix_spawnattr_t * __restrict attr, | |
602 | size_t count, cpu_type_t *pref, size_t * __restrict ocount) | |
603 | { | |
604 | _posix_spawnattr_t psattr; | |
605 | int i = 0; | |
606 | ||
607 | if (attr == NULL || *attr == NULL) | |
608 | return EINVAL; | |
609 | ||
610 | psattr = *(_posix_spawnattr_t *)attr; | |
611 | for (i = 0; i < count && i < 4; i++) { | |
612 | psattr->psa_binprefs[i] = pref[i]; | |
613 | } | |
614 | ||
615 | /* return number of binprefs copied over */ | |
616 | if (ocount) | |
617 | *ocount = i; | |
618 | return 0; | |
619 | } | |
620 | ||
621 | ||
622 | /* | |
623 | * posix_spawnattr_setpcontrol_np | |
624 | * | |
625 | * Description: Set the process control property according to | |
626 | * attribute value referenced by 'attr' from the memory | |
627 | * containing the int value 'pcontrol' | |
628 | * | |
629 | * Parameters: attr The spawn attributes object whose | |
630 | * signal set for default signals is to | |
631 | * be set | |
632 | * pcontrol An int value of the process control info | |
633 | * | |
634 | * Returns: 0 Success | |
635 | */ | |
636 | int | |
637 | posix_spawnattr_setpcontrol_np(posix_spawnattr_t * __restrict attr, | |
638 | const int pcontrol) | |
639 | { | |
640 | _posix_spawnattr_t psattr; | |
641 | ||
642 | if (attr == NULL || *attr == NULL) | |
643 | return EINVAL; | |
644 | ||
645 | psattr = *(_posix_spawnattr_t *)attr; | |
646 | psattr->psa_pcontrol = pcontrol; | |
647 | ||
648 | return (0); | |
649 | } | |
650 | ||
651 | ||
652 | /* | |
653 | * posix_spawnattr_setprocesstype_np | |
654 | * | |
655 | * Description: Set the process specific behaviors and app launch type | |
656 | * attribute value referenced by 'attr' from the memory | |
657 | * containing the int value 'proctype' | |
658 | * | |
659 | * Parameters: attr The spawn attributes object whose | |
660 | * signal set for default signals is to | |
661 | * be set | |
662 | * proctype An int value of the process type info | |
663 | * | |
664 | * Returns: 0 Success | |
665 | */ | |
666 | int | |
667 | posix_spawnattr_setprocesstype_np(posix_spawnattr_t * __restrict attr, | |
668 | const int proctype) | |
669 | { | |
670 | _posix_spawnattr_t psattr; | |
671 | ||
672 | if (attr == NULL || *attr == NULL) | |
673 | return EINVAL; | |
674 | ||
675 | psattr = *(_posix_spawnattr_t *)attr; | |
676 | psattr->psa_apptype = proctype; | |
677 | ||
678 | return (0); | |
679 | } | |
680 | ||
681 | /* | |
682 | * posix_spawn_createportactions_np | |
683 | * Description: create a new posix_spawn_port_actions struct and link | |
684 | * it into the posix_spawnattr. | |
685 | */ | |
686 | static int | |
687 | posix_spawn_createportactions_np(posix_spawnattr_t *attr) | |
688 | { | |
689 | _posix_spawnattr_t psattr; | |
690 | _posix_spawn_port_actions_t acts; | |
691 | ||
692 | if (attr == NULL || *attr == NULL) | |
693 | return EINVAL; | |
694 | ||
695 | psattr = *(_posix_spawnattr_t *)attr; | |
696 | acts = (_posix_spawn_port_actions_t)malloc(PS_PORT_ACTIONS_SIZE(2)); | |
697 | if (acts == NULL) | |
698 | return ENOMEM; | |
699 | ||
700 | acts->pspa_alloc = 2; | |
701 | acts->pspa_count = 0; | |
702 | ||
703 | psattr->psa_ports = acts; | |
704 | return 0; | |
705 | } | |
706 | ||
707 | /* | |
708 | * posix_spawn_growportactions_np | |
709 | * Description: Enlarge the size of portactions if necessary | |
710 | */ | |
711 | static int | |
712 | posix_spawn_growportactions_np(posix_spawnattr_t *attr) | |
713 | { | |
714 | _posix_spawnattr_t psattr; | |
715 | _posix_spawn_port_actions_t acts; | |
716 | int newnum; | |
717 | ||
718 | if (attr == NULL || *attr == NULL) | |
719 | return EINVAL; | |
720 | ||
721 | psattr = *(_posix_spawnattr_t *)attr; | |
722 | acts = psattr->psa_ports; | |
723 | if (acts == NULL) | |
724 | return EINVAL; | |
725 | ||
726 | /* Double number of port actions allocated for */ | |
727 | newnum = 2 * acts->pspa_alloc; | |
728 | acts = realloc(acts, PS_PORT_ACTIONS_SIZE(newnum)); | |
729 | if (acts == NULL) | |
730 | return ENOMEM; | |
731 | ||
732 | acts->pspa_alloc = newnum; | |
733 | psattr->psa_ports = acts; | |
734 | return 0; | |
735 | } | |
736 | ||
737 | /* | |
738 | * posix_spawn_destroyportactions_np | |
739 | * Description: clean up portactions struct in posix_spawnattr_t attr | |
740 | */ | |
741 | static int | |
742 | posix_spawn_destroyportactions_np(posix_spawnattr_t *attr) | |
743 | { | |
744 | _posix_spawnattr_t psattr; | |
745 | _posix_spawn_port_actions_t acts; | |
746 | ||
747 | if (attr == NULL || *attr == NULL) | |
748 | return EINVAL; | |
749 | ||
750 | psattr = *(_posix_spawnattr_t *)attr; | |
751 | acts = psattr->psa_ports; | |
752 | if (acts == NULL) | |
753 | return EINVAL; | |
754 | ||
755 | free(acts); | |
756 | return 0; | |
757 | } | |
758 | ||
3e170ce0 A |
759 | /* |
760 | * posix_spawn_destroycoalition_info_np | |
761 | * Description: clean up coalition_info struct in posix_spawnattr_t attr | |
762 | */ | |
763 | static int | |
764 | posix_spawn_destroycoalition_info_np(posix_spawnattr_t *attr) | |
765 | { | |
766 | _posix_spawnattr_t psattr; | |
767 | struct _posix_spawn_coalition_info *coal_info; | |
768 | ||
769 | if (attr == NULL || *attr == NULL) | |
770 | return EINVAL; | |
771 | ||
772 | psattr = *(_posix_spawnattr_t *)attr; | |
773 | coal_info = psattr->psa_coalition_info; | |
774 | if (coal_info == NULL) | |
775 | return EINVAL; | |
776 | ||
777 | psattr->psa_coalition_info = NULL; | |
778 | free(coal_info); | |
779 | return 0; | |
780 | } | |
781 | ||
490019cf A |
782 | /* |
783 | * posix_spawn_destroypersona_info_np | |
784 | * Description: clean up persona_info struct in posix_spawnattr_t attr | |
785 | */ | |
786 | static int | |
787 | posix_spawn_destroypersona_info_np(posix_spawnattr_t *attr) | |
788 | { | |
789 | _posix_spawnattr_t psattr; | |
790 | struct _posix_spawn_persona_info *persona; | |
791 | ||
792 | if (attr == NULL || *attr == NULL) | |
793 | return EINVAL; | |
794 | ||
795 | psattr = *(_posix_spawnattr_t *)attr; | |
796 | persona = psattr->psa_persona_info; | |
797 | if (persona == NULL) | |
798 | return EINVAL; | |
799 | ||
800 | psattr->psa_persona_info = NULL; | |
801 | free(persona); | |
802 | return 0; | |
803 | } | |
804 | ||
39236c6e A |
805 | /* |
806 | * posix_spawn_appendportaction_np | |
807 | * Description: append a port action, grow the array if necessary | |
808 | */ | |
809 | static int | |
810 | posix_spawn_appendportaction_np(posix_spawnattr_t *attr, _ps_port_action_t *act) | |
811 | { | |
812 | _posix_spawnattr_t psattr; | |
813 | _posix_spawn_port_actions_t acts; | |
814 | ||
815 | if (attr == NULL || *attr == NULL || act == NULL) { | |
816 | return EINVAL; | |
817 | } | |
818 | ||
819 | psattr = *(_posix_spawnattr_t *)attr; | |
820 | acts = psattr->psa_ports; | |
821 | ||
822 | // Have any port actions been created yet? | |
823 | if (acts == NULL) { | |
824 | int err = posix_spawn_createportactions_np(attr); | |
825 | if (err) { | |
826 | return err; | |
827 | } | |
828 | acts = psattr->psa_ports; | |
829 | } | |
830 | ||
831 | // Is there enough room? | |
832 | if (acts->pspa_alloc == acts->pspa_count) { | |
833 | int err = posix_spawn_growportactions_np(attr); | |
834 | if (err) { | |
835 | return err; | |
836 | } | |
837 | acts = psattr->psa_ports; | |
838 | } | |
839 | ||
840 | // Add this action to next spot in array | |
841 | acts->pspa_actions[acts->pspa_count] = *act; | |
842 | acts->pspa_count++; | |
843 | ||
844 | return 0; | |
845 | } | |
846 | ||
847 | /* | |
848 | * posix_spawnattr_setspecialport_np | |
849 | * | |
850 | * Description: Set a new value for a mach special port in the spawned task. | |
851 | * | |
852 | * Parameters: attr The spawn attributes object for the | |
853 | * new process | |
854 | * new_port The new value for the special port | |
855 | * which The particular port to be set | |
856 | * (see task_set_special_port for details) | |
857 | * | |
858 | * Returns: 0 Success | |
859 | * ENOMEM Couldn't allocate memory | |
860 | */ | |
861 | int | |
862 | posix_spawnattr_setspecialport_np( | |
863 | posix_spawnattr_t *attr, | |
864 | mach_port_t new_port, | |
865 | int which) | |
866 | { | |
867 | _ps_port_action_t action = { | |
868 | .port_type = PSPA_SPECIAL, | |
869 | .new_port = new_port, | |
870 | .which = which, | |
871 | }; | |
872 | return posix_spawn_appendportaction_np(attr, &action); | |
873 | } | |
874 | ||
875 | /* | |
876 | * posix_spawnattr_setexceptionports_np | |
877 | * | |
878 | * Description: Set a new port for a set of exception ports in the spawned task. | |
879 | * | |
880 | * Parameters: attr The spawn attributes object for the | |
881 | * new process | |
882 | * mask A bitfield indicating which exceptions | |
883 | * to associate the port with | |
884 | * new_port The new value for the exception port | |
885 | * behavior The default behavior for the port | |
886 | * flavor The default flavor for the port | |
887 | * (see task_set_exception_ports) | |
888 | * | |
889 | * Returns: 0 Success | |
890 | */ | |
891 | int | |
892 | posix_spawnattr_setexceptionports_np( | |
893 | posix_spawnattr_t *attr, | |
894 | exception_mask_t mask, | |
895 | mach_port_t new_port, | |
896 | exception_behavior_t behavior, | |
897 | thread_state_flavor_t flavor) | |
898 | { | |
899 | _ps_port_action_t action = { | |
900 | .port_type = PSPA_EXCEPTION, | |
901 | .mask = mask, | |
902 | .new_port = new_port, | |
903 | .behavior = behavior, | |
904 | .flavor = flavor, | |
905 | }; | |
906 | return posix_spawn_appendportaction_np(attr, &action); | |
907 | } | |
908 | ||
909 | /* | |
910 | * posix_spawnattr_setauditsessionport_np | |
911 | * | |
912 | * Description: Set the audit session port rights attribute in the spawned task. | |
913 | * This is used to securely set the audit session information for | |
914 | * the new task. | |
915 | * | |
916 | * Parameters: attr The spawn attributes object for the | |
917 | * new process | |
918 | * au_sessionport The audit session send port right | |
919 | * | |
920 | * Returns: 0 Success | |
921 | */ | |
922 | int | |
923 | posix_spawnattr_setauditsessionport_np( | |
924 | posix_spawnattr_t *attr, | |
925 | mach_port_t au_sessionport) | |
926 | { | |
927 | _ps_port_action_t action = { | |
928 | .port_type = PSPA_AU_SESSION, | |
929 | .new_port = au_sessionport, | |
930 | }; | |
931 | return posix_spawn_appendportaction_np(attr, &action); | |
932 | } | |
933 | ||
934 | ||
935 | /* | |
936 | * posix_spawn_file_actions_init | |
937 | * | |
938 | * Description: Initialize a spawn file actions object attr with default values | |
939 | * | |
940 | * Parameters: file_actions The spawn file actions object to be | |
941 | * initialized | |
942 | * | |
943 | * Returns: 0 Success | |
944 | * ENOMEM Insufficient memory exists to | |
945 | * initialize the spawn file actions | |
946 | * object. | |
947 | * | |
948 | * Note: As an implementation detail, the externally visibily type | |
949 | * posix_spawn_file_actions_t is defined to be a void *, and | |
950 | * initialization involves allocation of a memory object. | |
951 | * Subsequent changes to the spawn file actions may result in | |
952 | * reallocation under the covers. | |
953 | * | |
954 | * Reinitialization of an already initialized spawn file actions | |
955 | * object will result in memory being leaked. Because spawn | |
956 | * file actions are not required to be used in conjunction with a | |
957 | * static initializer, there is no way to distinguish a spawn | |
958 | * file actions with stack garbage from one that's been | |
959 | * initialized. This is arguably an API design error. | |
960 | */ | |
961 | int | |
962 | posix_spawn_file_actions_init(posix_spawn_file_actions_t *file_actions) | |
963 | { | |
964 | _posix_spawn_file_actions_t *psactsp = (_posix_spawn_file_actions_t *)file_actions; | |
965 | int err = 0; | |
966 | ||
967 | if ((*psactsp = (_posix_spawn_file_actions_t)malloc(PSF_ACTIONS_SIZE(PSF_ACTIONS_INIT_COUNT))) == NULL) { | |
968 | err = ENOMEM; | |
969 | } else { | |
970 | (*psactsp)->psfa_act_alloc = PSF_ACTIONS_INIT_COUNT; | |
971 | (*psactsp)->psfa_act_count = 0; | |
972 | } | |
973 | ||
974 | return (err); | |
975 | } | |
976 | ||
977 | ||
978 | /* | |
979 | * posix_spawn_file_actions_destroy | |
980 | * | |
981 | * Description: Destroy a spawn file actions object that was previously | |
982 | * initialized via posix_spawn_file_actions_init() by freeing any | |
983 | * memory associated with it and setting it to an invalid value. | |
984 | * | |
985 | * Parameters: attr The spawn file actions object to be | |
986 | * destroyed. | |
987 | * | |
988 | * Returns: 0 Success | |
989 | * | |
990 | * Notes: The destroyed spawn file actions results in the void * pointer | |
991 | * being set to NULL; subsequent use without reinitialization | |
992 | * will result in explicit program failure (rather than merely | |
993 | * "undefined behaviour"). | |
994 | * | |
995 | * NOTIMP: Allowed failures (checking NOT required): | |
996 | * EINVAL The value specified by file_actions is invalid. | |
997 | */ | |
998 | int | |
999 | posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *file_actions) | |
1000 | { | |
1001 | _posix_spawn_file_actions_t psacts; | |
1002 | ||
1003 | if (file_actions == NULL || *file_actions == NULL) | |
1004 | return EINVAL; | |
1005 | ||
1006 | psacts = *(_posix_spawn_file_actions_t *)file_actions; | |
1007 | free(psacts); | |
1008 | *file_actions = NULL; | |
1009 | ||
1010 | return (0); | |
1011 | } | |
1012 | ||
1013 | ||
1014 | /* | |
1015 | * _posix_spawn_file_actions_grow | |
1016 | * | |
1017 | * Description: Grow the available list of file actions associated with the | |
1018 | * pointer to the structure provided; replace the contents of the | |
1019 | * pointer as a side effect. | |
1020 | * | |
1021 | * Parameters: psactsp Pointer to _posix_spawn_file_actions_t | |
1022 | * to grow | |
1023 | * | |
1024 | * Returns: 0 Success | |
1025 | * ENOMEM Insufficient memory for operation | |
1026 | * | |
1027 | * Notes: This code is common to all posix_spawn_file_actions_*() | |
1028 | * functions, since we use a naieve data structure implementation | |
1029 | * at present. Future optimization will likely change this. | |
1030 | */ | |
1031 | static int | |
1032 | _posix_spawn_file_actions_grow(_posix_spawn_file_actions_t *psactsp) | |
1033 | { | |
1034 | int new_alloc = (*psactsp)->psfa_act_alloc * 2; | |
1035 | _posix_spawn_file_actions_t new_psacts; | |
1036 | ||
1037 | /* | |
1038 | * XXX may want to impose an administrative limit here; POSIX does | |
1039 | * XXX not provide for an administrative error return in this case, | |
1040 | * XXX so it's probably acceptable to just fail catastrophically | |
1041 | * XXX instead of implementing one. | |
1042 | */ | |
1043 | if ((new_psacts = (_posix_spawn_file_actions_t)realloc((*psactsp), PSF_ACTIONS_SIZE(new_alloc))) == NULL) { | |
1044 | return (ENOMEM); | |
1045 | } | |
1046 | new_psacts->psfa_act_alloc = new_alloc; | |
1047 | *psactsp = new_psacts; | |
1048 | ||
1049 | return (0); | |
1050 | } | |
1051 | ||
1052 | ||
1053 | /* | |
1054 | * posix_spawn_file_actions_addopen | |
1055 | * | |
1056 | * Description: Add an open action to the object referenced by 'file_actions' | |
1057 | * that will cause the file named by 'path' to be attempted to be | |
1058 | * opened with flags 'oflag' and mode 'mode', and, if successful, | |
1059 | * return as descriptor 'filedes' to the spawned process. | |
1060 | * | |
1061 | * Parameters: file_actions File action object to augment | |
1062 | * filedes fd that open is to use | |
1063 | * path path to file to open | |
1064 | * oflag open file flags | |
1065 | * mode open file mode | |
1066 | * | |
1067 | * Returns: 0 Success | |
1068 | * EBADF The value specified by fildes is | |
1069 | * negative or greater than or equal to | |
1070 | * {OPEN_MAX}. | |
1071 | * ENOMEM Insufficient memory exists to add to | |
1072 | * the spawn file actions object. | |
1073 | * | |
1074 | * NOTIMP: Allowed failures (checking NOT required): | |
1075 | * EINVAL The value specified by file_actions is invalid. | |
1076 | */ | |
1077 | int | |
1078 | posix_spawn_file_actions_addopen( | |
1079 | posix_spawn_file_actions_t * __restrict file_actions, | |
1080 | int filedes, const char * __restrict path, int oflag, | |
1081 | mode_t mode) | |
1082 | { | |
1083 | _posix_spawn_file_actions_t *psactsp; | |
1084 | _psfa_action_t *psfileact; | |
1085 | ||
1086 | if (file_actions == NULL || *file_actions == NULL) | |
1087 | return EINVAL; | |
1088 | ||
1089 | psactsp = (_posix_spawn_file_actions_t *)file_actions; | |
1090 | /* Range check; required by POSIX */ | |
1091 | if (filedes < 0 || filedes >= OPEN_MAX) | |
1092 | return (EBADF); | |
1093 | ||
1094 | /* If we do not have enough slots, grow the structure */ | |
1095 | if ((*psactsp)->psfa_act_count == (*psactsp)->psfa_act_alloc) { | |
1096 | /* need to grow file actions structure */ | |
1097 | if (_posix_spawn_file_actions_grow(psactsp)) | |
1098 | return (ENOMEM); | |
1099 | } | |
1100 | ||
1101 | /* | |
1102 | * Allocate next available slot and fill it out | |
1103 | */ | |
1104 | psfileact = &(*psactsp)->psfa_act_acts[(*psactsp)->psfa_act_count++]; | |
1105 | ||
1106 | psfileact->psfaa_type = PSFA_OPEN; | |
1107 | psfileact->psfaa_filedes = filedes; | |
1108 | psfileact->psfaa_openargs.psfao_oflag = oflag; | |
1109 | psfileact->psfaa_openargs.psfao_mode = mode; | |
1110 | strlcpy(psfileact->psfaa_openargs.psfao_path, path, PATH_MAX); | |
1111 | ||
1112 | return (0); | |
1113 | } | |
1114 | ||
1115 | ||
1116 | /* | |
1117 | * posix_spawn_file_actions_addclose | |
1118 | * | |
1119 | * Description: Add a close action to the object referenced by 'file_actions' | |
1120 | * that will cause the file referenced by 'filedes' to be | |
1121 | * attempted to be closed in the spawned process. | |
1122 | * | |
1123 | * Parameters: file_actions File action object to augment | |
1124 | * filedes fd to close | |
1125 | * | |
1126 | * Returns: 0 Success | |
1127 | * EBADF The value specified by fildes is | |
1128 | * negative or greater than or equal to | |
1129 | * {OPEN_MAX}. | |
1130 | * ENOMEM Insufficient memory exists to add to | |
1131 | * the spawn file actions object. | |
1132 | * | |
1133 | * NOTIMP: Allowed failures (checking NOT required): | |
1134 | * EINVAL The value specified by file_actions is invalid. | |
1135 | */ | |
1136 | int | |
1137 | posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *file_actions, | |
1138 | int filedes) | |
1139 | { | |
1140 | _posix_spawn_file_actions_t *psactsp; | |
1141 | _psfa_action_t *psfileact; | |
1142 | ||
1143 | if (file_actions == NULL || *file_actions == NULL) | |
1144 | return EINVAL; | |
1145 | ||
1146 | psactsp = (_posix_spawn_file_actions_t *)file_actions; | |
1147 | /* Range check; required by POSIX */ | |
1148 | if (filedes < 0 || filedes >= OPEN_MAX) | |
1149 | return (EBADF); | |
1150 | ||
1151 | /* If we do not have enough slots, grow the structure */ | |
1152 | if ((*psactsp)->psfa_act_count == (*psactsp)->psfa_act_alloc) { | |
1153 | /* need to grow file actions structure */ | |
1154 | if (_posix_spawn_file_actions_grow(psactsp)) | |
1155 | return (ENOMEM); | |
1156 | } | |
1157 | ||
1158 | /* | |
1159 | * Allocate next available slot and fill it out | |
1160 | */ | |
1161 | psfileact = &(*psactsp)->psfa_act_acts[(*psactsp)->psfa_act_count++]; | |
1162 | ||
1163 | psfileact->psfaa_type = PSFA_CLOSE; | |
1164 | psfileact->psfaa_filedes = filedes; | |
1165 | ||
1166 | return (0); | |
1167 | } | |
1168 | ||
1169 | ||
1170 | /* | |
1171 | * posix_spawn_file_actions_adddup2 | |
1172 | * | |
1173 | * Description: Add a dup2 action to the object referenced by 'file_actions' | |
1174 | * that will cause the file referenced by 'filedes' to be | |
1175 | * attempted to be dup2'ed to the descriptor 'newfiledes' in the | |
1176 | * spawned process. | |
1177 | * | |
1178 | * Parameters: file_actions File action object to augment | |
1179 | * filedes fd to dup2 | |
1180 | * newfiledes fd to dup2 it to | |
1181 | * | |
1182 | * Returns: 0 Success | |
1183 | * EBADF The value specified by either fildes | |
1184 | * or by newfiledes is negative or greater | |
1185 | * than or equal to {OPEN_MAX}. | |
1186 | * ENOMEM Insufficient memory exists to add to | |
1187 | * the spawn file actions object. | |
1188 | * | |
1189 | * NOTIMP: Allowed failures (checking NOT required): | |
1190 | * EINVAL The value specified by file_actions is invalid. | |
1191 | */ | |
1192 | int | |
1193 | posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *file_actions, | |
1194 | int filedes, int newfiledes) | |
1195 | { | |
1196 | _posix_spawn_file_actions_t *psactsp; | |
1197 | _psfa_action_t *psfileact; | |
1198 | ||
1199 | if (file_actions == NULL || *file_actions == NULL) | |
1200 | return EINVAL; | |
1201 | ||
1202 | psactsp = (_posix_spawn_file_actions_t *)file_actions; | |
1203 | /* Range check; required by POSIX */ | |
1204 | if (filedes < 0 || filedes >= OPEN_MAX || | |
1205 | newfiledes < 0 || newfiledes >= OPEN_MAX) | |
1206 | return (EBADF); | |
1207 | ||
1208 | /* If we do not have enough slots, grow the structure */ | |
1209 | if ((*psactsp)->psfa_act_count == (*psactsp)->psfa_act_alloc) { | |
1210 | /* need to grow file actions structure */ | |
1211 | if (_posix_spawn_file_actions_grow(psactsp)) | |
1212 | return (ENOMEM); | |
1213 | } | |
1214 | ||
1215 | /* | |
1216 | * Allocate next available slot and fill it out | |
1217 | */ | |
1218 | psfileact = &(*psactsp)->psfa_act_acts[(*psactsp)->psfa_act_count++]; | |
1219 | ||
1220 | psfileact->psfaa_type = PSFA_DUP2; | |
1221 | psfileact->psfaa_filedes = filedes; | |
1222 | psfileact->psfaa_openargs.psfao_oflag = newfiledes; | |
1223 | ||
1224 | return (0); | |
1225 | } | |
1226 | ||
1227 | /* | |
1228 | * posix_spawn_file_actions_addinherit_np | |
1229 | * | |
1230 | * Description: Add the "inherit" action to the object referenced by | |
1231 | * 'file_actions' that will cause the file referenced by | |
1232 | * 'filedes' to continue to be available in the spawned | |
1233 | * process via the same descriptor. | |
1234 | * | |
1235 | * Inheritance is the normal default behaviour for | |
1236 | * file descriptors across exec and spawn; but if the | |
1237 | * POSIX_SPAWN_CLOEXEC_DEFAULT flag is set, the usual | |
1238 | * default is reversed for the purposes of the spawn | |
1239 | * invocation. Any pre-existing descriptors that | |
1240 | * need to be made available to the spawned process can | |
1241 | * be marked explicitly as 'inherit' via this interface. | |
1242 | * Otherwise they will be automatically closed. | |
1243 | * | |
1244 | * Note that any descriptors created via the other file | |
1245 | * actions interfaces are automatically marked as 'inherit'. | |
1246 | * | |
1247 | * Parameters: file_actions File action object to augment | |
1248 | * filedes fd to inherit. | |
1249 | * | |
1250 | * Returns: 0 Success | |
1251 | * EBADF The value specified by fildes is | |
1252 | * negative or greater than or equal to | |
1253 | * {OPEN_MAX}. | |
1254 | * ENOMEM Insufficient memory exists to add to | |
1255 | * the spawn file actions object. | |
1256 | * | |
1257 | * NOTIMP: Allowed failures (checking NOT required): | |
1258 | * EINVAL The value specified by file_actions is invalid. | |
1259 | */ | |
1260 | int | |
1261 | posix_spawn_file_actions_addinherit_np(posix_spawn_file_actions_t *file_actions, | |
1262 | int filedes) | |
1263 | { | |
1264 | _posix_spawn_file_actions_t *psactsp; | |
1265 | _psfa_action_t *psfileact; | |
1266 | ||
1267 | if (file_actions == NULL || *file_actions == NULL) | |
1268 | return (EINVAL); | |
1269 | ||
1270 | psactsp = (_posix_spawn_file_actions_t *)file_actions; | |
1271 | /* Range check; required by POSIX */ | |
1272 | if (filedes < 0 || filedes >= OPEN_MAX) | |
1273 | return (EBADF); | |
1274 | ||
1275 | #if defined(POSIX_SPAWN_CLOEXEC_DEFAULT) // TODO: delete this check | |
1276 | /* If we do not have enough slots, grow the structure */ | |
1277 | if ((*psactsp)->psfa_act_count == (*psactsp)->psfa_act_alloc) { | |
1278 | /* need to grow file actions structure */ | |
1279 | if (_posix_spawn_file_actions_grow(psactsp)) | |
1280 | return (ENOMEM); | |
1281 | } | |
1282 | ||
1283 | /* | |
1284 | * Allocate next available slot and fill it out | |
1285 | */ | |
1286 | psfileact = &(*psactsp)->psfa_act_acts[(*psactsp)->psfa_act_count++]; | |
1287 | ||
1288 | psfileact->psfaa_type = PSFA_INHERIT; | |
1289 | psfileact->psfaa_filedes = filedes; | |
1290 | #endif | |
1291 | return (0); | |
1292 | } | |
1293 | ||
1294 | int | |
1295 | posix_spawnattr_setcpumonitor_default(posix_spawnattr_t * __restrict attr) | |
1296 | { | |
1297 | return (posix_spawnattr_setcpumonitor(attr, PROC_POLICY_CPUMON_DEFAULTS, 0)); | |
1298 | } | |
1299 | ||
1300 | int | |
1301 | posix_spawnattr_setcpumonitor(posix_spawnattr_t * __restrict attr, | |
1302 | uint64_t percent, uint64_t interval) | |
1303 | { | |
1304 | _posix_spawnattr_t psattr; | |
1305 | ||
1306 | if (attr == NULL || *attr == NULL) | |
1307 | return (EINVAL); | |
1308 | ||
1309 | psattr = *(_posix_spawnattr_t *)attr; | |
1310 | ||
1311 | psattr->psa_cpumonitor_percent = percent; | |
1312 | psattr->psa_cpumonitor_interval = interval; | |
1313 | ||
1314 | return (0); | |
1315 | } | |
1316 | ||
1317 | int | |
1318 | posix_spawnattr_getcpumonitor(posix_spawnattr_t * __restrict attr, | |
1319 | uint64_t *percent, uint64_t *interval) | |
1320 | { | |
1321 | _posix_spawnattr_t psattr; | |
1322 | ||
1323 | if (attr == NULL || *attr == NULL) | |
1324 | return (EINVAL); | |
1325 | ||
1326 | psattr = *(_posix_spawnattr_t *)attr; | |
1327 | ||
1328 | *percent = psattr->psa_cpumonitor_percent; | |
1329 | *interval = psattr->psa_cpumonitor_interval; | |
1330 | ||
1331 | return (0); | |
1332 | } | |
1333 | ||
39236c6e | 1334 | |
39037602 A |
1335 | /* |
1336 | * posix_spawnattr_setjetsam_ext | |
1337 | * | |
1338 | * Description: Set jetsam attributes for the spawn attribute object | |
1339 | * referred to by 'attr'. | |
1340 | * | |
1341 | * Parameters: flags The flags value to set | |
1342 | * priority Relative jetsam priority | |
1343 | * memlimit_active Value in megabytes; memory footprint | |
1344 | * above this level while process is | |
1345 | * active may result in termination. | |
1346 | * memlimit_inactive Value in megabytes; memory footprint | |
1347 | * above this level while process is | |
1348 | * inactive may result in termination. | |
1349 | * | |
1350 | * Returns: 0 Success | |
1351 | */ | |
1352 | int | |
1353 | posix_spawnattr_setjetsam_ext(posix_spawnattr_t * __restrict attr, | |
1354 | short flags, int priority, int memlimit_active, int memlimit_inactive) | |
1355 | { | |
1356 | _posix_spawnattr_t psattr; | |
1357 | ||
1358 | if (attr == NULL || *attr == NULL) | |
1359 | return EINVAL; | |
1360 | ||
1361 | psattr = *(_posix_spawnattr_t *)attr; | |
1362 | ||
1363 | psattr->psa_jetsam_flags = flags; | |
1364 | psattr->psa_jetsam_flags |= POSIX_SPAWN_JETSAM_SET; | |
1365 | psattr->psa_priority = priority; | |
1366 | psattr->psa_memlimit_active = memlimit_active; | |
1367 | psattr->psa_memlimit_inactive = memlimit_inactive; | |
1368 | ||
1369 | return (0); | |
1370 | } | |
1371 | ||
39236c6e A |
1372 | |
1373 | /* | |
1374 | * posix_spawnattr_set_importancewatch_port_np | |
1375 | * | |
1376 | * Description: Mark ports referred to by these rights | |
1377 | * to boost the new task instead of their current task | |
1378 | * for the spawn attribute object referred to by 'attr'. | |
1379 | * Ports must be valid at posix_spawn time. They will NOT be | |
1380 | * consumed by the kernel, so they must be deallocated after the spawn returns. | |
1381 | * (If you are SETEXEC-ing, they are cleaned up by the exec operation). | |
1382 | * | |
1383 | * The maximum number of watch ports allowed is defined by POSIX_SPAWN_IMPORTANCE_PORT_COUNT. | |
1384 | * | |
1385 | * Parameters: count Number of ports in portarray | |
1386 | * portarray Array of rights | |
1387 | * | |
1388 | * Returns: 0 Success | |
1389 | * EINVAL Bad port count | |
1390 | * ENOMEM Insufficient memory exists to add to | |
1391 | * the spawn port actions object. | |
1392 | */ | |
1393 | int | |
1394 | posix_spawnattr_set_importancewatch_port_np(posix_spawnattr_t * __restrict attr, | |
1395 | int count, mach_port_t portarray[]) | |
1396 | { | |
1397 | int err = 0, i; | |
1398 | ||
1399 | if (count < 0 || count > POSIX_SPAWN_IMPORTANCE_PORT_COUNT) { | |
1400 | return EINVAL; | |
1401 | } | |
1402 | ||
1403 | for (i = 0; i < count; i++) { | |
1404 | _ps_port_action_t action = { | |
1405 | .port_type = PSPA_IMP_WATCHPORTS, | |
1406 | .new_port = portarray[i], | |
1407 | }; | |
1408 | int err = posix_spawn_appendportaction_np(attr, &action); | |
1409 | if (err) { | |
1410 | break; | |
1411 | } | |
1412 | } | |
1413 | return err; | |
1414 | } | |
1415 | ||
1416 | ||
1417 | ||
1418 | static | |
1419 | _ps_mac_policy_extension_t * | |
1420 | posix_spawnattr_macpolicyinfo_lookup(_posix_spawn_mac_policy_extensions_t psmx, const char *policyname) | |
1421 | { | |
1422 | int i; | |
1423 | ||
1424 | if (psmx == NULL) | |
1425 | return NULL; | |
1426 | ||
1427 | for (i = 0; i < psmx->psmx_count; i++) { | |
1428 | _ps_mac_policy_extension_t *extension = &psmx->psmx_extensions[i]; | |
1429 | if (strcmp(extension->policyname, policyname) == 0) | |
1430 | return extension; | |
1431 | } | |
1432 | return NULL; | |
1433 | } | |
1434 | ||
1435 | int | |
1436 | posix_spawnattr_getmacpolicyinfo_np(const posix_spawnattr_t * __restrict attr, | |
1437 | const char *policyname, void **datap, size_t *datalenp) | |
1438 | { | |
1439 | _posix_spawnattr_t psattr; | |
1440 | _ps_mac_policy_extension_t *extension; | |
1441 | ||
1442 | if (attr == NULL || *attr == NULL || policyname == NULL || datap == NULL) | |
1443 | return EINVAL; | |
1444 | ||
1445 | psattr = *(_posix_spawnattr_t *)attr; | |
1446 | extension = posix_spawnattr_macpolicyinfo_lookup(psattr->psa_mac_extensions, policyname); | |
1447 | if (extension == NULL) | |
1448 | return ESRCH; | |
1449 | *datap = (void *)(uintptr_t)extension->data; | |
fe8ab488 A |
1450 | if (datalenp != NULL) { |
1451 | *datalenp = (size_t)extension->datalen; | |
1452 | } | |
39236c6e A |
1453 | return 0; |
1454 | } | |
1455 | ||
1456 | int | |
1457 | posix_spawnattr_setmacpolicyinfo_np(posix_spawnattr_t * __restrict attr, | |
1458 | const char *policyname, void *data, size_t datalen) | |
1459 | { | |
1460 | _posix_spawnattr_t psattr; | |
1461 | _posix_spawn_mac_policy_extensions_t psmx; | |
1462 | _ps_mac_policy_extension_t *extension; | |
1463 | ||
1464 | if (attr == NULL || *attr == NULL || policyname == NULL) | |
1465 | return EINVAL; | |
1466 | ||
1467 | psattr = *(_posix_spawnattr_t *)attr; | |
1468 | psmx = psattr->psa_mac_extensions; | |
1469 | extension = posix_spawnattr_macpolicyinfo_lookup(psattr->psa_mac_extensions, policyname); | |
1470 | if (extension != NULL) { | |
1471 | extension->data = (uintptr_t)data; | |
1472 | extension->datalen = datalen; | |
1473 | return 0; | |
1474 | } | |
1475 | else if (psmx == NULL) { | |
1476 | psmx = psattr->psa_mac_extensions = malloc(PS_MAC_EXTENSIONS_SIZE(PS_MAC_EXTENSIONS_INIT_COUNT)); | |
1477 | if (psmx == NULL) | |
1478 | return ENOMEM; | |
1479 | psmx->psmx_alloc = PS_MAC_EXTENSIONS_INIT_COUNT; | |
1480 | psmx->psmx_count = 0; | |
1481 | } | |
1482 | else if (psmx->psmx_count == psmx->psmx_alloc) { | |
1483 | psmx = psattr->psa_mac_extensions = reallocf(psmx, PS_MAC_EXTENSIONS_SIZE(psmx->psmx_alloc * 2)); | |
1484 | if (psmx == NULL) | |
1485 | return ENOMEM; | |
1486 | psmx->psmx_alloc *= 2; | |
1487 | } | |
1488 | extension = &psmx->psmx_extensions[psmx->psmx_count]; | |
1489 | strlcpy(extension->policyname, policyname, sizeof(extension->policyname)); | |
1490 | extension->data = (uintptr_t)data; | |
1491 | extension->datalen = datalen; | |
1492 | psmx->psmx_count += 1; | |
1493 | return 0; | |
1494 | } | |
1495 | ||
3e170ce0 A |
1496 | int posix_spawnattr_setcoalition_np(const posix_spawnattr_t * __restrict attr, |
1497 | uint64_t coalitionid, int type, int role) | |
fe8ab488 A |
1498 | { |
1499 | _posix_spawnattr_t psattr; | |
3e170ce0 | 1500 | struct _posix_spawn_coalition_info *coal_info; |
fe8ab488 A |
1501 | |
1502 | if (attr == NULL || *attr == NULL) { | |
1503 | return EINVAL; | |
1504 | } | |
3e170ce0 A |
1505 | if (type < 0 || type > COALITION_TYPE_MAX) |
1506 | return EINVAL; | |
fe8ab488 A |
1507 | |
1508 | psattr = *(_posix_spawnattr_t *)attr; | |
3e170ce0 A |
1509 | |
1510 | coal_info = psattr->psa_coalition_info; | |
1511 | if (!coal_info) { | |
1512 | coal_info = (struct _posix_spawn_coalition_info *)malloc(sizeof(*coal_info)); | |
1513 | if (!coal_info) | |
1514 | return ENOMEM; | |
1515 | memset(coal_info, 0, sizeof(*coal_info)); | |
1516 | psattr->psa_coalition_info = coal_info; | |
1517 | } | |
1518 | ||
1519 | coal_info->psci_info[type].psci_id = coalitionid; | |
1520 | coal_info->psci_info[type].psci_role = role; | |
fe8ab488 A |
1521 | |
1522 | return 0; | |
1523 | } | |
1524 | ||
1525 | ||
1526 | int posix_spawnattr_set_qos_clamp_np(const posix_spawnattr_t * __restrict attr, uint64_t qos_clamp) | |
1527 | { | |
1528 | _posix_spawnattr_t psattr; | |
1529 | ||
1530 | if (attr == NULL || *attr == NULL) { | |
1531 | return EINVAL; | |
1532 | } | |
1533 | ||
1534 | if (qos_clamp >= POSIX_SPAWN_PROC_CLAMP_LAST) | |
1535 | return EINVAL; | |
1536 | ||
1537 | psattr = *(_posix_spawnattr_t *)attr; | |
1538 | psattr->psa_qos_clamp = qos_clamp; | |
1539 | ||
1540 | return 0; | |
1541 | } | |
1542 | ||
1543 | int | |
1544 | posix_spawnattr_get_qos_clamp_np(const posix_spawnattr_t * __restrict attr, uint64_t * __restrict qos_clampp) | |
1545 | { | |
1546 | _posix_spawnattr_t psattr; | |
1547 | ||
1548 | if (attr == NULL || *attr == NULL) { | |
1549 | return EINVAL; | |
1550 | } | |
1551 | ||
1552 | psattr = *(_posix_spawnattr_t *)attr; | |
1553 | *qos_clampp = psattr->psa_qos_clamp; | |
1554 | ||
1555 | return (0); | |
1556 | } | |
1557 | ||
3e170ce0 A |
1558 | int posix_spawnattr_set_darwin_role_np(const posix_spawnattr_t * __restrict attr, uint64_t darwin_role) |
1559 | { | |
1560 | _posix_spawnattr_t psattr; | |
1561 | ||
1562 | if (attr == NULL || *attr == NULL) { | |
1563 | return EINVAL; | |
1564 | } | |
1565 | ||
1566 | psattr = *(_posix_spawnattr_t *)attr; | |
1567 | psattr->psa_darwin_role = darwin_role; | |
1568 | ||
1569 | return 0; | |
1570 | } | |
1571 | ||
1572 | int | |
1573 | posix_spawnattr_get_darwin_role_np(const posix_spawnattr_t * __restrict attr, uint64_t * __restrict darwin_rolep) | |
1574 | { | |
1575 | _posix_spawnattr_t psattr; | |
1576 | ||
1577 | if (attr == NULL || *attr == NULL) { | |
1578 | return EINVAL; | |
1579 | } | |
1580 | ||
1581 | psattr = *(_posix_spawnattr_t *)attr; | |
1582 | *darwin_rolep = psattr->psa_darwin_role; | |
1583 | ||
1584 | return (0); | |
1585 | } | |
fe8ab488 | 1586 | |
490019cf A |
1587 | |
1588 | int | |
1589 | posix_spawnattr_set_persona_np(const posix_spawnattr_t * __restrict attr, uid_t persona_id, uint32_t flags) | |
1590 | { | |
1591 | _posix_spawnattr_t psattr; | |
1592 | struct _posix_spawn_persona_info *persona; | |
1593 | ||
1594 | if (attr == NULL || *attr == NULL) | |
1595 | return EINVAL; | |
1596 | ||
1597 | if (flags & ~POSIX_SPAWN_PERSONA_ALL_FLAGS) | |
1598 | return EINVAL; | |
1599 | ||
1600 | psattr = *(_posix_spawnattr_t *)attr; | |
1601 | ||
1602 | persona = psattr->psa_persona_info; | |
1603 | if (!persona) { | |
1604 | persona = (struct _posix_spawn_persona_info *)malloc(sizeof(*persona)); | |
1605 | if (!persona) | |
1606 | return ENOMEM; | |
1607 | persona->pspi_uid = 0; | |
1608 | persona->pspi_gid = 0; | |
1609 | persona->pspi_ngroups = 0; | |
1610 | persona->pspi_groups[0] = 0; | |
1611 | ||
1612 | psattr->psa_persona_info = persona; | |
1613 | } | |
1614 | ||
1615 | persona->pspi_id = persona_id; | |
1616 | persona->pspi_flags = flags; | |
1617 | ||
1618 | return 0; | |
1619 | } | |
1620 | ||
1621 | int | |
1622 | posix_spawnattr_set_persona_uid_np(const posix_spawnattr_t * __restrict attr, uid_t uid) | |
1623 | { | |
1624 | _posix_spawnattr_t psattr; | |
1625 | struct _posix_spawn_persona_info *persona; | |
1626 | ||
1627 | if (attr == NULL || *attr == NULL) | |
1628 | return EINVAL; | |
1629 | ||
1630 | psattr = *(_posix_spawnattr_t *)attr; | |
1631 | persona = psattr->psa_persona_info; | |
1632 | if (!persona) | |
1633 | return EINVAL; | |
1634 | ||
1635 | if (!(persona->pspi_flags & (POSIX_SPAWN_PERSONA_FLAGS_OVERRIDE | POSIX_SPAWN_PERSONA_FLAGS_VERIFY))) | |
1636 | return EINVAL; | |
1637 | ||
1638 | persona->pspi_uid = uid; | |
1639 | ||
1640 | persona->pspi_flags |= POSIX_SPAWN_PERSONA_UID; | |
1641 | ||
1642 | return 0; | |
1643 | } | |
1644 | ||
1645 | int | |
1646 | posix_spawnattr_set_persona_gid_np(const posix_spawnattr_t * __restrict attr, gid_t gid) | |
1647 | { | |
1648 | _posix_spawnattr_t psattr; | |
1649 | struct _posix_spawn_persona_info *persona; | |
1650 | ||
1651 | if (attr == NULL || *attr == NULL) | |
1652 | return EINVAL; | |
1653 | ||
1654 | psattr = *(_posix_spawnattr_t *)attr; | |
1655 | persona = psattr->psa_persona_info; | |
1656 | if (!persona) | |
1657 | return EINVAL; | |
1658 | ||
1659 | if (!(persona->pspi_flags & (POSIX_SPAWN_PERSONA_FLAGS_OVERRIDE | POSIX_SPAWN_PERSONA_FLAGS_VERIFY))) | |
1660 | return EINVAL; | |
1661 | ||
1662 | persona->pspi_gid = gid; | |
1663 | ||
1664 | persona->pspi_flags |= POSIX_SPAWN_PERSONA_GID; | |
1665 | ||
1666 | return 0; | |
1667 | } | |
1668 | ||
1669 | int | |
1670 | posix_spawnattr_set_persona_groups_np(const posix_spawnattr_t * __restrict attr, int ngroups, gid_t *gidarray, uid_t gmuid) | |
1671 | { | |
1672 | _posix_spawnattr_t psattr; | |
1673 | struct _posix_spawn_persona_info *persona; | |
1674 | ||
1675 | if (attr == NULL || *attr == NULL) | |
1676 | return EINVAL; | |
1677 | ||
1678 | if (gidarray == NULL) | |
1679 | return EINVAL; | |
1680 | ||
1681 | if (ngroups > NGROUPS) | |
1682 | return EINVAL; | |
1683 | ||
1684 | psattr = *(_posix_spawnattr_t *)attr; | |
1685 | persona = psattr->psa_persona_info; | |
1686 | if (!persona) | |
1687 | return EINVAL; | |
1688 | ||
1689 | if (!(persona->pspi_flags & (POSIX_SPAWN_PERSONA_FLAGS_OVERRIDE | POSIX_SPAWN_PERSONA_FLAGS_VERIFY))) | |
1690 | return EINVAL; | |
1691 | ||
1692 | persona->pspi_ngroups = ngroups; | |
1693 | for (int i = 0; i < ngroups; i++) | |
1694 | persona->pspi_groups[i] = gidarray[i]; | |
1695 | ||
1696 | persona->pspi_gmuid = gmuid; | |
1697 | ||
1698 | persona->pspi_flags |= POSIX_SPAWN_PERSONA_GROUPS; | |
1699 | ||
1700 | return 0; | |
1701 | } | |
1702 | ||
1703 | ||
1704 | ||
39236c6e A |
1705 | /* |
1706 | * posix_spawn | |
1707 | * | |
1708 | * Description: Create a new process from the process image corresponding to | |
1709 | * the supplied 'path' argument. | |
1710 | * | |
1711 | * Parameters: pid Pointer to pid_t to receive the | |
1712 | * PID of the spawned process, if | |
1713 | * successful and 'pid' != NULL | |
1714 | * path Path of image file to spawn | |
1715 | * file_actions spawn file actions object which | |
1716 | * describes file actions to be | |
1717 | * performed during the spawn | |
1718 | * attrp spawn attributes object which | |
1719 | * describes attributes to be | |
1720 | * applied during the spawn | |
1721 | * argv argument vector array; NULL | |
1722 | * terminated | |
1723 | * envp environment vector array; NULL | |
1724 | * terminated | |
1725 | * | |
1726 | * Returns: 0 Success | |
1727 | * !0 An errno value indicating the | |
1728 | * cause of the failure to spawn | |
1729 | * | |
1730 | * Notes: Unlike other system calls, the return value of this system | |
1731 | * call is expected to either be a 0 or an errno, rather than a | |
1732 | * 0 or a -1, with the 'errno' variable being set. | |
1733 | */ | |
1734 | extern int __posix_spawn(pid_t * __restrict, const char * __restrict, | |
1735 | struct _posix_spawn_args_desc *, | |
1736 | char *const argv[ __restrict], char *const envp[ __restrict]); | |
1737 | ||
1738 | int | |
1739 | posix_spawn(pid_t * __restrict pid, const char * __restrict path, | |
1740 | const posix_spawn_file_actions_t *file_actions, | |
1741 | const posix_spawnattr_t * __restrict attrp, | |
1742 | char *const argv[ __restrict], char *const envp[ __restrict]) | |
1743 | { | |
1744 | int saveerrno = errno; | |
1745 | int ret; | |
1746 | /* | |
1747 | * Only do extra work if we have file actions or attributes to push | |
1748 | * down. We use a descriptor to push this information down, since we | |
1749 | * want to have size information, which will let us (1) preallocate a | |
1750 | * single chunk of memory for the copyin(), and (2) allow us to do a | |
1751 | * single copyin() per attributes or file actions as a monlithic block. | |
1752 | * | |
1753 | * Note: A future implementation may attempt to do the same | |
1754 | * thing for the argv/envp data, which could potentially | |
1755 | * result in a performance improvement due to increased | |
1756 | * kernel efficiency, even though it would mean copying | |
1757 | * the data in user space. | |
1758 | */ | |
1759 | if ((file_actions != NULL && (*file_actions != NULL) && (*(_posix_spawn_file_actions_t *)file_actions)->psfa_act_count > 0) || attrp != NULL) { | |
1760 | struct _posix_spawn_args_desc ad; | |
1761 | ||
1762 | memset(&ad, 0, sizeof(ad)); | |
1763 | if (attrp != NULL && *attrp != NULL) { | |
1764 | _posix_spawnattr_t psattr = *(_posix_spawnattr_t *)attrp; | |
1765 | ad.attr_size = sizeof(struct _posix_spawnattr); | |
1766 | ad.attrp = psattr; | |
1767 | ||
1768 | if (psattr->psa_ports != NULL) { | |
1769 | ad.port_actions = psattr->psa_ports; | |
1770 | ad.port_actions_size = PS_PORT_ACTIONS_SIZE( | |
1771 | ad.port_actions->pspa_count); | |
1772 | } | |
1773 | if (psattr->psa_mac_extensions != NULL) { | |
1774 | ad.mac_extensions = psattr->psa_mac_extensions; | |
1775 | ad.mac_extensions_size = PS_MAC_EXTENSIONS_SIZE( | |
1776 | ad.mac_extensions->psmx_count); | |
1777 | } | |
3e170ce0 A |
1778 | if (psattr->psa_coalition_info != NULL) { |
1779 | ad.coal_info_size = sizeof(struct _posix_spawn_coalition_info); | |
1780 | ad.coal_info = psattr->psa_coalition_info; | |
1781 | } | |
490019cf A |
1782 | if (psattr->psa_persona_info != NULL) { |
1783 | ad.persona_info_size = sizeof(struct _posix_spawn_persona_info); | |
1784 | ad.persona_info = psattr->psa_persona_info; | |
1785 | } | |
39236c6e A |
1786 | } |
1787 | if (file_actions != NULL && *file_actions != NULL) { | |
1788 | _posix_spawn_file_actions_t psactsp = | |
1789 | *(_posix_spawn_file_actions_t *)file_actions; | |
1790 | ||
1791 | if (psactsp->psfa_act_count > 0) { | |
1792 | ad.file_actions_size = PSF_ACTIONS_SIZE(psactsp->psfa_act_count); | |
1793 | ad.file_actions = psactsp; | |
1794 | } | |
1795 | } | |
1796 | ||
1797 | ret = __posix_spawn(pid, path, &ad, argv, envp); | |
1798 | } else | |
1799 | ret = __posix_spawn(pid, path, NULL, argv, envp); | |
1800 | ||
1801 | if (ret < 0) | |
1802 | ret = errno; | |
1803 | errno = saveerrno; | |
1804 | return ret; | |
1805 | } | |
1806 |