Isolation: allowed the use of credentials with unpriv userns.
The setuid/setgid syscalls requires root capabilities but if the kernel supports unprivileged user namespace then the child process has the full set of capabilities in the new namespace, then we can allow setting "user" and "group" in such cases (this is a common security use case). Tests were added to ensure user gets meaningful error messages for uid/gid mapping misconfigurations.
This commit is contained in:
@@ -21,7 +21,9 @@ typedef struct {
|
||||
|
||||
NXT_EXPORT nxt_int_t nxt_credential_get(nxt_task_t *task, nxt_mp_t *mp,
|
||||
nxt_credential_t *uc, const char *group);
|
||||
NXT_EXPORT nxt_int_t nxt_credential_set(nxt_task_t *task,
|
||||
NXT_EXPORT nxt_int_t nxt_credential_setuid(nxt_task_t *task,
|
||||
nxt_credential_t *uc);
|
||||
NXT_EXPORT nxt_int_t nxt_credential_setgids(nxt_task_t *task,
|
||||
nxt_credential_t *uc);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user