1 /* SPDX-License-Identifier: GPL-2.0-only */
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.
11 #include <linux/binfmts.h>
12 #include <linux/types.h>
24 #define AA_CHANGE_NOFLAGS 0
25 #define AA_CHANGE_TEST 1
26 #define AA_CHANGE_CHILD 2
27 #define AA_CHANGE_ONEXEC 4
28 #define AA_CHANGE_STACK 8
30 struct aa_label
*x_table_lookup(struct aa_profile
*profile
, u32 xindex
,
33 int apparmor_bprm_creds_for_exec(struct linux_binprm
*bprm
);
35 void aa_free_domain_entries(struct aa_domain
*domain
);
36 int aa_change_hat(const char *hats
[], int count
, u64 token
, int flags
);
37 int aa_change_profile(const char *fqname
, int flags
);
39 #endif /* __AA_DOMAIN_H */