如何在Android上使用uid获取用户名

前端之家收集整理的这篇文章主要介绍了如何在Android上使用uid获取用户名前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有几个这样的uid:
10022,10011,1000

其实我知道它们的用户名是u0_a22,u0_a11,system.

但问题是如何使用代码获取用户名?根本没有/ etc / passwd文件..

解决方法

我编写了一个实用程序类来通过硬编码来自 android_filesystem_config.h的值来获取UID / GID名称.

用法

  1. String uid = AndroidFilesystemConfig.getNameForId(1000);

AndroidFilesystemConfig.java

  1. import android.os.Build;
  2. import android.util.SparseArray;
  3.  
  4. import java.util.Locale;
  5.  
  6. /**
  7. * <p>System Users and Groups for the Android platform as specified in
  8. * <a href="https://android.googlesource.com/platform/system/core/+/master/include/private/android_filesystem_config.h">android_filesystem_config.h</a>.</p>
  9. *
  10. * <p>Last updated: April 20th,2016</p>
  11. *
  12. * <p><b>Note:</b> Some OEMs may have specific UIDs for other system users not in this class.</p>
  13. */
  14. public class AndroidFilesystemConfig {
  15.  
  16. /* first app user */
  17. private static final int AID_APP = 10000;
  18.  
  19. /* offset for uid ranges for each user */
  20. private static final int AID_USER = 100000;
  21.  
  22. /* start of gids for apps in each user to share */
  23. private static final int AID_SHARED_GID_START = 50000;
  24.  
  25. /* end of gids for apps in each user to share */
  26. private static final int AID_SHARED_GID_END = 59999;
  27.  
  28. private static final SparseArray<String> SYSTEM_IDS = new SparseArray<>();
  29.  
  30. static {
  31. putSystemId(0,"root"); /* traditional unix root user */
  32. putSystemId(1000,"system"); /* system server */
  33. putSystemId(1001,"radio"); /* telephony subsystem,RIL */
  34. putSystemId(1002,"bluetooth"); /* bluetooth subsystem */
  35. putSystemId(1003,"graphics"); /* graphics devices */
  36. putSystemId(1004,"input"); /* input devices */
  37. putSystemId(1005,"audio"); /* audio devices */
  38. putSystemId(1006,"camera"); /* camera devices */
  39. putSystemId(1007,"log"); /* log devices */
  40. putSystemId(1008,"compass"); /* compass device */
  41. putSystemId(1009,"mount"); /* mountd socket */
  42. putSystemId(1010,"wifi"); /* wifi subsystem */
  43. putSystemId(1011,"adb"); /* android debug bridge (adbd) */
  44. putSystemId(1012,"install"); /* group for installing packages */
  45. putSystemId(1013,"media"); /* mediaserver process */
  46. putSystemId(1014,"dhcp"); /* dhcp client */
  47. putSystemId(1015,"sdcard_rw"); /* external storage write access */
  48. putSystemId(1016,"vpn"); /* vpn system */
  49. putSystemId(1017,"keystore"); /* keystore subsystem */
  50. putSystemId(1018,"usb"); /* USB devices */
  51. putSystemId(1019,"drm"); /* DRM server */
  52. putSystemId(1020,"mdnsr"); /* MulticastDNSResponder (service discovery) */
  53. putSystemId(1021,"gps"); /* GPS daemon */
  54. // 1022 is deprecated and not used.
  55. putSystemId(1023,"media_rw"); /* internal media storage write access */
  56. putSystemId(1024,"mtp"); /* MTP USB driver access */
  57. // 1025 is deprecated and not used.
  58. putSystemId(1026,"drmrpc"); /* group for drm rpc */
  59. putSystemId(1027,"nfc"); /* nfc subsystem */
  60. putSystemId(1028,"sdcard_r"); /* external storage read access */
  61. putSystemId(1029,"clat"); /* clat part of nat464 */
  62. putSystemId(1030,"loop_radio"); /* loop radio devices */
  63. putSystemId(1031,"mediadrm"); /* MediaDrm plugins */
  64. putSystemId(1032,"package_info"); /* access to installed package details */
  65. putSystemId(1033,"sdcard_pics"); /* external storage photos access */
  66. putSystemId(1034,"sdcard_av"); /* external storage audio/video access */
  67. putSystemId(1035,"sdcard_all"); /* access all users external storage */
  68. putSystemId(1036,"logd"); /* log daemon */
  69. putSystemId(1037,"shared_relro"); /* creator of shared GNU RELRO files */
  70. putSystemId(1038,"dbus"); /* dbus-daemon IPC broker process */
  71. putSystemId(1039,"tlsdate"); /* tlsdate unprivileged user */
  72. putSystemId(1040,"mediaex"); /* mediaextractor process */
  73. putSystemId(1041,"audioserver"); /* audioserver process */
  74. putSystemId(1042,"metrics_coll"); /* metrics_collector process */
  75. putSystemId(1043,"metricsd"); /* metricsd process */
  76. putSystemId(1044,"webserv"); /* webservd process */
  77. putSystemId(1045,"debuggerd"); /* debuggerd unprivileged user */
  78. putSystemId(1046,"mediacodec"); /* mediacodec process */
  79. putSystemId(1047,"cameraserver"); /* cameraserver process */
  80. putSystemId(1048,"firewall"); /* firewalld process */
  81. putSystemId(1049,"trunks"); /* trunksd process (TPM daemon) */
  82. putSystemId(1050,"nvram"); /* Access-controlled NVRAM */
  83. putSystemId(1051,"dns"); /* DNS resolution daemon (system: netd) */
  84. putSystemId(1052,"dns_tether"); /* DNS resolution daemon (tether: dnsmasq) */
  85. putSystemId(1053,"webview_zygote"); /* WebView zygote process */
  86. putSystemId(1054,"vehicle_network"); /* Vehicle network service */
  87. putSystemId(1055,"media_audio"); /* GID for audio files on internal media storage */
  88. putSystemId(1056,"media_video"); /* GID for video files on internal media storage */
  89. putSystemId(1057,"media_image"); /* GID for image files on internal media storage */
  90.  
  91. putSystemId(2000,"shell"); /* adb and debug shell user */
  92. putSystemId(2001,"cache"); /* cache access */
  93. putSystemId(2002,"diag"); /* access to diagnostic resources */
  94.  
  95. /* The range 2900-2999 is reserved for OEMs */
  96.  
  97. // The 3000 series are intended for use as supplemental group id's only. They indicate
  98. // special Android capabilities that the kernel is aware of.
  99. putSystemId(3001,"net_bt_admin"); /* bluetooth: get any socket */
  100. putSystemId(3002,"net_bt"); /* bluetooth: get sco,rfcomm or l2cap sockets */
  101. putSystemId(3003,"inet"); /* can get AF_INET and AF_INET6 sockets */
  102. putSystemId(3004,"net_raw"); /* can get raw INET sockets */
  103. putSystemId(3005,"net_admin"); /* can configure interfaces and routing tables. */
  104. putSystemId(3006,"net_bw_stats"); /* read bandwidth statistics */
  105. putSystemId(3007,"net_bw_acct"); /* change bandwidth statistics accounting */
  106. putSystemId(3008,"net_bt_stack"); /* bluetooth: access config files */
  107. putSystemId(3009,"readproc"); /* Allow /proc read access */
  108. putSystemId(3010,"wakelock"); /* Allow system wakelock read/write access */
  109.  
  110. /* The range 5000-5999 is also reserved for OEMs. */
  111.  
  112. putSystemId(9997,"everybody"); /* shared between all apps in the same profile */
  113. putSystemId(9998,"misc"); /* access to misc storage */
  114. putSystemId(9999,"nobody");
  115. }
  116.  
  117. private static void putSystemId(int id,String name) {
  118. // Check if the uid exists before adding it so we don't add unsupported ids.
  119. if (android.os.Process.getUidForName(name) != id) {
  120. // Not valid on this system. Most likely due to a lower API.
  121. return;
  122. }
  123. SYSTEM_IDS.put(id,name);
  124. }
  125.  
  126. /**
  127. * @return An array of system UIDs
  128. */
  129. public static SparseArray<String> getSystemIds() {
  130. return SYSTEM_IDS;
  131. }
  132.  
  133. /**
  134. * Returns the UID/GID name assigned to a particular id,or {@code null} if there is none.
  135. *
  136. * @param id
  137. * The UID/GID of a process or file
  138. * @return the name of the UID/GID or {@code null} if the id is unrecognized.
  139. */
  140. public static String getNameForId(int id) {
  141. String name = SYSTEM_IDS.get(id);
  142. if (name == null) {
  143. if (id >= AID_SHARED_GID_START && id <= AID_SHARED_GID_END) {
  144. name = String.format(Locale.ENGLISH,"all_a%d",id - AID_SHARED_GID_START);
  145. } else {
  146. int appId = id - AID_APP;
  147. int userId = 0;
  148. // loop until we get the correct user id.
  149. // 100000 is the offset for each user.
  150. while (appId > AID_USER) {
  151. appId -= AID_USER;
  152. userId++;
  153. }
  154. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
  155. // u{user_id}_a{app_id} is used on API 17+ for multiple user account support.
  156. name = String.format(Locale.ENGLISH,"u%d_a%d",userId,appId);
  157. } else {
  158. // app_{app_id} is used below API 17.
  159. name = String.format(Locale.ENGLISH,"app_%d",appId);
  160. }
  161. }
  162. }
  163. return name;
  164. }
  165.  
  166. private AndroidFilesystemConfig() {
  167. throw new AssertionError("no instances");
  168. }
  169.  
  170. }

使用反射:

受odexide的回答启发,这里有一些我不建议使用的非常丑陋的反映,它将从getpwuid(uid_t)获得UID / GID名称

  1. public static String getNameForUid(int id) {
  2. try {
  3. Class<?> clazz = Class.forName("libcore.io.Libcore");
  4. Field field = clazz.getDeclaredField("os");
  5. if (!field.isAccessible()) {
  6. field.setAccessible(true);
  7. }
  8. Object os = field.get(null);
  9. if (os != null) {
  10. Method getpwuid = os.getClass().getMethod("getpwuid",int.class);
  11. if (getpwuid != null) {
  12. if (!getpwuid.isAccessible()) {
  13. getpwuid.setAccessible(true);
  14. }
  15. Object passwd = getpwuid.invoke(os,id);
  16. if (passwd != null) {
  17. Field pw_name = passwd.getClass().getDeclaredField("pw_name");
  18. if (!pw_name.isAccessible()) {
  19. pw_name.setAccessible(true);
  20. }
  21. return (String) pw_name.get(passwd);
  22. }
  23. }
  24. }
  25. } catch (Exception ignored) {
  26. }
  27. return null;
  28. }

猜你在找的Android相关文章