4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2013, Ira Cooper. All rights reserved.
25 * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
28 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
29 /* All Rights Reserved */
32 * University Copyright- Copyright (c) 1982, 1986, 1988
33 * The Regents of the University of California
36 * University Acknowledgment- Portions of this document are derived from
37 * software developed by the University of California, Berkeley, and its
41 #include <sys/types.h>
42 #include <sys/sysmacros.h>
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/cred_impl.h>
46 #include <sys/policy.h>
47 #include <sys/vnode.h>
48 #include <sys/errno.h>
52 #include <sys/syscall.h>
53 #include <sys/debug.h>
54 #include <sys/atomic.h>
55 #include <sys/ucred.h>
56 #include <sys/prsystm.h>
57 #include <sys/modctl.h>
62 #include <sys/tsol/label.h>
64 #include <sys/idmap.h>
66 #include <sys/varargs.h>
67 #include <sys/sysconf.h>
68 #include <util/qsort.h>
71 /* Ephemeral IDs Zones specific data */
72 typedef struct ephemeral_zsd
{
81 static void crgrphold(credgrp_t
*);
83 #define CREDGRPSZ(ngrp) (sizeof (credgrp_t) + ((ngrp - 1) * sizeof (gid_t)))
85 static kmutex_t ephemeral_zone_mutex
;
86 static zone_key_t ephemeral_zone_key
;
88 static struct kmem_cache
*cred_cache
;
89 static size_t crsize
= 0;
90 static int audoff
= 0;
93 static cred_t
*dummycr
;
95 int rstlink
; /* link(2) restricted to files owned by user? */
97 static int get_c2audit_load(void);
99 #define CR_AUINFO(c) (auditinfo_addr_t *)((audoff == 0) ? NULL : \
100 ((char *)(c)) + audoff)
102 #define REMOTE_PEER_CRED(c) ((c)->cr_gid == -1)
104 #define BIN_GROUP_SEARCH_CUTOFF 16
106 static boolean_t hasephids
= B_FALSE
;
108 static ephemeral_zsd_t
*
109 get_ephemeral_zsd(zone_t
*zone
)
111 ephemeral_zsd_t
*eph_zsd
;
113 eph_zsd
= zone_getspecific(ephemeral_zone_key
, zone
);
114 if (eph_zsd
!= NULL
) {
118 mutex_enter(&ephemeral_zone_mutex
);
119 eph_zsd
= zone_getspecific(ephemeral_zone_key
, zone
);
120 if (eph_zsd
== NULL
) {
121 eph_zsd
= kmem_zalloc(sizeof (ephemeral_zsd_t
), KM_SLEEP
);
122 eph_zsd
->min_uid
= MAXUID
;
123 eph_zsd
->last_uid
= IDMAP_WK__MAX_UID
;
124 eph_zsd
->min_gid
= MAXUID
;
125 eph_zsd
->last_gid
= IDMAP_WK__MAX_GID
;
126 mutex_init(&eph_zsd
->eph_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
129 * nobody is used to map SID containing CRs.
131 eph_zsd
->eph_nobody
= crdup(zone
->zone_kcred
);
132 (void) crsetugid(eph_zsd
->eph_nobody
, UID_NOBODY
, GID_NOBODY
);
133 CR_FLAGS(eph_zsd
->eph_nobody
) = 0;
134 eph_zsd
->eph_nobody
->cr_zone
= zone
;
136 (void) zone_setspecific(ephemeral_zone_key
, zone
, eph_zsd
);
138 mutex_exit(&ephemeral_zone_mutex
);
142 static cred_t
*crdup_flags(const cred_t
*, int);
143 static cred_t
*cralloc_flags(int);
146 * This function is called when a zone is destroyed
150 destroy_ephemeral_zsd(zoneid_t zone_id
, void *arg
)
152 ephemeral_zsd_t
*eph_zsd
= arg
;
153 if (eph_zsd
!= NULL
) {
154 mutex_destroy(&eph_zsd
->eph_lock
);
155 crfree(eph_zsd
->eph_nobody
);
156 kmem_free(eph_zsd
, sizeof (ephemeral_zsd_t
));
163 * Initialize credentials data structures.
171 crsize
= sizeof (cred_t
);
173 if (get_c2audit_load() > 0) {
175 /* assure audit context is 64-bit aligned */
177 sizeof (int64_t) - 1) & ~(sizeof (int64_t) - 1);
181 crsize
= audoff
+ sizeof (auditinfo_addr_t
);
182 crsize
= (crsize
+ sizeof (int) - 1) & ~(sizeof (int) - 1);
185 cred_cache
= kmem_cache_create("cred_cache", crsize
, 0,
186 NULL
, NULL
, NULL
, NULL
, NULL
, 0);
189 * dummycr is used to copy initial state for creds.
192 bzero(dummycr
, crsize
);
194 dummycr
->cr_uid
= (uid_t
)-1;
195 dummycr
->cr_gid
= (gid_t
)-1;
196 dummycr
->cr_ruid
= (uid_t
)-1;
197 dummycr
->cr_rgid
= (gid_t
)-1;
198 dummycr
->cr_suid
= (uid_t
)-1;
199 dummycr
->cr_sgid
= (gid_t
)-1;
203 * kcred is used by anything that needs all privileges; it's
204 * also the template used for crget as it has all the compatible
209 bzero(kcred
, crsize
);
212 /* kcred is never freed, so we don't need zone_cred_hold here */
213 kcred
->cr_zone
= &zone0
;
215 priv_fillset(&CR_LPRIV(kcred
));
216 CR_IPRIV(kcred
) = *priv_basic
;
218 priv_addset(&CR_IPRIV(kcred
), PRIV_PROC_SECFLAGS
);
220 /* Not a basic privilege, if chown is not restricted add it to I0 */
222 priv_addset(&CR_IPRIV(kcred
), PRIV_FILE_CHOWN_SELF
);
224 /* Basic privilege, if link is restricted remove it from I0 */
226 priv_delset(&CR_IPRIV(kcred
), PRIV_FILE_LINK_ANY
);
228 CR_EPRIV(kcred
) = CR_PPRIV(kcred
) = CR_IPRIV(kcred
);
230 CR_FLAGS(kcred
) = NET_MAC_AWARE
;
233 * Set up credentials of p0.
235 ttoproc(curthread
)->p_cred
= kcred
;
236 curthread
->t_cred
= kcred
;
238 ucredsize
= UCRED_SIZE
;
240 mutex_init(&ephemeral_zone_mutex
, NULL
, MUTEX_DEFAULT
, NULL
);
241 zone_key_create(&ephemeral_zone_key
, NULL
, NULL
, destroy_ephemeral_zsd
);
245 * Allocate (nearly) uninitialized cred_t.
248 cralloc_flags(int flgs
)
250 cred_t
*cr
= kmem_cache_alloc(cred_cache
, flgs
);
255 cr
->cr_ref
= 1; /* So we can crfree() */
267 return (cralloc_flags(KM_SLEEP
));
271 * As cralloc but prepared for ksid change (if appropriate).
276 cred_t
*cr
= cralloc();
278 cr
->cr_ksid
= kcrsid_alloc();
283 * Allocate a initialized cred structure and crhold() it.
284 * Initialized means: all ids 0, group count 0, L=Full, E=P=I=I0
289 cred_t
*cr
= kmem_cache_alloc(cred_cache
, KM_SLEEP
);
291 bcopy(kcred
, cr
, crsize
);
293 zone_cred_hold(cr
->cr_zone
);
295 label_hold(cr
->cr_label
);
296 ASSERT(cr
->cr_klpd
== NULL
);
297 ASSERT(cr
->cr_grps
== NULL
);
302 * Broadcast the cred to all the threads in the process.
303 * The current thread's credentials can be set right away, but other
304 * threads must wait until the start of the next system call or trap.
305 * This avoids changing the cred in the middle of a system call.
307 * The cred has already been held for the process and the thread (2 holds),
310 * p->p_crlock shouldn't be held here, since p_lock must be acquired.
313 crset(proc_t
*p
, cred_t
*cr
)
319 ASSERT(p
== curproc
); /* assumes p_lwpcnt can't change */
322 * DTrace accesses t_cred in probe context. t_cred must always be
323 * either NULL, or point to a valid, allocated cred structure.
327 t
->t_cred
= cr
; /* the cred is held by caller for this thread */
328 crfree(oldcr
); /* free the old cred for the thread */
331 * Broadcast to other threads, if any.
333 if (p
->p_lwpcnt
> 1) {
334 mutex_enter(&p
->p_lock
); /* to keep thread list safe */
336 for (t
= first
->t_forw
; t
!= first
; t
= t
->t_forw
)
337 t
->t_pre_sys
= 1; /* so syscall will get new cred */
338 mutex_exit(&p
->p_lock
);
343 * Put a hold on a cred structure.
348 ASSERT(cr
->cr_ref
!= 0xdeadbeef && cr
->cr_ref
!= 0);
349 atomic_inc_32(&cr
->cr_ref
);
353 * Release previous hold on a cred structure. Free it if refcnt == 0.
354 * If cred uses label different from zone label, free it.
359 ASSERT(cr
->cr_ref
!= 0xdeadbeef && cr
->cr_ref
!= 0);
360 if (atomic_dec_32_nv(&cr
->cr_ref
) == 0) {
363 label_rele(cr
->cr_label
);
365 crklpd_rele(cr
->cr_klpd
);
367 zone_cred_rele(cr
->cr_zone
);
369 kcrsid_rele(cr
->cr_ksid
);
371 crgrprele(cr
->cr_grps
);
373 kmem_cache_free(cred_cache
, cr
);
378 * Copy a cred structure to a new one and free the old one.
379 * The new cred will have two references. One for the calling process,
380 * and one for the thread.
388 bcopy(cr
, newcr
, crsize
);
390 zone_cred_hold(newcr
->cr_zone
);
392 label_hold(newcr
->cr_label
);
394 kcrsid_hold(newcr
->cr_ksid
);
396 crklpd_hold(newcr
->cr_klpd
);
398 crgrphold(newcr
->cr_grps
);
400 newcr
->cr_ref
= 2; /* caller gets two references */
405 * Copy a cred structure to a new one and free the old one.
406 * The new cred will have two references. One for the calling process,
407 * and one for the thread.
408 * This variation on crcopy uses a pre-allocated structure for the
412 crcopy_to(cred_t
*oldcr
, cred_t
*newcr
)
414 credsid_t
*nkcr
= newcr
->cr_ksid
;
416 bcopy(oldcr
, newcr
, crsize
);
418 zone_cred_hold(newcr
->cr_zone
);
420 label_hold(newcr
->cr_label
);
422 crklpd_hold(newcr
->cr_klpd
);
424 crgrphold(newcr
->cr_grps
);
426 newcr
->cr_ksid
= nkcr
;
427 kcrsidcopy_to(oldcr
->cr_ksid
, newcr
->cr_ksid
);
428 } else if (newcr
->cr_ksid
)
429 kcrsid_hold(newcr
->cr_ksid
);
431 newcr
->cr_ref
= 2; /* caller gets two references */
435 * Dup a cred struct to a new held one.
436 * The old cred is not freed.
439 crdup_flags(const cred_t
*cr
, int flgs
)
443 newcr
= cralloc_flags(flgs
);
448 bcopy(cr
, newcr
, crsize
);
450 zone_cred_hold(newcr
->cr_zone
);
452 label_hold(newcr
->cr_label
);
454 crklpd_hold(newcr
->cr_klpd
);
456 kcrsid_hold(newcr
->cr_ksid
);
458 crgrphold(newcr
->cr_grps
);
466 return (crdup_flags(cr
, KM_SLEEP
));
470 * Dup a cred struct to a new held one.
471 * The old cred is not freed.
472 * This variation on crdup uses a pre-allocated structure for the
476 crdup_to(cred_t
*oldcr
, cred_t
*newcr
)
478 credsid_t
*nkcr
= newcr
->cr_ksid
;
480 bcopy(oldcr
, newcr
, crsize
);
482 zone_cred_hold(newcr
->cr_zone
);
484 label_hold(newcr
->cr_label
);
486 crklpd_hold(newcr
->cr_klpd
);
488 crgrphold(newcr
->cr_grps
);
490 newcr
->cr_ksid
= nkcr
;
491 kcrsidcopy_to(oldcr
->cr_ksid
, newcr
->cr_ksid
);
492 } else if (newcr
->cr_ksid
)
493 kcrsid_hold(newcr
->cr_ksid
);
498 * Return the (held) credentials for the current running process.
506 p
= ttoproc(curthread
);
507 mutex_enter(&p
->p_crlock
);
508 crhold(cr
= p
->p_cred
);
509 mutex_exit(&p
->p_crlock
);
514 * Backward compatibility check for suser().
515 * Accounting flag is now set in the policy functions; auditing is
516 * done through use of privilege in the audit trail.
521 return (PRIV_POLICY(cr
, PRIV_SYS_SUSER_COMPAT
, B_FALSE
, EPERM
, NULL
)
526 * Determine whether the supplied group id is a member of the group
527 * described by the supplied credentials.
530 groupmember(gid_t gid
, const cred_t
*cr
)
532 if (gid
== cr
->cr_gid
)
534 return (supgroupmember(gid
, cr
));
538 * As groupmember but only check against the supplemental groups.
541 supgroupmember(gid_t gid
, const cred_t
*cr
)
544 credgrp_t
*grps
= cr
->cr_grps
;
545 const gid_t
*gp
, *endgp
;
550 /* For a small number of groups, use sequentials search. */
551 if (grps
->crg_ngroups
<= BIN_GROUP_SEARCH_CUTOFF
) {
552 endgp
= &grps
->crg_groups
[grps
->crg_ngroups
];
553 for (gp
= grps
->crg_groups
; gp
< endgp
; gp
++)
559 /* We use binary search when we have many groups. */
561 hi
= grps
->crg_ngroups
- 1;
562 gp
= grps
->crg_groups
;
565 int m
= (lo
+ hi
) / 2;
569 else if (gid
< gp
[m
])
579 * This function is called to check whether the credentials set
580 * "scrp" has permission to act on credentials set "tcrp". It enforces the
581 * permission requirements needed to send a signal to a process.
582 * The same requirements are imposed by other system calls, however.
585 * (1) if the credentials are the same, the check succeeds
586 * (2) if the zone ids don't match, and scrp is not in the global zone or
587 * does not have the PRIV_PROC_ZONE privilege, the check fails
588 * (3) if the real or effective user id of scrp matches the real or saved
589 * user id of tcrp or scrp has the PRIV_PROC_OWNER privilege, the check
591 * (4) otherwise, the check fails
594 hasprocperm(const cred_t
*tcrp
, const cred_t
*scrp
)
598 if (scrp
->cr_zone
!= tcrp
->cr_zone
&&
599 (scrp
->cr_zone
!= global_zone
||
600 secpolicy_proc_zone(scrp
) != 0))
602 if (scrp
->cr_uid
== tcrp
->cr_ruid
||
603 scrp
->cr_ruid
== tcrp
->cr_ruid
||
604 scrp
->cr_uid
== tcrp
->cr_suid
||
605 scrp
->cr_ruid
== tcrp
->cr_suid
||
606 !PRIV_POLICY(scrp
, PRIV_PROC_OWNER
, B_FALSE
, EPERM
, "hasprocperm"))
612 * This interface replaces hasprocperm; it works like hasprocperm but
613 * additionally returns success if the proc_t's match
614 * It is the preferred interface for most uses.
615 * And it will acquire p_crlock itself, so it assert's that it shouldn't
619 prochasprocperm(proc_t
*tp
, proc_t
*sp
, const cred_t
*scrp
)
624 ASSERT(MUTEX_NOT_HELD(&tp
->p_crlock
));
629 if (tp
->p_sessp
!= sp
->p_sessp
&& secpolicy_basic_proc(scrp
) != 0)
632 mutex_enter(&tp
->p_crlock
);
633 crhold(tcrp
= tp
->p_cred
);
634 mutex_exit(&tp
->p_crlock
);
635 rets
= hasprocperm(tcrp
, scrp
);
642 * This routine is used to compare two credentials to determine if
643 * they refer to the same "user". If the pointers are equal, then
644 * they must refer to the same user. Otherwise, the contents of
645 * the credentials are compared to see whether they are equivalent.
647 * This routine returns 0 if the credentials refer to the same user,
651 crcmp(const cred_t
*cr1
, const cred_t
*cr2
)
653 credgrp_t
*grp1
, *grp2
;
658 if (cr1
->cr_uid
== cr2
->cr_uid
&&
659 cr1
->cr_gid
== cr2
->cr_gid
&&
660 cr1
->cr_ruid
== cr2
->cr_ruid
&&
661 cr1
->cr_rgid
== cr2
->cr_rgid
&&
662 cr1
->cr_zone
== cr2
->cr_zone
&&
663 ((grp1
= cr1
->cr_grps
) == (grp2
= cr2
->cr_grps
) ||
664 (grp1
!= NULL
&& grp2
!= NULL
&&
665 grp1
->crg_ngroups
== grp2
->crg_ngroups
&&
666 bcmp(grp1
->crg_groups
, grp2
->crg_groups
,
667 grp1
->crg_ngroups
* sizeof (gid_t
)) == 0))) {
668 return (!priv_isequalset(&CR_OEPRIV(cr1
), &CR_OEPRIV(cr2
)));
674 * Read access functions to cred_t.
677 crgetuid(const cred_t
*cr
)
683 crgetruid(const cred_t
*cr
)
685 return (cr
->cr_ruid
);
689 crgetsuid(const cred_t
*cr
)
691 return (cr
->cr_suid
);
695 crgetgid(const cred_t
*cr
)
701 crgetrgid(const cred_t
*cr
)
703 return (cr
->cr_rgid
);
707 crgetsgid(const cred_t
*cr
)
709 return (cr
->cr_sgid
);
712 const auditinfo_addr_t
*
713 crgetauinfo(const cred_t
*cr
)
715 return ((const auditinfo_addr_t
*)CR_AUINFO(cr
));
719 crgetauinfo_modifiable(cred_t
*cr
)
721 return (CR_AUINFO(cr
));
725 crgetzoneid(const cred_t
*cr
)
727 return (cr
->cr_zone
== NULL
?
728 (cr
->cr_uid
== -1 ? (zoneid_t
)-1 : GLOBAL_ZONEID
) :
729 cr
->cr_zone
->zone_id
);
733 crgetprojid(const cred_t
*cr
)
735 return (cr
->cr_projid
);
739 crgetzone(const cred_t
*cr
)
741 return (cr
->cr_zone
);
745 crgetlabel(const cred_t
*cr
)
747 return (cr
->cr_label
?
749 (cr
->cr_zone
? cr
->cr_zone
->zone_slabel
: NULL
));
753 crisremote(const cred_t
*cr
)
755 return (REMOTE_PEER_CRED(cr
));
758 #define BADUID(x, zn) ((x) != -1 && !VALID_UID((x), (zn)))
759 #define BADGID(x, zn) ((x) != -1 && !VALID_GID((x), (zn)))
762 crsetresuid(cred_t
*cr
, uid_t r
, uid_t e
, uid_t s
)
764 zone_t
*zone
= crgetzone(cr
);
766 ASSERT(cr
->cr_ref
<= 2);
768 if (BADUID(r
, zone
) || BADUID(e
, zone
) || BADUID(s
, zone
))
782 crsetresgid(cred_t
*cr
, gid_t r
, gid_t e
, gid_t s
)
784 zone_t
*zone
= crgetzone(cr
);
786 ASSERT(cr
->cr_ref
<= 2);
788 if (BADGID(r
, zone
) || BADGID(e
, zone
) || BADGID(s
, zone
))
802 crsetugid(cred_t
*cr
, uid_t uid
, gid_t gid
)
804 zone_t
*zone
= crgetzone(cr
);
806 ASSERT(cr
->cr_ref
<= 2);
808 if (!VALID_UID(uid
, zone
) || !VALID_GID(gid
, zone
))
811 cr
->cr_uid
= cr
->cr_ruid
= cr
->cr_suid
= uid
;
812 cr
->cr_gid
= cr
->cr_rgid
= cr
->cr_sgid
= gid
;
818 gidcmp(const void *v1
, const void *v2
)
820 gid_t g1
= *(gid_t
*)v1
;
821 gid_t g2
= *(gid_t
*)v2
;
832 crsetgroups(cred_t
*cr
, int n
, gid_t
*grp
)
834 ASSERT(cr
->cr_ref
<= 2);
836 if (n
> ngroups_max
|| n
< 0)
839 if (cr
->cr_grps
!= NULL
)
840 crgrprele(cr
->cr_grps
);
843 cr
->cr_grps
= kmem_alloc(CREDGRPSZ(n
), KM_SLEEP
);
844 bcopy(grp
, cr
->cr_grps
->crg_groups
, n
* sizeof (gid_t
));
845 cr
->cr_grps
->crg_ref
= 1;
846 cr
->cr_grps
->crg_ngroups
= n
;
847 qsort(cr
->cr_grps
->crg_groups
, n
, sizeof (gid_t
), gidcmp
);
856 crsetprojid(cred_t
*cr
, projid_t projid
)
858 ASSERT(projid
>= 0 && projid
<= MAXPROJID
);
859 cr
->cr_projid
= projid
;
863 * This routine returns the pointer to the first element of the crg_groups
864 * array. It can move around in an implementation defined way.
865 * Note that when we have no grouplist, we return one element but the
866 * caller should never reference it.
869 crgetgroups(const cred_t
*cr
)
871 return (cr
->cr_grps
== NULL
? &cr
->cr_gid
: cr
->cr_grps
->crg_groups
);
875 crgetngroups(const cred_t
*cr
)
877 return (cr
->cr_grps
== NULL
? 0 : cr
->cr_grps
->crg_ngroups
);
881 cred2prcred(const cred_t
*cr
, prcred_t
*pcrp
)
883 pcrp
->pr_euid
= cr
->cr_uid
;
884 pcrp
->pr_ruid
= cr
->cr_ruid
;
885 pcrp
->pr_suid
= cr
->cr_suid
;
886 pcrp
->pr_egid
= cr
->cr_gid
;
887 pcrp
->pr_rgid
= cr
->cr_rgid
;
888 pcrp
->pr_sgid
= cr
->cr_sgid
;
889 pcrp
->pr_groups
[0] = 0; /* in case ngroups == 0 */
890 pcrp
->pr_ngroups
= cr
->cr_grps
== NULL
? 0 : cr
->cr_grps
->crg_ngroups
;
892 if (pcrp
->pr_ngroups
!= 0)
893 bcopy(cr
->cr_grps
->crg_groups
, pcrp
->pr_groups
,
894 sizeof (gid_t
) * pcrp
->pr_ngroups
);
898 cred2ucaud(const cred_t
*cr
, auditinfo64_addr_t
*ainfo
, const cred_t
*rcr
)
900 auditinfo_addr_t
*ai
;
903 if (secpolicy_audit_getattr(rcr
, B_TRUE
) != 0)
906 ai
= CR_AUINFO(cr
); /* caller makes sure this is non-NULL */
909 ainfo
->ai_auid
= ai
->ai_auid
;
910 ainfo
->ai_mask
= ai
->ai_mask
;
911 ainfo
->ai_asid
= ai
->ai_asid
;
913 ainfo
->ai_termid
.at_type
= tid
.at_type
;
914 bcopy(&tid
.at_addr
, &ainfo
->ai_termid
.at_addr
, 4 * sizeof (uint_t
));
916 ainfo
->ai_termid
.at_port
.at_major
= (uint32_t)getmajor(tid
.at_port
);
917 ainfo
->ai_termid
.at_port
.at_minor
= (uint32_t)getminor(tid
.at_port
);
923 cred2uclabel(const cred_t
*cr
, bslabel_t
*labelp
)
927 if ((tslp
= crgetlabel(cr
)) != NULL
)
928 bcopy(&tslp
->tsl_label
, labelp
, sizeof (bslabel_t
));
932 * Convert a credential into a "ucred". Allow the caller to specify
933 * and aligned buffer, e.g., in an mblk, so we don't have to allocate
934 * memory and copy it twice.
936 * This function may call cred2ucaud(), which calls CRED(). Since this
937 * can be called from an interrupt thread, receiver's cred (rcr) is needed
938 * to determine whether audit info should be included.
941 cred2ucred(const cred_t
*cr
, pid_t pid
, void *buf
, const cred_t
*rcr
)
944 uint32_t realsz
= ucredminsize(cr
);
945 ts_label_t
*tslp
= is_system_labeled() ? crgetlabel(cr
) : NULL
;
947 /* The structure isn't always completely filled in, so zero it */
949 uc
= kmem_zalloc(realsz
, KM_SLEEP
);
954 uc
->uc_size
= realsz
;
956 uc
->uc_projid
= cr
->cr_projid
;
957 uc
->uc_zoneid
= crgetzoneid(cr
);
959 if (REMOTE_PEER_CRED(cr
)) {
961 * Other than label, the rest of cred info about a
962 * remote peer isn't available. Copy the label directly
963 * after the header where we generally copy the prcred.
964 * That's why we use sizeof (struct ucred_s). The other
965 * offset fields are initialized to 0.
967 uc
->uc_labeloff
= tslp
== NULL
? 0 : sizeof (struct ucred_s
);
969 uc
->uc_credoff
= UCRED_CRED_OFF
;
970 uc
->uc_privoff
= UCRED_PRIV_OFF
;
971 uc
->uc_audoff
= UCRED_AUD_OFF
;
972 uc
->uc_labeloff
= tslp
== NULL
? 0 : UCRED_LABEL_OFF
;
974 cred2prcred(cr
, UCCRED(uc
));
975 cred2prpriv(cr
, UCPRIV(uc
));
977 if (audoff
== 0 || cred2ucaud(cr
, UCAUD(uc
), rcr
) != 0)
981 bcopy(&tslp
->tsl_label
, UCLABEL(uc
), sizeof (bslabel_t
));
987 * Don't allocate the non-needed group entries. Note: this function
988 * must match the code in cred2ucred; they must agree about the
989 * minimal size of the ucred.
992 ucredminsize(const cred_t
*cr
)
999 if (REMOTE_PEER_CRED(cr
)) {
1000 if (is_system_labeled())
1001 return (sizeof (struct ucred_s
) + sizeof (bslabel_t
));
1003 return (sizeof (struct ucred_s
));
1006 if (cr
->cr_grps
== NULL
)
1007 ndiff
= ngroups_max
- 1; /* Needs one for prcred_t */
1009 ndiff
= ngroups_max
- cr
->cr_grps
->crg_ngroups
;
1011 return (ucredsize
- ndiff
* sizeof (gid_t
));
1015 * Get the "ucred" of a process.
1018 pgetucred(proc_t
*p
)
1023 mutex_enter(&p
->p_crlock
);
1026 mutex_exit(&p
->p_crlock
);
1028 uc
= cred2ucred(cr
, p
->p_pid
, NULL
, CRED());
1035 * If the reply status is NFSERR_EACCES, it may be because we are
1036 * root (no root net access). Check the real uid, if it isn't root
1037 * make that the uid instead and retry the call.
1038 * Private interface for NFS.
1041 crnetadjust(cred_t
*cr
)
1043 if (cr
->cr_uid
== 0 && cr
->cr_ruid
!= 0) {
1045 cr
->cr_uid
= cr
->cr_ruid
;
1052 * The reference count is of interest when you want to check
1053 * whether it is ok to modify the credential in place.
1056 crgetref(const cred_t
*cr
)
1058 return (cr
->cr_ref
);
1062 get_c2audit_load(void)
1064 static int gotit
= 0;
1065 static int c2audit_load
;
1068 return (c2audit_load
);
1069 c2audit_load
= 1; /* set default value once */
1070 if (mod_sysctl(SYS_CHECK_EXCLUDE
, "c2audit") != 0)
1074 return (c2audit_load
);
1078 get_audit_ucrsize(void)
1080 return (get_c2audit_load() ? sizeof (auditinfo64_addr_t
) : 0);
1084 * Set zone pointer in credential to indicated value. First adds a
1085 * hold for the new zone, then drops the hold on previous zone (if any).
1086 * This is done in this order in case the old and new zones are the
1090 crsetzone(cred_t
*cr
, zone_t
*zptr
)
1092 zone_t
*oldzptr
= cr
->cr_zone
;
1094 ASSERT(cr
!= kcred
);
1095 ASSERT(cr
->cr_ref
<= 2);
1097 zone_cred_hold(zptr
);
1099 zone_cred_rele(oldzptr
);
1103 * Create a new cred based on the supplied label
1106 newcred_from_bslabel(bslabel_t
*blabel
, uint32_t doi
, int flags
)
1108 ts_label_t
*lbl
= labelalloc(blabel
, doi
, flags
);
1112 if ((cr
= crdup_flags(dummycr
, flags
)) != NULL
) {
1123 * Derive a new cred from the existing cred, but with a different label.
1124 * To be used when a cred is being shared, but the label needs to be changed
1125 * by a caller without affecting other users
1128 copycred_from_tslabel(const cred_t
*cr
, ts_label_t
*label
, int flags
)
1130 cred_t
*newcr
= NULL
;
1132 if ((newcr
= crdup_flags(cr
, flags
)) != NULL
) {
1133 if (newcr
->cr_label
!= NULL
)
1134 label_rele(newcr
->cr_label
);
1136 newcr
->cr_label
= label
;
1143 * Derive a new cred from the existing cred, but with a different label.
1146 copycred_from_bslabel(const cred_t
*cr
, bslabel_t
*blabel
,
1147 uint32_t doi
, int flags
)
1149 ts_label_t
*lbl
= labelalloc(blabel
, doi
, flags
);
1150 cred_t
*newcr
= NULL
;
1153 newcr
= copycred_from_tslabel(cr
, lbl
, flags
);
1161 * This function returns a pointer to the kcred-equivalent in the current zone.
1168 if ((zone
= CRED()->cr_zone
) != NULL
)
1169 return (zone
->zone_kcred
);
1175 valid_ephemeral_uid(zone_t
*zone
, uid_t id
)
1177 ephemeral_zsd_t
*eph_zsd
;
1178 if (id
<= IDMAP_WK__MAX_UID
)
1181 eph_zsd
= get_ephemeral_zsd(zone
);
1182 ASSERT(eph_zsd
!= NULL
);
1184 return (id
> eph_zsd
->min_uid
&& id
<= eph_zsd
->last_uid
);
1188 valid_ephemeral_gid(zone_t
*zone
, gid_t id
)
1190 ephemeral_zsd_t
*eph_zsd
;
1191 if (id
<= IDMAP_WK__MAX_GID
)
1194 eph_zsd
= get_ephemeral_zsd(zone
);
1195 ASSERT(eph_zsd
!= NULL
);
1197 return (id
> eph_zsd
->min_gid
&& id
<= eph_zsd
->last_gid
);
1201 eph_uid_alloc(zone_t
*zone
, int flags
, uid_t
*start
, int count
)
1203 ephemeral_zsd_t
*eph_zsd
= get_ephemeral_zsd(zone
);
1205 ASSERT(eph_zsd
!= NULL
);
1207 mutex_enter(&eph_zsd
->eph_lock
);
1209 /* Test for unsigned integer wrap around */
1210 if (eph_zsd
->last_uid
+ count
< eph_zsd
->last_uid
) {
1211 mutex_exit(&eph_zsd
->eph_lock
);
1215 /* first call or idmap crashed and state corrupted */
1217 eph_zsd
->min_uid
= eph_zsd
->last_uid
;
1220 *start
= eph_zsd
->last_uid
+ 1;
1221 atomic_add_32(&eph_zsd
->last_uid
, count
);
1222 mutex_exit(&eph_zsd
->eph_lock
);
1227 eph_gid_alloc(zone_t
*zone
, int flags
, gid_t
*start
, int count
)
1229 ephemeral_zsd_t
*eph_zsd
= get_ephemeral_zsd(zone
);
1231 ASSERT(eph_zsd
!= NULL
);
1233 mutex_enter(&eph_zsd
->eph_lock
);
1235 /* Test for unsigned integer wrap around */
1236 if (eph_zsd
->last_gid
+ count
< eph_zsd
->last_gid
) {
1237 mutex_exit(&eph_zsd
->eph_lock
);
1241 /* first call or idmap crashed and state corrupted */
1243 eph_zsd
->min_gid
= eph_zsd
->last_gid
;
1246 *start
= eph_zsd
->last_gid
+ 1;
1247 atomic_add_32(&eph_zsd
->last_gid
, count
);
1248 mutex_exit(&eph_zsd
->eph_lock
);
1253 * IMPORTANT.The two functions get_ephemeral_data() and set_ephemeral_data()
1254 * are project private functions that are for use of the test system only and
1255 * are not to be used for other purposes.
1259 get_ephemeral_data(zone_t
*zone
, uid_t
*min_uid
, uid_t
*last_uid
,
1260 gid_t
*min_gid
, gid_t
*last_gid
)
1262 ephemeral_zsd_t
*eph_zsd
= get_ephemeral_zsd(zone
);
1264 ASSERT(eph_zsd
!= NULL
);
1266 mutex_enter(&eph_zsd
->eph_lock
);
1268 *min_uid
= eph_zsd
->min_uid
;
1269 *last_uid
= eph_zsd
->last_uid
;
1270 *min_gid
= eph_zsd
->min_gid
;
1271 *last_gid
= eph_zsd
->last_gid
;
1273 mutex_exit(&eph_zsd
->eph_lock
);
1278 set_ephemeral_data(zone_t
*zone
, uid_t min_uid
, uid_t last_uid
,
1279 gid_t min_gid
, gid_t last_gid
)
1281 ephemeral_zsd_t
*eph_zsd
= get_ephemeral_zsd(zone
);
1283 ASSERT(eph_zsd
!= NULL
);
1285 mutex_enter(&eph_zsd
->eph_lock
);
1288 eph_zsd
->min_uid
= min_uid
;
1290 eph_zsd
->last_uid
= last_uid
;
1292 eph_zsd
->min_gid
= min_gid
;
1294 eph_zsd
->last_gid
= last_gid
;
1296 mutex_exit(&eph_zsd
->eph_lock
);
1300 * If the credential user SID or group SID is mapped to an ephemeral
1301 * ID, map the credential to nobody.
1304 crgetmapped(const cred_t
*cr
)
1306 ephemeral_zsd_t
*eph_zsd
;
1308 * Someone incorrectly passed a NULL cred to a vnode operation
1309 * either on purpose or by calling CRED() in interrupt context.
1314 if (cr
->cr_ksid
!= NULL
) {
1315 if (cr
->cr_ksid
->kr_sidx
[KSID_USER
].ks_id
> MAXUID
) {
1316 eph_zsd
= get_ephemeral_zsd(crgetzone(cr
));
1317 return (eph_zsd
->eph_nobody
);
1320 if (cr
->cr_ksid
->kr_sidx
[KSID_GROUP
].ks_id
> MAXUID
) {
1321 eph_zsd
= get_ephemeral_zsd(crgetzone(cr
));
1322 return (eph_zsd
->eph_nobody
);
1326 return ((cred_t
*)cr
);
1329 /* index should be in range for a ksidindex_t */
1331 crsetsid(cred_t
*cr
, ksid_t
*ksp
, int index
)
1333 ASSERT(cr
->cr_ref
<= 2);
1334 ASSERT(index
>= 0 && index
< KSID_COUNT
);
1335 if (cr
->cr_ksid
== NULL
&& ksp
== NULL
)
1337 cr
->cr_ksid
= kcrsid_setsid(cr
->cr_ksid
, ksp
, index
);
1341 crsetsidlist(cred_t
*cr
, ksidlist_t
*ksl
)
1343 ASSERT(cr
->cr_ref
<= 2);
1344 if (cr
->cr_ksid
== NULL
&& ksl
== NULL
)
1346 cr
->cr_ksid
= kcrsid_setsidlist(cr
->cr_ksid
, ksl
);
1350 crgetsid(const cred_t
*cr
, int i
)
1352 ASSERT(i
>= 0 && i
< KSID_COUNT
);
1353 if (cr
->cr_ksid
!= NULL
&& cr
->cr_ksid
->kr_sidx
[i
].ks_domain
)
1354 return ((ksid_t
*)&cr
->cr_ksid
->kr_sidx
[i
]);
1359 crgetsidlist(const cred_t
*cr
)
1361 if (cr
->cr_ksid
!= NULL
)
1362 return (cr
->cr_ksid
->kr_sidlist
);
1367 * Interface to set the effective and permitted privileges for
1368 * a credential; this interface does no security checks and is
1369 * intended for kernel (file)servers creating credentials with
1370 * specific privileges.
1373 crsetpriv(cred_t
*cr
, ...)
1378 ASSERT(cr
->cr_ref
<= 2);
1384 while ((privnm
= va_arg(ap
, const char *)) != NULL
) {
1385 int priv
= priv_getbyname(privnm
, 0);
1389 priv_addset(&CR_PPRIV(cr
), priv
);
1390 priv_addset(&CR_EPRIV(cr
), priv
);
1398 * Interface to effectively set the PRIV_ALL for
1399 * a credential; this interface does no security checks and is
1400 * intended for kernel (file)servers to extend the user credentials
1401 * to be ALL, like either kcred or zcred.
1404 crset_zone_privall(cred_t
*cr
)
1406 zone_t
*zone
= crgetzone(cr
);
1408 priv_fillset(&CR_LPRIV(cr
));
1409 CR_EPRIV(cr
) = CR_PPRIV(cr
) = CR_IPRIV(cr
) = CR_LPRIV(cr
);
1410 priv_intersect(zone
->zone_privset
, &CR_LPRIV(cr
));
1411 priv_intersect(zone
->zone_privset
, &CR_EPRIV(cr
));
1412 priv_intersect(zone
->zone_privset
, &CR_IPRIV(cr
));
1413 priv_intersect(zone
->zone_privset
, &CR_PPRIV(cr
));
1417 crgetcrklpd(const cred_t
*cr
)
1419 return (cr
->cr_klpd
);
1423 crsetcrklpd(cred_t
*cr
, struct credklpd
*crklpd
)
1425 ASSERT(cr
->cr_ref
<= 2);
1427 if (cr
->cr_klpd
!= NULL
)
1428 crklpd_rele(cr
->cr_klpd
);
1429 cr
->cr_klpd
= crklpd
;
1433 crgrpcopyin(int n
, gid_t
*gidset
)
1436 size_t sz
= CREDGRPSZ(n
);
1440 mem
= kmem_alloc(sz
, KM_SLEEP
);
1442 if (copyin(gidset
, mem
->crg_groups
, sizeof (gid_t
) * n
)) {
1447 mem
->crg_ngroups
= n
;
1448 qsort(mem
->crg_groups
, n
, sizeof (gid_t
), gidcmp
);
1453 crgetggroups(const credgrp_t
*grps
)
1455 return (grps
->crg_groups
);
1459 crsetcredgrp(cred_t
*cr
, credgrp_t
*grps
)
1461 ASSERT(cr
->cr_ref
<= 2);
1463 if (cr
->cr_grps
!= NULL
)
1464 crgrprele(cr
->cr_grps
);
1470 crgrprele(credgrp_t
*grps
)
1472 if (atomic_dec_32_nv(&grps
->crg_ref
) == 0)
1473 kmem_free(grps
, CREDGRPSZ(grps
->crg_ngroups
));
1477 crgrphold(credgrp_t
*grps
)
1479 atomic_inc_32(&grps
->crg_ref
);