treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441
[linux-2.6-block.git] / security / apparmor / include / domain.h
CommitLineData
b886d83c 1/* SPDX-License-Identifier: GPL-2.0-only */
898127c3
JJ
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.
898127c3
JJ
9 */
10
11#include <linux/binfmts.h>
12#include <linux/types.h>
13
2ea3ffb7
JJ
14#include "label.h"
15
898127c3
JJ
16#ifndef __AA_DOMAIN_H
17#define __AA_DOMAIN_H
18
19struct aa_domain {
20 int size;
21 char **table;
22};
23
df8073c6
JJ
24#define AA_CHANGE_NOFLAGS 0
25#define AA_CHANGE_TEST 1
26#define AA_CHANGE_CHILD 2
27#define AA_CHANGE_ONEXEC 4
40cde7fc 28#define AA_CHANGE_STACK 8
df8073c6 29
2ea3ffb7
JJ
30struct aa_label *x_table_lookup(struct aa_profile *profile, u32 xindex,
31 const char **name);
32
898127c3 33int apparmor_bprm_set_creds(struct linux_binprm *bprm);
898127c3
JJ
34
35void aa_free_domain_entries(struct aa_domain *domain);
df8073c6
JJ
36int aa_change_hat(const char *hats[], int count, u64 token, int flags);
37int aa_change_profile(const char *fqname, int flags);
898127c3
JJ
38
39#endif /* __AA_DOMAIN_H */