mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-31 14:25:52 +00:00
Compare commits
99 Commits
v4.0.0-bet
...
v3.1.6
Author | SHA1 | Date | |
---|---|---|---|
|
f9e9954f12 | ||
|
3ec3fc47a1 | ||
|
86d193e183 | ||
|
ca7f79174e | ||
|
515d93ab1a | ||
|
ad6833bb34 | ||
|
3c5d40e84a | ||
|
eac7202808 | ||
|
3b61d42f79 | ||
|
f34d60b1e8 | ||
|
29b21b09d4 | ||
|
96395d9b82 | ||
|
9980ae76d8 | ||
|
dd136f4dd9 | ||
|
e5a3c03357 | ||
|
6831a8f440 | ||
|
ea5b52d3b2 | ||
|
3cdeb140a1 | ||
|
8c49449e46 | ||
|
a3685436eb | ||
|
2610fe4e80 | ||
|
c7f761b710 | ||
|
f00f296201 | ||
|
83772acf00 | ||
|
1d35eedef8 | ||
|
a597a612a7 | ||
|
64463c8686 | ||
|
7bd1c4d8ef | ||
|
c7bd872071 | ||
|
3d33fd440b | ||
|
e37cbd43c9 | ||
|
f91f33f2c6 | ||
|
51751aa687 | ||
|
89f1a84dfe | ||
|
d984b3edb6 | ||
|
2a7ddbc773 | ||
|
54bb7dccf0 | ||
|
aff29ef0ee | ||
|
26e85c17bd | ||
|
bdcd76a8ea | ||
|
e69cb50479 | ||
|
5a25bc6240 | ||
|
06e15a7789 | ||
|
d0e086e93a | ||
|
0e6b48cc78 | ||
|
c8eefe440c | ||
|
df3b9601de | ||
|
a9fa20a456 | ||
|
089064439d | ||
|
1759c1bd24 | ||
|
68de30cf76 | ||
|
925ccfe482 | ||
|
dc4b38acf0 | ||
|
9f25b5f6ff | ||
|
6e2eabd424 | ||
|
c8ce78e00c | ||
|
7526ba4b0a | ||
|
0eaf6d3649 | ||
|
e44e9187ae | ||
|
677051bd02 | ||
|
21ca572de6 | ||
|
6c240a473b | ||
|
eec9086ecf | ||
|
81d8af7c13 | ||
|
a9bea8a377 | ||
|
3aa895073a | ||
|
dcf7e9a0d5 | ||
|
57fec9624d | ||
|
aee9bf56c0 | ||
|
0295fadab3 | ||
|
5bc35342ed | ||
|
6cc9160246 | ||
|
5452053f5b | ||
|
da906cda8c | ||
|
a19754f52f | ||
|
379a486b87 | ||
|
5ad91d482d | ||
|
19bbc5dfc3 | ||
|
66cb0ed739 | ||
|
d179a704e7 | ||
|
4244737f65 | ||
|
e617f04681 | ||
|
9d826aae65 | ||
|
465c861b02 | ||
|
dc85d04805 | ||
|
a40923006c | ||
|
1fe80c0f85 | ||
|
8043dda3f6 | ||
|
e95080e140 | ||
|
45125cedd3 | ||
|
969a8f7618 | ||
|
770b8f1e88 | ||
|
3345250f72 | ||
|
51cf0848c7 | ||
|
e0c0a6a6a5 | ||
|
ea127f13cd | ||
|
480cb56553 | ||
|
075c69a4eb | ||
|
f9dbaa38ec |
@@ -104,6 +104,7 @@ test-profiles:
|
|||||||
script:
|
script:
|
||||||
- make -C profiles check-parser
|
- make -C profiles check-parser
|
||||||
- make -C profiles check-abstractions.d
|
- make -C profiles check-abstractions.d
|
||||||
|
- make -C profiles check-extras
|
||||||
|
|
||||||
shellcheck:
|
shellcheck:
|
||||||
stage: test
|
stage: test
|
||||||
|
@@ -454,6 +454,7 @@ static int detailed_output(FILE *json) {
|
|||||||
const char *process_statuses[] = {"enforce", "complain", "unconfined", "mixed", "kill"};
|
const char *process_statuses[] = {"enforce", "complain", "unconfined", "mixed", "kill"};
|
||||||
int ret;
|
int ret;
|
||||||
size_t i;
|
size_t i;
|
||||||
|
int need_finish = 0;
|
||||||
|
|
||||||
ret = get_profiles(&profiles, &nprofiles);
|
ret = get_profiles(&profiles, &nprofiles);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
@@ -534,16 +535,20 @@ static int detailed_output(FILE *json) {
|
|||||||
} else {
|
} else {
|
||||||
fprintf(json, "%s\"%s\": [{\"profile\": \"%s\", \"pid\": \"%s\", \"status\": \"%s\"}",
|
fprintf(json, "%s\"%s\": [{\"profile\": \"%s\", \"pid\": \"%s\", \"status\": \"%s\"}",
|
||||||
// first element will be a unique executable
|
// first element will be a unique executable
|
||||||
i == 0 && j == 0 ? "" : "], ",
|
j == 0 && !need_finish ? "" : "], ",
|
||||||
filtered[j].exe, filtered[j].profile, filtered[j].pid, filtered[j].mode);
|
filtered[j].exe, filtered[j].profile, filtered[j].pid, filtered[j].mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
need_finish = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
free_processes(filtered, nfiltered);
|
free_processes(filtered, nfiltered);
|
||||||
}
|
}
|
||||||
if (json) {
|
if (json) {
|
||||||
fprintf(json, "%s}}\n", nprocesses > 0 ? "]" : "");
|
if (need_finish > 0) {
|
||||||
|
fprintf(json, "]");
|
||||||
|
}
|
||||||
|
fprintf(json, "}}\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
|
@@ -1 +1 @@
|
|||||||
3.1.0
|
3.1.6
|
||||||
|
@@ -159,6 +159,8 @@ typedef struct
|
|||||||
char *fs_type;
|
char *fs_type;
|
||||||
char *flags;
|
char *flags;
|
||||||
char *src_name;
|
char *src_name;
|
||||||
|
|
||||||
|
char *class;
|
||||||
} aa_log_record;
|
} aa_log_record;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -16,7 +16,8 @@ INCLUDES = $(all_includes)
|
|||||||
# problems in the unlikely event where an interface has to break.
|
# problems in the unlikely event where an interface has to break.
|
||||||
# - set AA_LIB_REVISION to 0.
|
# - set AA_LIB_REVISION to 0.
|
||||||
# 4. If any interfaces have been added since the last public release, then
|
# 4. If any interfaces have been added since the last public release, then
|
||||||
# - increment AA_LIB_AGE.
|
# - increment AA_LIB_AGE by the same amount that AA_LIB_CURRENT was
|
||||||
|
# incremented.
|
||||||
# 5. If any interfaces have been removed or changed since the last public
|
# 5. If any interfaces have been removed or changed since the last public
|
||||||
# release, then
|
# release, then
|
||||||
# - set AA_LIB_AGE to 0.
|
# - set AA_LIB_AGE to 0.
|
||||||
@@ -29,9 +30,12 @@ INCLUDES = $(all_includes)
|
|||||||
# For more information, see:
|
# For more information, see:
|
||||||
# http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
|
# http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
|
||||||
#
|
#
|
||||||
|
# After changing the AA_LIB_* variables, also update EXPECTED_SO_NAME.
|
||||||
|
|
||||||
AA_LIB_CURRENT = 13
|
AA_LIB_CURRENT = 13
|
||||||
AA_LIB_REVISION = 0
|
AA_LIB_REVISION = 3
|
||||||
AA_LIB_AGE = 9
|
AA_LIB_AGE = 12
|
||||||
|
EXPECTED_SO_NAME = libapparmor.so.1.12.3
|
||||||
|
|
||||||
SUFFIXES = .pc.in .pc
|
SUFFIXES = .pc.in .pc
|
||||||
|
|
||||||
@@ -80,4 +84,8 @@ tst_kernel_LDFLAGS = -pthread
|
|||||||
check_PROGRAMS = tst_aalogmisc tst_features tst_kernel
|
check_PROGRAMS = tst_aalogmisc tst_features tst_kernel
|
||||||
TESTS = $(check_PROGRAMS)
|
TESTS = $(check_PROGRAMS)
|
||||||
|
|
||||||
|
.PHONY: check-local
|
||||||
|
check-local:
|
||||||
|
test -f ./.libs/$(EXPECTED_SO_NAME) || { echo '*** unexpected .so name/number for libapparmor (expected $(EXPECTED_SO_NAME), the actual filename is shown below) ***' ; ls -l ./.libs/libapparmor.so.*.* ; exit 1; }
|
||||||
|
|
||||||
EXTRA_DIST = grammar.y scanner.l libapparmor.map libapparmor.pc
|
EXTRA_DIST = grammar.y scanner.l libapparmor.map libapparmor.pc
|
||||||
|
@@ -159,7 +159,9 @@ aa_record_event_type lookup_aa_event(unsigned int type)
|
|||||||
%token TOK_KEY_NAMESPACE
|
%token TOK_KEY_NAMESPACE
|
||||||
%token TOK_KEY_ERROR
|
%token TOK_KEY_ERROR
|
||||||
%token TOK_KEY_FSUID
|
%token TOK_KEY_FSUID
|
||||||
|
%token TOK_KEY_FSUID_UPPER
|
||||||
%token TOK_KEY_OUID
|
%token TOK_KEY_OUID
|
||||||
|
%token TOK_KEY_OUID_UPPER
|
||||||
%token TOK_KEY_UID
|
%token TOK_KEY_UID
|
||||||
%token TOK_KEY_AUID
|
%token TOK_KEY_AUID
|
||||||
%token TOK_KEY_SAUID
|
%token TOK_KEY_SAUID
|
||||||
@@ -185,6 +187,7 @@ aa_record_event_type lookup_aa_event(unsigned int type)
|
|||||||
%token TOK_KEY_FSTYPE
|
%token TOK_KEY_FSTYPE
|
||||||
%token TOK_KEY_FLAGS
|
%token TOK_KEY_FLAGS
|
||||||
%token TOK_KEY_SRCNAME
|
%token TOK_KEY_SRCNAME
|
||||||
|
%token TOK_KEY_CLASS
|
||||||
|
|
||||||
%token TOK_SOCKLOGD_KERNEL
|
%token TOK_SOCKLOGD_KERNEL
|
||||||
%token TOK_SYSLOG_KERNEL
|
%token TOK_SYSLOG_KERNEL
|
||||||
@@ -351,6 +354,10 @@ key: TOK_KEY_OPERATION TOK_EQUALS TOK_QUOTED_STRING
|
|||||||
{ ret_record->fsuid = $3;}
|
{ ret_record->fsuid = $3;}
|
||||||
| TOK_KEY_OUID TOK_EQUALS TOK_DIGITS
|
| TOK_KEY_OUID TOK_EQUALS TOK_DIGITS
|
||||||
{ ret_record->ouid = $3;}
|
{ ret_record->ouid = $3;}
|
||||||
|
| TOK_KEY_FSUID_UPPER TOK_EQUALS TOK_QUOTED_STRING
|
||||||
|
{ free($3);} /* Ignore - fsuid username */
|
||||||
|
| TOK_KEY_OUID_UPPER TOK_EQUALS TOK_QUOTED_STRING
|
||||||
|
{ free($3);} /* Ignore - ouid username */
|
||||||
| TOK_KEY_SAUID TOK_EQUALS TOK_DIGITS
|
| TOK_KEY_SAUID TOK_EQUALS TOK_DIGITS
|
||||||
{ /* Ignore - Source audit ID from user AVC messages */ }
|
{ /* Ignore - Source audit ID from user AVC messages */ }
|
||||||
| TOK_KEY_HOSTNAME TOK_EQUALS safe_string
|
| TOK_KEY_HOSTNAME TOK_EQUALS safe_string
|
||||||
@@ -425,6 +432,8 @@ key: TOK_KEY_OPERATION TOK_EQUALS TOK_QUOTED_STRING
|
|||||||
ret_record->event = AA_RECORD_INVALID;
|
ret_record->event = AA_RECORD_INVALID;
|
||||||
ret_record->info = $1;
|
ret_record->info = $1;
|
||||||
}
|
}
|
||||||
|
| TOK_KEY_CLASS TOK_EQUALS TOK_QUOTED_STRING
|
||||||
|
{ ret_record->class = $3; }
|
||||||
;
|
;
|
||||||
|
|
||||||
apparmor_event:
|
apparmor_event:
|
||||||
|
@@ -103,6 +103,8 @@ void free_record(aa_log_record *record)
|
|||||||
free(record->flags);
|
free(record->flags);
|
||||||
if (record->src_name != NULL)
|
if (record->src_name != NULL)
|
||||||
free(record->src_name);
|
free(record->src_name);
|
||||||
|
if (record->class != NULL)
|
||||||
|
free(record->class);
|
||||||
|
|
||||||
free(record);
|
free(record);
|
||||||
}
|
}
|
||||||
|
@@ -72,7 +72,7 @@ void string_buf_append(unsigned int length, char *text)
|
|||||||
|
|
||||||
%}
|
%}
|
||||||
|
|
||||||
ws [ \t\r\n]
|
ws [ \t\r\n\x1d]
|
||||||
|
|
||||||
equals "="
|
equals "="
|
||||||
digit [[:digit:]]
|
digit [[:digit:]]
|
||||||
@@ -121,6 +121,8 @@ key_namespace "namespace"
|
|||||||
key_mask "mask"
|
key_mask "mask"
|
||||||
key_denied_mask "denied_mask"
|
key_denied_mask "denied_mask"
|
||||||
key_requested_mask "requested_mask"
|
key_requested_mask "requested_mask"
|
||||||
|
key_denied "denied"
|
||||||
|
key_requested "requested"
|
||||||
key_attribute "attribute"
|
key_attribute "attribute"
|
||||||
key_task "task"
|
key_task "task"
|
||||||
key_parent "parent"
|
key_parent "parent"
|
||||||
@@ -138,7 +140,9 @@ key_sock_type "sock_type"
|
|||||||
key_protocol "protocol"
|
key_protocol "protocol"
|
||||||
key_error "error"
|
key_error "error"
|
||||||
key_fsuid "fsuid"
|
key_fsuid "fsuid"
|
||||||
|
key_fsuid_upper "FSUID"
|
||||||
key_ouid "ouid"
|
key_ouid "ouid"
|
||||||
|
key_ouid_upper "OUID"
|
||||||
key_uid "uid"
|
key_uid "uid"
|
||||||
key_auid "auid"
|
key_auid "auid"
|
||||||
key_sauid "sauid"
|
key_sauid "sauid"
|
||||||
@@ -161,11 +165,13 @@ key_dest "dest"
|
|||||||
key_path "path"
|
key_path "path"
|
||||||
key_interface "interface"
|
key_interface "interface"
|
||||||
key_member "member"
|
key_member "member"
|
||||||
|
key_method "method"
|
||||||
key_signal "signal"
|
key_signal "signal"
|
||||||
key_peer "peer"
|
key_peer "peer"
|
||||||
key_fstype "fstype"
|
key_fstype "fstype"
|
||||||
key_flags "flags"
|
key_flags "flags"
|
||||||
key_srcname "srcname"
|
key_srcname "srcname"
|
||||||
|
key_class "class"
|
||||||
audit "audit"
|
audit "audit"
|
||||||
|
|
||||||
/* network addrs */
|
/* network addrs */
|
||||||
@@ -307,6 +313,8 @@ yy_flex_debug = 0;
|
|||||||
{key_mask} { return(TOK_KEY_MASK); }
|
{key_mask} { return(TOK_KEY_MASK); }
|
||||||
{key_denied_mask} { return(TOK_KEY_DENIED_MASK); }
|
{key_denied_mask} { return(TOK_KEY_DENIED_MASK); }
|
||||||
{key_requested_mask} { return(TOK_KEY_REQUESTED_MASK); }
|
{key_requested_mask} { return(TOK_KEY_REQUESTED_MASK); }
|
||||||
|
{key_denied} { return(TOK_KEY_DENIED_MASK); }
|
||||||
|
{key_requested} { return(TOK_KEY_REQUESTED_MASK); }
|
||||||
{key_attribute} { BEGIN(sub_id); return(TOK_KEY_ATTRIBUTE); }
|
{key_attribute} { BEGIN(sub_id); return(TOK_KEY_ATTRIBUTE); }
|
||||||
{key_task} { return(TOK_KEY_TASK); }
|
{key_task} { return(TOK_KEY_TASK); }
|
||||||
{key_parent} { return(TOK_KEY_PARENT); }
|
{key_parent} { return(TOK_KEY_PARENT); }
|
||||||
@@ -324,7 +332,9 @@ yy_flex_debug = 0;
|
|||||||
{key_protocol} { return(TOK_KEY_PROTOCOL); }
|
{key_protocol} { return(TOK_KEY_PROTOCOL); }
|
||||||
{key_error} { return(TOK_KEY_ERROR); }
|
{key_error} { return(TOK_KEY_ERROR); }
|
||||||
{key_fsuid} { return(TOK_KEY_FSUID); }
|
{key_fsuid} { return(TOK_KEY_FSUID); }
|
||||||
|
{key_fsuid_upper} { return(TOK_KEY_FSUID_UPPER); }
|
||||||
{key_ouid} { return(TOK_KEY_OUID); }
|
{key_ouid} { return(TOK_KEY_OUID); }
|
||||||
|
{key_ouid_upper} { return(TOK_KEY_OUID_UPPER); }
|
||||||
{key_uid} { return(TOK_KEY_UID); }
|
{key_uid} { return(TOK_KEY_UID); }
|
||||||
{key_auid} { return(TOK_KEY_AUID); }
|
{key_auid} { return(TOK_KEY_AUID); }
|
||||||
{key_sauid} { return(TOK_KEY_SAUID); }
|
{key_sauid} { return(TOK_KEY_SAUID); }
|
||||||
@@ -346,11 +356,13 @@ yy_flex_debug = 0;
|
|||||||
{key_path} { return(TOK_KEY_PATH); }
|
{key_path} { return(TOK_KEY_PATH); }
|
||||||
{key_interface} { return(TOK_KEY_INTERFACE); }
|
{key_interface} { return(TOK_KEY_INTERFACE); }
|
||||||
{key_member} { return(TOK_KEY_MEMBER); }
|
{key_member} { return(TOK_KEY_MEMBER); }
|
||||||
|
{key_method} { return(TOK_KEY_MEMBER); }
|
||||||
{key_signal} { BEGIN(sub_id); return(TOK_KEY_SIGNAL); }
|
{key_signal} { BEGIN(sub_id); return(TOK_KEY_SIGNAL); }
|
||||||
{key_peer} { BEGIN(safe_string); return(TOK_KEY_PEER); }
|
{key_peer} { BEGIN(safe_string); return(TOK_KEY_PEER); }
|
||||||
{key_fstype} { return(TOK_KEY_FSTYPE); }
|
{key_fstype} { return(TOK_KEY_FSTYPE); }
|
||||||
{key_flags} { BEGIN(safe_string); return(TOK_KEY_FLAGS); }
|
{key_flags} { BEGIN(safe_string); return(TOK_KEY_FLAGS); }
|
||||||
{key_srcname} { BEGIN(safe_string); return(TOK_KEY_SRCNAME); }
|
{key_srcname} { BEGIN(safe_string); return(TOK_KEY_SRCNAME); }
|
||||||
|
{key_class} { BEGIN(safe_string); return(TOK_KEY_CLASS); }
|
||||||
|
|
||||||
{socklogd_kernel} { BEGIN(dmesg_timestamp); return(TOK_SOCKLOGD_KERNEL); }
|
{socklogd_kernel} { BEGIN(dmesg_timestamp); return(TOK_SOCKLOGD_KERNEL); }
|
||||||
{syslog_kernel} { BEGIN(dmesg_timestamp); return(TOK_SYSLOG_KERNEL); }
|
{syslog_kernel} { BEGIN(dmesg_timestamp); return(TOK_SYSLOG_KERNEL); }
|
||||||
|
@@ -35,6 +35,7 @@ OUTPUT_MAP = {
|
|||||||
'Local port': 'net_local_port',
|
'Local port': 'net_local_port',
|
||||||
'Foreign port': 'net_foreign_port',
|
'Foreign port': 'net_foreign_port',
|
||||||
'Audit subid': 'audit_sub_id',
|
'Audit subid': 'audit_sub_id',
|
||||||
|
'Class': '_class',
|
||||||
}
|
}
|
||||||
|
|
||||||
# FIXME: pull this automatically out of LibAppArmor, but swig
|
# FIXME: pull this automatically out of LibAppArmor, but swig
|
||||||
@@ -109,7 +110,7 @@ class AAPythonBindingsTests(unittest.TestCase):
|
|||||||
"""parse the swig created record and construct a dict from it"""
|
"""parse the swig created record and construct a dict from it"""
|
||||||
|
|
||||||
new_record = dict()
|
new_record = dict()
|
||||||
for key in [x for x in dir(record) if not (x.startswith('_') or x == 'this')]:
|
for key in [x for x in dir(record) if not (x.startswith('__') or x == 'this')]:
|
||||||
value = getattr(record, key)
|
value = getattr(record, key)
|
||||||
if key == "event" and value in EVENT_MAP:
|
if key == "event" and value in EVENT_MAP:
|
||||||
new_record[key] = EVENT_MAP[value]
|
new_record[key] = EVENT_MAP[value]
|
||||||
|
@@ -134,6 +134,8 @@ int print_results(aa_log_record *record)
|
|||||||
print_string("Flags", record->flags);
|
print_string("Flags", record->flags);
|
||||||
print_string("Src name", record->src_name);
|
print_string("Src name", record->src_name);
|
||||||
|
|
||||||
|
print_string("Class", record->class);
|
||||||
|
|
||||||
print_long("Epoch", record->epoch, 0);
|
print_long("Epoch", record->epoch, 0);
|
||||||
print_long("Audit subid", (long) record->audit_sub_id, 0);
|
print_long("Audit subid", (long) record->audit_sub_id, 0);
|
||||||
return(0);
|
return(0);
|
||||||
|
@@ -0,0 +1 @@
|
|||||||
|
type=AVC msg=audit(1661734785.992:270): apparmor="ALLOWED" operation="open" profile="/usr/bin/dolphin" name="/home/otis/.config/kdedefaults/kdeglobals" pid=3483 comm="dolphin" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0FSUID="otis" OUID="root"
|
@@ -0,0 +1,15 @@
|
|||||||
|
START
|
||||||
|
File: 0x1d-uppercase-FSUID-OUID.in
|
||||||
|
Event type: AA_RECORD_ALLOWED
|
||||||
|
Audit ID: 1661734785.992:270
|
||||||
|
Operation: open
|
||||||
|
Mask: r
|
||||||
|
Denied Mask: r
|
||||||
|
fsuid: 1000
|
||||||
|
ouid: 0
|
||||||
|
Profile: /usr/bin/dolphin
|
||||||
|
Name: /home/otis/.config/kdedefaults/kdeglobals
|
||||||
|
Command: dolphin
|
||||||
|
PID: 3483
|
||||||
|
Epoch: 1661734785
|
||||||
|
Audit subid: 270
|
@@ -0,0 +1,4 @@
|
|||||||
|
/usr/bin/dolphin {
|
||||||
|
/home/otis/.config/kdedefaults/kdeglobals r,
|
||||||
|
|
||||||
|
}
|
1
libraries/libapparmor/testsuite/test_multi/file_xm.in
Normal file
1
libraries/libapparmor/testsuite/test_multi/file_xm.in
Normal file
@@ -0,0 +1 @@
|
|||||||
|
type=AVC msg=audit(1676978994.840:1493): apparmor="DENIED" operation="link" profile="cargo" name="/var/tmp/portage/dev-lang/rust-1.67.1/work/rustc-1.67.1-src/build/bootstrap/debug/libbootstrap.rlib" pid=12412 comm="cargo" requested_mask="xm" denied_mask="xm" fsuid=250 ouid=250 target="/var/tmp/portage/dev-lang/rust-1.67.1/work/rustc-1.67.1-src/build/bootstrap/debug/deps/libbootstrap-4542dd99e796257e.rlib"FSUID="portage" OUID="portage"
|
16
libraries/libapparmor/testsuite/test_multi/file_xm.out
Normal file
16
libraries/libapparmor/testsuite/test_multi/file_xm.out
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
START
|
||||||
|
File: file_xm.in
|
||||||
|
Event type: AA_RECORD_DENIED
|
||||||
|
Audit ID: 1676978994.840:1493
|
||||||
|
Operation: link
|
||||||
|
Mask: xm
|
||||||
|
Denied Mask: xm
|
||||||
|
fsuid: 250
|
||||||
|
ouid: 250
|
||||||
|
Profile: cargo
|
||||||
|
Name: /var/tmp/portage/dev-lang/rust-1.67.1/work/rustc-1.67.1-src/build/bootstrap/debug/libbootstrap.rlib
|
||||||
|
Command: cargo
|
||||||
|
Name2: /var/tmp/portage/dev-lang/rust-1.67.1/work/rustc-1.67.1-src/build/bootstrap/debug/deps/libbootstrap-4542dd99e796257e.rlib
|
||||||
|
PID: 12412
|
||||||
|
Epoch: 1676978994
|
||||||
|
Audit subid: 1493
|
@@ -0,0 +1,4 @@
|
|||||||
|
profile cargo {
|
||||||
|
owner /var/tmp/portage/dev-lang/rust-1.67.1/work/rustc-1.67.1-src/build/bootstrap/debug/libbootstrap.rlib m,
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1 @@
|
|||||||
|
Dec 15 17:32:17 kinetic kernel: [4835959.046111] audit: type=1107 audit(1671125537.724:209): pid=7308 uid=0 auid=4294967295 ses=4294967295 msg='apparmor="DENIED" operation="dbus_method_call" bus="session" path="/org/freedesktop/DBus" interface="org.freedesktop.DBus" method="Hello" mask="send" label="/tmp/apparmor/tests/regression/apparmor/dbus_message" peer_label="unconfined" exe="/usr/local/bin/dbus-broker" sauid=0 hostname=? addr=? terminal=?'
|
@@ -0,0 +1,15 @@
|
|||||||
|
START
|
||||||
|
File: testcase_dbus_11.in
|
||||||
|
Event type: AA_RECORD_DENIED
|
||||||
|
Audit ID: 1671125537.724:209
|
||||||
|
Operation: dbus_method_call
|
||||||
|
Denied Mask: send
|
||||||
|
Profile: /tmp/apparmor/tests/regression/apparmor/dbus_message
|
||||||
|
Peer profile: unconfined
|
||||||
|
Command: /usr/local/bin/dbus-broker
|
||||||
|
DBus bus: session
|
||||||
|
DBus path: /org/freedesktop/DBus
|
||||||
|
DBus interface: org.freedesktop.DBus
|
||||||
|
DBus member: Hello
|
||||||
|
Epoch: 1671125537
|
||||||
|
Audit subid: 209
|
@@ -0,0 +1,4 @@
|
|||||||
|
/tmp/apparmor/tests/regression/apparmor/dbus_message {
|
||||||
|
dbus send bus=session path=/org/freedesktop/DBus interface=org.freedesktop.DBus member=Hello peer=(label=unconfined),
|
||||||
|
|
||||||
|
}
|
@@ -386,11 +386,11 @@ DISTRO=$(shell if [ -f /etc/slackware-version ] ; then \
|
|||||||
elif [ -f /etc/debian_version ] ; then \
|
elif [ -f /etc/debian_version ] ; then \
|
||||||
echo debian ;\
|
echo debian ;\
|
||||||
elif which rpm > /dev/null ; then \
|
elif which rpm > /dev/null ; then \
|
||||||
if [ "$(rpm --eval '0%{?suse_version}')" != "0" ] ; then \
|
if [ "$$(rpm --eval '0%{?suse_version}')" != "0" ] ; then \
|
||||||
echo suse ;\
|
echo suse ;\
|
||||||
elif [ "$(rpm --eval '%{_host_vendor}')" = redhat ] ; then \
|
elif [ "$$(rpm --eval '%{_host_vendor}')" = redhat ] ; then \
|
||||||
echo rhel4 ;\
|
echo rhel4 ;\
|
||||||
elif [ "$(rpm --eval '0%{?fedora}')" != "0" ] ; then \
|
elif [ "$$(rpm --eval '0%{?fedora}')" != "0" ] ; then \
|
||||||
echo rhel4 ;\
|
echo rhel4 ;\
|
||||||
else \
|
else \
|
||||||
echo unknown ;\
|
echo unknown ;\
|
||||||
|
@@ -111,8 +111,7 @@ unix_rule::unix_rule(unsigned int type_p, bool audit_p, bool denied):
|
|||||||
|
|
||||||
unix_rule::unix_rule(int mode_p, struct cond_entry *conds,
|
unix_rule::unix_rule(int mode_p, struct cond_entry *conds,
|
||||||
struct cond_entry *peer_conds):
|
struct cond_entry *peer_conds):
|
||||||
af_rule("unix"), addr(NULL), peer_addr(NULL),
|
af_rule("unix"), addr(NULL), peer_addr(NULL)
|
||||||
audit(0), deny(0)
|
|
||||||
{
|
{
|
||||||
move_conditionals(conds);
|
move_conditionals(conds);
|
||||||
move_peer_conditionals(peer_conds);
|
move_peer_conditionals(peer_conds);
|
||||||
@@ -136,7 +135,7 @@ ostream &unix_rule::dump_local(ostream &os)
|
|||||||
{
|
{
|
||||||
af_rule::dump_local(os);
|
af_rule::dump_local(os);
|
||||||
if (addr)
|
if (addr)
|
||||||
os << "addr='" << addr << "'";
|
os << " addr='" << addr << "'";
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,7 +143,7 @@ ostream &unix_rule::dump_peer(ostream &os)
|
|||||||
{
|
{
|
||||||
af_rule::dump_peer(os);
|
af_rule::dump_peer(os);
|
||||||
if (peer_addr)
|
if (peer_addr)
|
||||||
os << "addr='" << peer_addr << "'";
|
os << " addr='" << peer_addr << "'";
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -36,9 +36,6 @@ class unix_rule: public af_rule {
|
|||||||
public:
|
public:
|
||||||
char *addr;
|
char *addr;
|
||||||
char *peer_addr;
|
char *peer_addr;
|
||||||
int mode;
|
|
||||||
int audit;
|
|
||||||
bool deny;
|
|
||||||
|
|
||||||
unix_rule(unsigned int type_p, bool audit_p, bool denied);
|
unix_rule(unsigned int type_p, bool audit_p, bool denied);
|
||||||
unix_rule(int mode, struct cond_entry *conds,
|
unix_rule(int mode, struct cond_entry *conds,
|
||||||
|
@@ -172,7 +172,7 @@ B<MOUNT FLAGS EXPRESSION> = ( I<MOUNT FLAGS LIST> | I<MOUNT EXPRESSION> )
|
|||||||
|
|
||||||
B<MOUNT FLAGS LIST> = Comma separated list of I<MOUNT FLAGS>.
|
B<MOUNT FLAGS LIST> = Comma separated list of I<MOUNT FLAGS>.
|
||||||
|
|
||||||
B<MOUNT FLAGS> = ( 'ro' | 'rw' | 'nosuid' | 'suid' | 'nodev' | 'dev' | 'noexec' | 'exec' | 'sync' | 'async' | 'remount' | 'mand' | 'nomand' | 'dirsync' | 'noatime' | 'atime' | 'nodiratime' | 'diratime' | 'bind' | 'rbind' | 'move' | 'verbose' | 'silent' | 'loud' | 'acl' | 'noacl' | 'unbindable' | 'runbindable' | 'private' | 'rprivate' | 'slave' | 'rslave' | 'shared' | 'rshared' | 'relatime' | 'norelatime' | 'iversion' | 'noiversion' | 'strictatime' | 'nouser' | 'user' )
|
B<MOUNT FLAGS> = ( 'ro' | 'rw' | 'nosuid' | 'suid' | 'nodev' | 'dev' | 'noexec' | 'exec' | 'sync' | 'async' | 'remount' | 'mand' | 'nomand' | 'dirsync' | 'noatime' | 'atime' | 'nodiratime' | 'diratime' | 'bind' | 'rbind' | 'move' | 'verbose' | 'silent' | 'loud' | 'acl' | 'noacl' | 'unbindable' | 'runbindable' | 'private' | 'rprivate' | 'slave' | 'rslave' | 'shared' | 'rshared' | 'relatime' | 'norelatime' | 'iversion' | 'noiversion' | 'strictatime' | 'nostrictatime' | 'lazytime' | 'nolazytime' | 'nouser' | 'user' | 'symfollow' | 'nosymfollow' )
|
||||||
|
|
||||||
B<MOUNT EXPRESSION> = ( I<ALPHANUMERIC> | I<AARE> ) ...
|
B<MOUNT EXPRESSION> = ( I<ALPHANUMERIC> | I<AARE> ) ...
|
||||||
|
|
||||||
|
@@ -193,9 +193,8 @@ void CHFA::insert_state(vector<pair<size_t, size_t> > &free_list,
|
|||||||
State *default_state = dfa.nonmatching;
|
State *default_state = dfa.nonmatching;
|
||||||
ssize_t base = 0;
|
ssize_t base = 0;
|
||||||
int resize;
|
int resize;
|
||||||
|
|
||||||
StateTrans &trans = from->trans;
|
StateTrans &trans = from->trans;
|
||||||
ssize_t c = trans.begin()->first.c;
|
ssize_t c;
|
||||||
ssize_t prev = 0;
|
ssize_t prev = 0;
|
||||||
ssize_t x = first_free;
|
ssize_t x = first_free;
|
||||||
|
|
||||||
@@ -204,6 +203,7 @@ void CHFA::insert_state(vector<pair<size_t, size_t> > &free_list,
|
|||||||
if (trans.empty())
|
if (trans.empty())
|
||||||
goto do_insert;
|
goto do_insert;
|
||||||
|
|
||||||
|
c = trans.begin()->first.c;
|
||||||
repeat:
|
repeat:
|
||||||
resize = 0;
|
resize = 0;
|
||||||
/* get the first free entry that won't underflow */
|
/* get the first free entry that won't underflow */
|
||||||
@@ -251,10 +251,18 @@ repeat:
|
|||||||
first_free = next;
|
first_free = next;
|
||||||
}
|
}
|
||||||
|
|
||||||
do_insert:
|
/* these flags will only be set on states that have transitions */
|
||||||
if (c < 0) {
|
if (c < 0) {
|
||||||
base |= MATCH_FLAG_OOB_TRANSITION;
|
base |= MATCH_FLAG_OOB_TRANSITION;
|
||||||
}
|
}
|
||||||
|
do_insert:
|
||||||
|
/* While a state without transitions could have the diff encode
|
||||||
|
* flag set, it would be pointless resulting in just an extra
|
||||||
|
* state transition in the encoding chain, and so it should be
|
||||||
|
* considered an error
|
||||||
|
* TODO: add check that state without transitions isn't being
|
||||||
|
* given a diffencode flag
|
||||||
|
*/
|
||||||
if (from->flags & DiffEncodeFlag)
|
if (from->flags & DiffEncodeFlag)
|
||||||
base |= DiffEncodeBit32;
|
base |= DiffEncodeBit32;
|
||||||
default_base.push_back(make_pair(default_state, base));
|
default_base.push_back(make_pair(default_state, base));
|
||||||
|
733
parser/mount.cc
733
parser/mount.cc
@@ -98,6 +98,9 @@
|
|||||||
* nomand
|
* nomand
|
||||||
* #define MS_DIRSYNC 128 Directory modifications are synchronous
|
* #define MS_DIRSYNC 128 Directory modifications are synchronous
|
||||||
* dirsync
|
* dirsync
|
||||||
|
* #define MS_NOSYMFOLLOW 256 Do not follow symlinks
|
||||||
|
* symfollow
|
||||||
|
* nosymfollow
|
||||||
* #define MS_NOATIME 1024 Do not update access times
|
* #define MS_NOATIME 1024 Do not update access times
|
||||||
* noatime
|
* noatime
|
||||||
* atime
|
* atime
|
||||||
@@ -139,6 +142,9 @@
|
|||||||
* #define MS_STRICTATIME (1<<24) Always perform atime updates
|
* #define MS_STRICTATIME (1<<24) Always perform atime updates
|
||||||
* strictatime
|
* strictatime
|
||||||
* nostrictatime
|
* nostrictatime
|
||||||
|
* #define MS_LAZYTIME (1<<25) Update the on-disk [acm]times lazily
|
||||||
|
* lazytime
|
||||||
|
* nolazytime
|
||||||
* #define MS_NOSEC (1<<28)
|
* #define MS_NOSEC (1<<28)
|
||||||
* #define MS_BORN (1<<29)
|
* #define MS_BORN (1<<29)
|
||||||
* #define MS_ACTIVE (1<<30)
|
* #define MS_ACTIVE (1<<30)
|
||||||
@@ -246,6 +252,8 @@ static struct mnt_keyword_table mnt_opts_table[] = {
|
|||||||
{"mand", MS_MAND, 0},
|
{"mand", MS_MAND, 0},
|
||||||
{"nomand", 0, MS_MAND},
|
{"nomand", 0, MS_MAND},
|
||||||
{"dirsync", MS_DIRSYNC, 0},
|
{"dirsync", MS_DIRSYNC, 0},
|
||||||
|
{"symfollow", 0, MS_NOSYMFOLLOW},
|
||||||
|
{"nosymfollow", MS_NOSYMFOLLOW, 0},
|
||||||
{"atime", 0, MS_NOATIME},
|
{"atime", 0, MS_NOATIME},
|
||||||
{"noatime", MS_NOATIME, 0},
|
{"noatime", MS_NOATIME, 0},
|
||||||
{"diratime", 0, MS_NODIRATIME},
|
{"diratime", 0, MS_NODIRATIME},
|
||||||
@@ -283,6 +291,9 @@ static struct mnt_keyword_table mnt_opts_table[] = {
|
|||||||
{"iversion", MS_IVERSION, 0},
|
{"iversion", MS_IVERSION, 0},
|
||||||
{"noiversion", 0, MS_IVERSION},
|
{"noiversion", 0, MS_IVERSION},
|
||||||
{"strictatime", MS_STRICTATIME, 0},
|
{"strictatime", MS_STRICTATIME, 0},
|
||||||
|
{"nostrictatime", 0, MS_STRICTATIME},
|
||||||
|
{"lazytime", MS_LAZYTIME, 0},
|
||||||
|
{"nolazytime", 0, MS_LAZYTIME},
|
||||||
{"user", 0, (unsigned int) MS_NOUSER},
|
{"user", 0, (unsigned int) MS_NOUSER},
|
||||||
{"nouser", (unsigned int) MS_NOUSER, 0},
|
{"nouser", (unsigned int) MS_NOUSER, 0},
|
||||||
|
|
||||||
@@ -298,6 +309,22 @@ static struct mnt_keyword_table mnt_conds_table[] = {
|
|||||||
{NULL, 0, 0}
|
{NULL, 0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static ostream &dump_flags(ostream &os,
|
||||||
|
pair <unsigned int, unsigned int> flags)
|
||||||
|
{
|
||||||
|
for (int i = 0; mnt_opts_table[i].keyword; i++) {
|
||||||
|
if ((flags.first & mnt_opts_table[i].set) ||
|
||||||
|
(flags.second & mnt_opts_table[i].clear))
|
||||||
|
os << mnt_opts_table[i].keyword;
|
||||||
|
}
|
||||||
|
return os;
|
||||||
|
}
|
||||||
|
|
||||||
|
ostream &operator<<(ostream &os, pair<unsigned int, unsigned int> flags)
|
||||||
|
{
|
||||||
|
return dump_flags(os, flags);
|
||||||
|
}
|
||||||
|
|
||||||
static int find_mnt_keyword(struct mnt_keyword_table *table, const char *name)
|
static int find_mnt_keyword(struct mnt_keyword_table *table, const char *name)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
@@ -320,7 +347,7 @@ int is_valid_mnt_cond(const char *name, int src)
|
|||||||
|
|
||||||
static unsigned int extract_flags(struct value_list **list, unsigned int *inv)
|
static unsigned int extract_flags(struct value_list **list, unsigned int *inv)
|
||||||
{
|
{
|
||||||
unsigned int flags = 0;
|
unsigned int flags = 0, invflags = 0;
|
||||||
*inv = 0;
|
*inv = 0;
|
||||||
|
|
||||||
struct value_list *entry, *tmp, *prev = NULL;
|
struct value_list *entry, *tmp, *prev = NULL;
|
||||||
@@ -329,11 +356,11 @@ static unsigned int extract_flags(struct value_list **list, unsigned int *inv)
|
|||||||
i = find_mnt_keyword(mnt_opts_table, entry->value);
|
i = find_mnt_keyword(mnt_opts_table, entry->value);
|
||||||
if (i != -1) {
|
if (i != -1) {
|
||||||
flags |= mnt_opts_table[i].set;
|
flags |= mnt_opts_table[i].set;
|
||||||
*inv |= mnt_opts_table[i].clear;
|
invflags |= mnt_opts_table[i].clear;
|
||||||
PDEBUG(" extracting mount flag %s req: 0x%x inv: 0x%x"
|
PDEBUG(" extracting mount flag %s req: 0x%x inv: 0x%x"
|
||||||
" => req: 0x%x inv: 0x%x\n",
|
" => req: 0x%x inv: 0x%x\n",
|
||||||
entry->value, mnt_opts_table[i].set,
|
entry->value, mnt_opts_table[i].set,
|
||||||
mnt_opts_table[i].clear, flags, *inv);
|
mnt_opts_table[i].clear, flags, invflags);
|
||||||
if (prev)
|
if (prev)
|
||||||
prev->next = tmp;
|
prev->next = tmp;
|
||||||
if (entry == *list)
|
if (entry == *list)
|
||||||
@@ -344,9 +371,27 @@ static unsigned int extract_flags(struct value_list **list, unsigned int *inv)
|
|||||||
prev = entry;
|
prev = entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (inv)
|
||||||
|
*inv = invflags;
|
||||||
|
|
||||||
return flags;
|
return flags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool conflicting_flags(unsigned int flags, unsigned int inv)
|
||||||
|
{
|
||||||
|
if (flags & inv) {
|
||||||
|
for (int i = 0; i < 31; i++) {
|
||||||
|
unsigned int mask = 1 << i;
|
||||||
|
if ((flags & inv) & mask) {
|
||||||
|
cerr << "conflicting flag values = "
|
||||||
|
<< flags << ", " << inv << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
static struct value_list *extract_fstype(struct cond_entry **conds)
|
static struct value_list *extract_fstype(struct cond_entry **conds)
|
||||||
{
|
{
|
||||||
struct value_list *list = NULL;
|
struct value_list *list = NULL;
|
||||||
@@ -369,22 +414,19 @@ static struct value_list *extract_fstype(struct cond_entry **conds)
|
|||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct value_list *extract_options(struct cond_entry **conds, int eq)
|
static struct cond_entry *extract_options(struct cond_entry **conds, int eq)
|
||||||
{
|
{
|
||||||
struct value_list *list = NULL;
|
struct cond_entry *list = NULL, *entry, *tmp, *prev = NULL;
|
||||||
|
|
||||||
struct cond_entry *entry, *tmp, *prev = NULL;
|
|
||||||
|
|
||||||
list_for_each_safe(*conds, entry, tmp) {
|
list_for_each_safe(*conds, entry, tmp) {
|
||||||
if ((strcmp(entry->name, "options") == 0 ||
|
if ((strcmp(entry->name, "options") == 0 ||
|
||||||
strcmp(entry->name, "option") == 0) &&
|
strcmp(entry->name, "option") == 0) &&
|
||||||
entry->eq == eq) {
|
entry->eq == eq) {
|
||||||
list_remove_at(*conds, prev, entry);
|
list_remove_at(*conds, prev, entry);
|
||||||
PDEBUG(" extracting option %s\n", entry->name);
|
PDEBUG(" extracting %s %s\n", entry->name, entry->eq ?
|
||||||
list_append(entry->vals, list);
|
"=" : "in");
|
||||||
list = entry->vals;
|
list_append(entry, list);
|
||||||
entry->vals = NULL;
|
list = entry;
|
||||||
free_cond_entry(entry);
|
|
||||||
} else
|
} else
|
||||||
prev = entry;
|
prev = entry;
|
||||||
}
|
}
|
||||||
@@ -392,60 +434,129 @@ static struct value_list *extract_options(struct cond_entry **conds, int eq)
|
|||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void perror_conds(const char *rule, struct cond_entry *conds)
|
||||||
|
{
|
||||||
|
struct cond_entry *entry;
|
||||||
|
|
||||||
|
list_for_each(conds, entry) {
|
||||||
|
PERROR( "unsupported %s condition '%s%s(...)'\n", rule, entry->name, entry->eq ? "=" : " in ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void perror_vals(const char *rule, struct value_list *vals)
|
||||||
|
{
|
||||||
|
struct value_list *entry;
|
||||||
|
|
||||||
|
list_for_each(vals, entry) {
|
||||||
|
PERROR( "unsupported %s value '%s'\n", rule, entry->value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void process_one_option(struct cond_entry *&opts, unsigned int &flags,
|
||||||
|
unsigned int &inv_flags)
|
||||||
|
{
|
||||||
|
struct cond_entry *entry;
|
||||||
|
struct value_list *vals;
|
||||||
|
|
||||||
|
entry = list_pop(opts);
|
||||||
|
vals = entry->vals;
|
||||||
|
entry->vals = NULL;
|
||||||
|
/* fail if there are any unknown optional flags */
|
||||||
|
if (opts) {
|
||||||
|
PERROR(" unsupported multiple 'mount options %s(...)'\n", entry->eq ? "=" : " in ");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
free_cond_entry(entry);
|
||||||
|
|
||||||
|
flags = extract_flags(&vals, &inv_flags);
|
||||||
|
if (vals) {
|
||||||
|
perror_vals("mount option", vals);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mnt_rule::mnt_rule(struct cond_entry *src_conds, char *device_p,
|
mnt_rule::mnt_rule(struct cond_entry *src_conds, char *device_p,
|
||||||
struct cond_entry *dst_conds unused, char *mnt_point_p,
|
struct cond_entry *dst_conds unused, char *mnt_point_p,
|
||||||
int allow_p):
|
int allow_p):
|
||||||
mnt_point(mnt_point_p), device(device_p), trans(NULL), opts(NULL),
|
mnt_point(mnt_point_p), device(device_p), trans(NULL), opts(NULL),
|
||||||
flags(0), inv_flags(0), audit(0), deny(0)
|
flagsv(0), opt_flagsv(0), audit(0), deny(0)
|
||||||
{
|
{
|
||||||
/* FIXME: dst_conds are ignored atm */
|
/* FIXME: dst_conds are ignored atm */
|
||||||
dev_type = extract_fstype(&src_conds);
|
dev_type = extract_fstype(&src_conds);
|
||||||
|
|
||||||
if (src_conds) {
|
if (src_conds) {
|
||||||
struct value_list *list = extract_options(&src_conds, 0);
|
/* move options in () to local list */
|
||||||
|
struct cond_entry *opts_in = extract_options(&src_conds, 0);
|
||||||
|
|
||||||
opts = extract_options(&src_conds, 1);
|
if (opts_in) {
|
||||||
if (opts)
|
unsigned int tmpflags = 0, tmpinv_flags = 0;
|
||||||
flags = extract_flags(&opts, &inv_flags);
|
struct cond_entry *entry;
|
||||||
|
|
||||||
if (list) {
|
while ((entry = list_pop(opts_in))) {
|
||||||
unsigned int tmpflags, tmpinv_flags = 0;
|
process_one_option(entry, tmpflags,
|
||||||
|
tmpinv_flags);
|
||||||
tmpflags = extract_flags(&list, &tmpinv_flags);
|
/* optional flags if set/clear mean the same
|
||||||
/* these flags are optional so set both */
|
* thing and can be represented by a single
|
||||||
tmpflags |= tmpinv_flags;
|
* bitset, also there is no need to check for
|
||||||
tmpinv_flags |= tmpflags;
|
* conflicting flags when they are optional
|
||||||
|
*/
|
||||||
flags |= tmpflags;
|
opt_flagsv.push_back(tmpflags | tmpinv_flags);
|
||||||
inv_flags |= tmpinv_flags;
|
}
|
||||||
|
|
||||||
if (opts)
|
|
||||||
list_append(opts, list);
|
|
||||||
else if (list)
|
|
||||||
opts = list;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* move options=() to opts list */
|
||||||
|
struct cond_entry *opts_eq = extract_options(&src_conds, 1);
|
||||||
|
if (opts_eq) {
|
||||||
|
unsigned int tmpflags = 0, tmpinv_flags = 0;
|
||||||
|
struct cond_entry *entry;
|
||||||
|
|
||||||
|
while ((entry = list_pop(opts_eq))) {
|
||||||
|
process_one_option(entry, tmpflags,
|
||||||
|
tmpinv_flags);
|
||||||
|
/* throw away tmpinv_flags, only needed in
|
||||||
|
* consistancy check
|
||||||
|
*/
|
||||||
|
if (allow_p & AA_DUMMY_REMOUNT)
|
||||||
|
tmpflags |= MS_REMOUNT;
|
||||||
|
|
||||||
|
if (conflicting_flags(tmpflags, tmpinv_flags)) {
|
||||||
|
PERROR("conflicting flags in the rule\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
flagsv.push_back(tmpflags);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (src_conds) {
|
||||||
|
perror_conds("mount", src_conds);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(flagsv.size() + opt_flagsv.size())) {
|
||||||
|
/* no flag options, and not remount, allow everything */
|
||||||
|
if (allow_p & AA_DUMMY_REMOUNT) {
|
||||||
|
flagsv.push_back(MS_REMOUNT);
|
||||||
|
opt_flagsv.push_back(MS_REMOUNT_FLAGS & ~MS_REMOUNT);
|
||||||
|
} else {
|
||||||
|
flagsv.push_back(MS_ALL_FLAGS);
|
||||||
|
opt_flagsv.push_back(MS_ALL_FLAGS);
|
||||||
|
}
|
||||||
|
} else if (!(flagsv.size())) {
|
||||||
|
/* no flags but opts set */
|
||||||
|
if (allow_p & AA_DUMMY_REMOUNT)
|
||||||
|
flagsv.push_back(MS_REMOUNT);
|
||||||
|
else
|
||||||
|
flagsv.push_back(0);
|
||||||
|
} else if (!(opt_flagsv.size())) {
|
||||||
|
opt_flagsv.push_back(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (allow_p & AA_DUMMY_REMOUNT) {
|
if (allow_p & AA_DUMMY_REMOUNT) {
|
||||||
allow_p = AA_MAY_MOUNT;
|
allow_p = AA_MAY_MOUNT;
|
||||||
flags |= MS_REMOUNT;
|
|
||||||
inv_flags = 0;
|
|
||||||
} else if (!(flags | inv_flags)) {
|
|
||||||
/* no flag options, and not remount, allow everything */
|
|
||||||
flags = MS_ALL_FLAGS;
|
|
||||||
inv_flags = MS_ALL_FLAGS;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allow = allow_p;
|
allow = allow_p;
|
||||||
|
|
||||||
if (src_conds) {
|
|
||||||
PERROR(" unsupported mount conditions\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
if (opts) {
|
|
||||||
PERROR(" unsupported mount options\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ostream &mnt_rule::dump(ostream &os)
|
ostream &mnt_rule::dump(ostream &os)
|
||||||
@@ -459,7 +570,11 @@ ostream &mnt_rule::dump(ostream &os)
|
|||||||
else
|
else
|
||||||
os << "error: unknown mount perm";
|
os << "error: unknown mount perm";
|
||||||
|
|
||||||
os << " (0x" << hex << flags << " - 0x" << inv_flags << ") ";
|
for (unsigned int i = 0; i < flagsv.size(); i++)
|
||||||
|
os << " flags=(0x" << hex << flagsv[i] << ")";
|
||||||
|
for (unsigned int i = 0; i < opt_flagsv.size(); i++)
|
||||||
|
os << " flags in (0x" << hex << opt_flagsv[i] << ")";
|
||||||
|
|
||||||
if (dev_type) {
|
if (dev_type) {
|
||||||
os << " type=";
|
os << " type=";
|
||||||
print_value_list(dev_type);
|
print_value_list(dev_type);
|
||||||
@@ -515,7 +630,7 @@ int mnt_rule::expand_variables(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int build_mnt_flags(char *buffer, int size, unsigned int flags,
|
static int build_mnt_flags(char *buffer, int size, unsigned int flags,
|
||||||
unsigned int inv_flags)
|
unsigned int opt_flags)
|
||||||
{
|
{
|
||||||
char *p = buffer;
|
char *p = buffer;
|
||||||
int i, len = 0;
|
int i, len = 0;
|
||||||
@@ -528,7 +643,7 @@ static int build_mnt_flags(char *buffer, int size, unsigned int flags,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
for (i = 0; i <= 31; ++i) {
|
for (i = 0; i <= 31; ++i) {
|
||||||
if ((flags & inv_flags) & (1 << i))
|
if ((opt_flags) & (1 << i))
|
||||||
len = snprintf(p, size, "(\\x%02x|)", i + 1);
|
len = snprintf(p, size, "(\\x%02x|)", i + 1);
|
||||||
else if (flags & (1 << i))
|
else if (flags & (1 << i))
|
||||||
len = snprintf(p, size, "\\x%02x", i + 1);
|
len = snprintf(p, size, "\\x%02x", i + 1);
|
||||||
@@ -583,7 +698,9 @@ void mnt_rule::warn_once(const char *name)
|
|||||||
rule_t::warn_once(name, "mount rules not enforce");
|
rule_t::warn_once(name, "mount rules not enforce");
|
||||||
}
|
}
|
||||||
|
|
||||||
int mnt_rule::gen_policy_re(Profile &prof)
|
|
||||||
|
int mnt_rule::gen_policy_remount(Profile &prof, int &count,
|
||||||
|
unsigned int flags, unsigned int opt_flags)
|
||||||
{
|
{
|
||||||
std::string mntbuf;
|
std::string mntbuf;
|
||||||
std::string devbuf;
|
std::string devbuf;
|
||||||
@@ -592,8 +709,320 @@ int mnt_rule::gen_policy_re(Profile &prof)
|
|||||||
std::string optsbuf;
|
std::string optsbuf;
|
||||||
char class_mount_hdr[64];
|
char class_mount_hdr[64];
|
||||||
const char *vec[5];
|
const char *vec[5];
|
||||||
|
int tmpallow;
|
||||||
|
|
||||||
|
sprintf(class_mount_hdr, "\\x%02x", AA_CLASS_MOUNT);
|
||||||
|
|
||||||
|
/* remount can't be conditional on device and type */
|
||||||
|
/* rule class single byte header */
|
||||||
|
mntbuf.assign(class_mount_hdr);
|
||||||
|
if (mnt_point) {
|
||||||
|
/* both device && mnt_point or just mnt_point */
|
||||||
|
if (!convert_entry(mntbuf, mnt_point))
|
||||||
|
goto fail;
|
||||||
|
vec[0] = mntbuf.c_str();
|
||||||
|
} else {
|
||||||
|
if (!convert_entry(mntbuf, device))
|
||||||
|
goto fail;
|
||||||
|
vec[0] = mntbuf.c_str();
|
||||||
|
}
|
||||||
|
/* skip device */
|
||||||
|
vec[1] = default_match_pattern;
|
||||||
|
/* skip type */
|
||||||
|
vec[2] = default_match_pattern;
|
||||||
|
|
||||||
|
if (!build_mnt_flags(flagsbuf, PATH_MAX, flags & MS_REMOUNT_FLAGS,
|
||||||
|
opt_flags & MS_REMOUNT_FLAGS))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
vec[3] = flagsbuf;
|
||||||
|
|
||||||
|
if (opts)
|
||||||
|
tmpallow = AA_MATCH_CONT;
|
||||||
|
else
|
||||||
|
tmpallow = allow;
|
||||||
|
|
||||||
|
/* rule for match without required data || data MATCH_CONT */
|
||||||
|
if (!prof.policy.rules->add_rule_vec(deny, tmpallow,
|
||||||
|
audit | AA_AUDIT_MNT_DATA, 4,
|
||||||
|
vec, dfaflags, false))
|
||||||
|
goto fail;
|
||||||
|
count++;
|
||||||
|
|
||||||
|
if (opts) {
|
||||||
|
/* rule with data match required */
|
||||||
|
optsbuf.clear();
|
||||||
|
if (!build_mnt_opts(optsbuf, opts))
|
||||||
|
goto fail;
|
||||||
|
vec[4] = optsbuf.c_str();
|
||||||
|
if (!prof.policy.rules->add_rule_vec(deny, allow,
|
||||||
|
audit | AA_AUDIT_MNT_DATA,
|
||||||
|
5, vec, dfaflags, false))
|
||||||
|
goto fail;
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return RULE_OK;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
return RULE_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mnt_rule::gen_policy_bind_mount(Profile &prof, int &count,
|
||||||
|
unsigned int flags, unsigned int opt_flags)
|
||||||
|
{
|
||||||
|
std::string mntbuf;
|
||||||
|
std::string devbuf;
|
||||||
|
std::string typebuf;
|
||||||
|
char flagsbuf[PATH_MAX + 3];
|
||||||
|
std::string optsbuf;
|
||||||
|
char class_mount_hdr[64];
|
||||||
|
const char *vec[5];
|
||||||
|
|
||||||
|
sprintf(class_mount_hdr, "\\x%02x", AA_CLASS_MOUNT);
|
||||||
|
|
||||||
|
/* bind mount rules can't be conditional on dev_type or data */
|
||||||
|
/* rule class single byte header */
|
||||||
|
mntbuf.assign(class_mount_hdr);
|
||||||
|
if (!convert_entry(mntbuf, mnt_point))
|
||||||
|
goto fail;
|
||||||
|
vec[0] = mntbuf.c_str();
|
||||||
|
if (!clear_and_convert_entry(devbuf, device))
|
||||||
|
goto fail;
|
||||||
|
vec[1] = devbuf.c_str();
|
||||||
|
/* skip type */
|
||||||
|
vec[2] = default_match_pattern;
|
||||||
|
|
||||||
|
if (!build_mnt_flags(flagsbuf, PATH_MAX, flags & MS_BIND_FLAGS,
|
||||||
|
opt_flags & MS_BIND_FLAGS))
|
||||||
|
goto fail;
|
||||||
|
vec[3] = flagsbuf;
|
||||||
|
if (!prof.policy.rules->add_rule_vec(deny, allow, audit, 4, vec,
|
||||||
|
dfaflags, false))
|
||||||
|
goto fail;
|
||||||
|
count++;
|
||||||
|
|
||||||
|
return RULE_OK;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
return RULE_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mnt_rule::gen_policy_change_mount_type(Profile &prof, int &count,
|
||||||
|
unsigned int flags,
|
||||||
|
unsigned int opt_flags)
|
||||||
|
{
|
||||||
|
std::string mntbuf;
|
||||||
|
std::string devbuf;
|
||||||
|
std::string typebuf;
|
||||||
|
char flagsbuf[PATH_MAX + 3];
|
||||||
|
std::string optsbuf;
|
||||||
|
char class_mount_hdr[64];
|
||||||
|
const char *vec[5];
|
||||||
|
char *mountpoint = mnt_point;
|
||||||
|
|
||||||
|
sprintf(class_mount_hdr, "\\x%02x", AA_CLASS_MOUNT);
|
||||||
|
|
||||||
|
/* change type base rules can specify the mount point by using
|
||||||
|
* the parser token position reserved to device. that's why if
|
||||||
|
* the mount point is not specified, we use device in its
|
||||||
|
* place. this is a deprecated behavior.
|
||||||
|
*
|
||||||
|
* change type base rules can not be conditional on device
|
||||||
|
* (source), device type or data
|
||||||
|
*/
|
||||||
|
/* rule class single byte header */
|
||||||
|
mntbuf.assign(class_mount_hdr);
|
||||||
|
if (flags && flags != MS_ALL_FLAGS && device && mnt_point) {
|
||||||
|
PERROR("source and mount point cannot be used at the "
|
||||||
|
"same time for propagation type flags");
|
||||||
|
goto fail;
|
||||||
|
} else if (device && !mnt_point) {
|
||||||
|
mountpoint = device;
|
||||||
|
}
|
||||||
|
if (!convert_entry(mntbuf, mountpoint))
|
||||||
|
goto fail;
|
||||||
|
vec[0] = mntbuf.c_str();
|
||||||
|
/* skip device and type */
|
||||||
|
vec[1] = default_match_pattern;
|
||||||
|
vec[2] = default_match_pattern;
|
||||||
|
|
||||||
|
if (!build_mnt_flags(flagsbuf, PATH_MAX, flags & MS_MAKE_FLAGS,
|
||||||
|
opt_flags & MS_MAKE_FLAGS))
|
||||||
|
goto fail;
|
||||||
|
vec[3] = flagsbuf;
|
||||||
|
if (!prof.policy.rules->add_rule_vec(deny, allow, audit, 4, vec,
|
||||||
|
dfaflags, false))
|
||||||
|
goto fail;
|
||||||
|
count++;
|
||||||
|
|
||||||
|
return RULE_OK;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
return RULE_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mnt_rule::gen_policy_move_mount(Profile &prof, int &count,
|
||||||
|
unsigned int flags, unsigned int opt_flags)
|
||||||
|
{
|
||||||
|
std::string mntbuf;
|
||||||
|
std::string devbuf;
|
||||||
|
std::string typebuf;
|
||||||
|
char flagsbuf[PATH_MAX + 3];
|
||||||
|
std::string optsbuf;
|
||||||
|
char class_mount_hdr[64];
|
||||||
|
const char *vec[5];
|
||||||
|
|
||||||
|
sprintf(class_mount_hdr, "\\x%02x", AA_CLASS_MOUNT);
|
||||||
|
|
||||||
|
/* mount move rules can not be conditional on dev_type,
|
||||||
|
* or data
|
||||||
|
*/
|
||||||
|
/* rule class single byte header */
|
||||||
|
mntbuf.assign(class_mount_hdr);
|
||||||
|
if (!convert_entry(mntbuf, mnt_point))
|
||||||
|
goto fail;
|
||||||
|
vec[0] = mntbuf.c_str();
|
||||||
|
if (!clear_and_convert_entry(devbuf, device))
|
||||||
|
goto fail;
|
||||||
|
vec[1] = devbuf.c_str();
|
||||||
|
/* skip type */
|
||||||
|
vec[2] = default_match_pattern;
|
||||||
|
|
||||||
|
if (!build_mnt_flags(flagsbuf, PATH_MAX, flags & MS_MOVE_FLAGS,
|
||||||
|
opt_flags & MS_MOVE_FLAGS))
|
||||||
|
goto fail;
|
||||||
|
vec[3] = flagsbuf;
|
||||||
|
if (!prof.policy.rules->add_rule_vec(deny, allow, audit, 4, vec,
|
||||||
|
dfaflags, false))
|
||||||
|
goto fail;
|
||||||
|
count++;
|
||||||
|
|
||||||
|
return RULE_OK;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
return RULE_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mnt_rule::gen_policy_new_mount(Profile &prof, int &count,
|
||||||
|
unsigned int flags, unsigned int opt_flags)
|
||||||
|
{
|
||||||
|
std::string mntbuf;
|
||||||
|
std::string devbuf;
|
||||||
|
std::string typebuf;
|
||||||
|
char flagsbuf[PATH_MAX + 3];
|
||||||
|
std::string optsbuf;
|
||||||
|
char class_mount_hdr[64];
|
||||||
|
const char *vec[5];
|
||||||
|
int tmpallow;
|
||||||
|
|
||||||
|
sprintf(class_mount_hdr, "\\x%02x", AA_CLASS_MOUNT);
|
||||||
|
|
||||||
|
/* rule class single byte header */
|
||||||
|
mntbuf.assign(class_mount_hdr);
|
||||||
|
if (!convert_entry(mntbuf, mnt_point))
|
||||||
|
goto fail;
|
||||||
|
vec[0] = mntbuf.c_str();
|
||||||
|
if (!clear_and_convert_entry(devbuf, device))
|
||||||
|
goto fail;
|
||||||
|
vec[1] = devbuf.c_str();
|
||||||
|
typebuf.clear();
|
||||||
|
if (!build_list_val_expr(typebuf, dev_type))
|
||||||
|
goto fail;
|
||||||
|
vec[2] = typebuf.c_str();
|
||||||
|
|
||||||
|
if (!build_mnt_flags(flagsbuf, PATH_MAX, flags & MS_NEW_FLAGS,
|
||||||
|
opt_flags & MS_NEW_FLAGS))
|
||||||
|
goto fail;
|
||||||
|
vec[3] = flagsbuf;
|
||||||
|
|
||||||
|
if (opts)
|
||||||
|
tmpallow = AA_MATCH_CONT;
|
||||||
|
else
|
||||||
|
tmpallow = allow;
|
||||||
|
|
||||||
|
/* rule for match without required data || data MATCH_CONT */
|
||||||
|
if (!prof.policy.rules->add_rule_vec(deny, tmpallow,
|
||||||
|
audit | AA_AUDIT_MNT_DATA, 4,
|
||||||
|
vec, dfaflags, false))
|
||||||
|
goto fail;
|
||||||
|
count++;
|
||||||
|
|
||||||
|
if (opts) {
|
||||||
|
/* rule with data match required */
|
||||||
|
optsbuf.clear();
|
||||||
|
if (!build_mnt_opts(optsbuf, opts))
|
||||||
|
goto fail;
|
||||||
|
vec[4] = optsbuf.c_str();
|
||||||
|
if (!prof.policy.rules->add_rule_vec(deny, allow,
|
||||||
|
audit | AA_AUDIT_MNT_DATA,
|
||||||
|
5, vec, dfaflags, false))
|
||||||
|
goto fail;
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return RULE_OK;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
return RULE_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mnt_rule::gen_flag_rules(Profile &prof, int &count, unsigned int flags,
|
||||||
|
unsigned int opt_flags)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* XXX: added !flags to cover cases like:
|
||||||
|
* mount options in (bind) /d -> /4,
|
||||||
|
*/
|
||||||
|
if ((allow & AA_MAY_MOUNT) && (!flags || flags == MS_ALL_FLAGS)) {
|
||||||
|
/* no mount flags specified, generate multiple rules */
|
||||||
|
if (!device && !dev_type &&
|
||||||
|
gen_policy_remount(prof, count, flags, opt_flags) == RULE_ERROR)
|
||||||
|
return RULE_ERROR;
|
||||||
|
if (!dev_type && !opts &&
|
||||||
|
gen_policy_bind_mount(prof, count, flags, opt_flags) == RULE_ERROR)
|
||||||
|
return RULE_ERROR;
|
||||||
|
if ((!device || !mnt_point) && !dev_type && !opts &&
|
||||||
|
gen_policy_change_mount_type(prof, count, flags, opt_flags) == RULE_ERROR)
|
||||||
|
return RULE_ERROR;
|
||||||
|
if (!dev_type && !opts &&
|
||||||
|
gen_policy_move_mount(prof, count, flags, opt_flags) == RULE_ERROR)
|
||||||
|
return RULE_ERROR;
|
||||||
|
|
||||||
|
return gen_policy_new_mount(prof, count, flags, opt_flags);
|
||||||
|
} else if ((allow & AA_MAY_MOUNT) && (flags & MS_REMOUNT)
|
||||||
|
&& !device && !dev_type) {
|
||||||
|
return gen_policy_remount(prof, count, flags, opt_flags);
|
||||||
|
} else if ((allow & AA_MAY_MOUNT) && (flags & MS_BIND)
|
||||||
|
&& !dev_type && !opts) {
|
||||||
|
return gen_policy_bind_mount(prof, count, flags, opt_flags);
|
||||||
|
} else if ((allow & AA_MAY_MOUNT) &&
|
||||||
|
(flags & (MS_MAKE_CMDS))
|
||||||
|
&& (!device || !mnt_point) && !dev_type && !opts) {
|
||||||
|
return gen_policy_change_mount_type(prof, count, flags, opt_flags);
|
||||||
|
} else if ((allow & AA_MAY_MOUNT) && (flags & MS_MOVE)
|
||||||
|
&& !dev_type && !opts) {
|
||||||
|
return gen_policy_move_mount(prof, count, flags, opt_flags);
|
||||||
|
} else if ((allow & AA_MAY_MOUNT) &&
|
||||||
|
((flags | opt_flags) & ~MS_CMDS)) {
|
||||||
|
/* generic mount if flags are set that are not covered by
|
||||||
|
* above commands
|
||||||
|
*/
|
||||||
|
return gen_policy_new_mount(prof, count, flags, opt_flags);
|
||||||
|
} /* else must be RULE_OK for some rules */
|
||||||
|
|
||||||
|
return RULE_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mnt_rule::gen_policy_re(Profile &prof)
|
||||||
|
{
|
||||||
|
std::string mntbuf;
|
||||||
|
std::string devbuf;
|
||||||
|
std::string typebuf;
|
||||||
|
std::string optsbuf;
|
||||||
|
char class_mount_hdr[64];
|
||||||
|
const char *vec[5];
|
||||||
int count = 0;
|
int count = 0;
|
||||||
unsigned int tmpflags, tmpinv_flags;
|
|
||||||
|
|
||||||
if (!features_supports_mount) {
|
if (!features_supports_mount) {
|
||||||
warn_once(prof.name);
|
warn_once(prof.name);
|
||||||
@@ -605,202 +1034,10 @@ int mnt_rule::gen_policy_re(Profile &prof)
|
|||||||
/* a single mount rule may result in multiple matching rules being
|
/* a single mount rule may result in multiple matching rules being
|
||||||
* created in the backend to cover all the possible choices
|
* created in the backend to cover all the possible choices
|
||||||
*/
|
*/
|
||||||
|
for (size_t i = 0; i < flagsv.size(); i++) {
|
||||||
if ((allow & AA_MAY_MOUNT) && (flags & MS_REMOUNT)
|
for (size_t j = 0; j < opt_flagsv.size(); j++) {
|
||||||
&& !device && !dev_type) {
|
if (gen_flag_rules(prof, count, flagsv[i], opt_flagsv[j]) == RULE_ERROR)
|
||||||
int tmpallow;
|
|
||||||
/* remount can't be conditional on device and type */
|
|
||||||
/* rule class single byte header */
|
|
||||||
mntbuf.assign(class_mount_hdr);
|
|
||||||
if (mnt_point) {
|
|
||||||
/* both device && mnt_point or just mnt_point */
|
|
||||||
if (!convert_entry(mntbuf, mnt_point))
|
|
||||||
goto fail;
|
goto fail;
|
||||||
vec[0] = mntbuf.c_str();
|
|
||||||
} else {
|
|
||||||
if (!convert_entry(mntbuf, device))
|
|
||||||
goto fail;
|
|
||||||
vec[0] = mntbuf.c_str();
|
|
||||||
}
|
|
||||||
/* skip device */
|
|
||||||
vec[1] = default_match_pattern;
|
|
||||||
/* skip type */
|
|
||||||
vec[2] = default_match_pattern;
|
|
||||||
|
|
||||||
tmpflags = flags;
|
|
||||||
tmpinv_flags = inv_flags;
|
|
||||||
if (tmpflags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_REMOUNT_FLAGS;
|
|
||||||
if (tmpinv_flags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_REMOUNT_FLAGS;
|
|
||||||
if (!build_mnt_flags(flagsbuf, PATH_MAX, tmpflags, tmpinv_flags))
|
|
||||||
goto fail;
|
|
||||||
vec[3] = flagsbuf;
|
|
||||||
|
|
||||||
if (opts)
|
|
||||||
tmpallow = AA_MATCH_CONT;
|
|
||||||
else
|
|
||||||
tmpallow = allow;
|
|
||||||
|
|
||||||
/* rule for match without required data || data MATCH_CONT */
|
|
||||||
if (!prof.policy.rules->add_rule_vec(deny, tmpallow,
|
|
||||||
audit | AA_AUDIT_MNT_DATA, 4,
|
|
||||||
vec, dfaflags, false))
|
|
||||||
goto fail;
|
|
||||||
count++;
|
|
||||||
|
|
||||||
if (opts) {
|
|
||||||
/* rule with data match required */
|
|
||||||
optsbuf.clear();
|
|
||||||
if (!build_mnt_opts(optsbuf, opts))
|
|
||||||
goto fail;
|
|
||||||
vec[4] = optsbuf.c_str();
|
|
||||||
if (!prof.policy.rules->add_rule_vec(deny, allow,
|
|
||||||
audit | AA_AUDIT_MNT_DATA,
|
|
||||||
5, vec, dfaflags, false))
|
|
||||||
goto fail;
|
|
||||||
count++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ((allow & AA_MAY_MOUNT) && (flags & MS_BIND)
|
|
||||||
&& !dev_type && !opts) {
|
|
||||||
/* bind mount rules can't be conditional on dev_type or data */
|
|
||||||
/* rule class single byte header */
|
|
||||||
mntbuf.assign(class_mount_hdr);
|
|
||||||
if (!convert_entry(mntbuf, mnt_point))
|
|
||||||
goto fail;
|
|
||||||
vec[0] = mntbuf.c_str();
|
|
||||||
if (!clear_and_convert_entry(devbuf, device))
|
|
||||||
goto fail;
|
|
||||||
vec[1] = devbuf.c_str();
|
|
||||||
/* skip type */
|
|
||||||
vec[2] = default_match_pattern;
|
|
||||||
|
|
||||||
tmpflags = flags;
|
|
||||||
tmpinv_flags = inv_flags;
|
|
||||||
if (tmpflags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_BIND_FLAGS;
|
|
||||||
if (tmpinv_flags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_BIND_FLAGS;
|
|
||||||
if (!build_mnt_flags(flagsbuf, PATH_MAX, tmpflags, tmpinv_flags))
|
|
||||||
goto fail;
|
|
||||||
vec[3] = flagsbuf;
|
|
||||||
if (!prof.policy.rules->add_rule_vec(deny, allow, audit, 4, vec,
|
|
||||||
dfaflags, false))
|
|
||||||
goto fail;
|
|
||||||
count++;
|
|
||||||
}
|
|
||||||
if ((allow & AA_MAY_MOUNT) &&
|
|
||||||
(flags & (MS_UNBINDABLE | MS_PRIVATE | MS_SLAVE | MS_SHARED))
|
|
||||||
&& !device && !dev_type && !opts) {
|
|
||||||
/* change type base rules can not be conditional on device,
|
|
||||||
* device type or data
|
|
||||||
*/
|
|
||||||
/* rule class single byte header */
|
|
||||||
mntbuf.assign(class_mount_hdr);
|
|
||||||
if (!convert_entry(mntbuf, mnt_point))
|
|
||||||
goto fail;
|
|
||||||
vec[0] = mntbuf.c_str();
|
|
||||||
/* skip device and type */
|
|
||||||
vec[1] = default_match_pattern;
|
|
||||||
vec[2] = default_match_pattern;
|
|
||||||
|
|
||||||
tmpflags = flags;
|
|
||||||
tmpinv_flags = inv_flags;
|
|
||||||
if (tmpflags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_MAKE_FLAGS;
|
|
||||||
if (tmpinv_flags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_MAKE_FLAGS;
|
|
||||||
if (!build_mnt_flags(flagsbuf, PATH_MAX, tmpflags, tmpinv_flags))
|
|
||||||
goto fail;
|
|
||||||
vec[3] = flagsbuf;
|
|
||||||
if (!prof.policy.rules->add_rule_vec(deny, allow, audit, 4, vec,
|
|
||||||
dfaflags, false))
|
|
||||||
goto fail;
|
|
||||||
count++;
|
|
||||||
}
|
|
||||||
if ((allow & AA_MAY_MOUNT) && (flags & MS_MOVE)
|
|
||||||
&& !dev_type && !opts) {
|
|
||||||
/* mount move rules can not be conditional on dev_type,
|
|
||||||
* or data
|
|
||||||
*/
|
|
||||||
/* rule class single byte header */
|
|
||||||
mntbuf.assign(class_mount_hdr);
|
|
||||||
if (!convert_entry(mntbuf, mnt_point))
|
|
||||||
goto fail;
|
|
||||||
vec[0] = mntbuf.c_str();
|
|
||||||
if (!clear_and_convert_entry(devbuf, device))
|
|
||||||
goto fail;
|
|
||||||
vec[1] = devbuf.c_str();
|
|
||||||
/* skip type */
|
|
||||||
vec[2] = default_match_pattern;
|
|
||||||
|
|
||||||
tmpflags = flags;
|
|
||||||
tmpinv_flags = inv_flags;
|
|
||||||
if (tmpflags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_MOVE_FLAGS;
|
|
||||||
if (tmpinv_flags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= MS_MOVE_FLAGS;
|
|
||||||
if (!build_mnt_flags(flagsbuf, PATH_MAX, tmpflags, tmpinv_flags))
|
|
||||||
goto fail;
|
|
||||||
vec[3] = flagsbuf;
|
|
||||||
if (!prof.policy.rules->add_rule_vec(deny, allow, audit, 4, vec,
|
|
||||||
dfaflags, false))
|
|
||||||
goto fail;
|
|
||||||
count++;
|
|
||||||
}
|
|
||||||
if ((allow & AA_MAY_MOUNT) &&
|
|
||||||
(flags | inv_flags) & ~MS_CMDS) {
|
|
||||||
int tmpallow;
|
|
||||||
/* generic mount if flags are set that are not covered by
|
|
||||||
* above commands
|
|
||||||
*/
|
|
||||||
/* rule class single byte header */
|
|
||||||
mntbuf.assign(class_mount_hdr);
|
|
||||||
if (!convert_entry(mntbuf, mnt_point))
|
|
||||||
goto fail;
|
|
||||||
vec[0] = mntbuf.c_str();
|
|
||||||
if (!clear_and_convert_entry(devbuf, device))
|
|
||||||
goto fail;
|
|
||||||
vec[1] = devbuf.c_str();
|
|
||||||
typebuf.clear();
|
|
||||||
if (!build_list_val_expr(typebuf, dev_type))
|
|
||||||
goto fail;
|
|
||||||
vec[2] = typebuf.c_str();
|
|
||||||
|
|
||||||
tmpflags = flags;
|
|
||||||
tmpinv_flags = inv_flags;
|
|
||||||
if (tmpflags != MS_ALL_FLAGS)
|
|
||||||
tmpflags &= ~MS_CMDS;
|
|
||||||
if (tmpinv_flags != MS_ALL_FLAGS)
|
|
||||||
tmpinv_flags &= ~MS_CMDS;
|
|
||||||
if (!build_mnt_flags(flagsbuf, PATH_MAX, tmpflags, tmpinv_flags))
|
|
||||||
goto fail;
|
|
||||||
vec[3] = flagsbuf;
|
|
||||||
|
|
||||||
if (opts)
|
|
||||||
tmpallow = AA_MATCH_CONT;
|
|
||||||
else
|
|
||||||
tmpallow = allow;
|
|
||||||
|
|
||||||
/* rule for match without required data || data MATCH_CONT */
|
|
||||||
if (!prof.policy.rules->add_rule_vec(deny, tmpallow,
|
|
||||||
audit | AA_AUDIT_MNT_DATA, 4,
|
|
||||||
vec, dfaflags, false))
|
|
||||||
goto fail;
|
|
||||||
count++;
|
|
||||||
|
|
||||||
if (opts) {
|
|
||||||
/* rule with data match required */
|
|
||||||
optsbuf.clear();
|
|
||||||
if (!build_mnt_opts(optsbuf, opts))
|
|
||||||
goto fail;
|
|
||||||
vec[4] = optsbuf.c_str();
|
|
||||||
if (!prof.policy.rules->add_rule_vec(deny, allow,
|
|
||||||
audit | AA_AUDIT_MNT_DATA,
|
|
||||||
5, vec, dfaflags, false))
|
|
||||||
goto fail;
|
|
||||||
count++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (allow & AA_MAY_UMOUNT) {
|
if (allow & AA_MAY_UMOUNT) {
|
||||||
|
@@ -20,6 +20,7 @@
|
|||||||
#define __AA_MOUNT_H
|
#define __AA_MOUNT_H
|
||||||
|
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "parser.h"
|
#include "parser.h"
|
||||||
#include "rule.h"
|
#include "rule.h"
|
||||||
@@ -39,6 +40,8 @@
|
|||||||
#define MS_MAND (1 << 6)
|
#define MS_MAND (1 << 6)
|
||||||
#define MS_NOMAND 0
|
#define MS_NOMAND 0
|
||||||
#define MS_DIRSYNC (1 << 7)
|
#define MS_DIRSYNC (1 << 7)
|
||||||
|
#define MS_SYMFOLLOW 0
|
||||||
|
#define MS_NOSYMFOLLOW (1 << 8)
|
||||||
#define MS_NODIRSYNC 0
|
#define MS_NODIRSYNC 0
|
||||||
#define MS_NOATIME (1 << 10)
|
#define MS_NOATIME (1 << 10)
|
||||||
#define MS_ATIME 0
|
#define MS_ATIME 0
|
||||||
@@ -61,6 +64,7 @@
|
|||||||
#define MS_IVERSION (1 << 23)
|
#define MS_IVERSION (1 << 23)
|
||||||
#define MS_NOIVERSION 0
|
#define MS_NOIVERSION 0
|
||||||
#define MS_STRICTATIME (1 << 24)
|
#define MS_STRICTATIME (1 << 24)
|
||||||
|
#define MS_LAZYTIME (1 << 25)
|
||||||
#define MS_NOUSER (1 << 31)
|
#define MS_NOUSER (1 << 31)
|
||||||
#define MS_USER 0
|
#define MS_USER 0
|
||||||
|
|
||||||
@@ -74,12 +78,14 @@
|
|||||||
|
|
||||||
#define MS_ALL_FLAGS (MS_RDONLY | MS_NOSUID | MS_NODEV | MS_NOEXEC | \
|
#define MS_ALL_FLAGS (MS_RDONLY | MS_NOSUID | MS_NODEV | MS_NOEXEC | \
|
||||||
MS_SYNC | MS_REMOUNT | MS_MAND | MS_DIRSYNC | \
|
MS_SYNC | MS_REMOUNT | MS_MAND | MS_DIRSYNC | \
|
||||||
|
MS_NOSYMFOLLOW | \
|
||||||
MS_NOATIME | MS_NODIRATIME | MS_BIND | MS_RBIND | \
|
MS_NOATIME | MS_NODIRATIME | MS_BIND | MS_RBIND | \
|
||||||
MS_MOVE | MS_VERBOSE | MS_ACL | \
|
MS_MOVE | MS_VERBOSE | MS_ACL | \
|
||||||
MS_UNBINDABLE | MS_RUNBINDABLE | \
|
MS_UNBINDABLE | MS_RUNBINDABLE | \
|
||||||
MS_PRIVATE | MS_RPRIVATE | \
|
MS_PRIVATE | MS_RPRIVATE | \
|
||||||
MS_SLAVE | MS_RSLAVE | MS_SHARED | MS_RSHARED | \
|
MS_SLAVE | MS_RSLAVE | MS_SHARED | MS_RSHARED | \
|
||||||
MS_RELATIME | MS_IVERSION | MS_STRICTATIME | MS_USER)
|
MS_RELATIME | MS_IVERSION | MS_STRICTATIME | \
|
||||||
|
MS_LAZYTIME | MS_USER)
|
||||||
|
|
||||||
/* set of flags we don't use but define (but not with the kernel values)
|
/* set of flags we don't use but define (but not with the kernel values)
|
||||||
* for MNT_FLAGS
|
* for MNT_FLAGS
|
||||||
@@ -94,16 +100,15 @@
|
|||||||
MS_KERNMOUNT | MS_STRICTATIME)
|
MS_KERNMOUNT | MS_STRICTATIME)
|
||||||
|
|
||||||
#define MS_BIND_FLAGS (MS_BIND | MS_RBIND)
|
#define MS_BIND_FLAGS (MS_BIND | MS_RBIND)
|
||||||
#define MS_MAKE_FLAGS ((MS_UNBINDABLE | MS_RUNBINDABLE | \
|
#define MS_MAKE_CMDS (MS_UNBINDABLE | MS_RUNBINDABLE | \
|
||||||
MS_PRIVATE | MS_RPRIVATE | \
|
MS_PRIVATE | MS_RPRIVATE | \
|
||||||
MS_SLAVE | MS_RSLAVE | MS_SHARED | MS_RSHARED) | \
|
MS_SLAVE | MS_RSLAVE | MS_SHARED | MS_RSHARED)
|
||||||
(MS_ALL_FLAGS & ~(MNT_FLAGS)))
|
#define MS_MAKE_FLAGS (MS_ALL_FLAGS & ~(MNT_FLAGS))
|
||||||
#define MS_MOVE_FLAGS (MS_MOVE)
|
#define MS_MOVE_FLAGS (MS_MOVE)
|
||||||
|
|
||||||
#define MS_CMDS (MS_MOVE | MS_REMOUNT | MS_BIND | MS_RBIND | \
|
#define MS_CMDS (MS_MOVE | MS_REMOUNT | MS_BIND | MS_RBIND | MS_MAKE_CMDS)
|
||||||
MS_UNBINDABLE | MS_RUNBINDABLE | MS_PRIVATE | MS_RPRIVATE | \
|
|
||||||
MS_SLAVE | MS_RSLAVE | MS_SHARED | MS_RSHARED)
|
|
||||||
#define MS_REMOUNT_FLAGS (MS_ALL_FLAGS & ~(MS_CMDS & ~MS_REMOUNT & ~MS_BIND & ~MS_RBIND))
|
#define MS_REMOUNT_FLAGS (MS_ALL_FLAGS & ~(MS_CMDS & ~MS_REMOUNT & ~MS_BIND & ~MS_RBIND))
|
||||||
|
#define MS_NEW_FLAGS (MS_ALL_FLAGS & ~MS_CMDS)
|
||||||
|
|
||||||
#define MNT_SRC_OPT 1
|
#define MNT_SRC_OPT 1
|
||||||
#define MNT_DST_OPT 2
|
#define MNT_DST_OPT 2
|
||||||
@@ -121,6 +126,19 @@
|
|||||||
|
|
||||||
|
|
||||||
class mnt_rule: public rule_t {
|
class mnt_rule: public rule_t {
|
||||||
|
int gen_policy_remount(Profile &prof, int &count, unsigned int flags,
|
||||||
|
unsigned int opt_flags);
|
||||||
|
int gen_policy_bind_mount(Profile &prof, int &count, unsigned int flags,
|
||||||
|
unsigned int opt_flags);
|
||||||
|
int gen_policy_change_mount_type(Profile &prof, int &count,
|
||||||
|
unsigned int flags,
|
||||||
|
unsigned int opt_flags);
|
||||||
|
int gen_policy_move_mount(Profile &prof, int &count, unsigned int flags,
|
||||||
|
unsigned int opt_flags);
|
||||||
|
int gen_policy_new_mount(Profile &prof, int &count, unsigned int flags,
|
||||||
|
unsigned int opt_flags);
|
||||||
|
int gen_flag_rules(Profile &prof, int &count, unsigned int flags,
|
||||||
|
unsigned int opt_flags);
|
||||||
public:
|
public:
|
||||||
char *mnt_point;
|
char *mnt_point;
|
||||||
char *device;
|
char *device;
|
||||||
@@ -128,7 +146,7 @@ public:
|
|||||||
struct value_list *dev_type;
|
struct value_list *dev_type;
|
||||||
struct value_list *opts;
|
struct value_list *opts;
|
||||||
|
|
||||||
unsigned int flags, inv_flags;
|
std::vector<unsigned int> flagsv, opt_flagsv;
|
||||||
|
|
||||||
int allow, audit;
|
int allow, audit;
|
||||||
int deny;
|
int deny;
|
||||||
|
@@ -232,6 +232,7 @@ do { \
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#define list_first(LIST) (LIST)
|
||||||
#define list_for_each(LIST, ENTRY) \
|
#define list_for_each(LIST, ENTRY) \
|
||||||
for ((ENTRY) = (LIST); (ENTRY); (ENTRY) = (ENTRY)->next)
|
for ((ENTRY) = (LIST); (ENTRY); (ENTRY) = (ENTRY)->next)
|
||||||
#define list_for_each_safe(LIST, ENTRY, TMP) \
|
#define list_for_each_safe(LIST, ENTRY, TMP) \
|
||||||
@@ -265,6 +266,16 @@ do { \
|
|||||||
prev; \
|
prev; \
|
||||||
})
|
})
|
||||||
|
|
||||||
|
#define list_pop(LIST) \
|
||||||
|
({ \
|
||||||
|
typeof(LIST) _entry = (LIST); \
|
||||||
|
if (LIST) { \
|
||||||
|
(LIST) = (LIST)->next; \
|
||||||
|
_entry->next = NULL; \
|
||||||
|
} \
|
||||||
|
_entry; \
|
||||||
|
})
|
||||||
|
|
||||||
#define list_remove_at(LIST, PREV, ENTRY) \
|
#define list_remove_at(LIST, PREV, ENTRY) \
|
||||||
if (PREV) \
|
if (PREV) \
|
||||||
(PREV)->next = (ENTRY)->next; \
|
(PREV)->next = (ENTRY)->next; \
|
||||||
|
@@ -165,6 +165,7 @@ FILE *search_path(char *filename, char **fullpath, bool *skip)
|
|||||||
if (g_includecache->find(buf)) {
|
if (g_includecache->find(buf)) {
|
||||||
/* hit do not want to re-include */
|
/* hit do not want to re-include */
|
||||||
*skip = true;
|
*skip = true;
|
||||||
|
free(buf);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -167,10 +167,10 @@ void include_filename(char *filename, int search, bool if_exists)
|
|||||||
include_file = search_path(filename, &fullpath, &cached);
|
include_file = search_path(filename, &fullpath, &cached);
|
||||||
if (!include_file && cached) {
|
if (!include_file && cached) {
|
||||||
goto skip;
|
goto skip;
|
||||||
} else if (preprocess_only) {
|
|
||||||
fprintf(yyout, "\n\n##included <%s>\n", filename);
|
|
||||||
} else if (!include_file && preprocess_only) {
|
} else if (!include_file && preprocess_only) {
|
||||||
fprintf(yyout, "\n\n##failed include <%s>\n", filename);
|
fprintf(yyout, "\n\n##failed include <%s>\n", filename);
|
||||||
|
} else if (preprocess_only) {
|
||||||
|
fprintf(yyout, "\n\n##included <%s>\n", filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (g_includecache->find(filename)) {
|
} else if (g_includecache->find(filename)) {
|
||||||
|
@@ -1146,7 +1146,7 @@ int process_profile(int option, aa_kernel_interface *kernel_interface,
|
|||||||
retval = process_binary(option, kernel_interface,
|
retval = process_binary(option, kernel_interface,
|
||||||
cachename);
|
cachename);
|
||||||
if (!retval || skip_bad_cache_rebuild)
|
if (!retval || skip_bad_cache_rebuild)
|
||||||
return retval;
|
goto out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1209,7 +1209,8 @@ int process_profile(int option, aa_kernel_interface *kernel_interface,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
|
/* cleanup */
|
||||||
|
reset_parser(profilename);
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1696,6 +1697,7 @@ int main(int argc, char *argv[])
|
|||||||
if (ofile)
|
if (ofile)
|
||||||
fclose(ofile);
|
fclose(ofile);
|
||||||
aa_policy_cache_unref(policy_cache);
|
aa_policy_cache_unref(policy_cache);
|
||||||
|
aa_kernel_interface_unref(kernel_interface);
|
||||||
|
|
||||||
return last_error;
|
return last_error;
|
||||||
}
|
}
|
||||||
|
@@ -486,13 +486,18 @@ static int process_profile_name_xmatch(Profile *prof)
|
|||||||
&prof->xmatch_len);
|
&prof->xmatch_len);
|
||||||
if (ptype == ePatternBasic)
|
if (ptype == ePatternBasic)
|
||||||
prof->xmatch_len = strlen(name);
|
prof->xmatch_len = strlen(name);
|
||||||
if (!prof->attachment)
|
|
||||||
free(name);
|
|
||||||
|
|
||||||
if (ptype == ePatternInvalid) {
|
if (ptype == ePatternInvalid) {
|
||||||
PERROR(_("%s: Invalid profile name '%s' - bad regular expression\n"), progname, name);
|
PERROR(_("%s: Invalid profile name '%s' - bad regular expression\n"), progname, name);
|
||||||
|
if (!prof->attachment)
|
||||||
|
free(name);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
} else if (ptype == ePatternBasic && !(prof->altnames || prof->attachment || prof->xattrs.list)) {
|
}
|
||||||
|
|
||||||
|
if (!prof->attachment)
|
||||||
|
free(name);
|
||||||
|
|
||||||
|
if (ptype == ePatternBasic && !(prof->altnames || prof->attachment || prof->xattrs.list)) {
|
||||||
/* no regex so do not set xmatch */
|
/* no regex so do not set xmatch */
|
||||||
prof->xmatch = NULL;
|
prof->xmatch = NULL;
|
||||||
prof->xmatch_len = 0;
|
prof->xmatch_len = 0;
|
||||||
|
@@ -1773,7 +1773,7 @@ static int abi_features_base(struct aa_features **features, char *filename, bool
|
|||||||
{
|
{
|
||||||
autofclose FILE *f = NULL;
|
autofclose FILE *f = NULL;
|
||||||
struct stat my_stat;
|
struct stat my_stat;
|
||||||
char *fullpath = NULL;
|
autofree char *fullpath = NULL;
|
||||||
bool cached;
|
bool cached;
|
||||||
|
|
||||||
if (search) {
|
if (search) {
|
||||||
|
@@ -643,6 +643,16 @@ verify_binary_equality "attachment slash filtering" \
|
|||||||
@{FOO}=/foo
|
@{FOO}=/foo
|
||||||
/t @{BAR}/@{FOO} { }"
|
/t @{BAR}/@{FOO} { }"
|
||||||
|
|
||||||
|
# This can potentially fail as ideally it requires a better dfa comparison
|
||||||
|
# routine as it can generates hormomorphic dfas. The enumeration of the
|
||||||
|
# dfas dumped will be different, even if the binary is the same
|
||||||
|
# Note: this test in the future will require -O filter-deny and
|
||||||
|
# -O minimize and -O remove-unreachable.
|
||||||
|
verify_binary_equality "mount specific deny doesn't affect non-overlapping" \
|
||||||
|
"/t { mount options=bind /e/ -> /**, }" \
|
||||||
|
"/t { audit deny mount /s/** -> /**,
|
||||||
|
mount options=bind /e/ -> /**, }"
|
||||||
|
|
||||||
if [ $fails -ne 0 ] || [ $errors -ne 0 ]
|
if [ $fails -ne 0 ] || [ $errors -ne 0 ]
|
||||||
then
|
then
|
||||||
printf "ERRORS: %d\nFAILS: %d\n" $errors $fails 2>&1
|
printf "ERRORS: %d\nFAILS: %d\n" $errors $fails 2>&1
|
||||||
|
@@ -27,7 +27,7 @@ trans_modifiers = {
|
|||||||
|
|
||||||
targets = ("", "target", "target2")
|
targets = ("", "target", "target2")
|
||||||
# null_target uses "_" instead of "" because "" gets skipped in some for loops. Replace with "" when actually using the value.
|
# null_target uses "_" instead of "" because "" gets skipped in some for loops. Replace with "" when actually using the value.
|
||||||
null_target = ("_")
|
null_target = ("_",)
|
||||||
|
|
||||||
named_trans = {
|
named_trans = {
|
||||||
"p": targets,
|
"p": targets,
|
||||||
|
7
parser/tst/simple_tests/mount/bad_1.sd
Normal file
7
parser/tst/simple_tests/mount/bad_1.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule with incompatible options
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw, ro) -> /foo,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/bad_2.sd
Normal file
7
parser/tst/simple_tests/mount/bad_2.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule with incompatible options
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw ro) -> /foo,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/bad_3.sd
Normal file
7
parser/tst/simple_tests/mount/bad_3.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule with incompatible options
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw ro) fstype=procfs -> /foo,
|
||||||
|
}
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
#=Description basic mount rule
|
#=Description basic mount rule with incompatible options
|
||||||
#=EXRESULT PASS
|
#=EXRESULT FAIL
|
||||||
#
|
#
|
||||||
/usr/bin/foo {
|
/usr/bin/foo {
|
||||||
mount options=(rw ro) fstype=(procfs) none -> /foo,
|
mount options=(rw ro) fstype=(procfs) none -> /foo,
|
7
parser/tst/simple_tests/mount/bad_opt_29.sd
Normal file
7
parser/tst/simple_tests/mount/bad_opt_29.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule conflicting = options
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(strictatime, nostrictatime) -> /foo,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/bad_opt_30.sd
Normal file
7
parser/tst/simple_tests/mount/bad_opt_30.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule conflicting = options
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(lazytime, nolazytime) -> /foo,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/bad_opt_31.sd
Normal file
7
parser/tst/simple_tests/mount/bad_opt_31.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule conflicting = options
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(symfollow, nosymfollow) -> /foo,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_32.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_32.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(slave) /snap/bin/** -> /**,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_35.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_35.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rslave) /snap/bin/** -> /**,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_36.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_36.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(unbindable) /snap/bin/** -> /**,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_37.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_37.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(runbindable) /snap/bin/** -> /**,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_38.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_38.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(private) /snap/bin/** -> /**,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_39.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_39.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rprivate) /snap/bin/** -> /**,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_40.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_40.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(shared) /snap/bin/** -> /**,
|
||||||
|
}
|
6
parser/tst/simple_tests/mount/bad_opt_41.sd
Normal file
6
parser/tst/simple_tests/mount/bad_opt_41.sd
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#
|
||||||
|
#=Description test we fail make rules with source and mntpnt associated with MR 1054
|
||||||
|
#=EXRESULT FAIL
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rshared) /snap/bin/** -> /**,
|
||||||
|
}
|
@@ -3,5 +3,5 @@
|
|||||||
#=EXRESULT PASS
|
#=EXRESULT PASS
|
||||||
#
|
#
|
||||||
/usr/bin/foo {
|
/usr/bin/foo {
|
||||||
mount options=(rw, ro) -> /foo,
|
mount options=(rw nosuid) -> /foo,
|
||||||
}
|
}
|
||||||
|
@@ -1,7 +0,0 @@
|
|||||||
#
|
|
||||||
#=Description basic mount rule
|
|
||||||
#=EXRESULT PASS
|
|
||||||
#
|
|
||||||
/usr/bin/foo {
|
|
||||||
mount options=(rw ro) -> /foo,
|
|
||||||
}
|
|
@@ -1,7 +0,0 @@
|
|||||||
#
|
|
||||||
#=Description basic mount rule
|
|
||||||
#=EXRESULT PASS
|
|
||||||
#
|
|
||||||
/usr/bin/foo {
|
|
||||||
mount options=(rw ro) fstype=procfs -> /foo,
|
|
||||||
}
|
|
8
parser/tst/simple_tests/mount/ok_opt_56.sd
Normal file
8
parser/tst/simple_tests/mount/ok_opt_56.sd
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "nostrictatime" mount option
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=nostrictatime /a -> /1,
|
||||||
|
mount options=(nostrictatime) /b -> /2,
|
||||||
|
mount options in (nostrictatime) /d -> /4,
|
||||||
|
}
|
8
parser/tst/simple_tests/mount/ok_opt_57.sd
Normal file
8
parser/tst/simple_tests/mount/ok_opt_57.sd
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "lazytime" mount option
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=lazytime /a -> /1,
|
||||||
|
mount options=(lazytime) /b -> /2,
|
||||||
|
mount options in (lazytime) /d -> /4,
|
||||||
|
}
|
8
parser/tst/simple_tests/mount/ok_opt_58.sd
Normal file
8
parser/tst/simple_tests/mount/ok_opt_58.sd
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "nolazytime" mount option
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=nolazytime /a -> /1,
|
||||||
|
mount options=(nolazytime) /b -> /2,
|
||||||
|
mount options in (nolazytime) /d -> /4,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_59.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_59.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "strictatime" mount option in combination
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw,strictatime) /c -> /3,
|
||||||
|
mount options in (ro,strictatime) /e -> /5,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_60.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_60.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "nostrictatime" mount option in combination
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw,nostrictatime) /c -> /3,
|
||||||
|
mount options in (ro,nostrictatime) /e -> /5,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_61.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_61.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "lazytime" mount option in combination
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw,lazytime) /c -> /3,
|
||||||
|
mount options in (ro,lazytime) /e -> /5,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_62.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_62.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "nolazytime" mount option in combination
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw,nolazytime) /c -> /3,
|
||||||
|
mount options in (ro,nolazytime) /e -> /5,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_63.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_63.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule conflicting options with in
|
||||||
|
#=EXRESULT PASS
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options in (strictatime, nostrictatime) -> /foo,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_64.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_64.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule conflicting options with in
|
||||||
|
#=EXRESULT PASS
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options in (lazytime, nolazytime) -> /foo,
|
||||||
|
}
|
8
parser/tst/simple_tests/mount/ok_opt_65.sd
Normal file
8
parser/tst/simple_tests/mount/ok_opt_65.sd
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "nosymfollow" mount option
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=nosymfollow /a -> /1,
|
||||||
|
mount options=(nosymfollow) /b -> /2,
|
||||||
|
mount options in (nosymfollow) /d -> /4,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_66.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_66.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "symfollow" mount option in combination
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(rw,symfollow) /c -> /3,
|
||||||
|
mount options in (ro,symfollow) /e -> /5,
|
||||||
|
}
|
7
parser/tst/simple_tests/mount/ok_opt_67.sd
Normal file
7
parser/tst/simple_tests/mount/ok_opt_67.sd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
#=Description basic mount rule conflicting options with in
|
||||||
|
#=EXRESULT PASS
|
||||||
|
#
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options in (symfollow, nosymfollow) -> /foo,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_68.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_68.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "unbindable" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=unbindable /1,
|
||||||
|
mount options=(unbindable) /2,
|
||||||
|
mount options=(rw,unbindable) /3,
|
||||||
|
mount options in (unbindable) /4,
|
||||||
|
mount options in (ro,unbindable) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_69.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_69.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "runbindable" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=runbindable /1,
|
||||||
|
mount options=(runbindable) /2,
|
||||||
|
mount options=(rw,runbindable) /3,
|
||||||
|
mount options in (runbindable) /4,
|
||||||
|
mount options in (ro,runbindable) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_70.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_70.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "rprivate" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=rprivate /1,
|
||||||
|
mount options=(rprivate) /2,
|
||||||
|
mount options=(rw,rprivate) /3,
|
||||||
|
mount options in (rprivate) /4,
|
||||||
|
mount options in (ro,rprivate) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_71.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_71.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "private" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=private /1,
|
||||||
|
mount options=(private) /2,
|
||||||
|
mount options=(rw,private) /3,
|
||||||
|
mount options in (private) /4,
|
||||||
|
mount options in (ro,private) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_72.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_72.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "slave" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=slave /1,
|
||||||
|
mount options=(slave) /2,
|
||||||
|
mount options=(rw,slave) /3,
|
||||||
|
mount options in (slave) /4,
|
||||||
|
mount options in (ro,slave) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_73.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_73.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "rslave" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=rslave /1,
|
||||||
|
mount options=(rslave) /2,
|
||||||
|
mount options=(rw,rslave) /3,
|
||||||
|
mount options in (rslave) /4,
|
||||||
|
mount options in (ro,rslave) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_74.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_74.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "shared" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=shared /1,
|
||||||
|
mount options=(shared) /2,
|
||||||
|
mount options=(rw,shared) /3,
|
||||||
|
mount options in (shared) /4,
|
||||||
|
mount options in (ro,shared) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_75.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_75.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "rshared" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=rshared /1,
|
||||||
|
mount options=(rshared) /2,
|
||||||
|
mount options=(rw,rshared) /3,
|
||||||
|
mount options in (rshared) /4,
|
||||||
|
mount options in (ro,rshared) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_76.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_76.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-unbindable" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-unbindable /1,
|
||||||
|
mount options=(make-unbindable) /2,
|
||||||
|
mount options=(rw,make-unbindable) /3,
|
||||||
|
mount options in (make-unbindable) /4,
|
||||||
|
mount options in (ro,make-unbindable) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_77.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_77.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-runbindable" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-runbindable /1,
|
||||||
|
mount options=(make-runbindable) /2,
|
||||||
|
mount options=(rw,make-runbindable) /3,
|
||||||
|
mount options in (make-runbindable) /4,
|
||||||
|
mount options in (ro,make-runbindable) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_78.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_78.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-private" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-private /1,
|
||||||
|
mount options=(make-private) /2,
|
||||||
|
mount options=(rw,make-private) /3,
|
||||||
|
mount options in (make-private) /4,
|
||||||
|
mount options in (ro,make-private) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_79.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_79.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-rprivate" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-rprivate /1,
|
||||||
|
mount options=(make-rprivate) /2,
|
||||||
|
mount options=(rw,make-rprivate) /3,
|
||||||
|
mount options in (make-rprivate) /4,
|
||||||
|
mount options in (ro,make-rprivate) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_80.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_80.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-slave" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-slave /1,
|
||||||
|
mount options=(make-slave) /2,
|
||||||
|
mount options=(rw,make-slave) /3,
|
||||||
|
mount options in (make-slave) /4,
|
||||||
|
mount options in (ro,make-slave) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_81.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_81.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-shared" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-shared /1,
|
||||||
|
mount options=(make-shared) /2,
|
||||||
|
mount options=(rw,make-shared) /3,
|
||||||
|
mount options in (make-shared) /4,
|
||||||
|
mount options in (ro,make-shared) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_82.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_82.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-rslave" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-rslave /1,
|
||||||
|
mount options=(make-rslave) /2,
|
||||||
|
mount options=(rw,make-rslave) /3,
|
||||||
|
mount options in (make-rslave) /4,
|
||||||
|
mount options in (ro,make-rslave) /5,
|
||||||
|
}
|
10
parser/tst/simple_tests/mount/ok_opt_83.sd
Normal file
10
parser/tst/simple_tests/mount/ok_opt_83.sd
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
#=Description basic rules to test the "make-rshared" mount option passing mount point as source (should emit a deprecation warning)
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=make-rshared /1,
|
||||||
|
mount options=(make-rshared) /2,
|
||||||
|
mount options=(rw,make-rshared) /3,
|
||||||
|
mount options in (make-rshared) /4,
|
||||||
|
mount options in (ro,make-rshared) /5,
|
||||||
|
}
|
8
parser/tst/simple_tests/mount/ok_opt_84.sd
Normal file
8
parser/tst/simple_tests/mount/ok_opt_84.sd
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#
|
||||||
|
#=Description test we can parse rules associated with MR 1054
|
||||||
|
#=EXRESULT PASS
|
||||||
|
/usr/bin/foo {
|
||||||
|
mount options=(slave) /**,
|
||||||
|
mount options=(slave) -> /**,
|
||||||
|
mount /snap/bin/** -> /**,
|
||||||
|
}
|
@@ -83,7 +83,7 @@ local:
|
|||||||
fn=$$(basename $$profile); \
|
fn=$$(basename $$profile); \
|
||||||
echo "# Site-specific additions and overrides for '$$fn'" > ${PROFILES_SOURCE}/local/$$fn; \
|
echo "# Site-specific additions and overrides for '$$fn'" > ${PROFILES_SOURCE}/local/$$fn; \
|
||||||
grep "include[[:space:]]\\+if[[:space:]]\\+exists[[:space:]]\\+<local/$$fn>" "$$profile" >/dev/null || { echo "$$profile doesn't contain include if exists <local/$$fn>" ; exit 1; } ; \
|
grep "include[[:space:]]\\+if[[:space:]]\\+exists[[:space:]]\\+<local/$$fn>" "$$profile" >/dev/null || { echo "$$profile doesn't contain include if exists <local/$$fn>" ; exit 1; } ; \
|
||||||
done; \
|
done
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: local
|
install: local
|
||||||
@@ -119,7 +119,7 @@ CHECK_PROFILES=$(filter-out ${IGNORE_FILES} ${SUBDIRS}, $(wildcard ${PROFILES_SO
|
|||||||
CHECK_ABSTRACTIONS=$(shell find ${ABSTRACTIONS_SOURCE} -type f -print)
|
CHECK_ABSTRACTIONS=$(shell find ${ABSTRACTIONS_SOURCE} -type f -print)
|
||||||
|
|
||||||
.PHONY: check
|
.PHONY: check
|
||||||
check: check-parser check-logprof check-abstractions.d
|
check: check-parser check-logprof check-abstractions.d check-extras
|
||||||
|
|
||||||
.PHONY: check-parser
|
.PHONY: check-parser
|
||||||
check-parser: test-dependencies local
|
check-parser: test-dependencies local
|
||||||
@@ -151,3 +151,11 @@ check-abstractions.d:
|
|||||||
test "$$file" = 'ubuntu-helpers' && continue ; \
|
test "$$file" = 'ubuntu-helpers' && continue ; \
|
||||||
grep -q "^ include if exists <abstractions/$${file}.d>$$" $$file || { echo "$$file does not contain 'include if exists <abstractions/$${file}.d>'"; exit 1; } ; \
|
grep -q "^ include if exists <abstractions/$${file}.d>$$" $$file || { echo "$$file does not contain 'include if exists <abstractions/$${file}.d>'"; exit 1; } ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
.PHONY: check-extras
|
||||||
|
check-extras:
|
||||||
|
@echo "*** Checking if all extra profiles contain include if exists <local/*>"
|
||||||
|
$(Q)cd ${EXTRAS_SOURCE} && for file in * ; do \
|
||||||
|
test "$$file" = 'README' && continue ; \
|
||||||
|
grep -q "^ include if exists <local/$${file}>$$" $$file || { echo "$$file does not contain 'include if exists <local/$${file}>'"; exit 1; } ; \
|
||||||
|
done
|
||||||
|
@@ -85,5 +85,8 @@ owner @{HOME}/.local/share/openal/hrtf/{,**} r,
|
|||||||
# wildmidi
|
# wildmidi
|
||||||
/etc/wildmidi/wildmidi.cfg r,
|
/etc/wildmidi/wildmidi.cfg r,
|
||||||
|
|
||||||
|
# pipewire
|
||||||
|
/usr/share/pipewire/client.conf r,
|
||||||
|
|
||||||
# Include additions to the abstraction
|
# Include additions to the abstraction
|
||||||
include if exists <abstractions/audio.d>
|
include if exists <abstractions/audio.d>
|
||||||
|
@@ -31,6 +31,11 @@
|
|||||||
/{usr/,}lib/@{multiarch}/security/pam_*.so mr,
|
/{usr/,}lib/@{multiarch}/security/pam_*.so mr,
|
||||||
/{usr/,}lib/@{multiarch}/security/ r,
|
/{usr/,}lib/@{multiarch}/security/ r,
|
||||||
|
|
||||||
|
# gssapi
|
||||||
|
@{etc_ro}/gss/mech r,
|
||||||
|
@{etc_ro}/gss/mech.d/ r,
|
||||||
|
@{etc_ro}/gss/mech.d/*.conf r,
|
||||||
|
|
||||||
# kerberos
|
# kerberos
|
||||||
include <abstractions/kerberosclient>
|
include <abstractions/kerberosclient>
|
||||||
# SuSE's pwdutils are different:
|
# SuSE's pwdutils are different:
|
||||||
|
@@ -36,8 +36,8 @@
|
|||||||
/usr/share/locale-langpack/** r,
|
/usr/share/locale-langpack/** r,
|
||||||
/usr/share/locale/** r,
|
/usr/share/locale/** r,
|
||||||
/usr/share/**/locale/** r,
|
/usr/share/**/locale/** r,
|
||||||
/usr/share/zoneinfo/ r,
|
/usr/share/zoneinfo{,-icu}/ r,
|
||||||
/usr/share/zoneinfo/** r,
|
/usr/share/zoneinfo{,-icu}/** r,
|
||||||
/usr/share/X11/locale/** r,
|
/usr/share/X11/locale/** r,
|
||||||
@{run}/systemd/journal/dev-log w,
|
@{run}/systemd/journal/dev-log w,
|
||||||
# systemd native journal API (see sd_journal_print(4))
|
# systemd native journal API (see sd_journal_print(4))
|
||||||
@@ -62,6 +62,7 @@
|
|||||||
@{etc_ro}/ld.so.conf r,
|
@{etc_ro}/ld.so.conf r,
|
||||||
@{etc_ro}/ld.so.conf.d/{,*.conf} r,
|
@{etc_ro}/ld.so.conf.d/{,*.conf} r,
|
||||||
@{etc_ro}/ld.so.preload r,
|
@{etc_ro}/ld.so.preload r,
|
||||||
|
@{etc_ro}/ld-musl-*.path r,
|
||||||
/{usr/,}lib{,32,64}/ld{,32,64}-*.so mr,
|
/{usr/,}lib{,32,64}/ld{,32,64}-*.so mr,
|
||||||
/{usr/,}lib/@{multiarch}/ld{,32,64}-*.so mr,
|
/{usr/,}lib/@{multiarch}/ld{,32,64}-*.so mr,
|
||||||
/{usr/,}lib/tls/i686/{cmov,nosegneg}/ld-*.so mr,
|
/{usr/,}lib/tls/i686/{cmov,nosegneg}/ld-*.so mr,
|
||||||
@@ -101,6 +102,10 @@
|
|||||||
@{PROC}/cpuinfo r,
|
@{PROC}/cpuinfo r,
|
||||||
@{sys}/devices/system/cpu/ r,
|
@{sys}/devices/system/cpu/ r,
|
||||||
@{sys}/devices/system/cpu/online r,
|
@{sys}/devices/system/cpu/online r,
|
||||||
|
@{sys}/devices/system/cpu/possible r,
|
||||||
|
|
||||||
|
# transparent hugepage support
|
||||||
|
@{sys}/kernel/mm/transparent_hugepage/hpage_pmd_size r,
|
||||||
|
|
||||||
# glibc's *printf protections read the maps file
|
# glibc's *printf protections read the maps file
|
||||||
@{PROC}/@{pid}/{maps,auxv,status} r,
|
@{PROC}/@{pid}/{maps,auxv,status} r,
|
||||||
|
@@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
abi <abi/3.0>,
|
abi <abi/3.0>,
|
||||||
|
|
||||||
|
@{etc_ro}/gcrypt/hwf.deny r,
|
||||||
@{etc_ro}/gcrypt/random.conf r,
|
@{etc_ro}/gcrypt/random.conf r,
|
||||||
@{PROC}/sys/crypto/fips_enabled r,
|
@{PROC}/sys/crypto/fips_enabled r,
|
||||||
|
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
@{system_share_dirs}/mime/** r,
|
@{system_share_dirs}/mime/** r,
|
||||||
|
|
||||||
# per-user configurations
|
# per-user configurations
|
||||||
owner @{HOME}/.icons/ r,
|
owner @{HOME}/.icons/{,**} r,
|
||||||
owner @{HOME}/.recently-used.xbel* rw,
|
owner @{HOME}/.recently-used.xbel* rw,
|
||||||
owner @{HOME}/.local/share/recently-used.xbel* rw,
|
owner @{HOME}/.local/share/recently-used.xbel* rw,
|
||||||
owner @{HOME}/.config/user-dirs.dirs r,
|
owner @{HOME}/.config/user-dirs.dirs r,
|
||||||
|
67
profiles/apparmor.d/abstractions/groff
Normal file
67
profiles/apparmor.d/abstractions/groff
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
# ------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Copyright (C) 2002-2009 Novell/SUSE
|
||||||
|
# Copyright (C) 2009 Canonical Ltd.
|
||||||
|
# Copyright (C) 2023 SUSE LLC
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of version 2 of the GNU General Public
|
||||||
|
# License published by the Free Software Foundation.
|
||||||
|
#
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Note: executing groff and nroff themself is not included in this abstraction
|
||||||
|
# so that you can choose to ix, Px or Cx them in your profile
|
||||||
|
|
||||||
|
# groff/nroff helpers, preprocessors, and postprocessors
|
||||||
|
/usr/bin/addftinfo mrix,
|
||||||
|
/usr/bin/afmtodit mrix,
|
||||||
|
/usr/bin/chem mrix,
|
||||||
|
/usr/bin/eqn mrix,
|
||||||
|
/usr/bin/eqn2graph mrix,
|
||||||
|
/usr/bin/gdiffmk mrix,
|
||||||
|
/usr/bin/geqn mrix,
|
||||||
|
/usr/bin/grap2graph mrix,
|
||||||
|
/usr/bin/grn mrix,
|
||||||
|
/usr/bin/grodvi mrix,
|
||||||
|
/usr/bin/groffer mrix,
|
||||||
|
/usr/bin/grog mrix,
|
||||||
|
/usr/bin/grolbp mrix,
|
||||||
|
/usr/bin/grolj4 mrix,
|
||||||
|
/usr/bin/gropdf mrix,
|
||||||
|
/usr/bin/grops mrix,
|
||||||
|
/usr/bin/grotty mrix,
|
||||||
|
/usr/bin/gtbl mrix,
|
||||||
|
/usr/bin/hpftodit mrix,
|
||||||
|
/usr/bin/indxbib mrix,
|
||||||
|
/usr/bin/lkbib mrix,
|
||||||
|
/usr/bin/lookbib mrix,
|
||||||
|
/usr/bin/mmroff mrix,
|
||||||
|
/usr/bin/neqn mrix,
|
||||||
|
/usr/bin/pdfmom mrix,
|
||||||
|
/usr/bin/pdfroff mrix,
|
||||||
|
/usr/bin/pfbtops mrix,
|
||||||
|
/usr/bin/pic mrix,
|
||||||
|
/usr/bin/pic2graph mrix,
|
||||||
|
/usr/bin/post-grohtml mrix,
|
||||||
|
/usr/bin/pre-grohtml mrix,
|
||||||
|
/usr/bin/preconv mrix,
|
||||||
|
/usr/bin/refer mrix,
|
||||||
|
/usr/bin/roff2dvi mrix,
|
||||||
|
/usr/bin/roff2html mrix,
|
||||||
|
/usr/bin/roff2pdf mrix,
|
||||||
|
/usr/bin/roff2ps mrix,
|
||||||
|
/usr/bin/roff2text mrix,
|
||||||
|
/usr/bin/roff2x mrix,
|
||||||
|
/usr/bin/soelim mrix,
|
||||||
|
/usr/bin/tbl mrix,
|
||||||
|
/usr/bin/tfmtodit mrix,
|
||||||
|
/usr/bin/troff mrix,
|
||||||
|
/usr/bin/xtotroff mrix,
|
||||||
|
|
||||||
|
# at least its macros and fonts
|
||||||
|
/usr/libexec/groff/** r,
|
||||||
|
/usr/share/groff/** r,
|
||||||
|
|
||||||
|
# Include additions to the abstraction
|
||||||
|
include if exists <abstractions/groff.d>
|
@@ -41,8 +41,11 @@ owner @{HOME}/.config/Trolltech.conf rwk,
|
|||||||
owner @{HOME}/.config/baloofilerc r, # indexing options (excludes, etc), used by KFileWidget
|
owner @{HOME}/.config/baloofilerc r, # indexing options (excludes, etc), used by KFileWidget
|
||||||
owner @{HOME}/.config/dolphinrc r, # settings used by KFileWidget
|
owner @{HOME}/.config/dolphinrc r, # settings used by KFileWidget
|
||||||
owner @{HOME}/.config/kde.org/libphonon.conf r, # for KNotifications::sendEvent()
|
owner @{HOME}/.config/kde.org/libphonon.conf r, # for KNotifications::sendEvent()
|
||||||
|
owner @{HOME}/.config/kdedefaults/kdeglobals r, # QPlatformThemeFactory::create() -> KDEPlasmaPlatformTheme.so
|
||||||
|
owner @{HOME}/.config/kdedefaults/kwinrc r, # QStyleFactory::create() -> qt5/plugins/styles/breeze.so
|
||||||
owner @{HOME}/.config/kdeglobals r, # global settings, used by Breeze style, etc.
|
owner @{HOME}/.config/kdeglobals r, # global settings, used by Breeze style, etc.
|
||||||
owner @{HOME}/.config/klanguageoverridesrc r, # per-application languages, for KDEPrivate::initializeLanguages() from libKF5XmlGui.so
|
owner @{HOME}/.config/klanguageoverridesrc r, # per-application languages, for KDEPrivate::initializeLanguages() from libKF5XmlGui.so
|
||||||
|
owner @{HOME}/.config/kwinrc r, # QStyleFactory::create() -> qt5/plugins/styles/breeze.so
|
||||||
owner @{HOME}/.config/trashrc r, # Used by KFileWidget
|
owner @{HOME}/.config/trashrc r, # Used by KFileWidget
|
||||||
|
|
||||||
/usr/share/X11/XKeysymDB r,
|
/usr/share/X11/XKeysymDB r,
|
||||||
|
@@ -22,6 +22,11 @@
|
|||||||
/usr/lib/@{multiarch}/krb5/plugins/preauth/ r,
|
/usr/lib/@{multiarch}/krb5/plugins/preauth/ r,
|
||||||
/usr/lib/@{multiarch}/krb5/plugins/preauth/* mr,
|
/usr/lib/@{multiarch}/krb5/plugins/preauth/* mr,
|
||||||
|
|
||||||
|
/usr/lib{,32,64}/krb5/plugins/authdata/ r,
|
||||||
|
/usr/lib{,32,64}/krb5/plugins/authdata/* mr,
|
||||||
|
/usr/lib/@{multiarch}/krb5/plugins/authdata/ r,
|
||||||
|
/usr/lib/@{multiarch}/krb5/plugins/authdata/* mr,
|
||||||
|
|
||||||
/etc/krb5.keytab rk,
|
/etc/krb5.keytab rk,
|
||||||
/etc/krb5.conf r,
|
/etc/krb5.conf r,
|
||||||
/etc/krb5.conf.d/ r,
|
/etc/krb5.conf.d/ r,
|
||||||
|
@@ -44,6 +44,7 @@
|
|||||||
@{run}/{resolvconf,NetworkManager,systemd/resolve,connman,netconfig}/resolv.conf r,
|
@{run}/{resolvconf,NetworkManager,systemd/resolve,connman,netconfig}/resolv.conf r,
|
||||||
@{etc_ro}/resolvconf/run/resolv.conf r,
|
@{etc_ro}/resolvconf/run/resolv.conf r,
|
||||||
@{run}/systemd/resolve/stub-resolv.conf r,
|
@{run}/systemd/resolve/stub-resolv.conf r,
|
||||||
|
/mnt/wsl/resolv.conf r,
|
||||||
|
|
||||||
@{etc_ro}/samba/lmhosts r,
|
@{etc_ro}/samba/lmhosts r,
|
||||||
@{etc_ro}/services r,
|
@{etc_ro}/services r,
|
||||||
|
@@ -23,9 +23,13 @@
|
|||||||
|
|
||||||
@{sys}/devices/system/memory/block_size_bytes r,
|
@{sys}/devices/system/memory/block_size_bytes r,
|
||||||
|
|
||||||
|
owner @{HOME}/.cache/nvidia/ w,
|
||||||
|
owner @{HOME}/.cache/nvidia/GLCache/ rw,
|
||||||
|
owner @{HOME}/.cache/nvidia/GLCache/** rwk,
|
||||||
owner @{HOME}/.nv/ w,
|
owner @{HOME}/.nv/ w,
|
||||||
owner @{HOME}/.nv/GLCache/ rw,
|
owner @{HOME}/.nv/GLCache/ rw,
|
||||||
owner @{HOME}/.nv/GLCache/** rwk,
|
owner @{HOME}/.nv/GLCache/** rwk,
|
||||||
|
owner @{PROC}/@{pid}/comm r, # somehwere in libnvidia-glcore.so
|
||||||
|
|
||||||
unix (send, receive) type=dgram peer=(addr="@nvidia[0-9a-f]*"),
|
unix (send, receive) type=dgram peer=(addr="@nvidia[0-9a-f]*"),
|
||||||
|
|
||||||
|
@@ -11,6 +11,7 @@
|
|||||||
abi <abi/3.0>,
|
abi <abi/3.0>,
|
||||||
|
|
||||||
/etc/ssl/openssl.cnf r,
|
/etc/ssl/openssl.cnf r,
|
||||||
|
/etc/ssl/openssl-*.cnf r,
|
||||||
/etc/ssl/{engdef,engines}.d/ r,
|
/etc/ssl/{engdef,engines}.d/ r,
|
||||||
/etc/ssl/{engdef,engines}.d/*.cnf r,
|
/etc/ssl/{engdef,engines}.d/*.cnf r,
|
||||||
/usr/share/ssl/openssl.cnf r,
|
/usr/share/ssl/openssl.cnf r,
|
||||||
|
@@ -23,11 +23,12 @@
|
|||||||
/var/lib/samba/** rwk,
|
/var/lib/samba/** rwk,
|
||||||
/var/log/samba/cores/ rw,
|
/var/log/samba/cores/ rw,
|
||||||
/var/log/samba/cores/** rw,
|
/var/log/samba/cores/** rw,
|
||||||
/var/log/samba/* w,
|
/var/log/samba/* rw,
|
||||||
@{run}/{,lock/}samba/ w,
|
@{run}/{,lock/}samba/ w,
|
||||||
@{run}/{,lock/}samba/*.tdb rw,
|
@{run}/{,lock/}samba/*.tdb rwk,
|
||||||
@{run}/{,lock/}samba/msg.lock/ rwk,
|
@{run}/{,lock/}samba/msg.{lock,sock}/ rwk,
|
||||||
@{run}/{,lock/}samba/msg.lock/[0-9]* rwk,
|
@{run}/{,lock/}samba/msg.{lock,sock}/[0-9]* rwk,
|
||||||
|
/var/cache/samba/*.tdb rwk,
|
||||||
/var/cache/samba/msg.lock/ rwk,
|
/var/cache/samba/msg.lock/ rwk,
|
||||||
/var/cache/samba/msg.lock/[0-9]* rwk,
|
/var/cache/samba/msg.lock/[0-9]* rwk,
|
||||||
|
|
||||||
|
@@ -38,5 +38,6 @@ profile snap_browsers {
|
|||||||
/snap/opera/[0-9]*/meta/{snap.yaml,hooks/} r,
|
/snap/opera/[0-9]*/meta/{snap.yaml,hooks/} r,
|
||||||
|
|
||||||
/var/lib/snapd/sequence/{chromium,firefox,opera}.json r,
|
/var/lib/snapd/sequence/{chromium,firefox,opera}.json r,
|
||||||
|
/var/lib/snapd/inhibit/{chromium,firefox,opera}.lock rk,
|
||||||
# add other browsers here
|
# add other browsers here
|
||||||
}
|
}
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
/etc/{,libre}ssl/certs/{,**} r,
|
/etc/{,libre}ssl/certs/{,**} r,
|
||||||
/{etc,usr/share}/pki/bl[ao]cklist/{,*} r,
|
/{etc,usr/share}/pki/bl[ao]cklist/{,*} r,
|
||||||
/{etc,usr/share}/pki/trust/{,*} r,
|
/{etc,usr/share}/pki/trust/{,*} r,
|
||||||
/{etc,usr/share}/pki/trust/anchors/{,**} r,
|
/{etc,usr/share}/pki/trust/{bl[oa]cklist,anchors}/{,**} r,
|
||||||
/usr/share/ca-certificates/{,**} r,
|
/usr/share/ca-certificates/{,**} r,
|
||||||
/usr/share/ssl/certs/ca-bundle.crt r,
|
/usr/share/ssl/certs/ca-bundle.crt r,
|
||||||
/usr/local/share/ca-certificates/{,**} r,
|
/usr/local/share/ca-certificates/{,**} r,
|
||||||
|
@@ -80,6 +80,7 @@ profile sanitized_helper {
|
|||||||
/opt/brave.com/brave{,-beta,-dev,-nightly}/chrome-sandbox PUxr,
|
/opt/brave.com/brave{,-beta,-dev,-nightly}/chrome-sandbox PUxr,
|
||||||
/opt/brave.com/brave{,-beta,-dev,-nightly}/brave-browser{,-beta,-dev,-nightly} Pixr,
|
/opt/brave.com/brave{,-beta,-dev,-nightly}/brave-browser{,-beta,-dev,-nightly} Pixr,
|
||||||
/opt/brave.com/brave{,-beta,-dev,-nightly}/brave Pixr,
|
/opt/brave.com/brave{,-beta,-dev,-nightly}/brave Pixr,
|
||||||
|
/opt/brave.com/brave{,-beta,-dev,-nightly}/chrome_crashpad_handler Pixr,
|
||||||
/opt/brave.com/brave{,-beta,-dev,-nightly}/{,**/}lib*.so{,.*} m,
|
/opt/brave.com/brave{,-beta,-dev,-nightly}/{,**/}lib*.so{,.*} m,
|
||||||
|
|
||||||
# Full access
|
# Full access
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user