Thomas Gleixner | b886d83c | 2019-06-01 10:08:55 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
John Johansen | 898127c | 2010-07-29 14:48:06 -0700 | [diff] [blame] | 2 | /* |
| 3 | * AppArmor security module |
| 4 | * |
| 5 | * This file contains AppArmor security domain transition function definitions. |
| 6 | * |
| 7 | * Copyright (C) 1998-2008 Novell/SUSE |
| 8 | * Copyright 2009-2010 Canonical Ltd. |
John Johansen | 898127c | 2010-07-29 14:48:06 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/binfmts.h> |
| 12 | #include <linux/types.h> |
| 13 | |
John Johansen | 2ea3ffb | 2017-07-18 23:04:47 -0700 | [diff] [blame] | 14 | #include "label.h" |
| 15 | |
John Johansen | 898127c | 2010-07-29 14:48:06 -0700 | [diff] [blame] | 16 | #ifndef __AA_DOMAIN_H |
| 17 | #define __AA_DOMAIN_H |
| 18 | |
| 19 | struct aa_domain { |
| 20 | int size; |
| 21 | char **table; |
| 22 | }; |
| 23 | |
John Johansen | df8073c | 2017-06-09 11:36:48 -0700 | [diff] [blame] | 24 | #define AA_CHANGE_NOFLAGS 0 |
| 25 | #define AA_CHANGE_TEST 1 |
| 26 | #define AA_CHANGE_CHILD 2 |
| 27 | #define AA_CHANGE_ONEXEC 4 |
John Johansen | 40cde7f | 2017-06-09 17:11:17 -0700 | [diff] [blame] | 28 | #define AA_CHANGE_STACK 8 |
John Johansen | df8073c | 2017-06-09 11:36:48 -0700 | [diff] [blame] | 29 | |
John Johansen | 2ea3ffb | 2017-07-18 23:04:47 -0700 | [diff] [blame] | 30 | struct aa_label *x_table_lookup(struct aa_profile *profile, u32 xindex, |
| 31 | const char **name); |
| 32 | |
John Johansen | 898127c | 2010-07-29 14:48:06 -0700 | [diff] [blame] | 33 | int apparmor_bprm_set_creds(struct linux_binprm *bprm); |
John Johansen | 898127c | 2010-07-29 14:48:06 -0700 | [diff] [blame] | 34 | |
| 35 | void aa_free_domain_entries(struct aa_domain *domain); |
John Johansen | df8073c | 2017-06-09 11:36:48 -0700 | [diff] [blame] | 36 | int aa_change_hat(const char *hats[], int count, u64 token, int flags); |
| 37 | int aa_change_profile(const char *fqname, int flags); |
John Johansen | 898127c | 2010-07-29 14:48:06 -0700 | [diff] [blame] | 38 | |
| 39 | #endif /* __AA_DOMAIN_H */ |