blob: c220a0c6211db2600abe429f80c4a2a0a448cdfb [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
Mark Salyzyn16045612015-04-06 12:51:35 -070025#include <sys/cdefs.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#include <sys/types.h>
Nick Kraleviche9e74f32013-02-07 14:22:12 -080027#include <stdint.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028
Elliott Hughes9b828ad2015-07-30 08:47:35 -070029#if defined(__ANDROID__)
Nick Kralevichfe813572013-02-11 15:14:55 -080030#include <linux/capability.h>
31#else
32#include "android_filesystem_capability.h"
33#endif
34
Jorge Lucangeli Obese920c462015-09-02 16:19:59 -070035#define CAP_MASK_LONG(cap_name) (1ULL << (cap_name))
36
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080037/* This is the master Users and Groups config for the platform.
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -070038 * DO NOT EVER RENUMBER
39 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080040
41#define AID_ROOT 0 /* traditional unix root user */
42
43#define AID_SYSTEM 1000 /* system server */
44
45#define AID_RADIO 1001 /* telephony subsystem, RIL */
46#define AID_BLUETOOTH 1002 /* bluetooth subsystem */
47#define AID_GRAPHICS 1003 /* graphics devices */
48#define AID_INPUT 1004 /* input devices */
49#define AID_AUDIO 1005 /* audio devices */
50#define AID_CAMERA 1006 /* camera devices */
51#define AID_LOG 1007 /* log devices */
52#define AID_COMPASS 1008 /* compass device */
53#define AID_MOUNT 1009 /* mountd socket */
54#define AID_WIFI 1010 /* wifi subsystem */
55#define AID_ADB 1011 /* android debug bridge (adbd) */
56#define AID_INSTALL 1012 /* group for installing packages */
57#define AID_MEDIA 1013 /* mediaserver process */
58#define AID_DHCP 1014 /* dhcp client */
San Mehat6e1f2152009-04-23 09:15:08 -070059#define AID_SDCARD_RW 1015 /* external storage write access */
San Mehat4a6f2322009-05-14 19:44:59 -070060#define AID_VPN 1016 /* vpn system */
Chung-yih Wang1f75d702009-06-01 19:04:05 +080061#define AID_KEYSTORE 1017 /* keystore subsystem */
Mike Lockwood93ac1552010-05-06 13:30:09 -040062#define AID_USB 1018 /* USB devices */
aimitakeshie572d592010-07-27 08:38:35 +090063#define AID_DRM 1019 /* DRM server */
Robert Greenwalt1d91fcf2012-03-27 16:59:27 -070064#define AID_MDNSR 1020 /* MulticastDNSResponder (service discovery) */
Mike Lockwoodc29919c2010-09-27 08:01:58 -040065#define AID_GPS 1021 /* GPS daemon */
Jeff Hamiltona6a36c02011-03-24 21:40:43 -050066#define AID_UNUSED1 1022 /* deprecated, DO NOT USE */
Mike Lockwood2e0047b2010-10-29 10:55:54 -040067#define AID_MEDIA_RW 1023 /* internal media storage write access */
Mike Lockwoodaf7bdc62011-01-10 08:22:30 -050068#define AID_MTP 1024 /* MTP USB driver access */
Nick Pelly097b4ed2011-11-21 14:55:59 -080069#define AID_UNUSED2 1025 /* deprecated, DO NOT USE */
Jeffrey Tinker7005c032011-09-30 12:40:25 -070070#define AID_DRMRPC 1026 /* group for drm rpc */
Nick Pelly097b4ed2011-11-21 14:55:59 -080071#define AID_NFC 1027 /* nfc subsystem */
Dianne Hackborn50458cf2012-03-07 12:57:14 -080072#define AID_SDCARD_R 1028 /* external storage read access */
Daniel Drownb49183f2012-02-16 10:00:24 -060073#define AID_CLAT 1029 /* clat part of nat464 */
Doug Zongker8cc97302013-01-29 10:50:22 -080074#define AID_LOOP_RADIO 1030 /* loop radio devices */
Jeff Tinker08d64302013-04-23 19:54:17 -070075#define AID_MEDIA_DRM 1031 /* MediaDrm plugins */
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -070076#define AID_PACKAGE_INFO 1032 /* access to installed package details */
77#define AID_SDCARD_PICS 1033 /* external storage photos access */
78#define AID_SDCARD_AV 1034 /* external storage audio/video access */
79#define AID_SDCARD_ALL 1035 /* access all users external storage */
Nick Kralevich3e76e0a2011-12-15 11:43:38 -080080#define AID_LOGD 1036 /* log daemon */
Torne (Richard Coles)234f6962014-05-22 18:40:21 +010081#define AID_SHARED_RELRO 1037 /* creator of shared GNU RELRO files */
Daniel Eratf7b8cae2015-07-17 16:04:54 -060082#define AID_DBUS 1038 /* dbus-daemon IPC broker process */
Gilad Arnoldb5fa8892015-10-02 07:17:21 -070083#define AID_TLSDATE 1039 /* tlsdate unprivileged user */
Marco Nelissen51544cc2015-09-24 09:10:29 -070084#define AID_MEDIA_EX 1040 /* mediaextractor process */
Jorge Lucangeli Obes37211e12015-12-18 11:17:33 -080085#define AID_AUDIOSERVER 1041 /* audioserver process */
Jorge Lucangeli Obes4ae18022015-12-28 15:16:48 -080086#define AID_METRICS_COLL 1042 /* metrics_collector process */
87#define AID_METRICSD 1043 /* metricsd process */
88#define AID_WEBSERV 1044 /* webservd process */
Josh Gaoe7a9e522015-11-17 13:57:03 -080089#define AID_DEBUGGERD 1045 /* debuggerd unprivileged user */
Marco Nelissen003c0722016-01-20 11:56:08 -080090#define AID_MEDIA_CODEC 1046 /* mediacodec process */
Chien-Yu Chencd2ef4e2015-12-03 16:32:12 -080091#define AID_CAMERASERVER 1047 /* cameraserver process */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080092
93#define AID_SHELL 2000 /* adb and debug shell user */
94#define AID_CACHE 2001 /* cache access */
95#define AID_DIAG 2002 /* access to diagnostic resources */
96
Johan Redestig60ac6362014-11-07 09:21:13 +010097/* The range 2900-2999 is reserved for OEM, and must never be
98 * used here */
99#define AID_OEM_RESERVED_START 2900
100#define AID_OEM_RESERVED_END 2999
101
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800102/* The 3000 series are intended for use as supplemental group id's only.
103 * They indicate special Android capabilities that the kernel is aware of. */
104#define AID_NET_BT_ADMIN 3001 /* bluetooth: create any socket */
105#define AID_NET_BT 3002 /* bluetooth: create sco, rfcomm or l2cap sockets */
106#define AID_INET 3003 /* can create AF_INET and AF_INET6 sockets */
107#define AID_NET_RAW 3004 /* can create raw INET sockets */
Chia-chi Yeh88dc6572009-06-19 14:59:08 +0800108#define AID_NET_ADMIN 3005 /* can configure interfaces and routing tables. */
Jeff Sharkey4f1df182011-05-02 17:52:03 -0700109#define AID_NET_BW_STATS 3006 /* read bandwidth statistics */
110#define AID_NET_BW_ACCT 3007 /* change bandwidth statistics accounting */
Matthew Xie971153a2012-10-04 12:35:27 -0700111#define AID_NET_BT_STACK 3008 /* bluetooth: access config files */
Nick Kralevichc39ba5a2015-11-07 16:52:17 -0800112#define AID_READPROC 3009 /* Allow /proc read access */
Pavlin Radoslavov17d80c82015-11-23 17:18:31 -0800113#define AID_WAKELOCK 3010 /* Allow system wakelock read/write access */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800114
Jorge Lucangeli Obesb93b9d42015-07-31 13:52:19 -0700115/* The range 5000-5999 is also reserved for OEM, and must never be used here. */
116#define AID_OEM_RESERVED_2_START 5000
117#define AID_OEM_RESERVED_2_END 5999
118
Robin Leeb3ef0392014-04-25 15:16:02 +0100119#define AID_EVERYBODY 9997 /* shared between all apps in the same profile */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800120#define AID_MISC 9998 /* access to misc storage */
121#define AID_NOBODY 9999
122
Dianne Hackbornca185ab2012-02-09 11:19:00 -0800123#define AID_APP 10000 /* first app user */
124
125#define AID_ISOLATED_START 99000 /* start of uids for fully isolated sandboxed processes */
126#define AID_ISOLATED_END 99999 /* end of uids for fully isolated sandboxed processes */
127
128#define AID_USER 100000 /* offset for uid ranges for each user */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800129
Kenny Root7e41c842012-09-11 15:03:45 -0700130#define AID_SHARED_GID_START 50000 /* start of gids for apps in each user to share */
131#define AID_SHARED_GID_END 59999 /* start of gids for apps in each user to share */
132
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800133#if !defined(EXCLUDE_FS_CONFIG_STRUCTURES)
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700134/*
135 * Used in:
136 * bionic/libc/bionic/stubs.cpp
137 * external/libselinux/src/android.c
138 * system/core/logd/LogStatistics.cpp
139 * system/core/init/ueventd.cpp
140 * system/core/init/util.cpp
141 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800142struct android_id_info {
143 const char *name;
144 unsigned aid;
145};
146
Nick Kralevich4688ac52010-08-31 09:44:43 -0700147static const struct android_id_info android_ids[] = {
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -0700148 { "root", AID_ROOT, },
149
150 { "system", AID_SYSTEM, },
151
152 { "radio", AID_RADIO, },
153 { "bluetooth", AID_BLUETOOTH, },
154 { "graphics", AID_GRAPHICS, },
155 { "input", AID_INPUT, },
156 { "audio", AID_AUDIO, },
157 { "camera", AID_CAMERA, },
158 { "log", AID_LOG, },
159 { "compass", AID_COMPASS, },
160 { "mount", AID_MOUNT, },
161 { "wifi", AID_WIFI, },
162 { "adb", AID_ADB, },
163 { "install", AID_INSTALL, },
164 { "media", AID_MEDIA, },
165 { "dhcp", AID_DHCP, },
166 { "sdcard_rw", AID_SDCARD_RW, },
167 { "vpn", AID_VPN, },
168 { "keystore", AID_KEYSTORE, },
169 { "usb", AID_USB, },
170 { "drm", AID_DRM, },
171 { "mdnsr", AID_MDNSR, },
172 { "gps", AID_GPS, },
173 // AID_UNUSED1
174 { "media_rw", AID_MEDIA_RW, },
175 { "mtp", AID_MTP, },
176 // AID_UNUSED2
177 { "drmrpc", AID_DRMRPC, },
178 { "nfc", AID_NFC, },
179 { "sdcard_r", AID_SDCARD_R, },
180 { "clat", AID_CLAT, },
181 { "loop_radio", AID_LOOP_RADIO, },
182 { "mediadrm", AID_MEDIA_DRM, },
183 { "package_info", AID_PACKAGE_INFO, },
184 { "sdcard_pics", AID_SDCARD_PICS, },
185 { "sdcard_av", AID_SDCARD_AV, },
186 { "sdcard_all", AID_SDCARD_ALL, },
Nick Kralevich3e76e0a2011-12-15 11:43:38 -0800187 { "logd", AID_LOGD, },
Torne (Richard Coles)234f6962014-05-22 18:40:21 +0100188 { "shared_relro", AID_SHARED_RELRO, },
Daniel Eratf7b8cae2015-07-17 16:04:54 -0600189 { "dbus", AID_DBUS, },
Gilad Arnoldb5fa8892015-10-02 07:17:21 -0700190 { "tlsdate", AID_TLSDATE, },
Marco Nelissen51544cc2015-09-24 09:10:29 -0700191 { "mediaex", AID_MEDIA_EX, },
Jorge Lucangeli Obes37211e12015-12-18 11:17:33 -0800192 { "audioserver", AID_AUDIOSERVER, },
Jorge Lucangeli Obes4ae18022015-12-28 15:16:48 -0800193 { "metrics_coll", AID_METRICS_COLL },
194 { "metricsd", AID_METRICSD },
195 { "webserv", AID_WEBSERV },
Josh Gaoe7a9e522015-11-17 13:57:03 -0800196 { "debuggerd", AID_DEBUGGERD, },
Marco Nelissen003c0722016-01-20 11:56:08 -0800197 { "mediacodec", AID_MEDIA_CODEC, },
Chien-Yu Chencd2ef4e2015-12-03 16:32:12 -0800198 { "cameraserver", AID_CAMERASERVER, },
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -0700199
200 { "shell", AID_SHELL, },
201 { "cache", AID_CACHE, },
202 { "diag", AID_DIAG, },
203
204 { "net_bt_admin", AID_NET_BT_ADMIN, },
205 { "net_bt", AID_NET_BT, },
206 { "inet", AID_INET, },
207 { "net_raw", AID_NET_RAW, },
208 { "net_admin", AID_NET_ADMIN, },
209 { "net_bw_stats", AID_NET_BW_STATS, },
210 { "net_bw_acct", AID_NET_BW_ACCT, },
211 { "net_bt_stack", AID_NET_BT_STACK, },
Nick Kralevichc39ba5a2015-11-07 16:52:17 -0800212 { "readproc", AID_READPROC, },
Pavlin Radoslavov17d80c82015-11-23 17:18:31 -0800213 { "wakelock", AID_WAKELOCK, },
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -0700214
Robin Leeb3ef0392014-04-25 15:16:02 +0100215 { "everybody", AID_EVERYBODY, },
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -0700216 { "misc", AID_MISC, },
217 { "nobody", AID_NOBODY, },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800218};
219
220#define android_id_count \
221 (sizeof(android_ids) / sizeof(android_ids[0]))
Doug Zongker08c370c2012-05-03 14:16:54 -0700222
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800223struct fs_path_config {
224 unsigned mode;
225 unsigned uid;
226 unsigned gid;
Nick Kraleviche9e74f32013-02-07 14:22:12 -0800227 uint64_t capabilities;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800228 const char *prefix;
229};
230
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700231/* Rules for directories and files has moved to system/code/libcutils/fs_config.c */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800232
Mark Salyzyn16045612015-04-06 12:51:35 -0700233__BEGIN_DECLS
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700234
235/*
236 * Used in:
237 * build/tools/fs_config/fs_config.c
238 * build/tools/fs_get_stats/fs_get_stats.c
Thierry Strudeldf33ffa2015-07-09 09:50:31 -0700239 * system/extras/ext4_utils/make_ext4fs_main.c
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700240 * external/squashfs-tools/squashfs-tools/android.c
241 * system/core/cpio/mkbootfs.c
242 * system/core/adb/file_sync_service.cpp
243 * system/extras/ext4_utils/canned_fs_config.c
244 */
Thierry Strudeldf33ffa2015-07-09 09:50:31 -0700245void fs_config(const char *path, int dir, const char *target_out_path,
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700246 unsigned *uid, unsigned *gid, unsigned *mode, uint64_t *capabilities);
247
Mark Salyzyn5d9e5ef2015-04-01 11:02:00 -0700248ssize_t fs_config_generate(char *buffer, size_t length, const struct fs_path_config *pc);
249
Mark Salyzyn16045612015-04-06 12:51:35 -0700250__END_DECLS
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700251
252#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253#endif