• David Howells's avatar
    CRED: Inaugurate COW credentials · d84f4f99
    David Howells authored
    Inaugurate copy-on-write credentials management.  This uses RCU to manage the
    credentials pointer in the task_struct with respect to accesses by other tasks.
    A process may only modify its own credentials, and so does not need locking to
    access or modify its own credentials.
    
    A mutex (cred_replace_mutex) is added to the task_struct to control the effect
    of PTRACE_ATTACHED on credential calculations, particularly with respect to
    execve().
    
    With this patch, the contents of an active credentials struct may not be
    changed directly; rather a new set of credentials must be prepared, modified
    and committed using something like the following sequence of events:
    
    	struct cred *new = prepare_creds();
    	int ret = blah(new);
    	if (ret < 0) {
    		abort_creds(new);
    		return ret;
    	}
    	return commit_creds(new);
    
    There are some exceptions to this rule: the keyrings pointed to by the active
    credentials may be instantiated - keyrings violate the COW rule as managing
    COW keyrings is tricky, given t...
    d84f4f99
cred-internals.h 559 Bytes