]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man9/ucred.9
Merge ^/vendor/llvm-project/release-10.x up to its last change (upstream
[FreeBSD/FreeBSD.git] / share / man / man9 / ucred.9
1 .\"
2 .\" Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice(s), this list of conditions and the following disclaimer as
9 .\"    the first lines of this file unmodified other than the possible
10 .\"    addition of one or more copyright notices.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice(s), this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
16 .\" EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 .\" DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
19 .\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 .\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 .\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22 .\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
25 .\" DAMAGE.
26 .\"
27 .\" $FreeBSD$
28 .\"
29 .Dd January 23, 2019
30 .Dt UCRED 9
31 .Os
32 .Sh NAME
33 .Nm ucred ,
34 .Nm crget ,
35 .Nm crhold ,
36 .Nm crfree ,
37 .Nm crcopy ,
38 .Nm crdup ,
39 .Nm cru2x
40 .Nd "functions related to user credentials"
41 .Sh SYNOPSIS
42 .In sys/param.h
43 .In sys/ucred.h
44 .Ft "struct ucred *"
45 .Fn crget void
46 .Ft "struct ucred *"
47 .Fn crhold "struct ucred *cr"
48 .Ft void
49 .Fn crfree "struct ucred *cr"
50 .Ft void
51 .Fn crcopy "struct ucred *dest" "struct ucred *src"
52 .Ft "struct ucred *"
53 .Fn crcopysafe "struct proc *p" "struct ucred *cr"
54 .Ft "struct ucred *"
55 .Fn crdup "struct ucred *cr"
56 .Ft void
57 .Fn crsetgroups "struct ucred *cr" "int ngrp" "gid_t *groups"
58 .Ft void
59 .Fn cru2x "struct ucred *cr" "struct xucred *xcr"
60 .Sh DESCRIPTION
61 The
62 .Nm
63 family of functions is used to manage user credential structures
64 .Pq Vt "struct ucred"
65 within the kernel.
66 .Pp
67 The
68 .Fn crget
69 function allocates memory
70 for a new structure, sets its reference count to 1, and
71 initializes its lock.
72 .Pp
73 The
74 .Fn crhold
75 function increases the reference count on the credential.
76 .Pp
77 The
78 .Fn crfree
79 function decreases the reference count on the credential.
80 If the count drops to 0, the storage for the structure is freed.
81 .Pp
82 The
83 .Fn crcopy
84 function copies the contents of the source (template)
85 credential into the destination template.
86 The
87 .Vt uidinfo
88 structure within the destination is referenced
89 by calling
90 .Xr uihold 9 .
91 .Pp
92 The
93 .Fn crcopysafe
94 function copies the current credential associated with the process
95 .Fa p
96 into the newly allocated credential
97 .Fa cr .
98 The process lock on
99 .Fa p
100 must be held and will be dropped and reacquired as needed to allocate
101 group storage space in
102 .Fa cr .
103 .Pp
104 The
105 .Fn crdup
106 function allocates memory for a new structure and copies the
107 contents of
108 .Fa cr
109 into it.
110 The actual copying is performed by
111 .Fn crcopy .
112 .Pp
113 The
114 .Fn crsetgroups
115 function sets the
116 .Va cr_groups
117 and
118 .Va cr_ngroups
119 variables and allocates space as needed.
120 It also truncates the group list to the current maximum number of
121 groups.
122 No other mechanism should be used to modify the
123 .Va cr_groups
124 array except for updating the primary group via assignment to
125 .Va cr_groups[0] .
126 .Pp
127 The
128 .Fn cru2x
129 function converts a
130 .Vt ucred
131 structure to an
132 .Vt xucred
133 structure.
134 That is,
135 it copies data from
136 .Fa cr
137 to
138 .Fa xcr ;
139 it ignores fields in the former that are not present in the latter
140 (e.g.,
141 .Va cr_uidinfo ) ,
142 and appropriately sets fields in the latter that are not present in
143 the former
144 (e.g.,
145 .Va cr_version ) .
146 .Pp
147 .Sh RETURN VALUES
148 .Fn crget ,
149 .Fn crhold ,
150 .Fn crdup ,
151 and
152 .Fn crcopysafe
153 all return a pointer to a
154 .Vt ucred
155 structure.
156 .Sh USAGE NOTES
157 As of
158 .Fx 5.0 ,
159 the
160 .Vt ucred
161 structure contains extensible fields.
162 This means that the correct protocol must always be followed to create
163 a fresh and writable credential structure: new credentials must always
164 be derived from existing credentials using
165 .Fn crget ,
166 .Fn crcopy ,
167 and
168 .Fn crcopysafe .
169 .Pp
170 In the common case, credentials required for access control decisions are
171 used in a read-only manner.
172 In these circumstances, the thread credential
173 .Va td_ucred
174 should be used, as it requires no locking to access safely, and remains stable
175 for the duration of the call even in the face of a multi-threaded
176 application changing the process credentials from another thread.
177 .Pp
178 During a process credential update, the process lock must be held across
179 check and update, to prevent race conditions.
180 The process credential,
181 .Va td->td_proc->p_ucred ,
182 must be used both for check and update.
183 If a process credential is updated during a system call and checks against
184 the thread credential are to be made later during the same system call,
185 the thread credential must also be refreshed from the process credential
186 so as to prevent use of a stale value.
187 To avoid this scenario, it is recommended that system calls updating the
188 process credential be designed to avoid other authorization functions.
189 .Pp
190 If temporarily elevated privileges are required for a thread, the thread
191 credential can by replaced for the duration of an activity, or for
192 the remainder of the system call.
193 However, as a thread credential is often shared, appropriate care should be
194 taken to make sure modifications are made to a writable credential
195 through the use of
196 .Fn crget
197 and
198 .Fn crcopy .
199 .Pp
200 Caution should be exercised when checking authorization for a thread or
201 process perform an operation on another thread or process.
202 As a result of temporary elevation, the target thread credential should
203 .Em never
204 be used as the target credential in an access control decision: the process
205 credential associated with the thread,
206 .Va td->td_proc->p_ucred ,
207 should be used instead.
208 For example,
209 .Xr p_candebug 9
210 accepts a target process, not a target thread, for access control purposes.
211 .Sh SEE ALSO
212 .Xr uihold 9
213 .Sh AUTHORS
214 This manual page was written by
215 .An Chad David Aq Mt davidc@acns.ab.ca .