Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AndroidSystemSEPolicy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Werner Sembach
AndroidSystemSEPolicy
Commits
f4c8ca6b
Commit
f4c8ca6b
authored
Mar 20, 2013
by
Stephen Smalley
Committed by
Android Git Automerger
Mar 20, 2013
Browse files
Options
Downloads
Plain Diff
am
38084146
: Generalize levelFromUid support.
* commit '
38084146
': Generalize levelFromUid support.
parents
36c87bbd
38084146
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
seapp_contexts
+4
-3
4 additions, 3 deletions
seapp_contexts
tools/check_seapp.c
+10
-0
10 additions, 0 deletions
tools/check_seapp.c
with
14 additions
and
3 deletions
seapp_contexts
+
4
−
3
View file @
f4c8ca6b
...
...
@@ -24,11 +24,12 @@
# Outputs:
# domain (string)
# type (string)
# levelFrom
Uid (boolean
)
# levelFrom
(string; one of none, all, app, or user
)
# level (string)
# Only entries that specify domain= will be used for app process labeling.
# Only entries that specify type= will be used for app directory labeling.
# levelfromUid is only supported for app UIDs presently.
# levelFrom=user is only supported for _app or _isolated UIDs.
# levelFrom=app or levelFrom=all is only supported for _app UIDs.
# level may be used to specify a fixed level for any UID.
#
isSystemServer=true domain=system
...
...
@@ -36,7 +37,7 @@ user=system domain=system_app type=system_data_file
user=bluetooth domain=bluetooth type=bluetooth_data_file
user=nfc domain=nfc type=nfc_data_file
user=radio domain=radio type=radio_data_file
user=_app domain=untrusted_app type=app_data_file levelFrom
Uid=true
user=_app domain=untrusted_app type=app_data_file levelFrom
=app
user=_app seinfo=platform domain=platform_app type=platform_app_data_file
user=_app seinfo=shared domain=shared_app type=platform_app_data_file
user=_app seinfo=media domain=media_app type=platform_app_data_file
...
...
This diff is collapsed.
Click to expand it.
tools/check_seapp.c
+
10
−
0
View file @
f4c8ca6b
...
...
@@ -162,6 +162,7 @@ key_map rules[] = {
{
.
name
=
"domain"
,
.
type
=
dt_string
,
.
dir
=
dir_out
,
.
data
=
NULL
},
{
.
name
=
"type"
,
.
type
=
dt_string
,
.
dir
=
dir_out
,
.
data
=
NULL
},
{
.
name
=
"levelFromUid"
,
.
type
=
dt_bool
,
.
dir
=
dir_out
,
.
data
=
NULL
},
{
.
name
=
"levelFrom"
,
.
type
=
dt_string
,
.
dir
=
dir_out
,
.
data
=
NULL
},
{
.
name
=
"level"
,
.
type
=
dt_string
,
.
dir
=
dir_out
,
.
data
=
NULL
},
};
...
...
@@ -256,6 +257,15 @@ static int key_map_validate(key_map *m, int lineno) {
goto
out
;
}
if
(
!
strcasecmp
(
key
,
"levelFrom"
)
&&
(
strcasecmp
(
value
,
"none"
)
&&
strcasecmp
(
value
,
"all"
)
&&
strcasecmp
(
value
,
"app"
)
&&
strcasecmp
(
value
,
"user"
)))
{
log_error
(
"Unknown levelFrom=%s on line: %d in file: %s
\n
"
,
value
,
lineno
,
out_file_name
);
rc
=
0
;
goto
out
;
}
/*
* If their is no policy file present,
* then it is not in strict mode so just return.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment