2 * Copyright (c) 1999-2004 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@
21 * bootstrap -- fundamental service initiator and port server
22 * Mike DeMoney, NeXT, Inc.
23 * Copyright, 1990. All rights reserved.
26 subsystem bootstrap 400;
28 #include <mach/std_types.defs>
29 #include <mach/mach_types.defs>
30 import "bootstrap_public.h";
31 import "bootstrap_private.h";
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;
45 routine bootstrap_create_server(
46 __bs_port : mach_port_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);
53 routine bootstrap_unprivileged(
54 __bs_port : mach_port_t;
55 out __unpriv_port : mach_port_make_send_t);
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);
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);
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);
75 skip; /* last used in 10.4 */
77 routine bootstrap_parent(
78 __bs_port : mach_port_t;
79 out __parent_port : mach_port_send_t);
81 skip; /* last used in 10.4 */
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);
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);
93 routine bootstrap_create_service(
94 __bs_port : mach_port_t;
95 __service_name : name_t;
96 out __service_port : mach_port_t);
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);
105 routine bootstrap_getsocket(
106 __bs_port : mach_port_t;
107 out __sockpath : name_t);
110 __bs_port : mach_port_t;
111 ServerAuditToken __token : audit_token_t;
112 __chars : _internal_string_t;
118 out __obsvr_port : mach_port_make_send_t);
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);
126 routine mpm_uncork_fork(
127 __bs_port : mach_port_t;
128 ServerAuditToken __token : audit_token_t);