hc
2023-11-22 983d7f83616922a6439b4352d1b3af488ee27f95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * AppArmor security module
 *
 * This file contains AppArmor security domain transition function definitions.
 *
 * Copyright (C) 1998-2008 Novell/SUSE
 * Copyright 2009-2010 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 */
 
#include <linux/binfmts.h>
#include <linux/types.h>
 
#include "label.h"
 
#ifndef __AA_DOMAIN_H
#define __AA_DOMAIN_H
 
struct aa_domain {
   int size;
   char **table;
};
 
#define AA_CHANGE_NOFLAGS 0
#define AA_CHANGE_TEST 1
#define AA_CHANGE_CHILD 2
#define AA_CHANGE_ONEXEC  4
#define AA_CHANGE_STACK 8
 
struct aa_label *x_table_lookup(struct aa_profile *profile, u32 xindex,
               const char **name);
 
int apparmor_bprm_set_creds(struct linux_binprm *bprm);
 
void aa_free_domain_entries(struct aa_domain *domain);
int aa_change_hat(const char *hats[], int count, u64 token, int flags);
int aa_change_profile(const char *fqname, int flags);
 
#endif /* __AA_DOMAIN_H */