|
NAMEucred , crget ,
crhold , crfree ,
crcopy , crdup ,
cru2x —
functions related to user credentials
SYNOPSIS#include <sys/param.h>
#include <sys/ucred.h>
struct ucred *
struct ucred *
void
void
struct ucred *
struct ucred *
void
void
DESCRIPTIONTheucred family of functions is used to manage user
credential structures (struct ucred) within the kernel.
The The The The The The The The RETURN VALUEScrget (), crhold (),
crdup (), and crcopysafe () all
return a pointer to a ucred structure.
USAGE NOTESAs of FreeBSD 5.0, the ucred structure contains extensible fields. This means that the correct protocol must always be followed to create a fresh and writable credential structure: new credentials must always be derived from existing credentials usingcrget (), crcopy (), and
crcopysafe ().
In the common case, credentials required for access control decisions are used in a read-only manner. In these circumstances, the thread credential td_ucred should be used, as it requires no locking to access safely, and remains stable for the duration of the call even in the face of a multi-threaded application changing the process credentials from another thread. During a process credential update, the process lock must be held across check and update, to prevent race conditions. The process credential, td->td_proc->p_ucred, must be used both for check and update. If a process credential is updated during a system call and checks against the thread credential are to be made later during the same system call, the thread credential must also be refreshed from the process credential so as to prevent use of a stale value. To avoid this scenario, it is recommended that system calls updating the process credential be designed to avoid other authorization functions. If temporarily elevated privileges are required for a thread, the
thread credential can be replaced for the duration of an activity, or for
the remainder of the system call. However, as a thread credential is often
shared, appropriate care should be taken to make sure modifications are made
to a writable credential through the use of Caution should be exercised when checking authorization for a thread or process perform an operation on another thread or process. As a result of temporary elevation, the target thread credential should never be used as the target credential in an access control decision: the process credential associated with the thread, td->td_proc->p_ucred, should be used instead. For example, p_candebug(9) accepts a target process, not a target thread, for access control purposes. SEE ALSOuihold(9)AUTHORSThis manual page was written by Chad David <davidc@acns.ab.ca>.
Visit the GSP FreeBSD Man Page Interface. |