2 * Copyright (c) 2018 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 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/filedesc.h>
32 #include <sys/kernel.h>
33 #include <sys/file_internal.h>
34 #include <kern/exc_guard.h>
35 #include <sys/guarded.h>
36 #include <kern/kalloc.h>
37 #include <sys/sysproto.h>
38 #include <sys/vnode.h>
39 #include <sys/vnode_internal.h>
40 #include <sys/uio_internal.h>
41 #include <sys/ubc_internal.h>
42 #include <vfs/vfs_support.h>
43 #include <security/audit/audit.h>
44 #include <sys/syscall.h>
45 #include <sys/kauth.h>
46 #include <sys/kdebug.h>
48 #include <vm/vm_protos.h>
49 #include <libkern/section_keywords.h>
50 #if CONFIG_MACF && CONFIG_VNGUARD
51 #include <security/mac.h>
52 #include <security/mac_framework.h>
53 #include <security/mac_policy.h>
54 #include <pexpert/pexpert.h>
55 #include <sys/sysctl.h>
56 #include <sys/reason.h>
60 #define f_flag f_fglob->fg_flag
61 #define f_type f_fglob->fg_ops->fo_type
62 extern int dofilewrite(vfs_context_t ctx
, struct fileproc
*fp
,
63 user_addr_t bufp
, user_size_t nbyte
, off_t offset
,
64 int flags
, user_ssize_t
*retval
);
65 extern int wr_uio(struct proc
*p
, struct fileproc
*fp
, uio_t uio
, user_ssize_t
*retval
);
68 * Experimental guarded file descriptor support.
71 kern_return_t
task_exception_notify(exception_type_t exception
,
72 mach_exception_data_type_t code
, mach_exception_data_type_t subcode
);
73 kern_return_t
task_violated_guard(mach_exception_code_t
, mach_exception_subcode_t
, void *);
76 * Most fd's have an underlying fileproc struct; but some may be
77 * guarded_fileproc structs which implement guarded fds. The latter
78 * struct (below) embeds the former.
80 * The two types should be distinguished by the "type" portion of f_flags.
81 * There's also a magic number to help catch misuse and bugs.
83 * This is a bit unpleasant, but results from the desire to allow
84 * alternate file behaviours for a few file descriptors without
85 * growing the fileproc data structure.
88 struct guarded_fileproc
{
89 struct fileproc gf_fileproc
;
95 const size_t sizeof_guarded_fileproc
= sizeof (struct guarded_fileproc
);
97 #define FP_TO_GFP(fp) ((struct guarded_fileproc *)(fp))
98 #define GFP_TO_FP(gfp) (&(gfp)->gf_fileproc)
100 #define GUARDED_FILEPROC_MAGIC 0x29083
107 static struct fileproc
*
108 guarded_fileproc_alloc_init(void *crarg
)
110 struct gfp_crarg
*aarg
= crarg
;
111 struct guarded_fileproc
*gfp
;
113 if ((gfp
= kalloc(sizeof (*gfp
))) == NULL
)
116 bzero(gfp
, sizeof (*gfp
));
117 gfp
->gf_fileproc
.f_flags
= FTYPE_GUARDED
;
118 gfp
->gf_magic
= GUARDED_FILEPROC_MAGIC
;
119 gfp
->gf_guard
= aarg
->gca_guard
;
120 gfp
->gf_attrs
= aarg
->gca_attrs
;
122 return (GFP_TO_FP(gfp
));
126 guarded_fileproc_free(struct fileproc
*fp
)
128 struct guarded_fileproc
*gfp
= FP_TO_GFP(fp
);
130 if (FILEPROC_TYPE(fp
) != FTYPE_GUARDED
||
131 GUARDED_FILEPROC_MAGIC
!= gfp
->gf_magic
)
132 panic("%s: corrupt fp %p flags %x", __func__
, fp
, fp
->f_flags
);
134 kfree(gfp
, sizeof (*gfp
));
138 fp_lookup_guarded(proc_t p
, int fd
, guardid_t guard
,
139 struct guarded_fileproc
**gfpp
, int locked
)
144 if ((error
= fp_lookup(p
, fd
, &fp
, locked
)) != 0)
146 if (FILEPROC_TYPE(fp
) != FTYPE_GUARDED
) {
147 (void) fp_drop(p
, fd
, fp
, locked
);
150 struct guarded_fileproc
*gfp
= FP_TO_GFP(fp
);
152 if (GUARDED_FILEPROC_MAGIC
!= gfp
->gf_magic
)
153 panic("%s: corrupt fp %p", __func__
, fp
);
155 if (guard
!= gfp
->gf_guard
) {
156 (void) fp_drop(p
, fd
, fp
, locked
);
157 return (EPERM
); /* *not* a mismatch exception */
165 * Expected use pattern:
167 * if (FP_ISGUARDED(fp, GUARD_CLOSE)) {
168 * error = fp_guard_exception(p, fd, fp, kGUARD_EXC_CLOSE);
175 fp_isguarded(struct fileproc
*fp
, u_int attrs
)
177 if (FILEPROC_TYPE(fp
) == FTYPE_GUARDED
) {
178 struct guarded_fileproc
*gfp
= FP_TO_GFP(fp
);
180 if (GUARDED_FILEPROC_MAGIC
!= gfp
->gf_magic
)
181 panic("%s: corrupt gfp %p flags %x",
182 __func__
, gfp
, fp
->f_flags
);
183 return ((attrs
& gfp
->gf_attrs
) == attrs
);
188 extern char *proc_name_address(void *p
);
191 fp_guard_exception(proc_t p
, int fd
, struct fileproc
*fp
, u_int flavor
)
193 if (FILEPROC_TYPE(fp
) != FTYPE_GUARDED
)
194 panic("%s corrupt fp %p flags %x", __func__
, fp
, fp
->f_flags
);
196 struct guarded_fileproc
*gfp
= FP_TO_GFP(fp
);
197 /* all gfd fields protected via proc_fdlock() */
198 proc_fdlock_assert(p
, LCK_MTX_ASSERT_OWNED
);
200 mach_exception_code_t code
= 0;
201 EXC_GUARD_ENCODE_TYPE(code
, GUARD_TYPE_FD
);
202 EXC_GUARD_ENCODE_FLAVOR(code
, flavor
);
203 EXC_GUARD_ENCODE_TARGET(code
, fd
);
204 mach_exception_subcode_t subcode
= gfp
->gf_guard
;
206 thread_t t
= current_thread();
207 thread_guard_violation(t
, code
, subcode
);
212 * (Invoked before returning to userland from the syscall handler.)
217 mach_exception_code_t code
,
218 mach_exception_subcode_t subcode
)
220 task_exception_notify(EXC_GUARD
, code
, subcode
);
221 proc_t p
= current_proc();
226 * Experimental guarded file descriptor SPIs
230 * int guarded_open_np(const char *pathname, int flags,
231 * const guardid_t *guard, u_int guardflags, ...);
233 * In this initial implementation, GUARD_DUP must be specified.
234 * GUARD_CLOSE, GUARD_SOCKET_IPC and GUARD_FILEPORT are optional.
236 * If GUARD_DUP wasn't specified, then we'd have to do the (extra) work
237 * to allow dup-ing a descriptor to inherit the guard onto the new
238 * descriptor. (Perhaps GUARD_DUP behaviours should just always be true
239 * for a guarded fd? Or, more sanely, all the dup operations should
240 * just always propagate the guard?)
242 * Guarded descriptors are always close-on-exec, and GUARD_CLOSE
243 * requires close-on-fork; O_CLOEXEC must be set in flags.
244 * This setting is immutable; attempts to clear the flag will
245 * cause a guard exception.
247 * XXX It's somewhat broken that change_fdguard_np() can completely
248 * remove the guard and thus revoke down the immutability
249 * promises above. Ick.
252 guarded_open_np(proc_t p
, struct guarded_open_np_args
*uap
, int32_t *retval
)
254 if ((uap
->flags
& O_CLOEXEC
) == 0)
257 #define GUARD_REQUIRED (GUARD_DUP)
258 #define GUARD_ALL (GUARD_REQUIRED | \
259 (GUARD_CLOSE | GUARD_SOCKET_IPC | GUARD_FILEPORT | GUARD_WRITE))
261 if (((uap
->guardflags
& GUARD_REQUIRED
) != GUARD_REQUIRED
) ||
262 ((uap
->guardflags
& ~GUARD_ALL
) != 0))
266 struct gfp_crarg crarg
= {
267 .gca_attrs
= uap
->guardflags
270 if ((error
= copyin(uap
->guard
,
271 &(crarg
.gca_guard
), sizeof (crarg
.gca_guard
))) != 0)
275 * Disallow certain guard values -- is zero enough?
277 if (crarg
.gca_guard
== 0)
280 struct filedesc
*fdp
= p
->p_fd
;
281 struct vnode_attr va
;
283 vfs_context_t ctx
= vfs_context_current();
287 cmode
= ((uap
->mode
& ~fdp
->fd_cmask
) & ALLPERMS
) & ~S_ISTXT
;
288 VATTR_SET(&va
, va_mode
, cmode
& ACCESSPERMS
);
290 NDINIT(&nd
, LOOKUP
, OP_OPEN
, FOLLOW
| AUDITVNPATH1
, UIO_USERSPACE
,
293 return (open1(ctx
, &nd
, uap
->flags
| O_CLOFORK
, &va
,
294 guarded_fileproc_alloc_init
, &crarg
, retval
));
298 * int guarded_open_dprotected_np(const char *pathname, int flags,
299 * const guardid_t *guard, u_int guardflags, int dpclass, int dpflags, ...);
301 * This SPI is extension of guarded_open_np() to include dataprotection class on creation
302 * in "dpclass" and dataprotection flags 'dpflags'. Otherwise behaviors are same as in
306 guarded_open_dprotected_np(proc_t p
, struct guarded_open_dprotected_np_args
*uap
, int32_t *retval
)
308 if ((uap
->flags
& O_CLOEXEC
) == 0)
311 if (((uap
->guardflags
& GUARD_REQUIRED
) != GUARD_REQUIRED
) ||
312 ((uap
->guardflags
& ~GUARD_ALL
) != 0))
316 struct gfp_crarg crarg
= {
317 .gca_attrs
= uap
->guardflags
320 if ((error
= copyin(uap
->guard
,
321 &(crarg
.gca_guard
), sizeof (crarg
.gca_guard
))) != 0)
325 * Disallow certain guard values -- is zero enough?
327 if (crarg
.gca_guard
== 0)
330 struct filedesc
*fdp
= p
->p_fd
;
331 struct vnode_attr va
;
333 vfs_context_t ctx
= vfs_context_current();
337 cmode
= ((uap
->mode
& ~fdp
->fd_cmask
) & ALLPERMS
) & ~S_ISTXT
;
338 VATTR_SET(&va
, va_mode
, cmode
& ACCESSPERMS
);
340 NDINIT(&nd
, LOOKUP
, OP_OPEN
, FOLLOW
| AUDITVNPATH1
, UIO_USERSPACE
,
344 * Initialize the extra fields in vnode_attr to pass down dataprotection
346 * 1. target cprotect class.
347 * 2. set a flag to mark it as requiring open-raw-encrypted semantics.
349 if (uap
->flags
& O_CREAT
) {
350 VATTR_SET(&va
, va_dataprotect_class
, uap
->dpclass
);
353 if (uap
->dpflags
& (O_DP_GETRAWENCRYPTED
|O_DP_GETRAWUNENCRYPTED
)) {
354 if ( uap
->flags
& (O_RDWR
| O_WRONLY
)) {
355 /* Not allowed to write raw encrypted bytes */
358 if (uap
->dpflags
& O_DP_GETRAWENCRYPTED
) {
359 VATTR_SET(&va
, va_dataprotect_flags
, VA_DP_RAWENCRYPTED
);
361 if (uap
->dpflags
& O_DP_GETRAWUNENCRYPTED
) {
362 VATTR_SET(&va
, va_dataprotect_flags
, VA_DP_RAWUNENCRYPTED
);
366 return (open1(ctx
, &nd
, uap
->flags
| O_CLOFORK
, &va
,
367 guarded_fileproc_alloc_init
, &crarg
, retval
));
371 * int guarded_kqueue_np(const guardid_t *guard, u_int guardflags);
373 * Create a guarded kqueue descriptor with guardid and guardflags.
375 * Same restrictions on guardflags as for guarded_open_np().
376 * All kqueues are -always- close-on-exec and close-on-fork by themselves
377 * and are not sendable.
380 guarded_kqueue_np(proc_t p
, struct guarded_kqueue_np_args
*uap
, int32_t *retval
)
382 if (((uap
->guardflags
& GUARD_REQUIRED
) != GUARD_REQUIRED
) ||
383 ((uap
->guardflags
& ~GUARD_ALL
) != 0))
387 struct gfp_crarg crarg
= {
388 .gca_attrs
= uap
->guardflags
391 if ((error
= copyin(uap
->guard
,
392 &(crarg
.gca_guard
), sizeof (crarg
.gca_guard
))) != 0)
395 if (crarg
.gca_guard
== 0)
398 return (kqueue_body(p
, guarded_fileproc_alloc_init
, &crarg
, retval
));
402 * int guarded_close_np(int fd, const guardid_t *guard);
405 guarded_close_np(proc_t p
, struct guarded_close_np_args
*uap
,
406 __unused
int32_t *retval
)
408 struct guarded_fileproc
*gfp
;
413 AUDIT_SYSCLOSE(p
, fd
);
415 if ((error
= copyin(uap
->guard
, &uguard
, sizeof (uguard
))) != 0)
419 if ((error
= fp_lookup_guarded(p
, fd
, uguard
, &gfp
, 1)) != 0) {
423 error
= close_internal_locked(p
, fd
, GFP_TO_FP(gfp
), 0);
430 * change_fdguard_np(int fd, const guardid_t *guard, u_int guardflags,
431 * const guardid_t *nguard, u_int nguardflags, int *fdflagsp);
433 * Given a file descriptor, atomically exchange <guard, guardflags> for
434 * a new guard <nguard, nguardflags>, returning the previous fd
435 * flags (see fcntl:F_SETFD) in *fdflagsp.
437 * This syscall can be used to either (a) add a new guard to an existing
438 * unguarded file descriptor (b) remove the old guard from an existing
439 * guarded file descriptor or (c) change the guard (guardid and/or
440 * guardflags) on a guarded file descriptor.
442 * If 'guard' is NULL, fd must be unguarded at entry. If the call completes
443 * successfully the fd will be guarded with <nguard, nguardflags>.
445 * Guarding a file descriptor has some side-effects on the "fdflags"
446 * associated with the descriptor - in particular FD_CLOEXEC is
447 * forced ON unconditionally, and FD_CLOFORK is forced ON by GUARD_CLOSE.
448 * Callers who wish to subsequently restore the state of the fd should save
449 * the value of *fdflagsp after a successful invocation.
451 * If 'nguard' is NULL, fd must be guarded at entry, <guard, guardflags>
452 * must match with what's already guarding the descriptor, and the
453 * result will be to completely remove the guard. Note also that the
454 * fdflags are copied to the descriptor from the incoming *fdflagsp argument.
456 * If the descriptor is guarded, and neither 'guard' nor 'nguard' is NULL
457 * and <guard, guardflags> matches what's already guarding the descriptor,
458 * then <nguard, nguardflags> becomes the new guard. In this case, even if
459 * the GUARD_CLOSE flag is being cleared, it is still possible to continue
460 * to keep FD_CLOFORK on the descriptor by passing FD_CLOFORK via fdflagsp.
462 * (File descriptors whose underlying fileglobs are marked FG_CONFINED are
463 * still close-on-fork, regardless of the setting of FD_CLOFORK.)
465 * Example 1: Guard an unguarded descriptor during a set of operations,
466 * then restore the original state of the descriptor.
469 * change_fdguard_np(fd, NULL, 0, &myguard, GUARD_CLOSE, &sav_flags);
470 * // do things with now guarded 'fd'
471 * change_fdguard_np(fd, &myguard, GUARD_CLOSE, NULL, 0, &sav_flags);
472 * // fd now unguarded.
474 * Example 2: Change the guard of a guarded descriptor during a set of
475 * operations, then restore the original state of the descriptor.
477 * int sav_flags = (gdflags & GUARD_CLOSE) ? FD_CLOFORK : 0;
478 * change_fdguard_np(fd, &gd, gdflags, &myguard, GUARD_CLOSE, &sav_flags);
479 * // do things with 'fd' with a different guard
480 * change_fdguard_np(fd, &myg, GUARD_CLOSE, &gd, gdflags, &sav_flags);
481 * // back to original guarded state
483 * XXX This SPI is too much of a chainsaw and should be revised.
487 change_fdguard_np(proc_t p
, struct change_fdguard_np_args
*uap
,
488 __unused
int32_t *retval
)
493 guardid_t oldg
= 0, newg
= 0;
496 if (0 != uap
->guard
&&
497 0 != (error
= copyin(uap
->guard
, &oldg
, sizeof (oldg
))))
498 return (error
); /* can't copyin current guard */
500 if (0 != uap
->nguard
&&
501 0 != (error
= copyin(uap
->nguard
, &newg
, sizeof (newg
))))
502 return (error
); /* can't copyin new guard */
504 if (0 != uap
->fdflagsp
&&
505 0 != (error
= copyin(uap
->fdflagsp
, &nfdflags
, sizeof (nfdflags
))))
506 return (error
); /* can't copyin new fdflags */
510 if ((error
= fp_lookup(p
, fd
, &fp
, 1)) != 0) {
515 if (0 != uap
->fdflagsp
) {
516 int ofdflags
= FDFLAGS_GET(p
, fd
);
517 int ofl
= ((ofdflags
& UF_EXCLOSE
) ? FD_CLOEXEC
: 0) |
518 ((ofdflags
& UF_FORKCLOSE
) ? FD_CLOFORK
: 0);
520 if (0 != (error
= copyout(&ofl
, uap
->fdflagsp
, sizeof (ofl
)))) {
522 goto dropout
; /* can't copyout old fdflags */
527 if (FILEPROC_TYPE(fp
) == FTYPE_GUARDED
) {
528 if (0 == uap
->guard
|| 0 == uap
->guardflags
)
529 error
= EINVAL
; /* missing guard! */
531 error
= EPERM
; /* guardids cannot be zero */
533 if (0 != uap
->guard
|| 0 != uap
->guardflags
)
534 error
= EINVAL
; /* guard provided, but none needed! */
540 if (0 != uap
->nguard
) {
542 * There's a new guard in town.
545 error
= EINVAL
; /* guards cannot contain zero */
546 else if (((uap
->nguardflags
& GUARD_REQUIRED
) != GUARD_REQUIRED
) ||
547 ((uap
->nguardflags
& ~GUARD_ALL
) != 0))
548 error
= EINVAL
; /* must have valid attributes too */
552 if (FILEPROC_TYPE(fp
) == FTYPE_GUARDED
) {
554 * Replace old guard with new guard
556 struct guarded_fileproc
*gfp
= FP_TO_GFP(fp
);
558 if (GUARDED_FILEPROC_MAGIC
!= gfp
->gf_magic
)
559 panic("%s: corrupt gfp %p flags %x",
560 __func__
, gfp
, fp
->f_flags
);
562 if (oldg
== gfp
->gf_guard
&&
563 uap
->guardflags
== gfp
->gf_attrs
) {
565 * Must match existing guard + attributes
566 * before we'll swap them to new ones, managing
567 * fdflags "side-effects" as we go. Note that
568 * userland can request FD_CLOFORK semantics.
570 if (gfp
->gf_attrs
& GUARD_CLOSE
)
571 FDFLAGS_CLR(p
, fd
, UF_FORKCLOSE
);
572 gfp
->gf_guard
= newg
;
573 gfp
->gf_attrs
= uap
->nguardflags
;
574 if (gfp
->gf_attrs
& GUARD_CLOSE
)
575 FDFLAGS_SET(p
, fd
, UF_FORKCLOSE
);
577 (nfdflags
& FD_CLOFORK
) ? UF_FORKCLOSE
: 0);
578 /* FG_CONFINED enforced regardless */
585 * Add a guard to a previously unguarded descriptor
587 switch (FILEGLOB_DTYPE(fp
->f_fglob
)) {
592 case DTYPE_NETPOLICY
:
601 struct gfp_crarg crarg
= {
603 .gca_attrs
= uap
->nguardflags
605 struct fileproc
*nfp
=
606 guarded_fileproc_alloc_init(&crarg
);
607 struct guarded_fileproc
*gfp
;
611 switch (error
= fp_tryswap(p
, fd
, nfp
)) {
612 case 0: /* guarded-ness comes with side-effects */
613 gfp
= FP_TO_GFP(nfp
);
614 if (gfp
->gf_attrs
& GUARD_CLOSE
)
615 FDFLAGS_SET(p
, fd
, UF_FORKCLOSE
);
616 FDFLAGS_SET(p
, fd
, UF_EXCLOSE
);
617 (void) fp_drop(p
, fd
, nfp
, 1);
620 case EKEEPLOOKING
: /* f_iocount indicates a collision */
621 (void) fp_drop(p
, fd
, fp
, 1);
625 (void) fp_drop(p
, fd
, fp
, 1);
636 if (FILEPROC_TYPE(fp
) == FTYPE_GUARDED
) {
638 * Remove the guard altogether.
640 struct guarded_fileproc
*gfp
= FP_TO_GFP(fp
);
642 if (0 != uap
->nguardflags
) {
647 if (GUARDED_FILEPROC_MAGIC
!= gfp
->gf_magic
)
648 panic("%s: corrupt gfp %p flags %x",
649 __func__
, gfp
, fp
->f_flags
);
651 if (oldg
!= gfp
->gf_guard
||
652 uap
->guardflags
!= gfp
->gf_attrs
) {
658 struct fileproc
*nfp
= fileproc_alloc_init(NULL
);
661 switch (error
= fp_tryswap(p
, fd
, nfp
)) {
662 case 0: /* undo side-effects of guarded-ness */
663 FDFLAGS_CLR(p
, fd
, UF_FORKCLOSE
| UF_EXCLOSE
);
665 (nfdflags
& FD_CLOFORK
) ? UF_FORKCLOSE
: 0);
666 /* FG_CONFINED enforced regardless */
668 (nfdflags
& FD_CLOEXEC
) ? UF_EXCLOSE
: 0);
669 (void) fp_drop(p
, fd
, nfp
, 1);
672 case EKEEPLOOKING
: /* f_iocount indicates collision */
673 (void) fp_drop(p
, fd
, fp
, 1);
677 (void) fp_drop(p
, fd
, fp
, 1);
685 * Not already guarded, and no new guard?
692 (void) fp_drop(p
, fd
, fp
, 1);
698 * user_ssize_t guarded_write_np(int fd, const guardid_t *guard,
699 * user_addr_t cbuf, user_ssize_t nbyte);
701 * Initial implementation of guarded writes.
704 guarded_write_np(struct proc
*p
, struct guarded_write_np_args
*uap
, user_ssize_t
*retval
)
710 struct guarded_fileproc
*gfp
;
711 bool wrote_some
= false;
715 if ((error
= copyin(uap
->guard
, &uguard
, sizeof (uguard
))) != 0)
718 error
= fp_lookup_guarded(p
, fd
, uguard
, &gfp
, 0);
723 if ((fp
->f_flag
& FWRITE
) == 0) {
727 struct vfs_context context
= *(vfs_context_current());
728 context
.vc_ucred
= fp
->f_fglob
->fg_cred
;
730 error
= dofilewrite(&context
, fp
, uap
->cbuf
, uap
->nbyte
,
731 (off_t
)-1, 0, retval
);
732 wrote_some
= *retval
> 0;
735 fp_drop_written(p
, fd
, fp
);
737 fp_drop(p
, fd
, fp
, 0);
742 * user_ssize_t guarded_pwrite_np(int fd, const guardid_t *guard,
743 * user_addr_t buf, user_size_t nbyte, off_t offset);
745 * Initial implementation of guarded pwrites.
748 guarded_pwrite_np(struct proc
*p
, struct guarded_pwrite_np_args
*uap
, user_ssize_t
*retval
)
753 vnode_t vp
= (vnode_t
)0;
755 struct guarded_fileproc
*gfp
;
756 bool wrote_some
= false;
760 if ((error
= copyin(uap
->guard
, &uguard
, sizeof (uguard
))) != 0)
763 error
= fp_lookup_guarded(p
, fd
, uguard
, &gfp
, 0);
768 if ((fp
->f_flag
& FWRITE
) == 0) {
771 struct vfs_context context
= *vfs_context_current();
772 context
.vc_ucred
= fp
->f_fglob
->fg_cred
;
774 if (fp
->f_type
!= DTYPE_VNODE
) {
778 vp
= (vnode_t
)fp
->f_fglob
->fg_data
;
779 if (vnode_isfifo(vp
)) {
783 if ((vp
->v_flag
& VISTTY
)) {
787 if (uap
->offset
== (off_t
)-1) {
792 error
= dofilewrite(&context
, fp
, uap
->buf
, uap
->nbyte
,
793 uap
->offset
, FOF_OFFSET
, retval
);
794 wrote_some
= *retval
> 0;
798 fp_drop_written(p
, fd
, fp
);
800 fp_drop(p
, fd
, fp
, 0);
802 KERNEL_DEBUG_CONSTANT((BSDDBG_CODE(DBG_BSD_SC_EXTENDED_INFO
, SYS_guarded_pwrite_np
) | DBG_FUNC_NONE
),
803 uap
->fd
, uap
->nbyte
, (unsigned int)((uap
->offset
>> 32)), (unsigned int)(uap
->offset
), 0);
809 * user_ssize_t guarded_writev_np(int fd, const guardid_t *guard,
810 * struct iovec *iovp, u_int iovcnt);
812 * Initial implementation of guarded writev.
816 guarded_writev_np(struct proc
*p
, struct guarded_writev_np_args
*uap
, user_ssize_t
*retval
)
821 struct user_iovec
*iovp
;
823 struct guarded_fileproc
*gfp
;
824 bool wrote_some
= false;
826 AUDIT_ARG(fd
, uap
->fd
);
828 /* Verify range bedfore calling uio_create() */
829 if (uap
->iovcnt
<= 0 || uap
->iovcnt
> UIO_MAXIOV
)
832 /* allocate a uio large enough to hold the number of iovecs passed */
833 auio
= uio_create(uap
->iovcnt
, 0,
834 (IS_64BIT_PROCESS(p
) ? UIO_USERSPACE64
: UIO_USERSPACE32
),
837 /* get location of iovecs within the uio. then copyin the iovecs from
840 iovp
= uio_iovsaddr(auio
);
843 goto ExitThisRoutine
;
845 error
= copyin_user_iovec_array(uap
->iovp
,
846 IS_64BIT_PROCESS(p
) ? UIO_USERSPACE64
: UIO_USERSPACE32
,
849 goto ExitThisRoutine
;
852 /* finalize uio_t for use and do the IO
854 error
= uio_calculateresid(auio
);
856 goto ExitThisRoutine
;
859 if ((error
= copyin(uap
->guard
, &uguard
, sizeof (uguard
))) != 0)
860 goto ExitThisRoutine
;
862 error
= fp_lookup_guarded(p
, uap
->fd
, uguard
, &gfp
, 0);
864 goto ExitThisRoutine
;
867 if ((fp
->f_flag
& FWRITE
) == 0) {
870 error
= wr_uio(p
, fp
, auio
, retval
);
871 wrote_some
= *retval
> 0;
875 fp_drop_written(p
, uap
->fd
, fp
);
877 fp_drop(p
, uap
->fd
, fp
, 0);
886 * int falloc_guarded(struct proc *p, struct fileproc **fp, int *fd,
887 * vfs_context_t ctx, const guardid_t *guard, u_int attrs);
889 * This SPI is the guarded variant of falloc(). It borrows the same
890 * restrictions as those used by the rest of the guarded_* routines.
893 falloc_guarded(struct proc
*p
, struct fileproc
**fp
, int *fd
,
894 vfs_context_t ctx
, const guardid_t
*guard
, u_int attrs
)
896 struct gfp_crarg crarg
;
898 if (((attrs
& GUARD_REQUIRED
) != GUARD_REQUIRED
) ||
899 ((attrs
& ~GUARD_ALL
) != 0) || (*guard
== 0))
902 bzero(&crarg
, sizeof (crarg
));
903 crarg
.gca_guard
= *guard
;
904 crarg
.gca_attrs
= attrs
;
906 return (falloc_withalloc(p
, fp
, fd
, ctx
, guarded_fileproc_alloc_init
,
910 #if CONFIG_MACF && CONFIG_VNGUARD
915 * Uses MAC hooks to guard operations on vnodes in the system. Given an fd,
916 * add data to the label on the fileglob and the vnode it points at.
917 * The data contains a pointer to the fileglob, the set of attributes to
918 * guard, a guard value for uniquification, and the pid of the process
919 * who set the guard up in the first place.
921 * The fd must have been opened read/write, and the underlying
922 * fileglob is FG_CONFINED so that there's no ambiguity about the
925 * When there's a callback for a vnode operation of interest (rename, unlink,
926 * etc.) check to see if the guard permits that operation, and if not
927 * take an action e.g. log a message or generate a crash report.
929 * The label is removed from the vnode and the fileglob when the fileglob
932 * The initial action to be taken can be specified by a boot arg (vnguard=0x42)
933 * and change via the "kern.vnguard.flags" sysctl.
938 struct vng_info
{ /* lives on the vnode label */
941 TAILQ_HEAD(, vng_owner
) vgi_owners
;
944 struct vng_owner
{ /* lives on the fileglob label */
946 struct fileglob
*vgo_fg
;
947 struct vng_info
*vgo_vgi
;
948 TAILQ_ENTRY(vng_owner
) vgo_link
;
951 static struct vng_info
*
952 new_vgi(unsigned attrs
, guardid_t guard
)
954 struct vng_info
*vgi
= kalloc(sizeof (*vgi
));
955 vgi
->vgi_guard
= guard
;
956 vgi
->vgi_attrs
= attrs
;
957 TAILQ_INIT(&vgi
->vgi_owners
);
961 static struct vng_owner
*
962 new_vgo(proc_t p
, struct fileglob
*fg
)
964 struct vng_owner
*vgo
= kalloc(sizeof (*vgo
));
965 memset(vgo
, 0, sizeof (*vgo
));
972 vgi_add_vgo(struct vng_info
*vgi
, struct vng_owner
*vgo
)
975 TAILQ_INSERT_HEAD(&vgi
->vgi_owners
, vgo
, vgo_link
);
979 vgi_remove_vgo(struct vng_info
*vgi
, struct vng_owner
*vgo
)
981 TAILQ_REMOVE(&vgi
->vgi_owners
, vgo
, vgo_link
);
983 return TAILQ_EMPTY(&vgi
->vgi_owners
);
987 free_vgi(struct vng_info
*vgi
)
989 assert(TAILQ_EMPTY(&vgi
->vgi_owners
));
991 memset(vgi
, 0xbeadfade, sizeof (*vgi
));
993 kfree(vgi
, sizeof (*vgi
));
997 free_vgo(struct vng_owner
*vgo
)
1000 memset(vgo
, 0x2bedf1d0, sizeof (*vgo
));
1002 kfree(vgo
, sizeof (*vgo
));
1005 static int label_slot
;
1006 static lck_rw_t llock
;
1007 static lck_grp_t
*llock_grp
;
1009 static __inline
void *
1010 vng_lbl_get(struct label
*label
)
1012 lck_rw_assert(&llock
, LCK_RW_ASSERT_HELD
);
1017 data
= (void *)mac_label_get(label
, label_slot
);
1021 static __inline
struct vng_info
*
1022 vng_lbl_get_withattr(struct label
*label
, unsigned attrmask
)
1024 struct vng_info
*vgi
= vng_lbl_get(label
);
1025 assert(NULL
== vgi
|| (vgi
->vgi_attrs
& ~VNG_ALL
) == 0);
1026 if (NULL
!= vgi
&& 0 == (vgi
->vgi_attrs
& attrmask
))
1031 static __inline
void
1032 vng_lbl_set(struct label
*label
, void *data
)
1034 assert(NULL
!= label
);
1035 lck_rw_assert(&llock
, LCK_RW_ASSERT_EXCLUSIVE
);
1036 mac_label_set(label
, label_slot
, (intptr_t)data
);
1040 vnguard_sysc_setguard(proc_t p
, const struct vnguard_set
*vns
)
1042 const int fd
= vns
->vns_fd
;
1044 if ((vns
->vns_attrs
& ~VNG_ALL
) != 0 ||
1045 0 == vns
->vns_attrs
|| 0 == vns
->vns_guard
)
1049 struct fileproc
*fp
;
1050 if (0 != (error
= fp_lookup(p
, fd
, &fp
, 0)))
1054 * To avoid trivial DoS, insist that the caller
1055 * has read/write access to the file.
1057 if ((FREAD
|FWRITE
) != (fp
->f_flag
& (FREAD
|FWRITE
))) {
1061 struct fileglob
*fg
= fp
->f_fglob
;
1062 if (FILEGLOB_DTYPE(fg
) != DTYPE_VNODE
) {
1067 * Confinement means there's only one fd pointing at
1068 * this fileglob, and will always be associated with
1071 if (0 == (FG_CONFINED
& fg
->fg_lflags
)) {
1075 struct vnode
*vp
= fg
->fg_data
;
1076 if (!vnode_isreg(vp
) || NULL
== vp
->v_mount
) {
1080 error
= vnode_getwithref(vp
);
1082 fp_drop(p
, fd
, fp
, 0);
1085 /* Ensure the target vnode -has- a label */
1086 struct vfs_context
*ctx
= vfs_context_current();
1087 mac_vnode_label_update(ctx
, vp
, NULL
);
1089 struct vng_info
*nvgi
= new_vgi(vns
->vns_attrs
, vns
->vns_guard
);
1090 struct vng_owner
*nvgo
= new_vgo(p
, fg
);
1092 lck_rw_lock_exclusive(&llock
);
1096 * A vnode guard is associated with one or more
1097 * fileglobs in one or more processes.
1099 struct vng_info
*vgi
= vng_lbl_get(vp
->v_label
);
1100 struct vng_owner
*vgo
= vng_lbl_get(fg
->fg_label
);
1103 /* vnode unguarded, add the first guard */
1105 panic("vnguard label on fileglob "
1107 /* add a kusecount so we can unlabel later */
1108 error
= vnode_ref_ext(vp
, O_EVTONLY
, 0);
1111 vgi_add_vgo(nvgi
, nvgo
);
1112 vng_lbl_set(vp
->v_label
, nvgi
);
1113 vng_lbl_set(fg
->fg_label
, nvgo
);
1119 /* vnode already guarded */
1121 if (vgi
->vgi_guard
!= vns
->vns_guard
)
1122 error
= EPERM
; /* guard mismatch */
1123 else if (vgi
->vgi_attrs
!= vns
->vns_attrs
)
1124 error
= EACCES
; /* attr mismatch */
1125 if (0 != error
|| NULL
!= vgo
) {
1129 /* record shared ownership */
1130 vgi_add_vgo(vgi
, nvgo
);
1131 vng_lbl_set(fg
->fg_label
, nvgo
);
1135 lck_rw_unlock_exclusive(&llock
);
1139 fp_drop(p
, fd
, fp
, 0);
1144 vng_policy_syscall(proc_t p
, int cmd
, user_addr_t arg
)
1153 case VNG_SYSC_SET_GUARD
: {
1154 struct vnguard_set vns
;
1155 error
= copyin(arg
, (void *)&vns
, sizeof (vns
));
1158 error
= vnguard_sysc_setguard(p
, &vns
);
1168 * This is called just before the fileglob disappears in fg_free().
1169 * Take the exclusive lock: no other thread can add or remove
1170 * a vng_info to any vnode in the system.
1173 vng_file_label_destroy(struct label
*label
)
1175 lck_rw_lock_exclusive(&llock
);
1176 struct vng_owner
*lvgo
= vng_lbl_get(label
);
1178 vng_lbl_set(label
, 0);
1179 struct vng_info
*vgi
= lvgo
->vgo_vgi
;
1181 if (vgi_remove_vgo(vgi
, lvgo
)) {
1182 /* that was the last reference */
1184 struct fileglob
*fg
= lvgo
->vgo_fg
;
1186 if (DTYPE_VNODE
== FILEGLOB_DTYPE(fg
)) {
1187 struct vnode
*vp
= fg
->fg_data
;
1188 int error
= vnode_getwithref(vp
);
1190 vng_lbl_set(vp
->v_label
, 0);
1191 lck_rw_unlock_exclusive(&llock
);
1192 /* may trigger VNOP_INACTIVE */
1193 vnode_rele_ext(vp
, O_EVTONLY
, 0);
1203 lck_rw_unlock_exclusive(&llock
);
1207 vng_reason_from_pathname(const char *path
, uint32_t pathlen
)
1209 os_reason_t r
= os_reason_create(OS_REASON_GUARD
, GUARD_REASON_VNODE
);
1213 * If the pathname is very long, just keep the trailing part
1215 const uint32_t pathmax
= 3 * EXIT_REASON_USER_DESC_MAX_LEN
/ 4;
1216 if (pathlen
> pathmax
) {
1217 path
+= (pathlen
- pathmax
);
1220 uint32_t rsize
= kcdata_estimate_required_buffer_size(1, pathlen
);
1221 if (0 == os_reason_alloc_buffer(r
, rsize
)) {
1222 struct kcdata_descriptor
*kcd
= &r
->osr_kcd_descriptor
;
1223 mach_vm_address_t addr
;
1224 if (kcdata_get_memory_addr(kcd
,
1225 EXIT_REASON_USER_DESC
, pathlen
, &addr
) == KERN_SUCCESS
) {
1226 kcdata_memcpy(kcd
, addr
, path
, pathlen
);
1231 return (OS_REASON_NULL
);
1234 static int vng_policy_flags
;
1237 vng_guard_violation(const struct vng_info
*vgi
,
1238 unsigned opval
, vnode_t vp
)
1242 if (vng_policy_flags
& kVNG_POLICY_EPERM
) {
1243 /* deny the operation */
1247 if (vng_policy_flags
& (kVNG_POLICY_LOGMSG
|kVNG_POLICY_UPRINTMSG
)) {
1251 case VNG_RENAME_FROM
:
1266 case VNG_WRITE_OTHER
:
1269 case VNG_TRUNC_OTHER
:
1277 const char *nm
= vnode_getname(vp
);
1278 proc_t p
= current_proc();
1279 const struct vng_owner
*vgo
;
1280 TAILQ_FOREACH(vgo
, &vgi
->vgi_owners
, vgo_link
) {
1282 "%s[%d]: %s%s: '%s' guarded by %s[%d] (0x%llx)\n";
1284 if (vng_policy_flags
& kVNG_POLICY_LOGMSG
) {
1286 proc_name_address(p
), proc_pid(p
), op
,
1287 0 != retval
? " denied" : "",
1288 NULL
!= nm
? nm
: "(unknown)",
1289 proc_name_address(vgo
->vgo_p
),
1290 proc_pid(vgo
->vgo_p
), vgi
->vgi_guard
);
1292 if (vng_policy_flags
& kVNG_POLICY_UPRINTMSG
) {
1294 proc_name_address(p
), proc_pid(p
), op
,
1295 0 != retval
? " denied" : "",
1296 NULL
!= nm
? nm
: "(unknown)",
1297 proc_name_address(vgo
->vgo_p
),
1298 proc_pid(vgo
->vgo_p
), vgi
->vgi_guard
);
1305 if (vng_policy_flags
& (kVNG_POLICY_EXC
|kVNG_POLICY_EXC_CORPSE
)) {
1306 /* EXC_GUARD exception */
1307 const struct vng_owner
*vgo
= TAILQ_FIRST(&vgi
->vgi_owners
);
1308 pid_t pid
= vgo
? proc_pid(vgo
->vgo_p
) : 0;
1309 mach_exception_code_t code
;
1310 mach_exception_subcode_t subcode
;
1313 EXC_GUARD_ENCODE_TYPE(code
, GUARD_TYPE_VN
);
1314 EXC_GUARD_ENCODE_FLAVOR(code
, opval
);
1315 EXC_GUARD_ENCODE_TARGET(code
, pid
);
1316 subcode
= vgi
->vgi_guard
;
1318 if (vng_policy_flags
& kVNG_POLICY_EXC_CORPSE
) {
1320 int len
= MAXPATHLEN
;
1321 MALLOC(path
, char *, len
, M_TEMP
, M_WAITOK
);
1322 os_reason_t r
= NULL
;
1324 vn_getpath(vp
, path
, &len
);
1326 r
= vng_reason_from_pathname(path
, len
);
1328 task_violated_guard(code
, subcode
, r
); /* not fatal */
1334 thread_t t
= current_thread();
1335 thread_guard_violation(t
, code
, subcode
);
1337 } else if (vng_policy_flags
& kVNG_POLICY_SIGKILL
) {
1338 proc_t p
= current_proc();
1339 psignal(p
, SIGKILL
);
1346 * A fatal vnode guard was tripped on this thread.
1348 * (Invoked before returning to userland from the syscall handler.)
1351 vn_guard_ast(thread_t __unused t
,
1352 mach_exception_data_type_t code
, mach_exception_data_type_t subcode
)
1354 task_exception_notify(EXC_GUARD
, code
, subcode
);
1355 proc_t p
= current_proc();
1356 psignal(p
, SIGKILL
);
1364 vng_vnode_check_rename(kauth_cred_t __unused cred
,
1365 struct vnode
*__unused dvp
, struct label
*__unused dlabel
,
1366 struct vnode
*vp
, struct label
*label
,
1367 struct componentname
*__unused cnp
,
1368 struct vnode
*__unused tdvp
, struct label
*__unused tdlabel
,
1369 struct vnode
*tvp
, struct label
*tlabel
,
1370 struct componentname
*__unused tcnp
)
1373 if (NULL
!= label
|| NULL
!= tlabel
) {
1374 lck_rw_lock_shared(&llock
);
1375 const struct vng_info
*vgi
=
1376 vng_lbl_get_withattr(label
, VNG_RENAME_FROM
);
1378 error
= vng_guard_violation(vgi
, VNG_RENAME_FROM
, vp
);
1380 vgi
= vng_lbl_get_withattr(tlabel
, VNG_RENAME_TO
);
1382 error
= vng_guard_violation(vgi
,
1383 VNG_RENAME_TO
, tvp
);
1385 lck_rw_unlock_shared(&llock
);
1391 vng_vnode_check_link(kauth_cred_t __unused cred
,
1392 struct vnode
*__unused dvp
, struct label
*__unused dlabel
,
1393 struct vnode
*vp
, struct label
*label
, struct componentname
*__unused cnp
)
1396 if (NULL
!= label
) {
1397 lck_rw_lock_shared(&llock
);
1398 const struct vng_info
*vgi
=
1399 vng_lbl_get_withattr(label
, VNG_LINK
);
1401 error
= vng_guard_violation(vgi
, VNG_LINK
, vp
);
1402 lck_rw_unlock_shared(&llock
);
1408 vng_vnode_check_unlink(kauth_cred_t __unused cred
,
1409 struct vnode
*__unused dvp
, struct label
*__unused dlabel
,
1410 struct vnode
*vp
, struct label
*label
, struct componentname
*__unused cnp
)
1413 if (NULL
!= label
) {
1414 lck_rw_lock_shared(&llock
);
1415 const struct vng_info
*vgi
=
1416 vng_lbl_get_withattr(label
, VNG_UNLINK
);
1418 error
= vng_guard_violation(vgi
, VNG_UNLINK
, vp
);
1419 lck_rw_unlock_shared(&llock
);
1425 * Only check violations for writes performed by "other processes"
1428 vng_vnode_check_write(kauth_cred_t __unused actv_cred
,
1429 kauth_cred_t __unused file_cred
, struct vnode
*vp
, struct label
*label
)
1432 if (NULL
!= label
) {
1433 lck_rw_lock_shared(&llock
);
1434 const struct vng_info
*vgi
=
1435 vng_lbl_get_withattr(label
, VNG_WRITE_OTHER
);
1437 proc_t p
= current_proc();
1438 const struct vng_owner
*vgo
;
1439 TAILQ_FOREACH(vgo
, &vgi
->vgi_owners
, vgo_link
) {
1440 if (vgo
->vgo_p
== p
)
1443 error
= vng_guard_violation(vgi
, VNG_WRITE_OTHER
, vp
);
1446 lck_rw_unlock_shared(&llock
);
1452 * Only check violations for truncates performed by "other processes"
1455 vng_vnode_check_truncate(kauth_cred_t __unused actv_cred
,
1456 kauth_cred_t __unused file_cred
, struct vnode
*vp
,
1457 struct label
*label
)
1460 if (NULL
!= label
) {
1461 lck_rw_lock_shared(&llock
);
1462 const struct vng_info
*vgi
=
1463 vng_lbl_get_withattr(label
, VNG_TRUNC_OTHER
);
1465 proc_t p
= current_proc();
1466 const struct vng_owner
*vgo
;
1467 TAILQ_FOREACH(vgo
, &vgi
->vgi_owners
, vgo_link
) {
1468 if (vgo
->vgo_p
== p
)
1471 error
= vng_guard_violation(vgi
, VNG_TRUNC_OTHER
, vp
);
1474 lck_rw_unlock_shared(&llock
);
1480 vng_vnode_check_exchangedata(kauth_cred_t __unused cred
,
1481 struct vnode
*fvp
, struct label
*flabel
,
1482 struct vnode
*svp
, struct label
*slabel
)
1485 if (NULL
!= flabel
|| NULL
!= slabel
) {
1486 lck_rw_lock_shared(&llock
);
1487 const struct vng_info
*vgi
=
1488 vng_lbl_get_withattr(flabel
, VNG_EXCHDATA
);
1490 error
= vng_guard_violation(vgi
, VNG_EXCHDATA
, fvp
);
1492 vgi
= vng_lbl_get_withattr(slabel
, VNG_EXCHDATA
);
1494 error
= vng_guard_violation(vgi
,
1497 lck_rw_unlock_shared(&llock
);
1502 /* Intercept open-time truncations (by "other") of a guarded vnode */
1505 vng_vnode_check_open(kauth_cred_t cred
,
1506 struct vnode
*vp
, struct label
*label
, int acc_mode
)
1508 if (0 == (acc_mode
& O_TRUNC
))
1510 return (vng_vnode_check_truncate(cred
, NULL
, vp
, label
));
1514 * Configuration gorp
1518 vng_init(struct mac_policy_conf
*mpc
)
1520 llock_grp
= lck_grp_alloc_init(mpc
->mpc_name
, LCK_GRP_ATTR_NULL
);
1521 lck_rw_init(&llock
, llock_grp
, LCK_ATTR_NULL
);
1524 SECURITY_READ_ONLY_EARLY(static struct mac_policy_ops
) vng_policy_ops
= {
1525 .mpo_file_label_destroy
= vng_file_label_destroy
,
1527 .mpo_vnode_check_link
= vng_vnode_check_link
,
1528 .mpo_vnode_check_unlink
= vng_vnode_check_unlink
,
1529 .mpo_vnode_check_rename
= vng_vnode_check_rename
,
1530 .mpo_vnode_check_write
= vng_vnode_check_write
,
1531 .mpo_vnode_check_truncate
= vng_vnode_check_truncate
,
1532 .mpo_vnode_check_exchangedata
= vng_vnode_check_exchangedata
,
1533 .mpo_vnode_check_open
= vng_vnode_check_open
,
1535 .mpo_policy_syscall
= vng_policy_syscall
,
1536 .mpo_policy_init
= vng_init
,
1539 static const char *vng_labelnames
[] = {
1543 #define ACOUNT(arr) ((unsigned)(sizeof (arr) / sizeof (arr[0])))
1545 SECURITY_READ_ONLY_LATE(static struct mac_policy_conf
) vng_policy_conf
= {
1546 .mpc_name
= VNG_POLICY_NAME
,
1547 .mpc_fullname
= "Guarded vnode policy",
1548 .mpc_field_off
= &label_slot
,
1549 .mpc_labelnames
= vng_labelnames
,
1550 .mpc_labelname_count
= ACOUNT(vng_labelnames
),
1551 .mpc_ops
= &vng_policy_ops
,
1552 .mpc_loadtime_flags
= 0,
1553 .mpc_runtime_flags
= 0
1556 static mac_policy_handle_t vng_policy_handle
;
1559 vnguard_policy_init(void)
1561 if (0 == PE_i_can_has_debugger(NULL
))
1563 vng_policy_flags
= kVNG_POLICY_LOGMSG
|
1564 kVNG_POLICY_EXC_CORPSE
| kVNG_POLICY_UPRINTMSG
;
1565 PE_parse_boot_argn("vnguard", &vng_policy_flags
, sizeof (vng_policy_flags
));
1566 if (vng_policy_flags
)
1567 mac_policy_register(&vng_policy_conf
, &vng_policy_handle
, NULL
);
1570 #if DEBUG || DEVELOPMENT
1571 #include <sys/sysctl.h>
1573 SYSCTL_DECL(_kern_vnguard
);
1574 SYSCTL_NODE(_kern
, OID_AUTO
, vnguard
, CTLFLAG_RW
| CTLFLAG_LOCKED
, 0, "vnguard");
1575 SYSCTL_INT(_kern_vnguard
, OID_AUTO
, flags
, CTLFLAG_RW
| CTLFLAG_LOCKED
,
1576 &vng_policy_flags
, 0, "vnguard policy flags");
1579 #endif /* CONFIG_MACF && CONFIG_VNGUARD */