blob: 33ecd9a6b3d5eee82d5f91720aee17255d248e59 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 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 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/* This file is used to define the properties of the filesystem
18** images generated by build tools (mkbootfs and mkyaffs2image) and
19** by the device side of adb.
20*/
21
22#ifndef _ANDROID_FILESYSTEM_CONFIG_H_
23#define _ANDROID_FILESYSTEM_CONFIG_H_
24
25#include <string.h>
26#include <sys/stat.h>
27#include <sys/types.h>
28
29/* This is the master Users and Groups config for the platform.
30** DO NOT EVER RENUMBER.
31*/
32
33#define AID_ROOT 0 /* traditional unix root user */
34
35#define AID_SYSTEM 1000 /* system server */
36
37#define AID_RADIO 1001 /* telephony subsystem, RIL */
38#define AID_BLUETOOTH 1002 /* bluetooth subsystem */
39#define AID_GRAPHICS 1003 /* graphics devices */
40#define AID_INPUT 1004 /* input devices */
41#define AID_AUDIO 1005 /* audio devices */
42#define AID_CAMERA 1006 /* camera devices */
43#define AID_LOG 1007 /* log devices */
44#define AID_COMPASS 1008 /* compass device */
45#define AID_MOUNT 1009 /* mountd socket */
46#define AID_WIFI 1010 /* wifi subsystem */
47#define AID_ADB 1011 /* android debug bridge (adbd) */
48#define AID_INSTALL 1012 /* group for installing packages */
49#define AID_MEDIA 1013 /* mediaserver process */
50#define AID_DHCP 1014 /* dhcp client */
San Mehat6e1f2152009-04-23 09:15:08 -070051#define AID_SDCARD_RW 1015 /* external storage write access */
San Mehat4a6f2322009-05-14 19:44:59 -070052#define AID_VPN 1016 /* vpn system */
Chung-yih Wang1f75d702009-06-01 19:04:05 +080053#define AID_KEYSTORE 1017 /* keystore subsystem */
Mike Lockwood93ac1552010-05-06 13:30:09 -040054#define AID_USB 1018 /* USB devices */
aimitakeshie572d592010-07-27 08:38:35 +090055#define AID_DRM 1019 /* DRM server */
Robert Greenwalt1d91fcf2012-03-27 16:59:27 -070056#define AID_MDNSR 1020 /* MulticastDNSResponder (service discovery) */
Mike Lockwoodc29919c2010-09-27 08:01:58 -040057#define AID_GPS 1021 /* GPS daemon */
Jeff Hamiltona6a36c02011-03-24 21:40:43 -050058#define AID_UNUSED1 1022 /* deprecated, DO NOT USE */
Mike Lockwood2e0047b2010-10-29 10:55:54 -040059#define AID_MEDIA_RW 1023 /* internal media storage write access */
Mike Lockwoodaf7bdc62011-01-10 08:22:30 -050060#define AID_MTP 1024 /* MTP USB driver access */
Nick Pelly097b4ed2011-11-21 14:55:59 -080061#define AID_UNUSED2 1025 /* deprecated, DO NOT USE */
Jeffrey Tinker7005c032011-09-30 12:40:25 -070062#define AID_DRMRPC 1026 /* group for drm rpc */
Nick Pelly097b4ed2011-11-21 14:55:59 -080063#define AID_NFC 1027 /* nfc subsystem */
Dianne Hackborn50458cf2012-03-07 12:57:14 -080064#define AID_SDCARD_R 1028 /* external storage read access */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065
66#define AID_SHELL 2000 /* adb and debug shell user */
67#define AID_CACHE 2001 /* cache access */
68#define AID_DIAG 2002 /* access to diagnostic resources */
69
70/* The 3000 series are intended for use as supplemental group id's only.
71 * They indicate special Android capabilities that the kernel is aware of. */
72#define AID_NET_BT_ADMIN 3001 /* bluetooth: create any socket */
73#define AID_NET_BT 3002 /* bluetooth: create sco, rfcomm or l2cap sockets */
74#define AID_INET 3003 /* can create AF_INET and AF_INET6 sockets */
75#define AID_NET_RAW 3004 /* can create raw INET sockets */
Chia-chi Yeh88dc6572009-06-19 14:59:08 +080076#define AID_NET_ADMIN 3005 /* can configure interfaces and routing tables. */
Jeff Sharkey4f1df182011-05-02 17:52:03 -070077#define AID_NET_BW_STATS 3006 /* read bandwidth statistics */
78#define AID_NET_BW_ACCT 3007 /* change bandwidth statistics accounting */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079
80#define AID_MISC 9998 /* access to misc storage */
81#define AID_NOBODY 9999
82
Dianne Hackbornca185ab2012-02-09 11:19:00 -080083#define AID_APP 10000 /* first app user */
84
85#define AID_ISOLATED_START 99000 /* start of uids for fully isolated sandboxed processes */
86#define AID_ISOLATED_END 99999 /* end of uids for fully isolated sandboxed processes */
87
88#define AID_USER 100000 /* offset for uid ranges for each user */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080089
Kenny Root7e41c842012-09-11 15:03:45 -070090#define AID_SHARED_GID_START 50000 /* start of gids for apps in each user to share */
91#define AID_SHARED_GID_END 59999 /* start of gids for apps in each user to share */
92
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080093#if !defined(EXCLUDE_FS_CONFIG_STRUCTURES)
94struct android_id_info {
95 const char *name;
96 unsigned aid;
97};
98
Nick Kralevich4688ac52010-08-31 09:44:43 -070099static const struct android_id_info android_ids[] = {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800100 { "root", AID_ROOT, },
101 { "system", AID_SYSTEM, },
102 { "radio", AID_RADIO, },
103 { "bluetooth", AID_BLUETOOTH, },
104 { "graphics", AID_GRAPHICS, },
105 { "input", AID_INPUT, },
106 { "audio", AID_AUDIO, },
107 { "camera", AID_CAMERA, },
108 { "log", AID_LOG, },
109 { "compass", AID_COMPASS, },
110 { "mount", AID_MOUNT, },
111 { "wifi", AID_WIFI, },
112 { "dhcp", AID_DHCP, },
113 { "adb", AID_ADB, },
114 { "install", AID_INSTALL, },
115 { "media", AID_MEDIA, },
aimitakeshie572d592010-07-27 08:38:35 +0900116 { "drm", AID_DRM, },
Robert Greenwalt1d91fcf2012-03-27 16:59:27 -0700117 { "mdnsr", AID_MDNSR, },
Nick Pelly85905a62010-10-14 23:30:51 -0700118 { "nfc", AID_NFC, },
Jeffrey Tinker7005c032011-09-30 12:40:25 -0700119 { "drmrpc", AID_DRMRPC, },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800120 { "shell", AID_SHELL, },
121 { "cache", AID_CACHE, },
122 { "diag", AID_DIAG, },
123 { "net_bt_admin", AID_NET_BT_ADMIN, },
124 { "net_bt", AID_NET_BT, },
Dianne Hackborn5d3aadb2012-03-12 10:54:11 -0700125 { "sdcard_r", AID_SDCARD_R, },
San Mehat6e1f2152009-04-23 09:15:08 -0700126 { "sdcard_rw", AID_SDCARD_RW, },
Mike Lockwood2e0047b2010-10-29 10:55:54 -0400127 { "media_rw", AID_MEDIA_RW, },
San Mehat4a6f2322009-05-14 19:44:59 -0700128 { "vpn", AID_VPN, },
Chung-yih Wang1f75d702009-06-01 19:04:05 +0800129 { "keystore", AID_KEYSTORE, },
Mike Lockwood93ac1552010-05-06 13:30:09 -0400130 { "usb", AID_USB, },
Mike Lockwoodaf7bdc62011-01-10 08:22:30 -0500131 { "mtp", AID_MTP, },
Mike Lockwoodc29919c2010-09-27 08:01:58 -0400132 { "gps", AID_GPS, },
Chung-yih Wang1f75d702009-06-01 19:04:05 +0800133 { "inet", AID_INET, },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800134 { "net_raw", AID_NET_RAW, },
Chia-chi Yeh88dc6572009-06-19 14:59:08 +0800135 { "net_admin", AID_NET_ADMIN, },
Jeff Sharkey4f1df182011-05-02 17:52:03 -0700136 { "net_bw_stats", AID_NET_BW_STATS, },
137 { "net_bw_acct", AID_NET_BW_ACCT, },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800138 { "misc", AID_MISC, },
139 { "nobody", AID_NOBODY, },
140};
141
142#define android_id_count \
143 (sizeof(android_ids) / sizeof(android_ids[0]))
Doug Zongker08c370c2012-05-03 14:16:54 -0700144
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800145struct fs_path_config {
146 unsigned mode;
147 unsigned uid;
148 unsigned gid;
149 const char *prefix;
150};
151
152/* Rules for directories.
153** These rules are applied based on "first match", so they
154** should start with the most specific path and work their
155** way up to the root.
156*/
157
158static struct fs_path_config android_dirs[] = {
159 { 00770, AID_SYSTEM, AID_CACHE, "cache" },
160 { 00771, AID_SYSTEM, AID_SYSTEM, "data/app" },
161 { 00771, AID_SYSTEM, AID_SYSTEM, "data/app-private" },
162 { 00771, AID_SYSTEM, AID_SYSTEM, "data/dalvik-cache" },
163 { 00771, AID_SYSTEM, AID_SYSTEM, "data/data" },
164 { 00771, AID_SHELL, AID_SHELL, "data/local/tmp" },
165 { 00771, AID_SHELL, AID_SHELL, "data/local" },
166 { 01771, AID_SYSTEM, AID_MISC, "data/misc" },
167 { 00770, AID_DHCP, AID_DHCP, "data/misc/dhcp" },
Paul Eastham1ace2232011-02-03 17:12:47 -0800168 { 00775, AID_MEDIA_RW, AID_MEDIA_RW, "data/media" },
169 { 00775, AID_MEDIA_RW, AID_MEDIA_RW, "data/media/Music" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800170 { 00771, AID_SYSTEM, AID_SYSTEM, "data" },
171 { 00750, AID_ROOT, AID_SHELL, "sbin" },
172 { 00755, AID_ROOT, AID_SHELL, "system/bin" },
Brian Swetland02863b92010-09-19 03:36:39 -0700173 { 00755, AID_ROOT, AID_SHELL, "system/vendor" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800174 { 00755, AID_ROOT, AID_SHELL, "system/xbin" },
Chia-chi Yeh88dc6572009-06-19 14:59:08 +0800175 { 00755, AID_ROOT, AID_ROOT, "system/etc/ppp" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800176 { 00777, AID_ROOT, AID_ROOT, "sdcard" },
177 { 00755, AID_ROOT, AID_ROOT, 0 },
178};
179
180/* Rules for files.
181** These rules are applied based on "first match", so they
182** should start with the most specific path and work their
183** way up to the root. Prefixes ending in * denotes wildcard
184** and will allow partial matches.
185*/
186static struct fs_path_config android_files[] = {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800187 { 00440, AID_ROOT, AID_SHELL, "system/etc/init.goldfish.rc" },
188 { 00550, AID_ROOT, AID_SHELL, "system/etc/init.goldfish.sh" },
189 { 00440, AID_ROOT, AID_SHELL, "system/etc/init.trout.rc" },
190 { 00550, AID_ROOT, AID_SHELL, "system/etc/init.ril" },
191 { 00550, AID_ROOT, AID_SHELL, "system/etc/init.testmenu" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800192 { 00550, AID_DHCP, AID_SHELL, "system/etc/dhcpcd/dhcpcd-run-hooks" },
193 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/dbus.conf" },
Jaikumar Ganesheafdd862010-01-07 20:24:55 -0800194 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/bluetooth/main.conf" },
195 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/bluetooth/input.conf" },
196 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/bluetooth/audio.conf" },
Danica Chang78fdd232010-08-12 15:42:30 -0700197 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/bluetooth/network.conf" },
Eric Olsen35550192010-03-16 10:22:06 -0700198 { 00444, AID_NET_BT, AID_NET_BT, "system/etc/bluetooth/blacklist.conf" },
Jaikumar Ganesheafdd862010-01-07 20:24:55 -0800199 { 00640, AID_SYSTEM, AID_SYSTEM, "system/etc/bluetooth/auto_pairing.conf" },
Jean-Baptiste Querub0849292009-10-02 11:08:55 -0700200 { 00444, AID_RADIO, AID_AUDIO, "system/etc/AudioPara4.csv" },
Chia-chi Yeh88dc6572009-06-19 14:59:08 +0800201 { 00555, AID_ROOT, AID_ROOT, "system/etc/ppp/*" },
Bruce Beare96a2bb62010-06-24 14:36:38 -0700202 { 00555, AID_ROOT, AID_ROOT, "system/etc/rc.*" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800203 { 00644, AID_SYSTEM, AID_SYSTEM, "data/app/*" },
Paul Eastham1ace2232011-02-03 17:12:47 -0800204 { 00644, AID_MEDIA_RW, AID_MEDIA_RW, "data/media/*" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800205 { 00644, AID_SYSTEM, AID_SYSTEM, "data/app-private/*" },
206 { 00644, AID_APP, AID_APP, "data/data/*" },
207 /* the following two files are INTENTIONALLY set-gid and not set-uid.
208 * Do not change. */
209 { 02755, AID_ROOT, AID_NET_RAW, "system/bin/ping" },
Nick Kralevich3e1aac62010-03-08 11:36:10 -0800210 { 02750, AID_ROOT, AID_INET, "system/bin/netcfg" },
David 'Digit' Turner1f4d9522010-03-02 18:05:23 -0800211 /* the following five files are INTENTIONALLY set-uid, but they
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800212 * are NOT included on user builds. */
213 { 06755, AID_ROOT, AID_ROOT, "system/xbin/su" },
214 { 06755, AID_ROOT, AID_ROOT, "system/xbin/librank" },
215 { 06755, AID_ROOT, AID_ROOT, "system/xbin/procrank" },
216 { 06755, AID_ROOT, AID_ROOT, "system/xbin/procmem" },
Dan Egnor328a4fb2009-05-15 12:57:58 -0700217 { 06755, AID_ROOT, AID_ROOT, "system/xbin/tcpdump" },
Wink Savillebbf1c642010-03-11 16:22:44 -0800218 { 04770, AID_ROOT, AID_RADIO, "system/bin/pppd-ril" },
David 'Digit' Turner1f4d9522010-03-02 18:05:23 -0800219 /* the following file is INTENTIONALLY set-uid, and IS included
220 * in user builds. */
221 { 06750, AID_ROOT, AID_SHELL, "system/bin/run-as" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800222 { 00755, AID_ROOT, AID_SHELL, "system/bin/*" },
Brad Fitzpatrick8d1c6e72011-03-01 15:12:11 -0800223 { 00755, AID_ROOT, AID_ROOT, "system/lib/valgrind/*" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800224 { 00755, AID_ROOT, AID_SHELL, "system/xbin/*" },
Brian Swetland02863b92010-09-19 03:36:39 -0700225 { 00755, AID_ROOT, AID_SHELL, "system/vendor/bin/*" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226 { 00750, AID_ROOT, AID_SHELL, "sbin/*" },
227 { 00755, AID_ROOT, AID_ROOT, "bin/*" },
228 { 00750, AID_ROOT, AID_SHELL, "init*" },
Dima Zavinf48b2362011-08-30 10:46:09 -0700229 { 00750, AID_ROOT, AID_SHELL, "charger*" },
Ken Sumrallc1bf8962012-01-06 19:09:42 -0800230 { 00750, AID_ROOT, AID_SHELL, "sbin/fs_mgr" },
Doug Zongker0e6056d2012-05-07 16:48:09 -0700231 { 00640, AID_ROOT, AID_SHELL, "fstab.*" },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800232 { 00644, AID_ROOT, AID_ROOT, 0 },
233};
234
235static inline void fs_config(const char *path, int dir,
236 unsigned *uid, unsigned *gid, unsigned *mode)
237{
238 struct fs_path_config *pc;
239 int plen;
Doug Zongker08c370c2012-05-03 14:16:54 -0700240
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800241 pc = dir ? android_dirs : android_files;
242 plen = strlen(path);
243 for(; pc->prefix; pc++){
244 int len = strlen(pc->prefix);
245 if (dir) {
246 if(plen < len) continue;
247 if(!strncmp(pc->prefix, path, len)) break;
248 continue;
249 }
250 /* If name ends in * then allow partial matches. */
251 if (pc->prefix[len -1] == '*') {
252 if(!strncmp(pc->prefix, path, len - 1)) break;
253 } else if (plen == len){
254 if(!strncmp(pc->prefix, path, len)) break;
255 }
256 }
257 *uid = pc->uid;
258 *gid = pc->gid;
259 *mode = (*mode & (~07777)) | pc->mode;
Doug Zongker08c370c2012-05-03 14:16:54 -0700260
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800261#if 0
Doug Zongker08c370c2012-05-03 14:16:54 -0700262 fprintf(stderr,"< '%s' '%s' %d %d %o >\n",
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800263 path, pc->prefix ? pc->prefix : "", *uid, *gid, *mode);
264#endif
265}
266#endif
267#endif