]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - security/apparmor/include/domain.h
UBUNTU: SAUCE: apparmor: Fix FTBFS due to bad include path
[mirror_ubuntu-zesty-kernel.git] / security / apparmor / include / domain.h
CommitLineData
898127c3
JJ
1/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor security domain transition function definitions.
5 *
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
12 * License.
13 */
14
15#include <linux/binfmts.h>
16#include <linux/types.h>
17
08d94f50 18#include "label.h"
80594fc2 19
898127c3
JJ
20#ifndef __AA_DOMAIN_H
21#define __AA_DOMAIN_H
22
23struct aa_domain {
24 int size;
25 char **table;
26};
27
80594fc2
JJ
28struct aa_label *x_table_lookup(struct aa_profile *profile, u32 xindex,
29 const char **name);
30
898127c3
JJ
31int apparmor_bprm_set_creds(struct linux_binprm *bprm);
32int apparmor_bprm_secureexec(struct linux_binprm *bprm);
33void apparmor_bprm_committing_creds(struct linux_binprm *bprm);
34void apparmor_bprm_committed_creds(struct linux_binprm *bprm);
35
36void aa_free_domain_entries(struct aa_domain *domain);
37int aa_change_hat(const char *hats[], int count, u64 token, bool permtest);
80594fc2
JJ
38int aa_change_profile(const char *fqname, bool onexec, bool permtest,
39 bool stack);
898127c3
JJ
40
41#endif /* __AA_DOMAIN_H */