blob: 2ed27dcacca53f0281bf98097028374a242b9e1d [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
Nick Kralevichfe813572013-02-11 15:14:55 -080029#ifdef HAVE_ANDROID_OS
30#include <linux/capability.h>
31#else
32#include "android_filesystem_capability.h"
33#endif
34
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080035/* This is the master Users and Groups config for the platform.
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -070036 * DO NOT EVER RENUMBER
37 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080038
39#define AID_ROOT 0 /* traditional unix root user */
40
41#define AID_SYSTEM 1000 /* system server */
42
43#define AID_RADIO 1001 /* telephony subsystem, RIL */
44#define AID_BLUETOOTH 1002 /* bluetooth subsystem */
45#define AID_GRAPHICS 1003 /* graphics devices */
46#define AID_INPUT 1004 /* input devices */
47#define AID_AUDIO 1005 /* audio devices */
48#define AID_CAMERA 1006 /* camera devices */
49#define AID_LOG 1007 /* log devices */
50#define AID_COMPASS 1008 /* compass device */
51#define AID_MOUNT 1009 /* mountd socket */
52#define AID_WIFI 1010 /* wifi subsystem */
53#define AID_ADB 1011 /* android debug bridge (adbd) */
54#define AID_INSTALL 1012 /* group for installing packages */
55#define AID_MEDIA 1013 /* mediaserver process */
56#define AID_DHCP 1014 /* dhcp client */
San Mehat6e1f2152009-04-23 09:15:08 -070057#define AID_SDCARD_RW 1015 /* external storage write access */
San Mehat4a6f2322009-05-14 19:44:59 -070058#define AID_VPN 1016 /* vpn system */
Chung-yih Wang1f75d702009-06-01 19:04:05 +080059#define AID_KEYSTORE 1017 /* keystore subsystem */
Mike Lockwood93ac1552010-05-06 13:30:09 -040060#define AID_USB 1018 /* USB devices */
aimitakeshie572d592010-07-27 08:38:35 +090061#define AID_DRM 1019 /* DRM server */
Robert Greenwalt1d91fcf2012-03-27 16:59:27 -070062#define AID_MDNSR 1020 /* MulticastDNSResponder (service discovery) */
Mike Lockwoodc29919c2010-09-27 08:01:58 -040063#define AID_GPS 1021 /* GPS daemon */
Jeff Hamiltona6a36c02011-03-24 21:40:43 -050064#define AID_UNUSED1 1022 /* deprecated, DO NOT USE */
Mike Lockwood2e0047b2010-10-29 10:55:54 -040065#define AID_MEDIA_RW 1023 /* internal media storage write access */
Mike Lockwoodaf7bdc62011-01-10 08:22:30 -050066#define AID_MTP 1024 /* MTP USB driver access */
Nick Pelly097b4ed2011-11-21 14:55:59 -080067#define AID_UNUSED2 1025 /* deprecated, DO NOT USE */
Jeffrey Tinker7005c032011-09-30 12:40:25 -070068#define AID_DRMRPC 1026 /* group for drm rpc */
Nick Pelly097b4ed2011-11-21 14:55:59 -080069#define AID_NFC 1027 /* nfc subsystem */
Dianne Hackborn50458cf2012-03-07 12:57:14 -080070#define AID_SDCARD_R 1028 /* external storage read access */
Daniel Drownb49183f2012-02-16 10:00:24 -060071#define AID_CLAT 1029 /* clat part of nat464 */
Doug Zongker8cc97302013-01-29 10:50:22 -080072#define AID_LOOP_RADIO 1030 /* loop radio devices */
Jeff Tinker08d64302013-04-23 19:54:17 -070073#define AID_MEDIA_DRM 1031 /* MediaDrm plugins */
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -070074#define AID_PACKAGE_INFO 1032 /* access to installed package details */
75#define AID_SDCARD_PICS 1033 /* external storage photos access */
76#define AID_SDCARD_AV 1034 /* external storage audio/video access */
77#define AID_SDCARD_ALL 1035 /* access all users external storage */
Nick Kralevich3e76e0a2011-12-15 11:43:38 -080078#define AID_LOGD 1036 /* log daemon */
Torne (Richard Coles)234f6962014-05-22 18:40:21 +010079#define AID_SHARED_RELRO 1037 /* creator of shared GNU RELRO files */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080080
81#define AID_SHELL 2000 /* adb and debug shell user */
82#define AID_CACHE 2001 /* cache access */
83#define AID_DIAG 2002 /* access to diagnostic resources */
84
Johan Redestig60ac6362014-11-07 09:21:13 +010085/* The range 2900-2999 is reserved for OEM, and must never be
86 * used here */
87#define AID_OEM_RESERVED_START 2900
88#define AID_OEM_RESERVED_END 2999
89
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080090/* The 3000 series are intended for use as supplemental group id's only.
91 * They indicate special Android capabilities that the kernel is aware of. */
92#define AID_NET_BT_ADMIN 3001 /* bluetooth: create any socket */
93#define AID_NET_BT 3002 /* bluetooth: create sco, rfcomm or l2cap sockets */
94#define AID_INET 3003 /* can create AF_INET and AF_INET6 sockets */
95#define AID_NET_RAW 3004 /* can create raw INET sockets */
Chia-chi Yeh88dc6572009-06-19 14:59:08 +080096#define AID_NET_ADMIN 3005 /* can configure interfaces and routing tables. */
Jeff Sharkey4f1df182011-05-02 17:52:03 -070097#define AID_NET_BW_STATS 3006 /* read bandwidth statistics */
98#define AID_NET_BW_ACCT 3007 /* change bandwidth statistics accounting */
Matthew Xie971153a2012-10-04 12:35:27 -070099#define AID_NET_BT_STACK 3008 /* bluetooth: access config files */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800100
Robin Leeb3ef0392014-04-25 15:16:02 +0100101#define AID_EVERYBODY 9997 /* shared between all apps in the same profile */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800102#define AID_MISC 9998 /* access to misc storage */
103#define AID_NOBODY 9999
104
Dianne Hackbornca185ab2012-02-09 11:19:00 -0800105#define AID_APP 10000 /* first app user */
106
107#define AID_ISOLATED_START 99000 /* start of uids for fully isolated sandboxed processes */
108#define AID_ISOLATED_END 99999 /* end of uids for fully isolated sandboxed processes */
109
110#define AID_USER 100000 /* offset for uid ranges for each user */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800111
Kenny Root7e41c842012-09-11 15:03:45 -0700112#define AID_SHARED_GID_START 50000 /* start of gids for apps in each user to share */
113#define AID_SHARED_GID_END 59999 /* start of gids for apps in each user to share */
114
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800115#if !defined(EXCLUDE_FS_CONFIG_STRUCTURES)
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700116/*
117 * Used in:
118 * bionic/libc/bionic/stubs.cpp
119 * external/libselinux/src/android.c
120 * system/core/logd/LogStatistics.cpp
121 * system/core/init/ueventd.cpp
122 * system/core/init/util.cpp
123 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800124struct android_id_info {
125 const char *name;
126 unsigned aid;
127};
128
Nick Kralevich4688ac52010-08-31 09:44:43 -0700129static const struct android_id_info android_ids[] = {
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -0700130 { "root", AID_ROOT, },
131
132 { "system", AID_SYSTEM, },
133
134 { "radio", AID_RADIO, },
135 { "bluetooth", AID_BLUETOOTH, },
136 { "graphics", AID_GRAPHICS, },
137 { "input", AID_INPUT, },
138 { "audio", AID_AUDIO, },
139 { "camera", AID_CAMERA, },
140 { "log", AID_LOG, },
141 { "compass", AID_COMPASS, },
142 { "mount", AID_MOUNT, },
143 { "wifi", AID_WIFI, },
144 { "adb", AID_ADB, },
145 { "install", AID_INSTALL, },
146 { "media", AID_MEDIA, },
147 { "dhcp", AID_DHCP, },
148 { "sdcard_rw", AID_SDCARD_RW, },
149 { "vpn", AID_VPN, },
150 { "keystore", AID_KEYSTORE, },
151 { "usb", AID_USB, },
152 { "drm", AID_DRM, },
153 { "mdnsr", AID_MDNSR, },
154 { "gps", AID_GPS, },
155 // AID_UNUSED1
156 { "media_rw", AID_MEDIA_RW, },
157 { "mtp", AID_MTP, },
158 // AID_UNUSED2
159 { "drmrpc", AID_DRMRPC, },
160 { "nfc", AID_NFC, },
161 { "sdcard_r", AID_SDCARD_R, },
162 { "clat", AID_CLAT, },
163 { "loop_radio", AID_LOOP_RADIO, },
164 { "mediadrm", AID_MEDIA_DRM, },
165 { "package_info", AID_PACKAGE_INFO, },
166 { "sdcard_pics", AID_SDCARD_PICS, },
167 { "sdcard_av", AID_SDCARD_AV, },
168 { "sdcard_all", AID_SDCARD_ALL, },
Nick Kralevich3e76e0a2011-12-15 11:43:38 -0800169 { "logd", AID_LOGD, },
Torne (Richard Coles)234f6962014-05-22 18:40:21 +0100170 { "shared_relro", AID_SHARED_RELRO, },
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -0700171
172 { "shell", AID_SHELL, },
173 { "cache", AID_CACHE, },
174 { "diag", AID_DIAG, },
175
176 { "net_bt_admin", AID_NET_BT_ADMIN, },
177 { "net_bt", AID_NET_BT, },
178 { "inet", AID_INET, },
179 { "net_raw", AID_NET_RAW, },
180 { "net_admin", AID_NET_ADMIN, },
181 { "net_bw_stats", AID_NET_BW_STATS, },
182 { "net_bw_acct", AID_NET_BW_ACCT, },
183 { "net_bt_stack", AID_NET_BT_STACK, },
184
Robin Leeb3ef0392014-04-25 15:16:02 +0100185 { "everybody", AID_EVERYBODY, },
Jeff Sharkeydfe0cba2013-07-03 17:08:29 -0700186 { "misc", AID_MISC, },
187 { "nobody", AID_NOBODY, },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800188};
189
190#define android_id_count \
191 (sizeof(android_ids) / sizeof(android_ids[0]))
Doug Zongker08c370c2012-05-03 14:16:54 -0700192
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800193struct fs_path_config {
194 unsigned mode;
195 unsigned uid;
196 unsigned gid;
Nick Kraleviche9e74f32013-02-07 14:22:12 -0800197 uint64_t capabilities;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800198 const char *prefix;
199};
200
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700201/* Rules for directories and files has moved to system/code/libcutils/fs_config.c */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800202
Mark Salyzyn16045612015-04-06 12:51:35 -0700203__BEGIN_DECLS
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700204
205/*
206 * Used in:
207 * build/tools/fs_config/fs_config.c
208 * build/tools/fs_get_stats/fs_get_stats.c
Thierry Strudeldf33ffa2015-07-09 09:50:31 -0700209 * system/extras/ext4_utils/make_ext4fs_main.c
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700210 * external/squashfs-tools/squashfs-tools/android.c
211 * system/core/cpio/mkbootfs.c
212 * system/core/adb/file_sync_service.cpp
213 * system/extras/ext4_utils/canned_fs_config.c
214 */
Thierry Strudeldf33ffa2015-07-09 09:50:31 -0700215void fs_config(const char *path, int dir, const char *target_out_path,
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700216 unsigned *uid, unsigned *gid, unsigned *mode, uint64_t *capabilities);
217
Mark Salyzyn5d9e5ef2015-04-01 11:02:00 -0700218ssize_t fs_config_generate(char *buffer, size_t length, const struct fs_path_config *pc);
219
Mark Salyzyn16045612015-04-06 12:51:35 -0700220__END_DECLS
Mark Salyzyna21c29e2015-04-01 07:46:14 -0700221
222#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800223#endif