Merge tag 'rproc-v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc...
[linux.git] / security / apparmor / include / domain.h
blob77f9a0ed0f04821648f7431f063dc7573920b98e
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * AppArmor security module
5 * This file contains AppArmor security domain transition function definitions.
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
9 */
11 #include <linux/binfmts.h>
12 #include <linux/types.h>
14 #include "label.h"
16 #ifndef __AA_DOMAIN_H
17 #define __AA_DOMAIN_H
19 #define AA_CHANGE_NOFLAGS 0
20 #define AA_CHANGE_TEST 1
21 #define AA_CHANGE_CHILD 2
22 #define AA_CHANGE_ONEXEC 4
23 #define AA_CHANGE_STACK 8
25 struct aa_label *x_table_lookup(struct aa_profile *profile, u32 xindex,
26 const char **name);
28 int apparmor_bprm_creds_for_exec(struct linux_binprm *bprm);
30 int aa_change_hat(const char *hats[], int count, u64 token, int flags);
31 int aa_change_profile(const char *fqname, int flags);
33 #endif /* __AA_DOMAIN_H */