2 * Copyright (c) 2002, 2003 Networks Associates Technology, Inc.
3 * Copyright (c) 2006 SPARTA, Inc.
6 * This software was developed for the FreeBSD Project in part by Network
7 * Associates Laboratories, the Security Research Division of Network
8 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"),
9 * as part of the DARPA CHATS research program.
11 * This software was enhanced by SPARTA ISSO under SPAWAR contract
12 * N66001-04-C-6019 ("SEFOS").
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/param.h>
37 #include <sys/kernel.h>
39 #include <sys/malloc.h>
42 #include <sys/systm.h>
43 #include <sys/vnode.h>
44 #include <sys/vnode_internal.h>
46 #include <sys/file_internal.h>
48 #include <security/mac_internal.h>
52 mac_file_label_alloc(void)
56 label
= mac_labelzone_alloc(MAC_WAITOK
);
59 MAC_PERFORM(file_label_init
, label
);
64 mac_file_label_init(struct fileglob
*fg
)
67 fg
->fg_label
= mac_file_label_alloc();
71 mac_file_label_free(struct label
*label
)
74 MAC_PERFORM(file_label_destroy
, label
);
75 mac_labelzone_free(label
);
79 mac_file_label_associate(struct ucred
*cred
, struct fileglob
*fg
)
82 MAC_PERFORM(file_label_associate
, cred
, fg
, fg
->fg_label
);
86 mac_file_label_destroy(struct fileglob
*fg
)
89 mac_file_label_free(fg
->fg_label
);
94 mac_file_check_create(struct ucred
*cred
)
98 MAC_CHECK(file_check_create
, cred
);
103 mac_file_check_dup(struct ucred
*cred
, struct fileglob
*fg
, int newfd
)
107 MAC_CHECK(file_check_dup
, cred
, fg
, fg
->fg_label
, newfd
);
112 mac_file_check_fcntl(struct ucred
*cred
, struct fileglob
*fg
, int cmd
,
117 MAC_CHECK(file_check_fcntl
, cred
, fg
, fg
->fg_label
, cmd
, arg
);
122 mac_file_check_ioctl(struct ucred
*cred
, struct fileglob
*fg
, u_int cmd
)
126 MAC_CHECK(file_check_ioctl
, cred
, fg
, fg
->fg_label
, cmd
);
131 mac_file_check_inherit(struct ucred
*cred
, struct fileglob
*fg
)
135 MAC_CHECK(file_check_inherit
, cred
, fg
, fg
->fg_label
);
140 mac_file_check_receive(struct ucred
*cred
, struct fileglob
*fg
)
144 MAC_CHECK(file_check_receive
, cred
, fg
, fg
->fg_label
);
149 mac_file_check_get_offset(struct ucred
*cred
, struct fileglob
*fg
)
153 MAC_CHECK(file_check_get_offset
, cred
, fg
, fg
->fg_label
);
158 mac_file_check_change_offset(struct ucred
*cred
, struct fileglob
*fg
)
162 MAC_CHECK(file_check_change_offset
, cred
, fg
, fg
->fg_label
);
167 mac_file_check_get(struct ucred
*cred
, struct fileglob
*fg
, char *elements
,
172 MAC_CHECK(file_check_get
, cred
, fg
, elements
, len
);
177 mac_file_check_set(struct ucred
*cred
, struct fileglob
*fg
, char *buf
,
182 MAC_CHECK(file_check_set
, cred
, fg
, buf
, buflen
);
187 mac_file_check_lock(struct ucred
*cred
, struct fileglob
*fg
, int op
,
192 MAC_CHECK(file_check_lock
, cred
, fg
, fg
->fg_label
, op
, fl
);
197 * On some platforms, VM_PROT_READ implies VM_PROT_EXECUTE. If that is true,
198 * both prot and maxprot will have VM_PROT_EXECUTE set after file_check_mmap
199 * if VM_PROT_READ is set.
201 * The type of maxprot in file_check_mmap must be equivalent to vm_prot_t *
202 * (defined in <mach/vm_prot.h>). mac_policy.h does not include any header
203 * files, so cannot use the typedef itself.
206 mac_file_check_mmap(struct ucred
*cred
, struct fileglob
*fg
, int prot
,
207 int flags
, uint64_t offset
, int *maxprot
)
213 MAC_CHECK(file_check_mmap
, cred
, fg
, fg
->fg_label
, prot
, flags
, offset
, &maxp
);
214 if ((maxp
| *maxprot
) != *maxprot
)
215 panic("file_check_mmap increased max protections");
221 mac_file_check_mmap_downgrade(struct ucred
*cred
, struct fileglob
*fg
,
226 MAC_PERFORM(file_check_mmap_downgrade
, cred
, fg
, fg
->fg_label
,