]>
git.saurik.com Git - apple/launchd.git/blob - launchd/src/vproc_internal.h
1 #ifndef _VPROC_INTERNAL_H_
2 #define _VPROC_INTERNAL_H_
4 * Copyright (c) 2006-2007 Apple Inc. All rights reserved.
6 * @APPLE_APACHE_LICENSE_HEADER_START@
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
20 * @APPLE_APACHE_LICENSE_HEADER_END@
23 #include <mach/mach.h>
24 #include <sys/queue.h>
27 #include <sys/syscall.h>
28 #include <bsm/audit.h>
30 #include "bootstrap.h"
33 typedef char * _internal_string_t
;
34 typedef char * logmsg_t
;
35 typedef pid_t
* pid_array_t
;
36 typedef mach_port_t vproc_mig_t
;
38 #define VPROC_SHMEM_EXITING 0x1
40 struct vproc_shmem_s
{
41 int32_t vp_shmem_transaction_cnt
;
42 int32_t vp_shmem_standby_cnt
;
43 uint32_t vp_shmem_standby_timeout
;
44 int32_t vp_shmem_flags
;
47 #ifdef protocol_vproc_MSG_COUNT
49 #include "launchd_core_logic.h"
52 #define VPROC_ERR_TRY_PER_USER 1099
54 #pragma GCC visibility push(default)
56 vproc_err_t
_vprocmgr_init(const char *session_type
);
57 vproc_err_t
_vproc_post_fork_ping(void);
59 #if !TARGET_OS_EMBEDDED
60 #define _audit_session_self(v) (mach_port_t)syscall(SYS_audit_session_self)
61 #define _audit_session_join(s) (au_asid_t)syscall(SYS_audit_session_join, session)
63 #define _audit_session_self(v) MACH_PORT_NULL
64 #define _audit_session_join(s) 0
67 #define SPAWN_HAS_PATH 0x0001
68 #define SPAWN_HAS_WDIR 0x0002
69 #define SPAWN_HAS_UMASK 0x0004
70 #define SPAWN_WANTS_WAIT4DEBUGGER 0x0008
73 _vproc_grab_subset(mach_port_t bp
, mach_port_t
*reqport
, mach_port_t
*rcvright
, launch_data_t
*outval
,
74 mach_port_array_t
*ports
, mach_msg_type_number_t
*portCnt
);
76 kern_return_t
_vprocmgr_getsocket(name_t
);
80 STAILQ_ENTRY(logmsg_s
) sqe
;
91 const char *from_name
;
92 uint64_t from_name_offset
;
95 const char *about_name
;
96 uint64_t about_name_offset
;
99 const char *session_name
;
100 uint64_t session_name_offset
;
111 vproc_err_t
_vprocmgr_log_forward(mach_port_t mp
, void *data
, size_t len
);
115 bootstrap_info(mach_port_t bp
,
116 name_array_t
*service_names
,
117 mach_msg_type_number_t
*service_namesCnt
,
118 name_array_t
*service_jobs
,
119 mach_msg_type_number_t
*service_jobsCnt
,
120 bootstrap_status_array_t
*service_active
,
121 mach_msg_type_number_t
*service_activeCnt
,
124 #pragma GCC visibility pop