]> git.saurik.com Git - apple/xnu.git/blame - osfmk/mach/shared_memory_server.h
xnu-6153.11.26.tar.gz
[apple/xnu.git] / osfmk / mach / shared_memory_server.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@
0a7de745 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.
0a7de745 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.
0a7de745 17 *
2d21ac55
A
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.
0a7de745 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
29 *
9bccf70c 30 * File: mach/shared_memory_server.h
1c79356b 31 *
0a7de745 32 * protos and struct definitions for shared library
1c79356b
A
33 * server and interface
34 */
2d21ac55
A
35
36/*
37 * XXX
0a7de745 38 *
2d21ac55
A
39 * NOTE: this file is deprecated and will be removed in the near future.
40 * Any project that includes this file should be changed to:
41 * 1. use <mach/shared_region.h> instead of this file,
42 * 2. handle the new shared regions, now available on more platforms
43 */
44
9bccf70c
A
45#ifndef _MACH_SHARED_MEMORY_SERVER_H_
46#define _MACH_SHARED_MEMORY_SERVER_H_
1c79356b 47
b0d623f7
A
48#warning "<mach/shared_memory_server.h> is deprecated. Please use <mach/shared_region.h> instead."
49
91447636
A
50#include <sys/cdefs.h>
51#include <mach/vm_prot.h>
52#include <mach/vm_types.h>
53#include <mach/mach_types.h>
54
55#define VM_PROT_COW 0x8 /* must not interfere with normal prot assignments */
56#define VM_PROT_ZF 0x10 /* must not interfere with normal prot assignments */
57
0a7de745
A
58#ifdef __arm__
59#define GLOBAL_SHARED_TEXT_SEGMENT 0x30000000U
60#define GLOBAL_SHARED_DATA_SEGMENT 0x38000000U
61#define GLOBAL_SHARED_SEGMENT_MASK 0xF8000000U
5ba3f43e 62
0a7de745
A
63#define SHARED_TEXT_REGION_SIZE 0x08000000
64#define SHARED_DATA_REGION_SIZE 0x08000000
5ba3f43e 65#else
0a7de745
A
66#define GLOBAL_SHARED_TEXT_SEGMENT 0x90000000U
67#define GLOBAL_SHARED_DATA_SEGMENT 0xA0000000U
68#define GLOBAL_SHARED_SEGMENT_MASK 0xF0000000U
2d21ac55 69
0a7de745
A
70#define SHARED_TEXT_REGION_SIZE 0x10000000
71#define SHARED_DATA_REGION_SIZE 0x10000000
5ba3f43e 72#endif
91447636
A
73
74#if !defined(__LP64__)
75
0a7de745 76#define SHARED_LIBRARY_SERVER_SUPPORTED
0b4e3aa0 77
0a7de745 78#define SHARED_ALTERNATE_LOAD_BASE 0x09000000
0b4e3aa0 79
0a7de745
A
80/*
81 * Note: the two masks below are useful because the assumption is
82 * made that these shared regions will always be mapped on natural boundaries
83 * i.e. if the size is 0x10000000 the object can be mapped at
1c79356b
A
84 * 0x20000000, or 0x30000000, but not 0x1000000
85 */
0a7de745
A
86#ifdef __arm__
87#define SHARED_TEXT_REGION_MASK 0x07FFFFFF
88#define SHARED_DATA_REGION_MASK 0x07FFFFFF
5ba3f43e 89#else
0a7de745
A
90#define SHARED_TEXT_REGION_MASK 0x0FFFFFFF
91#define SHARED_DATA_REGION_MASK 0x0FFFFFFF
5ba3f43e 92#endif
1c79356b 93
1c79356b
A
94
95/* flags field aliases for copyin_shared_file and load_shared_file */
96
97/* IN */
98#define ALTERNATE_LOAD_SITE 0x1
99#define NEW_LOCAL_SHARED_REGIONS 0x2
0a7de745 100#define QUERY_IS_SYSTEM_REGION 0x4
1c79356b
A
101
102/* OUT */
103#define SF_PREV_LOADED 0x1
9bccf70c 104#define SYSTEM_REGION_BACKED 0x2
1c79356b
A
105
106
1c79356b 107struct sf_mapping {
0a7de745
A
108 vm_offset_t mapping_offset;
109 vm_size_t size;
110 vm_offset_t file_offset;
111 vm_prot_t protection; /* read/write/execute/COW/ZF */
112 vm_offset_t cksum;
1c79356b 113};
1c79356b
A
114typedef struct sf_mapping sf_mapping_t;
115
91447636
A
116#endif /* !defined(__LP64__) */
117
0a7de745 118/*
91447636
A
119 * All shared_region_* declarations are a private interface
120 * between dyld and the kernel.
121 *
122 */
123struct shared_file_mapping_np {
0a7de745
A
124 mach_vm_address_t sfm_address;
125 mach_vm_size_t sfm_size;
126 mach_vm_offset_t sfm_file_offset;
127 vm_prot_t sfm_max_prot;
128 vm_prot_t sfm_init_prot;
91447636
A
129};
130
131struct shared_region_range_np {
0a7de745
A
132 mach_vm_address_t srr_address;
133 mach_vm_size_t srr_size;
91447636
A
134};
135
136#ifndef KERNEL
137
138__BEGIN_DECLS
0a7de745
A
139int shared_region_map_file_np(int fd,
140 uint32_t mappingCount,
141 const struct shared_file_mapping_np *mappings,
142 int64_t *slide_p);
143int shared_region_make_private_np(uint32_t rangeCount,
144 const struct shared_region_range_np *ranges);
91447636
A
145__END_DECLS
146
147#endif /* !KERNEL */
148
9bccf70c 149#endif /* _MACH_SHARED_MEMORY_SERVER_H_ */