]> git.saurik.com Git - apple/launchd.git/blob - launchd/src/bootstrap.defs
9d0220fb3036cbd79c8298f6403ad81192da4435
[apple/launchd.git] / launchd / src / bootstrap.defs
1 /*
2 * Copyright (c) 1999-2004 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 /*
21 * bootstrap -- fundamental service initiator and port server
22 * Mike DeMoney, NeXT, Inc.
23 * Copyright, 1990. All rights reserved.
24 */
25
26 subsystem bootstrap 400;
27
28 #include <mach/std_types.defs>
29 #include <mach/mach_types.defs>
30 import "bootstrap_public.h";
31 import "bootstrap_private.h";
32
33 type pid_t = integer_t;
34 type cmd_t = c_string[512];
35 type cmd_array_t = ^array [] of cmd_t;
36 type name_t = c_string[128];
37 type name_array_t = ^array [] of name_t;
38 type _internal_string_t = ^array [] of char;
39 type bootstrap_status_t = integer_t;
40 type bootstrap_status_array_t = ^array [] of bootstrap_status_t;
41
42 userprefix raw_;
43 serverprefix x_;
44
45 routine bootstrap_create_server(
46 __bs_port : mach_port_t;
47 __server_cmd : cmd_t;
48 __server_uid : natural_t;
49 __on_demand : boolean_t;
50 ServerAuditToken __token : audit_token_t;
51 out __server_port : mach_port_make_send_t);
52
53 routine bootstrap_unprivileged(
54 __bs_port : mach_port_t;
55 out __unpriv_port : mach_port_make_send_t);
56
57 routine bootstrap_check_in(
58 __bs_port : mach_port_t;
59 __service_name : name_t;
60 ServerAuditToken __token : audit_token_t;
61 out __service_port : mach_port_move_receive_t);
62
63 routine bootstrap_register(
64 __bs_port : mach_port_t;
65 ServerAuditToken __token : audit_token_t;
66 __service_name : name_t;
67 __service_port : mach_port_t);
68
69 routine bootstrap_look_up(
70 __bs_port : mach_port_t;
71 ServerAuditToken __token : audit_token_t;
72 __service_name : name_t;
73 out __service_port : mach_port_send_t);
74
75 skip; /* last used in 10.4 */
76
77 routine bootstrap_parent(
78 __bs_port : mach_port_t;
79 out __parent_port : mach_port_send_t);
80
81 skip; /* last used in 10.4 */
82
83 routine bootstrap_info(
84 __bs_port : mach_port_t;
85 out __service_names : name_array_t, dealloc;
86 out __service_active : bootstrap_status_array_t, dealloc);
87
88 routine bootstrap_subset(
89 __bs_port : mach_port_t;
90 __requestor_port: mach_port_t;
91 out __subset_port : mach_port_make_send_t);
92
93 routine bootstrap_create_service(
94 __bs_port : mach_port_t;
95 __service_name : name_t;
96 out __service_port : mach_port_t);
97
98 routine bootstrap_transfer_subset(
99 __bs_port : mach_port_t;
100 out __bs_reqport : mach_port_t;
101 out __bs_rcvright : mach_port_move_receive_t;
102 out __service_names : name_array_t, dealloc;
103 out __service_ports : mach_port_array_t, dealloc);
104
105 routine bootstrap_getsocket(
106 __bs_port : mach_port_t;
107 out __sockpath : name_t);
108
109 routine mpm_spawn(
110 __bs_port : mach_port_t;
111 ServerAuditToken __token : audit_token_t;
112 __chars : _internal_string_t;
113 __argc : uint32_t;
114 __envc : uint32_t;
115 __flags : uint64_t;
116 __umask : uint16_t;
117 out __pid : pid_t;
118 out __obsvr_port : mach_port_make_send_t);
119
120 routine mpm_wait(
121 __bs_port : mach_port_t;
122 sreplyport __rport : mach_port_make_send_once_t;
123 ServerAuditToken __token : audit_token_t;
124 out __waitval : integer_t);
125
126 routine mpm_uncork_fork(
127 __bs_port : mach_port_t;
128 ServerAuditToken __token : audit_token_t);