2 * @APPLE_APACHE_LICENSE_HEADER_START@
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 * @APPLE_APACHE_LICENSE_HEADER_END@
24 #include <TargetConditionals.h>
25 #include <mach/mach.h>
26 #include <mach/mach_error.h>
27 #include <mach/boolean.h>
28 #include <mach/message.h>
29 #include <mach/notify.h>
30 #include <mach/mig_errors.h>
31 #include <mach/mach_traps.h>
32 #include <mach/mach_interface.h>
33 #include <mach/host_info.h>
34 #include <mach/mach_host.h>
35 #include <mach/exception.h>
36 #include <mach/host_reboot.h>
37 #include <sys/types.h>
38 #include <sys/queue.h>
39 #include <sys/event.h>
41 #include <sys/ucred.h>
42 #include <sys/fcntl.h>
44 #include <sys/reboot.h>
46 #include <sys/sysctl.h>
47 #include <sys/sockio.h>
49 #include <sys/resource.h>
50 #include <sys/ioctl.h>
51 #include <sys/mount.h>
54 #include <sys/socket.h>
55 #include <sys/syscall.h>
56 #include <sys/kern_memorystatus.h>
58 #include <netinet/in.h>
59 #include <netinet/in_var.h>
60 #include <netinet6/nd6.h>
61 #include <bsm/libbsm.h>
79 #include <System/sys/spawn.h>
80 #include <System/sys/spawn_internal.h>
82 #include <spawn_private.h>
85 #include <os/assumes.h>
86 #include <xpc/launchd.h>
91 #include <libproc_internal.h>
92 #include <System/sys/proc_info.h>
93 #include <malloc/malloc.h>
96 #define __APPLE_API_PRIVATE
100 #include <quarantine.h>
102 #if HAVE_RESPONSIBILITY
103 #include <responsibility.h>
105 #if !TARGET_OS_EMBEDDED
106 extern int gL1CacheEnabled
;
109 #include <systemstats/systemstats.h>
113 #include "launch_priv.h"
114 #include "launch_internal.h"
115 #include "bootstrap.h"
116 #include "bootstrap_priv.h"
118 #include "vproc_internal.h"
126 #include "jobServer.h"
127 #include "job_reply.h"
128 #include "job_forward.h"
129 #include "mach_excServer.h"
131 #define POSIX_SPAWN_IOS_INTERACTIVE 0
133 #if TARGET_OS_EMBEDDED
134 /* Default memory highwatermark for daemons as set out in <rdar://problem/10307788>. */
135 #define DEFAULT_JETSAM_DAEMON_HIGHWATERMARK 5
138 /* LAUNCHD_DEFAULT_EXIT_TIMEOUT
139 * If the job hasn't exited in the given number of seconds after sending
140 * it a SIGTERM, SIGKILL it. Can be overriden in the job plist.
142 #define LAUNCHD_MIN_JOB_RUN_TIME 10
143 #define LAUNCHD_DEFAULT_EXIT_TIMEOUT 20
144 #define LAUNCHD_SIGKILL_TIMER 4
145 #define LAUNCHD_LOG_FAILED_EXEC_FREQ 10
147 #define SHUTDOWN_LOG_DIR "/var/log/shutdown"
149 #define TAKE_SUBSET_NAME "TakeSubsetName"
150 #define TAKE_SUBSET_PID "TakeSubsetPID"
151 #define TAKE_SUBSET_PERPID "TakeSubsetPerPID"
153 #define IS_POWER_OF_TWO(v) (!(v & (v - 1)) && v)
155 extern char **environ
;
157 struct waiting_for_removal
{
158 SLIST_ENTRY(waiting_for_removal
) sle
;
159 mach_port_t reply_port
;
162 static bool waiting4removal_new(job_t j
, mach_port_t rp
);
163 static void waiting4removal_delete(job_t j
, struct waiting_for_removal
*w4r
);
166 SLIST_ENTRY(machservice
) sle
;
167 SLIST_ENTRY(machservice
) special_port_sle
;
168 LIST_ENTRY(machservice
) name_hash_sle
;
169 LIST_ENTRY(machservice
) port_hash_sle
;
170 struct machservice
*alias
;
172 unsigned int gen_num
;
173 mach_port_name_t port
;
183 delete_on_destruction
:1,
184 drain_one_on_crash
:1,
185 drain_all_on_crash
:1,
189 /* Don't let the size of this field to get too small. It has to be large
190 * enough to represent the reasonable range of special port numbers.
196 // HACK: This should be per jobmgr_t
197 static SLIST_HEAD(, machservice
) special_ports
;
199 #define PORT_HASH_SIZE 32
200 #define HASH_PORT(x) (IS_POWER_OF_TWO(PORT_HASH_SIZE) ? (MACH_PORT_INDEX(x) & (PORT_HASH_SIZE - 1)) : (MACH_PORT_INDEX(x) % PORT_HASH_SIZE))
202 static LIST_HEAD(, machservice
) port_hash
[PORT_HASH_SIZE
];
204 static void machservice_setup(launch_data_t obj
, const char *key
, void *context
);
205 static void machservice_setup_options(launch_data_t obj
, const char *key
, void *context
);
206 static void machservice_resetport(job_t j
, struct machservice
*ms
);
207 static void machservice_stamp_port(job_t j
, struct machservice
*ms
);
208 static struct machservice
*machservice_new(job_t j
, const char *name
, mach_port_t
*serviceport
, bool pid_local
);
209 static struct machservice
*machservice_new_alias(job_t aj
, struct machservice
*orig
);
210 static void machservice_ignore(job_t j
, struct machservice
*ms
);
211 static void machservice_watch(job_t j
, struct machservice
*ms
);
212 static void machservice_delete(job_t j
, struct machservice
*, bool port_died
);
213 static void machservice_request_notifications(struct machservice
*);
214 static mach_port_t
machservice_port(struct machservice
*);
215 static job_t
machservice_job(struct machservice
*);
216 static bool machservice_hidden(struct machservice
*);
217 static bool machservice_active(struct machservice
*);
218 static const char *machservice_name(struct machservice
*);
219 static bootstrap_status_t
machservice_status(struct machservice
*);
220 void machservice_drain_port(struct machservice
*);
223 SLIST_ENTRY(socketgroup
) sle
;
232 static bool socketgroup_new(job_t j
, const char *name
, int *fds
, size_t fd_cnt
);
233 static void socketgroup_delete(job_t j
, struct socketgroup
*sg
);
234 static void socketgroup_watch(job_t j
, struct socketgroup
*sg
);
235 static void socketgroup_ignore(job_t j
, struct socketgroup
*sg
);
236 static void socketgroup_callback(job_t j
);
237 static void socketgroup_setup(launch_data_t obj
, const char *key
, void *context
);
238 static void socketgroup_kevent_mod(job_t j
, struct socketgroup
*sg
, bool do_add
);
240 struct calendarinterval
{
241 LIST_ENTRY(calendarinterval
) global_sle
;
242 SLIST_ENTRY(calendarinterval
) sle
;
248 static LIST_HEAD(, calendarinterval
) sorted_calendar_events
;
250 static bool calendarinterval_new(job_t j
, struct tm
*w
);
251 static bool calendarinterval_new_from_obj(job_t j
, launch_data_t obj
);
252 static void calendarinterval_new_from_obj_dict_walk(launch_data_t obj
, const char *key
, void *context
);
253 static void calendarinterval_delete(job_t j
, struct calendarinterval
*ci
);
254 static void calendarinterval_setalarm(job_t j
, struct calendarinterval
*ci
);
255 static void calendarinterval_callback(void);
256 static void calendarinterval_sanity_check(void);
259 SLIST_ENTRY(envitem
) sle
;
267 static bool envitem_new(job_t j
, const char *k
, const char *v
, bool global
);
268 static void envitem_delete(job_t j
, struct envitem
*ei
, bool global
);
269 static void envitem_setup(launch_data_t obj
, const char *key
, void *context
);
272 SLIST_ENTRY(limititem
) sle
;
274 unsigned int setsoft
:1, sethard
:1, which
:30;
277 static bool limititem_update(job_t j
, int w
, rlim_t r
);
278 static void limititem_delete(job_t j
, struct limititem
*li
);
279 static void limititem_setup(launch_data_t obj
, const char *key
, void *context
);
281 static void seatbelt_setup_flags(launch_data_t obj
, const char *key
, void *context
);
284 static void jetsam_property_setup(launch_data_t obj
, const char *key
, job_t j
);
297 } semaphore_reason_t
;
299 struct semaphoreitem
{
300 SLIST_ENTRY(semaphoreitem
) sle
;
301 semaphore_reason_t why
;
309 struct semaphoreitem_dict_iter_context
{
311 semaphore_reason_t why_true
;
312 semaphore_reason_t why_false
;
315 static bool semaphoreitem_new(job_t j
, semaphore_reason_t why
, const char *what
);
316 static void semaphoreitem_delete(job_t j
, struct semaphoreitem
*si
);
317 static void semaphoreitem_setup(launch_data_t obj
, const char *key
, void *context
);
318 static void semaphoreitem_setup_dict_iter(launch_data_t obj
, const char *key
, void *context
);
319 static void semaphoreitem_runtime_mod_ref(struct semaphoreitem
*si
, bool add
);
321 struct externalevent
{
322 LIST_ENTRY(externalevent
) sys_le
;
323 LIST_ENTRY(externalevent
) job_le
;
324 struct eventsystem
*sys
;
332 xpc_object_t entitlements
;
337 struct externalevent_iter_ctx
{
339 struct eventsystem
*sys
;
342 static bool externalevent_new(job_t j
, struct eventsystem
*sys
, const char *evname
, xpc_object_t event
, uint64_t flags
);
343 static void externalevent_delete(struct externalevent
*ee
);
344 static void externalevent_setup(launch_data_t obj
, const char *key
, void *context
);
345 static struct externalevent
*externalevent_find(const char *sysname
, uint64_t id
);
348 LIST_ENTRY(eventsystem
) global_le
;
349 LIST_HEAD(, externalevent
) events
;
354 static struct eventsystem
*eventsystem_new(const char *name
);
355 static void eventsystem_delete(struct eventsystem
*sys
) __attribute__((unused
));
356 static void eventsystem_setup(launch_data_t obj
, const char *key
, void *context
);
357 static struct eventsystem
*eventsystem_find(const char *name
);
358 static void eventsystem_ping(void);
360 struct waiting4attach
{
361 LIST_ENTRY(waiting4attach
) le
;
364 xpc_service_type_t type
;
368 static LIST_HEAD(, waiting4attach
) _launchd_domain_waiters
;
370 static struct waiting4attach
*waiting4attach_new(jobmgr_t jm
, const char *name
, mach_port_t port
, pid_t dest
, xpc_service_type_t type
);
371 static void waiting4attach_delete(jobmgr_t jm
, struct waiting4attach
*w4a
);
372 static struct waiting4attach
*waiting4attach_find(jobmgr_t jm
, job_t j
);
374 #define ACTIVE_JOB_HASH_SIZE 32
375 #define ACTIVE_JOB_HASH(x) (IS_POWER_OF_TWO(ACTIVE_JOB_HASH_SIZE) ? (x & (ACTIVE_JOB_HASH_SIZE - 1)) : (x % ACTIVE_JOB_HASH_SIZE))
377 #define MACHSERVICE_HASH_SIZE 37
379 #define LABEL_HASH_SIZE 53
381 kq_callback kqjobmgr_callback
;
382 LIST_ENTRY(jobmgr_s
) xpc_le
;
383 SLIST_ENTRY(jobmgr_s
) sle
;
384 SLIST_HEAD(, jobmgr_s
) submgrs
;
385 LIST_HEAD(, job_s
) jobs
;
386 LIST_HEAD(, waiting4attach
) attaches
;
388 /* For legacy reasons, we keep all job labels that are imported in the root
389 * job manager's label hash. If a job manager is an XPC domain, then it gets
390 * its own label hash that is separate from the "global" one stored in the
393 LIST_HEAD(, job_s
) label_hash
[LABEL_HASH_SIZE
];
394 LIST_HEAD(, job_s
) active_jobs
[ACTIVE_JOB_HASH_SIZE
];
395 LIST_HEAD(, machservice
) ms_hash
[MACHSERVICE_HASH_SIZE
];
396 LIST_HEAD(, job_s
) global_env_jobs
;
398 mach_port_t req_port
;
401 time_t shutdown_time
;
402 unsigned int global_on_demand_cnt
;
403 unsigned int normal_active_cnt
;
406 session_initialized
:1,
409 shutdown_jobs_dirtied
:1,
410 shutdown_jobs_cleaned
:1,
413 // XPC-specific properties.
414 char owner
[MAXCOMLEN
];
416 mach_port_t req_bsport
;
417 mach_port_t req_excport
;
418 mach_port_t req_asport
;
419 mach_port_t req_gui_asport
;
425 mach_msg_type_number_t req_ctx_sz
;
426 mach_port_t req_rport
;
427 uint64_t req_uniqueid
;
435 // Global XPC domains.
436 static jobmgr_t _s_xpc_system_domain
;
437 static LIST_HEAD(, jobmgr_s
) _s_xpc_user_domains
;
438 static LIST_HEAD(, jobmgr_s
) _s_xpc_session_domains
;
440 #define jobmgr_assumes(jm, e) os_assumes_ctx(jobmgr_log_bug, jm, (e))
441 #define jobmgr_assumes_zero(jm, e) os_assumes_zero_ctx(jobmgr_log_bug, jm, (e))
442 #define jobmgr_assumes_zero_p(jm, e) posix_assumes_zero_ctx(jobmgr_log_bug, jm, (e))
444 static jobmgr_t
jobmgr_new(jobmgr_t jm
, mach_port_t requestorport
, mach_port_t transfer_port
, bool sflag
, const char *name
, bool no_init
, mach_port_t asport
);
445 static jobmgr_t
jobmgr_new_xpc_singleton_domain(jobmgr_t jm
, name_t name
);
446 static jobmgr_t
jobmgr_find_xpc_per_user_domain(jobmgr_t jm
, uid_t uid
);
447 static jobmgr_t
jobmgr_find_xpc_per_session_domain(jobmgr_t jm
, au_asid_t asid
);
448 static job_t
jobmgr_import2(jobmgr_t jm
, launch_data_t pload
);
449 static jobmgr_t
jobmgr_parent(jobmgr_t jm
);
450 static jobmgr_t
jobmgr_do_garbage_collection(jobmgr_t jm
);
451 static bool jobmgr_label_test(jobmgr_t jm
, const char *str
);
452 static void jobmgr_reap_bulk(jobmgr_t jm
, struct kevent
*kev
);
453 static void jobmgr_log_stray_children(jobmgr_t jm
, bool kill_strays
);
454 static void jobmgr_kill_stray_children(jobmgr_t jm
, pid_t
*p
, size_t np
);
455 static void jobmgr_remove(jobmgr_t jm
);
456 static void jobmgr_dispatch_all(jobmgr_t jm
, bool newmounthack
);
457 static job_t
jobmgr_init_session(jobmgr_t jm
, const char *session_type
, bool sflag
);
458 static job_t
jobmgr_find_by_pid_deep(jobmgr_t jm
, pid_t p
, bool anon_okay
);
459 static job_t
jobmgr_find_by_pid(jobmgr_t jm
, pid_t p
, bool create_anon
);
460 static job_t
managed_job(pid_t p
);
461 static jobmgr_t
jobmgr_find_by_name(jobmgr_t jm
, const char *where
);
462 static job_t
job_mig_intran2(jobmgr_t jm
, mach_port_t mport
, pid_t upid
);
463 static job_t
jobmgr_lookup_per_user_context_internal(job_t j
, uid_t which_user
, mach_port_t
*mp
);
464 static void job_export_all2(jobmgr_t jm
, launch_data_t where
);
465 static void jobmgr_callback(void *obj
, struct kevent
*kev
);
466 static void jobmgr_setup_env_from_other_jobs(jobmgr_t jm
);
467 static void jobmgr_export_env_from_other_jobs(jobmgr_t jm
, launch_data_t dict
);
468 static struct machservice
*jobmgr_lookup_service(jobmgr_t jm
, const char *name
, bool check_parent
, pid_t target_pid
);
469 static void jobmgr_logv(jobmgr_t jm
, int pri
, int err
, const char *msg
, va_list ap
) __attribute__((format(printf
, 4, 0)));
470 static void jobmgr_log(jobmgr_t jm
, int pri
, const char *msg
, ...) __attribute__((format(printf
, 3, 4)));
471 static void jobmgr_log_perf_statistics(jobmgr_t jm
, bool signal_children
);
472 // static void jobmgr_log_error(jobmgr_t jm, int pri, const char *msg, ...) __attribute__((format(printf, 3, 4)));
473 static bool jobmgr_log_bug(_SIMPLE_STRING asl_message
, void *ctx
, const char *message
);
475 #define AUTO_PICK_LEGACY_LABEL (const char *)(~0)
476 #define AUTO_PICK_ANONYMOUS_LABEL (const char *)(~1)
477 #define AUTO_PICK_XPC_LABEL (const char *)(~2)
479 struct suspended_peruser
{
480 LIST_ENTRY(suspended_peruser
) sle
;
485 // MUST be first element of this structure.
486 kq_callback kqjob_callback
;
487 LIST_ENTRY(job_s
) sle
;
488 LIST_ENTRY(job_s
) subjob_sle
;
489 LIST_ENTRY(job_s
) needing_session_sle
;
490 LIST_ENTRY(job_s
) jetsam_sle
;
491 LIST_ENTRY(job_s
) pid_hash_sle
;
492 LIST_ENTRY(job_s
) global_pid_hash_sle
;
493 LIST_ENTRY(job_s
) label_hash_sle
;
494 LIST_ENTRY(job_s
) global_env_sle
;
495 SLIST_ENTRY(job_s
) curious_jobs_sle
;
496 LIST_HEAD(, suspended_peruser
) suspended_perusers
;
497 LIST_HEAD(, waiting_for_exit
) exit_watchers
;
498 LIST_HEAD(, job_s
) subjobs
;
499 LIST_HEAD(, externalevent
) events
;
500 SLIST_HEAD(, socketgroup
) sockets
;
501 SLIST_HEAD(, calendarinterval
) cal_intervals
;
502 SLIST_HEAD(, envitem
) global_env
;
503 SLIST_HEAD(, envitem
) env
;
504 SLIST_HEAD(, limititem
) limits
;
505 SLIST_HEAD(, machservice
) machservices
;
506 SLIST_HEAD(, semaphoreitem
) semaphores
;
507 SLIST_HEAD(, waiting_for_removal
) removal_watchers
;
508 struct waiting4attach
*w4a
;
511 cpu_type_t
*j_binpref
;
512 size_t j_binpref_cnt
;
514 mach_port_t exit_status_dest
;
515 mach_port_t exit_status_port
;
516 mach_port_t spawn_reply_port
;
529 char *alt_exc_handler
;
530 char *cfbundleidentifier
;
534 char *seatbelt_profile
;
535 uint64_t seatbelt_flags
;
536 char *container_identifier
;
539 void *quarantine_data
;
540 size_t quarantine_data_sz
;
544 int last_exit_status
;
550 int32_t jetsam_priority
;
551 int32_t jetsam_memlimit
;
552 int32_t main_thread_priority
;
554 uint32_t exit_timeout
;
555 uint64_t sent_signal_time
;
557 uint32_t min_run_time
;
559 uint32_t start_interval
;
560 uint32_t peruser_suspend_count
;
565 uuid_t expected_audit_uuid
;
567 // man launchd.plist --> Debug
569 // man launchd.plist --> KeepAlive == false
571 // man launchd.plist --> SessionCreate
573 // man launchd.plist --> LowPriorityIO
575 // man launchd.plist --> InitGroups
577 /* A legacy mach_init concept to make bootstrap_create_server/service()
580 priv_port_has_senders
:1,
581 // A hack during job importing
582 importing_global_env
:1,
583 // A hack during job importing
584 importing_hard_limits
:1,
585 // man launchd.plist --> Umask
587 // A process that launchd knows about but doesn't manage.
589 // A legacy mach_init concept to detect sick jobs
591 // A job created via bootstrap_create_server()
593 // A job created via spawn_via_launchd()
595 // A legacy job that wants inetd compatible semantics
597 // A twist on inetd compatibility
599 /* An event fired and the job should start, but not necessarily right
603 // man launchd.plist --> EnableGlobbing
605 // man launchd.plist --> WaitForDebugger
607 // One-shot WaitForDebugger.
608 wait4debugger_oneshot
:1,
609 // MachExceptionHandler == true
610 internal_exc_handler
:1,
611 // A hack to support an option of spawn_via_launchd()
613 /* man launchd.plist --> LaunchOnlyOnce.
615 * Note: <rdar://problem/5465184> Rename this to "HopefullyNeverExits".
618 /* Make job_ignore() / job_watch() work. If these calls were balanced,
619 * then this wouldn't be necessarily.
622 /* A job that forced all other jobs to be temporarily launch-on-
625 forced_peers_to_demand_mode
:1,
626 // man launchd.plist --> Nice
628 /* A job was asked to be unloaded/removed while running, we'll remove it
632 // job_kill() was called.
634 // Enter the kernel debugger before killing a job.
636 // A hack that launchd+launchctl use during jobmgr_t creation.
638 // man launchd.plist --> StartOnMount
640 // This job is a per-user launchd managed by the PID 1 launchd.
642 // A job thoroughly confused launchd. We need to unload it ASAP.
643 unload_at_mig_return
:1,
644 // man launchd.plist --> AbandonProcessGroup
646 /* During shutdown, do not send SIGTERM to stray processes in the
647 * process group of this job.
649 ignore_pg_at_shutdown
:1,
650 /* Don't let this job create new 'job_t' objects in launchd. Has been
651 * seriously overloaded for the purposes of sandboxing.
654 // man launchd.plist --> EnableTransactions
655 enable_transactions
:1,
656 // The job was sent SIGKILL because it was clean.
658 // The job has an OtherJobEnabled KeepAlive criterion.
660 // The job exited due to a crash.
662 // We've received NOTE_EXIT for the job and reaped it.
664 // job_stop() was called.
666 /* The job is to be kept alive continuously, but it must first get an
670 // The job is a bootstrapper.
672 // The job owns the console.
674 /* The job runs as a non-root user on embedded but has select privileges
675 * of the root user. This is SpringBoard.
678 // The job is responsible for drawing the home screen on embedded.
680 // We got NOTE_EXEC for the job.
682 // The job is an XPC service, and XPC proxy successfully exec(3)ed.
684 // The (anonymous) job called vprocmgr_switch_to_session().
686 // The job has Jetsam limits in place.
688 // The job's Jetsam memory limits should only be applied in the background
689 jetsam_memory_limit_background
:1,
690 /* This job was created as the result of a look up of a service provided
691 * by a MultipleInstance job.
693 dedicated_instance
:1,
694 // The job supports creating additional instances of itself.
695 multiple_instances
:1,
696 /* The sub-job was already removed from the parent's list of
700 /* The job is responsible for monitoring external events for this
704 // The event monitor job has retrieved the initial list of events.
705 event_monitor_ready2signal
:1,
708 // Disable ASLR when launching this job.
710 // The job is an XPC Service.
712 // The job is the Performance team's shutdown monitor.
714 // We should open a transaction for the job when shutdown begins.
716 /* The job was sent SIGKILL but did not exit in a timely fashion,
717 * indicating a kernel bug.
720 // The job is the XPC domain bootstrapper.
722 // The job is an app (on either iOS or OS X) and has different resource
725 // FairPlay decryption failed on the job. This should only ever happen
728 // The job failed to exec(3) for reasons that may be transient, so we're
729 // waiting for UserEventAgent to tell us when it's okay to try spawning
730 // again (i.e. when the executable path appears, when the UID appears,
733 // The job exited due to memory pressure.
735 // The job supports idle-exit.
737 // The job was implicitly reaped by the kernel.
740 joins_gui_session
:1,
741 low_priority_background_io
:1;
746 static size_t hash_label(const char *label
) __attribute__((pure
));
747 static size_t hash_ms(const char *msstr
) __attribute__((pure
));
748 static SLIST_HEAD(, job_s
) s_curious_jobs
;
749 static LIST_HEAD(, job_s
) managed_actives
[ACTIVE_JOB_HASH_SIZE
];
751 #define job_assumes(j, e) os_assumes_ctx(job_log_bug, j, (e))
752 #define job_assumes_zero(j, e) os_assumes_zero_ctx(job_log_bug, j, (e))
753 #define job_assumes_zero_p(j, e) posix_assumes_zero_ctx(job_log_bug, j, (e))
755 static void job_import_keys(launch_data_t obj
, const char *key
, void *context
);
756 static void job_import_bool(job_t j
, const char *key
, bool value
);
757 static void job_import_string(job_t j
, const char *key
, const char *value
);
758 static void job_import_integer(job_t j
, const char *key
, long long value
);
759 static void job_import_dictionary(job_t j
, const char *key
, launch_data_t value
);
760 static void job_import_array(job_t j
, const char *key
, launch_data_t value
);
761 static void job_import_opaque(job_t j
, const char *key
, launch_data_t value
);
762 static bool job_set_global_on_demand(job_t j
, bool val
);
763 static const char *job_active(job_t j
);
764 static void job_watch(job_t j
);
765 static void job_ignore(job_t j
);
766 static void job_reap(job_t j
);
767 static bool job_useless(job_t j
);
768 static bool job_keepalive(job_t j
);
769 static void job_dispatch_curious_jobs(job_t j
);
770 static void job_start(job_t j
);
771 static void job_start_child(job_t j
) __attribute__((noreturn
));
772 static void job_setup_attributes(job_t j
);
773 static bool job_setup_machport(job_t j
);
774 static kern_return_t
job_setup_exit_port(job_t j
);
775 static void job_setup_fd(job_t j
, int target_fd
, const char *path
, int flags
);
776 static void job_postfork_become_user(job_t j
);
777 static void job_postfork_test_user(job_t j
);
778 static void job_log_pids_with_weird_uids(job_t j
);
779 static void job_setup_exception_port(job_t j
, task_t target_task
);
780 static void job_callback(void *obj
, struct kevent
*kev
);
781 static void job_callback_proc(job_t j
, struct kevent
*kev
);
782 static void job_callback_timer(job_t j
, void *ident
);
783 static void job_callback_read(job_t j
, int ident
);
784 static void job_log_stray_pg(job_t j
);
785 static void job_log_children_without_exec(job_t j
);
786 static job_t
job_new_anonymous(jobmgr_t jm
, pid_t anonpid
) __attribute__((malloc
, nonnull
, warn_unused_result
));
787 static job_t
job_new(jobmgr_t jm
, const char *label
, const char *prog
, const char *const *argv
) __attribute__((malloc
, nonnull(1,2), warn_unused_result
));
788 static job_t
job_new_alias(jobmgr_t jm
, job_t src
);
789 static job_t
job_new_via_mach_init(job_t j
, const char *cmd
, uid_t uid
, bool ond
) __attribute__((malloc
, nonnull
, warn_unused_result
));
790 static job_t
job_new_subjob(job_t j
, uuid_t identifier
);
791 static void job_kill(job_t j
);
792 static void job_uncork_fork(job_t j
);
793 static void job_logv(job_t j
, int pri
, int err
, const char *msg
, va_list ap
) __attribute__((format(printf
, 4, 0)));
794 static void job_log_error(job_t j
, int pri
, const char *msg
, ...) __attribute__((format(printf
, 3, 4)));
795 static bool job_log_bug(_SIMPLE_STRING asl_message
, void *ctx
, const char *message
);
796 static void job_log_perf_statistics(job_t j
, struct rusage_info_v1
*ri
, int64_t exit_status
);
798 static void job_log_systemstats(pid_t pid
, uint64_t uniqueid
, uint64_t parent_uniqueid
, pid_t req_pid
, uint64_t req_uniqueid
, const char *name
, struct rusage_info_v1
*ri
, int64_t exit_status
);
800 static void job_set_exception_port(job_t j
, mach_port_t port
);
801 static kern_return_t
job_mig_spawn_internal(job_t j
, vm_offset_t indata
, mach_msg_type_number_t indataCnt
, mach_port_t asport
, job_t
*outj
);
802 static void job_open_shutdown_transaction(job_t ji
);
803 static void job_close_shutdown_transaction(job_t ji
);
804 static launch_data_t
job_do_legacy_ipc_request(job_t j
, launch_data_t request
, mach_port_t asport
);
805 static void job_setup_per_user_directory(job_t j
, uid_t uid
, const char *path
);
806 static void job_setup_per_user_directories(job_t j
, uid_t uid
, const char *label
);
807 static void job_update_jetsam_properties(job_t j
, xpc_jetsam_band_t band
, uint64_t user_data
);
808 static void job_update_jetsam_memory_limit(job_t j
, int32_t limit
);
810 #if TARGET_OS_EMBEDDED
811 static bool job_import_defaults(launch_data_t pload
);
814 static struct priority_properties_t
{
817 } _launchd_priority_map
[] = {
818 { XPC_JETSAM_BAND_SUSPENDED
, JETSAM_PRIORITY_IDLE
},
819 { XPC_JETSAM_BAND_BACKGROUND_OPPORTUNISTIC
, JETSAM_PRIORITY_BACKGROUND_OPPORTUNISTIC
},
820 { XPC_JETSAM_BAND_BACKGROUND
, JETSAM_PRIORITY_BACKGROUND
},
821 { XPC_JETSAM_BAND_MAIL
, JETSAM_PRIORITY_MAIL
},
822 { XPC_JETSAM_BAND_PHONE
, JETSAM_PRIORITY_PHONE
},
823 { XPC_JETSAM_BAND_UI_SUPPORT
, JETSAM_PRIORITY_UI_SUPPORT
},
824 { XPC_JETSAM_BAND_FOREGROUND_SUPPORT
, JETSAM_PRIORITY_FOREGROUND_SUPPORT
},
825 { XPC_JETSAM_BAND_FOREGROUND
, JETSAM_PRIORITY_FOREGROUND
},
826 { XPC_JETSAM_BAND_AUDIO
, JETSAM_PRIORITY_AUDIO_AND_ACCESSORY
},
827 { XPC_JETSAM_BAND_ACCESSORY
, JETSAM_PRIORITY_AUDIO_AND_ACCESSORY
},
828 { XPC_JETSAM_BAND_CRITICAL
, JETSAM_PRIORITY_CRITICAL
},
829 { XPC_JETSAM_BAND_TELEPHONY
, JETSAM_PRIORITY_TELEPHONY
},
832 static const struct {
835 } launchd_keys2limits
[] = {
836 { LAUNCH_JOBKEY_RESOURCELIMIT_CORE
, RLIMIT_CORE
},
837 { LAUNCH_JOBKEY_RESOURCELIMIT_CPU
, RLIMIT_CPU
},
838 { LAUNCH_JOBKEY_RESOURCELIMIT_DATA
, RLIMIT_DATA
},
839 { LAUNCH_JOBKEY_RESOURCELIMIT_FSIZE
, RLIMIT_FSIZE
},
840 { LAUNCH_JOBKEY_RESOURCELIMIT_MEMLOCK
, RLIMIT_MEMLOCK
},
841 { LAUNCH_JOBKEY_RESOURCELIMIT_NOFILE
, RLIMIT_NOFILE
},
842 { LAUNCH_JOBKEY_RESOURCELIMIT_NPROC
, RLIMIT_NPROC
},
843 { LAUNCH_JOBKEY_RESOURCELIMIT_RSS
, RLIMIT_RSS
},
844 { LAUNCH_JOBKEY_RESOURCELIMIT_STACK
, RLIMIT_STACK
},
847 static time_t cronemu(int mon
, int mday
, int hour
, int min
);
848 static time_t cronemu_wday(int wday
, int hour
, int min
);
849 static bool cronemu_mon(struct tm
*wtm
, int mon
, int mday
, int hour
, int min
);
850 static bool cronemu_mday(struct tm
*wtm
, int mday
, int hour
, int min
);
851 static bool cronemu_hour(struct tm
*wtm
, int hour
, int min
);
852 static bool cronemu_min(struct tm
*wtm
, int min
);
854 // miscellaneous file local functions
855 static size_t get_kern_max_proc(void);
856 static char **mach_cmd2argv(const char *string
);
857 static size_t our_strhash(const char *s
) __attribute__((pure
));
859 void eliminate_double_reboot(void);
861 #pragma mark XPC Domain Forward Declarations
862 static job_t
_xpc_domain_import_service(jobmgr_t jm
, launch_data_t pload
);
863 static int _xpc_domain_import_services(job_t j
, launch_data_t services
);
865 #pragma mark XPC Event Forward Declarations
866 static int xpc_event_find_channel(job_t j
, const char *stream
, struct machservice
**ms
);
867 static int xpc_event_get_event_name(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
868 static int xpc_event_set_event(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
869 static int xpc_event_copy_event(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
870 static int xpc_event_channel_check_in(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
871 static int xpc_event_channel_look_up(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
872 static int xpc_event_provider_check_in(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
873 static int xpc_event_provider_set_state(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
875 #pragma mark XPC Process Forward Declarations
876 static int xpc_process_set_jetsam_band(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
877 static int xpc_process_set_jetsam_memory_limit(job_t j
, xpc_object_t request
, xpc_object_t
*reply
);
879 // file local globals
880 static job_t _launchd_embedded_god
= NULL
;
881 static job_t _launchd_embedded_home
= NULL
;
882 static size_t total_children
;
883 static size_t total_anon_children
;
884 static mach_port_t the_exception_server
;
885 static job_t workaround_5477111
;
886 static LIST_HEAD(, job_s
) s_needing_sessions
;
887 static LIST_HEAD(, eventsystem
) _s_event_systems
;
888 static struct eventsystem
*_launchd_support_system
;
889 static job_t _launchd_event_monitor
;
890 static job_t _launchd_xpc_bootstrapper
;
891 static job_t _launchd_shutdown_monitor
;
893 #if TARGET_OS_EMBEDDED
894 static xpc_object_t _launchd_defaults_cache
;
896 mach_port_t launchd_audit_port
= MACH_PORT_DEAD
;
897 pid_t launchd_audit_session
= 0;
899 mach_port_t launchd_audit_port
= MACH_PORT_NULL
;
900 au_asid_t launchd_audit_session
= AU_DEFAUDITSID
;
903 static int s_no_hang_fd
= -1;
905 // process wide globals
906 mach_port_t inherited_bootstrap_port
;
907 jobmgr_t root_jobmgr
;
908 bool launchd_shutdown_debugging
= false;
909 bool launchd_verbose_boot
= false;
910 bool launchd_embedded_handofgod
= false;
911 bool launchd_runtime_busy_time
= false;
916 struct socketgroup
*sg
;
917 struct machservice
*ms
;
919 if (j
->currently_ignored
) {
923 job_log(j
, LOG_DEBUG
, "Ignoring...");
925 j
->currently_ignored
= true;
927 SLIST_FOREACH(sg
, &j
->sockets
, sle
) {
928 socketgroup_ignore(j
, sg
);
931 SLIST_FOREACH(ms
, &j
->machservices
, sle
) {
932 machservice_ignore(j
, ms
);
939 struct socketgroup
*sg
;
940 struct machservice
*ms
;
942 if (!j
->currently_ignored
) {
946 job_log(j
, LOG_DEBUG
, "Watching...");
948 j
->currently_ignored
= false;
950 SLIST_FOREACH(sg
, &j
->sockets
, sle
) {
951 socketgroup_watch(j
, sg
);
954 SLIST_FOREACH(ms
, &j
->machservices
, sle
) {
955 machservice_watch(j
, ms
);
964 if (unlikely(!j
->p
|| j
->stopped
|| j
->anonymous
)) {
968 #if TARGET_OS_EMBEDDED
969 if (launchd_embedded_handofgod
&& _launchd_embedded_god
) {
970 if (!_launchd_embedded_god
->username
|| !j
->username
) {
975 if (strcmp(j
->username
, _launchd_embedded_god
->username
) != 0) {
979 } else if (launchd_embedded_handofgod
) {
985 j
->sent_signal_time
= runtime_get_opaque_time();
987 job_log(j
, LOG_DEBUG
| LOG_CONSOLE
, "Stopping job...");
990 error
= proc_terminate(j
->p
, &sig
);
992 job_log(j
, LOG_ERR
| LOG_CONSOLE
, "Could not terminate job: %d: %s", error
, strerror(error
));
993 job_log(j
, LOG_NOTICE
| LOG_CONSOLE
, "Using fallback option to terminate job...");
994 error
= kill2(j
->p
, SIGTERM
);
996 job_log(j
, LOG_ERR
, "Could not signal job: %d: %s", error
, strerror(error
));
1005 j
->sent_sigkill
= true;
1006 j
->clean_kill
= true;
1008 /* We cannot effectively simulate an exit for jobs during the course
1009 * of a normal run. Even if we pretend that the job exited, we will
1010 * still not have gotten the receive rights associated with the
1011 * job's MachServices back, so we cannot safely respawn it.
1013 if (j
->mgr
->shutting_down
) {
1014 error
= kevent_mod((uintptr_t)&j
->exit_timeout
, EVFILT_TIMER
, EV_ADD
|EV_ONESHOT
, NOTE_SECONDS
, LAUNCHD_SIGKILL_TIMER
, j
);
1015 (void)job_assumes_zero_p(j
, error
);
1018 job_log(j
, LOG_DEBUG
| LOG_CONSOLE
, "Sent job SIGKILL.");
1021 if (j
->exit_timeout
) {
1022 error
= kevent_mod((uintptr_t)&j
->exit_timeout
, EVFILT_TIMER
, EV_ADD
|EV_ONESHOT
, NOTE_SECONDS
, j
->exit_timeout
, j
);
1023 (void)job_assumes_zero_p(j
, error
);
1025 job_log(j
, LOG_NOTICE
, "This job has an infinite exit timeout");
1027 job_log(j
, LOG_DEBUG
, "Sent job SIGTERM.");
1030 job_log(j
, LOG_ERR
| LOG_CONSOLE
, "Job was sent unexpected signal: %d: %s", sig
, strsignal(sig
));
1041 launch_data_t tmp
, tmp2
, tmp3
, r
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
);
1047 if ((tmp
= launch_data_new_string(j
->label
))) {
1048 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_LABEL
);
1050 if ((tmp
= launch_data_new_string(j
->mgr
->name
))) {
1051 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_LIMITLOADTOSESSIONTYPE
);
1053 if ((tmp
= launch_data_new_bool(j
->ondemand
))) {
1054 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_ONDEMAND
);
1057 long long status
= j
->last_exit_status
;
1059 status
= LAUNCH_EXITSTATUS_FAIRPLAY_FAIL
;
1061 if ((tmp
= launch_data_new_integer(status
))) {
1062 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_LASTEXITSTATUS
);
1065 if (j
->p
&& (tmp
= launch_data_new_integer(j
->p
))) {
1066 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_PID
);
1068 if ((tmp
= launch_data_new_integer(j
->timeout
))) {
1069 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_TIMEOUT
);
1071 if (j
->prog
&& (tmp
= launch_data_new_string(j
->prog
))) {
1072 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_PROGRAM
);
1074 if (j
->stdinpath
&& (tmp
= launch_data_new_string(j
->stdinpath
))) {
1075 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_STANDARDINPATH
);
1077 if (j
->stdoutpath
&& (tmp
= launch_data_new_string(j
->stdoutpath
))) {
1078 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_STANDARDOUTPATH
);
1080 if (j
->stderrpath
&& (tmp
= launch_data_new_string(j
->stderrpath
))) {
1081 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_STANDARDERRORPATH
);
1083 if (likely(j
->argv
) && (tmp
= launch_data_alloc(LAUNCH_DATA_ARRAY
))) {
1086 for (i
= 0; i
< j
->argc
; i
++) {
1087 if ((tmp2
= launch_data_new_string(j
->argv
[i
]))) {
1088 launch_data_array_set_index(tmp
, tmp2
, i
);
1092 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_PROGRAMARGUMENTS
);
1095 if (j
->enable_transactions
&& (tmp
= launch_data_new_bool(true))) {
1096 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_ENABLETRANSACTIONS
);
1099 if (j
->session_create
&& (tmp
= launch_data_new_bool(true))) {
1100 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_SESSIONCREATE
);
1103 if (j
->inetcompat
&& (tmp
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
))) {
1104 if ((tmp2
= launch_data_new_bool(j
->inetcompat_wait
))) {
1105 launch_data_dict_insert(tmp
, tmp2
, LAUNCH_JOBINETDCOMPATIBILITY_WAIT
);
1107 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_INETDCOMPATIBILITY
);
1110 if (!SLIST_EMPTY(&j
->sockets
) && (tmp
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
))) {
1111 struct socketgroup
*sg
;
1114 SLIST_FOREACH(sg
, &j
->sockets
, sle
) {
1115 if ((tmp2
= launch_data_alloc(LAUNCH_DATA_ARRAY
))) {
1116 for (i
= 0; i
< sg
->fd_cnt
; i
++) {
1117 if ((tmp3
= launch_data_new_fd(sg
->fds
[i
]))) {
1118 launch_data_array_set_index(tmp2
, tmp3
, i
);
1121 launch_data_dict_insert(tmp
, tmp2
, sg
->name
);
1125 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_SOCKETS
);
1128 if (!SLIST_EMPTY(&j
->machservices
) && (tmp
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
))) {
1129 struct machservice
*ms
;
1133 SLIST_FOREACH(ms
, &j
->machservices
, sle
) {
1136 tmp3
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
);
1139 tmp2
= launch_data_new_machport(MACH_PORT_NULL
);
1140 launch_data_dict_insert(tmp3
, tmp2
, ms
->name
);
1143 tmp2
= launch_data_new_machport(MACH_PORT_NULL
);
1144 launch_data_dict_insert(tmp
, tmp2
, ms
->name
);
1148 launch_data_dict_insert(r
, tmp
, LAUNCH_JOBKEY_MACHSERVICES
);
1151 launch_data_dict_insert(r
, tmp3
, LAUNCH_JOBKEY_PERJOBMACHSERVICES
);
1159 jobmgr_log_active_jobs(jobmgr_t jm
)
1161 const char *why_active
;
1165 SLIST_FOREACH(jmi
, &jm
->submgrs
, sle
) {
1166 jobmgr_log_active_jobs(jmi
);
1169 int level
= LOG_DEBUG
;
1171 level
|= LOG_CONSOLE
;
1174 LIST_FOREACH(ji
, &jm
->jobs
, sle
) {
1175 if ((why_active
= job_active(ji
))) {
1177 job_log(ji
, level
, "%s", why_active
);
1180 (void)proc_get_dirty(ji
->p
, &flags
);
1181 if (!(flags
& PROC_DIRTY_TRACKED
)) {
1185 char *dirty
= "clean";
1186 if (flags
& PROC_DIRTY_IS_DIRTY
) {
1190 char *idle_exit
= "idle-exit unsupported";
1191 if (flags
& PROC_DIRTY_ALLOWS_IDLE_EXIT
) {
1192 idle_exit
= "idle-exit supported";
1195 job_log(ji
, level
, "Killability: %s/%s", dirty
, idle_exit
);
1202 jobmgr_still_alive_with_check(jobmgr_t jm
)
1204 int level
= LOG_DEBUG
;
1206 level
|= LOG_CONSOLE
;
1209 jobmgr_log(jm
, level
, "Still alive with %lu/%lu (normal/anonymous) children.", total_children
, total_anon_children
);
1210 jobmgr_log_active_jobs(jm
);
1215 jobmgr_shutdown(jobmgr_t jm
)
1218 jobmgr_log(jm
, LOG_DEBUG
, "Beginning job manager shutdown with flags: %s", reboot_flags_to_C_names(jm
->reboot_flags
));
1220 jm
->shutdown_time
= runtime_get_wall_time() / USEC_PER_SEC
;
1223 (void)localtime_r(&jm
->shutdown_time
, &curtime
);
1226 (void)asctime_r(&curtime
, date
);
1227 // Trim the new line that asctime_r(3) puts there for some reason.
1230 if (jm
== root_jobmgr
&& pid1_magic
) {
1231 jobmgr_log(jm
, LOG_DEBUG
| LOG_CONSOLE
, "Userspace shutdown begun at: %s", date
);
1233 jobmgr_log(jm
, LOG_DEBUG
, "Job manager shutdown begun at: %s", date
);
1236 jm
->shutting_down
= true;
1238 SLIST_FOREACH_SAFE(jmi
, &jm
->submgrs
, sle
, jmn
) {
1239 jobmgr_shutdown(jmi
);
1242 if (!jm
->parentmgr
) {
1244 // Spawn the shutdown monitor.
1245 if (_launchd_shutdown_monitor
&& !_launchd_shutdown_monitor
->p
) {
1246 job_log(_launchd_shutdown_monitor
, LOG_NOTICE
| LOG_CONSOLE
, "Starting shutdown monitor.");
1247 job_dispatch(_launchd_shutdown_monitor
, true);
1251 (void)jobmgr_assumes_zero_p(jm
, kevent_mod((uintptr_t)jm
, EVFILT_TIMER
, EV_ADD
, NOTE_SECONDS
, 5, jm
));
1254 return jobmgr_do_garbage_collection(jm
);
1258 jobmgr_remove(jobmgr_t jm
)
1263 jobmgr_log(jm
, LOG_DEBUG
, "Removing job manager.");
1264 if (!SLIST_EMPTY(&jm
->submgrs
)) {
1266 while ((jmi
= SLIST_FIRST(&jm
->submgrs
))) {
1271 (void)jobmgr_assumes_zero(jm
, cnt
);
1274 while ((ji
= LIST_FIRST(&jm
->jobs
))) {
1275 if (!ji
->anonymous
&& ji
->p
!= 0) {
1276 job_log(ji
, LOG_ERR
, "Job is still active at job manager teardown.");
1283 struct waiting4attach
*w4ai
= NULL
;
1284 while ((w4ai
= LIST_FIRST(&jm
->attaches
))) {
1285 waiting4attach_delete(jm
, w4ai
);
1289 (void)jobmgr_assumes_zero(jm
, launchd_mport_deallocate(jm
->req_port
));
1292 (void)jobmgr_assumes_zero(jm
, launchd_mport_close_recv(jm
->jm_port
));
1295 if (jm
->req_bsport
) {
1296 (void)jobmgr_assumes_zero(jm
, launchd_mport_deallocate(jm
->req_bsport
));
1298 if (jm
->req_excport
) {
1299 (void)jobmgr_assumes_zero(jm
, launchd_mport_deallocate(jm
->req_excport
));
1301 if (MACH_PORT_VALID(jm
->req_asport
)) {
1302 (void)jobmgr_assumes_zero(jm
, launchd_mport_deallocate(jm
->req_asport
));
1304 if (jm
->req_rport
) {
1305 kern_return_t kr
= xpc_call_wakeup(jm
->req_rport
, jm
->error
);
1306 if (!(kr
== KERN_SUCCESS
|| kr
== MACH_SEND_INVALID_DEST
)) {
1307 /* If the originator went away, the reply port will be a dead name,
1308 * and we expect this to fail.
1310 (void)jobmgr_assumes_zero(jm
, kr
);
1314 (void)jobmgr_assumes_zero(jm
, vm_deallocate(mach_task_self(), jm
->req_ctx
, jm
->req_ctx_sz
));
1317 time_t ts
= runtime_get_wall_time() / USEC_PER_SEC
;
1319 (void)localtime_r(&ts
, &curtime
);
1322 (void)asctime_r(&curtime
, date
);
1325 time_t delta
= ts
- jm
->shutdown_time
;
1326 if (jm
== root_jobmgr
&& pid1_magic
) {
1327 jobmgr_log(jm
, LOG_DEBUG
| LOG_CONSOLE
, "Userspace shutdown finished at: %s", date
);
1328 jobmgr_log(jm
, LOG_DEBUG
| LOG_CONSOLE
, "Userspace shutdown took approximately %ld second%s.", delta
, (delta
!= 1) ? "s" : "");
1330 jobmgr_log(jm
, LOG_DEBUG
, "Job manager shutdown finished at: %s", date
);
1331 jobmgr_log(jm
, LOG_DEBUG
, "Job manager shutdown took approximately %ld second%s.", delta
, (delta
!= 1) ? "s" : "");
1334 if (jm
->parentmgr
) {
1335 runtime_del_weak_ref();
1336 SLIST_REMOVE(&jm
->parentmgr
->submgrs
, jm
, jobmgr_s
, sle
);
1338 // Hack for the guest user so that its stuff doesn't persist.
1340 // <rdar://problem/14527875>
1341 if (strcmp(jm
->name
, VPROCMGR_SESSION_AQUA
) == 0 && getuid() == 201) {
1344 } else if (pid1_magic
) {
1345 eliminate_double_reboot();
1346 launchd_log_vm_stats();
1347 jobmgr_log_stray_children(jm
, true);
1348 jobmgr_log(root_jobmgr
, LOG_NOTICE
| LOG_CONSOLE
, "About to call: reboot(%s).", reboot_flags_to_C_names(jm
->reboot_flags
));
1350 (void)jobmgr_assumes_zero_p(jm
, reboot(jm
->reboot_flags
));
1352 jobmgr_log(jm
, LOG_DEBUG
, "About to exit");
1363 struct waiting_for_removal
*w4r
;
1364 struct calendarinterval
*ci
;
1365 struct semaphoreitem
*si
;
1366 struct socketgroup
*sg
;
1367 struct machservice
*ms
;
1368 struct limititem
*li
;
1372 /* HACK: Egregious code duplication. But as with machservice_delete(),
1373 * job aliases can't (and shouldn't) have any complex behaviors
1374 * associated with them.
1376 while ((ms
= SLIST_FIRST(&j
->machservices
))) {
1377 machservice_delete(j
, ms
, false);
1380 LIST_REMOVE(j
, sle
);
1381 LIST_REMOVE(j
, label_hash_sle
);
1386 #if TARGET_OS_EMBEDDED
1387 if (launchd_embedded_handofgod
&& _launchd_embedded_god
) {
1388 if (!(_launchd_embedded_god
->username
&& j
->username
)) {
1393 if (strcmp(j
->username
, _launchd_embedded_god
->username
) != 0) {
1397 } else if (launchd_embedded_handofgod
) {
1403 /* Do this BEFORE we check and see whether the job is still active. If we're
1404 * a sub-job, we're being removed due to the parent job removing us.
1405 * Therefore, the parent job will free itself after this call completes. So
1406 * if we defer removing ourselves from the parent's list, we'll crash when
1407 * we finally get around to it.
1409 if (j
->dedicated_instance
&& !j
->former_subjob
) {
1410 LIST_REMOVE(j
, subjob_sle
);
1411 j
->former_subjob
= true;
1414 if (unlikely(j
->p
)) {
1418 job_log(j
, LOG_DEBUG
, "Removal pended until the job exits");
1420 if (!j
->removal_pending
) {
1421 j
->removal_pending
= true;
1431 job_dispatch_curious_jobs(j
);
1434 ipc_close_all_with_job(j
);
1436 if (j
->forced_peers_to_demand_mode
) {
1437 job_set_global_on_demand(j
, false);
1440 if (job_assumes_zero(j
, j
->fork_fd
)) {
1441 (void)posix_assumes_zero(runtime_close(j
->fork_fd
));
1445 (void)posix_assumes_zero(runtime_close(j
->stdin_fd
));
1449 (void)job_assumes_zero(j
, launchd_mport_close_recv(j
->j_port
));
1452 while ((sg
= SLIST_FIRST(&j
->sockets
))) {
1453 socketgroup_delete(j
, sg
);
1455 while ((ci
= SLIST_FIRST(&j
->cal_intervals
))) {
1456 calendarinterval_delete(j
, ci
);
1458 while ((ei
= SLIST_FIRST(&j
->env
))) {
1459 envitem_delete(j
, ei
, false);
1461 while ((ei
= SLIST_FIRST(&j
->global_env
))) {
1462 envitem_delete(j
, ei
, true);
1464 while ((li
= SLIST_FIRST(&j
->limits
))) {
1465 limititem_delete(j
, li
);
1467 while ((ms
= SLIST_FIRST(&j
->machservices
))) {
1468 machservice_delete(j
, ms
, false);
1470 while ((si
= SLIST_FIRST(&j
->semaphores
))) {
1471 semaphoreitem_delete(j
, si
);
1473 while ((w4r
= SLIST_FIRST(&j
->removal_watchers
))) {
1474 waiting4removal_delete(j
, w4r
);
1477 struct externalevent
*eei
= NULL
;
1478 while ((eei
= LIST_FIRST(&j
->events
))) {
1479 externalevent_delete(eei
);
1482 if (j
->event_monitor
) {
1483 _launchd_event_monitor
= NULL
;
1485 if (j
->xpc_bootstrapper
) {
1486 _launchd_xpc_bootstrapper
= NULL
;
1498 if (j
->workingdir
) {
1499 free(j
->workingdir
);
1510 if (j
->stdoutpath
) {
1511 free(j
->stdoutpath
);
1513 if (j
->stderrpath
) {
1514 free(j
->stderrpath
);
1516 if (j
->alt_exc_handler
) {
1517 free(j
->alt_exc_handler
);
1519 if (j
->cfbundleidentifier
) {
1520 free(j
->cfbundleidentifier
);
1523 if (j
->seatbelt_profile
) {
1524 free(j
->seatbelt_profile
);
1526 if (j
->container_identifier
) {
1527 free(j
->container_identifier
);
1531 if (j
->quarantine_data
) {
1532 free(j
->quarantine_data
);
1538 if (j
->start_interval
) {
1539 runtime_del_weak_ref();
1540 (void)job_assumes_zero_p(j
, kevent_mod((uintptr_t)&j
->start_interval
, EVFILT_TIMER
, EV_DELETE
, 0, 0, NULL
));
1542 if (j
->exit_timeout
) {
1543 /* If this fails, it just means the timer's already fired, so no need to
1544 * wrap it in an assumes() macro.
1546 (void)kevent_mod((uintptr_t)&j
->exit_timeout
, EVFILT_TIMER
, EV_DELETE
, 0, 0, NULL
);
1548 if (j
->asport
!= MACH_PORT_NULL
) {
1549 (void)job_assumes_zero(j
, launchd_mport_deallocate(j
->asport
));
1551 if (!uuid_is_null(j
->expected_audit_uuid
)) {
1552 LIST_REMOVE(j
, needing_session_sle
);
1554 if (j
->embedded_god
) {
1555 _launchd_embedded_god
= NULL
;
1557 if (j
->embedded_home
) {
1558 _launchd_embedded_home
= NULL
;
1560 if (j
->shutdown_monitor
) {
1561 _launchd_shutdown_monitor
= NULL
;
1564 (void)kevent_mod((uintptr_t)j
, EVFILT_TIMER
, EV_DELETE
, 0, 0, NULL
);
1566 LIST_REMOVE(j
, sle
);
1567 LIST_REMOVE(j
, label_hash_sle
);
1571 LIST_FOREACH_SAFE(ji
, &j
->subjobs
, subjob_sle
, jit
) {
1575 job_log(j
, LOG_DEBUG
, "Removed");
1577 j
->kqjob_callback
= (kq_callback
)0x8badf00d;
1582 socketgroup_setup(launch_data_t obj
, const char *key
, void *context
)
1584 launch_data_t tmp_oai
;
1586 size_t i
, fd_cnt
= 1;
1589 if (launch_data_get_type(obj
) == LAUNCH_DATA_ARRAY
) {
1590 fd_cnt
= launch_data_array_get_count(obj
);
1593 fds
= alloca(fd_cnt
* sizeof(int));
1595 for (i
= 0; i
< fd_cnt
; i
++) {
1596 if (launch_data_get_type(obj
) == LAUNCH_DATA_ARRAY
) {
1597 tmp_oai
= launch_data_array_get_index(obj
, i
);
1602 fds
[i
] = launch_data_get_fd(tmp_oai
);
1605 socketgroup_new(j
, key
, fds
, fd_cnt
);
1607 ipc_revoke_fds(obj
);
1611 job_set_global_on_demand(job_t j
, bool val
)
1613 if (j
->forced_peers_to_demand_mode
&& val
) {
1615 } else if (!j
->forced_peers_to_demand_mode
&& !val
) {
1619 if ((j
->forced_peers_to_demand_mode
= val
)) {
1620 j
->mgr
->global_on_demand_cnt
++;
1622 j
->mgr
->global_on_demand_cnt
--;
1625 if (j
->mgr
->global_on_demand_cnt
== 0) {
1626 jobmgr_dispatch_all(j
->mgr
, false);
1633 job_setup_machport(job_t j
)
1635 if (job_assumes_zero(j
, launchd_mport_create_recv(&j
->j_port
)) != KERN_SUCCESS
) {
1639 if (job_assumes_zero(j
, runtime_add_mport(j
->j_port
, job_server
)) != KERN_SUCCESS
) {
1643 if (job_assumes_zero(j
, launchd_mport_notify_req(j
->j_port
, MACH_NOTIFY_NO_SENDERS
)) != KERN_SUCCESS
) {
1644 (void)job_assumes_zero(j
, launchd_mport_close_recv(j
->j_port
));
1650 (void)job_assumes_zero(j
, launchd_mport_close_recv(j
->j_port
));
1656 job_setup_exit_port(job_t j
)
1658 kern_return_t kr
= launchd_mport_create_recv(&j
->exit_status_port
);
1659 if (job_assumes_zero(j
, kr
) != KERN_SUCCESS
) {
1660 return MACH_PORT_NULL
;
1663 struct mach_port_limits limits
= {
1666 kr
= mach_port_set_attributes(mach_task_self(), j
->exit_status_port
, MACH_PORT_LIMITS_INFO
, (mach_port_info_t
)&limits
, sizeof(limits
));
1667 (void)job_assumes_zero(j
, kr
);
1669 kr
= launchd_mport_make_send_once(j
->exit_status_port
, &j
->exit_status_dest
);
1670 if (job_assumes_zero(j
, kr
) != KERN_SUCCESS
) {
1671 (void)job_assumes_zero(j
, launchd_mport_close_recv(j
->exit_status_port
));
1672 j
->exit_status_port
= MACH_PORT_NULL
;
1679 job_new_via_mach_init(job_t j
, const char *cmd
, uid_t uid
, bool ond
)
1681 const char **argv
= (const char **)mach_cmd2argv(cmd
);
1688 jr
= job_new(j
->mgr
, AUTO_PICK_LEGACY_LABEL
, NULL
, argv
);
1691 // Job creation can be denied during shutdown.
1692 if (unlikely(jr
== NULL
)) {
1698 jr
->legacy_mach_job
= true;
1699 jr
->abandon_pg
= true;
1700 jr
->priv_port_has_senders
= true; // the IPC that called us will make-send on this port
1702 if (!job_setup_machport(jr
)) {
1706 job_log(jr
, LOG_INFO
, "Legacy%s server created", ond
? " on-demand" : "");
1718 job_new_anonymous(jobmgr_t jm
, pid_t anonpid
)
1720 struct proc_bsdshortinfo proc
;
1721 bool shutdown_state
;
1722 job_t jp
= NULL
, jr
= NULL
;
1723 uid_t kp_euid
, kp_uid
, kp_svuid
;
1724 gid_t kp_egid
, kp_gid
, kp_svgid
;
1731 if (anonpid
>= 100000) {
1732 /* The kernel current defines PID_MAX to be 99999, but that define isn't
1735 launchd_syslog(LOG_WARNING
, "Did PID_MAX change? Got request from PID: %d", anonpid
);
1740 /* libproc returns the number of bytes written into the buffer upon success,
1741 * zero on failure. I'd much rather it return -1 on failure, like sysctl(3).
1743 if (proc_pidinfo(anonpid
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
1744 if (errno
!= ESRCH
) {
1745 (void)jobmgr_assumes_zero(jm
, errno
);
1750 if (proc
.pbsi_comm
[0] == '\0') {
1751 launchd_syslog(LOG_WARNING
, "Blank command for PID: %d", anonpid
);
1756 if (unlikely(proc
.pbsi_status
== SZOMB
)) {
1757 jobmgr_log(jm
, LOG_DEBUG
, "Tried to create an anonymous job for zombie PID %u: %s", anonpid
, proc
.pbsi_comm
);
1760 if (unlikely(proc
.pbsi_flags
& P_SUGID
)) {
1761 jobmgr_log(jm
, LOG_DEBUG
, "Inconsistency: P_SUGID is set on PID %u: %s", anonpid
, proc
.pbsi_comm
);
1764 kp_euid
= proc
.pbsi_uid
;
1765 kp_uid
= proc
.pbsi_ruid
;
1766 kp_svuid
= proc
.pbsi_svuid
;
1767 kp_egid
= proc
.pbsi_gid
;
1768 kp_gid
= proc
.pbsi_rgid
;
1769 kp_svgid
= proc
.pbsi_svgid
;
1771 if (unlikely(kp_euid
!= kp_uid
|| kp_euid
!= kp_svuid
|| kp_uid
!= kp_svuid
|| kp_egid
!= kp_gid
|| kp_egid
!= kp_svgid
|| kp_gid
!= kp_svgid
)) {
1772 jobmgr_log(jm
, LOG_DEBUG
, "Inconsistency: Mixed credentials (e/r/s UID %u/%u/%u GID %u/%u/%u) detected on PID %u: %s",
1773 kp_euid
, kp_uid
, kp_svuid
, kp_egid
, kp_gid
, kp_svgid
, anonpid
, proc
.pbsi_comm
);
1776 /* "Fix" for when the kernel turns the process tree into a weird, cyclic
1779 * See <rdar://problem/7264615> for the symptom and <rdar://problem/5020256>
1780 * as to why this can happen.
1782 if ((pid_t
)proc
.pbsi_ppid
== anonpid
) {
1783 jobmgr_log(jm
, LOG_WARNING
, "Process has become its own parent through ptrace(3). Ignoring: %s", proc
.pbsi_comm
);
1788 /* HACK: Normally, job_new() returns an error during shutdown, but anonymous
1789 * jobs can pop up during shutdown and need to talk to us.
1791 if (unlikely(shutdown_state
= jm
->shutting_down
)) {
1792 jm
->shutting_down
= false;
1795 // We only set requestor_pid for XPC domains.
1796 const char *whichlabel
= (jm
->req_pid
== anonpid
) ? AUTO_PICK_XPC_LABEL
: AUTO_PICK_ANONYMOUS_LABEL
;
1797 if ((jr
= job_new(jm
, whichlabel
, proc
.pbsi_comm
, NULL
))) {
1798 u_int proc_fflags
= NOTE_EXEC
|NOTE_FORK
|NOTE_EXIT
;
1800 total_anon_children
++;
1801 jr
->anonymous
= true;
1804 // Anonymous process reaping is messy.
1805 LIST_INSERT_HEAD(&jm
->active_jobs
[ACTIVE_JOB_HASH(jr
->p
)], jr
, pid_hash_sle
);
1807 if (unlikely(kevent_mod(jr
->p
, EVFILT_PROC
, EV_ADD
, proc_fflags
, 0, root_jobmgr
) == -1)) {
1808 if (errno
!= ESRCH
) {
1809 (void)job_assumes_zero(jr
, errno
);
1812 // Zombies interact weirdly with kevent(3).
1813 job_log(jr
, LOG_ERR
, "Failed to add kevent for PID %u. Will unload at MIG return", jr
->p
);
1814 jr
->unload_at_mig_return
= true;
1817 if (unlikely(shutdown_state
)) {
1818 job_log(jr
, LOG_APPLEONLY
, "This process showed up to the party while all the guests were leaving. Odds are that it will have a miserable time.");
1821 job_log(jr
, LOG_DEBUG
, "Created PID %u anonymously by PPID %u%s%s", anonpid
, proc
.pbsi_ppid
, jp
? ": " : "", jp
? jp
->label
: "");
1823 (void)os_assumes_zero(errno
);
1826 // Undo our hack from above.
1827 if (unlikely(shutdown_state
)) {
1828 jm
->shutting_down
= true;
1831 /* This is down here to prevent infinite recursion due to a process
1832 * attaching to its parent through ptrace(3) -- causing a cycle in the
1833 * process tree and thereby not making it a tree anymore. We need to make
1834 * sure that the anonymous job has been added to the process list so that
1835 * we'll find the tracing parent PID of the parent process, which is the
1836 * child, when we go looking for it in jobmgr_find_by_pid().
1838 * <rdar://problem/7264615>
1840 switch (proc
.pbsi_ppid
) {
1850 jp
= jobmgr_find_by_pid(jm
, proc
.pbsi_ppid
, true);
1851 if (jobmgr_assumes(jm
, jp
!= NULL
)) {
1852 if (jp
&& !jp
->anonymous
&& unlikely(!(proc
.pbsi_flags
& P_EXEC
))) {
1853 job_log(jp
, LOG_DEBUG
, "Called *fork(). Please switch to posix_spawn*(), pthreads or launchd. Child PID %u", proc
.pbsi_pid
);
1863 job_new_subjob(job_t j
, uuid_t identifier
)
1866 uuid_string_t idstr
;
1867 uuid_unparse(identifier
, idstr
);
1868 size_t label_sz
= snprintf(label
, 0, "%s.%s", j
->label
, idstr
);
1870 job_t nj
= (struct job_s
*)calloc(1, sizeof(struct job_s
) + label_sz
+ 1);
1872 nj
->kqjob_callback
= job_callback
;
1875 nj
->min_run_time
= j
->min_run_time
;
1876 nj
->timeout
= j
->timeout
;
1877 nj
->exit_timeout
= j
->exit_timeout
;
1879 snprintf((char *)nj
->label
, label_sz
+ 1, "%s.%s", j
->label
, idstr
);
1881 // Set all our simple Booleans that are applicable.
1882 nj
->debug
= j
->debug
;
1883 nj
->ondemand
= j
->ondemand
;
1884 nj
->checkedin
= true;
1885 nj
->low_pri_io
= j
->low_pri_io
;
1886 nj
->setmask
= j
->setmask
;
1887 nj
->wait4debugger
= j
->wait4debugger
;
1888 nj
->internal_exc_handler
= j
->internal_exc_handler
;
1889 nj
->setnice
= j
->setnice
;
1890 nj
->abandon_pg
= j
->abandon_pg
;
1891 nj
->ignore_pg_at_shutdown
= j
->ignore_pg_at_shutdown
;
1892 nj
->deny_job_creation
= j
->deny_job_creation
;
1893 nj
->enable_transactions
= j
->enable_transactions
;
1894 nj
->needs_kickoff
= j
->needs_kickoff
;
1895 nj
->currently_ignored
= true;
1896 nj
->dedicated_instance
= true;
1897 nj
->xpc_service
= j
->xpc_service
;
1898 nj
->xpc_bootstrapper
= j
->xpc_bootstrapper
;
1899 nj
->jetsam_priority
= j
->jetsam_priority
;
1900 nj
->jetsam_memlimit
= j
->jetsam_memlimit
;
1901 nj
->psproctype
= j
->psproctype
;
1904 uuid_copy(nj
->instance_id
, identifier
);
1906 // These jobs are purely on-demand Mach jobs.
1907 // {Hard | Soft}ResourceLimits are not supported.
1908 // JetsamPriority is not supported.
1911 nj
->prog
= strdup(j
->prog
);
1914 size_t sz
= malloc_size(j
->argv
);
1915 nj
->argv
= (char **)malloc(sz
);
1916 if (nj
->argv
!= NULL
) {
1917 // This is the start of our strings.
1918 char *p
= ((char *)nj
->argv
) + ((j
->argc
+ 1) * sizeof(char *));
1921 for (i
= 0; i
< j
->argc
; i
++) {
1922 (void)strcpy(p
, j
->argv
[i
]);
1924 p
+= (strlen(j
->argv
[i
]) + 1);
1928 (void)job_assumes_zero(nj
, errno
);
1934 struct machservice
*msi
= NULL
;
1935 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
1936 /* Only copy MachServices that were actually declared in the plist.
1937 * So skip over per-PID ones and ones that were created via
1938 * bootstrap_register().
1941 mach_port_t mp
= MACH_PORT_NULL
;
1942 struct machservice
*msj
= machservice_new(nj
, msi
->name
, &mp
, false);
1944 msj
->reset
= msi
->reset
;
1945 msj
->delete_on_destruction
= msi
->delete_on_destruction
;
1946 msj
->drain_one_on_crash
= msi
->drain_one_on_crash
;
1947 msj
->drain_all_on_crash
= msi
->drain_all_on_crash
;
1949 kern_return_t kr
= mach_port_set_attributes(mach_task_self(), msj
->port
, MACH_PORT_TEMPOWNER
, NULL
, 0);
1950 (void)job_assumes_zero(j
, kr
);
1952 (void)job_assumes_zero(nj
, errno
);
1957 // We ignore global environment variables.
1958 struct envitem
*ei
= NULL
;
1959 SLIST_FOREACH(ei
, &j
->env
, sle
) {
1960 if (envitem_new(nj
, ei
->key
, ei
->value
, false)) {
1961 (void)job_assumes_zero(nj
, errno
);
1965 uuid_unparse(identifier
, val
);
1966 if (envitem_new(nj
, LAUNCH_ENV_INSTANCEID
, val
, false)) {
1967 (void)job_assumes_zero(nj
, errno
);
1971 nj
->rootdir
= strdup(j
->rootdir
);
1973 if (j
->workingdir
) {
1974 nj
->workingdir
= strdup(j
->workingdir
);
1977 nj
->username
= strdup(j
->username
);
1980 nj
->groupname
= strdup(j
->groupname
);
1983 /* FIXME: We shouldn't redirect all the output from these jobs to the
1984 * same file. We should uniquify the file names. But this hasn't shown
1985 * to be a problem in practice.
1988 nj
->stdinpath
= strdup(j
->stdinpath
);
1990 if (j
->stdoutpath
) {
1991 nj
->stdoutpath
= strdup(j
->stdinpath
);
1993 if (j
->stderrpath
) {
1994 nj
->stderrpath
= strdup(j
->stderrpath
);
1996 if (j
->alt_exc_handler
) {
1997 nj
->alt_exc_handler
= strdup(j
->alt_exc_handler
);
1999 if (j
->cfbundleidentifier
) {
2000 nj
->cfbundleidentifier
= strdup(j
->cfbundleidentifier
);
2003 if (j
->seatbelt_profile
) {
2004 nj
->seatbelt_profile
= strdup(j
->seatbelt_profile
);
2006 if (j
->container_identifier
) {
2007 nj
->container_identifier
= strdup(j
->container_identifier
);
2012 if (j
->quarantine_data
) {
2013 nj
->quarantine_data
= strdup(j
->quarantine_data
);
2015 nj
->quarantine_data_sz
= j
->quarantine_data_sz
;
2018 size_t sz
= malloc_size(j
->j_binpref
);
2019 nj
->j_binpref
= (cpu_type_t
*)malloc(sz
);
2020 if (nj
->j_binpref
) {
2021 memcpy(&nj
->j_binpref
, &j
->j_binpref
, sz
);
2023 (void)job_assumes_zero(nj
, errno
);
2027 if (j
->asport
!= MACH_PORT_NULL
) {
2028 (void)job_assumes_zero(nj
, launchd_mport_copy_send(j
->asport
));
2029 nj
->asport
= j
->asport
;
2032 LIST_INSERT_HEAD(&nj
->mgr
->jobs
, nj
, sle
);
2034 jobmgr_t where2put
= root_jobmgr
;
2035 if (j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
) {
2038 LIST_INSERT_HEAD(&where2put
->label_hash
[hash_label(nj
->label
)], nj
, label_hash_sle
);
2039 LIST_INSERT_HEAD(&j
->subjobs
, nj
, subjob_sle
);
2041 (void)os_assumes_zero(errno
);
2048 job_new(jobmgr_t jm
, const char *label
, const char *prog
, const char *const *argv
)
2050 const char *const *argv_tmp
= argv
;
2051 char tmp_path
[PATH_MAX
];
2052 char auto_label
[1000];
2053 const char *bn
= NULL
;
2055 size_t minlabel_len
;
2059 __OS_COMPILETIME_ASSERT__(offsetof(struct job_s
, kqjob_callback
) == 0);
2061 if (unlikely(jm
->shutting_down
)) {
2066 if (unlikely(prog
== NULL
&& argv
== NULL
)) {
2071 /* I'd really like to redo this someday. Anonymous jobs carry all the
2072 * baggage of managed jobs with them, even though most of it is unused.
2073 * Maybe when we have Objective-C objects in libSystem, there can be a base
2074 * job type that anonymous and managed jobs inherit from...
2076 char *anon_or_legacy
= (label
== AUTO_PICK_ANONYMOUS_LABEL
) ? "anonymous" : "mach_init";
2077 if (unlikely(label
== AUTO_PICK_LEGACY_LABEL
|| label
== AUTO_PICK_ANONYMOUS_LABEL
)) {
2081 strlcpy(tmp_path
, argv
[0], sizeof(tmp_path
));
2082 // prog for auto labels is kp.kp_kproc.p_comm.
2083 bn
= basename(tmp_path
);
2086 (void)snprintf(auto_label
, sizeof(auto_label
), "%s.%s.%s", sizeof(void *) == 8 ? "0xdeadbeeffeedface" : "0xbabecafe", anon_or_legacy
, bn
);
2088 /* This is so we can do gross things later. See NOTE_EXEC for anonymous
2091 minlabel_len
= strlen(label
) + MAXCOMLEN
;
2093 if (label
== AUTO_PICK_XPC_LABEL
) {
2094 minlabel_len
= snprintf(auto_label
, sizeof(auto_label
), "com.apple.xpc.domain-owner.%s", jm
->owner
);
2096 minlabel_len
= strlen(label
);
2100 j
= calloc(1, sizeof(struct job_s
) + minlabel_len
+ 1);
2103 (void)os_assumes_zero(errno
);
2107 if (unlikely(label
== auto_label
)) {
2108 (void)snprintf((char *)j
->label
, strlen(label
) + 1, "%p.%s.%s", j
, anon_or_legacy
, bn
);
2110 (void)strcpy((char *)j
->label
, (label
== AUTO_PICK_XPC_LABEL
) ? auto_label
: label
);
2113 j
->kqjob_callback
= job_callback
;
2115 j
->min_run_time
= LAUNCHD_MIN_JOB_RUN_TIME
;
2116 j
->timeout
= RUNTIME_ADVISABLE_IDLE_TIMEOUT
;
2117 j
->exit_timeout
= LAUNCHD_DEFAULT_EXIT_TIMEOUT
;
2118 j
->currently_ignored
= true;
2120 j
->checkedin
= true;
2121 j
->jetsam_priority
= DEFAULT_JETSAM_PRIORITY
;
2122 j
->jetsam_memlimit
= -1;
2123 uuid_clear(j
->expected_audit_uuid
);
2124 #if TARGET_OS_EMBEDDED
2125 /* Run embedded daemons as background by default. SpringBoard jobs are
2126 * Interactive by default. Unfortunately, so many daemons have opted into
2127 * this priority band that its usefulness is highly questionable.
2129 * See <rdar://problem/9539873>.
2131 * Also ensure that daemons have a default memory highwatermark unless
2132 * otherwise specified, as per <rdar://problem/10307814>.
2134 if (launchd_embedded_handofgod
) {
2135 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_APP_DEFAULT
;
2138 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_BACKGROUND
;
2139 j
->jetsam_memlimit
= DEFAULT_JETSAM_DAEMON_HIGHWATERMARK
;
2142 /* Jobs on OS X that just come from disk are "standard" by default so that
2143 * third-party daemons/agents don't encounter unexpected throttling.
2145 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_STANDARD
;
2149 j
->prog
= strdup(prog
);
2151 (void)os_assumes_zero(errno
);
2157 while (*argv_tmp
++) {
2161 for (i
= 0; i
< j
->argc
; i
++) {
2162 cc
+= strlen(argv
[i
]) + 1;
2165 j
->argv
= malloc((j
->argc
+ 1) * sizeof(char *) + cc
);
2167 (void)job_assumes_zero(j
, errno
);
2171 co
= ((char *)j
->argv
) + ((j
->argc
+ 1) * sizeof(char *));
2173 for (i
= 0; i
< j
->argc
; i
++) {
2175 (void)strcpy(co
, argv
[i
]);
2176 co
+= strlen(argv
[i
]) + 1;
2181 // Sssshhh... don't tell anyone.
2182 if (strcmp(j
->label
, "com.apple.WindowServer") == 0) {
2183 j
->has_console
= true;
2186 LIST_INSERT_HEAD(&jm
->jobs
, j
, sle
);
2188 jobmgr_t where2put_label
= root_jobmgr
;
2189 if (j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
) {
2190 where2put_label
= j
->mgr
;
2192 LIST_INSERT_HEAD(&where2put_label
->label_hash
[hash_label(j
->label
)], j
, label_hash_sle
);
2193 uuid_clear(j
->expected_audit_uuid
);
2195 job_log(j
, LOG_DEBUG
, "Conceived");
2209 job_new_alias(jobmgr_t jm
, job_t src
)
2211 if (job_find(jm
, src
->label
)) {
2216 job_t j
= calloc(1, sizeof(struct job_s
) + strlen(src
->label
) + 1);
2218 (void)os_assumes_zero(errno
);
2222 (void)strcpy((char *)j
->label
, src
->label
);
2223 LIST_INSERT_HEAD(&jm
->jobs
, j
, sle
);
2224 LIST_INSERT_HEAD(&jm
->label_hash
[hash_label(j
->label
)], j
, label_hash_sle
);
2225 /* Bad jump address. The kqueue callback for aliases should never be
2228 j
->kqjob_callback
= (kq_callback
)0xfa1afe1;
2232 struct machservice
*msi
= NULL
;
2233 SLIST_FOREACH(msi
, &src
->machservices
, sle
) {
2234 if (!machservice_new_alias(j
, msi
)) {
2235 jobmgr_log(jm
, LOG_ERR
, "Failed to alias job: %s", src
->label
);
2244 job_log(j
, LOG_DEBUG
, "Aliased service into domain: %s", jm
->name
);
2251 job_import(launch_data_t pload
)
2253 #if TARGET_OS_EMBEDDED
2254 /* If this is the special payload of default values, handle it here */
2255 if (unlikely(launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_DEFAULTS
))) {
2256 job_import_defaults(pload
);
2261 job_t j
= jobmgr_import2(root_jobmgr
, pload
);
2263 if (unlikely(j
== NULL
)) {
2267 /* Since jobs are effectively stalled until they get security sessions
2268 * assigned to them, we may wish to reconsider this behavior of calling the
2269 * job "enabled" as far as other jobs with the OtherJobEnabled KeepAlive
2272 job_dispatch_curious_jobs(j
);
2273 return job_dispatch(j
, false);
2276 #if TARGET_OS_EMBEDDED
2279 job_import_defaults(launch_data_t pload
)
2281 bool result
= false;
2282 xpc_object_t xd
= NULL
, defaults
;
2284 if (_launchd_defaults_cache
) {
2285 xpc_release(_launchd_defaults_cache
);
2286 _launchd_defaults_cache
= NULL
;
2290 if (!xd
|| xpc_get_type(xd
) != XPC_TYPE_DICTIONARY
) {
2294 defaults
= xpc_dictionary_get_value(xd
, LAUNCHD_JOB_DEFAULTS
);
2295 if (!defaults
|| xpc_get_type(defaults
) != XPC_TYPE_DICTIONARY
) {
2299 _launchd_defaults_cache
= xpc_copy(defaults
);
2310 job_apply_defaults(job_t j
) {
2311 const char *test_prefix
= "com.apple.test.";
2313 char *sb_prefix_end
, *sb_suffix_start
;
2314 char true_job_label
[strlen(j
->label
)];
2317 if (((sb_prefix_end
= strchr(j
->label
, ':')) != NULL
) &&
2318 ((sb_suffix_start
= strchr(sb_prefix_end
+ 1, '[')) != NULL
)) {
2320 * Workaround 'UIKitApplication:com.apple.foo[bar]' convention for the processes
2321 * we're interested in. To be removed when <rdar://problem/13066361> is addressed.
2323 snprintf(true_job_label
, sb_suffix_start
- sb_prefix_end
, "%s", sb_prefix_end
+ 1);
2324 label
= true_job_label
;
2326 /* Just test the standard label */
2330 /* Test for cache presence and apply if found */
2331 if (_launchd_defaults_cache
) {
2332 xpc_object_t props
= xpc_dictionary_get_value(_launchd_defaults_cache
, label
);
2333 if (props
&& xpc_get_type(props
) == XPC_TYPE_DICTIONARY
) {
2334 launch_data_t lv
= xpc2ld(props
);
2335 launch_data_dict_iterate(lv
, job_import_keys
, j
);
2336 launch_data_free(lv
);
2341 /* Limit free? Disable the memory limit if this is a test job; see <rdar://problem/13180697> */
2342 if (!strncmp(label
, test_prefix
, strlen(test_prefix
))) {
2343 j
->jetsam_memlimit
= -1;
2353 job_import_bulk(launch_data_t pload
)
2355 launch_data_t resp
= launch_data_alloc(LAUNCH_DATA_ARRAY
);
2357 size_t i
, c
= launch_data_array_get_count(pload
);
2359 ja
= alloca(c
* sizeof(job_t
));
2361 for (i
= 0; i
< c
; i
++) {
2362 if ((likely(ja
[i
] = jobmgr_import2(root_jobmgr
, launch_data_array_get_index(pload
, i
)))) && errno
!= ENEEDAUTH
) {
2365 launch_data_array_set_index(resp
, launch_data_new_errno(errno
), i
);
2368 for (i
= 0; i
< c
; i
++) {
2369 if (likely(ja
[i
])) {
2370 job_dispatch_curious_jobs(ja
[i
]);
2371 job_dispatch(ja
[i
], false);
2379 job_import_bool(job_t j
, const char *key
, bool value
)
2381 bool found_key
= false;
2386 if (strcasecmp(key
, LAUNCH_JOBKEY_ABANDONPROCESSGROUP
) == 0) {
2387 j
->abandon_pg
= value
;
2393 if (strcasecmp(key
, LAUNCH_JOBKEY_BEGINTRANSACTIONATSHUTDOWN
) == 0) {
2394 j
->dirty_at_shutdown
= value
;
2400 if (strcasecmp(key
, LAUNCH_JOBKEY_JOINGUISESSION
) == 0) {
2401 j
->joins_gui_session
= value
;
2407 if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE
) == 0) {
2408 j
->ondemand
= !value
;
2414 if (strcasecmp(key
, LAUNCH_JOBKEY_ONDEMAND
) == 0) {
2415 j
->ondemand
= value
;
2421 if (strcasecmp(key
, LAUNCH_JOBKEY_DEBUG
) == 0) {
2424 } else if (strcasecmp(key
, LAUNCH_JOBKEY_DISABLED
) == 0) {
2425 (void)job_assumes(j
, !value
);
2427 } else if (strcasecmp(key
, LAUNCH_JOBKEY_DISABLEASLR
) == 0) {
2428 j
->disable_aslr
= value
;
2434 if (strcasecmp(key
, LAUNCH_JOBKEY_HOPEFULLYEXITSLAST
) == 0) {
2435 job_log(j
, LOG_PERF
, "%s has been deprecated. Please use the new %s key instead and add EnableTransactions to your launchd.plist.", LAUNCH_JOBKEY_HOPEFULLYEXITSLAST
, LAUNCH_JOBKEY_BEGINTRANSACTIONATSHUTDOWN
);
2436 j
->dirty_at_shutdown
= value
;
2442 if (strcasecmp(key
, LAUNCH_JOBKEY_SESSIONCREATE
) == 0) {
2443 j
->session_create
= value
;
2445 } else if (strcasecmp(key
, LAUNCH_JOBKEY_STARTONMOUNT
) == 0) {
2446 j
->start_on_mount
= value
;
2448 } else if (strcasecmp(key
, LAUNCH_JOBKEY_SERVICEIPC
) == 0) {
2449 // this only does something on Mac OS X 10.4 "Tiger"
2451 } else if (strcasecmp(key
, LAUNCH_JOBKEY_SHUTDOWNMONITOR
) == 0) {
2452 if (_launchd_shutdown_monitor
) {
2453 job_log(j
, LOG_ERR
, "Only one job may monitor shutdown.");
2455 j
->shutdown_monitor
= true;
2456 _launchd_shutdown_monitor
= j
;
2463 if (strcasecmp(key
, LAUNCH_JOBKEY_LOWPRIORITYIO
) == 0) {
2464 j
->low_pri_io
= value
;
2466 } else if (strcasecmp(key
, LAUNCH_JOBKEY_LAUNCHONLYONCE
) == 0) {
2467 j
->only_once
= value
;
2469 } else if (strcasecmp(key
, LAUNCH_JOBKEY_LOWPRIORITYBACKGROUNDIO
) == 0) {
2470 j
->low_priority_background_io
= true;
2476 if (strcasecmp(key
, LAUNCH_JOBKEY_MACHEXCEPTIONHANDLER
) == 0) {
2477 j
->internal_exc_handler
= value
;
2479 } else if (strcasecmp(key
, LAUNCH_JOBKEY_MULTIPLEINSTANCES
) == 0) {
2480 j
->multiple_instances
= value
;
2486 if (strcasecmp(key
, LAUNCH_JOBKEY_INITGROUPS
) == 0) {
2487 if (getuid() != 0) {
2488 job_log(j
, LOG_WARNING
, "Ignored this key: %s", key
);
2491 j
->no_init_groups
= !value
;
2493 } else if (strcasecmp(key
, LAUNCH_JOBKEY_IGNOREPROCESSGROUPATSHUTDOWN
) == 0) {
2494 j
->ignore_pg_at_shutdown
= value
;
2500 if (strcasecmp(key
, LAUNCH_JOBKEY_RUNATLOAD
) == 0) {
2502 // We don't want value == false to change j->start_pending
2503 j
->start_pending
= true;
2510 if (strcasecmp(key
, LAUNCH_JOBKEY_ENABLEGLOBBING
) == 0) {
2511 j
->globargv
= value
;
2513 } else if (strcasecmp(key
, LAUNCH_JOBKEY_ENABLETRANSACTIONS
) == 0) {
2514 j
->enable_transactions
= value
;
2516 } else if (strcasecmp(key
, LAUNCH_JOBKEY_ENTERKERNELDEBUGGERBEFOREKILL
) == 0) {
2517 j
->debug_before_kill
= value
;
2519 } else if (strcasecmp(key
, LAUNCH_JOBKEY_EMBEDDEDPRIVILEGEDISPENSATION
) == 0) {
2520 #if TARGET_OS_EMBEDDED
2521 if (!_launchd_embedded_god
) {
2522 if ((j
->embedded_god
= value
)) {
2523 _launchd_embedded_god
= j
;
2526 job_log(j
, LOG_ERR
, "Job tried to claim %s after it has already been claimed.", key
);
2529 job_log(j
, LOG_ERR
, "This key is not supported on this platform: %s", key
);
2532 } else if (strcasecmp(key
, LAUNCH_JOBKEY_EMBEDDEDHOMESCREEN
) == 0) {
2533 #if TARGET_OS_EMBEDDED
2534 if (!_launchd_embedded_home
) {
2535 if ((j
->embedded_home
= value
)) {
2536 _launchd_embedded_home
= j
;
2539 job_log(j
, LOG_ERR
, "Job tried to claim %s after it has already been claimed.", key
);
2542 job_log(j
, LOG_ERR
, "This key is not supported on this platform: %s", key
);
2544 } else if (strcasecmp(key
, LAUNCH_JOBKEY_EVENTMONITOR
) == 0) {
2545 if (!_launchd_event_monitor
) {
2546 j
->event_monitor
= value
;
2548 _launchd_event_monitor
= j
;
2551 job_log(j
, LOG_NOTICE
, "Job tried to steal event monitoring responsibility from: %s", _launchd_event_monitor
->label
);
2558 if (strcasecmp(key
, LAUNCH_JOBKEY_WAITFORDEBUGGER
) == 0) {
2559 j
->wait4debugger
= value
;
2565 if (strcasecmp(key
, LAUNCH_JOBKEY_XPCDOMAINBOOTSTRAPPER
) == 0) {
2567 if (_launchd_xpc_bootstrapper
) {
2568 job_log(j
, LOG_ERR
, "This job tried to steal the XPC domain bootstrapper property from the following job: %s", _launchd_xpc_bootstrapper
->label
);
2570 _launchd_xpc_bootstrapper
= j
;
2571 j
->xpc_bootstrapper
= value
;
2574 job_log(j
, LOG_ERR
, "Non-daemon tried to claim XPC bootstrapper property.");
2583 if (unlikely(!found_key
)) {
2584 job_log(j
, LOG_WARNING
, "Unknown key for boolean: %s", key
);
2589 job_import_string(job_t j
, const char *key
, const char *value
)
2591 char **where2put
= NULL
;
2596 if (strcasecmp(key
, LAUNCH_JOBKEY_CFBUNDLEIDENTIFIER
) == 0) {
2597 where2put
= &j
->cfbundleidentifier
;
2602 if (strcasecmp(key
, LAUNCH_JOBKEY_MACHEXCEPTIONHANDLER
) == 0) {
2603 where2put
= &j
->alt_exc_handler
;
2608 if (strcasecmp(key
, LAUNCH_JOBKEY_PROGRAM
) == 0) {
2610 } else if (strcasecmp(key
, LAUNCH_JOBKEY_POSIXSPAWNTYPE
) == 0
2611 || strcasecmp(key
, LAUNCH_JOBKEY_PROCESSTYPE
) == 0) {
2612 if (strcasecmp(value
, LAUNCH_KEY_POSIXSPAWNTYPE_INTERACTIVE
) == 0) {
2613 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_INTERACTIVE
;
2614 } else if (strcasecmp(value
, LAUNCH_KEY_POSIXSPAWNTYPE_ADAPTIVE
) == 0) {
2615 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_ADAPTIVE
;
2616 } else if (strcasecmp(value
, LAUNCH_KEY_POSIXSPAWNTYPE_STANDARD
) == 0) {
2617 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_STANDARD
;
2618 } else if (strcasecmp(value
, LAUNCH_KEY_POSIXSPAWNTYPE_BACKGROUND
) == 0) {
2619 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_BACKGROUND
;
2620 } else if (strcasecmp(value
, LAUNCH_KEY_POSIXSPAWNTYPE_TALAPP
) == 0) {
2621 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_APP_TAL
;
2622 } else if (strcasecmp(value
, LAUNCH_KEY_POSIXSPAWNTYPE_SYSTEMAPP
) == 0) {
2623 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_APP_DEFAULT
;
2624 j
->system_app
= true;
2625 } else if (strcasecmp(value
, LAUNCH_KEY_POSIXSPAWNTYPE_APP
) == 0) {
2626 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_APP_DEFAULT
;
2629 job_log(j
, LOG_ERR
, "Unknown value for key %s: %s", key
, value
);
2636 if (strcasecmp(key
, LAUNCH_JOBKEY_LABEL
) == 0) {
2638 } else if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADTOHOSTS
) == 0) {
2640 } else if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADFROMHOSTS
) == 0) {
2642 } else if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADTOSESSIONTYPE
) == 0) {
2648 if (strcasecmp(key
, LAUNCH_JOBKEY_ROOTDIRECTORY
) == 0) {
2649 if (getuid() != 0) {
2650 job_log(j
, LOG_WARNING
, "Ignored this key: %s", key
);
2653 where2put
= &j
->rootdir
;
2658 if (strcasecmp(key
, LAUNCH_JOBKEY_WORKINGDIRECTORY
) == 0) {
2659 where2put
= &j
->workingdir
;
2664 if (strcasecmp(key
, LAUNCH_JOBKEY_USERNAME
) == 0) {
2665 if (getuid() != 0) {
2666 job_log(j
, LOG_WARNING
, "Ignored this key: %s", key
);
2668 } else if (strcmp(value
, "root") == 0) {
2671 where2put
= &j
->username
;
2676 if (strcasecmp(key
, LAUNCH_JOBKEY_GROUPNAME
) == 0) {
2677 if (getuid() != 0) {
2678 job_log(j
, LOG_WARNING
, "Ignored this key: %s", key
);
2680 } else if (strcmp(value
, "wheel") == 0) {
2683 where2put
= &j
->groupname
;
2688 if (strcasecmp(key
, LAUNCH_JOBKEY_STANDARDOUTPATH
) == 0) {
2689 where2put
= &j
->stdoutpath
;
2690 } else if (strcasecmp(key
, LAUNCH_JOBKEY_STANDARDERRORPATH
) == 0) {
2691 where2put
= &j
->stderrpath
;
2692 } else if (strcasecmp(key
, LAUNCH_JOBKEY_STANDARDINPATH
) == 0) {
2693 where2put
= &j
->stdinpath
;
2694 j
->stdin_fd
= _fd(open(value
, O_RDONLY
|O_CREAT
|O_NOCTTY
|O_NONBLOCK
, DEFFILEMODE
));
2695 if (job_assumes_zero_p(j
, j
->stdin_fd
) != -1) {
2696 // open() should not block, but regular IO by the job should
2697 (void)job_assumes_zero_p(j
, fcntl(j
->stdin_fd
, F_SETFL
, 0));
2698 // XXX -- EV_CLEAR should make named pipes happy?
2699 (void)job_assumes_zero_p(j
, kevent_mod(j
->stdin_fd
, EVFILT_READ
, EV_ADD
|EV_CLEAR
, 0, 0, j
));
2704 } else if (strcasecmp(key
, LAUNCH_JOBKEY_SANDBOXPROFILE
) == 0) {
2705 where2put
= &j
->seatbelt_profile
;
2706 } else if (strcasecmp(key
, LAUNCH_JOBKEY_SANDBOXCONTAINER
) == 0) {
2707 where2put
= &j
->container_identifier
;
2713 if (strcasecmp(key
, LAUNCH_JOBKEY_XPCDOMAIN
) == 0) {
2718 job_log(j
, LOG_WARNING
, "Unknown key for string: %s", key
);
2722 if (likely(where2put
)) {
2723 if (!(*where2put
= strdup(value
))) {
2724 (void)job_assumes_zero(j
, errno
);
2727 // See rdar://problem/5496612. These two are okay.
2728 if (strncmp(key
, "SHAuthorizationRight", sizeof("SHAuthorizationRight")) == 0
2729 || strncmp(key
, "ServiceDescription", sizeof("ServiceDescription")) == 0) {
2730 job_log(j
, LOG_APPLEONLY
, "This key is no longer relevant and should be removed: %s", key
);
2732 job_log(j
, LOG_WARNING
, "Unknown key: %s", key
);
2738 job_import_integer(job_t j
, const char *key
, long long value
)
2743 #if TARGET_OS_EMBEDDED
2744 if (strcasecmp(key
, LAUNCH_JOBKEY_ASID
) == 0) {
2745 if (launchd_embedded_handofgod
) {
2746 if (audit_session_port((au_asid_t
)value
, &j
->asport
) == -1 && errno
!= ENOSYS
) {
2747 (void)job_assumes_zero(j
, errno
);
2754 if (strcasecmp(key
, LAUNCH_JOBKEY_EXITTIMEOUT
) == 0) {
2755 if (unlikely(value
< 0)) {
2756 job_log(j
, LOG_WARNING
, "%s less than zero. Ignoring.", LAUNCH_JOBKEY_EXITTIMEOUT
);
2757 } else if (unlikely(value
> UINT32_MAX
)) {
2758 job_log(j
, LOG_WARNING
, "%s is too large. Ignoring.", LAUNCH_JOBKEY_EXITTIMEOUT
);
2760 j
->exit_timeout
= (typeof(j
->exit_timeout
)) value
;
2762 } else if (strcasecmp(key
, LAUNCH_JOBKEY_EMBEDDEDMAINTHREADPRIORITY
) == 0) {
2763 j
->main_thread_priority
= value
;
2768 if (strcasecmp(key
, LAUNCH_JOBKEY_JETSAMPRIORITY
) == 0) {
2769 job_log(j
, LOG_WARNING
| LOG_CONSOLE
, "Please change the JetsamPriority key to be in a dictionary named JetsamProperties.");
2771 launch_data_t pri
= launch_data_new_integer(value
);
2772 if (job_assumes(j
, pri
!= NULL
)) {
2773 jetsam_property_setup(pri
, LAUNCH_JOBKEY_JETSAMPRIORITY
, j
);
2774 launch_data_free(pri
);
2779 if (strcasecmp(key
, LAUNCH_JOBKEY_NICE
) == 0) {
2780 if (unlikely(value
< PRIO_MIN
)) {
2781 job_log(j
, LOG_WARNING
, "%s less than %d. Ignoring.", LAUNCH_JOBKEY_NICE
, PRIO_MIN
);
2782 } else if (unlikely(value
> PRIO_MAX
)) {
2783 job_log(j
, LOG_WARNING
, "%s is greater than %d. Ignoring.", LAUNCH_JOBKEY_NICE
, PRIO_MAX
);
2785 j
->nice
= (typeof(j
->nice
)) value
;
2792 if (strcasecmp(key
, LAUNCH_JOBKEY_TIMEOUT
) == 0) {
2793 if (unlikely(value
< 0)) {
2794 job_log(j
, LOG_WARNING
, "%s less than zero. Ignoring.", LAUNCH_JOBKEY_TIMEOUT
);
2795 } else if (unlikely(value
> UINT32_MAX
)) {
2796 job_log(j
, LOG_WARNING
, "%s is too large. Ignoring.", LAUNCH_JOBKEY_TIMEOUT
);
2798 j
->timeout
= (typeof(j
->timeout
)) value
;
2800 } else if (strcasecmp(key
, LAUNCH_JOBKEY_THROTTLEINTERVAL
) == 0) {
2802 job_log(j
, LOG_WARNING
, "%s less than zero. Ignoring.", LAUNCH_JOBKEY_THROTTLEINTERVAL
);
2803 } else if (value
> UINT32_MAX
) {
2804 job_log(j
, LOG_WARNING
, "%s is too large. Ignoring.", LAUNCH_JOBKEY_THROTTLEINTERVAL
);
2806 j
->min_run_time
= (typeof(j
->min_run_time
)) value
;
2812 if (strcasecmp(key
, LAUNCH_JOBKEY_UMASK
) == 0) {
2819 if (strcasecmp(key
, LAUNCH_JOBKEY_STARTINTERVAL
) == 0) {
2820 if (unlikely(value
<= 0)) {
2821 job_log(j
, LOG_WARNING
, "%s is not greater than zero. Ignoring.", LAUNCH_JOBKEY_STARTINTERVAL
);
2822 } else if (unlikely(value
> UINT32_MAX
)) {
2823 job_log(j
, LOG_WARNING
, "%s is too large. Ignoring.", LAUNCH_JOBKEY_STARTINTERVAL
);
2825 runtime_add_weak_ref();
2826 j
->start_interval
= (typeof(j
->start_interval
)) value
;
2828 (void)job_assumes_zero_p(j
, kevent_mod((uintptr_t)&j
->start_interval
, EVFILT_TIMER
, EV_ADD
, NOTE_SECONDS
, j
->start_interval
, j
));
2831 } else if (strcasecmp(key
, LAUNCH_JOBKEY_SANDBOXFLAGS
) == 0) {
2832 j
->seatbelt_flags
= value
;
2838 job_log(j
, LOG_WARNING
, "Unknown key for integer: %s", key
);
2844 job_import_opaque(job_t j
__attribute__((unused
)), const char *key
, launch_data_t value
__attribute__((unused
)))
2850 if (strcasecmp(key
, LAUNCH_JOBKEY_QUARANTINEDATA
) == 0) {
2851 size_t tmpsz
= launch_data_get_opaque_size(value
);
2853 if (job_assumes(j
, j
->quarantine_data
= malloc(tmpsz
))) {
2854 memcpy(j
->quarantine_data
, launch_data_get_opaque(value
), tmpsz
);
2855 j
->quarantine_data_sz
= tmpsz
;
2861 if (strcasecmp(key
, LAUNCH_JOBKEY_SECURITYSESSIONUUID
) == 0) {
2862 size_t tmpsz
= launch_data_get_opaque_size(value
);
2863 if (job_assumes(j
, tmpsz
== sizeof(uuid_t
))) {
2864 memcpy(j
->expected_audit_uuid
, launch_data_get_opaque(value
), sizeof(uuid_t
));
2874 policy_setup(launch_data_t obj
, const char *key
, void *context
)
2877 bool found_key
= false;
2882 if (strcasecmp(key
, LAUNCH_JOBPOLICY_DENYCREATINGOTHERJOBS
) == 0) {
2883 j
->deny_job_creation
= launch_data_get_bool(obj
);
2891 if (unlikely(!found_key
)) {
2892 job_log(j
, LOG_WARNING
, "Unknown policy: %s", key
);
2897 job_import_dictionary(job_t j
, const char *key
, launch_data_t value
)
2904 if (strcasecmp(key
, LAUNCH_JOBKEY_POLICIES
) == 0) {
2905 launch_data_dict_iterate(value
, policy_setup
, j
);
2910 if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE
) == 0) {
2911 launch_data_dict_iterate(value
, semaphoreitem_setup
, j
);
2916 if (strcasecmp(key
, LAUNCH_JOBKEY_INETDCOMPATIBILITY
) == 0) {
2917 j
->inetcompat
= true;
2918 j
->abandon_pg
= true;
2919 if ((tmp
= launch_data_dict_lookup(value
, LAUNCH_JOBINETDCOMPATIBILITY_WAIT
))) {
2920 j
->inetcompat_wait
= launch_data_get_bool(tmp
);
2926 if (strcasecmp(key
, LAUNCH_JOBKEY_JETSAMPROPERTIES
) == 0) {
2927 launch_data_dict_iterate(value
, (void (*)(launch_data_t
, const char *, void *))jetsam_property_setup
, j
);
2931 if (strcasecmp(key
, LAUNCH_JOBKEY_ENVIRONMENTVARIABLES
) == 0) {
2932 launch_data_dict_iterate(value
, envitem_setup
, j
);
2937 if (strcasecmp(key
, LAUNCH_JOBKEY_USERENVIRONMENTVARIABLES
) == 0) {
2938 j
->importing_global_env
= true;
2939 launch_data_dict_iterate(value
, envitem_setup
, j
);
2940 j
->importing_global_env
= false;
2945 if (strcasecmp(key
, LAUNCH_JOBKEY_SOCKETS
) == 0) {
2946 launch_data_dict_iterate(value
, socketgroup_setup
, j
);
2947 } else if (strcasecmp(key
, LAUNCH_JOBKEY_STARTCALENDARINTERVAL
) == 0) {
2948 calendarinterval_new_from_obj(j
, value
);
2949 } else if (strcasecmp(key
, LAUNCH_JOBKEY_SOFTRESOURCELIMITS
) == 0) {
2950 launch_data_dict_iterate(value
, limititem_setup
, j
);
2952 } else if (strcasecmp(key
, LAUNCH_JOBKEY_SANDBOXFLAGS
) == 0) {
2953 launch_data_dict_iterate(value
, seatbelt_setup_flags
, j
);
2959 if (strcasecmp(key
, LAUNCH_JOBKEY_HARDRESOURCELIMITS
) == 0) {
2960 j
->importing_hard_limits
= true;
2961 launch_data_dict_iterate(value
, limititem_setup
, j
);
2962 j
->importing_hard_limits
= false;
2967 if (strcasecmp(key
, LAUNCH_JOBKEY_MACHSERVICES
) == 0) {
2968 launch_data_dict_iterate(value
, machservice_setup
, j
);
2973 if (strcasecmp(key
, LAUNCH_JOBKEY_LAUNCHEVENTS
) == 0) {
2974 launch_data_dict_iterate(value
, eventsystem_setup
, j
);
2976 if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADTOHARDWARE
) == 0) {
2979 if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADFROMHARDWARE
) == 0) {
2985 job_log(j
, LOG_WARNING
, "Unknown key for dictionary: %s", key
);
2991 job_import_array(job_t j
, const char *key
, launch_data_t value
)
2993 size_t i
, value_cnt
= launch_data_array_get_count(value
);
2998 if (strcasecmp(key
, LAUNCH_JOBKEY_PROGRAMARGUMENTS
) == 0) {
3004 if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADTOHOSTS
) == 0) {
3006 } else if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADFROMHOSTS
) == 0) {
3008 } else if (strcasecmp(key
, LAUNCH_JOBKEY_LIMITLOADTOSESSIONTYPE
) == 0) {
3009 job_log(j
, LOG_NOTICE
, "launchctl should have transformed the \"%s\" array to a string", LAUNCH_JOBKEY_LIMITLOADTOSESSIONTYPE
);
3015 if (strcasecmp(key
, LAUNCH_JOBKEY_BINARYORDERPREFERENCE
) == 0) {
3016 if (job_assumes(j
, j
->j_binpref
= malloc(value_cnt
* sizeof(*j
->j_binpref
)))) {
3017 j
->j_binpref_cnt
= value_cnt
;
3018 for (i
= 0; i
< value_cnt
; i
++) {
3019 j
->j_binpref
[i
] = (cpu_type_t
) launch_data_get_integer(launch_data_array_get_index(value
, i
));
3026 if (strcasecmp(key
, LAUNCH_JOBKEY_STARTCALENDARINTERVAL
) == 0) {
3027 for (i
= 0; i
< value_cnt
; i
++) {
3028 calendarinterval_new_from_obj(j
, launch_data_array_get_index(value
, i
));
3033 job_log(j
, LOG_WARNING
, "Unknown key for array: %s", key
);
3039 job_import_keys(launch_data_t obj
, const char *key
, void *context
)
3042 launch_data_type_t kind
;
3045 launchd_syslog(LOG_ERR
, "NULL object given to job_import_keys().");
3049 kind
= launch_data_get_type(obj
);
3052 case LAUNCH_DATA_BOOL
:
3053 job_import_bool(j
, key
, launch_data_get_bool(obj
));
3055 case LAUNCH_DATA_STRING
:
3056 job_import_string(j
, key
, launch_data_get_string(obj
));
3058 case LAUNCH_DATA_INTEGER
:
3059 job_import_integer(j
, key
, launch_data_get_integer(obj
));
3061 case LAUNCH_DATA_DICTIONARY
:
3062 job_import_dictionary(j
, key
, obj
);
3064 case LAUNCH_DATA_ARRAY
:
3065 job_import_array(j
, key
, obj
);
3067 case LAUNCH_DATA_OPAQUE
:
3068 job_import_opaque(j
, key
, obj
);
3071 job_log(j
, LOG_WARNING
, "Unknown value type '%d' for key: %s", kind
, key
);
3077 jobmgr_import2(jobmgr_t jm
, launch_data_t pload
)
3079 launch_data_t tmp
, ldpa
;
3080 const char *label
= NULL
, *prog
= NULL
;
3081 const char **argv
= NULL
;
3084 if (!jobmgr_assumes(jm
, pload
!= NULL
)) {
3089 if (unlikely(launch_data_get_type(pload
) != LAUNCH_DATA_DICTIONARY
)) {
3094 if (unlikely(!(tmp
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_LABEL
)))) {
3099 if (unlikely(launch_data_get_type(tmp
) != LAUNCH_DATA_STRING
)) {
3104 if (unlikely(!(label
= launch_data_get_string(tmp
)))) {
3109 #if TARGET_OS_EMBEDDED
3110 if (unlikely(launchd_embedded_handofgod
&& _launchd_embedded_god
)) {
3111 if (unlikely(!(tmp
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_USERNAME
)))) {
3116 const char *username
= NULL
;
3117 if (likely(tmp
&& launch_data_get_type(tmp
) == LAUNCH_DATA_STRING
)) {
3118 username
= launch_data_get_string(tmp
);
3124 if (!jobmgr_assumes(jm
, _launchd_embedded_god
->username
!= NULL
&& username
!= NULL
)) {
3129 if (unlikely(strcmp(_launchd_embedded_god
->username
, username
) != 0)) {
3133 } else if (launchd_embedded_handofgod
) {
3139 if ((tmp
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_PROGRAM
))
3140 && (launch_data_get_type(tmp
) == LAUNCH_DATA_STRING
)) {
3141 prog
= launch_data_get_string(tmp
);
3145 if ((ldpa
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_PROGRAMARGUMENTS
))) {
3148 if (launch_data_get_type(ldpa
) != LAUNCH_DATA_ARRAY
) {
3153 c
= launch_data_array_get_count(ldpa
);
3155 argv
= alloca((c
+ 1) * sizeof(char *));
3157 for (i
= 0; i
< c
; i
++) {
3158 tmp
= launch_data_array_get_index(ldpa
, i
);
3160 if (launch_data_get_type(tmp
) != LAUNCH_DATA_STRING
) {
3165 argv
[i
] = launch_data_get_string(tmp
);
3172 if (!prog
&& argc
== 0) {
3173 jobmgr_log(jm
, LOG_ERR
, "Job specifies neither Program nor ProgramArguments: %s", label
);
3178 /* Find the requested session. You cannot load services into XPC domains in
3181 launch_data_t session
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_LIMITLOADTOSESSIONTYPE
);
3183 jobmgr_t jmt
= NULL
;
3184 if (launch_data_get_type(session
) == LAUNCH_DATA_STRING
) {
3185 jmt
= jobmgr_find_by_name(jm
, launch_data_get_string(session
));
3187 jobmgr_log(jm
, LOG_ERR
, "Could not find requested session: %s", launch_data_get_string(session
));
3192 jobmgr_log(jm
, LOG_ERR
, "Session type is not a string.");
3201 /* For legacy reasons, we have a global hash of all labels in all job
3202 * managers. So rather than make it a global, we store it in the root job
3203 * manager. But for an XPC domain, we store a local hash of all services in
3206 jobmgr_t where2look
= (jm
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
) ? jm
: root_jobmgr
;
3207 if (unlikely((j
= job_find(where2look
, label
)) != NULL
)) {
3208 if (jm
->xpc_singleton
) {
3209 /* There can (and probably will be) multiple attemtps to import the
3210 * same XPC service from the same framework. This is okay. It's
3211 * treated as a singleton, so just return the existing one so that
3212 * it may be aliased into the requesting process' XPC domain.
3217 /* If we're not a global XPC domain, then it's an error to try
3218 * importing the same job/service multiple times.
3223 } else if (unlikely(!jobmgr_label_test(where2look
, label
))) {
3227 jobmgr_log(jm
, LOG_DEBUG
, "Importing %s.", label
);
3229 if (likely(j
= job_new(jm
, label
, prog
, argv
))) {
3230 #if TARGET_OS_EMBEDDED
3231 job_apply_defaults(j
);
3233 launch_data_dict_iterate(pload
, job_import_keys
, j
);
3234 if (!uuid_is_null(j
->expected_audit_uuid
)) {
3235 uuid_string_t uuid_str
;
3236 uuid_unparse(j
->expected_audit_uuid
, uuid_str
);
3237 job_log(j
, LOG_DEBUG
, "Imported job. Waiting for session for UUID %s.", uuid_str
);
3238 LIST_INSERT_HEAD(&s_needing_sessions
, j
, needing_session_sle
);
3241 job_log(j
, LOG_DEBUG
, "No security session specified.");
3242 j
->asport
= MACH_PORT_NULL
;
3245 if (pid1_magic
&& !jm
->parentmgr
) {
3246 /* Workaround reentrancy in CF. We don't make this a global variable
3247 * because we don't want per-user launchd's to inherit it. So we
3248 * just set it for every job that we import into the System session.
3250 * See <rdar://problem/9468837>.
3252 envitem_new(j
, "__CF_USER_TEXT_ENCODING", "0x0:0:0", false);
3255 if (j
->event_monitor
) {
3259 #if TARGET_OS_EMBEDDED
3260 /* SpringBoard and backboardd must run at elevated priority.
3262 * See <rdar://problem/9539873> and <rdar://problem/10984383>.
3264 if (j
->embedded_god
|| j
->embedded_home
) {
3265 j
->psproctype
= POSIX_SPAWN_PROC_TYPE_APP_DEFAULT
;
3274 jobmgr_label_test(jobmgr_t jm
, const char *str
)
3278 if (str
[0] == '\0') {
3279 jobmgr_log(jm
, LOG_ERR
, "Empty job labels are not allowed");
3283 for (ptr
= str
; *ptr
; ptr
++) {
3284 if (iscntrl(*ptr
)) {
3285 jobmgr_log(jm
, LOG_ERR
, "ASCII control characters are not allowed in job labels. Index: %td Value: 0x%hhx", ptr
- str
, *ptr
);
3290 if ((strncasecmp(str
, "com.apple.launchd", strlen("com.apple.launchd")) == 0)
3291 || (strncasecmp(str
, "com.apple.launchctl", strlen("com.apple.launchctl")) == 0)) {
3292 jobmgr_log(jm
, LOG_ERR
, "Job labels are not allowed to use a reserved prefix: %s", str
);
3300 job_find(jobmgr_t jm
, const char *label
)
3308 LIST_FOREACH(ji
, &jm
->label_hash
[hash_label(label
)], label_hash_sle
) {
3309 if (unlikely(ji
->removal_pending
|| ji
->mgr
->shutting_down
)) {
3310 // 5351245 and 5488633 respectively
3314 if (strcmp(ji
->label
, label
) == 0) {
3323 // Should try and consolidate with job_mig_intran2() and jobmgr_find_by_pid().
3325 jobmgr_find_by_pid_deep(jobmgr_t jm
, pid_t p
, bool anon_okay
)
3328 LIST_FOREACH(ji
, &jm
->active_jobs
[ACTIVE_JOB_HASH(p
)], pid_hash_sle
) {
3329 if (ji
->p
== p
&& (!ji
->anonymous
|| (ji
->anonymous
&& anon_okay
))) {
3334 jobmgr_t jmi
= NULL
;
3335 SLIST_FOREACH(jmi
, &jm
->submgrs
, sle
) {
3336 if ((ji
= jobmgr_find_by_pid_deep(jmi
, p
, anon_okay
))) {
3345 jobmgr_find_by_pid(jobmgr_t jm
, pid_t p
, bool create_anon
)
3349 LIST_FOREACH(ji
, &jm
->active_jobs
[ACTIVE_JOB_HASH(p
)], pid_hash_sle
) {
3355 return create_anon
? job_new_anonymous(jm
, p
) : NULL
;
3359 managed_job(pid_t p
)
3363 LIST_FOREACH(ji
, &managed_actives
[ACTIVE_JOB_HASH(p
)], pid_hash_sle
) {
3373 job_mig_intran2(jobmgr_t jm
, mach_port_t mport
, pid_t upid
)
3378 if (jm
->jm_port
== mport
) {
3379 return jobmgr_find_by_pid(jm
, upid
, true);
3382 SLIST_FOREACH(jmi
, &jm
->submgrs
, sle
) {
3385 if ((jr
= job_mig_intran2(jmi
, mport
, upid
))) {
3390 LIST_FOREACH(ji
, &jm
->jobs
, sle
) {
3391 if (ji
->j_port
== mport
) {
3400 job_mig_intran(mach_port_t p
)
3402 struct ldcred
*ldc
= runtime_get_caller_creds();
3405 jr
= job_mig_intran2(root_jobmgr
, p
, ldc
->pid
);
3408 struct proc_bsdshortinfo proc
;
3409 if (proc_pidinfo(ldc
->pid
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
3410 if (errno
!= ESRCH
) {
3411 (void)jobmgr_assumes_zero(root_jobmgr
, errno
);
3413 jobmgr_log(root_jobmgr
, LOG_ERR
, "%s[%i] disappeared out from under us (UID: %u EUID: %u)", proc
.pbsi_comm
, ldc
->pid
, ldc
->uid
, ldc
->euid
);
3422 job_find_by_service_port(mach_port_t p
)
3424 struct machservice
*ms
;
3426 LIST_FOREACH(ms
, &port_hash
[HASH_PORT(p
)], port_hash_sle
) {
3427 if (ms
->recv
&& (ms
->port
== p
)) {
3436 job_mig_destructor(job_t j
)
3438 /* The job can go invalid before this point.
3440 * <rdar://problem/5477111>
3442 if (unlikely(j
&& (j
!= workaround_5477111
) && j
->unload_at_mig_return
)) {
3443 job_log(j
, LOG_NOTICE
, "Unloading PID %u at MIG return.", j
->p
);
3447 workaround_5477111
= NULL
;
3449 calendarinterval_sanity_check();
3453 job_export_all2(jobmgr_t jm
, launch_data_t where
)
3458 SLIST_FOREACH(jmi
, &jm
->submgrs
, sle
) {
3459 job_export_all2(jmi
, where
);
3462 LIST_FOREACH(ji
, &jm
->jobs
, sle
) {
3465 if (jobmgr_assumes(jm
, (tmp
= job_export(ji
)) != NULL
)) {
3466 launch_data_dict_insert(where
, tmp
, ji
->label
);
3472 job_export_all(void)
3474 launch_data_t resp
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
);
3477 job_export_all2(root_jobmgr
, resp
);
3479 (void)os_assumes_zero(errno
);
3486 job_log_stray_pg(job_t j
)
3489 size_t len
= sizeof(pid_t
) * get_kern_max_proc();
3490 int i
= 0, kp_cnt
= 0;
3492 if (!launchd_apple_internal
) {
3496 runtime_ktrace(RTKT_LAUNCHD_FINDING_STRAY_PG
, j
->p
, 0, 0);
3498 if (!job_assumes(j
, (pids
= malloc(len
)) != NULL
)) {
3501 if (job_assumes_zero_p(j
, (kp_cnt
= proc_listpgrppids(j
->p
, pids
, len
))) == -1) {
3505 for (i
= 0; i
< kp_cnt
; i
++) {
3506 pid_t p_i
= pids
[i
];
3509 } else if (p_i
== 0 || p_i
== 1) {
3513 struct proc_bsdshortinfo proc
;
3514 if (proc_pidinfo(p_i
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
3515 if (errno
!= ESRCH
) {
3516 (void)job_assumes_zero(j
, errno
);
3521 pid_t pp_i
= proc
.pbsi_ppid
;
3522 const char *z
= (proc
.pbsi_status
== SZOMB
) ? "zombie " : "";
3523 const char *n
= proc
.pbsi_comm
;
3525 job_log(j
, LOG_WARNING
, "Stray %sprocess with PGID equal to this dead job: PID %u PPID %u PGID %u %s", z
, p_i
, pp_i
, proc
.pbsi_pgid
, n
);
3532 #if HAVE_SYSTEMSTATS
3534 systemstats_timer_callback(void)
3536 jobmgr_log_perf_statistics(root_jobmgr
, true);
3540 systemstats_is_enabled(void)
3542 static bool systemstats_enabled
;
3544 if (!systemstats_enabled
) {
3545 char *store
= launchd_copy_persistent_store(LAUNCHD_PERSISTENT_STORE_LOGS
, NULL
);
3546 systemstats_enabled
= systemstats_init(SYSTEMSTATS_WRITER_launchd
, store
);
3550 interval
= systemstats_get_log_interval(SYSTEMSTATS_WRITER_launchd
);
3552 if (pid1_magic
&& systemstats_enabled
&& interval
) {
3553 jobmgr_assumes_zero_p(root_jobmgr
, kevent_mod((uintptr_t)systemstats_timer_callback
, EVFILT_TIMER
, EV_ADD
, NOTE_SECONDS
, interval
, root_jobmgr
));
3557 return systemstats_enabled
;
3559 #endif // HAVE_SYSTEMSTATS
3564 bool is_system_bootstrapper
= ((j
->is_bootstrapper
&& pid1_magic
) && !j
->mgr
->parentmgr
);
3566 job_log(j
, LOG_DEBUG
, "Reaping");
3568 if (unlikely(j
->weird_bootstrap
)) {
3570 job_mig_swap_integer(j
, VPROC_GSK_WEIRD_BOOTSTRAP
, 0, 0, &junk
);
3574 (void)job_assumes_zero_p(j
, runtime_close(j
->fork_fd
));
3578 bool was_dirty
= false;
3579 if (!(j
->anonymous
|| j
->implicit_reap
)) {
3581 (void)job_assumes_zero(j
, proc_get_dirty(j
->p
, &flags
));
3583 j
->idle_exit
= (flags
& PROC_DIRTY_ALLOWS_IDLE_EXIT
);
3584 was_dirty
= (flags
& PROC_DIRTY_IS_DIRTY
);
3586 job_log(j
, LOG_DEBUG
, "%sob exited %s.", j
->idle_exit
? "Idle-exit j" : "J", was_dirty
? "while dirty" : "cleanly");
3589 if (j
->idle_exit
&& was_dirty
) {
3590 if (j
->jettisoned
) {
3591 job_log(j
, LOG_NOTICE
, "Idle-exit job was jettisoned while dirty. Will respawn immediately.");
3592 j
->unthrottle
= true;
3593 j
->start_pending
= true;
3595 job_log(j
, LOG_INFO
, "Idle-exit job exited while dirty.");
3597 } else if (j
->idle_exit
&& j
->jettisoned
) {
3598 /* If an idle-exit job is jettisoned, then we shouldn't throttle its
3599 * next respawn because it could not help when it exited. If it ran for
3600 * the minimum runtime, then this doesn't really matter. If it ran for
3601 * less than the minimum runtime, it will not be throttled.
3603 * <rdar://problem/12098667>
3605 job_log(j
, LOG_NOTICE
, "Idle-exit job was jettisoned. Will bypass throttle interval for next on-demand launch.");
3606 j
->unthrottle
= true;
3610 j
->last_exit_status
= 0;
3612 uint64_t rt
= runtime_get_nanoseconds_since(j
->start_time
);
3615 job_log(j
, LOG_PERF
, "Last instance wall time: %06f", (double)rt
/ (double)NSEC_PER_SEC
);
3618 /* The job is dead. While the PID/PGID is still known to be valid, try
3619 * to kill abandoned descendant processes.
3621 job_log_stray_pg(j
);
3622 if (!j
->abandon_pg
) {
3623 if (unlikely(killpg2(j
->p
, SIGTERM
) == -1 && errno
!= ESRCH
)) {
3624 job_log(j
, LOG_APPLEONLY
, "Bug: 5487498");
3629 if (!j
->implicit_reap
) {
3630 /* If the shutdown monitor has suspended a task and not resumed it
3631 * resumed it before exiting, the kernel will not clean up after the
3632 * shutdown monitor. It will, instead, leave the task suspended and
3633 * not process any pending signals on the event loop for the task.
3635 * There are a variety of other kernel bugs that could prevent a
3636 * process from exiting, usually having to do with faulty hardware
3637 * or talking to misbehaving drivers that mark a thread as
3638 * uninterruptible and deadlock/hang before unmarking it as such. So
3639 * we have to work around that too.
3641 * See <rdar://problem/9284889&9359725>.
3643 if (j
->workaround9359725
) {
3644 job_log(j
, LOG_NOTICE
, "Simulated exit: <rdar://problem/9359725>");
3645 j
->last_exit_status
= W_EXITCODE(-1, SIGSEGV
);
3647 #if HAVE_SYSTEMSTATS
3649 struct rusage_info_v1 ri
;
3650 r2
= job_assumes_zero(j
, proc_pid_rusage(j
->p
, RUSAGE_INFO_V1
, (rusage_info_t
)&ri
));
3652 if ((r
= wait4(j
->p
, &j
->last_exit_status
, 0, NULL
)) == -1) {
3653 job_log(j
, LOG_ERR
, "Reap failed. Assuming job exited: %d: %s", errno
, strerror(errno
));
3654 j
->last_exit_status
= W_EXITCODE(-1, SIGSEGV
);
3657 if (j
->idle_exit
&& j
->jettisoned
) {
3658 // Treat idle-exit jettisons as successful exit.
3660 // <rdar://problem/13338973>
3661 (void)job_assumes_zero(j
, WTERMSIG(j
->last_exit_status
));
3662 j
->last_exit_status
= W_EXITCODE(0, 0);
3664 #if HAVE_SYSTEMSTATS
3666 job_log_perf_statistics(j
, &ri
, j
->last_exit_status
);
3671 job_log(j
, LOG_INFO
, "Job was implicitly reaped by the kernel.");
3675 if (j
->exit_timeout
) {
3676 (void)kevent_mod((uintptr_t)&j
->exit_timeout
, EVFILT_TIMER
, EV_DELETE
, 0, 0, NULL
);
3679 LIST_REMOVE(j
, pid_hash_sle
);
3680 if (!j
->anonymous
) {
3681 LIST_REMOVE(j
, global_pid_hash_sle
);
3684 if (j
->sent_signal_time
) {
3685 uint64_t td_sec
, td_usec
, td
= runtime_get_nanoseconds_since(j
->sent_signal_time
);
3687 td_sec
= td
/ NSEC_PER_SEC
;
3688 td_usec
= (td
% NSEC_PER_SEC
) / NSEC_PER_USEC
;
3690 job_log(j
, LOG_DEBUG
, "Exited %llu.%06llu seconds after the first signal was sent", td_sec
, td_usec
);
3693 int exit_status
= WEXITSTATUS(j
->last_exit_status
);
3694 if (WIFEXITED(j
->last_exit_status
) && exit_status
!= 0) {
3695 if (!j
->did_exec
&& _launchd_support_system
) {
3696 xpc_object_t event
= NULL
;
3697 switch (exit_status
) {
3701 job_log(j
, LOG_NOTICE
, "Job failed to exec(3). Setting up event to tell us when to try again: %d: %s", exit_status
, strerror(exit_status
));
3702 event
= xpc_dictionary_create(NULL
, NULL
, 0);
3703 xpc_dictionary_set_string(event
, "Executable", j
->prog
? j
->prog
: j
->argv
[0]);
3705 xpc_dictionary_set_uint64(event
, "UID", j
->mach_uid
);
3706 } else if (j
->username
) {
3707 xpc_dictionary_set_string(event
, "UserName", j
->username
);
3711 xpc_dictionary_set_string(event
, "GroupName", j
->groupname
);
3714 (void)externalevent_new(j
, _launchd_support_system
, j
->label
, event
, 0);
3717 j
->waiting4ok
= true;
3719 job_log(j
, LOG_NOTICE
, "Job failed to exec(3) for weird reason: %d", exit_status
);
3722 int level
= LOG_INFO
;
3723 if (exit_status
!= 0) {
3727 job_log(j
, level
, "Exited with code: %d", exit_status
);
3731 if (WIFSIGNALED(j
->last_exit_status
)) {
3732 int s
= WTERMSIG(j
->last_exit_status
);
3733 if ((SIGKILL
== s
|| SIGTERM
== s
) && !j
->stopped
) {
3734 job_log(j
, LOG_NOTICE
, "Exited: %s", strsignal(s
));
3735 } else if (!(j
->stopped
|| j
->clean_kill
|| j
->jettisoned
)) {
3737 // Signals which indicate a crash.
3744 /* If the kernel has posted NOTE_EXIT and the signal sent to the process was
3745 * SIGTRAP, assume that it's a crash.
3749 job_log(j
, LOG_WARNING
, "Job appears to have crashed: %s", strsignal(s
));
3752 job_log(j
, LOG_WARNING
, "Exited abnormally: %s", strsignal(s
));
3756 if (is_system_bootstrapper
&& j
->crashed
) {
3757 job_log(j
, LOG_ERR
| LOG_CONSOLE
, "The %s bootstrapper has crashed: %s", j
->mgr
->name
, strsignal(s
));
3764 struct machservice
*msi
= NULL
;
3765 if (j
->crashed
|| !(j
->did_exec
|| j
->anonymous
)) {
3766 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
3767 if (j
->crashed
&& !msi
->isActive
&& (msi
->drain_one_on_crash
|| msi
->drain_all_on_crash
)) {
3768 machservice_drain_port(msi
);
3771 if (!j
->did_exec
&& msi
->reset
&& job_assumes(j
, !msi
->isActive
)) {
3772 machservice_resetport(j
, msi
);
3777 /* HACK: Essentially duplicating the logic directly above. But this has
3778 * gotten really hairy, and I don't want to try consolidating it right now.
3780 if (j
->xpc_service
&& !j
->xpcproxy_did_exec
) {
3781 job_log(j
, LOG_ERR
, "XPC Service could not exec(3). Resetting port.");
3782 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
3783 /* Drain the messages but do not reset the port. If xpcproxy could
3784 * not exec(3), then we don't want to continue trying, since there
3785 * is very likely a serious configuration error with the service.
3787 * The above comment is weird. I originally said we should drain
3788 * messages but not reset the port, but that's exactly what we do
3789 * below, and I'm not sure which is the mistake, the comment or the
3792 * Since it's always been this way, I'll assume that the comment is
3793 * incorrect, but I'll leave it in place just to remind myself to
3794 * actually look into it at some point.
3796 * <rdar://problem/8986802>
3798 if (msi
->upfront
&& job_assumes(j
, !msi
->isActive
)) {
3799 machservice_resetport(j
, msi
);
3804 struct suspended_peruser
*spi
= NULL
;
3805 while ((spi
= LIST_FIRST(&j
->suspended_perusers
))) {
3806 job_log(j
, LOG_ERR
, "Job exited before resuming per-user launchd for UID %u. Will forcibly resume.", spi
->j
->mach_uid
);
3807 spi
->j
->peruser_suspend_count
--;
3808 if (spi
->j
->peruser_suspend_count
== 0) {
3809 job_dispatch(spi
->j
, false);
3811 LIST_REMOVE(spi
, sle
);
3815 if (j
->exit_status_dest
) {
3816 errno
= helper_downcall_wait(j
->exit_status_dest
, j
->last_exit_status
);
3817 if (errno
&& errno
!= MACH_SEND_INVALID_DEST
) {
3818 (void)job_assumes_zero(j
, errno
);
3821 j
->exit_status_dest
= MACH_PORT_NULL
;
3824 if (j
->spawn_reply_port
) {
3825 /* If the child never called exec(3), we must send a spawn() reply so
3826 * that the requestor can get exit status from it. If we fail to send
3827 * the reply for some reason, we have to deallocate the exit status port
3830 kern_return_t kr
= job_mig_spawn2_reply(j
->spawn_reply_port
, BOOTSTRAP_SUCCESS
, j
->p
, j
->exit_status_port
);
3832 if (kr
!= MACH_SEND_INVALID_DEST
) {
3833 (void)job_assumes_zero(j
, kr
);
3836 (void)job_assumes_zero(j
, launchd_mport_close_recv(j
->exit_status_port
));
3839 j
->exit_status_port
= MACH_PORT_NULL
;
3840 j
->spawn_reply_port
= MACH_PORT_NULL
;
3844 total_anon_children
--;
3846 job_log(j
, LOG_PERF
, "Anonymous job exited holding reference.");
3850 job_log(j
, LOG_PERF
, "Job exited.");
3855 if (j
->has_console
) {
3859 if (j
->shutdown_monitor
) {
3860 job_log(j
, LOG_NOTICE
| LOG_CONSOLE
, "Shutdown monitor has exited.");
3861 _launchd_shutdown_monitor
= NULL
;
3862 j
->shutdown_monitor
= false;
3865 if (!j
->anonymous
) {
3866 j
->mgr
->normal_active_cnt
--;
3868 j
->sent_signal_time
= 0;
3869 j
->sent_sigkill
= false;
3870 j
->clean_kill
= false;
3871 j
->event_monitor_ready2signal
= false;
3877 jobmgr_dispatch_all(jobmgr_t jm
, bool newmounthack
)
3882 if (jm
->shutting_down
) {
3886 SLIST_FOREACH_SAFE(jmi
, &jm
->submgrs
, sle
, jmn
) {
3887 jobmgr_dispatch_all(jmi
, newmounthack
);
3890 LIST_FOREACH_SAFE(ji
, &jm
->jobs
, sle
, jn
) {
3891 if (newmounthack
&& ji
->start_on_mount
) {
3892 ji
->start_pending
= true;
3895 job_dispatch(ji
, false);
3900 job_dispatch_curious_jobs(job_t j
)
3902 job_t ji
= NULL
, jt
= NULL
;
3903 SLIST_FOREACH_SAFE(ji
, &s_curious_jobs
, curious_jobs_sle
, jt
) {
3904 struct semaphoreitem
*si
= NULL
;
3905 SLIST_FOREACH(si
, &ji
->semaphores
, sle
) {
3906 if (!(si
->why
== OTHER_JOB_ENABLED
|| si
->why
== OTHER_JOB_DISABLED
)) {
3910 if (strcmp(si
->what
, j
->label
) == 0) {
3911 job_log(ji
, LOG_DEBUG
, "Dispatching out of interest in \"%s\".", j
->label
);
3913 if (!ji
->removing
) {
3914 job_dispatch(ji
, false);
3916 job_log(ji
, LOG_NOTICE
, "The following job is circularly dependent upon this one: %s", j
->label
);
3919 /* ji could be removed here, so don't do anything with it or its semaphores
3929 job_dispatch(job_t j
, bool kickstart
)
3931 // Don't dispatch a job if it has no audit session set.
3932 if (!uuid_is_null(j
->expected_audit_uuid
)) {
3933 job_log(j
, LOG_DEBUG
, "Job is still awaiting its audit session UUID. Not dispatching.");
3937 job_log(j
, LOG_DEBUG
, "Job is an alias. Not dispatching.");
3941 if (j
->waiting4ok
) {
3942 job_log(j
, LOG_DEBUG
, "Job cannot exec(3). Not dispatching.");
3946 #if TARGET_OS_EMBEDDED
3947 if (launchd_embedded_handofgod
&& _launchd_embedded_god
) {
3948 if (!job_assumes(j
, _launchd_embedded_god
->username
!= NULL
&& j
->username
!= NULL
)) {
3953 if (strcmp(j
->username
, _launchd_embedded_god
->username
) != 0) {
3957 } else if (launchd_embedded_handofgod
) {
3964 * The whole job removal logic needs to be consolidated. The fact that
3965 * a job can be removed from just about anywhere makes it easy to have
3966 * stale pointers left behind somewhere on the stack that might get
3967 * used after the deallocation. In particular, during job iteration.
3969 * This is a classic example. The act of dispatching a job may delete it.
3971 if (!job_active(j
)) {
3972 if (job_useless(j
)) {
3973 job_log(j
, LOG_DEBUG
, "Job is useless. Removing.");
3977 if (unlikely(j
->per_user
&& j
->peruser_suspend_count
> 0)) {
3978 job_log(j
, LOG_DEBUG
, "Per-user launchd is suspended. Not dispatching.");
3982 if (kickstart
|| job_keepalive(j
)) {
3983 job_log(j
, LOG_DEBUG
, "%starting job", kickstart
? "Kicks" : "S");
3986 job_log(j
, LOG_DEBUG
, "Watching job.");
3990 job_log(j
, LOG_DEBUG
, "Tried to dispatch an already active job: %s.", job_active(j
));
3999 if (unlikely(!j
->p
|| j
->anonymous
)) {
4003 (void)job_assumes_zero_p(j
, kill2(j
->p
, SIGKILL
));
4005 j
->sent_sigkill
= true;
4006 (void)job_assumes_zero_p(j
, kevent_mod((uintptr_t)&j
->exit_timeout
, EVFILT_TIMER
, EV_ADD
|EV_ONESHOT
, NOTE_SECONDS
, LAUNCHD_SIGKILL_TIMER
, j
));
4008 job_log(j
, LOG_DEBUG
, "Sent SIGKILL signal");
4012 job_open_shutdown_transaction(job_t j
)
4014 int rv
= proc_set_dirty(j
->p
, true);
4016 job_log(j
, LOG_DEBUG
, "Job wants to be dirty at shutdown, but it is not Instant Off-compliant. Treating normally.");
4017 j
->dirty_at_shutdown
= false;
4022 job_close_shutdown_transaction(job_t j
)
4024 if (j
->dirty_at_shutdown
) {
4025 job_log(j
, LOG_DEBUG
, "Closing shutdown transaction for job.");
4026 (void)job_assumes_zero(j
, proc_set_dirty(j
->p
, false));
4027 j
->dirty_at_shutdown
= false;
4032 job_log_children_without_exec(job_t j
)
4035 size_t len
= sizeof(pid_t
) * get_kern_max_proc();
4036 int i
= 0, kp_cnt
= 0;
4038 if (!launchd_apple_internal
|| j
->anonymous
|| j
->per_user
) {
4042 if (!job_assumes(j
, (pids
= malloc(len
)) != NULL
)) {
4045 if (job_assumes_zero_p(j
, (kp_cnt
= proc_listchildpids(j
->p
, pids
, len
))) == -1) {
4049 for (i
= 0; i
< kp_cnt
; i
++) {
4050 struct proc_bsdshortinfo proc
;
4051 if (proc_pidinfo(pids
[i
], PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
4052 if (errno
!= ESRCH
) {
4053 (void)job_assumes_zero(j
, errno
);
4057 if (proc
.pbsi_flags
& P_EXEC
) {
4061 job_log(j
, LOG_DEBUG
, "Called *fork(). Please switch to posix_spawn*(), pthreads or launchd. Child PID %u", pids
[i
]);
4069 job_callback_proc(job_t j
, struct kevent
*kev
)
4071 bool program_changed
= false;
4072 int fflags
= kev
->fflags
;
4074 job_log(j
, LOG_DEBUG
, "EVFILT_PROC event for job.");
4075 log_kevent_struct(LOG_DEBUG
, kev
, 0);
4077 if (fflags
& NOTE_EXEC
) {
4078 program_changed
= true;
4081 struct proc_bsdshortinfo proc
;
4082 if (proc_pidinfo(j
->p
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) > 0) {
4083 char newlabel
[1000];
4085 snprintf(newlabel
, sizeof(newlabel
), "%p.anonymous.%s", j
, proc
.pbsi_comm
);
4087 job_log(j
, LOG_INFO
, "Program changed. Updating the label to: %s", newlabel
);
4089 LIST_REMOVE(j
, label_hash_sle
);
4090 strcpy((char *)j
->label
, newlabel
);
4092 jobmgr_t where2put
= root_jobmgr
;
4093 if (j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
) {
4096 LIST_INSERT_HEAD(&where2put
->label_hash
[hash_label(j
->label
)], j
, label_hash_sle
);
4097 } else if (errno
!= ESRCH
) {
4098 (void)job_assumes_zero(j
, errno
);
4101 if (j
->spawn_reply_port
) {
4102 errno
= job_mig_spawn2_reply(j
->spawn_reply_port
, BOOTSTRAP_SUCCESS
, j
->p
, j
->exit_status_port
);
4104 if (errno
!= MACH_SEND_INVALID_DEST
) {
4105 (void)job_assumes_zero(j
, errno
);
4107 (void)job_assumes_zero(j
, launchd_mport_close_recv(j
->exit_status_port
));
4110 j
->spawn_reply_port
= MACH_PORT_NULL
;
4111 j
->exit_status_port
= MACH_PORT_NULL
;
4114 if (j
->xpc_service
&& j
->did_exec
) {
4115 j
->xpcproxy_did_exec
= true;
4119 job_log(j
, LOG_DEBUG
, "Program changed");
4123 if (fflags
& NOTE_FORK
) {
4124 job_log(j
, LOG_DEBUG
, "fork()ed%s", program_changed
? ". For this message only: We don't know whether this event happened before or after execve()." : "");
4125 job_log_children_without_exec(j
);
4128 if (fflags
& NOTE_EXIT
) {
4129 if (kev
->data
& NOTE_EXIT_DECRYPTFAIL
) {
4131 job_log(j
, LOG_WARNING
, "FairPlay decryption failed on binary for job.");
4132 } else if (kev
->data
& NOTE_EXIT_MEMORY
) {
4133 j
->jettisoned
= true;
4134 job_log(j
, LOG_INFO
, "Job was killed due to memory pressure.");
4143 struct waiting4attach
*w4ai
= NULL
;
4144 struct waiting4attach
*w4ait
= NULL
;
4145 LIST_FOREACH_SAFE(w4ai
, &_launchd_domain_waiters
, le
, w4ait
) {
4146 if (w4ai
->dest
== (pid_t
)kev
->ident
) {
4147 waiting4attach_delete(j
->mgr
, w4ai
);
4151 (void)job_dispatch(j
, false);
4157 job_callback_timer(job_t j
, void *ident
)
4160 job_log(j
, LOG_DEBUG
, "j == ident (%p)", ident
);
4161 job_dispatch(j
, true);
4162 } else if (&j
->semaphores
== ident
) {
4163 job_log(j
, LOG_DEBUG
, "&j->semaphores == ident (%p)", ident
);
4164 job_dispatch(j
, false);
4165 } else if (&j
->start_interval
== ident
) {
4166 job_log(j
, LOG_DEBUG
, "&j->start_interval == ident (%p)", ident
);
4167 j
->start_pending
= true;
4168 job_dispatch(j
, false);
4169 } else if (&j
->exit_timeout
== ident
) {
4170 if (!job_assumes(j
, j
->p
!= 0)) {
4174 if (j
->sent_sigkill
) {
4175 uint64_t td
= runtime_get_nanoseconds_since(j
->sent_signal_time
);
4178 td
-= j
->clean_kill
? 0 : j
->exit_timeout
;
4180 job_log(j
, LOG_WARNING
| LOG_CONSOLE
, "Job has not died after being %skilled %llu seconds ago. Simulating exit.", j
->clean_kill
? "cleanly " : "", td
);
4181 j
->workaround9359725
= true;
4183 // This basically has to be done off the main thread. We have no
4184 // mechanism for draining the main queue in our run loop (like CF
4185 // does), and the kevent mechanism wants an object to be associated
4186 // as the callback. So we just create a dispatch source and reap the
4187 // errant PID whenever we can. Note that it is not safe for us to do
4188 // any logging in this block, since logging requires exclusive
4189 // access to global data structures that is only protected by the
4191 dispatch_source_t hack_13570156
= dispatch_source_create(DISPATCH_SOURCE_TYPE_PROC
, j
->p
, DISPATCH_PROC_EXIT
, dispatch_get_global_queue(0, 0));
4192 dispatch_source_set_event_handler(hack_13570156
, ^{
4193 pid_t pid
= (pid_t
)dispatch_source_get_handle(hack_13570156
);
4196 (void)waitpid(pid
, &status
, 0);
4197 dispatch_release(hack_13570156
);
4200 dispatch_resume(hack_13570156
);
4202 if (launchd_trap_sigkill_bugs
) {
4203 job_log(j
, LOG_NOTICE
| LOG_CONSOLE
, "Trapping into kernel debugger. You can continue the machine after it has been debugged, and shutdown will proceed normally.");
4204 (void)job_assumes_zero(j
, host_reboot(mach_host_self(), HOST_REBOOT_DEBUGGER
));
4207 struct kevent bogus_exit
;
4208 EV_SET(&bogus_exit
, j
->p
, EVFILT_PROC
, 0, NOTE_EXIT
, 0, 0);
4209 jobmgr_callback(j
->mgr
, &bogus_exit
);
4211 if (unlikely(j
->debug_before_kill
)) {
4212 job_log(j
, LOG_NOTICE
, "Exit timeout elapsed. Entering the kernel debugger");
4213 (void)job_assumes_zero(j
, host_reboot(mach_host_self(), HOST_REBOOT_DEBUGGER
));
4216 job_log(j
, LOG_WARNING
| LOG_CONSOLE
, "Exit timeout elapsed (%u seconds). Killing", j
->exit_timeout
);
4220 job_log(j
, LOG_ERR
, "Unrecognized job timer callback: %p", ident
);
4225 job_callback_read(job_t j
, int ident
)
4227 if (ident
== j
->stdin_fd
) {
4228 job_dispatch(j
, true);
4230 socketgroup_callback(j
);
4235 jobmgr_reap_bulk(jobmgr_t jm
, struct kevent
*kev
)
4240 SLIST_FOREACH(jmi
, &jm
->submgrs
, sle
) {
4241 jobmgr_reap_bulk(jmi
, kev
);
4244 if ((j
= jobmgr_find_by_pid(jm
, (pid_t
)kev
->ident
, false))) {
4246 job_callback(j
, kev
);
4251 jobmgr_callback(void *obj
, struct kevent
*kev
)
4255 #if TARGET_OS_EMBEDDED
4256 int flag2check
= VQ_MOUNT
;
4258 int flag2check
= VQ_UPDATE
;
4261 switch (kev
->filter
) {
4263 jobmgr_reap_bulk(jm
, kev
);
4264 root_jobmgr
= jobmgr_do_garbage_collection(root_jobmgr
);
4267 switch (kev
->ident
) {
4269 jobmgr_log(jm
, LOG_DEBUG
, "Got SIGTERM. Shutting down.");
4270 return launchd_shutdown();
4272 return calendarinterval_callback();
4274 // Turn on all logging.
4275 launchd_log_perf
= true;
4276 launchd_log_debug
= true;
4277 launchd_log_shutdown
= true;
4278 /* Hopefully /var is available by this point. If not, uh, oh well.
4279 * It's just a debugging facility.
4281 return jobmgr_log_perf_statistics(jm
, false);
4283 return jobmgr_log_perf_statistics(jm
, true);
4285 jobmgr_log(jm
, LOG_ERR
, "Unrecognized signal: %lu: %s", kev
->ident
, strsignal(kev
->ident
));
4289 if (kev
->fflags
& flag2check
) {
4290 if (!launchd_var_available
) {
4292 if (stat("/var/log", &sb
) == 0 && (sb
.st_mode
& S_IWUSR
)) {
4293 launchd_var_available
= true;
4296 } else if (kev
->fflags
& VQ_MOUNT
) {
4297 jobmgr_dispatch_all(jm
, true);
4299 jobmgr_dispatch_all_semaphores(jm
);
4302 if (kev
->ident
== (uintptr_t)&sorted_calendar_events
) {
4303 calendarinterval_callback();
4304 } else if (kev
->ident
== (uintptr_t)jm
) {
4305 jobmgr_log(jm
, LOG_DEBUG
, "Shutdown timer firing.");
4306 jobmgr_still_alive_with_check(jm
);
4307 } else if (kev
->ident
== (uintptr_t)&jm
->reboot_flags
) {
4308 jobmgr_do_garbage_collection(jm
);
4309 } else if (kev
->ident
== (uintptr_t)&launchd_runtime_busy_time
) {
4310 jobmgr_log(jm
, LOG_DEBUG
, "Idle exit timer fired. Shutting down.");
4311 if (jobmgr_assumes_zero(jm
, runtime_busy_cnt
) == 0) {
4312 return launchd_shutdown();
4314 #if HAVE_SYSTEMSTATS
4315 } else if (kev
->ident
== (uintptr_t)systemstats_timer_callback
) {
4316 systemstats_timer_callback();
4321 if (kev
->ident
== (uintptr_t)s_no_hang_fd
) {
4322 int _no_hang_fd
= open("/dev/autofs_nowait", O_EVTONLY
| O_NONBLOCK
);
4323 if (unlikely(_no_hang_fd
!= -1)) {
4324 jobmgr_log(root_jobmgr
, LOG_DEBUG
, "/dev/autofs_nowait has appeared!");
4325 (void)jobmgr_assumes_zero_p(root_jobmgr
, kevent_mod((uintptr_t)s_no_hang_fd
, EVFILT_VNODE
, EV_DELETE
, 0, 0, NULL
));
4326 (void)jobmgr_assumes_zero_p(root_jobmgr
, runtime_close(s_no_hang_fd
));
4327 s_no_hang_fd
= _fd(_no_hang_fd
);
4329 } else if (pid1_magic
&& launchd_console
&& kev
->ident
== (uintptr_t)fileno(launchd_console
)) {
4331 if (jobmgr_assumes_zero_p(jm
, cfd
= open(_PATH_CONSOLE
, O_WRONLY
| O_NOCTTY
)) != -1) {
4333 if (!(launchd_console
= fdopen(cfd
, "w"))) {
4334 (void)jobmgr_assumes_zero(jm
, errno
);
4341 jobmgr_log(jm
, LOG_ERR
, "Unrecognized kevent filter: %hd", kev
->filter
);
4346 job_callback(void *obj
, struct kevent
*kev
)
4350 job_log(j
, LOG_DEBUG
, "Dispatching kevent callback.");
4352 switch (kev
->filter
) {
4354 return job_callback_proc(j
, kev
);
4356 return job_callback_timer(j
, (void *) kev
->ident
);
4358 return job_callback_read(j
, (int) kev
->ident
);
4359 case EVFILT_MACHPORT
:
4360 return (void)job_dispatch(j
, true);
4362 job_log(j
, LOG_ERR
, "Unrecognized job callback filter: %hd", kev
->filter
);
4375 u_int proc_fflags
= NOTE_EXIT
|NOTE_FORK
|NOTE_EXEC
|NOTE_EXIT_DETAIL
|NOTE_EXITSTATUS
;
4377 if (!job_assumes(j
, j
->mgr
!= NULL
)) {
4381 if (unlikely(job_active(j
))) {
4382 job_log(j
, LOG_DEBUG
, "Already started");
4386 if (!LIST_EMPTY(&j
->mgr
->attaches
)) {
4387 job_log(j
, LOG_DEBUG
, "Looking for attachments for job: %s", j
->label
);
4388 (void)waiting4attach_find(j
->mgr
, j
);
4392 * Some users adjust the wall-clock and then expect software to not notice.
4393 * Therefore, launchd must use an absolute clock instead of the wall clock
4394 * wherever possible.
4396 td
= runtime_get_nanoseconds_since(j
->start_time
);
4399 if (j
->start_time
&& (td
< j
->min_run_time
) && !j
->legacy_mach_job
&& !j
->inetcompat
&& !j
->unthrottle
) {
4400 time_t respawn_delta
= j
->min_run_time
- (uint32_t)td
;
4401 /* We technically should ref-count throttled jobs to prevent idle exit,
4402 * but we're not directly tracking the 'throttled' state at the moment.
4404 job_log(j
, LOG_NOTICE
, "Throttling respawn: Will start in %ld seconds", respawn_delta
);
4405 (void)job_assumes_zero_p(j
, kevent_mod((uintptr_t)j
, EVFILT_TIMER
, EV_ADD
|EV_ONESHOT
, NOTE_SECONDS
, respawn_delta
, j
));
4410 if (likely(!j
->legacy_mach_job
)) {
4411 sipc
= ((!SLIST_EMPTY(&j
->sockets
) || !SLIST_EMPTY(&j
->machservices
)) && !j
->deny_job_creation
) || j
->embedded_god
;
4415 (void)job_assumes_zero_p(j
, socketpair(AF_UNIX
, SOCK_STREAM
, 0, spair
));
4418 (void)job_assumes_zero_p(j
, socketpair(AF_UNIX
, SOCK_STREAM
, 0, execspair
));
4420 switch (c
= runtime_fork(j
->weird_bootstrap
? j
->j_port
: j
->mgr
->jm_port
)) {
4422 job_log_error(j
, LOG_ERR
, "fork() failed, will try again in one second");
4423 (void)job_assumes_zero_p(j
, kevent_mod((uintptr_t)j
, EVFILT_TIMER
, EV_ADD
|EV_ONESHOT
, NOTE_SECONDS
, 1, j
));
4426 (void)job_assumes_zero(j
, runtime_close(execspair
[0]));
4427 (void)job_assumes_zero(j
, runtime_close(execspair
[1]));
4429 (void)job_assumes_zero(j
, runtime_close(spair
[0]));
4430 (void)job_assumes_zero(j
, runtime_close(spair
[1]));
4434 if (unlikely(_vproc_post_fork_ping())) {
4435 _exit(EXIT_FAILURE
);
4438 (void)job_assumes_zero(j
, runtime_close(execspair
[0]));
4439 // wait for our parent to say they've attached a kevent to us
4440 read(_fd(execspair
[1]), &c
, sizeof(c
));
4443 (void)job_assumes_zero(j
, runtime_close(spair
[0]));
4444 snprintf(nbuf
, sizeof(nbuf
), "%d", spair
[1]);
4445 setenv(LAUNCHD_TRUSTED_FD_ENV
, nbuf
, 1);
4450 j
->start_time
= runtime_get_opaque_time();
4452 job_log(j
, LOG_DEBUG
, "Started as PID: %u", c
);
4454 j
->did_exec
= false;
4456 j
->jettisoned
= false;
4457 j
->xpcproxy_did_exec
= false;
4458 j
->checkedin
= false;
4459 j
->start_pending
= false;
4463 j
->workaround9359725
= false;
4464 j
->implicit_reap
= false;
4465 j
->unthrottle
= false;
4466 if (j
->needs_kickoff
) {
4467 j
->needs_kickoff
= false;
4469 if (SLIST_EMPTY(&j
->semaphores
)) {
4470 j
->ondemand
= false;
4474 if (j
->has_console
) {
4478 job_log(j
, LOG_PERF
, "Job started.");
4481 LIST_INSERT_HEAD(&j
->mgr
->active_jobs
[ACTIVE_JOB_HASH(c
)], j
, pid_hash_sle
);
4482 LIST_INSERT_HEAD(&managed_actives
[ACTIVE_JOB_HASH(c
)], j
, global_pid_hash_sle
);
4485 struct proc_uniqidentifierinfo info
;
4486 if (proc_pidinfo(c
, PROC_PIDUNIQIDENTIFIERINFO
, 0, &info
, PROC_PIDUNIQIDENTIFIERINFO_SIZE
) != 0) {
4487 // ignore errors here, kevent_mod below will catch them and clean up
4488 j
->uniqueid
= info
.p_uniqueid
;
4491 j
->mgr
->normal_active_cnt
++;
4492 j
->fork_fd
= _fd(execspair
[0]);
4493 (void)job_assumes_zero(j
, runtime_close(execspair
[1]));
4495 (void)job_assumes_zero(j
, runtime_close(spair
[1]));
4496 ipc_open(_fd(spair
[0]), j
);
4498 if (kevent_mod(c
, EVFILT_PROC
, EV_ADD
, proc_fflags
, 0, root_jobmgr
? root_jobmgr
: j
->mgr
) != -1) {
4501 if (errno
== ESRCH
) {
4502 job_log(j
, LOG_ERR
, "Child was killed before we could attach a kevent.");
4504 (void)job_assumes(j
, errno
== ESRCH
);
4508 /* If we have reaped this job within this same run loop pass, then
4509 * it will be currently ignored. So if there's a failure to attach a
4510 * kevent, we need to make sure that we watch the job so that we can
4513 * See <rdar://problem/10140809>.
4518 #if HAVE_SYSTEMSTATS
4519 if (systemstats_is_enabled()) {
4520 /* We don't really *need* to make the full rusage call -- it
4521 * will be mostly 0s and very small numbers. We only need
4522 * ri_proc_start_abstime, because that's how we disambiguiate
4523 * PIDs when they wrap around; and the UUID.
4524 * In the future we should use the 64-bit process unique ID,
4525 * so there's nothing to disambiguiate, and skip the full
4528 * Well, the future is now.
4530 if (_systemstats_get_property(SYSTEMSTATS_API_VERSION
, SYSTEMSTATS_WRITER_launchd
, SYSTEMSTATS_PROPERTY_LAUNCHD_SHOULD_LOG_JOB_START
)) {
4531 job_log_perf_statistics(j
, NULL
, -3);
4535 j
->wait4debugger_oneshot
= false;
4536 if (likely(!j
->stall_before_exec
)) {
4544 job_start_child(job_t j
)
4546 typeof(posix_spawn
) *psf
;
4547 const char *file2exec
= "/usr/libexec/launchproxy";
4549 posix_spawnattr_t spattr
;
4550 int gflags
= GLOB_NOSORT
|GLOB_NOCHECK
|GLOB_TILDE
|GLOB_DOOFFS
;
4552 short spflags
= POSIX_SPAWN_SETEXEC
;
4553 int psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_BACKGROUND
;
4554 size_t binpref_out_cnt
= 0;
4557 (void)job_assumes_zero(j
, posix_spawnattr_init(&spattr
));
4559 job_setup_attributes(j
);
4561 bool use_xpcproxy
= false;
4562 struct waiting4attach
*w4a
= waiting4attach_find(j
->mgr
, j
);
4564 (void)setenv(XPC_SERVICE_ENV_ATTACHED
, "1", 1);
4565 if (!j
->xpc_service
) {
4566 use_xpcproxy
= true;
4571 argv
= alloca(3 * sizeof(char *));
4572 argv
[0] = "/usr/libexec/xpcproxy";
4576 file2exec
= argv
[0];
4577 } else if (unlikely(j
->argv
&& j
->globargv
)) {
4579 for (i
= 0; i
< j
->argc
; i
++) {
4581 gflags
|= GLOB_APPEND
;
4583 if (glob(j
->argv
[i
], gflags
, NULL
, &g
) != 0) {
4584 job_log_error(j
, LOG_ERR
, "glob(\"%s\")", j
->argv
[i
]);
4588 g
.gl_pathv
[0] = (char *)file2exec
;
4589 argv
= (const char **)g
.gl_pathv
;
4590 } else if (likely(j
->argv
)) {
4591 argv
= alloca((j
->argc
+ 2) * sizeof(char *));
4592 argv
[0] = file2exec
;
4593 for (i
= 0; i
< j
->argc
; i
++) {
4594 argv
[i
+ 1] = j
->argv
[i
];
4598 argv
= alloca(3 * sizeof(char *));
4599 argv
[0] = file2exec
;
4604 if (likely(!(j
->inetcompat
|| use_xpcproxy
))) {
4608 if (unlikely(j
->wait4debugger
|| j
->wait4debugger_oneshot
)) {
4610 job_log(j
, LOG_WARNING
, "Spawned and waiting for the debugger to attach before continuing...");
4612 spflags
|= POSIX_SPAWN_START_SUSPENDED
;
4615 #if !TARGET_OS_EMBEDDED
4616 if (unlikely(j
->disable_aslr
)) {
4617 spflags
|= _POSIX_SPAWN_DISABLE_ASLR
;
4620 spflags
|= j
->pstype
;
4622 (void)job_assumes_zero(j
, posix_spawnattr_setflags(&spattr
, spflags
));
4623 if (unlikely(j
->j_binpref_cnt
)) {
4624 (void)job_assumes_zero(j
, posix_spawnattr_setbinpref_np(&spattr
, j
->j_binpref_cnt
, j
->j_binpref
, &binpref_out_cnt
));
4625 (void)job_assumes(j
, binpref_out_cnt
== j
->j_binpref_cnt
);
4628 psproctype
= j
->psproctype
;
4629 (void)job_assumes_zero(j
, posix_spawnattr_setprocesstype_np(&spattr
, psproctype
));
4631 #if TARGET_OS_EMBEDDED
4632 /* Set jetsam attributes. POSIX_SPAWN_JETSAM_USE_EFFECTIVE_PRIORITY guards
4633 * against a race which arises if, during spawn, an initial jetsam property
4634 * update occurs before the values below are applied. In this case, the flag
4635 * ensures that the subsequent change is ignored; the explicit update should
4636 * be given priority.
4638 (void)job_assumes_zero(j
, posix_spawnattr_setjetsam(&spattr
,
4639 POSIX_SPAWN_JETSAM_USE_EFFECTIVE_PRIORITY
| (j
->jetsam_memory_limit_background
? POSIX_SPAWN_JETSAM_HIWATER_BACKGROUND
: 0),
4640 j
->jetsam_priority
, j
->jetsam_memlimit
));
4643 mach_port_array_t sports
= NULL
;
4644 mach_msg_type_number_t sports_cnt
= 0;
4645 kern_return_t kr
= vproc_mig_get_listener_port_rights(bootstrap_port
, &sports
, &sports_cnt
);
4646 if (kr
== 0 && sports_cnt
) {
4647 /* For some reason, this SPI takes a count as a signed quantity. */
4648 (void)posix_spawnattr_set_importancewatch_port_np(&spattr
, (int)sports_cnt
, sports
);
4650 /* All "count" parameters in MIG are counts of the array. So an array of
4651 * mach_port_t containing 10 elements will have a count of ten, but it
4652 * will occupy 40 bytes. So we must do the multiplication here to pass
4655 * Note that we do NOT release the send rights. We need them to be valid
4656 * at the time they are passed to posix_spawn(2). When we exec(3) using
4657 * posix_spawn(2), they'll be cleaned up anyway.
4659 mig_deallocate((vm_address_t
)sports
, sports_cnt
* sizeof(sports
[0]));
4660 } else if (kr
!= BOOTSTRAP_UNKNOWN_SERVICE
) {
4661 (void)job_assumes_zero(j
, kr
);
4664 #if TARGET_OS_EMBEDDED
4665 if (!j
->app
|| j
->system_app
) {
4666 (void)job_assumes_zero(j
, posix_spawnattr_setcpumonitor_default(&spattr
));
4669 (void)job_assumes_zero(j
, posix_spawnattr_setcpumonitor_default(&spattr
));
4672 #if !TARGET_OS_EMBEDDED
4673 struct task_qos_policy qosinfo
= {
4674 .task_latency_qos_tier
= LATENCY_QOS_LAUNCH_DEFAULT_TIER
,
4675 .task_throughput_qos_tier
= THROUGHPUT_QOS_LAUNCH_DEFAULT_TIER
,
4678 kr
= task_policy_set(mach_task_self(), TASK_BASE_QOS_POLICY
, (task_policy_t
)&qosinfo
, TASK_QOS_POLICY_COUNT
);
4679 (void)job_assumes_zero_p(j
, kr
);
4682 #if HAVE_RESPONSIBILITY
4683 /* Specify which process is responsible for the new job. Per-app XPC
4684 * services are the responsibility of the app. Other processes are
4685 * responsible for themselves. This decision is final and also applies
4686 * to the process's children, so don't initialize responsibility when
4687 * starting a per-user launchd.
4689 if (j
->mgr
->req_pid
) {
4690 responsibility_init2(j
->mgr
->req_pid
, NULL
);
4691 } else if (!j
->per_user
) {
4692 responsibility_init2(getpid(), j
->prog
? j
->prog
: j
->argv
[0]);
4697 if (j
->quarantine_data
) {
4700 if (job_assumes(j
, qp
= qtn_proc_alloc())) {
4701 if (job_assumes_zero(j
, qtn_proc_init_with_data(qp
, j
->quarantine_data
, j
->quarantine_data_sz
) == 0)) {
4702 (void)job_assumes_zero(j
, qtn_proc_apply_to_self(qp
));
4709 #if TARGET_OS_EMBEDDED
4710 struct sandbox_spawnattrs sbattrs
;
4711 if (j
->seatbelt_profile
|| j
->container_identifier
) {
4712 sandbox_spawnattrs_init(&sbattrs
);
4713 if (j
->seatbelt_profile
) {
4714 sandbox_spawnattrs_setprofilename(&sbattrs
, j
->seatbelt_profile
);
4716 if (j
->container_identifier
) {
4717 sandbox_spawnattrs_setcontainer(&sbattrs
, j
->container_identifier
);
4719 (void)job_assumes_zero(j
, posix_spawnattr_setmacpolicyinfo_np(&spattr
, "Sandbox", &sbattrs
, sizeof(sbattrs
)));
4722 if (j
->seatbelt_profile
) {
4723 char *seatbelt_err_buf
= NULL
;
4725 if (job_assumes_zero_p(j
, sandbox_init(j
->seatbelt_profile
, j
->seatbelt_flags
, &seatbelt_err_buf
)) == -1) {
4726 if (seatbelt_err_buf
) {
4727 job_log(j
, LOG_ERR
, "Sandbox failed to init: %s", seatbelt_err_buf
);
4735 psf
= j
->prog
? posix_spawn
: posix_spawnp
;
4737 if (likely(!(j
->inetcompat
|| use_xpcproxy
))) {
4738 file2exec
= j
->prog
? j
->prog
: argv
[0];
4741 errno
= psf(NULL
, file2exec
, NULL
, &spattr
, (char *const *)argv
, environ
);
4743 #if HAVE_SANDBOX && !TARGET_OS_EMBEDDED
4750 jobmgr_export_env_from_other_jobs(jobmgr_t jm
, launch_data_t dict
)
4756 if (jm
->parentmgr
) {
4757 jobmgr_export_env_from_other_jobs(jm
->parentmgr
, dict
);
4759 char **tmpenviron
= environ
;
4760 for (; *tmpenviron
; tmpenviron
++) {
4762 launch_data_t s
= launch_data_alloc(LAUNCH_DATA_STRING
);
4763 launch_data_set_string(s
, strchr(*tmpenviron
, '=') + 1);
4764 strncpy(envkey
, *tmpenviron
, sizeof(envkey
));
4765 *(strchr(envkey
, '=')) = '\0';
4766 launch_data_dict_insert(dict
, s
, envkey
);
4770 LIST_FOREACH(ji
, &jm
->jobs
, sle
) {
4771 SLIST_FOREACH(ei
, &ji
->global_env
, sle
) {
4772 if ((tmp
= launch_data_new_string(ei
->value
))) {
4773 launch_data_dict_insert(dict
, tmp
, ei
->key
);
4780 jobmgr_setup_env_from_other_jobs(jobmgr_t jm
)
4785 if (jm
->parentmgr
) {
4786 jobmgr_setup_env_from_other_jobs(jm
->parentmgr
);
4789 LIST_FOREACH(ji
, &jm
->global_env_jobs
, global_env_sle
) {
4790 SLIST_FOREACH(ei
, &ji
->global_env
, sle
) {
4791 setenv(ei
->key
, ei
->value
, 1);
4797 job_log_pids_with_weird_uids(job_t j
)
4799 size_t len
= sizeof(pid_t
) * get_kern_max_proc();
4801 uid_t u
= j
->mach_uid
;
4802 int i
= 0, kp_cnt
= 0;
4804 if (!launchd_apple_internal
) {
4809 if (!job_assumes(j
, pids
!= NULL
)) {
4813 runtime_ktrace(RTKT_LAUNCHD_FINDING_WEIRD_UIDS
, j
->p
, u
, 0);
4815 /* libproc actually has some serious performance drawbacks when used over sysctl(3) in
4816 * scenarios like this. Whereas sysctl(3) can give us back all the kinfo_proc's in
4817 * one kernel call, libproc requires that we get a list of PIDs we're interested in
4818 * (in this case, all PIDs on the system) and then get a single proc_bsdshortinfo
4819 * struct back in a single call for each one.
4821 * This kind of thing is also more inherently racy than sysctl(3). While sysctl(3)
4822 * returns a snapshot, it returns the whole shebang at once. Any PIDs given to us by
4823 * libproc could go stale before we call proc_pidinfo().
4825 * Note that proc_list*() APIs return the number of PIDs given back, not the number
4826 * of bytes written to the buffer.
4828 if (job_assumes_zero_p(j
, (kp_cnt
= proc_listallpids(pids
, len
))) == -1) {
4832 for (i
= 0; i
< kp_cnt
; i
++) {
4833 struct proc_bsdshortinfo proc
;
4834 /* We perhaps should not log a bug here if we get ESRCH back, due to the race
4837 if (proc_pidinfo(pids
[i
], PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
4838 if (errno
!= ESRCH
) {
4839 (void)job_assumes_zero(j
, errno
);
4844 uid_t i_euid
= proc
.pbsi_uid
;
4845 uid_t i_uid
= proc
.pbsi_ruid
;
4846 uid_t i_svuid
= proc
.pbsi_svuid
;
4847 pid_t i_pid
= pids
[i
];
4849 if (i_euid
!= u
&& i_uid
!= u
&& i_svuid
!= u
) {
4853 job_log(j
, LOG_ERR
, "PID %u \"%s\" has no account to back it! Real/effective/saved UIDs: %u/%u/%u", i_pid
, proc
.pbsi_comm
, i_uid
, i_euid
, i_svuid
);
4855 // Temporarily disabled due to 5423935 and 4946119.
4857 // Ask the accountless process to exit.
4858 (void)job_assumes_zero_p(j
, kill2(i_pid
, SIGTERM
));
4866 static struct passwd
*
4867 job_getpwnam(job_t j
, const char *name
)
4870 * methodology for system daemons
4872 * first lookup user record without any opendirectoryd interaction,
4873 * we don't know what interprocess dependencies might be in flight.
4874 * if that fails, we re-enable opendirectoryd interaction and
4875 * re-issue the lookup. We have to disable the libinfo L1 cache
4876 * otherwise libinfo will return the negative cache entry on the retry
4878 #if !TARGET_OS_EMBEDDED
4879 struct passwd
*pw
= NULL
;
4881 if (pid1_magic
&& j
->mgr
== root_jobmgr
) {
4882 // 1 == SEARCH_MODULE_FLAG_DISABLED
4883 si_search_module_set_flags("ds", 1);
4884 gL1CacheEnabled
= false;
4886 pw
= getpwnam(name
);
4887 si_search_module_set_flags("ds", 0);
4891 pw
= getpwnam(name
);
4897 return getpwnam(name
);
4901 static struct group
*
4902 job_getgrnam(job_t j
, const char *name
)
4904 #if !TARGET_OS_EMBEDDED
4905 struct group
*gr
= NULL
;
4907 if (pid1_magic
&& j
->mgr
== root_jobmgr
) {
4908 si_search_module_set_flags("ds", 1);
4909 gL1CacheEnabled
= false;
4911 gr
= getgrnam(name
);
4913 si_search_module_set_flags("ds", 0);
4917 gr
= getgrnam(name
);
4923 return getgrnam(name
);
4928 job_postfork_test_user(job_t j
)
4930 // This function is all about 5201578
4932 const char *home_env_var
= getenv("HOME");
4933 const char *user_env_var
= getenv("USER");
4934 const char *logname_env_var
= getenv("LOGNAME");
4935 uid_t tmp_uid
, local_uid
= getuid();
4936 gid_t tmp_gid
, local_gid
= getgid();
4937 char shellpath
[PATH_MAX
];
4938 char homedir
[PATH_MAX
];
4939 char loginname
[2000];
4943 if (!job_assumes(j
, home_env_var
&& user_env_var
&& logname_env_var
4944 && strcmp(user_env_var
, logname_env_var
) == 0)) {
4948 if ((pwe
= job_getpwnam(j
, user_env_var
)) == NULL
) {
4949 job_log(j
, LOG_ERR
, "The account \"%s\" has been deleted out from under us!", user_env_var
);
4954 * We must copy the results of getpw*().
4956 * Why? Because subsequent API calls may call getpw*() as a part of
4957 * their implementation. Since getpw*() returns a [now thread scoped]
4958 * global, we must therefore cache the results before continuing.
4961 tmp_uid
= pwe
->pw_uid
;
4962 tmp_gid
= pwe
->pw_gid
;
4964 strlcpy(shellpath
, pwe
->pw_shell
, sizeof(shellpath
));
4965 strlcpy(loginname
, pwe
->pw_name
, sizeof(loginname
));
4966 strlcpy(homedir
, pwe
->pw_dir
, sizeof(homedir
));
4968 if (strcmp(loginname
, logname_env_var
) != 0) {
4969 job_log(j
, LOG_ERR
, "The %s environmental variable changed out from under us!", "USER");
4972 if (strcmp(homedir
, home_env_var
) != 0) {
4973 job_log(j
, LOG_ERR
, "The %s environmental variable changed out from under us!", "HOME");
4976 if (local_uid
!= tmp_uid
) {
4977 job_log(j
, LOG_ERR
, "The %cID of the account (%u) changed out from under us (%u)!",
4978 'U', tmp_uid
, local_uid
);
4981 if (local_gid
!= tmp_gid
) {
4982 job_log(j
, LOG_ERR
, "The %cID of the account (%u) changed out from under us (%u)!",
4983 'G', tmp_gid
, local_gid
);
4990 (void)job_assumes_zero_p(j
, kill2(getppid(), SIGTERM
));
4991 _exit(EXIT_FAILURE
);
4993 job_log(j
, LOG_WARNING
, "In a future build of the OS, this error will be fatal.");
4998 job_postfork_become_user(job_t j
)
5000 char loginname
[2000];
5001 char tmpdirpath
[PATH_MAX
];
5002 char shellpath
[PATH_MAX
];
5003 char homedir
[PATH_MAX
];
5006 gid_t desired_gid
= -1;
5007 uid_t desired_uid
= -1;
5009 if (getuid() != 0) {
5010 return job_postfork_test_user(j
);
5014 * I contend that having UID == 0 and GID != 0 is of dubious value.
5015 * Nevertheless, this used to work in Tiger. See: 5425348
5017 if (j
->groupname
&& !j
->username
) {
5018 j
->username
= "root";
5022 if ((pwe
= job_getpwnam(j
, j
->username
)) == NULL
) {
5023 job_log(j
, LOG_ERR
, "getpwnam(\"%s\") failed", j
->username
);
5026 } else if (j
->mach_uid
) {
5027 if ((pwe
= getpwuid(j
->mach_uid
)) == NULL
) {
5028 job_log(j
, LOG_ERR
, "getpwuid(\"%u\") failed", j
->mach_uid
);
5029 job_log_pids_with_weird_uids(j
);
5037 * We must copy the results of getpw*().
5039 * Why? Because subsequent API calls may call getpw*() as a part of
5040 * their implementation. Since getpw*() returns a [now thread scoped]
5041 * global, we must therefore cache the results before continuing.
5044 desired_uid
= pwe
->pw_uid
;
5045 desired_gid
= pwe
->pw_gid
;
5047 strlcpy(shellpath
, pwe
->pw_shell
, sizeof(shellpath
));
5048 strlcpy(loginname
, pwe
->pw_name
, sizeof(loginname
));
5049 strlcpy(homedir
, pwe
->pw_dir
, sizeof(homedir
));
5051 if (unlikely(pwe
->pw_expire
&& time(NULL
) >= pwe
->pw_expire
)) {
5052 job_log(j
, LOG_ERR
, "Expired account");
5053 _exit(EXIT_FAILURE
);
5057 if (unlikely(j
->username
&& strcmp(j
->username
, loginname
) != 0)) {
5058 job_log(j
, LOG_WARNING
, "Suspicious setup: User \"%s\" maps to user: %s", j
->username
, loginname
);
5059 } else if (unlikely(j
->mach_uid
&& (j
->mach_uid
!= desired_uid
))) {
5060 job_log(j
, LOG_WARNING
, "Suspicious setup: UID %u maps to UID %u", j
->mach_uid
, desired_uid
);
5066 if (unlikely((gre
= job_getgrnam(j
, j
->groupname
)) == NULL
)) {
5067 job_log(j
, LOG_ERR
, "getgrnam(\"%s\") failed", j
->groupname
);
5071 desired_gid
= gre
->gr_gid
;
5074 if (job_assumes_zero_p(j
, setlogin(loginname
)) == -1) {
5075 _exit(EXIT_FAILURE
);
5078 if (job_assumes_zero_p(j
, setgid(desired_gid
)) == -1) {
5079 _exit(EXIT_FAILURE
);
5083 * The kernel team and the DirectoryServices team want initgroups()
5084 * called after setgid(). See 4616864 for more information.
5087 if (likely(!j
->no_init_groups
)) {
5089 if (job_assumes_zero_p(j
, initgroups(loginname
, desired_gid
)) == -1) {
5090 _exit(EXIT_FAILURE
);
5093 /* Do our own little initgroups(). We do this to guarantee that we're
5094 * always opted into dynamic group resolution in the kernel. initgroups(3)
5095 * does not make this guarantee.
5097 int groups
[NGROUPS
], ngroups
;
5099 // A failure here isn't fatal, and we'll still get data we can use.
5100 (void)job_assumes_zero_p(j
, getgrouplist(j
->username
, desired_gid
, groups
, &ngroups
));
5102 if (job_assumes_zero_p(j
, syscall(SYS_initgroups
, ngroups
, groups
, desired_uid
)) == -1) {
5103 _exit(EXIT_FAILURE
);
5108 if (job_assumes_zero_p(j
, setuid(desired_uid
)) == -1) {
5109 _exit(EXIT_FAILURE
);
5112 r
= confstr(_CS_DARWIN_USER_TEMP_DIR
, tmpdirpath
, sizeof(tmpdirpath
));
5114 if (likely(r
> 0 && r
< sizeof(tmpdirpath
))) {
5115 setenv("TMPDIR", tmpdirpath
, 0);
5118 setenv("SHELL", shellpath
, 0);
5119 setenv("HOME", homedir
, 0);
5120 setenv("USER", loginname
, 0);
5121 setenv("LOGNAME", loginname
, 0);
5125 job_setup_attributes(job_t j
)
5127 struct limititem
*li
;
5130 if (unlikely(j
->setnice
)) {
5131 (void)job_assumes_zero_p(j
, setpriority(PRIO_PROCESS
, 0, j
->nice
));
5134 SLIST_FOREACH(li
, &j
->limits
, sle
) {
5137 if (job_assumes_zero_p(j
, getrlimit(li
->which
, &rl
) == -1)) {
5142 rl
.rlim_max
= li
->lim
.rlim_max
;
5145 rl
.rlim_cur
= li
->lim
.rlim_cur
;
5148 if (setrlimit(li
->which
, &rl
) == -1) {
5149 job_log_error(j
, LOG_WARNING
, "setrlimit()");
5153 if (unlikely(!j
->inetcompat
&& j
->session_create
)) {
5154 launchd_SessionCreate();
5157 if (unlikely(j
->low_pri_io
)) {
5158 (void)job_assumes_zero_p(j
, setiopolicy_np(IOPOL_TYPE_DISK
, IOPOL_SCOPE_PROCESS
, IOPOL_THROTTLE
));
5160 if (j
->low_priority_background_io
) {
5161 (void)job_assumes_zero_p(j
, setiopolicy_np(IOPOL_TYPE_DISK
, IOPOL_SCOPE_DARWIN_BG
, IOPOL_THROTTLE
));
5163 if (unlikely(j
->rootdir
)) {
5164 (void)job_assumes_zero_p(j
, chroot(j
->rootdir
));
5165 (void)job_assumes_zero_p(j
, chdir("."));
5168 job_postfork_become_user(j
);
5170 if (unlikely(j
->workingdir
)) {
5171 if (chdir(j
->workingdir
) == -1) {
5172 if (errno
== ENOENT
|| errno
== ENOTDIR
) {
5173 job_log(j
, LOG_ERR
, "Job specified non-existent working directory: %s", j
->workingdir
);
5175 (void)job_assumes_zero(j
, errno
);
5180 if (unlikely(j
->setmask
)) {
5185 (void)job_assumes_zero_p(j
, dup2(j
->stdin_fd
, STDIN_FILENO
));
5187 job_setup_fd(j
, STDIN_FILENO
, j
->stdinpath
, O_RDONLY
|O_CREAT
);
5189 job_setup_fd(j
, STDOUT_FILENO
, j
->stdoutpath
, O_WRONLY
|O_CREAT
|O_APPEND
);
5190 job_setup_fd(j
, STDERR_FILENO
, j
->stderrpath
, O_WRONLY
|O_CREAT
|O_APPEND
);
5192 jobmgr_setup_env_from_other_jobs(j
->mgr
);
5194 SLIST_FOREACH(ei
, &j
->env
, sle
) {
5195 setenv(ei
->key
, ei
->value
, 1);
5198 #if !TARGET_OS_EMBEDDED
5199 if (j
->jetsam_properties
) {
5200 (void)job_assumes_zero(j
, proc_setpcontrol(PROC_SETPC_TERMINATE
));
5204 #if TARGET_OS_EMBEDDED
5205 if (j
->main_thread_priority
!= 0) {
5206 struct sched_param params
;
5207 bzero(¶ms
, sizeof(params
));
5208 params
.sched_priority
= j
->main_thread_priority
;
5209 (void)job_assumes_zero_p(j
, pthread_setschedparam(pthread_self(), SCHED_OTHER
, ¶ms
));
5214 * We'd like to call setsid() unconditionally, but we have reason to
5215 * believe that prevents launchd from being able to send signals to
5216 * setuid children. We'll settle for process-groups.
5218 if (getppid() != 1) {
5219 (void)job_assumes_zero_p(j
, setpgid(0, 0));
5221 (void)job_assumes_zero_p(j
, setsid());
5226 job_setup_fd(job_t j
, int target_fd
, const char *path
, int flags
)
5234 if ((fd
= open(path
, flags
|O_NOCTTY
, DEFFILEMODE
)) == -1) {
5235 job_log_error(j
, LOG_WARNING
, "open(\"%s\", ...)", path
);
5239 (void)job_assumes_zero_p(j
, dup2(fd
, target_fd
));
5240 (void)job_assumes_zero(j
, runtime_close(fd
));
5244 calendarinterval_setalarm(job_t j
, struct calendarinterval
*ci
)
5246 struct calendarinterval
*ci_iter
, *ci_prev
= NULL
;
5247 time_t later
, head_later
;
5249 later
= cronemu(ci
->when
.tm_mon
, ci
->when
.tm_mday
, ci
->when
.tm_hour
, ci
->when
.tm_min
);
5251 if (ci
->when
.tm_wday
!= -1) {
5252 time_t otherlater
= cronemu_wday(ci
->when
.tm_wday
, ci
->when
.tm_hour
, ci
->when
.tm_min
);
5254 if (ci
->when
.tm_mday
== -1) {
5257 later
= later
< otherlater
? later
: otherlater
;
5261 ci
->when_next
= later
;
5263 LIST_FOREACH(ci_iter
, &sorted_calendar_events
, global_sle
) {
5264 if (ci
->when_next
< ci_iter
->when_next
) {
5265 LIST_INSERT_BEFORE(ci_iter
, ci
, global_sle
);
5272 if (ci_iter
== NULL
) {
5273 // ci must want to fire after every other timer, or there are no timers
5275 if (LIST_EMPTY(&sorted_calendar_events
)) {
5276 LIST_INSERT_HEAD(&sorted_calendar_events
, ci
, global_sle
);
5278 LIST_INSERT_AFTER(ci_prev
, ci
, global_sle
);
5282 head_later
= LIST_FIRST(&sorted_calendar_events
)->when_next
;
5284 if (job_assumes_zero_p(j
, kevent_mod((uintptr_t)&sorted_calendar_events
, EVFILT_TIMER
, EV_ADD
, NOTE_ABSOLUTE
|NOTE_SECONDS
, head_later
, root_jobmgr
)) != -1) {
5285 char time_string
[100];
5286 size_t time_string_len
;
5288 ctime_r(&later
, time_string
);
5289 time_string_len
= strlen(time_string
);
5291 if (likely(time_string_len
&& time_string
[time_string_len
- 1] == '\n')) {
5292 time_string
[time_string_len
- 1] = '\0';
5295 job_log(j
, LOG_INFO
, "Scheduled to run again at %s", time_string
);
5300 jobmgr_log_bug(_SIMPLE_STRING asl_message
__attribute__((unused
)), void *ctx
, const char *message
)
5303 jobmgr_log(jm
, LOG_ERR
, "%s", message
);
5309 job_log_bug(_SIMPLE_STRING asl_message
__attribute__((unused
)), void *ctx
, const char *message
)
5312 job_log(j
, LOG_ERR
, "%s", message
);
5317 // ri: NULL = please sample j->p; non-NULL = use this sample
5319 job_log_perf_statistics(job_t j
, struct rusage_info_v1
*ri
, int64_t exit_status
)
5321 #if HAVE_SYSTEMSTATS
5322 if (j
->anonymous
|| !j
->p
) {
5325 if (!systemstats_is_enabled()) {
5329 if (j
->cfbundleidentifier
) {
5330 name
= j
->cfbundleidentifier
;
5335 struct rusage_info_v1 ris
;
5338 r
= proc_pid_rusage(j
->p
, RUSAGE_INFO_V1
, (rusage_info_t
)ri
);
5343 job_log_systemstats(j
->p
, j
->uniqueid
, runtime_get_uniqueid(), j
->mgr
->req_pid
, j
->mgr
->req_uniqueid
, name
, ri
, exit_status
);
5345 #pragma unused (j, ri, exit_status)
5349 #if HAVE_SYSTEMSTATS
5350 // ri: NULL = don't write fields from ri; non-NULL = use this sample
5353 job_log_systemstats(pid_t pid
, uint64_t uniqueid
, uint64_t parent_uniqueid
, pid_t req_pid
, uint64_t req_uniqueid
, const char *name
, struct rusage_info_v1
*ri
, int64_t exit_status
)
5355 if (!systemstats_is_enabled()) {
5359 struct systemstats_process_usage_s info
;
5360 bzero(&info
, sizeof(info
));
5363 info
.exit_status
= exit_status
;
5364 info
.uid
= getuid();
5365 info
.ppid
= getpid();
5366 info
.responsible_pid
= req_pid
;
5369 info
.macho_uuid
= (const uint8_t *)&ri
->ri_uuid
;
5370 info
.user_time
= ri
->ri_user_time
;
5371 info
.system_time
= ri
->ri_system_time
;
5372 info
.pkg_idle_wkups
= ri
->ri_pkg_idle_wkups
;
5373 info
.interrupt_wkups
= ri
->ri_interrupt_wkups
;
5374 info
.proc_start_abstime
= ri
->ri_proc_start_abstime
;
5375 info
.proc_exit_abstime
= ri
->ri_proc_exit_abstime
;
5376 #if SYSTEMSTATS_API_VERSION >= 20130319
5377 info
.pageins
= ri
->ri_pageins
;
5378 info
.wired_size
= ri
->ri_wired_size
;
5379 info
.resident_size
= ri
->ri_resident_size
;
5380 info
.phys_footprint
= ri
->ri_phys_footprint
;
5381 // info.purgeablesize = ???
5383 #if SYSTEMSTATS_API_VERSION >= 20130328
5384 info
.child_user_time
= ri
->ri_child_user_time
;
5385 info
.child_system_time
= ri
->ri_child_system_time
;
5386 info
.child_pkg_idle_wkups
= ri
->ri_child_pkg_idle_wkups
;
5387 info
.child_interrupt_wkups
= ri
->ri_child_interrupt_wkups
;
5388 info
.child_pageins
= ri
->ri_child_pageins
;
5389 info
.child_elapsed_abstime
= ri
->ri_child_elapsed_abstime
;
5392 #if SYSTEMSTATS_API_VERSION >= 20130410
5393 info
.uniqueid
= uniqueid
;
5394 info
.parent_uniqueid
= parent_uniqueid
;
5395 info
.responsible_uniqueid
= req_uniqueid
;
5397 systemstats_write_process_usage(&info
);
5399 #endif /* HAVE_SYSTEMSTATS */
5401 struct waiting4attach
*
5402 waiting4attach_new(jobmgr_t jm
, const char *name
, mach_port_t port
, pid_t dest
, xpc_service_type_t type
)
5404 size_t xtra
= strlen(name
) + 1;
5406 struct waiting4attach
*w4a
= malloc(sizeof(*w4a
) + xtra
);
5414 (void)strcpy(w4a
->name
, name
);
5417 LIST_INSERT_HEAD(&_launchd_domain_waiters
, w4a
, le
);
5419 LIST_INSERT_HEAD(&jm
->attaches
, w4a
, le
);
5423 (void)jobmgr_assumes_zero(jm
, launchd_mport_notify_req(port
, MACH_NOTIFY_DEAD_NAME
));
5428 waiting4attach_delete(jobmgr_t jm
, struct waiting4attach
*w4a
)
5430 jobmgr_log(jm
, LOG_DEBUG
, "Canceling dead-name notification for waiter port: 0x%x", w4a
->port
);
5432 LIST_REMOVE(w4a
, le
);
5434 mach_port_t previous
= MACH_PORT_NULL
;
5435 (void)jobmgr_assumes_zero(jm
, mach_port_request_notification(mach_task_self(), w4a
->port
, MACH_NOTIFY_DEAD_NAME
, 0, MACH_PORT_NULL
, MACH_MSG_TYPE_MOVE_SEND_ONCE
, &previous
));
5437 (void)jobmgr_assumes_zero(jm
, launchd_mport_deallocate(previous
));
5440 jobmgr_assumes_zero(jm
, launchd_mport_deallocate(w4a
->port
));
5444 struct waiting4attach
*
5445 waiting4attach_find(jobmgr_t jm
, job_t j
)
5447 char *name2use
= (char *)j
->label
;
5449 struct envitem
*ei
= NULL
;
5450 SLIST_FOREACH(ei
, &j
->env
, sle
) {
5451 if (strcmp(ei
->key
, XPC_SERVICE_RENDEZVOUS_TOKEN
) == 0) {
5452 name2use
= ei
->value
;
5458 struct waiting4attach
*w4ai
= NULL
;
5459 LIST_FOREACH(w4ai
, &jm
->attaches
, le
) {
5460 if (strcmp(name2use
, w4ai
->name
) == 0) {
5461 job_log(j
, LOG_DEBUG
, "Found attachment: %s", name2use
);
5470 job_logv(job_t j
, int pri
, int err
, const char *msg
, va_list ap
)
5472 const char *label2use
= j
? j
->label
: "com.apple.launchd.job-unknown";
5473 const char *mgr2use
= j
? j
->mgr
->name
: "com.apple.launchd.jobmanager-unknown";
5478 struct launchd_syslog_attr attr
= {
5479 .from_name
= launchd_label
,
5480 .about_name
= label2use
,
5481 .session_name
= mgr2use
,
5483 .from_uid
= getuid(),
5484 .from_pid
= getpid(),
5485 .about_pid
= j
? j
->p
: 0,
5488 /* Hack: If bootstrap_port is set, we must be on the child side of a
5489 * fork(2), but before the exec*(3). Let's route the log message back to
5492 if (bootstrap_port
) {
5493 return _vproc_logv(pri
, err
, msg
, ap
);
5496 newmsgsz
= strlen(msg
) + 200;
5497 newmsg
= alloca(newmsgsz
);
5500 #if !TARGET_OS_EMBEDDED
5501 snprintf(newmsg
, newmsgsz
, "%s: %d: %s", msg
, err
, strerror(err
));
5503 snprintf(newmsg
, newmsgsz
, "(%s) %s: %d: %s", label2use
, msg
, err
, strerror(err
));
5506 #if !TARGET_OS_EMBEDDED
5507 snprintf(newmsg
, newmsgsz
, "%s", msg
);
5509 snprintf(newmsg
, newmsgsz
, "(%s) %s", label2use
, msg
);
5513 if (j
&& unlikely(j
->debug
)) {
5514 oldmask
= setlogmask(LOG_UPTO(LOG_DEBUG
));
5517 launchd_vsyslog(&attr
, newmsg
, ap
);
5519 if (j
&& unlikely(j
->debug
)) {
5520 setlogmask(oldmask
);
5525 job_log_error(job_t j
, int pri
, const char *msg
, ...)
5530 job_logv(j
, pri
, errno
, msg
, ap
);
5535 job_log(job_t j
, int pri
, const char *msg
, ...)
5540 job_logv(j
, pri
, 0, msg
, ap
);
5546 jobmgr_log_error(jobmgr_t jm
, int pri
, const char *msg
, ...)
5551 jobmgr_logv(jm
, pri
, errno
, msg
, ap
);
5557 jobmgr_log_perf_statistics(jobmgr_t jm
, bool signal_children
)
5559 #if HAVE_SYSTEMSTATS
5560 // Log information for kernel_task and pid 1 launchd.
5561 if (systemstats_is_enabled() && pid1_magic
&& jm
== root_jobmgr
) {
5562 #if SYSTEMSTATS_API_VERSION >= 20130328
5563 if (_systemstats_get_property(SYSTEMSTATS_API_VERSION
, SYSTEMSTATS_WRITER_launchd
, SYSTEMSTATS_PROPERTY_SHOULD_LOG_ENERGY_STATISTICS
)) {
5564 systemstats_write_intel_energy_statistics(NULL
);
5567 systemstats_write_intel_energy_statistics(NULL
);
5569 job_log_systemstats(0, 0, 0, 0, 0, "com.apple.kernel", NULL
, -1);
5570 job_log_systemstats(1, 1, 0, 1, 1, "com.apple.launchd", NULL
, -1);
5573 jobmgr_t jmi
= NULL
;
5574 SLIST_FOREACH(jmi
, &jm
->submgrs
, sle
) {
5575 jobmgr_log_perf_statistics(jmi
, signal_children
);
5578 if (jm
->xpc_singleton
) {
5579 jobmgr_log(jm
, LOG_PERF
, "XPC Singleton Domain: %s", jm
->shortdesc
);
5580 } else if (jm
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
) {
5581 jobmgr_log(jm
, LOG_PERF
, "XPC Private Domain: %s", jm
->owner
);
5582 } else if (jm
->properties
& BOOTSTRAP_PROPERTY_EXPLICITSUBSET
) {
5583 jobmgr_log(jm
, LOG_PERF
, "Created via bootstrap_subset()");
5586 jobmgr_log(jm
, LOG_PERF
, "Jobs in job manager:");
5589 LIST_FOREACH(ji
, &jm
->jobs
, sle
) {
5590 job_log_perf_statistics(ji
, NULL
, -1);
5591 if (unlikely(signal_children
) && unlikely(strstr(ji
->label
, "com.apple.launchd.peruser.") == ji
->label
)) {
5592 jobmgr_log(jm
, LOG_PERF
, "Sending SIGINFO to peruser launchd %d", ji
->p
);
5593 kill(ji
->p
, SIGINFO
);
5597 jobmgr_log(jm
, LOG_PERF
, "End of job list.");
5601 jobmgr_log(jobmgr_t jm
, int pri
, const char *msg
, ...)
5606 jobmgr_logv(jm
, pri
, 0, msg
, ap
);
5611 jobmgr_logv(jobmgr_t jm
, int pri
, int err
, const char *msg
, va_list ap
)
5619 size_t i
, o
, jmname_len
= strlen(jm
->name
), newmsgsz
;
5621 newname
= alloca((jmname_len
+ 1) * 2);
5622 newmsgsz
= (jmname_len
+ 1) * 2 + strlen(msg
) + 100;
5623 newmsg
= alloca(newmsgsz
);
5625 for (i
= 0, o
= 0; i
< jmname_len
; i
++, o
++) {
5626 if (jm
->name
[i
] == '%') {
5630 newname
[o
] = jm
->name
[i
];
5635 snprintf(newmsg
, newmsgsz
, "%s: %s: %s", newname
, msg
, strerror(err
));
5637 snprintf(newmsg
, newmsgsz
, "%s: %s", newname
, msg
);
5640 if (jm
->parentmgr
) {
5641 jobmgr_logv(jm
->parentmgr
, pri
, 0, newmsg
, ap
);
5643 struct launchd_syslog_attr attr
= {
5644 .from_name
= launchd_label
,
5645 .about_name
= launchd_label
,
5646 .session_name
= jm
->name
,
5648 .from_uid
= getuid(),
5649 .from_pid
= getpid(),
5650 .about_pid
= getpid(),
5653 launchd_vsyslog(&attr
, newmsg
, ap
);
5657 struct cal_dict_walk
{
5663 calendarinterval_new_from_obj_dict_walk(launch_data_t obj
, const char *key
, void *context
)
5665 struct cal_dict_walk
*cdw
= context
;
5666 struct tm
*tmptm
= &cdw
->tmptm
;
5670 if (unlikely(LAUNCH_DATA_INTEGER
!= launch_data_get_type(obj
))) {
5671 // hack to let caller know something went wrong
5676 val
= launch_data_get_integer(obj
);
5679 job_log(j
, LOG_WARNING
, "The interval for key \"%s\" is less than zero.", key
);
5680 } else if (strcasecmp(key
, LAUNCH_JOBKEY_CAL_MINUTE
) == 0) {
5682 job_log(j
, LOG_WARNING
, "The interval for key \"%s\" is not between 0 and 59 (inclusive).", key
);
5685 tmptm
->tm_min
= (typeof(tmptm
->tm_min
)) val
;
5687 } else if (strcasecmp(key
, LAUNCH_JOBKEY_CAL_HOUR
) == 0) {
5689 job_log(j
, LOG_WARNING
, "The interval for key \"%s\" is not between 0 and 23 (inclusive).", key
);
5692 tmptm
->tm_hour
= (typeof(tmptm
->tm_hour
)) val
;
5694 } else if (strcasecmp(key
, LAUNCH_JOBKEY_CAL_DAY
) == 0) {
5695 if (val
< 1 || val
> 31) {
5696 job_log(j
, LOG_WARNING
, "The interval for key \"%s\" is not between 1 and 31 (inclusive).", key
);
5699 tmptm
->tm_mday
= (typeof(tmptm
->tm_mday
)) val
;
5701 } else if (strcasecmp(key
, LAUNCH_JOBKEY_CAL_WEEKDAY
) == 0) {
5703 job_log(j
, LOG_WARNING
, "The interval for key \"%s\" is not between 0 and 7 (inclusive).", key
);
5706 tmptm
->tm_wday
= (typeof(tmptm
->tm_wday
)) val
;
5708 } else if (strcasecmp(key
, LAUNCH_JOBKEY_CAL_MONTH
) == 0) {
5710 job_log(j
, LOG_WARNING
, "The interval for key \"%s\" is not between 0 and 12 (inclusive).", key
);
5713 tmptm
->tm_mon
= (typeof(tmptm
->tm_mon
)) val
;
5714 tmptm
->tm_mon
-= 1; // 4798263 cron compatibility
5720 calendarinterval_new_from_obj(job_t j
, launch_data_t obj
)
5722 struct cal_dict_walk cdw
;
5725 memset(&cdw
.tmptm
, 0, sizeof(0));
5727 cdw
.tmptm
.tm_min
= -1;
5728 cdw
.tmptm
.tm_hour
= -1;
5729 cdw
.tmptm
.tm_mday
= -1;
5730 cdw
.tmptm
.tm_wday
= -1;
5731 cdw
.tmptm
.tm_mon
= -1;
5733 if (!job_assumes(j
, obj
!= NULL
)) {
5737 if (unlikely(LAUNCH_DATA_DICTIONARY
!= launch_data_get_type(obj
))) {
5741 launch_data_dict_iterate(obj
, calendarinterval_new_from_obj_dict_walk
, &cdw
);
5743 if (unlikely(cdw
.tmptm
.tm_sec
== -1)) {
5747 return calendarinterval_new(j
, &cdw
.tmptm
);
5751 calendarinterval_new(job_t j
, struct tm
*w
)
5753 struct calendarinterval
*ci
= calloc(1, sizeof(struct calendarinterval
));
5755 if (!job_assumes(j
, ci
!= NULL
)) {
5762 SLIST_INSERT_HEAD(&j
->cal_intervals
, ci
, sle
);
5764 calendarinterval_setalarm(j
, ci
);
5766 runtime_add_weak_ref();
5772 calendarinterval_delete(job_t j
, struct calendarinterval
*ci
)
5774 SLIST_REMOVE(&j
->cal_intervals
, ci
, calendarinterval
, sle
);
5775 LIST_REMOVE(ci
, global_sle
);
5779 runtime_del_weak_ref();
5783 calendarinterval_sanity_check(void)
5785 struct calendarinterval
*ci
= LIST_FIRST(&sorted_calendar_events
);
5786 time_t now
= time(NULL
);
5788 if (unlikely(ci
&& (ci
->when_next
< now
))) {
5789 (void)jobmgr_assumes_zero_p(root_jobmgr
, raise(SIGUSR1
));
5794 calendarinterval_callback(void)
5796 struct calendarinterval
*ci
, *ci_next
;
5797 time_t now
= time(NULL
);
5799 LIST_FOREACH_SAFE(ci
, &sorted_calendar_events
, global_sle
, ci_next
) {
5802 if (ci
->when_next
> now
) {
5806 LIST_REMOVE(ci
, global_sle
);
5807 calendarinterval_setalarm(j
, ci
);
5809 j
->start_pending
= true;
5810 job_dispatch(j
, false);
5815 socketgroup_new(job_t j
, const char *name
, int *fds
, size_t fd_cnt
)
5817 struct socketgroup
*sg
= calloc(1, sizeof(struct socketgroup
) + strlen(name
) + 1);
5819 if (!job_assumes(j
, sg
!= NULL
)) {
5823 sg
->fds
= calloc(1, fd_cnt
* sizeof(int));
5824 sg
->fd_cnt
= fd_cnt
;
5826 if (!job_assumes(j
, sg
->fds
!= NULL
)) {
5831 memcpy(sg
->fds
, fds
, fd_cnt
* sizeof(int));
5832 strcpy(sg
->name_init
, name
);
5834 SLIST_INSERT_HEAD(&j
->sockets
, sg
, sle
);
5836 runtime_add_weak_ref();
5842 socketgroup_delete(job_t j
, struct socketgroup
*sg
)
5846 for (i
= 0; i
< sg
->fd_cnt
; i
++) {
5848 struct sockaddr_storage ss
;
5849 struct sockaddr_un
*sun
= (struct sockaddr_un
*)&ss
;
5850 socklen_t ss_len
= sizeof(ss
);
5853 if (job_assumes_zero(j
, getsockname(sg
->fds
[i
], (struct sockaddr
*)&ss
, &ss_len
) != -1)
5854 && job_assumes(j
, ss_len
> 0) && (ss
.ss_family
== AF_UNIX
)) {
5855 (void)job_assumes(j
, unlink(sun
->sun_path
) != -1);
5856 // We might conditionally need to delete a directory here
5859 (void)job_assumes_zero_p(j
, runtime_close(sg
->fds
[i
]));
5862 SLIST_REMOVE(&j
->sockets
, sg
, socketgroup
, sle
);
5867 runtime_del_weak_ref();
5871 socketgroup_kevent_mod(job_t j
, struct socketgroup
*sg
, bool do_add
)
5873 struct kevent kev
[sg
->fd_cnt
];
5875 unsigned int i
, buf_off
= 0;
5877 for (i
= 0; i
< sg
->fd_cnt
; i
++) {
5878 EV_SET(&kev
[i
], sg
->fds
[i
], EVFILT_READ
, do_add
? EV_ADD
: EV_DELETE
, 0, 0, j
);
5879 buf_off
+= snprintf(buf
+ buf_off
, sizeof(buf
) - buf_off
, " %d", sg
->fds
[i
]);
5882 job_log(j
, LOG_DEBUG
, "%s Sockets:%s", do_add
? "Watching" : "Ignoring", buf
);
5884 (void)job_assumes_zero_p(j
, kevent_bulk_mod(kev
, sg
->fd_cnt
));
5886 for (i
= 0; i
< sg
->fd_cnt
; i
++) {
5887 (void)job_assumes(j
, kev
[i
].flags
& EV_ERROR
);
5888 errno
= (typeof(errno
)) kev
[i
].data
;
5889 (void)job_assumes_zero(j
, kev
[i
].data
);
5894 socketgroup_ignore(job_t j
, struct socketgroup
*sg
)
5896 socketgroup_kevent_mod(j
, sg
, false);
5900 socketgroup_watch(job_t j
, struct socketgroup
*sg
)
5902 socketgroup_kevent_mod(j
, sg
, true);
5906 socketgroup_callback(job_t j
)
5908 job_dispatch(j
, true);
5912 envitem_new(job_t j
, const char *k
, const char *v
, bool global
)
5914 if (global
&& !launchd_allow_global_dyld_envvars
) {
5915 if (strncmp("DYLD_", k
, sizeof("DYLD_") - 1) == 0) {
5916 job_log(j
, LOG_ERR
, "Ignoring global environment variable submitted by job (variable=value): %s=%s", k
, v
);
5921 struct envitem
*ei
= calloc(1, sizeof(struct envitem
) + strlen(k
) + 1 + strlen(v
) + 1);
5923 if (!job_assumes(j
, ei
!= NULL
)) {
5927 strcpy(ei
->key_init
, k
);
5928 ei
->value
= ei
->key_init
+ strlen(k
) + 1;
5929 strcpy(ei
->value
, v
);
5932 if (SLIST_EMPTY(&j
->global_env
)) {
5933 LIST_INSERT_HEAD(&j
->mgr
->global_env_jobs
, j
, global_env_sle
);
5935 SLIST_INSERT_HEAD(&j
->global_env
, ei
, sle
);
5937 SLIST_INSERT_HEAD(&j
->env
, ei
, sle
);
5940 job_log(j
, LOG_DEBUG
, "Added environmental variable: %s=%s", k
, v
);
5946 envitem_delete(job_t j
, struct envitem
*ei
, bool global
)
5949 SLIST_REMOVE(&j
->global_env
, ei
, envitem
, sle
);
5950 if (SLIST_EMPTY(&j
->global_env
)) {
5951 LIST_REMOVE(j
, global_env_sle
);
5954 SLIST_REMOVE(&j
->env
, ei
, envitem
, sle
);
5961 envitem_setup(launch_data_t obj
, const char *key
, void *context
)
5965 if (launch_data_get_type(obj
) != LAUNCH_DATA_STRING
) {
5969 if (strncmp(LAUNCHD_TRUSTED_FD_ENV
, key
, sizeof(LAUNCHD_TRUSTED_FD_ENV
) - 1) != 0) {
5970 envitem_new(j
, key
, launch_data_get_string(obj
), j
->importing_global_env
);
5972 job_log(j
, LOG_DEBUG
, "Ignoring reserved environmental variable: %s", key
);
5977 limititem_update(job_t j
, int w
, rlim_t r
)
5979 struct limititem
*li
;
5981 SLIST_FOREACH(li
, &j
->limits
, sle
) {
5982 if (li
->which
== w
) {
5988 li
= calloc(1, sizeof(struct limititem
));
5990 if (!job_assumes(j
, li
!= NULL
)) {
5994 SLIST_INSERT_HEAD(&j
->limits
, li
, sle
);
5999 if (j
->importing_hard_limits
) {
6000 li
->lim
.rlim_max
= r
;
6003 li
->lim
.rlim_cur
= r
;
6011 limititem_delete(job_t j
, struct limititem
*li
)
6013 SLIST_REMOVE(&j
->limits
, li
, limititem
, sle
);
6020 seatbelt_setup_flags(launch_data_t obj
, const char *key
, void *context
)
6024 if (launch_data_get_type(obj
) != LAUNCH_DATA_BOOL
) {
6025 job_log(j
, LOG_WARNING
, "Sandbox flag value must be boolean: %s", key
);
6029 if (launch_data_get_bool(obj
) == false) {
6033 if (strcasecmp(key
, LAUNCH_JOBKEY_SANDBOX_NAMED
) == 0) {
6034 j
->seatbelt_flags
|= SANDBOX_NAMED
;
6040 limititem_setup(launch_data_t obj
, const char *key
, void *context
)
6043 size_t i
, limits_cnt
= (sizeof(launchd_keys2limits
) / sizeof(launchd_keys2limits
[0]));
6046 if (launch_data_get_type(obj
) != LAUNCH_DATA_INTEGER
) {
6050 rl
= launch_data_get_integer(obj
);
6052 for (i
= 0; i
< limits_cnt
; i
++) {
6053 if (strcasecmp(launchd_keys2limits
[i
].key
, key
) == 0) {
6058 if (i
== limits_cnt
) {
6062 limititem_update(j
, launchd_keys2limits
[i
].val
, rl
);
6066 job_useless(job_t j
)
6068 if ((j
->legacy_LS_job
|| j
->only_once
) && j
->start_time
!= 0) {
6069 if (j
->legacy_LS_job
&& j
->j_port
) {
6072 job_log(j
, LOG_INFO
, "Exited. Was only configured to run once.");
6074 } else if (j
->removal_pending
) {
6075 job_log(j
, LOG_DEBUG
, "Exited while removal was pending.");
6077 } else if (j
->shutdown_monitor
) {
6079 } else if (j
->mgr
->shutting_down
&& !j
->mgr
->parentmgr
) {
6080 job_log(j
, LOG_DEBUG
, "Exited while shutdown in progress. Processes remaining: %lu/%lu", total_children
, total_anon_children
);
6081 if (total_children
== 0 && !j
->anonymous
) {
6082 job_log(j
, LOG_DEBUG
| LOG_CONSOLE
, "Job was last to exit during shutdown of: %s.", j
->mgr
->name
);
6085 } else if (j
->legacy_mach_job
) {
6086 if (SLIST_EMPTY(&j
->machservices
)) {
6087 job_log(j
, LOG_INFO
, "Garbage collecting");
6089 } else if (!j
->checkedin
) {
6090 job_log(j
, LOG_WARNING
, "Failed to check-in!");
6094 /* If the job's executable does not have any valid architectures (for
6095 * example, if it's a PowerPC-only job), then we don't even bother
6096 * trying to relaunch it, as we have no reasonable expectation that
6097 * the situation will change.
6099 * <rdar://problem/9106979>
6101 if (!j
->did_exec
&& WEXITSTATUS(j
->last_exit_status
) == EBADARCH
) {
6102 job_log(j
, LOG_ERR
, "Job executable does not contain supported architectures. Unloading it. Its plist should be removed.");
6111 job_keepalive(job_t j
)
6113 mach_msg_type_number_t statusCnt
;
6114 mach_port_status_t status
;
6115 struct semaphoreitem
*si
;
6116 struct machservice
*ms
;
6117 bool good_exit
= (WIFEXITED(j
->last_exit_status
) && WEXITSTATUS(j
->last_exit_status
) == 0);
6118 bool is_not_kextd
= (launchd_apple_internal
|| (strcmp(j
->label
, "com.apple.kextd") != 0));
6120 if (unlikely(j
->mgr
->shutting_down
)) {
6127 * We definitely need to revisit this after Leopard ships. Please see
6128 * launchctl.c for the other half of this hack.
6130 if (unlikely((j
->mgr
->global_on_demand_cnt
> 0) && is_not_kextd
)) {
6134 if (unlikely(j
->needs_kickoff
)) {
6135 job_log(j
, LOG_DEBUG
, "KeepAlive check: Job needs to be kicked off on-demand before KeepAlive sets in.");
6139 if (j
->start_pending
) {
6140 job_log(j
, LOG_DEBUG
, "KeepAlive check: Pent-up non-IPC launch criteria.");
6145 job_log(j
, LOG_DEBUG
, "KeepAlive check: job configured to run continuously.");
6149 SLIST_FOREACH(ms
, &j
->machservices
, sle
) {
6150 statusCnt
= MACH_PORT_RECEIVE_STATUS_COUNT
;
6151 if (mach_port_get_attributes(mach_task_self(), ms
->port
, MACH_PORT_RECEIVE_STATUS
,
6152 (mach_port_info_t
)&status
, &statusCnt
) != KERN_SUCCESS
) {
6155 if (status
.mps_msgcount
) {
6156 job_log(j
, LOG_DEBUG
, "KeepAlive check: %d queued Mach messages on service: %s",
6157 status
.mps_msgcount
, ms
->name
);
6162 /* TODO: Coalesce external events and semaphore items, since they're basically
6165 struct externalevent
*ei
= NULL
;
6166 LIST_FOREACH(ei
, &j
->events
, job_le
) {
6167 if (ei
->state
== ei
->wanted_state
) {
6172 SLIST_FOREACH(si
, &j
->semaphores
, sle
) {
6173 bool wanted_state
= false;
6178 wanted_state
= true;
6180 if (network_up
== wanted_state
) {
6181 job_log(j
, LOG_DEBUG
, "KeepAlive: The network is %s.", wanted_state
? "up" : "down");
6185 case SUCCESSFUL_EXIT
:
6186 wanted_state
= true;
6188 if (good_exit
== wanted_state
) {
6189 job_log(j
, LOG_DEBUG
, "KeepAlive: The exit state was %s.", wanted_state
? "successful" : "failure");
6194 wanted_state
= true;
6196 if (j
->crashed
== wanted_state
) {
6200 case OTHER_JOB_ENABLED
:
6201 wanted_state
= true;
6202 case OTHER_JOB_DISABLED
:
6203 if ((bool)job_find(NULL
, si
->what
) == wanted_state
) {
6204 job_log(j
, LOG_DEBUG
, "KeepAlive: The following job is %s: %s", wanted_state
? "enabled" : "disabled", si
->what
);
6208 case OTHER_JOB_ACTIVE
:
6209 wanted_state
= true;
6210 case OTHER_JOB_INACTIVE
:
6211 if ((other_j
= job_find(NULL
, si
->what
))) {
6212 if ((bool)other_j
->p
== wanted_state
) {
6213 job_log(j
, LOG_DEBUG
, "KeepAlive: The following job is %s: %s", wanted_state
? "active" : "inactive", si
->what
);
6227 if (j
->p
&& j
->shutdown_monitor
) {
6228 return "Monitoring shutdown";
6231 return "PID is still valid";
6234 if (j
->priv_port_has_senders
) {
6235 return "Privileged Port still has outstanding senders";
6238 struct machservice
*ms
;
6239 SLIST_FOREACH(ms
, &j
->machservices
, sle
) {
6240 /* If we've simulated an exit, we mark the job as non-active, even
6241 * though doing so will leave it in an unsafe state. We do this so that
6242 * shutdown can proceed. See <rdar://problem/11126530>.
6244 if (!j
->workaround9359725
&& ms
->recv
&& machservice_active(ms
)) {
6245 job_log(j
, LOG_INFO
, "Mach service is still active: %s", ms
->name
);
6246 return "Mach service is still active";
6254 machservice_watch(job_t j
, struct machservice
*ms
)
6257 if (job_assumes_zero(j
, runtime_add_mport(ms
->port
, NULL
)) == KERN_INVALID_RIGHT
) {
6258 ms
->recv_race_hack
= true;
6264 machservice_ignore(job_t j
, struct machservice
*ms
)
6266 /* We only add ports whose receive rights we control into the port set, so
6267 * don't attempt to remove te service from the port set if we didn't put it
6268 * there in the first place. Otherwise, we could wind up trying to access a
6269 * bogus index (like MACH_PORT_DEAD) or zeroing a valid one out.
6271 * <rdar://problem/10898014>
6274 (void)job_assumes_zero(j
, runtime_remove_mport(ms
->port
));
6279 machservice_resetport(job_t j
, struct machservice
*ms
)
6281 LIST_REMOVE(ms
, port_hash_sle
);
6282 (void)job_assumes_zero(j
, launchd_mport_close_recv(ms
->port
));
6283 (void)job_assumes_zero(j
, launchd_mport_deallocate(ms
->port
));
6286 (void)job_assumes_zero(j
, launchd_mport_create_recv(&ms
->port
));
6287 (void)job_assumes_zero(j
, launchd_mport_make_send(ms
->port
));
6288 LIST_INSERT_HEAD(&port_hash
[HASH_PORT(ms
->port
)], ms
, port_hash_sle
);
6292 machservice_stamp_port(job_t j
, struct machservice
*ms
)
6294 mach_port_context_t ctx
= 0;
6295 char *where2get
= j
->prog
? j
->prog
: j
->argv
[0];
6298 if ((prog
= strrchr(where2get
, '/'))) {
6304 (void)strncpy((char *)&ctx
, prog
, sizeof(ctx
));
6305 #if __LITTLE_ENDIAN__
6307 ctx
= OSSwapBigToHostInt64(ctx
);
6309 ctx
= OSSwapBigToHostInt32(ctx
);
6313 (void)job_assumes_zero(j
, mach_port_set_context(mach_task_self(), ms
->port
, ctx
));
6316 struct machservice
*
6317 machservice_new(job_t j
, const char *name
, mach_port_t
*serviceport
, bool pid_local
)
6319 /* Don't create new MachServices for dead ports. This is primarily for
6320 * clients who use bootstrap_register2(). They can pass in a send right, but
6321 * then that port can immediately go dead. Hilarity ensues.
6323 * <rdar://problem/10898014>
6325 if (*serviceport
== MACH_PORT_DEAD
) {
6329 struct machservice
*ms
= calloc(1, sizeof(struct machservice
) + strlen(name
) + 1);
6330 if (!job_assumes(j
, ms
!= NULL
)) {
6334 strcpy((char *)ms
->name
, name
);
6337 ms
->per_pid
= pid_local
;
6339 if (likely(*serviceport
== MACH_PORT_NULL
)) {
6340 if (job_assumes_zero(j
, launchd_mport_create_recv(&ms
->port
)) != KERN_SUCCESS
) {
6344 if (job_assumes_zero(j
, launchd_mport_make_send(ms
->port
)) != KERN_SUCCESS
) {
6347 *serviceport
= ms
->port
;
6350 ms
->port
= *serviceport
;
6351 ms
->isActive
= true;
6354 SLIST_INSERT_HEAD(&j
->machservices
, ms
, sle
);
6356 jobmgr_t where2put
= j
->mgr
;
6357 // XPC domains are separate from Mach bootstraps.
6358 if (!(j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
)) {
6359 if (launchd_flat_mach_namespace
&& !(j
->mgr
->properties
& BOOTSTRAP_PROPERTY_EXPLICITSUBSET
)) {
6360 where2put
= root_jobmgr
;
6364 /* Don't allow MachServices added by multiple-instance jobs to be looked up
6365 * by others. We could just do this with a simple bit, but then we'd have to
6366 * uniquify the names ourselves to avoid collisions. This is just easier.
6368 if (!j
->dedicated_instance
) {
6369 LIST_INSERT_HEAD(&where2put
->ms_hash
[hash_ms(ms
->name
)], ms
, name_hash_sle
);
6371 LIST_INSERT_HEAD(&port_hash
[HASH_PORT(ms
->port
)], ms
, port_hash_sle
);
6374 machservice_stamp_port(j
, ms
);
6377 job_log(j
, LOG_DEBUG
, "Mach service added%s: %s", (j
->mgr
->properties
& BOOTSTRAP_PROPERTY_EXPLICITSUBSET
) ? " to private namespace" : "", name
);
6381 (void)job_assumes_zero(j
, launchd_mport_close_recv(ms
->port
));
6387 struct machservice
*
6388 machservice_new_alias(job_t j
, struct machservice
*orig
)
6390 struct machservice
*ms
= calloc(1, sizeof(struct machservice
) + strlen(orig
->name
) + 1);
6391 if (job_assumes(j
, ms
!= NULL
)) {
6392 strcpy((char *)ms
->name
, orig
->name
);
6396 LIST_INSERT_HEAD(&j
->mgr
->ms_hash
[hash_ms(ms
->name
)], ms
, name_hash_sle
);
6397 SLIST_INSERT_HEAD(&j
->machservices
, ms
, sle
);
6398 jobmgr_log(j
->mgr
, LOG_DEBUG
, "Service aliased into job manager: %s", orig
->name
);
6405 machservice_status(struct machservice
*ms
)
6407 ms
= ms
->alias
? ms
->alias
: ms
;
6409 return BOOTSTRAP_STATUS_ACTIVE
;
6410 } else if (ms
->job
->ondemand
) {
6411 return BOOTSTRAP_STATUS_ON_DEMAND
;
6413 return BOOTSTRAP_STATUS_INACTIVE
;
6418 job_setup_exception_port(job_t j
, task_t target_task
)
6420 struct machservice
*ms
;
6421 thread_state_flavor_t f
= 0;
6422 mach_port_t exc_port
= the_exception_server
;
6424 if (unlikely(j
->alt_exc_handler
)) {
6425 ms
= jobmgr_lookup_service(j
->mgr
, j
->alt_exc_handler
, true, 0);
6427 exc_port
= machservice_port(ms
);
6429 job_log(j
, LOG_WARNING
, "Falling back to default Mach exception handler. Could not find: %s", j
->alt_exc_handler
);
6431 } else if (unlikely(j
->internal_exc_handler
)) {
6432 exc_port
= runtime_get_kernel_port();
6433 } else if (unlikely(!exc_port
)) {
6437 #if defined (__ppc__) || defined(__ppc64__)
6438 f
= PPC_THREAD_STATE64
;
6439 #elif defined(__i386__) || defined(__x86_64__)
6440 f
= x86_THREAD_STATE
;
6441 #elif defined(__arm__)
6442 f
= ARM_THREAD_STATE
;
6444 #error "unknown architecture"
6447 if (likely(target_task
)) {
6448 kern_return_t kr
= task_set_exception_ports(target_task
, EXC_MASK_CRASH
| EXC_MASK_GUARD
| EXC_MASK_RESOURCE
, exc_port
, EXCEPTION_STATE_IDENTITY
| MACH_EXCEPTION_CODES
, f
);
6450 if (kr
!= MACH_SEND_INVALID_DEST
) {
6451 (void)job_assumes_zero(j
, kr
);
6453 job_log(j
, LOG_WARNING
, "Task died before exception port could be set.");
6456 } else if (pid1_magic
&& the_exception_server
) {
6457 mach_port_t mhp
= mach_host_self();
6458 (void)job_assumes_zero(j
, host_set_exception_ports(mhp
, EXC_MASK_CRASH
| EXC_MASK_GUARD
| EXC_MASK_RESOURCE
, the_exception_server
, EXCEPTION_STATE_IDENTITY
| MACH_EXCEPTION_CODES
, f
));
6459 (void)job_assumes_zero(j
, launchd_mport_deallocate(mhp
));
6464 job_set_exception_port(job_t j
, mach_port_t port
)
6466 if (unlikely(!the_exception_server
)) {
6467 the_exception_server
= port
;
6468 job_setup_exception_port(j
, 0);
6470 job_log(j
, LOG_WARNING
, "The exception server is already claimed!");
6475 machservice_setup_options(launch_data_t obj
, const char *key
, void *context
)
6477 struct machservice
*ms
= context
;
6478 mach_port_t mhp
= mach_host_self();
6482 if (!job_assumes(ms
->job
, mhp
!= MACH_PORT_NULL
)) {
6486 switch (launch_data_get_type(obj
)) {
6487 case LAUNCH_DATA_INTEGER
:
6488 which_port
= (int)launch_data_get_integer(obj
); // XXX we should bound check this...
6489 if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_TASKSPECIALPORT
) == 0) {
6490 switch (which_port
) {
6491 case TASK_KERNEL_PORT
:
6492 case TASK_HOST_PORT
:
6493 case TASK_NAME_PORT
:
6494 case TASK_BOOTSTRAP_PORT
:
6495 /* I find it a little odd that zero isn't reserved in the header.
6496 * Normally Mach is fairly good about this convention...
6499 job_log(ms
->job
, LOG_WARNING
, "Tried to set a reserved task special port: %d", which_port
);
6502 ms
->special_port_num
= which_port
;
6503 SLIST_INSERT_HEAD(&special_ports
, ms
, special_port_sle
);
6506 } else if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_HOSTSPECIALPORT
) == 0 && pid1_magic
) {
6507 if (which_port
> HOST_MAX_SPECIAL_KERNEL_PORT
) {
6508 (void)job_assumes_zero(ms
->job
, (errno
= host_set_special_port(mhp
, which_port
, ms
->port
)));
6510 job_log(ms
->job
, LOG_WARNING
, "Tried to set a reserved host special port: %d", which_port
);
6513 case LAUNCH_DATA_BOOL
:
6514 b
= launch_data_get_bool(obj
);
6515 if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_ENTERKERNELDEBUGGERONCLOSE
) == 0) {
6516 ms
->debug_on_close
= b
;
6517 } else if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_RESETATCLOSE
) == 0) {
6519 } else if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_HIDEUNTILCHECKIN
) == 0) {
6521 } else if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_EXCEPTIONSERVER
) == 0) {
6522 job_set_exception_port(ms
->job
, ms
->port
);
6523 } else if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_KUNCSERVER
) == 0) {
6525 (void)job_assumes_zero(ms
->job
, host_set_UNDServer(mhp
, ms
->port
));
6528 case LAUNCH_DATA_STRING
:
6529 if (strcasecmp(key
, LAUNCH_JOBKEY_MACH_DRAINMESSAGESONCRASH
) == 0) {
6530 const char *option
= launch_data_get_string(obj
);
6531 if (strcasecmp(option
, "One") == 0) {
6532 ms
->drain_one_on_crash
= true;
6533 } else if (strcasecmp(option
, "All") == 0) {
6534 ms
->drain_all_on_crash
= true;
6538 case LAUNCH_DATA_DICTIONARY
:
6539 if (launch_data_dict_get_count(obj
) == 0) {
6540 job_set_exception_port(ms
->job
, ms
->port
);
6547 (void)job_assumes_zero(ms
->job
, launchd_mport_deallocate(mhp
));
6551 machservice_setup(launch_data_t obj
, const char *key
, void *context
)
6554 struct machservice
*ms
;
6555 mach_port_t p
= MACH_PORT_NULL
;
6557 if (unlikely(ms
= jobmgr_lookup_service(j
->mgr
, key
, false, 0))) {
6558 job_log(j
, LOG_WARNING
, "Conflict with job: %s over Mach service: %s", ms
->job
->label
, key
);
6562 if (!job_assumes(j
, (ms
= machservice_new(j
, key
, &p
, false)) != NULL
)) {
6566 ms
->isActive
= false;
6569 if (launch_data_get_type(obj
) == LAUNCH_DATA_DICTIONARY
) {
6570 launch_data_dict_iterate(obj
, machservice_setup_options
, ms
);
6573 kern_return_t kr
= mach_port_set_attributes(mach_task_self(), ms
->port
, MACH_PORT_TEMPOWNER
, NULL
, 0);
6574 (void)job_assumes_zero(j
, kr
);
6578 jobmgr_do_garbage_collection(jobmgr_t jm
)
6580 jobmgr_t jmi
= NULL
, jmn
= NULL
;
6581 SLIST_FOREACH_SAFE(jmi
, &jm
->submgrs
, sle
, jmn
) {
6582 jobmgr_do_garbage_collection(jmi
);
6585 if (!jm
->shutting_down
) {
6589 if (SLIST_EMPTY(&jm
->submgrs
)) {
6590 jobmgr_log(jm
, LOG_DEBUG
, "No submanagers left.");
6592 jobmgr_log(jm
, LOG_DEBUG
, "Still have submanagers.");
6593 SLIST_FOREACH(jmi
, &jm
->submgrs
, sle
) {
6594 jobmgr_log(jm
, LOG_DEBUG
, "Submanager: %s", jmi
->name
);
6599 job_t ji
= NULL
, jn
= NULL
;
6600 LIST_FOREACH_SAFE(ji
, &jm
->jobs
, sle
, jn
) {
6601 if (ji
->anonymous
) {
6605 // Let the shutdown monitor be up until the very end.
6606 if (ji
->shutdown_monitor
) {
6610 /* On our first pass through, open a transaction for all the jobs that
6611 * need to be dirty at shutdown. We'll close these transactions once the
6612 * jobs that do not need to be dirty at shutdown have all exited.
6614 if (ji
->dirty_at_shutdown
&& !jm
->shutdown_jobs_dirtied
) {
6615 job_open_shutdown_transaction(ji
);
6618 const char *active
= job_active(ji
);
6622 job_log(ji
, LOG_DEBUG
, "Job is active: %s", active
);
6625 if (!ji
->dirty_at_shutdown
) {
6629 if (ji
->clean_kill
) {
6630 job_log(ji
, LOG_DEBUG
, "Job was killed cleanly.");
6632 job_log(ji
, LOG_DEBUG
, "Job was sent SIGTERM%s.", ji
->sent_sigkill
? " and SIGKILL" : "");
6637 jm
->shutdown_jobs_dirtied
= true;
6639 if (!jm
->shutdown_jobs_cleaned
) {
6640 /* Once all normal jobs have exited, we clean the dirty-at-shutdown
6641 * jobs and make them into normal jobs so that the above loop will
6642 * handle them appropriately.
6644 LIST_FOREACH(ji
, &jm
->jobs
, sle
) {
6645 if (ji
->anonymous
) {
6649 if (!job_active(ji
)) {
6653 if (ji
->shutdown_monitor
) {
6657 job_close_shutdown_transaction(ji
);
6661 jm
->shutdown_jobs_cleaned
= true;
6664 if (SLIST_EMPTY(&jm
->submgrs
) && actives
== 0) {
6665 /* We may be in a situation where the shutdown monitor is all that's
6666 * left, in which case we want to stop it. Like dirty-at-shutdown
6667 * jobs, we turn it back into a normal job so that the main loop
6668 * treats it appropriately.
6671 * <rdar://problem/10756306>
6672 * <rdar://problem/11034971>
6673 * <rdar://problem/11549541>
6675 if (jm
->monitor_shutdown
&& _launchd_shutdown_monitor
) {
6676 /* The rest of shutdown has completed, so we can kill the shutdown
6677 * monitor now like it was any other job.
6679 _launchd_shutdown_monitor
->shutdown_monitor
= false;
6681 job_log(_launchd_shutdown_monitor
, LOG_NOTICE
| LOG_CONSOLE
, "Stopping shutdown monitor.");
6682 job_stop(_launchd_shutdown_monitor
);
6683 _launchd_shutdown_monitor
= NULL
;
6685 jobmgr_log(jm
, LOG_DEBUG
, "Removing.");
6696 jobmgr_kill_stray_children(jobmgr_t jm
, pid_t
*p
, size_t np
)
6698 /* I maintain that stray processes should be at the mercy of launchd during
6699 * shutdown, but nevertheless, things like diskimages-helper can stick
6700 * around, and SIGKILLing them can result in data loss. So we send SIGTERM
6701 * to all the strays and don't wait for them to exit before moving on.
6703 * See rdar://problem/6562592
6706 for (i
= 0; i
< np
; i
++) {
6708 jobmgr_log(jm
, LOG_DEBUG
| LOG_CONSOLE
, "Sending SIGTERM to PID %u and continuing...", p
[i
]);
6709 (void)jobmgr_assumes_zero_p(jm
, kill2(p
[i
], SIGTERM
));
6715 jobmgr_log_stray_children(jobmgr_t jm
, bool kill_strays
)
6717 size_t kp_skipped
= 0, len
= sizeof(pid_t
) * get_kern_max_proc();
6719 int i
= 0, kp_cnt
= 0;
6721 if (likely(jm
->parentmgr
|| !pid1_magic
)) {
6725 if (!jobmgr_assumes(jm
, (pids
= malloc(len
)) != NULL
)) {
6729 runtime_ktrace0(RTKT_LAUNCHD_FINDING_ALL_STRAYS
);
6731 if (jobmgr_assumes_zero_p(jm
, (kp_cnt
= proc_listallpids(pids
, len
))) == -1) {
6735 pid_t
*ps
= (pid_t
*)calloc(sizeof(pid_t
), kp_cnt
);
6736 for (i
= 0; i
< kp_cnt
; i
++) {
6737 struct proc_bsdshortinfo proc
;
6738 if (proc_pidinfo(pids
[i
], PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
6739 if (errno
!= ESRCH
) {
6740 (void)jobmgr_assumes_zero(jm
, errno
);
6747 pid_t p_i
= pids
[i
];
6748 pid_t pp_i
= proc
.pbsi_ppid
;
6749 pid_t pg_i
= proc
.pbsi_pgid
;
6750 const char *z
= (proc
.pbsi_status
== SZOMB
) ? "zombie " : "";
6751 const char *n
= proc
.pbsi_comm
;
6753 if (unlikely(p_i
== 0 || p_i
== 1)) {
6758 if (_launchd_shutdown_monitor
&& pp_i
== _launchd_shutdown_monitor
->p
) {
6763 // We might have some jobs hanging around that we've decided to shut down in spite of.
6764 job_t j
= jobmgr_find_by_pid(jm
, p_i
, false);
6765 if (!j
|| (j
&& j
->anonymous
)) {
6766 jobmgr_log(jm
, LOG_INFO
| LOG_CONSOLE
, "Stray %s%s at shutdown: PID %u PPID %u PGID %u %s", z
, j
? "anonymous job" : "process", p_i
, pp_i
, pg_i
, n
);
6769 if (pp_i
== getpid() && !jobmgr_assumes(jm
, proc
.pbsi_status
!= SZOMB
)) {
6770 if (jobmgr_assumes_zero(jm
, waitpid(p_i
, &status
, WNOHANG
)) == 0) {
6771 jobmgr_log(jm
, LOG_INFO
| LOG_CONSOLE
, "Unreaped zombie stray exited with status %i.", WEXITSTATUS(status
));
6775 job_t leader
= jobmgr_find_by_pid(jm
, pg_i
, false);
6776 /* See rdar://problem/6745714. Some jobs have child processes that back kernel state,
6777 * so we don't want to terminate them. Long-term, I'd really like to provide shutdown
6778 * hints to the kernel along the way, so that it could shutdown certain subsystems when
6779 * their userspace emissaries go away, before the call to reboot(2).
6781 if (leader
&& leader
->ignore_pg_at_shutdown
) {
6792 if ((kp_cnt
- kp_skipped
> 0) && kill_strays
) {
6793 jobmgr_kill_stray_children(jm
, ps
, kp_cnt
- kp_skipped
);
6802 jobmgr_parent(jobmgr_t jm
)
6804 return jm
->parentmgr
;
6808 job_uncork_fork(job_t j
)
6812 job_log(j
, LOG_DEBUG
, "Uncorking the fork().");
6813 /* this unblocks the child and avoids a race
6814 * between the above fork() and the kevent_mod() */
6815 (void)job_assumes(j
, write(j
->fork_fd
, &c
, sizeof(c
)) == sizeof(c
));
6816 (void)job_assumes_zero_p(j
, runtime_close(j
->fork_fd
));
6821 jobmgr_new(jobmgr_t jm
, mach_port_t requestorport
, mach_port_t transfer_port
, bool sflag
, const char *name
, bool skip_init
, mach_port_t asport
)
6823 job_t bootstrapper
= NULL
;
6826 __OS_COMPILETIME_ASSERT__(offsetof(struct jobmgr_s
, kqjobmgr_callback
) == 0);
6828 if (unlikely(jm
&& requestorport
== MACH_PORT_NULL
)) {
6829 jobmgr_log(jm
, LOG_ERR
, "Mach sub-bootstrap create request requires a requester port");
6833 jmr
= calloc(1, sizeof(struct jobmgr_s
) + (name
? (strlen(name
) + 1) : NAME_MAX
+ 1));
6835 if (!jobmgr_assumes(jm
, jmr
!= NULL
)) {
6843 jmr
->kqjobmgr_callback
= jobmgr_callback
;
6844 strcpy(jmr
->name_init
, name
? name
: "Under construction");
6846 jmr
->req_port
= requestorport
;
6848 if ((jmr
->parentmgr
= jm
)) {
6849 SLIST_INSERT_HEAD(&jm
->submgrs
, jmr
, sle
);
6852 if (jm
&& jobmgr_assumes_zero(jmr
, launchd_mport_notify_req(jmr
->req_port
, MACH_NOTIFY_DEAD_NAME
)) != KERN_SUCCESS
) {
6856 if (transfer_port
!= MACH_PORT_NULL
) {
6857 (void)jobmgr_assumes(jmr
, jm
!= NULL
);
6858 jmr
->jm_port
= transfer_port
;
6859 } else if (!jm
&& !pid1_magic
) {
6860 char *trusted_fd
= getenv(LAUNCHD_TRUSTED_FD_ENV
);
6863 snprintf(service_buf
, sizeof(service_buf
), "com.apple.launchd.peruser.%u", getuid());
6865 if (jobmgr_assumes_zero(jmr
, bootstrap_check_in(bootstrap_port
, service_buf
, &jmr
->jm_port
)) != 0) {
6870 int dfd
, lfd
= (int) strtol(trusted_fd
, NULL
, 10);
6872 if ((dfd
= dup(lfd
)) >= 0) {
6873 (void)jobmgr_assumes_zero_p(jmr
, runtime_close(dfd
));
6874 (void)jobmgr_assumes_zero_p(jmr
, runtime_close(lfd
));
6877 unsetenv(LAUNCHD_TRUSTED_FD_ENV
);
6880 // cut off the Libc cache, we don't want to deadlock against ourself
6881 inherited_bootstrap_port
= bootstrap_port
;
6882 bootstrap_port
= MACH_PORT_NULL
;
6883 os_assert_zero(launchd_mport_notify_req(inherited_bootstrap_port
, MACH_NOTIFY_DEAD_NAME
));
6885 // We set this explicitly as we start each child
6886 os_assert_zero(launchd_set_bport(MACH_PORT_NULL
));
6887 } else if (jobmgr_assumes_zero(jmr
, launchd_mport_create_recv(&jmr
->jm_port
)) != KERN_SUCCESS
) {
6892 sprintf(jmr
->name_init
, "%u", MACH_PORT_INDEX(jmr
->jm_port
));
6896 (void)jobmgr_assumes_zero_p(jmr
, kevent_mod(SIGTERM
, EVFILT_SIGNAL
, EV_ADD
, 0, 0, jmr
));
6897 (void)jobmgr_assumes_zero_p(jmr
, kevent_mod(SIGUSR1
, EVFILT_SIGNAL
, EV_ADD
, 0, 0, jmr
));
6898 (void)jobmgr_assumes_zero_p(jmr
, kevent_mod(SIGUSR2
, EVFILT_SIGNAL
, EV_ADD
, 0, 0, jmr
));
6899 (void)jobmgr_assumes_zero_p(jmr
, kevent_mod(SIGINFO
, EVFILT_SIGNAL
, EV_ADD
, 0, 0, jmr
));
6900 (void)jobmgr_assumes_zero_p(jmr
, kevent_mod(0, EVFILT_FS
, EV_ADD
, VQ_MOUNT
|VQ_UNMOUNT
|VQ_UPDATE
, 0, jmr
));
6903 if (name
&& !skip_init
) {
6904 bootstrapper
= jobmgr_init_session(jmr
, name
, sflag
);
6907 if (!bootstrapper
|| !bootstrapper
->weird_bootstrap
) {
6908 if (jobmgr_assumes_zero(jmr
, runtime_add_mport(jmr
->jm_port
, job_server
)) != KERN_SUCCESS
) {
6913 jobmgr_log(jmr
, LOG_DEBUG
, "Created job manager%s%s", jm
? " with parent: " : ".", jm
? jm
->name
: "");
6916 bootstrapper
->asport
= asport
;
6918 jobmgr_log(jmr
, LOG_DEBUG
, "Bootstrapping new job manager with audit session %u", asport
);
6919 (void)jobmgr_assumes(jmr
, job_dispatch(bootstrapper
, true) != NULL
);
6921 jmr
->req_asport
= asport
;
6924 if (asport
!= MACH_PORT_NULL
) {
6925 (void)jobmgr_assumes_zero(jmr
, launchd_mport_copy_send(asport
));
6928 if (jmr
->parentmgr
) {
6929 runtime_add_weak_ref();
6945 jobmgr_new_xpc_singleton_domain(jobmgr_t jm
, name_t name
)
6947 jobmgr_t
new = NULL
;
6949 /* These job managers are basically singletons, so we use the root Mach
6950 * bootstrap port as their requestor ports so they'll never go away.
6952 mach_port_t req_port
= root_jobmgr
->jm_port
;
6953 if (jobmgr_assumes_zero(jm
, launchd_mport_make_send(req_port
)) == KERN_SUCCESS
) {
6954 new = jobmgr_new(root_jobmgr
, req_port
, MACH_PORT_NULL
, false, name
, true, MACH_PORT_NULL
);
6956 new->properties
|= BOOTSTRAP_PROPERTY_XPC_SINGLETON
;
6957 new->properties
|= BOOTSTRAP_PROPERTY_XPC_DOMAIN
;
6958 new->xpc_singleton
= true;
6966 jobmgr_find_xpc_per_user_domain(jobmgr_t jm
, uid_t uid
)
6968 jobmgr_t jmi
= NULL
;
6969 LIST_FOREACH(jmi
, &_s_xpc_user_domains
, xpc_le
) {
6970 if (jmi
->req_euid
== uid
) {
6976 (void)snprintf(name
, sizeof(name
), "com.apple.xpc.domain.peruser.%u", uid
);
6977 jmi
= jobmgr_new_xpc_singleton_domain(jm
, name
);
6978 if (jobmgr_assumes(jm
, jmi
!= NULL
)) {
6979 /* We need to create a per-user launchd for this UID if there isn't one
6980 * already so we can grab the bootstrap port.
6982 job_t puj
= jobmgr_lookup_per_user_context_internal(NULL
, uid
, &jmi
->req_bsport
);
6983 if (jobmgr_assumes(jmi
, puj
!= NULL
)) {
6984 (void)jobmgr_assumes_zero(jmi
, launchd_mport_copy_send(puj
->asport
));
6985 (void)jobmgr_assumes_zero(jmi
, launchd_mport_copy_send(jmi
->req_bsport
));
6986 jmi
->shortdesc
= "per-user";
6987 jmi
->req_asport
= puj
->asport
;
6988 jmi
->req_asid
= puj
->asid
;
6989 jmi
->req_euid
= uid
;
6992 LIST_INSERT_HEAD(&_s_xpc_user_domains
, jmi
, xpc_le
);
7002 jobmgr_find_xpc_per_session_domain(jobmgr_t jm
, au_asid_t asid
)
7004 jobmgr_t jmi
= NULL
;
7005 LIST_FOREACH(jmi
, &_s_xpc_session_domains
, xpc_le
) {
7006 if (jmi
->req_asid
== asid
) {
7012 (void)snprintf(name
, sizeof(name
), "com.apple.xpc.domain.persession.%i", asid
);
7013 jmi
= jobmgr_new_xpc_singleton_domain(jm
, name
);
7014 if (jobmgr_assumes(jm
, jmi
!= NULL
)) {
7015 (void)jobmgr_assumes_zero(jmi
, launchd_mport_make_send(root_jobmgr
->jm_port
));
7016 jmi
->shortdesc
= "per-session";
7017 jmi
->req_bsport
= root_jobmgr
->jm_port
;
7018 (void)jobmgr_assumes_zero(jmi
, audit_session_port(asid
, &jmi
->req_asport
));
7019 jmi
->req_asid
= asid
;
7023 LIST_INSERT_HEAD(&_s_xpc_session_domains
, jmi
, xpc_le
);
7032 jobmgr_init_session(jobmgr_t jm
, const char *session_type
, bool sflag
)
7034 const char *bootstrap_tool
[] = { "/bin/launchctl", "bootstrap", "-S", session_type
, sflag
? "-s" : NULL
, NULL
};
7035 char thelabel
[1000];
7038 snprintf(thelabel
, sizeof(thelabel
), "com.apple.launchctl.%s", session_type
);
7039 bootstrapper
= job_new(jm
, thelabel
, NULL
, bootstrap_tool
);
7041 if (jobmgr_assumes(jm
, bootstrapper
!= NULL
) && (jm
->parentmgr
|| !pid1_magic
)) {
7042 bootstrapper
->is_bootstrapper
= true;
7045 // <rdar://problem/5042202> launchd-201: can't ssh in with AFP OD account (hangs)
7046 snprintf(buf
, sizeof(buf
), "0x%X:0:0", getuid());
7047 envitem_new(bootstrapper
, "__CF_USER_TEXT_ENCODING", buf
, false);
7048 bootstrapper
->weird_bootstrap
= true;
7049 (void)jobmgr_assumes(jm
, job_setup_machport(bootstrapper
));
7050 } else if (bootstrapper
&& strncmp(session_type
, VPROCMGR_SESSION_SYSTEM
, sizeof(VPROCMGR_SESSION_SYSTEM
)) == 0) {
7051 #if TARGET_OS_EMBEDDED
7052 bootstrapper
->psproctype
= POSIX_SPAWN_PROC_TYPE_DAEMON_INTERACTIVE
;
7054 bootstrapper
->is_bootstrapper
= true;
7055 if (jobmgr_assumes(jm
, pid1_magic
)) {
7056 // Have our system bootstrapper print out to the console.
7057 bootstrapper
->stdoutpath
= strdup(_PATH_CONSOLE
);
7058 bootstrapper
->stderrpath
= strdup(_PATH_CONSOLE
);
7060 if (launchd_console
) {
7061 (void)jobmgr_assumes_zero_p(jm
, kevent_mod((uintptr_t)fileno(launchd_console
), EVFILT_VNODE
, EV_ADD
| EV_ONESHOT
, NOTE_REVOKE
, 0, jm
));
7066 jm
->session_initialized
= true;
7067 return bootstrapper
;
7071 jobmgr_delete_anything_with_port(jobmgr_t jm
, mach_port_t port
)
7073 struct machservice
*ms
, *next_ms
;
7076 /* Mach ports, unlike Unix descriptors, are reference counted. In other
7077 * words, when some program hands us a second or subsequent send right to a
7078 * port we already have open, the Mach kernel gives us the same port number
7079 * back and increments an reference count associated with the port. This
7080 * This forces us, when discovering that a receive right at the other end
7081 * has been deleted, to wander all of our objects to see what weird places
7082 * clients might have handed us the same send right to use.
7085 if (jm
== root_jobmgr
) {
7086 if (port
== inherited_bootstrap_port
) {
7087 (void)jobmgr_assumes_zero(jm
, launchd_mport_deallocate(port
));
7088 inherited_bootstrap_port
= MACH_PORT_NULL
;
7090 return jobmgr_shutdown(jm
);
7093 LIST_FOREACH_SAFE(ms
, &port_hash
[HASH_PORT(port
)], port_hash_sle
, next_ms
) {
7094 if (ms
->port
== port
&& !ms
->recv
) {
7095 machservice_delete(ms
->job
, ms
, true);
7100 SLIST_FOREACH_SAFE(jmi
, &jm
->submgrs
, sle
, jmn
) {
7101 jobmgr_delete_anything_with_port(jmi
, port
);
7104 if (jm
->req_port
== port
) {
7105 jobmgr_log(jm
, LOG_DEBUG
, "Request port died: %i", MACH_PORT_INDEX(port
));
7106 return jobmgr_shutdown(jm
);
7109 struct waiting4attach
*w4ai
= NULL
;
7110 struct waiting4attach
*w4ait
= NULL
;
7111 LIST_FOREACH_SAFE(w4ai
, &jm
->attaches
, le
, w4ait
) {
7112 if (port
== w4ai
->port
) {
7113 waiting4attach_delete(jm
, w4ai
);
7121 struct machservice
*
7122 jobmgr_lookup_service(jobmgr_t jm
, const char *name
, bool check_parent
, pid_t target_pid
)
7124 struct machservice
*ms
;
7127 jobmgr_log(jm
, LOG_DEBUG
, "Looking up %sservice %s", target_pid
? "per-PID " : "", name
);
7130 /* This is a hack to let FileSyncAgent look up per-PID Mach services from the Background
7131 * bootstrap in other bootstraps.
7134 // Start in the given bootstrap.
7135 if (unlikely((target_j
= jobmgr_find_by_pid(jm
, target_pid
, false)) == NULL
)) {
7136 // If we fail, do a deep traversal.
7137 if (unlikely((target_j
= jobmgr_find_by_pid_deep(root_jobmgr
, target_pid
, true)) == NULL
)) {
7138 jobmgr_log(jm
, LOG_DEBUG
, "Didn't find PID %i", target_pid
);
7143 SLIST_FOREACH(ms
, &target_j
->machservices
, sle
) {
7144 if (ms
->per_pid
&& strcmp(name
, ms
->name
) == 0) {
7149 job_log(target_j
, LOG_DEBUG
, "Didn't find per-PID Mach service: %s", name
);
7153 jobmgr_t where2look
= jm
;
7154 // XPC domains are separate from Mach bootstraps.
7155 if (!(jm
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
)) {
7156 if (launchd_flat_mach_namespace
&& !(jm
->properties
& BOOTSTRAP_PROPERTY_EXPLICITSUBSET
)) {
7157 where2look
= root_jobmgr
;
7161 LIST_FOREACH(ms
, &where2look
->ms_hash
[hash_ms(name
)], name_hash_sle
) {
7162 if (!ms
->per_pid
&& strcmp(name
, ms
->name
) == 0) {
7167 if (jm
->parentmgr
== NULL
|| !check_parent
) {
7171 return jobmgr_lookup_service(jm
->parentmgr
, name
, true, 0);
7175 machservice_port(struct machservice
*ms
)
7181 machservice_job(struct machservice
*ms
)
7187 machservice_hidden(struct machservice
*ms
)
7193 machservice_active(struct machservice
*ms
)
7195 return ms
->isActive
;
7199 machservice_name(struct machservice
*ms
)
7205 machservice_drain_port(struct machservice
*ms
)
7207 bool drain_one
= ms
->drain_one_on_crash
;
7208 bool drain_all
= ms
->drain_all_on_crash
;
7210 if (!job_assumes(ms
->job
, (drain_one
|| drain_all
) == true)) {
7214 job_log(ms
->job
, LOG_INFO
, "Draining %s...", ms
->name
);
7216 char req_buff
[sizeof(union __RequestUnion__catch_mach_exc_subsystem
) * 2];
7217 char rep_buff
[sizeof(union __ReplyUnion__catch_mach_exc_subsystem
)];
7218 mig_reply_error_t
*req_hdr
= (mig_reply_error_t
*)&req_buff
;
7219 mig_reply_error_t
*rep_hdr
= (mig_reply_error_t
*)&rep_buff
;
7221 mach_msg_return_t mr
= ~MACH_MSG_SUCCESS
;
7224 /* This should be a direct check on the Mach service to see if it's an exception-handling
7225 * port, and it will break things if ReportCrash or SafetyNet start advertising other
7226 * Mach services. But for now, it should be okay.
7228 if (ms
->job
->alt_exc_handler
|| ms
->job
->internal_exc_handler
) {
7229 mr
= launchd_exc_runtime_once(ms
->port
, sizeof(req_buff
), sizeof(rep_buff
), req_hdr
, rep_hdr
, 0);
7231 mach_msg_options_t options
= MACH_RCV_MSG
|
7234 mr
= mach_msg((mach_msg_header_t
*)req_hdr
, options
, 0, sizeof(req_buff
), ms
->port
, 0, MACH_PORT_NULL
);
7236 case MACH_MSG_SUCCESS
:
7237 mach_msg_destroy((mach_msg_header_t
*)req_hdr
);
7239 case MACH_RCV_TIMED_OUT
:
7241 case MACH_RCV_TOO_LARGE
:
7242 launchd_syslog(LOG_WARNING
, "Tried to receive message that was larger than %lu bytes", sizeof(req_buff
));
7248 } while (drain_all
&& mr
!= MACH_RCV_TIMED_OUT
);
7252 machservice_delete(job_t j
, struct machservice
*ms
, bool port_died
)
7255 /* HACK: Egregious code duplication. But dealing with aliases is a
7256 * pretty simple affair since they can't and shouldn't have any complex
7257 * behaviors associated with them.
7259 LIST_REMOVE(ms
, name_hash_sle
);
7260 SLIST_REMOVE(&j
->machservices
, ms
, machservice
, sle
);
7265 if (unlikely(ms
->debug_on_close
)) {
7266 job_log(j
, LOG_NOTICE
, "About to enter kernel debugger because of Mach port: 0x%x", ms
->port
);
7267 (void)job_assumes_zero(j
, host_reboot(mach_host_self(), HOST_REBOOT_DEBUGGER
));
7270 if (ms
->recv
&& job_assumes(j
, !machservice_active(ms
))) {
7271 job_log(j
, LOG_DEBUG
, "Closing receive right for %s", ms
->name
);
7272 (void)job_assumes_zero(j
, launchd_mport_close_recv(ms
->port
));
7275 (void)job_assumes_zero(j
, launchd_mport_deallocate(ms
->port
));
7277 if (unlikely(ms
->port
== the_exception_server
)) {
7278 the_exception_server
= 0;
7281 job_log(j
, LOG_DEBUG
, "Mach service deleted%s: %s", port_died
? " (port died)" : "", ms
->name
);
7283 if (ms
->special_port_num
) {
7284 SLIST_REMOVE(&special_ports
, ms
, machservice
, special_port_sle
);
7286 SLIST_REMOVE(&j
->machservices
, ms
, machservice
, sle
);
7288 if (!(j
->dedicated_instance
|| ms
->event_channel
)) {
7289 LIST_REMOVE(ms
, name_hash_sle
);
7291 LIST_REMOVE(ms
, port_hash_sle
);
7297 machservice_request_notifications(struct machservice
*ms
)
7299 mach_msg_id_t which
= MACH_NOTIFY_DEAD_NAME
;
7301 ms
->isActive
= true;
7304 which
= MACH_NOTIFY_PORT_DESTROYED
;
7305 job_checkin(ms
->job
);
7308 (void)job_assumes_zero(ms
->job
, launchd_mport_notify_req(ms
->port
, which
));
7311 #define NELEM(x) (sizeof(x)/sizeof(x[0]))
7312 #define END_OF(x) (&(x)[NELEM(x)])
7315 mach_cmd2argv(const char *string
)
7317 char *argv
[100], args
[1000];
7319 char *argp
= args
, term
, **argv_ret
, *co
;
7320 unsigned int nargs
= 0, i
;
7322 for (cp
= string
; *cp
;) {
7323 while (isspace(*cp
))
7325 term
= (*cp
== '"') ? *cp
++ : '\0';
7326 if (nargs
< NELEM(argv
)) {
7327 argv
[nargs
++] = argp
;
7329 while (*cp
&& (term
? *cp
!= term
: !isspace(*cp
)) && argp
< END_OF(args
)) {
7346 argv_ret
= malloc((nargs
+ 1) * sizeof(char *) + strlen(string
) + 1);
7349 (void)os_assumes_zero(errno
);
7353 co
= (char *)argv_ret
+ (nargs
+ 1) * sizeof(char *);
7355 for (i
= 0; i
< nargs
; i
++) {
7356 strcpy(co
, argv
[i
]);
7358 co
+= strlen(argv
[i
]) + 1;
7366 job_checkin(job_t j
)
7368 j
->checkedin
= true;
7371 bool job_is_god(job_t j
)
7373 return j
->embedded_god
;
7377 job_ack_port_destruction(mach_port_t p
)
7379 struct machservice
*ms
;
7382 LIST_FOREACH(ms
, &port_hash
[HASH_PORT(p
)], port_hash_sle
) {
7383 if (ms
->recv
&& (ms
->port
== p
)) {
7389 launchd_syslog(LOG_WARNING
, "Could not find MachService to match receive right: 0x%x", p
);
7395 jobmgr_log(root_jobmgr
, LOG_DEBUG
, "Receive right returned to us: %s", ms
->name
);
7397 /* Without being the exception handler, NOTE_EXIT is our only way to tell if
7398 * the job crashed, and we can't rely on NOTE_EXIT always being processed
7399 * after all the job's receive rights have been returned.
7401 * So when we get receive rights back, check to see if the job has been
7402 * reaped yet. If not, then we add this service to a list of services to be
7403 * drained on crash if it's requested that behavior. So, for a job with N
7404 * receive rights all requesting that they be drained on crash, we can
7405 * safely handle the following sequence of events.
7407 * ReceiveRight0Returned
7408 * ReceiveRight1Returned
7409 * ReceiveRight2Returned
7410 * NOTE_EXIT (reap, get exit status)
7411 * ReceiveRight3Returned
7415 * ReceiveRight(N - 1)Returned
7417 if (ms
->drain_one_on_crash
|| ms
->drain_all_on_crash
) {
7418 if (j
->crashed
&& j
->reaped
) {
7419 job_log(j
, LOG_DEBUG
, "Job has crashed. Draining port...");
7420 machservice_drain_port(ms
);
7421 } else if (!(j
->crashed
|| j
->reaped
)) {
7422 job_log(j
, LOG_DEBUG
, "Job's exit status is still unknown. Deferring drain.");
7426 ms
->isActive
= false;
7427 if (ms
->delete_on_destruction
) {
7428 machservice_delete(j
, ms
, false);
7429 } else if (ms
->reset
) {
7430 machservice_resetport(j
, ms
);
7433 kern_return_t kr
= mach_port_set_attributes(mach_task_self(), ms
->port
, MACH_PORT_TEMPOWNER
, NULL
, 0);
7434 (void)job_assumes_zero(j
, kr
);
7435 machservice_stamp_port(j
, ms
);
7436 job_dispatch(j
, false);
7438 if (ms
->recv_race_hack
) {
7439 ms
->recv_race_hack
= false;
7440 machservice_watch(ms
->job
, ms
);
7443 root_jobmgr
= jobmgr_do_garbage_collection(root_jobmgr
);
7449 job_ack_no_senders(job_t j
)
7451 j
->priv_port_has_senders
= false;
7453 (void)job_assumes_zero(j
, launchd_mport_close_recv(j
->j_port
));
7456 job_log(j
, LOG_DEBUG
, "No more senders on privileged Mach bootstrap port");
7458 job_dispatch(j
, false);
7462 semaphoreitem_new(job_t j
, semaphore_reason_t why
, const char *what
)
7464 struct semaphoreitem
*si
;
7465 size_t alloc_sz
= sizeof(struct semaphoreitem
);
7468 alloc_sz
+= strlen(what
) + 1;
7471 if (job_assumes(j
, si
= calloc(1, alloc_sz
)) == NULL
) {
7478 strcpy(si
->what_init
, what
);
7481 SLIST_INSERT_HEAD(&j
->semaphores
, si
, sle
);
7483 if ((why
== OTHER_JOB_ENABLED
|| why
== OTHER_JOB_DISABLED
) && !j
->nosy
) {
7484 job_log(j
, LOG_DEBUG
, "Job is interested in \"%s\".", what
);
7485 SLIST_INSERT_HEAD(&s_curious_jobs
, j
, curious_jobs_sle
);
7489 semaphoreitem_runtime_mod_ref(si
, true);
7495 semaphoreitem_runtime_mod_ref(struct semaphoreitem
*si
, bool add
)
7498 * External events need to be tracked.
7499 * Internal events do NOT need to be tracked.
7503 case SUCCESSFUL_EXIT
:
7505 case OTHER_JOB_ENABLED
:
7506 case OTHER_JOB_DISABLED
:
7507 case OTHER_JOB_ACTIVE
:
7508 case OTHER_JOB_INACTIVE
:
7515 runtime_add_weak_ref();
7517 runtime_del_weak_ref();
7522 semaphoreitem_delete(job_t j
, struct semaphoreitem
*si
)
7524 semaphoreitem_runtime_mod_ref(si
, false);
7526 SLIST_REMOVE(&j
->semaphores
, si
, semaphoreitem
, sle
);
7528 // We'll need to rethink this if it ever becomes possible to dynamically add or remove semaphores.
7529 if ((si
->why
== OTHER_JOB_ENABLED
|| si
->why
== OTHER_JOB_DISABLED
) && j
->nosy
) {
7531 SLIST_REMOVE(&s_curious_jobs
, j
, job_s
, curious_jobs_sle
);
7538 semaphoreitem_setup_dict_iter(launch_data_t obj
, const char *key
, void *context
)
7540 struct semaphoreitem_dict_iter_context
*sdic
= context
;
7541 semaphore_reason_t why
;
7543 why
= launch_data_get_bool(obj
) ? sdic
->why_true
: sdic
->why_false
;
7545 semaphoreitem_new(sdic
->j
, why
, key
);
7549 semaphoreitem_setup(launch_data_t obj
, const char *key
, void *context
)
7551 struct semaphoreitem_dict_iter_context sdic
= { context
, 0, 0 };
7553 semaphore_reason_t why
;
7555 switch (launch_data_get_type(obj
)) {
7556 case LAUNCH_DATA_BOOL
:
7557 if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE_NETWORKSTATE
) == 0) {
7558 why
= launch_data_get_bool(obj
) ? NETWORK_UP
: NETWORK_DOWN
;
7559 semaphoreitem_new(j
, why
, NULL
);
7560 } else if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE_SUCCESSFULEXIT
) == 0) {
7561 why
= launch_data_get_bool(obj
) ? SUCCESSFUL_EXIT
: FAILED_EXIT
;
7562 semaphoreitem_new(j
, why
, NULL
);
7563 j
->start_pending
= true;
7564 } else if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE_AFTERINITIALDEMAND
) == 0) {
7565 j
->needs_kickoff
= launch_data_get_bool(obj
);
7566 } else if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE_CRASHED
) == 0) {
7567 why
= launch_data_get_bool(obj
) ? CRASHED
: DID_NOT_CRASH
;
7568 semaphoreitem_new(j
, why
, NULL
);
7569 j
->start_pending
= true;
7571 job_log(j
, LOG_ERR
, "Unrecognized KeepAlive attribute: %s", key
);
7574 case LAUNCH_DATA_DICTIONARY
:
7575 if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE_OTHERJOBACTIVE
) == 0) {
7576 sdic
.why_true
= OTHER_JOB_ACTIVE
;
7577 sdic
.why_false
= OTHER_JOB_INACTIVE
;
7578 } else if (strcasecmp(key
, LAUNCH_JOBKEY_KEEPALIVE_OTHERJOBENABLED
) == 0) {
7579 sdic
.why_true
= OTHER_JOB_ENABLED
;
7580 sdic
.why_false
= OTHER_JOB_DISABLED
;
7582 job_log(j
, LOG_ERR
, "Unrecognized KeepAlive attribute: %s", key
);
7586 launch_data_dict_iterate(obj
, semaphoreitem_setup_dict_iter
, &sdic
);
7589 job_log(j
, LOG_ERR
, "Unrecognized KeepAlive type: %u", launch_data_get_type(obj
));
7595 externalevent_new(job_t j
, struct eventsystem
*sys
, const char *evname
, xpc_object_t event
, uint64_t flags
)
7597 if (j
->event_monitor
) {
7598 job_log(j
, LOG_ERR
, "The event monitor job cannot use LaunchEvents or XPC Events.");
7602 struct externalevent
*ee
= (struct externalevent
*)calloc(1, sizeof(struct externalevent
) + strlen(evname
) + 1);
7607 ee
->event
= xpc_retain(event
);
7608 (void)strcpy(ee
->name
, evname
);
7610 ee
->id
= sys
->curid
;
7613 ee
->wanted_state
= true;
7616 if (flags
& XPC_EVENT_FLAG_ENTITLEMENTS
) {
7617 struct ldcred
*ldc
= runtime_get_caller_creds();
7619 ee
->entitlements
= xpc_copy_entitlements_for_pid(ldc
->pid
);
7623 if (sys
== _launchd_support_system
) {
7624 ee
->internal
= true;
7627 LIST_INSERT_HEAD(&j
->events
, ee
, job_le
);
7628 LIST_INSERT_HEAD(&sys
->events
, ee
, sys_le
);
7630 job_log(j
, LOG_DEBUG
, "New event: %s/%s", sys
->name
, evname
);
7637 externalevent_delete(struct externalevent
*ee
)
7639 xpc_release(ee
->event
);
7640 if (ee
->entitlements
) {
7641 xpc_release(ee
->entitlements
);
7643 LIST_REMOVE(ee
, job_le
);
7644 LIST_REMOVE(ee
, sys_le
);
7652 externalevent_setup(launch_data_t obj
, const char *key
, void *context
)
7654 /* This method can ONLY be called on the job_import() path, as it assumes
7655 * the input is a launch_data_t.
7657 struct externalevent_iter_ctx
*ctx
= (struct externalevent_iter_ctx
*)context
;
7659 xpc_object_t xobj
= ld2xpc(obj
);
7661 job_log(ctx
->j
, LOG_DEBUG
, "Importing stream/event: %s/%s", ctx
->sys
->name
, key
);
7662 externalevent_new(ctx
->j
, ctx
->sys
, key
, xobj
, 0);
7665 job_log(ctx
->j
, LOG_ERR
, "Could not import event for job: %s", key
);
7669 struct externalevent
*
7670 externalevent_find(const char *sysname
, uint64_t id
)
7672 struct externalevent
*ei
= NULL
;
7674 struct eventsystem
*es
= eventsystem_find(sysname
);
7676 LIST_FOREACH(ei
, &es
->events
, sys_le
) {
7682 launchd_syslog(LOG_ERR
, "Could not find event system: %s", sysname
);
7688 struct eventsystem
*
7689 eventsystem_new(const char *name
)
7691 struct eventsystem
*es
= (struct eventsystem
*)calloc(1, sizeof(struct eventsystem
) + strlen(name
) + 1);
7694 (void)strcpy(es
->name
, name
);
7695 LIST_INSERT_HEAD(&_s_event_systems
, es
, global_le
);
7697 (void)os_assumes_zero(errno
);
7704 eventsystem_delete(struct eventsystem
*es
)
7706 struct externalevent
*ei
= NULL
;
7707 while ((ei
= LIST_FIRST(&es
->events
))) {
7708 externalevent_delete(ei
);
7711 LIST_REMOVE(es
, global_le
);
7717 eventsystem_setup(launch_data_t obj
, const char *key
, void *context
)
7719 job_t j
= (job_t
)context
;
7720 if (!job_assumes(j
, launch_data_get_type(obj
) == LAUNCH_DATA_DICTIONARY
)) {
7724 struct eventsystem
*sys
= eventsystem_find(key
);
7725 if (unlikely(sys
== NULL
)) {
7726 sys
= eventsystem_new(key
);
7727 job_log(j
, LOG_DEBUG
, "New event system: %s", key
);
7730 if (job_assumes(j
, sys
!= NULL
)) {
7731 struct externalevent_iter_ctx ctx
= {
7736 job_log(j
, LOG_DEBUG
, "Importing events for stream: %s", key
);
7737 launch_data_dict_iterate(obj
, externalevent_setup
, &ctx
);
7741 struct eventsystem
*
7742 eventsystem_find(const char *name
)
7744 struct eventsystem
*esi
= NULL
;
7745 LIST_FOREACH(esi
, &_s_event_systems
, global_le
) {
7746 if (strcmp(name
, esi
->name
) == 0) {
7755 eventsystem_ping(void)
7757 if (!_launchd_event_monitor
) {
7761 if (!_launchd_event_monitor
->p
) {
7762 (void)job_dispatch(_launchd_event_monitor
, true);
7764 if (_launchd_event_monitor
->event_monitor_ready2signal
) {
7765 (void)job_assumes_zero_p(_launchd_event_monitor
, kill(_launchd_event_monitor
->p
, SIGUSR1
));
7771 jobmgr_dispatch_all_semaphores(jobmgr_t jm
)
7777 SLIST_FOREACH_SAFE(jmi
, &jm
->submgrs
, sle
, jmn
) {
7778 jobmgr_dispatch_all_semaphores(jmi
);
7781 LIST_FOREACH_SAFE(ji
, &jm
->jobs
, sle
, jn
) {
7782 if (!SLIST_EMPTY(&ji
->semaphores
)) {
7783 job_dispatch(ji
, false);
7789 cronemu(int mon
, int mday
, int hour
, int min
)
7791 struct tm workingtm
;
7795 workingtm
= *localtime(&now
);
7797 workingtm
.tm_isdst
= -1;
7798 workingtm
.tm_sec
= 0;
7801 while (!cronemu_mon(&workingtm
, mon
, mday
, hour
, min
)) {
7802 workingtm
.tm_year
++;
7803 workingtm
.tm_mon
= 0;
7804 workingtm
.tm_mday
= 1;
7805 workingtm
.tm_hour
= 0;
7806 workingtm
.tm_min
= 0;
7810 return mktime(&workingtm
);
7814 cronemu_wday(int wday
, int hour
, int min
)
7816 struct tm workingtm
;
7820 workingtm
= *localtime(&now
);
7822 workingtm
.tm_isdst
= -1;
7823 workingtm
.tm_sec
= 0;
7830 while (!(workingtm
.tm_wday
== wday
&& cronemu_hour(&workingtm
, hour
, min
))) {
7831 workingtm
.tm_mday
++;
7832 workingtm
.tm_hour
= 0;
7833 workingtm
.tm_min
= 0;
7837 return mktime(&workingtm
);
7841 cronemu_mon(struct tm
*wtm
, int mon
, int mday
, int hour
, int min
)
7844 struct tm workingtm
= *wtm
;
7847 while (!cronemu_mday(&workingtm
, mday
, hour
, min
)) {
7849 workingtm
.tm_mday
= 1;
7850 workingtm
.tm_hour
= 0;
7851 workingtm
.tm_min
= 0;
7852 carrytest
= workingtm
.tm_mon
;
7854 if (carrytest
!= workingtm
.tm_mon
) {
7862 if (mon
< wtm
->tm_mon
) {
7866 if (mon
> wtm
->tm_mon
) {
7873 return cronemu_mday(wtm
, mday
, hour
, min
);
7877 cronemu_mday(struct tm
*wtm
, int mday
, int hour
, int min
)
7880 struct tm workingtm
= *wtm
;
7883 while (!cronemu_hour(&workingtm
, hour
, min
)) {
7884 workingtm
.tm_mday
++;
7885 workingtm
.tm_hour
= 0;
7886 workingtm
.tm_min
= 0;
7887 carrytest
= workingtm
.tm_mday
;
7889 if (carrytest
!= workingtm
.tm_mday
) {
7897 if (mday
< wtm
->tm_mday
) {
7901 if (mday
> wtm
->tm_mday
) {
7902 wtm
->tm_mday
= mday
;
7907 return cronemu_hour(wtm
, hour
, min
);
7911 cronemu_hour(struct tm
*wtm
, int hour
, int min
)
7914 struct tm workingtm
= *wtm
;
7917 while (!cronemu_min(&workingtm
, min
)) {
7918 workingtm
.tm_hour
++;
7919 workingtm
.tm_min
= 0;
7920 carrytest
= workingtm
.tm_hour
;
7922 if (carrytest
!= workingtm
.tm_hour
) {
7930 if (hour
< wtm
->tm_hour
) {
7934 if (hour
> wtm
->tm_hour
) {
7935 wtm
->tm_hour
= hour
;
7939 return cronemu_min(wtm
, min
);
7943 cronemu_min(struct tm
*wtm
, int min
)
7949 if (min
< wtm
->tm_min
) {
7953 if (min
> wtm
->tm_min
) {
7961 job_mig_create_server(job_t j
, cmd_t server_cmd
, uid_t server_uid
, boolean_t on_demand
, mach_port_t
*server_portp
)
7963 struct ldcred
*ldc
= runtime_get_caller_creds();
7967 return BOOTSTRAP_NO_MEMORY
;
7970 if (unlikely(j
->deny_job_creation
)) {
7971 return BOOTSTRAP_NOT_PRIVILEGED
;
7975 const char **argv
= (const char **)mach_cmd2argv(server_cmd
);
7976 if (unlikely(argv
== NULL
)) {
7977 return BOOTSTRAP_NO_MEMORY
;
7979 if (unlikely(sandbox_check(ldc
->pid
, "job-creation", SANDBOX_FILTER_PATH
, argv
[0]) > 0)) {
7981 return BOOTSTRAP_NOT_PRIVILEGED
;
7986 job_log(j
, LOG_DEBUG
, "Server create attempt: %s", server_cmd
);
7989 if (ldc
->euid
|| ldc
->uid
) {
7990 job_log(j
, LOG_WARNING
, "Server create attempt moved to per-user launchd: %s", server_cmd
);
7991 return VPROC_ERR_TRY_PER_USER
;
7994 if (unlikely(server_uid
!= getuid())) {
7995 job_log(j
, LOG_WARNING
, "Server create: \"%s\": As UID %d, we will not be able to switch to UID %d",
7996 server_cmd
, getuid(), server_uid
);
7998 server_uid
= 0; // zero means "do nothing"
8001 js
= job_new_via_mach_init(j
, server_cmd
, server_uid
, on_demand
);
8003 if (unlikely(js
== NULL
)) {
8004 return BOOTSTRAP_NO_MEMORY
;
8007 *server_portp
= js
->j_port
;
8008 return BOOTSTRAP_SUCCESS
;
8012 job_mig_send_signal(job_t j
, mach_port_t srp
, name_t targetlabel
, int sig
)
8014 struct ldcred
*ldc
= runtime_get_caller_creds();
8018 return BOOTSTRAP_NO_MEMORY
;
8021 if (unlikely(ldc
->euid
!= 0 && ldc
->euid
!= getuid()) || j
->deny_job_creation
) {
8022 #if TARGET_OS_EMBEDDED
8023 if (!j
->embedded_god
) {
8024 return BOOTSTRAP_NOT_PRIVILEGED
;
8027 return BOOTSTRAP_NOT_PRIVILEGED
;
8032 if (unlikely(sandbox_check(ldc
->pid
, "job-creation", SANDBOX_FILTER_NONE
) > 0)) {
8033 return BOOTSTRAP_NOT_PRIVILEGED
;
8037 if (unlikely(!(otherj
= job_find(NULL
, targetlabel
)))) {
8038 return BOOTSTRAP_UNKNOWN_SERVICE
;
8041 #if TARGET_OS_EMBEDDED
8042 if (j
->embedded_god
) {
8043 if (j
->username
&& otherj
->username
) {
8044 if (strcmp(j
->username
, otherj
->username
) != 0) {
8045 return BOOTSTRAP_NOT_PRIVILEGED
;
8048 return BOOTSTRAP_NOT_PRIVILEGED
;
8053 if (sig
== VPROC_MAGIC_UNLOAD_SIGNAL
) {
8054 bool do_block
= otherj
->p
;
8056 if (otherj
->anonymous
) {
8057 return BOOTSTRAP_NOT_PRIVILEGED
;
8063 job_log(j
, LOG_DEBUG
, "Blocking MIG return of job_remove(): %s", otherj
->label
);
8064 // this is messy. We shouldn't access 'otherj' after job_remove(), but we check otherj->p first...
8065 (void)job_assumes(otherj
, waiting4removal_new(otherj
, srp
));
8066 return MIG_NO_REPLY
;
8070 } else if (otherj
->p
) {
8071 (void)job_assumes_zero_p(j
, kill2(otherj
->p
, sig
));
8078 job_mig_log_forward(job_t j
, vm_offset_t inval
, mach_msg_type_number_t invalCnt
)
8080 struct ldcred
*ldc
= runtime_get_caller_creds();
8083 return BOOTSTRAP_NO_MEMORY
;
8086 if (!job_assumes(j
, j
->per_user
)) {
8087 return BOOTSTRAP_NOT_PRIVILEGED
;
8090 return launchd_log_forward(ldc
->euid
, ldc
->egid
, inval
, invalCnt
);
8094 job_mig_log_drain(job_t j
, mach_port_t srp
, vm_offset_t
*outval
, mach_msg_type_number_t
*outvalCnt
)
8096 struct ldcred
*ldc
= runtime_get_caller_creds();
8099 return BOOTSTRAP_NO_MEMORY
;
8102 if (unlikely(ldc
->euid
)) {
8103 return BOOTSTRAP_NOT_PRIVILEGED
;
8106 return launchd_log_drain(srp
, outval
, outvalCnt
);
8110 job_mig_swap_complex(job_t j
, vproc_gsk_t inkey
, vproc_gsk_t outkey
,
8111 vm_offset_t inval
, mach_msg_type_number_t invalCnt
, vm_offset_t
*outval
,
8112 mach_msg_type_number_t
*outvalCnt
)
8115 launch_data_t input_obj
= NULL
, output_obj
= NULL
;
8116 size_t data_offset
= 0;
8118 struct ldcred
*ldc
= runtime_get_caller_creds();
8121 return BOOTSTRAP_NO_MEMORY
;
8124 if (inkey
&& ldc
->pid
!= j
->p
) {
8125 if (ldc
->euid
&& ldc
->euid
!= getuid()) {
8126 return BOOTSTRAP_NOT_PRIVILEGED
;
8130 if (unlikely(inkey
&& outkey
&& !job_assumes(j
, inkey
== outkey
))) {
8134 if (inkey
&& outkey
) {
8135 action
= "Swapping";
8142 job_log(j
, LOG_DEBUG
, "%s key: %u", action
, inkey
? inkey
: outkey
);
8144 *outvalCnt
= 20 * 1024 * 1024;
8145 mig_allocate(outval
, *outvalCnt
);
8146 if (!job_assumes(j
, *outval
!= 0)) {
8150 /* Note to future maintainers: launch_data_unpack() does NOT return a heap
8151 * object. The data is decoded in-place. So do not call launch_data_free()
8154 runtime_ktrace0(RTKT_LAUNCHD_DATA_UNPACK
);
8155 if (unlikely(invalCnt
&& !job_assumes(j
, (input_obj
= launch_data_unpack((void *)inval
, invalCnt
, NULL
, 0, &data_offset
, NULL
)) != NULL
))) {
8161 case VPROC_GSK_ENVIRONMENT
:
8162 if (!job_assumes(j
, (output_obj
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
)))) {
8165 jobmgr_export_env_from_other_jobs(j
->mgr
, output_obj
);
8166 runtime_ktrace0(RTKT_LAUNCHD_DATA_PACK
);
8167 if (!job_assumes(j
, launch_data_pack(output_obj
, (void *)*outval
, *outvalCnt
, NULL
, NULL
) != 0)) {
8170 launch_data_free(output_obj
);
8172 case VPROC_GSK_ALLJOBS
:
8173 if (!job_assumes(j
, (output_obj
= job_export_all()) != NULL
)) {
8176 ipc_revoke_fds(output_obj
);
8177 runtime_ktrace0(RTKT_LAUNCHD_DATA_PACK
);
8178 packed_size
= launch_data_pack(output_obj
, (void *)*outval
, *outvalCnt
, NULL
, NULL
);
8179 if (!job_assumes(j
, packed_size
!= 0)) {
8182 launch_data_free(output_obj
);
8184 case VPROC_GSK_MGR_NAME
:
8185 if (!job_assumes(j
, (output_obj
= launch_data_new_string(j
->mgr
->name
)) != NULL
)) {
8188 packed_size
= launch_data_pack(output_obj
, (void *)*outval
, *outvalCnt
, NULL
, NULL
);
8189 if (!job_assumes(j
, packed_size
!= 0)) {
8193 launch_data_free(output_obj
);
8195 case VPROC_GSK_JOB_OVERRIDES_DB
:
8196 store
= launchd_copy_persistent_store(LAUNCHD_PERSISTENT_STORE_DB
, "overrides.plist");
8197 if (!store
|| !job_assumes(j
, (output_obj
= launch_data_new_string(store
)) != NULL
)) {
8203 packed_size
= launch_data_pack(output_obj
, (void *)*outval
, *outvalCnt
, NULL
, NULL
);
8204 if (!job_assumes(j
, packed_size
!= 0)) {
8208 launch_data_free(output_obj
);
8210 case VPROC_GSK_ZERO
:
8211 mig_deallocate(*outval
, *outvalCnt
);
8219 mig_deallocate(inval
, invalCnt
);
8223 mig_deallocate(inval
, invalCnt
);
8225 mig_deallocate(*outval
, *outvalCnt
);
8228 launch_data_free(output_obj
);
8235 job_mig_swap_integer(job_t j
, vproc_gsk_t inkey
, vproc_gsk_t outkey
, int64_t inval
, int64_t *outval
)
8238 kern_return_t kr
= 0;
8239 struct ldcred
*ldc
= runtime_get_caller_creds();
8243 return BOOTSTRAP_NO_MEMORY
;
8246 if (inkey
&& ldc
->pid
!= j
->p
) {
8247 if (ldc
->euid
&& ldc
->euid
!= getuid()) {
8248 return BOOTSTRAP_NOT_PRIVILEGED
;
8252 if (unlikely(inkey
&& outkey
&& !job_assumes(j
, inkey
== outkey
))) {
8256 if (inkey
&& outkey
) {
8257 action
= "Swapping";
8264 job_log(j
, LOG_DEBUG
, "%s key: %u", action
, inkey
? inkey
: outkey
);
8267 case VPROC_GSK_ABANDON_PROCESS_GROUP
:
8268 *outval
= j
->abandon_pg
;
8270 case VPROC_GSK_LAST_EXIT_STATUS
:
8271 *outval
= j
->last_exit_status
;
8273 case VPROC_GSK_MGR_UID
:
8276 case VPROC_GSK_MGR_PID
:
8279 case VPROC_GSK_IS_MANAGED
:
8280 *outval
= j
->anonymous
? 0 : 1;
8282 case VPROC_GSK_BASIC_KEEPALIVE
:
8283 *outval
= !j
->ondemand
;
8285 case VPROC_GSK_START_INTERVAL
:
8286 *outval
= j
->start_interval
;
8288 case VPROC_GSK_IDLE_TIMEOUT
:
8289 *outval
= j
->timeout
;
8291 case VPROC_GSK_EXIT_TIMEOUT
:
8292 *outval
= j
->exit_timeout
;
8294 case VPROC_GSK_GLOBAL_LOG_MASK
:
8295 oldmask
= runtime_setlogmask(LOG_UPTO(LOG_DEBUG
));
8297 runtime_setlogmask(oldmask
);
8299 case VPROC_GSK_GLOBAL_UMASK
:
8304 case VPROC_GSK_TRANSACTIONS_ENABLED
:
8305 job_log(j
, LOG_DEBUG
, "Reading EnableTransactions value.");
8306 *outval
= j
->enable_transactions
;
8308 case VPROC_GSK_WAITFORDEBUGGER
:
8309 *outval
= j
->wait4debugger
;
8311 case VPROC_GSK_EMBEDDEDROOTEQUIVALENT
:
8312 *outval
= j
->embedded_god
;
8314 case VPROC_GSK_ZERO
:
8323 case VPROC_GSK_ABANDON_PROCESS_GROUP
:
8324 j
->abandon_pg
= (bool)inval
;
8326 case VPROC_GSK_GLOBAL_ON_DEMAND
:
8327 job_log(j
, LOG_DEBUG
, "Job has set global on-demand mode to: %s", inval
? "true" : "false");
8328 kr
= job_set_global_on_demand(j
, inval
);
8330 case VPROC_GSK_BASIC_KEEPALIVE
:
8331 j
->ondemand
= !inval
;
8333 case VPROC_GSK_START_INTERVAL
:
8334 if (inval
> UINT32_MAX
|| inval
< 0) {
8337 if (j
->start_interval
== 0) {
8338 runtime_add_weak_ref();
8340 j
->start_interval
= (typeof(j
->start_interval
)) inval
;
8341 (void)job_assumes_zero_p(j
, kevent_mod((uintptr_t)&j
->start_interval
, EVFILT_TIMER
, EV_ADD
, NOTE_SECONDS
, j
->start_interval
, j
));
8342 } else if (j
->start_interval
) {
8343 (void)job_assumes_zero_p(j
, kevent_mod((uintptr_t)&j
->start_interval
, EVFILT_TIMER
, EV_DELETE
, 0, 0, NULL
));
8344 if (j
->start_interval
!= 0) {
8345 runtime_del_weak_ref();
8347 j
->start_interval
= 0;
8350 case VPROC_GSK_IDLE_TIMEOUT
:
8351 if (inval
< 0 || inval
> UINT32_MAX
) {
8354 j
->timeout
= (typeof(j
->timeout
)) inval
;
8357 case VPROC_GSK_EXIT_TIMEOUT
:
8358 if (inval
< 0 || inval
> UINT32_MAX
) {
8361 j
->exit_timeout
= (typeof(j
->exit_timeout
)) inval
;
8364 case VPROC_GSK_GLOBAL_LOG_MASK
:
8365 if (inval
< 0 || inval
> UINT32_MAX
) {
8368 runtime_setlogmask((int) inval
);
8371 case VPROC_GSK_GLOBAL_UMASK
:
8372 __OS_COMPILETIME_ASSERT__(sizeof (mode_t
) == 2);
8373 if (inval
< 0 || inval
> UINT16_MAX
) {
8377 if (unlikely(sandbox_check(ldc
->pid
, "job-creation", SANDBOX_FILTER_NONE
) > 0)) {
8380 umask((mode_t
) inval
);
8385 case VPROC_GSK_TRANSACTIONS_ENABLED
:
8388 case VPROC_GSK_WEIRD_BOOTSTRAP
:
8389 if (job_assumes(j
, j
->weird_bootstrap
)) {
8390 job_log(j
, LOG_DEBUG
, "Unsetting weird bootstrap.");
8392 mach_msg_size_t mxmsgsz
= (typeof(mxmsgsz
)) sizeof(union __RequestUnion__job_mig_job_subsystem
);
8394 if (job_mig_job_subsystem
.maxsize
> mxmsgsz
) {
8395 mxmsgsz
= job_mig_job_subsystem
.maxsize
;
8398 (void)job_assumes_zero(j
, runtime_add_mport(j
->mgr
->jm_port
, job_server
));
8399 j
->weird_bootstrap
= false;
8402 case VPROC_GSK_WAITFORDEBUGGER
:
8403 j
->wait4debugger_oneshot
= inval
;
8405 case VPROC_GSK_PERUSER_SUSPEND
:
8406 if (job_assumes(j
, pid1_magic
&& ldc
->euid
== 0)) {
8407 mach_port_t junk
= MACH_PORT_NULL
;
8408 job_t jpu
= jobmgr_lookup_per_user_context_internal(j
, (uid_t
)inval
, &junk
);
8409 if (job_assumes(j
, jpu
!= NULL
)) {
8410 struct suspended_peruser
*spi
= NULL
;
8411 LIST_FOREACH(spi
, &j
->suspended_perusers
, sle
) {
8412 if ((int64_t)(spi
->j
->mach_uid
) == inval
) {
8413 job_log(j
, LOG_WARNING
, "Job tried to suspend per-user launchd for UID %lli twice.", inval
);
8419 job_log(j
, LOG_INFO
, "Job is suspending the per-user launchd for UID %lli.", inval
);
8420 spi
= (struct suspended_peruser
*)calloc(sizeof(struct suspended_peruser
), 1);
8421 if (job_assumes(j
, spi
!= NULL
)) {
8422 /* Stop listening for events.
8424 * See <rdar://problem/9014146>.
8426 if (jpu
->peruser_suspend_count
== 0) {
8431 spi
->j
->peruser_suspend_count
++;
8432 LIST_INSERT_HEAD(&j
->suspended_perusers
, spi
, sle
);
8436 kr
= BOOTSTRAP_NO_MEMORY
;
8444 case VPROC_GSK_PERUSER_RESUME
:
8445 if (job_assumes(j
, pid1_magic
== true)) {
8446 struct suspended_peruser
*spi
= NULL
, *spt
= NULL
;
8447 LIST_FOREACH_SAFE(spi
, &j
->suspended_perusers
, sle
, spt
) {
8448 if ((int64_t)(spi
->j
->mach_uid
) == inval
) {
8449 spi
->j
->peruser_suspend_count
--;
8450 LIST_REMOVE(spi
, sle
);
8451 job_log(j
, LOG_INFO
, "Job is resuming the per-user launchd for UID %lli.", inval
);
8456 if (!job_assumes(j
, spi
!= NULL
)) {
8457 job_log(j
, LOG_WARNING
, "Job tried to resume per-user launchd for UID %lli that it did not suspend.", inval
);
8458 kr
= BOOTSTRAP_NOT_PRIVILEGED
;
8459 } else if (spi
->j
->peruser_suspend_count
== 0) {
8461 job_dispatch(spi
->j
, false);
8468 case VPROC_GSK_ZERO
:
8479 job_mig_post_fork_ping(job_t j
, task_t child_task
, mach_port_t
*asport
)
8482 return BOOTSTRAP_NO_MEMORY
;
8485 job_log(j
, LOG_DEBUG
, "Post fork ping.");
8487 struct machservice
*ms
;
8488 job_setup_exception_port(j
, child_task
);
8489 SLIST_FOREACH(ms
, &special_ports
, special_port_sle
) {
8490 if (j
->per_user
&& (ms
->special_port_num
!= TASK_ACCESS_PORT
)) {
8491 // The TASK_ACCESS_PORT funny business is to workaround 5325399.
8495 errno
= task_set_special_port(child_task
, ms
->special_port_num
, ms
->port
);
8497 if (errno
== MACH_SEND_INVALID_DEST
) {
8498 job_log(j
, LOG_WARNING
, "Task died before special ports could be set.");
8502 int desired_log_level
= LOG_ERR
;
8506 desired_log_level
= LOG_WARNING
;
8508 if (ms
->special_port_num
== TASK_SEATBELT_PORT
) {
8509 desired_log_level
= LOG_DEBUG
;
8513 job_log(j
, desired_log_level
, "Could not setup Mach task special port %u: %s", ms
->special_port_num
, mach_error_string(errno
));
8517 /* MIG will not zero-initialize this pointer, so we must always do so.
8519 * <rdar://problem/8562593>.
8521 *asport
= MACH_PORT_NULL
;
8522 #if !TARGET_OS_EMBEDDED
8523 if (!j
->anonymous
) {
8524 /* XPC services will spawn into the root security session by default.
8525 * xpcproxy will switch them away if needed.
8527 if (!(j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
)) {
8528 job_log(j
, LOG_DEBUG
, "Returning session port: 0x%x", j
->asport
);
8529 *asport
= j
->asport
;
8533 (void)job_assumes_zero(j
, launchd_mport_deallocate(child_task
));
8539 job_mig_get_listener_port_rights(job_t j
, mach_port_array_t
*sports
, mach_msg_type_number_t
*sports_cnt
)
8542 return BOOTSTRAP_NO_MEMORY
;
8546 struct machservice
*msi
= NULL
;
8547 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
8548 if (msi
->upfront
&& job_assumes(j
, msi
->recv
)) {
8554 return BOOTSTRAP_UNKNOWN_SERVICE
;
8557 mach_port_array_t sports2
= NULL
;
8558 mig_allocate((vm_address_t
*)&sports2
, cnt
* sizeof(sports2
[0]));
8560 return BOOTSTRAP_NO_MEMORY
;
8564 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
8565 if (msi
->upfront
&& msi
->recv
) {
8566 sports2
[i
] = msi
->port
;
8574 return KERN_SUCCESS
;
8578 job_mig_register_gui_session(job_t j
, mach_port_t asport
)
8581 return BOOTSTRAP_NOT_PRIVILEGED
;
8584 jobmgr_t jm
= jobmgr_find_xpc_per_user_domain(root_jobmgr
, j
->mach_uid
);
8586 return BOOTSTRAP_UNKNOWN_SERVICE
;
8589 if (jm
->req_gui_asport
) {
8590 // This job manager persists, so we need to allow the per-user launchd
8591 // to update the GUI session as it comes and goes.
8592 jobmgr_assumes_zero(jm
, launchd_mport_deallocate(jm
->req_gui_asport
));
8595 jm
->req_gui_asport
= asport
;
8596 return KERN_SUCCESS
;
8600 job_mig_reboot2(job_t j
, uint64_t flags
)
8602 char who_started_the_reboot
[2048] = "";
8603 struct proc_bsdshortinfo proc
;
8604 struct ldcred
*ldc
= runtime_get_caller_creds();
8608 return BOOTSTRAP_NO_MEMORY
;
8611 if (unlikely(!pid1_magic
)) {
8612 return BOOTSTRAP_NOT_PRIVILEGED
;
8615 #if !TARGET_OS_EMBEDDED
8616 if (unlikely(ldc
->euid
)) {
8618 if (unlikely(ldc
->euid
) && !j
->embedded_god
) {
8620 return BOOTSTRAP_NOT_PRIVILEGED
;
8623 for (pid_to_log
= ldc
->pid
; pid_to_log
; pid_to_log
= proc
.pbsi_ppid
) {
8625 if (proc_pidinfo(pid_to_log
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
8626 if (errno
!= ESRCH
) {
8627 (void)job_assumes_zero(j
, errno
);
8632 if (!job_assumes(j
, pid_to_log
!= (pid_t
)proc
.pbsi_ppid
)) {
8633 job_log(j
, LOG_WARNING
, "Job which is its own parent started reboot.");
8634 snprintf(who_started_the_reboot
, sizeof(who_started_the_reboot
), "%s[%u]->%s[%u]->%s[%u]->...", proc
.pbsi_comm
, pid_to_log
, proc
.pbsi_comm
, pid_to_log
, proc
.pbsi_comm
, pid_to_log
);
8638 who_offset
= strlen(who_started_the_reboot
);
8639 snprintf(who_started_the_reboot
+ who_offset
, sizeof(who_started_the_reboot
) - who_offset
,
8640 " %s[%u]%s", proc
.pbsi_comm
, pid_to_log
, proc
.pbsi_ppid
? " ->" : "");
8643 root_jobmgr
->reboot_flags
= (int)flags
;
8644 job_log(j
, LOG_DEBUG
, "reboot2() initiated by:%s", who_started_the_reboot
);
8651 job_mig_getsocket(job_t j
, name_t spr
)
8654 return BOOTSTRAP_NO_MEMORY
;
8657 if (j
->deny_job_creation
) {
8658 return BOOTSTRAP_NOT_PRIVILEGED
;
8662 struct ldcred
*ldc
= runtime_get_caller_creds();
8663 if (unlikely(sandbox_check(ldc
->pid
, "job-creation", SANDBOX_FILTER_NONE
) > 0)) {
8664 return BOOTSTRAP_NOT_PRIVILEGED
;
8670 if (unlikely(!sockpath
)) {
8671 return BOOTSTRAP_NO_MEMORY
;
8674 strncpy(spr
, sockpath
, sizeof(name_t
));
8676 return BOOTSTRAP_SUCCESS
;
8680 job_mig_log(job_t j
, int pri
, int err
, logmsg_t msg
)
8683 return BOOTSTRAP_NO_MEMORY
;
8686 if ((errno
= err
)) {
8687 job_log_error(j
, pri
, "%s", msg
);
8689 job_log(j
, pri
, "%s", msg
);
8696 job_setup_per_user_directory(job_t j
, uid_t uid
, const char *path
)
8700 bool created
= false;
8701 int r
= stat(path
, &sb
);
8702 if ((r
== -1 && errno
== ENOENT
) || (r
== 0 && !S_ISDIR(sb
.st_mode
))) {
8704 job_log(j
, LOG_NOTICE
, "File at location of per-user launchd directory is not a directory. Moving aside: %s", path
);
8707 snprintf(old
, sizeof(old
), "%s.movedaside", path
);
8708 (void)job_assumes_zero_p(j
, rename(path
, old
));
8711 (void)job_assumes_zero_p(j
, mkdir(path
, S_IRWXU
));
8712 (void)job_assumes_zero_p(j
, chown(path
, uid
, 0));
8717 if (sb
.st_uid
!= uid
) {
8718 job_log(j
, LOG_NOTICE
, "Per-user launchd directory has improper user ownership. Repairing: %s", path
);
8719 (void)job_assumes_zero_p(j
, chown(path
, uid
, 0));
8721 if (sb
.st_gid
!= 0) {
8722 job_log(j
, LOG_NOTICE
, "Per-user launchd directory has improper group ownership. Repairing: %s", path
);
8723 (void)job_assumes_zero_p(j
, chown(path
, uid
, 0));
8725 if (sb
.st_mode
!= (S_IRWXU
| S_IFDIR
)) {
8726 job_log(j
, LOG_NOTICE
, "Per-user launchd directory has improper mode. Repairing: %s", path
);
8727 (void)job_assumes_zero_p(j
, chmod(path
, S_IRWXU
));
8733 job_setup_per_user_directories(job_t j
, uid_t uid
, const char *label
)
8735 char path
[PATH_MAX
];
8737 (void)snprintf(path
, sizeof(path
), LAUNCHD_DB_PREFIX
"/%s", label
);
8738 job_setup_per_user_directory(j
, uid
, path
);
8740 (void)snprintf(path
, sizeof(path
), LAUNCHD_LOG_PREFIX
"/%s", label
);
8741 job_setup_per_user_directory(j
, uid
, path
);
8745 jobmgr_lookup_per_user_context_internal(job_t j
, uid_t which_user
, mach_port_t
*mp
)
8748 LIST_FOREACH(ji
, &root_jobmgr
->jobs
, sle
) {
8749 if (!ji
->per_user
) {
8752 if (ji
->mach_uid
!= which_user
) {
8755 if (SLIST_EMPTY(&ji
->machservices
)) {
8758 if (!SLIST_FIRST(&ji
->machservices
)->per_user_hack
) {
8764 if (unlikely(ji
== NULL
)) {
8765 struct machservice
*ms
;
8768 job_log(j
, LOG_DEBUG
, "Creating per user launchd job for UID: %u", which_user
);
8770 sprintf(lbuf
, "com.apple.launchd.peruser.%u", which_user
);
8772 ji
= job_new(root_jobmgr
, lbuf
, "/sbin/launchd", NULL
);
8775 auditinfo_addr_t auinfo
= {
8779 .ai_auid
= which_user
,
8780 .ai_asid
= AU_ASSIGN_ASID
,
8783 if (setaudit_addr(&auinfo
, sizeof(auinfo
)) == 0) {
8784 job_log(ji
, LOG_DEBUG
, "Created new security session for per-user launchd: %u", auinfo
.ai_asid
);
8785 (void)job_assumes(ji
, (ji
->asport
= audit_session_self()) != MACH_PORT_NULL
);
8787 /* Kinda lame that we have to do this, but we can't create an
8788 * audit session without joining it.
8790 (void)job_assumes(ji
, audit_session_join(launchd_audit_port
));
8791 ji
->asid
= auinfo
.ai_asid
;
8793 job_log(ji
, LOG_WARNING
, "Could not set audit session!");
8798 ji
->mach_uid
= which_user
;
8799 ji
->per_user
= true;
8800 ji
->enable_transactions
= true;
8801 job_setup_per_user_directories(ji
, which_user
, lbuf
);
8803 if ((ms
= machservice_new(ji
, lbuf
, mp
, false)) == NULL
) {
8808 ms
->per_user_hack
= true;
8811 ji
= job_dispatch(ji
, false);
8815 *mp
= machservice_port(SLIST_FIRST(&ji
->machservices
));
8816 job_log(j
, LOG_DEBUG
, "Per user launchd job found for UID: %u", which_user
);
8823 job_mig_lookup_per_user_context(job_t j
, uid_t which_user
, mach_port_t
*up_cont
)
8825 struct ldcred
*ldc
= runtime_get_caller_creds();
8829 return BOOTSTRAP_NO_MEMORY
;
8832 if (launchd_osinstaller
) {
8833 return BOOTSTRAP_UNKNOWN_SERVICE
;
8836 #if TARGET_OS_EMBEDDED
8837 // There is no need for per-user launchd's on embedded.
8838 job_log(j
, LOG_ERR
, "Per-user launchds are not supported on this platform.");
8839 return BOOTSTRAP_UNKNOWN_SERVICE
;
8843 if (unlikely(sandbox_check(ldc
->pid
, "mach-per-user-lookup", SANDBOX_FILTER_NONE
) > 0)) {
8844 return BOOTSTRAP_NOT_PRIVILEGED
;
8848 job_log(j
, LOG_INFO
, "Looking up per user launchd for UID: %u", which_user
);
8850 if (unlikely(!pid1_magic
)) {
8851 job_log(j
, LOG_ERR
, "Only PID 1 supports per user launchd lookups.");
8852 return BOOTSTRAP_NOT_PRIVILEGED
;
8855 if (ldc
->euid
|| ldc
->uid
) {
8856 which_user
= ldc
->euid
?: ldc
->uid
;
8859 *up_cont
= MACH_PORT_NULL
;
8861 jpu
= jobmgr_lookup_per_user_context_internal(j
, which_user
, up_cont
);
8867 job_mig_check_in2(job_t j
, name_t servicename
, mach_port_t
*serviceportp
, uuid_t instance_id
, uint64_t flags
)
8869 bool per_pid_service
= flags
& BOOTSTRAP_PER_PID_SERVICE
;
8870 bool strict
= flags
& BOOTSTRAP_STRICT_CHECKIN
;
8871 struct ldcred
*ldc
= runtime_get_caller_creds();
8872 struct machservice
*ms
= NULL
;
8876 return BOOTSTRAP_NO_MEMORY
;
8879 if (j
->dedicated_instance
) {
8880 struct machservice
*msi
= NULL
;
8881 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
8882 if (strncmp(servicename
, msi
->name
, sizeof(name_t
) - 1) == 0) {
8883 uuid_copy(instance_id
, j
->instance_id
);
8889 ms
= jobmgr_lookup_service(j
->mgr
, servicename
, false, per_pid_service
? ldc
->pid
: 0);
8893 if (likely(ms
!= NULL
)) {
8895 return BOOTSTRAP_NOT_PRIVILEGED
;
8896 } else if (ms
->isActive
) {
8897 return BOOTSTRAP_SERVICE_ACTIVE
;
8900 return BOOTSTRAP_UNKNOWN_SERVICE
;
8902 } else if (ms
== NULL
) {
8903 if (job_assumes(j
, !j
->dedicated_instance
)) {
8904 *serviceportp
= MACH_PORT_NULL
;
8907 if (unlikely(sandbox_check(ldc
->pid
, "mach-register", per_pid_service
? SANDBOX_FILTER_LOCAL_NAME
: SANDBOX_FILTER_GLOBAL_NAME
, servicename
) > 0)) {
8908 return BOOTSTRAP_NOT_PRIVILEGED
;
8911 if (unlikely((ms
= machservice_new(j
, servicename
, serviceportp
, per_pid_service
)) == NULL
)) {
8912 return BOOTSTRAP_NO_MEMORY
;
8915 // Treat this like a legacy job.
8916 if (!j
->legacy_mach_job
) {
8917 ms
->isActive
= true;
8921 if (!(j
->anonymous
|| j
->legacy_LS_job
|| j
->legacy_mach_job
)) {
8922 job_log(j
, LOG_APPLEONLY
, "Please add the following service to the configuration file for this job: %s", servicename
);
8925 return BOOTSTRAP_UNKNOWN_SERVICE
;
8928 if (unlikely((jo
= machservice_job(ms
)) != j
)) {
8929 static pid_t last_warned_pid
;
8931 if (last_warned_pid
!= ldc
->pid
) {
8932 job_log(jo
, LOG_WARNING
, "The following job tried to hijack the service \"%s\" from this job: %s", servicename
, j
->label
);
8933 last_warned_pid
= ldc
->pid
;
8936 return BOOTSTRAP_NOT_PRIVILEGED
;
8938 if (unlikely(machservice_active(ms
))) {
8939 job_log(j
, LOG_WARNING
, "Check-in of Mach service failed. Already active: %s", servicename
);
8940 return BOOTSTRAP_SERVICE_ACTIVE
;
8945 machservice_request_notifications(ms
);
8947 job_log(j
, LOG_INFO
, "Check-in of service: %s", servicename
);
8949 *serviceportp
= machservice_port(ms
);
8950 return BOOTSTRAP_SUCCESS
;
8954 job_mig_register2(job_t j
, name_t servicename
, mach_port_t serviceport
, uint64_t flags
)
8956 struct machservice
*ms
;
8957 struct ldcred
*ldc
= runtime_get_caller_creds();
8958 bool per_pid_service
= flags
& BOOTSTRAP_PER_PID_SERVICE
;
8961 return BOOTSTRAP_NO_MEMORY
;
8964 if (!per_pid_service
&& !j
->legacy_LS_job
) {
8965 job_log(j
, LOG_APPLEONLY
, "Performance: bootstrap_register() is deprecated. Service: %s", servicename
);
8968 job_log(j
, LOG_DEBUG
, "%sMach service registration attempt: %s", flags
& BOOTSTRAP_PER_PID_SERVICE
? "Per PID " : "", servicename
);
8971 if (unlikely(sandbox_check(ldc
->pid
, "mach-register", per_pid_service
? SANDBOX_FILTER_LOCAL_NAME
: SANDBOX_FILTER_GLOBAL_NAME
, servicename
) > 0)) {
8972 return BOOTSTRAP_NOT_PRIVILEGED
;
8976 // 5641783 for the embedded hack
8977 #if !TARGET_OS_EMBEDDED
8979 * From a per-user/session launchd's perspective, SecurityAgent (UID
8980 * 92) is a rogue application (not our UID, not root and not a child of
8981 * us). We'll have to reconcile this design friction at a later date.
8983 if (unlikely(j
->anonymous
&& j
->mgr
->parentmgr
== NULL
&& ldc
->uid
!= 0 && ldc
->uid
!= getuid() && ldc
->uid
!= 92)) {
8985 return VPROC_ERR_TRY_PER_USER
;
8987 return BOOTSTRAP_NOT_PRIVILEGED
;
8992 ms
= jobmgr_lookup_service(j
->mgr
, servicename
, false, flags
& BOOTSTRAP_PER_PID_SERVICE
? ldc
->pid
: 0);
8995 if (machservice_job(ms
) != j
) {
8996 return BOOTSTRAP_NOT_PRIVILEGED
;
8998 if (machservice_active(ms
)) {
8999 job_log(j
, LOG_DEBUG
, "Mach service registration failed. Already active: %s", servicename
);
9000 return BOOTSTRAP_SERVICE_ACTIVE
;
9002 if (ms
->recv
&& (serviceport
!= MACH_PORT_NULL
)) {
9003 job_log(j
, LOG_ERR
, "bootstrap_register() erroneously called instead of bootstrap_check_in(). Mach service: %s", servicename
);
9004 return BOOTSTRAP_NOT_PRIVILEGED
;
9007 machservice_delete(j
, ms
, false);
9010 if (likely(serviceport
!= MACH_PORT_NULL
)) {
9011 if (likely(ms
= machservice_new(j
, servicename
, &serviceport
, flags
& BOOTSTRAP_PER_PID_SERVICE
? true : false))) {
9012 machservice_request_notifications(ms
);
9014 return BOOTSTRAP_NO_MEMORY
;
9019 return BOOTSTRAP_SUCCESS
;
9023 job_mig_look_up2(job_t j
, mach_port_t srp
, name_t servicename
, mach_port_t
*serviceportp
, pid_t target_pid
, uuid_t instance_id
, uint64_t flags
)
9025 struct machservice
*ms
= NULL
;
9026 struct ldcred
*ldc
= runtime_get_caller_creds();
9028 bool per_pid_lookup
= flags
& BOOTSTRAP_PER_PID_SERVICE
;
9029 bool specific_instance
= flags
& BOOTSTRAP_SPECIFIC_INSTANCE
;
9030 bool strict_lookup
= flags
& BOOTSTRAP_STRICT_LOOKUP
;
9031 bool privileged
= flags
& BOOTSTRAP_PRIVILEGED_SERVER
;
9034 return BOOTSTRAP_NO_MEMORY
;
9037 bool xpc_req
= (j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
);
9039 // 5641783 for the embedded hack
9040 #if !TARGET_OS_EMBEDDED
9041 if (unlikely(pid1_magic
&& j
->anonymous
&& j
->mgr
->parentmgr
== NULL
&& ldc
->uid
!= 0 && ldc
->euid
!= 0)) {
9042 return VPROC_ERR_TRY_PER_USER
;
9047 /* We don't do sandbox checking for XPC domains because, by definition, all
9048 * the services within your domain should be accessible to you.
9050 if (!xpc_req
&& unlikely(sandbox_check(ldc
->pid
, "mach-lookup", per_pid_lookup
? SANDBOX_FILTER_LOCAL_NAME
: SANDBOX_FILTER_GLOBAL_NAME
, servicename
) > 0)) {
9051 return BOOTSTRAP_NOT_PRIVILEGED
;
9055 if (per_pid_lookup
) {
9056 ms
= jobmgr_lookup_service(j
->mgr
, servicename
, false, target_pid
);
9059 // Requests from XPC domains stay local.
9060 ms
= jobmgr_lookup_service(j
->mgr
, servicename
, false, 0);
9062 /* A strict lookup which is privileged won't even bother trying to
9063 * find a service if we're not hosting the root Mach bootstrap.
9065 if (strict_lookup
&& privileged
) {
9066 if (inherited_bootstrap_port
== MACH_PORT_NULL
) {
9067 ms
= jobmgr_lookup_service(j
->mgr
, servicename
, true, 0);
9070 ms
= jobmgr_lookup_service(j
->mgr
, servicename
, true, 0);
9076 ms
= ms
->alias
? ms
->alias
: ms
;
9077 if (unlikely(specific_instance
&& ms
->job
->multiple_instances
)) {
9079 job_t instance
= NULL
;
9080 LIST_FOREACH(ji
, &ms
->job
->subjobs
, subjob_sle
) {
9081 if (uuid_compare(instance_id
, ji
->instance_id
) == 0) {
9087 if (unlikely(instance
== NULL
)) {
9088 job_log(ms
->job
, LOG_DEBUG
, "Creating new instance of job based on lookup of service %s", ms
->name
);
9089 instance
= job_new_subjob(ms
->job
, instance_id
);
9090 if (job_assumes(j
, instance
!= NULL
)) {
9091 /* Disable this support for now. We only support having
9092 * multi-instance jobs within private XPC domains.
9095 /* If the job is multi-instance, in a singleton XPC domain
9096 * and the request is not coming from within that singleton
9097 * domain, we need to alias the new job into the requesting
9100 if (!j
->mgr
->xpc_singleton
&& xpc_req
) {
9101 (void)job_assumes(instance
, job_new_alias(j
->mgr
, instance
));
9104 job_dispatch(instance
, false);
9109 if (job_assumes(j
, instance
!= NULL
)) {
9110 struct machservice
*msi
= NULL
;
9111 SLIST_FOREACH(msi
, &instance
->machservices
, sle
) {
9112 /* sizeof(servicename) will return the size of a pointer,
9113 * even though it's an array type, because when passing
9114 * arrays as parameters in C, they implicitly degrade to
9117 if (strncmp(servicename
, msi
->name
, sizeof(name_t
) - 1) == 0) {
9124 if (machservice_hidden(ms
) && !machservice_active(ms
)) {
9126 } else if (unlikely(ms
->per_user_hack
)) {
9133 (void)job_assumes(j
, machservice_port(ms
) != MACH_PORT_NULL
);
9134 job_log(j
, LOG_DEBUG
, "%sMach service lookup: %s", per_pid_lookup
? "Per PID " : "", servicename
);
9135 *serviceportp
= machservice_port(ms
);
9137 kr
= BOOTSTRAP_SUCCESS
;
9138 } else if (strict_lookup
&& !privileged
) {
9139 /* Hack: We need to simulate XPC's desire not to establish a hierarchy.
9140 * So if XPC is doing the lookup, and it's not a privileged lookup, we
9141 * won't forward. But if it is a privileged lookup, then we must
9144 return BOOTSTRAP_UNKNOWN_SERVICE
;
9145 } else if (inherited_bootstrap_port
!= MACH_PORT_NULL
) {
9146 // Requests from within an XPC domain don't get forwarded.
9147 job_log(j
, LOG_DEBUG
, "Mach service lookup forwarded: %s", servicename
);
9148 /* Clients potentially check the audit token of the reply to verify that
9149 * the returned send right is trustworthy.
9151 (void)job_assumes_zero(j
, vproc_mig_look_up2_forward(inherited_bootstrap_port
, srp
, servicename
, target_pid
, instance_id
, flags
));
9152 return MIG_NO_REPLY
;
9153 } else if (pid1_magic
&& j
->anonymous
&& ldc
->euid
>= 500 && strcasecmp(j
->mgr
->name
, VPROCMGR_SESSION_LOGINWINDOW
) == 0) {
9154 /* 5240036 Should start background session when a lookup of CCacheServer
9157 * This is a total hack. We sniff out loginwindow session, and attempt
9158 * to guess what it is up to. If we find a EUID that isn't root, we
9159 * force it over to the per-user context.
9161 return VPROC_ERR_TRY_PER_USER
;
9163 job_log(j
, LOG_DEBUG
, "%sMach service lookup failed: %s", per_pid_lookup
? "Per PID " : "", servicename
);
9164 kr
= BOOTSTRAP_UNKNOWN_SERVICE
;
9171 job_mig_parent(job_t j
, mach_port_t srp
, mach_port_t
*parentport
)
9174 return BOOTSTRAP_NO_MEMORY
;
9177 job_log(j
, LOG_DEBUG
, "Requested parent bootstrap port");
9178 jobmgr_t jm
= j
->mgr
;
9180 if (jobmgr_parent(jm
)) {
9181 *parentport
= jobmgr_parent(jm
)->jm_port
;
9182 } else if (MACH_PORT_NULL
== inherited_bootstrap_port
) {
9183 *parentport
= jm
->jm_port
;
9185 (void)job_assumes_zero(j
, vproc_mig_parent_forward(inherited_bootstrap_port
, srp
));
9186 // The previous routine moved the reply port, we're forced to return MIG_NO_REPLY now
9187 return MIG_NO_REPLY
;
9189 return BOOTSTRAP_SUCCESS
;
9193 job_mig_get_root_bootstrap(job_t j
, mach_port_t
*rootbsp
)
9196 return BOOTSTRAP_NO_MEMORY
;
9199 if (inherited_bootstrap_port
== MACH_PORT_NULL
) {
9200 *rootbsp
= root_jobmgr
->jm_port
;
9201 (void)job_assumes_zero(j
, launchd_mport_make_send(root_jobmgr
->jm_port
));
9203 *rootbsp
= inherited_bootstrap_port
;
9204 (void)job_assumes_zero(j
, launchd_mport_copy_send(inherited_bootstrap_port
));
9207 return BOOTSTRAP_SUCCESS
;
9211 job_mig_info(job_t j
, name_array_t
*servicenamesp
,
9212 unsigned int *servicenames_cnt
, name_array_t
*servicejobsp
,
9213 unsigned int *servicejobs_cnt
, bootstrap_status_array_t
*serviceactivesp
,
9214 unsigned int *serviceactives_cnt
, uint64_t flags
)
9216 name_array_t service_names
= NULL
;
9217 name_array_t service_jobs
= NULL
;
9218 bootstrap_status_array_t service_actives
= NULL
;
9219 unsigned int cnt
= 0, cnt2
= 0;
9223 return BOOTSTRAP_NO_MEMORY
;
9226 #if TARGET_OS_EMBEDDED
9227 struct ldcred
*ldc
= runtime_get_caller_creds();
9231 #endif // TARGET_OS_EMBEDDED
9233 if (launchd_flat_mach_namespace
) {
9234 if ((j
->mgr
->properties
& BOOTSTRAP_PROPERTY_EXPLICITSUBSET
) || (flags
& BOOTSTRAP_FORCE_LOCAL
)) {
9244 struct machservice
*msi
= NULL
;
9245 for (i
= 0; i
< MACHSERVICE_HASH_SIZE
; i
++) {
9246 LIST_FOREACH(msi
, &jm
->ms_hash
[i
], name_hash_sle
) {
9247 cnt
+= !msi
->per_pid
? 1 : 0;
9255 mig_allocate((vm_address_t
*)&service_names
, cnt
* sizeof(service_names
[0]));
9256 if (!job_assumes(j
, service_names
!= NULL
)) {
9260 mig_allocate((vm_address_t
*)&service_jobs
, cnt
* sizeof(service_jobs
[0]));
9261 if (!job_assumes(j
, service_jobs
!= NULL
)) {
9265 mig_allocate((vm_address_t
*)&service_actives
, cnt
* sizeof(service_actives
[0]));
9266 if (!job_assumes(j
, service_actives
!= NULL
)) {
9270 for (i
= 0; i
< MACHSERVICE_HASH_SIZE
; i
++) {
9271 LIST_FOREACH(msi
, &jm
->ms_hash
[i
], name_hash_sle
) {
9272 if (!msi
->per_pid
) {
9273 strlcpy(service_names
[cnt2
], machservice_name(msi
), sizeof(service_names
[0]));
9274 msi
= msi
->alias
? msi
->alias
: msi
;
9275 if (msi
->job
->mgr
->shortdesc
) {
9276 strlcpy(service_jobs
[cnt2
], msi
->job
->mgr
->shortdesc
, sizeof(service_jobs
[0]));
9278 strlcpy(service_jobs
[cnt2
], msi
->job
->label
, sizeof(service_jobs
[0]));
9280 service_actives
[cnt2
] = machservice_status(msi
);
9286 (void)job_assumes(j
, cnt
== cnt2
);
9289 *servicenamesp
= service_names
;
9290 *servicejobsp
= service_jobs
;
9291 *serviceactivesp
= service_actives
;
9292 *servicenames_cnt
= *servicejobs_cnt
= *serviceactives_cnt
= cnt
;
9294 return BOOTSTRAP_SUCCESS
;
9297 if (service_names
) {
9298 mig_deallocate((vm_address_t
)service_names
, cnt
* sizeof(service_names
[0]));
9301 mig_deallocate((vm_address_t
)service_jobs
, cnt
* sizeof(service_jobs
[0]));
9303 if (service_actives
) {
9304 mig_deallocate((vm_address_t
)service_actives
, cnt
* sizeof(service_actives
[0]));
9307 return BOOTSTRAP_NO_MEMORY
;
9311 job_mig_lookup_children(job_t j
, mach_port_array_t
*child_ports
,
9312 mach_msg_type_number_t
*child_ports_cnt
, name_array_t
*child_names
,
9313 mach_msg_type_number_t
*child_names_cnt
,
9314 bootstrap_property_array_t
*child_properties
,
9315 mach_msg_type_number_t
*child_properties_cnt
)
9317 kern_return_t kr
= BOOTSTRAP_NO_MEMORY
;
9319 return BOOTSTRAP_NO_MEMORY
;
9322 struct ldcred
*ldc
= runtime_get_caller_creds();
9324 /* Only allow root processes to look up children, even if we're in the per-user launchd.
9325 * Otherwise, this could be used to cross sessions, which counts as a security vulnerability
9326 * in a non-flat namespace.
9328 if (ldc
->euid
!= 0) {
9329 job_log(j
, LOG_WARNING
, "Attempt to look up children of bootstrap by unprivileged job.");
9330 return BOOTSTRAP_NOT_PRIVILEGED
;
9333 unsigned int cnt
= 0;
9335 jobmgr_t jmr
= j
->mgr
;
9336 jobmgr_t jmi
= NULL
;
9337 SLIST_FOREACH(jmi
, &jmr
->submgrs
, sle
) {
9341 // Find our per-user launchds if we're PID 1.
9344 LIST_FOREACH(ji
, &jmr
->jobs
, sle
) {
9345 cnt
+= ji
->per_user
? 1 : 0;
9350 return BOOTSTRAP_NO_CHILDREN
;
9353 mach_port_array_t _child_ports
= NULL
;
9354 name_array_t _child_names
= NULL
;
9355 bootstrap_property_array_t _child_properties
= NULL
;
9357 mig_allocate((vm_address_t
*)&_child_ports
, cnt
* sizeof(_child_ports
[0]));
9358 if (!job_assumes(j
, _child_ports
!= NULL
)) {
9359 kr
= BOOTSTRAP_NO_MEMORY
;
9363 mig_allocate((vm_address_t
*)&_child_names
, cnt
* sizeof(_child_names
[0]));
9364 if (!job_assumes(j
, _child_names
!= NULL
)) {
9365 kr
= BOOTSTRAP_NO_MEMORY
;
9369 mig_allocate((vm_address_t
*)&_child_properties
, cnt
* sizeof(_child_properties
[0]));
9370 if (!job_assumes(j
, _child_properties
!= NULL
)) {
9371 kr
= BOOTSTRAP_NO_MEMORY
;
9375 unsigned int cnt2
= 0;
9376 SLIST_FOREACH(jmi
, &jmr
->submgrs
, sle
) {
9377 if (jobmgr_assumes_zero(jmi
, launchd_mport_make_send(jmi
->jm_port
)) == KERN_SUCCESS
) {
9378 _child_ports
[cnt2
] = jmi
->jm_port
;
9380 _child_ports
[cnt2
] = MACH_PORT_NULL
;
9383 strlcpy(_child_names
[cnt2
], jmi
->name
, sizeof(_child_names
[0]));
9384 _child_properties
[cnt2
] = jmi
->properties
;
9389 if (pid1_magic
) LIST_FOREACH(ji
, &jmr
->jobs
, sle
) {
9391 if (job_assumes(ji
, SLIST_FIRST(&ji
->machservices
)->per_user_hack
== true)) {
9392 mach_port_t port
= machservice_port(SLIST_FIRST(&ji
->machservices
));
9394 if (job_assumes_zero(ji
, launchd_mport_copy_send(port
)) == KERN_SUCCESS
) {
9395 _child_ports
[cnt2
] = port
;
9397 _child_ports
[cnt2
] = MACH_PORT_NULL
;
9400 _child_ports
[cnt2
] = MACH_PORT_NULL
;
9403 strlcpy(_child_names
[cnt2
], ji
->label
, sizeof(_child_names
[0]));
9404 _child_properties
[cnt2
] |= BOOTSTRAP_PROPERTY_PERUSER
;
9410 *child_names_cnt
= cnt
;
9411 *child_ports_cnt
= cnt
;
9412 *child_properties_cnt
= cnt
;
9414 *child_names
= _child_names
;
9415 *child_ports
= _child_ports
;
9416 *child_properties
= _child_properties
;
9419 for (i
= 0; i
< cnt
; i
++) {
9420 job_log(j
, LOG_DEBUG
, "child_names[%u] = %s", i
, (char *)_child_names
[i
]);
9423 return BOOTSTRAP_SUCCESS
;
9426 mig_deallocate((vm_address_t
)_child_ports
, cnt
* sizeof(_child_ports
[0]));
9430 mig_deallocate((vm_address_t
)_child_names
, cnt
* sizeof(_child_names
[0]));
9433 if (_child_properties
) {
9434 mig_deallocate((vm_address_t
)_child_properties
, cnt
* sizeof(_child_properties
[0]));
9441 job_mig_pid_is_managed(job_t j
__attribute__((unused
)), pid_t p
, boolean_t
*managed
)
9443 struct ldcred
*ldc
= runtime_get_caller_creds();
9444 if ((ldc
->euid
!= geteuid()) && (ldc
->euid
!= 0)) {
9445 return BOOTSTRAP_NOT_PRIVILEGED
;
9448 /* This is so loginwindow doesn't try to quit GUI apps that have been launched
9449 * directly by launchd as agents.
9451 job_t j_for_pid
= jobmgr_find_by_pid_deep(root_jobmgr
, p
, false);
9452 if (j_for_pid
&& !j_for_pid
->anonymous
&& !j_for_pid
->legacy_LS_job
) {
9456 return BOOTSTRAP_SUCCESS
;
9460 job_mig_port_for_label(job_t j
__attribute__((unused
)), name_t label
, mach_port_t
*mp
)
9463 return BOOTSTRAP_NO_MEMORY
;
9466 struct ldcred
*ldc
= runtime_get_caller_creds();
9467 kern_return_t kr
= BOOTSTRAP_NOT_PRIVILEGED
;
9470 if (unlikely(sandbox_check(ldc
->pid
, "job-creation", SANDBOX_FILTER_NONE
) > 0)) {
9471 return BOOTSTRAP_NOT_PRIVILEGED
;
9475 mach_port_t _mp
= MACH_PORT_NULL
;
9476 if (!j
->deny_job_creation
&& (ldc
->euid
== 0 || ldc
->euid
== geteuid())) {
9477 job_t target_j
= job_find(NULL
, label
);
9478 if (jobmgr_assumes(root_jobmgr
, target_j
!= NULL
)) {
9479 if (target_j
->j_port
== MACH_PORT_NULL
) {
9480 (void)job_assumes(target_j
, job_setup_machport(target_j
) == true);
9483 _mp
= target_j
->j_port
;
9484 kr
= _mp
!= MACH_PORT_NULL
? BOOTSTRAP_SUCCESS
: BOOTSTRAP_NO_MEMORY
;
9486 kr
= BOOTSTRAP_NO_MEMORY
;
9495 job_mig_set_security_session(job_t j
, uuid_t uuid
, mach_port_t asport
)
9497 #if TARGET_OS_EMBEDDED
9498 return KERN_SUCCESS
;
9502 return BOOTSTRAP_NO_MEMORY
;
9505 uuid_string_t uuid_str
;
9506 uuid_unparse(uuid
, uuid_str
);
9507 job_log(j
, LOG_DEBUG
, "Setting session %u for UUID %s...", asport
, uuid_str
);
9509 job_t ji
= NULL
, jt
= NULL
;
9510 LIST_FOREACH_SAFE(ji
, &s_needing_sessions
, sle
, jt
) {
9511 uuid_string_t uuid_str2
;
9512 uuid_unparse(ji
->expected_audit_uuid
, uuid_str2
);
9514 if (uuid_compare(uuid
, ji
->expected_audit_uuid
) == 0) {
9515 uuid_clear(ji
->expected_audit_uuid
);
9516 if (asport
!= MACH_PORT_NULL
) {
9517 job_log(ji
, LOG_DEBUG
, "Job should join session with port 0x%x", asport
);
9518 (void)job_assumes_zero(j
, launchd_mport_copy_send(asport
));
9520 job_log(ji
, LOG_DEBUG
, "No session to set for job. Using our session.");
9523 ji
->asport
= asport
;
9524 LIST_REMOVE(ji
, needing_session_sle
);
9526 if (ji
->event_monitor
) {
9529 job_dispatch(ji
, false);
9534 /* Each job that the session port was set for holds a reference. At the end of
9535 * the loop, there will be one extra reference belonging to this MiG protocol.
9536 * We need to release it so that the session goes away when all the jobs
9537 * referencing it are unloaded.
9539 (void)job_assumes_zero(j
, launchd_mport_deallocate(asport
));
9541 return KERN_SUCCESS
;
9545 jobmgr_find_by_name(jobmgr_t jm
, const char *where
)
9549 // NULL is only passed for our custom API for LaunchServices. If that is the case, we do magic.
9550 if (where
== NULL
) {
9551 if (strcasecmp(jm
->name
, VPROCMGR_SESSION_LOGINWINDOW
) == 0) {
9552 where
= VPROCMGR_SESSION_LOGINWINDOW
;
9554 where
= VPROCMGR_SESSION_AQUA
;
9558 if (strcasecmp(jm
->name
, where
) == 0) {
9562 if (strcasecmp(where
, VPROCMGR_SESSION_BACKGROUND
) == 0 && !pid1_magic
) {
9567 SLIST_FOREACH(jmi
, &root_jobmgr
->submgrs
, sle
) {
9568 if (unlikely(jmi
->shutting_down
)) {
9570 } else if (jmi
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
) {
9572 } else if (strcasecmp(jmi
->name
, where
) == 0) {
9574 } else if (strcasecmp(jmi
->name
, VPROCMGR_SESSION_BACKGROUND
) == 0 && pid1_magic
) {
9575 SLIST_FOREACH(jmi2
, &jmi
->submgrs
, sle
) {
9576 if (strcasecmp(jmi2
->name
, where
) == 0) {
9589 job_mig_move_subset(job_t j
, mach_port_t target_subset
, name_t session_type
, mach_port_t asport
, uint64_t flags
)
9591 mach_msg_type_number_t l2l_i
, l2l_port_cnt
= 0;
9592 mach_port_array_t l2l_ports
= NULL
;
9593 mach_port_t reqport
, rcvright
;
9594 kern_return_t kr
= 1;
9595 launch_data_t out_obj_array
= NULL
;
9596 struct ldcred
*ldc
= runtime_get_caller_creds();
9597 jobmgr_t jmr
= NULL
;
9600 return BOOTSTRAP_NO_MEMORY
;
9603 if (job_mig_intran2(root_jobmgr
, target_subset
, ldc
->pid
)) {
9604 job_log(j
, LOG_ERR
, "Moving a session to ourself is bogus.");
9606 kr
= BOOTSTRAP_NOT_PRIVILEGED
;
9610 job_log(j
, LOG_DEBUG
, "Move subset attempt: 0x%x", target_subset
);
9612 kr
= _vproc_grab_subset(target_subset
, &reqport
, &rcvright
, &out_obj_array
, &l2l_ports
, &l2l_port_cnt
);
9613 if (job_assumes_zero(j
, kr
) != 0) {
9617 if (launch_data_array_get_count(out_obj_array
) != l2l_port_cnt
) {
9618 os_assert_zero(l2l_port_cnt
);
9621 if (!job_assumes(j
, (jmr
= jobmgr_new(j
->mgr
, reqport
, rcvright
, false, session_type
, false, asport
)) != NULL
)) {
9622 kr
= BOOTSTRAP_NO_MEMORY
;
9626 if (strcmp(session_type
, VPROCMGR_SESSION_AQUA
) == 0) {
9627 jobmgr_log(jmr
, LOG_NOTICE
, "Registering new GUI session.");
9628 kr
= vproc_mig_register_gui_session(inherited_bootstrap_port
, asport
);
9630 jobmgr_log(jmr
, LOG_ERR
, "Failed to register GUI session with PID 1: 0x%x/0x%x", inherited_bootstrap_port
, kr
);
9634 jmr
->properties
|= BOOTSTRAP_PROPERTY_MOVEDSUBSET
;
9636 /* This is a hack. We should be doing this in jobmgr_new(), but since we're in the middle of
9637 * processing an IPC request, we'll do this action before the new job manager can get any IPC
9638 * requests. This serialization is guaranteed since we are single-threaded in that respect.
9640 if (flags
& LAUNCH_GLOBAL_ON_DEMAND
) {
9641 // This is so awful.
9642 // Remove the job from its current job manager.
9643 LIST_REMOVE(j
, sle
);
9644 LIST_REMOVE(j
, pid_hash_sle
);
9646 // Put the job into the target job manager.
9647 LIST_INSERT_HEAD(&jmr
->jobs
, j
, sle
);
9648 LIST_INSERT_HEAD(&jmr
->active_jobs
[ACTIVE_JOB_HASH(j
->p
)], j
, pid_hash_sle
);
9651 job_set_global_on_demand(j
, true);
9653 if (!j
->holds_ref
) {
9654 job_log(j
, LOG_PERF
, "Job moved subset into: %s", j
->mgr
->name
);
9655 j
->holds_ref
= true;
9660 for (l2l_i
= 0; l2l_i
< l2l_port_cnt
; l2l_i
++) {
9661 launch_data_t tmp
, obj_at_idx
;
9662 struct machservice
*ms
;
9663 job_t j_for_service
;
9664 const char *serv_name
;
9668 (void)job_assumes(j
, obj_at_idx
= launch_data_array_get_index(out_obj_array
, l2l_i
));
9669 (void)job_assumes(j
, tmp
= launch_data_dict_lookup(obj_at_idx
, TAKE_SUBSET_PID
));
9670 target_pid
= (pid_t
)launch_data_get_integer(tmp
);
9671 (void)job_assumes(j
, tmp
= launch_data_dict_lookup(obj_at_idx
, TAKE_SUBSET_PERPID
));
9672 serv_perpid
= launch_data_get_bool(tmp
);
9673 (void)job_assumes(j
, tmp
= launch_data_dict_lookup(obj_at_idx
, TAKE_SUBSET_NAME
));
9674 serv_name
= launch_data_get_string(tmp
);
9676 j_for_service
= jobmgr_find_by_pid(jmr
, target_pid
, true);
9678 if (unlikely(!j_for_service
)) {
9679 // The PID probably exited
9680 (void)job_assumes_zero(j
, launchd_mport_deallocate(l2l_ports
[l2l_i
]));
9684 if (likely(ms
= machservice_new(j_for_service
, serv_name
, &l2l_ports
[l2l_i
], serv_perpid
))) {
9685 job_log(j
, LOG_DEBUG
, "Importing %s into new bootstrap.", serv_name
);
9686 machservice_request_notifications(ms
);
9693 if (out_obj_array
) {
9694 launch_data_free(out_obj_array
);
9698 mig_deallocate((vm_address_t
)l2l_ports
, l2l_port_cnt
* sizeof(l2l_ports
[0]));
9702 if (target_subset
) {
9703 (void)job_assumes_zero(j
, launchd_mport_deallocate(target_subset
));
9706 (void)job_assumes_zero(j
, launchd_mport_deallocate(asport
));
9709 jobmgr_shutdown(jmr
);
9716 job_mig_init_session(job_t j
, name_t session_type
, mach_port_t asport
)
9719 return BOOTSTRAP_NO_MEMORY
;
9724 kern_return_t kr
= BOOTSTRAP_NO_MEMORY
;
9725 if (j
->mgr
->session_initialized
) {
9726 job_log(j
, LOG_ERR
, "Tried to initialize an already setup session!");
9727 kr
= BOOTSTRAP_NOT_PRIVILEGED
;
9728 } else if (strcmp(session_type
, VPROCMGR_SESSION_LOGINWINDOW
) == 0) {
9734 * We're working around LoginWindow and the WindowServer.
9736 * In practice, there is only one LoginWindow session. Unfortunately, for certain
9737 * scenarios, the WindowServer spawns loginwindow, and in those cases, it frequently
9738 * spawns a replacement loginwindow session before cleaning up the previous one.
9740 * We're going to use the creation of a new LoginWindow context as a clue that the
9741 * previous LoginWindow context is on the way out and therefore we should just
9742 * kick-start the shutdown of it.
9745 SLIST_FOREACH(jmi
, &root_jobmgr
->submgrs
, sle
) {
9746 if (unlikely(jmi
->shutting_down
)) {
9748 } else if (strcasecmp(jmi
->name
, session_type
) == 0) {
9749 jobmgr_shutdown(jmi
);
9753 } else if (strcmp(session_type
, VPROCMGR_SESSION_AQUA
) == 0) {
9754 (void)job_assumes_zero(j
, runtime_remove_mport(j
->mgr
->jm_port
));
9757 jobmgr_log(j
->mgr
, LOG_DEBUG
, "Initializing as %s", session_type
);
9758 strcpy(j
->mgr
->name_init
, session_type
);
9760 if (job_assumes(j
, (j2
= jobmgr_init_session(j
->mgr
, session_type
, false)))) {
9761 j2
->asport
= asport
;
9762 (void)job_assumes(j
, job_dispatch(j2
, true));
9763 kr
= BOOTSTRAP_SUCCESS
;
9770 job_mig_switch_to_session(job_t j
, mach_port_t requestor_port
, name_t session_name
, mach_port_t asport
, mach_port_t
*new_bsport
)
9772 struct ldcred
*ldc
= runtime_get_caller_creds();
9773 if (!jobmgr_assumes(root_jobmgr
, j
!= NULL
)) {
9774 jobmgr_log(root_jobmgr
, LOG_ERR
, "%s() called with NULL job: PID %d", __func__
, ldc
->pid
);
9775 return BOOTSTRAP_NO_MEMORY
;
9778 if (j
->mgr
->shutting_down
) {
9779 return BOOTSTRAP_UNKNOWN_SERVICE
;
9782 job_log(j
, LOG_DEBUG
, "Job wants to move to %s session.", session_name
);
9784 if (!job_assumes(j
, pid1_magic
== false)) {
9785 job_log(j
, LOG_WARNING
, "Switching sessions is not allowed in the system Mach bootstrap.");
9786 return BOOTSTRAP_NOT_PRIVILEGED
;
9789 if (!j
->anonymous
) {
9790 job_log(j
, LOG_NOTICE
, "Non-anonymous job tried to switch sessions. Please use LimitLoadToSessionType instead.");
9791 return BOOTSTRAP_NOT_PRIVILEGED
;
9794 jobmgr_t target_jm
= jobmgr_find_by_name(root_jobmgr
, session_name
);
9795 if (target_jm
== j
->mgr
) {
9796 job_log(j
, LOG_DEBUG
, "Job is already in its desired session (%s).", session_name
);
9797 (void)job_assumes_zero(j
, launchd_mport_deallocate(asport
));
9798 (void)job_assumes_zero(j
, launchd_mport_deallocate(requestor_port
));
9799 *new_bsport
= target_jm
->jm_port
;
9800 return BOOTSTRAP_SUCCESS
;
9804 target_jm
= jobmgr_new(j
->mgr
, requestor_port
, MACH_PORT_NULL
, false, session_name
, false, asport
);
9806 target_jm
->properties
|= BOOTSTRAP_PROPERTY_IMPLICITSUBSET
;
9807 (void)job_assumes_zero(j
, launchd_mport_deallocate(asport
));
9811 if (!job_assumes(j
, target_jm
!= NULL
)) {
9812 job_log(j
, LOG_WARNING
, "Could not find %s session!", session_name
);
9813 return BOOTSTRAP_NO_MEMORY
;
9816 // Remove the job from it's current job manager.
9817 LIST_REMOVE(j
, sle
);
9818 LIST_REMOVE(j
, pid_hash_sle
);
9820 job_t ji
= NULL
, jit
= NULL
;
9821 LIST_FOREACH_SAFE(ji
, &j
->mgr
->global_env_jobs
, global_env_sle
, jit
) {
9823 LIST_REMOVE(ji
, global_env_sle
);
9828 // Put the job into the target job manager.
9829 LIST_INSERT_HEAD(&target_jm
->jobs
, j
, sle
);
9830 LIST_INSERT_HEAD(&target_jm
->active_jobs
[ACTIVE_JOB_HASH(j
->p
)], j
, pid_hash_sle
);
9833 LIST_INSERT_HEAD(&target_jm
->global_env_jobs
, j
, global_env_sle
);
9836 // Move our Mach services over if we're not in a flat namespace.
9837 if (!launchd_flat_mach_namespace
&& !SLIST_EMPTY(&j
->machservices
)) {
9838 struct machservice
*msi
= NULL
, *msit
= NULL
;
9839 SLIST_FOREACH_SAFE(msi
, &j
->machservices
, sle
, msit
) {
9840 LIST_REMOVE(msi
, name_hash_sle
);
9841 LIST_INSERT_HEAD(&target_jm
->ms_hash
[hash_ms(msi
->name
)], msi
, name_hash_sle
);
9847 if (!j
->holds_ref
) {
9848 /* Anonymous jobs which move around are particularly interesting to us, so we want to
9849 * stick around while they're still around.
9850 * For example, login calls into the PAM launchd module, which moves the process into
9851 * the StandardIO session by default. So we'll hold a reference on that job to prevent
9852 * ourselves from going away.
9854 j
->holds_ref
= true;
9855 job_log(j
, LOG_PERF
, "Job switched into manager: %s", j
->mgr
->name
);
9859 *new_bsport
= target_jm
->jm_port
;
9861 return KERN_SUCCESS
;
9865 job_mig_take_subset(job_t j
, mach_port_t
*reqport
, mach_port_t
*rcvright
,
9866 vm_offset_t
*outdata
, mach_msg_type_number_t
*outdataCnt
,
9867 mach_port_array_t
*portsp
, unsigned int *ports_cnt
)
9869 launch_data_t tmp_obj
, tmp_dict
, outdata_obj_array
= NULL
;
9870 mach_port_array_t ports
= NULL
;
9871 unsigned int cnt
= 0, cnt2
= 0;
9873 struct machservice
*ms
;
9878 return BOOTSTRAP_NO_MEMORY
;
9883 if (unlikely(!pid1_magic
)) {
9884 job_log(j
, LOG_ERR
, "Only the system launchd will transfer Mach sub-bootstraps.");
9885 return BOOTSTRAP_NOT_PRIVILEGED
;
9887 if (unlikely(jobmgr_parent(jm
) == NULL
)) {
9888 job_log(j
, LOG_ERR
, "Root Mach bootstrap cannot be transferred.");
9889 return BOOTSTRAP_NOT_PRIVILEGED
;
9891 if (unlikely(strcasecmp(jm
->name
, VPROCMGR_SESSION_AQUA
) == 0)) {
9892 job_log(j
, LOG_ERR
, "Cannot transfer a setup GUI session.");
9893 return BOOTSTRAP_NOT_PRIVILEGED
;
9895 if (unlikely(!j
->anonymous
)) {
9896 job_log(j
, LOG_ERR
, "Only the anonymous job can transfer Mach sub-bootstraps.");
9897 return BOOTSTRAP_NOT_PRIVILEGED
;
9900 job_log(j
, LOG_DEBUG
, "Transferring sub-bootstrap to the per session launchd.");
9902 outdata_obj_array
= launch_data_alloc(LAUNCH_DATA_ARRAY
);
9903 if (!job_assumes(j
, outdata_obj_array
)) {
9907 *outdataCnt
= 20 * 1024 * 1024;
9908 mig_allocate(outdata
, *outdataCnt
);
9909 if (!job_assumes(j
, *outdata
!= 0)) {
9913 LIST_FOREACH(ji
, &j
->mgr
->jobs
, sle
) {
9914 if (!ji
->anonymous
) {
9917 SLIST_FOREACH(ms
, &ji
->machservices
, sle
) {
9922 mig_allocate((vm_address_t
*)&ports
, cnt
* sizeof(ports
[0]));
9923 if (!job_assumes(j
, ports
!= NULL
)) {
9927 LIST_FOREACH(ji
, &j
->mgr
->jobs
, sle
) {
9928 if (!ji
->anonymous
) {
9932 SLIST_FOREACH(ms
, &ji
->machservices
, sle
) {
9933 if (job_assumes(j
, (tmp_dict
= launch_data_alloc(LAUNCH_DATA_DICTIONARY
)))) {
9934 (void)job_assumes(j
, launch_data_array_set_index(outdata_obj_array
, tmp_dict
, cnt2
));
9939 if (job_assumes(j
, (tmp_obj
= launch_data_new_string(machservice_name(ms
))))) {
9940 (void)job_assumes(j
, launch_data_dict_insert(tmp_dict
, tmp_obj
, TAKE_SUBSET_NAME
));
9945 if (job_assumes(j
, (tmp_obj
= launch_data_new_integer((ms
->job
->p
))))) {
9946 (void)job_assumes(j
, launch_data_dict_insert(tmp_dict
, tmp_obj
, TAKE_SUBSET_PID
));
9951 if (job_assumes(j
, (tmp_obj
= launch_data_new_bool((ms
->per_pid
))))) {
9952 (void)job_assumes(j
, launch_data_dict_insert(tmp_dict
, tmp_obj
, TAKE_SUBSET_PERPID
));
9957 ports
[cnt2
] = machservice_port(ms
);
9959 // Increment the send right by one so we can shutdown the jobmgr cleanly
9960 (void)jobmgr_assumes_zero(jm
, launchd_mport_copy_send(ports
[cnt2
]));
9965 (void)job_assumes(j
, cnt
== cnt2
);
9967 runtime_ktrace0(RTKT_LAUNCHD_DATA_PACK
);
9968 packed_size
= launch_data_pack(outdata_obj_array
, (void *)*outdata
, *outdataCnt
, NULL
, NULL
);
9969 if (!job_assumes(j
, packed_size
!= 0)) {
9973 launch_data_free(outdata_obj_array
);
9978 *reqport
= jm
->req_port
;
9979 *rcvright
= jm
->jm_port
;
9984 workaround_5477111
= j
;
9986 jobmgr_shutdown(jm
);
9988 return BOOTSTRAP_SUCCESS
;
9991 if (outdata_obj_array
) {
9992 launch_data_free(outdata_obj_array
);
9995 mig_deallocate(*outdata
, *outdataCnt
);
9998 mig_deallocate((vm_address_t
)ports
, cnt
* sizeof(ports
[0]));
10001 return BOOTSTRAP_NO_MEMORY
;
10005 job_mig_subset(job_t j
, mach_port_t requestorport
, mach_port_t
*subsetportp
)
10011 return BOOTSTRAP_NO_MEMORY
;
10013 if (j
->mgr
->shutting_down
) {
10014 return BOOTSTRAP_UNKNOWN_SERVICE
;
10019 while ((jmr
= jobmgr_parent(jmr
)) != NULL
) {
10023 // Since we use recursion, we need an artificial depth for subsets
10024 if (unlikely(bsdepth
> 100)) {
10025 job_log(j
, LOG_ERR
, "Mach sub-bootstrap create request failed. Depth greater than: %d", bsdepth
);
10026 return BOOTSTRAP_NO_MEMORY
;
10029 char name
[NAME_MAX
];
10030 snprintf(name
, sizeof(name
), "%s[%i].subset.%i", j
->anonymous
? j
->prog
: j
->label
, j
->p
, MACH_PORT_INDEX(requestorport
));
10032 if (!job_assumes(j
, (jmr
= jobmgr_new(j
->mgr
, requestorport
, MACH_PORT_NULL
, false, name
, true, j
->asport
)) != NULL
)) {
10033 if (unlikely(requestorport
== MACH_PORT_NULL
)) {
10034 return BOOTSTRAP_NOT_PRIVILEGED
;
10036 return BOOTSTRAP_NO_MEMORY
;
10039 *subsetportp
= jmr
->jm_port
;
10040 jmr
->properties
|= BOOTSTRAP_PROPERTY_EXPLICITSUBSET
;
10042 /* A job could create multiple subsets, so only add a reference the first time
10043 * it does so we don't have to keep a count.
10045 if (j
->anonymous
&& !j
->holds_ref
) {
10046 job_log(j
, LOG_PERF
, "Job created subset: %s", jmr
->name
);
10047 j
->holds_ref
= true;
10051 job_log(j
, LOG_DEBUG
, "Job created a subset named \"%s\"", jmr
->name
);
10052 return BOOTSTRAP_SUCCESS
;
10056 _xpc_domain_import_service(jobmgr_t jm
, launch_data_t pload
)
10058 jobmgr_t where2put
= NULL
;
10060 if (launch_data_get_type(pload
) != LAUNCH_DATA_DICTIONARY
) {
10065 launch_data_t ldlabel
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_LABEL
);
10066 if (!ldlabel
|| launch_data_get_type(ldlabel
) != LAUNCH_DATA_STRING
) {
10071 const char *label
= launch_data_get_string(ldlabel
);
10072 jobmgr_log(jm
, LOG_DEBUG
, "Importing service: %s", label
);
10074 launch_data_t destname
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_XPCDOMAIN
);
10076 bool supported_domain
= false;
10078 if (launch_data_get_type(destname
) == LAUNCH_DATA_STRING
) {
10079 const char *str
= launch_data_get_string(destname
);
10080 if (strcmp(str
, XPC_DOMAIN_TYPE_SYSTEM
) == 0) {
10081 where2put
= _s_xpc_system_domain
;
10082 } else if (strcmp(str
, XPC_DOMAIN_TYPE_PERUSER
) == 0) {
10083 where2put
= jobmgr_find_xpc_per_user_domain(jm
, jm
->req_euid
);
10084 supported_domain
= true;
10085 } else if (strcmp(str
, XPC_DOMAIN_TYPE_PERSESSION
) == 0) {
10086 where2put
= jobmgr_find_xpc_per_session_domain(jm
, jm
->req_asid
);
10088 jobmgr_log(jm
, LOG_ERR
, "Invalid XPC domain type: %s", str
);
10092 jobmgr_log(jm
, LOG_ERR
, "XPC domain type is not a string.");
10096 if (where2put
&& !supported_domain
) {
10097 launch_data_t mi
= NULL
;
10098 if ((mi
= launch_data_dict_lookup(pload
, LAUNCH_JOBKEY_MULTIPLEINSTANCES
))) {
10099 if (launch_data_get_type(mi
) == LAUNCH_DATA_BOOL
&& launch_data_get_bool(mi
)) {
10100 jobmgr_log(where2put
, LOG_ERR
, "Multiple-instance services are not supported in this domain.");
10112 /* Gross. If the service already exists in a singleton domain, then
10113 * jobmgr_import2() will return the existing job. But if we fail to alias
10114 * this job, we will normally want to remove it. But if we did not create
10115 * it in the first place, then we need to avoid removing it. So check
10116 * errno against EEXIST in the success case and if it's EEXIST, then do
10117 * not remove the original job in the event of a failed alias.
10119 * This really needs to be re-thought, but I think it'll require a larger
10120 * evaluation of launchd's data structures. Right now, once a job is
10121 * imported into a singleton domain, it won't be removed until the system
10122 * shuts down, but that may not always be true. If it ever changes, we'll
10123 * have a problem because we'll have to account for all existing aliases
10124 * and clean them up somehow. Or just start ref-counting. I knew this
10125 * aliasing stuff would be trouble...
10127 * <rdar://problem/10646503>
10129 jobmgr_log(where2put
, LOG_DEBUG
, "Importing service...");
10132 if ((j
= jobmgr_import2(where2put
, pload
))) {
10133 bool created
= (errno
!= EEXIST
);
10134 j
->xpc_service
= true;
10136 if (where2put
->xpc_singleton
) {
10137 /* If the service was destined for one of the global domains,
10138 * then we have to alias it into our local domain to reserve the
10142 if (!(ja
= job_new_alias(jm
, j
))) {
10143 /* If we failed to alias the job because of a conflict over
10144 * the label, then we remove it from the global domain. We
10145 * don't want to risk having imported a malicious job into
10146 * one of the global domains.
10148 if (errno
!= EEXIST
) {
10149 job_log(j
, LOG_ERR
, "Failed to alias job into: %s: %d: %s", where2put
->name
, errno
, strerror(errno
));
10155 jobmgr_log(jm
, LOG_WARNING
, "Singleton service already existed in job-local namespace. Removing: %s", j
->label
);
10161 jobmgr_log(jm
, LOG_DEBUG
, "Aliased service into local domain: %s", j
->label
);
10162 (void)job_dispatch(j
, false);
10163 ja
->xpc_service
= true;
10167 (void)job_dispatch(j
, false);
10171 jobmgr_log(jm
, LOG_DEBUG
, "Could not find destination for service: %s", label
);
10178 _xpc_domain_import_services(job_t j
, launch_data_t services
)
10180 int error
= EINVAL
;
10181 if (launch_data_get_type(services
) != LAUNCH_DATA_ARRAY
) {
10186 size_t c
= launch_data_array_get_count(services
);
10187 jobmgr_log(j
->mgr
, LOG_DEBUG
, "Importing new services: %lu", c
);
10189 for (i
= 0; i
< c
; i
++) {
10190 jobmgr_log(j
->mgr
, LOG_DEBUG
, "Importing service at index: %lu", i
);
10193 launch_data_t ploadi
= launch_data_array_get_index(services
, i
);
10194 if (!(nj
= _xpc_domain_import_service(j
->mgr
, ploadi
))) {
10195 if (!j
->mgr
->session_initialized
&& errno
) {
10196 /* Service import failures are only fatal if the domain is being
10197 * initialized. If we're extending the domain, we can run into
10198 * errors with services already existing, so we just ignore them.
10199 * In the case of a domain extension, we don't want to halt the
10200 * operation if we run into an error with one service.
10202 * <rdar://problem/10842779>
10204 jobmgr_log(j
->mgr
, LOG_ERR
, "Failed to import service at index: %lu: %d: %s", i
, errno
, strerror(errno
));
10209 jobmgr_log(j
->mgr
, LOG_DEBUG
, "Imported service: %s", nj
->label
);
10221 xpc_domain_import2(job_t j
, mach_port_t reqport
, mach_port_t dport
)
10223 if (unlikely(!pid1_magic
)) {
10224 job_log(j
, LOG_ERR
, "XPC domains may only reside in PID 1.");
10225 return BOOTSTRAP_NOT_PRIVILEGED
;
10227 if (!j
|| !MACH_PORT_VALID(reqport
)) {
10228 return BOOTSTRAP_UNKNOWN_SERVICE
;
10230 if (root_jobmgr
->shutting_down
) {
10231 jobmgr_log(root_jobmgr
, LOG_ERR
, "Attempt to create new domain while shutting down.");
10232 return BOOTSTRAP_NOT_PRIVILEGED
;
10234 if (!j
->xpc_bootstrapper
) {
10235 job_log(j
, LOG_ERR
, "Attempt to create new XPC domain by unprivileged job.");
10236 return BOOTSTRAP_NOT_PRIVILEGED
;
10239 kern_return_t kr
= BOOTSTRAP_NO_MEMORY
;
10240 /* All XPC domains are children of the root job manager. What we're creating
10241 * here is really just a skeleton. By creating it, we're adding reqp to our
10242 * port set. It will have two messages on it. The first specifies the
10243 * environment of the originator. This is so we can cache it and hand it to
10244 * xpcproxy to bootstrap our services. The second is the set of jobs that is
10245 * to be bootstrapped in.
10247 jobmgr_t jm
= jobmgr_new(root_jobmgr
, reqport
, dport
, false, NULL
, true, MACH_PORT_NULL
);
10248 if (job_assumes(j
, jm
!= NULL
)) {
10249 jm
->properties
|= BOOTSTRAP_PROPERTY_XPC_DOMAIN
;
10250 jm
->shortdesc
= "private";
10251 kr
= BOOTSTRAP_SUCCESS
;
10258 xpc_domain_set_environment(job_t j
, mach_port_t rp
, mach_port_t bsport
, mach_port_t excport
, vm_offset_t ctx
, mach_msg_type_number_t ctx_sz
)
10261 /* Due to the whacky nature of XPC service bootstrapping, we can end up
10262 * getting this message long after the requesting process has gone away.
10263 * See <rdar://problem/8593143>.
10265 return BOOTSTRAP_UNKNOWN_SERVICE
;
10268 jobmgr_t jm
= j
->mgr
;
10269 if (!(jm
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
)) {
10270 return BOOTSTRAP_NOT_PRIVILEGED
;
10273 if (jm
->req_asport
!= MACH_PORT_NULL
) {
10274 return BOOTSTRAP_NOT_PRIVILEGED
;
10277 struct ldcred
*ldc
= runtime_get_caller_creds();
10278 struct proc_bsdinfowithuniqid proc
;
10279 if (proc_pidinfo(ldc
->pid
, PROC_PIDT_BSDINFOWITHUNIQID
, 1, &proc
, PROC_PIDT_BSDINFOWITHUNIQID_SIZE
) == 0) {
10280 if (errno
!= ESRCH
) {
10281 (void)jobmgr_assumes_zero(jm
, errno
);
10286 return BOOTSTRAP_NO_MEMORY
;
10289 #if !TARGET_OS_EMBEDDED
10290 if (jobmgr_assumes_zero(jm
, audit_session_port(ldc
->asid
, &jm
->req_asport
)) != 0) {
10293 job_log(j
, LOG_ERR
, "Failed to get port for ASID: %u", ldc
->asid
);
10294 return BOOTSTRAP_NOT_PRIVILEGED
;
10297 jm
->req_asport
= MACH_PORT_DEAD
;
10300 struct waiting4attach
*w4ai
= NULL
;
10301 struct waiting4attach
*w4ait
= NULL
;
10302 LIST_FOREACH_SAFE(w4ai
, &_launchd_domain_waiters
, le
, w4ait
) {
10303 if (w4ai
->dest
== ldc
->pid
) {
10304 jobmgr_log(jm
, LOG_DEBUG
, "Migrating attach for: %s", w4ai
->name
);
10305 LIST_REMOVE(w4ai
, le
);
10306 LIST_INSERT_HEAD(&jm
->attaches
, w4ai
, le
);
10311 (void)snprintf(jm
->name_init
, NAME_MAX
, "com.apple.xpc.domain.%s.%d", proc
.pbsd
.pbi_comm
, ldc
->pid
);
10312 strlcpy(jm
->owner
, proc
.pbsd
.pbi_comm
, sizeof(jm
->owner
));
10313 jm
->req_bsport
= bsport
;
10314 jm
->req_excport
= excport
;
10315 jm
->req_rport
= rp
;
10317 jm
->req_ctx_sz
= ctx_sz
;
10318 jm
->req_pid
= ldc
->pid
;
10319 jm
->req_euid
= ldc
->euid
;
10320 jm
->req_egid
= ldc
->egid
;
10321 jm
->req_asid
= ldc
->asid
;
10322 jm
->req_uniqueid
= proc
.p_uniqidentifier
.p_uniqueid
;
10324 return KERN_SUCCESS
;
10328 xpc_domain_load_services(job_t j
, vm_offset_t services_buff
, mach_msg_type_number_t services_sz
)
10331 return BOOTSTRAP_UNKNOWN_SERVICE
;
10334 job_t rootj
= jobmgr_find_by_pid(root_jobmgr
, j
->p
, false);
10335 if (!(rootj
&& rootj
->xpc_bootstrapper
)) {
10336 job_log(j
, LOG_ERR
, "Attempt to load services into XPC domain by unprivileged job.");
10337 return BOOTSTRAP_NOT_PRIVILEGED
;
10340 // This is just for XPC domains (for now).
10341 if (!(j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
)) {
10342 return BOOTSTRAP_NOT_PRIVILEGED
;
10344 if (j
->mgr
->session_initialized
) {
10345 jobmgr_log(j
->mgr
, LOG_ERR
, "Attempt to initialize an already-initialized XPC domain.");
10346 return BOOTSTRAP_NOT_PRIVILEGED
;
10350 launch_data_t services
= launch_data_unpack((void *)services_buff
, services_sz
, NULL
, 0, &offset
, NULL
);
10352 return BOOTSTRAP_NO_MEMORY
;
10355 int error
= _xpc_domain_import_services(j
, services
);
10357 j
->mgr
->error
= error
;
10358 jobmgr_log(j
->mgr
, LOG_ERR
, "Obliterating domain.");
10359 jobmgr_remove(j
->mgr
);
10361 j
->mgr
->session_initialized
= true;
10362 (void)jobmgr_assumes_zero(j
->mgr
, xpc_call_wakeup(j
->mgr
->req_rport
, BOOTSTRAP_SUCCESS
));
10363 j
->mgr
->req_rport
= MACH_PORT_NULL
;
10365 /* Returning a failure code will destroy the message, whereas returning
10366 * success will not, so we need to clean up here.
10368 mig_deallocate(services_buff
, services_sz
);
10369 error
= BOOTSTRAP_SUCCESS
;
10376 xpc_domain_check_in(job_t j
, mach_port_t
*bsport
, mach_port_t
*sbsport
,
10377 mach_port_t
*excport
, mach_port_t
*asport
, uint32_t *uid
, uint32_t *gid
,
10378 int32_t *asid
, vm_offset_t
*ctx
, mach_msg_type_number_t
*ctx_sz
)
10380 if (!jobmgr_assumes(root_jobmgr
, j
!= NULL
)) {
10381 return BOOTSTRAP_UNKNOWN_SERVICE
;
10383 jobmgr_t jm
= j
->mgr
;
10384 if (!(jm
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
)) {
10385 return BOOTSTRAP_NOT_PRIVILEGED
;
10388 if (jm
->req_asport
== MACH_PORT_NULL
) {
10389 return BOOTSTRAP_NOT_PRIVILEGED
;
10392 *bsport
= jm
->req_bsport
;
10393 *sbsport
= root_jobmgr
->jm_port
;
10394 *excport
= jm
->req_excport
;
10395 if (j
->joins_gui_session
) {
10396 if (jm
->req_gui_asport
) {
10397 *asport
= jm
->req_gui_asport
;
10399 job_log(j
, LOG_NOTICE
, "No GUI session set for UID of user service. This service may not act properly.");
10400 *asport
= jm
->req_asport
;
10403 *asport
= jm
->req_asport
;
10406 *uid
= jm
->req_euid
;
10407 *gid
= jm
->req_egid
;
10408 *asid
= jm
->req_asid
;
10410 *ctx
= jm
->req_ctx
;
10411 *ctx_sz
= jm
->req_ctx_sz
;
10413 return KERN_SUCCESS
;
10417 xpc_domain_get_service_name(job_t j
, event_name_t name
)
10420 return BOOTSTRAP_NO_MEMORY
;
10423 if (!j
->xpc_service
) {
10424 jobmgr_log(j
->mgr
, LOG_ERR
, "Attempt to get service name by non-XPC service: %s", j
->label
);
10425 return BOOTSTRAP_NOT_PRIVILEGED
;
10428 const char *what2find
= j
->label
;
10429 if (j
->dedicated_instance
) {
10430 what2find
= j
->original
->label
;
10433 struct machservice
*msi
= NULL
;
10434 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
10435 if (strcmp(msi
->name
, what2find
) == 0) {
10441 jobmgr_log(j
->mgr
, LOG_ERR
, "Attempt to get service name that does not exist: %s", j
->label
);
10442 return BOOTSTRAP_UNKNOWN_SERVICE
;
10445 (void)strlcpy(name
, msi
->name
, sizeof(event_name_t
));
10446 return BOOTSTRAP_SUCCESS
;
10449 #if XPC_LPI_VERSION >= 20111216
10451 xpc_domain_add_services(job_t j
, vm_offset_t services_buff
, mach_msg_type_number_t services_sz
)
10454 return BOOTSTRAP_UNKNOWN_SERVICE
;
10457 job_t rootj
= jobmgr_find_by_pid(root_jobmgr
, j
->p
, false);
10458 if (!(rootj
&& rootj
->xpc_bootstrapper
)) {
10459 job_log(j
, LOG_ERR
, "Attempt to add service to XPC domain by unprivileged job.");
10460 return BOOTSTRAP_NOT_PRIVILEGED
;
10463 if (!(j
->mgr
->properties
& BOOTSTRAP_PROPERTY_XPC_DOMAIN
)) {
10464 return BOOTSTRAP_NOT_PRIVILEGED
;
10468 launch_data_t services
= launch_data_unpack((void *)services_buff
, services_sz
, NULL
, 0, &offset
, NULL
);
10470 return BOOTSTRAP_NO_MEMORY
;
10473 int error
= _xpc_domain_import_services(j
, services
);
10475 mig_deallocate(services_buff
, services_sz
);
10482 #pragma mark XPC Events
10484 xpc_event_find_channel(job_t j
, const char *stream
, struct machservice
**ms
)
10486 int error
= EXNOMEM
;
10487 struct machservice
*msi
= NULL
;
10488 SLIST_FOREACH(msi
, &j
->machservices
, sle
) {
10489 if (strcmp(stream
, msi
->name
) == 0) {
10495 mach_port_t sp
= MACH_PORT_NULL
;
10496 msi
= machservice_new(j
, stream
, &sp
, false);
10501 job_log(j
, LOG_DEBUG
, "Creating new MachService for stream: %s", stream
);
10502 /* Hack to keep this from being publicly accessible through
10503 * bootstrap_look_up().
10505 if (!j
->dedicated_instance
) {
10506 LIST_REMOVE(msi
, name_hash_sle
);
10508 msi
->event_channel
= true;
10510 /* If we call job_dispatch() here before the audit session for the job
10511 * has been set, we'll end up not watching this service. But we also have
10512 * to take care not to watch the port if the job is active.
10514 * See <rdar://problem/10357855>.
10516 if (!j
->currently_ignored
) {
10517 machservice_watch(j
, msi
);
10522 } else if (!msi
->event_channel
) {
10523 job_log(j
, LOG_ERR
, "This job registered a MachService name identical to the requested event channel name: %s", stream
);
10534 xpc_event_get_event_name(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10536 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10541 uint64_t token
= xpc_dictionary_get_uint64(request
, XPC_EVENT_ROUTINE_KEY_TOKEN
);
10546 job_log(j
, LOG_DEBUG
, "Getting event name for stream/token: %s/0x%llu", stream
, token
);
10548 int result
= ESRCH
;
10549 struct externalevent
*event
= externalevent_find(stream
, token
);
10550 if (event
&& j
->event_monitor
) {
10551 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10552 xpc_dictionary_set_string(reply2
, XPC_EVENT_ROUTINE_KEY_NAME
, event
->name
);
10555 job_log(j
, LOG_DEBUG
, "Found: %s", event
->name
);
10563 xpc_event_copy_entitlements(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10565 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10570 uint64_t token
= xpc_dictionary_get_uint64(request
, XPC_EVENT_ROUTINE_KEY_TOKEN
);
10575 job_log(j
, LOG_DEBUG
, "Getting entitlements for stream/token: %s/0x%llu", stream
, token
);
10577 int result
= ESRCH
;
10578 struct externalevent
*event
= externalevent_find(stream
, token
);
10579 if (event
&& j
->event_monitor
) {
10580 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10581 xpc_dictionary_set_value(reply2
, XPC_EVENT_ROUTINE_KEY_ENTITLEMENTS
, event
->entitlements
);
10584 job_log(j
, LOG_DEBUG
, "Found: %s", event
->name
);
10591 // TODO - can be removed with rdar://problem/12666150
10592 #ifndef XPC_EVENT_FLAG_ALLOW_UNMANAGED
10593 #define XPC_EVENT_FLAG_ALLOW_UNMANAGED (1 << 1)
10597 xpc_event_set_event(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10599 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10604 const char *key
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_NAME
);
10609 xpc_object_t event
= xpc_dictionary_get_value(request
, XPC_EVENT_ROUTINE_KEY_EVENT
);
10610 if (event
&& xpc_get_type(event
) != XPC_TYPE_DICTIONARY
) {
10614 uint64_t flags
= xpc_dictionary_get_uint64(request
, XPC_EVENT_ROUTINE_KEY_FLAGS
);
10616 /* Don't allow events to be set for anonymous jobs unless specifically
10617 * requested in the flags. Only permit this for internal development.
10619 if (j
->anonymous
&& ((flags
& XPC_EVENT_FLAG_ALLOW_UNMANAGED
) == 0 || !launchd_apple_internal
)) {
10620 job_log(j
, LOG_ERR
, "Unmanaged jobs may not make XPC Events requests.");
10624 job_log(j
, LOG_DEBUG
, "%s event for stream/key: %s/%s", event
? "Setting" : "Removing", stream
, key
);
10626 struct externalevent
*eei
= NULL
;
10627 LIST_FOREACH(eei
, &j
->events
, job_le
) {
10628 /* If the event for the given key already exists for the job, we need to
10629 * remove the old one first.
10631 if (strcmp(eei
->name
, key
) == 0 && strcmp(eei
->sys
->name
, stream
) == 0) {
10632 job_log(j
, LOG_DEBUG
, "Event exists. Removing.");
10633 externalevent_delete(eei
);
10638 int result
= EXNOMEM
;
10640 struct eventsystem
*es
= eventsystem_find(stream
);
10642 job_log(j
, LOG_DEBUG
, "Creating stream.");
10643 es
= eventsystem_new(stream
);
10647 job_log(j
, LOG_DEBUG
, "Adding event.");
10648 if (externalevent_new(j
, es
, key
, event
, flags
)) {
10649 job_log(j
, LOG_DEBUG
, "Added new event for key: %s", key
);
10652 job_log(j
, LOG_ERR
, "Could not create event for key: %s", key
);
10655 job_log(j
, LOG_ERR
, "Event stream could not be created: %s", stream
);
10658 /* If the event was NULL, then we just remove it and return. */
10663 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10671 xpc_event_copy_event(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10673 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10674 const char *key
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_NAME
);
10676 bool all_streams
= (stream
== NULL
);
10677 bool all_events
= (key
== NULL
|| strcmp(key
, "") == 0); // strcmp for libxpc compatibility
10678 xpc_object_t events
= NULL
;
10680 if (all_streams
&& !all_events
) {
10684 if (all_streams
|| all_events
) {
10685 job_log(j
, LOG_DEBUG
, "Fetching all events%s%s", stream
? " for stream: " : "", stream
? stream
: "");
10686 events
= xpc_dictionary_create(NULL
, NULL
, 0);
10688 job_log(j
, LOG_DEBUG
, "Fetching stream/key: %s/%s", stream
, key
);
10691 int result
= ESRCH
;
10692 struct externalevent
*eei
= NULL
;
10693 LIST_FOREACH(eei
, &j
->events
, job_le
) {
10695 xpc_object_t sub
= xpc_dictionary_get_value(events
, eei
->sys
->name
);
10697 sub
= xpc_dictionary_create(NULL
, NULL
, 0);
10698 xpc_dictionary_set_value(events
, eei
->sys
->name
, sub
);
10701 xpc_dictionary_set_value(sub
, eei
->name
, eei
->event
);
10702 } else if (strcmp(eei
->sys
->name
, stream
) == 0) {
10704 xpc_dictionary_set_value(events
, eei
->name
, eei
->event
);
10705 } else if (strcmp(eei
->name
, key
) == 0) {
10706 job_log(j
, LOG_DEBUG
, "Found event.");
10707 events
= xpc_retain(eei
->event
);
10714 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10715 xpc_dictionary_set_value(reply2
, XPC_EVENT_ROUTINE_KEY_EVENT
, events
);
10716 xpc_release(events
);
10726 xpc_event_channel_check_in(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10728 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10733 job_log(j
, LOG_DEBUG
, "Checking in stream: %s", stream
);
10735 struct machservice
*ms
= NULL
;
10736 int error
= xpc_event_find_channel(j
, stream
, &ms
);
10738 job_log(j
, LOG_ERR
, "Failed to check in: 0x%x: %s", error
, xpc_strerror(error
));
10739 } else if (ms
->isActive
) {
10740 job_log(j
, LOG_ERR
, "Attempt to check in on event channel multiple times: %s", stream
);
10743 machservice_request_notifications(ms
);
10745 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10746 xpc_dictionary_set_mach_recv(reply2
, XPC_EVENT_ROUTINE_KEY_PORT
, ms
->port
);
10755 xpc_event_channel_look_up(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10757 if (!j
->event_monitor
) {
10761 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10766 uint64_t token
= xpc_dictionary_get_uint64(request
, XPC_EVENT_ROUTINE_KEY_TOKEN
);
10771 job_log(j
, LOG_DEBUG
, "Looking up channel for stream/token: %s/%llu", stream
, token
);
10773 struct externalevent
*ee
= externalevent_find(stream
, token
);
10778 struct machservice
*ms
= NULL
;
10779 int error
= xpc_event_find_channel(ee
->job
, stream
, &ms
);
10781 job_log(j
, LOG_DEBUG
, "Found event channel port: 0x%x", ms
->port
);
10782 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10783 xpc_dictionary_set_mach_send(reply2
, XPC_EVENT_ROUTINE_KEY_PORT
, ms
->port
);
10787 job_log(j
, LOG_ERR
, "Could not find event channel for stream/token: %s/%llu: 0x%x: %s", stream
, token
, error
, xpc_strerror(error
));
10794 xpc_event_provider_check_in(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10796 if (!j
->event_monitor
) {
10800 /* This indicates that the event monitor is now safe to signal. This state
10801 * is independent of whether this operation actually succeeds; we just need
10802 * it to ignore SIGUSR1.
10804 j
->event_monitor_ready2signal
= true;
10806 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10811 job_log(j
, LOG_DEBUG
, "Provider checking in for stream: %s", stream
);
10813 xpc_object_t events
= xpc_array_create(NULL
, 0);
10814 struct eventsystem
*es
= eventsystem_find(stream
);
10816 /* If we had to create the event stream, there were no events, so just
10817 * give back the empty array.
10819 job_log(j
, LOG_DEBUG
, "Creating event stream.");
10820 es
= eventsystem_new(stream
);
10821 if (!job_assumes(j
, es
)) {
10822 xpc_release(events
);
10826 if (strcmp(stream
, "com.apple.launchd.helper") == 0) {
10827 _launchd_support_system
= es
;
10830 job_log(j
, LOG_DEBUG
, "Filling event array.");
10832 struct externalevent
*ei
= NULL
;
10833 LIST_FOREACH(ei
, &es
->events
, sys_le
) {
10834 xpc_array_set_uint64(events
, XPC_ARRAY_APPEND
, ei
->id
);
10835 xpc_array_append_value(events
, ei
->event
);
10839 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10840 xpc_dictionary_set_value(reply2
, XPC_EVENT_ROUTINE_KEY_EVENTS
, events
);
10841 xpc_release(events
);
10848 xpc_event_provider_set_state(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10850 job_t other_j
= NULL
;
10852 if (!j
->event_monitor
) {
10856 const char *stream
= xpc_dictionary_get_string(request
, XPC_EVENT_ROUTINE_KEY_STREAM
);
10861 uint64_t token
= xpc_dictionary_get_uint64(request
, XPC_EVENT_ROUTINE_KEY_TOKEN
);
10866 bool state
= false;
10867 xpc_object_t xstate
= xpc_dictionary_get_value(request
, XPC_EVENT_ROUTINE_KEY_STATE
);
10868 if (!xstate
|| xpc_get_type(xstate
) != XPC_TYPE_BOOL
) {
10871 state
= xpc_bool_get_value(xstate
);
10874 job_log(j
, LOG_DEBUG
, "Setting event state to %s for stream/token: %s/%llu", state
? "true" : "false", stream
, token
);
10876 struct externalevent
*ei
= externalevent_find(stream
, token
);
10878 job_log(j
, LOG_ERR
, "Could not find stream/token: %s/%llu", stream
, token
);
10885 if (ei
->internal
) {
10886 job_log(ei
->job
, LOG_NOTICE
, "Job should be able to exec(3) now.");
10887 ei
->job
->waiting4ok
= false;
10888 externalevent_delete(ei
);
10891 (void)job_dispatch(other_j
, false);
10893 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10900 xpc_event_demux(mach_port_t p
, xpc_object_t request
, xpc_object_t
*reply
)
10902 uint64_t op
= xpc_dictionary_get_uint64(request
, XPC_EVENT_ROUTINE_KEY_OP
);
10907 audit_token_t token
;
10908 xpc_dictionary_get_audit_token(request
, &token
);
10909 runtime_record_caller_creds(&token
);
10911 struct ldcred
*ldc
= runtime_get_caller_creds();
10912 job_t j
= managed_job(ldc
->pid
);
10914 j
= job_mig_intran(p
);
10920 job_log(j
, LOG_DEBUG
, "Incoming XPC event request: %llu", op
);
10924 case XPC_EVENT_GET_NAME
:
10925 error
= xpc_event_get_event_name(j
, request
, reply
);
10927 case XPC_EVENT_SET
:
10928 error
= xpc_event_set_event(j
, request
, reply
);
10930 case XPC_EVENT_COPY
:
10931 error
= xpc_event_copy_event(j
, request
, reply
);
10933 case XPC_EVENT_CHECK_IN
:
10934 error
= xpc_event_channel_check_in(j
, request
, reply
);
10936 case XPC_EVENT_LOOK_UP
:
10937 error
= xpc_event_channel_look_up(j
, request
, reply
);
10939 case XPC_EVENT_PROVIDER_CHECK_IN
:
10940 error
= xpc_event_provider_check_in(j
, request
, reply
);
10942 case XPC_EVENT_PROVIDER_SET_STATE
:
10943 error
= xpc_event_provider_set_state(j
, request
, reply
);
10945 case XPC_EVENT_COPY_ENTITLEMENTS
:
10946 error
= xpc_event_copy_entitlements(j
, request
, reply
);
10952 job_log(j
, LOG_ERR
, "Bogus opcode.");
10957 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
10958 xpc_dictionary_set_uint64(reply2
, XPC_EVENT_ROUTINE_KEY_ERROR
, error
);
10966 xpc_get_jetsam_entitlement(const char *key
)
10968 uint64_t entitlement
= 0;
10970 audit_token_t
*token
= runtime_get_caller_token();
10971 xpc_object_t value
= xpc_copy_entitlement_for_token(key
, token
);
10973 if (xpc_get_type(value
) == XPC_TYPE_UINT64
) {
10974 entitlement
= xpc_uint64_get_value(value
);
10977 xpc_release(value
);
10980 return entitlement
;
10984 xpc_process_set_jetsam_band(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
10990 const char *label
= xpc_dictionary_get_string(request
, XPC_PROCESS_ROUTINE_KEY_LABEL
);
10995 xpc_jetsam_band_t entitled_band
= -1;
10996 xpc_jetsam_band_t requested_band
= (xpc_jetsam_band_t
)xpc_dictionary_get_uint64(request
, XPC_PROCESS_ROUTINE_KEY_PRIORITY_BAND
);
10997 if (!requested_band
) {
11001 if (!(requested_band
>= XPC_JETSAM_BAND_SUSPENDED
&& requested_band
< XPC_JETSAM_BAND_LAST
)) {
11005 uint64_t rcdata
= xpc_dictionary_get_uint64(request
, XPC_PROCESS_ROUTINE_KEY_RCDATA
);
11007 job_t tj
= job_find(root_jobmgr
, label
);
11012 boolean_t allow
= false;
11013 if (j
->embedded_god
) {
11016 entitled_band
= xpc_get_jetsam_entitlement("com.apple.private.jetsam.modify-priority");
11017 if (entitled_band
>= requested_band
) {
11023 if (launchd_no_jetsam_perm_check
) {
11024 job_log(j
, LOG_NOTICE
, "Jetsam priority checks disabled; allowing job to set priority: %d", requested_band
);
11026 job_log(j
, LOG_ERR
, "Job cannot decrease Jetsam priority band (requested/maximum): %d/%d", requested_band
, entitled_band
);
11031 job_log(j
, LOG_INFO
, "Setting Jetsam band: %d.", requested_band
);
11032 job_update_jetsam_properties(tj
, requested_band
, rcdata
);
11034 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
11041 xpc_process_set_jetsam_memory_limit(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
11047 const char *label
= xpc_dictionary_get_string(request
, XPC_PROCESS_ROUTINE_KEY_LABEL
);
11052 int32_t entitlement_limit
= 0;
11053 int32_t requested_limit
= (int32_t)xpc_dictionary_get_uint64(request
, XPC_PROCESS_ROUTINE_KEY_MEMORY_LIMIT
);
11055 job_t tj
= job_find(root_jobmgr
, label
);
11060 boolean_t allow
= false;
11061 if (j
->embedded_god
) {
11064 entitlement_limit
= (int32_t)xpc_get_jetsam_entitlement("com.apple.private.jetsam.memory_limit");
11065 if (entitlement_limit
>= requested_limit
) {
11071 if (launchd_no_jetsam_perm_check
) {
11072 job_log(j
, LOG_NOTICE
, "Jetsam priority checks disabled; allowing job to set memory limit: %d", requested_limit
);
11074 job_log(j
, LOG_ERR
, "Job cannot set Jetsam memory limit (requested/maximum): %d/%d", requested_limit
, entitlement_limit
);
11079 job_log(j
, LOG_INFO
, "Setting Jetsam memory limit: %d.", requested_limit
);
11080 job_update_jetsam_memory_limit(tj
, requested_limit
);
11082 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
11089 _xpc_process_find_target_manager(job_t j
, xpc_service_type_t type
, pid_t pid
)
11091 jobmgr_t target
= NULL
;
11092 if (type
== XPC_SERVICE_TYPE_BUNDLED
) {
11093 job_log(j
, LOG_DEBUG
, "Bundled service. Searching for XPC domains for PID: %d", pid
);
11095 jobmgr_t jmi
= NULL
;
11096 SLIST_FOREACH(jmi
, &root_jobmgr
->submgrs
, sle
) {
11097 if (jmi
->req_pid
&& jmi
->req_pid
== pid
) {
11098 jobmgr_log(jmi
, LOG_DEBUG
, "Found job manager for PID.");
11103 } else if (type
== XPC_SERVICE_TYPE_LAUNCHD
|| type
== XPC_SERVICE_TYPE_APP
) {
11111 xpc_process_attach(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
11117 audit_token_t
*token
= runtime_get_caller_token();
11118 xpc_object_t entitlement
= xpc_copy_entitlement_for_token(XPC_SERVICE_ENTITLEMENT_ATTACH
, token
);
11119 if (!entitlement
) {
11120 job_log(j
, LOG_ERR
, "Job does not have entitlement: %s", XPC_SERVICE_ENTITLEMENT_ATTACH
);
11124 if (entitlement
!= XPC_BOOL_TRUE
) {
11125 char *desc
= xpc_copy_description(entitlement
);
11126 job_log(j
, LOG_ERR
, "Job has bad value for entitlement: %s:\n%s", XPC_SERVICE_ENTITLEMENT_ATTACH
, desc
);
11129 xpc_release(entitlement
);
11133 const char *name
= xpc_dictionary_get_string(request
, XPC_PROCESS_ROUTINE_KEY_NAME
);
11138 xpc_service_type_t type
= xpc_dictionary_get_int64(request
, XPC_PROCESS_ROUTINE_KEY_TYPE
);
11143 mach_port_t port
= xpc_dictionary_copy_mach_send(request
, XPC_PROCESS_ROUTINE_KEY_NEW_INSTANCE_PORT
);
11144 if (!MACH_PORT_VALID(port
)) {
11148 pid_t pid
= xpc_dictionary_get_int64(request
, XPC_PROCESS_ROUTINE_KEY_HANDLE
);
11150 job_log(j
, LOG_DEBUG
, "Attaching to service: %s", name
);
11152 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
11153 jobmgr_t target
= _xpc_process_find_target_manager(j
, type
, pid
);
11155 jobmgr_log(target
, LOG_DEBUG
, "Found target job manager for service: %s", name
);
11156 (void)jobmgr_assumes(target
, waiting4attach_new(target
, name
, port
, 0, type
));
11158 /* HACK: This is awful. For legacy reasons, launchd job labels are all
11159 * stored in a global namespace, which is stored in the root job
11160 * manager. But XPC domains have a per-domain namespace. So if we're
11161 * looking for a legacy launchd job, we have to redirect any attachment
11162 * attempts to the root job manager to find existing instances.
11164 * But because we store attachments on a per-job manager basis, we have
11165 * to create the new attachment in the actual target job manager, hence
11166 * why we change the target only after we've created the attachment.
11168 if (strcmp(target
->name
, VPROCMGR_SESSION_AQUA
) == 0) {
11169 target
= root_jobmgr
;
11172 job_t existing
= job_find(target
, name
);
11173 if (existing
&& existing
->p
) {
11174 job_log(existing
, LOG_DEBUG
, "Found existing instance of service.");
11175 xpc_dictionary_set_int64(reply2
, XPC_PROCESS_ROUTINE_KEY_PID
, existing
->p
);
11177 xpc_dictionary_set_uint64(reply2
, XPC_PROCESS_ROUTINE_KEY_ERROR
, ESRCH
);
11179 } else if (type
== XPC_SERVICE_TYPE_BUNDLED
) {
11180 (void)job_assumes(j
, waiting4attach_new(target
, name
, port
, pid
, type
));
11181 xpc_dictionary_set_uint64(reply2
, XPC_PROCESS_ROUTINE_KEY_ERROR
, ESRCH
);
11183 xpc_dictionary_set_uint64(reply2
, XPC_PROCESS_ROUTINE_KEY_ERROR
, EXSRCH
);
11191 xpc_process_detach(job_t j
, xpc_object_t request
, xpc_object_t
*reply __unused
)
11197 const char *name
= xpc_dictionary_get_string(request
, XPC_PROCESS_ROUTINE_KEY_NAME
);
11202 xpc_service_type_t type
= xpc_dictionary_get_int64(request
, XPC_PROCESS_ROUTINE_KEY_TYPE
);
11207 job_log(j
, LOG_DEBUG
, "Deatching from service: %s", name
);
11209 pid_t pid
= xpc_dictionary_get_int64(request
, XPC_PROCESS_ROUTINE_KEY_PID
);
11210 jobmgr_t target
= _xpc_process_find_target_manager(j
, type
, pid
);
11212 jobmgr_log(target
, LOG_DEBUG
, "Found target job manager for service: %s", name
);
11214 struct waiting4attach
*w4ai
= NULL
;
11215 struct waiting4attach
*w4ait
= NULL
;
11216 LIST_FOREACH_SAFE(w4ai
, &target
->attaches
, le
, w4ait
) {
11217 if (strcmp(name
, w4ai
->name
) == 0) {
11218 jobmgr_log(target
, LOG_DEBUG
, "Found attachment. Deleting.");
11219 waiting4attach_delete(target
, w4ai
);
11229 xpc_process_get_properties(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
11231 if (j
->anonymous
) {
11232 /* Total hack. libxpc will send requests to the pipe created out of the
11233 * process' bootstrap port, so when job_mig_intran() tries to resolve
11234 * the process into a job, it'll wind up creating an anonymous job if
11235 * the requestor was an XPC service, whose job manager is an XPC domain.
11238 jobmgr_t jmi
= NULL
;
11239 SLIST_FOREACH(jmi
, &root_jobmgr
->submgrs
, sle
) {
11240 if ((j
= jobmgr_find_by_pid(jmi
, pid
, false))) {
11246 if (!j
|| j
->anonymous
) {
11250 struct waiting4attach
*w4a
= waiting4attach_find(j
->mgr
, j
);
11255 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
11256 xpc_dictionary_set_uint64(reply2
, XPC_PROCESS_ROUTINE_KEY_TYPE
, w4a
->type
);
11257 xpc_dictionary_set_mach_send(reply2
, XPC_PROCESS_ROUTINE_KEY_NEW_INSTANCE_PORT
, w4a
->port
);
11259 xpc_dictionary_set_string(reply2
, XPC_PROCESS_ROUTINE_KEY_PATH
, j
->prog
);
11261 xpc_dictionary_set_string(reply2
, XPC_PROCESS_ROUTINE_KEY_PATH
, j
->argv
[0]);
11265 xpc_object_t xargv
= xpc_array_create(NULL
, 0);
11268 for (i
= 0; i
< j
->argc
; i
++) {
11270 xpc_array_set_string(xargv
, XPC_ARRAY_APPEND
, j
->argv
[i
]);
11274 xpc_dictionary_set_value(reply2
, XPC_PROCESS_ROUTINE_KEY_ARGV
, xargv
);
11275 xpc_release(xargv
);
11283 xpc_process_service_kill(job_t j
, xpc_object_t request
, xpc_object_t
*reply
)
11285 #if XPC_LPI_VERSION >= 20130426
11290 jobmgr_t jm
= _xpc_process_find_target_manager(j
, XPC_SERVICE_TYPE_BUNDLED
, j
->p
);
11295 const char *name
= xpc_dictionary_get_string(request
, XPC_PROCESS_ROUTINE_KEY_NAME
);
11300 int64_t whichsig
= xpc_dictionary_get_int64(request
, XPC_PROCESS_ROUTINE_KEY_SIGNAL
);
11305 job_t j2kill
= job_find(jm
, name
);
11310 if (j2kill
->alias
) {
11311 // Only allow for private instances to be killed.
11315 struct proc_bsdshortinfo proc
;
11316 if (proc_pidinfo(j2kill
->p
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0) {
11317 if (errno
!= ESRCH
) {
11318 (void)jobmgr_assumes_zero(root_jobmgr
, errno
);
11324 struct ldcred
*ldc
= runtime_get_caller_creds();
11325 if (proc
.pbsi_uid
!= ldc
->euid
) {
11326 // Do not allow non-root to kill RoleAccount services running as a
11335 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
11341 int ret
= kill(j2kill
->p
, whichsig
);
11346 xpc_dictionary_set_int64(reply2
, XPC_PROCESS_ROUTINE_KEY_ERROR
, error
);
11355 xpc_process_demux(mach_port_t p
, xpc_object_t request
, xpc_object_t
*reply
)
11357 uint64_t op
= xpc_dictionary_get_uint64(request
, XPC_PROCESS_ROUTINE_KEY_OP
);
11362 audit_token_t token
;
11363 xpc_dictionary_get_audit_token(request
, &token
);
11364 runtime_record_caller_creds(&token
);
11366 job_t j
= job_mig_intran(p
);
11367 job_log(j
, LOG_DEBUG
, "Incoming XPC process request: %llu", op
);
11371 case XPC_PROCESS_JETSAM_SET_BAND
:
11372 error
= xpc_process_set_jetsam_band(j
, request
, reply
);
11374 case XPC_PROCESS_JETSAM_SET_MEMORY_LIMIT
:
11375 error
= xpc_process_set_jetsam_memory_limit(j
, request
, reply
);
11377 case XPC_PROCESS_SERVICE_ATTACH
:
11378 error
= xpc_process_attach(j
, request
, reply
);
11380 case XPC_PROCESS_SERVICE_DETACH
:
11381 error
= xpc_process_detach(j
, request
, reply
);
11383 case XPC_PROCESS_SERVICE_GET_PROPERTIES
:
11384 error
= xpc_process_get_properties(j
, request
, reply
);
11386 case XPC_PROCESS_SERVICE_KILL
:
11387 error
= xpc_process_service_kill(j
, request
, reply
);
11390 job_log(j
, LOG_ERR
, "Bogus process opcode.");
11395 xpc_object_t reply2
= xpc_dictionary_create_reply(request
);
11397 xpc_dictionary_set_uint64(reply2
, XPC_PROCESS_ROUTINE_KEY_ERROR
, error
);
11407 job_mig_kickstart(job_t j
, name_t targetlabel
, pid_t
*out_pid
, unsigned int flags
)
11409 struct ldcred
*ldc
= runtime_get_caller_creds();
11413 return BOOTSTRAP_NO_MEMORY
;
11416 if (unlikely(!(otherj
= job_find(NULL
, targetlabel
)))) {
11417 return BOOTSTRAP_UNKNOWN_SERVICE
;
11420 #if TARGET_OS_EMBEDDED
11421 bool allow_non_root_kickstart
= j
->username
&& otherj
->username
&& (strcmp(j
->username
, otherj
->username
) == 0);
11423 bool allow_non_root_kickstart
= false;
11426 if (ldc
->euid
!= 0 && ldc
->euid
!= geteuid() && !allow_non_root_kickstart
) {
11427 return BOOTSTRAP_NOT_PRIVILEGED
;
11431 if (unlikely(sandbox_check(ldc
->pid
, "job-creation", SANDBOX_FILTER_NONE
) > 0)) {
11432 return BOOTSTRAP_NOT_PRIVILEGED
;
11436 if (otherj
->p
&& (flags
& VPROCFLAG_STALL_JOB_EXEC
)) {
11437 return BOOTSTRAP_SERVICE_ACTIVE
;
11440 otherj
->stall_before_exec
= (flags
& VPROCFLAG_STALL_JOB_EXEC
);
11441 otherj
= job_dispatch(otherj
, true);
11443 if (!job_assumes(j
, otherj
&& otherj
->p
)) {
11444 // <rdar://problem/6787083> Clear this flag if we failed to start the job.
11445 otherj
->stall_before_exec
= false;
11446 return BOOTSTRAP_NO_MEMORY
;
11449 *out_pid
= otherj
->p
;
11455 job_mig_spawn_internal(job_t j
, vm_offset_t indata
, mach_msg_type_number_t indataCnt
, mach_port_t asport
, job_t
*outj
)
11457 launch_data_t jobdata
= NULL
;
11458 size_t data_offset
= 0;
11459 struct ldcred
*ldc
= runtime_get_caller_creds();
11463 return BOOTSTRAP_NO_MEMORY
;
11466 if (unlikely(j
->deny_job_creation
)) {
11467 return BOOTSTRAP_NOT_PRIVILEGED
;
11471 if (unlikely(sandbox_check(ldc
->pid
, "job-creation", SANDBOX_FILTER_NONE
) > 0)) {
11472 return BOOTSTRAP_NOT_PRIVILEGED
;
11476 if (unlikely(pid1_magic
&& ldc
->euid
&& ldc
->uid
)) {
11477 job_log(j
, LOG_DEBUG
, "Punting spawn to per-user-context");
11478 return VPROC_ERR_TRY_PER_USER
;
11481 if (!job_assumes(j
, indataCnt
!= 0)) {
11485 runtime_ktrace0(RTKT_LAUNCHD_DATA_UNPACK
);
11486 if (!job_assumes(j
, (jobdata
= launch_data_unpack((void *)indata
, indataCnt
, NULL
, 0, &data_offset
, NULL
)) != NULL
)) {
11490 jobmgr_t target_jm
= jobmgr_find_by_name(j
->mgr
, NULL
);
11491 if (!jobmgr_assumes(j
->mgr
, target_jm
!= NULL
)) {
11492 jobmgr_log(j
->mgr
, LOG_ERR
, "This API can only be used by a process running within an Aqua session.");
11496 jr
= jobmgr_import2(target_jm
?: j
->mgr
, jobdata
);
11498 launch_data_t label
= NULL
;
11499 launch_data_t wait4debugger
= NULL
;
11503 /* If EEXIST was returned, we know that there is a label string in
11504 * the dictionary. So we don't need to check the types here; that
11505 * has already been done.
11507 label
= launch_data_dict_lookup(jobdata
, LAUNCH_JOBKEY_LABEL
);
11508 jr
= job_find(NULL
, launch_data_get_string(label
));
11509 if (job_assumes(j
, jr
!= NULL
) && !jr
->p
) {
11510 wait4debugger
= launch_data_dict_lookup(jobdata
, LAUNCH_JOBKEY_WAITFORDEBUGGER
);
11511 if (wait4debugger
&& launch_data_get_type(wait4debugger
) == LAUNCH_DATA_BOOL
) {
11512 if (launch_data_get_bool(wait4debugger
)) {
11513 /* If the job exists, we're going to kick-start it, but
11514 * we need to give the caller the opportunity to start
11515 * it suspended if it so desires. But this will only
11516 * take effect if the job isn't running.
11518 jr
->wait4debugger_oneshot
= true;
11524 return BOOTSTRAP_NAME_IN_USE
;
11526 return BOOTSTRAP_NO_MEMORY
;
11531 jr
->mach_uid
= ldc
->uid
;
11534 // TODO: Consolidate the app and legacy_LS_job bits.
11535 jr
->legacy_LS_job
= true;
11536 jr
->abandon_pg
= true;
11537 jr
->asport
= asport
;
11539 uuid_clear(jr
->expected_audit_uuid
);
11540 jr
= job_dispatch(jr
, true);
11542 if (!job_assumes(j
, jr
!= NULL
)) {
11544 return BOOTSTRAP_NO_MEMORY
;
11547 if (!job_assumes(jr
, jr
->p
)) {
11549 return BOOTSTRAP_NO_MEMORY
;
11552 job_log(jr
, LOG_DEBUG
, "Spawned by PID %u: %s", j
->p
, j
->label
);
11555 return BOOTSTRAP_SUCCESS
;
11559 job_mig_spawn2(job_t j
, mach_port_t rp
, vm_offset_t indata
, mach_msg_type_number_t indataCnt
, mach_port_t asport
, pid_t
*child_pid
, mach_port_t
*obsvr_port
)
11562 kern_return_t kr
= job_mig_spawn_internal(j
, indata
, indataCnt
, asport
, &nj
);
11563 if (likely(kr
== KERN_SUCCESS
)) {
11564 if (job_setup_exit_port(nj
) != KERN_SUCCESS
) {
11566 kr
= BOOTSTRAP_NO_MEMORY
;
11568 /* Do not return until the job has called exec(3), thereby making it
11569 * safe for the caller to send it SIGCONT.
11571 * <rdar://problem/9042798>
11573 nj
->spawn_reply_port
= rp
;
11576 } else if (kr
== BOOTSTRAP_NAME_IN_USE
) {
11577 bool was_running
= nj
->p
;
11578 if (job_dispatch(nj
, true)) {
11579 if (!was_running
) {
11580 job_log(nj
, LOG_DEBUG
, "Job exists but is not running. Kick-starting.");
11582 if (job_setup_exit_port(nj
) == KERN_SUCCESS
) {
11583 nj
->spawn_reply_port
= rp
;
11586 kr
= BOOTSTRAP_NO_MEMORY
;
11589 *obsvr_port
= MACH_PORT_NULL
;
11590 *child_pid
= nj
->p
;
11594 job_log(nj
, LOG_ERR
, "Failed to dispatch job, requestor: %s", j
->label
);
11595 kr
= BOOTSTRAP_UNKNOWN_SERVICE
;
11599 mig_deallocate(indata
, indataCnt
);
11604 job_do_legacy_ipc_request(job_t j
, launch_data_t request
, mach_port_t asport
__attribute__((unused
)))
11606 launch_data_t reply
= NULL
;
11609 if (launch_data_get_type(request
) == LAUNCH_DATA_STRING
) {
11610 if (strcmp(launch_data_get_string(request
), LAUNCH_KEY_CHECKIN
) == 0) {
11611 reply
= job_export(j
);
11619 #define LAUNCHD_MAX_LEGACY_FDS 128
11620 #define countof(x) (sizeof((x)) / sizeof((x[0])))
11623 job_mig_legacy_ipc_request(job_t j
, vm_offset_t request
,
11624 mach_msg_type_number_t requestCnt
, mach_port_array_t request_fds
,
11625 mach_msg_type_number_t request_fdsCnt
, vm_offset_t
*reply
,
11626 mach_msg_type_number_t
*replyCnt
, mach_port_array_t
*reply_fdps
,
11627 mach_msg_type_number_t
*reply_fdsCnt
, mach_port_t asport
)
11630 return BOOTSTRAP_NO_MEMORY
;
11633 /* TODO: Once we support actions other than checking in, we must check the
11634 * sandbox capabilities and EUID of the requestort.
11636 size_t nout_fdps
= 0;
11637 size_t nfds
= request_fdsCnt
/ sizeof(request_fds
[0]);
11638 if (nfds
> LAUNCHD_MAX_LEGACY_FDS
) {
11639 job_log(j
, LOG_ERR
, "Too many incoming descriptors: %lu", nfds
);
11640 return BOOTSTRAP_NO_MEMORY
;
11643 int in_fds
[LAUNCHD_MAX_LEGACY_FDS
];
11645 for (i
= 0; i
< nfds
; i
++) {
11646 in_fds
[i
] = fileport_makefd(request_fds
[i
]);
11647 if (in_fds
[i
] == -1) {
11648 job_log(j
, LOG_ERR
, "Bad descriptor passed in legacy IPC request at index: %lu", i
);
11652 // DON'T goto outbad before this point.
11654 *reply_fdps
= NULL
;
11655 launch_data_t ldreply
= NULL
;
11657 size_t dataoff
= 0;
11659 launch_data_t ldrequest
= launch_data_unpack((void *)request
, requestCnt
, in_fds
, nfds
, &dataoff
, &fdoff
);
11661 job_log(j
, LOG_ERR
, "Invalid legacy IPC request passed.");
11665 ldreply
= job_do_legacy_ipc_request(j
, ldrequest
, asport
);
11667 ldreply
= launch_data_new_errno(errno
);
11673 *replyCnt
= 10 * 1024 * 1024;
11674 mig_allocate(reply
, *replyCnt
);
11679 int out_fds
[LAUNCHD_MAX_LEGACY_FDS
];
11680 size_t nout_fds
= 0;
11681 size_t sz
= launch_data_pack(ldreply
, (void *)*reply
, *replyCnt
, out_fds
, &nout_fds
);
11683 job_log(j
, LOG_ERR
, "Could not pack legacy IPC reply.");
11688 if (nout_fds
> 128) {
11689 job_log(j
, LOG_ERR
, "Too many outgoing descriptors: %lu", nout_fds
);
11693 *reply_fdsCnt
= nout_fds
* sizeof((*reply_fdps
)[0]);
11694 mig_allocate((vm_address_t
*)reply_fdps
, *reply_fdsCnt
);
11695 if (!*reply_fdps
) {
11699 for (i
= 0; i
< nout_fds
; i
++) {
11700 mach_port_t fp
= MACH_PORT_NULL
;
11701 /* Whatever. Worst case is that we insert MACH_PORT_NULL. Not a big
11702 * deal. Note, these get stuffed into an array whose disposition is
11703 * mach_port_move_send_t, so we don't have to worry about them after
11706 if (fileport_makeport(out_fds
[i
], &fp
) != 0) {
11707 job_log(j
, LOG_ERR
, "Could not pack response descriptor at index: %lu: %d: %s", i
, errno
, strerror(errno
));
11709 (*reply_fdps
)[i
] = fp
;
11712 nout_fdps
= nout_fds
;
11717 mig_deallocate(request
, requestCnt
);
11718 launch_data_free(ldreply
);
11722 (void)launchd_mport_deallocate(asport
);
11724 return BOOTSTRAP_SUCCESS
;
11727 for (i
= 0; i
< nfds
; i
++) {
11728 (void)close(in_fds
[i
]);
11731 for (i
= 0; i
< nout_fds
; i
++) {
11732 (void)launchd_mport_deallocate((*reply_fdps
)[i
]);
11736 mig_deallocate(*reply
, *replyCnt
);
11739 /* We should never hit this since the last goto out is in the case that
11740 * allocating this fails.
11743 mig_deallocate((vm_address_t
)*reply_fdps
, *reply_fdsCnt
);
11747 launch_data_free(ldreply
);
11750 return BOOTSTRAP_NO_MEMORY
;
11754 jobmgr_init(bool sflag
)
11756 const char *root_session_type
= pid1_magic
? VPROCMGR_SESSION_SYSTEM
: VPROCMGR_SESSION_BACKGROUND
;
11757 SLIST_INIT(&s_curious_jobs
);
11758 LIST_INIT(&s_needing_sessions
);
11760 os_assert((root_jobmgr
= jobmgr_new(NULL
, MACH_PORT_NULL
, MACH_PORT_NULL
, sflag
, root_session_type
, false, MACH_PORT_NULL
)) != NULL
);
11761 os_assert((_s_xpc_system_domain
= jobmgr_new_xpc_singleton_domain(root_jobmgr
, "com.apple.xpc.system")) != NULL
);
11762 _s_xpc_system_domain
->req_asid
= launchd_audit_session
;
11763 _s_xpc_system_domain
->req_asport
= launchd_audit_port
;
11764 _s_xpc_system_domain
->shortdesc
= "system";
11766 root_jobmgr
->monitor_shutdown
= true;
11769 uint32_t fflags
= NOTE_ATTRIB
| NOTE_LINK
| NOTE_REVOKE
| NOTE_EXTEND
| NOTE_WRITE
;
11770 s_no_hang_fd
= open("/dev/autofs_nowait", O_EVTONLY
| O_NONBLOCK
);
11771 if (likely(s_no_hang_fd
== -1)) {
11772 if (jobmgr_assumes_zero_p(root_jobmgr
, (s_no_hang_fd
= open("/dev", O_EVTONLY
| O_NONBLOCK
))) != -1) {
11773 (void)jobmgr_assumes_zero_p(root_jobmgr
, kevent_mod((uintptr_t)s_no_hang_fd
, EVFILT_VNODE
, EV_ADD
, fflags
, 0, root_jobmgr
));
11776 s_no_hang_fd
= _fd(s_no_hang_fd
);
11780 our_strhash(const char *s
)
11782 size_t c
, r
= 5381;
11785 * This algorithm was first reported by Dan Bernstein many years ago in comp.lang.c
11788 while ((c
= *s
++)) {
11789 r
= ((r
<< 5) + r
) + c
; // hash*33 + c
11796 hash_label(const char *label
)
11798 return our_strhash(label
) % LABEL_HASH_SIZE
;
11802 hash_ms(const char *msstr
)
11804 return our_strhash(msstr
) % MACHSERVICE_HASH_SIZE
;
11808 waiting4removal_new(job_t j
, mach_port_t rp
)
11810 struct waiting_for_removal
*w4r
;
11812 if (!job_assumes(j
, (w4r
= malloc(sizeof(struct waiting_for_removal
))) != NULL
)) {
11816 w4r
->reply_port
= rp
;
11818 SLIST_INSERT_HEAD(&j
->removal_watchers
, w4r
, sle
);
11824 waiting4removal_delete(job_t j
, struct waiting_for_removal
*w4r
)
11826 (void)job_assumes_zero(j
, job_mig_send_signal_reply(w4r
->reply_port
, 0));
11828 SLIST_REMOVE(&j
->removal_watchers
, w4r
, waiting_for_removal
, sle
);
11834 get_kern_max_proc(void)
11836 int mib
[] = { CTL_KERN
, KERN_MAXPROC
};
11838 size_t max_sz
= sizeof(max
);
11840 (void)posix_assumes_zero(sysctl(mib
, 2, &max
, &max_sz
, NULL
, 0));
11845 // See rdar://problem/6271234
11847 eliminate_double_reboot(void)
11849 if (unlikely(!pid1_magic
)) {
11854 const char *argv
[] = { _PATH_BSHELL
, "/etc/rc.deferred_install", NULL
};
11857 if (unlikely(stat(argv
[1], &sb
) != -1)) {
11858 jobmgr_log(root_jobmgr
, LOG_DEBUG
| LOG_CONSOLE
, "Going to run deferred install script.");
11861 result
= posix_spawnp(&p
, argv
[0], NULL
, NULL
, (char **)argv
, environ
);
11862 if (result
== -1) {
11863 jobmgr_log(root_jobmgr
, LOG_WARNING
| LOG_CONSOLE
, "Couldn't run deferred install script: %d: %s", result
, strerror(result
));
11868 result
= waitpid(p
, &wstatus
, 0);
11869 if (result
== -1) {
11870 jobmgr_log(root_jobmgr
, LOG_WARNING
| LOG_CONSOLE
, "Failed to reap deferred install script: %d: %s", errno
, strerror(errno
));
11874 if (WIFEXITED(wstatus
)) {
11875 if ((result
= WEXITSTATUS(wstatus
)) == 0) {
11876 jobmgr_log(root_jobmgr
, LOG_DEBUG
| LOG_CONSOLE
, "Deferred install script completed successfully.");
11878 jobmgr_log(root_jobmgr
, LOG_WARNING
| LOG_CONSOLE
, "Deferred install script failed with status: %d", WEXITSTATUS(wstatus
));
11881 jobmgr_log(root_jobmgr
, LOG_WARNING
| LOG_CONSOLE
, "Weirdness with install script: %d", wstatus
);
11886 /* If the unlink(2) was to fail, it would be most likely fail with
11887 * EBUSY. All the other failure cases for unlink(2) don't apply when
11888 * we're running under PID 1 and have verified that the file exists.
11889 * Outside of someone deliberately messing with us (like if
11890 * /etc/rc.deferredinstall is actually a looping sym-link or a mount
11891 * point for a filesystem) and I/O errors, we should be good.
11893 if (unlink(argv
[1]) == -1) {
11894 jobmgr_log(root_jobmgr
, LOG_WARNING
| LOG_CONSOLE
, "Failed to remove deferred install script: %d: %s", errno
, strerror(errno
));
11900 jetsam_property_setup(launch_data_t obj
, const char *key
, job_t j
)
11902 job_log(j
, LOG_DEBUG
, "Setting Jetsam properties for job...");
11903 if (strcasecmp(key
, LAUNCH_JOBKEY_JETSAMPRIORITY
) == 0 && launch_data_get_type(obj
) == LAUNCH_DATA_INTEGER
) {
11904 j
->jetsam_priority
= (typeof(j
->jetsam_priority
))launch_data_get_integer(obj
);
11906 #if XPC_LPI_VERSION >= 20120810
11907 if (j
->jetsam_priority
> XPC_JETSAM_PRIORITY_RESERVED
&& j
->jetsam_priority
< XPC_JETSAM_PRIORITY_RESERVED
+ XPC_JETSAM_BAND_LAST
) {
11908 size_t band
= j
->jetsam_priority
- XPC_JETSAM_PRIORITY_RESERVED
;
11909 j
->jetsam_priority
= _launchd_priority_map
[band
- 1].priority
;
11912 job_log(j
, LOG_DEBUG
, "Priority: %d", j
->jetsam_priority
);
11913 } else if (strcasecmp(key
, LAUNCH_JOBKEY_JETSAMMEMORYLIMIT
) == 0 && launch_data_get_type(obj
) == LAUNCH_DATA_INTEGER
) {
11914 j
->jetsam_memlimit
= (typeof(j
->jetsam_memlimit
))launch_data_get_integer(obj
);
11915 job_log(j
, LOG_DEBUG
, "Memory limit: %d", j
->jetsam_memlimit
);
11916 } else if (strcasecmp(key
, LAUNCH_JOBKEY_JETSAMMEMORYLIMITBACKGROUND
) == 0) {
11917 j
->jetsam_memory_limit_background
= true;
11918 job_log(j
, LOG_DEBUG
, "Memory limit is for background state only");
11919 } else if (strcasecmp(key
, LAUNCH_KEY_JETSAMFRONTMOST
) == 0) {
11920 /* Ignore. We only recognize this key so we don't complain when we get SpringBoard's request.
11921 * You can't set this in a plist.
11923 } else if (strcasecmp(key
, LAUNCH_KEY_JETSAMACTIVE
) == 0) {
11925 } else if (strcasecmp(key
, LAUNCH_KEY_JETSAMLABEL
) == 0) {
11926 /* Ignore. This key is present in SpringBoard's request dictionary, so we don't want to
11927 * complain about it.
11930 job_log(j
, LOG_ERR
, "Unknown Jetsam key: %s", key
);
11933 if (unlikely(!j
->jetsam_properties
)) {
11934 j
->jetsam_properties
= true;
11939 job_update_jetsam_properties(job_t j
, xpc_jetsam_band_t band
, uint64_t user_data
)
11941 #if TARGET_OS_EMBEDDED
11942 j
->jetsam_priority
= _launchd_priority_map
[band
- 1].priority
;
11943 j
->jetsam_properties
= true;
11945 memorystatus_priority_properties_t mjp
;
11946 mjp
.priority
= j
->jetsam_priority
;
11947 mjp
.user_data
= user_data
;
11949 size_t size
= sizeof(mjp
);
11950 int r
= memorystatus_control(MEMORYSTATUS_CMD_SET_PRIORITY_PROPERTIES
, j
->p
, 0, &mjp
, size
);
11951 if (r
== -1 && errno
!= ESRCH
) {
11952 (void)job_assumes_zero(j
, errno
);
11955 #pragma unused(j, band, user_data)
11960 job_update_jetsam_memory_limit(job_t j
, int32_t limit
)
11962 #if TARGET_OS_EMBEDDED
11963 j
->jetsam_memlimit
= limit
;
11964 j
->jetsam_properties
= true;
11966 int r
= memorystatus_control(MEMORYSTATUS_CMD_SET_JETSAM_HIGH_WATER_MARK
, j
->p
, limit
, NULL
, 0);
11967 if (r
== -1 && errno
!= ESRCH
) {
11968 (void)job_assumes_zero(j
, errno
);
11971 #pragma unused(j, limit)