Process.java revision a876b35d485008b690578889d11e69b40d4e7170
1/*
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.LocalSocket;
20import android.net.LocalSocketAddress;
21import android.system.Os;
22import android.util.Log;
23import com.android.internal.os.Zygote;
24import java.io.BufferedWriter;
25import java.io.DataInputStream;
26import java.io.IOException;
27import java.io.OutputStreamWriter;
28import java.nio.charset.StandardCharsets;
29import java.util.ArrayList;
30import java.util.Arrays;
31import java.util.List;
32
33/*package*/ class ZygoteStartFailedEx extends Exception {
34    ZygoteStartFailedEx(String s) {
35        super(s);
36    }
37
38    ZygoteStartFailedEx(Throwable cause) {
39        super(cause);
40    }
41
42    ZygoteStartFailedEx(String s, Throwable cause) {
43        super(s, cause);
44    }
45}
46
47/**
48 * Tools for managing OS processes.
49 */
50public class Process {
51    private static final String LOG_TAG = "Process";
52
53    /**
54     * @hide for internal use only.
55     */
56    public static final String ZYGOTE_SOCKET = "zygote";
57
58    /**
59     * @hide for internal use only.
60     */
61    public static final String SECONDARY_ZYGOTE_SOCKET = "zygote_secondary";
62
63    /**
64     * Defines the root UID.
65     * @hide
66     */
67    public static final int ROOT_UID = 0;
68
69    /**
70     * Defines the UID/GID under which system code runs.
71     */
72    public static final int SYSTEM_UID = 1000;
73
74    /**
75     * Defines the UID/GID under which the telephony code runs.
76     */
77    public static final int PHONE_UID = 1001;
78
79    /**
80     * Defines the UID/GID for the user shell.
81     * @hide
82     */
83    public static final int SHELL_UID = 2000;
84
85    /**
86     * Defines the UID/GID for the log group.
87     * @hide
88     */
89    public static final int LOG_UID = 1007;
90
91    /**
92     * Defines the UID/GID for the WIFI supplicant process.
93     * @hide
94     */
95    public static final int WIFI_UID = 1010;
96
97    /**
98     * Defines the UID/GID for the mediaserver process.
99     * @hide
100     */
101    public static final int MEDIA_UID = 1013;
102
103    /**
104     * Defines the UID/GID for the DRM process.
105     * @hide
106     */
107    public static final int DRM_UID = 1019;
108
109    /**
110     * Defines the UID/GID for the group that controls VPN services.
111     * @hide
112     */
113    public static final int VPN_UID = 1016;
114
115    /**
116     * Defines the UID/GID for the NFC service process.
117     * @hide
118     */
119    public static final int NFC_UID = 1027;
120
121    /**
122     * Defines the UID/GID for the Bluetooth service process.
123     * @hide
124     */
125    public static final int BLUETOOTH_UID = 1002;
126
127    /**
128     * Defines the GID for the group that allows write access to the internal media storage.
129     * @hide
130     */
131    public static final int MEDIA_RW_GID = 1023;
132
133    /**
134     * Access to installed package details
135     * @hide
136     */
137    public static final int PACKAGE_INFO_GID = 1032;
138
139    /**
140     * Defines the UID/GID for the shared RELRO file updater process.
141     * @hide
142     */
143    public static final int SHARED_RELRO_UID = 1037;
144
145    /**
146     * Defines the start of a range of UIDs (and GIDs), going from this
147     * number to {@link #LAST_APPLICATION_UID} that are reserved for assigning
148     * to applications.
149     */
150    public static final int FIRST_APPLICATION_UID = 10000;
151
152    /**
153     * Last of application-specific UIDs starting at
154     * {@link #FIRST_APPLICATION_UID}.
155     */
156    public static final int LAST_APPLICATION_UID = 19999;
157
158    /**
159     * First uid used for fully isolated sandboxed processes (with no permissions of their own)
160     * @hide
161     */
162    public static final int FIRST_ISOLATED_UID = 99000;
163
164    /**
165     * Last uid used for fully isolated sandboxed processes (with no permissions of their own)
166     * @hide
167     */
168    public static final int LAST_ISOLATED_UID = 99999;
169
170    /**
171     * Defines the gid shared by all applications running under the same profile.
172     * @hide
173     */
174    public static final int SHARED_USER_GID = 9997;
175
176    /**
177     * First gid for applications to share resources. Used when forward-locking
178     * is enabled but all UserHandles need to be able to read the resources.
179     * @hide
180     */
181    public static final int FIRST_SHARED_APPLICATION_GID = 50000;
182
183    /**
184     * Last gid for applications to share resources. Used when forward-locking
185     * is enabled but all UserHandles need to be able to read the resources.
186     * @hide
187     */
188    public static final int LAST_SHARED_APPLICATION_GID = 59999;
189
190    /**
191     * Standard priority of application threads.
192     * Use with {@link #setThreadPriority(int)} and
193     * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
194     * {@link java.lang.Thread} class.
195     */
196    public static final int THREAD_PRIORITY_DEFAULT = 0;
197
198    /*
199     * ***************************************
200     * ** Keep in sync with utils/threads.h **
201     * ***************************************
202     */
203
204    /**
205     * Lowest available thread priority.  Only for those who really, really
206     * don't want to run if anything else is happening.
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_LOWEST = 19;
212
213    /**
214     * Standard priority background threads.  This gives your thread a slightly
215     * lower than normal priority, so that it will have less chance of impacting
216     * the responsiveness of the user interface.
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_BACKGROUND = 10;
222
223    /**
224     * Standard priority of threads that are currently running a user interface
225     * that the user is interacting with.  Applications can not normally
226     * change to this priority; the system will automatically adjust your
227     * application threads as the user moves through the UI.
228     * Use with {@link #setThreadPriority(int)} and
229     * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
230     * {@link java.lang.Thread} class.
231     */
232    public static final int THREAD_PRIORITY_FOREGROUND = -2;
233
234    /**
235     * Standard priority of system display threads, involved in updating
236     * the user interface.  Applications can not
237     * normally change to this priority.
238     * Use with {@link #setThreadPriority(int)} and
239     * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
240     * {@link java.lang.Thread} class.
241     */
242    public static final int THREAD_PRIORITY_DISPLAY = -4;
243
244    /**
245     * Standard priority of the most important display threads, for compositing
246     * the screen and retrieving input events.  Applications can not normally
247     * change to this priority.
248     * Use with {@link #setThreadPriority(int)} and
249     * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
250     * {@link java.lang.Thread} class.
251     */
252    public static final int THREAD_PRIORITY_URGENT_DISPLAY = -8;
253
254    /**
255     * Standard priority of audio threads.  Applications can not normally
256     * change to this priority.
257     * Use with {@link #setThreadPriority(int)} and
258     * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
259     * {@link java.lang.Thread} class.
260     */
261    public static final int THREAD_PRIORITY_AUDIO = -16;
262
263    /**
264     * Standard priority of the most important audio threads.
265     * Applications can not normally change to this priority.
266     * Use with {@link #setThreadPriority(int)} and
267     * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
268     * {@link java.lang.Thread} class.
269     */
270    public static final int THREAD_PRIORITY_URGENT_AUDIO = -19;
271
272    /**
273     * Minimum increment to make a priority more favorable.
274     */
275    public static final int THREAD_PRIORITY_MORE_FAVORABLE = -1;
276
277    /**
278     * Minimum increment to make a priority less favorable.
279     */
280    public static final int THREAD_PRIORITY_LESS_FAVORABLE = +1;
281
282    /**
283     * Default scheduling policy
284     * @hide
285     */
286    public static final int SCHED_OTHER = 0;
287
288    /**
289     * First-In First-Out scheduling policy
290     * @hide
291     */
292    public static final int SCHED_FIFO = 1;
293
294    /**
295     * Round-Robin scheduling policy
296     * @hide
297     */
298    public static final int SCHED_RR = 2;
299
300    /**
301     * Batch scheduling policy
302     * @hide
303     */
304    public static final int SCHED_BATCH = 3;
305
306    /**
307     * Idle scheduling policy
308     * @hide
309     */
310    public static final int SCHED_IDLE = 5;
311
312    // Keep in sync with SP_* constants of enum type SchedPolicy
313    // declared in system/core/include/cutils/sched_policy.h,
314    // except THREAD_GROUP_DEFAULT does not correspond to any SP_* value.
315
316    /**
317     * Default thread group -
318     * has meaning with setProcessGroup() only, cannot be used with setThreadGroup().
319     * When used with setProcessGroup(), the group of each thread in the process
320     * is conditionally changed based on that thread's current priority, as follows:
321     * threads with priority numerically less than THREAD_PRIORITY_BACKGROUND
322     * are moved to foreground thread group.  All other threads are left unchanged.
323     * @hide
324     */
325    public static final int THREAD_GROUP_DEFAULT = -1;
326
327    /**
328     * Background thread group - All threads in
329     * this group are scheduled with a reduced share of the CPU.
330     * Value is same as constant SP_BACKGROUND of enum SchedPolicy.
331     * FIXME rename to THREAD_GROUP_BACKGROUND.
332     * @hide
333     */
334    public static final int THREAD_GROUP_BG_NONINTERACTIVE = 0;
335
336    /**
337     * Foreground thread group - All threads in
338     * this group are scheduled with a normal share of the CPU.
339     * Value is same as constant SP_FOREGROUND of enum SchedPolicy.
340     * Not used at this level.
341     * @hide
342     **/
343    private static final int THREAD_GROUP_FOREGROUND = 1;
344
345    /**
346     * System thread group.
347     * @hide
348     **/
349    public static final int THREAD_GROUP_SYSTEM = 2;
350
351    /**
352     * Application audio thread group.
353     * @hide
354     **/
355    public static final int THREAD_GROUP_AUDIO_APP = 3;
356
357    /**
358     * System audio thread group.
359     * @hide
360     **/
361    public static final int THREAD_GROUP_AUDIO_SYS = 4;
362
363    public static final int SIGNAL_QUIT = 3;
364    public static final int SIGNAL_KILL = 9;
365    public static final int SIGNAL_USR1 = 10;
366
367    /**
368     * State for communicating with the zygote process.
369     *
370     * @hide for internal use only.
371     */
372    public static class ZygoteState {
373        final LocalSocket socket;
374        final DataInputStream inputStream;
375        final BufferedWriter writer;
376        final List<String> abiList;
377
378        boolean mClosed;
379
380        private ZygoteState(LocalSocket socket, DataInputStream inputStream,
381                BufferedWriter writer, List<String> abiList) {
382            this.socket = socket;
383            this.inputStream = inputStream;
384            this.writer = writer;
385            this.abiList = abiList;
386        }
387
388        public static ZygoteState connect(String socketAddress) throws IOException {
389            DataInputStream zygoteInputStream = null;
390            BufferedWriter zygoteWriter = null;
391            final LocalSocket zygoteSocket = new LocalSocket();
392
393            try {
394                zygoteSocket.connect(new LocalSocketAddress(socketAddress,
395                        LocalSocketAddress.Namespace.RESERVED));
396
397                zygoteInputStream = new DataInputStream(zygoteSocket.getInputStream());
398
399                zygoteWriter = new BufferedWriter(new OutputStreamWriter(
400                        zygoteSocket.getOutputStream()), 256);
401            } catch (IOException ex) {
402                try {
403                    zygoteSocket.close();
404                } catch (IOException ignore) {
405                }
406
407                throw ex;
408            }
409
410            String abiListString = getAbiList(zygoteWriter, zygoteInputStream);
411            Log.i("Zygote", "Process: zygote socket opened, supported ABIS: " + abiListString);
412
413            return new ZygoteState(zygoteSocket, zygoteInputStream, zygoteWriter,
414                    Arrays.asList(abiListString.split(",")));
415        }
416
417        boolean matches(String abi) {
418            return abiList.contains(abi);
419        }
420
421        public void close() {
422            try {
423                socket.close();
424            } catch (IOException ex) {
425                Log.e(LOG_TAG,"I/O exception on routine close", ex);
426            }
427
428            mClosed = true;
429        }
430
431        boolean isClosed() {
432            return mClosed;
433        }
434    }
435
436    /**
437     * The state of the connection to the primary zygote.
438     */
439    static ZygoteState primaryZygoteState;
440
441    /**
442     * The state of the connection to the secondary zygote.
443     */
444    static ZygoteState secondaryZygoteState;
445
446    /**
447     * Start a new process.
448     *
449     * <p>If processes are enabled, a new process is created and the
450     * static main() function of a <var>processClass</var> is executed there.
451     * The process will continue running after this function returns.
452     *
453     * <p>If processes are not enabled, a new thread in the caller's
454     * process is created and main() of <var>processClass</var> called there.
455     *
456     * <p>The niceName parameter, if not an empty string, is a custom name to
457     * give to the process instead of using processClass.  This allows you to
458     * make easily identifyable processes even if you are using the same base
459     * <var>processClass</var> to start them.
460     *
461     * @param processClass The class to use as the process's main entry
462     *                     point.
463     * @param niceName A more readable name to use for the process.
464     * @param uid The user-id under which the process will run.
465     * @param gid The group-id under which the process will run.
466     * @param gids Additional group-ids associated with the process.
467     * @param debugFlags Additional flags.
468     * @param targetSdkVersion The target SDK version for the app.
469     * @param seInfo null-ok SELinux information for the new process.
470     * @param abi non-null the ABI this app should be started with.
471     * @param instructionSet null-ok the instruction set to use.
472     * @param appDataDir null-ok the data directory of the app.
473     * @param zygoteArgs Additional arguments to supply to the zygote process.
474     *
475     * @return An object that describes the result of the attempt to start the process.
476     * @throws RuntimeException on fatal start failure
477     *
478     * {@hide}
479     */
480    public static final ProcessStartResult start(final String processClass,
481                                  final String niceName,
482                                  int uid, int gid, int[] gids,
483                                  int debugFlags, int mountExternal,
484                                  int targetSdkVersion,
485                                  String seInfo,
486                                  String abi,
487                                  String instructionSet,
488                                  String appDataDir,
489                                  String[] zygoteArgs) {
490        try {
491            return startViaZygote(processClass, niceName, uid, gid, gids,
492                    debugFlags, mountExternal, targetSdkVersion, seInfo,
493                    abi, instructionSet, appDataDir, zygoteArgs);
494        } catch (ZygoteStartFailedEx ex) {
495            Log.e(LOG_TAG,
496                    "Starting VM process through Zygote failed");
497            throw new RuntimeException(
498                    "Starting VM process through Zygote failed", ex);
499        }
500    }
501
502    /** retry interval for opening a zygote socket */
503    static final int ZYGOTE_RETRY_MILLIS = 500;
504
505    /**
506     * Queries the zygote for the list of ABIS it supports.
507     *
508     * @throws ZygoteStartFailedEx if the query failed.
509     */
510    private static String getAbiList(BufferedWriter writer, DataInputStream inputStream)
511            throws IOException {
512        // Each query starts with the argument count (1 in this case)
513        writer.write("1");
514        // ... followed by a new-line.
515        writer.newLine();
516        // ... followed by our only argument.
517        writer.write("--query-abi-list");
518        writer.newLine();
519        writer.flush();
520
521        // The response is a length prefixed stream of ASCII bytes.
522        int numBytes = inputStream.readInt();
523        byte[] bytes = new byte[numBytes];
524        inputStream.readFully(bytes);
525
526        return new String(bytes, StandardCharsets.US_ASCII);
527    }
528
529    /**
530     * Sends an argument list to the zygote process, which starts a new child
531     * and returns the child's pid. Please note: the present implementation
532     * replaces newlines in the argument list with spaces.
533     *
534     * @throws ZygoteStartFailedEx if process start failed for any reason
535     */
536    private static ProcessStartResult zygoteSendArgsAndGetResult(
537            ZygoteState zygoteState, ArrayList<String> args)
538            throws ZygoteStartFailedEx {
539        try {
540            /**
541             * See com.android.internal.os.ZygoteInit.readArgumentList()
542             * Presently the wire format to the zygote process is:
543             * a) a count of arguments (argc, in essence)
544             * b) a number of newline-separated argument strings equal to count
545             *
546             * After the zygote process reads these it will write the pid of
547             * the child or -1 on failure, followed by boolean to
548             * indicate whether a wrapper process was used.
549             */
550            final BufferedWriter writer = zygoteState.writer;
551            final DataInputStream inputStream = zygoteState.inputStream;
552
553            writer.write(Integer.toString(args.size()));
554            writer.newLine();
555
556            int sz = args.size();
557            for (int i = 0; i < sz; i++) {
558                String arg = args.get(i);
559                if (arg.indexOf('\n') >= 0) {
560                    throw new ZygoteStartFailedEx(
561                            "embedded newlines not allowed");
562                }
563                writer.write(arg);
564                writer.newLine();
565            }
566
567            writer.flush();
568
569            // Should there be a timeout on this?
570            ProcessStartResult result = new ProcessStartResult();
571            result.pid = inputStream.readInt();
572            if (result.pid < 0) {
573                throw new ZygoteStartFailedEx("fork() failed");
574            }
575            result.usingWrapper = inputStream.readBoolean();
576            return result;
577        } catch (IOException ex) {
578            zygoteState.close();
579            throw new ZygoteStartFailedEx(ex);
580        }
581    }
582
583    /**
584     * Starts a new process via the zygote mechanism.
585     *
586     * @param processClass Class name whose static main() to run
587     * @param niceName 'nice' process name to appear in ps
588     * @param uid a POSIX uid that the new process should setuid() to
589     * @param gid a POSIX gid that the new process shuold setgid() to
590     * @param gids null-ok; a list of supplementary group IDs that the
591     * new process should setgroup() to.
592     * @param debugFlags Additional flags.
593     * @param targetSdkVersion The target SDK version for the app.
594     * @param seInfo null-ok SELinux information for the new process.
595     * @param abi the ABI the process should use.
596     * @param instructionSet null-ok the instruction set to use.
597     * @param appDataDir null-ok the data directory of the app.
598     * @param extraArgs Additional arguments to supply to the zygote process.
599     * @return An object that describes the result of the attempt to start the process.
600     * @throws ZygoteStartFailedEx if process start failed for any reason
601     */
602    private static ProcessStartResult startViaZygote(final String processClass,
603                                  final String niceName,
604                                  final int uid, final int gid,
605                                  final int[] gids,
606                                  int debugFlags, int mountExternal,
607                                  int targetSdkVersion,
608                                  String seInfo,
609                                  String abi,
610                                  String instructionSet,
611                                  String appDataDir,
612                                  String[] extraArgs)
613                                  throws ZygoteStartFailedEx {
614        synchronized(Process.class) {
615            ArrayList<String> argsForZygote = new ArrayList<String>();
616
617            // --runtime-args, --setuid=, --setgid=,
618            // and --setgroups= must go first
619            argsForZygote.add("--runtime-args");
620            argsForZygote.add("--setuid=" + uid);
621            argsForZygote.add("--setgid=" + gid);
622            if ((debugFlags & Zygote.DEBUG_ENABLE_JNI_LOGGING) != 0) {
623                argsForZygote.add("--enable-jni-logging");
624            }
625            if ((debugFlags & Zygote.DEBUG_ENABLE_SAFEMODE) != 0) {
626                argsForZygote.add("--enable-safemode");
627            }
628            if ((debugFlags & Zygote.DEBUG_ENABLE_DEBUGGER) != 0) {
629                argsForZygote.add("--enable-debugger");
630            }
631            if ((debugFlags & Zygote.DEBUG_ENABLE_CHECKJNI) != 0) {
632                argsForZygote.add("--enable-checkjni");
633            }
634            if ((debugFlags & Zygote.DEBUG_ENABLE_JIT) != 0) {
635                argsForZygote.add("--enable-jit");
636            }
637            if ((debugFlags & Zygote.DEBUG_GENERATE_CFI) != 0) {
638                argsForZygote.add("--generate-cfi");
639            }
640            if ((debugFlags & Zygote.DEBUG_ENABLE_ASSERT) != 0) {
641                argsForZygote.add("--enable-assert");
642            }
643            if (mountExternal == Zygote.MOUNT_EXTERNAL_MULTIUSER) {
644                argsForZygote.add("--mount-external-multiuser");
645            } else if (mountExternal == Zygote.MOUNT_EXTERNAL_MULTIUSER_ALL) {
646                argsForZygote.add("--mount-external-multiuser-all");
647            }
648            argsForZygote.add("--target-sdk-version=" + targetSdkVersion);
649
650            //TODO optionally enable debuger
651            //argsForZygote.add("--enable-debugger");
652
653            // --setgroups is a comma-separated list
654            if (gids != null && gids.length > 0) {
655                StringBuilder sb = new StringBuilder();
656                sb.append("--setgroups=");
657
658                int sz = gids.length;
659                for (int i = 0; i < sz; i++) {
660                    if (i != 0) {
661                        sb.append(',');
662                    }
663                    sb.append(gids[i]);
664                }
665
666                argsForZygote.add(sb.toString());
667            }
668
669            if (niceName != null) {
670                argsForZygote.add("--nice-name=" + niceName);
671            }
672
673            if (seInfo != null) {
674                argsForZygote.add("--seinfo=" + seInfo);
675            }
676
677            if (instructionSet != null) {
678                argsForZygote.add("--instruction-set=" + instructionSet);
679            }
680
681            if (appDataDir != null) {
682                argsForZygote.add("--app-data-dir=" + appDataDir);
683            }
684
685            argsForZygote.add(processClass);
686
687            if (extraArgs != null) {
688                for (String arg : extraArgs) {
689                    argsForZygote.add(arg);
690                }
691            }
692
693            return zygoteSendArgsAndGetResult(openZygoteSocketIfNeeded(abi), argsForZygote);
694        }
695    }
696
697    /**
698     * Tries to establish a connection to the zygote that handles a given {@code abi}. Might block and retry if the
699     * zygote is unresponsive. This method is a no-op if a connection is already open.
700     *
701     * @hide
702     */
703    public static void establishZygoteConnectionForAbi(String abi) {
704        try {
705            openZygoteSocketIfNeeded(abi);
706        } catch (ZygoteStartFailedEx ex) {
707            throw new RuntimeException("Unable to connect to zygote for abi: " + abi, ex);
708        }
709    }
710
711    /**
712     * Tries to open socket to Zygote process if not already open. If
713     * already open, does nothing.  May block and retry.
714     */
715    private static ZygoteState openZygoteSocketIfNeeded(String abi) throws ZygoteStartFailedEx {
716        if (primaryZygoteState == null || primaryZygoteState.isClosed()) {
717            try {
718                primaryZygoteState = ZygoteState.connect(ZYGOTE_SOCKET);
719            } catch (IOException ioe) {
720                throw new ZygoteStartFailedEx("Error connecting to primary zygote", ioe);
721            }
722        }
723
724        if (primaryZygoteState.matches(abi)) {
725            return primaryZygoteState;
726        }
727
728        // The primary zygote didn't match. Try the secondary.
729        if (secondaryZygoteState == null || secondaryZygoteState.isClosed()) {
730            try {
731            secondaryZygoteState = ZygoteState.connect(SECONDARY_ZYGOTE_SOCKET);
732            } catch (IOException ioe) {
733                throw new ZygoteStartFailedEx("Error connecting to secondary zygote", ioe);
734            }
735        }
736
737        if (secondaryZygoteState.matches(abi)) {
738            return secondaryZygoteState;
739        }
740
741        throw new ZygoteStartFailedEx("Unsupported zygote ABI: " + abi);
742    }
743
744    /**
745     * Returns elapsed milliseconds of the time this process has run.
746     * @return  Returns the number of milliseconds this process has return.
747     */
748    public static final native long getElapsedCpuTime();
749
750    /**
751     * Returns the identifier of this process, which can be used with
752     * {@link #killProcess} and {@link #sendSignal}.
753     */
754    public static final int myPid() {
755        return Os.getpid();
756    }
757
758    /**
759     * Returns the identifier of this process' parent.
760     * @hide
761     */
762    public static final int myPpid() {
763        return Os.getppid();
764    }
765
766    /**
767     * Returns the identifier of the calling thread, which be used with
768     * {@link #setThreadPriority(int, int)}.
769     */
770    public static final int myTid() {
771        return Os.gettid();
772    }
773
774    /**
775     * Returns the identifier of this process's uid.  This is the kernel uid
776     * that the process is running under, which is the identity of its
777     * app-specific sandbox.  It is different from {@link #myUserHandle} in that
778     * a uid identifies a specific app sandbox in a specific user.
779     */
780    public static final int myUid() {
781        return Os.getuid();
782    }
783
784    /**
785     * Returns this process's user handle.  This is the
786     * user the process is running under.  It is distinct from
787     * {@link #myUid()} in that a particular user will have multiple
788     * distinct apps running under it each with their own uid.
789     */
790    public static final UserHandle myUserHandle() {
791        return new UserHandle(UserHandle.getUserId(myUid()));
792    }
793
794    /**
795     * Returns whether the current process is in an isolated sandbox.
796     * @hide
797     */
798    public static final boolean isIsolated() {
799        int uid = UserHandle.getAppId(myUid());
800        return uid >= FIRST_ISOLATED_UID && uid <= LAST_ISOLATED_UID;
801    }
802
803    /**
804     * Returns the UID assigned to a particular user name, or -1 if there is
805     * none.  If the given string consists of only numbers, it is converted
806     * directly to a uid.
807     */
808    public static final native int getUidForName(String name);
809
810    /**
811     * Returns the GID assigned to a particular user name, or -1 if there is
812     * none.  If the given string consists of only numbers, it is converted
813     * directly to a gid.
814     */
815    public static final native int getGidForName(String name);
816
817    /**
818     * Returns a uid for a currently running process.
819     * @param pid the process id
820     * @return the uid of the process, or -1 if the process is not running.
821     * @hide pending API council review
822     */
823    public static final int getUidForPid(int pid) {
824        String[] procStatusLabels = { "Uid:" };
825        long[] procStatusValues = new long[1];
826        procStatusValues[0] = -1;
827        Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues);
828        return (int) procStatusValues[0];
829    }
830
831    /**
832     * Returns the parent process id for a currently running process.
833     * @param pid the process id
834     * @return the parent process id of the process, or -1 if the process is not running.
835     * @hide
836     */
837    public static final int getParentPid(int pid) {
838        String[] procStatusLabels = { "PPid:" };
839        long[] procStatusValues = new long[1];
840        procStatusValues[0] = -1;
841        Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues);
842        return (int) procStatusValues[0];
843    }
844
845    /**
846     * Returns the thread group leader id for a currently running thread.
847     * @param tid the thread id
848     * @return the thread group leader id of the thread, or -1 if the thread is not running.
849     *         This is same as what getpid(2) would return if called by tid.
850     * @hide
851     */
852    public static final int getThreadGroupLeader(int tid) {
853        String[] procStatusLabels = { "Tgid:" };
854        long[] procStatusValues = new long[1];
855        procStatusValues[0] = -1;
856        Process.readProcLines("/proc/" + tid + "/status", procStatusLabels, procStatusValues);
857        return (int) procStatusValues[0];
858    }
859
860    /**
861     * Set the priority of a thread, based on Linux priorities.
862     *
863     * @param tid The identifier of the thread/process to change.
864     * @param priority A Linux priority level, from -20 for highest scheduling
865     * priority to 19 for lowest scheduling priority.
866     *
867     * @throws IllegalArgumentException Throws IllegalArgumentException if
868     * <var>tid</var> does not exist.
869     * @throws SecurityException Throws SecurityException if your process does
870     * not have permission to modify the given thread, or to use the given
871     * priority.
872     */
873    public static final native void setThreadPriority(int tid, int priority)
874            throws IllegalArgumentException, SecurityException;
875
876    /**
877     * Call with 'false' to cause future calls to {@link #setThreadPriority(int)} to
878     * throw an exception if passed a background-level thread priority.  This is only
879     * effective if the JNI layer is built with GUARD_THREAD_PRIORITY defined to 1.
880     *
881     * @hide
882     */
883    public static final native void setCanSelfBackground(boolean backgroundOk);
884
885    /**
886     * Sets the scheduling group for a thread.
887     * @hide
888     * @param tid The identifier of the thread to change.
889     * @param group The target group for this thread from THREAD_GROUP_*.
890     *
891     * @throws IllegalArgumentException Throws IllegalArgumentException if
892     * <var>tid</var> does not exist.
893     * @throws SecurityException Throws SecurityException if your process does
894     * not have permission to modify the given thread, or to use the given
895     * priority.
896     * If the thread is a thread group leader, that is it's gettid() == getpid(),
897     * then the other threads in the same thread group are _not_ affected.
898     */
899    public static final native void setThreadGroup(int tid, int group)
900            throws IllegalArgumentException, SecurityException;
901
902    /**
903     * Sets the scheduling group for a process and all child threads
904     * @hide
905     * @param pid The identifier of the process to change.
906     * @param group The target group for this process from THREAD_GROUP_*.
907     *
908     * @throws IllegalArgumentException Throws IllegalArgumentException if
909     * <var>tid</var> does not exist.
910     * @throws SecurityException Throws SecurityException if your process does
911     * not have permission to modify the given thread, or to use the given
912     * priority.
913     *
914     * group == THREAD_GROUP_DEFAULT means to move all non-background priority
915     * threads to the foreground scheduling group, but to leave background
916     * priority threads alone.  group == THREAD_GROUP_BG_NONINTERACTIVE moves all
917     * threads, regardless of priority, to the background scheduling group.
918     * group == THREAD_GROUP_FOREGROUND is not allowed.
919     */
920    public static final native void setProcessGroup(int pid, int group)
921            throws IllegalArgumentException, SecurityException;
922
923    /**
924     * Return the scheduling group of requested process.
925     *
926     * @hide
927     */
928    public static final native int getProcessGroup(int pid)
929            throws IllegalArgumentException, SecurityException;
930
931    /**
932     * Set the priority of the calling thread, based on Linux priorities.  See
933     * {@link #setThreadPriority(int, int)} for more information.
934     *
935     * @param priority A Linux priority level, from -20 for highest scheduling
936     * priority to 19 for lowest scheduling priority.
937     *
938     * @throws IllegalArgumentException Throws IllegalArgumentException if
939     * <var>tid</var> does not exist.
940     * @throws SecurityException Throws SecurityException if your process does
941     * not have permission to modify the given thread, or to use the given
942     * priority.
943     *
944     * @see #setThreadPriority(int, int)
945     */
946    public static final native void setThreadPriority(int priority)
947            throws IllegalArgumentException, SecurityException;
948
949    /**
950     * Return the current priority of a thread, based on Linux priorities.
951     *
952     * @param tid The identifier of the thread/process to change.
953     *
954     * @return Returns the current priority, as a Linux priority level,
955     * from -20 for highest scheduling priority to 19 for lowest scheduling
956     * priority.
957     *
958     * @throws IllegalArgumentException Throws IllegalArgumentException if
959     * <var>tid</var> does not exist.
960     */
961    public static final native int getThreadPriority(int tid)
962            throws IllegalArgumentException;
963
964    /**
965     * Set the scheduling policy and priority of a thread, based on Linux.
966     *
967     * @param tid The identifier of the thread/process to change.
968     * @param policy A Linux scheduling policy such as SCHED_OTHER etc.
969     * @param priority A Linux priority level in a range appropriate for the given policy.
970     *
971     * @throws IllegalArgumentException Throws IllegalArgumentException if
972     * <var>tid</var> does not exist, or if <var>priority</var> is out of range for the policy.
973     * @throws SecurityException Throws SecurityException if your process does
974     * not have permission to modify the given thread, or to use the given
975     * scheduling policy or priority.
976     *
977     * {@hide}
978     */
979    public static final native void setThreadScheduler(int tid, int policy, int priority)
980            throws IllegalArgumentException;
981
982    /**
983     * Determine whether the current environment supports multiple processes.
984     *
985     * @return Returns true if the system can run in multiple processes, else
986     * false if everything is running in a single process.
987     *
988     * @deprecated This method always returns true.  Do not use.
989     */
990    @Deprecated
991    public static final boolean supportsProcesses() {
992        return true;
993    }
994
995    /**
996     * Adjust the swappiness level for a process.
997     *
998     * @param pid The process identifier to set.
999     * @param is_increased Whether swappiness should be increased or default.
1000     *
1001     * @return Returns true if the underlying system supports this
1002     *         feature, else false.
1003     *
1004     * {@hide}
1005     */
1006    public static final native boolean setSwappiness(int pid, boolean is_increased);
1007
1008    /**
1009     * Change this process's argv[0] parameter.  This can be useful to show
1010     * more descriptive information in things like the 'ps' command.
1011     *
1012     * @param text The new name of this process.
1013     *
1014     * {@hide}
1015     */
1016    public static final native void setArgV0(String text);
1017
1018    /**
1019     * Kill the process with the given PID.
1020     * Note that, though this API allows us to request to
1021     * kill any process based on its PID, the kernel will
1022     * still impose standard restrictions on which PIDs you
1023     * are actually able to kill.  Typically this means only
1024     * the process running the caller's packages/application
1025     * and any additional processes created by that app; packages
1026     * sharing a common UID will also be able to kill each
1027     * other's processes.
1028     */
1029    public static final void killProcess(int pid) {
1030        sendSignal(pid, SIGNAL_KILL);
1031    }
1032
1033    /** @hide */
1034    public static final native int setUid(int uid);
1035
1036    /** @hide */
1037    public static final native int setGid(int uid);
1038
1039    /**
1040     * Send a signal to the given process.
1041     *
1042     * @param pid The pid of the target process.
1043     * @param signal The signal to send.
1044     */
1045    public static final native void sendSignal(int pid, int signal);
1046
1047    /**
1048     * @hide
1049     * Private impl for avoiding a log message...  DO NOT USE without doing
1050     * your own log, or the Android Illuminati will find you some night and
1051     * beat you up.
1052     */
1053    public static final void killProcessQuiet(int pid) {
1054        sendSignalQuiet(pid, SIGNAL_KILL);
1055    }
1056
1057    /**
1058     * @hide
1059     * Private impl for avoiding a log message...  DO NOT USE without doing
1060     * your own log, or the Android Illuminati will find you some night and
1061     * beat you up.
1062     */
1063    public static final native void sendSignalQuiet(int pid, int signal);
1064
1065    /** @hide */
1066    public static final native long getFreeMemory();
1067
1068    /** @hide */
1069    public static final native long getTotalMemory();
1070
1071    /** @hide */
1072    public static final native void readProcLines(String path,
1073            String[] reqFields, long[] outSizes);
1074
1075    /** @hide */
1076    public static final native int[] getPids(String path, int[] lastArray);
1077
1078    /** @hide */
1079    public static final int PROC_TERM_MASK = 0xff;
1080    /** @hide */
1081    public static final int PROC_ZERO_TERM = 0;
1082    /** @hide */
1083    public static final int PROC_SPACE_TERM = (int)' ';
1084    /** @hide */
1085    public static final int PROC_TAB_TERM = (int)'\t';
1086    /** @hide */
1087    public static final int PROC_COMBINE = 0x100;
1088    /** @hide */
1089    public static final int PROC_PARENS = 0x200;
1090    /** @hide */
1091    public static final int PROC_QUOTES = 0x400;
1092    /** @hide */
1093    public static final int PROC_OUT_STRING = 0x1000;
1094    /** @hide */
1095    public static final int PROC_OUT_LONG = 0x2000;
1096    /** @hide */
1097    public static final int PROC_OUT_FLOAT = 0x4000;
1098
1099    /** @hide */
1100    public static final native boolean readProcFile(String file, int[] format,
1101            String[] outStrings, long[] outLongs, float[] outFloats);
1102
1103    /** @hide */
1104    public static final native boolean parseProcLine(byte[] buffer, int startIndex,
1105            int endIndex, int[] format, String[] outStrings, long[] outLongs, float[] outFloats);
1106
1107    /** @hide */
1108    public static final native int[] getPidsForCommands(String[] cmds);
1109
1110    /**
1111     * Gets the total Pss value for a given process, in bytes.
1112     *
1113     * @param pid the process to the Pss for
1114     * @return the total Pss value for the given process in bytes,
1115     *  or -1 if the value cannot be determined
1116     * @hide
1117     */
1118    public static final native long getPss(int pid);
1119
1120    /**
1121     * Specifies the outcome of having started a process.
1122     * @hide
1123     */
1124    public static final class ProcessStartResult {
1125        /**
1126         * The PID of the newly started process.
1127         * Always >= 0.  (If the start failed, an exception will have been thrown instead.)
1128         */
1129        public int pid;
1130
1131        /**
1132         * True if the process was started with a wrapper attached.
1133         */
1134        public boolean usingWrapper;
1135    }
1136
1137    /**
1138     * Kill all processes in a process group started for the given
1139     * pid.
1140     * @hide
1141     */
1142    public static final native int killProcessGroup(int uid, int pid);
1143
1144    /**
1145     * Remove all process groups.  Expected to be called when ActivityManager
1146     * is restarted.
1147     * @hide
1148     */
1149    public static final native void removeAllProcessGroups();
1150}
1151