blob: a47f2e4ade793ab31c63cc78572d01233d002c81 [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 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080052
53#define AID_SHELL 2000 /* adb and debug shell user */
54#define AID_CACHE 2001 /* cache access */
55#define AID_DIAG 2002 /* access to diagnostic resources */
56
57/* The 3000 series are intended for use as supplemental group id's only.
58 * They indicate special Android capabilities that the kernel is aware of. */
59#define AID_NET_BT_ADMIN 3001 /* bluetooth: create any socket */
60#define AID_NET_BT 3002 /* bluetooth: create sco, rfcomm or l2cap sockets */
61#define AID_INET 3003 /* can create AF_INET and AF_INET6 sockets */
62#define AID_NET_RAW 3004 /* can create raw INET sockets */
63
64#define AID_MISC 9998 /* access to misc storage */
65#define AID_NOBODY 9999
66
67#define AID_APP 10000 /* first app user */
68
69#if !defined(EXCLUDE_FS_CONFIG_STRUCTURES)
70struct android_id_info {
71 const char *name;
72 unsigned aid;
73};
74
75static struct android_id_info android_ids[] = {
76 { "root", AID_ROOT, },
77 { "system", AID_SYSTEM, },
78 { "radio", AID_RADIO, },
79 { "bluetooth", AID_BLUETOOTH, },
80 { "graphics", AID_GRAPHICS, },
81 { "input", AID_INPUT, },
82 { "audio", AID_AUDIO, },
83 { "camera", AID_CAMERA, },
84 { "log", AID_LOG, },
85 { "compass", AID_COMPASS, },
86 { "mount", AID_MOUNT, },
87 { "wifi", AID_WIFI, },
88 { "dhcp", AID_DHCP, },
89 { "adb", AID_ADB, },
90 { "install", AID_INSTALL, },
91 { "media", AID_MEDIA, },
92 { "shell", AID_SHELL, },
93 { "cache", AID_CACHE, },
94 { "diag", AID_DIAG, },
95 { "net_bt_admin", AID_NET_BT_ADMIN, },
96 { "net_bt", AID_NET_BT, },
San Mehat6e1f2152009-04-23 09:15:08 -070097 { "sdcard_rw", AID_SDCARD_RW, },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080098 { "inet", AID_INET, },
99 { "net_raw", AID_NET_RAW, },
100 { "misc", AID_MISC, },
101 { "nobody", AID_NOBODY, },
102};
103
104#define android_id_count \
105 (sizeof(android_ids) / sizeof(android_ids[0]))
106
107struct fs_path_config {
108 unsigned mode;
109 unsigned uid;
110 unsigned gid;
111 const char *prefix;
112};
113
114/* Rules for directories.
115** These rules are applied based on "first match", so they
116** should start with the most specific path and work their
117** way up to the root.
118*/
119
120static struct fs_path_config android_dirs[] = {
121 { 00770, AID_SYSTEM, AID_CACHE, "cache" },
122 { 00771, AID_SYSTEM, AID_SYSTEM, "data/app" },
123 { 00771, AID_SYSTEM, AID_SYSTEM, "data/app-private" },
124 { 00771, AID_SYSTEM, AID_SYSTEM, "data/dalvik-cache" },
125 { 00771, AID_SYSTEM, AID_SYSTEM, "data/data" },
126 { 00771, AID_SHELL, AID_SHELL, "data/local/tmp" },
127 { 00771, AID_SHELL, AID_SHELL, "data/local" },
128 { 01771, AID_SYSTEM, AID_MISC, "data/misc" },
129 { 00770, AID_DHCP, AID_DHCP, "data/misc/dhcp" },
130 { 00771, AID_SYSTEM, AID_SYSTEM, "data" },
131 { 00750, AID_ROOT, AID_SHELL, "sbin" },
132 { 00755, AID_ROOT, AID_SHELL, "system/bin" },
133 { 00755, AID_ROOT, AID_SHELL, "system/xbin" },
134 { 00777, AID_ROOT, AID_ROOT, "system/etc/ppp" }, /* REMOVE */
135 { 00777, AID_ROOT, AID_ROOT, "sdcard" },
136 { 00755, AID_ROOT, AID_ROOT, 0 },
137};
138
139/* Rules for files.
140** These rules are applied based on "first match", so they
141** should start with the most specific path and work their
142** way up to the root. Prefixes ending in * denotes wildcard
143** and will allow partial matches.
144*/
145static struct fs_path_config android_files[] = {
146 { 00555, AID_ROOT, AID_ROOT, "system/etc/ppp/ip-up" },
147 { 00555, AID_ROOT, AID_ROOT, "system/etc/ppp/ip-down" },
148 { 00440, AID_ROOT, AID_SHELL, "system/etc/init.goldfish.rc" },
149 { 00550, AID_ROOT, AID_SHELL, "system/etc/init.goldfish.sh" },
150 { 00440, AID_ROOT, AID_SHELL, "system/etc/init.trout.rc" },
151 { 00550, AID_ROOT, AID_SHELL, "system/etc/init.ril" },
152 { 00550, AID_ROOT, AID_SHELL, "system/etc/init.testmenu" },
153 { 00550, AID_ROOT, AID_SHELL, "system/etc/init.gprs-pppd" },
154 { 00550, AID_DHCP, AID_SHELL, "system/etc/dhcpcd/dhcpcd-run-hooks" },
155 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/dbus.conf" },
156 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/bluez/hcid.conf" },
157 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/bluez/input.conf" },
158 { 00440, AID_BLUETOOTH, AID_BLUETOOTH, "system/etc/bluez/audio.conf" },
159 { 00440, AID_RADIO, AID_AUDIO, "/system/etc/AudioPara4.csv" },
160 { 00644, AID_SYSTEM, AID_SYSTEM, "data/app/*" },
161 { 00644, AID_SYSTEM, AID_SYSTEM, "data/app-private/*" },
162 { 00644, AID_APP, AID_APP, "data/data/*" },
163 /* the following two files are INTENTIONALLY set-gid and not set-uid.
164 * Do not change. */
165 { 02755, AID_ROOT, AID_NET_RAW, "system/bin/ping" },
166 { 02755, AID_ROOT, AID_INET, "system/bin/netcfg" },
167 /* the following four files are INTENTIONALLY set-uid, but they
168 * are NOT included on user builds. */
169 { 06755, AID_ROOT, AID_ROOT, "system/xbin/su" },
170 { 06755, AID_ROOT, AID_ROOT, "system/xbin/librank" },
171 { 06755, AID_ROOT, AID_ROOT, "system/xbin/procrank" },
172 { 06755, AID_ROOT, AID_ROOT, "system/xbin/procmem" },
173 { 00755, AID_ROOT, AID_SHELL, "system/bin/*" },
174 { 00755, AID_ROOT, AID_SHELL, "system/xbin/*" },
175 { 00750, AID_ROOT, AID_SHELL, "sbin/*" },
176 { 00755, AID_ROOT, AID_ROOT, "bin/*" },
177 { 00750, AID_ROOT, AID_SHELL, "init*" },
178 { 00644, AID_ROOT, AID_ROOT, 0 },
179};
180
181static inline void fs_config(const char *path, int dir,
182 unsigned *uid, unsigned *gid, unsigned *mode)
183{
184 struct fs_path_config *pc;
185 int plen;
186
187 pc = dir ? android_dirs : android_files;
188 plen = strlen(path);
189 for(; pc->prefix; pc++){
190 int len = strlen(pc->prefix);
191 if (dir) {
192 if(plen < len) continue;
193 if(!strncmp(pc->prefix, path, len)) break;
194 continue;
195 }
196 /* If name ends in * then allow partial matches. */
197 if (pc->prefix[len -1] == '*') {
198 if(!strncmp(pc->prefix, path, len - 1)) break;
199 } else if (plen == len){
200 if(!strncmp(pc->prefix, path, len)) break;
201 }
202 }
203 *uid = pc->uid;
204 *gid = pc->gid;
205 *mode = (*mode & (~07777)) | pc->mode;
206
207#if 0
208 fprintf(stderr,"< '%s' '%s' %d %d %o >\n",
209 path, pc->prefix ? pc->prefix : "", *uid, *gid, *mode);
210#endif
211}
212#endif
213#endif