2 * Copyright (c) 2000-2010 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
30 * support for mandatory and extensible security protections. This notice
31 * is included in support of clause 2.2 (b) of the Apple Public License,
35 #include <sys/param.h>
36 #include <sys/systm.h>
38 #include <sys/proc_internal.h>
39 #include <sys/kauth.h>
42 #include <sys/vnode_internal.h>
43 #include <sys/namei.h>
44 #include <sys/ubc_internal.h>
45 #include <sys/malloc.h>
48 #include <sys/cprotect.h>
51 #include <default_pager/default_pager_types.h>
52 #include <default_pager/default_pager_object.h>
54 #include <security/audit/audit.h>
55 #include <bsm/audit_kevents.h>
57 #include <mach/mach_types.h>
58 #include <mach/host_priv.h>
59 #include <mach/mach_traps.h>
60 #include <mach/boolean.h>
62 #include <kern/kern_types.h>
63 #include <kern/host.h>
64 #include <kern/task.h>
65 #include <kern/zalloc.h>
66 #include <kern/kalloc.h>
67 #include <kern/assert.h>
69 #include <libkern/libkern.h>
71 #include <vm/vm_pageout.h>
72 #include <vm/vm_map.h>
73 #include <vm/vm_kern.h>
74 #include <vm/vnode_pager.h>
75 #include <vm/vm_protos.h>
77 #include <security/mac_framework.h>
81 * temporary support for delayed instantiation
84 int default_pager_init_flag
= 0;
86 struct bs_map bs_port_table
[MAX_BACKING_STORE
] = {
87 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
88 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
89 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
90 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
91 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
92 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
93 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
94 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
95 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},
96 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}};
98 /* ###################################################### */
102 * Routine: macx_backing_store_recovery
104 * Syscall interface to set a tasks privilege
105 * level so that it is not subject to
106 * macx_backing_store_suspend
109 macx_backing_store_recovery(
110 struct macx_backing_store_recovery_args
*args
)
114 struct proc
*p
= current_proc();
115 boolean_t funnel_state
;
117 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
118 if ((error
= suser(kauth_cred_get(), 0)))
119 goto backing_store_recovery_return
;
121 /* for now restrict backing_store_recovery */
122 /* usage to only present task */
123 if(pid
!= proc_selfpid()) {
125 goto backing_store_recovery_return
;
128 task_backing_store_privileged(p
->task
);
130 backing_store_recovery_return
:
131 (void) thread_funnel_set(kernel_flock
, FALSE
);
136 * Routine: macx_backing_store_suspend
138 * Syscall interface to stop new demand for
139 * backing store when backing store is low
143 macx_backing_store_suspend(
144 struct macx_backing_store_suspend_args
*args
)
146 boolean_t suspend
= args
->suspend
;
148 boolean_t funnel_state
;
150 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
151 if ((error
= suser(kauth_cred_get(), 0)))
152 goto backing_store_suspend_return
;
154 vm_backing_store_disable(suspend
);
156 backing_store_suspend_return
:
157 (void) thread_funnel_set(kernel_flock
, FALSE
);
161 extern boolean_t backing_store_stop_compaction
;
164 * Routine: macx_backing_store_compaction
166 * Turn compaction of swap space on or off. This is
167 * used during shutdown/restart so that the kernel
168 * doesn't waste time compacting swap files that are
169 * about to be deleted anyway. Compaction is always
170 * on by default when the system comes up and is turned
171 * off when a shutdown/restart is requested. It is
172 * re-enabled if the shutdown/restart is aborted for any reason.
176 macx_backing_store_compaction(int flags
)
180 if ((error
= suser(kauth_cred_get(), 0)))
183 if (flags
& SWAP_COMPACT_DISABLE
) {
184 backing_store_stop_compaction
= TRUE
;
186 } else if (flags
& SWAP_COMPACT_ENABLE
) {
187 backing_store_stop_compaction
= FALSE
;
194 * Routine: macx_triggers
196 * Syscall interface to set the call backs for low and
201 struct macx_triggers_args
*args
)
205 error
= suser(kauth_cred_get(), 0);
209 return mach_macx_triggers(args
);
213 extern boolean_t dp_isssd
;
216 * Routine: macx_swapon
218 * Syscall interface to add a file to backing store
222 struct macx_swapon_args
*args
)
224 int size
= args
->size
;
225 vnode_t vp
= (vnode_t
)NULL
;
226 struct nameidata nd
, *ndp
;
229 mach_port_t backing_store
;
230 memory_object_default_t default_pager
;
232 boolean_t funnel_state
;
234 vfs_context_t ctx
= vfs_context_current();
235 struct proc
*p
= current_proc();
239 AUDIT_MACH_SYSCALL_ENTER(AUE_SWAPON
);
240 AUDIT_ARG(value32
, args
->priority
);
242 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
245 if ((error
= suser(kauth_cred_get(), 0)))
249 * Get a vnode for the paging area.
251 NDINIT(ndp
, LOOKUP
, OP_LOOKUP
, FOLLOW
| LOCKLEAF
| AUDITVNPATH1
,
252 ((IS_64BIT_PROCESS(p
)) ? UIO_USERSPACE64
: UIO_USERSPACE32
),
253 (user_addr_t
) args
->filename
, ctx
);
255 if ((error
= namei(ndp
)))
260 if (vp
->v_type
!= VREG
) {
266 if ((error
= vnode_size(vp
, &file_size
, ctx
)) != 0)
270 error
= mac_system_check_swapon(vfs_context_ucred(ctx
), vp
);
276 /* resize to desired size if it's too small */
277 if ((file_size
< (off_t
)size
) && ((error
= vnode_setsize(vp
, (off_t
)size
, 0, ctx
)) != 0))
282 /* initialize content protection keys manually */
283 if ((error
= cp_handle_vnop(vp
, CP_WRITE_ACCESS
, 0)) != 0) {
290 if (default_pager_init_flag
== 0) {
291 start_def_pager(NULL
);
292 default_pager_init_flag
= 1;
295 /* add new backing store to list */
297 while(bs_port_table
[i
].vp
!= 0) {
298 if(i
== MAX_BACKING_STORE
)
302 if(i
== MAX_BACKING_STORE
) {
307 /* remember the vnode. This vnode has namei() reference */
308 bs_port_table
[i
].vp
= vp
;
311 * Look to see if we are already paging to this file.
313 /* make certain the copy send of kernel call will work */
314 default_pager
= MEMORY_OBJECT_DEFAULT_NULL
;
315 kr
= host_default_memory_manager(host_priv_self(), &default_pager
, 0);
316 if(kr
!= KERN_SUCCESS
) {
318 bs_port_table
[i
].vp
= 0;
323 dp_cluster_size
= 1 * PAGE_SIZE
;
325 if ((dp_isssd
= vnode_pager_isSSD(vp
)) == TRUE
) {
327 * keep the cluster size small since the
328 * seek cost is effectively 0 which means
329 * we don't care much about fragmentation
331 dp_cluster_size
= 2 * PAGE_SIZE
;
334 * use the default cluster size
339 kr
= default_pager_backing_store_create(default_pager
,
340 -1, /* default priority */
343 memory_object_default_deallocate(default_pager
);
345 if(kr
!= KERN_SUCCESS
) {
347 bs_port_table
[i
].vp
= 0;
351 /* Mark this vnode as being used for swapfile */
353 SET(vp
->v_flag
, VSWAP
);
357 * NOTE: we are able to supply PAGE_SIZE here instead of
358 * an actual record size or block number because:
359 * a: we do not support offsets from the beginning of the
360 * file (allowing for non page size/record modulo offsets.
361 * b: because allow paging will be done modulo page size
364 kr
= default_pager_add_file(backing_store
, (vnode_ptr_t
) vp
,
365 PAGE_SIZE
, (int)(file_size
/PAGE_SIZE
));
366 if(kr
!= KERN_SUCCESS
) {
367 bs_port_table
[i
].vp
= 0;
368 if(kr
== KERN_INVALID_ARGUMENT
)
373 /* This vnode is not to be used for swapfile */
375 CLR(vp
->v_flag
, VSWAP
);
380 bs_port_table
[i
].bs
= (void *)backing_store
;
383 ubc_setthreadcred(vp
, p
, current_thread());
386 * take a long term reference on the vnode to keep
387 * vnreclaim() away from this vnode.
395 (void) thread_funnel_set(kernel_flock
, FALSE
);
396 AUDIT_MACH_SYSCALL_EXIT(error
);
399 printf("macx_swapon FAILED - %d\n", error
);
401 printf("macx_swapon SUCCESS\n");
407 * Routine: macx_swapoff
409 * Syscall interface to remove a file from backing store
413 struct macx_swapoff_args
*args
)
415 __unused
int flags
= args
->flags
;
417 mach_port_t backing_store
;
419 struct vnode
*vp
= 0;
420 struct nameidata nd
, *ndp
;
421 struct proc
*p
= current_proc();
424 boolean_t funnel_state
;
425 vfs_context_t ctx
= vfs_context_current();
429 AUDIT_MACH_SYSCALL_ENTER(AUE_SWAPOFF
);
431 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
432 backing_store
= NULL
;
435 if ((error
= suser(kauth_cred_get(), 0)))
436 goto swapoff_bailout
;
439 * Get the vnode for the paging area.
441 NDINIT(ndp
, LOOKUP
, OP_LOOKUP
, FOLLOW
| LOCKLEAF
| AUDITVNPATH1
,
442 ((IS_64BIT_PROCESS(p
)) ? UIO_USERSPACE64
: UIO_USERSPACE32
),
443 (user_addr_t
) args
->filename
, ctx
);
445 if ((error
= namei(ndp
)))
446 goto swapoff_bailout
;
450 if (vp
->v_type
!= VREG
) {
452 goto swapoff_bailout
;
456 error
= mac_system_check_swapoff(vfs_context_ucred(ctx
), vp
);
459 goto swapoff_bailout
;
462 for(i
= 0; i
< MAX_BACKING_STORE
; i
++) {
463 if(bs_port_table
[i
].vp
== vp
) {
467 if (i
== MAX_BACKING_STORE
) {
469 goto swapoff_bailout
;
471 backing_store
= (mach_port_t
)bs_port_table
[i
].bs
;
473 ut
= get_bsdthread_info(current_thread());
475 orig_iopol_disk
= proc_get_thread_selfdiskacc();
476 proc_apply_thread_selfdiskacc(IOPOL_THROTTLE
);
478 kr
= default_pager_backing_store_delete(backing_store
);
480 proc_apply_thread_selfdiskacc(orig_iopol_disk
);
485 bs_port_table
[i
].vp
= 0;
486 /* This vnode is no longer used for swapfile */
488 CLR(vp
->v_flag
, VSWAP
);
491 /* get rid of macx_swapon() "long term" reference */
504 /* get rid of macx_swapoff() namei() reference */
508 (void) thread_funnel_set(kernel_flock
, FALSE
);
509 AUDIT_MACH_SYSCALL_EXIT(error
);
512 printf("macx_swapoff FAILED - %d\n", error
);
514 printf("macx_swapoff SUCCESS\n");
520 * Routine: macx_swapinfo
522 * Syscall interface to get general swap statistics
526 memory_object_size_t
*total_p
,
527 memory_object_size_t
*avail_p
,
528 vm_size_t
*pagesize_p
,
529 boolean_t
*encrypted_p
)
532 memory_object_default_t default_pager
;
533 default_pager_info_64_t dpi64
;
539 * Get a handle on the default pager.
541 default_pager
= MEMORY_OBJECT_DEFAULT_NULL
;
542 kr
= host_default_memory_manager(host_priv_self(), &default_pager
, 0);
543 if (kr
!= KERN_SUCCESS
) {
544 error
= EAGAIN
; /* XXX why EAGAIN ? */
547 if (default_pager
== MEMORY_OBJECT_DEFAULT_NULL
) {
549 * The default pager has not initialized yet,
550 * so it can't be using any swap space at all.
555 *encrypted_p
= FALSE
;
560 * Get swap usage data from default pager.
562 kr
= default_pager_info_64(default_pager
, &dpi64
);
563 if (kr
!= KERN_SUCCESS
) {
569 * Provide default pager info to caller.
571 *total_p
= dpi64
.dpi_total_space
;
572 *avail_p
= dpi64
.dpi_free_space
;
573 *pagesize_p
= dpi64
.dpi_page_size
;
574 if (dpi64
.dpi_flags
& DPI_ENCRYPTED
) {
577 *encrypted_p
= FALSE
;
581 if (default_pager
!= MEMORY_OBJECT_DEFAULT_NULL
) {
582 /* release our handle on default pager */
583 memory_object_default_deallocate(default_pager
);