1/*
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
17#define LOG_TAG "Zygote"
18
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
23#include <list>
24#include <sstream>
25#include <string>
26
27#include <fcntl.h>
28#include <grp.h>
29#include <inttypes.h>
30#include <malloc.h>
31#include <mntent.h>
32#include <paths.h>
33#include <signal.h>
34#include <stdlib.h>
35#include <sys/capability.h>
36#include <sys/cdefs.h>
37#include <sys/personality.h>
38#include <sys/prctl.h>
39#include <sys/resource.h>
40#include <sys/stat.h>
41#include <sys/time.h>
42#include <sys/types.h>
43#include <sys/utsname.h>
44#include <sys/wait.h>
45#include <unistd.h>
46
47#include "android-base/logging.h"
48#include <cutils/fs.h>
49#include <cutils/multiuser.h>
50#include <cutils/sched_policy.h>
51#include <private/android_filesystem_config.h>
52#include <utils/String8.h>
53#include <selinux/android.h>
54#include <processgroup/processgroup.h>
55
56#include "core_jni_helpers.h"
57#include "JNIHelp.h"
58#include "ScopedLocalRef.h"
59#include "ScopedPrimitiveArray.h"
60#include "ScopedUtfChars.h"
61#include "fd_utils.h"
62
63#include "nativebridge/native_bridge.h"
64
65namespace {
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,
78  MOUNT_EXTERNAL_DEFAULT = 1,
79  MOUNT_EXTERNAL_READ = 2,
80  MOUNT_EXTERNAL_WRITE = 3,
81};
82
83static 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());
87}
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
94  // 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
102  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)) {
111      if (WEXITSTATUS(status)) {
112        ALOGI("Process %d exited cleanly (%d)", pid, WEXITSTATUS(status));
113      }
114    } else if (WIFSIGNALED(status)) {
115      if (WTERMSIG(status) != SIGKILL) {
116        ALOGI("Process %d exited due to signal (%d)", pid, WTERMSIG(status));
117      }
118      if (WCOREDUMP(status)) {
119        ALOGI("Process %d dumped core.", pid);
120      }
121    }
122
123    // If the just-crashed process is the system_server, bring down zygote
124    // so that it is restarted by init and system server will be restarted
125    // from there.
126    if (pid == gSystemServerPid) {
127      ALOGE("Exit zygote because system server (%d) has terminated", pid);
128      kill(getpid(), SIGKILL);
129    }
130  }
131
132  // Note that we shouldn't consider ECHILD an error because
133  // the secondary zygote might have no children left to wait for.
134  if (pid < 0 && errno != ECHILD) {
135    ALOGW("Zygote SIGCHLD error in waitpid: %s", strerror(errno));
136  }
137
138  errno = saved_errno;
139}
140
141// Configures the SIGCHLD handler for the zygote process. This is configured
142// very late, because earlier in the runtime we may fork() and exec()
143// other processes, and we want to waitpid() for those rather than
144// have them be harvested immediately.
145//
146// This ends up being called repeatedly before each fork(), but there's
147// no real harm in that.
148static void SetSigChldHandler() {
149  struct sigaction sa;
150  memset(&sa, 0, sizeof(sa));
151  sa.sa_handler = SigChldHandler;
152
153  int err = sigaction(SIGCHLD, &sa, NULL);
154  if (err < 0) {
155    ALOGW("Error setting SIGCHLD handler: %s", strerror(errno));
156  }
157}
158
159// Sets the SIGCHLD handler back to default behavior in zygote children.
160static void UnsetSigChldHandler() {
161  struct sigaction sa;
162  memset(&sa, 0, sizeof(sa));
163  sa.sa_handler = SIG_DFL;
164
165  int err = sigaction(SIGCHLD, &sa, NULL);
166  if (err < 0) {
167    ALOGW("Error unsetting SIGCHLD handler: %s", strerror(errno));
168  }
169}
170
171// Calls POSIX setgroups() using the int[] object as an argument.
172// A NULL argument is tolerated.
173static void SetGids(JNIEnv* env, jintArray javaGids) {
174  if (javaGids == NULL) {
175    return;
176  }
177
178  ScopedIntArrayRO gids(env, javaGids);
179  if (gids.get() == NULL) {
180    RuntimeAbort(env, __LINE__, "Getting gids int array failed");
181  }
182  int rc = setgroups(gids.size(), reinterpret_cast<const gid_t*>(&gids[0]));
183  if (rc == -1) {
184    std::ostringstream oss;
185    oss << "setgroups failed: " << strerror(errno) << ", gids.size=" << gids.size();
186    RuntimeAbort(env, __LINE__, oss.str().c_str());
187  }
188}
189
190// Sets the resource limits via setrlimit(2) for the values in the
191// two-dimensional array of integers that's passed in. The second dimension
192// contains a tuple of length 3: (resource, rlim_cur, rlim_max). NULL is
193// treated as an empty array.
194static void SetRLimits(JNIEnv* env, jobjectArray javaRlimits) {
195  if (javaRlimits == NULL) {
196    return;
197  }
198
199  rlimit rlim;
200  memset(&rlim, 0, sizeof(rlim));
201
202  for (int i = 0; i < env->GetArrayLength(javaRlimits); ++i) {
203    ScopedLocalRef<jobject> javaRlimitObject(env, env->GetObjectArrayElement(javaRlimits, i));
204    ScopedIntArrayRO javaRlimit(env, reinterpret_cast<jintArray>(javaRlimitObject.get()));
205    if (javaRlimit.size() != 3) {
206      RuntimeAbort(env, __LINE__, "rlimits array must have a second dimension of size 3");
207    }
208
209    rlim.rlim_cur = javaRlimit[1];
210    rlim.rlim_max = javaRlimit[2];
211
212    int rc = setrlimit(javaRlimit[0], &rlim);
213    if (rc == -1) {
214      ALOGE("setrlimit(%d, {%ld, %ld}) failed", javaRlimit[0], rlim.rlim_cur,
215            rlim.rlim_max);
216      RuntimeAbort(env, __LINE__, "setrlimit failed");
217    }
218  }
219}
220
221// The debug malloc library needs to know whether it's the zygote or a child.
222extern "C" int gMallocLeakZygoteChild;
223
224static void EnableKeepCapabilities(JNIEnv* env) {
225  int rc = prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);
226  if (rc == -1) {
227    RuntimeAbort(env, __LINE__, "prctl(PR_SET_KEEPCAPS) failed");
228  }
229}
230
231static void DropCapabilitiesBoundingSet(JNIEnv* env) {
232  for (int i = 0; prctl(PR_CAPBSET_READ, i, 0, 0, 0) >= 0; i++) {
233    int rc = prctl(PR_CAPBSET_DROP, i, 0, 0, 0);
234    if (rc == -1) {
235      if (errno == EINVAL) {
236        ALOGE("prctl(PR_CAPBSET_DROP) failed with EINVAL. Please verify "
237              "your kernel is compiled with file capabilities support");
238      } else {
239        ALOGE("prctl(PR_CAPBSET_DROP, %d) failed: %s", i, strerror(errno));
240        RuntimeAbort(env, __LINE__, "prctl(PR_CAPBSET_DROP) failed");
241      }
242    }
243  }
244}
245
246static void SetInheritable(JNIEnv* env, uint64_t inheritable) {
247  __user_cap_header_struct capheader;
248  memset(&capheader, 0, sizeof(capheader));
249  capheader.version = _LINUX_CAPABILITY_VERSION_3;
250  capheader.pid = 0;
251
252  __user_cap_data_struct capdata[2];
253  if (capget(&capheader, &capdata[0]) == -1) {
254    ALOGE("capget failed: %s", strerror(errno));
255    RuntimeAbort(env, __LINE__, "capget failed");
256  }
257
258  capdata[0].inheritable = inheritable;
259  capdata[1].inheritable = inheritable >> 32;
260
261  if (capset(&capheader, &capdata[0]) == -1) {
262    ALOGE("capset(inh=%" PRIx64 ") failed: %s", inheritable, strerror(errno));
263    RuntimeAbort(env, __LINE__, "capset failed");
264  }
265}
266
267static void SetCapabilities(JNIEnv* env, uint64_t permitted, uint64_t effective,
268                            uint64_t inheritable) {
269  __user_cap_header_struct capheader;
270  memset(&capheader, 0, sizeof(capheader));
271  capheader.version = _LINUX_CAPABILITY_VERSION_3;
272  capheader.pid = 0;
273
274  __user_cap_data_struct capdata[2];
275  memset(&capdata, 0, sizeof(capdata));
276  capdata[0].effective = effective;
277  capdata[1].effective = effective >> 32;
278  capdata[0].permitted = permitted;
279  capdata[1].permitted = permitted >> 32;
280  capdata[0].inheritable = inheritable;
281  capdata[1].inheritable = inheritable >> 32;
282
283  if (capset(&capheader, &capdata[0]) == -1) {
284    ALOGE("capset(perm=%" PRIx64 ", eff=%" PRIx64 ", inh=%" PRIx64 ") failed: %s", permitted,
285          effective, inheritable, strerror(errno));
286    RuntimeAbort(env, __LINE__, "capset failed");
287  }
288}
289
290static void SetSchedulerPolicy(JNIEnv* env) {
291  errno = -set_sched_policy(0, SP_DEFAULT);
292  if (errno != 0) {
293    ALOGE("set_sched_policy(0, SP_DEFAULT) failed");
294    RuntimeAbort(env, __LINE__, "set_sched_policy(0, SP_DEFAULT) failed");
295  }
296}
297
298static int UnmountTree(const char* path) {
299    size_t path_len = strlen(path);
300
301    FILE* fp = setmntent("/proc/mounts", "r");
302    if (fp == NULL) {
303        ALOGE("Error opening /proc/mounts: %s", strerror(errno));
304        return -errno;
305    }
306
307    // Some volumes can be stacked on each other, so force unmount in
308    // reverse order to give us the best chance of success.
309    std::list<std::string> toUnmount;
310    mntent* mentry;
311    while ((mentry = getmntent(fp)) != NULL) {
312        if (strncmp(mentry->mnt_dir, path, path_len) == 0) {
313            toUnmount.push_front(std::string(mentry->mnt_dir));
314        }
315    }
316    endmntent(fp);
317
318    for (auto path : toUnmount) {
319        if (umount2(path.c_str(), MNT_DETACH)) {
320            ALOGW("Failed to unmount %s: %s", path.c_str(), strerror(errno));
321        }
322    }
323    return 0;
324}
325
326// Create a private mount namespace and bind mount appropriate emulated
327// storage for the given user.
328static bool MountEmulatedStorage(uid_t uid, jint mount_mode,
329        bool force_mount_namespace) {
330    // See storage config details at http://source.android.com/tech/storage/
331
332    String8 storageSource;
333    if (mount_mode == MOUNT_EXTERNAL_DEFAULT) {
334        storageSource = "/mnt/runtime/default";
335    } else if (mount_mode == MOUNT_EXTERNAL_READ) {
336        storageSource = "/mnt/runtime/read";
337    } else if (mount_mode == MOUNT_EXTERNAL_WRITE) {
338        storageSource = "/mnt/runtime/write";
339    } else if (!force_mount_namespace) {
340        // Sane default of no storage visible
341        return true;
342    }
343
344    // Create a second private mount namespace for our process
345    if (unshare(CLONE_NEWNS) == -1) {
346        ALOGW("Failed to unshare(): %s", strerror(errno));
347        return false;
348    }
349
350    // Handle force_mount_namespace with MOUNT_EXTERNAL_NONE.
351    if (mount_mode == MOUNT_EXTERNAL_NONE) {
352        return true;
353    }
354
355    if (TEMP_FAILURE_RETRY(mount(storageSource.string(), "/storage",
356            NULL, MS_BIND | MS_REC | MS_SLAVE, NULL)) == -1) {
357        ALOGW("Failed to mount %s to /storage: %s", storageSource.string(), strerror(errno));
358        return false;
359    }
360
361    // Mount user-specific symlink helper into place
362    userid_t user_id = multiuser_get_user_id(uid);
363    const String8 userSource(String8::format("/mnt/user/%d", user_id));
364    if (fs_prepare_dir(userSource.string(), 0751, 0, 0) == -1) {
365        return false;
366    }
367    if (TEMP_FAILURE_RETRY(mount(userSource.string(), "/storage/self",
368            NULL, MS_BIND, NULL)) == -1) {
369        ALOGW("Failed to mount %s to /storage/self: %s", userSource.string(), strerror(errno));
370        return false;
371    }
372
373    return true;
374}
375
376static bool NeedsNoRandomizeWorkaround() {
377#if !defined(__arm__)
378    return false;
379#else
380    int major;
381    int minor;
382    struct utsname uts;
383    if (uname(&uts) == -1) {
384        return false;
385    }
386
387    if (sscanf(uts.release, "%d.%d", &major, &minor) != 2) {
388        return false;
389    }
390
391    // Kernels before 3.4.* need the workaround.
392    return (major < 3) || ((major == 3) && (minor < 4));
393#endif
394}
395
396// Utility to close down the Zygote socket file descriptors while
397// the child is still running as root with Zygote's privileges.  Each
398// descriptor (if any) is closed via dup2(), replacing it with a valid
399// (open) descriptor to /dev/null.
400
401static void DetachDescriptors(JNIEnv* env, jintArray fdsToClose) {
402  if (!fdsToClose) {
403    return;
404  }
405  jsize count = env->GetArrayLength(fdsToClose);
406  ScopedIntArrayRO ar(env, fdsToClose);
407  if (ar.get() == NULL) {
408      RuntimeAbort(env, __LINE__, "Bad fd array");
409  }
410  jsize i;
411  int devnull;
412  for (i = 0; i < count; i++) {
413    devnull = open("/dev/null", O_RDWR);
414    if (devnull < 0) {
415      ALOGE("Failed to open /dev/null: %s", strerror(errno));
416      RuntimeAbort(env, __LINE__, "Failed to open /dev/null");
417      continue;
418    }
419    ALOGV("Switching descriptor %d to /dev/null: %s", ar[i], strerror(errno));
420    if (dup2(devnull, ar[i]) < 0) {
421      ALOGE("Failed dup2() on descriptor %d: %s", ar[i], strerror(errno));
422      RuntimeAbort(env, __LINE__, "Failed dup2()");
423    }
424    close(devnull);
425  }
426}
427
428void SetThreadName(const char* thread_name) {
429  bool hasAt = false;
430  bool hasDot = false;
431  const char* s = thread_name;
432  while (*s) {
433    if (*s == '.') {
434      hasDot = true;
435    } else if (*s == '@') {
436      hasAt = true;
437    }
438    s++;
439  }
440  const int len = s - thread_name;
441  if (len < 15 || hasAt || !hasDot) {
442    s = thread_name;
443  } else {
444    s = thread_name + len - 15;
445  }
446  // pthread_setname_np fails rather than truncating long strings.
447  char buf[16];       // MAX_TASK_COMM_LEN=16 is hard-coded into bionic
448  strlcpy(buf, s, sizeof(buf)-1);
449  errno = pthread_setname_np(pthread_self(), buf);
450  if (errno != 0) {
451    ALOGW("Unable to set the name of current thread to '%s': %s", buf, strerror(errno));
452  }
453}
454
455// The list of open zygote file descriptors.
456static FileDescriptorTable* gOpenFdTable = NULL;
457
458static void FillFileDescriptorVector(JNIEnv* env,
459                                     jintArray java_fds,
460                                     std::vector<int>* fds) {
461  CHECK(fds != nullptr);
462  if (java_fds != nullptr) {
463    ScopedIntArrayRO ar(env, java_fds);
464    if (ar.get() == nullptr) {
465      RuntimeAbort(env, __LINE__, "Bad fd array");
466    }
467    fds->reserve(ar.size());
468    for (size_t i = 0; i < ar.size(); ++i) {
469      fds->push_back(ar[i]);
470    }
471  }
472}
473
474// Utility routine to fork zygote and specialize the child process.
475static pid_t ForkAndSpecializeCommon(JNIEnv* env, uid_t uid, gid_t gid, jintArray javaGids,
476                                     jint debug_flags, jobjectArray javaRlimits,
477                                     jlong permittedCapabilities, jlong effectiveCapabilities,
478                                     jint mount_external,
479                                     jstring java_se_info, jstring java_se_name,
480                                     bool is_system_server, jintArray fdsToClose,
481                                     jintArray fdsToIgnore,
482                                     jstring instructionSet, jstring dataDir) {
483  SetSigChldHandler();
484
485  sigset_t sigchld;
486  sigemptyset(&sigchld);
487  sigaddset(&sigchld, SIGCHLD);
488
489  // Temporarily block SIGCHLD during forks. The SIGCHLD handler might
490  // log, which would result in the logging FDs we close being reopened.
491  // This would cause failures because the FDs are not whitelisted.
492  //
493  // Note that the zygote process is single threaded at this point.
494  if (sigprocmask(SIG_BLOCK, &sigchld, nullptr) == -1) {
495    ALOGE("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno));
496    RuntimeAbort(env, __LINE__, "Call to sigprocmask(SIG_BLOCK, { SIGCHLD }) failed.");
497  }
498
499  // Close any logging related FDs before we start evaluating the list of
500  // file descriptors.
501  __android_log_close();
502
503  // If this is the first fork for this zygote, create the open FD table.
504  // If it isn't, we just need to check whether the list of open files has
505  // changed (and it shouldn't in the normal case).
506  std::vector<int> fds_to_ignore;
507  FillFileDescriptorVector(env, fdsToIgnore, &fds_to_ignore);
508  if (gOpenFdTable == NULL) {
509    gOpenFdTable = FileDescriptorTable::Create(fds_to_ignore);
510    if (gOpenFdTable == NULL) {
511      RuntimeAbort(env, __LINE__, "Unable to construct file descriptor table.");
512    }
513  } else if (!gOpenFdTable->Restat(fds_to_ignore)) {
514    RuntimeAbort(env, __LINE__, "Unable to restat file descriptor table.");
515  }
516
517  pid_t pid = fork();
518
519  if (pid == 0) {
520    // The child process.
521    gMallocLeakZygoteChild = 1;
522
523    // Set the jemalloc decay time to 1.
524    mallopt(M_DECAY_TIME, 1);
525
526    // Clean up any descriptors which must be closed immediately
527    DetachDescriptors(env, fdsToClose);
528
529    // Re-open all remaining open file descriptors so that they aren't shared
530    // with the zygote across a fork.
531    if (!gOpenFdTable->ReopenOrDetach()) {
532      RuntimeAbort(env, __LINE__, "Unable to reopen whitelisted descriptors.");
533    }
534
535    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
540    // Keep capabilities across UID change, unless we're staying root.
541    if (uid != 0) {
542      EnableKeepCapabilities(env);
543    }
544
545    SetInheritable(env, permittedCapabilities);
546    DropCapabilitiesBoundingSet(env);
547
548    bool use_native_bridge = !is_system_server && (instructionSet != NULL)
549        && android::NativeBridgeAvailable();
550    if (use_native_bridge) {
551      ScopedUtfChars isa_string(env, instructionSet);
552      use_native_bridge = android::NeedsNativeBridge(isa_string.c_str());
553    }
554    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    }
562
563    if (!MountEmulatedStorage(uid, mount_external, use_native_bridge)) {
564      ALOGW("Failed to mount emulated storage: %s", strerror(errno));
565      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 {
572        RuntimeAbort(env, __LINE__, "Cannot continue without emulated storage");
573      }
574    }
575
576    if (!is_system_server) {
577        int rc = createProcessGroup(uid, getpid());
578        if (rc != 0) {
579            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            }
584        }
585    }
586
587    SetGids(env, javaGids);
588
589    SetRLimits(env, javaRlimits);
590
591    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());
595    }
596
597    int rc = setresgid(gid, gid, gid);
598    if (rc == -1) {
599      ALOGE("setresgid(%d) failed: %s", gid, strerror(errno));
600      RuntimeAbort(env, __LINE__, "setresgid failed");
601    }
602
603    rc = setresuid(uid, uid, uid);
604    if (rc == -1) {
605      ALOGE("setresuid(%d) failed: %s", uid, strerror(errno));
606      RuntimeAbort(env, __LINE__, "setresuid failed");
607    }
608
609    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) {
614            ALOGW("personality(%d) failed: %s", new_personality, strerror(errno));
615        }
616    }
617
618    SetCapabilities(env, permittedCapabilities, effectiveCapabilities, permittedCapabilities);
619
620    SetSchedulerPolicy(env);
621
622    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) {
628          RuntimeAbort(env, __LINE__, "se_info_c_str == NULL");
629        }
630    }
631    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) {
637          RuntimeAbort(env, __LINE__, "se_name_c_str == NULL");
638        }
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);
644      RuntimeAbort(env, __LINE__, "selinux_android_setcontext failed");
645    }
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;
658
659    UnsetSigChldHandler();
660
661    env->CallStaticVoidMethod(gZygoteClass, gCallPostForkChildHooks, debug_flags,
662                              is_system_server, instructionSet);
663    if (env->ExceptionCheck()) {
664      RuntimeAbort(env, __LINE__, "Error calling post fork hooks.");
665    }
666  } else if (pid > 0) {
667    // the parent process
668
669    // 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    }
674  }
675  return pid;
676}
677}  // anonymous namespace
678
679namespace android {
680
681static jint com_android_internal_os_Zygote_nativeForkAndSpecialize(
682        JNIEnv* env, jclass, jint uid, jint gid, jintArray gids,
683        jint debug_flags, jobjectArray rlimits,
684        jint mount_external, jstring se_info, jstring se_name,
685        jintArray fdsToClose,
686        jintArray fdsToIgnore,
687        jstring instructionSet, jstring appDataDir) {
688    jlong capabilities = 0;
689
690    // Grant CAP_WAKE_ALARM to the Bluetooth process.
691    // Additionally, allow bluetooth to open packet sockets so it can start the DHCP client.
692    // Grant CAP_SYS_NICE to allow Bluetooth to set RT priority for
693    // audio-related threads.
694    // TODO: consider making such functionality an RPC to netd.
695    if (multiuser_get_app_id(uid) == AID_BLUETOOTH) {
696      capabilities |= (1LL << CAP_WAKE_ALARM);
697      capabilities |= (1LL << CAP_NET_RAW);
698      capabilities |= (1LL << CAP_NET_BIND_SERVICE);
699      capabilities |= (1LL << CAP_SYS_NICE);
700    }
701
702    // Grant CAP_BLOCK_SUSPEND to processes that belong to GID "wakelock"
703    bool gid_wakelock_found = false;
704    if (gid == AID_WAKELOCK) {
705      gid_wakelock_found = true;
706    } else if (gids != NULL) {
707      jsize gids_num = env->GetArrayLength(gids);
708      ScopedIntArrayRO ar(env, gids);
709      if (ar.get() == NULL) {
710        RuntimeAbort(env, __LINE__, "Bad gids array");
711      }
712      for (int i = 0; i < gids_num; i++) {
713        if (ar[i] == AID_WAKELOCK) {
714          gid_wakelock_found = true;
715          break;
716        }
717      }
718    }
719    if (gid_wakelock_found) {
720      capabilities |= (1LL << CAP_BLOCK_SUSPEND);
721    }
722
723    return ForkAndSpecializeCommon(env, uid, gid, gids, debug_flags,
724            rlimits, capabilities, capabilities, mount_external, se_info,
725            se_name, false, fdsToClose, fdsToIgnore, instructionSet, appDataDir);
726}
727
728static jint com_android_internal_os_Zygote_nativeForkSystemServer(
729        JNIEnv* env, jclass, uid_t uid, gid_t gid, jintArray gids,
730        jint debug_flags, jobjectArray rlimits, jlong permittedCapabilities,
731        jlong effectiveCapabilities) {
732  pid_t pid = ForkAndSpecializeCommon(env, uid, gid, gids,
733                                      debug_flags, rlimits,
734                                      permittedCapabilities, effectiveCapabilities,
735                                      MOUNT_EXTERNAL_DEFAULT, NULL, NULL, true, NULL,
736                                      NULL, NULL, NULL);
737  if (pid > 0) {
738      // The zygote process checks whether the child process has died or not.
739      ALOGI("System server process %d has been created", pid);
740      gSystemServerPid = pid;
741      // There is a slight window that the system server process has crashed
742      // but it went unnoticed because we haven't published its pid yet. So
743      // we recheck here just to make sure that all is well.
744      int status;
745      if (waitpid(pid, &status, WNOHANG) == pid) {
746          ALOGE("System server process %d has died. Restarting Zygote!", pid);
747          RuntimeAbort(env, __LINE__, "System server process has died. Restarting Zygote!");
748      }
749  }
750  return pid;
751}
752
753static void com_android_internal_os_Zygote_nativeAllowFileAcrossFork(
754        JNIEnv* env, jclass, jstring path) {
755    ScopedUtfChars path_native(env, path);
756    const char* path_cstr = path_native.c_str();
757    if (!path_cstr) {
758        RuntimeAbort(env, __LINE__, "path_cstr == NULL");
759    }
760    FileDescriptorWhitelist::Get()->Allow(path_cstr);
761}
762
763static void com_android_internal_os_Zygote_nativeUnmountStorageOnInit(JNIEnv* env, jclass) {
764    // Zygote process unmount root storage space initially before every child processes are forked.
765    // Every forked child processes (include SystemServer) only mount their own root storage space
766    // and no need unmount storage operation in MountEmulatedStorage method.
767    // Zygote process does not utilize root storage spaces and unshares its mount namespace below.
768
769    // See storage config details at http://source.android.com/tech/storage/
770    // Create private mount namespace shared by all children
771    if (unshare(CLONE_NEWNS) == -1) {
772        RuntimeAbort(env, __LINE__, "Failed to unshare()");
773        return;
774    }
775
776    // Mark rootfs as being a slave so that changes from default
777    // namespace only flow into our children.
778    if (mount("rootfs", "/", nullptr, (MS_SLAVE | MS_REC), nullptr) == -1) {
779        RuntimeAbort(env, __LINE__, "Failed to mount() rootfs as MS_SLAVE");
780        return;
781    }
782
783    // Create a staging tmpfs that is shared by our children; they will
784    // bind mount storage into their respective private namespaces, which
785    // are isolated from each other.
786    const char* target_base = getenv("EMULATED_STORAGE_TARGET");
787    if (target_base != nullptr) {
788#define STRINGIFY_UID(x) __STRING(x)
789        if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
790                  "uid=0,gid=" STRINGIFY_UID(AID_SDCARD_R) ",mode=0751") == -1) {
791            ALOGE("Failed to mount tmpfs to %s", target_base);
792            RuntimeAbort(env, __LINE__, "Failed to mount tmpfs");
793            return;
794        }
795#undef STRINGIFY_UID
796    }
797
798    UnmountTree("/storage");
799}
800
801static const JNINativeMethod gMethods[] = {
802    { "nativeForkAndSpecialize",
803      "(II[II[[IILjava/lang/String;Ljava/lang/String;[I[ILjava/lang/String;Ljava/lang/String;)I",
804      (void *) com_android_internal_os_Zygote_nativeForkAndSpecialize },
805    { "nativeForkSystemServer", "(II[II[[IJJ)I",
806      (void *) com_android_internal_os_Zygote_nativeForkSystemServer },
807    { "nativeAllowFileAcrossFork", "(Ljava/lang/String;)V",
808      (void *) com_android_internal_os_Zygote_nativeAllowFileAcrossFork },
809    { "nativeUnmountStorageOnInit", "()V",
810      (void *) com_android_internal_os_Zygote_nativeUnmountStorageOnInit }
811};
812
813int register_com_android_internal_os_Zygote(JNIEnv* env) {
814  gZygoteClass = MakeGlobalRefOrDie(env, FindClassOrDie(env, kZygoteClassName));
815  gCallPostForkChildHooks = GetStaticMethodIDOrDie(env, gZygoteClass, "callPostForkChildHooks",
816                                                   "(IZLjava/lang/String;)V");
817
818  return RegisterMethodsOrDie(env, "com/android/internal/os/Zygote", gMethods, NELEM(gMethods));
819}
820}  // namespace android
821