]> git.saurik.com Git - apple/launchd.git/blame - launchd/src/launchd_runtime.h
launchd-258.1.tar.gz
[apple/launchd.git] / launchd / src / launchd_runtime.h
CommitLineData
5b0a4722
A
1/*
2 * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_APACHE_LICENSE_HEADER_START@
5 *
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
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
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.
17 *
18 * @APPLE_APACHE_LICENSE_HEADER_END@
19 */
20#ifndef __LAUNCHD_RUNTIME_H__
21#define __LAUNCHD_RUNTIME_H__
22
23#include <mach/mach.h>
24#include <sys/types.h>
25#include <bsm/libbsm.h>
26#include <stdbool.h>
27#include <syslog.h>
28
29#include "launchd_runtime_kill.h"
30
31struct ldcred {
32 uid_t euid;
33 uid_t uid;
34 gid_t egid;
35 gid_t gid;
36 pid_t pid;
37 au_asid_t asid;
38};
39
40/*
41 * Use launchd_assumes() when we can recover, even if it means we leak or limp along.
42 *
43 * Use launchd_assert() for core initialization routines.
44 */
45#define launchd_assumes(e) \
46 (__builtin_expect(!(e), 0) ? _log_launchd_bug(__rcs_file_version__, __FILE__, __LINE__, #e), false : true)
47
48#define launchd_blame(e, b) \
49 (__builtin_expect(!(e), 0) ? syslog(LOG_DEBUG, "Encountered bug: %d", b), false : true)
50
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(); }
52
53void _log_launchd_bug(const char *rcs_rev, const char *path, unsigned int line, const char *test);
54
55typedef void (*kq_callback)(void *, struct kevent *);
56typedef boolean_t (*mig_callback)(mach_msg_header_t *, mach_msg_header_t *);
57typedef void (*timeout_callback)(void);
58
fe044cc9 59mach_port_t runtime_get_kernel_port(void);
5b0a4722
A
60
61void runtime_add_ref(void);
62void runtime_del_ref(void);
63
64void launchd_runtime_init(void);
65void launchd_runtime_init2(void);
66void launchd_runtime(void) __attribute__((noreturn));
67
68int runtime_close(int fd);
69int runtime_fsync(int fd);
70
71#define RUNTIME_ADVISABLE_IDLE_TIMEOUT 30
72
73void runtime_set_timeout(timeout_callback to_cb, unsigned int sec);
74kern_return_t runtime_add_mport(mach_port_t name, mig_callback demux, mach_msg_size_t msg_size);
75kern_return_t runtime_remove_mport(mach_port_t name);
76bool runtime_get_caller_creds(struct ldcred *ldc);
77
78const char *signal_to_C_name(unsigned int sig);
79const char *reboot_flags_to_C_names(unsigned int flags);
80const char *proc_flags_to_C_names(unsigned int flags);
81
82
83int kevent_bulk_mod(struct kevent *kev, size_t kev_cnt);
84int kevent_mod(uintptr_t ident, short filter, u_short flags, u_int fflags, intptr_t data, void *udata);
85
86pid_t runtime_fork(mach_port_t bsport);
87
88kern_return_t runtime_log_forward(uid_t forward_uid, gid_t forward_gid, vm_offset_t inval, mach_msg_type_number_t invalCnt);
89kern_return_t runtime_log_drain(mach_port_t srp, vm_offset_t *outval, mach_msg_type_number_t *outvalCnt);
90
91#define LOG_APPLEONLY 0x4141504c /* AAPL in hex */
92
93struct runtime_syslog_attr {
94 const char *from_name;
95 const char *about_name;
96 const char *session_name;
97 int priority;
98 uid_t from_uid;
99 pid_t from_pid;
100 pid_t about_pid;
101};
102
103int runtime_setlogmask(int maskpri);
104void runtime_closelog(void);
105void runtime_syslog(int pri, const char *message, ...) __attribute__((format(printf, 2, 3)));
106void runtime_vsyslog(struct runtime_syslog_attr *attr, const char *message, va_list args) __attribute__((format(printf, 2, 0)));
107
108
109kern_return_t launchd_set_bport(mach_port_t name);
110kern_return_t launchd_get_bport(mach_port_t *name);
111kern_return_t launchd_mport_notify_req(mach_port_t name, mach_msg_id_t which);
112kern_return_t launchd_mport_notify_cancel(mach_port_t name, mach_msg_id_t which);
113kern_return_t launchd_mport_create_recv(mach_port_t *name);
114kern_return_t launchd_mport_deallocate(mach_port_t name);
115kern_return_t launchd_mport_make_send(mach_port_t name);
116kern_return_t launchd_mport_close_recv(mach_port_t name);
117
118#endif