blob: 3513bdccc6675bfc369fb954684cdb38f96ac714 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
17package android.os;
18
19import android.net.LocalSocketAddress;
20import android.net.LocalSocket;
21import android.util.Log;
22import dalvik.system.Zygote;
23
24import java.io.BufferedWriter;
25import java.io.DataInputStream;
26import java.io.IOException;
27import java.io.OutputStreamWriter;
28import java.util.ArrayList;
29
30/*package*/ class ZygoteStartFailedEx extends Exception {
31 /**
32 * Something prevented the zygote process startup from happening normally
33 */
34
35 ZygoteStartFailedEx() {};
36 ZygoteStartFailedEx(String s) {super(s);}
37 ZygoteStartFailedEx(Throwable cause) {super(cause);}
38}
39
40/**
41 * Tools for managing OS processes.
42 */
43public class Process {
44 private static final String LOG_TAG = "Process";
45
46 private static final String ZYGOTE_SOCKET = "zygote";
47
48 /**
49 * Name of a process for running the platform's media services.
50 * {@hide}
51 */
52 public static final String ANDROID_SHARED_MEDIA = "com.android.process.media";
53
54 /**
55 * Name of the process that Google content providers can share.
56 * {@hide}
57 */
58 public static final String GOOGLE_SHARED_APP_CONTENT = "com.google.process.content";
59
60 /**
61 * Defines the UID/GID under which system code runs.
62 */
63 public static final int SYSTEM_UID = 1000;
64
65 /**
66 * Defines the UID/GID under which the telephony code runs.
67 */
68 public static final int PHONE_UID = 1001;
69
70 /**
Dianne Hackborn854060a2009-07-09 18:14:31 -070071 * Defines the UID/GID for the user shell.
72 * @hide
73 */
74 public static final int SHELL_UID = 2000;
75
76 /**
Mike Lockwoodd42685d2009-09-03 09:25:22 -040077 * Defines the UID/GID for the log group.
78 * @hide
79 */
80 public static final int LOG_UID = 1007;
81
82 /**
Amith Yamasanid1582142009-07-08 20:04:55 -070083 * Defines the UID/GID for the WIFI supplicant process.
84 * @hide
85 */
86 public static final int WIFI_UID = 1010;
87
88 /**
Glenn Kasten8b7d1b42011-07-13 16:23:22 -070089 * Defines the UID/GID for the mediaserver process.
90 * @hide
91 */
92 public static final int MEDIA_UID = 1013;
93
94 /**
Jeff Sharkey5294a2f2012-04-24 17:07:22 -070095 * Defines the UID/GID for the DRM process.
96 * @hide
97 */
98 public static final int DRM_UID = 1019;
99
100 /**
Mike Lockwood58fd98a2010-09-24 11:02:47 -0400101 * Defines the GID for the group that allows write access to the SD card.
102 * @hide
103 */
104 public static final int SDCARD_RW_GID = 1015;
105
106 /**
Kenny Root26993b32012-03-19 15:07:51 -0700107 * Defines the UID/GID for the group that controls VPN services.
108 * @hide
109 */
110 public static final int VPN_UID = 1016;
111
112 /**
Nick Pellycd0e8392010-10-13 17:25:24 -0700113 * Defines the UID/GID for the NFC service process.
114 * @hide
115 */
Nick Pellya5cb9f42011-11-21 14:54:46 -0800116 public static final int NFC_UID = 1027;
Nick Pellycd0e8392010-10-13 17:25:24 -0700117
118 /**
Jaikumar Ganesh1abb1cb2012-01-25 16:14:50 -0800119 * Defines the UID/GID for the Bluetooth service process.
120 * @hide
121 */
122 public static final int BLUETOOTH_UID = 1002;
123
124 /**
Mike Lockwooddcaa10c2010-12-16 12:50:44 -0800125 * Defines the GID for the group that allows write access to the internal media storage.
126 * @hide
127 */
128 public static final int MEDIA_RW_GID = 1023;
129
130 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 * Defines the start of a range of UIDs (and GIDs), going from this
132 * number to {@link #LAST_APPLICATION_UID} that are reserved for assigning
133 * to applications.
134 */
135 public static final int FIRST_APPLICATION_UID = 10000;
136 /**
137 * Last of application-specific UIDs starting at
138 * {@link #FIRST_APPLICATION_UID}.
139 */
Dianne Hackborn21fbd1f2012-02-10 10:38:10 -0800140 public static final int LAST_APPLICATION_UID = 19999;
Dianne Hackborna0c283e2012-02-09 10:47:01 -0800141
142 /**
143 * First uid used for fully isolated sandboxed processes (with no permissions of their own)
144 * @hide
145 */
146 public static final int FIRST_ISOLATED_UID = 99000;
147
148 /**
149 * Last uid used for fully isolated sandboxed processes (with no permissions of their own)
150 * @hide
151 */
152 public static final int LAST_ISOLATED_UID = 99999;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153
154 /**
155 * Defines a secondary group id for access to the bluetooth hardware.
156 */
157 public static final int BLUETOOTH_GID = 2000;
158
159 /**
160 * Standard priority of application threads.
161 * Use with {@link #setThreadPriority(int)} and
162 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
163 * {@link java.lang.Thread} class.
164 */
165 public static final int THREAD_PRIORITY_DEFAULT = 0;
166
167 /*
168 * ***************************************
169 * ** Keep in sync with utils/threads.h **
170 * ***************************************
171 */
172
173 /**
174 * Lowest available thread priority. Only for those who really, really
175 * don't want to run if anything else is happening.
176 * Use with {@link #setThreadPriority(int)} and
177 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
178 * {@link java.lang.Thread} class.
179 */
180 public static final int THREAD_PRIORITY_LOWEST = 19;
181
182 /**
183 * Standard priority background threads. This gives your thread a slightly
184 * lower than normal priority, so that it will have less chance of impacting
185 * the responsiveness of the user interface.
186 * Use with {@link #setThreadPriority(int)} and
187 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
188 * {@link java.lang.Thread} class.
189 */
190 public static final int THREAD_PRIORITY_BACKGROUND = 10;
191
192 /**
193 * Standard priority of threads that are currently running a user interface
194 * that the user is interacting with. Applications can not normally
195 * change to this priority; the system will automatically adjust your
196 * application threads as the user moves through the UI.
197 * Use with {@link #setThreadPriority(int)} and
198 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
199 * {@link java.lang.Thread} class.
200 */
201 public static final int THREAD_PRIORITY_FOREGROUND = -2;
202
203 /**
204 * Standard priority of system display threads, involved in updating
205 * the user interface. Applications can not
206 * normally change to this priority.
207 * Use with {@link #setThreadPriority(int)} and
208 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
209 * {@link java.lang.Thread} class.
210 */
211 public static final int THREAD_PRIORITY_DISPLAY = -4;
212
213 /**
214 * Standard priority of the most important display threads, for compositing
215 * the screen and retrieving input events. Applications can not normally
216 * change to this priority.
217 * Use with {@link #setThreadPriority(int)} and
218 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
219 * {@link java.lang.Thread} class.
220 */
221 public static final int THREAD_PRIORITY_URGENT_DISPLAY = -8;
222
223 /**
224 * Standard priority of audio threads. Applications can not normally
225 * change to this priority.
226 * Use with {@link #setThreadPriority(int)} and
227 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
228 * {@link java.lang.Thread} class.
229 */
230 public static final int THREAD_PRIORITY_AUDIO = -16;
231
232 /**
233 * Standard priority of the most important audio threads.
234 * Applications can not normally change to this priority.
235 * Use with {@link #setThreadPriority(int)} and
236 * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
237 * {@link java.lang.Thread} class.
238 */
239 public static final int THREAD_PRIORITY_URGENT_AUDIO = -19;
240
241 /**
242 * Minimum increment to make a priority more favorable.
243 */
244 public static final int THREAD_PRIORITY_MORE_FAVORABLE = -1;
245
246 /**
247 * Minimum increment to make a priority less favorable.
248 */
249 public static final int THREAD_PRIORITY_LESS_FAVORABLE = +1;
250
San Mehate9d376b2009-04-21 14:06:36 -0700251 /**
Glenn Kasten6793ac92011-07-13 12:44:12 -0700252 * Default scheduling policy
253 * @hide
254 */
255 public static final int SCHED_OTHER = 0;
256
257 /**
258 * First-In First-Out scheduling policy
259 * @hide
260 */
261 public static final int SCHED_FIFO = 1;
262
263 /**
264 * Round-Robin scheduling policy
265 * @hide
266 */
267 public static final int SCHED_RR = 2;
268
269 /**
270 * Batch scheduling policy
271 * @hide
272 */
273 public static final int SCHED_BATCH = 3;
274
275 /**
276 * Idle scheduling policy
277 * @hide
278 */
279 public static final int SCHED_IDLE = 5;
280
Glenn Kastenf1b56442012-03-15 16:33:43 -0700281 // Keep in sync with SP_* constants of enum type SchedPolicy
282 // declared in system/core/include/cutils/sched_policy.h,
283 // except THREAD_GROUP_DEFAULT does not correspond to any SP_* value.
San Mehate9d376b2009-04-21 14:06:36 -0700284
285 /**
Glenn Kastenf1b56442012-03-15 16:33:43 -0700286 * Default thread group -
287 * has meaning with setProcessGroup() only, cannot be used with setThreadGroup().
288 * When used with setProcessGroup(), the group of each thread in the process
289 * is conditionally changed based on that thread's current priority, as follows:
290 * threads with priority numerically less than THREAD_PRIORITY_BACKGROUND
291 * are moved to foreground thread group. All other threads are left unchanged.
292 * @hide
293 */
294 public static final int THREAD_GROUP_DEFAULT = -1;
295
296 /**
297 * Background thread group - All threads in
San Mehate9d376b2009-04-21 14:06:36 -0700298 * this group are scheduled with a reduced share of the CPU.
Glenn Kastenf1b56442012-03-15 16:33:43 -0700299 * Value is same as constant SP_BACKGROUND of enum SchedPolicy.
300 * FIXME rename to THREAD_GROUP_BACKGROUND.
San Mehate9d376b2009-04-21 14:06:36 -0700301 * @hide
302 */
Glenn Kastenf1b56442012-03-15 16:33:43 -0700303 public static final int THREAD_GROUP_BG_NONINTERACTIVE = 0;
San Mehate9d376b2009-04-21 14:06:36 -0700304
305 /**
Glenn Kastenf1b56442012-03-15 16:33:43 -0700306 * Foreground thread group - All threads in
307 * this group are scheduled with a normal share of the CPU.
308 * Value is same as constant SP_FOREGROUND of enum SchedPolicy.
309 * Not used at this level.
San Mehate9d376b2009-04-21 14:06:36 -0700310 * @hide
311 **/
Glenn Kastenf1b56442012-03-15 16:33:43 -0700312 private static final int THREAD_GROUP_FOREGROUND = 1;
San Mehate9d376b2009-04-21 14:06:36 -0700313
Glenn Kasten07b04652012-04-23 15:00:43 -0700314 /**
315 * System thread group.
316 * @hide
317 **/
318 public static final int THREAD_GROUP_SYSTEM = 2;
319
320 /**
321 * Application audio thread group.
322 * @hide
323 **/
324 public static final int THREAD_GROUP_AUDIO_APP = 3;
325
326 /**
327 * System audio thread group.
328 * @hide
329 **/
330 public static final int THREAD_GROUP_AUDIO_SYS = 4;
331
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332 public static final int SIGNAL_QUIT = 3;
333 public static final int SIGNAL_KILL = 9;
334 public static final int SIGNAL_USR1 = 10;
335
336 // State for communicating with zygote process
337
338 static LocalSocket sZygoteSocket;
339 static DataInputStream sZygoteInputStream;
340 static BufferedWriter sZygoteWriter;
341
342 /** true if previous zygote open failed */
343 static boolean sPreviousZygoteOpenFailed;
344
345 /**
346 * Start a new process.
347 *
348 * <p>If processes are enabled, a new process is created and the
349 * static main() function of a <var>processClass</var> is executed there.
350 * The process will continue running after this function returns.
351 *
352 * <p>If processes are not enabled, a new thread in the caller's
353 * process is created and main() of <var>processClass</var> called there.
354 *
355 * <p>The niceName parameter, if not an empty string, is a custom name to
356 * give to the process instead of using processClass. This allows you to
357 * make easily identifyable processes even if you are using the same base
358 * <var>processClass</var> to start them.
359 *
360 * @param processClass The class to use as the process's main entry
361 * point.
362 * @param niceName A more readable name to use for the process.
363 * @param uid The user-id under which the process will run.
364 * @param gid The group-id under which the process will run.
365 * @param gids Additional group-ids associated with the process.
Elliott Hughese1dfcb72011-07-08 11:08:07 -0700366 * @param debugFlags Additional flags.
367 * @param targetSdkVersion The target SDK version for the app.
Stephen Smalley83d9eda2012-01-13 08:34:17 -0500368 * @param seInfo null-ok SE Android information for the new process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 * @param zygoteArgs Additional arguments to supply to the zygote process.
370 *
Jeff Brown3f9dd282011-07-08 20:02:19 -0700371 * @return An object that describes the result of the attempt to start the process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 * @throws RuntimeException on fatal start failure
373 *
374 * {@hide}
375 */
Jeff Brown3f9dd282011-07-08 20:02:19 -0700376 public static final ProcessStartResult start(final String processClass,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 final String niceName,
378 int uid, int gid, int[] gids,
Jeff Sharkey5b1ada22012-08-14 18:47:09 -0700379 int debugFlags, int mountExternal,
380 int targetSdkVersion,
Stephen Smalley83d9eda2012-01-13 08:34:17 -0500381 String seInfo,
Jeff Brown10e89712011-07-08 18:52:57 -0700382 String[] zygoteArgs) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383 try {
Jeff Brown10e89712011-07-08 18:52:57 -0700384 return startViaZygote(processClass, niceName, uid, gid, gids,
Jeff Sharkey5b1ada22012-08-14 18:47:09 -0700385 debugFlags, mountExternal, targetSdkVersion, seInfo, zygoteArgs);
Jeff Brown10e89712011-07-08 18:52:57 -0700386 } catch (ZygoteStartFailedEx ex) {
387 Log.e(LOG_TAG,
388 "Starting VM process through Zygote failed");
389 throw new RuntimeException(
390 "Starting VM process through Zygote failed", ex);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800391 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 }
393
394 /** retry interval for opening a zygote socket */
395 static final int ZYGOTE_RETRY_MILLIS = 500;
396
397 /**
398 * Tries to open socket to Zygote process if not already open. If
399 * already open, does nothing. May block and retry.
400 */
401 private static void openZygoteSocketIfNeeded()
402 throws ZygoteStartFailedEx {
403
404 int retryCount;
405
406 if (sPreviousZygoteOpenFailed) {
407 /*
408 * If we've failed before, expect that we'll fail again and
409 * don't pause for retries.
410 */
411 retryCount = 0;
412 } else {
413 retryCount = 10;
414 }
415
416 /*
417 * See bug #811181: Sometimes runtime can make it up before zygote.
418 * Really, we'd like to do something better to avoid this condition,
419 * but for now just wait a bit...
420 */
421 for (int retry = 0
422 ; (sZygoteSocket == null) && (retry < (retryCount + 1))
423 ; retry++ ) {
424
425 if (retry > 0) {
426 try {
427 Log.i("Zygote", "Zygote not up yet, sleeping...");
428 Thread.sleep(ZYGOTE_RETRY_MILLIS);
429 } catch (InterruptedException ex) {
430 // should never happen
431 }
432 }
433
434 try {
435 sZygoteSocket = new LocalSocket();
436
437 sZygoteSocket.connect(new LocalSocketAddress(ZYGOTE_SOCKET,
438 LocalSocketAddress.Namespace.RESERVED));
439
440 sZygoteInputStream
441 = new DataInputStream(sZygoteSocket.getInputStream());
442
443 sZygoteWriter =
444 new BufferedWriter(
445 new OutputStreamWriter(
446 sZygoteSocket.getOutputStream()),
447 256);
448
449 Log.i("Zygote", "Process: zygote socket opened");
450
451 sPreviousZygoteOpenFailed = false;
452 break;
453 } catch (IOException ex) {
454 if (sZygoteSocket != null) {
455 try {
456 sZygoteSocket.close();
457 } catch (IOException ex2) {
458 Log.e(LOG_TAG,"I/O exception on close after exception",
459 ex2);
460 }
461 }
462
463 sZygoteSocket = null;
464 }
465 }
466
467 if (sZygoteSocket == null) {
468 sPreviousZygoteOpenFailed = true;
469 throw new ZygoteStartFailedEx("connect failed");
470 }
471 }
472
473 /**
474 * Sends an argument list to the zygote process, which starts a new child
475 * and returns the child's pid. Please note: the present implementation
476 * replaces newlines in the argument list with spaces.
477 * @param args argument list
Jeff Brown3f9dd282011-07-08 20:02:19 -0700478 * @return An object that describes the result of the attempt to start the process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 * @throws ZygoteStartFailedEx if process start failed for any reason
480 */
Jeff Brown3f9dd282011-07-08 20:02:19 -0700481 private static ProcessStartResult zygoteSendArgsAndGetResult(ArrayList<String> args)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800482 throws ZygoteStartFailedEx {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800483 openZygoteSocketIfNeeded();
484
485 try {
486 /**
487 * See com.android.internal.os.ZygoteInit.readArgumentList()
488 * Presently the wire format to the zygote process is:
489 * a) a count of arguments (argc, in essence)
490 * b) a number of newline-separated argument strings equal to count
491 *
492 * After the zygote process reads these it will write the pid of
Jeff Brown3f9dd282011-07-08 20:02:19 -0700493 * the child or -1 on failure, followed by boolean to
494 * indicate whether a wrapper process was used.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800495 */
496
497 sZygoteWriter.write(Integer.toString(args.size()));
498 sZygoteWriter.newLine();
499
500 int sz = args.size();
501 for (int i = 0; i < sz; i++) {
502 String arg = args.get(i);
503 if (arg.indexOf('\n') >= 0) {
504 throw new ZygoteStartFailedEx(
505 "embedded newlines not allowed");
506 }
507 sZygoteWriter.write(arg);
508 sZygoteWriter.newLine();
509 }
510
511 sZygoteWriter.flush();
512
513 // Should there be a timeout on this?
Jeff Brown3f9dd282011-07-08 20:02:19 -0700514 ProcessStartResult result = new ProcessStartResult();
515 result.pid = sZygoteInputStream.readInt();
516 if (result.pid < 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800517 throw new ZygoteStartFailedEx("fork() failed");
518 }
Jeff Brown3f9dd282011-07-08 20:02:19 -0700519 result.usingWrapper = sZygoteInputStream.readBoolean();
520 return result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521 } catch (IOException ex) {
522 try {
523 if (sZygoteSocket != null) {
524 sZygoteSocket.close();
525 }
526 } catch (IOException ex2) {
527 // we're going to fail anyway
528 Log.e(LOG_TAG,"I/O exception on routine close", ex2);
529 }
530
531 sZygoteSocket = null;
532
533 throw new ZygoteStartFailedEx(ex);
534 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535 }
536
537 /**
538 * Starts a new process via the zygote mechanism.
539 *
540 * @param processClass Class name whose static main() to run
541 * @param niceName 'nice' process name to appear in ps
542 * @param uid a POSIX uid that the new process should setuid() to
543 * @param gid a POSIX gid that the new process shuold setgid() to
544 * @param gids null-ok; a list of supplementary group IDs that the
545 * new process should setgroup() to.
Elliott Hughese1dfcb72011-07-08 11:08:07 -0700546 * @param debugFlags Additional flags.
547 * @param targetSdkVersion The target SDK version for the app.
Stephen Smalley83d9eda2012-01-13 08:34:17 -0500548 * @param seInfo null-ok SE Android information for the new process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 * @param extraArgs Additional arguments to supply to the zygote process.
Jeff Brown3f9dd282011-07-08 20:02:19 -0700550 * @return An object that describes the result of the attempt to start the process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551 * @throws ZygoteStartFailedEx if process start failed for any reason
552 */
Jeff Brown3f9dd282011-07-08 20:02:19 -0700553 private static ProcessStartResult startViaZygote(final String processClass,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800554 final String niceName,
555 final int uid, final int gid,
556 final int[] gids,
Jeff Sharkey5b1ada22012-08-14 18:47:09 -0700557 int debugFlags, int mountExternal,
558 int targetSdkVersion,
Stephen Smalley83d9eda2012-01-13 08:34:17 -0500559 String seInfo,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800560 String[] extraArgs)
561 throws ZygoteStartFailedEx {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800562 synchronized(Process.class) {
563 ArrayList<String> argsForZygote = new ArrayList<String>();
564
565 // --runtime-init, --setuid=, --setgid=,
566 // and --setgroups= must go first
567 argsForZygote.add("--runtime-init");
568 argsForZygote.add("--setuid=" + uid);
569 argsForZygote.add("--setgid=" + gid);
Elliott Hughesae07ecf2011-07-06 17:33:27 -0700570 if ((debugFlags & Zygote.DEBUG_ENABLE_JNI_LOGGING) != 0) {
571 argsForZygote.add("--enable-jni-logging");
572 }
Ben Cheng23085b72010-02-08 16:06:32 -0800573 if ((debugFlags & Zygote.DEBUG_ENABLE_SAFEMODE) != 0) {
574 argsForZygote.add("--enable-safemode");
575 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800576 if ((debugFlags & Zygote.DEBUG_ENABLE_DEBUGGER) != 0) {
577 argsForZygote.add("--enable-debugger");
578 }
579 if ((debugFlags & Zygote.DEBUG_ENABLE_CHECKJNI) != 0) {
580 argsForZygote.add("--enable-checkjni");
581 }
582 if ((debugFlags & Zygote.DEBUG_ENABLE_ASSERT) != 0) {
583 argsForZygote.add("--enable-assert");
584 }
Jeff Sharkey5b1ada22012-08-14 18:47:09 -0700585 if (mountExternal == Zygote.MOUNT_EXTERNAL_SINGLEUSER) {
586 argsForZygote.add("--mount-external-singleuser");
587 } else if (mountExternal == Zygote.MOUNT_EXTERNAL_MULTIUSER) {
588 argsForZygote.add("--mount-external-multiuser");
589 }
Elliott Hughese1dfcb72011-07-08 11:08:07 -0700590 argsForZygote.add("--target-sdk-version=" + targetSdkVersion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591
592 //TODO optionally enable debuger
593 //argsForZygote.add("--enable-debugger");
594
595 // --setgroups is a comma-separated list
596 if (gids != null && gids.length > 0) {
597 StringBuilder sb = new StringBuilder();
598 sb.append("--setgroups=");
599
600 int sz = gids.length;
601 for (int i = 0; i < sz; i++) {
602 if (i != 0) {
603 sb.append(',');
604 }
605 sb.append(gids[i]);
606 }
607
608 argsForZygote.add(sb.toString());
609 }
610
611 if (niceName != null) {
612 argsForZygote.add("--nice-name=" + niceName);
613 }
614
Stephen Smalley83d9eda2012-01-13 08:34:17 -0500615 if (seInfo != null) {
616 argsForZygote.add("--seinfo=" + seInfo);
617 }
618
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 argsForZygote.add(processClass);
620
621 if (extraArgs != null) {
622 for (String arg : extraArgs) {
623 argsForZygote.add(arg);
624 }
625 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800626
Jeff Brown3f9dd282011-07-08 20:02:19 -0700627 return zygoteSendArgsAndGetResult(argsForZygote);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800629 }
630
631 /**
632 * Returns elapsed milliseconds of the time this process has run.
633 * @return Returns the number of milliseconds this process has return.
634 */
635 public static final native long getElapsedCpuTime();
636
637 /**
638 * Returns the identifier of this process, which can be used with
639 * {@link #killProcess} and {@link #sendSignal}.
640 */
641 public static final native int myPid();
642
643 /**
644 * Returns the identifier of the calling thread, which be used with
645 * {@link #setThreadPriority(int, int)}.
646 */
647 public static final native int myTid();
648
649 /**
Dianne Hackborn7d19e022012-08-07 19:12:33 -0700650 * Returns the identifier of this process's uid. This is the kernel uid
651 * that the process is running under, which is the identity of its
652 * app-specific sandbox. It is different from {@link #myUserHandle} in that
653 * a uid identifies a specific app sandbox in a specific user.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 */
655 public static final native int myUid();
656
657 /**
Dianne Hackborn79af1dd2012-08-16 16:42:52 -0700658 * Returns this process's user handle. This is the
Dianne Hackborn7d19e022012-08-07 19:12:33 -0700659 * user the process is running under. It is distinct from
660 * {@link #myUid()} in that a particular user will have multiple
661 * distinct apps running under it each with their own uid.
662 */
Dianne Hackborn79af1dd2012-08-16 16:42:52 -0700663 public static final UserHandle myUserHandle() {
664 return new UserHandle(UserHandle.getUserId(myUid()));
Dianne Hackborn7d19e022012-08-07 19:12:33 -0700665 }
666
667 /**
Dianne Hackborna0c283e2012-02-09 10:47:01 -0800668 * Returns whether the current process is in an isolated sandbox.
669 * @hide
670 */
671 public static final boolean isIsolated() {
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700672 int uid = UserHandle.getAppId(myUid());
Dianne Hackborna0c283e2012-02-09 10:47:01 -0800673 return uid >= FIRST_ISOLATED_UID && uid <= LAST_ISOLATED_UID;
674 }
675
676 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677 * Returns the UID assigned to a particular user name, or -1 if there is
678 * none. If the given string consists of only numbers, it is converted
679 * directly to a uid.
680 */
681 public static final native int getUidForName(String name);
682
683 /**
684 * Returns the GID assigned to a particular user name, or -1 if there is
685 * none. If the given string consists of only numbers, it is converted
686 * directly to a gid.
687 */
688 public static final native int getGidForName(String name);
Amith Yamasani819f9282009-06-24 23:18:15 -0700689
690 /**
691 * Returns a uid for a currently running process.
692 * @param pid the process id
693 * @return the uid of the process, or -1 if the process is not running.
694 * @hide pending API council review
695 */
696 public static final int getUidForPid(int pid) {
697 String[] procStatusLabels = { "Uid:" };
698 long[] procStatusValues = new long[1];
699 procStatusValues[0] = -1;
700 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues);
701 return (int) procStatusValues[0];
702 }
703
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800704 /**
Jeff Brownebed7d62011-05-16 17:08:42 -0700705 * Returns the parent process id for a currently running process.
706 * @param pid the process id
707 * @return the parent process id of the process, or -1 if the process is not running.
708 * @hide
709 */
710 public static final int getParentPid(int pid) {
711 String[] procStatusLabels = { "PPid:" };
712 long[] procStatusValues = new long[1];
713 procStatusValues[0] = -1;
714 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues);
715 return (int) procStatusValues[0];
716 }
717
718 /**
Glenn Kasten07b04652012-04-23 15:00:43 -0700719 * Returns the thread group leader id for a currently running thread.
720 * @param tid the thread id
721 * @return the thread group leader id of the thread, or -1 if the thread is not running.
722 * This is same as what getpid(2) would return if called by tid.
723 * @hide
724 */
725 public static final int getThreadGroupLeader(int tid) {
726 String[] procStatusLabels = { "Tgid:" };
727 long[] procStatusValues = new long[1];
728 procStatusValues[0] = -1;
729 Process.readProcLines("/proc/" + tid + "/status", procStatusLabels, procStatusValues);
730 return (int) procStatusValues[0];
731 }
732
733 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734 * Set the priority of a thread, based on Linux priorities.
735 *
736 * @param tid The identifier of the thread/process to change.
737 * @param priority A Linux priority level, from -20 for highest scheduling
738 * priority to 19 for lowest scheduling priority.
739 *
740 * @throws IllegalArgumentException Throws IllegalArgumentException if
741 * <var>tid</var> does not exist.
742 * @throws SecurityException Throws SecurityException if your process does
743 * not have permission to modify the given thread, or to use the given
744 * priority.
745 */
746 public static final native void setThreadPriority(int tid, int priority)
747 throws IllegalArgumentException, SecurityException;
San Mehate9d376b2009-04-21 14:06:36 -0700748
749 /**
Christopher Tate160edb32010-06-30 17:46:30 -0700750 * Call with 'false' to cause future calls to {@link #setThreadPriority(int)} to
751 * throw an exception if passed a background-level thread priority. This is only
752 * effective if the JNI layer is built with GUARD_THREAD_PRIORITY defined to 1.
753 *
754 * @hide
755 */
756 public static final native void setCanSelfBackground(boolean backgroundOk);
757
758 /**
San Mehate9d376b2009-04-21 14:06:36 -0700759 * Sets the scheduling group for a thread.
760 * @hide
Glenn Kastenf1b56442012-03-15 16:33:43 -0700761 * @param tid The identifier of the thread to change.
762 * @param group The target group for this thread from THREAD_GROUP_*.
San Mehate9d376b2009-04-21 14:06:36 -0700763 *
764 * @throws IllegalArgumentException Throws IllegalArgumentException if
765 * <var>tid</var> does not exist.
766 * @throws SecurityException Throws SecurityException if your process does
767 * not have permission to modify the given thread, or to use the given
768 * priority.
Glenn Kastenf1b56442012-03-15 16:33:43 -0700769 * If the thread is a thread group leader, that is it's gettid() == getpid(),
770 * then the other threads in the same thread group are _not_ affected.
San Mehate9d376b2009-04-21 14:06:36 -0700771 */
772 public static final native void setThreadGroup(int tid, int group)
773 throws IllegalArgumentException, SecurityException;
Glenn Kastenf1b56442012-03-15 16:33:43 -0700774
San Mehat3e458242009-05-19 14:44:16 -0700775 /**
776 * Sets the scheduling group for a process and all child threads
777 * @hide
Glenn Kastenf1b56442012-03-15 16:33:43 -0700778 * @param pid The identifier of the process to change.
779 * @param group The target group for this process from THREAD_GROUP_*.
San Mehat3e458242009-05-19 14:44:16 -0700780 *
781 * @throws IllegalArgumentException Throws IllegalArgumentException if
782 * <var>tid</var> does not exist.
783 * @throws SecurityException Throws SecurityException if your process does
784 * not have permission to modify the given thread, or to use the given
785 * priority.
Glenn Kastenf1b56442012-03-15 16:33:43 -0700786 *
787 * group == THREAD_GROUP_DEFAULT means to move all non-background priority
788 * threads to the foreground scheduling group, but to leave background
789 * priority threads alone. group == THREAD_GROUP_BG_NONINTERACTIVE moves all
790 * threads, regardless of priority, to the background scheduling group.
791 * group == THREAD_GROUP_FOREGROUND is not allowed.
San Mehat3e458242009-05-19 14:44:16 -0700792 */
793 public static final native void setProcessGroup(int pid, int group)
794 throws IllegalArgumentException, SecurityException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800795
796 /**
797 * Set the priority of the calling thread, based on Linux priorities. See
798 * {@link #setThreadPriority(int, int)} for more information.
799 *
800 * @param priority A Linux priority level, from -20 for highest scheduling
801 * priority to 19 for lowest scheduling priority.
802 *
803 * @throws IllegalArgumentException Throws IllegalArgumentException if
804 * <var>tid</var> does not exist.
805 * @throws SecurityException Throws SecurityException if your process does
806 * not have permission to modify the given thread, or to use the given
807 * priority.
808 *
809 * @see #setThreadPriority(int, int)
810 */
811 public static final native void setThreadPriority(int priority)
812 throws IllegalArgumentException, SecurityException;
813
814 /**
815 * Return the current priority of a thread, based on Linux priorities.
816 *
817 * @param tid The identifier of the thread/process to change.
818 *
819 * @return Returns the current priority, as a Linux priority level,
820 * from -20 for highest scheduling priority to 19 for lowest scheduling
821 * priority.
822 *
823 * @throws IllegalArgumentException Throws IllegalArgumentException if
824 * <var>tid</var> does not exist.
825 */
826 public static final native int getThreadPriority(int tid)
827 throws IllegalArgumentException;
828
829 /**
Glenn Kasten6793ac92011-07-13 12:44:12 -0700830 * Set the scheduling policy and priority of a thread, based on Linux.
831 *
832 * @param tid The identifier of the thread/process to change.
833 * @param policy A Linux scheduling policy such as SCHED_OTHER etc.
834 * @param priority A Linux priority level in a range appropriate for the given policy.
835 *
836 * @throws IllegalArgumentException Throws IllegalArgumentException if
837 * <var>tid</var> does not exist, or if <var>priority</var> is out of range for the policy.
838 * @throws SecurityException Throws SecurityException if your process does
839 * not have permission to modify the given thread, or to use the given
840 * scheduling policy or priority.
841 *
842 * {@hide}
843 */
844 public static final native void setThreadScheduler(int tid, int policy, int priority)
845 throws IllegalArgumentException;
846
847 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848 * Determine whether the current environment supports multiple processes.
849 *
850 * @return Returns true if the system can run in multiple processes, else
851 * false if everything is running in a single process.
Jeff Brown10e89712011-07-08 18:52:57 -0700852 *
853 * @deprecated This method always returns true. Do not use.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854 */
Jeff Brown10e89712011-07-08 18:52:57 -0700855 @Deprecated
856 public static final boolean supportsProcesses() {
857 return true;
858 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800859
860 /**
861 * Set the out-of-memory badness adjustment for a process.
862 *
863 * @param pid The process identifier to set.
864 * @param amt Adjustment value -- linux allows -16 to +15.
865 *
866 * @return Returns true if the underlying system supports this
867 * feature, else false.
868 *
869 * {@hide}
870 */
871 public static final native boolean setOomAdj(int pid, int amt);
872
873 /**
874 * Change this process's argv[0] parameter. This can be useful to show
875 * more descriptive information in things like the 'ps' command.
876 *
877 * @param text The new name of this process.
878 *
879 * {@hide}
880 */
881 public static final native void setArgV0(String text);
882
883 /**
884 * Kill the process with the given PID.
885 * Note that, though this API allows us to request to
886 * kill any process based on its PID, the kernel will
887 * still impose standard restrictions on which PIDs you
888 * are actually able to kill. Typically this means only
889 * the process running the caller's packages/application
890 * and any additional processes created by that app; packages
891 * sharing a common UID will also be able to kill each
892 * other's processes.
893 */
894 public static final void killProcess(int pid) {
895 sendSignal(pid, SIGNAL_KILL);
896 }
897
898 /** @hide */
899 public static final native int setUid(int uid);
900
901 /** @hide */
902 public static final native int setGid(int uid);
903
904 /**
905 * Send a signal to the given process.
906 *
907 * @param pid The pid of the target process.
908 * @param signal The signal to send.
909 */
910 public static final native void sendSignal(int pid, int signal);
911
Dianne Hackborn906497c2010-05-10 15:57:38 -0700912 /**
913 * @hide
914 * Private impl for avoiding a log message... DO NOT USE without doing
915 * your own log, or the Android Illuminati will find you some night and
916 * beat you up.
917 */
918 public static final void killProcessQuiet(int pid) {
919 sendSignalQuiet(pid, SIGNAL_KILL);
920 }
921
922 /**
923 * @hide
924 * Private impl for avoiding a log message... DO NOT USE without doing
925 * your own log, or the Android Illuminati will find you some night and
926 * beat you up.
927 */
928 public static final native void sendSignalQuiet(int pid, int signal);
929
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 /** @hide */
Marco Nelissen0bca96b2009-07-17 12:59:25 -0700931 public static final native long getFreeMemory();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932
933 /** @hide */
Dianne Hackborn59325eb2012-05-09 18:45:20 -0700934 public static final native long getTotalMemory();
935
936 /** @hide */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800937 public static final native void readProcLines(String path,
938 String[] reqFields, long[] outSizes);
939
940 /** @hide */
941 public static final native int[] getPids(String path, int[] lastArray);
942
943 /** @hide */
944 public static final int PROC_TERM_MASK = 0xff;
945 /** @hide */
946 public static final int PROC_ZERO_TERM = 0;
947 /** @hide */
948 public static final int PROC_SPACE_TERM = (int)' ';
949 /** @hide */
Evan Millarc64edde2009-04-18 12:26:32 -0700950 public static final int PROC_TAB_TERM = (int)'\t';
951 /** @hide */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800952 public static final int PROC_COMBINE = 0x100;
953 /** @hide */
954 public static final int PROC_PARENS = 0x200;
955 /** @hide */
956 public static final int PROC_OUT_STRING = 0x1000;
957 /** @hide */
958 public static final int PROC_OUT_LONG = 0x2000;
959 /** @hide */
960 public static final int PROC_OUT_FLOAT = 0x4000;
961
962 /** @hide */
963 public static final native boolean readProcFile(String file, int[] format,
964 String[] outStrings, long[] outLongs, float[] outFloats);
Evan Millarc64edde2009-04-18 12:26:32 -0700965
966 /** @hide */
967 public static final native boolean parseProcLine(byte[] buffer, int startIndex,
968 int endIndex, int[] format, String[] outStrings, long[] outLongs, float[] outFloats);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800969
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700970 /** @hide */
971 public static final native int[] getPidsForCommands(String[] cmds);
972
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800973 /**
974 * Gets the total Pss value for a given process, in bytes.
975 *
976 * @param pid the process to the Pss for
977 * @return the total Pss value for the given process in bytes,
978 * or -1 if the value cannot be determined
979 * @hide
980 */
981 public static final native long getPss(int pid);
Jeff Brown3f9dd282011-07-08 20:02:19 -0700982
983 /**
984 * Specifies the outcome of having started a process.
985 * @hide
986 */
987 public static final class ProcessStartResult {
988 /**
989 * The PID of the newly started process.
990 * Always >= 0. (If the start failed, an exception will have been thrown instead.)
991 */
992 public int pid;
993
994 /**
995 * True if the process was started with a wrapper attached.
996 */
997 public boolean usingWrapper;
998 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800999}