cred.h 12.3 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
K
Kees Cook 已提交
2
/* Credentials management - see Documentation/security/credentials.rst
3 4 5 6 7 8 9 10
 *
 * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 */

#ifndef _LINUX_CRED_H
#define _LINUX_CRED_H

11
#include <linux/capability.h>
12
#include <linux/init.h>
13
#include <linux/key.h>
A
Arun Sharma 已提交
14
#include <linux/atomic.h>
15
#include <linux/uidgid.h>
16
#include <linux/sched.h>
17
#include <linux/sched/user.h>
18 19

struct cred;
20
struct inode;
21 22 23 24 25 26 27

/*
 * COW Supplementary groups list
 */
struct group_info {
	atomic_t	usage;
	int		ngroups;
28
	kgid_t		gid[];
29
} __randomize_layout;
30 31 32 33 34

/**
 * get_group_info - Get a reference to a group info structure
 * @group_info: The group info to reference
 *
35 36 37 38
 * This gets a reference to a set of supplementary groups.
 *
 * If the caller is accessing a task's credentials, they must hold the RCU read
 * lock when reading.
39
 */
40 41 42 43 44
static inline struct group_info *get_group_info(struct group_info *gi)
{
	atomic_inc(&gi->usage);
	return gi;
}
45 46 47 48 49 50 51 52 53 54 55

/**
 * put_group_info - Release a reference to a group info structure
 * @group_info: The group info to release
 */
#define put_group_info(group_info)			\
do {							\
	if (atomic_dec_and_test(&(group_info)->usage))	\
		groups_free(group_info);		\
} while (0)

56 57
#ifdef CONFIG_MULTIUSER
extern struct group_info *groups_alloc(int);
58
extern void groups_free(struct group_info *);
59 60 61

extern int in_group_p(kgid_t);
extern int in_egroup_p(kgid_t);
62 63 64 65 66 67
extern int groups_search(const struct group_info *, kgid_t);

extern int set_current_groups(struct group_info *);
extern void set_groups(struct cred *, struct group_info *);
extern bool may_setgroups(void);
extern void groups_sort(struct group_info *);
68 69 70 71 72 73 74 75 76 77 78 79 80
#else
static inline void groups_free(struct group_info *group_info)
{
}

static inline int in_group_p(kgid_t grp)
{
        return 1;
}
static inline int in_egroup_p(kgid_t grp)
{
        return 1;
}
81 82 83 84
static inline int groups_search(const struct group_info *group_info, kgid_t grp)
{
	return 1;
}
85
#endif
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111

/*
 * The security context of a task
 *
 * The parts of the context break down into two categories:
 *
 *  (1) The objective context of a task.  These parts are used when some other
 *	task is attempting to affect this one.
 *
 *  (2) The subjective context.  These details are used when the task is acting
 *	upon another object, be that a file, a task, a key or whatever.
 *
 * Note that some members of this structure belong to both categories - the
 * LSM security pointer for instance.
 *
 * A task has two security pointers.  task->real_cred points to the objective
 * context that defines that task's actual details.  The objective part of this
 * context is used whenever that task is acted upon.
 *
 * task->cred points to the subjective context that defines the details of how
 * that task is going to act upon another object.  This may be overridden
 * temporarily to point to another security context, but normally points to the
 * same context as task->real_cred.
 */
struct cred {
	atomic_t	usage;
112 113 114 115 116 117 118
#ifdef CONFIG_DEBUG_CREDENTIALS
	atomic_t	subscribers;	/* number of processes subscribed */
	void		*put_addr;
	unsigned	magic;
#define CRED_MAGIC	0x43736564
#define CRED_MAGIC_DEAD	0x44656144
#endif
119 120 121 122 123 124 125 126
	kuid_t		uid;		/* real UID of the task */
	kgid_t		gid;		/* real GID of the task */
	kuid_t		suid;		/* saved UID of the task */
	kgid_t		sgid;		/* saved GID of the task */
	kuid_t		euid;		/* effective UID of the task */
	kgid_t		egid;		/* effective GID of the task */
	kuid_t		fsuid;		/* UID for VFS ops */
	kgid_t		fsgid;		/* GID for VFS ops */
127 128 129 130 131
	unsigned	securebits;	/* SUID-less security management */
	kernel_cap_t	cap_inheritable; /* caps our children can inherit */
	kernel_cap_t	cap_permitted;	/* caps we're permitted */
	kernel_cap_t	cap_effective;	/* caps we can actually use */
	kernel_cap_t	cap_bset;	/* capability bounding set */
132
	kernel_cap_t	cap_ambient;	/* Ambient capability set */
133 134 135
#ifdef CONFIG_KEYS
	unsigned char	jit_keyring;	/* default keyring to attach requested
					 * keys to */
136
	struct key	*session_keyring; /* keyring inherited over fork */
137
	struct key	*process_keyring; /* keyring private to this process */
138 139 140 141
	struct key	*thread_keyring; /* keyring private to this thread */
	struct key	*request_key_auth; /* assumed request_key authority */
#endif
#ifdef CONFIG_SECURITY
142
	void		*security;	/* LSM security */
143 144
#endif
	struct user_struct *user;	/* real user ID subscription */
145
	struct user_namespace *user_ns; /* user_ns the caps and keyrings are relative to. */
146
	struct group_info *group_info;	/* supplementary groups for euid/fsgid */
147 148 149 150 151
	/* RCU deletion */
	union {
		int non_rcu;			/* Can we skip RCU deletion? */
		struct rcu_head	rcu;		/* RCU deletion hook */
	};
152
} __randomize_layout;
153

154
extern void __put_cred(struct cred *);
155
extern void exit_creds(struct task_struct *);
156
extern int copy_creds(struct task_struct *, unsigned long);
157
extern const struct cred *get_task_cred(struct task_struct *);
158
extern struct cred *cred_alloc_blank(void);
D
David Howells 已提交
159
extern struct cred *prepare_creds(void);
160
extern struct cred *prepare_exec_creds(void);
D
David Howells 已提交
161 162
extern int commit_creds(struct cred *);
extern void abort_creds(struct cred *);
163 164
extern const struct cred *override_creds(const struct cred *);
extern void revert_creds(const struct cred *);
165 166 167 168 169
extern struct cred *prepare_kernel_cred(struct task_struct *);
extern int change_create_files_as(struct cred *, struct inode *);
extern int set_security_override(struct cred *, u32);
extern int set_security_override_from_ctx(struct cred *, const char *);
extern int set_create_files_as(struct cred *, struct inode *);
170
extern int cred_fscmp(const struct cred *, const struct cred *);
D
David Howells 已提交
171 172
extern void __init cred_init(void);

173 174 175 176 177 178 179 180
/*
 * check for validity of credentials
 */
#ifdef CONFIG_DEBUG_CREDENTIALS
extern void __invalid_creds(const struct cred *, const char *, unsigned);
extern void __validate_process_creds(struct task_struct *,
				     const char *, unsigned);

A
Andrew Morton 已提交
181
extern bool creds_are_invalid(const struct cred *cred);
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212

static inline void __validate_creds(const struct cred *cred,
				    const char *file, unsigned line)
{
	if (unlikely(creds_are_invalid(cred)))
		__invalid_creds(cred, file, line);
}

#define validate_creds(cred)				\
do {							\
	__validate_creds((cred), __FILE__, __LINE__);	\
} while(0)

#define validate_process_creds()				\
do {								\
	__validate_process_creds(current, __FILE__, __LINE__);	\
} while(0)

extern void validate_creds_for_do_exit(struct task_struct *);
#else
static inline void validate_creds(const struct cred *cred)
{
}
static inline void validate_creds_for_do_exit(struct task_struct *tsk)
{
}
static inline void validate_process_creds(void)
{
}
#endif

213 214 215 216 217 218 219
static inline bool cap_ambient_invariant_ok(const struct cred *cred)
{
	return cap_issubset(cred->cap_ambient,
			    cap_intersect(cred->cap_permitted,
					  cred->cap_inheritable));
}

D
David Howells 已提交
220 221 222 223 224 225 226 227 228 229 230 231
/**
 * get_new_cred - Get a reference on a new set of credentials
 * @cred: The new credentials to reference
 *
 * Get a reference on the specified set of new credentials.  The caller must
 * release the reference.
 */
static inline struct cred *get_new_cred(struct cred *cred)
{
	atomic_inc(&cred->usage);
	return cred;
}
232 233 234 235 236 237

/**
 * get_cred - Get a reference on a set of credentials
 * @cred: The credentials to reference
 *
 * Get a reference on the specified set of credentials.  The caller must
238
 * release the reference.  If %NULL is passed, it is returned with no action.
D
David Howells 已提交
239 240 241 242 243 244
 *
 * This is used to deal with a committed set of credentials.  Although the
 * pointer is const, this will temporarily discard the const and increment the
 * usage count.  The purpose of this is to attempt to catch at compile time the
 * accidental alteration of a set of credentials that should be considered
 * immutable.
245
 */
D
David Howells 已提交
246
static inline const struct cred *get_cred(const struct cred *cred)
247
{
248
	struct cred *nonconst_cred = (struct cred *) cred;
249 250
	if (!cred)
		return cred;
251
	validate_creds(cred);
252
	nonconst_cred->non_rcu = 0;
253
	return get_new_cred(nonconst_cred);
254 255
}

N
NeilBrown 已提交
256 257 258 259 260 261 262 263
static inline const struct cred *get_cred_rcu(const struct cred *cred)
{
	struct cred *nonconst_cred = (struct cred *) cred;
	if (!cred)
		return NULL;
	if (!atomic_inc_not_zero(&nonconst_cred->usage))
		return NULL;
	validate_creds(cred);
264
	nonconst_cred->non_rcu = 0;
N
NeilBrown 已提交
265 266 267
	return cred;
}

268 269 270 271 272
/**
 * put_cred - Release a reference to a set of credentials
 * @cred: The credentials to release
 *
 * Release a reference to a set of credentials, deleting them when the last ref
273
 * is released.  If %NULL is passed, nothing is done.
D
David Howells 已提交
274 275 276 277
 *
 * This takes a const pointer to a set of credentials because the credentials
 * on task_struct are attached by const pointers to prevent accidental
 * alteration of otherwise immutable credential sets.
278
 */
279
static inline void put_cred(const struct cred *_cred)
280
{
281
	struct cred *cred = (struct cred *) _cred;
D
David Howells 已提交
282

283 284 285 286 287
	if (cred) {
		validate_creds(cred);
		if (atomic_dec_and_test(&(cred)->usage))
			__put_cred(cred);
	}
288 289
}

290
/**
291
 * current_cred - Access the current task's subjective credentials
292
 *
A
Al Viro 已提交
293 294
 * Access the subjective credentials of the current task.  RCU-safe,
 * since nobody else can modify it.
295 296
 */
#define current_cred() \
297
	rcu_dereference_protected(current->cred, 1)
298

299 300 301 302 303 304 305 306 307
/**
 * current_real_cred - Access the current task's objective credentials
 *
 * Access the objective credentials of the current task.  RCU-safe,
 * since nobody else can modify it.
 */
#define current_real_cred() \
	rcu_dereference_protected(current->real_cred, 1)

308
/**
309
 * __task_cred - Access a task's objective credentials
310 311
 * @task: The task to query
 *
312
 * Access the objective credentials of a task.  The caller must hold the RCU
313
 * readlock.
314
 *
315 316
 * The result of this function should not be passed directly to get_cred();
 * rather get_task_cred() should be used instead.
317
 */
318 319
#define __task_cred(task)	\
	rcu_dereference((task)->real_cred)
320 321

/**
322
 * get_current_cred - Get the current task's subjective credentials
323
 *
324 325 326
 * Get the subjective credentials of the current task, pinning them so that
 * they can't go away.  Accessing the current task's credentials directly is
 * not permitted.
327 328 329 330 331 332 333 334 335 336 337 338 339
 */
#define get_current_cred()				\
	(get_cred(current_cred()))

/**
 * get_current_user - Get the current task's user_struct
 *
 * Get the user record of the current task, pinning it so that it can't go
 * away.
 */
#define get_current_user()				\
({							\
	struct user_struct *__u;			\
340
	const struct cred *__cred;			\
A
Al Viro 已提交
341
	__cred = current_cred();			\
342 343 344 345 346 347 348 349 350 351 352 353 354
	__u = get_uid(__cred->user);			\
	__u;						\
})

/**
 * get_current_groups - Get the current task's supplementary group list
 *
 * Get the supplementary group list of the current task, pinning it so that it
 * can't go away.
 */
#define get_current_groups()				\
({							\
	struct group_info *__groups;			\
355
	const struct cred *__cred;			\
A
Al Viro 已提交
356
	__cred = current_cred();			\
357 358 359 360
	__groups = get_group_info(__cred->group_info);	\
	__groups;					\
})

D
David Howells 已提交
361 362 363 364 365 366 367
#define task_cred_xxx(task, xxx)			\
({							\
	__typeof__(((struct cred *)NULL)->xxx) ___val;	\
	rcu_read_lock();				\
	___val = __task_cred((task))->xxx;		\
	rcu_read_unlock();				\
	___val;						\
368 369 370 371 372 373 374
})

#define task_uid(task)		(task_cred_xxx((task), uid))
#define task_euid(task)		(task_cred_xxx((task), euid))

#define current_cred_xxx(xxx)			\
({						\
A
Al Viro 已提交
375
	current_cred()->xxx;			\
376 377 378 379 380 381 382 383 384 385 386 387 388
})

#define current_uid()		(current_cred_xxx(uid))
#define current_gid()		(current_cred_xxx(gid))
#define current_euid()		(current_cred_xxx(euid))
#define current_egid()		(current_cred_xxx(egid))
#define current_suid()		(current_cred_xxx(suid))
#define current_sgid()		(current_cred_xxx(sgid))
#define current_fsuid() 	(current_cred_xxx(fsuid))
#define current_fsgid() 	(current_cred_xxx(fsgid))
#define current_cap()		(current_cred_xxx(cap_effective))
#define current_user()		(current_cred_xxx(user))

389
extern struct user_namespace init_user_ns;
S
Serge E. Hallyn 已提交
390
#ifdef CONFIG_USER_NS
391
#define current_user_ns()	(current_cred_xxx(user_ns))
S
Serge E. Hallyn 已提交
392
#else
393 394 395 396
static inline struct user_namespace *current_user_ns(void)
{
	return &init_user_ns;
}
S
Serge E. Hallyn 已提交
397 398
#endif

399

400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
#define current_uid_gid(_uid, _gid)		\
do {						\
	const struct cred *__cred;		\
	__cred = current_cred();		\
	*(_uid) = __cred->uid;			\
	*(_gid) = __cred->gid;			\
} while(0)

#define current_euid_egid(_euid, _egid)		\
do {						\
	const struct cred *__cred;		\
	__cred = current_cred();		\
	*(_euid) = __cred->euid;		\
	*(_egid) = __cred->egid;		\
} while(0)

#define current_fsuid_fsgid(_fsuid, _fsgid)	\
do {						\
	const struct cred *__cred;		\
	__cred = current_cred();		\
	*(_fsuid) = __cred->fsuid;		\
	*(_fsgid) = __cred->fsgid;		\
} while(0)

424
#endif /* _LINUX_CRED_H */