2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Mach Operating System
27 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
53 * File: ipc/ipc_init.c
57 * Functions to initialize the IPC system.
60 #include <mach_debug.h>
63 #include <mach/kern_return.h>
64 #include <kern/mach_param.h>
65 #include <kern/ipc_host.h>
66 #include <kern/misc_protos.h>
67 #include <vm/vm_map.h>
68 #include <vm/vm_kern.h>
69 #include <ipc/ipc_entry.h>
70 #include <ipc/ipc_space.h>
71 #include <ipc/ipc_object.h>
72 #include <ipc/ipc_port.h>
73 #include <ipc/ipc_pset.h>
74 #include <ipc/ipc_notify.h>
75 #include <ipc/ipc_kmsg.h>
76 #include <ipc/ipc_hash.h>
77 #include <ipc/ipc_init.h>
78 #include <mach/machine/ndr_def.h> /* NDR_record */
80 vm_map_t ipc_kernel_map
;
81 vm_size_t ipc_kernel_map_size
= 1024 * 1024;
83 vm_map_t ipc_kernel_copy_map
;
84 #define IPC_KERNEL_COPY_MAP_SIZE (8 * 1024 * 1024)
85 vm_size_t ipc_kernel_copy_map_size
= IPC_KERNEL_COPY_MAP_SIZE
;
86 vm_size_t ipc_kmsg_max_vm_space
= (IPC_KERNEL_COPY_MAP_SIZE
* 7)/8;
88 int ipc_space_max
= SPACE_MAX
;
89 int ipc_tree_entry_max
= ITE_MAX
;
90 int ipc_port_max
= PORT_MAX
;
91 int ipc_pset_max
= SET_MAX
;
93 extern void mig_init(void);
94 extern void ikm_cache_init(void);
97 * Routine: ipc_bootstrap
99 * Initialization needed before the kernel task
108 ipc_port_multiple_lock_init();
110 ipc_port_timestamp_lock_init();
111 ipc_port_timestamp_data
= 0;
113 /* all IPC zones should be exhaustible */
115 ipc_space_zone
= zinit(sizeof(struct ipc_space
),
116 ipc_space_max
* sizeof(struct ipc_space
),
117 sizeof(struct ipc_space
),
120 /* make it exhaustible */
121 zone_change(ipc_space_zone
, Z_EXHAUST
, TRUE
);
124 ipc_tree_entry_zone
=
125 zinit(sizeof(struct ipc_tree_entry
),
126 ipc_tree_entry_max
* sizeof(struct ipc_tree_entry
),
127 sizeof(struct ipc_tree_entry
),
130 /* make it exhaustible */
131 zone_change(ipc_tree_entry_zone
, Z_EXHAUST
, TRUE
);
135 * populate all port(set) zones
137 ipc_object_zones
[IOT_PORT
] =
138 zinit(sizeof(struct ipc_port
),
139 ipc_port_max
* sizeof(struct ipc_port
),
140 sizeof(struct ipc_port
),
143 * XXX Can't make the port zone exhaustible because the kernel
144 * XXX panics when port allocation for an internal object fails.
145 *zone_change(ipc_object_zones[IOT_PORT], Z_EXHAUST, TRUE);
148 ipc_object_zones
[IOT_PORT_SET
] =
149 zinit(sizeof(struct ipc_pset
),
150 ipc_pset_max
* sizeof(struct ipc_pset
),
151 sizeof(struct ipc_pset
),
153 /* make it exhaustible */
154 zone_change(ipc_object_zones
[IOT_PORT_SET
], Z_EXHAUST
, TRUE
);
156 /* create special spaces */
158 kr
= ipc_space_create_special(&ipc_space_kernel
);
159 assert(kr
== KERN_SUCCESS
);
162 kr
= ipc_space_create_special(&ipc_space_reply
);
163 assert(kr
== KERN_SUCCESS
);
165 /* initialize modules with hidden data structures */
168 ipc_port_debug_init();
180 * XXX tunable, belongs in mach.message.h
182 #define MSG_OOL_SIZE_SMALL_MAX 4096
183 vm_size_t msg_ool_size_small
;
188 * Final initialization of the IPC system.
194 kern_return_t retval
;
195 vm_offset_t min
, max
;
196 extern vm_size_t kalloc_max_prerounded
;
198 retval
= kmem_suballoc(kernel_map
, &min
, ipc_kernel_map_size
,
199 TRUE
, TRUE
, &ipc_kernel_map
);
200 if (retval
!= KERN_SUCCESS
)
201 panic("ipc_init: kmem_suballoc of ipc_kernel_map failed");
203 retval
= kmem_suballoc(kernel_map
, &min
, ipc_kernel_copy_map_size
,
204 TRUE
, TRUE
, &ipc_kernel_copy_map
);
205 if (retval
!= KERN_SUCCESS
)
206 panic("ipc_init: kmem_suballoc of ipc_kernel_copy_map failed");
208 ipc_kernel_copy_map
->no_zero_fill
= TRUE
;
209 ipc_kernel_copy_map
->wait_for_space
= TRUE
;
212 * As an optimization, 'small' out of line data regions using a
213 * physical copy strategy are copied into kalloc'ed buffers.
214 * The value of 'small' is determined here. Requests kalloc()
215 * with sizes greater or equal to kalloc_max_prerounded may fail.
217 if (kalloc_max_prerounded
<= MSG_OOL_SIZE_SMALL_MAX
) {
218 msg_ool_size_small
= kalloc_max_prerounded
;
221 msg_ool_size_small
= MSG_OOL_SIZE_SMALL_MAX
;