系统权限配置文件——platform.xml

作者:追风剑情 发布于:2015-6-17 15:49 分类:Android

内置卡->system->etc->permissions->platform.xml


例如:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2008 The Android Open Source Project
  3.  
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. -->
  14.  
  15. <!-- This file is used to define the mappings between lower-level system
  16. user and group IDs and the higher-level permission names managed
  17. by the platform.
  18.  
  19. Be VERY careful when editing this file! Mistakes made here can open
  20. big security holes.
  21. -->
  22. <permissions>
  23.  
  24. <!-- ================================================================== -->
  25. <!-- ================================================================== -->
  26. <!-- ================================================================== -->
  27.  
  28. <!-- The following tags are associating low-level group IDs with
  29. permission names. By specifying such a mapping, you are saying
  30. that any application process granted the given permission will
  31. also be running with the given group ID attached to its process,
  32. so it can perform any filesystem (read, write, execute) operations
  33. allowed for that group. -->
  34.  
  35. <permission name="android.permission.BLUETOOTH_ADMIN" >
  36. <group gid="net_bt_admin" />
  37. </permission>
  38.  
  39. <permission name="android.permission.BLUETOOTH" >
  40. <group gid="net_bt" />
  41. </permission>
  42.  
  43. <permission name="android.permission.INTERNET" >
  44. <group gid="inet" />
  45. </permission>
  46.  
  47. <permission name="android.permission.CAMERA" >
  48. <group gid="camera" />
  49. </permission>
  50.  
  51. <permission name="android.permission.READ_LOGS" >
  52. <group gid="log" />
  53. </permission>
  54.  
  55. <permission name="android.permission.READ_EXTERNAL_STORAGE" >
  56. <group gid="sdcard_r" />
  57. </permission>
  58.  
  59. <permission name="android.permission.WRITE_EXTERNAL_STORAGE" >
  60. <group gid="sdcard_rw" />
  61. <group gid="media_rw" />
  62. </permission>
  63.  
  64. <permission name="android.permission.WRITE_MEDIA_STORAGE" >
  65. <group gid="media_rw" />
  66. </permission>
  67.  
  68. <permission name="android.permission.ACCESS_MTP" >
  69. <group gid="mtp" />
  70. </permission>
  71.  
  72. <permission name="android.permission.NET_ADMIN" >
  73. <group gid="net_admin" />
  74. </permission>
  75.  
  76. <!-- The group that /cache belongs to, linked to the permission
  77. set on the applications that can access /cache -->
  78. <permission name="android.permission.ACCESS_CACHE_FILESYSTEM" >
  79. <group gid="cache" />
  80. </permission>
  81.  
  82. <!-- RW permissions to any system resources owned by group 'diag'.
  83. This is for carrier and manufacture diagnostics tools that must be
  84. installable from the framework. Be careful. -->
  85. <permission name="android.permission.DIAGNOSTIC" >
  86. <group gid="input" />
  87. <group gid="diag" />
  88. </permission>
  89.  
  90. <!-- Group that can read detailed network usage statistics -->
  91. <permission name="android.permission.READ_NETWORK_USAGE_HISTORY">
  92. <group gid="net_bw_stats" />
  93. </permission>
  94.  
  95. <!-- Group that can modify how network statistics are accounted -->
  96. <permission name="android.permission.MODIFY_NETWORK_ACCOUNTING">
  97. <group gid="net_bw_acct" />
  98. </permission>
  99.  
  100. <!-- VPN -->
  101. <permission name="android.permission.SAMSUNG_MODIFY_ROUTE" >
  102. <group gid="net_admin" />
  103. </permission>
  104.  
  105. <permission name="android.permission.SAMSUNG_TUNTAP" >
  106. <group gid="vpn" />
  107. </permission>
  108.  
  109. <permission name="android.permission.SAMSUNG_MODIFY_IPTABLES" >
  110. <group gid="net_raw" />
  111. </permission>
  112.  
  113. <!--The group that can read /proc/cmdline -->
  114. <permission name="com.sec.android.app.sysscope.permission.SYSSCOPE_ACCESS_SYSTEM_INFO" >
  115. <group gid="radio" />
  116. </permission>
  117.  
  118. <!-- ================================================================== -->
  119. <!-- ================================================================== -->
  120. <!-- ================================================================== -->
  121.  
  122. <!-- The following tags are assigning high-level permissions to specific
  123. user IDs. These are used to allow specific core system users to
  124. perform the given operations with the higher-level framework. For
  125. example, we give a wide variety of permissions to the shell user
  126. since that is the user the adb shell runs under and developers and
  127. others should have a fairly open environment in which to
  128. interact with the system. -->
  129.  
  130. <!-- Standard permissions granted to the shell. -->
  131. <assign-permission name="android.permission.WRITE_EXTERNAL_STORAGE" uid="shell" />
  132. <assign-permission name="android.permission.SEND_SMS" uid="shell" />
  133. <assign-permission name="android.permission.CALL_PHONE" uid="shell" />
  134. <assign-permission name="android.permission.READ_CONTACTS" uid="shell" />
  135. <assign-permission name="android.permission.WRITE_CONTACTS" uid="shell" />
  136. <assign-permission name="android.permission.READ_CALENDAR" uid="shell" />
  137. <assign-permission name="android.permission.WRITE_CALENDAR" uid="shell" />
  138. <assign-permission name="android.permission.READ_USER_DICTIONARY" uid="shell" />
  139. <assign-permission name="android.permission.WRITE_USER_DICTIONARY" uid="shell" />
  140. <assign-permission name="android.permission.ACCESS_FINE_LOCATION" uid="shell" />
  141. <assign-permission name="android.permission.ACCESS_COARSE_LOCATION" uid="shell" />
  142. <assign-permission name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" uid="shell" />
  143. <assign-permission name="android.permission.ACCESS_NETWORK_STATE" uid="shell" />
  144. <assign-permission name="android.permission.ACCESS_WIFI_STATE" uid="shell" />
  145. <assign-permission name="android.permission.BLUETOOTH" uid="shell" />
  146. <!-- System tool permissions granted to the shell. -->
  147. <assign-permission name="android.permission.GET_TASKS" uid="shell" />
  148. <assign-permission name="android.permission.CHANGE_CONFIGURATION" uid="shell" />
  149. <assign-permission name="android.permission.REORDER_TASKS" uid="shell" />
  150. <assign-permission name="android.permission.SET_ANIMATION_SCALE" uid="shell" />
  151. <assign-permission name="android.permission.SET_PREFERRED_APPLICATIONS" uid="shell" />
  152. <assign-permission name="android.permission.WRITE_SETTINGS" uid="shell" />
  153. <assign-permission name="android.permission.WRITE_SECURE_SETTINGS" uid="shell" />
  154. <assign-permission name="android.permission.BROADCAST_STICKY" uid="shell" />
  155. <!-- Development tool permissions granted to the shell. -->
  156. <assign-permission name="android.permission.SET_DEBUG_APP" uid="shell" />
  157. <assign-permission name="android.permission.SET_PROCESS_LIMIT" uid="shell" />
  158. <assign-permission name="android.permission.SET_ALWAYS_FINISH" uid="shell" />
  159. <assign-permission name="android.permission.DUMP" uid="shell" />
  160. <assign-permission name="android.permission.SIGNAL_PERSISTENT_PROCESSES" uid="shell" />
  161. <assign-permission name="android.permission.KILL_BACKGROUND_PROCESSES" uid="shell" />
  162. <!-- Internal permissions granted to the shell. -->
  163. <assign-permission name="android.permission.FORCE_BACK" uid="shell" />
  164. <assign-permission name="android.permission.BATTERY_STATS" uid="shell" />
  165. <assign-permission name="android.permission.INTERNAL_SYSTEM_WINDOW" uid="shell" />
  166. <assign-permission name="android.permission.INJECT_EVENTS" uid="shell" />
  167. <assign-permission name="android.permission.RETRIEVE_WINDOW_CONTENT" uid="shell" />
  168. <assign-permission name="android.permission.SET_ACTIVITY_WATCHER" uid="shell" />
  169. <assign-permission name="android.permission.READ_INPUT_STATE" uid="shell" />
  170. <assign-permission name="android.permission.SET_ORIENTATION" uid="shell" />
  171. <assign-permission name="android.permission.INSTALL_PACKAGES" uid="shell" />
  172. <assign-permission name="android.permission.CLEAR_APP_USER_DATA" uid="shell" />
  173. <assign-permission name="android.permission.DELETE_CACHE_FILES" uid="shell" />
  174. <assign-permission name="android.permission.DELETE_PACKAGES" uid="shell" />
  175. <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="shell" />
  176. <assign-permission name="android.permission.READ_FRAME_BUFFER" uid="shell" />
  177. <assign-permission name="android.permission.DEVICE_POWER" uid="shell" />
  178. <assign-permission name="android.permission.INSTALL_LOCATION_PROVIDER" uid="shell" />
  179. <assign-permission name="android.permission.BACKUP" uid="shell" />
  180. <assign-permission name="android.permission.FORCE_STOP_PACKAGES" uid="shell" />
  181. <assign-permission name="android.permission.STOP_APP_SWITCHES" uid="shell" />
  182. <assign-permission name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY" uid="shell" />
  183. <assign-permission name="android.permission.GRANT_REVOKE_PERMISSIONS" uid="shell" />
  184. <assign-permission name="android.permission.SET_KEYBOARD_LAYOUT" uid="shell" />
  185. <assign-permission name="android.permission.GET_DETAILED_TASKS" uid="shell" />
  186. <assign-permission name="android.permission.SET_SCREEN_COMPATIBILITY" uid="shell" />
  187. <assign-permission name="android.permission.READ_EXTERNAL_STORAGE" uid="shell" />
  188. <assign-permission name="android.permission.WRITE_EXTERNAL_STORAGE" uid="shell" />
  189.  
  190. <assign-permission name="android.permission.MODIFY_AUDIO_SETTINGS" uid="media" />
  191. <assign-permission name="android.permission.ACCESS_DRM" uid="media" />
  192. <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="media" />
  193. <assign-permission name="android.permission.WAKE_LOCK" uid="media" />
  194.  
  195. <assign-permission name="android.permission.ACCESS_SURFACE_FLINGER" uid="graphics" />
  196.  
  197. <!-- This is a list of all the libraries available for application
  198. code to link against. -->
  199.  
  200. <library name="android.test.runner"
  201. file="/system/framework/android.test.runner.jar" />
  202. <library name="javax.obex"
  203. file="/system/framework/javax.obex.jar"/>
  204.  
  205. </permissions>

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号