]> git.saurik.com Git - apple/xnu.git/blame - osfmk/mach/message.h
xnu-4570.1.46.tar.gz
[apple/xnu.git] / osfmk / mach / message.h
CommitLineData
1c79356b 1/*
91447636 2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
1c79356b 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
29 * @OSF_COPYRIGHT@
30 */
31/*
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
34 * All Rights Reserved.
35 *
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
41 *
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 *
46 * Carnegie Mellon requests users of this software to return to
47 *
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
52 *
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
2d21ac55
A
56/*
57 * NOTICE: This file was modified by McAfee Research in 2004 to introduce
58 * support for mandatory and extensible security protections. This notice
59 * is included in support of clause 2.2 (b) of the Apple Public License,
60 * Version 2.0.
61 * Copyright (c) 2005 SPARTA, Inc.
62 */
1c79356b
A
63/*
64 */
65/*
66 * File: mach/message.h
67 *
68 * Mach IPC message and primitive function definitions.
69 */
70
71#ifndef _MACH_MESSAGE_H_
72#define _MACH_MESSAGE_H_
73
9bccf70c
A
74#include <stdint.h>
75#include <mach/port.h>
76#include <mach/boolean.h>
77#include <mach/kern_return.h>
78#include <mach/machine/vm_types.h>
1c79356b 79
91447636 80#include <sys/cdefs.h>
316670eb 81#include <sys/appleapiopts.h>
3e170ce0 82#include <Availability.h>
91447636 83
1c79356b
A
84/*
85 * The timeout mechanism uses mach_msg_timeout_t values,
86 * passed by value. The timeout units are milliseconds.
87 * It is controlled with the MACH_SEND_TIMEOUT
88 * and MACH_RCV_TIMEOUT options.
89 */
90
91typedef natural_t mach_msg_timeout_t;
92
93/*
94 * The value to be used when there is no timeout.
95 * (No MACH_SEND_TIMEOUT/MACH_RCV_TIMEOUT option.)
96 */
97
98#define MACH_MSG_TIMEOUT_NONE ((mach_msg_timeout_t) 0)
99
100/*
b0d623f7 101 * The kernel uses MACH_MSGH_BITS_COMPLEX as a hint. If it isn't on, it
1c79356b
A
102 * assumes the body of the message doesn't contain port rights or OOL
103 * data. The field is set in received messages. A user task must
104 * use caution in interpreting the body of a message if the bit isn't
105 * on, because the mach_msg_type's in the body might "lie" about the
106 * contents. If the bit isn't on, but the mach_msg_types
107 * in the body specify rights or OOL data, the behavior is undefined.
108 * (Ie, an error may or may not be produced.)
109 *
110 * The value of MACH_MSGH_BITS_REMOTE determines the interpretation
fe8ab488
A
111 * of the msgh_remote_port field. It is handled like a msgt_name,
112 * but must result in a send or send-once type right.
1c79356b
A
113 *
114 * The value of MACH_MSGH_BITS_LOCAL determines the interpretation
fe8ab488
A
115 * of the msgh_local_port field. It is handled like a msgt_name,
116 * and also must result in a send or send-once type right.
117 *
118 * The value of MACH_MSGH_BITS_VOUCHER determines the interpretation
119 * of the msgh_voucher_port field. It is handled like a msgt_name,
120 * but must result in a send right (and the msgh_voucher_port field
121 * must be the name of a send right to a Mach voucher kernel object.
1c79356b
A
122 *
123 * MACH_MSGH_BITS() combines two MACH_MSG_TYPE_* values, for the remote
124 * and local fields, into a single value suitable for msgh_bits.
125 *
126 * MACH_MSGH_BITS_CIRCULAR should be zero; is is used internally.
127 *
128 * The unused bits should be zero and are reserved for the kernel
129 * or for future interface expansion.
130 */
131
132#define MACH_MSGH_BITS_ZERO 0x00000000
1c79356b 133
fe8ab488
A
134#define MACH_MSGH_BITS_REMOTE_MASK 0x0000001f
135#define MACH_MSGH_BITS_LOCAL_MASK 0x00001f00
136#define MACH_MSGH_BITS_VOUCHER_MASK 0x001f0000
137
138#define MACH_MSGH_BITS_PORTS_MASK \
139 (MACH_MSGH_BITS_REMOTE_MASK | \
140 MACH_MSGH_BITS_LOCAL_MASK | \
141 MACH_MSGH_BITS_VOUCHER_MASK)
142
143#define MACH_MSGH_BITS_COMPLEX 0x80000000U /* message is complex */
144
145#define MACH_MSGH_BITS_USER 0x801f1f1fU /* allowed bits user->kernel */
146
147#define MACH_MSGH_BITS_RAISEIMP 0x20000000U /* importance raised due to msg */
148#define MACH_MSGH_BITS_DENAP MACH_MSGH_BITS_RAISEIMP
1c79356b 149
fe8ab488
A
150#define MACH_MSGH_BITS_IMPHOLDASRT 0x10000000U /* assertion help, userland private */
151#define MACH_MSGH_BITS_DENAPHOLDASRT MACH_MSGH_BITS_IMPHOLDASRT
1c79356b 152
fe8ab488
A
153#define MACH_MSGH_BITS_CIRCULAR 0x10000000U /* message circular, kernel private */
154
155#define MACH_MSGH_BITS_USED 0xb01f1f1fU
156
157/* setter macros for the bits */
158#define MACH_MSGH_BITS(remote, local) /* legacy */ \
1c79356b 159 ((remote) | ((local) << 8))
fe8ab488
A
160#define MACH_MSGH_BITS_SET_PORTS(remote, local, voucher) \
161 (((remote) & MACH_MSGH_BITS_REMOTE_MASK) | \
162 (((local) << 8) & MACH_MSGH_BITS_LOCAL_MASK) | \
163 (((voucher) << 16) & MACH_MSGH_BITS_VOUCHER_MASK))
164#define MACH_MSGH_BITS_SET(remote, local, voucher, other) \
165 (MACH_MSGH_BITS_SET_PORTS((remote), (local), (voucher)) \
166 | ((other) &~ MACH_MSGH_BITS_PORTS_MASK))
167
168/* getter macros for pulling values out of the bits field */
1c79356b
A
169#define MACH_MSGH_BITS_REMOTE(bits) \
170 ((bits) & MACH_MSGH_BITS_REMOTE_MASK)
171#define MACH_MSGH_BITS_LOCAL(bits) \
172 (((bits) & MACH_MSGH_BITS_LOCAL_MASK) >> 8)
fe8ab488
A
173#define MACH_MSGH_BITS_VOUCHER(bits) \
174 (((bits) & MACH_MSGH_BITS_VOUCHER_MASK) >> 16)
1c79356b 175#define MACH_MSGH_BITS_PORTS(bits) \
fe8ab488 176 ((bits) & MACH_MSGH_BITS_PORTS_MASK)
1c79356b
A
177#define MACH_MSGH_BITS_OTHER(bits) \
178 ((bits) &~ MACH_MSGH_BITS_PORTS_MASK)
179
fe8ab488
A
180/* checking macros */
181#define MACH_MSGH_BITS_HAS_REMOTE(bits) \
182 (MACH_MSGH_BITS_REMOTE(bits) != MACH_MSGH_BITS_ZERO)
183#define MACH_MSGH_BITS_HAS_LOCAL(bits) \
184 (MACH_MSGH_BITS_LOCAL(bits) != MACH_MSGH_BITS_ZERO)
185#define MACH_MSGH_BITS_HAS_VOUCHER(bits) \
186 (MACH_MSGH_BITS_VOUCHER(bits) != MACH_MSGH_BITS_ZERO)
187#define MACH_MSGH_BITS_IS_COMPLEX(bits) \
188 (((bits) & MACH_MSGH_BITS_COMPLEX) != MACH_MSGH_BITS_ZERO)
189
190/* importance checking macros */
191#define MACH_MSGH_BITS_RAISED_IMPORTANCE(bits) \
192 (((bits) & MACH_MSGH_BITS_RAISEIMP) != MACH_MSGH_BITS_ZERO)
193#define MACH_MSGH_BITS_HOLDS_IMPORTANCE_ASSERTION(bits) \
194 (((bits) & MACH_MSGH_BITS_IMPHOLDASRT) != MACH_MSGH_BITS_ZERO)
195
1c79356b
A
196/*
197 * Every message starts with a message header.
b0d623f7
A
198 * Following the message header, if the message is complex, are a count
199 * of type descriptors and the type descriptors themselves
200 * (mach_msg_descriptor_t). The size of the message must be specified in
201 * bytes, and includes the message header, descriptor count, descriptors,
202 * and inline data.
1c79356b
A
203 *
204 * The msgh_remote_port field specifies the destination of the message.
205 * It must specify a valid send or send-once right for a port.
206 *
207 * The msgh_local_port field specifies a "reply port". Normally,
208 * This field carries a send-once right that the receiver will use
209 * to reply to the message. It may carry the values MACH_PORT_NULL,
210 * MACH_PORT_DEAD, a send-once right, or a send right.
211 *
fe8ab488
A
212 * The msgh_voucher_port field specifies a Mach voucher port. Only
213 * send rights to kernel-implemented Mach Voucher kernel objects in
214 * addition to MACH_PORT_NULL or MACH_PORT_DEAD may be passed.
1c79356b
A
215 *
216 * The msgh_id field is uninterpreted by the message primitives.
217 * It normally carries information specifying the format
218 * or meaning of the message.
219 */
220
221typedef unsigned int mach_msg_bits_t;
222typedef natural_t mach_msg_size_t;
223typedef integer_t mach_msg_id_t;
224
1c79356b
A
225#define MACH_MSG_SIZE_NULL (mach_msg_size_t *) 0
226
39037602
A
227typedef unsigned int mach_msg_priority_t;
228
229#define MACH_MSG_PRIORITY_UNSPECIFIED (mach_msg_priority_t) 0
230
1c79356b
A
231typedef unsigned int mach_msg_type_name_t;
232
39037602
A
233#define MACH_MSG_TYPE_MOVE_RECEIVE 16 /* Must hold receive right */
234#define MACH_MSG_TYPE_MOVE_SEND 17 /* Must hold send right(s) */
235#define MACH_MSG_TYPE_MOVE_SEND_ONCE 18 /* Must hold sendonce right */
236#define MACH_MSG_TYPE_COPY_SEND 19 /* Must hold send right(s) */
237#define MACH_MSG_TYPE_MAKE_SEND 20 /* Must hold receive right */
238#define MACH_MSG_TYPE_MAKE_SEND_ONCE 21 /* Must hold receive right */
239#define MACH_MSG_TYPE_COPY_RECEIVE 22 /* NOT VALID */
240#define MACH_MSG_TYPE_DISPOSE_RECEIVE 24 /* must hold receive right */
241#define MACH_MSG_TYPE_DISPOSE_SEND 25 /* must hold send right(s) */
fe8ab488 242#define MACH_MSG_TYPE_DISPOSE_SEND_ONCE 26 /* must hold sendonce right */
1c79356b
A
243
244typedef unsigned int mach_msg_copy_options_t;
245
246#define MACH_MSG_PHYSICAL_COPY 0
247#define MACH_MSG_VIRTUAL_COPY 1
248#define MACH_MSG_ALLOCATE 2
3e170ce0 249#define MACH_MSG_OVERWRITE 3 /* deprecated */
1c79356b
A
250#ifdef MACH_KERNEL
251#define MACH_MSG_KALLOC_COPY_T 4
1c79356b
A
252#endif /* MACH_KERNEL */
253
b0d623f7
A
254/*
255 * In a complex mach message, the mach_msg_header_t is followed by
256 * a descriptor count, then an array of that number of descriptors
257 * (mach_msg_*_descriptor_t). The type field of mach_msg_type_descriptor_t
258 * (which any descriptor can be cast to) indicates the flavor of the
259 * descriptor.
260 *
261 * Note that in LP64, the various types of descriptors are no longer all
262 * the same size as mach_msg_descriptor_t, so the array cannot be indexed
263 * as expected.
264 */
265
1c79356b
A
266typedef unsigned int mach_msg_descriptor_type_t;
267
268#define MACH_MSG_PORT_DESCRIPTOR 0
269#define MACH_MSG_OOL_DESCRIPTOR 1
270#define MACH_MSG_OOL_PORTS_DESCRIPTOR 2
271#define MACH_MSG_OOL_VOLATILE_DESCRIPTOR 3
272
91447636 273#pragma pack(4)
1c79356b
A
274
275typedef struct
276{
91447636 277 natural_t pad1;
1c79356b
A
278 mach_msg_size_t pad2;
279 unsigned int pad3 : 24;
280 mach_msg_descriptor_type_t type : 8;
281} mach_msg_type_descriptor_t;
282
283typedef struct
284{
285 mach_port_t name;
b0d623f7
A
286#if !(defined(KERNEL) && defined(__LP64__))
287// Pad to 8 bytes everywhere except the K64 kernel where mach_port_t is 8 bytes
1c79356b 288 mach_msg_size_t pad1;
b0d623f7 289#endif
1c79356b
A
290 unsigned int pad2 : 16;
291 mach_msg_type_name_t disposition : 8;
292 mach_msg_descriptor_type_t type : 8;
b0d623f7
A
293#if defined(KERNEL)
294 uint32_t pad_end;
295#endif
1c79356b
A
296} mach_msg_port_descriptor_t;
297
298typedef struct
299{
91447636
A
300 uint32_t address;
301 mach_msg_size_t size;
302 boolean_t deallocate: 8;
303 mach_msg_copy_options_t copy: 8;
304 unsigned int pad1: 8;
305 mach_msg_descriptor_type_t type: 8;
306} mach_msg_ool_descriptor32_t;
307
308typedef struct
309{
310 uint64_t address;
311 boolean_t deallocate: 8;
312 mach_msg_copy_options_t copy: 8;
313 unsigned int pad1: 8;
314 mach_msg_descriptor_type_t type: 8;
315 mach_msg_size_t size;
316} mach_msg_ool_descriptor64_t;
317
318typedef struct
319{
320 void* address;
321#if !defined(__LP64__)
1c79356b 322 mach_msg_size_t size;
91447636 323#endif
1c79356b
A
324 boolean_t deallocate: 8;
325 mach_msg_copy_options_t copy: 8;
326 unsigned int pad1: 8;
327 mach_msg_descriptor_type_t type: 8;
91447636
A
328#if defined(__LP64__)
329 mach_msg_size_t size;
330#endif
b0d623f7
A
331#if defined(KERNEL) && !defined(__LP64__)
332 uint32_t pad_end;
333#endif
1c79356b
A
334} mach_msg_ool_descriptor_t;
335
91447636
A
336typedef struct
337{
338 uint32_t address;
339 mach_msg_size_t count;
340 boolean_t deallocate: 8;
341 mach_msg_copy_options_t copy: 8;
342 mach_msg_type_name_t disposition : 8;
343 mach_msg_descriptor_type_t type : 8;
344} mach_msg_ool_ports_descriptor32_t;
345
346typedef struct
347{
348 uint64_t address;
349 boolean_t deallocate: 8;
350 mach_msg_copy_options_t copy: 8;
351 mach_msg_type_name_t disposition : 8;
352 mach_msg_descriptor_type_t type : 8;
353 mach_msg_size_t count;
354} mach_msg_ool_ports_descriptor64_t;
355
1c79356b
A
356typedef struct
357{
358 void* address;
91447636 359#if !defined(__LP64__)
1c79356b 360 mach_msg_size_t count;
91447636 361#endif
1c79356b
A
362 boolean_t deallocate: 8;
363 mach_msg_copy_options_t copy: 8;
364 mach_msg_type_name_t disposition : 8;
365 mach_msg_descriptor_type_t type : 8;
91447636
A
366#if defined(__LP64__)
367 mach_msg_size_t count;
368#endif
b0d623f7
A
369#if defined(KERNEL) && !defined(__LP64__)
370 uint32_t pad_end;
371#endif
1c79356b
A
372} mach_msg_ool_ports_descriptor_t;
373
91447636
A
374/*
375 * LP64support - This union definition is not really
376 * appropriate in LP64 mode because not all descriptors
377 * are of the same size in that environment.
378 */
b0d623f7
A
379#if defined(__LP64__) && defined(KERNEL)
380typedef union
381{
382 mach_msg_port_descriptor_t port;
383 mach_msg_ool_descriptor32_t out_of_line;
384 mach_msg_ool_ports_descriptor32_t ool_ports;
385 mach_msg_type_descriptor_t type;
386} mach_msg_descriptor_t;
387#else
1c79356b
A
388typedef union
389{
390 mach_msg_port_descriptor_t port;
391 mach_msg_ool_descriptor_t out_of_line;
392 mach_msg_ool_ports_descriptor_t ool_ports;
393 mach_msg_type_descriptor_t type;
394} mach_msg_descriptor_t;
b0d623f7 395#endif
1c79356b
A
396
397typedef struct
398{
399 mach_msg_size_t msgh_descriptor_count;
400} mach_msg_body_t;
401
402#define MACH_MSG_BODY_NULL (mach_msg_body_t *) 0
403#define MACH_MSG_DESCRIPTOR_NULL (mach_msg_descriptor_t *) 0
404
405typedef struct
406{
407 mach_msg_bits_t msgh_bits;
408 mach_msg_size_t msgh_size;
409 mach_port_t msgh_remote_port;
410 mach_port_t msgh_local_port;
fe8ab488 411 mach_port_name_t msgh_voucher_port;
1c79356b
A
412 mach_msg_id_t msgh_id;
413} mach_msg_header_t;
414
fe8ab488
A
415#define msgh_reserved msgh_voucher_port
416#define MACH_MSG_NULL (mach_msg_header_t *) 0
1c79356b
A
417
418typedef struct
419{
420 mach_msg_header_t header;
421 mach_msg_body_t body;
422} mach_msg_base_t;
423
424typedef unsigned int mach_msg_trailer_type_t;
425
426#define MACH_MSG_TRAILER_FORMAT_0 0
427
428typedef unsigned int mach_msg_trailer_size_t;
39236c6e 429typedef char *mach_msg_trailer_info_t;
1c79356b
A
430
431typedef struct
432{
433 mach_msg_trailer_type_t msgh_trailer_type;
434 mach_msg_trailer_size_t msgh_trailer_size;
435} mach_msg_trailer_t;
436
fe8ab488
A
437/*
438 * The msgh_seqno field carries a sequence number
439 * associated with the received-from port. A port's
440 * sequence number is incremented every time a message
441 * is received from it and included in the received
442 * trailer to help put messages back in sequence if
443 * multiple threads receive and/or process received
444 * messages.
445 */
1c79356b
A
446typedef struct
447{
448 mach_msg_trailer_type_t msgh_trailer_type;
449 mach_msg_trailer_size_t msgh_trailer_size;
450 mach_port_seqno_t msgh_seqno;
451} mach_msg_seqno_trailer_t;
452
453typedef struct
454{
455 unsigned int val[2];
456} security_token_t;
457
458typedef struct
459{
460 mach_msg_trailer_type_t msgh_trailer_type;
461 mach_msg_trailer_size_t msgh_trailer_size;
462 mach_port_seqno_t msgh_seqno;
463 security_token_t msgh_sender;
464} mach_msg_security_trailer_t;
465
e5568f75
A
466/*
467 * The audit token is an opaque token which identifies
468 * Mach tasks and senders of Mach messages as subjects
469 * to the BSM audit system. Only the appropriate BSM
470 * library routines should be used to interpret the
471 * contents of the audit token as the representation
472 * of the subject identity within the token may change
473 * over time.
474 */
55e303ae
A
475typedef struct
476{
477 unsigned int val[8];
478} audit_token_t;
479
480typedef struct
481{
482 mach_msg_trailer_type_t msgh_trailer_type;
483 mach_msg_trailer_size_t msgh_trailer_size;
484 mach_port_seqno_t msgh_seqno;
485 security_token_t msgh_sender;
486 audit_token_t msgh_audit;
487} mach_msg_audit_trailer_t;
1c79356b 488
b0d623f7
A
489typedef struct
490{
491 mach_msg_trailer_type_t msgh_trailer_type;
492 mach_msg_trailer_size_t msgh_trailer_size;
493 mach_port_seqno_t msgh_seqno;
494 security_token_t msgh_sender;
495 audit_token_t msgh_audit;
316670eb 496 mach_port_context_t msgh_context;
b0d623f7
A
497} mach_msg_context_trailer_t;
498
5ba3f43e
A
499#if defined(MACH_KERNEL_PRIVATE) && defined(__arm64__)
500typedef struct
501{
502 mach_msg_trailer_type_t msgh_trailer_type;
503 mach_msg_trailer_size_t msgh_trailer_size;
504 mach_port_seqno_t msgh_seqno;
505 security_token_t msgh_sender;
506 audit_token_t msgh_audit;
507 mach_port_context32_t msgh_context;
508} mach_msg_context_trailer32_t;
509
510typedef struct
511{
512 mach_msg_trailer_type_t msgh_trailer_type;
513 mach_msg_trailer_size_t msgh_trailer_size;
514 mach_port_seqno_t msgh_seqno;
515 security_token_t msgh_sender;
516 audit_token_t msgh_audit;
517 mach_port_context64_t msgh_context;
518} mach_msg_context_trailer64_t;
519#endif
fe8ab488
A
520
521
2d21ac55
A
522typedef struct
523{
524 mach_port_name_t sender;
525} msg_labels_t;
526
527/*
528 Trailer type to pass MAC policy label info as a mach message trailer.
529
530*/
531
532typedef struct
533{
534 mach_msg_trailer_type_t msgh_trailer_type;
535 mach_msg_trailer_size_t msgh_trailer_size;
536 mach_port_seqno_t msgh_seqno;
537 security_token_t msgh_sender;
b0d623f7 538 audit_token_t msgh_audit;
316670eb 539 mach_port_context_t msgh_context;
2d21ac55 540 int msgh_ad;
b0d623f7 541 msg_labels_t msgh_labels;
2d21ac55
A
542} mach_msg_mac_trailer_t;
543
5ba3f43e
A
544#if defined(MACH_KERNEL_PRIVATE) && defined(__arm64__)
545typedef struct
546{
547 mach_msg_trailer_type_t msgh_trailer_type;
548 mach_msg_trailer_size_t msgh_trailer_size;
549 mach_port_seqno_t msgh_seqno;
550 security_token_t msgh_sender;
551 audit_token_t msgh_audit;
552 mach_port_context32_t msgh_context;
553 int msgh_ad;
554 msg_labels_t msgh_labels;
555} mach_msg_mac_trailer32_t;
556
557typedef struct
558{
559 mach_msg_trailer_type_t msgh_trailer_type;
560 mach_msg_trailer_size_t msgh_trailer_size;
561 mach_port_seqno_t msgh_seqno;
562 security_token_t msgh_sender;
563 audit_token_t msgh_audit;
564 mach_port_context64_t msgh_context;
565 int msgh_ad;
566 msg_labels_t msgh_labels;
567} mach_msg_mac_trailer64_t;
568
569#endif
fe8ab488 570
1c79356b 571#define MACH_MSG_TRAILER_MINIMUM_SIZE sizeof(mach_msg_trailer_t)
55e303ae
A
572
573/*
574 * These values can change from release to release - but clearly
575 * code cannot request additional trailer elements one was not
576 * compiled to understand. Therefore, it is safe to use this
577 * constant when the same module specified the receive options.
578 * Otherwise, you run the risk that the options requested by
579 * another module may exceed the local modules notion of
580 * MAX_TRAILER_SIZE.
581 */
5ba3f43e
A
582#if defined(MACH_KERNEL_PRIVATE) && defined(__arm64__)
583typedef mach_msg_mac_trailer64_t mach_msg_max_trailer64_t;
584typedef mach_msg_mac_trailer32_t mach_msg_max_trailer32_t;
585#endif
39236c6e 586
2d21ac55 587typedef mach_msg_mac_trailer_t mach_msg_max_trailer_t;
b0d623f7 588#define MAX_TRAILER_SIZE ((mach_msg_size_t)sizeof(mach_msg_max_trailer_t))
55e303ae
A
589
590/*
591 * Legacy requirements keep us from ever updating these defines (even
592 * when the format_0 trailers gain new option data fields in the future).
593 * Therefore, they shouldn't be used going forward. Instead, the sizes
594 * should be compared against the specific element size requested using
595 * REQUESTED_TRAILER_SIZE.
596 */
597typedef mach_msg_security_trailer_t mach_msg_format_0_trailer_t;
2d21ac55
A
598
599/*typedef mach_msg_mac_trailer_t mach_msg_format_0_trailer_t;
600*/
601
55e303ae 602#define MACH_MSG_TRAILER_FORMAT_0_SIZE sizeof(mach_msg_format_0_trailer_t)
1c79356b
A
603
604#define KERNEL_SECURITY_TOKEN_VALUE { {0, 1} }
605extern security_token_t KERNEL_SECURITY_TOKEN;
606
55e303ae
A
607#define KERNEL_AUDIT_TOKEN_VALUE { {0, 0, 0, 0, 0, 0, 0, 0} }
608extern audit_token_t KERNEL_AUDIT_TOKEN;
609
1c79356b
A
610typedef integer_t mach_msg_options_t;
611
612typedef struct
613{
614 mach_msg_header_t header;
615} mach_msg_empty_send_t;
616
617typedef struct
618{
619 mach_msg_header_t header;
620 mach_msg_trailer_t trailer;
621} mach_msg_empty_rcv_t;
622
623typedef union
624{
625 mach_msg_empty_send_t send;
626 mach_msg_empty_rcv_t rcv;
627} mach_msg_empty_t;
628
91447636
A
629#pragma pack()
630
1c79356b
A
631/* utility to round the message size - will become machine dependent */
632#define round_msg(x) (((mach_msg_size_t)(x) + sizeof (natural_t) - 1) & \
633 ~(sizeof (natural_t) - 1))
634
635/*
636 * There is no fixed upper bound to the size of Mach messages.
637 */
1c79356b
A
638#define MACH_MSG_SIZE_MAX ((mach_msg_size_t) ~0)
639
316670eb
A
640#if defined(__APPLE_API_PRIVATE)
641/*
642 * But architectural limits of a given implementation, or
643 * temporal conditions may cause unpredictable send failures
644 * for messages larger than MACH_MSG_SIZE_RELIABLE.
645 *
646 * In either case, waiting for memory is [currently] outside
647 * the scope of send timeout values provided to IPC.
648 */
649#define MACH_MSG_SIZE_RELIABLE ((mach_msg_size_t) 256 * 1024)
650#endif
1c79356b
A
651/*
652 * Compatibility definitions, for code written
653 * when there was a msgh_kind instead of msgh_seqno.
654 */
1c79356b 655#define MACH_MSGH_KIND_NORMAL 0x00000000
1c79356b 656#define MACH_MSGH_KIND_NOTIFICATION 0x00000001
1c79356b
A
657#define msgh_kind msgh_seqno
658#define mach_msg_kind_t mach_port_seqno_t
659
1c79356b
A
660typedef natural_t mach_msg_type_size_t;
661typedef natural_t mach_msg_type_number_t;
662
663/*
664 * Values received/carried in messages. Tells the receiver what
665 * sort of port right he now has.
666 *
667 * MACH_MSG_TYPE_PORT_NAME is used to transfer a port name
668 * which should remain uninterpreted by the kernel. (Port rights
669 * are not transferred, just the port name.)
670 */
671
672#define MACH_MSG_TYPE_PORT_NONE 0
673
674#define MACH_MSG_TYPE_PORT_NAME 15
675#define MACH_MSG_TYPE_PORT_RECEIVE MACH_MSG_TYPE_MOVE_RECEIVE
676#define MACH_MSG_TYPE_PORT_SEND MACH_MSG_TYPE_MOVE_SEND
677#define MACH_MSG_TYPE_PORT_SEND_ONCE MACH_MSG_TYPE_MOVE_SEND_ONCE
678
679#define MACH_MSG_TYPE_LAST 22 /* Last assigned */
680
681/*
682 * A dummy value. Mostly used to indicate that the actual value
683 * will be filled in later, dynamically.
684 */
685
686#define MACH_MSG_TYPE_POLYMORPHIC ((mach_msg_type_name_t) -1)
687
688/*
689 * Is a given item a port type?
690 */
691
692#define MACH_MSG_TYPE_PORT_ANY(x) \
693 (((x) >= MACH_MSG_TYPE_MOVE_RECEIVE) && \
694 ((x) <= MACH_MSG_TYPE_MAKE_SEND_ONCE))
695
696#define MACH_MSG_TYPE_PORT_ANY_SEND(x) \
697 (((x) >= MACH_MSG_TYPE_MOVE_SEND) && \
698 ((x) <= MACH_MSG_TYPE_MAKE_SEND_ONCE))
699
700#define MACH_MSG_TYPE_PORT_ANY_RIGHT(x) \
701 (((x) >= MACH_MSG_TYPE_MOVE_RECEIVE) && \
702 ((x) <= MACH_MSG_TYPE_MOVE_SEND_ONCE))
703
704typedef integer_t mach_msg_option_t;
705
706#define MACH_MSG_OPTION_NONE 0x00000000
707
708#define MACH_SEND_MSG 0x00000001
709#define MACH_RCV_MSG 0x00000002
1c79356b 710
39236c6e
A
711#define MACH_RCV_LARGE 0x00000004 /* report large message sizes */
712#define MACH_RCV_LARGE_IDENTITY 0x00000008 /* identify source of large messages */
713
714#define MACH_SEND_TIMEOUT 0x00000010 /* timeout value applies to send */
39037602 715#define MACH_SEND_OVERRIDE 0x00000020 /* priority override for send */
39236c6e 716#define MACH_SEND_INTERRUPT 0x00000040 /* don't restart interrupted sends */
6d2010ae 717#define MACH_SEND_NOTIFY 0x00000080 /* arm send-possible notify */
39236c6e
A
718#define MACH_SEND_ALWAYS 0x00010000 /* ignore qlimits - kernel only */
719#define MACH_SEND_TRAILER 0x00020000 /* sender-provided trailer */
720#define MACH_SEND_NOIMPORTANCE 0x00040000 /* msg won't carry importance */
fe8ab488 721#define MACH_SEND_NODENAP MACH_SEND_NOIMPORTANCE
39236c6e 722#define MACH_SEND_IMPORTANCE 0x00080000 /* msg carries importance - kernel only */
5ba3f43e 723#define MACH_SEND_SYNC_OVERRIDE 0x00100000 /* msg should do sync ipc override */
1c79356b 724
39236c6e
A
725
726#define MACH_RCV_TIMEOUT 0x00000100 /* timeout value applies to receive */
6d2010ae 727#define MACH_RCV_NOTIFY 0x00000200 /* reserved - legacy */
39236c6e 728#define MACH_RCV_INTERRUPT 0x00000400 /* don't restart interrupted receive */
fe8ab488 729#define MACH_RCV_VOUCHER 0x00000800 /* willing to receive voucher port */
3e170ce0 730#define MACH_RCV_OVERWRITE 0x00001000 /* scatter receive (deprecated) */
5ba3f43e 731#define MACH_RCV_SYNC_WAIT 0x00004000 /* sync waiter waiting for rcv */
1c79356b 732
39037602
A
733#ifdef XNU_KERNEL_PRIVATE
734
735#define MACH_RCV_STACK 0x00002000 /* receive into highest addr of buffer */
736
737/*
738 * NOTE:
739 * This internal-only flag is intended for use by a single thread per-port/set!
740 * If more than one thread attempts to MACH_PEEK_MSG on a port or set, one of
741 * the threads may miss messages (in fact, it may never wake up).
742 */
743#define MACH_PEEK_MSG 0x00100000 /* receive, but leave msgs queued */
744
745#endif
746
1c79356b
A
747/*
748 * NOTE: a 0x00------ RCV mask implies to ask for
749 * a MACH_MSG_TRAILER_FORMAT_0 with 0 Elements,
750 * which is equivalent to a mach_msg_trailer_t.
2d21ac55
A
751 *
752 * XXXMAC: unlike the rest of the MACH_RCV_* flags, MACH_RCV_TRAILER_LABELS
b0d623f7
A
753 * needs its own private bit since we only calculate its fields when absolutely
754 * required.
1c79356b
A
755 */
756#define MACH_RCV_TRAILER_NULL 0
757#define MACH_RCV_TRAILER_SEQNO 1
758#define MACH_RCV_TRAILER_SENDER 2
55e303ae 759#define MACH_RCV_TRAILER_AUDIT 3
b0d623f7
A
760#define MACH_RCV_TRAILER_CTX 4
761#define MACH_RCV_TRAILER_AV 7
762#define MACH_RCV_TRAILER_LABELS 8
1c79356b
A
763
764#define MACH_RCV_TRAILER_TYPE(x) (((x) & 0xf) << 28)
765#define MACH_RCV_TRAILER_ELEMENTS(x) (((x) & 0xf) << 24)
39236c6e 766#define MACH_RCV_TRAILER_MASK ((0xf << 24))
1c79356b 767
1c79356b 768#define GET_RCV_ELEMENTS(y) (((y) >> 24) & 0xf)
2d21ac55 769
39236c6e
A
770#ifdef MACH_KERNEL_PRIVATE
771/* The options that the kernel honors when passed from user space */
39037602
A
772#define MACH_SEND_USER (MACH_SEND_MSG | MACH_SEND_TIMEOUT | \
773 MACH_SEND_NOTIFY | MACH_SEND_OVERRIDE | \
5ba3f43e
A
774 MACH_SEND_TRAILER | MACH_SEND_NOIMPORTANCE | \
775 MACH_SEND_SYNC_OVERRIDE)
39236c6e 776
39037602
A
777#define MACH_RCV_USER (MACH_RCV_MSG | MACH_RCV_TIMEOUT | \
778 MACH_RCV_LARGE | MACH_RCV_LARGE_IDENTITY | \
5ba3f43e
A
779 MACH_RCV_VOUCHER | MACH_RCV_TRAILER_MASK | \
780 MACH_RCV_SYNC_WAIT)
39236c6e
A
781
782#define MACH_MSG_OPTION_USER (MACH_SEND_USER | MACH_RCV_USER)
783
784/* The options implemented by the library interface to mach_msg et. al. */
785#define MACH_MSG_OPTION_LIB (MACH_SEND_INTERRUPT | MACH_RCV_INTERRUPT)
786
490019cf
A
787/*
788 * Default options to use when sending from the kernel.
789 *
790 * Until we are sure of its effects, we are disabling
791 * importance donation from the kernel-side of user
792 * threads in importance-donating tasks.
793 * (11938665 & 23925818)
794 */
39236c6e
A
795#define MACH_SEND_KERNEL_DEFAULT (MACH_SEND_MSG | \
796 MACH_SEND_ALWAYS | MACH_SEND_NOIMPORTANCE)
39236c6e
A
797
798#endif /* MACH_KERNEL_PRIVATE */
799
2d21ac55 800/*
b0d623f7
A
801 * XXXMAC: note that in the case of MACH_RCV_TRAILER_LABELS,
802 * we just fall through to mach_msg_max_trailer_t.
2d21ac55 803 * This is correct behavior since mach_msg_max_trailer_t is defined as
b0d623f7
A
804 * mac_msg_mac_trailer_t which is used for the LABELS trailer.
805 * It also makes things work properly if MACH_RCV_TRAILER_LABELS is ORed
806 * with one of the other options.
2d21ac55 807 */
316670eb
A
808
809#define REQUESTED_TRAILER_SIZE_NATIVE(y) \
9bccf70c
A
810 ((mach_msg_trailer_size_t) \
811 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_NULL) ? \
812 sizeof(mach_msg_trailer_t) : \
813 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_SEQNO) ? \
814 sizeof(mach_msg_seqno_trailer_t) : \
55e303ae
A
815 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_SENDER) ? \
816 sizeof(mach_msg_security_trailer_t) : \
2d21ac55
A
817 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_AUDIT) ? \
818 sizeof(mach_msg_audit_trailer_t) : \
b0d623f7
A
819 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_CTX) ? \
820 sizeof(mach_msg_context_trailer_t) : \
821 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_AV) ? \
822 sizeof(mach_msg_mac_trailer_t) : \
823 sizeof(mach_msg_max_trailer_t))))))))
2d21ac55 824
316670eb
A
825
826#ifdef XNU_KERNEL_PRIVATE
827
5ba3f43e
A
828#if defined(__arm64__)
829#define REQUESTED_TRAILER_SIZE(is64, y) \
830 ((mach_msg_trailer_size_t) \
831 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_NULL) ? \
832 sizeof(mach_msg_trailer_t) : \
833 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_SEQNO) ? \
834 sizeof(mach_msg_seqno_trailer_t) : \
835 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_SENDER) ? \
836 sizeof(mach_msg_security_trailer_t) : \
837 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_AUDIT) ? \
838 sizeof(mach_msg_audit_trailer_t) : \
839 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_CTX) ? \
840 ((is64) ? sizeof(mach_msg_context_trailer64_t) : sizeof(mach_msg_context_trailer32_t)) : \
841 ((GET_RCV_ELEMENTS(y) == MACH_RCV_TRAILER_AV) ? \
842 ((is64) ? sizeof(mach_msg_mac_trailer64_t) : sizeof(mach_msg_mac_trailer32_t)) : \
843 sizeof(mach_msg_max_trailer_t))))))))
844#else
316670eb 845#define REQUESTED_TRAILER_SIZE(is64, y) REQUESTED_TRAILER_SIZE_NATIVE(y)
5ba3f43e 846#endif
316670eb
A
847
848#else /* XNU_KERNEL_PRIVATE */
849#define REQUESTED_TRAILER_SIZE(y) REQUESTED_TRAILER_SIZE_NATIVE(y)
850#endif /* XNU_KERNEL_PRIVATE */
851
1c79356b
A
852/*
853 * Much code assumes that mach_msg_return_t == kern_return_t.
854 * This definition is useful for descriptive purposes.
855 *
856 * See <mach/error.h> for the format of error codes.
857 * IPC errors are system 4. Send errors are subsystem 0;
858 * receive errors are subsystem 1. The code field is always non-zero.
859 * The high bits of the code field communicate extra information
860 * for some error codes. MACH_MSG_MASK masks off these special bits.
861 */
862
863typedef kern_return_t mach_msg_return_t;
864
865#define MACH_MSG_SUCCESS 0x00000000
866
867
868#define MACH_MSG_MASK 0x00003e00
869 /* All special error code bits defined below. */
870#define MACH_MSG_IPC_SPACE 0x00002000
871 /* No room in IPC name space for another capability name. */
872#define MACH_MSG_VM_SPACE 0x00001000
873 /* No room in VM address space for out-of-line memory. */
874#define MACH_MSG_IPC_KERNEL 0x00000800
875 /* Kernel resource shortage handling an IPC capability. */
876#define MACH_MSG_VM_KERNEL 0x00000400
877 /* Kernel resource shortage handling out-of-line memory. */
878
879#define MACH_SEND_IN_PROGRESS 0x10000001
880 /* Thread is waiting to send. (Internal use only.) */
881#define MACH_SEND_INVALID_DATA 0x10000002
882 /* Bogus in-line data. */
883#define MACH_SEND_INVALID_DEST 0x10000003
884 /* Bogus destination port. */
885#define MACH_SEND_TIMED_OUT 0x10000004
886 /* Message not sent before timeout expired. */
fe8ab488
A
887#define MACH_SEND_INVALID_VOUCHER 0x10000005
888 /* Bogus voucher port. */
1c79356b
A
889#define MACH_SEND_INTERRUPTED 0x10000007
890 /* Software interrupt. */
891#define MACH_SEND_MSG_TOO_SMALL 0x10000008
892 /* Data doesn't contain a complete message. */
893#define MACH_SEND_INVALID_REPLY 0x10000009
894 /* Bogus reply port. */
895#define MACH_SEND_INVALID_RIGHT 0x1000000a
896 /* Bogus port rights in the message body. */
897#define MACH_SEND_INVALID_NOTIFY 0x1000000b
898 /* Bogus notify port argument. */
899#define MACH_SEND_INVALID_MEMORY 0x1000000c
900 /* Invalid out-of-line memory pointer. */
901#define MACH_SEND_NO_BUFFER 0x1000000d
902 /* No message buffer is available. */
903#define MACH_SEND_TOO_LARGE 0x1000000e
904 /* Send is too large for port */
905#define MACH_SEND_INVALID_TYPE 0x1000000f
906 /* Invalid msg-type specification. */
907#define MACH_SEND_INVALID_HEADER 0x10000010
908 /* A field in the header had a bad value. */
909#define MACH_SEND_INVALID_TRAILER 0x10000011
910 /* The trailer to be sent does not match kernel format. */
911#define MACH_SEND_INVALID_RT_OOL_SIZE 0x10000015
9bccf70c 912 /* compatibility: no longer a returned error */
1c79356b
A
913
914#define MACH_RCV_IN_PROGRESS 0x10004001
915 /* Thread is waiting for receive. (Internal use only.) */
916#define MACH_RCV_INVALID_NAME 0x10004002
917 /* Bogus name for receive port/port-set. */
918#define MACH_RCV_TIMED_OUT 0x10004003
919 /* Didn't get a message within the timeout value. */
920#define MACH_RCV_TOO_LARGE 0x10004004
921 /* Message buffer is not large enough for inline data. */
922#define MACH_RCV_INTERRUPTED 0x10004005
923 /* Software interrupt. */
924#define MACH_RCV_PORT_CHANGED 0x10004006
9bccf70c 925 /* compatibility: no longer a returned error */
1c79356b
A
926#define MACH_RCV_INVALID_NOTIFY 0x10004007
927 /* Bogus notify port argument. */
928#define MACH_RCV_INVALID_DATA 0x10004008
929 /* Bogus message buffer for inline data. */
930#define MACH_RCV_PORT_DIED 0x10004009
931 /* Port/set was sent away/died during receive. */
932#define MACH_RCV_IN_SET 0x1000400a
9bccf70c 933 /* compatibility: no longer a returned error */
1c79356b
A
934#define MACH_RCV_HEADER_ERROR 0x1000400b
935 /* Error receiving message header. See special bits. */
936#define MACH_RCV_BODY_ERROR 0x1000400c
937 /* Error receiving message body. See special bits. */
938#define MACH_RCV_INVALID_TYPE 0x1000400d
939 /* Invalid msg-type specification in scatter list. */
940#define MACH_RCV_SCATTER_SMALL 0x1000400e
941 /* Out-of-line overwrite region is not large enough */
942#define MACH_RCV_INVALID_TRAILER 0x1000400f
943 /* trailer type or number of trailer elements not supported */
944#define MACH_RCV_IN_PROGRESS_TIMED 0x10004011
945 /* Waiting for receive with timeout. (Internal use only.) */
946
39037602
A
947#ifdef XNU_KERNEL_PRIVATE
948#define MACH_PEEK_IN_PROGRESS 0x10008001
949 /* Waiting for a peek. (Internal use only.) */
950#define MACH_PEEK_READY 0x10008002
951 /* Waiting for a peek. (Internal use only.) */
952#endif
953
91447636
A
954
955__BEGIN_DECLS
956
9bccf70c
A
957/*
958 * Routine: mach_msg_overwrite
959 * Purpose:
960 * Send and/or receive a message. If the message operation
961 * is interrupted, and the user did not request an indication
962 * of that fact, then restart the appropriate parts of the
963 * operation silently (trap version does not restart).
964 *
965 * Distinct send and receive buffers may be specified. If
966 * no separate receive buffer is specified, the msg parameter
967 * will be used for both send and receive operations.
968 *
969 * In addition to a distinct receive buffer, that buffer may
970 * already contain scatter control information to direct the
971 * receiving of the message.
972 */
3e170ce0 973__WATCHOS_PROHIBITED __TVOS_PROHIBITED
1c79356b
A
974extern mach_msg_return_t mach_msg_overwrite(
975 mach_msg_header_t *msg,
976 mach_msg_option_t option,
977 mach_msg_size_t send_size,
978 mach_msg_size_t rcv_size,
979 mach_port_name_t rcv_name,
980 mach_msg_timeout_t timeout,
981 mach_port_name_t notify,
982 mach_msg_header_t *rcv_msg,
983 mach_msg_size_t rcv_limit);
984
91447636
A
985#ifndef KERNEL
986
9bccf70c
A
987/*
988 * Routine: mach_msg
989 * Purpose:
990 * Send and/or receive a message. If the message operation
991 * is interrupted, and the user did not request an indication
992 * of that fact, then restart the appropriate parts of the
993 * operation silently (trap version does not restart).
994 */
3e170ce0 995__WATCHOS_PROHIBITED __TVOS_PROHIBITED
1c79356b
A
996extern mach_msg_return_t mach_msg(
997 mach_msg_header_t *msg,
998 mach_msg_option_t option,
999 mach_msg_size_t send_size,
1000 mach_msg_size_t rcv_size,
1001 mach_port_name_t rcv_name,
1002 mach_msg_timeout_t timeout,
1003 mach_port_name_t notify);
1004
fe8ab488
A
1005/*
1006 * Routine: mach_voucher_deallocate
1007 * Purpose:
1008 * Deallocate a mach voucher created or received in a message. Drops
1009 * one (send right) reference to the voucher.
1010 */
3e170ce0 1011__WATCHOS_PROHIBITED __TVOS_PROHIBITED
fe8ab488
A
1012extern kern_return_t mach_voucher_deallocate(
1013 mach_port_name_t voucher);
1014
b0d623f7
A
1015#elif defined(MACH_KERNEL_PRIVATE)
1016
39037602 1017extern mach_msg_return_t mach_msg_receive_results(mach_msg_size_t *size);
b0d623f7 1018
39037602
A
1019extern mach_msg_priority_t mach_msg_priority_combine(mach_msg_priority_t msg_qos,
1020 mach_msg_priority_t recv_qos);
91447636
A
1021#endif /* KERNEL */
1022
1023__END_DECLS
1024
1c79356b 1025#endif /* _MACH_MESSAGE_H_ */
2d21ac55 1026