blob: b08f031681c54d1b533b99de927805b38e5d85e5 [file] [log] [blame]
Narayan Kamath973b4662014-03-31 13:41:26 +01001/*
2 * Copyright (C) 2008 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
Colin Cross18cd9f52014-06-13 12:58:55 -070017#define LOG_TAG "Zygote"
Narayan Kamath973b4662014-03-31 13:41:26 +010018
19// sys/mount.h has to come before linux/fs.h due to redefinition of MS_RDONLY, MS_BIND, etc
20#include <sys/mount.h>
21#include <linux/fs.h>
22
Jeff Sharkeyfaf3f692015-06-30 15:56:33 -070023#include <list>
Andreas Gampeb053cce2015-11-17 16:38:59 -080024#include <sstream>
Jeff Sharkeyfaf3f692015-06-30 15:56:33 -070025#include <string>
26
Colin Cross18cd9f52014-06-13 12:58:55 -070027#include <fcntl.h>
Dan Albert46d84442014-11-18 16:07:51 -080028#include <grp.h>
29#include <inttypes.h>
Christopher Ferrisab16dd12017-05-15 16:50:29 -070030#include <malloc.h>
Jeff Sharkeyfaf3f692015-06-30 15:56:33 -070031#include <mntent.h>
Narayan Kamath973b4662014-03-31 13:41:26 +010032#include <paths.h>
33#include <signal.h>
34#include <stdlib.h>
Colin Cross18cd9f52014-06-13 12:58:55 -070035#include <sys/capability.h>
Robert Seseke4f8d692016-09-13 19:13:01 -040036#include <sys/cdefs.h>
Colin Cross18cd9f52014-06-13 12:58:55 -070037#include <sys/personality.h>
38#include <sys/prctl.h>
39#include <sys/resource.h>
40#include <sys/stat.h>
Vitalii Tomkiv5cbce852016-05-18 17:43:02 -070041#include <sys/time.h>
Colin Cross18cd9f52014-06-13 12:58:55 -070042#include <sys/types.h>
43#include <sys/utsname.h>
44#include <sys/wait.h>
Dan Albert46d84442014-11-18 16:07:51 -080045#include <unistd.h>
Colin Cross18cd9f52014-06-13 12:58:55 -070046
Andreas Gampe8dfa1782017-01-05 12:45:58 -080047#include "android-base/logging.h"
Colin Cross18cd9f52014-06-13 12:58:55 -070048#include <cutils/fs.h>
49#include <cutils/multiuser.h>
50#include <cutils/sched_policy.h>
Sharvil Nanavati4990e4f2014-06-29 17:06:52 -070051#include <private/android_filesystem_config.h>
Colin Cross18cd9f52014-06-13 12:58:55 -070052#include <utils/String8.h>
53#include <selinux/android.h>
Colin Cross0161bbc2014-06-03 13:26:58 -070054#include <processgroup/processgroup.h>
Colin Cross18cd9f52014-06-13 12:58:55 -070055
Andreas Gampeed6b9df2014-11-20 22:02:20 -080056#include "core_jni_helpers.h"
Steven Moreland2279b252017-07-19 09:50:45 -070057#include <nativehelper/JNIHelp.h>
58#include <nativehelper/ScopedLocalRef.h>
59#include <nativehelper/ScopedPrimitiveArray.h>
60#include <nativehelper/ScopedUtfChars.h>
Robert Sesek8225b7c2016-12-16 14:02:31 -050061#include "fd_utils.h"
Narayan Kamath973b4662014-03-31 13:41:26 +010062
jgu212eacd062014-09-10 06:55:07 -040063#include "nativebridge/native_bridge.h"
64
Narayan Kamath973b4662014-03-31 13:41:26 +010065namespace {
66
67using android::String8;
68
69static pid_t gSystemServerPid = 0;
70
71static const char kZygoteClassName[] = "com/android/internal/os/Zygote";
72static jclass gZygoteClass;
73static jmethodID gCallPostForkChildHooks;
74
75// Must match values in com.android.internal.os.Zygote.
76enum MountExternalKind {
77 MOUNT_EXTERNAL_NONE = 0,
Jeff Sharkey48877892015-03-18 11:27:19 -070078 MOUNT_EXTERNAL_DEFAULT = 1,
Jeff Sharkey9527b222015-06-24 15:24:48 -070079 MOUNT_EXTERNAL_READ = 2,
80 MOUNT_EXTERNAL_WRITE = 3,
Narayan Kamath973b4662014-03-31 13:41:26 +010081};
82
Andreas Gampeb053cce2015-11-17 16:38:59 -080083static void RuntimeAbort(JNIEnv* env, int line, const char* msg) {
84 std::ostringstream oss;
85 oss << __FILE__ << ":" << line << ": " << msg;
86 env->FatalError(oss.str().c_str());
Narayan Kamath973b4662014-03-31 13:41:26 +010087}
88
89// This signal handler is for zygote mode, since the zygote must reap its children
90static void SigChldHandler(int /*signal_number*/) {
91 pid_t pid;
92 int status;
93
Christopher Ferrisa8a79542015-08-31 15:40:01 -070094 // It's necessary to save and restore the errno during this function.
95 // Since errno is stored per thread, changing it here modifies the errno
96 // on the thread on which this signal handler executes. If a signal occurs
97 // between a call and an errno check, it's possible to get the errno set
98 // here.
99 // See b/23572286 for extra information.
100 int saved_errno = errno;
101
Narayan Kamath973b4662014-03-31 13:41:26 +0100102 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
103 // Log process-death status that we care about. In general it is
104 // not safe to call LOG(...) from a signal handler because of
105 // possible reentrancy. However, we know a priori that the
106 // current implementation of LOG() is safe to call from a SIGCHLD
107 // handler in the zygote process. If the LOG() implementation
108 // changes its locking strategy or its use of syscalls within the
109 // lazy-init critical section, its use here may become unsafe.
110 if (WIFEXITED(status)) {
Josh Gao6d747ca2017-08-02 12:54:05 -0700111 ALOGI("Process %d exited cleanly (%d)", pid, WEXITSTATUS(status));
Narayan Kamath973b4662014-03-31 13:41:26 +0100112 } else if (WIFSIGNALED(status)) {
Josh Gao6d747ca2017-08-02 12:54:05 -0700113 ALOGI("Process %d exited due to signal (%d)", pid, WTERMSIG(status));
Narayan Kamath973b4662014-03-31 13:41:26 +0100114 if (WCOREDUMP(status)) {
115 ALOGI("Process %d dumped core.", pid);
116 }
Narayan Kamath973b4662014-03-31 13:41:26 +0100117 }
118
119 // If the just-crashed process is the system_server, bring down zygote
120 // so that it is restarted by init and system server will be restarted
121 // from there.
122 if (pid == gSystemServerPid) {
Dan Albert46d84442014-11-18 16:07:51 -0800123 ALOGE("Exit zygote because system server (%d) has terminated", pid);
Narayan Kamath973b4662014-03-31 13:41:26 +0100124 kill(getpid(), SIGKILL);
125 }
126 }
127
Narayan Kamath160992d2014-04-14 14:46:07 +0100128 // Note that we shouldn't consider ECHILD an error because
129 // the secondary zygote might have no children left to wait for.
130 if (pid < 0 && errno != ECHILD) {
131 ALOGW("Zygote SIGCHLD error in waitpid: %s", strerror(errno));
Narayan Kamath973b4662014-03-31 13:41:26 +0100132 }
Christopher Ferrisa8a79542015-08-31 15:40:01 -0700133
134 errno = saved_errno;
Narayan Kamath973b4662014-03-31 13:41:26 +0100135}
136
137// Configures the SIGCHLD handler for the zygote process. This is configured
138// very late, because earlier in the runtime we may fork() and exec()
139// other processes, and we want to waitpid() for those rather than
140// have them be harvested immediately.
141//
142// This ends up being called repeatedly before each fork(), but there's
143// no real harm in that.
144static void SetSigChldHandler() {
145 struct sigaction sa;
146 memset(&sa, 0, sizeof(sa));
147 sa.sa_handler = SigChldHandler;
148
149 int err = sigaction(SIGCHLD, &sa, NULL);
150 if (err < 0) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700151 ALOGW("Error setting SIGCHLD handler: %s", strerror(errno));
Narayan Kamath973b4662014-03-31 13:41:26 +0100152 }
153}
154
155// Sets the SIGCHLD handler back to default behavior in zygote children.
156static void UnsetSigChldHandler() {
157 struct sigaction sa;
158 memset(&sa, 0, sizeof(sa));
159 sa.sa_handler = SIG_DFL;
160
161 int err = sigaction(SIGCHLD, &sa, NULL);
162 if (err < 0) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700163 ALOGW("Error unsetting SIGCHLD handler: %s", strerror(errno));
Narayan Kamath973b4662014-03-31 13:41:26 +0100164 }
165}
166
167// Calls POSIX setgroups() using the int[] object as an argument.
168// A NULL argument is tolerated.
169static void SetGids(JNIEnv* env, jintArray javaGids) {
170 if (javaGids == NULL) {
171 return;
172 }
173
174 ScopedIntArrayRO gids(env, javaGids);
175 if (gids.get() == NULL) {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800176 RuntimeAbort(env, __LINE__, "Getting gids int array failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100177 }
178 int rc = setgroups(gids.size(), reinterpret_cast<const gid_t*>(&gids[0]));
179 if (rc == -1) {
Narayan Kamath593aab72016-08-09 17:23:31 +0100180 std::ostringstream oss;
181 oss << "setgroups failed: " << strerror(errno) << ", gids.size=" << gids.size();
182 RuntimeAbort(env, __LINE__, oss.str().c_str());
Narayan Kamath973b4662014-03-31 13:41:26 +0100183 }
184}
185
186// Sets the resource limits via setrlimit(2) for the values in the
187// two-dimensional array of integers that's passed in. The second dimension
188// contains a tuple of length 3: (resource, rlim_cur, rlim_max). NULL is
189// treated as an empty array.
190static void SetRLimits(JNIEnv* env, jobjectArray javaRlimits) {
191 if (javaRlimits == NULL) {
192 return;
193 }
194
195 rlimit rlim;
196 memset(&rlim, 0, sizeof(rlim));
197
198 for (int i = 0; i < env->GetArrayLength(javaRlimits); ++i) {
199 ScopedLocalRef<jobject> javaRlimitObject(env, env->GetObjectArrayElement(javaRlimits, i));
200 ScopedIntArrayRO javaRlimit(env, reinterpret_cast<jintArray>(javaRlimitObject.get()));
201 if (javaRlimit.size() != 3) {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800202 RuntimeAbort(env, __LINE__, "rlimits array must have a second dimension of size 3");
Narayan Kamath973b4662014-03-31 13:41:26 +0100203 }
204
205 rlim.rlim_cur = javaRlimit[1];
206 rlim.rlim_max = javaRlimit[2];
207
208 int rc = setrlimit(javaRlimit[0], &rlim);
209 if (rc == -1) {
Dan Albert46d84442014-11-18 16:07:51 -0800210 ALOGE("setrlimit(%d, {%ld, %ld}) failed", javaRlimit[0], rlim.rlim_cur,
211 rlim.rlim_max);
Andreas Gampeb053cce2015-11-17 16:38:59 -0800212 RuntimeAbort(env, __LINE__, "setrlimit failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100213 }
214 }
215}
216
Narayan Kamath973b4662014-03-31 13:41:26 +0100217// The debug malloc library needs to know whether it's the zygote or a child.
218extern "C" int gMallocLeakZygoteChild;
219
Christopher Ferris76de39e2017-06-20 16:13:40 -0700220static void PreApplicationInit() {
221 // The child process sets this to indicate it's not the zygote.
222 gMallocLeakZygoteChild = 1;
223
224 // Set the jemalloc decay time to 1.
225 mallopt(M_DECAY_TIME, 1);
226}
227
Narayan Kamath973b4662014-03-31 13:41:26 +0100228static void EnableKeepCapabilities(JNIEnv* env) {
229 int rc = prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);
230 if (rc == -1) {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800231 RuntimeAbort(env, __LINE__, "prctl(PR_SET_KEEPCAPS) failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100232 }
233}
234
235static void DropCapabilitiesBoundingSet(JNIEnv* env) {
236 for (int i = 0; prctl(PR_CAPBSET_READ, i, 0, 0, 0) >= 0; i++) {
237 int rc = prctl(PR_CAPBSET_DROP, i, 0, 0, 0);
238 if (rc == -1) {
239 if (errno == EINVAL) {
240 ALOGE("prctl(PR_CAPBSET_DROP) failed with EINVAL. Please verify "
241 "your kernel is compiled with file capabilities support");
242 } else {
Josh Gao45dab782017-02-01 14:56:09 -0800243 ALOGE("prctl(PR_CAPBSET_DROP, %d) failed: %s", i, strerror(errno));
Andreas Gampeb053cce2015-11-17 16:38:59 -0800244 RuntimeAbort(env, __LINE__, "prctl(PR_CAPBSET_DROP) failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100245 }
246 }
247 }
248}
249
Josh Gao45dab782017-02-01 14:56:09 -0800250static void SetInheritable(JNIEnv* env, uint64_t inheritable) {
251 __user_cap_header_struct capheader;
252 memset(&capheader, 0, sizeof(capheader));
253 capheader.version = _LINUX_CAPABILITY_VERSION_3;
254 capheader.pid = 0;
255
256 __user_cap_data_struct capdata[2];
257 if (capget(&capheader, &capdata[0]) == -1) {
258 ALOGE("capget failed: %s", strerror(errno));
259 RuntimeAbort(env, __LINE__, "capget failed");
260 }
261
262 capdata[0].inheritable = inheritable;
263 capdata[1].inheritable = inheritable >> 32;
264
265 if (capset(&capheader, &capdata[0]) == -1) {
266 ALOGE("capset(inh=%" PRIx64 ") failed: %s", inheritable, strerror(errno));
267 RuntimeAbort(env, __LINE__, "capset failed");
268 }
269}
270
271static void SetCapabilities(JNIEnv* env, uint64_t permitted, uint64_t effective,
272 uint64_t inheritable) {
Narayan Kamath973b4662014-03-31 13:41:26 +0100273 __user_cap_header_struct capheader;
274 memset(&capheader, 0, sizeof(capheader));
275 capheader.version = _LINUX_CAPABILITY_VERSION_3;
276 capheader.pid = 0;
277
278 __user_cap_data_struct capdata[2];
279 memset(&capdata, 0, sizeof(capdata));
280 capdata[0].effective = effective;
281 capdata[1].effective = effective >> 32;
282 capdata[0].permitted = permitted;
283 capdata[1].permitted = permitted >> 32;
Josh Gao45dab782017-02-01 14:56:09 -0800284 capdata[0].inheritable = inheritable;
285 capdata[1].inheritable = inheritable >> 32;
Narayan Kamath973b4662014-03-31 13:41:26 +0100286
287 if (capset(&capheader, &capdata[0]) == -1) {
Josh Gao45dab782017-02-01 14:56:09 -0800288 ALOGE("capset(perm=%" PRIx64 ", eff=%" PRIx64 ", inh=%" PRIx64 ") failed: %s", permitted,
289 effective, inheritable, strerror(errno));
Andreas Gampeb053cce2015-11-17 16:38:59 -0800290 RuntimeAbort(env, __LINE__, "capset failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100291 }
292}
293
294static void SetSchedulerPolicy(JNIEnv* env) {
295 errno = -set_sched_policy(0, SP_DEFAULT);
296 if (errno != 0) {
297 ALOGE("set_sched_policy(0, SP_DEFAULT) failed");
Andreas Gampeb053cce2015-11-17 16:38:59 -0800298 RuntimeAbort(env, __LINE__, "set_sched_policy(0, SP_DEFAULT) failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100299 }
300}
301
Jeff Sharkeyfaf3f692015-06-30 15:56:33 -0700302static int UnmountTree(const char* path) {
303 size_t path_len = strlen(path);
304
305 FILE* fp = setmntent("/proc/mounts", "r");
306 if (fp == NULL) {
307 ALOGE("Error opening /proc/mounts: %s", strerror(errno));
308 return -errno;
309 }
310
311 // Some volumes can be stacked on each other, so force unmount in
312 // reverse order to give us the best chance of success.
313 std::list<std::string> toUnmount;
314 mntent* mentry;
315 while ((mentry = getmntent(fp)) != NULL) {
316 if (strncmp(mentry->mnt_dir, path, path_len) == 0) {
317 toUnmount.push_front(std::string(mentry->mnt_dir));
318 }
319 }
320 endmntent(fp);
321
322 for (auto path : toUnmount) {
323 if (umount2(path.c_str(), MNT_DETACH)) {
324 ALOGW("Failed to unmount %s: %s", path.c_str(), strerror(errno));
325 }
326 }
327 return 0;
328}
329
Narayan Kamath973b4662014-03-31 13:41:26 +0100330// Create a private mount namespace and bind mount appropriate emulated
331// storage for the given user.
Jeff Sharkey9527b222015-06-24 15:24:48 -0700332static bool MountEmulatedStorage(uid_t uid, jint mount_mode,
333 bool force_mount_namespace) {
334 // See storage config details at http://source.android.com/tech/storage/
335
Jeff Sharkey9527b222015-06-24 15:24:48 -0700336 String8 storageSource;
337 if (mount_mode == MOUNT_EXTERNAL_DEFAULT) {
Jeff Sharkey928e1ec2015-08-06 11:40:21 -0700338 storageSource = "/mnt/runtime/default";
Jeff Sharkey9527b222015-06-24 15:24:48 -0700339 } else if (mount_mode == MOUNT_EXTERNAL_READ) {
Jeff Sharkey928e1ec2015-08-06 11:40:21 -0700340 storageSource = "/mnt/runtime/read";
Jeff Sharkey9527b222015-06-24 15:24:48 -0700341 } else if (mount_mode == MOUNT_EXTERNAL_WRITE) {
Jeff Sharkey928e1ec2015-08-06 11:40:21 -0700342 storageSource = "/mnt/runtime/write";
Robert Sesek06af1c02016-11-10 21:50:04 -0500343 } else if (!force_mount_namespace) {
Jeff Sharkey9527b222015-06-24 15:24:48 -0700344 // Sane default of no storage visible
345 return true;
346 }
Robert Sesek8a3a6ff2016-10-31 11:25:10 -0400347
348 // Create a second private mount namespace for our process
349 if (unshare(CLONE_NEWNS) == -1) {
350 ALOGW("Failed to unshare(): %s", strerror(errno));
351 return false;
352 }
353
Robert Sesek06f39302017-03-20 17:30:05 -0400354 // Handle force_mount_namespace with MOUNT_EXTERNAL_NONE.
355 if (mount_mode == MOUNT_EXTERNAL_NONE) {
356 return true;
357 }
358
Jeff Sharkey9527b222015-06-24 15:24:48 -0700359 if (TEMP_FAILURE_RETRY(mount(storageSource.string(), "/storage",
360 NULL, MS_BIND | MS_REC | MS_SLAVE, NULL)) == -1) {
361 ALOGW("Failed to mount %s to /storage: %s", storageSource.string(), strerror(errno));
362 return false;
363 }
364
Jeff Sharkeyfaf3f692015-06-30 15:56:33 -0700365 // Mount user-specific symlink helper into place
Jeff Sharkey9527b222015-06-24 15:24:48 -0700366 userid_t user_id = multiuser_get_user_id(uid);
367 const String8 userSource(String8::format("/mnt/user/%d", user_id));
368 if (fs_prepare_dir(userSource.string(), 0751, 0, 0) == -1) {
369 return false;
370 }
371 if (TEMP_FAILURE_RETRY(mount(userSource.string(), "/storage/self",
372 NULL, MS_BIND, NULL)) == -1) {
373 ALOGW("Failed to mount %s to /storage/self: %s", userSource.string(), strerror(errno));
374 return false;
375 }
376
Narayan Kamath973b4662014-03-31 13:41:26 +0100377 return true;
Narayan Kamath973b4662014-03-31 13:41:26 +0100378}
379
Narayan Kamath973b4662014-03-31 13:41:26 +0100380static bool NeedsNoRandomizeWorkaround() {
381#if !defined(__arm__)
382 return false;
383#else
384 int major;
385 int minor;
386 struct utsname uts;
387 if (uname(&uts) == -1) {
388 return false;
389 }
390
391 if (sscanf(uts.release, "%d.%d", &major, &minor) != 2) {
392 return false;
393 }
394
395 // Kernels before 3.4.* need the workaround.
396 return (major < 3) || ((major == 3) && (minor < 4));
397#endif
398}
Narayan Kamath973b4662014-03-31 13:41:26 +0100399
400// Utility to close down the Zygote socket file descriptors while
401// the child is still running as root with Zygote's privileges. Each
402// descriptor (if any) is closed via dup2(), replacing it with a valid
403// (open) descriptor to /dev/null.
404
405static void DetachDescriptors(JNIEnv* env, jintArray fdsToClose) {
406 if (!fdsToClose) {
407 return;
408 }
409 jsize count = env->GetArrayLength(fdsToClose);
Mykola Kondratenko1ca062f2015-07-31 17:22:26 +0200410 ScopedIntArrayRO ar(env, fdsToClose);
411 if (ar.get() == NULL) {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800412 RuntimeAbort(env, __LINE__, "Bad fd array");
Narayan Kamath973b4662014-03-31 13:41:26 +0100413 }
414 jsize i;
415 int devnull;
416 for (i = 0; i < count; i++) {
417 devnull = open("/dev/null", O_RDWR);
418 if (devnull < 0) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700419 ALOGE("Failed to open /dev/null: %s", strerror(errno));
Andreas Gampeb053cce2015-11-17 16:38:59 -0800420 RuntimeAbort(env, __LINE__, "Failed to open /dev/null");
Narayan Kamath973b4662014-03-31 13:41:26 +0100421 continue;
422 }
Elliott Hughes960e8312014-09-30 08:49:01 -0700423 ALOGV("Switching descriptor %d to /dev/null: %s", ar[i], strerror(errno));
Narayan Kamath973b4662014-03-31 13:41:26 +0100424 if (dup2(devnull, ar[i]) < 0) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700425 ALOGE("Failed dup2() on descriptor %d: %s", ar[i], strerror(errno));
Andreas Gampeb053cce2015-11-17 16:38:59 -0800426 RuntimeAbort(env, __LINE__, "Failed dup2()");
Narayan Kamath973b4662014-03-31 13:41:26 +0100427 }
428 close(devnull);
429 }
430}
431
432void SetThreadName(const char* thread_name) {
433 bool hasAt = false;
434 bool hasDot = false;
435 const char* s = thread_name;
436 while (*s) {
437 if (*s == '.') {
438 hasDot = true;
439 } else if (*s == '@') {
440 hasAt = true;
441 }
442 s++;
443 }
444 const int len = s - thread_name;
445 if (len < 15 || hasAt || !hasDot) {
446 s = thread_name;
447 } else {
448 s = thread_name + len - 15;
449 }
450 // pthread_setname_np fails rather than truncating long strings.
451 char buf[16]; // MAX_TASK_COMM_LEN=16 is hard-coded into bionic
452 strlcpy(buf, s, sizeof(buf)-1);
453 errno = pthread_setname_np(pthread_self(), buf);
454 if (errno != 0) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700455 ALOGW("Unable to set the name of current thread to '%s': %s", buf, strerror(errno));
Narayan Kamath973b4662014-03-31 13:41:26 +0100456 }
457}
458
Narayan Kamathc5f27a72016-08-19 13:45:24 +0100459// The list of open zygote file descriptors.
460static FileDescriptorTable* gOpenFdTable = NULL;
461
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800462static void FillFileDescriptorVector(JNIEnv* env,
463 jintArray java_fds,
464 std::vector<int>* fds) {
465 CHECK(fds != nullptr);
466 if (java_fds != nullptr) {
467 ScopedIntArrayRO ar(env, java_fds);
468 if (ar.get() == nullptr) {
469 RuntimeAbort(env, __LINE__, "Bad fd array");
470 }
471 fds->reserve(ar.size());
472 for (size_t i = 0; i < ar.size(); ++i) {
473 fds->push_back(ar[i]);
474 }
475 }
476}
477
Narayan Kamath973b4662014-03-31 13:41:26 +0100478// Utility routine to fork zygote and specialize the child process.
479static pid_t ForkAndSpecializeCommon(JNIEnv* env, uid_t uid, gid_t gid, jintArray javaGids,
Nicolas Geoffray81edac42017-09-07 14:13:29 +0100480 jint runtime_flags, jobjectArray javaRlimits,
Narayan Kamath973b4662014-03-31 13:41:26 +0100481 jlong permittedCapabilities, jlong effectiveCapabilities,
482 jint mount_external,
483 jstring java_se_info, jstring java_se_name,
Andreas Gampeaec67dc2014-09-02 21:23:06 -0700484 bool is_system_server, jintArray fdsToClose,
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800485 jintArray fdsToIgnore,
jgu212eacd062014-09-10 06:55:07 -0400486 jstring instructionSet, jstring dataDir) {
Narayan Kamath973b4662014-03-31 13:41:26 +0100487 SetSigChldHandler();
488
Narayan Kamathdfcc79e2016-11-07 16:22:48 +0000489 sigset_t sigchld;
490 sigemptyset(&sigchld);
491 sigaddset(&sigchld, SIGCHLD);
492
493 // Temporarily block SIGCHLD during forks. The SIGCHLD handler might
494 // log, which would result in the logging FDs we close being reopened.
495 // This would cause failures because the FDs are not whitelisted.
496 //
497 // Note that the zygote process is single threaded at this point.
498 if (sigprocmask(SIG_BLOCK, &sigchld, nullptr) == -1) {
499 ALOGE("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno));
500 RuntimeAbort(env, __LINE__, "Call to sigprocmask(SIG_BLOCK, { SIGCHLD }) failed.");
501 }
502
Narayan Kamath3764a262016-08-30 15:36:19 +0100503 // Close any logging related FDs before we start evaluating the list of
504 // file descriptors.
505 __android_log_close();
506
Narayan Kamathc5f27a72016-08-19 13:45:24 +0100507 // If this is the first fork for this zygote, create the open FD table.
508 // If it isn't, we just need to check whether the list of open files has
509 // changed (and it shouldn't in the normal case).
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800510 std::vector<int> fds_to_ignore;
511 FillFileDescriptorVector(env, fdsToIgnore, &fds_to_ignore);
Narayan Kamathc5f27a72016-08-19 13:45:24 +0100512 if (gOpenFdTable == NULL) {
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800513 gOpenFdTable = FileDescriptorTable::Create(fds_to_ignore);
Narayan Kamathc5f27a72016-08-19 13:45:24 +0100514 if (gOpenFdTable == NULL) {
515 RuntimeAbort(env, __LINE__, "Unable to construct file descriptor table.");
516 }
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800517 } else if (!gOpenFdTable->Restat(fds_to_ignore)) {
Narayan Kamathc5f27a72016-08-19 13:45:24 +0100518 RuntimeAbort(env, __LINE__, "Unable to restat file descriptor table.");
519 }
520
Narayan Kamath973b4662014-03-31 13:41:26 +0100521 pid_t pid = fork();
522
523 if (pid == 0) {
Christopher Ferris76de39e2017-06-20 16:13:40 -0700524 PreApplicationInit();
Christopher Ferrisab16dd12017-05-15 16:50:29 -0700525
Narayan Kamath973b4662014-03-31 13:41:26 +0100526 // Clean up any descriptors which must be closed immediately
527 DetachDescriptors(env, fdsToClose);
528
Narayan Kamathc5f27a72016-08-19 13:45:24 +0100529 // Re-open all remaining open file descriptors so that they aren't shared
530 // with the zygote across a fork.
Narayan Kamath3764a262016-08-30 15:36:19 +0100531 if (!gOpenFdTable->ReopenOrDetach()) {
Narayan Kamathc5f27a72016-08-19 13:45:24 +0100532 RuntimeAbort(env, __LINE__, "Unable to reopen whitelisted descriptors.");
533 }
534
Narayan Kamathdfcc79e2016-11-07 16:22:48 +0000535 if (sigprocmask(SIG_UNBLOCK, &sigchld, nullptr) == -1) {
536 ALOGE("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno));
537 RuntimeAbort(env, __LINE__, "Call to sigprocmask(SIG_UNBLOCK, { SIGCHLD }) failed.");
538 }
539
Narayan Kamath973b4662014-03-31 13:41:26 +0100540 // Keep capabilities across UID change, unless we're staying root.
541 if (uid != 0) {
542 EnableKeepCapabilities(env);
543 }
544
Josh Gao45dab782017-02-01 14:56:09 -0800545 SetInheritable(env, permittedCapabilities);
Narayan Kamath973b4662014-03-31 13:41:26 +0100546 DropCapabilitiesBoundingSet(env);
547
Calin Juravle79ec4c12014-10-24 16:16:49 +0100548 bool use_native_bridge = !is_system_server && (instructionSet != NULL)
549 && android::NativeBridgeAvailable();
550 if (use_native_bridge) {
jgu212eacd062014-09-10 06:55:07 -0400551 ScopedUtfChars isa_string(env, instructionSet);
Calin Juravle79ec4c12014-10-24 16:16:49 +0100552 use_native_bridge = android::NeedsNativeBridge(isa_string.c_str());
jgu212eacd062014-09-10 06:55:07 -0400553 }
Calin Juravle6a4d2362014-10-28 12:16:21 +0000554 if (use_native_bridge && dataDir == NULL) {
555 // dataDir should never be null if we need to use a native bridge.
556 // In general, dataDir will never be null for normal applications. It can only happen in
557 // special cases (for isolated processes which are not associated with any app). These are
558 // launched by the framework and should not be emulated anyway.
559 use_native_bridge = false;
560 ALOGW("Native bridge will not be used because dataDir == NULL.");
561 }
jgu212eacd062014-09-10 06:55:07 -0400562
Calin Juravle79ec4c12014-10-24 16:16:49 +0100563 if (!MountEmulatedStorage(uid, mount_external, use_native_bridge)) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700564 ALOGW("Failed to mount emulated storage: %s", strerror(errno));
Narayan Kamath973b4662014-03-31 13:41:26 +0100565 if (errno == ENOTCONN || errno == EROFS) {
566 // When device is actively encrypting, we get ENOTCONN here
567 // since FUSE was mounted before the framework restarted.
568 // When encrypted device is booting, we get EROFS since
569 // FUSE hasn't been created yet by init.
570 // In either case, continue without external storage.
571 } else {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800572 RuntimeAbort(env, __LINE__, "Cannot continue without emulated storage");
Narayan Kamath973b4662014-03-31 13:41:26 +0100573 }
574 }
575
Colin Cross0161bbc2014-06-03 13:26:58 -0700576 if (!is_system_server) {
577 int rc = createProcessGroup(uid, getpid());
578 if (rc != 0) {
Colin Cross3089bed2014-07-14 15:07:04 -0700579 if (rc == -EROFS) {
580 ALOGW("createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT?");
581 } else {
582 ALOGE("createProcessGroup(%d, %d) failed: %s", uid, pid, strerror(-rc));
583 }
Colin Cross0161bbc2014-06-03 13:26:58 -0700584 }
585 }
586
Narayan Kamath973b4662014-03-31 13:41:26 +0100587 SetGids(env, javaGids);
588
589 SetRLimits(env, javaRlimits);
590
Calin Juravle79ec4c12014-10-24 16:16:49 +0100591 if (use_native_bridge) {
592 ScopedUtfChars isa_string(env, instructionSet);
593 ScopedUtfChars data_dir(env, dataDir);
594 android::PreInitializeNativeBridge(data_dir.c_str(), isa_string.c_str());
jgu212eacd062014-09-10 06:55:07 -0400595 }
596
Narayan Kamath973b4662014-03-31 13:41:26 +0100597 int rc = setresgid(gid, gid, gid);
598 if (rc == -1) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700599 ALOGE("setresgid(%d) failed: %s", gid, strerror(errno));
Andreas Gampeb053cce2015-11-17 16:38:59 -0800600 RuntimeAbort(env, __LINE__, "setresgid failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100601 }
602
603 rc = setresuid(uid, uid, uid);
604 if (rc == -1) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700605 ALOGE("setresuid(%d) failed: %s", uid, strerror(errno));
Andreas Gampeb053cce2015-11-17 16:38:59 -0800606 RuntimeAbort(env, __LINE__, "setresuid failed");
Narayan Kamath973b4662014-03-31 13:41:26 +0100607 }
608
Narayan Kamath973b4662014-03-31 13:41:26 +0100609 if (NeedsNoRandomizeWorkaround()) {
610 // Work around ARM kernel ASLR lossage (http://b/5817320).
611 int old_personality = personality(0xffffffff);
612 int new_personality = personality(old_personality | ADDR_NO_RANDOMIZE);
613 if (new_personality == -1) {
Elliott Hughes960e8312014-09-30 08:49:01 -0700614 ALOGW("personality(%d) failed: %s", new_personality, strerror(errno));
Narayan Kamath973b4662014-03-31 13:41:26 +0100615 }
616 }
Narayan Kamath973b4662014-03-31 13:41:26 +0100617
Josh Gao45dab782017-02-01 14:56:09 -0800618 SetCapabilities(env, permittedCapabilities, effectiveCapabilities, permittedCapabilities);
Narayan Kamath973b4662014-03-31 13:41:26 +0100619
620 SetSchedulerPolicy(env);
621
Colin Cross18cd9f52014-06-13 12:58:55 -0700622 const char* se_info_c_str = NULL;
623 ScopedUtfChars* se_info = NULL;
624 if (java_se_info != NULL) {
625 se_info = new ScopedUtfChars(env, java_se_info);
626 se_info_c_str = se_info->c_str();
627 if (se_info_c_str == NULL) {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800628 RuntimeAbort(env, __LINE__, "se_info_c_str == NULL");
Colin Cross18cd9f52014-06-13 12:58:55 -0700629 }
Narayan Kamath973b4662014-03-31 13:41:26 +0100630 }
Colin Cross18cd9f52014-06-13 12:58:55 -0700631 const char* se_name_c_str = NULL;
632 ScopedUtfChars* se_name = NULL;
633 if (java_se_name != NULL) {
634 se_name = new ScopedUtfChars(env, java_se_name);
635 se_name_c_str = se_name->c_str();
636 if (se_name_c_str == NULL) {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800637 RuntimeAbort(env, __LINE__, "se_name_c_str == NULL");
Colin Cross18cd9f52014-06-13 12:58:55 -0700638 }
639 }
640 rc = selinux_android_setcontext(uid, is_system_server, se_info_c_str, se_name_c_str);
641 if (rc == -1) {
642 ALOGE("selinux_android_setcontext(%d, %d, \"%s\", \"%s\") failed", uid,
643 is_system_server, se_info_c_str, se_name_c_str);
Andreas Gampeb053cce2015-11-17 16:38:59 -0800644 RuntimeAbort(env, __LINE__, "selinux_android_setcontext failed");
Colin Cross18cd9f52014-06-13 12:58:55 -0700645 }
646
647 // Make it easier to debug audit logs by setting the main thread's name to the
648 // nice name rather than "app_process".
649 if (se_info_c_str == NULL && is_system_server) {
650 se_name_c_str = "system_server";
651 }
652 if (se_info_c_str != NULL) {
653 SetThreadName(se_name_c_str);
654 }
655
656 delete se_info;
657 delete se_name;
Narayan Kamath973b4662014-03-31 13:41:26 +0100658
659 UnsetSigChldHandler();
660
Nicolas Geoffray81edac42017-09-07 14:13:29 +0100661 env->CallStaticVoidMethod(gZygoteClass, gCallPostForkChildHooks, runtime_flags,
Nicolas Geoffraya8772352015-12-11 15:01:04 +0000662 is_system_server, instructionSet);
Narayan Kamath973b4662014-03-31 13:41:26 +0100663 if (env->ExceptionCheck()) {
Andreas Gampeb053cce2015-11-17 16:38:59 -0800664 RuntimeAbort(env, __LINE__, "Error calling post fork hooks.");
Narayan Kamath973b4662014-03-31 13:41:26 +0100665 }
666 } else if (pid > 0) {
667 // the parent process
Tim Murray6d43a8612015-08-05 14:31:05 -0700668
Narayan Kamathdfcc79e2016-11-07 16:22:48 +0000669 // We blocked SIGCHLD prior to a fork, we unblock it here.
670 if (sigprocmask(SIG_UNBLOCK, &sigchld, nullptr) == -1) {
671 ALOGE("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno));
672 RuntimeAbort(env, __LINE__, "Call to sigprocmask(SIG_UNBLOCK, { SIGCHLD }) failed.");
673 }
Narayan Kamath973b4662014-03-31 13:41:26 +0100674 }
675 return pid;
676}
Luis Hector Chavez72042c92017-07-12 10:03:30 -0700677
678static uint64_t GetEffectiveCapabilityMask(JNIEnv* env) {
679 __user_cap_header_struct capheader;
680 memset(&capheader, 0, sizeof(capheader));
681 capheader.version = _LINUX_CAPABILITY_VERSION_3;
682 capheader.pid = 0;
683
684 __user_cap_data_struct capdata[2];
685 if (capget(&capheader, &capdata[0]) == -1) {
686 ALOGE("capget failed: %s", strerror(errno));
687 RuntimeAbort(env, __LINE__, "capget failed");
688 }
689
690 return capdata[0].effective |
691 (static_cast<uint64_t>(capdata[1].effective) << 32);
692}
Narayan Kamath973b4662014-03-31 13:41:26 +0100693} // anonymous namespace
694
695namespace android {
696
Christopher Ferris76de39e2017-06-20 16:13:40 -0700697static void com_android_internal_os_Zygote_nativePreApplicationInit(JNIEnv*, jclass) {
698 PreApplicationInit();
699}
700
Narayan Kamath973b4662014-03-31 13:41:26 +0100701static jint com_android_internal_os_Zygote_nativeForkAndSpecialize(
702 JNIEnv* env, jclass, jint uid, jint gid, jintArray gids,
Nicolas Geoffray81edac42017-09-07 14:13:29 +0100703 jint runtime_flags, jobjectArray rlimits,
Narayan Kamath973b4662014-03-31 13:41:26 +0100704 jint mount_external, jstring se_info, jstring se_name,
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800705 jintArray fdsToClose,
706 jintArray fdsToIgnore,
707 jstring instructionSet, jstring appDataDir) {
Sharvil Nanavati4990e4f2014-06-29 17:06:52 -0700708 jlong capabilities = 0;
Pavlin Radoslavovfbd59042015-11-23 17:13:25 -0800709
710 // Grant CAP_WAKE_ALARM to the Bluetooth process.
Erik Kline0f6ae2e2016-02-22 15:42:07 +0900711 // Additionally, allow bluetooth to open packet sockets so it can start the DHCP client.
Philip Cuadra0fabba32017-04-26 13:49:37 -0700712 // Grant CAP_SYS_NICE to allow Bluetooth to set RT priority for
713 // audio-related threads.
Erik Kline0f6ae2e2016-02-22 15:42:07 +0900714 // TODO: consider making such functionality an RPC to netd.
Pavlin Radoslavov2956bee2016-01-27 16:22:15 -0800715 if (multiuser_get_app_id(uid) == AID_BLUETOOTH) {
Pavlin Radoslavovfbd59042015-11-23 17:13:25 -0800716 capabilities |= (1LL << CAP_WAKE_ALARM);
Erik Kline0f6ae2e2016-02-22 15:42:07 +0900717 capabilities |= (1LL << CAP_NET_RAW);
718 capabilities |= (1LL << CAP_NET_BIND_SERVICE);
Philip Cuadra0fabba32017-04-26 13:49:37 -0700719 capabilities |= (1LL << CAP_SYS_NICE);
Pavlin Radoslavovfbd59042015-11-23 17:13:25 -0800720 }
Sharvil Nanavatibabe8152015-08-31 23:25:06 -0700721
Pavlin Radoslavovfbd59042015-11-23 17:13:25 -0800722 // Grant CAP_BLOCK_SUSPEND to processes that belong to GID "wakelock"
723 bool gid_wakelock_found = false;
724 if (gid == AID_WAKELOCK) {
725 gid_wakelock_found = true;
726 } else if (gids != NULL) {
727 jsize gids_num = env->GetArrayLength(gids);
728 ScopedIntArrayRO ar(env, gids);
729 if (ar.get() == NULL) {
730 RuntimeAbort(env, __LINE__, "Bad gids array");
731 }
732 for (int i = 0; i < gids_num; i++) {
733 if (ar[i] == AID_WAKELOCK) {
734 gid_wakelock_found = true;
735 break;
Sharvil Nanavatibabe8152015-08-31 23:25:06 -0700736 }
Pavlin Radoslavovfbd59042015-11-23 17:13:25 -0800737 }
738 }
739 if (gid_wakelock_found) {
740 capabilities |= (1LL << CAP_BLOCK_SUSPEND);
Sharvil Nanavati4990e4f2014-06-29 17:06:52 -0700741 }
742
Luis Hector Chavez72042c92017-07-12 10:03:30 -0700743 // Containers run without some capabilities, so drop any caps that are not
744 // available.
745 capabilities &= GetEffectiveCapabilityMask(env);
746
Nicolas Geoffray81edac42017-09-07 14:13:29 +0100747 return ForkAndSpecializeCommon(env, uid, gid, gids, runtime_flags,
Sharvil Nanavati4990e4f2014-06-29 17:06:52 -0700748 rlimits, capabilities, capabilities, mount_external, se_info,
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800749 se_name, false, fdsToClose, fdsToIgnore, instructionSet, appDataDir);
Narayan Kamath973b4662014-03-31 13:41:26 +0100750}
751
752static jint com_android_internal_os_Zygote_nativeForkSystemServer(
753 JNIEnv* env, jclass, uid_t uid, gid_t gid, jintArray gids,
Nicolas Geoffray81edac42017-09-07 14:13:29 +0100754 jint runtime_flags, jobjectArray rlimits, jlong permittedCapabilities,
Narayan Kamath973b4662014-03-31 13:41:26 +0100755 jlong effectiveCapabilities) {
756 pid_t pid = ForkAndSpecializeCommon(env, uid, gid, gids,
Nicolas Geoffray81edac42017-09-07 14:13:29 +0100757 runtime_flags, rlimits,
Narayan Kamath973b4662014-03-31 13:41:26 +0100758 permittedCapabilities, effectiveCapabilities,
Jeff Sharkey9527b222015-06-24 15:24:48 -0700759 MOUNT_EXTERNAL_DEFAULT, NULL, NULL, true, NULL,
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800760 NULL, NULL, NULL);
Narayan Kamath973b4662014-03-31 13:41:26 +0100761 if (pid > 0) {
762 // The zygote process checks whether the child process has died or not.
763 ALOGI("System server process %d has been created", pid);
764 gSystemServerPid = pid;
765 // There is a slight window that the system server process has crashed
766 // but it went unnoticed because we haven't published its pid yet. So
767 // we recheck here just to make sure that all is well.
768 int status;
769 if (waitpid(pid, &status, WNOHANG) == pid) {
770 ALOGE("System server process %d has died. Restarting Zygote!", pid);
Andreas Gampeb053cce2015-11-17 16:38:59 -0800771 RuntimeAbort(env, __LINE__, "System server process has died. Restarting Zygote!");
Narayan Kamath973b4662014-03-31 13:41:26 +0100772 }
773 }
774 return pid;
775}
776
Robert Sesek54e387d2016-12-02 17:27:50 -0500777static void com_android_internal_os_Zygote_nativeAllowFileAcrossFork(
778 JNIEnv* env, jclass, jstring path) {
779 ScopedUtfChars path_native(env, path);
780 const char* path_cstr = path_native.c_str();
781 if (!path_cstr) {
782 RuntimeAbort(env, __LINE__, "path_cstr == NULL");
783 }
784 FileDescriptorWhitelist::Get()->Allow(path_cstr);
785}
786
doheon1.lee885b7422016-01-20 13:07:27 +0900787static void com_android_internal_os_Zygote_nativeUnmountStorageOnInit(JNIEnv* env, jclass) {
788 // Zygote process unmount root storage space initially before every child processes are forked.
789 // Every forked child processes (include SystemServer) only mount their own root storage space
Robert Seseke4f8d692016-09-13 19:13:01 -0400790 // and no need unmount storage operation in MountEmulatedStorage method.
791 // Zygote process does not utilize root storage spaces and unshares its mount namespace below.
792
793 // See storage config details at http://source.android.com/tech/storage/
794 // Create private mount namespace shared by all children
795 if (unshare(CLONE_NEWNS) == -1) {
796 RuntimeAbort(env, __LINE__, "Failed to unshare()");
797 return;
798 }
799
800 // Mark rootfs as being a slave so that changes from default
801 // namespace only flow into our children.
802 if (mount("rootfs", "/", nullptr, (MS_SLAVE | MS_REC), nullptr) == -1) {
803 RuntimeAbort(env, __LINE__, "Failed to mount() rootfs as MS_SLAVE");
804 return;
805 }
806
807 // Create a staging tmpfs that is shared by our children; they will
808 // bind mount storage into their respective private namespaces, which
809 // are isolated from each other.
810 const char* target_base = getenv("EMULATED_STORAGE_TARGET");
811 if (target_base != nullptr) {
812#define STRINGIFY_UID(x) __STRING(x)
813 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
814 "uid=0,gid=" STRINGIFY_UID(AID_SDCARD_R) ",mode=0751") == -1) {
815 ALOGE("Failed to mount tmpfs to %s", target_base);
816 RuntimeAbort(env, __LINE__, "Failed to mount tmpfs");
817 return;
818 }
819#undef STRINGIFY_UID
820 }
doheon1.lee885b7422016-01-20 13:07:27 +0900821
822 UnmountTree("/storage");
doheon1.lee885b7422016-01-20 13:07:27 +0900823}
824
Daniel Micay76f6a862015-09-19 17:31:01 -0400825static const JNINativeMethod gMethods[] = {
Andreas Gampeaec67dc2014-09-02 21:23:06 -0700826 { "nativeForkAndSpecialize",
Andreas Gampe8dfa1782017-01-05 12:45:58 -0800827 "(II[II[[IILjava/lang/String;Ljava/lang/String;[I[ILjava/lang/String;Ljava/lang/String;)I",
Narayan Kamath973b4662014-03-31 13:41:26 +0100828 (void *) com_android_internal_os_Zygote_nativeForkAndSpecialize },
829 { "nativeForkSystemServer", "(II[II[[IJJ)I",
doheon1.lee885b7422016-01-20 13:07:27 +0900830 (void *) com_android_internal_os_Zygote_nativeForkSystemServer },
Robert Sesek54e387d2016-12-02 17:27:50 -0500831 { "nativeAllowFileAcrossFork", "(Ljava/lang/String;)V",
832 (void *) com_android_internal_os_Zygote_nativeAllowFileAcrossFork },
doheon1.lee885b7422016-01-20 13:07:27 +0900833 { "nativeUnmountStorageOnInit", "()V",
Christopher Ferris76de39e2017-06-20 16:13:40 -0700834 (void *) com_android_internal_os_Zygote_nativeUnmountStorageOnInit },
835 { "nativePreApplicationInit", "()V",
836 (void *) com_android_internal_os_Zygote_nativePreApplicationInit }
Narayan Kamath973b4662014-03-31 13:41:26 +0100837};
838
839int register_com_android_internal_os_Zygote(JNIEnv* env) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800840 gZygoteClass = MakeGlobalRefOrDie(env, FindClassOrDie(env, kZygoteClassName));
841 gCallPostForkChildHooks = GetStaticMethodIDOrDie(env, gZygoteClass, "callPostForkChildHooks",
Nicolas Geoffraya8772352015-12-11 15:01:04 +0000842 "(IZLjava/lang/String;)V");
Narayan Kamath973b4662014-03-31 13:41:26 +0100843
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800844 return RegisterMethodsOrDie(env, "com/android/internal/os/Zygote", gMethods, NELEM(gMethods));
Narayan Kamath973b4662014-03-31 13:41:26 +0100845}
846} // namespace android