~apparmor-dev/apparmor/master

« back to all changes in this revision

Viewing changes to libraries/libapparmor/src/libapparmor.map

  • Committer: Steve Beattie
  • Date: 2019-02-19 09:38:13 UTC
  • Revision ID: sbeattie@ubuntu.com-20190219093813-ud526ee6hwn8nljz
The AppArmor project has been converted to git and is now hosted on
gitlab.

To get the converted repository, please do
  git clone https://gitlab.com/apparmor/apparmor

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Please add new symbols in a section that corresponds to the upcoming
2
 
# release version, adding a new section if necessary
3
 
#
4
 
# If you update this file please follow the instructions on library
5
 
# versioning in Makefile.am
6
 
 
7
 
IMMUNIX_1.0 {
8
 
  global:
9
 
        change_hat;
10
 
  local:
11
 
        *;
12
 
};
13
 
 
14
 
APPARMOR_1.0 {
15
 
  global:
16
 
        change_hat;
17
 
        parse_record;
18
 
        free_record;
19
 
  local:
20
 
        *;
21
 
} IMMUNIX_1.0;
22
 
 
23
 
APPARMOR_1.1 {
24
 
  global:
25
 
        aa_is_enabled;
26
 
        aa_find_mountpoint;
27
 
        aa_change_hat;
28
 
        aa_change_hatv;
29
 
        aa_change_hat_vargs;
30
 
        aa_change_profile;
31
 
        aa_change_onexec;
32
 
        aa_gettaskcon;
33
 
        aa_getcon;
34
 
        aa_getpeercon_raw;
35
 
        aa_getpeercon;
36
 
        parse_record;
37
 
        free_record;
38
 
        aa_getprocattr_raw;
39
 
        aa_getprocattr;
40
 
        aa_query_label;
41
 
 
42
 
        # no more symbols here, please
43
 
 
44
 
  local:
45
 
        *;
46
 
} APPARMOR_1.0;
47
 
 
48
 
APPARMOR_2.9 {
49
 
  global:
50
 
        aa_query_label;
51
 
  local:
52
 
        *;
53
 
} APPARMOR_1.1;
54
 
 
55
 
APPARMOR_2.10 {
56
 
  global:
57
 
        aa_query_file_path;
58
 
        aa_query_file_path_len;
59
 
        aa_query_link_path;
60
 
        aa_query_link_path_len;
61
 
        aa_features_new;
62
 
        aa_features_new_from_string;
63
 
        aa_features_new_from_kernel;
64
 
        aa_features_ref;
65
 
        aa_features_unref;
66
 
        aa_features_write_to_file;
67
 
        aa_features_is_equal;
68
 
        aa_features_supports;
69
 
        aa_kernel_interface_new;
70
 
        aa_kernel_interface_ref;
71
 
        aa_kernel_interface_unref;
72
 
        aa_kernel_interface_load_policy;
73
 
        aa_kernel_interface_load_policy_from_file;
74
 
        aa_kernel_interface_load_policy_from_fd;
75
 
        aa_kernel_interface_replace_policy;
76
 
        aa_kernel_interface_replace_policy_from_file;
77
 
        aa_kernel_interface_replace_policy_from_fd;
78
 
        aa_kernel_interface_remove_policy;
79
 
        aa_kernel_interface_write_policy;
80
 
        aa_policy_cache_new;
81
 
        aa_policy_cache_ref;
82
 
        aa_policy_cache_unref;
83
 
        aa_policy_cache_remove;
84
 
        aa_policy_cache_replace_all;
85
 
        aa_splitcon;
86
 
  local:
87
 
        *;
88
 
} APPARMOR_2.9;
89
 
 
90
 
APPARMOR_2.11 {
91
 
  global:
92
 
        aa_stack_profile;
93
 
        aa_stack_onexec;
94
 
  local:
95
 
        *;
96
 
} APPARMOR_2.10;
97
 
 
98
 
PRIVATE {
99
 
        global:
100
 
                _aa_is_blacklisted;
101
 
                _aa_autofree;
102
 
                _aa_autoclose;
103
 
                _aa_autofclose;
104
 
                _aa_dirat_for_each;
105
 
        local:
106
 
                *;
107
 
};