]>
Commit | Line | Data |
---|---|---|
91447636 | 1 | /* |
b0d623f7 | 2 | * Copyright (c) 1999-2008 Apple Inc. All rights reserved. |
91447636 | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
91447636 | 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@ |
91447636 A |
27 | */ |
28 | /* | |
29 | * File: ubc.h | |
30 | * Author: Umesh Vaishampayan [umeshv@apple.com] | |
31 | * 05-Aug-1999 umeshv Created. | |
32 | * | |
33 | * Header file for Unified Buffer Cache. | |
34 | * | |
35 | */ | |
36 | ||
37 | #ifndef _SYS_UBC_INTERNAL_H_ | |
38 | #define _SYS_UBC_INTERNAL_H_ | |
39 | ||
40 | #include <sys/appleapiopts.h> | |
41 | #include <sys/types.h> | |
42 | #include <sys/kernel_types.h> | |
43 | #include <sys/ucred.h> | |
44 | #include <sys/vnode.h> | |
45 | #include <sys/ubc.h> | |
46 | #include <sys/mman.h> | |
47 | ||
48 | #include <sys/cdefs.h> | |
49 | ||
50 | #include <kern/locks.h> | |
51 | #include <mach/memory_object_types.h> | |
52 | ||
2d21ac55 A |
53 | #include <libkern/crypto/sha1.h> |
54 | ||
91447636 A |
55 | |
56 | #define UBC_INFO_NULL ((struct ubc_info *) 0) | |
57 | ||
58 | ||
59 | extern struct zone *ubc_info_zone; | |
60 | ||
b7266188 A |
61 | /* |
62 | * Maximum number of vfs clusters per vnode | |
63 | */ | |
64 | #define MAX_CLUSTERS CONFIG_MAX_CLUSTERS | |
91447636 | 65 | |
b0d623f7 A |
66 | #define SPARSE_PUSH_LIMIT 4 /* limit on number of concurrent sparse pushes outside of the cl_lockw */ |
67 | /* once we reach this limit, we'll hold the lock */ | |
91447636 A |
68 | |
69 | struct cl_extent { | |
70 | daddr64_t b_addr; | |
71 | daddr64_t e_addr; | |
72 | }; | |
73 | ||
74 | struct cl_wextent { | |
75 | daddr64_t b_addr; | |
76 | daddr64_t e_addr; | |
2d21ac55 | 77 | int io_flags; |
91447636 A |
78 | }; |
79 | ||
80 | struct cl_readahead { | |
81 | lck_mtx_t cl_lockr; | |
82 | daddr64_t cl_lastr; /* last block read by client */ | |
83 | daddr64_t cl_maxra; /* last block prefetched by the read ahead */ | |
84 | int cl_ralen; /* length of last prefetch */ | |
85 | }; | |
86 | ||
87 | struct cl_writebehind { | |
88 | lck_mtx_t cl_lockw; | |
91447636 | 89 | void * cl_scmap; /* pointer to sparse cluster map */ |
b0d623f7 A |
90 | int cl_sparse_pushes; /* number of pushes outside of the cl_lockw in progress */ |
91 | int cl_sparse_wait; /* synchronous push is in progress */ | |
91447636 A |
92 | int cl_number; /* number of packed write behind clusters currently valid */ |
93 | struct cl_wextent cl_clusters[MAX_CLUSTERS]; /* packed write behind clusters */ | |
94 | }; | |
95 | ||
96 | ||
2d21ac55 A |
97 | struct cs_blob { |
98 | struct cs_blob *csb_next; | |
99 | cpu_type_t csb_cpu_type; | |
100 | unsigned int csb_flags; | |
b0d623f7 A |
101 | off_t csb_base_offset; /* Offset of Mach-O binary in fat binary */ |
102 | off_t csb_start_offset; /* Blob coverage area start, from csb_base_offset */ | |
103 | off_t csb_end_offset; /* Blob coverage area end, from csb_base_offset */ | |
2d21ac55 A |
104 | ipc_port_t csb_mem_handle; |
105 | vm_size_t csb_mem_size; | |
106 | vm_offset_t csb_mem_offset; | |
107 | vm_address_t csb_mem_kaddr; | |
108 | unsigned char csb_sha1[SHA1_RESULTLEN]; | |
109 | }; | |
110 | ||
91447636 A |
111 | /* |
112 | * The following data structure keeps the information to associate | |
113 | * a vnode to the correspondig VM objects. | |
114 | */ | |
115 | struct ubc_info { | |
2d21ac55 A |
116 | memory_object_t ui_pager; /* pager */ |
117 | memory_object_control_t ui_control; /* VM control for the pager */ | |
b0d623f7 | 118 | uint32_t ui_flags; /* flags */ |
2d21ac55 A |
119 | vnode_t ui_vnode; /* vnode for this ubc_info */ |
120 | kauth_cred_t ui_ucred; /* holds credentials for NFS paging */ | |
121 | off_t ui_size; /* file size for the vnode */ | |
122 | ||
123 | struct cl_readahead *cl_rahead; /* cluster read ahead context */ | |
124 | struct cl_writebehind *cl_wbehind; /* cluster write behind context */ | |
125 | ||
126 | struct cs_blob *cs_blobs; /* for CODE SIGNING */ | |
91447636 A |
127 | }; |
128 | ||
129 | /* Defines for ui_flags */ | |
2d21ac55 A |
130 | #define UI_NONE 0x00000000 /* none */ |
131 | #define UI_HASPAGER 0x00000001 /* has a pager associated */ | |
132 | #define UI_INITED 0x00000002 /* newly initialized vnode */ | |
133 | #define UI_HASOBJREF 0x00000004 /* hold a reference on object */ | |
134 | #define UI_WASMAPPED 0x00000008 /* vnode was mapped */ | |
135 | #define UI_ISMAPPED 0x00000010 /* vnode is currently mapped */ | |
136 | #define UI_MAPBUSY 0x00000020 /* vnode is being mapped or unmapped */ | |
137 | #define UI_MAPWAITING 0x00000040 /* someone waiting for UI_MAPBUSY */ | |
91447636 A |
138 | |
139 | /* | |
140 | * exported primitives for loadable file systems. | |
141 | */ | |
142 | ||
143 | __BEGIN_DECLS | |
b0d623f7 | 144 | __private_extern__ void ubc_init(void) __attribute__((section("__TEXT, initcode")));; |
2d21ac55 | 145 | __private_extern__ int ubc_umount(mount_t mp); |
91447636 | 146 | __private_extern__ void ubc_unmountall(void); |
2d21ac55 | 147 | __private_extern__ memory_object_t ubc_getpager(vnode_t); |
2d21ac55 | 148 | __private_extern__ void ubc_destroy_named(vnode_t); |
91447636 A |
149 | |
150 | /* internal only */ | |
151 | __private_extern__ void cluster_release(struct ubc_info *); | |
cf7d32b8 | 152 | __private_extern__ uint32_t cluster_max_io_size(mount_t, int); |
b0d623f7 A |
153 | __private_extern__ uint32_t cluster_hard_throttle_limit(vnode_t, uint32_t *, uint32_t); |
154 | ||
91447636 A |
155 | |
156 | /* Flags for ubc_getobject() */ | |
157 | #define UBC_FLAGS_NONE 0x0000 | |
158 | #define UBC_HOLDOBJECT 0x0001 | |
159 | #define UBC_FOR_PAGEOUT 0x0002 | |
160 | ||
2d21ac55 | 161 | memory_object_control_t ubc_getobject(vnode_t, int); |
91447636 | 162 | |
2d21ac55 A |
163 | int ubc_info_init(vnode_t); |
164 | int ubc_info_init_withsize(vnode_t, off_t); | |
165 | void ubc_info_deallocate(struct ubc_info *); | |
91447636 | 166 | |
2d21ac55 A |
167 | int ubc_isinuse(vnode_t, int); |
168 | int ubc_isinuse_locked(vnode_t, int, int); | |
91447636 | 169 | |
2d21ac55 | 170 | int ubc_getcdhash(vnode_t, off_t, unsigned char *); |
91447636 | 171 | |
b0d623f7 | 172 | #ifdef XNU_KERNEL_PRIVATE |
91447636 | 173 | int UBCINFOEXISTS(vnode_t); |
b0d623f7 | 174 | #endif /* XNU_KERNEL_PRIVATE */ |
91447636 | 175 | |
593a1d5f A |
176 | /* code signing */ |
177 | struct cs_blob; | |
178 | int ubc_cs_blob_add(vnode_t, cpu_type_t, off_t, vm_address_t, vm_size_t); | |
179 | struct cs_blob *ubc_get_cs_blobs(vnode_t); | |
180 | int ubc_cs_getcdhash(vnode_t, off_t, unsigned char *); | |
181 | kern_return_t ubc_cs_blob_allocate(vm_offset_t *, vm_size_t *); | |
182 | void ubc_cs_blob_deallocate(vm_offset_t, vm_size_t); | |
183 | ||
91447636 A |
184 | __END_DECLS |
185 | ||
186 | ||
187 | #endif /* _SYS_UBC_INTERNAL_H_ */ | |
188 |