2 * Copyright (c) 2013 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/malloc.h>
31 #include <sys/queue.h>
32 #include <sys/systm.h>
35 #include <sys/sysproto.h>
36 #include <sys/proc_uuid_policy.h>
38 #include <kern/locks.h>
39 #include <uuid/uuid.h>
42 #include <libkern/OSAtomic.h>
44 #define PROC_UUID_POLICY_DEBUG 0
46 #if PROC_UUID_POLICY_DEBUG
47 #define dprintf(...) printf(__VA_ARGS__)
49 #define dprintf(...) do { } while(0)
52 static lck_grp_attr_t
*proc_uuid_policy_subsys_lck_grp_attr
;
53 static lck_grp_t
*proc_uuid_policy_subsys_lck_grp
;
54 static lck_attr_t
*proc_uuid_policy_subsys_lck_attr
;
55 static lck_mtx_t proc_uuid_policy_subsys_mutex
;
57 #define PROC_UUID_POLICY_SUBSYS_LOCK() lck_mtx_lock(&proc_uuid_policy_subsys_mutex)
58 #define PROC_UUID_POLICY_SUBSYS_UNLOCK() lck_mtx_unlock(&proc_uuid_policy_subsys_mutex)
60 #define PROC_UUID_POLICY_HASH_SIZE 64
61 u_long proc_uuid_policy_hash_mask
;
63 /* Assume first byte of UUIDs are evenly distributed */
64 #define UUIDHASH(uuid) (&proc_uuid_policy_hashtbl[uuid[0] & proc_uuid_policy_hash_mask])
65 static LIST_HEAD(proc_uuid_policy_hashhead
, proc_uuid_policy_entry
) *proc_uuid_policy_hashtbl
;
68 * On modification, invalidate cached lookups by bumping the generation count.
69 * Other calls will need to take the slowpath of taking
72 static volatile int32_t proc_uuid_policy_table_gencount
;
73 #define BUMP_PROC_UUID_POLICY_GENERATION_COUNT() do { \
74 if (OSIncrementAtomic(&proc_uuid_policy_table_gencount) == (INT32_MAX - 1)) { \
75 proc_uuid_policy_table_gencount = 1; \
79 #define MAX_PROC_UUID_POLICY_COUNT 10240
80 static volatile int32_t proc_uuid_policy_count
;
82 struct proc_uuid_policy_entry
{
83 LIST_ENTRY(proc_uuid_policy_entry
) entries
;
84 uuid_t uuid
; /* Mach-O executable UUID */
85 uint32_t flags
; /* policy flag for that UUID */
89 proc_uuid_policy_insert(uuid_t uuid
, uint32_t flags
);
91 static struct proc_uuid_policy_entry
*
92 proc_uuid_policy_remove_locked(uuid_t uuid
);
95 proc_uuid_policy_remove(uuid_t uuid
);
98 proc_uuid_policy_clear(void);
101 proc_uuid_policy_init(void)
103 proc_uuid_policy_subsys_lck_grp_attr
= lck_grp_attr_alloc_init();
104 proc_uuid_policy_subsys_lck_grp
= lck_grp_alloc_init("proc_uuid_policy_subsys_lock", proc_uuid_policy_subsys_lck_grp_attr
);
105 proc_uuid_policy_subsys_lck_attr
= lck_attr_alloc_init();
106 lck_mtx_init(&proc_uuid_policy_subsys_mutex
, proc_uuid_policy_subsys_lck_grp
, proc_uuid_policy_subsys_lck_attr
);
108 proc_uuid_policy_hashtbl
= hashinit(PROC_UUID_POLICY_HASH_SIZE
, M_PROC_UUID_POLICY
, &proc_uuid_policy_hash_mask
);
109 proc_uuid_policy_table_gencount
= 1;
110 proc_uuid_policy_count
= 0;
114 proc_uuid_policy_insert(uuid_t uuid
, uint32_t flags
)
116 struct proc_uuid_policy_entry
*entry
, *delentry
= NULL
;
119 #if PROC_UUID_POLICY_DEBUG
120 uuid_string_t uuidstr
;
121 uuid_unparse(uuid
, uuidstr
);
124 if (uuid_is_null(uuid
))
127 MALLOC(entry
, struct proc_uuid_policy_entry
*, sizeof(*entry
), M_PROC_UUID_POLICY
, M_WAITOK
|M_ZERO
);
129 memcpy(entry
->uuid
, uuid
, sizeof(uuid_t
));
130 entry
->flags
= flags
;
132 PROC_UUID_POLICY_SUBSYS_LOCK();
134 delentry
= proc_uuid_policy_remove_locked(uuid
);
136 /* Our target UUID is not in the list, insert it now */
137 if (proc_uuid_policy_count
< MAX_PROC_UUID_POLICY_COUNT
) {
138 LIST_INSERT_HEAD(UUIDHASH(uuid
), entry
, entries
);
139 proc_uuid_policy_count
++;
141 BUMP_PROC_UUID_POLICY_GENERATION_COUNT();
146 PROC_UUID_POLICY_SUBSYS_UNLOCK();
148 /* If we had found a pre-existing entry, deallocate its memory now */
150 FREE(delentry
, M_PROC_UUID_POLICY
);
154 FREE(entry
, M_PROC_UUID_POLICY
);
155 dprintf("Failed to insert proc uuid policy (%s,0x%08x), table full\n", uuidstr
, flags
);
157 dprintf("Inserted proc uuid policy (%s,0x%08x)\n", uuidstr
, flags
);
163 static struct proc_uuid_policy_entry
*
164 proc_uuid_policy_remove_locked(uuid_t uuid
)
166 struct proc_uuid_policy_entry
*tmpentry
, *searchentry
, *delentry
= NULL
;
168 LIST_FOREACH_SAFE(searchentry
, UUIDHASH(uuid
), entries
, tmpentry
) {
169 if (0 == memcmp(searchentry
->uuid
, uuid
, sizeof(uuid_t
))) {
170 /* Existing entry under same UUID. Remove it and save for de-allocation */
171 delentry
= searchentry
;
172 LIST_REMOVE(searchentry
, entries
);
173 proc_uuid_policy_count
--;
182 proc_uuid_policy_remove(uuid_t uuid
)
184 struct proc_uuid_policy_entry
*delentry
= NULL
;
187 #if PROC_UUID_POLICY_DEBUG
188 uuid_string_t uuidstr
;
189 uuid_unparse(uuid
, uuidstr
);
192 if (uuid_is_null(uuid
))
195 PROC_UUID_POLICY_SUBSYS_LOCK();
197 delentry
= proc_uuid_policy_remove_locked(uuid
);
201 BUMP_PROC_UUID_POLICY_GENERATION_COUNT();
206 PROC_UUID_POLICY_SUBSYS_UNLOCK();
208 /* If we had found a pre-existing entry, deallocate its memory now */
210 FREE(delentry
, M_PROC_UUID_POLICY
);
214 dprintf("Failed to remove proc uuid policy (%s), entry not present\n", uuidstr
);
216 dprintf("Removed proc uuid policy (%s)\n", uuidstr
);
223 proc_uuid_policy_lookup(uuid_t uuid
, uint32_t *flags
, int32_t *gencount
)
225 struct proc_uuid_policy_entry
*tmpentry
, *searchentry
, *foundentry
= NULL
;
228 #if PROC_UUID_POLICY_DEBUG
229 uuid_string_t uuidstr
;
230 uuid_unparse(uuid
, uuidstr
);
233 if (uuid_is_null(uuid
) || !flags
|| !gencount
)
236 if (*gencount
== proc_uuid_policy_table_gencount
) {
238 * Generation count hasn't changed, so old flags should be valid.
239 * We avoid taking the lock here by assuming any concurrent modifications
240 * to the table will invalidate the generation count.
245 PROC_UUID_POLICY_SUBSYS_LOCK();
247 LIST_FOREACH_SAFE(searchentry
, UUIDHASH(uuid
), entries
, tmpentry
) {
248 if (0 == memcmp(searchentry
->uuid
, uuid
, sizeof(uuid_t
))) {
249 /* Found existing entry */
250 foundentry
= searchentry
;
256 *flags
= foundentry
->flags
;
257 *gencount
= proc_uuid_policy_table_gencount
;
263 PROC_UUID_POLICY_SUBSYS_UNLOCK();
266 dprintf("Looked up proc uuid policy (%s,0x%08x)\n", uuidstr
, *flags
);
273 proc_uuid_policy_clear(void)
275 struct proc_uuid_policy_entry
*tmpentry
, *searchentry
;
276 struct proc_uuid_policy_hashhead deletehead
= LIST_HEAD_INITIALIZER(deletehead
);
277 unsigned long hashslot
;
279 PROC_UUID_POLICY_SUBSYS_LOCK();
281 if (proc_uuid_policy_count
> 0) {
283 for (hashslot
=0; hashslot
<= proc_uuid_policy_hash_mask
; hashslot
++) {
284 struct proc_uuid_policy_hashhead
*headp
= &proc_uuid_policy_hashtbl
[hashslot
];
286 LIST_FOREACH_SAFE(searchentry
, headp
, entries
, tmpentry
) {
287 /* Move each entry to our delete list */
288 LIST_REMOVE(searchentry
, entries
);
289 proc_uuid_policy_count
--;
290 LIST_INSERT_HEAD(&deletehead
, searchentry
, entries
);
294 BUMP_PROC_UUID_POLICY_GENERATION_COUNT();
297 PROC_UUID_POLICY_SUBSYS_UNLOCK();
299 /* Memory deallocation happens after the hash lock is dropped */
300 LIST_FOREACH_SAFE(searchentry
, &deletehead
, entries
, tmpentry
) {
301 LIST_REMOVE(searchentry
, entries
);
302 FREE(searchentry
, M_PROC_UUID_POLICY
);
305 dprintf("Clearing proc uuid policy table\n");
310 int proc_uuid_policy(struct proc
*p __unused
, struct proc_uuid_policy_args
*uap
, int32_t *retval __unused
)
315 /* Need privilege for policy changes */
316 error
= priv_check_cred(kauth_cred_get(), PRIV_PROC_UUID_POLICY
, 0);
318 dprintf("%s failed privilege check for proc_uuid_policy: %d\n", p
->p_comm
, error
);
321 dprintf("%s succeeded privilege check for proc_uuid_policy\n", p
->p_comm
);
324 switch (uap
->operation
) {
325 case PROC_UUID_POLICY_OPERATION_CLEAR
:
326 error
= proc_uuid_policy_clear();
329 case PROC_UUID_POLICY_OPERATION_ADD
:
330 if (uap
->uuidlen
!= sizeof(uuid_t
)) {
335 error
= copyin(uap
->uuid
, uuid
, sizeof(uuid_t
));
339 error
= proc_uuid_policy_insert(uuid
, uap
->flags
);
342 case PROC_UUID_POLICY_OPERATION_REMOVE
:
343 if (uap
->uuidlen
!= sizeof(uuid_t
)) {
348 error
= copyin(uap
->uuid
, uuid
, sizeof(uuid_t
));
352 error
= proc_uuid_policy_remove(uuid
);