kern_auth.c revision 1.57.6.1 1 1.57.6.1 mjf /* $NetBSD: kern_auth.c,v 1.57.6.1 2008/04/03 12:43:00 mjf Exp $ */
2 1.55 ad
3 1.55 ad /*-
4 1.55 ad * Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
5 1.55 ad * All rights reserved.
6 1.55 ad *
7 1.55 ad * Redistribution and use in source and binary forms, with or without
8 1.55 ad * modification, are permitted provided that the following conditions
9 1.55 ad * are met:
10 1.55 ad * 1. Redistributions of source code must retain the above copyright
11 1.55 ad * notice, this list of conditions and the following disclaimer.
12 1.55 ad * 2. Redistributions in binary form must reproduce the above copyright
13 1.55 ad * notice, this list of conditions and the following disclaimer in the
14 1.55 ad * documentation and/or other materials provided with the distribution.
15 1.55 ad * 3. All advertising materials mentioning features or use of this software
16 1.55 ad * must display the following acknowledgement:
17 1.55 ad * This product includes software developed by the NetBSD
18 1.55 ad * Foundation, Inc. and its contributors.
19 1.55 ad * 4. Neither the name of The NetBSD Foundation nor the names of its
20 1.55 ad * contributors may be used to endorse or promote products derived
21 1.55 ad * from this software without specific prior written permission.
22 1.55 ad *
23 1.55 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
24 1.55 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 1.55 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 1.55 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
27 1.55 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.55 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.55 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.55 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.55 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.55 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.55 ad * POSSIBILITY OF SUCH DAMAGE.
34 1.55 ad */
35 1.2 elad
36 1.2 elad /*-
37 1.2 elad * Copyright (c) 2005, 2006 Elad Efrat <elad (at) NetBSD.org>
38 1.2 elad * All rights reserved.
39 1.2 elad *
40 1.2 elad * Redistribution and use in source and binary forms, with or without
41 1.2 elad * modification, are permitted provided that the following conditions
42 1.2 elad * are met:
43 1.2 elad * 1. Redistributions of source code must retain the above copyright
44 1.2 elad * notice, this list of conditions and the following disclaimer.
45 1.2 elad * 2. Redistributions in binary form must reproduce the above copyright
46 1.2 elad * notice, this list of conditions and the following disclaimer in the
47 1.2 elad * documentation and/or other materials provided with the distribution.
48 1.37 elad * 3. The name of the author may not be used to endorse or promote products
49 1.2 elad * derived from this software without specific prior written permission.
50 1.2 elad *
51 1.2 elad * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
52 1.2 elad * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
53 1.2 elad * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
54 1.2 elad * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
55 1.2 elad * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
56 1.2 elad * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 1.2 elad * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 1.2 elad * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 1.2 elad * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
60 1.2 elad * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 1.2 elad */
62 1.2 elad
63 1.20 elad #include <sys/cdefs.h>
64 1.57.6.1 mjf __KERNEL_RCSID(0, "$NetBSD: kern_auth.c,v 1.57.6.1 2008/04/03 12:43:00 mjf Exp $");
65 1.20 elad
66 1.46 christos #include <sys/types.h>
67 1.2 elad #include <sys/param.h>
68 1.2 elad #include <sys/queue.h>
69 1.2 elad #include <sys/proc.h>
70 1.2 elad #include <sys/ucred.h>
71 1.2 elad #include <sys/pool.h>
72 1.2 elad #include <sys/kauth.h>
73 1.34 ad #include <sys/kmem.h>
74 1.44 ad #include <sys/rwlock.h>
75 1.45 dsl #include <sys/sysctl.h> /* for pi_[p]cread */
76 1.55 ad #include <sys/atomic.h>
77 1.46 christos #include <sys/specificdata.h>
78 1.41 elad
79 1.41 elad /*
80 1.41 elad * Secmodel-specific credentials.
81 1.41 elad */
82 1.41 elad struct kauth_key {
83 1.41 elad const char *ks_secmodel; /* secmodel */
84 1.41 elad specificdata_key_t ks_key; /* key */
85 1.41 elad };
86 1.2 elad
87 1.46 christos /*
88 1.46 christos * Credentials.
89 1.46 christos *
90 1.46 christos * A subset of this structure is used in kvm(3) (src/lib/libkvm/kvm_proc.c)
91 1.46 christos * and should be synchronized with this structure when the update is
92 1.46 christos * relevant.
93 1.46 christos */
94 1.46 christos struct kauth_cred {
95 1.53 ad /*
96 1.53 ad * Ensure that the first part of the credential resides in its own
97 1.53 ad * cache line. Due to sharing there aren't many kauth_creds in a
98 1.53 ad * typical system, but the reference counts change very often.
99 1.53 ad * Keeping it seperate from the rest of the data prevents false
100 1.53 ad * sharing between CPUs.
101 1.53 ad */
102 1.46 christos u_int cr_refcnt; /* reference count */
103 1.57.6.1 mjf #if COHERENCY_UNIT > 4
104 1.57.6.1 mjf uint8_t cr_pad[COHERENCY_UNIT - 4];
105 1.57.6.1 mjf #endif
106 1.55 ad uid_t cr_uid; /* user id */
107 1.46 christos uid_t cr_euid; /* effective user id */
108 1.46 christos uid_t cr_svuid; /* saved effective user id */
109 1.46 christos gid_t cr_gid; /* group id */
110 1.46 christos gid_t cr_egid; /* effective group id */
111 1.46 christos gid_t cr_svgid; /* saved effective group id */
112 1.46 christos u_int cr_ngroups; /* number of groups */
113 1.46 christos gid_t cr_groups[NGROUPS]; /* group memberships */
114 1.46 christos specificdata_reference cr_sd; /* specific data */
115 1.46 christos };
116 1.46 christos
117 1.2 elad /*
118 1.2 elad * Listener.
119 1.2 elad */
120 1.2 elad struct kauth_listener {
121 1.2 elad kauth_scope_callback_t func; /* callback */
122 1.2 elad kauth_scope_t scope; /* scope backpointer */
123 1.11 ad u_int refcnt; /* reference count */
124 1.2 elad SIMPLEQ_ENTRY(kauth_listener) listener_next; /* listener list */
125 1.2 elad };
126 1.2 elad
127 1.2 elad /*
128 1.2 elad * Scope.
129 1.2 elad */
130 1.2 elad struct kauth_scope {
131 1.2 elad const char *id; /* scope name */
132 1.2 elad void *cookie; /* user cookie */
133 1.11 ad u_int nlisteners; /* # of listeners */
134 1.2 elad SIMPLEQ_HEAD(, kauth_listener) listenq; /* listener list */
135 1.2 elad SIMPLEQ_ENTRY(kauth_scope) next_scope; /* scope list */
136 1.2 elad };
137 1.2 elad
138 1.41 elad static int kauth_cred_hook(kauth_cred_t, kauth_action_t, void *, void *);
139 1.2 elad
140 1.2 elad /* List of scopes and its lock. */
141 1.54 matt static SIMPLEQ_HEAD(, kauth_scope) scope_list =
142 1.54 matt SIMPLEQ_HEAD_INITIALIZER(scope_list);
143 1.2 elad
144 1.2 elad /* Built-in scopes: generic, process. */
145 1.2 elad static kauth_scope_t kauth_builtin_scope_generic;
146 1.19 elad static kauth_scope_t kauth_builtin_scope_system;
147 1.2 elad static kauth_scope_t kauth_builtin_scope_process;
148 1.19 elad static kauth_scope_t kauth_builtin_scope_network;
149 1.19 elad static kauth_scope_t kauth_builtin_scope_machdep;
150 1.25 elad static kauth_scope_t kauth_builtin_scope_device;
151 1.41 elad static kauth_scope_t kauth_builtin_scope_cred;
152 1.2 elad
153 1.39 elad static unsigned int nsecmodels = 0;
154 1.22 elad
155 1.41 elad static specificdata_domain_t kauth_domain;
156 1.53 ad static pool_cache_t kauth_cred_cache;
157 1.44 ad krwlock_t kauth_lock;
158 1.41 elad
159 1.2 elad /* Allocate new, empty kauth credentials. */
160 1.2 elad kauth_cred_t
161 1.3 yamt kauth_cred_alloc(void)
162 1.3 yamt {
163 1.2 elad kauth_cred_t cred;
164 1.2 elad
165 1.53 ad cred = pool_cache_get(kauth_cred_cache, PR_WAITOK);
166 1.53 ad
167 1.2 elad cred->cr_refcnt = 1;
168 1.53 ad cred->cr_uid = 0;
169 1.53 ad cred->cr_euid = 0;
170 1.53 ad cred->cr_svuid = 0;
171 1.53 ad cred->cr_gid = 0;
172 1.53 ad cred->cr_egid = 0;
173 1.53 ad cred->cr_svgid = 0;
174 1.53 ad cred->cr_ngroups = 0;
175 1.53 ad
176 1.41 elad specificdata_init(kauth_domain, &cred->cr_sd);
177 1.41 elad kauth_cred_hook(cred, KAUTH_CRED_INIT, NULL, NULL);
178 1.2 elad
179 1.2 elad return (cred);
180 1.2 elad }
181 1.2 elad
182 1.2 elad /* Increment reference count to cred. */
183 1.2 elad void
184 1.2 elad kauth_cred_hold(kauth_cred_t cred)
185 1.2 elad {
186 1.2 elad KASSERT(cred != NULL);
187 1.11 ad KASSERT(cred->cr_refcnt > 0);
188 1.2 elad
189 1.55 ad atomic_inc_uint(&cred->cr_refcnt);
190 1.2 elad }
191 1.2 elad
192 1.2 elad /* Decrease reference count to cred. If reached zero, free it. */
193 1.2 elad void
194 1.3 yamt kauth_cred_free(kauth_cred_t cred)
195 1.3 yamt {
196 1.11 ad
197 1.2 elad KASSERT(cred != NULL);
198 1.11 ad KASSERT(cred->cr_refcnt > 0);
199 1.2 elad
200 1.56 ad if (atomic_dec_uint_nv(&cred->cr_refcnt) > 0)
201 1.55 ad return;
202 1.55 ad
203 1.55 ad kauth_cred_hook(cred, KAUTH_CRED_FREE, NULL, NULL);
204 1.55 ad specificdata_fini(kauth_domain, &cred->cr_sd);
205 1.55 ad pool_cache_put(kauth_cred_cache, cred);
206 1.2 elad }
207 1.2 elad
208 1.49 dsl static void
209 1.48 dsl kauth_cred_clone1(kauth_cred_t from, kauth_cred_t to, bool copy_groups)
210 1.48 dsl {
211 1.2 elad KASSERT(from != NULL);
212 1.2 elad KASSERT(to != NULL);
213 1.11 ad KASSERT(from->cr_refcnt > 0);
214 1.2 elad
215 1.2 elad to->cr_uid = from->cr_uid;
216 1.2 elad to->cr_euid = from->cr_euid;
217 1.2 elad to->cr_svuid = from->cr_svuid;
218 1.2 elad to->cr_gid = from->cr_gid;
219 1.2 elad to->cr_egid = from->cr_egid;
220 1.2 elad to->cr_svgid = from->cr_svgid;
221 1.48 dsl if (copy_groups) {
222 1.48 dsl to->cr_ngroups = from->cr_ngroups;
223 1.48 dsl memcpy(to->cr_groups, from->cr_groups, sizeof(to->cr_groups));
224 1.48 dsl }
225 1.41 elad
226 1.41 elad kauth_cred_hook(from, KAUTH_CRED_COPY, to, NULL);
227 1.2 elad }
228 1.2 elad
229 1.49 dsl void
230 1.49 dsl kauth_cred_clone(kauth_cred_t from, kauth_cred_t to)
231 1.49 dsl {
232 1.49 dsl kauth_cred_clone1(from, to, true);
233 1.49 dsl }
234 1.49 dsl
235 1.2 elad /*
236 1.2 elad * Duplicate cred and return a new kauth_cred_t.
237 1.2 elad */
238 1.2 elad kauth_cred_t
239 1.2 elad kauth_cred_dup(kauth_cred_t cred)
240 1.2 elad {
241 1.2 elad kauth_cred_t new_cred;
242 1.2 elad
243 1.2 elad KASSERT(cred != NULL);
244 1.11 ad KASSERT(cred->cr_refcnt > 0);
245 1.2 elad
246 1.2 elad new_cred = kauth_cred_alloc();
247 1.2 elad
248 1.2 elad kauth_cred_clone(cred, new_cred);
249 1.2 elad
250 1.2 elad return (new_cred);
251 1.2 elad }
252 1.2 elad
253 1.2 elad /*
254 1.2 elad * Similar to crcopy(), only on a kauth_cred_t.
255 1.2 elad * XXX: Is this even needed? [kauth_cred_copy]
256 1.2 elad */
257 1.2 elad kauth_cred_t
258 1.2 elad kauth_cred_copy(kauth_cred_t cred)
259 1.2 elad {
260 1.2 elad kauth_cred_t new_cred;
261 1.2 elad
262 1.2 elad KASSERT(cred != NULL);
263 1.11 ad KASSERT(cred->cr_refcnt > 0);
264 1.2 elad
265 1.2 elad /* If the provided credentials already have one reference, use them. */
266 1.2 elad if (cred->cr_refcnt == 1)
267 1.2 elad return (cred);
268 1.2 elad
269 1.2 elad new_cred = kauth_cred_alloc();
270 1.2 elad
271 1.2 elad kauth_cred_clone(cred, new_cred);
272 1.2 elad
273 1.2 elad kauth_cred_free(cred);
274 1.2 elad
275 1.2 elad return (new_cred);
276 1.2 elad }
277 1.2 elad
278 1.38 elad void
279 1.38 elad kauth_proc_fork(struct proc *parent, struct proc *child)
280 1.38 elad {
281 1.44 ad
282 1.44 ad mutex_enter(&parent->p_mutex);
283 1.38 elad kauth_cred_hold(parent->p_cred);
284 1.38 elad child->p_cred = parent->p_cred;
285 1.44 ad mutex_exit(&parent->p_mutex);
286 1.41 elad
287 1.44 ad /* XXX: relies on parent process stalling during fork() */
288 1.41 elad kauth_cred_hook(parent->p_cred, KAUTH_CRED_FORK, parent,
289 1.41 elad child);
290 1.38 elad }
291 1.38 elad
292 1.2 elad uid_t
293 1.2 elad kauth_cred_getuid(kauth_cred_t cred)
294 1.2 elad {
295 1.2 elad KASSERT(cred != NULL);
296 1.2 elad
297 1.2 elad return (cred->cr_uid);
298 1.2 elad }
299 1.2 elad
300 1.2 elad uid_t
301 1.2 elad kauth_cred_geteuid(kauth_cred_t cred)
302 1.2 elad {
303 1.2 elad KASSERT(cred != NULL);
304 1.2 elad
305 1.2 elad return (cred->cr_euid);
306 1.2 elad }
307 1.2 elad
308 1.2 elad uid_t
309 1.2 elad kauth_cred_getsvuid(kauth_cred_t cred)
310 1.2 elad {
311 1.2 elad KASSERT(cred != NULL);
312 1.2 elad
313 1.2 elad return (cred->cr_svuid);
314 1.2 elad }
315 1.2 elad
316 1.2 elad gid_t
317 1.2 elad kauth_cred_getgid(kauth_cred_t cred)
318 1.2 elad {
319 1.2 elad KASSERT(cred != NULL);
320 1.2 elad
321 1.2 elad return (cred->cr_gid);
322 1.2 elad }
323 1.2 elad
324 1.2 elad gid_t
325 1.2 elad kauth_cred_getegid(kauth_cred_t cred)
326 1.2 elad {
327 1.2 elad KASSERT(cred != NULL);
328 1.2 elad
329 1.2 elad return (cred->cr_egid);
330 1.2 elad }
331 1.2 elad
332 1.2 elad gid_t
333 1.2 elad kauth_cred_getsvgid(kauth_cred_t cred)
334 1.2 elad {
335 1.2 elad KASSERT(cred != NULL);
336 1.2 elad
337 1.2 elad return (cred->cr_svgid);
338 1.2 elad }
339 1.2 elad
340 1.2 elad void
341 1.2 elad kauth_cred_setuid(kauth_cred_t cred, uid_t uid)
342 1.2 elad {
343 1.2 elad KASSERT(cred != NULL);
344 1.11 ad KASSERT(cred->cr_refcnt == 1);
345 1.2 elad
346 1.2 elad cred->cr_uid = uid;
347 1.2 elad }
348 1.2 elad
349 1.2 elad void
350 1.2 elad kauth_cred_seteuid(kauth_cred_t cred, uid_t uid)
351 1.2 elad {
352 1.2 elad KASSERT(cred != NULL);
353 1.11 ad KASSERT(cred->cr_refcnt == 1);
354 1.2 elad
355 1.2 elad cred->cr_euid = uid;
356 1.2 elad }
357 1.2 elad
358 1.2 elad void
359 1.2 elad kauth_cred_setsvuid(kauth_cred_t cred, uid_t uid)
360 1.2 elad {
361 1.2 elad KASSERT(cred != NULL);
362 1.11 ad KASSERT(cred->cr_refcnt == 1);
363 1.2 elad
364 1.2 elad cred->cr_svuid = uid;
365 1.2 elad }
366 1.2 elad
367 1.2 elad void
368 1.2 elad kauth_cred_setgid(kauth_cred_t cred, gid_t gid)
369 1.2 elad {
370 1.2 elad KASSERT(cred != NULL);
371 1.11 ad KASSERT(cred->cr_refcnt == 1);
372 1.2 elad
373 1.2 elad cred->cr_gid = gid;
374 1.2 elad }
375 1.2 elad
376 1.2 elad void
377 1.2 elad kauth_cred_setegid(kauth_cred_t cred, gid_t gid)
378 1.2 elad {
379 1.2 elad KASSERT(cred != NULL);
380 1.11 ad KASSERT(cred->cr_refcnt == 1);
381 1.2 elad
382 1.2 elad cred->cr_egid = gid;
383 1.2 elad }
384 1.2 elad
385 1.2 elad void
386 1.2 elad kauth_cred_setsvgid(kauth_cred_t cred, gid_t gid)
387 1.2 elad {
388 1.2 elad KASSERT(cred != NULL);
389 1.11 ad KASSERT(cred->cr_refcnt == 1);
390 1.2 elad
391 1.2 elad cred->cr_svgid = gid;
392 1.2 elad }
393 1.2 elad
394 1.2 elad /* Checks if gid is a member of the groups in cred. */
395 1.2 elad int
396 1.2 elad kauth_cred_ismember_gid(kauth_cred_t cred, gid_t gid, int *resultp)
397 1.2 elad {
398 1.2 elad int i;
399 1.2 elad
400 1.2 elad KASSERT(cred != NULL);
401 1.2 elad KASSERT(resultp != NULL);
402 1.2 elad
403 1.2 elad *resultp = 0;
404 1.2 elad
405 1.2 elad for (i = 0; i < cred->cr_ngroups; i++)
406 1.2 elad if (cred->cr_groups[i] == gid) {
407 1.2 elad *resultp = 1;
408 1.2 elad break;
409 1.2 elad }
410 1.2 elad
411 1.2 elad return (0);
412 1.2 elad }
413 1.2 elad
414 1.11 ad u_int
415 1.2 elad kauth_cred_ngroups(kauth_cred_t cred)
416 1.2 elad {
417 1.2 elad KASSERT(cred != NULL);
418 1.2 elad
419 1.2 elad return (cred->cr_ngroups);
420 1.2 elad }
421 1.2 elad
422 1.2 elad /*
423 1.2 elad * Return the group at index idx from the groups in cred.
424 1.2 elad */
425 1.2 elad gid_t
426 1.11 ad kauth_cred_group(kauth_cred_t cred, u_int idx)
427 1.2 elad {
428 1.2 elad KASSERT(cred != NULL);
429 1.2 elad KASSERT(idx < cred->cr_ngroups);
430 1.2 elad
431 1.2 elad return (cred->cr_groups[idx]);
432 1.2 elad }
433 1.2 elad
434 1.2 elad /* XXX elad: gmuid is unused for now. */
435 1.2 elad int
436 1.49 dsl kauth_cred_setgroups(kauth_cred_t cred, const gid_t *grbuf, size_t len,
437 1.52 yamt uid_t gmuid, enum uio_seg seg)
438 1.2 elad {
439 1.49 dsl int error = 0;
440 1.49 dsl
441 1.2 elad KASSERT(cred != NULL);
442 1.11 ad KASSERT(cred->cr_refcnt == 1);
443 1.2 elad
444 1.49 dsl if (len > sizeof(cred->cr_groups) / sizeof(cred->cr_groups[0]))
445 1.49 dsl return EINVAL;
446 1.49 dsl
447 1.49 dsl if (len) {
448 1.52 yamt if (seg == UIO_SYSSPACE) {
449 1.49 dsl memcpy(cred->cr_groups, grbuf,
450 1.49 dsl len * sizeof(cred->cr_groups[0]));
451 1.52 yamt } else {
452 1.49 dsl error = copyin(grbuf, cred->cr_groups,
453 1.49 dsl len * sizeof(cred->cr_groups[0]));
454 1.49 dsl if (error != 0)
455 1.49 dsl len = 0;
456 1.49 dsl }
457 1.49 dsl }
458 1.2 elad memset(cred->cr_groups + len, 0xff,
459 1.2 elad sizeof(cred->cr_groups) - (len * sizeof(cred->cr_groups[0])));
460 1.2 elad
461 1.2 elad cred->cr_ngroups = len;
462 1.2 elad
463 1.49 dsl return error;
464 1.48 dsl }
465 1.48 dsl
466 1.49 dsl /* This supports sys_setgroups() */
467 1.48 dsl int
468 1.48 dsl kauth_proc_setgroups(struct lwp *l, kauth_cred_t ncred)
469 1.48 dsl {
470 1.48 dsl kauth_cred_t cred;
471 1.48 dsl int error;
472 1.48 dsl
473 1.48 dsl /*
474 1.48 dsl * At this point we could delete duplicate groups from ncred,
475 1.48 dsl * and plausibly sort the list - but in general the later is
476 1.48 dsl * a bad idea.
477 1.48 dsl */
478 1.48 dsl proc_crmod_enter();
479 1.48 dsl /* Maybe we should use curproc here ? */
480 1.48 dsl cred = l->l_proc->p_cred;
481 1.48 dsl
482 1.48 dsl kauth_cred_clone1(cred, ncred, false);
483 1.48 dsl
484 1.48 dsl error = kauth_authorize_process(cred, KAUTH_PROCESS_SETID,
485 1.48 dsl l->l_proc, NULL, NULL, NULL);
486 1.48 dsl if (error != 0) {
487 1.48 dsl proc_crmod_leave(cred, ncred, false);
488 1.48 dsl return error;
489 1.48 dsl }
490 1.48 dsl
491 1.48 dsl /* Broadcast our credentials to the process and other LWPs. */
492 1.48 dsl proc_crmod_leave(ncred, cred, true);
493 1.48 dsl return 0;
494 1.48 dsl }
495 1.48 dsl
496 1.2 elad int
497 1.49 dsl kauth_cred_getgroups(kauth_cred_t cred, gid_t *grbuf, size_t len,
498 1.52 yamt enum uio_seg seg)
499 1.2 elad {
500 1.2 elad KASSERT(cred != NULL);
501 1.2 elad
502 1.49 dsl if (len > cred->cr_ngroups)
503 1.49 dsl return EINVAL;
504 1.49 dsl
505 1.52 yamt if (seg == UIO_USERSPACE)
506 1.49 dsl return copyout(cred->cr_groups, grbuf, sizeof(*grbuf) * len);
507 1.2 elad memcpy(grbuf, cred->cr_groups, sizeof(*grbuf) * len);
508 1.2 elad
509 1.49 dsl return 0;
510 1.48 dsl }
511 1.48 dsl
512 1.41 elad int
513 1.41 elad kauth_register_key(const char *secmodel, kauth_key_t *result)
514 1.41 elad {
515 1.41 elad kauth_key_t k;
516 1.41 elad specificdata_key_t key;
517 1.41 elad int error;
518 1.41 elad
519 1.41 elad KASSERT(result != NULL);
520 1.41 elad
521 1.41 elad error = specificdata_key_create(kauth_domain, &key, NULL);
522 1.41 elad if (error)
523 1.41 elad return (error);
524 1.41 elad
525 1.41 elad k = kmem_alloc(sizeof(*k), KM_SLEEP);
526 1.41 elad k->ks_secmodel = secmodel;
527 1.41 elad k->ks_key = key;
528 1.41 elad
529 1.41 elad *result = k;
530 1.41 elad
531 1.41 elad return (0);
532 1.41 elad }
533 1.41 elad
534 1.41 elad int
535 1.41 elad kauth_deregister_key(kauth_key_t key)
536 1.41 elad {
537 1.41 elad KASSERT(key != NULL);
538 1.41 elad
539 1.41 elad specificdata_key_delete(kauth_domain, key->ks_key);
540 1.41 elad kmem_free(key, sizeof(*key));
541 1.41 elad
542 1.41 elad return (0);
543 1.41 elad }
544 1.41 elad
545 1.41 elad void *
546 1.41 elad kauth_cred_getdata(kauth_cred_t cred, kauth_key_t key)
547 1.41 elad {
548 1.41 elad KASSERT(cred != NULL);
549 1.41 elad KASSERT(key != NULL);
550 1.41 elad
551 1.41 elad return (specificdata_getspecific(kauth_domain, &cred->cr_sd,
552 1.41 elad key->ks_key));
553 1.41 elad }
554 1.41 elad
555 1.41 elad void
556 1.41 elad kauth_cred_setdata(kauth_cred_t cred, kauth_key_t key, void *data)
557 1.41 elad {
558 1.41 elad KASSERT(cred != NULL);
559 1.41 elad KASSERT(key != NULL);
560 1.41 elad
561 1.41 elad specificdata_setspecific(kauth_domain, &cred->cr_sd, key->ks_key, data);
562 1.41 elad }
563 1.41 elad
564 1.2 elad /*
565 1.19 elad * Match uids in two credentials.
566 1.2 elad */
567 1.19 elad int
568 1.2 elad kauth_cred_uidmatch(kauth_cred_t cred1, kauth_cred_t cred2)
569 1.2 elad {
570 1.2 elad KASSERT(cred1 != NULL);
571 1.2 elad KASSERT(cred2 != NULL);
572 1.2 elad
573 1.2 elad if (cred1->cr_uid == cred2->cr_uid ||
574 1.2 elad cred1->cr_euid == cred2->cr_uid ||
575 1.2 elad cred1->cr_uid == cred2->cr_euid ||
576 1.2 elad cred1->cr_euid == cred2->cr_euid)
577 1.2 elad return (1);
578 1.2 elad
579 1.2 elad return (0);
580 1.2 elad }
581 1.2 elad
582 1.11 ad u_int
583 1.2 elad kauth_cred_getrefcnt(kauth_cred_t cred)
584 1.2 elad {
585 1.2 elad KASSERT(cred != NULL);
586 1.2 elad
587 1.2 elad return (cred->cr_refcnt);
588 1.2 elad }
589 1.2 elad
590 1.2 elad /*
591 1.2 elad * Convert userland credentials (struct uucred) to kauth_cred_t.
592 1.29 pooka * XXX: For NFS & puffs
593 1.2 elad */
594 1.29 pooka void
595 1.29 pooka kauth_uucred_to_cred(kauth_cred_t cred, const struct uucred *uuc)
596 1.29 pooka {
597 1.2 elad KASSERT(cred != NULL);
598 1.2 elad KASSERT(uuc != NULL);
599 1.29 pooka
600 1.2 elad cred->cr_refcnt = 1;
601 1.2 elad cred->cr_uid = uuc->cr_uid;
602 1.2 elad cred->cr_euid = uuc->cr_uid;
603 1.2 elad cred->cr_svuid = uuc->cr_uid;
604 1.2 elad cred->cr_gid = uuc->cr_gid;
605 1.2 elad cred->cr_egid = uuc->cr_gid;
606 1.2 elad cred->cr_svgid = uuc->cr_gid;
607 1.2 elad cred->cr_ngroups = min(uuc->cr_ngroups, NGROUPS);
608 1.2 elad kauth_cred_setgroups(cred, __UNCONST(uuc->cr_groups),
609 1.49 dsl cred->cr_ngroups, -1, UIO_SYSSPACE);
610 1.2 elad }
611 1.2 elad
612 1.2 elad /*
613 1.29 pooka * Convert kauth_cred_t to userland credentials (struct uucred).
614 1.29 pooka * XXX: For NFS & puffs
615 1.29 pooka */
616 1.29 pooka void
617 1.29 pooka kauth_cred_to_uucred(struct uucred *uuc, const kauth_cred_t cred)
618 1.29 pooka {
619 1.29 pooka KASSERT(cred != NULL);
620 1.29 pooka KASSERT(uuc != NULL);
621 1.29 pooka int ng;
622 1.29 pooka
623 1.29 pooka ng = min(cred->cr_ngroups, NGROUPS);
624 1.29 pooka uuc->cr_uid = cred->cr_euid;
625 1.29 pooka uuc->cr_gid = cred->cr_egid;
626 1.29 pooka uuc->cr_ngroups = ng;
627 1.49 dsl kauth_cred_getgroups(cred, uuc->cr_groups, ng, UIO_SYSSPACE);
628 1.29 pooka }
629 1.29 pooka
630 1.29 pooka /*
631 1.2 elad * Compare kauth_cred_t and uucred credentials.
632 1.2 elad * XXX: Modelled after crcmp() for NFS.
633 1.2 elad */
634 1.2 elad int
635 1.2 elad kauth_cred_uucmp(kauth_cred_t cred, const struct uucred *uuc)
636 1.2 elad {
637 1.2 elad KASSERT(cred != NULL);
638 1.2 elad KASSERT(uuc != NULL);
639 1.2 elad
640 1.2 elad if (cred->cr_euid == uuc->cr_uid &&
641 1.2 elad cred->cr_egid == uuc->cr_gid &&
642 1.2 elad cred->cr_ngroups == uuc->cr_ngroups) {
643 1.2 elad int i;
644 1.2 elad
645 1.2 elad /* Check if all groups from uuc appear in cred. */
646 1.2 elad for (i = 0; i < uuc->cr_ngroups; i++) {
647 1.2 elad int ismember;
648 1.2 elad
649 1.2 elad ismember = 0;
650 1.2 elad if (kauth_cred_ismember_gid(cred, uuc->cr_groups[i],
651 1.2 elad &ismember) != 0 || !ismember)
652 1.4 yamt return (1);
653 1.2 elad }
654 1.2 elad
655 1.4 yamt return (0);
656 1.2 elad }
657 1.2 elad
658 1.4 yamt return (1);
659 1.2 elad }
660 1.2 elad
661 1.2 elad /*
662 1.12 ad * Make a struct ucred out of a kauth_cred_t. For compatibility.
663 1.2 elad */
664 1.2 elad void
665 1.45 dsl kauth_cred_toucred(kauth_cred_t cred, struct ki_ucred *uc)
666 1.2 elad {
667 1.2 elad KASSERT(cred != NULL);
668 1.2 elad KASSERT(uc != NULL);
669 1.2 elad
670 1.12 ad uc->cr_ref = cred->cr_refcnt;
671 1.2 elad uc->cr_uid = cred->cr_euid;
672 1.2 elad uc->cr_gid = cred->cr_egid;
673 1.2 elad uc->cr_ngroups = min(cred->cr_ngroups,
674 1.2 elad sizeof(uc->cr_groups) / sizeof(uc->cr_groups[0]));
675 1.2 elad memcpy(uc->cr_groups, cred->cr_groups,
676 1.2 elad uc->cr_ngroups * sizeof(uc->cr_groups[0]));
677 1.2 elad }
678 1.2 elad
679 1.2 elad /*
680 1.12 ad * Make a struct pcred out of a kauth_cred_t. For compatibility.
681 1.2 elad */
682 1.2 elad void
683 1.45 dsl kauth_cred_topcred(kauth_cred_t cred, struct ki_pcred *pc)
684 1.2 elad {
685 1.2 elad KASSERT(cred != NULL);
686 1.2 elad KASSERT(pc != NULL);
687 1.2 elad
688 1.45 dsl pc->p_pad = NULL;
689 1.2 elad pc->p_ruid = cred->cr_uid;
690 1.2 elad pc->p_svuid = cred->cr_svuid;
691 1.2 elad pc->p_rgid = cred->cr_gid;
692 1.2 elad pc->p_svgid = cred->cr_svgid;
693 1.2 elad pc->p_refcnt = cred->cr_refcnt;
694 1.2 elad }
695 1.2 elad
696 1.2 elad /*
697 1.14 ad * Return kauth_cred_t for the current LWP.
698 1.2 elad */
699 1.2 elad kauth_cred_t
700 1.2 elad kauth_cred_get(void)
701 1.2 elad {
702 1.14 ad return (curlwp->l_cred);
703 1.2 elad }
704 1.2 elad
705 1.2 elad /*
706 1.2 elad * Returns a scope matching the provided id.
707 1.2 elad * Requires the scope list lock to be held by the caller.
708 1.2 elad */
709 1.2 elad static kauth_scope_t
710 1.3 yamt kauth_ifindscope(const char *id)
711 1.3 yamt {
712 1.2 elad kauth_scope_t scope;
713 1.2 elad
714 1.44 ad KASSERT(rw_lock_held(&kauth_lock));
715 1.2 elad
716 1.2 elad scope = NULL;
717 1.2 elad SIMPLEQ_FOREACH(scope, &scope_list, next_scope) {
718 1.2 elad if (strcmp(scope->id, id) == 0)
719 1.2 elad break;
720 1.2 elad }
721 1.2 elad
722 1.2 elad return (scope);
723 1.2 elad }
724 1.2 elad
725 1.2 elad /*
726 1.2 elad * Register a new scope.
727 1.2 elad *
728 1.2 elad * id - identifier for the scope
729 1.2 elad * callback - the scope's default listener
730 1.2 elad * cookie - cookie to be passed to the listener(s)
731 1.2 elad */
732 1.2 elad kauth_scope_t
733 1.2 elad kauth_register_scope(const char *id, kauth_scope_callback_t callback,
734 1.16 christos void *cookie)
735 1.2 elad {
736 1.2 elad kauth_scope_t scope;
737 1.21 yamt kauth_listener_t listener = NULL; /* XXX gcc */
738 1.2 elad
739 1.2 elad /* Sanitize input */
740 1.16 christos if (id == NULL)
741 1.2 elad return (NULL);
742 1.2 elad
743 1.2 elad /* Allocate space for a new scope and listener. */
744 1.34 ad scope = kmem_alloc(sizeof(*scope), KM_SLEEP);
745 1.34 ad if (scope == NULL)
746 1.34 ad return NULL;
747 1.21 yamt if (callback != NULL) {
748 1.34 ad listener = kmem_alloc(sizeof(*listener), KM_SLEEP);
749 1.34 ad if (listener == NULL) {
750 1.34 ad kmem_free(scope, sizeof(*scope));
751 1.34 ad return (NULL);
752 1.34 ad }
753 1.21 yamt }
754 1.2 elad
755 1.34 ad /*
756 1.34 ad * Acquire scope list lock.
757 1.34 ad */
758 1.44 ad rw_enter(&kauth_lock, RW_WRITER);
759 1.2 elad
760 1.2 elad /* Check we don't already have a scope with the same id */
761 1.2 elad if (kauth_ifindscope(id) != NULL) {
762 1.44 ad rw_exit(&kauth_lock);
763 1.2 elad
764 1.34 ad kmem_free(scope, sizeof(*scope));
765 1.34 ad if (callback != NULL)
766 1.34 ad kmem_free(listener, sizeof(*listener));
767 1.2 elad
768 1.2 elad return (NULL);
769 1.2 elad }
770 1.2 elad
771 1.2 elad /* Initialize new scope with parameters */
772 1.2 elad scope->id = id;
773 1.2 elad scope->cookie = cookie;
774 1.2 elad scope->nlisteners = 1;
775 1.2 elad
776 1.16 christos SIMPLEQ_INIT(&scope->listenq);
777 1.16 christos
778 1.2 elad /* Add default listener */
779 1.16 christos if (callback != NULL) {
780 1.16 christos listener->func = callback;
781 1.16 christos listener->scope = scope;
782 1.16 christos listener->refcnt = 0;
783 1.16 christos SIMPLEQ_INSERT_HEAD(&scope->listenq, listener, listener_next);
784 1.16 christos }
785 1.2 elad
786 1.2 elad /* Insert scope to scopes list */
787 1.16 christos SIMPLEQ_INSERT_TAIL(&scope_list, scope, next_scope);
788 1.2 elad
789 1.44 ad rw_exit(&kauth_lock);
790 1.2 elad
791 1.2 elad return (scope);
792 1.2 elad }
793 1.2 elad
794 1.2 elad /*
795 1.2 elad * Initialize the kernel authorization subsystem.
796 1.2 elad *
797 1.2 elad * Initialize the scopes list lock.
798 1.41 elad * Create specificdata domain.
799 1.41 elad * Register the credentials scope, used in kauth(9) internally.
800 1.41 elad * Register built-in scopes: generic, system, process, network, machdep, device.
801 1.2 elad */
802 1.2 elad void
803 1.2 elad kauth_init(void)
804 1.2 elad {
805 1.44 ad rw_init(&kauth_lock);
806 1.2 elad
807 1.53 ad kauth_cred_cache = pool_cache_init(sizeof(struct kauth_cred),
808 1.57.6.1 mjf coherency_unit, 0, 0, "kcredpl", NULL, IPL_NONE,
809 1.55 ad NULL, NULL, NULL);
810 1.53 ad
811 1.41 elad /* Create specificdata domain. */
812 1.41 elad kauth_domain = specificdata_domain_create();
813 1.41 elad
814 1.41 elad /* Register credentials scope. */
815 1.41 elad kauth_builtin_scope_cred =
816 1.41 elad kauth_register_scope(KAUTH_SCOPE_CRED, NULL, NULL);
817 1.41 elad
818 1.2 elad /* Register generic scope. */
819 1.2 elad kauth_builtin_scope_generic = kauth_register_scope(KAUTH_SCOPE_GENERIC,
820 1.19 elad NULL, NULL);
821 1.19 elad
822 1.19 elad /* Register system scope. */
823 1.19 elad kauth_builtin_scope_system = kauth_register_scope(KAUTH_SCOPE_SYSTEM,
824 1.19 elad NULL, NULL);
825 1.2 elad
826 1.2 elad /* Register process scope. */
827 1.2 elad kauth_builtin_scope_process = kauth_register_scope(KAUTH_SCOPE_PROCESS,
828 1.19 elad NULL, NULL);
829 1.19 elad
830 1.19 elad /* Register network scope. */
831 1.19 elad kauth_builtin_scope_network = kauth_register_scope(KAUTH_SCOPE_NETWORK,
832 1.19 elad NULL, NULL);
833 1.19 elad
834 1.19 elad /* Register machdep scope. */
835 1.19 elad kauth_builtin_scope_machdep = kauth_register_scope(KAUTH_SCOPE_MACHDEP,
836 1.19 elad NULL, NULL);
837 1.25 elad
838 1.25 elad /* Register device scope. */
839 1.25 elad kauth_builtin_scope_device = kauth_register_scope(KAUTH_SCOPE_DEVICE,
840 1.25 elad NULL, NULL);
841 1.2 elad }
842 1.2 elad
843 1.2 elad /*
844 1.2 elad * Deregister a scope.
845 1.2 elad * Requires scope list lock to be held by the caller.
846 1.2 elad *
847 1.2 elad * scope - the scope to deregister
848 1.2 elad */
849 1.2 elad void
850 1.2 elad kauth_deregister_scope(kauth_scope_t scope)
851 1.2 elad {
852 1.2 elad if (scope != NULL) {
853 1.2 elad /* Remove scope from list */
854 1.2 elad SIMPLEQ_REMOVE(&scope_list, scope, kauth_scope, next_scope);
855 1.36 elad kmem_free(scope, sizeof(*scope));
856 1.2 elad }
857 1.2 elad }
858 1.2 elad
859 1.2 elad /*
860 1.2 elad * Register a listener.
861 1.2 elad *
862 1.2 elad * id - scope identifier.
863 1.2 elad * callback - the callback routine for the listener.
864 1.2 elad * cookie - cookie to pass unmoidfied to the callback.
865 1.2 elad */
866 1.2 elad kauth_listener_t
867 1.2 elad kauth_listen_scope(const char *id, kauth_scope_callback_t callback,
868 1.30 yamt void *cookie)
869 1.2 elad {
870 1.2 elad kauth_scope_t scope;
871 1.2 elad kauth_listener_t listener;
872 1.2 elad
873 1.44 ad listener = kmem_alloc(sizeof(*listener), KM_SLEEP);
874 1.44 ad if (listener == NULL)
875 1.44 ad return (NULL);
876 1.44 ad
877 1.44 ad rw_enter(&kauth_lock, RW_WRITER);
878 1.44 ad
879 1.34 ad /*
880 1.34 ad * Find scope struct.
881 1.34 ad */
882 1.2 elad scope = kauth_ifindscope(id);
883 1.44 ad if (scope == NULL) {
884 1.44 ad rw_exit(&kauth_lock);
885 1.44 ad kmem_free(listener, sizeof(*listener));
886 1.2 elad return (NULL);
887 1.44 ad }
888 1.2 elad
889 1.2 elad /* Allocate listener */
890 1.2 elad
891 1.2 elad /* Initialize listener with parameters */
892 1.2 elad listener->func = callback;
893 1.2 elad listener->refcnt = 0;
894 1.2 elad
895 1.2 elad /* Add listener to scope */
896 1.2 elad SIMPLEQ_INSERT_TAIL(&scope->listenq, listener, listener_next);
897 1.2 elad
898 1.2 elad /* Raise number of listeners on scope. */
899 1.2 elad scope->nlisteners++;
900 1.2 elad listener->scope = scope;
901 1.2 elad
902 1.44 ad rw_exit(&kauth_lock);
903 1.44 ad
904 1.2 elad return (listener);
905 1.2 elad }
906 1.2 elad
907 1.2 elad /*
908 1.2 elad * Deregister a listener.
909 1.2 elad *
910 1.2 elad * listener - listener reference as returned from kauth_listen_scope().
911 1.2 elad */
912 1.2 elad void
913 1.2 elad kauth_unlisten_scope(kauth_listener_t listener)
914 1.2 elad {
915 1.44 ad
916 1.2 elad if (listener != NULL) {
917 1.44 ad rw_enter(&kauth_lock, RW_WRITER);
918 1.3 yamt SIMPLEQ_REMOVE(&listener->scope->listenq, listener,
919 1.3 yamt kauth_listener, listener_next);
920 1.2 elad listener->scope->nlisteners--;
921 1.44 ad rw_exit(&kauth_lock);
922 1.36 elad kmem_free(listener, sizeof(*listener));
923 1.2 elad }
924 1.2 elad }
925 1.2 elad
926 1.2 elad /*
927 1.2 elad * Authorize a request.
928 1.2 elad *
929 1.2 elad * scope - the scope of the request as defined by KAUTH_SCOPE_* or as
930 1.2 elad * returned from kauth_register_scope().
931 1.2 elad * credential - credentials of the user ("actor") making the request.
932 1.2 elad * action - request identifier.
933 1.2 elad * arg[0-3] - passed unmodified to listener(s).
934 1.2 elad */
935 1.2 elad int
936 1.2 elad kauth_authorize_action(kauth_scope_t scope, kauth_cred_t cred,
937 1.2 elad kauth_action_t action, void *arg0, void *arg1,
938 1.2 elad void *arg2, void *arg3)
939 1.2 elad {
940 1.2 elad kauth_listener_t listener;
941 1.2 elad int error, allow, fail;
942 1.2 elad
943 1.26 elad KASSERT(cred != NULL);
944 1.26 elad KASSERT(action != 0);
945 1.2 elad
946 1.17 christos /* Short-circuit requests coming from the kernel. */
947 1.17 christos if (cred == NOCRED || cred == FSCRED)
948 1.17 christos return (0);
949 1.17 christos
950 1.26 elad KASSERT(scope != NULL);
951 1.26 elad
952 1.2 elad fail = 0;
953 1.2 elad allow = 0;
954 1.39 elad
955 1.44 ad /* rw_enter(&kauth_lock, RW_READER); XXX not yet */
956 1.2 elad SIMPLEQ_FOREACH(listener, &scope->listenq, listener_next) {
957 1.2 elad error = listener->func(cred, action, scope->cookie, arg0,
958 1.44 ad arg1, arg2, arg3);
959 1.2 elad
960 1.2 elad if (error == KAUTH_RESULT_ALLOW)
961 1.2 elad allow = 1;
962 1.2 elad else if (error == KAUTH_RESULT_DENY)
963 1.2 elad fail = 1;
964 1.2 elad }
965 1.44 ad /* rw_exit(&kauth_lock); */
966 1.2 elad
967 1.39 elad if (fail)
968 1.39 elad return (EPERM);
969 1.39 elad
970 1.39 elad if (allow)
971 1.39 elad return (0);
972 1.39 elad
973 1.39 elad if (!nsecmodels)
974 1.39 elad return (0);
975 1.39 elad
976 1.39 elad return (EPERM);
977 1.2 elad };
978 1.2 elad
979 1.2 elad /*
980 1.2 elad * Generic scope authorization wrapper.
981 1.2 elad */
982 1.2 elad int
983 1.2 elad kauth_authorize_generic(kauth_cred_t cred, kauth_action_t action, void *arg0)
984 1.2 elad {
985 1.2 elad return (kauth_authorize_action(kauth_builtin_scope_generic, cred,
986 1.2 elad action, arg0, NULL, NULL, NULL));
987 1.2 elad }
988 1.2 elad
989 1.2 elad /*
990 1.19 elad * System scope authorization wrapper.
991 1.2 elad */
992 1.2 elad int
993 1.19 elad kauth_authorize_system(kauth_cred_t cred, kauth_action_t action,
994 1.19 elad enum kauth_system_req req, void *arg1, void *arg2, void *arg3)
995 1.2 elad {
996 1.19 elad return (kauth_authorize_action(kauth_builtin_scope_system, cred,
997 1.19 elad action, (void *)req, arg1, arg2, arg3));
998 1.2 elad }
999 1.2 elad
1000 1.2 elad /*
1001 1.2 elad * Process scope authorization wrapper.
1002 1.2 elad */
1003 1.2 elad int
1004 1.2 elad kauth_authorize_process(kauth_cred_t cred, kauth_action_t action,
1005 1.2 elad struct proc *p, void *arg1, void *arg2, void *arg3)
1006 1.2 elad {
1007 1.2 elad return (kauth_authorize_action(kauth_builtin_scope_process, cred,
1008 1.2 elad action, p, arg1, arg2, arg3));
1009 1.2 elad }
1010 1.19 elad
1011 1.19 elad /*
1012 1.19 elad * Network scope authorization wrapper.
1013 1.19 elad */
1014 1.19 elad int
1015 1.19 elad kauth_authorize_network(kauth_cred_t cred, kauth_action_t action,
1016 1.23 elad enum kauth_network_req req, void *arg1, void *arg2, void *arg3)
1017 1.19 elad {
1018 1.19 elad return (kauth_authorize_action(kauth_builtin_scope_network, cred,
1019 1.23 elad action, (void *)req, arg1, arg2, arg3));
1020 1.19 elad }
1021 1.19 elad
1022 1.19 elad int
1023 1.19 elad kauth_authorize_machdep(kauth_cred_t cred, kauth_action_t action,
1024 1.35 elad void *arg0, void *arg1, void *arg2, void *arg3)
1025 1.19 elad {
1026 1.19 elad return (kauth_authorize_action(kauth_builtin_scope_machdep, cred,
1027 1.35 elad action, arg0, arg1, arg2, arg3));
1028 1.19 elad }
1029 1.25 elad
1030 1.25 elad int
1031 1.32 elad kauth_authorize_device(kauth_cred_t cred, kauth_action_t action,
1032 1.32 elad void *arg0, void *arg1, void *arg2, void *arg3)
1033 1.32 elad {
1034 1.32 elad return (kauth_authorize_action(kauth_builtin_scope_device, cred,
1035 1.32 elad action, arg0, arg1, arg2, arg3));
1036 1.32 elad }
1037 1.32 elad
1038 1.32 elad int
1039 1.25 elad kauth_authorize_device_tty(kauth_cred_t cred, kauth_action_t action,
1040 1.25 elad struct tty *tty)
1041 1.25 elad {
1042 1.25 elad return (kauth_authorize_action(kauth_builtin_scope_device, cred,
1043 1.25 elad action, tty, NULL, NULL, NULL));
1044 1.25 elad }
1045 1.31 elad
1046 1.31 elad int
1047 1.31 elad kauth_authorize_device_spec(kauth_cred_t cred, enum kauth_device_req req,
1048 1.31 elad struct vnode *vp)
1049 1.31 elad {
1050 1.31 elad return (kauth_authorize_action(kauth_builtin_scope_device, cred,
1051 1.31 elad KAUTH_DEVICE_RAWIO_SPEC, (void *)req, vp, NULL, NULL));
1052 1.31 elad }
1053 1.31 elad
1054 1.31 elad int
1055 1.33 elad kauth_authorize_device_passthru(kauth_cred_t cred, dev_t dev, u_long bits,
1056 1.33 elad void *data)
1057 1.31 elad {
1058 1.31 elad return (kauth_authorize_action(kauth_builtin_scope_device, cred,
1059 1.33 elad KAUTH_DEVICE_RAWIO_PASSTHRU, (void *)bits, (void *)(u_long)dev,
1060 1.33 elad data, NULL));
1061 1.31 elad }
1062 1.39 elad
1063 1.41 elad static int
1064 1.41 elad kauth_cred_hook(kauth_cred_t cred, kauth_action_t action, void *arg0,
1065 1.41 elad void *arg1)
1066 1.41 elad {
1067 1.41 elad int r;
1068 1.41 elad
1069 1.41 elad r = kauth_authorize_action(kauth_builtin_scope_cred, cred, action,
1070 1.41 elad arg0, arg1, NULL, NULL);
1071 1.41 elad
1072 1.42 elad #ifdef DIAGNOSTIC
1073 1.42 elad if (!SIMPLEQ_EMPTY(&kauth_builtin_scope_cred->listenq))
1074 1.42 elad KASSERT(r == 0);
1075 1.42 elad #endif /* DIAGNOSTIC */
1076 1.41 elad
1077 1.41 elad return (r);
1078 1.41 elad }
1079 1.41 elad
1080 1.39 elad void
1081 1.39 elad secmodel_register(void)
1082 1.39 elad {
1083 1.39 elad KASSERT(nsecmodels + 1 != 0);
1084 1.39 elad
1085 1.44 ad rw_enter(&kauth_lock, RW_WRITER);
1086 1.39 elad nsecmodels++;
1087 1.44 ad rw_exit(&kauth_lock);
1088 1.39 elad }
1089 1.39 elad
1090 1.39 elad void
1091 1.39 elad secmodel_deregister(void)
1092 1.39 elad {
1093 1.39 elad KASSERT(nsecmodels != 0);
1094 1.39 elad
1095 1.44 ad rw_enter(&kauth_lock, RW_WRITER);
1096 1.39 elad nsecmodels--;
1097 1.44 ad rw_exit(&kauth_lock);
1098 1.39 elad }
1099