diff options
author | Jihoon Jung <jh8801.jung@samsung.com> | 2018-04-04 14:51:00 +0900 |
---|---|---|
committer | Jihoon Jung <jh8801.jung@samsung.com> | 2018-04-04 14:52:05 +0900 |
commit | 366a4808f51e7e82c01350a3c40a63fe100f05b9 (patch) | |
tree | c2d7f7fde14cf7cc274b31c3e435a56333afdf67 | |
parent | 9bd333179cc24360bc7b910538d32696127dbba4 (diff) | |
download | smartcard-service-accepted/tizen_5.0_unified.tar.gz smartcard-service-accepted/tizen_5.0_unified.tar.bz2 smartcard-service-accepted/tizen_5.0_unified.zip |
Apply default deny in dbus configurationsubmit/tizen_5.0/20181101.000003submit/tizen/20180404.094637submit/tizen/20180404.064114accepted/tizen/unified/20180404.141034accepted/tizen/5.0/unified/20181102.015821tizen_5.0accepted/tizen_5.0_unified
Change-Id: Ib0b36be18cc3f648940d1b18ba567a552621d8cc
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
-rw-r--r-- | packaging/org.tizen.SmartcardService.conf | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/packaging/org.tizen.SmartcardService.conf b/packaging/org.tizen.SmartcardService.conf index bb362bb..0bfd4c2 100644 --- a/packaging/org.tizen.SmartcardService.conf +++ b/packaging/org.tizen.SmartcardService.conf @@ -2,7 +2,18 @@ "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> - <policy context="default"> + <policy user="root"> + <allow own="org.tizen.SmartcardService"/> + <allow send_destination="org.tizen.SmartcardService"/> + </policy> + <policy user="network_fw"> <allow own="org.tizen.SmartcardService"/> + <allow send_destination="org.tizen.SmartcardService"/> + </policy> + <policy context="default"> + <deny own="org.tizen.SmartcardService"/> + <deny send_destination="org.tizen.SmartcardService"/> + <check own="org.tizen.SmartcardService" privilege="http://tizen.org/privilege/secureelement"/> + <check send_destination="org.tizen.SmartcardService" privilege="http://tizen.org/privilege/secureelement"/> </policy> </busconfig> |