2 * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_APACHE_LICENSE_HEADER_START@
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * @APPLE_APACHE_LICENSE_HEADER_END@
20 #ifndef __LAUNCHD_RUNTIME_H__
21 #define __LAUNCHD_RUNTIME_H__
23 #include <mach/mach.h>
24 #include <sys/types.h>
25 #include <bsm/libbsm.h>
29 #include "launchd_runtime_kill.h"
41 * Use launchd_assumes() when we can recover, even if it means we leak or limp along.
43 * Use launchd_assert() for core initialization routines.
45 #define launchd_assumes(e) \
46 (__builtin_expect(!(e), 0) ? _log_launchd_bug(__rcs_file_version__, __FILE__, __LINE__, #e), false : true)
48 #define launchd_blame(e, b) \
49 (__builtin_expect(!(e), 0) ? syslog(LOG_DEBUG, "Encountered bug: %d", b), false : true)
51 #define launchd_assert(e) if (__builtin_constant_p(e)) { char __compile_time_assert__[e ? 1 : -1] __attribute__((unused)); } else if (!launchd_assumes(e)) { abort(); }
53 void _log_launchd_bug(const char *rcs_rev
, const char *path
, unsigned int line
, const char *test
);
55 typedef void (*kq_callback
)(void *, struct kevent
*);
56 typedef boolean_t (*mig_callback
)(mach_msg_header_t
*, mach_msg_header_t
*);
57 typedef void (*timeout_callback
)(void);
59 boolean_t
launchd_internal_demux(mach_msg_header_t
*Request
, mach_msg_header_t
*Reply
);
61 void runtime_add_ref(void);
62 void runtime_del_ref(void);
64 void launchd_runtime_init(void);
65 void launchd_runtime_init2(void);
66 void launchd_runtime(void) __attribute__((noreturn
));
68 int runtime_close(int fd
);
69 int runtime_fsync(int fd
);
71 #define RUNTIME_ADVISABLE_IDLE_TIMEOUT 30
73 void runtime_set_timeout(timeout_callback to_cb
, unsigned int sec
);
74 kern_return_t
runtime_add_mport(mach_port_t name
, mig_callback demux
, mach_msg_size_t msg_size
);
75 kern_return_t
runtime_remove_mport(mach_port_t name
);
76 bool runtime_get_caller_creds(struct ldcred
*ldc
);
78 const char *signal_to_C_name(unsigned int sig
);
79 const char *reboot_flags_to_C_names(unsigned int flags
);
80 const char *proc_flags_to_C_names(unsigned int flags
);
83 int kevent_bulk_mod(struct kevent
*kev
, size_t kev_cnt
);
84 int kevent_mod(uintptr_t ident
, short filter
, u_short flags
, u_int fflags
, intptr_t data
, void *udata
);
86 pid_t
runtime_fork(mach_port_t bsport
);
88 kern_return_t
runtime_log_forward(uid_t forward_uid
, gid_t forward_gid
, vm_offset_t inval
, mach_msg_type_number_t invalCnt
);
89 kern_return_t
runtime_log_drain(mach_port_t srp
, vm_offset_t
*outval
, mach_msg_type_number_t
*outvalCnt
);
91 #define LOG_APPLEONLY 0x4141504c /* AAPL in hex */
93 struct runtime_syslog_attr
{
94 const char *from_name
;
95 const char *about_name
;
96 const char *session_name
;
103 int runtime_setlogmask(int maskpri
);
104 void runtime_closelog(void);
105 void runtime_syslog(int pri
, const char *message
, ...) __attribute__((format(printf
, 2, 3)));
106 void runtime_vsyslog(struct runtime_syslog_attr
*attr
, const char *message
, va_list args
) __attribute__((format(printf
, 2, 0)));
109 kern_return_t
launchd_set_bport(mach_port_t name
);
110 kern_return_t
launchd_get_bport(mach_port_t
*name
);
111 kern_return_t
launchd_mport_notify_req(mach_port_t name
, mach_msg_id_t which
);
112 kern_return_t
launchd_mport_notify_cancel(mach_port_t name
, mach_msg_id_t which
);
113 kern_return_t
launchd_mport_create_recv(mach_port_t
*name
);
114 kern_return_t
launchd_mport_deallocate(mach_port_t name
);
115 kern_return_t
launchd_mport_make_send(mach_port_t name
);
116 kern_return_t
launchd_mport_close_recv(mach_port_t name
);