1 // SPDX-License-Identifier: GPL-2.0
3 * SafeSetID Linux Security Module
5 * Author: Micah Morton <mortonm@chromium.org>
7 * Copyright (C) 2018 The Chromium OS Authors.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2, as
11 * published by the Free Software Foundation.
15 #define pr_fmt(fmt) "SafeSetID: " fmt
17 #include <linux/lsm_hooks.h>
18 #include <linux/module.h>
19 #include <linux/ptrace.h>
20 #include <linux/sched/task_stack.h>
21 #include <linux/security.h>
24 /* Flag indicating whether initialization completed */
25 int safesetid_initialized __initdata;
27 struct setid_ruleset __rcu *safesetid_setuid_rules;
28 struct setid_ruleset __rcu *safesetid_setgid_rules;
31 /* Compute a decision for a transition from @src to @dst under @policy. */
32 enum sid_policy_type _setid_policy_lookup(struct setid_ruleset *policy,
35 struct setid_rule *rule;
36 enum sid_policy_type result = SIDPOL_DEFAULT;
38 if (policy->type == UID) {
39 hash_for_each_possible(policy->rules, rule, next, __kuid_val(src.uid)) {
40 if (!uid_eq(rule->src_id.uid, src.uid))
42 if (uid_eq(rule->dst_id.uid, dst.uid))
43 return SIDPOL_ALLOWED;
44 result = SIDPOL_CONSTRAINED;
46 } else if (policy->type == GID) {
47 hash_for_each_possible(policy->rules, rule, next, __kgid_val(src.gid)) {
48 if (!gid_eq(rule->src_id.gid, src.gid))
50 if (gid_eq(rule->dst_id.gid, dst.gid)){
51 return SIDPOL_ALLOWED;
53 result = SIDPOL_CONSTRAINED;
56 /* Should not reach here, report the ID as contrainsted */
57 result = SIDPOL_CONSTRAINED;
63 * Compute a decision for a transition from @src to @dst under the active
66 static enum sid_policy_type setid_policy_lookup(kid_t src, kid_t dst, enum setid_type new_type)
68 enum sid_policy_type result = SIDPOL_DEFAULT;
69 struct setid_ruleset *pol;
73 pol = rcu_dereference(safesetid_setuid_rules);
74 else if (new_type == GID)
75 pol = rcu_dereference(safesetid_setgid_rules);
76 else { /* Should not reach here */
77 result = SIDPOL_CONSTRAINED;
84 result = _setid_policy_lookup(pol, src, dst);
90 static int safesetid_security_capable(const struct cred *cred,
91 struct user_namespace *ns,
95 /* We're only interested in CAP_SETUID and CAP_SETGID. */
96 if (cap != CAP_SETUID && cap != CAP_SETGID)
100 * If CAP_SET{U/G}ID is currently used for a setid or setgroups syscall, we
101 * want to let it go through here; the real security check happens later, in
102 * the task_fix_set{u/g}id or task_fix_setgroups hooks.
104 if ((opts & CAP_OPT_INSETID) != 0)
110 * If no policy applies to this task, allow the use of CAP_SETUID for
113 if (setid_policy_lookup((kid_t){.uid = cred->uid}, INVALID_ID, UID) == SIDPOL_DEFAULT)
116 * Reject use of CAP_SETUID for functionality other than calling
117 * set*uid() (e.g. setting up userns uid mappings).
119 pr_warn("Operation requires CAP_SETUID, which is not available to UID %u for operations besides approved set*uid transitions\n",
120 __kuid_val(cred->uid));
124 * If no policy applies to this task, allow the use of CAP_SETGID for
127 if (setid_policy_lookup((kid_t){.gid = cred->gid}, INVALID_ID, GID) == SIDPOL_DEFAULT)
130 * Reject use of CAP_SETUID for functionality other than calling
131 * set*gid() (e.g. setting up userns gid mappings).
133 pr_warn("Operation requires CAP_SETGID, which is not available to GID %u for operations besides approved set*gid transitions\n",
134 __kuid_val(cred->uid));
137 /* Error, the only capabilities were checking for is CAP_SETUID/GID */
144 * Check whether a caller with old credentials @old is allowed to switch to
145 * credentials that contain @new_id.
147 static bool id_permitted_for_cred(const struct cred *old, kid_t new_id, enum setid_type new_type)
151 /* If our old creds already had this ID in it, it's fine. */
152 if (new_type == UID) {
153 if (uid_eq(new_id.uid, old->uid) || uid_eq(new_id.uid, old->euid) ||
154 uid_eq(new_id.uid, old->suid))
156 } else if (new_type == GID){
157 if (gid_eq(new_id.gid, old->gid) || gid_eq(new_id.gid, old->egid) ||
158 gid_eq(new_id.gid, old->sgid))
160 } else /* Error, new_type is an invalid type */
164 * Transitions to new UIDs require a check against the policy of the old
168 setid_policy_lookup((kid_t){.uid = old->uid}, new_id, new_type) != SIDPOL_CONSTRAINED;
171 if (new_type == UID) {
172 pr_warn("UID transition ((%d,%d,%d) -> %d) blocked\n",
173 __kuid_val(old->uid), __kuid_val(old->euid),
174 __kuid_val(old->suid), __kuid_val(new_id.uid));
175 } else if (new_type == GID) {
176 pr_warn("GID transition ((%d,%d,%d) -> %d) blocked\n",
177 __kgid_val(old->gid), __kgid_val(old->egid),
178 __kgid_val(old->sgid), __kgid_val(new_id.gid));
179 } else /* Error, new_type is an invalid type */
186 * Check whether there is either an exception for user under old cred struct to
187 * set*uid to user under new cred struct, or the UID transition is allowed (by
188 * Linux set*uid rules) even without CAP_SETUID.
190 static int safesetid_task_fix_setuid(struct cred *new,
191 const struct cred *old,
195 /* Do nothing if there are no setuid restrictions for our old RUID. */
196 if (setid_policy_lookup((kid_t){.uid = old->uid}, INVALID_ID, UID) == SIDPOL_DEFAULT)
199 if (id_permitted_for_cred(old, (kid_t){.uid = new->uid}, UID) &&
200 id_permitted_for_cred(old, (kid_t){.uid = new->euid}, UID) &&
201 id_permitted_for_cred(old, (kid_t){.uid = new->suid}, UID) &&
202 id_permitted_for_cred(old, (kid_t){.uid = new->fsuid}, UID))
206 * Kill this process to avoid potential security vulnerabilities
207 * that could arise from a missing allowlist entry preventing a
208 * privileged process from dropping to a lesser-privileged one.
214 static int safesetid_task_fix_setgid(struct cred *new,
215 const struct cred *old,
219 /* Do nothing if there are no setgid restrictions for our old RGID. */
220 if (setid_policy_lookup((kid_t){.gid = old->gid}, INVALID_ID, GID) == SIDPOL_DEFAULT)
223 if (id_permitted_for_cred(old, (kid_t){.gid = new->gid}, GID) &&
224 id_permitted_for_cred(old, (kid_t){.gid = new->egid}, GID) &&
225 id_permitted_for_cred(old, (kid_t){.gid = new->sgid}, GID) &&
226 id_permitted_for_cred(old, (kid_t){.gid = new->fsgid}, GID))
230 * Kill this process to avoid potential security vulnerabilities
231 * that could arise from a missing allowlist entry preventing a
232 * privileged process from dropping to a lesser-privileged one.
238 static int safesetid_task_fix_setgroups(struct cred *new, const struct cred *old)
242 /* Do nothing if there are no setgid restrictions for our old RGID. */
243 if (setid_policy_lookup((kid_t){.gid = old->gid}, INVALID_ID, GID) == SIDPOL_DEFAULT)
246 get_group_info(new->group_info);
247 for (i = 0; i < new->group_info->ngroups; i++) {
248 if (!id_permitted_for_cred(old, (kid_t){.gid = new->group_info->gid[i]}, GID)) {
249 put_group_info(new->group_info);
251 * Kill this process to avoid potential security vulnerabilities
252 * that could arise from a missing allowlist entry preventing a
253 * privileged process from dropping to a lesser-privileged one.
260 put_group_info(new->group_info);
264 static struct security_hook_list safesetid_security_hooks[] = {
265 LSM_HOOK_INIT(task_fix_setuid, safesetid_task_fix_setuid),
266 LSM_HOOK_INIT(task_fix_setgid, safesetid_task_fix_setgid),
267 LSM_HOOK_INIT(task_fix_setgroups, safesetid_task_fix_setgroups),
268 LSM_HOOK_INIT(capable, safesetid_security_capable)
271 static int __init safesetid_security_init(void)
273 security_add_hooks(safesetid_security_hooks,
274 ARRAY_SIZE(safesetid_security_hooks), "safesetid");
276 /* Report that SafeSetID successfully initialized */
277 safesetid_initialized = 1;
282 DEFINE_LSM(safesetid_security_init) = {
283 .init = safesetid_security_init,