blob: 2ef85d5feaa137220179613dcc9b94e96a3d155c [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006-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
17package com.android.server.am;
18
Dianne Hackborn860755f2010-06-03 18:47:52 -070019import com.android.internal.R;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import com.android.internal.os.BatteryStatsImpl;
Dianne Hackbornde7faf62009-06-30 13:27:30 -070021import com.android.server.AttributeCache;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import com.android.server.IntentResolver;
23import com.android.server.ProcessMap;
24import com.android.server.ProcessStats;
25import com.android.server.SystemServer;
26import com.android.server.Watchdog;
27import com.android.server.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070028import com.android.server.am.ActivityStack.ActivityState;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029
Dianne Hackborndd71fc82009-12-16 19:24:32 -080030import dalvik.system.Zygote;
31
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.app.Activity;
33import android.app.ActivityManager;
34import android.app.ActivityManagerNative;
35import android.app.ActivityThread;
36import android.app.AlertDialog;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070037import android.app.AppGlobals;
Jacek Surazskif5b9c722009-05-18 12:09:59 +020038import android.app.ApplicationErrorReport;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.app.Dialog;
Dianne Hackbornb06ea702009-07-13 13:07:51 -070040import android.app.IActivityController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.app.IActivityWatcher;
42import android.app.IApplicationThread;
43import android.app.IInstrumentationWatcher;
Dianne Hackborn860755f2010-06-03 18:47:52 -070044import android.app.INotificationManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.app.IServiceConnection;
46import android.app.IThumbnailReceiver;
47import android.app.Instrumentation;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070048import android.app.Notification;
Dianne Hackborn860755f2010-06-03 18:47:52 -070049import android.app.NotificationManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050import android.app.PendingIntent;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -070051import android.app.Service;
Christopher Tate45281862010-03-05 15:46:30 -080052import android.app.backup.IBackupManager;
Jacek Surazskif5b9c722009-05-18 12:09:59 +020053import android.content.ActivityNotFoundException;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080054import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import android.content.ComponentName;
56import android.content.ContentResolver;
57import android.content.Context;
Christian Mehlmauer7664e202010-07-20 08:46:17 +020058import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.content.Intent;
60import android.content.IntentFilter;
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -070061import android.content.IIntentReceiver;
62import android.content.IIntentSender;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070063import android.content.IntentSender;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064import android.content.pm.ActivityInfo;
65import android.content.pm.ApplicationInfo;
66import android.content.pm.ConfigurationInfo;
67import android.content.pm.IPackageDataObserver;
68import android.content.pm.IPackageManager;
69import android.content.pm.InstrumentationInfo;
Dan Egnor66c40e72010-01-26 16:23:11 -080070import android.content.pm.PackageInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071import android.content.pm.PackageManager;
Dianne Hackborn2af632f2009-07-08 14:56:37 -070072import android.content.pm.PathPermission;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073import android.content.pm.ProviderInfo;
74import android.content.pm.ResolveInfo;
75import android.content.pm.ServiceInfo;
Dianne Hackborn860755f2010-06-03 18:47:52 -070076import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077import android.content.res.Configuration;
78import android.graphics.Bitmap;
Robert Greenwalt434203a2010-10-11 16:00:27 -070079import android.net.Proxy;
80import android.net.ProxyProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081import android.net.Uri;
82import android.os.Binder;
Dan Egnor60d87622009-12-16 16:32:58 -080083import android.os.Build;
Dan Egnor42471dd2010-01-07 17:25:22 -080084import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070085import android.os.Debug;
Dan Egnor60d87622009-12-16 16:32:58 -080086import android.os.DropBoxManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087import android.os.Environment;
Dan Egnor42471dd2010-01-07 17:25:22 -080088import android.os.FileObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089import android.os.FileUtils;
90import android.os.Handler;
91import android.os.IBinder;
92import android.os.IPermissionController;
93import android.os.Looper;
94import android.os.Message;
95import android.os.Parcel;
96import android.os.ParcelFileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097import android.os.Process;
Dianne Hackbornb06ea702009-07-13 13:07:51 -070098import android.os.RemoteCallbackList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099import android.os.RemoteException;
100import android.os.ServiceManager;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700101import android.os.StrictMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102import android.os.SystemClock;
103import android.os.SystemProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104import android.provider.Settings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105import android.util.Config;
106import android.util.EventLog;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800107import android.util.Slog;
Joe Onorato5d3bea62010-03-01 13:44:29 -0800108import android.util.Log;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109import android.util.PrintWriterPrinter;
110import android.util.SparseArray;
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700111import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112import android.view.Gravity;
113import android.view.LayoutInflater;
114import android.view.View;
115import android.view.WindowManager;
116import android.view.WindowManagerPolicy;
117
Dianne Hackborncef65ee2010-09-30 18:27:22 -0700118import java.io.BufferedInputStream;
119import java.io.BufferedOutputStream;
120import java.io.DataInputStream;
121import java.io.DataOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122import java.io.File;
123import java.io.FileDescriptor;
Dianne Hackborncef65ee2010-09-30 18:27:22 -0700124import java.io.FileInputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125import java.io.FileNotFoundException;
Dianne Hackborncef65ee2010-09-30 18:27:22 -0700126import java.io.FileOutputStream;
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200127import java.io.IOException;
Dan Egnora455d192010-03-12 08:52:28 -0800128import java.io.InputStreamReader;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129import java.io.PrintWriter;
130import java.lang.IllegalStateException;
131import java.lang.ref.WeakReference;
132import java.util.ArrayList;
Dianne Hackborn287952c2010-09-22 22:34:31 -0700133import java.util.Collections;
134import java.util.Comparator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135import java.util.HashMap;
136import java.util.HashSet;
137import java.util.Iterator;
138import java.util.List;
139import java.util.Locale;
140import java.util.Map;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700141import java.util.Set;
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -0700142import java.util.concurrent.atomic.AtomicBoolean;
143import java.util.concurrent.atomic.AtomicLong;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144
Dianne Hackborn0d903a82010-09-07 23:51:03 -0700145public final class ActivityManagerService extends ActivityManagerNative
146 implements Watchdog.Monitor, BatteryStatsImpl.BatteryCallback {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 static final String TAG = "ActivityManager";
148 static final boolean DEBUG = false;
149 static final boolean localLOGV = DEBUG ? Config.LOGD : Config.LOGV;
150 static final boolean DEBUG_SWITCH = localLOGV || false;
151 static final boolean DEBUG_TASKS = localLOGV || false;
152 static final boolean DEBUG_PAUSE = localLOGV || false;
153 static final boolean DEBUG_OOM_ADJ = localLOGV || false;
154 static final boolean DEBUG_TRANSITION = localLOGV || false;
155 static final boolean DEBUG_BROADCAST = localLOGV || false;
Dianne Hackborn82f3f002009-06-16 18:49:05 -0700156 static final boolean DEBUG_BROADCAST_LIGHT = DEBUG_BROADCAST || false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 static final boolean DEBUG_SERVICE = localLOGV || false;
Dianne Hackborn287952c2010-09-22 22:34:31 -0700158 static final boolean DEBUG_SERVICE_EXECUTING = localLOGV || false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 static final boolean DEBUG_VISBILITY = localLOGV || false;
160 static final boolean DEBUG_PROCESSES = localLOGV || false;
Dianne Hackborna1e989b2009-09-01 19:54:29 -0700161 static final boolean DEBUG_PROVIDER = localLOGV || false;
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -0800162 static final boolean DEBUG_URI_PERMISSION = localLOGV || false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 static final boolean DEBUG_USER_LEAVING = localLOGV || false;
The Android Open Source Project10592532009-03-18 17:39:46 -0700164 static final boolean DEBUG_RESULTS = localLOGV || false;
Christopher Tate436344a2009-09-30 16:17:37 -0700165 static final boolean DEBUG_BACKUP = localLOGV || false;
Dianne Hackborndc6b6352009-09-30 14:20:09 -0700166 static final boolean DEBUG_CONFIGURATION = localLOGV || false;
Dianne Hackborn287952c2010-09-22 22:34:31 -0700167 static final boolean DEBUG_POWER = localLOGV || false;
168 static final boolean DEBUG_POWER_QUICK = DEBUG_POWER || false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169 static final boolean VALIDATE_TOKENS = false;
170 static final boolean SHOW_ACTIVITY_START_TIME = true;
171
172 // Control over CPU and battery monitoring.
173 static final long BATTERY_STATS_TIME = 30*60*1000; // write battery stats every 30 minutes.
174 static final boolean MONITOR_CPU_USAGE = true;
175 static final long MONITOR_CPU_MIN_TIME = 5*1000; // don't sample cpu less than every 5 seconds.
176 static final long MONITOR_CPU_MAX_TIME = 0x0fffffff; // wait possibly forever for next cpu sample.
177 static final boolean MONITOR_THREAD_CPU_USAGE = false;
178
Dianne Hackborn1655be42009-05-08 14:29:01 -0700179 // The flags that are set for all calls we make to the package manager.
Dianne Hackborn11b822d2009-07-21 20:03:02 -0700180 static final int STOCK_PM_FLAGS = PackageManager.GET_SHARED_LIBRARY_FILES;
Dianne Hackborn1655be42009-05-08 14:29:01 -0700181
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 private static final String SYSTEM_SECURE = "ro.secure";
183
184 // This is the maximum number of application processes we would like
185 // to have running. Due to the asynchronous nature of things, we can
186 // temporarily go beyond this limit.
187 static final int MAX_PROCESSES = 2;
188
189 // Set to false to leave processes running indefinitely, relying on
190 // the kernel killing them as resources are required.
191 static final boolean ENFORCE_PROCESS_LIMIT = false;
192
193 // This is the maximum number of activities that we would like to have
194 // running at a given time.
195 static final int MAX_ACTIVITIES = 20;
196
197 // Maximum number of recent tasks that we can remember.
198 static final int MAX_RECENT_TASKS = 20;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700199
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700200 // Amount of time after a call to stopAppSwitches() during which we will
201 // prevent further untrusted switches from happening.
202 static final long APP_SWITCH_DELAY_TIME = 5*1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203
204 // How long we wait for a launched process to attach to the activity manager
205 // before we decide it's never going to come up for real.
206 static final int PROC_START_TIMEOUT = 10*1000;
207
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 // How long to wait after going idle before forcing apps to GC.
209 static final int GC_TIMEOUT = 5*1000;
210
Dianne Hackbornfd12af42009-08-27 00:44:33 -0700211 // The minimum amount of time between successive GC requests for a process.
212 static final int GC_MIN_INTERVAL = 60*1000;
213
Dianne Hackborn287952c2010-09-22 22:34:31 -0700214 // The rate at which we check for apps using excessive power -- 15 mins.
215 static final int POWER_CHECK_DELAY = (DEBUG_POWER_QUICK ? 2 : 15) * 60*1000;
216
217 // The minimum sample duration we will allow before deciding we have
218 // enough data on wake locks to start killing things.
219 static final int WAKE_LOCK_MIN_CHECK_DURATION = (DEBUG_POWER_QUICK ? 1 : 5) * 60*1000;
220
221 // The minimum sample duration we will allow before deciding we have
222 // enough data on CPU usage to start killing things.
223 static final int CPU_MIN_CHECK_DURATION = (DEBUG_POWER_QUICK ? 1 : 5) * 60*1000;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700224
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 // How long we allow a receiver to run before giving up on it.
226 static final int BROADCAST_TIMEOUT = 10*1000;
227
228 // How long we wait for a service to finish executing.
229 static final int SERVICE_TIMEOUT = 20*1000;
230
231 // How long a service needs to be running until restarting its process
232 // is no longer considered to be a relaunch of the service.
233 static final int SERVICE_RESTART_DURATION = 5*1000;
234
Dianne Hackbornfd12af42009-08-27 00:44:33 -0700235 // How long a service needs to be running until it will start back at
236 // SERVICE_RESTART_DURATION after being killed.
237 static final int SERVICE_RESET_RUN_DURATION = 60*1000;
238
239 // Multiplying factor to increase restart duration time by, for each time
240 // a service is killed before it has run for SERVICE_RESET_RUN_DURATION.
241 static final int SERVICE_RESTART_DURATION_FACTOR = 4;
242
243 // The minimum amount of time between restarting services that we allow.
244 // That is, when multiple services are restarting, we won't allow each
245 // to restart less than this amount of time from the last one.
246 static final int SERVICE_MIN_RESTART_TIME_BETWEEN = 10*1000;
247
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 // Maximum amount of time for there to be no activity on a service before
249 // we consider it non-essential and allow its process to go on the
250 // LRU background list.
Dianne Hackbornfd12af42009-08-27 00:44:33 -0700251 static final int MAX_SERVICE_INACTIVITY = 30*60*1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252
253 // How long we wait until we timeout on key dispatching.
254 static final int KEY_DISPATCHING_TIMEOUT = 5*1000;
255
256 // The minimum time we allow between crashes, for us to consider this
257 // application to be bad and stop and its services and reject broadcasts.
258 static final int MIN_CRASH_INTERVAL = 60*1000;
259
260 // How long we wait until we timeout on key dispatching during instrumentation.
261 static final int INSTRUMENTATION_KEY_DISPATCHING_TIMEOUT = 60*1000;
262
263 // OOM adjustments for processes in various states:
264
265 // This is a process without anything currently running in it. Definitely
266 // the first to go! Value set in system/rootdir/init.rc on startup.
267 // This value is initalized in the constructor, careful when refering to
268 // this static variable externally.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800269 static final int EMPTY_APP_ADJ;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270
271 // This is a process only hosting activities that are not visible,
272 // so it can be killed without any disruption. Value set in
273 // system/rootdir/init.rc on startup.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800274 static final int HIDDEN_APP_MAX_ADJ;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 static int HIDDEN_APP_MIN_ADJ;
276
The Android Open Source Project4df24232009-03-05 14:34:35 -0800277 // This is a process holding the home application -- we want to try
278 // avoiding killing it, even if it would normally be in the background,
279 // because the user interacts with it so much.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800280 static final int HOME_APP_ADJ;
The Android Open Source Project4df24232009-03-05 14:34:35 -0800281
Christopher Tate6fa95972009-06-05 18:43:55 -0700282 // This is a process currently hosting a backup operation. Killing it
283 // is not entirely fatal but is generally a bad idea.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800284 static final int BACKUP_APP_ADJ;
Christopher Tate6fa95972009-06-05 18:43:55 -0700285
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800286 // This is a process holding a secondary server -- killing it will not
287 // have much of an impact as far as the user is concerned. Value set in
288 // system/rootdir/init.rc on startup.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800289 static final int SECONDARY_SERVER_ADJ;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700291 // This is a process with a heavy-weight application. It is in the
292 // background, but we want to try to avoid killing it. Value set in
293 // system/rootdir/init.rc on startup.
294 static final int HEAVY_WEIGHT_APP_ADJ;
295
296 // This is a process only hosting components that are perceptible to the
297 // user, and we really want to avoid killing them, but they are not
298 // immediately visible. An example is background music playback. Value set in
299 // system/rootdir/init.rc on startup.
300 static final int PERCEPTIBLE_APP_ADJ;
301
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 // This is a process only hosting activities that are visible to the
303 // user, so we'd prefer they don't disappear. Value set in
304 // system/rootdir/init.rc on startup.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800305 static final int VISIBLE_APP_ADJ;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306
307 // This is the process running the current foreground app. We'd really
308 // rather not kill it! Value set in system/rootdir/init.rc on startup.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800309 static final int FOREGROUND_APP_ADJ;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800310
311 // This is a process running a core server, such as telephony. Definitely
312 // don't want to kill it, but doing so is not completely fatal.
313 static final int CORE_SERVER_ADJ = -12;
314
315 // The system process runs at the default adjustment.
316 static final int SYSTEM_ADJ = -16;
317
318 // Memory pages are 4K.
319 static final int PAGE_SIZE = 4*1024;
320
321 // Corresponding memory levels for above adjustments.
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800322 static final int EMPTY_APP_MEM;
323 static final int HIDDEN_APP_MEM;
324 static final int HOME_APP_MEM;
325 static final int BACKUP_APP_MEM;
326 static final int SECONDARY_SERVER_MEM;
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700327 static final int HEAVY_WEIGHT_APP_MEM;
328 static final int PERCEPTIBLE_APP_MEM;
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800329 static final int VISIBLE_APP_MEM;
330 static final int FOREGROUND_APP_MEM;
331
332 // The minimum number of hidden apps we want to be able to keep around,
333 // without empty apps being able to push them out of memory.
334 static final int MIN_HIDDEN_APPS = 2;
335
Dianne Hackborn8633e682010-04-22 16:03:41 -0700336 // The maximum number of hidden processes we will keep around before
337 // killing them; this is just a control to not let us go too crazy with
338 // keeping around processes on devices with large amounts of RAM.
339 static final int MAX_HIDDEN_APPS = 15;
340
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800341 // We put empty content processes after any hidden processes that have
Dianne Hackborn906497c2010-05-10 15:57:38 -0700342 // been idle for less than 15 seconds.
343 static final long CONTENT_APP_IDLE_OFFSET = 15*1000;
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800344
345 // We put empty content processes after any hidden processes that have
Dianne Hackborn906497c2010-05-10 15:57:38 -0700346 // been idle for less than 120 seconds.
347 static final long EMPTY_APP_IDLE_OFFSET = 120*1000;
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800348
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700349 static int getIntProp(String name, boolean allowZero) {
350 String str = SystemProperties.get(name);
351 if (str == null) {
352 throw new IllegalArgumentException("Property not defined: " + name);
353 }
354 int val = Integer.valueOf(str);
355 if (val == 0 && !allowZero) {
356 throw new IllegalArgumentException("Property must not be zero: " + name);
357 }
358 return val;
359 }
360
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800361 static {
362 // These values are set in system/rootdir/init.rc on startup.
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700363 FOREGROUND_APP_ADJ = getIntProp("ro.FOREGROUND_APP_ADJ", true);
364 VISIBLE_APP_ADJ = getIntProp("ro.VISIBLE_APP_ADJ", true);
365 PERCEPTIBLE_APP_ADJ = getIntProp("ro.PERCEPTIBLE_APP_ADJ", true);
366 HEAVY_WEIGHT_APP_ADJ = getIntProp("ro.HEAVY_WEIGHT_APP_ADJ", true);
367 SECONDARY_SERVER_ADJ = getIntProp("ro.SECONDARY_SERVER_ADJ", true);
368 BACKUP_APP_ADJ = getIntProp("ro.BACKUP_APP_ADJ", true);
369 HOME_APP_ADJ = getIntProp("ro.HOME_APP_ADJ", true);
370 HIDDEN_APP_MIN_ADJ = getIntProp("ro.HIDDEN_APP_MIN_ADJ", true);
371 EMPTY_APP_ADJ = getIntProp("ro.EMPTY_APP_ADJ", true);
372 // These days we use the last empty slot for hidden apps as well.
373 HIDDEN_APP_MAX_ADJ = EMPTY_APP_ADJ;
374 FOREGROUND_APP_MEM = getIntProp("ro.FOREGROUND_APP_MEM", false)*PAGE_SIZE;
375 VISIBLE_APP_MEM = getIntProp("ro.VISIBLE_APP_MEM", false)*PAGE_SIZE;
376 PERCEPTIBLE_APP_MEM = getIntProp("ro.PERCEPTIBLE_APP_MEM", false)*PAGE_SIZE;
377 HEAVY_WEIGHT_APP_MEM = getIntProp("ro.HEAVY_WEIGHT_APP_MEM", false)*PAGE_SIZE;
378 SECONDARY_SERVER_MEM = getIntProp("ro.SECONDARY_SERVER_MEM", false)*PAGE_SIZE;
379 BACKUP_APP_MEM = getIntProp("ro.BACKUP_APP_MEM", false)*PAGE_SIZE;
380 HOME_APP_MEM = getIntProp("ro.HOME_APP_MEM", false)*PAGE_SIZE;
381 HIDDEN_APP_MEM = getIntProp("ro.HIDDEN_APP_MEM", false)*PAGE_SIZE;
382 EMPTY_APP_MEM = getIntProp("ro.EMPTY_APP_MEM", false)*PAGE_SIZE;
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800383 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384
Dan Egnor42471dd2010-01-07 17:25:22 -0800385 static final int MY_PID = Process.myPid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386
387 static final String[] EMPTY_STRING_ARRAY = new String[0];
388
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700389 public ActivityStack mMainStack;
390
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800391 /**
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700392 * Description of a request to start a new activity, which has been held
393 * due to app switches being disabled.
394 */
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700395 static class PendingActivityLaunch {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700396 ActivityRecord r;
397 ActivityRecord sourceRecord;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700398 Uri[] grantedUriPermissions;
399 int grantedMode;
400 boolean onlyIfNeeded;
401 }
402
403 final ArrayList<PendingActivityLaunch> mPendingActivityLaunches
404 = new ArrayList<PendingActivityLaunch>();
405
406 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800407 * List of all active broadcasts that are to be executed immediately
408 * (without waiting for another broadcast to finish). Currently this only
409 * contains broadcasts to registered receivers, to avoid spinning up
410 * a bunch of processes to execute IntentReceiver components.
411 */
412 final ArrayList<BroadcastRecord> mParallelBroadcasts
413 = new ArrayList<BroadcastRecord>();
414
415 /**
416 * List of all active broadcasts that are to be executed one at a time.
417 * The object at the top of the list is the currently activity broadcasts;
418 * those after it are waiting for the top to finish..
419 */
420 final ArrayList<BroadcastRecord> mOrderedBroadcasts
421 = new ArrayList<BroadcastRecord>();
422
423 /**
Dianne Hackborn12527f92009-11-11 17:39:50 -0800424 * Historical data of past broadcasts, for debugging.
425 */
426 static final int MAX_BROADCAST_HISTORY = 100;
427 final BroadcastRecord[] mBroadcastHistory
428 = new BroadcastRecord[MAX_BROADCAST_HISTORY];
429
430 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 * Set when we current have a BROADCAST_INTENT_MSG in flight.
432 */
433 boolean mBroadcastsScheduled = false;
434
435 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 * Activity we have told the window manager to have key focus.
437 */
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700438 ActivityRecord mFocusedActivity = null;
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700439 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800440 * List of intents that were used to start the most recent tasks.
441 */
442 final ArrayList<TaskRecord> mRecentTasks
443 = new ArrayList<TaskRecord>();
444
445 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446 * All of the applications we currently have running organized by name.
447 * The keys are strings of the application package name (as
448 * returned by the package manager), and the keys are ApplicationRecord
449 * objects.
450 */
451 final ProcessMap<ProcessRecord> mProcessNames
452 = new ProcessMap<ProcessRecord>();
453
454 /**
Dianne Hackborn860755f2010-06-03 18:47:52 -0700455 * The currently running heavy-weight process, if any.
456 */
457 ProcessRecord mHeavyWeightProcess = null;
458
459 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 * The last time that various processes have crashed.
461 */
462 final ProcessMap<Long> mProcessCrashTimes = new ProcessMap<Long>();
463
464 /**
465 * Set of applications that we consider to be bad, and will reject
466 * incoming broadcasts from (which the user has no control over).
467 * Processes are added to this set when they have crashed twice within
468 * a minimum amount of time; they are removed from it when they are
469 * later restarted (hopefully due to some user action). The value is the
470 * time it was added to the list.
471 */
472 final ProcessMap<Long> mBadProcesses = new ProcessMap<Long>();
473
474 /**
475 * All of the processes we currently have running organized by pid.
476 * The keys are the pid running the application.
477 *
478 * <p>NOTE: This object is protected by its own lock, NOT the global
479 * activity manager lock!
480 */
481 final SparseArray<ProcessRecord> mPidsSelfLocked
482 = new SparseArray<ProcessRecord>();
483
484 /**
485 * All of the processes that have been forced to be foreground. The key
486 * is the pid of the caller who requested it (we hold a death
487 * link on it).
488 */
489 abstract class ForegroundToken implements IBinder.DeathRecipient {
490 int pid;
491 IBinder token;
492 }
493 final SparseArray<ForegroundToken> mForegroundProcesses
494 = new SparseArray<ForegroundToken>();
495
496 /**
497 * List of records for processes that someone had tried to start before the
498 * system was ready. We don't start them at that point, but ensure they
499 * are started by the time booting is complete.
500 */
501 final ArrayList<ProcessRecord> mProcessesOnHold
502 = new ArrayList<ProcessRecord>();
503
504 /**
505 * List of records for processes that we have started and are waiting
506 * for them to call back. This is really only needed when running in
507 * single processes mode, in which case we do not have a unique pid for
508 * each process.
509 */
510 final ArrayList<ProcessRecord> mStartingProcesses
511 = new ArrayList<ProcessRecord>();
512
513 /**
514 * List of persistent applications that are in the process
515 * of being started.
516 */
517 final ArrayList<ProcessRecord> mPersistentStartingProcesses
518 = new ArrayList<ProcessRecord>();
519
520 /**
521 * Processes that are being forcibly torn down.
522 */
523 final ArrayList<ProcessRecord> mRemovedProcesses
524 = new ArrayList<ProcessRecord>();
525
526 /**
527 * List of running applications, sorted by recent usage.
528 * The first entry in the list is the least recently used.
529 * It contains ApplicationRecord objects. This list does NOT include
530 * any persistent application records (since we never want to exit them).
531 */
Dianne Hackborndd71fc82009-12-16 19:24:32 -0800532 final ArrayList<ProcessRecord> mLruProcesses
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800533 = new ArrayList<ProcessRecord>();
534
535 /**
536 * List of processes that should gc as soon as things are idle.
537 */
538 final ArrayList<ProcessRecord> mProcessesToGc
539 = new ArrayList<ProcessRecord>();
540
541 /**
The Android Open Source Project4df24232009-03-05 14:34:35 -0800542 * This is the process holding what we currently consider to be
543 * the "home" activity.
544 */
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700545 ProcessRecord mHomeProcess;
The Android Open Source Project4df24232009-03-05 14:34:35 -0800546
547 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800548 * Set of PendingResultRecord objects that are currently active.
549 */
550 final HashSet mPendingResultRecords = new HashSet();
551
552 /**
553 * Set of IntentSenderRecord objects that are currently active.
554 */
555 final HashMap<PendingIntentRecord.Key, WeakReference<PendingIntentRecord>> mIntentSenderRecords
556 = new HashMap<PendingIntentRecord.Key, WeakReference<PendingIntentRecord>>();
557
558 /**
Brad Fitzpatrickf3d86be2010-11-23 10:31:52 -0800559 * Fingerprints (hashCode()) of stack traces that we've
Brad Fitzpatrick143666f2010-06-14 12:40:21 -0700560 * already logged DropBox entries for. Guarded by itself. If
561 * something (rogue user app) forces this over
562 * MAX_DUP_SUPPRESSED_STACKS entries, the contents are cleared.
563 */
564 private final HashSet<Integer> mAlreadyLoggedViolatedStacks = new HashSet<Integer>();
565 private static final int MAX_DUP_SUPPRESSED_STACKS = 5000;
566
567 /**
Brad Fitzpatrickad13b982010-07-14 12:35:53 -0700568 * Strict Mode background batched logging state.
569 *
570 * The string buffer is guarded by itself, and its lock is also
571 * used to determine if another batched write is already
572 * in-flight.
573 */
574 private final StringBuilder mStrictModeBuffer = new StringBuilder();
575
576 /**
Jeff Brown4d94a762010-09-23 11:33:28 -0700577 * True if we have a pending unexpired BROADCAST_TIMEOUT_MSG posted to our handler.
578 */
579 private boolean mPendingBroadcastTimeoutMessage;
580
581 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 * Intent broadcast that we have tried to start, but are
583 * waiting for its application's process to be created. We only
584 * need one (instead of a list) because we always process broadcasts
585 * one at a time, so no others can be started while waiting for this
586 * one.
587 */
588 BroadcastRecord mPendingBroadcast = null;
589
590 /**
Dianne Hackborn8891fdc2010-09-20 20:44:46 -0700591 * The receiver index that is pending, to restart the broadcast if needed.
592 */
593 int mPendingBroadcastRecvIndex;
594
595 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800596 * Keeps track of all IIntentReceivers that have been registered for
597 * broadcasts. Hash keys are the receiver IBinder, hash value is
598 * a ReceiverList.
599 */
600 final HashMap mRegisteredReceivers = new HashMap();
601
602 /**
603 * Resolver for broadcast intents to registered receivers.
604 * Holds BroadcastFilter (subclass of IntentFilter).
605 */
606 final IntentResolver<BroadcastFilter, BroadcastFilter> mReceiverResolver
607 = new IntentResolver<BroadcastFilter, BroadcastFilter>() {
608 @Override
609 protected boolean allowFilterResult(
610 BroadcastFilter filter, List<BroadcastFilter> dest) {
611 IBinder target = filter.receiverList.receiver.asBinder();
612 for (int i=dest.size()-1; i>=0; i--) {
613 if (dest.get(i).receiverList.receiver.asBinder() == target) {
614 return false;
615 }
616 }
617 return true;
618 }
619 };
620
621 /**
622 * State of all active sticky broadcasts. Keys are the action of the
623 * sticky Intent, values are an ArrayList of all broadcasted intents with
624 * that action (which should usually be one).
625 */
626 final HashMap<String, ArrayList<Intent>> mStickyBroadcasts =
627 new HashMap<String, ArrayList<Intent>>();
628
629 /**
630 * All currently running services.
631 */
632 final HashMap<ComponentName, ServiceRecord> mServices =
633 new HashMap<ComponentName, ServiceRecord>();
634
635 /**
636 * All currently running services indexed by the Intent used to start them.
637 */
638 final HashMap<Intent.FilterComparison, ServiceRecord> mServicesByIntent =
639 new HashMap<Intent.FilterComparison, ServiceRecord>();
640
641 /**
642 * All currently bound service connections. Keys are the IBinder of
643 * the client's IServiceConnection.
644 */
Dianne Hackborn43d9ac82010-08-25 15:06:25 -0700645 final HashMap<IBinder, ArrayList<ConnectionRecord>> mServiceConnections
646 = new HashMap<IBinder, ArrayList<ConnectionRecord>>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647
648 /**
649 * List of services that we have been asked to start,
650 * but haven't yet been able to. It is used to hold start requests
651 * while waiting for their corresponding application thread to get
652 * going.
653 */
654 final ArrayList<ServiceRecord> mPendingServices
655 = new ArrayList<ServiceRecord>();
656
657 /**
658 * List of services that are scheduled to restart following a crash.
659 */
660 final ArrayList<ServiceRecord> mRestartingServices
661 = new ArrayList<ServiceRecord>();
662
663 /**
664 * List of services that are in the process of being stopped.
665 */
666 final ArrayList<ServiceRecord> mStoppingServices
667 = new ArrayList<ServiceRecord>();
668
669 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700670 * Backup/restore process management
671 */
672 String mBackupAppName = null;
673 BackupRecord mBackupTarget = null;
674
675 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800676 * List of PendingThumbnailsRecord objects of clients who are still
677 * waiting to receive all of the thumbnails for a task.
678 */
679 final ArrayList mPendingThumbnails = new ArrayList();
680
681 /**
682 * List of HistoryRecord objects that have been finished and must
683 * still report back to a pending thumbnail receiver.
684 */
685 final ArrayList mCancelledThumbnails = new ArrayList();
686
687 /**
688 * All of the currently running global content providers. Keys are a
689 * string containing the provider name and values are a
690 * ContentProviderRecord object containing the data about it. Note
691 * that a single provider may be published under multiple names, so
692 * there may be multiple entries here for a single one in mProvidersByClass.
693 */
Dianne Hackborn860755f2010-06-03 18:47:52 -0700694 final HashMap<String, ContentProviderRecord> mProvidersByName
695 = new HashMap<String, ContentProviderRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800696
697 /**
698 * All of the currently running global content providers. Keys are a
699 * string containing the provider's implementation class and values are a
700 * ContentProviderRecord object containing the data about it.
701 */
Dianne Hackborn860755f2010-06-03 18:47:52 -0700702 final HashMap<String, ContentProviderRecord> mProvidersByClass
703 = new HashMap<String, ContentProviderRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800704
705 /**
706 * List of content providers who have clients waiting for them. The
707 * application is currently being launched and the provider will be
708 * removed from this list once it is published.
709 */
Dianne Hackborn860755f2010-06-03 18:47:52 -0700710 final ArrayList<ContentProviderRecord> mLaunchingProviders
711 = new ArrayList<ContentProviderRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800712
713 /**
714 * Global set of specific Uri permissions that have been granted.
715 */
716 final private SparseArray<HashMap<Uri, UriPermission>> mGrantedUriPermissions
717 = new SparseArray<HashMap<Uri, UriPermission>>();
718
719 /**
720 * Thread-local storage used to carry caller permissions over through
721 * indirect content-provider access.
722 * @see #ActivityManagerService.openContentUri()
723 */
724 private class Identity {
725 public int pid;
726 public int uid;
727
728 Identity(int _pid, int _uid) {
729 pid = _pid;
730 uid = _uid;
731 }
732 }
733 private static ThreadLocal<Identity> sCallerIdentity = new ThreadLocal<Identity>();
734
735 /**
736 * All information we have collected about the runtime performance of
737 * any user id that can impact battery performance.
738 */
739 final BatteryStatsService mBatteryStatsService;
740
741 /**
742 * information about component usage
743 */
744 final UsageStatsService mUsageStatsService;
745
746 /**
747 * Current configuration information. HistoryRecord objects are given
748 * a reference to this object to indicate which configuration they are
749 * currently running in, so this object must be kept immutable.
750 */
751 Configuration mConfiguration = new Configuration();
752
753 /**
Dianne Hackborne36d6e22010-02-17 19:46:25 -0800754 * Current sequencing integer of the configuration, for skipping old
755 * configurations.
756 */
757 int mConfigurationSeq = 0;
758
759 /**
Jack Palevichb90d28c2009-07-22 15:35:24 -0700760 * Hardware-reported OpenGLES version.
761 */
762 final int GL_ES_VERSION;
763
764 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800765 * List of initialization arguments to pass to all processes when binding applications to them.
766 * For example, references to the commonly used services.
767 */
768 HashMap<String, IBinder> mAppBindArgs;
769
770 /**
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700771 * Temporary to avoid allocations. Protected by main lock.
772 */
773 final StringBuilder mStringBuilder = new StringBuilder(256);
774
775 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776 * Used to control how we initialize the service.
777 */
778 boolean mStartRunning = false;
779 ComponentName mTopComponent;
780 String mTopAction;
781 String mTopData;
Dianne Hackborn8891fdc2010-09-20 20:44:46 -0700782 boolean mProcessesReady = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783 boolean mSystemReady = false;
784 boolean mBooting = false;
Dianne Hackborn9acc0302009-08-25 00:27:12 -0700785 boolean mWaitingUpdate = false;
786 boolean mDidUpdate = false;
Dianne Hackborn0d903a82010-09-07 23:51:03 -0700787 boolean mOnBattery = false;
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700788 boolean mLaunchWarningShown = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800789
790 Context mContext;
791
792 int mFactoryTest;
793
Dianne Hackbornd7cd29d2009-07-01 11:22:45 -0700794 boolean mCheckedForSetup;
795
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796 /**
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700797 * The time at which we will allow normal application switches again,
798 * after a call to {@link #stopAppSwitches()}.
799 */
800 long mAppSwitchesAllowedTime;
801
802 /**
803 * This is set to true after the first switch after mAppSwitchesAllowedTime
804 * is set; any switches after that will clear the time.
805 */
806 boolean mDidAppSwitch;
807
808 /**
Dianne Hackborn287952c2010-09-22 22:34:31 -0700809 * Last time (in realtime) at which we checked for power usage.
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700810 */
Dianne Hackborn287952c2010-09-22 22:34:31 -0700811 long mLastPowerCheckRealtime;
812
813 /**
814 * Last time (in uptime) at which we checked for power usage.
815 */
816 long mLastPowerCheckUptime;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700817
818 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 * Set while we are wanting to sleep, to prevent any
820 * activities from being started/resumed.
821 */
822 boolean mSleeping = false;
823
824 /**
Dianne Hackborn55280a92009-05-07 15:53:46 -0700825 * Set if we are shutting down the system, similar to sleeping.
826 */
827 boolean mShuttingDown = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800828
829 /**
830 * Task identifier that activities are currently being started
831 * in. Incremented each time a new task is created.
832 * todo: Replace this with a TokenSpace class that generates non-repeating
833 * integers that won't wrap.
834 */
835 int mCurTask = 1;
836
837 /**
838 * Current sequence id for oom_adj computation traversal.
839 */
840 int mAdjSeq = 0;
841
842 /**
Dianne Hackborn906497c2010-05-10 15:57:38 -0700843 * Current sequence id for process LRU updating.
844 */
845 int mLruSeq = 0;
846
847 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848 * Set to true if the ANDROID_SIMPLE_PROCESS_MANAGEMENT envvar
849 * is set, indicating the user wants processes started in such a way
850 * that they can use ANDROID_PROCESS_WRAPPER and know what will be
851 * running in each process (thus no pre-initialized process, etc).
852 */
853 boolean mSimpleProcessManagement = false;
854
855 /**
856 * System monitoring: number of processes that died since the last
857 * N procs were started.
858 */
859 int[] mProcDeaths = new int[20];
860
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700861 /**
862 * This is set if we had to do a delayed dexopt of an app before launching
863 * it, to increasing the ANR timeouts in that case.
864 */
865 boolean mDidDexOpt;
866
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800867 String mDebugApp = null;
868 boolean mWaitForDebugger = false;
869 boolean mDebugTransient = false;
870 String mOrigDebugApp = null;
871 boolean mOrigWaitForDebugger = false;
872 boolean mAlwaysFinishActivities = false;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700873 IActivityController mController = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800874
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700875 final RemoteCallbackList<IActivityWatcher> mWatchers
876 = new RemoteCallbackList<IActivityWatcher>();
877
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800878 /**
879 * Callback of last caller to {@link #requestPss}.
880 */
881 Runnable mRequestPssCallback;
882
883 /**
884 * Remaining processes for which we are waiting results from the last
885 * call to {@link #requestPss}.
886 */
887 final ArrayList<ProcessRecord> mRequestPssList
888 = new ArrayList<ProcessRecord>();
889
890 /**
891 * Runtime statistics collection thread. This object's lock is used to
892 * protect all related state.
893 */
894 final Thread mProcessStatsThread;
895
896 /**
897 * Used to collect process stats when showing not responding dialog.
898 * Protected by mProcessStatsThread.
899 */
900 final ProcessStats mProcessStats = new ProcessStats(
901 MONITOR_THREAD_CPU_USAGE);
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -0700902 final AtomicLong mLastCpuTime = new AtomicLong(0);
903 final AtomicBoolean mProcessStatsMutexFree = new AtomicBoolean(true);
904
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 long mLastWriteTime = 0;
906
907 /**
908 * Set to true after the system has finished booting.
909 */
910 boolean mBooted = false;
911
912 int mProcessLimit = 0;
913
914 WindowManagerService mWindowManager;
915
916 static ActivityManagerService mSelf;
917 static ActivityThread mSystemThread;
918
919 private final class AppDeathRecipient implements IBinder.DeathRecipient {
920 final ProcessRecord mApp;
921 final int mPid;
922 final IApplicationThread mAppThread;
923
924 AppDeathRecipient(ProcessRecord app, int pid,
925 IApplicationThread thread) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800926 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 TAG, "New death recipient " + this
928 + " for thread " + thread.asBinder());
929 mApp = app;
930 mPid = pid;
931 mAppThread = thread;
932 }
933
934 public void binderDied() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800935 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800936 TAG, "Death received in " + this
937 + " for thread " + mAppThread.asBinder());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800938 synchronized(ActivityManagerService.this) {
939 appDiedLocked(mApp, mPid, mAppThread);
940 }
941 }
942 }
943
944 static final int SHOW_ERROR_MSG = 1;
945 static final int SHOW_NOT_RESPONDING_MSG = 2;
946 static final int SHOW_FACTORY_ERROR_MSG = 3;
947 static final int UPDATE_CONFIGURATION_MSG = 4;
948 static final int GC_BACKGROUND_PROCESSES_MSG = 5;
949 static final int WAIT_FOR_DEBUGGER_MSG = 6;
950 static final int BROADCAST_INTENT_MSG = 7;
951 static final int BROADCAST_TIMEOUT_MSG = 8;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800952 static final int SERVICE_TIMEOUT_MSG = 12;
953 static final int UPDATE_TIME_ZONE = 13;
954 static final int SHOW_UID_ERROR_MSG = 14;
955 static final int IM_FEELING_LUCKY_MSG = 15;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800956 static final int PROC_START_TIMEOUT_MSG = 20;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700957 static final int DO_PENDING_ACTIVITY_LAUNCHES_MSG = 21;
Suchi Amalapurapud9d25762009-08-17 16:57:03 -0700958 static final int KILL_APPLICATION_MSG = 22;
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -0800959 static final int FINALIZE_PENDING_INTENT_MSG = 23;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700960 static final int POST_HEAVY_NOTIFICATION_MSG = 24;
961 static final int CANCEL_HEAVY_NOTIFICATION_MSG = 25;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700962 static final int SHOW_STRICT_MODE_VIOLATION_MSG = 26;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700963 static final int CHECK_EXCESSIVE_WAKE_LOCKS_MSG = 27;
Robert Greenwalt03595d02010-11-02 14:08:23 -0700964 static final int CLEAR_DNS_CACHE = 28;
Robert Greenwalt434203a2010-10-11 16:00:27 -0700965 static final int UPDATE_HTTP_PROXY = 29;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800966
967 AlertDialog mUidAlert;
968
969 final Handler mHandler = new Handler() {
970 //public Handler() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800971 // if (localLOGV) Slog.v(TAG, "Handler started!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800972 //}
973
974 public void handleMessage(Message msg) {
975 switch (msg.what) {
976 case SHOW_ERROR_MSG: {
977 HashMap data = (HashMap) msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800978 synchronized (ActivityManagerService.this) {
979 ProcessRecord proc = (ProcessRecord)data.get("app");
980 if (proc != null && proc.crashDialog != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800981 Slog.e(TAG, "App already has crash dialog: " + proc);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800982 return;
983 }
984 AppErrorResult res = (AppErrorResult) data.get("result");
Dianne Hackborn55280a92009-05-07 15:53:46 -0700985 if (!mSleeping && !mShuttingDown) {
Dan Egnorb7f03672009-12-09 16:22:32 -0800986 Dialog d = new AppErrorDialog(mContext, res, proc);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 d.show();
988 proc.crashDialog = d;
989 } else {
990 // The device is asleep, so just pretend that the user
991 // saw a crash dialog and hit "force quit".
992 res.set(0);
993 }
994 }
Dianne Hackborn9acc0302009-08-25 00:27:12 -0700995
996 ensureBootCompleted();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800997 } break;
998 case SHOW_NOT_RESPONDING_MSG: {
999 synchronized (ActivityManagerService.this) {
1000 HashMap data = (HashMap) msg.obj;
1001 ProcessRecord proc = (ProcessRecord)data.get("app");
1002 if (proc != null && proc.anrDialog != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001003 Slog.e(TAG, "App already has anr dialog: " + proc);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001004 return;
1005 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001006
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001007 Intent intent = new Intent("android.intent.action.ANR");
1008 if (!mProcessesReady) {
1009 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1010 }
1011 broadcastIntentLocked(null, null, intent,
The Android Open Source Project4df24232009-03-05 14:34:35 -08001012 null, null, 0, null, null, null,
1013 false, false, MY_PID, Process.SYSTEM_UID);
1014
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001015 Dialog d = new AppNotRespondingDialog(ActivityManagerService.this,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001016 mContext, proc, (ActivityRecord)data.get("activity"));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017 d.show();
1018 proc.anrDialog = d;
1019 }
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001020
Dianne Hackborn9acc0302009-08-25 00:27:12 -07001021 ensureBootCompleted();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001022 } break;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07001023 case SHOW_STRICT_MODE_VIOLATION_MSG: {
1024 HashMap<String, Object> data = (HashMap<String, Object>) msg.obj;
1025 synchronized (ActivityManagerService.this) {
1026 ProcessRecord proc = (ProcessRecord) data.get("app");
1027 if (proc == null) {
1028 Slog.e(TAG, "App not found when showing strict mode dialog.");
1029 break;
1030 }
1031 if (proc.crashDialog != null) {
1032 Slog.e(TAG, "App already has strict mode dialog: " + proc);
1033 return;
1034 }
1035 AppErrorResult res = (AppErrorResult) data.get("result");
1036 if (!mSleeping && !mShuttingDown) {
1037 Dialog d = new StrictModeViolationDialog(mContext, res, proc);
1038 d.show();
1039 proc.crashDialog = d;
1040 } else {
1041 // The device is asleep, so just pretend that the user
1042 // saw a crash dialog and hit "force quit".
1043 res.set(0);
1044 }
1045 }
1046 ensureBootCompleted();
1047 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001048 case SHOW_FACTORY_ERROR_MSG: {
1049 Dialog d = new FactoryErrorDialog(
1050 mContext, msg.getData().getCharSequence("msg"));
1051 d.show();
Dianne Hackborn9acc0302009-08-25 00:27:12 -07001052 ensureBootCompleted();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001053 } break;
1054 case UPDATE_CONFIGURATION_MSG: {
1055 final ContentResolver resolver = mContext.getContentResolver();
1056 Settings.System.putConfiguration(resolver, (Configuration)msg.obj);
1057 } break;
1058 case GC_BACKGROUND_PROCESSES_MSG: {
1059 synchronized (ActivityManagerService.this) {
1060 performAppGcsIfAppropriateLocked();
1061 }
1062 } break;
1063 case WAIT_FOR_DEBUGGER_MSG: {
1064 synchronized (ActivityManagerService.this) {
1065 ProcessRecord app = (ProcessRecord)msg.obj;
1066 if (msg.arg1 != 0) {
1067 if (!app.waitedForDebugger) {
1068 Dialog d = new AppWaitingForDebuggerDialog(
1069 ActivityManagerService.this,
1070 mContext, app);
1071 app.waitDialog = d;
1072 app.waitedForDebugger = true;
1073 d.show();
1074 }
1075 } else {
1076 if (app.waitDialog != null) {
1077 app.waitDialog.dismiss();
1078 app.waitDialog = null;
1079 }
1080 }
1081 }
1082 } break;
1083 case BROADCAST_INTENT_MSG: {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001084 if (DEBUG_BROADCAST) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001085 TAG, "Received BROADCAST_INTENT_MSG");
1086 processNextBroadcast(true);
1087 } break;
1088 case BROADCAST_TIMEOUT_MSG: {
Jeff Brown4d94a762010-09-23 11:33:28 -07001089 synchronized (ActivityManagerService.this) {
1090 broadcastTimeoutLocked(true);
Jeff Hamiltonacf84742010-05-25 22:10:18 -05001091 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001092 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 case SERVICE_TIMEOUT_MSG: {
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -07001094 if (mDidDexOpt) {
1095 mDidDexOpt = false;
1096 Message nmsg = mHandler.obtainMessage(SERVICE_TIMEOUT_MSG);
1097 nmsg.obj = msg.obj;
1098 mHandler.sendMessageDelayed(nmsg, SERVICE_TIMEOUT);
1099 return;
1100 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001101 serviceTimeout((ProcessRecord)msg.obj);
1102 } break;
1103 case UPDATE_TIME_ZONE: {
1104 synchronized (ActivityManagerService.this) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -08001105 for (int i = mLruProcesses.size() - 1 ; i >= 0 ; i--) {
1106 ProcessRecord r = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001107 if (r.thread != null) {
1108 try {
1109 r.thread.updateTimeZone();
1110 } catch (RemoteException ex) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001111 Slog.w(TAG, "Failed to update time zone for: " + r.info.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112 }
1113 }
1114 }
1115 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -07001116 } break;
Robert Greenwalt03595d02010-11-02 14:08:23 -07001117 case CLEAR_DNS_CACHE: {
1118 synchronized (ActivityManagerService.this) {
1119 for (int i = mLruProcesses.size() - 1 ; i >= 0 ; i--) {
1120 ProcessRecord r = mLruProcesses.get(i);
1121 if (r.thread != null) {
1122 try {
1123 r.thread.clearDnsCache();
1124 } catch (RemoteException ex) {
1125 Slog.w(TAG, "Failed to clear dns cache for: " + r.info.processName);
1126 }
1127 }
1128 }
1129 }
1130 } break;
Robert Greenwalt434203a2010-10-11 16:00:27 -07001131 case UPDATE_HTTP_PROXY: {
1132 ProxyProperties proxy = (ProxyProperties)msg.obj;
1133 String host = "";
1134 String port = "";
1135 String exclList = "";
1136 if (proxy != null) {
1137 host = proxy.getHost();
1138 port = Integer.toString(proxy.getPort());
1139 exclList = proxy.getExclusionList();
1140 }
1141 synchronized (ActivityManagerService.this) {
1142 for (int i = mLruProcesses.size() - 1 ; i >= 0 ; i--) {
1143 ProcessRecord r = mLruProcesses.get(i);
1144 if (r.thread != null) {
1145 try {
1146 r.thread.setHttpProxy(host, port, exclList);
1147 } catch (RemoteException ex) {
1148 Slog.w(TAG, "Failed to update http proxy for: " +
1149 r.info.processName);
1150 }
1151 }
1152 }
1153 }
1154 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001155 case SHOW_UID_ERROR_MSG: {
1156 // XXX This is a temporary dialog, no need to localize.
1157 AlertDialog d = new BaseErrorDialog(mContext);
1158 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
1159 d.setCancelable(false);
1160 d.setTitle("System UIDs Inconsistent");
1161 d.setMessage("UIDs on the system are inconsistent, you need to wipe your data partition or your device will be unstable.");
Christian Mehlmauer7664e202010-07-20 08:46:17 +02001162 d.setButton(DialogInterface.BUTTON_POSITIVE, "I'm Feeling Lucky",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 mHandler.obtainMessage(IM_FEELING_LUCKY_MSG));
1164 mUidAlert = d;
1165 d.show();
1166 } break;
1167 case IM_FEELING_LUCKY_MSG: {
1168 if (mUidAlert != null) {
1169 mUidAlert.dismiss();
1170 mUidAlert = null;
1171 }
1172 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001173 case PROC_START_TIMEOUT_MSG: {
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -07001174 if (mDidDexOpt) {
1175 mDidDexOpt = false;
1176 Message nmsg = mHandler.obtainMessage(PROC_START_TIMEOUT_MSG);
1177 nmsg.obj = msg.obj;
1178 mHandler.sendMessageDelayed(nmsg, PROC_START_TIMEOUT);
1179 return;
1180 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001181 ProcessRecord app = (ProcessRecord)msg.obj;
1182 synchronized (ActivityManagerService.this) {
1183 processStartTimedOutLocked(app);
1184 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -07001185 } break;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001186 case DO_PENDING_ACTIVITY_LAUNCHES_MSG: {
1187 synchronized (ActivityManagerService.this) {
1188 doPendingActivityLaunchesLocked(true);
1189 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -07001190 } break;
Suchi Amalapurapud9d25762009-08-17 16:57:03 -07001191 case KILL_APPLICATION_MSG: {
1192 synchronized (ActivityManagerService.this) {
1193 int uid = msg.arg1;
1194 boolean restart = (msg.arg2 == 1);
1195 String pkg = (String) msg.obj;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001196 forceStopPackageLocked(pkg, uid, restart, false, true);
Suchi Amalapurapud9d25762009-08-17 16:57:03 -07001197 }
1198 } break;
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08001199 case FINALIZE_PENDING_INTENT_MSG: {
1200 ((PendingIntentRecord)msg.obj).completeFinalize();
1201 } break;
Dianne Hackborn860755f2010-06-03 18:47:52 -07001202 case POST_HEAVY_NOTIFICATION_MSG: {
1203 INotificationManager inm = NotificationManager.getService();
1204 if (inm == null) {
1205 return;
1206 }
1207
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001208 ActivityRecord root = (ActivityRecord)msg.obj;
Dianne Hackborn860755f2010-06-03 18:47:52 -07001209 ProcessRecord process = root.app;
1210 if (process == null) {
1211 return;
1212 }
1213
1214 try {
1215 Context context = mContext.createPackageContext(process.info.packageName, 0);
1216 String text = mContext.getString(R.string.heavy_weight_notification,
1217 context.getApplicationInfo().loadLabel(context.getPackageManager()));
1218 Notification notification = new Notification();
1219 notification.icon = com.android.internal.R.drawable.stat_sys_adb; //context.getApplicationInfo().icon;
1220 notification.when = 0;
1221 notification.flags = Notification.FLAG_ONGOING_EVENT;
1222 notification.tickerText = text;
1223 notification.defaults = 0; // please be quiet
1224 notification.sound = null;
1225 notification.vibrate = null;
1226 notification.setLatestEventInfo(context, text,
1227 mContext.getText(R.string.heavy_weight_notification_detail),
1228 PendingIntent.getActivity(mContext, 0, root.intent,
1229 PendingIntent.FLAG_CANCEL_CURRENT));
1230
1231 try {
1232 int[] outId = new int[1];
1233 inm.enqueueNotification("android", R.string.heavy_weight_notification,
1234 notification, outId);
1235 } catch (RuntimeException e) {
1236 Slog.w(ActivityManagerService.TAG,
1237 "Error showing notification for heavy-weight app", e);
1238 } catch (RemoteException e) {
1239 }
1240 } catch (NameNotFoundException e) {
Dianne Hackbornb424b632010-08-18 15:59:05 -07001241 Slog.w(TAG, "Unable to create context for heavy notification", e);
Dianne Hackborn860755f2010-06-03 18:47:52 -07001242 }
1243 } break;
1244 case CANCEL_HEAVY_NOTIFICATION_MSG: {
1245 INotificationManager inm = NotificationManager.getService();
1246 if (inm == null) {
1247 return;
1248 }
1249 try {
1250 inm.cancelNotification("android",
1251 R.string.heavy_weight_notification);
1252 } catch (RuntimeException e) {
1253 Slog.w(ActivityManagerService.TAG,
1254 "Error canceling notification for service", e);
1255 } catch (RemoteException e) {
1256 }
1257 } break;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001258 case CHECK_EXCESSIVE_WAKE_LOCKS_MSG: {
1259 synchronized (ActivityManagerService.this) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07001260 checkExcessivePowerUsageLocked(true);
Dianne Hackborn1ebccf52010-08-15 13:04:34 -07001261 removeMessages(CHECK_EXCESSIVE_WAKE_LOCKS_MSG);
Dianne Hackborn287952c2010-09-22 22:34:31 -07001262 Message nmsg = obtainMessage(CHECK_EXCESSIVE_WAKE_LOCKS_MSG);
1263 sendMessageDelayed(nmsg, POWER_CHECK_DELAY);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001264 }
1265 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001266 }
1267 }
1268 };
1269
1270 public static void setSystemProcess() {
1271 try {
1272 ActivityManagerService m = mSelf;
1273
1274 ServiceManager.addService("activity", m);
1275 ServiceManager.addService("meminfo", new MemBinder(m));
1276 if (MONITOR_CPU_USAGE) {
1277 ServiceManager.addService("cpuinfo", new CpuBinder(m));
1278 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001279 ServiceManager.addService("permission", new PermissionController(m));
1280
1281 ApplicationInfo info =
1282 mSelf.mContext.getPackageManager().getApplicationInfo(
Dianne Hackborn1655be42009-05-08 14:29:01 -07001283 "android", STOCK_PM_FLAGS);
Mike Cleron432b7132009-09-24 15:28:29 -07001284 mSystemThread.installSystemApplicationInfo(info);
1285
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001286 synchronized (mSelf) {
1287 ProcessRecord app = mSelf.newProcessRecordLocked(
1288 mSystemThread.getApplicationThread(), info,
1289 info.processName);
1290 app.persistent = true;
Dan Egnor42471dd2010-01-07 17:25:22 -08001291 app.pid = MY_PID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001292 app.maxAdj = SYSTEM_ADJ;
1293 mSelf.mProcessNames.put(app.processName, app.info.uid, app);
1294 synchronized (mSelf.mPidsSelfLocked) {
1295 mSelf.mPidsSelfLocked.put(app.pid, app);
1296 }
Dianne Hackborndd71fc82009-12-16 19:24:32 -08001297 mSelf.updateLruProcessLocked(app, true, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001298 }
1299 } catch (PackageManager.NameNotFoundException e) {
1300 throw new RuntimeException(
1301 "Unable to find android system package", e);
1302 }
1303 }
1304
1305 public void setWindowManager(WindowManagerService wm) {
1306 mWindowManager = wm;
1307 }
1308
1309 public static final Context main(int factoryTest) {
1310 AThread thr = new AThread();
1311 thr.start();
1312
1313 synchronized (thr) {
1314 while (thr.mService == null) {
1315 try {
1316 thr.wait();
1317 } catch (InterruptedException e) {
1318 }
1319 }
1320 }
1321
1322 ActivityManagerService m = thr.mService;
1323 mSelf = m;
1324 ActivityThread at = ActivityThread.systemMain();
1325 mSystemThread = at;
1326 Context context = at.getSystemContext();
Dianne Hackborn247fe742011-01-08 17:25:57 -08001327 context.setTheme(android.R.style.Theme_Holo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001328 m.mContext = context;
1329 m.mFactoryTest = factoryTest;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001330 m.mMainStack = new ActivityStack(m, context, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001331
1332 m.mBatteryStatsService.publish(context);
1333 m.mUsageStatsService.publish(context);
1334
1335 synchronized (thr) {
1336 thr.mReady = true;
1337 thr.notifyAll();
1338 }
1339
1340 m.startRunning(null, null, null, null);
1341
1342 return context;
1343 }
1344
1345 public static ActivityManagerService self() {
1346 return mSelf;
1347 }
1348
1349 static class AThread extends Thread {
1350 ActivityManagerService mService;
1351 boolean mReady = false;
1352
1353 public AThread() {
1354 super("ActivityManager");
1355 }
1356
1357 public void run() {
1358 Looper.prepare();
1359
1360 android.os.Process.setThreadPriority(
1361 android.os.Process.THREAD_PRIORITY_FOREGROUND);
Christopher Tate160edb32010-06-30 17:46:30 -07001362 android.os.Process.setCanSelfBackground(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363
1364 ActivityManagerService m = new ActivityManagerService();
1365
1366 synchronized (this) {
1367 mService = m;
1368 notifyAll();
1369 }
1370
1371 synchronized (this) {
1372 while (!mReady) {
1373 try {
1374 wait();
1375 } catch (InterruptedException e) {
1376 }
1377 }
1378 }
1379
Brad Fitzpatrickec062f62010-11-03 09:56:54 -07001380 // For debug builds, log event loop stalls to dropbox for analysis.
1381 if (StrictMode.conditionallyEnableDebugLogging()) {
1382 Slog.i(TAG, "Enabled StrictMode logging for AThread's Looper");
1383 }
1384
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001385 Looper.loop();
1386 }
1387 }
1388
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001389 static class MemBinder extends Binder {
1390 ActivityManagerService mActivityManagerService;
1391 MemBinder(ActivityManagerService activityManagerService) {
1392 mActivityManagerService = activityManagerService;
1393 }
1394
1395 @Override
1396 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1397 ActivityManagerService service = mActivityManagerService;
1398 ArrayList<ProcessRecord> procs;
1399 synchronized (mActivityManagerService) {
1400 if (args != null && args.length > 0
1401 && args[0].charAt(0) != '-') {
1402 procs = new ArrayList<ProcessRecord>();
1403 int pid = -1;
1404 try {
1405 pid = Integer.parseInt(args[0]);
1406 } catch (NumberFormatException e) {
1407
1408 }
Dianne Hackborndd71fc82009-12-16 19:24:32 -08001409 for (int i=service.mLruProcesses.size()-1; i>=0; i--) {
1410 ProcessRecord proc = service.mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001411 if (proc.pid == pid) {
1412 procs.add(proc);
1413 } else if (proc.processName.equals(args[0])) {
1414 procs.add(proc);
1415 }
1416 }
1417 if (procs.size() <= 0) {
1418 pw.println("No process found for: " + args[0]);
1419 return;
1420 }
1421 } else {
Dianne Hackborn472ad872010-04-07 17:31:48 -07001422 procs = new ArrayList<ProcessRecord>(service.mLruProcesses);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001423 }
1424 }
1425 dumpApplicationMemoryUsage(fd, pw, procs, " ", args);
1426 }
1427 }
1428
1429 static class CpuBinder extends Binder {
1430 ActivityManagerService mActivityManagerService;
1431 CpuBinder(ActivityManagerService activityManagerService) {
1432 mActivityManagerService = activityManagerService;
1433 }
1434
1435 @Override
1436 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1437 synchronized (mActivityManagerService.mProcessStatsThread) {
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07001438 pw.print(mActivityManagerService.mProcessStats.printCurrentLoad());
1439 pw.print(mActivityManagerService.mProcessStats.printCurrentState(
1440 SystemClock.uptimeMillis()));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001441 }
1442 }
1443 }
1444
1445 private ActivityManagerService() {
1446 String v = System.getenv("ANDROID_SIMPLE_PROCESS_MANAGEMENT");
1447 if (v != null && Integer.getInteger(v) != 0) {
1448 mSimpleProcessManagement = true;
1449 }
1450 v = System.getenv("ANDROID_DEBUG_APP");
1451 if (v != null) {
1452 mSimpleProcessManagement = true;
1453 }
1454
Joe Onorato8a9b2202010-02-26 18:56:32 -08001455 Slog.i(TAG, "Memory class: " + ActivityManager.staticGetMemoryClass());
Dianne Hackborn2c6c5e62009-10-08 17:55:49 -07001456
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001457 File dataDir = Environment.getDataDirectory();
1458 File systemDir = new File(dataDir, "system");
1459 systemDir.mkdirs();
1460 mBatteryStatsService = new BatteryStatsService(new File(
1461 systemDir, "batterystats.bin").toString());
1462 mBatteryStatsService.getActiveStatistics().readLocked();
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001463 mBatteryStatsService.getActiveStatistics().writeAsyncLocked();
Dianne Hackborn287952c2010-09-22 22:34:31 -07001464 mOnBattery = DEBUG_POWER ? true
1465 : mBatteryStatsService.getActiveStatistics().getIsOnBattery();
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001466 mBatteryStatsService.getActiveStatistics().setCallback(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001467
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001468 mUsageStatsService = new UsageStatsService(new File(
Dianne Hackborn6447ca32009-04-07 19:50:08 -07001469 systemDir, "usagestats").toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001470
Jack Palevichb90d28c2009-07-22 15:35:24 -07001471 GL_ES_VERSION = SystemProperties.getInt("ro.opengles.version",
1472 ConfigurationInfo.GL_ES_VERSION_UNDEFINED);
1473
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001474 mConfiguration.setToDefaults();
1475 mConfiguration.locale = Locale.getDefault();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001476 mProcessStats.init();
1477
1478 // Add ourself to the Watchdog monitors.
1479 Watchdog.getInstance().addMonitor(this);
1480
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001481 mProcessStatsThread = new Thread("ProcessStats") {
1482 public void run() {
1483 while (true) {
1484 try {
1485 try {
1486 synchronized(this) {
1487 final long now = SystemClock.uptimeMillis();
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -07001488 long nextCpuDelay = (mLastCpuTime.get()+MONITOR_CPU_MAX_TIME)-now;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001489 long nextWriteDelay = (mLastWriteTime+BATTERY_STATS_TIME)-now;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001490 //Slog.i(TAG, "Cpu delay=" + nextCpuDelay
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001491 // + ", write delay=" + nextWriteDelay);
1492 if (nextWriteDelay < nextCpuDelay) {
1493 nextCpuDelay = nextWriteDelay;
1494 }
1495 if (nextCpuDelay > 0) {
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -07001496 mProcessStatsMutexFree.set(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001497 this.wait(nextCpuDelay);
1498 }
1499 }
1500 } catch (InterruptedException e) {
1501 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001502 updateCpuStatsNow();
1503 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001504 Slog.e(TAG, "Unexpected exception collecting process stats", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001505 }
1506 }
1507 }
1508 };
1509 mProcessStatsThread.start();
1510 }
1511
1512 @Override
1513 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
1514 throws RemoteException {
1515 try {
1516 return super.onTransact(code, data, reply, flags);
1517 } catch (RuntimeException e) {
1518 // The activity manager only throws security exceptions, so let's
1519 // log all others.
1520 if (!(e instanceof SecurityException)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001521 Slog.e(TAG, "Activity Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001522 }
1523 throw e;
1524 }
1525 }
1526
1527 void updateCpuStats() {
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -07001528 final long now = SystemClock.uptimeMillis();
1529 if (mLastCpuTime.get() >= now - MONITOR_CPU_MIN_TIME) {
1530 return;
1531 }
1532 if (mProcessStatsMutexFree.compareAndSet(true, false)) {
1533 synchronized (mProcessStatsThread) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001534 mProcessStatsThread.notify();
1535 }
1536 }
1537 }
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -07001538
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001539 void updateCpuStatsNow() {
1540 synchronized (mProcessStatsThread) {
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -07001541 mProcessStatsMutexFree.set(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001542 final long now = SystemClock.uptimeMillis();
1543 boolean haveNewCpuStats = false;
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001544
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001545 if (MONITOR_CPU_USAGE &&
Brad Fitzpatrick01fad4a2010-04-19 10:47:40 -07001546 mLastCpuTime.get() < (now-MONITOR_CPU_MIN_TIME)) {
1547 mLastCpuTime.set(now);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001548 haveNewCpuStats = true;
1549 mProcessStats.update();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001550 //Slog.i(TAG, mProcessStats.printCurrentState());
1551 //Slog.i(TAG, "Total CPU usage: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 // + mProcessStats.getTotalCpuPercent() + "%");
1553
Joe Onorato8a9b2202010-02-26 18:56:32 -08001554 // Slog the cpu usage if the property is set.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001555 if ("true".equals(SystemProperties.get("events.cpu"))) {
1556 int user = mProcessStats.getLastUserTime();
1557 int system = mProcessStats.getLastSystemTime();
1558 int iowait = mProcessStats.getLastIoWaitTime();
1559 int irq = mProcessStats.getLastIrqTime();
1560 int softIrq = mProcessStats.getLastSoftIrqTime();
1561 int idle = mProcessStats.getLastIdleTime();
1562
1563 int total = user + system + iowait + irq + softIrq + idle;
1564 if (total == 0) total = 1;
1565
Doug Zongker2bec3d42009-12-04 12:52:44 -08001566 EventLog.writeEvent(EventLogTags.CPU,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001567 ((user+system+iowait+irq+softIrq) * 100) / total,
1568 (user * 100) / total,
1569 (system * 100) / total,
1570 (iowait * 100) / total,
1571 (irq * 100) / total,
1572 (softIrq * 100) / total);
1573 }
1574 }
1575
Amith Yamasanie43530a2009-08-21 13:11:37 -07001576 long[] cpuSpeedTimes = mProcessStats.getLastCpuSpeedTimes();
Amith Yamasani819f9282009-06-24 23:18:15 -07001577 final BatteryStatsImpl bstats = mBatteryStatsService.getActiveStatistics();
Amith Yamasani32dbefd2009-06-19 09:21:17 -07001578 synchronized(bstats) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001579 synchronized(mPidsSelfLocked) {
1580 if (haveNewCpuStats) {
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001581 if (mOnBattery) {
1582 int perc = bstats.startAddingCpuLocked();
1583 int totalUTime = 0;
1584 int totalSTime = 0;
Dianne Hackborn287952c2010-09-22 22:34:31 -07001585 final int N = mProcessStats.countStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001586 for (int i=0; i<N; i++) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07001587 ProcessStats.Stats st = mProcessStats.getStats(i);
1588 if (!st.working) {
1589 continue;
1590 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591 ProcessRecord pr = mPidsSelfLocked.get(st.pid);
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001592 int otherUTime = (st.rel_utime*perc)/100;
1593 int otherSTime = (st.rel_stime*perc)/100;
1594 totalUTime += otherUTime;
1595 totalSTime += otherSTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001596 if (pr != null) {
1597 BatteryStatsImpl.Uid.Proc ps = pr.batteryStats;
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001598 ps.addCpuTimeLocked(st.rel_utime-otherUTime,
1599 st.rel_stime-otherSTime);
Amith Yamasanie43530a2009-08-21 13:11:37 -07001600 ps.addSpeedStepTimes(cpuSpeedTimes);
Dianne Hackborn287952c2010-09-22 22:34:31 -07001601 pr.curCpuTime += (st.rel_utime+st.rel_stime) * 10;
Amith Yamasani32dbefd2009-06-19 09:21:17 -07001602 } else {
1603 BatteryStatsImpl.Uid.Proc ps =
Amith Yamasani819f9282009-06-24 23:18:15 -07001604 bstats.getProcessStatsLocked(st.name, st.pid);
Amith Yamasani32dbefd2009-06-19 09:21:17 -07001605 if (ps != null) {
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001606 ps.addCpuTimeLocked(st.rel_utime-otherUTime,
1607 st.rel_stime-otherSTime);
Amith Yamasanie43530a2009-08-21 13:11:37 -07001608 ps.addSpeedStepTimes(cpuSpeedTimes);
Amith Yamasani32dbefd2009-06-19 09:21:17 -07001609 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001610 }
1611 }
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001612 bstats.finishAddingCpuLocked(perc, totalUTime,
1613 totalSTime, cpuSpeedTimes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001614 }
1615 }
1616 }
Amith Yamasani32dbefd2009-06-19 09:21:17 -07001617
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001618 if (mLastWriteTime < (now-BATTERY_STATS_TIME)) {
1619 mLastWriteTime = now;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001620 mBatteryStatsService.getActiveStatistics().writeAsyncLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001621 }
1622 }
1623 }
1624 }
1625
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001626 @Override
1627 public void batteryNeedsCpuUpdate() {
1628 updateCpuStatsNow();
1629 }
1630
1631 @Override
1632 public void batteryPowerChanged(boolean onBattery) {
1633 // When plugging in, update the CPU stats first before changing
1634 // the plug state.
1635 updateCpuStatsNow();
1636 synchronized (this) {
1637 synchronized(mPidsSelfLocked) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07001638 mOnBattery = DEBUG_POWER ? true : onBattery;
Dianne Hackborn0d903a82010-09-07 23:51:03 -07001639 }
1640 }
1641 }
1642
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001643 /**
1644 * Initialize the application bind args. These are passed to each
1645 * process when the bindApplication() IPC is sent to the process. They're
1646 * lazily setup to make sure the services are running when they're asked for.
1647 */
1648 private HashMap<String, IBinder> getCommonServicesLocked() {
1649 if (mAppBindArgs == null) {
1650 mAppBindArgs = new HashMap<String, IBinder>();
1651
1652 // Setup the application init args
1653 mAppBindArgs.put("package", ServiceManager.getService("package"));
1654 mAppBindArgs.put("window", ServiceManager.getService("window"));
1655 mAppBindArgs.put(Context.ALARM_SERVICE,
1656 ServiceManager.getService(Context.ALARM_SERVICE));
1657 }
1658 return mAppBindArgs;
1659 }
1660
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001661 final void setFocusedActivityLocked(ActivityRecord r) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001662 if (mFocusedActivity != r) {
1663 mFocusedActivity = r;
1664 mWindowManager.setFocusedApp(r, true);
1665 }
1666 }
1667
Dianne Hackborn906497c2010-05-10 15:57:38 -07001668 private final void updateLruProcessInternalLocked(ProcessRecord app,
1669 boolean oomAdj, boolean updateActivityTime, int bestPos) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001670 // put it on the LRU to keep track of when it should be exited.
Dianne Hackborndd71fc82009-12-16 19:24:32 -08001671 int lrui = mLruProcesses.indexOf(app);
1672 if (lrui >= 0) mLruProcesses.remove(lrui);
1673
1674 int i = mLruProcesses.size()-1;
1675 int skipTop = 0;
1676
Dianne Hackborn906497c2010-05-10 15:57:38 -07001677 app.lruSeq = mLruSeq;
1678
Dianne Hackborndd71fc82009-12-16 19:24:32 -08001679 // compute the new weight for this process.
1680 if (updateActivityTime) {
1681 app.lastActivityTime = SystemClock.uptimeMillis();
1682 }
1683 if (app.activities.size() > 0) {
1684 // If this process has activities, we more strongly want to keep
1685 // it around.
1686 app.lruWeight = app.lastActivityTime;
1687 } else if (app.pubProviders.size() > 0) {
1688 // If this process contains content providers, we want to keep
1689 // it a little more strongly.
1690 app.lruWeight = app.lastActivityTime - CONTENT_APP_IDLE_OFFSET;
1691 // Also don't let it kick out the first few "real" hidden processes.
1692 skipTop = MIN_HIDDEN_APPS;
1693 } else {
1694 // If this process doesn't have activities, we less strongly
1695 // want to keep it around, and generally want to avoid getting
1696 // in front of any very recently used activities.
1697 app.lruWeight = app.lastActivityTime - EMPTY_APP_IDLE_OFFSET;
1698 // Also don't let it kick out the first few "real" hidden processes.
1699 skipTop = MIN_HIDDEN_APPS;
1700 }
Dianne Hackborn906497c2010-05-10 15:57:38 -07001701
Dianne Hackborndd71fc82009-12-16 19:24:32 -08001702 while (i >= 0) {
1703 ProcessRecord p = mLruProcesses.get(i);
1704 // If this app shouldn't be in front of the first N background
1705 // apps, then skip over that many that are currently hidden.
1706 if (skipTop > 0 && p.setAdj >= HIDDEN_APP_MIN_ADJ) {
1707 skipTop--;
1708 }
Dianne Hackborn906497c2010-05-10 15:57:38 -07001709 if (p.lruWeight <= app.lruWeight || i < bestPos) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -08001710 mLruProcesses.add(i+1, app);
1711 break;
1712 }
1713 i--;
1714 }
1715 if (i < 0) {
1716 mLruProcesses.add(0, app);
1717 }
1718
Dianne Hackborn906497c2010-05-10 15:57:38 -07001719 // If the app is currently using a content provider or service,
1720 // bump those processes as well.
1721 if (app.connections.size() > 0) {
1722 for (ConnectionRecord cr : app.connections) {
1723 if (cr.binding != null && cr.binding.service != null
1724 && cr.binding.service.app != null
1725 && cr.binding.service.app.lruSeq != mLruSeq) {
1726 updateLruProcessInternalLocked(cr.binding.service.app, oomAdj,
1727 updateActivityTime, i+1);
1728 }
1729 }
1730 }
1731 if (app.conProviders.size() > 0) {
1732 for (ContentProviderRecord cpr : app.conProviders.keySet()) {
1733 if (cpr.app != null && cpr.app.lruSeq != mLruSeq) {
1734 updateLruProcessInternalLocked(cpr.app, oomAdj,
1735 updateActivityTime, i+1);
1736 }
1737 }
1738 }
1739
Joe Onorato8a9b2202010-02-26 18:56:32 -08001740 //Slog.i(TAG, "Putting proc to front: " + app.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001741 if (oomAdj) {
1742 updateOomAdjLocked();
1743 }
1744 }
1745
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001746 final void updateLruProcessLocked(ProcessRecord app,
Dianne Hackborn906497c2010-05-10 15:57:38 -07001747 boolean oomAdj, boolean updateActivityTime) {
1748 mLruSeq++;
1749 updateLruProcessInternalLocked(app, oomAdj, updateActivityTime, 0);
1750 }
1751
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001752 final ProcessRecord getProcessRecordLocked(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001753 String processName, int uid) {
1754 if (uid == Process.SYSTEM_UID) {
1755 // The system gets to run in any process. If there are multiple
1756 // processes with the same uid, just pick the first (this
1757 // should never happen).
1758 SparseArray<ProcessRecord> procs = mProcessNames.getMap().get(
1759 processName);
1760 return procs != null ? procs.valueAt(0) : null;
1761 }
1762 ProcessRecord proc = mProcessNames.get(processName, uid);
1763 return proc;
1764 }
1765
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001766 void ensurePackageDexOpt(String packageName) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001767 IPackageManager pm = AppGlobals.getPackageManager();
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -07001768 try {
1769 if (pm.performDexOpt(packageName)) {
1770 mDidDexOpt = true;
1771 }
1772 } catch (RemoteException e) {
1773 }
1774 }
1775
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001776 boolean isNextTransitionForward() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001777 int transit = mWindowManager.getPendingAppTransition();
1778 return transit == WindowManagerPolicy.TRANSIT_ACTIVITY_OPEN
1779 || transit == WindowManagerPolicy.TRANSIT_TASK_OPEN
1780 || transit == WindowManagerPolicy.TRANSIT_TASK_TO_FRONT;
1781 }
1782
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001783 final ProcessRecord startProcessLocked(String processName,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001784 ApplicationInfo info, boolean knownToBeDead, int intentFlags,
Dianne Hackborn9acc0302009-08-25 00:27:12 -07001785 String hostingType, ComponentName hostingName, boolean allowWhileBooting) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001786 ProcessRecord app = getProcessRecordLocked(processName, info.uid);
1787 // We don't have to do anything more if:
1788 // (1) There is an existing application record; and
1789 // (2) The caller doesn't think it is dead, OR there is no thread
1790 // object attached to it so we know it couldn't have crashed; and
1791 // (3) There is a pid assigned to it, so it is either starting or
1792 // already running.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001793 if (DEBUG_PROCESSES) Slog.v(TAG, "startProcess: name=" + processName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001794 + " app=" + app + " knownToBeDead=" + knownToBeDead
1795 + " thread=" + (app != null ? app.thread : null)
1796 + " pid=" + (app != null ? app.pid : -1));
Magnus Edlund7bb25812010-02-24 15:45:06 +01001797 if (app != null && app.pid > 0) {
1798 if (!knownToBeDead || app.thread == null) {
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08001799 // We already have the app running, or are waiting for it to
1800 // come up (we have a pid but not yet its thread), so keep it.
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001801 if (DEBUG_PROCESSES) Slog.v(TAG, "App already running: " + app);
Magnus Edlund7bb25812010-02-24 15:45:06 +01001802 return app;
1803 } else {
1804 // An application record is attached to a previous process,
1805 // clean it up now.
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001806 if (DEBUG_PROCESSES) Slog.v(TAG, "App died: " + app);
Magnus Edlund7bb25812010-02-24 15:45:06 +01001807 handleAppDiedLocked(app, true);
1808 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001809 }
Magnus Edlund7bb25812010-02-24 15:45:06 +01001810
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001811 String hostingNameStr = hostingName != null
1812 ? hostingName.flattenToShortString() : null;
1813
1814 if ((intentFlags&Intent.FLAG_FROM_BACKGROUND) != 0) {
1815 // If we are in the background, then check to see if this process
1816 // is bad. If so, we will just silently fail.
1817 if (mBadProcesses.get(info.processName, info.uid) != null) {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001818 if (DEBUG_PROCESSES) Slog.v(TAG, "Bad process: " + info.uid
1819 + "/" + info.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820 return null;
1821 }
1822 } else {
1823 // When the user is explicitly starting a process, then clear its
1824 // crash count so that we won't make it bad until they see at
1825 // least one crash dialog again, and make the process good again
1826 // if it had been bad.
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001827 if (DEBUG_PROCESSES) Slog.v(TAG, "Clearing bad process: " + info.uid
1828 + "/" + info.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001829 mProcessCrashTimes.remove(info.processName, info.uid);
1830 if (mBadProcesses.get(info.processName, info.uid) != null) {
Doug Zongker2bec3d42009-12-04 12:52:44 -08001831 EventLog.writeEvent(EventLogTags.AM_PROC_GOOD, info.uid,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001832 info.processName);
1833 mBadProcesses.remove(info.processName, info.uid);
1834 if (app != null) {
1835 app.bad = false;
1836 }
1837 }
1838 }
1839
1840 if (app == null) {
1841 app = newProcessRecordLocked(null, info, processName);
1842 mProcessNames.put(processName, info.uid, app);
1843 } else {
1844 // If this is a new package in the process, add the package to the list
1845 app.addPackage(info.packageName);
1846 }
1847
1848 // If the system is not ready yet, then hold off on starting this
1849 // process until it is.
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001850 if (!mProcessesReady
Dianne Hackborn9acc0302009-08-25 00:27:12 -07001851 && !isAllowedWhileBooting(info)
1852 && !allowWhileBooting) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001853 if (!mProcessesOnHold.contains(app)) {
1854 mProcessesOnHold.add(app);
1855 }
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001856 if (DEBUG_PROCESSES) Slog.v(TAG, "System not ready, putting on hold: " + app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001857 return app;
1858 }
1859
1860 startProcessLocked(app, hostingType, hostingNameStr);
1861 return (app.pid != 0) ? app : null;
1862 }
1863
Dianne Hackborn9acc0302009-08-25 00:27:12 -07001864 boolean isAllowedWhileBooting(ApplicationInfo ai) {
1865 return (ai.flags&ApplicationInfo.FLAG_PERSISTENT) != 0;
1866 }
1867
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001868 private final void startProcessLocked(ProcessRecord app,
1869 String hostingType, String hostingNameStr) {
1870 if (app.pid > 0 && app.pid != MY_PID) {
1871 synchronized (mPidsSelfLocked) {
1872 mPidsSelfLocked.remove(app.pid);
1873 mHandler.removeMessages(PROC_START_TIMEOUT_MSG, app);
1874 }
1875 app.pid = 0;
1876 }
1877
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07001878 if (DEBUG_PROCESSES && mProcessesOnHold.contains(app)) Slog.v(TAG,
1879 "startProcessLocked removing on hold: " + app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001880 mProcessesOnHold.remove(app);
1881
1882 updateCpuStats();
1883
1884 System.arraycopy(mProcDeaths, 0, mProcDeaths, 1, mProcDeaths.length-1);
1885 mProcDeaths[0] = 0;
1886
1887 try {
1888 int uid = app.info.uid;
1889 int[] gids = null;
1890 try {
1891 gids = mContext.getPackageManager().getPackageGids(
1892 app.info.packageName);
1893 } catch (PackageManager.NameNotFoundException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001894 Slog.w(TAG, "Unable to retrieve gids", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001895 }
1896 if (mFactoryTest != SystemServer.FACTORY_TEST_OFF) {
1897 if (mFactoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL
1898 && mTopComponent != null
1899 && app.processName.equals(mTopComponent.getPackageName())) {
1900 uid = 0;
1901 }
1902 if (mFactoryTest == SystemServer.FACTORY_TEST_HIGH_LEVEL
1903 && (app.info.flags&ApplicationInfo.FLAG_FACTORY_TEST) != 0) {
1904 uid = 0;
1905 }
1906 }
1907 int debugFlags = 0;
1908 if ((app.info.flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0) {
1909 debugFlags |= Zygote.DEBUG_ENABLE_DEBUGGER;
1910 }
Ben Cheng6c0afff2010-02-14 16:18:56 -08001911 // Run the app in safe mode if its manifest requests so or the
1912 // system is booted in safe mode.
1913 if ((app.info.flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0 ||
1914 Zygote.systemInSafeMode == true) {
Ben Cheng23085b72010-02-08 16:06:32 -08001915 debugFlags |= Zygote.DEBUG_ENABLE_SAFEMODE;
1916 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001917 if ("1".equals(SystemProperties.get("debug.checkjni"))) {
1918 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI;
1919 }
1920 if ("1".equals(SystemProperties.get("debug.assert"))) {
1921 debugFlags |= Zygote.DEBUG_ENABLE_ASSERT;
1922 }
1923 int pid = Process.start("android.app.ActivityThread",
1924 mSimpleProcessManagement ? app.processName : null, uid, uid,
1925 gids, debugFlags, null);
1926 BatteryStatsImpl bs = app.batteryStats.getBatteryStats();
1927 synchronized (bs) {
1928 if (bs.isOnBattery()) {
1929 app.batteryStats.incStartsLocked();
1930 }
1931 }
1932
Doug Zongker2bec3d42009-12-04 12:52:44 -08001933 EventLog.writeEvent(EventLogTags.AM_PROC_START, pid, uid,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001934 app.processName, hostingType,
1935 hostingNameStr != null ? hostingNameStr : "");
1936
1937 if (app.persistent) {
Christopher Tatec27181c2010-06-30 14:41:09 -07001938 Watchdog.getInstance().processStarted(app.processName, pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001939 }
1940
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001941 StringBuilder buf = mStringBuilder;
1942 buf.setLength(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001943 buf.append("Start proc ");
1944 buf.append(app.processName);
1945 buf.append(" for ");
1946 buf.append(hostingType);
1947 if (hostingNameStr != null) {
1948 buf.append(" ");
1949 buf.append(hostingNameStr);
1950 }
1951 buf.append(": pid=");
1952 buf.append(pid);
1953 buf.append(" uid=");
1954 buf.append(uid);
1955 buf.append(" gids={");
1956 if (gids != null) {
1957 for (int gi=0; gi<gids.length; gi++) {
1958 if (gi != 0) buf.append(", ");
1959 buf.append(gids[gi]);
1960
1961 }
1962 }
1963 buf.append("}");
Joe Onorato8a9b2202010-02-26 18:56:32 -08001964 Slog.i(TAG, buf.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001965 if (pid == 0 || pid == MY_PID) {
1966 // Processes are being emulated with threads.
1967 app.pid = MY_PID;
1968 app.removed = false;
1969 mStartingProcesses.add(app);
1970 } else if (pid > 0) {
1971 app.pid = pid;
1972 app.removed = false;
1973 synchronized (mPidsSelfLocked) {
1974 this.mPidsSelfLocked.put(pid, app);
1975 Message msg = mHandler.obtainMessage(PROC_START_TIMEOUT_MSG);
1976 msg.obj = app;
1977 mHandler.sendMessageDelayed(msg, PROC_START_TIMEOUT);
1978 }
1979 } else {
1980 app.pid = 0;
1981 RuntimeException e = new RuntimeException(
1982 "Failure starting process " + app.processName
1983 + ": returned pid=" + pid);
Joe Onorato8a9b2202010-02-26 18:56:32 -08001984 Slog.e(TAG, e.getMessage(), e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001985 }
1986 } catch (RuntimeException e) {
1987 // XXX do better error recovery.
1988 app.pid = 0;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001989 Slog.e(TAG, "Failure starting process " + app.processName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001990 }
1991 }
1992
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001993 void updateUsageStats(ActivityRecord resumedComponent, boolean resumed) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001994 if (resumed) {
1995 mUsageStatsService.noteResumeComponent(resumedComponent.realActivity);
1996 } else {
1997 mUsageStatsService.notePauseComponent(resumedComponent.realActivity);
1998 }
1999 }
2000
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002001 boolean startHomeActivityLocked() {
Dianne Hackbornd7cd29d2009-07-01 11:22:45 -07002002 if (mFactoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL
2003 && mTopAction == null) {
2004 // We are running in factory test mode, but unable to find
2005 // the factory test app, so just sit around displaying the
2006 // error message and don't try to start anything.
2007 return false;
2008 }
2009 Intent intent = new Intent(
2010 mTopAction,
2011 mTopData != null ? Uri.parse(mTopData) : null);
2012 intent.setComponent(mTopComponent);
2013 if (mFactoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
2014 intent.addCategory(Intent.CATEGORY_HOME);
2015 }
2016 ActivityInfo aInfo =
2017 intent.resolveActivityInfo(mContext.getPackageManager(),
2018 STOCK_PM_FLAGS);
2019 if (aInfo != null) {
2020 intent.setComponent(new ComponentName(
2021 aInfo.applicationInfo.packageName, aInfo.name));
2022 // Don't do this if the home app is currently being
2023 // instrumented.
2024 ProcessRecord app = getProcessRecordLocked(aInfo.processName,
2025 aInfo.applicationInfo.uid);
2026 if (app == null || app.instrumentationClass == null) {
2027 intent.setFlags(intent.getFlags() | Intent.FLAG_ACTIVITY_NEW_TASK);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002028 mMainStack.startActivityLocked(null, intent, null, null, 0, aInfo,
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002029 null, null, 0, 0, 0, false, false, null);
Dianne Hackbornd7cd29d2009-07-01 11:22:45 -07002030 }
2031 }
2032
2033
2034 return true;
2035 }
2036
2037 /**
2038 * Starts the "new version setup screen" if appropriate.
2039 */
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002040 void startSetupActivityLocked() {
Dianne Hackbornd7cd29d2009-07-01 11:22:45 -07002041 // Only do this once per boot.
2042 if (mCheckedForSetup) {
2043 return;
2044 }
2045
2046 // We will show this screen if the current one is a different
2047 // version than the last one shown, and we are not running in
2048 // low-level factory test mode.
2049 final ContentResolver resolver = mContext.getContentResolver();
2050 if (mFactoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL &&
2051 Settings.Secure.getInt(resolver,
2052 Settings.Secure.DEVICE_PROVISIONED, 0) != 0) {
2053 mCheckedForSetup = true;
2054
2055 // See if we should be showing the platform update setup UI.
2056 Intent intent = new Intent(Intent.ACTION_UPGRADE_SETUP);
2057 List<ResolveInfo> ris = mSelf.mContext.getPackageManager()
2058 .queryIntentActivities(intent, PackageManager.GET_META_DATA);
2059
2060 // We don't allow third party apps to replace this.
2061 ResolveInfo ri = null;
2062 for (int i=0; ris != null && i<ris.size(); i++) {
2063 if ((ris.get(i).activityInfo.applicationInfo.flags
2064 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2065 ri = ris.get(i);
2066 break;
2067 }
2068 }
2069
2070 if (ri != null) {
2071 String vers = ri.activityInfo.metaData != null
2072 ? ri.activityInfo.metaData.getString(Intent.METADATA_SETUP_VERSION)
2073 : null;
2074 if (vers == null && ri.activityInfo.applicationInfo.metaData != null) {
2075 vers = ri.activityInfo.applicationInfo.metaData.getString(
2076 Intent.METADATA_SETUP_VERSION);
2077 }
2078 String lastVers = Settings.Secure.getString(
2079 resolver, Settings.Secure.LAST_SETUP_SHOWN);
2080 if (vers != null && !vers.equals(lastVers)) {
2081 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2082 intent.setComponent(new ComponentName(
2083 ri.activityInfo.packageName, ri.activityInfo.name));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002084 mMainStack.startActivityLocked(null, intent, null, null, 0, ri.activityInfo,
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002085 null, null, 0, 0, 0, false, false, null);
Dianne Hackbornd7cd29d2009-07-01 11:22:45 -07002086 }
2087 }
2088 }
2089 }
2090
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002091 void reportResumedActivityLocked(ActivityRecord r) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002092 //Slog.i(TAG, "**** REPORT RESUME: " + r);
Dianne Hackbornb06ea702009-07-13 13:07:51 -07002093
2094 final int identHash = System.identityHashCode(r);
2095 updateUsageStats(r, true);
2096
2097 int i = mWatchers.beginBroadcast();
2098 while (i > 0) {
2099 i--;
2100 IActivityWatcher w = mWatchers.getBroadcastItem(i);
2101 if (w != null) {
2102 try {
2103 w.activityResuming(identHash);
2104 } catch (RemoteException e) {
2105 }
2106 }
2107 }
2108 mWatchers.finishBroadcast();
2109 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002110
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002111 final void doPendingActivityLaunchesLocked(boolean doResume) {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07002112 final int N = mPendingActivityLaunches.size();
2113 if (N <= 0) {
2114 return;
2115 }
2116 for (int i=0; i<N; i++) {
2117 PendingActivityLaunch pal = mPendingActivityLaunches.get(i);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002118 mMainStack.startActivityUncheckedLocked(pal.r, pal.sourceRecord,
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07002119 pal.grantedUriPermissions, pal.grantedMode, pal.onlyIfNeeded,
2120 doResume && i == (N-1));
2121 }
2122 mPendingActivityLaunches.clear();
2123 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002124
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -08002125 public final int startActivity(IApplicationThread caller,
2126 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
2127 int grantedMode, IBinder resultTo,
2128 String resultWho, int requestCode, boolean onlyIfNeeded,
2129 boolean debug) {
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002130 return mMainStack.startActivityMayWait(caller, -1, intent, resolvedType,
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07002131 grantedUriPermissions, grantedMode, resultTo, resultWho,
2132 requestCode, onlyIfNeeded, debug, null, null);
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -08002133 }
2134
2135 public final WaitResult startActivityAndWait(IApplicationThread caller,
2136 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
2137 int grantedMode, IBinder resultTo,
2138 String resultWho, int requestCode, boolean onlyIfNeeded,
2139 boolean debug) {
2140 WaitResult res = new WaitResult();
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002141 mMainStack.startActivityMayWait(caller, -1, intent, resolvedType,
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07002142 grantedUriPermissions, grantedMode, resultTo, resultWho,
2143 requestCode, onlyIfNeeded, debug, res, null);
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -08002144 return res;
2145 }
2146
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07002147 public final int startActivityWithConfig(IApplicationThread caller,
2148 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
2149 int grantedMode, IBinder resultTo,
2150 String resultWho, int requestCode, boolean onlyIfNeeded,
2151 boolean debug, Configuration config) {
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002152 return mMainStack.startActivityMayWait(caller, -1, intent, resolvedType,
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07002153 grantedUriPermissions, grantedMode, resultTo, resultWho,
2154 requestCode, onlyIfNeeded, debug, null, config);
2155 }
2156
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002157 public int startActivityIntentSender(IApplicationThread caller,
Dianne Hackbornfa82f222009-09-17 15:14:12 -07002158 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07002159 IBinder resultTo, String resultWho, int requestCode,
2160 int flagsMask, int flagsValues) {
2161 // Refuse possible leaked file descriptors
2162 if (fillInIntent != null && fillInIntent.hasFileDescriptors()) {
2163 throw new IllegalArgumentException("File descriptors passed in Intent");
2164 }
2165
2166 IIntentSender sender = intent.getTarget();
2167 if (!(sender instanceof PendingIntentRecord)) {
2168 throw new IllegalArgumentException("Bad PendingIntent object");
2169 }
2170
2171 PendingIntentRecord pir = (PendingIntentRecord)sender;
Dianne Hackbornfa82f222009-09-17 15:14:12 -07002172
2173 synchronized (this) {
2174 // If this is coming from the currently resumed activity, it is
2175 // effectively saying that app switches are allowed at this point.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002176 if (mMainStack.mResumedActivity != null
2177 && mMainStack.mResumedActivity.info.applicationInfo.uid ==
Dianne Hackbornfa82f222009-09-17 15:14:12 -07002178 Binder.getCallingUid()) {
2179 mAppSwitchesAllowedTime = 0;
2180 }
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07002181 }
2182
2183 return pir.sendInner(0, fillInIntent, resolvedType,
2184 null, resultTo, resultWho, requestCode, flagsMask, flagsValues);
2185 }
2186
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002187 public boolean startNextMatchingActivity(IBinder callingActivity,
2188 Intent intent) {
2189 // Refuse possible leaked file descriptors
2190 if (intent != null && intent.hasFileDescriptors() == true) {
2191 throw new IllegalArgumentException("File descriptors passed in Intent");
2192 }
2193
2194 synchronized (this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002195 int index = mMainStack.indexOfTokenLocked(callingActivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002196 if (index < 0) {
2197 return false;
2198 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002199 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002200 if (r.app == null || r.app.thread == null) {
2201 // The caller is not running... d'oh!
2202 return false;
2203 }
2204 intent = new Intent(intent);
2205 // The caller is not allowed to change the data.
2206 intent.setDataAndType(r.intent.getData(), r.intent.getType());
2207 // And we are resetting to find the next component...
2208 intent.setComponent(null);
2209
2210 ActivityInfo aInfo = null;
2211 try {
2212 List<ResolveInfo> resolves =
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002213 AppGlobals.getPackageManager().queryIntentActivities(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002214 intent, r.resolvedType,
Dianne Hackborn1655be42009-05-08 14:29:01 -07002215 PackageManager.MATCH_DEFAULT_ONLY | STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002216
2217 // Look for the original activity in the list...
2218 final int N = resolves != null ? resolves.size() : 0;
2219 for (int i=0; i<N; i++) {
2220 ResolveInfo rInfo = resolves.get(i);
2221 if (rInfo.activityInfo.packageName.equals(r.packageName)
2222 && rInfo.activityInfo.name.equals(r.info.name)) {
2223 // We found the current one... the next matching is
2224 // after it.
2225 i++;
2226 if (i<N) {
2227 aInfo = resolves.get(i).activityInfo;
2228 }
2229 break;
2230 }
2231 }
2232 } catch (RemoteException e) {
2233 }
2234
2235 if (aInfo == null) {
2236 // Nobody who is next!
2237 return false;
2238 }
2239
2240 intent.setComponent(new ComponentName(
2241 aInfo.applicationInfo.packageName, aInfo.name));
2242 intent.setFlags(intent.getFlags()&~(
2243 Intent.FLAG_ACTIVITY_FORWARD_RESULT|
2244 Intent.FLAG_ACTIVITY_CLEAR_TOP|
2245 Intent.FLAG_ACTIVITY_MULTIPLE_TASK|
2246 Intent.FLAG_ACTIVITY_NEW_TASK));
2247
2248 // Okay now we need to start the new activity, replacing the
2249 // currently running activity. This is a little tricky because
2250 // we want to start the new one as if the current one is finished,
2251 // but not finish the current one first so that there is no flicker.
2252 // And thus...
2253 final boolean wasFinishing = r.finishing;
2254 r.finishing = true;
2255
2256 // Propagate reply information over to the new activity.
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002257 final ActivityRecord resultTo = r.resultTo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002258 final String resultWho = r.resultWho;
2259 final int requestCode = r.requestCode;
2260 r.resultTo = null;
2261 if (resultTo != null) {
2262 resultTo.removeResultsLocked(r, resultWho, requestCode);
2263 }
2264
2265 final long origId = Binder.clearCallingIdentity();
2266 // XXX we are not dealing with propagating grantedUriPermissions...
2267 // those are not yet exposed to user code, so there is no need.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002268 int res = mMainStack.startActivityLocked(r.app.thread, intent,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002269 r.resolvedType, null, 0, aInfo, resultTo, resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002270 requestCode, -1, r.launchedFromUid, false, false, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002271 Binder.restoreCallingIdentity(origId);
2272
2273 r.finishing = wasFinishing;
2274 if (res != START_SUCCESS) {
2275 return false;
2276 }
2277 return true;
2278 }
2279 }
2280
Dianne Hackborn2d91af02009-07-16 13:34:33 -07002281 public final int startActivityInPackage(int uid,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002282 Intent intent, String resolvedType, IBinder resultTo,
2283 String resultWho, int requestCode, boolean onlyIfNeeded) {
Dianne Hackborn2d91af02009-07-16 13:34:33 -07002284
2285 // This is so super not safe, that only the system (or okay root)
2286 // can do it.
2287 final int callingUid = Binder.getCallingUid();
2288 if (callingUid != 0 && callingUid != Process.myUid()) {
2289 throw new SecurityException(
2290 "startActivityInPackage only available to the system");
2291 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002292
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002293 return mMainStack.startActivityMayWait(null, uid, intent, resolvedType,
2294 null, 0, resultTo, resultWho, requestCode, onlyIfNeeded, false, null, null);
2295 }
2296
2297 public final int startActivities(IApplicationThread caller,
2298 Intent[] intents, String[] resolvedTypes, IBinder resultTo) {
2299 return mMainStack.startActivities(caller, -1, intents, resolvedTypes, resultTo);
2300 }
2301
2302 public final int startActivitiesInPackage(int uid,
2303 Intent[] intents, String[] resolvedTypes, IBinder resultTo) {
2304
2305 // This is so super not safe, that only the system (or okay root)
2306 // can do it.
2307 final int callingUid = Binder.getCallingUid();
2308 if (callingUid != 0 && callingUid != Process.myUid()) {
2309 throw new SecurityException(
2310 "startActivityInPackage only available to the system");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002311 }
2312
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002313 return mMainStack.startActivities(null, uid, intents, resolvedTypes, resultTo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002314 }
2315
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002316 final void addRecentTaskLocked(TaskRecord task) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002317 int N = mRecentTasks.size();
Dianne Hackborn7c0e75e2010-12-21 19:15:40 -08002318 // Quick case: check if the top-most recent task is the same.
2319 if (N > 0 && mRecentTasks.get(0) == task) {
2320 return;
2321 }
2322 // Remove any existing entries that are the same kind of task.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002323 for (int i=0; i<N; i++) {
2324 TaskRecord tr = mRecentTasks.get(i);
2325 if ((task.affinity != null && task.affinity.equals(tr.affinity))
2326 || (task.intent != null && task.intent.filterEquals(tr.intent))) {
2327 mRecentTasks.remove(i);
2328 i--;
2329 N--;
2330 if (task.intent == null) {
2331 // If the new recent task we are adding is not fully
2332 // specified, then replace it with the existing recent task.
2333 task = tr;
2334 }
2335 }
2336 }
2337 if (N >= MAX_RECENT_TASKS) {
2338 mRecentTasks.remove(N-1);
2339 }
2340 mRecentTasks.add(0, task);
2341 }
2342
2343 public void setRequestedOrientation(IBinder token,
2344 int requestedOrientation) {
2345 synchronized (this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002346 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002347 if (index < 0) {
2348 return;
2349 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002350 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002351 final long origId = Binder.clearCallingIdentity();
2352 mWindowManager.setAppOrientation(r, requestedOrientation);
2353 Configuration config = mWindowManager.updateOrientationFromAppTokens(
The Android Open Source Project10592532009-03-18 17:39:46 -07002354 mConfiguration,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002355 r.mayFreezeScreenLocked(r.app) ? r : null);
2356 if (config != null) {
2357 r.frozenBeforeDestroy = true;
2358 if (!updateConfigurationLocked(config, r)) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002359 mMainStack.resumeTopActivityLocked(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002360 }
2361 }
2362 Binder.restoreCallingIdentity(origId);
2363 }
2364 }
2365
2366 public int getRequestedOrientation(IBinder token) {
2367 synchronized (this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002368 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002369 if (index < 0) {
2370 return ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
2371 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002372 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002373 return mWindowManager.getAppOrientation(r);
2374 }
2375 }
2376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002377 /**
2378 * This is the internal entry point for handling Activity.finish().
2379 *
2380 * @param token The Binder token referencing the Activity we want to finish.
2381 * @param resultCode Result code, if any, from this Activity.
2382 * @param resultData Result data (Intent), if any, from this Activity.
2383 *
Alexey Tarasov83bad3d2009-08-12 15:05:43 +11002384 * @return Returns true if the activity successfully finished, or false if it is still running.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002385 */
2386 public final boolean finishActivity(IBinder token, int resultCode, Intent resultData) {
2387 // Refuse possible leaked file descriptors
2388 if (resultData != null && resultData.hasFileDescriptors() == true) {
2389 throw new IllegalArgumentException("File descriptors passed in Intent");
2390 }
2391
2392 synchronized(this) {
Dianne Hackbornb06ea702009-07-13 13:07:51 -07002393 if (mController != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002394 // Find the first activity that is not finishing.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002395 ActivityRecord next = mMainStack.topRunningActivityLocked(token, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002396 if (next != null) {
2397 // ask watcher if this is allowed
2398 boolean resumeOK = true;
2399 try {
Dianne Hackbornb06ea702009-07-13 13:07:51 -07002400 resumeOK = mController.activityResuming(next.packageName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002401 } catch (RemoteException e) {
Dianne Hackbornb06ea702009-07-13 13:07:51 -07002402 mController = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002403 }
2404
2405 if (!resumeOK) {
2406 return false;
2407 }
2408 }
2409 }
2410 final long origId = Binder.clearCallingIdentity();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002411 boolean res = mMainStack.requestFinishActivityLocked(token, resultCode,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002412 resultData, "app-request");
2413 Binder.restoreCallingIdentity(origId);
2414 return res;
2415 }
2416 }
2417
Dianne Hackborn860755f2010-06-03 18:47:52 -07002418 public final void finishHeavyWeightApp() {
2419 if (checkCallingPermission(android.Manifest.permission.FORCE_STOP_PACKAGES)
2420 != PackageManager.PERMISSION_GRANTED) {
2421 String msg = "Permission Denial: finishHeavyWeightApp() from pid="
2422 + Binder.getCallingPid()
2423 + ", uid=" + Binder.getCallingUid()
2424 + " requires " + android.Manifest.permission.FORCE_STOP_PACKAGES;
2425 Slog.w(TAG, msg);
2426 throw new SecurityException(msg);
2427 }
2428
2429 synchronized(this) {
2430 if (mHeavyWeightProcess == null) {
2431 return;
2432 }
2433
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002434 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>(
Dianne Hackborn860755f2010-06-03 18:47:52 -07002435 mHeavyWeightProcess.activities);
2436 for (int i=0; i<activities.size(); i++) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002437 ActivityRecord r = activities.get(i);
Dianne Hackborn860755f2010-06-03 18:47:52 -07002438 if (!r.finishing) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002439 int index = mMainStack.indexOfTokenLocked(r);
Dianne Hackborn860755f2010-06-03 18:47:52 -07002440 if (index >= 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002441 mMainStack.finishActivityLocked(r, index, Activity.RESULT_CANCELED,
Dianne Hackborn860755f2010-06-03 18:47:52 -07002442 null, "finish-heavy");
2443 }
2444 }
2445 }
2446
2447 mHeavyWeightProcess = null;
2448 mHandler.sendEmptyMessage(CANCEL_HEAVY_NOTIFICATION_MSG);
2449 }
2450 }
2451
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07002452 public void crashApplication(int uid, int initialPid, String packageName,
2453 String message) {
2454 if (checkCallingPermission(android.Manifest.permission.FORCE_STOP_PACKAGES)
2455 != PackageManager.PERMISSION_GRANTED) {
2456 String msg = "Permission Denial: crashApplication() from pid="
2457 + Binder.getCallingPid()
2458 + ", uid=" + Binder.getCallingUid()
2459 + " requires " + android.Manifest.permission.FORCE_STOP_PACKAGES;
2460 Slog.w(TAG, msg);
2461 throw new SecurityException(msg);
2462 }
2463
2464 synchronized(this) {
2465 ProcessRecord proc = null;
2466
2467 // Figure out which process to kill. We don't trust that initialPid
2468 // still has any relation to current pids, so must scan through the
2469 // list.
2470 synchronized (mPidsSelfLocked) {
2471 for (int i=0; i<mPidsSelfLocked.size(); i++) {
2472 ProcessRecord p = mPidsSelfLocked.valueAt(i);
2473 if (p.info.uid != uid) {
2474 continue;
2475 }
2476 if (p.pid == initialPid) {
2477 proc = p;
2478 break;
2479 }
2480 for (String str : p.pkgList) {
2481 if (str.equals(packageName)) {
2482 proc = p;
2483 }
2484 }
2485 }
2486 }
2487
2488 if (proc == null) {
Dianne Hackbornb424b632010-08-18 15:59:05 -07002489 Slog.w(TAG, "crashApplication: nothing for uid=" + uid
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07002490 + " initialPid=" + initialPid
2491 + " packageName=" + packageName);
2492 return;
2493 }
2494
2495 if (proc.thread != null) {
Dianne Hackborn9f531192010-08-04 17:48:03 -07002496 if (proc.pid == Process.myPid()) {
2497 Log.w(TAG, "crashApplication: trying to crash self!");
2498 return;
2499 }
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07002500 long ident = Binder.clearCallingIdentity();
2501 try {
2502 proc.thread.scheduleCrash(message);
2503 } catch (RemoteException e) {
2504 }
2505 Binder.restoreCallingIdentity(ident);
2506 }
2507 }
2508 }
2509
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002510 public final void finishSubActivity(IBinder token, String resultWho,
2511 int requestCode) {
2512 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002513 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002514 if (index < 0) {
2515 return;
2516 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002517 ActivityRecord self = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002518
2519 final long origId = Binder.clearCallingIdentity();
2520
2521 int i;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002522 for (i=mMainStack.mHistory.size()-1; i>=0; i--) {
2523 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002524 if (r.resultTo == self && r.requestCode == requestCode) {
2525 if ((r.resultWho == null && resultWho == null) ||
2526 (r.resultWho != null && r.resultWho.equals(resultWho))) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002527 mMainStack.finishActivityLocked(r, i,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002528 Activity.RESULT_CANCELED, null, "request-sub");
2529 }
2530 }
2531 }
2532
2533 Binder.restoreCallingIdentity(origId);
2534 }
2535 }
2536
Dianne Hackborn061d58a2010-03-12 15:07:06 -08002537 public boolean willActivityBeVisible(IBinder token) {
2538 synchronized(this) {
2539 int i;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002540 for (i=mMainStack.mHistory.size()-1; i>=0; i--) {
2541 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
Dianne Hackborn061d58a2010-03-12 15:07:06 -08002542 if (r == token) {
2543 return true;
2544 }
2545 if (r.fullscreen && !r.finishing) {
2546 return false;
2547 }
2548 }
2549 return true;
2550 }
2551 }
2552
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002553 public void overridePendingTransition(IBinder token, String packageName,
2554 int enterAnim, int exitAnim) {
2555 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002556 int index = mMainStack.indexOfTokenLocked(token);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002557 if (index < 0) {
2558 return;
2559 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002560 ActivityRecord self = (ActivityRecord)mMainStack.mHistory.get(index);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002561
2562 final long origId = Binder.clearCallingIdentity();
2563
2564 if (self.state == ActivityState.RESUMED
2565 || self.state == ActivityState.PAUSING) {
2566 mWindowManager.overridePendingAppTransition(packageName,
2567 enterAnim, exitAnim);
2568 }
2569
2570 Binder.restoreCallingIdentity(origId);
2571 }
2572 }
2573
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002574 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002575 * Main function for removing an existing process from the activity manager
2576 * as a result of that process going away. Clears out all connections
2577 * to the process.
2578 */
2579 private final void handleAppDiedLocked(ProcessRecord app,
2580 boolean restarting) {
2581 cleanUpApplicationRecordLocked(app, restarting, -1);
2582 if (!restarting) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -08002583 mLruProcesses.remove(app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002584 }
2585
2586 // Just in case...
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002587 if (mMainStack.mPausingActivity != null && mMainStack.mPausingActivity.app == app) {
2588 if (DEBUG_PAUSE) Slog.v(TAG, "App died while pausing: " +mMainStack.mPausingActivity);
2589 mMainStack.mPausingActivity = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002590 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002591 if (mMainStack.mLastPausedActivity != null && mMainStack.mLastPausedActivity.app == app) {
2592 mMainStack.mLastPausedActivity = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002593 }
2594
2595 // Remove this application's activities from active lists.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002596 mMainStack.removeHistoryRecordsForAppLocked(app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002597
2598 boolean atTop = true;
2599 boolean hasVisibleActivities = false;
2600
2601 // Clean out the history list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002602 int i = mMainStack.mHistory.size();
Joe Onorato8a9b2202010-02-26 18:56:32 -08002603 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002604 TAG, "Removing app " + app + " from history with " + i + " entries");
2605 while (i > 0) {
2606 i--;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002607 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002608 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002609 TAG, "Record #" + i + " " + r + ": app=" + r.app);
2610 if (r.app == app) {
2611 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002612 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002613 TAG, "Removing this entry! frozen=" + r.haveState
2614 + " finishing=" + r.finishing);
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002615 r.makeFinishing();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002616 mMainStack.mHistory.remove(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002617
2618 r.inHistory = false;
2619 mWindowManager.removeAppToken(r);
2620 if (VALIDATE_TOKENS) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002621 mWindowManager.validateAppTokens(mMainStack.mHistory);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002622 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002623 r.removeUriPermissionsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002624
2625 } else {
2626 // We have the current state for this activity, so
2627 // it can be restarted later when needed.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002628 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002629 TAG, "Keeping entry, setting app to null");
2630 if (r.visible) {
2631 hasVisibleActivities = true;
2632 }
2633 r.app = null;
2634 r.nowVisible = false;
2635 if (!r.haveState) {
2636 r.icicle = null;
2637 }
2638 }
2639
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002640 r.stack.cleanUpActivityLocked(r, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002641 r.state = ActivityState.STOPPED;
2642 }
2643 atTop = false;
2644 }
2645
2646 app.activities.clear();
2647
2648 if (app.instrumentationClass != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002649 Slog.w(TAG, "Crash of app " + app.processName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002650 + " running instrumentation " + app.instrumentationClass);
2651 Bundle info = new Bundle();
2652 info.putString("shortMsg", "Process crashed.");
2653 finishInstrumentationLocked(app, Activity.RESULT_CANCELED, info);
2654 }
2655
2656 if (!restarting) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002657 if (!mMainStack.resumeTopActivityLocked(null)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002658 // If there was nothing to resume, and we are not already
2659 // restarting this process, but there is a visible activity that
2660 // is hosted by the process... then make sure all visible
2661 // activities are running, taking care of restarting this
2662 // process.
2663 if (hasVisibleActivities) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002664 mMainStack.ensureActivitiesVisibleLocked(null, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002665 }
2666 }
2667 }
2668 }
2669
2670 private final int getLRURecordIndexForAppLocked(IApplicationThread thread) {
2671 IBinder threadBinder = thread.asBinder();
2672
2673 // Find the application record.
Dianne Hackborndd71fc82009-12-16 19:24:32 -08002674 for (int i=mLruProcesses.size()-1; i>=0; i--) {
2675 ProcessRecord rec = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002676 if (rec.thread != null && rec.thread.asBinder() == threadBinder) {
2677 return i;
2678 }
2679 }
2680 return -1;
2681 }
2682
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002683 final ProcessRecord getRecordForAppLocked(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002684 IApplicationThread thread) {
2685 if (thread == null) {
2686 return null;
2687 }
2688
2689 int appIndex = getLRURecordIndexForAppLocked(thread);
Dianne Hackborndd71fc82009-12-16 19:24:32 -08002690 return appIndex >= 0 ? mLruProcesses.get(appIndex) : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002691 }
2692
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002693 final void appDiedLocked(ProcessRecord app, int pid,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002694 IApplicationThread thread) {
2695
2696 mProcDeaths[0]++;
2697
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002698 BatteryStatsImpl stats = mBatteryStatsService.getActiveStatistics();
2699 synchronized (stats) {
2700 stats.noteProcessDiedLocked(app.info.uid, pid);
2701 }
2702
Magnus Edlund7bb25812010-02-24 15:45:06 +01002703 // Clean up already done if the process has been re-started.
2704 if (app.pid == pid && app.thread != null &&
2705 app.thread.asBinder() == thread.asBinder()) {
Dianne Hackborn906497c2010-05-10 15:57:38 -07002706 if (!app.killedBackground) {
2707 Slog.i(TAG, "Process " + app.processName + " (pid " + pid
2708 + ") has died.");
2709 }
Doug Zongker2bec3d42009-12-04 12:52:44 -08002710 EventLog.writeEvent(EventLogTags.AM_PROC_DIED, app.pid, app.processName);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002711 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002712 TAG, "Dying app: " + app + ", pid: " + pid
2713 + ", thread: " + thread.asBinder());
2714 boolean doLowMem = app.instrumentationClass == null;
2715 handleAppDiedLocked(app, false);
2716
2717 if (doLowMem) {
2718 // If there are no longer any background processes running,
2719 // and the app that died was not running instrumentation,
2720 // then tell everyone we are now low on memory.
2721 boolean haveBg = false;
Dianne Hackborndd71fc82009-12-16 19:24:32 -08002722 for (int i=mLruProcesses.size()-1; i>=0; i--) {
2723 ProcessRecord rec = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002724 if (rec.thread != null && rec.setAdj >= HIDDEN_APP_MIN_ADJ) {
2725 haveBg = true;
2726 break;
2727 }
2728 }
2729
2730 if (!haveBg) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002731 Slog.i(TAG, "Low Memory: No more background processes.");
Dianne Hackborndd71fc82009-12-16 19:24:32 -08002732 EventLog.writeEvent(EventLogTags.AM_LOW_MEMORY, mLruProcesses.size());
Dianne Hackbornfd12af42009-08-27 00:44:33 -07002733 long now = SystemClock.uptimeMillis();
Dianne Hackborndd71fc82009-12-16 19:24:32 -08002734 for (int i=mLruProcesses.size()-1; i>=0; i--) {
2735 ProcessRecord rec = mLruProcesses.get(i);
Dianne Hackborn36124872009-10-08 16:22:03 -07002736 if (rec != app && rec.thread != null &&
Dianne Hackbornfd12af42009-08-27 00:44:33 -07002737 (rec.lastLowMemory+GC_MIN_INTERVAL) <= now) {
2738 // The low memory report is overriding any current
2739 // state for a GC request. Make sure to do
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002740 // heavy/important/visible/foreground processes first.
2741 if (rec.setAdj <= HEAVY_WEIGHT_APP_ADJ) {
Dianne Hackbornfd12af42009-08-27 00:44:33 -07002742 rec.lastRequestedGc = 0;
2743 } else {
2744 rec.lastRequestedGc = rec.lastLowMemory;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002745 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -07002746 rec.reportLowMemory = true;
2747 rec.lastLowMemory = now;
2748 mProcessesToGc.remove(rec);
2749 addProcessToGcListLocked(rec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002750 }
2751 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -07002752 scheduleAppGcsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002753 }
2754 }
Magnus Edlund7bb25812010-02-24 15:45:06 +01002755 } else if (app.pid != pid) {
2756 // A new process has already been started.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002757 Slog.i(TAG, "Process " + app.processName + " (pid " + pid
Magnus Edlund7bb25812010-02-24 15:45:06 +01002758 + ") has died and restarted (pid " + app.pid + ").");
Dianne Hackborn28a8c2b2010-03-01 11:30:02 -08002759 EventLog.writeEvent(EventLogTags.AM_PROC_DIED, app.pid, app.processName);
Dianne Hackborn03abb812010-01-04 18:43:19 -08002760 } else if (DEBUG_PROCESSES) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002761 Slog.d(TAG, "Received spurious death notification for thread "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002762 + thread.asBinder());
2763 }
2764 }
2765
Dan Egnor42471dd2010-01-07 17:25:22 -08002766 /**
2767 * If a stack trace dump file is configured, dump process stack traces.
Christopher Tate6ee412d2010-05-28 12:01:56 -07002768 * @param clearTraces causes the dump file to be erased prior to the new
2769 * traces being written, if true; when false, the new traces will be
2770 * appended to any existing file content.
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002771 * @param firstPids of dalvik VM processes to dump stack traces for first
2772 * @param lastPids of dalvik VM processes to dump stack traces for last
Dan Egnor42471dd2010-01-07 17:25:22 -08002773 * @return file containing stack traces, or null if no dump file is configured
2774 */
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002775 public static File dumpStackTraces(boolean clearTraces, ArrayList<Integer> firstPids,
2776 ProcessStats processStats, SparseArray<Boolean> lastPids) {
Dan Egnor42471dd2010-01-07 17:25:22 -08002777 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
2778 if (tracesPath == null || tracesPath.length() == 0) {
2779 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002780 }
Dan Egnor42471dd2010-01-07 17:25:22 -08002781
2782 File tracesFile = new File(tracesPath);
2783 try {
2784 File tracesDir = tracesFile.getParentFile();
2785 if (!tracesDir.exists()) tracesFile.mkdirs();
2786 FileUtils.setPermissions(tracesDir.getPath(), 0775, -1, -1); // drwxrwxr-x
2787
Christopher Tate6ee412d2010-05-28 12:01:56 -07002788 if (clearTraces && tracesFile.exists()) tracesFile.delete();
Dan Egnor42471dd2010-01-07 17:25:22 -08002789 tracesFile.createNewFile();
2790 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
2791 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002792 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e);
Dan Egnor42471dd2010-01-07 17:25:22 -08002793 return null;
2794 }
2795
2796 // Use a FileObserver to detect when traces finish writing.
2797 // The order of traces is considered important to maintain for legibility.
2798 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) {
2799 public synchronized void onEvent(int event, String path) { notify(); }
2800 };
2801
2802 try {
2803 observer.startWatching();
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002804
2805 // First collect all of the stacks of the most important pids.
2806 try {
2807 int num = firstPids.size();
2808 for (int i = 0; i < num; i++) {
2809 synchronized (observer) {
2810 Process.sendSignal(firstPids.get(i), Process.SIGNAL_QUIT);
2811 observer.wait(200); // Wait for write-close, give up after 200msec
2812 }
2813 }
2814 } catch (InterruptedException e) {
2815 Log.wtf(TAG, e);
2816 }
2817
2818 // Next measure CPU usage.
2819 if (processStats != null) {
2820 processStats.init();
2821 System.gc();
2822 processStats.update();
2823 try {
2824 synchronized (processStats) {
2825 processStats.wait(500); // measure over 1/2 second.
2826 }
2827 } catch (InterruptedException e) {
2828 }
2829 processStats.update();
2830
2831 // We'll take the stack crawls of just the top apps using CPU.
2832 final int N = processStats.countWorkingStats();
2833 int numProcs = 0;
2834 for (int i=0; i<N && numProcs<5; i++) {
2835 ProcessStats.Stats stats = processStats.getWorkingStats(i);
2836 if (lastPids.indexOfKey(stats.pid) >= 0) {
2837 numProcs++;
2838 try {
2839 synchronized (observer) {
2840 Process.sendSignal(stats.pid, Process.SIGNAL_QUIT);
2841 observer.wait(200); // Wait for write-close, give up after 200msec
2842 }
2843 } catch (InterruptedException e) {
2844 Log.wtf(TAG, e);
2845 }
2846
2847 }
Dan Egnor42471dd2010-01-07 17:25:22 -08002848 }
2849 }
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002850
2851 return tracesFile;
2852
Dan Egnor42471dd2010-01-07 17:25:22 -08002853 } finally {
2854 observer.stopWatching();
2855 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002856 }
2857
Jeff Brown4d94a762010-09-23 11:33:28 -07002858 private final class AppNotResponding implements Runnable {
2859 private final ProcessRecord mApp;
2860 private final String mAnnotation;
2861
2862 public AppNotResponding(ProcessRecord app, String annotation) {
2863 mApp = app;
2864 mAnnotation = annotation;
2865 }
2866
2867 @Override
2868 public void run() {
2869 appNotResponding(mApp, null, null, mAnnotation);
2870 }
2871 }
2872
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002873 final void appNotResponding(ProcessRecord app, ActivityRecord activity,
2874 ActivityRecord parent, final String annotation) {
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002875 ArrayList<Integer> firstPids = new ArrayList<Integer>(5);
2876 SparseArray<Boolean> lastPids = new SparseArray<Boolean>(20);
2877
Dianne Hackborn287952c2010-09-22 22:34:31 -07002878 if (mController != null) {
2879 try {
2880 // 0 == continue, -1 = kill process immediately
2881 int res = mController.appEarlyNotResponding(app.processName, app.pid, annotation);
2882 if (res < 0 && app.pid != MY_PID) Process.killProcess(app.pid);
2883 } catch (RemoteException e) {
2884 mController = null;
2885 }
2886 }
2887
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002888 long anrTime = SystemClock.uptimeMillis();
2889 if (MONITOR_CPU_USAGE) {
2890 updateCpuStatsNow();
2891 }
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002892
2893 synchronized (this) {
2894 // PowerManager.reboot() can block for a long time, so ignore ANRs while shutting down.
2895 if (mShuttingDown) {
2896 Slog.i(TAG, "During shutdown skipping ANR: " + app + " " + annotation);
2897 return;
2898 } else if (app.notResponding) {
2899 Slog.i(TAG, "Skipping duplicate ANR: " + app + " " + annotation);
2900 return;
2901 } else if (app.crashing) {
2902 Slog.i(TAG, "Crashing app skipping ANR: " + app + " " + annotation);
2903 return;
2904 }
2905
2906 // In case we come through here for the same app before completing
2907 // this one, mark as anring now so we will bail out.
2908 app.notResponding = true;
Dan Egnor42471dd2010-01-07 17:25:22 -08002909
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002910 // Log the ANR to the event log.
2911 EventLog.writeEvent(EventLogTags.AM_ANR, app.pid, app.processName, app.info.flags,
2912 annotation);
Dan Egnor42471dd2010-01-07 17:25:22 -08002913
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002914 // Dump thread traces as quickly as we can, starting with "interesting" processes.
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002915 firstPids.add(app.pid);
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002916
2917 int parentPid = app.pid;
2918 if (parent != null && parent.app != null && parent.app.pid > 0) parentPid = parent.app.pid;
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002919 if (parentPid != app.pid) firstPids.add(parentPid);
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002920
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002921 if (MY_PID != app.pid && MY_PID != parentPid) firstPids.add(MY_PID);
Dan Egnor42471dd2010-01-07 17:25:22 -08002922
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002923 for (int i = mLruProcesses.size() - 1; i >= 0; i--) {
2924 ProcessRecord r = mLruProcesses.get(i);
2925 if (r != null && r.thread != null) {
2926 int pid = r.pid;
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002927 if (pid > 0 && pid != app.pid && pid != parentPid && pid != MY_PID) {
2928 if (r.persistent) {
2929 firstPids.add(pid);
2930 } else {
2931 lastPids.put(pid, Boolean.TRUE);
2932 }
2933 }
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002934 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002935 }
2936 }
2937
Dan Egnor42471dd2010-01-07 17:25:22 -08002938 // Log the ANR to the main log.
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07002939 StringBuilder info = mStringBuilder;
2940 info.setLength(0);
Dan Egnor42471dd2010-01-07 17:25:22 -08002941 info.append("ANR in ").append(app.processName);
2942 if (activity != null && activity.shortComponentName != null) {
2943 info.append(" (").append(activity.shortComponentName).append(")");
Dianne Hackborn82e1ee92009-08-11 18:56:41 -07002944 }
Eric Rowe6f4f6192010-02-17 18:29:04 -08002945 info.append("\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002946 if (annotation != null) {
Eric Rowe6f4f6192010-02-17 18:29:04 -08002947 info.append("Reason: ").append(annotation).append("\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002948 }
Dan Egnor42471dd2010-01-07 17:25:22 -08002949 if (parent != null && parent != activity) {
Eric Rowe6f4f6192010-02-17 18:29:04 -08002950 info.append("Parent: ").append(parent.shortComponentName).append("\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002951 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002952
Dianne Hackborn287952c2010-09-22 22:34:31 -07002953 final ProcessStats processStats = new ProcessStats(true);
2954
2955 File tracesFile = dumpStackTraces(true, firstPids, processStats, lastPids);
2956
Dan Egnor42471dd2010-01-07 17:25:22 -08002957 String cpuInfo = null;
2958 if (MONITOR_CPU_USAGE) {
2959 updateCpuStatsNow();
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002960 synchronized (mProcessStatsThread) {
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002961 cpuInfo = mProcessStats.printCurrentState(anrTime);
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002962 }
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002963 info.append(processStats.printCurrentLoad());
Dan Egnor42471dd2010-01-07 17:25:22 -08002964 info.append(cpuInfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002965 }
2966
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -07002967 info.append(processStats.printCurrentState(anrTime));
2968
Joe Onorato8a9b2202010-02-26 18:56:32 -08002969 Slog.e(TAG, info.toString());
Dan Egnor42471dd2010-01-07 17:25:22 -08002970 if (tracesFile == null) {
2971 // There is no trace file, so dump (only) the alleged culprit's threads to the log
2972 Process.sendSignal(app.pid, Process.SIGNAL_QUIT);
2973 }
2974
2975 addErrorToDropBox("anr", app, activity, parent, annotation, cpuInfo, tracesFile, null);
2976
Dianne Hackbornb06ea702009-07-13 13:07:51 -07002977 if (mController != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002978 try {
Dan Egnor42471dd2010-01-07 17:25:22 -08002979 // 0 == show dialog, 1 = keep waiting, -1 = kill process immediately
2980 int res = mController.appNotResponding(app.processName, app.pid, info.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002981 if (res != 0) {
Dan Egnor42471dd2010-01-07 17:25:22 -08002982 if (res < 0 && app.pid != MY_PID) Process.killProcess(app.pid);
2983 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002984 }
2985 } catch (RemoteException e) {
Dianne Hackbornb06ea702009-07-13 13:07:51 -07002986 mController = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002987 }
2988 }
2989
Dan Egnor42471dd2010-01-07 17:25:22 -08002990 // Unless configured otherwise, swallow ANRs in background processes & kill the process.
2991 boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
2992 Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
Dianne Hackbornad5499d2010-03-29 18:08:45 -07002993
2994 synchronized (this) {
2995 if (!showBackground && !app.isInterestingToUserLocked() && app.pid != MY_PID) {
2996 Process.killProcess(app.pid);
2997 return;
2998 }
2999
3000 // Set the app's notResponding state, and look up the errorReportReceiver
3001 makeAppNotRespondingLocked(app,
3002 activity != null ? activity.shortComponentName : null,
3003 annotation != null ? "ANR " + annotation : "ANR",
3004 info.toString());
3005
3006 // Bring up the infamous App Not Responding dialog
3007 Message msg = Message.obtain();
3008 HashMap map = new HashMap();
3009 msg.what = SHOW_NOT_RESPONDING_MSG;
3010 msg.obj = map;
3011 map.put("app", app);
3012 if (activity != null) {
3013 map.put("activity", activity);
3014 }
3015
3016 mHandler.sendMessage(msg);
Dan Egnor42471dd2010-01-07 17:25:22 -08003017 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003018 }
3019
Dianne Hackborn0dad3642010-09-09 21:25:35 -07003020 final void showLaunchWarningLocked(final ActivityRecord cur, final ActivityRecord next) {
3021 if (!mLaunchWarningShown) {
3022 mLaunchWarningShown = true;
3023 mHandler.post(new Runnable() {
3024 @Override
3025 public void run() {
3026 synchronized (ActivityManagerService.this) {
3027 final Dialog d = new LaunchWarningWindow(mContext, cur, next);
3028 d.show();
3029 mHandler.postDelayed(new Runnable() {
3030 @Override
3031 public void run() {
3032 synchronized (ActivityManagerService.this) {
3033 d.dismiss();
3034 mLaunchWarningShown = false;
3035 }
3036 }
3037 }, 4000);
3038 }
3039 }
3040 });
3041 }
3042 }
3043
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003044 public boolean clearApplicationUserData(final String packageName,
3045 final IPackageDataObserver observer) {
3046 int uid = Binder.getCallingUid();
3047 int pid = Binder.getCallingPid();
3048 long callingId = Binder.clearCallingIdentity();
3049 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003050 IPackageManager pm = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003051 int pkgUid = -1;
3052 synchronized(this) {
3053 try {
3054 pkgUid = pm.getPackageUid(packageName);
3055 } catch (RemoteException e) {
3056 }
3057 if (pkgUid == -1) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003058 Slog.w(TAG, "Invalid packageName:" + packageName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003059 return false;
3060 }
3061 if (uid == pkgUid || checkComponentPermission(
3062 android.Manifest.permission.CLEAR_APP_USER_DATA,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08003063 pid, uid, -1, true)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003064 == PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn03abb812010-01-04 18:43:19 -08003065 forceStopPackageLocked(packageName, pkgUid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003066 } else {
3067 throw new SecurityException(pid+" does not have permission:"+
3068 android.Manifest.permission.CLEAR_APP_USER_DATA+" to clear data" +
3069 "for process:"+packageName);
3070 }
3071 }
3072
3073 try {
3074 //clear application user data
3075 pm.clearApplicationUserData(packageName, observer);
3076 Intent intent = new Intent(Intent.ACTION_PACKAGE_DATA_CLEARED,
3077 Uri.fromParts("package", packageName, null));
3078 intent.putExtra(Intent.EXTRA_UID, pkgUid);
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07003079 broadcastIntentInPackage("android", Process.SYSTEM_UID, intent,
3080 null, null, 0, null, null, null, false, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003081 } catch (RemoteException e) {
3082 }
3083 } finally {
3084 Binder.restoreCallingIdentity(callingId);
3085 }
3086 return true;
3087 }
3088
Dianne Hackborn03abb812010-01-04 18:43:19 -08003089 public void killBackgroundProcesses(final String packageName) {
3090 if (checkCallingPermission(android.Manifest.permission.KILL_BACKGROUND_PROCESSES)
3091 != PackageManager.PERMISSION_GRANTED &&
3092 checkCallingPermission(android.Manifest.permission.RESTART_PACKAGES)
3093 != PackageManager.PERMISSION_GRANTED) {
3094 String msg = "Permission Denial: killBackgroundProcesses() from pid="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003095 + Binder.getCallingPid()
3096 + ", uid=" + Binder.getCallingUid()
Dianne Hackborn03abb812010-01-04 18:43:19 -08003097 + " requires " + android.Manifest.permission.KILL_BACKGROUND_PROCESSES;
Joe Onorato8a9b2202010-02-26 18:56:32 -08003098 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003099 throw new SecurityException(msg);
3100 }
3101
3102 long callingId = Binder.clearCallingIdentity();
3103 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003104 IPackageManager pm = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003105 int pkgUid = -1;
3106 synchronized(this) {
3107 try {
3108 pkgUid = pm.getPackageUid(packageName);
3109 } catch (RemoteException e) {
3110 }
3111 if (pkgUid == -1) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003112 Slog.w(TAG, "Invalid packageName: " + packageName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003113 return;
3114 }
Dianne Hackborn03abb812010-01-04 18:43:19 -08003115 killPackageProcessesLocked(packageName, pkgUid,
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003116 SECONDARY_SERVER_ADJ, false, true);
Dianne Hackborn03abb812010-01-04 18:43:19 -08003117 }
3118 } finally {
3119 Binder.restoreCallingIdentity(callingId);
3120 }
3121 }
3122
3123 public void forceStopPackage(final String packageName) {
3124 if (checkCallingPermission(android.Manifest.permission.FORCE_STOP_PACKAGES)
3125 != PackageManager.PERMISSION_GRANTED) {
3126 String msg = "Permission Denial: forceStopPackage() from pid="
3127 + Binder.getCallingPid()
3128 + ", uid=" + Binder.getCallingUid()
3129 + " requires " + android.Manifest.permission.FORCE_STOP_PACKAGES;
Joe Onorato8a9b2202010-02-26 18:56:32 -08003130 Slog.w(TAG, msg);
Dianne Hackborn03abb812010-01-04 18:43:19 -08003131 throw new SecurityException(msg);
3132 }
3133
3134 long callingId = Binder.clearCallingIdentity();
3135 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003136 IPackageManager pm = AppGlobals.getPackageManager();
Dianne Hackborn03abb812010-01-04 18:43:19 -08003137 int pkgUid = -1;
3138 synchronized(this) {
3139 try {
3140 pkgUid = pm.getPackageUid(packageName);
3141 } catch (RemoteException e) {
3142 }
3143 if (pkgUid == -1) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003144 Slog.w(TAG, "Invalid packageName: " + packageName);
Dianne Hackborn03abb812010-01-04 18:43:19 -08003145 return;
3146 }
3147 forceStopPackageLocked(packageName, pkgUid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003148 }
3149 } finally {
3150 Binder.restoreCallingIdentity(callingId);
3151 }
3152 }
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -07003153
3154 /*
3155 * The pkg name and uid have to be specified.
3156 * @see android.app.IActivityManager#killApplicationWithUid(java.lang.String, int)
3157 */
3158 public void killApplicationWithUid(String pkg, int uid) {
3159 if (pkg == null) {
3160 return;
3161 }
3162 // Make sure the uid is valid.
3163 if (uid < 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003164 Slog.w(TAG, "Invalid uid specified for pkg : " + pkg);
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -07003165 return;
3166 }
3167 int callerUid = Binder.getCallingUid();
3168 // Only the system server can kill an application
3169 if (callerUid == Process.SYSTEM_UID) {
Suchi Amalapurapud9d25762009-08-17 16:57:03 -07003170 // Post an aysnc message to kill the application
3171 Message msg = mHandler.obtainMessage(KILL_APPLICATION_MSG);
3172 msg.arg1 = uid;
3173 msg.arg2 = 0;
3174 msg.obj = pkg;
Suchi Amalapurapud50066f2009-08-18 16:57:41 -07003175 mHandler.sendMessage(msg);
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -07003176 } else {
3177 throw new SecurityException(callerUid + " cannot kill pkg: " +
3178 pkg);
3179 }
3180 }
3181
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -07003182 public void closeSystemDialogs(String reason) {
3183 Intent intent = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07003184 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -07003185 if (reason != null) {
3186 intent.putExtra("reason", reason);
3187 }
3188
3189 final int uid = Binder.getCallingUid();
3190 final long origId = Binder.clearCallingIdentity();
3191 synchronized (this) {
3192 int i = mWatchers.beginBroadcast();
3193 while (i > 0) {
3194 i--;
3195 IActivityWatcher w = mWatchers.getBroadcastItem(i);
3196 if (w != null) {
3197 try {
3198 w.closingSystemDialogs(reason);
3199 } catch (RemoteException e) {
3200 }
3201 }
3202 }
3203 mWatchers.finishBroadcast();
3204
Dianne Hackbornffa42482009-09-23 22:20:11 -07003205 mWindowManager.closeSystemDialogs(reason);
3206
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003207 for (i=mMainStack.mHistory.size()-1; i>=0; i--) {
3208 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
Dianne Hackbornffa42482009-09-23 22:20:11 -07003209 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003210 r.stack.finishActivityLocked(r, i,
Dianne Hackbornffa42482009-09-23 22:20:11 -07003211 Activity.RESULT_CANCELED, null, "close-sys");
3212 }
3213 }
3214
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -07003215 broadcastIntentLocked(null, null, intent, null,
3216 null, 0, null, null, null, false, false, -1, uid);
3217 }
3218 Binder.restoreCallingIdentity(origId);
3219 }
3220
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07003221 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003222 throws RemoteException {
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07003223 Debug.MemoryInfo[] infos = new Debug.MemoryInfo[pids.length];
3224 for (int i=pids.length-1; i>=0; i--) {
3225 infos[i] = new Debug.MemoryInfo();
3226 Debug.getMemoryInfo(pids[i], infos[i]);
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003227 }
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07003228 return infos;
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003229 }
Christopher Tate5e1ab332009-09-01 20:32:49 -07003230
3231 public void killApplicationProcess(String processName, int uid) {
3232 if (processName == null) {
3233 return;
3234 }
3235
3236 int callerUid = Binder.getCallingUid();
3237 // Only the system server can kill an application
3238 if (callerUid == Process.SYSTEM_UID) {
3239 synchronized (this) {
3240 ProcessRecord app = getProcessRecordLocked(processName, uid);
3241 if (app != null) {
3242 try {
3243 app.thread.scheduleSuicide();
3244 } catch (RemoteException e) {
3245 // If the other end already died, then our work here is done.
3246 }
3247 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003248 Slog.w(TAG, "Process/uid not found attempting kill of "
Christopher Tate5e1ab332009-09-01 20:32:49 -07003249 + processName + " / " + uid);
3250 }
3251 }
3252 } else {
3253 throw new SecurityException(callerUid + " cannot kill app process: " +
3254 processName);
3255 }
3256 }
3257
Dianne Hackborn03abb812010-01-04 18:43:19 -08003258 private void forceStopPackageLocked(final String packageName, int uid) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003259 forceStopPackageLocked(packageName, uid, false, false, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003260 Intent intent = new Intent(Intent.ACTION_PACKAGE_RESTARTED,
3261 Uri.fromParts("package", packageName, null));
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07003262 if (!mProcessesReady) {
3263 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
3264 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003265 intent.putExtra(Intent.EXTRA_UID, uid);
3266 broadcastIntentLocked(null, null, intent,
3267 null, null, 0, null, null, null,
3268 false, false, MY_PID, Process.SYSTEM_UID);
3269 }
3270
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003271 private final boolean killPackageProcessesLocked(String packageName, int uid,
3272 int minOomAdj, boolean callerWillRestart, boolean doit) {
Dianne Hackborn03abb812010-01-04 18:43:19 -08003273 ArrayList<ProcessRecord> procs = new ArrayList<ProcessRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003274
Dianne Hackborn03abb812010-01-04 18:43:19 -08003275 // Remove all processes this package may have touched: all with the
3276 // same UID (except for the system or root user), and all whose name
3277 // matches the package name.
3278 final String procNamePrefix = packageName + ":";
3279 for (SparseArray<ProcessRecord> apps : mProcessNames.getMap().values()) {
3280 final int NA = apps.size();
3281 for (int ia=0; ia<NA; ia++) {
3282 ProcessRecord app = apps.valueAt(ia);
3283 if (app.removed) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003284 if (doit) {
3285 procs.add(app);
3286 }
Dianne Hackborn03abb812010-01-04 18:43:19 -08003287 } else if ((uid > 0 && uid != Process.SYSTEM_UID && app.info.uid == uid)
3288 || app.processName.equals(packageName)
3289 || app.processName.startsWith(procNamePrefix)) {
3290 if (app.setAdj >= minOomAdj) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003291 if (!doit) {
3292 return true;
3293 }
Dianne Hackborn03abb812010-01-04 18:43:19 -08003294 app.removed = true;
3295 procs.add(app);
3296 }
3297 }
3298 }
3299 }
3300
3301 int N = procs.size();
3302 for (int i=0; i<N; i++) {
3303 removeProcessLocked(procs.get(i), callerWillRestart);
3304 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003305 return N > 0;
Dianne Hackborn03abb812010-01-04 18:43:19 -08003306 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08003307
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003308 private final boolean forceStopPackageLocked(String name, int uid,
3309 boolean callerWillRestart, boolean purgeCache, boolean doit) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003310 int i, N;
3311
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003312 if (uid < 0) {
3313 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003314 uid = AppGlobals.getPackageManager().getPackageUid(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003315 } catch (RemoteException e) {
3316 }
3317 }
3318
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003319 if (doit) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003320 Slog.i(TAG, "Force stopping package " + name + " uid=" + uid);
Dianne Hackborn03abb812010-01-04 18:43:19 -08003321
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003322 Iterator<SparseArray<Long>> badApps = mProcessCrashTimes.getMap().values().iterator();
3323 while (badApps.hasNext()) {
3324 SparseArray<Long> ba = badApps.next();
3325 if (ba.get(uid) != null) {
3326 badApps.remove();
3327 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003328 }
3329 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003330
3331 boolean didSomething = killPackageProcessesLocked(name, uid, -100,
3332 callerWillRestart, doit);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003333
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003334 for (i=mMainStack.mHistory.size()-1; i>=0; i--) {
3335 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003336 if (r.packageName.equals(name)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003337 if (!doit) {
3338 return true;
3339 }
3340 didSomething = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -08003341 Slog.i(TAG, " Force finishing activity " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003342 if (r.app != null) {
3343 r.app.removed = true;
3344 }
3345 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003346 r.stack.finishActivityLocked(r, i, Activity.RESULT_CANCELED, null, "uninstall");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003347 }
3348 }
3349
3350 ArrayList<ServiceRecord> services = new ArrayList<ServiceRecord>();
3351 for (ServiceRecord service : mServices.values()) {
3352 if (service.packageName.equals(name)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003353 if (!doit) {
3354 return true;
3355 }
3356 didSomething = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -08003357 Slog.i(TAG, " Force stopping service " + service);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003358 if (service.app != null) {
3359 service.app.removed = true;
3360 }
3361 service.app = null;
3362 services.add(service);
3363 }
3364 }
3365
3366 N = services.size();
3367 for (i=0; i<N; i++) {
3368 bringDownServiceLocked(services.get(i), true);
3369 }
3370
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003371 if (doit) {
3372 if (purgeCache) {
3373 AttributeCache ac = AttributeCache.instance();
3374 if (ac != null) {
3375 ac.removePackage(name);
3376 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08003377 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003378 mMainStack.resumeTopActivityLocked(null);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08003379 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003380
3381 return didSomething;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003382 }
3383
3384 private final boolean removeProcessLocked(ProcessRecord app, boolean callerWillRestart) {
3385 final String name = app.processName;
3386 final int uid = app.info.uid;
Joe Onorato8a9b2202010-02-26 18:56:32 -08003387 if (DEBUG_PROCESSES) Slog.d(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003388 TAG, "Force removing process " + app + " (" + name
3389 + "/" + uid + ")");
3390
3391 mProcessNames.remove(name, uid);
Dianne Hackborn860755f2010-06-03 18:47:52 -07003392 if (mHeavyWeightProcess == app) {
3393 mHeavyWeightProcess = null;
3394 mHandler.sendEmptyMessage(CANCEL_HEAVY_NOTIFICATION_MSG);
3395 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003396 boolean needRestart = false;
3397 if (app.pid > 0 && app.pid != MY_PID) {
3398 int pid = app.pid;
3399 synchronized (mPidsSelfLocked) {
3400 mPidsSelfLocked.remove(pid);
3401 mHandler.removeMessages(PROC_START_TIMEOUT_MSG, app);
3402 }
3403 handleAppDiedLocked(app, true);
Dianne Hackborndd71fc82009-12-16 19:24:32 -08003404 mLruProcesses.remove(app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003405 Process.killProcess(pid);
3406
3407 if (app.persistent) {
3408 if (!callerWillRestart) {
3409 addAppLocked(app.info);
3410 } else {
3411 needRestart = true;
3412 }
3413 }
3414 } else {
3415 mRemovedProcesses.add(app);
3416 }
3417
3418 return needRestart;
3419 }
3420
3421 private final void processStartTimedOutLocked(ProcessRecord app) {
3422 final int pid = app.pid;
3423 boolean gone = false;
3424 synchronized (mPidsSelfLocked) {
3425 ProcessRecord knownApp = mPidsSelfLocked.get(pid);
3426 if (knownApp != null && knownApp.thread == null) {
3427 mPidsSelfLocked.remove(pid);
3428 gone = true;
3429 }
3430 }
3431
3432 if (gone) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003433 Slog.w(TAG, "Process " + app + " failed to attach");
Doug Zongker2bec3d42009-12-04 12:52:44 -08003434 EventLog.writeEvent(EventLogTags.AM_PROCESS_START_TIMEOUT, pid, app.info.uid,
Dianne Hackbornf670ef72009-11-16 13:59:16 -08003435 app.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003436 mProcessNames.remove(app.processName, app.info.uid);
Dianne Hackborn860755f2010-06-03 18:47:52 -07003437 if (mHeavyWeightProcess == app) {
3438 mHeavyWeightProcess = null;
3439 mHandler.sendEmptyMessage(CANCEL_HEAVY_NOTIFICATION_MSG);
3440 }
Dianne Hackbornf670ef72009-11-16 13:59:16 -08003441 // Take care of any launching providers waiting for this process.
3442 checkAppInLaunchingProvidersLocked(app, true);
3443 // Take care of any services that are waiting for the process.
3444 for (int i=0; i<mPendingServices.size(); i++) {
3445 ServiceRecord sr = mPendingServices.get(i);
3446 if (app.info.uid == sr.appInfo.uid
3447 && app.processName.equals(sr.processName)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003448 Slog.w(TAG, "Forcing bringing down service: " + sr);
Dianne Hackbornf670ef72009-11-16 13:59:16 -08003449 mPendingServices.remove(i);
3450 i--;
3451 bringDownServiceLocked(sr, true);
3452 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003453 }
Dianne Hackbornf670ef72009-11-16 13:59:16 -08003454 Process.killProcess(pid);
Christopher Tate181fafa2009-05-14 11:12:14 -07003455 if (mBackupTarget != null && mBackupTarget.app.pid == pid) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003456 Slog.w(TAG, "Unattached app died before backup, skipping");
Christopher Tate181fafa2009-05-14 11:12:14 -07003457 try {
3458 IBackupManager bm = IBackupManager.Stub.asInterface(
3459 ServiceManager.getService(Context.BACKUP_SERVICE));
3460 bm.agentDisconnected(app.info.packageName);
3461 } catch (RemoteException e) {
3462 // Can't happen; the backup manager is local
3463 }
3464 }
Dianne Hackbornf670ef72009-11-16 13:59:16 -08003465 if (mPendingBroadcast != null && mPendingBroadcast.curApp.pid == pid) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003466 Slog.w(TAG, "Unattached app died before broadcast acknowledged, skipping");
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07003467 mPendingBroadcast.state = BroadcastRecord.IDLE;
3468 mPendingBroadcast.nextReceiver = mPendingBroadcastRecvIndex;
Dianne Hackbornf670ef72009-11-16 13:59:16 -08003469 mPendingBroadcast = null;
3470 scheduleBroadcastsLocked();
3471 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003472 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003473 Slog.w(TAG, "Spurious process start timeout - pid not known for " + app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003474 }
3475 }
3476
3477 private final boolean attachApplicationLocked(IApplicationThread thread,
3478 int pid) {
3479
3480 // Find the application record that is being attached... either via
3481 // the pid if we are running in multiple processes, or just pull the
3482 // next app record if we are emulating process with anonymous threads.
3483 ProcessRecord app;
3484 if (pid != MY_PID && pid >= 0) {
3485 synchronized (mPidsSelfLocked) {
3486 app = mPidsSelfLocked.get(pid);
3487 }
3488 } else if (mStartingProcesses.size() > 0) {
3489 app = mStartingProcesses.remove(0);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07003490 app.setPid(pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003491 } else {
3492 app = null;
3493 }
3494
3495 if (app == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003496 Slog.w(TAG, "No pending application record for pid " + pid
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003497 + " (IApplicationThread " + thread + "); dropping process");
Doug Zongker2bec3d42009-12-04 12:52:44 -08003498 EventLog.writeEvent(EventLogTags.AM_DROP_PROCESS, pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003499 if (pid > 0 && pid != MY_PID) {
3500 Process.killProcess(pid);
3501 } else {
3502 try {
3503 thread.scheduleExit();
3504 } catch (Exception e) {
3505 // Ignore exceptions.
3506 }
3507 }
3508 return false;
3509 }
3510
3511 // If this application record is still attached to a previous
3512 // process, clean it up now.
3513 if (app.thread != null) {
3514 handleAppDiedLocked(app, true);
3515 }
3516
3517 // Tell the process all about itself.
3518
Joe Onorato8a9b2202010-02-26 18:56:32 -08003519 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003520 TAG, "Binding process pid " + pid + " to record " + app);
3521
3522 String processName = app.processName;
3523 try {
3524 thread.asBinder().linkToDeath(new AppDeathRecipient(
3525 app, pid, thread), 0);
3526 } catch (RemoteException e) {
3527 app.resetPackageList();
3528 startProcessLocked(app, "link fail", processName);
3529 return false;
3530 }
3531
Doug Zongker2bec3d42009-12-04 12:52:44 -08003532 EventLog.writeEvent(EventLogTags.AM_PROC_BOUND, app.pid, app.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003533
3534 app.thread = thread;
3535 app.curAdj = app.setAdj = -100;
Dianne Hackborn09c916b2009-12-08 14:50:51 -08003536 app.curSchedGroup = Process.THREAD_GROUP_DEFAULT;
3537 app.setSchedGroup = Process.THREAD_GROUP_BG_NONINTERACTIVE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003538 app.forcingToForeground = null;
3539 app.foregroundServices = false;
3540 app.debugging = false;
3541
3542 mHandler.removeMessages(PROC_START_TIMEOUT_MSG, app);
3543
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07003544 boolean normalMode = mProcessesReady || isAllowedWhileBooting(app.info);
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003545 List providers = normalMode ? generateApplicationProvidersLocked(app) : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003546
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003547 if (!normalMode) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003548 Slog.i(TAG, "Launching preboot mode app: " + app);
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003549 }
3550
Joe Onorato8a9b2202010-02-26 18:56:32 -08003551 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003552 TAG, "New app record " + app
3553 + " thread=" + thread.asBinder() + " pid=" + pid);
3554 try {
3555 int testMode = IApplicationThread.DEBUG_OFF;
3556 if (mDebugApp != null && mDebugApp.equals(processName)) {
3557 testMode = mWaitForDebugger
3558 ? IApplicationThread.DEBUG_WAIT
3559 : IApplicationThread.DEBUG_ON;
3560 app.debugging = true;
3561 if (mDebugTransient) {
3562 mDebugApp = mOrigDebugApp;
3563 mWaitForDebugger = mOrigWaitForDebugger;
3564 }
3565 }
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003566
Christopher Tate181fafa2009-05-14 11:12:14 -07003567 // If the app is being launched for restore or full backup, set it up specially
3568 boolean isRestrictedBackupMode = false;
3569 if (mBackupTarget != null && mBackupAppName.equals(processName)) {
3570 isRestrictedBackupMode = (mBackupTarget.backupMode == BackupRecord.RESTORE)
3571 || (mBackupTarget.backupMode == BackupRecord.BACKUP_FULL);
3572 }
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003573
Dianne Hackbornd7f6daa2009-06-22 17:06:35 -07003574 ensurePackageDexOpt(app.instrumentationInfo != null
3575 ? app.instrumentationInfo.packageName
3576 : app.info.packageName);
3577 if (app.instrumentationClass != null) {
3578 ensurePackageDexOpt(app.instrumentationClass.getPackageName());
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -07003579 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08003580 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Binding proc "
Dianne Hackborndc6b6352009-09-30 14:20:09 -07003581 + processName + " with config " + mConfiguration);
Dianne Hackborn1655be42009-05-08 14:29:01 -07003582 thread.bindApplication(processName, app.instrumentationInfo != null
3583 ? app.instrumentationInfo : app.info, providers,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003584 app.instrumentationClass, app.instrumentationProfileFile,
3585 app.instrumentationArguments, app.instrumentationWatcher, testMode,
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003586 isRestrictedBackupMode || !normalMode,
3587 mConfiguration, getCommonServicesLocked());
Dianne Hackborndd71fc82009-12-16 19:24:32 -08003588 updateLruProcessLocked(app, false, true);
Dianne Hackbornfd12af42009-08-27 00:44:33 -07003589 app.lastRequestedGc = app.lastLowMemory = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003590 } catch (Exception e) {
3591 // todo: Yikes! What should we do? For now we will try to
3592 // start another process, but that could easily get us in
3593 // an infinite loop of restarting processes...
Joe Onorato8a9b2202010-02-26 18:56:32 -08003594 Slog.w(TAG, "Exception thrown during bind!", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003595
3596 app.resetPackageList();
3597 startProcessLocked(app, "bind fail", processName);
3598 return false;
3599 }
3600
3601 // Remove this record from the list of starting applications.
3602 mPersistentStartingProcesses.remove(app);
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07003603 if (DEBUG_PROCESSES && mProcessesOnHold.contains(app)) Slog.v(TAG,
3604 "Attach application locked removing on hold: " + app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003605 mProcessesOnHold.remove(app);
3606
3607 boolean badApp = false;
3608 boolean didSomething = false;
3609
3610 // See if the top visible activity is waiting to run in this process...
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003611 ActivityRecord hr = mMainStack.topRunningActivityLocked(null);
Christopher Tate04c0af82010-06-07 18:35:20 -07003612 if (hr != null && normalMode) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003613 if (hr.app == null && app.info.uid == hr.info.applicationInfo.uid
3614 && processName.equals(hr.processName)) {
3615 try {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003616 if (mMainStack.realStartActivityLocked(hr, app, true, true)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003617 didSomething = true;
3618 }
3619 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003620 Slog.w(TAG, "Exception in new application when starting activity "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003621 + hr.intent.getComponent().flattenToShortString(), e);
3622 badApp = true;
3623 }
3624 } else {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003625 mMainStack.ensureActivitiesVisibleLocked(hr, null, processName, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003626 }
3627 }
3628
3629 // Find any services that should be running in this process...
3630 if (!badApp && mPendingServices.size() > 0) {
3631 ServiceRecord sr = null;
3632 try {
3633 for (int i=0; i<mPendingServices.size(); i++) {
3634 sr = mPendingServices.get(i);
3635 if (app.info.uid != sr.appInfo.uid
3636 || !processName.equals(sr.processName)) {
3637 continue;
3638 }
3639
3640 mPendingServices.remove(i);
3641 i--;
3642 realStartServiceLocked(sr, app);
3643 didSomething = true;
3644 }
3645 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003646 Slog.w(TAG, "Exception in new application when starting service "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003647 + sr.shortName, e);
3648 badApp = true;
3649 }
3650 }
3651
3652 // Check if the next broadcast receiver is in this process...
3653 BroadcastRecord br = mPendingBroadcast;
3654 if (!badApp && br != null && br.curApp == app) {
3655 try {
3656 mPendingBroadcast = null;
3657 processCurBroadcastLocked(br, app);
3658 didSomething = true;
3659 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003660 Slog.w(TAG, "Exception in new application when starting receiver "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003661 + br.curComponent.flattenToShortString(), e);
3662 badApp = true;
Jeff Brown4d94a762010-09-23 11:33:28 -07003663 logBroadcastReceiverDiscardLocked(br);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003664 finishReceiverLocked(br.receiver, br.resultCode, br.resultData,
3665 br.resultExtras, br.resultAbort, true);
3666 scheduleBroadcastsLocked();
Magnus Edlund7bb25812010-02-24 15:45:06 +01003667 // We need to reset the state if we fails to start the receiver.
3668 br.state = BroadcastRecord.IDLE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003669 }
3670 }
3671
Christopher Tate181fafa2009-05-14 11:12:14 -07003672 // Check whether the next backup agent is in this process...
3673 if (!badApp && mBackupTarget != null && mBackupTarget.appInfo.uid == app.info.uid) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003674 if (DEBUG_BACKUP) Slog.v(TAG, "New app is backup target, launching agent for " + app);
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -07003675 ensurePackageDexOpt(mBackupTarget.appInfo.packageName);
Christopher Tate181fafa2009-05-14 11:12:14 -07003676 try {
3677 thread.scheduleCreateBackupAgent(mBackupTarget.appInfo, mBackupTarget.backupMode);
3678 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003679 Slog.w(TAG, "Exception scheduling backup agent creation: ");
Christopher Tate181fafa2009-05-14 11:12:14 -07003680 e.printStackTrace();
3681 }
3682 }
3683
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003684 if (badApp) {
3685 // todo: Also need to kill application to deal with all
3686 // kinds of exceptions.
3687 handleAppDiedLocked(app, false);
3688 return false;
3689 }
3690
3691 if (!didSomething) {
3692 updateOomAdjLocked();
3693 }
3694
3695 return true;
3696 }
3697
3698 public final void attachApplication(IApplicationThread thread) {
3699 synchronized (this) {
3700 int callingPid = Binder.getCallingPid();
3701 final long origId = Binder.clearCallingIdentity();
3702 attachApplicationLocked(thread, callingPid);
3703 Binder.restoreCallingIdentity(origId);
3704 }
3705 }
3706
Dianne Hackborne88846e2009-09-30 21:34:25 -07003707 public final void activityIdle(IBinder token, Configuration config) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003708 final long origId = Binder.clearCallingIdentity();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003709 mMainStack.activityIdleInternal(token, false, config);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003710 Binder.restoreCallingIdentity(origId);
3711 }
3712
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003713 void enableScreenAfterBoot() {
Doug Zongker2bec3d42009-12-04 12:52:44 -08003714 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_ENABLE_SCREEN,
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003715 SystemClock.uptimeMillis());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003716 mWindowManager.enableScreenAfterBoot();
3717 }
3718
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003719 final void finishBooting() {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003720 IntentFilter pkgFilter = new IntentFilter();
3721 pkgFilter.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
3722 pkgFilter.addDataScheme("package");
3723 mContext.registerReceiver(new BroadcastReceiver() {
3724 @Override
3725 public void onReceive(Context context, Intent intent) {
3726 String[] pkgs = intent.getStringArrayExtra(Intent.EXTRA_PACKAGES);
3727 if (pkgs != null) {
3728 for (String pkg : pkgs) {
Vairavan Srinivasan61f07652010-07-22 13:36:40 -07003729 synchronized (ActivityManagerService.this) {
3730 if (forceStopPackageLocked(pkg, -1, false, false, false)) {
3731 setResultCode(Activity.RESULT_OK);
3732 return;
3733 }
3734 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003735 }
3736 }
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003737 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003738 }, pkgFilter);
3739
3740 synchronized (this) {
3741 // Ensure that any processes we had put on hold are now started
3742 // up.
3743 final int NP = mProcessesOnHold.size();
3744 if (NP > 0) {
3745 ArrayList<ProcessRecord> procs =
3746 new ArrayList<ProcessRecord>(mProcessesOnHold);
3747 for (int ip=0; ip<NP; ip++) {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07003748 if (DEBUG_PROCESSES) Slog.v(TAG, "Starting process on hold: "
3749 + procs.get(ip));
3750 startProcessLocked(procs.get(ip), "on-hold", null);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003751 }
3752 }
3753
3754 if (mFactoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07003755 // Start looking for apps that are abusing wake locks.
3756 Message nmsg = mHandler.obtainMessage(CHECK_EXCESSIVE_WAKE_LOCKS_MSG);
Dianne Hackborn287952c2010-09-22 22:34:31 -07003757 mHandler.sendMessageDelayed(nmsg, POWER_CHECK_DELAY);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003758 // Tell anyone interested that we are done booting!
Dianne Hackbornf4c454b2010-08-11 12:47:41 -07003759 SystemProperties.set("sys.boot_completed", "1");
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003760 broadcastIntentLocked(null, null,
3761 new Intent(Intent.ACTION_BOOT_COMPLETED, null),
3762 null, null, 0, null, null,
3763 android.Manifest.permission.RECEIVE_BOOT_COMPLETED,
3764 false, false, MY_PID, Process.SYSTEM_UID);
3765 }
3766 }
3767 }
3768
3769 final void ensureBootCompleted() {
3770 boolean booting;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07003771 boolean enableScreen;
3772 synchronized (this) {
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003773 booting = mBooting;
3774 mBooting = false;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07003775 enableScreen = !mBooted;
3776 mBooted = true;
3777 }
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003778
3779 if (booting) {
3780 finishBooting();
3781 }
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07003782
3783 if (enableScreen) {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07003784 enableScreenAfterBoot();
3785 }
3786 }
3787
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003788 public final void activityPaused(IBinder token) {
3789 final long origId = Binder.clearCallingIdentity();
3790 mMainStack.activityPaused(token, false);
3791 Binder.restoreCallingIdentity(origId);
3792 }
3793
3794 public final void activityStopped(IBinder token, Bundle icicle, Bitmap thumbnail,
3795 CharSequence description) {
3796 if (localLOGV) Slog.v(
3797 TAG, "Activity stopped: token=" + token);
3798
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003799 // Refuse possible leaked file descriptors
3800 if (icicle != null && icicle.hasFileDescriptors()) {
3801 throw new IllegalArgumentException("File descriptors passed in Bundle");
3802 }
3803
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003804 ActivityRecord r = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003805
3806 final long origId = Binder.clearCallingIdentity();
3807
3808 synchronized (this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003809 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003810 if (index >= 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003811 r = (ActivityRecord)mMainStack.mHistory.get(index);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003812 r.icicle = icicle;
3813 r.haveState = true;
3814 if (thumbnail != null) {
3815 r.thumbnail = thumbnail;
Dianne Hackbornd2835932010-12-13 16:28:46 -08003816 if (r.task != null) {
3817 r.task.lastThumbnail = r.thumbnail;
3818 }
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003819 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003820 r.description = description;
Dianne Hackbornd2835932010-12-13 16:28:46 -08003821 if (r.task != null) {
3822 r.task.lastDescription = r.description;
3823 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003824 r.stopped = true;
3825 r.state = ActivityState.STOPPED;
3826 if (!r.finishing) {
3827 if (r.configDestroy) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003828 r.stack.destroyActivityLocked(r, true);
3829 r.stack.resumeTopActivityLocked(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003830 }
3831 }
3832 }
3833 }
3834
3835 if (r != null) {
3836 sendPendingThumbnail(r, null, null, null, false);
3837 }
3838
3839 trimApplications();
3840
3841 Binder.restoreCallingIdentity(origId);
3842 }
3843
3844 public final void activityDestroyed(IBinder token) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003845 if (DEBUG_SWITCH) Slog.v(TAG, "ACTIVITY DESTROYED: " + token);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003846 mMainStack.activityDestroyed(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003847 }
3848
3849 public String getCallingPackage(IBinder token) {
3850 synchronized (this) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003851 ActivityRecord r = getCallingRecordLocked(token);
Dianne Hackborn9bbcb912009-10-20 15:42:38 -07003852 return r != null && r.app != null ? r.info.packageName : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003853 }
3854 }
3855
3856 public ComponentName getCallingActivity(IBinder token) {
3857 synchronized (this) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003858 ActivityRecord r = getCallingRecordLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003859 return r != null ? r.intent.getComponent() : null;
3860 }
3861 }
3862
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003863 private ActivityRecord getCallingRecordLocked(IBinder token) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003864 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003865 if (index >= 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003866 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003867 if (r != null) {
3868 return r.resultTo;
3869 }
3870 }
3871 return null;
3872 }
3873
3874 public ComponentName getActivityClassForToken(IBinder token) {
3875 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003876 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003877 if (index >= 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003878 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003879 return r.intent.getComponent();
3880 }
3881 return null;
3882 }
3883 }
3884
3885 public String getPackageForToken(IBinder token) {
3886 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003887 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003888 if (index >= 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003889 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003890 return r.packageName;
3891 }
3892 return null;
3893 }
3894 }
3895
3896 public IIntentSender getIntentSender(int type,
3897 String packageName, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003898 int requestCode, Intent[] intents, String[] resolvedTypes, int flags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003899 // Refuse possible leaked file descriptors
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003900 if (intents != null) {
3901 if (intents.length < 1) {
3902 throw new IllegalArgumentException("Intents array length must be >= 1");
3903 }
3904 for (int i=0; i<intents.length; i++) {
3905 Intent intent = intents[i];
3906 if (intent == null) {
3907 throw new IllegalArgumentException("Null intent at index " + i);
3908 }
3909 if (intent.hasFileDescriptors()) {
3910 throw new IllegalArgumentException("File descriptors passed in Intent");
3911 }
3912 if (type == INTENT_SENDER_BROADCAST &&
3913 (intent.getFlags()&Intent.FLAG_RECEIVER_BOOT_UPGRADE) != 0) {
3914 throw new IllegalArgumentException(
3915 "Can't use FLAG_RECEIVER_BOOT_UPGRADE here");
3916 }
3917 intents[i] = new Intent(intent);
3918 }
3919 if (resolvedTypes != null && resolvedTypes.length != intents.length) {
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003920 throw new IllegalArgumentException(
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003921 "Intent array length does not match resolvedTypes length");
Dianne Hackborn9acc0302009-08-25 00:27:12 -07003922 }
3923 }
3924
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003925 synchronized(this) {
3926 int callingUid = Binder.getCallingUid();
3927 try {
3928 if (callingUid != 0 && callingUid != Process.SYSTEM_UID &&
3929 Process.supportsProcesses()) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003930 int uid = AppGlobals.getPackageManager()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003931 .getPackageUid(packageName);
3932 if (uid != Binder.getCallingUid()) {
3933 String msg = "Permission Denial: getIntentSender() from pid="
3934 + Binder.getCallingPid()
3935 + ", uid=" + Binder.getCallingUid()
3936 + ", (need uid=" + uid + ")"
3937 + " is not allowed to send as package " + packageName;
Joe Onorato8a9b2202010-02-26 18:56:32 -08003938 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003939 throw new SecurityException(msg);
3940 }
3941 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07003942
3943 return getIntentSenderLocked(type, packageName, callingUid,
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003944 token, resultWho, requestCode, intents, resolvedTypes, flags);
Dianne Hackborn860755f2010-06-03 18:47:52 -07003945
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003946 } catch (RemoteException e) {
3947 throw new SecurityException(e);
3948 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07003949 }
3950 }
3951
3952 IIntentSender getIntentSenderLocked(int type,
3953 String packageName, int callingUid, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003954 int requestCode, Intent[] intents, String[] resolvedTypes, int flags) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003955 ActivityRecord activity = null;
Dianne Hackborn860755f2010-06-03 18:47:52 -07003956 if (type == INTENT_SENDER_ACTIVITY_RESULT) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003957 int index = mMainStack.indexOfTokenLocked(token);
Dianne Hackborn860755f2010-06-03 18:47:52 -07003958 if (index < 0) {
3959 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003960 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003961 activity = (ActivityRecord)mMainStack.mHistory.get(index);
Dianne Hackborn860755f2010-06-03 18:47:52 -07003962 if (activity.finishing) {
3963 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003964 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07003965 }
3966
3967 final boolean noCreate = (flags&PendingIntent.FLAG_NO_CREATE) != 0;
3968 final boolean cancelCurrent = (flags&PendingIntent.FLAG_CANCEL_CURRENT) != 0;
3969 final boolean updateCurrent = (flags&PendingIntent.FLAG_UPDATE_CURRENT) != 0;
3970 flags &= ~(PendingIntent.FLAG_NO_CREATE|PendingIntent.FLAG_CANCEL_CURRENT
3971 |PendingIntent.FLAG_UPDATE_CURRENT);
3972
3973 PendingIntentRecord.Key key = new PendingIntentRecord.Key(
3974 type, packageName, activity, resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003975 requestCode, intents, resolvedTypes, flags);
Dianne Hackborn860755f2010-06-03 18:47:52 -07003976 WeakReference<PendingIntentRecord> ref;
3977 ref = mIntentSenderRecords.get(key);
3978 PendingIntentRecord rec = ref != null ? ref.get() : null;
3979 if (rec != null) {
3980 if (!cancelCurrent) {
3981 if (updateCurrent) {
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003982 if (rec.key.requestIntent != null) {
3983 rec.key.requestIntent.replaceExtras(intents != null ? intents[0] : null);
3984 }
3985 if (intents != null) {
3986 intents[intents.length-1] = rec.key.requestIntent;
3987 rec.key.allIntents = intents;
3988 rec.key.allResolvedTypes = resolvedTypes;
3989 } else {
3990 rec.key.allIntents = null;
3991 rec.key.allResolvedTypes = null;
3992 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07003993 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003994 return rec;
3995 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07003996 rec.canceled = true;
3997 mIntentSenderRecords.remove(key);
3998 }
3999 if (noCreate) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004000 return rec;
4001 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07004002 rec = new PendingIntentRecord(this, key, callingUid);
4003 mIntentSenderRecords.put(key, rec.ref);
4004 if (type == INTENT_SENDER_ACTIVITY_RESULT) {
4005 if (activity.pendingResults == null) {
4006 activity.pendingResults
4007 = new HashSet<WeakReference<PendingIntentRecord>>();
4008 }
4009 activity.pendingResults.add(rec.ref);
4010 }
4011 return rec;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004012 }
4013
4014 public void cancelIntentSender(IIntentSender sender) {
4015 if (!(sender instanceof PendingIntentRecord)) {
4016 return;
4017 }
4018 synchronized(this) {
4019 PendingIntentRecord rec = (PendingIntentRecord)sender;
4020 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004021 int uid = AppGlobals.getPackageManager()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004022 .getPackageUid(rec.key.packageName);
4023 if (uid != Binder.getCallingUid()) {
4024 String msg = "Permission Denial: cancelIntentSender() from pid="
4025 + Binder.getCallingPid()
4026 + ", uid=" + Binder.getCallingUid()
4027 + " is not allowed to cancel packges "
4028 + rec.key.packageName;
Joe Onorato8a9b2202010-02-26 18:56:32 -08004029 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004030 throw new SecurityException(msg);
4031 }
4032 } catch (RemoteException e) {
4033 throw new SecurityException(e);
4034 }
4035 cancelIntentSenderLocked(rec, true);
4036 }
4037 }
4038
4039 void cancelIntentSenderLocked(PendingIntentRecord rec, boolean cleanActivity) {
4040 rec.canceled = true;
4041 mIntentSenderRecords.remove(rec.key);
4042 if (cleanActivity && rec.key.activity != null) {
4043 rec.key.activity.pendingResults.remove(rec.ref);
4044 }
4045 }
4046
4047 public String getPackageForIntentSender(IIntentSender pendingResult) {
4048 if (!(pendingResult instanceof PendingIntentRecord)) {
4049 return null;
4050 }
Brad Fitzpatrickb213d102010-04-19 11:58:52 -07004051 try {
4052 PendingIntentRecord res = (PendingIntentRecord)pendingResult;
4053 return res.key.packageName;
4054 } catch (ClassCastException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004055 }
4056 return null;
4057 }
4058
4059 public void setProcessLimit(int max) {
4060 enforceCallingPermission(android.Manifest.permission.SET_PROCESS_LIMIT,
4061 "setProcessLimit()");
4062 mProcessLimit = max;
4063 }
4064
4065 public int getProcessLimit() {
4066 return mProcessLimit;
4067 }
4068
4069 void foregroundTokenDied(ForegroundToken token) {
4070 synchronized (ActivityManagerService.this) {
4071 synchronized (mPidsSelfLocked) {
4072 ForegroundToken cur
4073 = mForegroundProcesses.get(token.pid);
4074 if (cur != token) {
4075 return;
4076 }
4077 mForegroundProcesses.remove(token.pid);
4078 ProcessRecord pr = mPidsSelfLocked.get(token.pid);
4079 if (pr == null) {
4080 return;
4081 }
4082 pr.forcingToForeground = null;
4083 pr.foregroundServices = false;
4084 }
4085 updateOomAdjLocked();
4086 }
4087 }
4088
4089 public void setProcessForeground(IBinder token, int pid, boolean isForeground) {
4090 enforceCallingPermission(android.Manifest.permission.SET_PROCESS_LIMIT,
4091 "setProcessForeground()");
4092 synchronized(this) {
4093 boolean changed = false;
4094
4095 synchronized (mPidsSelfLocked) {
4096 ProcessRecord pr = mPidsSelfLocked.get(pid);
4097 if (pr == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004098 Slog.w(TAG, "setProcessForeground called on unknown pid: " + pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004099 return;
4100 }
4101 ForegroundToken oldToken = mForegroundProcesses.get(pid);
4102 if (oldToken != null) {
4103 oldToken.token.unlinkToDeath(oldToken, 0);
4104 mForegroundProcesses.remove(pid);
4105 pr.forcingToForeground = null;
4106 changed = true;
4107 }
4108 if (isForeground && token != null) {
4109 ForegroundToken newToken = new ForegroundToken() {
4110 public void binderDied() {
4111 foregroundTokenDied(this);
4112 }
4113 };
4114 newToken.pid = pid;
4115 newToken.token = token;
4116 try {
4117 token.linkToDeath(newToken, 0);
4118 mForegroundProcesses.put(pid, newToken);
4119 pr.forcingToForeground = token;
4120 changed = true;
4121 } catch (RemoteException e) {
4122 // If the process died while doing this, we will later
4123 // do the cleanup with the process death link.
4124 }
4125 }
4126 }
4127
4128 if (changed) {
4129 updateOomAdjLocked();
4130 }
4131 }
4132 }
4133
4134 // =========================================================
4135 // PERMISSIONS
4136 // =========================================================
4137
4138 static class PermissionController extends IPermissionController.Stub {
4139 ActivityManagerService mActivityManagerService;
4140 PermissionController(ActivityManagerService activityManagerService) {
4141 mActivityManagerService = activityManagerService;
4142 }
4143
4144 public boolean checkPermission(String permission, int pid, int uid) {
4145 return mActivityManagerService.checkPermission(permission, pid,
4146 uid) == PackageManager.PERMISSION_GRANTED;
4147 }
4148 }
4149
4150 /**
4151 * This can be called with or without the global lock held.
4152 */
4153 int checkComponentPermission(String permission, int pid, int uid,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08004154 int owningUid, boolean exported) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004155 // We might be performing an operation on behalf of an indirect binder
4156 // invocation, e.g. via {@link #openContentUri}. Check and adjust the
4157 // client identity accordingly before proceeding.
4158 Identity tlsIdentity = sCallerIdentity.get();
4159 if (tlsIdentity != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004160 Slog.d(TAG, "checkComponentPermission() adjusting {pid,uid} to {"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004161 + tlsIdentity.pid + "," + tlsIdentity.uid + "}");
4162 uid = tlsIdentity.uid;
4163 pid = tlsIdentity.pid;
4164 }
4165
4166 // Root, system server and our own process get to do everything.
4167 if (uid == 0 || uid == Process.SYSTEM_UID || pid == MY_PID ||
4168 !Process.supportsProcesses()) {
4169 return PackageManager.PERMISSION_GRANTED;
4170 }
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08004171 // If there is a uid that owns whatever is being accessed, it has
4172 // blanket access to it regardless of the permissions it requires.
4173 if (owningUid >= 0 && uid == owningUid) {
4174 return PackageManager.PERMISSION_GRANTED;
4175 }
4176 // If the target is not exported, then nobody else can get to it.
4177 if (!exported) {
4178 Slog.w(TAG, "Permission denied: checkComponentPermission() owningUid=" + owningUid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004179 return PackageManager.PERMISSION_DENIED;
4180 }
4181 if (permission == null) {
4182 return PackageManager.PERMISSION_GRANTED;
4183 }
4184 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004185 return AppGlobals.getPackageManager()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004186 .checkUidPermission(permission, uid);
4187 } catch (RemoteException e) {
4188 // Should never happen, but if it does... deny!
Joe Onorato8a9b2202010-02-26 18:56:32 -08004189 Slog.e(TAG, "PackageManager is dead?!?", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004190 }
4191 return PackageManager.PERMISSION_DENIED;
4192 }
4193
4194 /**
4195 * As the only public entry point for permissions checking, this method
4196 * can enforce the semantic that requesting a check on a null global
4197 * permission is automatically denied. (Internally a null permission
4198 * string is used when calling {@link #checkComponentPermission} in cases
4199 * when only uid-based security is needed.)
4200 *
4201 * This can be called with or without the global lock held.
4202 */
4203 public int checkPermission(String permission, int pid, int uid) {
4204 if (permission == null) {
4205 return PackageManager.PERMISSION_DENIED;
4206 }
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08004207 return checkComponentPermission(permission, pid, uid, -1, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004208 }
4209
4210 /**
4211 * Binder IPC calls go through the public entry point.
4212 * This can be called with or without the global lock held.
4213 */
4214 int checkCallingPermission(String permission) {
4215 return checkPermission(permission,
4216 Binder.getCallingPid(),
4217 Binder.getCallingUid());
4218 }
4219
4220 /**
4221 * This can be called with or without the global lock held.
4222 */
4223 void enforceCallingPermission(String permission, String func) {
4224 if (checkCallingPermission(permission)
4225 == PackageManager.PERMISSION_GRANTED) {
4226 return;
4227 }
4228
4229 String msg = "Permission Denial: " + func + " from pid="
4230 + Binder.getCallingPid()
4231 + ", uid=" + Binder.getCallingUid()
4232 + " requires " + permission;
Joe Onorato8a9b2202010-02-26 18:56:32 -08004233 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004234 throw new SecurityException(msg);
4235 }
4236
4237 private final boolean checkHoldingPermissionsLocked(IPackageManager pm,
Dianne Hackborn48058e82010-09-27 16:53:23 -07004238 ProviderInfo pi, Uri uri, int uid, int modeFlags) {
4239 boolean readPerm = (modeFlags&Intent.FLAG_GRANT_READ_URI_PERMISSION) == 0;
4240 boolean writePerm = (modeFlags&Intent.FLAG_GRANT_WRITE_URI_PERMISSION) == 0;
4241 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
4242 "checkHoldingPermissionsLocked: uri=" + uri + " uid=" + uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004243 try {
Dianne Hackborn48058e82010-09-27 16:53:23 -07004244 // Is the component private from the target uid?
4245 final boolean prv = !pi.exported && pi.applicationInfo.uid != uid;
4246
4247 // Acceptable if the there is no read permission needed from the
4248 // target or the target is holding the read permission.
4249 if (!readPerm) {
4250 if ((!prv && pi.readPermission == null) ||
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004251 (pm.checkUidPermission(pi.readPermission, uid)
Dianne Hackborn48058e82010-09-27 16:53:23 -07004252 == PackageManager.PERMISSION_GRANTED)) {
4253 readPerm = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004254 }
4255 }
Dianne Hackborn48058e82010-09-27 16:53:23 -07004256
4257 // Acceptable if the there is no write permission needed from the
4258 // target or the target is holding the read permission.
4259 if (!writePerm) {
4260 if (!prv && (pi.writePermission == null) ||
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004261 (pm.checkUidPermission(pi.writePermission, uid)
Dianne Hackborn48058e82010-09-27 16:53:23 -07004262 == PackageManager.PERMISSION_GRANTED)) {
4263 writePerm = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004264 }
4265 }
Dianne Hackborn48058e82010-09-27 16:53:23 -07004266
4267 // Acceptable if there is a path permission matching the URI that
4268 // the target holds the permission on.
4269 PathPermission[] pps = pi.pathPermissions;
4270 if (pps != null && (!readPerm || !writePerm)) {
4271 final String path = uri.getPath();
4272 int i = pps.length;
4273 while (i > 0 && (!readPerm || !writePerm)) {
4274 i--;
4275 PathPermission pp = pps[i];
4276 if (!readPerm) {
4277 final String pprperm = pp.getReadPermission();
4278 if (DEBUG_URI_PERMISSION) Slog.v(TAG, "Checking read perm for "
4279 + pprperm + " for " + pp.getPath()
4280 + ": match=" + pp.match(path)
4281 + " check=" + pm.checkUidPermission(pprperm, uid));
4282 if (pprperm != null && pp.match(path) &&
4283 (pm.checkUidPermission(pprperm, uid)
4284 == PackageManager.PERMISSION_GRANTED)) {
4285 readPerm = true;
4286 }
4287 }
4288 if (!writePerm) {
4289 final String ppwperm = pp.getWritePermission();
4290 if (DEBUG_URI_PERMISSION) Slog.v(TAG, "Checking write perm "
4291 + ppwperm + " for " + pp.getPath()
4292 + ": match=" + pp.match(path)
4293 + " check=" + pm.checkUidPermission(ppwperm, uid));
4294 if (ppwperm != null && pp.match(path) &&
4295 (pm.checkUidPermission(ppwperm, uid)
4296 == PackageManager.PERMISSION_GRANTED)) {
4297 writePerm = true;
4298 }
4299 }
4300 }
Dianne Hackbornb424b632010-08-18 15:59:05 -07004301 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004302 } catch (RemoteException e) {
4303 return false;
4304 }
Dianne Hackborn48058e82010-09-27 16:53:23 -07004305
4306 return readPerm && writePerm;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004307 }
4308
4309 private final boolean checkUriPermissionLocked(Uri uri, int uid,
4310 int modeFlags) {
4311 // Root gets to do everything.
4312 if (uid == 0 || !Process.supportsProcesses()) {
4313 return true;
4314 }
4315 HashMap<Uri, UriPermission> perms = mGrantedUriPermissions.get(uid);
4316 if (perms == null) return false;
4317 UriPermission perm = perms.get(uri);
4318 if (perm == null) return false;
4319 return (modeFlags&perm.modeFlags) == modeFlags;
4320 }
4321
4322 public int checkUriPermission(Uri uri, int pid, int uid, int modeFlags) {
4323 // Another redirected-binder-call permissions check as in
4324 // {@link checkComponentPermission}.
4325 Identity tlsIdentity = sCallerIdentity.get();
4326 if (tlsIdentity != null) {
4327 uid = tlsIdentity.uid;
4328 pid = tlsIdentity.pid;
4329 }
4330
4331 // Our own process gets to do everything.
4332 if (pid == MY_PID) {
4333 return PackageManager.PERMISSION_GRANTED;
4334 }
4335 synchronized(this) {
4336 return checkUriPermissionLocked(uri, uid, modeFlags)
4337 ? PackageManager.PERMISSION_GRANTED
4338 : PackageManager.PERMISSION_DENIED;
4339 }
4340 }
4341
Dianne Hackborn39792d22010-08-19 18:01:52 -07004342 /**
4343 * Check if the targetPkg can be granted permission to access uri by
4344 * the callingUid using the given modeFlags. Throws a security exception
4345 * if callingUid is not allowed to do this. Returns the uid of the target
4346 * if the URI permission grant should be performed; returns -1 if it is not
4347 * needed (for example targetPkg already has permission to access the URI).
4348 */
4349 int checkGrantUriPermissionLocked(int callingUid, String targetPkg,
4350 Uri uri, int modeFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004351 modeFlags &= (Intent.FLAG_GRANT_READ_URI_PERMISSION
4352 | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
4353 if (modeFlags == 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07004354 return -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004355 }
4356
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004357 if (targetPkg != null) {
4358 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
4359 "Checking grant " + targetPkg + " permission to " + uri);
4360 }
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004361
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004362 final IPackageManager pm = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004363
4364 // If this is not a content: uri, we can't do anything with it.
4365 if (!ContentResolver.SCHEME_CONTENT.equals(uri.getScheme())) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004366 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004367 "Can't grant URI permission for non-content URI: " + uri);
Dianne Hackborn39792d22010-08-19 18:01:52 -07004368 return -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004369 }
4370
4371 String name = uri.getAuthority();
4372 ProviderInfo pi = null;
Dianne Hackborn860755f2010-06-03 18:47:52 -07004373 ContentProviderRecord cpr = mProvidersByName.get(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004374 if (cpr != null) {
4375 pi = cpr.info;
4376 } else {
4377 try {
4378 pi = pm.resolveContentProvider(name,
4379 PackageManager.GET_URI_PERMISSION_PATTERNS);
4380 } catch (RemoteException ex) {
4381 }
4382 }
4383 if (pi == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004384 Slog.w(TAG, "No content provider found for: " + name);
Dianne Hackborn39792d22010-08-19 18:01:52 -07004385 return -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004386 }
4387
4388 int targetUid;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004389 if (targetPkg != null) {
4390 try {
4391 targetUid = pm.getPackageUid(targetPkg);
4392 if (targetUid < 0) {
4393 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
4394 "Can't grant URI permission no uid for: " + targetPkg);
4395 return -1;
4396 }
4397 } catch (RemoteException ex) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07004398 return -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004399 }
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004400 } else {
4401 targetUid = -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004402 }
4403
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004404 if (targetUid >= 0) {
4405 // First... does the target actually need this permission?
4406 if (checkHoldingPermissionsLocked(pm, pi, uri, targetUid, modeFlags)) {
4407 // No need to grant the target this permission.
4408 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
4409 "Target " + targetPkg + " already has full permission to " + uri);
4410 return -1;
4411 }
4412 } else {
4413 // First... there is no target package, so can anyone access it?
4414 boolean allowed = pi.exported;
4415 if ((modeFlags&Intent.FLAG_GRANT_READ_URI_PERMISSION) != 0) {
4416 if (pi.readPermission != null) {
4417 allowed = false;
4418 }
4419 }
4420 if ((modeFlags&Intent.FLAG_GRANT_WRITE_URI_PERMISSION) != 0) {
4421 if (pi.writePermission != null) {
4422 allowed = false;
4423 }
4424 }
4425 if (allowed) {
4426 return -1;
4427 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004428 }
4429
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004430 // Second... is the provider allowing granting of URI permissions?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004431 if (!pi.grantUriPermissions) {
4432 throw new SecurityException("Provider " + pi.packageName
4433 + "/" + pi.name
4434 + " does not allow granting of Uri permissions (uri "
4435 + uri + ")");
4436 }
4437 if (pi.uriPermissionPatterns != null) {
4438 final int N = pi.uriPermissionPatterns.length;
4439 boolean allowed = false;
4440 for (int i=0; i<N; i++) {
4441 if (pi.uriPermissionPatterns[i] != null
4442 && pi.uriPermissionPatterns[i].match(uri.getPath())) {
4443 allowed = true;
4444 break;
4445 }
4446 }
4447 if (!allowed) {
4448 throw new SecurityException("Provider " + pi.packageName
4449 + "/" + pi.name
4450 + " does not allow granting of permission to path of Uri "
4451 + uri);
4452 }
4453 }
4454
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004455 // Third... does the caller itself have permission to access
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004456 // this uri?
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004457 if (callingUid != Process.myUid()) {
4458 if (!checkHoldingPermissionsLocked(pm, pi, uri, callingUid, modeFlags)) {
4459 if (!checkUriPermissionLocked(uri, callingUid, modeFlags)) {
4460 throw new SecurityException("Uid " + callingUid
4461 + " does not have permission to uri " + uri);
4462 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004463 }
4464 }
4465
Dianne Hackborn39792d22010-08-19 18:01:52 -07004466 return targetUid;
4467 }
4468
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004469 public int checkGrantUriPermission(int callingUid, String targetPkg,
4470 Uri uri, int modeFlags) {
4471 synchronized(this) {
4472 return checkGrantUriPermissionLocked(callingUid, targetPkg, uri, modeFlags);
4473 }
4474 }
4475
Dianne Hackborn39792d22010-08-19 18:01:52 -07004476 void grantUriPermissionUncheckedLocked(int targetUid, String targetPkg,
4477 Uri uri, int modeFlags, UriPermissionOwner owner) {
4478 modeFlags &= (Intent.FLAG_GRANT_READ_URI_PERMISSION
4479 | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
4480 if (modeFlags == 0) {
4481 return;
4482 }
4483
4484 // So here we are: the caller has the assumed permission
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004485 // to the uri, and the target doesn't. Let's now give this to
4486 // the target.
4487
Joe Onorato8a9b2202010-02-26 18:56:32 -08004488 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
Dianne Hackborn39792d22010-08-19 18:01:52 -07004489 "Granting " + targetPkg + "/" + targetUid + " permission to " + uri);
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004490
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004491 HashMap<Uri, UriPermission> targetUris
4492 = mGrantedUriPermissions.get(targetUid);
4493 if (targetUris == null) {
4494 targetUris = new HashMap<Uri, UriPermission>();
4495 mGrantedUriPermissions.put(targetUid, targetUris);
4496 }
4497
4498 UriPermission perm = targetUris.get(uri);
4499 if (perm == null) {
4500 perm = new UriPermission(targetUid, uri);
4501 targetUris.put(uri, perm);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004502 }
Dianne Hackbornb424b632010-08-18 15:59:05 -07004503
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004504 perm.modeFlags |= modeFlags;
Dianne Hackborn39792d22010-08-19 18:01:52 -07004505 if (owner == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004506 perm.globalModeFlags |= modeFlags;
4507 } else if ((modeFlags&Intent.FLAG_GRANT_READ_URI_PERMISSION) != 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07004508 perm.readOwners.add(owner);
4509 owner.addReadPermission(perm);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004510 } else if ((modeFlags&Intent.FLAG_GRANT_WRITE_URI_PERMISSION) != 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07004511 perm.writeOwners.add(owner);
4512 owner.addWritePermission(perm);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004513 }
4514 }
4515
Dianne Hackborn39792d22010-08-19 18:01:52 -07004516 void grantUriPermissionLocked(int callingUid,
4517 String targetPkg, Uri uri, int modeFlags, UriPermissionOwner owner) {
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004518 if (targetPkg == null) {
4519 throw new NullPointerException("targetPkg");
4520 }
4521
Dianne Hackborn39792d22010-08-19 18:01:52 -07004522 int targetUid = checkGrantUriPermissionLocked(callingUid, targetPkg, uri, modeFlags);
4523 if (targetUid < 0) {
4524 return;
4525 }
4526
4527 grantUriPermissionUncheckedLocked(targetUid, targetPkg, uri, modeFlags, owner);
4528 }
4529
4530 /**
4531 * Like checkGrantUriPermissionLocked, but takes an Intent.
4532 */
4533 int checkGrantUriPermissionFromIntentLocked(int callingUid,
4534 String targetPkg, Intent intent) {
Dianne Hackbornb424b632010-08-18 15:59:05 -07004535 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
Dianne Hackborn39792d22010-08-19 18:01:52 -07004536 "Checking URI perm to " + (intent != null ? intent.getData() : null)
Dianne Hackbornb424b632010-08-18 15:59:05 -07004537 + " from " + intent + "; flags=0x"
4538 + Integer.toHexString(intent != null ? intent.getFlags() : 0));
4539
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07004540 if (targetPkg == null) {
4541 throw new NullPointerException("targetPkg");
4542 }
4543
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004544 if (intent == null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07004545 return -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004546 }
4547 Uri data = intent.getData();
4548 if (data == null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07004549 return -1;
4550 }
4551 return checkGrantUriPermissionLocked(callingUid, targetPkg, data,
4552 intent.getFlags());
4553 }
4554
4555 /**
4556 * Like grantUriPermissionUncheckedLocked, but takes an Intent.
4557 */
4558 void grantUriPermissionUncheckedFromIntentLocked(int targetUid,
4559 String targetPkg, Intent intent, UriPermissionOwner owner) {
4560 grantUriPermissionUncheckedLocked(targetUid, targetPkg, intent.getData(),
4561 intent.getFlags(), owner);
4562 }
4563
4564 void grantUriPermissionFromIntentLocked(int callingUid,
4565 String targetPkg, Intent intent, UriPermissionOwner owner) {
4566 int targetUid = checkGrantUriPermissionFromIntentLocked(callingUid, targetPkg, intent);
4567 if (targetUid < 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004568 return;
4569 }
Dianne Hackborn39792d22010-08-19 18:01:52 -07004570
4571 grantUriPermissionUncheckedFromIntentLocked(targetUid, targetPkg, intent, owner);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004572 }
4573
4574 public void grantUriPermission(IApplicationThread caller, String targetPkg,
4575 Uri uri, int modeFlags) {
4576 synchronized(this) {
4577 final ProcessRecord r = getRecordForAppLocked(caller);
4578 if (r == null) {
4579 throw new SecurityException("Unable to find app for caller "
4580 + caller
4581 + " when granting permission to uri " + uri);
4582 }
4583 if (targetPkg == null) {
Dianne Hackborn7e269642010-08-25 19:50:20 -07004584 throw new IllegalArgumentException("null target");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004585 }
4586 if (uri == null) {
Dianne Hackborn7e269642010-08-25 19:50:20 -07004587 throw new IllegalArgumentException("null uri");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004588 }
4589
4590 grantUriPermissionLocked(r.info.uid, targetPkg, uri, modeFlags,
4591 null);
4592 }
4593 }
4594
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004595 void removeUriPermissionIfNeededLocked(UriPermission perm) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004596 if ((perm.modeFlags&(Intent.FLAG_GRANT_READ_URI_PERMISSION
4597 |Intent.FLAG_GRANT_WRITE_URI_PERMISSION)) == 0) {
4598 HashMap<Uri, UriPermission> perms
4599 = mGrantedUriPermissions.get(perm.uid);
4600 if (perms != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004601 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004602 "Removing " + perm.uid + " permission to " + perm.uri);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004603 perms.remove(perm.uri);
4604 if (perms.size() == 0) {
4605 mGrantedUriPermissions.remove(perm.uid);
4606 }
4607 }
4608 }
4609 }
4610
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004611 private void revokeUriPermissionLocked(int callingUid, Uri uri,
4612 int modeFlags) {
4613 modeFlags &= (Intent.FLAG_GRANT_READ_URI_PERMISSION
4614 | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
4615 if (modeFlags == 0) {
4616 return;
4617 }
4618
Joe Onorato8a9b2202010-02-26 18:56:32 -08004619 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004620 "Revoking all granted permissions to " + uri);
4621
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004622 final IPackageManager pm = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004623
4624 final String authority = uri.getAuthority();
4625 ProviderInfo pi = null;
Dianne Hackborn860755f2010-06-03 18:47:52 -07004626 ContentProviderRecord cpr = mProvidersByName.get(authority);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004627 if (cpr != null) {
4628 pi = cpr.info;
4629 } else {
4630 try {
4631 pi = pm.resolveContentProvider(authority,
4632 PackageManager.GET_URI_PERMISSION_PATTERNS);
4633 } catch (RemoteException ex) {
4634 }
4635 }
4636 if (pi == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004637 Slog.w(TAG, "No content provider found for: " + authority);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004638 return;
4639 }
4640
4641 // Does the caller have this permission on the URI?
Dianne Hackborn48058e82010-09-27 16:53:23 -07004642 if (!checkHoldingPermissionsLocked(pm, pi, uri, callingUid, modeFlags)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004643 // Right now, if you are not the original owner of the permission,
4644 // you are not allowed to revoke it.
4645 //if (!checkUriPermissionLocked(uri, callingUid, modeFlags)) {
4646 throw new SecurityException("Uid " + callingUid
4647 + " does not have permission to uri " + uri);
4648 //}
4649 }
4650
4651 // Go through all of the permissions and remove any that match.
4652 final List<String> SEGMENTS = uri.getPathSegments();
4653 if (SEGMENTS != null) {
4654 final int NS = SEGMENTS.size();
4655 int N = mGrantedUriPermissions.size();
4656 for (int i=0; i<N; i++) {
4657 HashMap<Uri, UriPermission> perms
4658 = mGrantedUriPermissions.valueAt(i);
4659 Iterator<UriPermission> it = perms.values().iterator();
4660 toploop:
4661 while (it.hasNext()) {
4662 UriPermission perm = it.next();
4663 Uri targetUri = perm.uri;
4664 if (!authority.equals(targetUri.getAuthority())) {
4665 continue;
4666 }
4667 List<String> targetSegments = targetUri.getPathSegments();
4668 if (targetSegments == null) {
4669 continue;
4670 }
4671 if (targetSegments.size() < NS) {
4672 continue;
4673 }
4674 for (int j=0; j<NS; j++) {
4675 if (!SEGMENTS.get(j).equals(targetSegments.get(j))) {
4676 continue toploop;
4677 }
4678 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08004679 if (DEBUG_URI_PERMISSION) Slog.v(TAG,
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08004680 "Revoking " + perm.uid + " permission to " + perm.uri);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004681 perm.clearModes(modeFlags);
4682 if (perm.modeFlags == 0) {
4683 it.remove();
4684 }
4685 }
4686 if (perms.size() == 0) {
4687 mGrantedUriPermissions.remove(
4688 mGrantedUriPermissions.keyAt(i));
4689 N--;
4690 i--;
4691 }
4692 }
4693 }
4694 }
4695
4696 public void revokeUriPermission(IApplicationThread caller, Uri uri,
4697 int modeFlags) {
4698 synchronized(this) {
4699 final ProcessRecord r = getRecordForAppLocked(caller);
4700 if (r == null) {
4701 throw new SecurityException("Unable to find app for caller "
4702 + caller
4703 + " when revoking permission to uri " + uri);
4704 }
4705 if (uri == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004706 Slog.w(TAG, "revokeUriPermission: null uri");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004707 return;
4708 }
4709
4710 modeFlags &= (Intent.FLAG_GRANT_READ_URI_PERMISSION
4711 | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
4712 if (modeFlags == 0) {
4713 return;
4714 }
4715
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004716 final IPackageManager pm = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004717
4718 final String authority = uri.getAuthority();
4719 ProviderInfo pi = null;
Dianne Hackborn860755f2010-06-03 18:47:52 -07004720 ContentProviderRecord cpr = mProvidersByName.get(authority);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004721 if (cpr != null) {
4722 pi = cpr.info;
4723 } else {
4724 try {
4725 pi = pm.resolveContentProvider(authority,
4726 PackageManager.GET_URI_PERMISSION_PATTERNS);
4727 } catch (RemoteException ex) {
4728 }
4729 }
4730 if (pi == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004731 Slog.w(TAG, "No content provider found for: " + authority);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004732 return;
4733 }
4734
4735 revokeUriPermissionLocked(r.info.uid, uri, modeFlags);
4736 }
4737 }
4738
Dianne Hackborn7e269642010-08-25 19:50:20 -07004739 @Override
4740 public IBinder newUriPermissionOwner(String name) {
4741 synchronized(this) {
4742 UriPermissionOwner owner = new UriPermissionOwner(this, name);
4743 return owner.getExternalTokenLocked();
4744 }
4745 }
4746
4747 @Override
4748 public void grantUriPermissionFromOwner(IBinder token, int fromUid, String targetPkg,
4749 Uri uri, int modeFlags) {
4750 synchronized(this) {
4751 UriPermissionOwner owner = UriPermissionOwner.fromExternalToken(token);
4752 if (owner == null) {
4753 throw new IllegalArgumentException("Unknown owner: " + token);
4754 }
4755 if (fromUid != Binder.getCallingUid()) {
4756 if (Binder.getCallingUid() != Process.myUid()) {
4757 // Only system code can grant URI permissions on behalf
4758 // of other users.
4759 throw new SecurityException("nice try");
4760 }
4761 }
4762 if (targetPkg == null) {
4763 throw new IllegalArgumentException("null target");
4764 }
4765 if (uri == null) {
4766 throw new IllegalArgumentException("null uri");
4767 }
4768
4769 grantUriPermissionLocked(fromUid, targetPkg, uri, modeFlags, owner);
4770 }
4771 }
4772
4773 @Override
4774 public void revokeUriPermissionFromOwner(IBinder token, Uri uri, int mode) {
4775 synchronized(this) {
4776 UriPermissionOwner owner = UriPermissionOwner.fromExternalToken(token);
4777 if (owner == null) {
4778 throw new IllegalArgumentException("Unknown owner: " + token);
4779 }
4780
4781 if (uri == null) {
4782 owner.removeUriPermissionsLocked(mode);
4783 } else {
4784 owner.removeUriPermissionLocked(uri, mode);
4785 }
4786 }
4787 }
4788
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004789 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) {
4790 synchronized (this) {
4791 ProcessRecord app =
4792 who != null ? getRecordForAppLocked(who) : null;
4793 if (app == null) return;
4794
4795 Message msg = Message.obtain();
4796 msg.what = WAIT_FOR_DEBUGGER_MSG;
4797 msg.obj = app;
4798 msg.arg1 = waiting ? 1 : 0;
4799 mHandler.sendMessage(msg);
4800 }
4801 }
4802
4803 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) {
4804 outInfo.availMem = Process.getFreeMemory();
The Android Open Source Project4df24232009-03-05 14:34:35 -08004805 outInfo.threshold = HOME_APP_MEM;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004806 outInfo.lowMemory = outInfo.availMem <
The Android Open Source Project4df24232009-03-05 14:34:35 -08004807 (HOME_APP_MEM + ((HIDDEN_APP_MEM-HOME_APP_MEM)/2));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004808 }
4809
4810 // =========================================================
4811 // TASK MANAGEMENT
4812 // =========================================================
4813
4814 public List getTasks(int maxNum, int flags,
4815 IThumbnailReceiver receiver) {
4816 ArrayList list = new ArrayList();
4817
4818 PendingThumbnailsRecord pending = null;
4819 IApplicationThread topThumbnail = null;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004820 ActivityRecord topRecord = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004821
4822 synchronized(this) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004823 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004824 TAG, "getTasks: max=" + maxNum + ", flags=" + flags
4825 + ", receiver=" + receiver);
4826
4827 if (checkCallingPermission(android.Manifest.permission.GET_TASKS)
4828 != PackageManager.PERMISSION_GRANTED) {
4829 if (receiver != null) {
4830 // If the caller wants to wait for pending thumbnails,
4831 // it ain't gonna get them.
4832 try {
4833 receiver.finished();
4834 } catch (RemoteException ex) {
4835 }
4836 }
4837 String msg = "Permission Denial: getTasks() from pid="
4838 + Binder.getCallingPid()
4839 + ", uid=" + Binder.getCallingUid()
4840 + " requires " + android.Manifest.permission.GET_TASKS;
Joe Onorato8a9b2202010-02-26 18:56:32 -08004841 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004842 throw new SecurityException(msg);
4843 }
4844
Dianne Hackbornd2835932010-12-13 16:28:46 -08004845 final boolean canReadFb = (flags&ActivityManager.TASKS_GET_THUMBNAILS) != 0
4846 && checkCallingPermission(
4847 android.Manifest.permission.READ_FRAME_BUFFER)
4848 == PackageManager.PERMISSION_GRANTED;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08004849
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004850 int pos = mMainStack.mHistory.size()-1;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004851 ActivityRecord next =
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004852 pos >= 0 ? (ActivityRecord)mMainStack.mHistory.get(pos) : null;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004853 ActivityRecord top = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004854 CharSequence topDescription = null;
4855 TaskRecord curTask = null;
4856 int numActivities = 0;
4857 int numRunning = 0;
4858 while (pos >= 0 && maxNum > 0) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004859 final ActivityRecord r = next;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004860 pos--;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004861 next = pos >= 0 ? (ActivityRecord)mMainStack.mHistory.get(pos) : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004862
4863 // Initialize state for next task if needed.
4864 if (top == null ||
4865 (top.state == ActivityState.INITIALIZING
4866 && top.task == r.task)) {
4867 top = r;
4868 topDescription = r.description;
4869 curTask = r.task;
4870 numActivities = numRunning = 0;
4871 }
4872
4873 // Add 'r' into the current task.
4874 numActivities++;
4875 if (r.app != null && r.app.thread != null) {
4876 numRunning++;
4877 }
4878 if (topDescription == null) {
4879 topDescription = r.description;
4880 }
4881
Joe Onorato8a9b2202010-02-26 18:56:32 -08004882 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004883 TAG, r.intent.getComponent().flattenToShortString()
4884 + ": task=" + r.task);
4885
4886 // If the next one is a different task, generate a new
4887 // TaskInfo entry for what we have.
4888 if (next == null || next.task != curTask) {
4889 ActivityManager.RunningTaskInfo ci
4890 = new ActivityManager.RunningTaskInfo();
4891 ci.id = curTask.taskId;
4892 ci.baseActivity = r.intent.getComponent();
4893 ci.topActivity = top.intent.getComponent();
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08004894 if (canReadFb) {
4895 if (top.thumbnail != null) {
4896 ci.thumbnail = top.thumbnail;
4897 } else if (top.state == ActivityState.RESUMED) {
Dianne Hackbornd2835932010-12-13 16:28:46 -08004898 ci.thumbnail = top.stack.screenshotActivities(top);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08004899 }
4900 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004901 ci.description = topDescription;
4902 ci.numActivities = numActivities;
4903 ci.numRunning = numRunning;
4904 //System.out.println(
4905 // "#" + maxNum + ": " + " descr=" + ci.description);
4906 if (ci.thumbnail == null && receiver != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004907 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004908 TAG, "State=" + top.state + "Idle=" + top.idle
4909 + " app=" + top.app
4910 + " thr=" + (top.app != null ? top.app.thread : null));
4911 if (top.state == ActivityState.RESUMED
4912 || top.state == ActivityState.PAUSING) {
4913 if (top.idle && top.app != null
4914 && top.app.thread != null) {
4915 topRecord = top;
4916 topThumbnail = top.app.thread;
4917 } else {
4918 top.thumbnailNeeded = true;
4919 }
4920 }
4921 if (pending == null) {
4922 pending = new PendingThumbnailsRecord(receiver);
4923 }
4924 pending.pendingRecords.add(top);
4925 }
4926 list.add(ci);
4927 maxNum--;
4928 top = null;
4929 }
4930 }
4931
4932 if (pending != null) {
4933 mPendingThumbnails.add(pending);
4934 }
4935 }
4936
Joe Onorato8a9b2202010-02-26 18:56:32 -08004937 if (localLOGV) Slog.v(TAG, "We have pending thumbnails: " + pending);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004938
4939 if (topThumbnail != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004940 if (localLOGV) Slog.v(TAG, "Requesting top thumbnail");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004941 try {
4942 topThumbnail.requestThumbnail(topRecord);
4943 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08004944 Slog.w(TAG, "Exception thrown when requesting thumbnail", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004945 sendPendingThumbnail(null, topRecord, null, null, true);
4946 }
4947 }
4948
4949 if (pending == null && receiver != null) {
4950 // In this case all thumbnails were available and the client
4951 // is being asked to be told when the remaining ones come in...
4952 // which is unusually, since the top-most currently running
4953 // activity should never have a canned thumbnail! Oh well.
4954 try {
4955 receiver.finished();
4956 } catch (RemoteException ex) {
4957 }
4958 }
4959
4960 return list;
4961 }
4962
4963 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
4964 int flags) {
4965 synchronized (this) {
4966 enforceCallingPermission(android.Manifest.permission.GET_TASKS,
4967 "getRecentTasks()");
4968
Dianne Hackbornd2835932010-12-13 16:28:46 -08004969 final boolean canReadFb = (flags&ActivityManager.TASKS_GET_THUMBNAILS) != 0
4970 && checkCallingPermission(
4971 android.Manifest.permission.READ_FRAME_BUFFER)
4972 == PackageManager.PERMISSION_GRANTED;
4973
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07004974 IPackageManager pm = AppGlobals.getPackageManager();
Dianne Hackborn53d9264d2010-04-13 12:49:14 -07004975
Dianne Hackbornd2835932010-12-13 16:28:46 -08004976 ActivityRecord resumed = mMainStack.mResumedActivity;
4977
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004978 final int N = mRecentTasks.size();
4979 ArrayList<ActivityManager.RecentTaskInfo> res
4980 = new ArrayList<ActivityManager.RecentTaskInfo>(
4981 maxNum < N ? maxNum : N);
4982 for (int i=0; i<N && maxNum > 0; i++) {
4983 TaskRecord tr = mRecentTasks.get(i);
4984 if (((flags&ActivityManager.RECENT_WITH_EXCLUDED) != 0)
4985 || (tr.intent == null)
4986 || ((tr.intent.getFlags()
4987 &Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) == 0)) {
4988 ActivityManager.RecentTaskInfo rti
4989 = new ActivityManager.RecentTaskInfo();
4990 rti.id = tr.numActivities > 0 ? tr.taskId : -1;
4991 rti.baseIntent = new Intent(
4992 tr.intent != null ? tr.intent : tr.affinityIntent);
4993 rti.origActivity = tr.origActivity;
Dianne Hackborn53d9264d2010-04-13 12:49:14 -07004994
Dianne Hackbornd2835932010-12-13 16:28:46 -08004995 if (canReadFb) {
4996 if (resumed != null && resumed.task == tr) {
4997 rti.thumbnail = resumed.stack.screenshotActivities(resumed);
4998 } else {
4999 rti.thumbnail = tr.lastThumbnail;
5000 }
5001 }
5002 rti.description = tr.lastDescription;
5003
Dianne Hackborn53d9264d2010-04-13 12:49:14 -07005004 if ((flags&ActivityManager.RECENT_IGNORE_UNAVAILABLE) != 0) {
5005 // Check whether this activity is currently available.
5006 try {
5007 if (rti.origActivity != null) {
5008 if (pm.getActivityInfo(rti.origActivity, 0) == null) {
5009 continue;
5010 }
5011 } else if (rti.baseIntent != null) {
5012 if (pm.queryIntentActivities(rti.baseIntent,
5013 null, 0) == null) {
5014 continue;
5015 }
5016 }
5017 } catch (RemoteException e) {
5018 // Will never happen.
5019 }
5020 }
5021
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005022 res.add(rti);
5023 maxNum--;
5024 }
5025 }
5026 return res;
5027 }
5028 }
5029
5030 private final int findAffinityTaskTopLocked(int startIndex, String affinity) {
5031 int j;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005032 TaskRecord startTask = ((ActivityRecord)mMainStack.mHistory.get(startIndex)).task;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005033 TaskRecord jt = startTask;
5034
5035 // First look backwards
5036 for (j=startIndex-1; j>=0; j--) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005037 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(j);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005038 if (r.task != jt) {
5039 jt = r.task;
5040 if (affinity.equals(jt.affinity)) {
5041 return j;
5042 }
5043 }
5044 }
5045
5046 // Now look forwards
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005047 final int N = mMainStack.mHistory.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005048 jt = startTask;
5049 for (j=startIndex+1; j<N; j++) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005050 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(j);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005051 if (r.task != jt) {
5052 if (affinity.equals(jt.affinity)) {
5053 return j;
5054 }
5055 jt = r.task;
5056 }
5057 }
5058
5059 // Might it be at the top?
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005060 if (affinity.equals(((ActivityRecord)mMainStack.mHistory.get(N-1)).task.affinity)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005061 return N-1;
5062 }
5063
5064 return -1;
5065 }
5066
5067 /**
Dianne Hackbornb06ea702009-07-13 13:07:51 -07005068 * TODO: Add mController hook
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005069 */
Dianne Hackborn621e17d2010-11-22 15:59:56 -08005070 public void moveTaskToFront(int task, int flags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005071 enforceCallingPermission(android.Manifest.permission.REORDER_TASKS,
5072 "moveTaskToFront()");
5073
5074 synchronized(this) {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07005075 if (!checkAppSwitchAllowedLocked(Binder.getCallingPid(),
5076 Binder.getCallingUid(), "Task to front")) {
5077 return;
5078 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005079 final long origId = Binder.clearCallingIdentity();
5080 try {
5081 int N = mRecentTasks.size();
5082 for (int i=0; i<N; i++) {
5083 TaskRecord tr = mRecentTasks.get(i);
5084 if (tr.taskId == task) {
Dianne Hackborn621e17d2010-11-22 15:59:56 -08005085 if ((flags&ActivityManager.MOVE_TASK_WITH_HOME) != 0) {
5086 // Caller wants the home activity moved with it. To accomplish this,
5087 // we'll just move the home task to the top first.
5088 mMainStack.moveHomeToFrontLocked();
5089 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005090 mMainStack.moveTaskToFrontLocked(tr, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005091 return;
5092 }
5093 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005094 for (int i=mMainStack.mHistory.size()-1; i>=0; i--) {
5095 ActivityRecord hr = (ActivityRecord)mMainStack.mHistory.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005096 if (hr.task.taskId == task) {
Dianne Hackborn621e17d2010-11-22 15:59:56 -08005097 if ((flags&ActivityManager.MOVE_TASK_WITH_HOME) != 0) {
5098 // Caller wants the home activity moved with it. To accomplish this,
5099 // we'll just move the home task to the top first.
5100 mMainStack.moveHomeToFrontLocked();
5101 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005102 mMainStack.moveTaskToFrontLocked(hr.task, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005103 return;
5104 }
5105 }
5106 } finally {
5107 Binder.restoreCallingIdentity(origId);
5108 }
5109 }
5110 }
5111
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005112 public void moveTaskToBack(int task) {
5113 enforceCallingPermission(android.Manifest.permission.REORDER_TASKS,
5114 "moveTaskToBack()");
5115
5116 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005117 if (mMainStack.mResumedActivity != null
5118 && mMainStack.mResumedActivity.task.taskId == task) {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07005119 if (!checkAppSwitchAllowedLocked(Binder.getCallingPid(),
5120 Binder.getCallingUid(), "Task to back")) {
5121 return;
5122 }
5123 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005124 final long origId = Binder.clearCallingIdentity();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005125 mMainStack.moveTaskToBackLocked(task, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005126 Binder.restoreCallingIdentity(origId);
5127 }
5128 }
5129
5130 /**
5131 * Moves an activity, and all of the other activities within the same task, to the bottom
5132 * of the history stack. The activity's order within the task is unchanged.
5133 *
5134 * @param token A reference to the activity we wish to move
5135 * @param nonRoot If false then this only works if the activity is the root
5136 * of a task; if true it will work for any activity in a task.
5137 * @return Returns true if the move completed, false if not.
5138 */
5139 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) {
5140 synchronized(this) {
5141 final long origId = Binder.clearCallingIdentity();
5142 int taskId = getTaskForActivityLocked(token, !nonRoot);
5143 if (taskId >= 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005144 return mMainStack.moveTaskToBackLocked(taskId, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005145 }
5146 Binder.restoreCallingIdentity(origId);
5147 }
5148 return false;
5149 }
5150
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005151 public void moveTaskBackwards(int task) {
5152 enforceCallingPermission(android.Manifest.permission.REORDER_TASKS,
5153 "moveTaskBackwards()");
5154
5155 synchronized(this) {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07005156 if (!checkAppSwitchAllowedLocked(Binder.getCallingPid(),
5157 Binder.getCallingUid(), "Task backwards")) {
5158 return;
5159 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005160 final long origId = Binder.clearCallingIdentity();
5161 moveTaskBackwardsLocked(task);
5162 Binder.restoreCallingIdentity(origId);
5163 }
5164 }
5165
5166 private final void moveTaskBackwardsLocked(int task) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005167 Slog.e(TAG, "moveTaskBackwards not yet implemented!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005168 }
5169
5170 public int getTaskForActivity(IBinder token, boolean onlyRoot) {
5171 synchronized(this) {
5172 return getTaskForActivityLocked(token, onlyRoot);
5173 }
5174 }
5175
5176 int getTaskForActivityLocked(IBinder token, boolean onlyRoot) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005177 final int N = mMainStack.mHistory.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005178 TaskRecord lastTask = null;
5179 for (int i=0; i<N; i++) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005180 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005181 if (r == token) {
5182 if (!onlyRoot || lastTask != r.task) {
5183 return r.task.taskId;
5184 }
5185 return -1;
5186 }
5187 lastTask = r.task;
5188 }
5189
5190 return -1;
5191 }
5192
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005193 public void finishOtherInstances(IBinder token, ComponentName className) {
5194 synchronized(this) {
5195 final long origId = Binder.clearCallingIdentity();
5196
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005197 int N = mMainStack.mHistory.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005198 TaskRecord lastTask = null;
5199 for (int i=0; i<N; i++) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005200 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005201 if (r.realActivity.equals(className)
5202 && r != token && lastTask != r.task) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005203 if (r.stack.finishActivityLocked(r, i, Activity.RESULT_CANCELED,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005204 null, "others")) {
5205 i--;
5206 N--;
5207 }
5208 }
5209 lastTask = r.task;
5210 }
5211
5212 Binder.restoreCallingIdentity(origId);
5213 }
5214 }
5215
5216 // =========================================================
5217 // THUMBNAILS
5218 // =========================================================
5219
5220 public void reportThumbnail(IBinder token,
5221 Bitmap thumbnail, CharSequence description) {
5222 //System.out.println("Report thumbnail for " + token + ": " + thumbnail);
5223 final long origId = Binder.clearCallingIdentity();
5224 sendPendingThumbnail(null, token, thumbnail, description, true);
5225 Binder.restoreCallingIdentity(origId);
5226 }
5227
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07005228 final void sendPendingThumbnail(ActivityRecord r, IBinder token,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005229 Bitmap thumbnail, CharSequence description, boolean always) {
5230 TaskRecord task = null;
5231 ArrayList receivers = null;
5232
5233 //System.out.println("Send pending thumbnail: " + r);
5234
5235 synchronized(this) {
5236 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005237 int index = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005238 if (index < 0) {
5239 return;
5240 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005241 r = (ActivityRecord)mMainStack.mHistory.get(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005242 }
5243 if (thumbnail == null) {
5244 thumbnail = r.thumbnail;
5245 description = r.description;
5246 }
5247 if (thumbnail == null && !always) {
5248 // If there is no thumbnail, and this entry is not actually
5249 // going away, then abort for now and pick up the next
5250 // thumbnail we get.
5251 return;
5252 }
5253 task = r.task;
5254
5255 int N = mPendingThumbnails.size();
5256 int i=0;
5257 while (i<N) {
5258 PendingThumbnailsRecord pr =
5259 (PendingThumbnailsRecord)mPendingThumbnails.get(i);
5260 //System.out.println("Looking in " + pr.pendingRecords);
5261 if (pr.pendingRecords.remove(r)) {
5262 if (receivers == null) {
5263 receivers = new ArrayList();
5264 }
5265 receivers.add(pr);
5266 if (pr.pendingRecords.size() == 0) {
5267 pr.finished = true;
5268 mPendingThumbnails.remove(i);
5269 N--;
5270 continue;
5271 }
5272 }
5273 i++;
5274 }
5275 }
5276
5277 if (receivers != null) {
5278 final int N = receivers.size();
5279 for (int i=0; i<N; i++) {
5280 try {
5281 PendingThumbnailsRecord pr =
5282 (PendingThumbnailsRecord)receivers.get(i);
5283 pr.receiver.newThumbnail(
5284 task != null ? task.taskId : -1, thumbnail, description);
5285 if (pr.finished) {
5286 pr.receiver.finished();
5287 }
5288 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005289 Slog.w(TAG, "Exception thrown when sending thumbnail", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005290 }
5291 }
5292 }
5293 }
5294
5295 // =========================================================
5296 // CONTENT PROVIDERS
5297 // =========================================================
5298
5299 private final List generateApplicationProvidersLocked(ProcessRecord app) {
5300 List providers = null;
5301 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07005302 providers = AppGlobals.getPackageManager().
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005303 queryContentProviders(app.processName, app.info.uid,
Dianne Hackborn1655be42009-05-08 14:29:01 -07005304 STOCK_PM_FLAGS | PackageManager.GET_URI_PERMISSION_PATTERNS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005305 } catch (RemoteException ex) {
5306 }
5307 if (providers != null) {
5308 final int N = providers.size();
5309 for (int i=0; i<N; i++) {
5310 ProviderInfo cpi =
5311 (ProviderInfo)providers.get(i);
Dianne Hackborn860755f2010-06-03 18:47:52 -07005312 ContentProviderRecord cpr = mProvidersByClass.get(cpi.name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005313 if (cpr == null) {
5314 cpr = new ContentProviderRecord(cpi, app.info);
5315 mProvidersByClass.put(cpi.name, cpr);
5316 }
5317 app.pubProviders.put(cpi.name, cpr);
5318 app.addPackage(cpi.applicationInfo.packageName);
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -07005319 ensurePackageDexOpt(cpi.applicationInfo.packageName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005320 }
5321 }
5322 return providers;
5323 }
5324
5325 private final String checkContentProviderPermissionLocked(
Dianne Hackbornb424b632010-08-18 15:59:05 -07005326 ProviderInfo cpi, ProcessRecord r) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005327 final int callingPid = (r != null) ? r.pid : Binder.getCallingPid();
5328 final int callingUid = (r != null) ? r.info.uid : Binder.getCallingUid();
5329 if (checkComponentPermission(cpi.readPermission, callingPid, callingUid,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08005330 cpi.applicationInfo.uid, cpi.exported)
Dianne Hackbornb424b632010-08-18 15:59:05 -07005331 == PackageManager.PERMISSION_GRANTED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005332 return null;
5333 }
5334 if (checkComponentPermission(cpi.writePermission, callingPid, callingUid,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08005335 cpi.applicationInfo.uid, cpi.exported)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005336 == PackageManager.PERMISSION_GRANTED) {
5337 return null;
5338 }
Dianne Hackborn2af632f2009-07-08 14:56:37 -07005339
5340 PathPermission[] pps = cpi.pathPermissions;
5341 if (pps != null) {
5342 int i = pps.length;
5343 while (i > 0) {
5344 i--;
5345 PathPermission pp = pps[i];
5346 if (checkComponentPermission(pp.getReadPermission(), callingPid, callingUid,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08005347 cpi.applicationInfo.uid, cpi.exported)
Dianne Hackbornb424b632010-08-18 15:59:05 -07005348 == PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn2af632f2009-07-08 14:56:37 -07005349 return null;
5350 }
5351 if (checkComponentPermission(pp.getWritePermission(), callingPid, callingUid,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08005352 cpi.applicationInfo.uid, cpi.exported)
Dianne Hackborn2af632f2009-07-08 14:56:37 -07005353 == PackageManager.PERMISSION_GRANTED) {
5354 return null;
5355 }
5356 }
5357 }
5358
Dianne Hackbornb424b632010-08-18 15:59:05 -07005359 HashMap<Uri, UriPermission> perms = mGrantedUriPermissions.get(callingUid);
5360 if (perms != null) {
5361 for (Map.Entry<Uri, UriPermission> uri : perms.entrySet()) {
5362 if (uri.getKey().getAuthority().equals(cpi.authority)) {
5363 return null;
5364 }
5365 }
5366 }
5367
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08005368 String msg;
5369 if (!cpi.exported) {
5370 msg = "Permission Denial: opening provider " + cpi.name
5371 + " from " + (r != null ? r : "(null)") + " (pid=" + callingPid
5372 + ", uid=" + callingUid + ") that is not exported from uid "
5373 + cpi.applicationInfo.uid;
5374 } else {
5375 msg = "Permission Denial: opening provider " + cpi.name
5376 + " from " + (r != null ? r : "(null)") + " (pid=" + callingPid
5377 + ", uid=" + callingUid + ") requires "
5378 + cpi.readPermission + " or " + cpi.writePermission;
5379 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08005380 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005381 return msg;
5382 }
5383
5384 private final ContentProviderHolder getContentProviderImpl(
5385 IApplicationThread caller, String name) {
5386 ContentProviderRecord cpr;
5387 ProviderInfo cpi = null;
5388
5389 synchronized(this) {
5390 ProcessRecord r = null;
5391 if (caller != null) {
5392 r = getRecordForAppLocked(caller);
5393 if (r == null) {
5394 throw new SecurityException(
5395 "Unable to find app for caller " + caller
5396 + " (pid=" + Binder.getCallingPid()
5397 + ") when getting content provider " + name);
5398 }
5399 }
5400
5401 // First check if this content provider has been published...
Dianne Hackborn860755f2010-06-03 18:47:52 -07005402 cpr = mProvidersByName.get(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005403 if (cpr != null) {
5404 cpi = cpr.info;
Dianne Hackbornb424b632010-08-18 15:59:05 -07005405 String msg;
5406 if ((msg=checkContentProviderPermissionLocked(cpi, r)) != null) {
5407 throw new SecurityException(msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005408 }
5409
5410 if (r != null && cpr.canRunHere(r)) {
5411 // This provider has been published or is in the process
5412 // of being published... but it is also allowed to run
5413 // in the caller's process, so don't make a connection
5414 // and just let the caller instantiate its own instance.
5415 if (cpr.provider != null) {
5416 // don't give caller the provider object, it needs
5417 // to make its own.
5418 cpr = new ContentProviderRecord(cpr);
5419 }
5420 return cpr;
5421 }
5422
5423 final long origId = Binder.clearCallingIdentity();
5424
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005425 // In this case the provider instance already exists, so we can
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005426 // return it right away.
5427 if (r != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005428 if (DEBUG_PROVIDER) Slog.v(TAG,
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005429 "Adding provider requested by "
5430 + r.processName + " from process "
Dianne Hackborn0c3154d2009-10-06 17:18:05 -07005431 + cpr.info.processName);
5432 Integer cnt = r.conProviders.get(cpr);
5433 if (cnt == null) {
5434 r.conProviders.put(cpr, new Integer(1));
5435 } else {
5436 r.conProviders.put(cpr, new Integer(cnt.intValue()+1));
5437 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005438 cpr.clients.add(r);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07005439 if (cpr.app != null && r.setAdj <= PERCEPTIBLE_APP_ADJ) {
5440 // If this is a perceptible app accessing the provider,
Dianne Hackborn906497c2010-05-10 15:57:38 -07005441 // make sure to count it as being accessed and thus
5442 // back up on the LRU list. This is good because
5443 // content providers are often expensive to start.
5444 updateLruProcessLocked(cpr.app, false, true);
5445 }
Dianne Hackborn6f86c0e2010-05-11 14:20:52 -07005446 } else {
5447 cpr.externals++;
5448 }
5449
5450 if (cpr.app != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005451 updateOomAdjLocked(cpr.app);
5452 }
5453
5454 Binder.restoreCallingIdentity(origId);
5455
5456 } else {
5457 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07005458 cpi = AppGlobals.getPackageManager().
Dianne Hackborn1655be42009-05-08 14:29:01 -07005459 resolveContentProvider(name,
5460 STOCK_PM_FLAGS | PackageManager.GET_URI_PERMISSION_PATTERNS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005461 } catch (RemoteException ex) {
5462 }
5463 if (cpi == null) {
5464 return null;
5465 }
5466
Dianne Hackbornb424b632010-08-18 15:59:05 -07005467 String msg;
5468 if ((msg=checkContentProviderPermissionLocked(cpi, r)) != null) {
5469 throw new SecurityException(msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005470 }
5471
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07005472 if (!mProcessesReady && !mDidUpdate && !mWaitingUpdate
Dianne Hackbornc3b91fd2010-02-23 17:25:30 -08005473 && !cpi.processName.equals("system")) {
5474 // If this content provider does not run in the system
5475 // process, and the system is not yet ready to run other
5476 // processes, then fail fast instead of hanging.
5477 throw new IllegalArgumentException(
5478 "Attempt to launch content provider before system ready");
5479 }
5480
Dianne Hackborn860755f2010-06-03 18:47:52 -07005481 cpr = mProvidersByClass.get(cpi.name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005482 final boolean firstClass = cpr == null;
5483 if (firstClass) {
5484 try {
5485 ApplicationInfo ai =
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07005486 AppGlobals.getPackageManager().
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005487 getApplicationInfo(
5488 cpi.applicationInfo.packageName,
Dianne Hackborn1655be42009-05-08 14:29:01 -07005489 STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005490 if (ai == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005491 Slog.w(TAG, "No package info for content provider "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005492 + cpi.name);
5493 return null;
5494 }
5495 cpr = new ContentProviderRecord(cpi, ai);
5496 } catch (RemoteException ex) {
5497 // pm is in same process, this will never happen.
5498 }
5499 }
5500
5501 if (r != null && cpr.canRunHere(r)) {
5502 // If this is a multiprocess provider, then just return its
5503 // info and allow the caller to instantiate it. Only do
5504 // this if the provider is the same user as the caller's
5505 // process, or can run as root (so can be in any process).
5506 return cpr;
5507 }
5508
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005509 if (DEBUG_PROVIDER) {
5510 RuntimeException e = new RuntimeException("here");
Joe Onorato8a9b2202010-02-26 18:56:32 -08005511 Slog.w(TAG, "LAUNCHING REMOTE PROVIDER (myuid " + r.info.uid
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005512 + " pruid " + cpr.appInfo.uid + "): " + cpr.info.name, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005513 }
5514
5515 // This is single process, and our app is now connecting to it.
5516 // See if we are already in the process of launching this
5517 // provider.
5518 final int N = mLaunchingProviders.size();
5519 int i;
5520 for (i=0; i<N; i++) {
5521 if (mLaunchingProviders.get(i) == cpr) {
5522 break;
5523 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005524 }
5525
5526 // If the provider is not already being launched, then get it
5527 // started.
5528 if (i >= N) {
5529 final long origId = Binder.clearCallingIdentity();
5530 ProcessRecord proc = startProcessLocked(cpi.processName,
5531 cpr.appInfo, false, 0, "content provider",
5532 new ComponentName(cpi.applicationInfo.packageName,
Dianne Hackborn9acc0302009-08-25 00:27:12 -07005533 cpi.name), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005534 if (proc == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005535 Slog.w(TAG, "Unable to launch app "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005536 + cpi.applicationInfo.packageName + "/"
5537 + cpi.applicationInfo.uid + " for provider "
5538 + name + ": process is bad");
5539 return null;
5540 }
5541 cpr.launchingApp = proc;
5542 mLaunchingProviders.add(cpr);
5543 Binder.restoreCallingIdentity(origId);
5544 }
5545
5546 // Make sure the provider is published (the same provider class
5547 // may be published under multiple names).
5548 if (firstClass) {
5549 mProvidersByClass.put(cpi.name, cpr);
5550 }
5551 mProvidersByName.put(name, cpr);
5552
5553 if (r != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005554 if (DEBUG_PROVIDER) Slog.v(TAG,
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005555 "Adding provider requested by "
5556 + r.processName + " from process "
Dianne Hackborn0c3154d2009-10-06 17:18:05 -07005557 + cpr.info.processName);
5558 Integer cnt = r.conProviders.get(cpr);
5559 if (cnt == null) {
5560 r.conProviders.put(cpr, new Integer(1));
5561 } else {
5562 r.conProviders.put(cpr, new Integer(cnt.intValue()+1));
5563 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005564 cpr.clients.add(r);
5565 } else {
5566 cpr.externals++;
5567 }
5568 }
5569 }
5570
5571 // Wait for the provider to be published...
5572 synchronized (cpr) {
5573 while (cpr.provider == null) {
5574 if (cpr.launchingApp == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005575 Slog.w(TAG, "Unable to launch app "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005576 + cpi.applicationInfo.packageName + "/"
5577 + cpi.applicationInfo.uid + " for provider "
5578 + name + ": launching app became null");
Doug Zongker2bec3d42009-12-04 12:52:44 -08005579 EventLog.writeEvent(EventLogTags.AM_PROVIDER_LOST_PROCESS,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005580 cpi.applicationInfo.packageName,
5581 cpi.applicationInfo.uid, name);
5582 return null;
5583 }
5584 try {
5585 cpr.wait();
5586 } catch (InterruptedException ex) {
5587 }
5588 }
5589 }
5590 return cpr;
5591 }
5592
5593 public final ContentProviderHolder getContentProvider(
5594 IApplicationThread caller, String name) {
5595 if (caller == null) {
5596 String msg = "null IApplicationThread when getting content provider "
5597 + name;
Joe Onorato8a9b2202010-02-26 18:56:32 -08005598 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005599 throw new SecurityException(msg);
5600 }
5601
5602 return getContentProviderImpl(caller, name);
5603 }
5604
5605 private ContentProviderHolder getContentProviderExternal(String name) {
5606 return getContentProviderImpl(null, name);
5607 }
5608
5609 /**
5610 * Drop a content provider from a ProcessRecord's bookkeeping
5611 * @param cpr
5612 */
5613 public void removeContentProvider(IApplicationThread caller, String name) {
5614 synchronized (this) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07005615 ContentProviderRecord cpr = mProvidersByName.get(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005616 if(cpr == null) {
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005617 // remove from mProvidersByClass
Joe Onorato8a9b2202010-02-26 18:56:32 -08005618 if (DEBUG_PROVIDER) Slog.v(TAG, name +
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005619 " provider not found in providers list");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005620 return;
5621 }
5622 final ProcessRecord r = getRecordForAppLocked(caller);
5623 if (r == null) {
5624 throw new SecurityException(
5625 "Unable to find app for caller " + caller +
5626 " when removing content provider " + name);
5627 }
5628 //update content provider record entry info
Dianne Hackborn860755f2010-06-03 18:47:52 -07005629 ContentProviderRecord localCpr = mProvidersByClass.get(cpr.info.name);
Joe Onorato8a9b2202010-02-26 18:56:32 -08005630 if (DEBUG_PROVIDER) Slog.v(TAG, "Removing provider requested by "
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005631 + r.info.processName + " from process "
5632 + localCpr.appInfo.processName);
5633 if (localCpr.app == r) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005634 //should not happen. taken care of as a local provider
Joe Onorato8a9b2202010-02-26 18:56:32 -08005635 Slog.w(TAG, "removeContentProvider called on local provider: "
Dianne Hackborna1e989b2009-09-01 19:54:29 -07005636 + cpr.info.name + " in process " + r.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005637 return;
5638 } else {
Dianne Hackborn0c3154d2009-10-06 17:18:05 -07005639 Integer cnt = r.conProviders.get(localCpr);
5640 if (cnt == null || cnt.intValue() <= 1) {
5641 localCpr.clients.remove(r);
5642 r.conProviders.remove(localCpr);
5643 } else {
5644 r.conProviders.put(localCpr, new Integer(cnt.intValue()-1));
5645 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005646 }
5647 updateOomAdjLocked();
5648 }
5649 }
5650
5651 private void removeContentProviderExternal(String name) {
5652 synchronized (this) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07005653 ContentProviderRecord cpr = mProvidersByName.get(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005654 if(cpr == null) {
5655 //remove from mProvidersByClass
Joe Onorato8a9b2202010-02-26 18:56:32 -08005656 if(localLOGV) Slog.v(TAG, name+" content provider not found in providers list");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005657 return;
5658 }
5659
5660 //update content provider record entry info
Dianne Hackborn860755f2010-06-03 18:47:52 -07005661 ContentProviderRecord localCpr = mProvidersByClass.get(cpr.info.name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005662 localCpr.externals--;
5663 if (localCpr.externals < 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005664 Slog.e(TAG, "Externals < 0 for content provider " + localCpr);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005665 }
5666 updateOomAdjLocked();
5667 }
5668 }
5669
5670 public final void publishContentProviders(IApplicationThread caller,
5671 List<ContentProviderHolder> providers) {
5672 if (providers == null) {
5673 return;
5674 }
5675
5676 synchronized(this) {
5677 final ProcessRecord r = getRecordForAppLocked(caller);
5678 if (r == null) {
5679 throw new SecurityException(
5680 "Unable to find app for caller " + caller
5681 + " (pid=" + Binder.getCallingPid()
5682 + ") when publishing content providers");
5683 }
5684
5685 final long origId = Binder.clearCallingIdentity();
5686
5687 final int N = providers.size();
5688 for (int i=0; i<N; i++) {
5689 ContentProviderHolder src = providers.get(i);
5690 if (src == null || src.info == null || src.provider == null) {
5691 continue;
5692 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07005693 ContentProviderRecord dst = r.pubProviders.get(src.info.name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005694 if (dst != null) {
5695 mProvidersByClass.put(dst.info.name, dst);
5696 String names[] = dst.info.authority.split(";");
5697 for (int j = 0; j < names.length; j++) {
5698 mProvidersByName.put(names[j], dst);
5699 }
5700
5701 int NL = mLaunchingProviders.size();
5702 int j;
5703 for (j=0; j<NL; j++) {
5704 if (mLaunchingProviders.get(j) == dst) {
5705 mLaunchingProviders.remove(j);
5706 j--;
5707 NL--;
5708 }
5709 }
5710 synchronized (dst) {
5711 dst.provider = src.provider;
5712 dst.app = r;
5713 dst.notifyAll();
5714 }
5715 updateOomAdjLocked(r);
5716 }
5717 }
5718
5719 Binder.restoreCallingIdentity(origId);
5720 }
5721 }
5722
5723 public static final void installSystemProviders() {
Dianne Hackborn5c83a5f2010-03-12 16:46:46 -08005724 List providers;
Josh Bartel2ecce342010-02-25 10:55:48 -06005725 synchronized (mSelf) {
5726 ProcessRecord app = mSelf.mProcessNames.get("system", Process.SYSTEM_UID);
5727 providers = mSelf.generateApplicationProvidersLocked(app);
Dianne Hackborn5c83a5f2010-03-12 16:46:46 -08005728 if (providers != null) {
5729 for (int i=providers.size()-1; i>=0; i--) {
5730 ProviderInfo pi = (ProviderInfo)providers.get(i);
5731 if ((pi.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) == 0) {
5732 Slog.w(TAG, "Not installing system proc provider " + pi.name
5733 + ": not system .apk");
5734 providers.remove(i);
5735 }
Dianne Hackbornc3b91fd2010-02-23 17:25:30 -08005736 }
5737 }
5738 }
Josh Bartel2ecce342010-02-25 10:55:48 -06005739 if (providers != null) {
5740 mSystemThread.installSystemProviders(providers);
5741 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005742 }
5743
Dianne Hackborncca1f0e2010-09-26 18:34:53 -07005744 /**
5745 * Allows app to retrieve the MIME type of a URI without having permission
5746 * to access its content provider.
5747 *
5748 * CTS tests for this functionality can be run with "runtest cts-appsecurity".
5749 *
5750 * Test cases are at cts/tests/appsecurity-tests/test-apps/UsePermissionDiffCert/
5751 * src/com/android/cts/usespermissiondiffcertapp/AccessPermissionWithDiffSigTest.java
5752 */
5753 public String getProviderMimeType(Uri uri) {
5754 final String name = uri.getAuthority();
5755 final long ident = Binder.clearCallingIdentity();
5756 ContentProviderHolder holder = null;
5757
5758 try {
5759 holder = getContentProviderExternal(name);
5760 if (holder != null) {
5761 return holder.provider.getType(uri);
5762 }
5763 } catch (RemoteException e) {
5764 Log.w(TAG, "Content provider dead retrieving " + uri, e);
5765 return null;
5766 } finally {
5767 if (holder != null) {
5768 removeContentProviderExternal(name);
5769 }
5770 Binder.restoreCallingIdentity(ident);
5771 }
5772
5773 return null;
5774 }
5775
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005776 // =========================================================
5777 // GLOBAL MANAGEMENT
5778 // =========================================================
5779
5780 final ProcessRecord newProcessRecordLocked(IApplicationThread thread,
5781 ApplicationInfo info, String customProcess) {
5782 String proc = customProcess != null ? customProcess : info.processName;
5783 BatteryStatsImpl.Uid.Proc ps = null;
5784 BatteryStatsImpl stats = mBatteryStatsService.getActiveStatistics();
5785 synchronized (stats) {
5786 ps = stats.getProcessStatsLocked(info.uid, proc);
5787 }
5788 return new ProcessRecord(ps, thread, info, proc);
5789 }
5790
5791 final ProcessRecord addAppLocked(ApplicationInfo info) {
5792 ProcessRecord app = getProcessRecordLocked(info.processName, info.uid);
5793
5794 if (app == null) {
5795 app = newProcessRecordLocked(null, info, null);
5796 mProcessNames.put(info.processName, info.uid, app);
Dianne Hackborndd71fc82009-12-16 19:24:32 -08005797 updateLruProcessLocked(app, true, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005798 }
5799
5800 if ((info.flags&(ApplicationInfo.FLAG_SYSTEM|ApplicationInfo.FLAG_PERSISTENT))
5801 == (ApplicationInfo.FLAG_SYSTEM|ApplicationInfo.FLAG_PERSISTENT)) {
5802 app.persistent = true;
5803 app.maxAdj = CORE_SERVER_ADJ;
5804 }
5805 if (app.thread == null && mPersistentStartingProcesses.indexOf(app) < 0) {
5806 mPersistentStartingProcesses.add(app);
5807 startProcessLocked(app, "added application", app.processName);
5808 }
5809
5810 return app;
5811 }
5812
5813 public void unhandledBack() {
5814 enforceCallingPermission(android.Manifest.permission.FORCE_BACK,
5815 "unhandledBack()");
5816
5817 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005818 int count = mMainStack.mHistory.size();
Joe Onorato8a9b2202010-02-26 18:56:32 -08005819 if (DEBUG_SWITCH) Slog.d(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005820 TAG, "Performing unhandledBack(): stack size = " + count);
5821 if (count > 1) {
5822 final long origId = Binder.clearCallingIdentity();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005823 mMainStack.finishActivityLocked((ActivityRecord)mMainStack.mHistory.get(count-1),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005824 count-1, Activity.RESULT_CANCELED, null, "unhandled-back");
5825 Binder.restoreCallingIdentity(origId);
5826 }
5827 }
5828 }
5829
5830 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException {
5831 String name = uri.getAuthority();
5832 ContentProviderHolder cph = getContentProviderExternal(name);
5833 ParcelFileDescriptor pfd = null;
5834 if (cph != null) {
5835 // We record the binder invoker's uid in thread-local storage before
5836 // going to the content provider to open the file. Later, in the code
5837 // that handles all permissions checks, we look for this uid and use
5838 // that rather than the Activity Manager's own uid. The effect is that
5839 // we do the check against the caller's permissions even though it looks
5840 // to the content provider like the Activity Manager itself is making
5841 // the request.
5842 sCallerIdentity.set(new Identity(
5843 Binder.getCallingPid(), Binder.getCallingUid()));
5844 try {
5845 pfd = cph.provider.openFile(uri, "r");
5846 } catch (FileNotFoundException e) {
5847 // do nothing; pfd will be returned null
5848 } finally {
5849 // Ensure that whatever happens, we clean up the identity state
5850 sCallerIdentity.remove();
5851 }
5852
5853 // We've got the fd now, so we're done with the provider.
5854 removeContentProviderExternal(name);
5855 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005856 Slog.d(TAG, "Failed to get provider for authority '" + name + "'");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005857 }
5858 return pfd;
5859 }
5860
5861 public void goingToSleep() {
5862 synchronized(this) {
5863 mSleeping = true;
5864 mWindowManager.setEventDispatching(false);
5865
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005866 if (mMainStack.mResumedActivity != null) {
5867 mMainStack.pauseIfSleepingLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005868 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005869 Slog.w(TAG, "goingToSleep with no resumed activity!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005870 }
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005871
5872 // Initialize the wake times of all processes.
Dianne Hackborn287952c2010-09-22 22:34:31 -07005873 checkExcessivePowerUsageLocked(false);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005874 mHandler.removeMessages(CHECK_EXCESSIVE_WAKE_LOCKS_MSG);
5875 Message nmsg = mHandler.obtainMessage(CHECK_EXCESSIVE_WAKE_LOCKS_MSG);
Dianne Hackborn287952c2010-09-22 22:34:31 -07005876 mHandler.sendMessageDelayed(nmsg, POWER_CHECK_DELAY);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005877 }
5878 }
5879
Dianne Hackborn55280a92009-05-07 15:53:46 -07005880 public boolean shutdown(int timeout) {
5881 if (checkCallingPermission(android.Manifest.permission.SHUTDOWN)
5882 != PackageManager.PERMISSION_GRANTED) {
5883 throw new SecurityException("Requires permission "
5884 + android.Manifest.permission.SHUTDOWN);
5885 }
5886
5887 boolean timedout = false;
5888
5889 synchronized(this) {
5890 mShuttingDown = true;
5891 mWindowManager.setEventDispatching(false);
5892
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005893 if (mMainStack.mResumedActivity != null) {
5894 mMainStack.pauseIfSleepingLocked();
Dianne Hackborn55280a92009-05-07 15:53:46 -07005895 final long endTime = System.currentTimeMillis() + timeout;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005896 while (mMainStack.mResumedActivity != null
5897 || mMainStack.mPausingActivity != null) {
Dianne Hackborn55280a92009-05-07 15:53:46 -07005898 long delay = endTime - System.currentTimeMillis();
5899 if (delay <= 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08005900 Slog.w(TAG, "Activity manager shutdown timed out");
Dianne Hackborn55280a92009-05-07 15:53:46 -07005901 timedout = true;
5902 break;
5903 }
5904 try {
5905 this.wait();
5906 } catch (InterruptedException e) {
5907 }
5908 }
5909 }
5910 }
5911
5912 mUsageStatsService.shutdown();
5913 mBatteryStatsService.shutdown();
5914
5915 return timedout;
5916 }
5917
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005918 public void wakingUp() {
5919 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005920 if (mMainStack.mGoingToSleep.isHeld()) {
5921 mMainStack.mGoingToSleep.release();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005922 }
5923 mWindowManager.setEventDispatching(true);
5924 mSleeping = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005925 mMainStack.resumeTopActivityLocked(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005926 }
5927 }
5928
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07005929 public void stopAppSwitches() {
5930 if (checkCallingPermission(android.Manifest.permission.STOP_APP_SWITCHES)
5931 != PackageManager.PERMISSION_GRANTED) {
5932 throw new SecurityException("Requires permission "
5933 + android.Manifest.permission.STOP_APP_SWITCHES);
5934 }
5935
5936 synchronized(this) {
5937 mAppSwitchesAllowedTime = SystemClock.uptimeMillis()
5938 + APP_SWITCH_DELAY_TIME;
5939 mDidAppSwitch = false;
5940 mHandler.removeMessages(DO_PENDING_ACTIVITY_LAUNCHES_MSG);
5941 Message msg = mHandler.obtainMessage(DO_PENDING_ACTIVITY_LAUNCHES_MSG);
5942 mHandler.sendMessageDelayed(msg, APP_SWITCH_DELAY_TIME);
5943 }
5944 }
5945
5946 public void resumeAppSwitches() {
5947 if (checkCallingPermission(android.Manifest.permission.STOP_APP_SWITCHES)
5948 != PackageManager.PERMISSION_GRANTED) {
5949 throw new SecurityException("Requires permission "
5950 + android.Manifest.permission.STOP_APP_SWITCHES);
5951 }
5952
5953 synchronized(this) {
5954 // Note that we don't execute any pending app switches... we will
5955 // let those wait until either the timeout, or the next start
5956 // activity request.
5957 mAppSwitchesAllowedTime = 0;
5958 }
5959 }
5960
5961 boolean checkAppSwitchAllowedLocked(int callingPid, int callingUid,
5962 String name) {
5963 if (mAppSwitchesAllowedTime < SystemClock.uptimeMillis()) {
5964 return true;
5965 }
5966
5967 final int perm = checkComponentPermission(
5968 android.Manifest.permission.STOP_APP_SWITCHES, callingPid,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08005969 callingUid, -1, true);
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07005970 if (perm == PackageManager.PERMISSION_GRANTED) {
5971 return true;
5972 }
5973
Joe Onorato8a9b2202010-02-26 18:56:32 -08005974 Slog.w(TAG, name + " request from " + callingUid + " stopped");
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07005975 return false;
5976 }
5977
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005978 public void setDebugApp(String packageName, boolean waitForDebugger,
5979 boolean persistent) {
5980 enforceCallingPermission(android.Manifest.permission.SET_DEBUG_APP,
5981 "setDebugApp()");
5982
5983 // Note that this is not really thread safe if there are multiple
5984 // callers into it at the same time, but that's not a situation we
5985 // care about.
5986 if (persistent) {
5987 final ContentResolver resolver = mContext.getContentResolver();
5988 Settings.System.putString(
5989 resolver, Settings.System.DEBUG_APP,
5990 packageName);
5991 Settings.System.putInt(
5992 resolver, Settings.System.WAIT_FOR_DEBUGGER,
5993 waitForDebugger ? 1 : 0);
5994 }
5995
5996 synchronized (this) {
5997 if (!persistent) {
5998 mOrigDebugApp = mDebugApp;
5999 mOrigWaitForDebugger = mWaitForDebugger;
6000 }
6001 mDebugApp = packageName;
6002 mWaitForDebugger = waitForDebugger;
6003 mDebugTransient = !persistent;
6004 if (packageName != null) {
6005 final long origId = Binder.clearCallingIdentity();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08006006 forceStopPackageLocked(packageName, -1, false, false, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006007 Binder.restoreCallingIdentity(origId);
6008 }
6009 }
6010 }
6011
6012 public void setAlwaysFinish(boolean enabled) {
6013 enforceCallingPermission(android.Manifest.permission.SET_ALWAYS_FINISH,
6014 "setAlwaysFinish()");
6015
6016 Settings.System.putInt(
6017 mContext.getContentResolver(),
6018 Settings.System.ALWAYS_FINISH_ACTIVITIES, enabled ? 1 : 0);
6019
6020 synchronized (this) {
6021 mAlwaysFinishActivities = enabled;
6022 }
6023 }
6024
Dianne Hackbornb06ea702009-07-13 13:07:51 -07006025 public void setActivityController(IActivityController controller) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006026 enforceCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER,
Dianne Hackbornb06ea702009-07-13 13:07:51 -07006027 "setActivityController()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006028 synchronized (this) {
Dianne Hackbornb06ea702009-07-13 13:07:51 -07006029 mController = controller;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006030 }
6031 }
6032
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08006033 public boolean isUserAMonkey() {
6034 // For now the fact that there is a controller implies
6035 // we have a monkey.
6036 synchronized (this) {
6037 return mController != null;
6038 }
6039 }
6040
Dianne Hackbornb06ea702009-07-13 13:07:51 -07006041 public void registerActivityWatcher(IActivityWatcher watcher) {
Josh Bartel2ecce342010-02-25 10:55:48 -06006042 synchronized (this) {
6043 mWatchers.register(watcher);
6044 }
Dianne Hackbornb06ea702009-07-13 13:07:51 -07006045 }
6046
6047 public void unregisterActivityWatcher(IActivityWatcher watcher) {
Josh Bartel2ecce342010-02-25 10:55:48 -06006048 synchronized (this) {
6049 mWatchers.unregister(watcher);
6050 }
Dianne Hackbornb06ea702009-07-13 13:07:51 -07006051 }
6052
Daniel Sandler69a48172010-06-23 16:29:36 -04006053 public void setImmersive(IBinder token, boolean immersive) {
6054 synchronized(this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006055 int index = (token != null) ? mMainStack.indexOfTokenLocked(token) : -1;
Daniel Sandler69a48172010-06-23 16:29:36 -04006056 if (index < 0) {
6057 throw new IllegalArgumentException();
6058 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006059 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
Daniel Sandler69a48172010-06-23 16:29:36 -04006060 r.immersive = immersive;
6061 }
6062 }
6063
6064 public boolean isImmersive(IBinder token) {
6065 synchronized (this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006066 int index = (token != null) ? mMainStack.indexOfTokenLocked(token) : -1;
Daniel Sandler69a48172010-06-23 16:29:36 -04006067 if (index < 0) {
6068 throw new IllegalArgumentException();
6069 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006070 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(index);
Daniel Sandler69a48172010-06-23 16:29:36 -04006071 return r.immersive;
6072 }
6073 }
6074
6075 public boolean isTopActivityImmersive() {
6076 synchronized (this) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006077 ActivityRecord r = mMainStack.topRunningActivityLocked(null);
Daniel Sandler69a48172010-06-23 16:29:36 -04006078 return (r != null) ? r.immersive : false;
6079 }
6080 }
6081
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006082 public final void enterSafeMode() {
6083 synchronized(this) {
6084 // It only makes sense to do this before the system is ready
6085 // and started launching other packages.
6086 if (!mSystemReady) {
6087 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07006088 AppGlobals.getPackageManager().enterSafeMode();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006089 } catch (RemoteException e) {
6090 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006091 }
6092 }
6093 }
6094
Jeff Brownb09abc12011-01-13 21:08:27 -08006095 public final void showSafeModeOverlay() {
6096 View v = LayoutInflater.from(mContext).inflate(
6097 com.android.internal.R.layout.safe_mode, null);
6098 WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
6099 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
6100 lp.width = WindowManager.LayoutParams.WRAP_CONTENT;
6101 lp.height = WindowManager.LayoutParams.WRAP_CONTENT;
6102 lp.gravity = Gravity.BOTTOM | Gravity.LEFT;
6103 lp.format = v.getBackground().getOpacity();
6104 lp.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
6105 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
6106 ((WindowManager)mContext.getSystemService(
6107 Context.WINDOW_SERVICE)).addView(v, lp);
6108 }
6109
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006110 public void noteWakeupAlarm(IIntentSender sender) {
6111 if (!(sender instanceof PendingIntentRecord)) {
6112 return;
6113 }
6114 BatteryStatsImpl stats = mBatteryStatsService.getActiveStatistics();
6115 synchronized (stats) {
6116 if (mBatteryStatsService.isOnBattery()) {
6117 mBatteryStatsService.enforceCallingPermission();
6118 PendingIntentRecord rec = (PendingIntentRecord)sender;
6119 int MY_UID = Binder.getCallingUid();
6120 int uid = rec.uid == MY_UID ? Process.SYSTEM_UID : rec.uid;
6121 BatteryStatsImpl.Uid.Pkg pkg =
6122 stats.getPackageStatsLocked(uid, rec.key.packageName);
6123 pkg.incWakeupsLocked();
6124 }
6125 }
6126 }
6127
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07006128 public boolean killPids(int[] pids, String pReason) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006129 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07006130 throw new SecurityException("killPids only available to the system");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006131 }
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07006132 String reason = (pReason == null) ? "Unknown" : pReason;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006133 // XXX Note: don't acquire main activity lock here, because the window
6134 // manager calls in with its locks held.
6135
6136 boolean killed = false;
6137 synchronized (mPidsSelfLocked) {
6138 int[] types = new int[pids.length];
6139 int worstType = 0;
6140 for (int i=0; i<pids.length; i++) {
6141 ProcessRecord proc = mPidsSelfLocked.get(pids[i]);
6142 if (proc != null) {
6143 int type = proc.setAdj;
6144 types[i] = type;
6145 if (type > worstType) {
6146 worstType = type;
6147 }
6148 }
6149 }
6150
6151 // If the worse oom_adj is somewhere in the hidden proc LRU range,
6152 // then constrain it so we will kill all hidden procs.
6153 if (worstType < EMPTY_APP_ADJ && worstType > HIDDEN_APP_MIN_ADJ) {
6154 worstType = HIDDEN_APP_MIN_ADJ;
6155 }
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07006156 Slog.w(TAG, "Killing processes " + reason + " at adjustment " + worstType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006157 for (int i=0; i<pids.length; i++) {
6158 ProcessRecord proc = mPidsSelfLocked.get(pids[i]);
6159 if (proc == null) {
6160 continue;
6161 }
6162 int adj = proc.setAdj;
Dianne Hackborn906497c2010-05-10 15:57:38 -07006163 if (adj >= worstType && !proc.killedBackground) {
Dianne Hackborn8633e682010-04-22 16:03:41 -07006164 Slog.w(TAG, "Killing " + proc + " (adj " + adj + "): " + reason);
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07006165 EventLog.writeEvent(EventLogTags.AM_KILL, proc.pid,
6166 proc.processName, adj, reason);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006167 killed = true;
Dianne Hackborn906497c2010-05-10 15:57:38 -07006168 proc.killedBackground = true;
6169 Process.killProcessQuiet(pids[i]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006170 }
6171 }
6172 }
6173 return killed;
6174 }
6175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006176 public final void startRunning(String pkg, String cls, String action,
6177 String data) {
6178 synchronized(this) {
6179 if (mStartRunning) {
6180 return;
6181 }
6182 mStartRunning = true;
6183 mTopComponent = pkg != null && cls != null
6184 ? new ComponentName(pkg, cls) : null;
6185 mTopAction = action != null ? action : Intent.ACTION_MAIN;
6186 mTopData = data;
6187 if (!mSystemReady) {
6188 return;
6189 }
6190 }
6191
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07006192 systemReady(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006193 }
6194
6195 private void retrieveSettings() {
6196 final ContentResolver resolver = mContext.getContentResolver();
6197 String debugApp = Settings.System.getString(
6198 resolver, Settings.System.DEBUG_APP);
6199 boolean waitForDebugger = Settings.System.getInt(
6200 resolver, Settings.System.WAIT_FOR_DEBUGGER, 0) != 0;
6201 boolean alwaysFinishActivities = Settings.System.getInt(
6202 resolver, Settings.System.ALWAYS_FINISH_ACTIVITIES, 0) != 0;
6203
6204 Configuration configuration = new Configuration();
6205 Settings.System.getConfiguration(resolver, configuration);
6206
6207 synchronized (this) {
6208 mDebugApp = mOrigDebugApp = debugApp;
6209 mWaitForDebugger = mOrigWaitForDebugger = waitForDebugger;
6210 mAlwaysFinishActivities = alwaysFinishActivities;
6211 // This happens before any activities are started, so we can
6212 // change mConfiguration in-place.
6213 mConfiguration.updateFrom(configuration);
Dianne Hackborne36d6e22010-02-17 19:46:25 -08006214 mConfigurationSeq = mConfiguration.seq = 1;
Joe Onorato8a9b2202010-02-26 18:56:32 -08006215 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Initial config: " + mConfiguration);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006216 }
6217 }
6218
6219 public boolean testIsSystemReady() {
6220 // no need to synchronize(this) just to read & return the value
6221 return mSystemReady;
6222 }
6223
Dianne Hackborncef65ee2010-09-30 18:27:22 -07006224 private static File getCalledPreBootReceiversFile() {
6225 File dataDir = Environment.getDataDirectory();
6226 File systemDir = new File(dataDir, "system");
6227 File fname = new File(systemDir, "called_pre_boots.dat");
6228 return fname;
6229 }
6230
6231 private static ArrayList<ComponentName> readLastDonePreBootReceivers() {
6232 ArrayList<ComponentName> lastDoneReceivers = new ArrayList<ComponentName>();
6233 File file = getCalledPreBootReceiversFile();
6234 FileInputStream fis = null;
6235 try {
6236 fis = new FileInputStream(file);
6237 DataInputStream dis = new DataInputStream(new BufferedInputStream(fis, 2048));
6238 int vers = dis.readInt();
6239 String codename = dis.readUTF();
6240 if (vers == android.os.Build.VERSION.SDK_INT
6241 && codename.equals(android.os.Build.VERSION.CODENAME)) {
6242 int num = dis.readInt();
6243 while (num > 0) {
6244 num--;
6245 String pkg = dis.readUTF();
6246 String cls = dis.readUTF();
6247 lastDoneReceivers.add(new ComponentName(pkg, cls));
6248 }
6249 }
6250 } catch (FileNotFoundException e) {
6251 } catch (IOException e) {
6252 Slog.w(TAG, "Failure reading last done pre-boot receivers", e);
6253 } finally {
6254 if (fis != null) {
6255 try {
6256 fis.close();
6257 } catch (IOException e) {
6258 }
6259 }
6260 }
6261 return lastDoneReceivers;
6262 }
6263
6264 private static void writeLastDonePreBootReceivers(ArrayList<ComponentName> list) {
6265 File file = getCalledPreBootReceiversFile();
6266 FileOutputStream fos = null;
6267 DataOutputStream dos = null;
6268 try {
6269 Slog.i(TAG, "Writing new set of last done pre-boot receivers...");
6270 fos = new FileOutputStream(file);
6271 dos = new DataOutputStream(new BufferedOutputStream(fos, 2048));
6272 dos.writeInt(android.os.Build.VERSION.SDK_INT);
6273 dos.writeUTF(android.os.Build.VERSION.CODENAME);
6274 dos.writeInt(list.size());
6275 for (int i=0; i<list.size(); i++) {
6276 dos.writeUTF(list.get(i).getPackageName());
6277 dos.writeUTF(list.get(i).getClassName());
6278 }
6279 } catch (IOException e) {
6280 Slog.w(TAG, "Failure writing last done pre-boot receivers", e);
6281 file.delete();
6282 } finally {
Dianne Hackborn8bdf5932010-10-15 12:54:40 -07006283 FileUtils.sync(fos);
Dianne Hackborncef65ee2010-09-30 18:27:22 -07006284 if (dos != null) {
6285 try {
6286 dos.close();
6287 } catch (IOException e) {
6288 // TODO Auto-generated catch block
6289 e.printStackTrace();
6290 }
6291 }
6292 }
6293 }
6294
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07006295 public void systemReady(final Runnable goingCallback) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006296 // In the simulator, startRunning will never have been called, which
6297 // normally sets a few crucial variables. Do it here instead.
6298 if (!Process.supportsProcesses()) {
6299 mStartRunning = true;
6300 mTopAction = Intent.ACTION_MAIN;
6301 }
6302
6303 synchronized(this) {
6304 if (mSystemReady) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07006305 if (goingCallback != null) goingCallback.run();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006306 return;
6307 }
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006308
6309 // Check to see if there are any update receivers to run.
6310 if (!mDidUpdate) {
6311 if (mWaitingUpdate) {
6312 return;
6313 }
6314 Intent intent = new Intent(Intent.ACTION_PRE_BOOT_COMPLETED);
6315 List<ResolveInfo> ris = null;
6316 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07006317 ris = AppGlobals.getPackageManager().queryIntentReceivers(
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006318 intent, null, 0);
6319 } catch (RemoteException e) {
6320 }
6321 if (ris != null) {
6322 for (int i=ris.size()-1; i>=0; i--) {
6323 if ((ris.get(i).activityInfo.applicationInfo.flags
6324 &ApplicationInfo.FLAG_SYSTEM) == 0) {
6325 ris.remove(i);
6326 }
6327 }
6328 intent.addFlags(Intent.FLAG_RECEIVER_BOOT_UPGRADE);
Dianne Hackborncef65ee2010-09-30 18:27:22 -07006329
6330 ArrayList<ComponentName> lastDoneReceivers = readLastDonePreBootReceivers();
6331
6332 final ArrayList<ComponentName> doneReceivers = new ArrayList<ComponentName>();
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006333 for (int i=0; i<ris.size(); i++) {
6334 ActivityInfo ai = ris.get(i).activityInfo;
Dianne Hackborncef65ee2010-09-30 18:27:22 -07006335 ComponentName comp = new ComponentName(ai.packageName, ai.name);
6336 if (lastDoneReceivers.contains(comp)) {
6337 ris.remove(i);
6338 i--;
6339 }
6340 }
6341
6342 for (int i=0; i<ris.size(); i++) {
6343 ActivityInfo ai = ris.get(i).activityInfo;
6344 ComponentName comp = new ComponentName(ai.packageName, ai.name);
6345 doneReceivers.add(comp);
6346 intent.setComponent(comp);
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006347 IIntentReceiver finisher = null;
Dianne Hackbornd6847842010-01-12 18:14:19 -08006348 if (i == ris.size()-1) {
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006349 finisher = new IIntentReceiver.Stub() {
6350 public void performReceive(Intent intent, int resultCode,
Dianne Hackborn68d881c2009-10-05 13:58:17 -07006351 String data, Bundle extras, boolean ordered,
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -07006352 boolean sticky) {
6353 // The raw IIntentReceiver interface is called
6354 // with the AM lock held, so redispatch to
6355 // execute our code without the lock.
6356 mHandler.post(new Runnable() {
6357 public void run() {
6358 synchronized (ActivityManagerService.this) {
6359 mDidUpdate = true;
6360 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07006361 writeLastDonePreBootReceivers(doneReceivers);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -07006362 systemReady(goingCallback);
6363 }
6364 });
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006365 }
6366 };
6367 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08006368 Slog.i(TAG, "Sending system update to: " + intent.getComponent());
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006369 broadcastIntentLocked(null, null, intent, null, finisher,
6370 0, null, null, null, true, false, MY_PID, Process.SYSTEM_UID);
Dianne Hackbornd6847842010-01-12 18:14:19 -08006371 if (finisher != null) {
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006372 mWaitingUpdate = true;
6373 }
6374 }
6375 }
6376 if (mWaitingUpdate) {
6377 return;
6378 }
6379 mDidUpdate = true;
6380 }
6381
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006382 mSystemReady = true;
6383 if (!mStartRunning) {
6384 return;
6385 }
6386 }
6387
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006388 ArrayList<ProcessRecord> procsToKill = null;
6389 synchronized(mPidsSelfLocked) {
6390 for (int i=mPidsSelfLocked.size()-1; i>=0; i--) {
6391 ProcessRecord proc = mPidsSelfLocked.valueAt(i);
6392 if (!isAllowedWhileBooting(proc.info)){
6393 if (procsToKill == null) {
6394 procsToKill = new ArrayList<ProcessRecord>();
6395 }
6396 procsToKill.add(proc);
6397 }
6398 }
6399 }
6400
Dianne Hackborncef65ee2010-09-30 18:27:22 -07006401 synchronized(this) {
6402 if (procsToKill != null) {
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006403 for (int i=procsToKill.size()-1; i>=0; i--) {
6404 ProcessRecord proc = procsToKill.get(i);
Joe Onorato8a9b2202010-02-26 18:56:32 -08006405 Slog.i(TAG, "Removing system update proc: " + proc);
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006406 removeProcessLocked(proc, true);
6407 }
6408 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07006409
6410 // Now that we have cleaned up any update processes, we
6411 // are ready to start launching real processes and know that
6412 // we won't trample on them any more.
6413 mProcessesReady = true;
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006414 }
6415
Joe Onorato8a9b2202010-02-26 18:56:32 -08006416 Slog.i(TAG, "System now ready");
Doug Zongker2bec3d42009-12-04 12:52:44 -08006417 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_AMS_READY,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006418 SystemClock.uptimeMillis());
6419
6420 synchronized(this) {
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006421 // Make sure we have no pre-ready processes sitting around.
6422
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006423 if (mFactoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
6424 ResolveInfo ri = mContext.getPackageManager()
6425 .resolveActivity(new Intent(Intent.ACTION_FACTORY_TEST),
Dianne Hackborn1655be42009-05-08 14:29:01 -07006426 STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006427 CharSequence errorMsg = null;
6428 if (ri != null) {
6429 ActivityInfo ai = ri.activityInfo;
6430 ApplicationInfo app = ai.applicationInfo;
6431 if ((app.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
6432 mTopAction = Intent.ACTION_FACTORY_TEST;
6433 mTopData = null;
6434 mTopComponent = new ComponentName(app.packageName,
6435 ai.name);
6436 } else {
6437 errorMsg = mContext.getResources().getText(
6438 com.android.internal.R.string.factorytest_not_system);
6439 }
6440 } else {
6441 errorMsg = mContext.getResources().getText(
6442 com.android.internal.R.string.factorytest_no_action);
6443 }
6444 if (errorMsg != null) {
6445 mTopAction = null;
6446 mTopData = null;
6447 mTopComponent = null;
6448 Message msg = Message.obtain();
6449 msg.what = SHOW_FACTORY_ERROR_MSG;
6450 msg.getData().putCharSequence("msg", errorMsg);
6451 mHandler.sendMessage(msg);
6452 }
6453 }
6454 }
6455
6456 retrieveSettings();
6457
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07006458 if (goingCallback != null) goingCallback.run();
6459
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006460 synchronized (this) {
6461 if (mFactoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
6462 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07006463 List apps = AppGlobals.getPackageManager().
Dianne Hackborn1655be42009-05-08 14:29:01 -07006464 getPersistentApplications(STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006465 if (apps != null) {
6466 int N = apps.size();
6467 int i;
6468 for (i=0; i<N; i++) {
6469 ApplicationInfo info
6470 = (ApplicationInfo)apps.get(i);
6471 if (info != null &&
6472 !info.packageName.equals("android")) {
6473 addAppLocked(info);
6474 }
6475 }
6476 }
6477 } catch (RemoteException ex) {
6478 // pm is in same process, this will never happen.
6479 }
6480 }
6481
Dianne Hackborn9acc0302009-08-25 00:27:12 -07006482 // Start up initial activity.
6483 mBooting = true;
6484
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006485 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07006486 if (AppGlobals.getPackageManager().hasSystemUidErrors()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006487 Message msg = Message.obtain();
6488 msg.what = SHOW_UID_ERROR_MSG;
6489 mHandler.sendMessage(msg);
6490 }
6491 } catch (RemoteException e) {
6492 }
6493
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006494 mMainStack.resumeTopActivityLocked(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006495 }
6496 }
6497
Dan Egnorb7f03672009-12-09 16:22:32 -08006498 private boolean makeAppCrashingLocked(ProcessRecord app,
Dan Egnor60d87622009-12-16 16:32:58 -08006499 String shortMsg, String longMsg, String stackTrace) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006500 app.crashing = true;
Dan Egnorb7f03672009-12-09 16:22:32 -08006501 app.crashingReport = generateProcessError(app,
Dan Egnor60d87622009-12-16 16:32:58 -08006502 ActivityManager.ProcessErrorStateInfo.CRASHED, null, shortMsg, longMsg, stackTrace);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006503 startAppProblemLocked(app);
6504 app.stopFreezingAllLocked();
6505 return handleAppCrashLocked(app);
6506 }
6507
Dan Egnorb7f03672009-12-09 16:22:32 -08006508 private void makeAppNotRespondingLocked(ProcessRecord app,
Dan Egnor60d87622009-12-16 16:32:58 -08006509 String activity, String shortMsg, String longMsg) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006510 app.notResponding = true;
Dan Egnorb7f03672009-12-09 16:22:32 -08006511 app.notRespondingReport = generateProcessError(app,
Dan Egnor60d87622009-12-16 16:32:58 -08006512 ActivityManager.ProcessErrorStateInfo.NOT_RESPONDING,
6513 activity, shortMsg, longMsg, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006514 startAppProblemLocked(app);
6515 app.stopFreezingAllLocked();
6516 }
6517
6518 /**
6519 * Generate a process error record, suitable for attachment to a ProcessRecord.
6520 *
6521 * @param app The ProcessRecord in which the error occurred.
6522 * @param condition Crashing, Application Not Responding, etc. Values are defined in
6523 * ActivityManager.AppErrorStateInfo
Dan Egnor60d87622009-12-16 16:32:58 -08006524 * @param activity The activity associated with the crash, if known.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006525 * @param shortMsg Short message describing the crash.
6526 * @param longMsg Long message describing the crash.
Dan Egnorb7f03672009-12-09 16:22:32 -08006527 * @param stackTrace Full crash stack trace, may be null.
6528 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006529 * @return Returns a fully-formed AppErrorStateInfo record.
6530 */
6531 private ActivityManager.ProcessErrorStateInfo generateProcessError(ProcessRecord app,
Dan Egnor60d87622009-12-16 16:32:58 -08006532 int condition, String activity, String shortMsg, String longMsg, String stackTrace) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006533 ActivityManager.ProcessErrorStateInfo report = new ActivityManager.ProcessErrorStateInfo();
Dan Egnorb7f03672009-12-09 16:22:32 -08006534
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006535 report.condition = condition;
6536 report.processName = app.processName;
6537 report.pid = app.pid;
6538 report.uid = app.info.uid;
Dan Egnor60d87622009-12-16 16:32:58 -08006539 report.tag = activity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006540 report.shortMsg = shortMsg;
6541 report.longMsg = longMsg;
Dan Egnorb7f03672009-12-09 16:22:32 -08006542 report.stackTrace = stackTrace;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006543
6544 return report;
6545 }
6546
Dan Egnor42471dd2010-01-07 17:25:22 -08006547 void killAppAtUsersRequest(ProcessRecord app, Dialog fromDialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006548 synchronized (this) {
6549 app.crashing = false;
6550 app.crashingReport = null;
6551 app.notResponding = false;
6552 app.notRespondingReport = null;
6553 if (app.anrDialog == fromDialog) {
6554 app.anrDialog = null;
6555 }
6556 if (app.waitDialog == fromDialog) {
6557 app.waitDialog = null;
6558 }
6559 if (app.pid > 0 && app.pid != MY_PID) {
Dan Egnor42471dd2010-01-07 17:25:22 -08006560 handleAppCrashLocked(app);
Dianne Hackborn8633e682010-04-22 16:03:41 -07006561 Slog.i(ActivityManagerService.TAG, "Killing "
6562 + app.processName + " (pid=" + app.pid + "): user's request");
6563 EventLog.writeEvent(EventLogTags.AM_KILL, app.pid,
6564 app.processName, app.setAdj, "user's request after error");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006565 Process.killProcess(app.pid);
6566 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006567 }
6568 }
Dan Egnor42471dd2010-01-07 17:25:22 -08006569
Dan Egnorb7f03672009-12-09 16:22:32 -08006570 private boolean handleAppCrashLocked(ProcessRecord app) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006571 long now = SystemClock.uptimeMillis();
6572
6573 Long crashTime = mProcessCrashTimes.get(app.info.processName,
6574 app.info.uid);
6575 if (crashTime != null && now < crashTime+MIN_CRASH_INTERVAL) {
6576 // This process loses!
Joe Onorato8a9b2202010-02-26 18:56:32 -08006577 Slog.w(TAG, "Process " + app.info.processName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006578 + " has crashed too many times: killing!");
Doug Zongker2bec3d42009-12-04 12:52:44 -08006579 EventLog.writeEvent(EventLogTags.AM_PROCESS_CRASHED_TOO_MUCH,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006580 app.info.processName, app.info.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006581 for (int i=mMainStack.mHistory.size()-1; i>=0; i--) {
6582 ActivityRecord r = (ActivityRecord)mMainStack.mHistory.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006583 if (r.app == app) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08006584 Slog.w(TAG, " Force finishing activity "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006585 + r.intent.getComponent().flattenToShortString());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006586 r.stack.finishActivityLocked(r, i, Activity.RESULT_CANCELED, null, "crashed");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006587 }
6588 }
6589 if (!app.persistent) {
Dianne Hackborn070783f2010-12-29 16:46:28 -08006590 // Don't let services in this process be restarted and potentially
6591 // annoy the user repeatedly. Unless it is persistent, since those
6592 // processes run critical code.
6593 killServicesLocked(app, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006594 // We don't want to start this process again until the user
6595 // explicitly does so... but for persistent process, we really
6596 // need to keep it running. If a persistent process is actually
6597 // repeatedly crashing, then badness for everyone.
Doug Zongker2bec3d42009-12-04 12:52:44 -08006598 EventLog.writeEvent(EventLogTags.AM_PROC_BAD, app.info.uid,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006599 app.info.processName);
6600 mBadProcesses.put(app.info.processName, app.info.uid, now);
6601 app.bad = true;
6602 mProcessCrashTimes.remove(app.info.processName, app.info.uid);
6603 app.removed = true;
6604 removeProcessLocked(app, false);
6605 return false;
6606 }
Dianne Hackbornf83c5552010-03-31 22:19:32 -07006607 } else {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006608 ActivityRecord r = mMainStack.topRunningActivityLocked(null);
Dianne Hackbornf83c5552010-03-31 22:19:32 -07006609 if (r.app == app) {
6610 // If the top running activity is from this crashing
6611 // process, then terminate it to avoid getting in a loop.
6612 Slog.w(TAG, " Force finishing activity "
6613 + r.intent.getComponent().flattenToShortString());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006614 int index = mMainStack.indexOfTokenLocked(r);
6615 r.stack.finishActivityLocked(r, index,
Dianne Hackbornf83c5552010-03-31 22:19:32 -07006616 Activity.RESULT_CANCELED, null, "crashed");
Dianne Hackborn070783f2010-12-29 16:46:28 -08006617 // Also terminate any activities below it that aren't yet
Dianne Hackbornf83c5552010-03-31 22:19:32 -07006618 // stopped, to avoid a situation where one will get
6619 // re-start our crashing activity once it gets resumed again.
6620 index--;
6621 if (index >= 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006622 r = (ActivityRecord)mMainStack.mHistory.get(index);
Dianne Hackbornf83c5552010-03-31 22:19:32 -07006623 if (r.state == ActivityState.RESUMED
6624 || r.state == ActivityState.PAUSING
6625 || r.state == ActivityState.PAUSED) {
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08006626 if (!r.isHomeActivity || mHomeProcess != r.app) {
Dianne Hackbornf83c5552010-03-31 22:19:32 -07006627 Slog.w(TAG, " Force finishing activity "
6628 + r.intent.getComponent().flattenToShortString());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07006629 r.stack.finishActivityLocked(r, index,
Dianne Hackbornf83c5552010-03-31 22:19:32 -07006630 Activity.RESULT_CANCELED, null, "crashed");
6631 }
6632 }
6633 }
6634 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006635 }
6636
6637 // Bump up the crash count of any services currently running in the proc.
6638 if (app.services.size() != 0) {
6639 // Any services running in the application need to be placed
6640 // back in the pending list.
Dianne Hackborn860755f2010-06-03 18:47:52 -07006641 Iterator<ServiceRecord> it = app.services.iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006642 while (it.hasNext()) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07006643 ServiceRecord sr = it.next();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006644 sr.crashCount++;
6645 }
6646 }
Mattias Larssona4fd0072010-06-22 22:37:03 +02006647
6648 // If the crashing process is what we consider to be the "home process" and it has been
6649 // replaced by a third-party app, clear the package preferred activities from packages
6650 // with a home activity running in the process to prevent a repeatedly crashing app
6651 // from blocking the user to manually clear the list.
6652 if (app == mHomeProcess && mHomeProcess.activities.size() > 0
6653 && (mHomeProcess.info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
6654 Iterator it = mHomeProcess.activities.iterator();
6655 while (it.hasNext()) {
Jean-Baptiste Queru5ea89f72010-07-30 09:30:31 -07006656 ActivityRecord r = (ActivityRecord)it.next();
Mattias Larssona4fd0072010-06-22 22:37:03 +02006657 if (r.isHomeActivity) {
6658 Log.i(TAG, "Clearing package preferred activities from " + r.packageName);
6659 try {
6660 ActivityThread.getPackageManager()
6661 .clearPackagePreferredActivities(r.packageName);
6662 } catch (RemoteException c) {
6663 // pm is in same process, this will never happen.
6664 }
6665 }
6666 }
6667 }
6668
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006669 mProcessCrashTimes.put(app.info.processName, app.info.uid, now);
6670 return true;
6671 }
6672
6673 void startAppProblemLocked(ProcessRecord app) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08006674 app.errorReportReceiver = ApplicationErrorReport.getErrorReportReceiver(
6675 mContext, app.info.packageName, app.info.flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006676 skipCurrentReceiverLocked(app);
6677 }
6678
6679 void skipCurrentReceiverLocked(ProcessRecord app) {
6680 boolean reschedule = false;
6681 BroadcastRecord r = app.curReceiver;
6682 if (r != null) {
6683 // The current broadcast is waiting for this app's receiver
6684 // to be finished. Looks like that's not going to happen, so
6685 // let the broadcast continue.
Jeff Brown4d94a762010-09-23 11:33:28 -07006686 logBroadcastReceiverDiscardLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006687 finishReceiverLocked(r.receiver, r.resultCode, r.resultData,
6688 r.resultExtras, r.resultAbort, true);
6689 reschedule = true;
6690 }
6691 r = mPendingBroadcast;
6692 if (r != null && r.curApp == app) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08006693 if (DEBUG_BROADCAST) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006694 "skip & discard pending app " + r);
Jeff Brown4d94a762010-09-23 11:33:28 -07006695 logBroadcastReceiverDiscardLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006696 finishReceiverLocked(r.receiver, r.resultCode, r.resultData,
6697 r.resultExtras, r.resultAbort, true);
6698 reschedule = true;
6699 }
6700 if (reschedule) {
6701 scheduleBroadcastsLocked();
6702 }
6703 }
6704
Dan Egnor60d87622009-12-16 16:32:58 -08006705 /**
6706 * Used by {@link com.android.internal.os.RuntimeInit} to report when an application crashes.
6707 * The application process will exit immediately after this call returns.
6708 * @param app object of the crashing app, null for the system server
6709 * @param crashInfo describing the exception
6710 */
6711 public void handleApplicationCrash(IBinder app, ApplicationErrorReport.CrashInfo crashInfo) {
6712 ProcessRecord r = findAppProcess(app);
6713
6714 EventLog.writeEvent(EventLogTags.AM_CRASH, Binder.getCallingPid(),
6715 app == null ? "system" : (r == null ? "unknown" : r.processName),
Dan Egnor2780e732010-01-22 14:47:35 -08006716 r == null ? -1 : r.info.flags,
Dan Egnor60d87622009-12-16 16:32:58 -08006717 crashInfo.exceptionClassName,
6718 crashInfo.exceptionMessage,
6719 crashInfo.throwFileName,
6720 crashInfo.throwLineNumber);
6721
Dan Egnor42471dd2010-01-07 17:25:22 -08006722 addErrorToDropBox("crash", r, null, null, null, null, null, crashInfo);
Dan Egnor60d87622009-12-16 16:32:58 -08006723
6724 crashApplication(r, crashInfo);
6725 }
6726
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07006727 public void handleApplicationStrictModeViolation(
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006728 IBinder app,
6729 int violationMask,
6730 StrictMode.ViolationInfo info) {
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07006731 ProcessRecord r = findAppProcess(app);
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07006732
Brad Fitzpatrick46d42382010-06-11 13:57:58 -07006733 if ((violationMask & StrictMode.PENALTY_DROPBOX) != 0) {
Brad Fitzpatrickf3d86be2010-11-23 10:31:52 -08006734 Integer stackFingerprint = info.hashCode();
Brad Fitzpatrick143666f2010-06-14 12:40:21 -07006735 boolean logIt = true;
6736 synchronized (mAlreadyLoggedViolatedStacks) {
6737 if (mAlreadyLoggedViolatedStacks.contains(stackFingerprint)) {
6738 logIt = false;
6739 // TODO: sub-sample into EventLog for these, with
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006740 // the info.durationMillis? Then we'd get
Brad Fitzpatrick143666f2010-06-14 12:40:21 -07006741 // the relative pain numbers, without logging all
6742 // the stack traces repeatedly. We'd want to do
6743 // likewise in the client code, which also does
6744 // dup suppression, before the Binder call.
6745 } else {
6746 if (mAlreadyLoggedViolatedStacks.size() >= MAX_DUP_SUPPRESSED_STACKS) {
6747 mAlreadyLoggedViolatedStacks.clear();
6748 }
6749 mAlreadyLoggedViolatedStacks.add(stackFingerprint);
6750 }
6751 }
6752 if (logIt) {
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006753 logStrictModeViolationToDropBox(r, info);
Brad Fitzpatrick143666f2010-06-14 12:40:21 -07006754 }
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07006755 }
Brad Fitzpatrick46d42382010-06-11 13:57:58 -07006756
6757 if ((violationMask & StrictMode.PENALTY_DIALOG) != 0) {
6758 AppErrorResult result = new AppErrorResult();
6759 synchronized (this) {
6760 final long origId = Binder.clearCallingIdentity();
6761
6762 Message msg = Message.obtain();
6763 msg.what = SHOW_STRICT_MODE_VIOLATION_MSG;
6764 HashMap<String, Object> data = new HashMap<String, Object>();
6765 data.put("result", result);
6766 data.put("app", r);
Brad Fitzpatrick143666f2010-06-14 12:40:21 -07006767 data.put("violationMask", violationMask);
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006768 data.put("info", info);
Brad Fitzpatrick46d42382010-06-11 13:57:58 -07006769 msg.obj = data;
6770 mHandler.sendMessage(msg);
6771
6772 Binder.restoreCallingIdentity(origId);
6773 }
6774 int res = result.get();
Dianne Hackbornb424b632010-08-18 15:59:05 -07006775 Slog.w(TAG, "handleApplicationStrictModeViolation; res=" + res);
Brad Fitzpatrick46d42382010-06-11 13:57:58 -07006776 }
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07006777 }
6778
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006779 // Depending on the policy in effect, there could be a bunch of
6780 // these in quick succession so we try to batch these together to
6781 // minimize disk writes, number of dropbox entries, and maximize
6782 // compression, by having more fewer, larger records.
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006783 private void logStrictModeViolationToDropBox(
6784 ProcessRecord process,
6785 StrictMode.ViolationInfo info) {
6786 if (info == null) {
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006787 return;
6788 }
6789 final boolean isSystemApp = process == null ||
6790 (process.info.flags & (ApplicationInfo.FLAG_SYSTEM |
6791 ApplicationInfo.FLAG_UPDATED_SYSTEM_APP)) != 0;
6792 final String dropboxTag = isSystemApp ? "system_app_strictmode" : "data_app_strictmode";
6793 final DropBoxManager dbox = (DropBoxManager)
6794 mContext.getSystemService(Context.DROPBOX_SERVICE);
6795
6796 // Exit early if the dropbox isn't configured to accept this report type.
6797 if (dbox == null || !dbox.isTagEnabled(dropboxTag)) return;
6798
6799 boolean bufferWasEmpty;
Brad Fitzpatricke73eb532010-07-27 16:54:39 -07006800 boolean needsFlush;
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006801 final StringBuilder sb = isSystemApp ? mStrictModeBuffer : new StringBuilder(1024);
6802 synchronized (sb) {
6803 bufferWasEmpty = sb.length() == 0;
6804 appendDropBoxProcessHeaders(process, sb);
6805 sb.append("Build: ").append(Build.FINGERPRINT).append("\n");
6806 sb.append("System-App: ").append(isSystemApp).append("\n");
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006807 sb.append("Uptime-Millis: ").append(info.violationUptimeMillis).append("\n");
6808 if (info.violationNumThisLoop != 0) {
6809 sb.append("Loop-Violation-Number: ").append(info.violationNumThisLoop).append("\n");
6810 }
Brad Fitzpatrick599ca292010-10-22 14:47:03 -07006811 if (info.numAnimationsRunning != 0) {
6812 sb.append("Animations-Running: ").append(info.numAnimationsRunning).append("\n");
6813 }
Brad Fitzpatrickbfb19192010-10-29 15:25:44 -07006814 if (info.broadcastIntentAction != null) {
6815 sb.append("Broadcast-Intent-Action: ").append(info.broadcastIntentAction).append("\n");
6816 }
Brad Fitzpatricke7520d82010-11-10 18:08:36 -08006817 if (info.durationMillis != -1) {
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006818 sb.append("Duration-Millis: ").append(info.durationMillis).append("\n");
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006819 }
Brad Fitzpatricke7520d82010-11-10 18:08:36 -08006820 if (info.tags != null) {
6821 for (String tag : info.tags) {
6822 sb.append("Span-Tag: ").append(tag).append("\n");
6823 }
6824 }
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006825 sb.append("\n");
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07006826 if (info.crashInfo != null && info.crashInfo.stackTrace != null) {
6827 sb.append(info.crashInfo.stackTrace);
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006828 }
6829 sb.append("\n");
Brad Fitzpatricke73eb532010-07-27 16:54:39 -07006830
6831 // Only buffer up to ~64k. Various logging bits truncate
6832 // things at 128k.
6833 needsFlush = (sb.length() > 64 * 1024);
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006834 }
6835
Brad Fitzpatricke73eb532010-07-27 16:54:39 -07006836 // Flush immediately if the buffer's grown too large, or this
6837 // is a non-system app. Non-system apps are isolated with a
6838 // different tag & policy and not batched.
6839 //
6840 // Batching is useful during internal testing with
6841 // StrictMode settings turned up high. Without batching,
6842 // thousands of separate files could be created on boot.
6843 if (!isSystemApp || needsFlush) {
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006844 new Thread("Error dump: " + dropboxTag) {
6845 @Override
6846 public void run() {
Brad Fitzpatricke73eb532010-07-27 16:54:39 -07006847 String report;
6848 synchronized (sb) {
6849 report = sb.toString();
6850 sb.delete(0, sb.length());
6851 sb.trimToSize();
6852 }
6853 if (report.length() != 0) {
6854 dbox.addText(dropboxTag, report);
6855 }
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006856 }
6857 }.start();
6858 return;
6859 }
6860
6861 // System app batching:
6862 if (!bufferWasEmpty) {
Brad Fitzpatricke73eb532010-07-27 16:54:39 -07006863 // An existing dropbox-writing thread is outstanding, so
6864 // we don't need to start it up. The existing thread will
6865 // catch the buffer appends we just did.
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006866 return;
6867 }
6868
6869 // Worker thread to both batch writes and to avoid blocking the caller on I/O.
6870 // (After this point, we shouldn't access AMS internal data structures.)
6871 new Thread("Error dump: " + dropboxTag) {
6872 @Override
6873 public void run() {
6874 // 5 second sleep to let stacks arrive and be batched together
6875 try {
6876 Thread.sleep(5000); // 5 seconds
6877 } catch (InterruptedException e) {}
6878
6879 String errorReport;
6880 synchronized (mStrictModeBuffer) {
6881 errorReport = mStrictModeBuffer.toString();
6882 if (errorReport.length() == 0) {
6883 return;
6884 }
6885 mStrictModeBuffer.delete(0, mStrictModeBuffer.length());
6886 mStrictModeBuffer.trimToSize();
6887 }
6888 dbox.addText(dropboxTag, errorReport);
6889 }
6890 }.start();
6891 }
6892
Dan Egnor60d87622009-12-16 16:32:58 -08006893 /**
6894 * Used by {@link Log} via {@link com.android.internal.os.RuntimeInit} to report serious errors.
6895 * @param app object of the crashing app, null for the system server
6896 * @param tag reported by the caller
6897 * @param crashInfo describing the context of the error
6898 * @return true if the process should exit immediately (WTF is fatal)
6899 */
6900 public boolean handleApplicationWtf(IBinder app, String tag,
Dan Egnorb7f03672009-12-09 16:22:32 -08006901 ApplicationErrorReport.CrashInfo crashInfo) {
Dan Egnor60d87622009-12-16 16:32:58 -08006902 ProcessRecord r = findAppProcess(app);
6903
6904 EventLog.writeEvent(EventLogTags.AM_WTF, Binder.getCallingPid(),
6905 app == null ? "system" : (r == null ? "unknown" : r.processName),
Dan Egnor2780e732010-01-22 14:47:35 -08006906 r == null ? -1 : r.info.flags,
Dan Egnor60d87622009-12-16 16:32:58 -08006907 tag, crashInfo.exceptionMessage);
6908
Dan Egnor42471dd2010-01-07 17:25:22 -08006909 addErrorToDropBox("wtf", r, null, null, tag, null, null, crashInfo);
Dan Egnor60d87622009-12-16 16:32:58 -08006910
Doug Zongker43866e02010-01-07 12:09:54 -08006911 if (Settings.Secure.getInt(mContext.getContentResolver(),
6912 Settings.Secure.WTF_IS_FATAL, 0) != 0) {
Dan Egnor60d87622009-12-16 16:32:58 -08006913 crashApplication(r, crashInfo);
6914 return true;
6915 } else {
6916 return false;
6917 }
6918 }
6919
6920 /**
6921 * @param app object of some object (as stored in {@link com.android.internal.os.RuntimeInit})
6922 * @return the corresponding {@link ProcessRecord} object, or null if none could be found
6923 */
6924 private ProcessRecord findAppProcess(IBinder app) {
6925 if (app == null) {
6926 return null;
6927 }
6928
6929 synchronized (this) {
6930 for (SparseArray<ProcessRecord> apps : mProcessNames.getMap().values()) {
6931 final int NA = apps.size();
6932 for (int ia=0; ia<NA; ia++) {
6933 ProcessRecord p = apps.valueAt(ia);
6934 if (p.thread != null && p.thread.asBinder() == app) {
6935 return p;
6936 }
6937 }
6938 }
6939
Joe Onorato8a9b2202010-02-26 18:56:32 -08006940 Slog.w(TAG, "Can't find mystery application: " + app);
Dan Egnor60d87622009-12-16 16:32:58 -08006941 return null;
6942 }
6943 }
6944
6945 /**
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006946 * Utility function for addErrorToDropBox and handleStrictModeViolation's logging
6947 * to append various headers to the dropbox log text.
Dan Egnor60d87622009-12-16 16:32:58 -08006948 */
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07006949 private void appendDropBoxProcessHeaders(ProcessRecord process, StringBuilder sb) {
6950 // Note: ProcessRecord 'process' is guarded by the service
6951 // instance. (notably process.pkgList, which could otherwise change
6952 // concurrently during execution of this method)
6953 synchronized (this) {
6954 if (process == null || process.pid == MY_PID) {
6955 sb.append("Process: system_server\n");
6956 } else {
6957 sb.append("Process: ").append(process.processName).append("\n");
6958 }
6959 if (process == null) {
6960 return;
6961 }
Dan Egnora455d192010-03-12 08:52:28 -08006962 int flags = process.info.flags;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07006963 IPackageManager pm = AppGlobals.getPackageManager();
Dan Egnora455d192010-03-12 08:52:28 -08006964 sb.append("Flags: 0x").append(Integer.toString(flags, 16)).append("\n");
6965 for (String pkg : process.pkgList) {
6966 sb.append("Package: ").append(pkg);
Dan Egnor42471dd2010-01-07 17:25:22 -08006967 try {
Dan Egnora455d192010-03-12 08:52:28 -08006968 PackageInfo pi = pm.getPackageInfo(pkg, 0);
6969 if (pi != null) {
6970 sb.append(" v").append(pi.versionCode);
6971 if (pi.versionName != null) {
6972 sb.append(" (").append(pi.versionName).append(")");
6973 }
6974 }
6975 } catch (RemoteException e) {
6976 Slog.e(TAG, "Error getting package info: " + pkg, e);
Dan Egnor60d87622009-12-16 16:32:58 -08006977 }
Dan Egnora455d192010-03-12 08:52:28 -08006978 sb.append("\n");
Dan Egnor60d87622009-12-16 16:32:58 -08006979 }
Dan Egnora455d192010-03-12 08:52:28 -08006980 }
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07006981 }
6982
6983 private static String processClass(ProcessRecord process) {
6984 if (process == null || process.pid == MY_PID) {
6985 return "system_server";
6986 } else if ((process.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
6987 return "system_app";
6988 } else {
6989 return "data_app";
6990 }
6991 }
6992
6993 /**
6994 * Write a description of an error (crash, WTF, ANR) to the drop box.
6995 * @param eventType to include in the drop box tag ("crash", "wtf", etc.)
6996 * @param process which caused the error, null means the system server
6997 * @param activity which triggered the error, null if unknown
6998 * @param parent activity related to the error, null if unknown
6999 * @param subject line related to the error, null if absent
7000 * @param report in long form describing the error, null if absent
7001 * @param logFile to include in the report, null if none
7002 * @param crashInfo giving an application stack trace, null if absent
7003 */
7004 public void addErrorToDropBox(String eventType,
7005 ProcessRecord process, ActivityRecord activity, ActivityRecord parent, String subject,
7006 final String report, final File logFile,
7007 final ApplicationErrorReport.CrashInfo crashInfo) {
7008 // NOTE -- this must never acquire the ActivityManagerService lock,
7009 // otherwise the watchdog may be prevented from resetting the system.
7010
7011 final String dropboxTag = processClass(process) + "_" + eventType;
7012 final DropBoxManager dbox = (DropBoxManager)
7013 mContext.getSystemService(Context.DROPBOX_SERVICE);
7014
7015 // Exit early if the dropbox isn't configured to accept this report type.
7016 if (dbox == null || !dbox.isTagEnabled(dropboxTag)) return;
7017
7018 final StringBuilder sb = new StringBuilder(1024);
7019 appendDropBoxProcessHeaders(process, sb);
Dan Egnora455d192010-03-12 08:52:28 -08007020 if (activity != null) {
7021 sb.append("Activity: ").append(activity.shortComponentName).append("\n");
7022 }
7023 if (parent != null && parent.app != null && parent.app.pid != process.pid) {
7024 sb.append("Parent-Process: ").append(parent.app.processName).append("\n");
7025 }
7026 if (parent != null && parent != activity) {
7027 sb.append("Parent-Activity: ").append(parent.shortComponentName).append("\n");
7028 }
7029 if (subject != null) {
7030 sb.append("Subject: ").append(subject).append("\n");
7031 }
7032 sb.append("Build: ").append(Build.FINGERPRINT).append("\n");
Christian Lindeberg03d2ca62010-09-28 14:52:20 +02007033 if (Debug.isDebuggerConnected()) {
7034 sb.append("Debugger: Connected\n");
7035 }
Dan Egnora455d192010-03-12 08:52:28 -08007036 sb.append("\n");
7037
7038 // Do the rest in a worker thread to avoid blocking the caller on I/O
7039 // (After this point, we shouldn't access AMS internal data structures.)
7040 Thread worker = new Thread("Error dump: " + dropboxTag) {
7041 @Override
7042 public void run() {
7043 if (report != null) {
7044 sb.append(report);
7045 }
7046 if (logFile != null) {
7047 try {
7048 sb.append(FileUtils.readTextFile(logFile, 128 * 1024, "\n\n[[TRUNCATED]]"));
7049 } catch (IOException e) {
7050 Slog.e(TAG, "Error reading " + logFile, e);
7051 }
7052 }
7053 if (crashInfo != null && crashInfo.stackTrace != null) {
7054 sb.append(crashInfo.stackTrace);
7055 }
7056
7057 String setting = Settings.Secure.ERROR_LOGCAT_PREFIX + dropboxTag;
7058 int lines = Settings.Secure.getInt(mContext.getContentResolver(), setting, 0);
7059 if (lines > 0) {
7060 sb.append("\n");
7061
7062 // Merge several logcat streams, and take the last N lines
7063 InputStreamReader input = null;
7064 try {
7065 java.lang.Process logcat = new ProcessBuilder("/system/bin/logcat",
7066 "-v", "time", "-b", "events", "-b", "system", "-b", "main",
7067 "-t", String.valueOf(lines)).redirectErrorStream(true).start();
7068
7069 try { logcat.getOutputStream().close(); } catch (IOException e) {}
7070 try { logcat.getErrorStream().close(); } catch (IOException e) {}
7071 input = new InputStreamReader(logcat.getInputStream());
7072
7073 int num;
7074 char[] buf = new char[8192];
7075 while ((num = input.read(buf)) > 0) sb.append(buf, 0, num);
7076 } catch (IOException e) {
7077 Slog.e(TAG, "Error running logcat", e);
7078 } finally {
7079 if (input != null) try { input.close(); } catch (IOException e) {}
7080 }
7081 }
7082
7083 dbox.addText(dropboxTag, sb.toString());
Dan Egnor60d87622009-12-16 16:32:58 -08007084 }
Dan Egnora455d192010-03-12 08:52:28 -08007085 };
7086
7087 if (process == null || process.pid == MY_PID) {
7088 worker.run(); // We may be about to die -- need to run this synchronously
7089 } else {
7090 worker.start();
Dan Egnor60d87622009-12-16 16:32:58 -08007091 }
7092 }
7093
7094 /**
7095 * Bring up the "unexpected error" dialog box for a crashing app.
7096 * Deal with edge cases (intercepts from instrumented applications,
7097 * ActivityController, error intent receivers, that sort of thing).
7098 * @param r the application crashing
7099 * @param crashInfo describing the failure
7100 */
7101 private void crashApplication(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo) {
Dan Egnorb7f03672009-12-09 16:22:32 -08007102 long timeMillis = System.currentTimeMillis();
7103 String shortMsg = crashInfo.exceptionClassName;
7104 String longMsg = crashInfo.exceptionMessage;
7105 String stackTrace = crashInfo.stackTrace;
7106 if (shortMsg != null && longMsg != null) {
7107 longMsg = shortMsg + ": " + longMsg;
7108 } else if (shortMsg != null) {
7109 longMsg = shortMsg;
7110 }
7111
Dan Egnor60d87622009-12-16 16:32:58 -08007112 AppErrorResult result = new AppErrorResult();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007113 synchronized (this) {
Dianne Hackbornb06ea702009-07-13 13:07:51 -07007114 if (mController != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007115 try {
7116 String name = r != null ? r.processName : null;
7117 int pid = r != null ? r.pid : Binder.getCallingPid();
Dan Egnor60d87622009-12-16 16:32:58 -08007118 if (!mController.appCrashed(name, pid,
Dan Egnorb7f03672009-12-09 16:22:32 -08007119 shortMsg, longMsg, timeMillis, crashInfo.stackTrace)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08007120 Slog.w(TAG, "Force-killing crashed app " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007121 + " at watcher's request");
7122 Process.killProcess(pid);
Dan Egnorb7f03672009-12-09 16:22:32 -08007123 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007124 }
7125 } catch (RemoteException e) {
Dianne Hackbornb06ea702009-07-13 13:07:51 -07007126 mController = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007127 }
7128 }
7129
7130 final long origId = Binder.clearCallingIdentity();
7131
7132 // If this process is running instrumentation, finish it.
7133 if (r != null && r.instrumentationClass != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08007134 Slog.w(TAG, "Error in app " + r.processName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007135 + " running instrumentation " + r.instrumentationClass + ":");
Joe Onorato8a9b2202010-02-26 18:56:32 -08007136 if (shortMsg != null) Slog.w(TAG, " " + shortMsg);
7137 if (longMsg != null) Slog.w(TAG, " " + longMsg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007138 Bundle info = new Bundle();
7139 info.putString("shortMsg", shortMsg);
7140 info.putString("longMsg", longMsg);
7141 finishInstrumentationLocked(r, Activity.RESULT_CANCELED, info);
7142 Binder.restoreCallingIdentity(origId);
Dan Egnorb7f03672009-12-09 16:22:32 -08007143 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007144 }
7145
Dan Egnor60d87622009-12-16 16:32:58 -08007146 // If we can't identify the process or it's already exceeded its crash quota,
7147 // quit right away without showing a crash dialog.
7148 if (r == null || !makeAppCrashingLocked(r, shortMsg, longMsg, stackTrace)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007149 Binder.restoreCallingIdentity(origId);
Dan Egnorb7f03672009-12-09 16:22:32 -08007150 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007151 }
7152
7153 Message msg = Message.obtain();
7154 msg.what = SHOW_ERROR_MSG;
7155 HashMap data = new HashMap();
7156 data.put("result", result);
7157 data.put("app", r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007158 msg.obj = data;
7159 mHandler.sendMessage(msg);
7160
7161 Binder.restoreCallingIdentity(origId);
7162 }
7163
7164 int res = result.get();
7165
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007166 Intent appErrorIntent = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007167 synchronized (this) {
7168 if (r != null) {
7169 mProcessCrashTimes.put(r.info.processName, r.info.uid,
7170 SystemClock.uptimeMillis());
7171 }
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007172 if (res == AppErrorDialog.FORCE_QUIT_AND_REPORT) {
Dan Egnorb7f03672009-12-09 16:22:32 -08007173 appErrorIntent = createAppErrorIntentLocked(r, timeMillis, crashInfo);
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007174 }
7175 }
7176
7177 if (appErrorIntent != null) {
7178 try {
7179 mContext.startActivity(appErrorIntent);
7180 } catch (ActivityNotFoundException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08007181 Slog.w(TAG, "bug report receiver dissappeared", e);
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007182 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007183 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007184 }
Dan Egnorb7f03672009-12-09 16:22:32 -08007185
7186 Intent createAppErrorIntentLocked(ProcessRecord r,
7187 long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
7188 ApplicationErrorReport report = createAppErrorReportLocked(r, timeMillis, crashInfo);
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007189 if (report == null) {
7190 return null;
7191 }
7192 Intent result = new Intent(Intent.ACTION_APP_ERROR);
7193 result.setComponent(r.errorReportReceiver);
7194 result.putExtra(Intent.EXTRA_BUG_REPORT, report);
7195 result.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
7196 return result;
7197 }
7198
Dan Egnorb7f03672009-12-09 16:22:32 -08007199 private ApplicationErrorReport createAppErrorReportLocked(ProcessRecord r,
7200 long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007201 if (r.errorReportReceiver == null) {
7202 return null;
7203 }
7204
7205 if (!r.crashing && !r.notResponding) {
7206 return null;
7207 }
7208
Dan Egnorb7f03672009-12-09 16:22:32 -08007209 ApplicationErrorReport report = new ApplicationErrorReport();
7210 report.packageName = r.info.packageName;
7211 report.installerPackageName = r.errorReportReceiver.getPackageName();
7212 report.processName = r.processName;
7213 report.time = timeMillis;
Jacek Surazskie0ee6ef2010-01-07 16:23:03 +01007214 report.systemApp = (r.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007215
Dan Egnorb7f03672009-12-09 16:22:32 -08007216 if (r.crashing) {
7217 report.type = ApplicationErrorReport.TYPE_CRASH;
7218 report.crashInfo = crashInfo;
7219 } else if (r.notResponding) {
7220 report.type = ApplicationErrorReport.TYPE_ANR;
7221 report.anrInfo = new ApplicationErrorReport.AnrInfo();
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007222
Dan Egnorb7f03672009-12-09 16:22:32 -08007223 report.anrInfo.activity = r.notRespondingReport.tag;
7224 report.anrInfo.cause = r.notRespondingReport.shortMsg;
7225 report.anrInfo.info = r.notRespondingReport.longMsg;
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007226 }
7227
Dan Egnorb7f03672009-12-09 16:22:32 -08007228 return report;
Jacek Surazskif5b9c722009-05-18 12:09:59 +02007229 }
7230
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007231 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState() {
7232 // assume our apps are happy - lazy create the list
7233 List<ActivityManager.ProcessErrorStateInfo> errList = null;
7234
7235 synchronized (this) {
7236
7237 // iterate across all processes
Dianne Hackborndd71fc82009-12-16 19:24:32 -08007238 for (int i=mLruProcesses.size()-1; i>=0; i--) {
7239 ProcessRecord app = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007240 if ((app.thread != null) && (app.crashing || app.notResponding)) {
7241 // This one's in trouble, so we'll generate a report for it
7242 // crashes are higher priority (in case there's a crash *and* an anr)
7243 ActivityManager.ProcessErrorStateInfo report = null;
7244 if (app.crashing) {
7245 report = app.crashingReport;
7246 } else if (app.notResponding) {
7247 report = app.notRespondingReport;
7248 }
7249
7250 if (report != null) {
7251 if (errList == null) {
7252 errList = new ArrayList<ActivityManager.ProcessErrorStateInfo>(1);
7253 }
7254 errList.add(report);
7255 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08007256 Slog.w(TAG, "Missing app error report, app = " + app.processName +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007257 " crashing = " + app.crashing +
7258 " notResponding = " + app.notResponding);
7259 }
7260 }
7261 }
7262 }
7263
7264 return errList;
7265 }
7266
7267 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses() {
7268 // Lazy instantiation of list
7269 List<ActivityManager.RunningAppProcessInfo> runList = null;
7270 synchronized (this) {
7271 // Iterate across all processes
Dianne Hackborndd71fc82009-12-16 19:24:32 -08007272 for (int i=mLruProcesses.size()-1; i>=0; i--) {
7273 ProcessRecord app = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007274 if ((app.thread != null) && (!app.crashing && !app.notResponding)) {
7275 // Generate process state info for running application
7276 ActivityManager.RunningAppProcessInfo currApp =
7277 new ActivityManager.RunningAppProcessInfo(app.processName,
7278 app.pid, app.getPackageList());
Dianne Hackborneb034652009-09-07 00:49:58 -07007279 currApp.uid = app.info.uid;
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07007280 if (mHeavyWeightProcess == app) {
Dianne Hackborn482566e2010-09-03 12:51:28 -07007281 currApp.flags |= ActivityManager.RunningAppProcessInfo.FLAG_CANT_SAVE_STATE;
Dianne Hackbornbaf42c62010-06-24 11:23:39 -07007282 }
Dianne Hackborn42499172010-10-15 18:45:07 -07007283 if (app.persistent) {
7284 currApp.flags |= ActivityManager.RunningAppProcessInfo.FLAG_PERSISTENT;
7285 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007286 int adj = app.curAdj;
Dianne Hackborndd71fc82009-12-16 19:24:32 -08007287 if (adj >= EMPTY_APP_ADJ) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007288 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_EMPTY;
7289 } else if (adj >= HIDDEN_APP_MIN_ADJ) {
7290 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_BACKGROUND;
The Android Open Source Project4df24232009-03-05 14:34:35 -08007291 currApp.lru = adj - HIDDEN_APP_MIN_ADJ + 1;
7292 } else if (adj >= HOME_APP_ADJ) {
7293 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_BACKGROUND;
7294 currApp.lru = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007295 } else if (adj >= SECONDARY_SERVER_ADJ) {
7296 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_SERVICE;
Dianne Hackborn32907cf2010-06-10 17:50:20 -07007297 } else if (adj >= HEAVY_WEIGHT_APP_ADJ) {
Dianne Hackborn5383f502010-10-22 12:59:20 -07007298 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_CANT_SAVE_STATE;
Dianne Hackborn32907cf2010-06-10 17:50:20 -07007299 } else if (adj >= PERCEPTIBLE_APP_ADJ) {
7300 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_PERCEPTIBLE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007301 } else if (adj >= VISIBLE_APP_ADJ) {
7302 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_VISIBLE;
7303 } else {
7304 currApp.importance = ActivityManager.RunningAppProcessInfo.IMPORTANCE_FOREGROUND;
7305 }
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07007306 currApp.importanceReasonCode = app.adjTypeCode;
7307 if (app.adjSource instanceof ProcessRecord) {
7308 currApp.importanceReasonPid = ((ProcessRecord)app.adjSource).pid;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07007309 } else if (app.adjSource instanceof ActivityRecord) {
7310 ActivityRecord r = (ActivityRecord)app.adjSource;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07007311 if (r.app != null) currApp.importanceReasonPid = r.app.pid;
7312 }
7313 if (app.adjTarget instanceof ComponentName) {
7314 currApp.importanceReasonComponent = (ComponentName)app.adjTarget;
7315 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08007316 //Slog.v(TAG, "Proc " + app.processName + ": imp=" + currApp.importance
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007317 // + " lru=" + currApp.lru);
7318 if (runList == null) {
7319 runList = new ArrayList<ActivityManager.RunningAppProcessInfo>();
7320 }
7321 runList.add(currApp);
7322 }
7323 }
7324 }
7325 return runList;
7326 }
7327
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -07007328 public List<ApplicationInfo> getRunningExternalApplications() {
7329 List<ActivityManager.RunningAppProcessInfo> runningApps = getRunningAppProcesses();
7330 List<ApplicationInfo> retList = new ArrayList<ApplicationInfo>();
7331 if (runningApps != null && runningApps.size() > 0) {
7332 Set<String> extList = new HashSet<String>();
7333 for (ActivityManager.RunningAppProcessInfo app : runningApps) {
7334 if (app.pkgList != null) {
7335 for (String pkg : app.pkgList) {
7336 extList.add(pkg);
7337 }
7338 }
7339 }
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07007340 IPackageManager pm = AppGlobals.getPackageManager();
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -07007341 for (String pkg : extList) {
7342 try {
7343 ApplicationInfo info = pm.getApplicationInfo(pkg, 0);
7344 if ((info.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) {
7345 retList.add(info);
7346 }
7347 } catch (RemoteException e) {
7348 }
7349 }
7350 }
7351 return retList;
7352 }
7353
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007354 @Override
7355 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007356 if (checkCallingPermission(android.Manifest.permission.DUMP)
7357 != PackageManager.PERMISSION_GRANTED) {
7358 pw.println("Permission Denial: can't dump ActivityManager from from pid="
7359 + Binder.getCallingPid()
7360 + ", uid=" + Binder.getCallingUid()
7361 + " without permission "
7362 + android.Manifest.permission.DUMP);
7363 return;
7364 }
7365
7366 boolean dumpAll = false;
7367
7368 int opti = 0;
7369 while (opti < args.length) {
7370 String opt = args[opti];
7371 if (opt == null || opt.length() <= 0 || opt.charAt(0) != '-') {
7372 break;
7373 }
7374 opti++;
7375 if ("-a".equals(opt)) {
7376 dumpAll = true;
7377 } else if ("-h".equals(opt)) {
7378 pw.println("Activity manager dump options:");
Dianne Hackbornd4310ac2010-03-16 22:55:08 -07007379 pw.println(" [-a] [-h] [cmd] ...");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007380 pw.println(" cmd may be one of:");
Dianne Hackborn287952c2010-09-22 22:34:31 -07007381 pw.println(" a[ctivities]: activity stack state");
7382 pw.println(" b[roadcasts]: broadcast state");
7383 pw.println(" i[ntents]: pending intent state");
7384 pw.println(" p[rocesses]: process state");
7385 pw.println(" o[om]: out of memory management");
7386 pw.println(" prov[iders]: content provider state");
7387 pw.println(" s[ervices]: service state");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007388 pw.println(" service [name]: service client-side state");
Dianne Hackborn30d71892010-12-11 10:37:55 -08007389 pw.println(" cmd may also be a component name (com.foo/.myApp),");
7390 pw.println(" a partial substring in a component name, or an");
7391 pw.println(" ActivityRecord hex object identifier.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007392 return;
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007393 } else {
7394 pw.println("Unknown argument: " + opt + "; use -h for help");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007395 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007396 }
7397
7398 // Is the caller requesting to dump a particular piece of data?
7399 if (opti < args.length) {
7400 String cmd = args[opti];
7401 opti++;
7402 if ("activities".equals(cmd) || "a".equals(cmd)) {
7403 synchronized (this) {
7404 dumpActivitiesLocked(fd, pw, args, opti, true, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007405 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007406 return;
7407 } else if ("broadcasts".equals(cmd) || "b".equals(cmd)) {
7408 synchronized (this) {
7409 dumpBroadcastsLocked(fd, pw, args, opti, true);
7410 }
7411 return;
7412 } else if ("intents".equals(cmd) || "i".equals(cmd)) {
7413 synchronized (this) {
7414 dumpPendingIntentsLocked(fd, pw, args, opti, true);
7415 }
7416 return;
7417 } else if ("processes".equals(cmd) || "p".equals(cmd)) {
7418 synchronized (this) {
7419 dumpProcessesLocked(fd, pw, args, opti, true);
7420 }
7421 return;
Dianne Hackborn287952c2010-09-22 22:34:31 -07007422 } else if ("oom".equals(cmd) || "o".equals(cmd)) {
7423 synchronized (this) {
7424 dumpOomLocked(fd, pw, args, opti, true);
7425 }
7426 return;
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007427 } else if ("providers".equals(cmd) || "prov".equals(cmd)) {
7428 synchronized (this) {
7429 dumpProvidersLocked(fd, pw, args, opti, true);
7430 }
7431 return;
7432 } else if ("service".equals(cmd)) {
Joe Onoratoeb95b082010-10-21 14:54:19 -04007433 dumpService(fd, pw, args, opti);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007434 return;
7435 } else if ("services".equals(cmd) || "s".equals(cmd)) {
7436 synchronized (this) {
7437 dumpServicesLocked(fd, pw, args, opti, true);
7438 }
7439 return;
Dianne Hackborn625ac272010-09-17 18:29:22 -07007440 } else {
7441 // Dumping a single activity?
7442 if (dumpActivity(fd, pw, cmd, args, opti, dumpAll)) {
7443 return;
7444 }
Dianne Hackborn30d71892010-12-11 10:37:55 -08007445 pw.println("Bad activity command, or no activities match: " + cmd);
7446 pw.println("Use -h for help.");
7447 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007448 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007449 }
7450
7451 // No piece of data specified, dump everything.
7452 synchronized (this) {
7453 boolean needSep;
7454 if (dumpAll) {
7455 pw.println("Providers in Current Activity Manager State:");
7456 }
7457 needSep = dumpProvidersLocked(fd, pw, args, opti, dumpAll);
7458 if (needSep) {
7459 pw.println(" ");
7460 }
7461 if (dumpAll) {
7462 pw.println("-------------------------------------------------------------------------------");
7463 pw.println("Broadcasts in Current Activity Manager State:");
7464 }
7465 needSep = dumpBroadcastsLocked(fd, pw, args, opti, dumpAll);
7466 if (needSep) {
7467 pw.println(" ");
7468 }
7469 if (dumpAll) {
7470 pw.println("-------------------------------------------------------------------------------");
7471 pw.println("Services in Current Activity Manager State:");
7472 }
7473 needSep = dumpServicesLocked(fd, pw, args, opti, dumpAll);
7474 if (needSep) {
7475 pw.println(" ");
7476 }
7477 if (dumpAll) {
7478 pw.println("-------------------------------------------------------------------------------");
7479 pw.println("PendingIntents in Current Activity Manager State:");
7480 }
7481 needSep = dumpPendingIntentsLocked(fd, pw, args, opti, dumpAll);
7482 if (needSep) {
7483 pw.println(" ");
7484 }
7485 if (dumpAll) {
7486 pw.println("-------------------------------------------------------------------------------");
7487 pw.println("Activities in Current Activity Manager State:");
7488 }
7489 needSep = dumpActivitiesLocked(fd, pw, args, opti, dumpAll, !dumpAll);
7490 if (needSep) {
7491 pw.println(" ");
7492 }
7493 if (dumpAll) {
7494 pw.println("-------------------------------------------------------------------------------");
7495 pw.println("Processes in Current Activity Manager State:");
7496 }
7497 dumpProcessesLocked(fd, pw, args, opti, dumpAll);
7498 }
7499 }
7500
7501 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
7502 int opti, boolean dumpAll, boolean needHeader) {
7503 if (needHeader) {
7504 pw.println(" Activity stack:");
7505 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007506 dumpHistoryList(pw, mMainStack.mHistory, " ", "Hist", true);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007507 pw.println(" ");
7508 pw.println(" Running activities (most recent first):");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007509 dumpHistoryList(pw, mMainStack.mLRUActivities, " ", "Run", false);
7510 if (mMainStack.mWaitingVisibleActivities.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007511 pw.println(" ");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007512 pw.println(" Activities waiting for another to become visible:");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007513 dumpHistoryList(pw, mMainStack.mWaitingVisibleActivities, " ", "Wait", false);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007514 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007515 if (mMainStack.mStoppingActivities.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007516 pw.println(" ");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007517 pw.println(" Activities waiting to stop:");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007518 dumpHistoryList(pw, mMainStack.mStoppingActivities, " ", "Stop", false);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007519 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007520 if (mMainStack.mFinishingActivities.size() > 0) {
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007521 pw.println(" ");
7522 pw.println(" Activities waiting to finish:");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007523 dumpHistoryList(pw, mMainStack.mFinishingActivities, " ", "Fin", false);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007524 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007525
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007526 pw.println(" ");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007527 pw.println(" mPausingActivity: " + mMainStack.mPausingActivity);
7528 pw.println(" mResumedActivity: " + mMainStack.mResumedActivity);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007529 pw.println(" mFocusedActivity: " + mFocusedActivity);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007530 pw.println(" mLastPausedActivity: " + mMainStack.mLastPausedActivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007531
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007532 if (dumpAll && mRecentTasks.size() > 0) {
7533 pw.println(" ");
7534 pw.println("Recent tasks in Current Activity Manager State:");
7535
7536 final int N = mRecentTasks.size();
7537 for (int i=0; i<N; i++) {
7538 TaskRecord tr = mRecentTasks.get(i);
7539 pw.print(" * Recent #"); pw.print(i); pw.print(": ");
7540 pw.println(tr);
7541 mRecentTasks.get(i).dump(pw, " ");
7542 }
7543 }
7544
7545 pw.println(" ");
7546 pw.println(" mCurTask: " + mCurTask);
7547
7548 return true;
7549 }
Dianne Hackborn287952c2010-09-22 22:34:31 -07007550
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007551 boolean dumpProcessesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
7552 int opti, boolean dumpAll) {
7553 boolean needSep = false;
7554 int numPers = 0;
7555
7556 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007557 for (SparseArray<ProcessRecord> procs : mProcessNames.getMap().values()) {
7558 final int NA = procs.size();
7559 for (int ia=0; ia<NA; ia++) {
7560 if (!needSep) {
7561 pw.println(" All known processes:");
7562 needSep = true;
7563 }
7564 ProcessRecord r = procs.valueAt(ia);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07007565 pw.print(r.persistent ? " *PERS*" : " *APP*");
7566 pw.print(" UID "); pw.print(procs.keyAt(ia));
7567 pw.print(" "); pw.println(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007568 r.dump(pw, " ");
7569 if (r.persistent) {
7570 numPers++;
7571 }
7572 }
7573 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007574 }
7575
7576 if (mLruProcesses.size() > 0) {
7577 if (needSep) pw.println(" ");
7578 needSep = true;
7579 pw.println(" Running processes (most recent first):");
Dianne Hackborn287952c2010-09-22 22:34:31 -07007580 dumpProcessOomList(pw, this, mLruProcesses, " ",
7581 "Proc", "PERS", false);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007582 needSep = true;
7583 }
7584
7585 synchronized (mPidsSelfLocked) {
7586 if (mPidsSelfLocked.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007587 if (needSep) pw.println(" ");
7588 needSep = true;
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007589 pw.println(" PID mappings:");
7590 for (int i=0; i<mPidsSelfLocked.size(); i++) {
7591 pw.print(" PID #"); pw.print(mPidsSelfLocked.keyAt(i));
7592 pw.print(": "); pw.println(mPidsSelfLocked.valueAt(i));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007593 }
7594 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007595 }
7596
7597 if (mForegroundProcesses.size() > 0) {
7598 if (needSep) pw.println(" ");
7599 needSep = true;
7600 pw.println(" Foreground Processes:");
7601 for (int i=0; i<mForegroundProcesses.size(); i++) {
7602 pw.print(" PID #"); pw.print(mForegroundProcesses.keyAt(i));
7603 pw.print(": "); pw.println(mForegroundProcesses.valueAt(i));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007604 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007605 }
7606
7607 if (mPersistentStartingProcesses.size() > 0) {
7608 if (needSep) pw.println(" ");
7609 needSep = true;
7610 pw.println(" Persisent processes that are starting:");
7611 dumpProcessList(pw, this, mPersistentStartingProcesses, " ",
Dianne Hackborn287952c2010-09-22 22:34:31 -07007612 "Starting Norm", "Restarting PERS");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007613 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007614
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007615 if (mStartingProcesses.size() > 0) {
7616 if (needSep) pw.println(" ");
7617 needSep = true;
7618 pw.println(" Processes that are starting:");
7619 dumpProcessList(pw, this, mStartingProcesses, " ",
Dianne Hackborn287952c2010-09-22 22:34:31 -07007620 "Starting Norm", "Starting PERS");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007621 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007622
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007623 if (mRemovedProcesses.size() > 0) {
7624 if (needSep) pw.println(" ");
7625 needSep = true;
7626 pw.println(" Processes that are being removed:");
7627 dumpProcessList(pw, this, mRemovedProcesses, " ",
Dianne Hackborn287952c2010-09-22 22:34:31 -07007628 "Removed Norm", "Removed PERS");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007629 }
7630
7631 if (mProcessesOnHold.size() > 0) {
7632 if (needSep) pw.println(" ");
7633 needSep = true;
7634 pw.println(" Processes that are on old until the system is ready:");
7635 dumpProcessList(pw, this, mProcessesOnHold, " ",
Dianne Hackborn287952c2010-09-22 22:34:31 -07007636 "OnHold Norm", "OnHold PERS");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007637 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007638
Dianne Hackborn287952c2010-09-22 22:34:31 -07007639 needSep = dumpProcessesToGc(fd, pw, args, opti, needSep, dumpAll);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007640
7641 if (mProcessCrashTimes.getMap().size() > 0) {
7642 if (needSep) pw.println(" ");
7643 needSep = true;
7644 pw.println(" Time since processes crashed:");
7645 long now = SystemClock.uptimeMillis();
7646 for (Map.Entry<String, SparseArray<Long>> procs
7647 : mProcessCrashTimes.getMap().entrySet()) {
7648 SparseArray<Long> uids = procs.getValue();
7649 final int N = uids.size();
7650 for (int i=0; i<N; i++) {
7651 pw.print(" Process "); pw.print(procs.getKey());
7652 pw.print(" uid "); pw.print(uids.keyAt(i));
7653 pw.print(": last crashed ");
7654 pw.print((now-uids.valueAt(i)));
Dianne Hackbornfd12af42009-08-27 00:44:33 -07007655 pw.println(" ms ago");
Dianne Hackbornfd12af42009-08-27 00:44:33 -07007656 }
7657 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007658 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007659
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007660 if (mBadProcesses.getMap().size() > 0) {
7661 if (needSep) pw.println(" ");
7662 needSep = true;
7663 pw.println(" Bad processes:");
7664 for (Map.Entry<String, SparseArray<Long>> procs
7665 : mBadProcesses.getMap().entrySet()) {
7666 SparseArray<Long> uids = procs.getValue();
7667 final int N = uids.size();
7668 for (int i=0; i<N; i++) {
7669 pw.print(" Bad process "); pw.print(procs.getKey());
7670 pw.print(" uid "); pw.print(uids.keyAt(i));
7671 pw.print(": crashed at time ");
7672 pw.println(uids.valueAt(i));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007673 }
7674 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007675 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007676
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007677 pw.println(" ");
7678 pw.println(" mHomeProcess: " + mHomeProcess);
Dianne Hackborn860755f2010-06-03 18:47:52 -07007679 if (mHeavyWeightProcess != null) {
7680 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7681 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007682 pw.println(" mConfiguration: " + mConfiguration);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007683 pw.println(" mConfigWillChange: " + mMainStack.mConfigWillChange);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007684 pw.println(" mSleeping=" + mSleeping + " mShuttingDown=" + mShuttingDown);
7685 if (mDebugApp != null || mOrigDebugApp != null || mDebugTransient
7686 || mOrigWaitForDebugger) {
7687 pw.println(" mDebugApp=" + mDebugApp + "/orig=" + mOrigDebugApp
7688 + " mDebugTransient=" + mDebugTransient
7689 + " mOrigWaitForDebugger=" + mOrigWaitForDebugger);
7690 }
7691 if (mAlwaysFinishActivities || mController != null) {
7692 pw.println(" mAlwaysFinishActivities=" + mAlwaysFinishActivities
7693 + " mController=" + mController);
7694 }
7695 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007696 pw.println(" Total persistent processes: " + numPers);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007697 pw.println(" mStartRunning=" + mStartRunning
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07007698 + " mProcessesReady=" + mProcessesReady
7699 + " mSystemReady=" + mSystemReady);
7700 pw.println(" mBooting=" + mBooting
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007701 + " mBooted=" + mBooted
7702 + " mFactoryTest=" + mFactoryTest);
Dianne Hackborn287952c2010-09-22 22:34:31 -07007703 pw.print(" mLastPowerCheckRealtime=");
7704 TimeUtils.formatDuration(mLastPowerCheckRealtime, pw);
7705 pw.println("");
7706 pw.print(" mLastPowerCheckUptime=");
7707 TimeUtils.formatDuration(mLastPowerCheckUptime, pw);
7708 pw.println("");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07007709 pw.println(" mGoingToSleep=" + mMainStack.mGoingToSleep);
7710 pw.println(" mLaunchingActivity=" + mMainStack.mLaunchingActivity);
Dianne Hackborn906497c2010-05-10 15:57:38 -07007711 pw.println(" mAdjSeq=" + mAdjSeq + " mLruSeq=" + mLruSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007712 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007713
7714 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007715 }
7716
Dianne Hackborn287952c2010-09-22 22:34:31 -07007717 boolean dumpProcessesToGc(FileDescriptor fd, PrintWriter pw, String[] args,
7718 int opti, boolean needSep, boolean dumpAll) {
7719 if (mProcessesToGc.size() > 0) {
7720 if (needSep) pw.println(" ");
7721 needSep = true;
7722 pw.println(" Processes that are waiting to GC:");
7723 long now = SystemClock.uptimeMillis();
7724 for (int i=0; i<mProcessesToGc.size(); i++) {
7725 ProcessRecord proc = mProcessesToGc.get(i);
7726 pw.print(" Process "); pw.println(proc);
7727 pw.print(" lowMem="); pw.print(proc.reportLowMemory);
7728 pw.print(", last gced=");
7729 pw.print(now-proc.lastRequestedGc);
7730 pw.print(" ms ago, last lowMem=");
7731 pw.print(now-proc.lastLowMemory);
7732 pw.println(" ms ago");
7733
7734 }
7735 }
7736 return needSep;
7737 }
7738
7739 boolean dumpOomLocked(FileDescriptor fd, PrintWriter pw, String[] args,
7740 int opti, boolean dumpAll) {
7741 boolean needSep = false;
7742
7743 if (mLruProcesses.size() > 0) {
7744 ArrayList<ProcessRecord> procs = new ArrayList<ProcessRecord>(mLruProcesses);
7745
7746 Comparator<ProcessRecord> comparator = new Comparator<ProcessRecord>() {
7747 @Override
7748 public int compare(ProcessRecord object1, ProcessRecord object2) {
7749 if (object1.setAdj != object2.setAdj) {
7750 return object1.setAdj > object2.setAdj ? -1 : 1;
7751 }
7752 if (object1.setSchedGroup != object2.setSchedGroup) {
7753 return object1.setSchedGroup > object2.setSchedGroup ? -1 : 1;
7754 }
7755 if (object1.keeping != object2.keeping) {
7756 return object1.keeping ? -1 : 1;
7757 }
7758 if (object1.pid != object2.pid) {
7759 return object1.pid > object2.pid ? -1 : 1;
7760 }
7761 return 0;
7762 }
7763 };
7764
7765 Collections.sort(procs, comparator);
7766
7767 if (needSep) pw.println(" ");
7768 needSep = true;
7769 pw.println(" Process OOM control:");
7770 dumpProcessOomList(pw, this, procs, " ",
7771 "Proc", "PERS", true);
7772 needSep = true;
7773 }
7774
7775 needSep = dumpProcessesToGc(fd, pw, args, opti, needSep, dumpAll);
7776
7777 pw.println(" ");
7778 pw.println(" mHomeProcess: " + mHomeProcess);
7779 if (mHeavyWeightProcess != null) {
7780 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7781 }
7782
7783 return true;
7784 }
7785
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007786 /**
7787 * There are three ways to call this:
7788 * - no service specified: dump all the services
7789 * - a flattened component name that matched an existing service was specified as the
7790 * first arg: dump that one service
7791 * - the first arg isn't the flattened component name of an existing service:
7792 * dump all services whose component contains the first arg as a substring
7793 */
Joe Onoratoeb95b082010-10-21 14:54:19 -04007794 protected void dumpService(FileDescriptor fd, PrintWriter pw, String[] args, int opti) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007795 String[] newArgs;
7796 String componentNameString;
7797 ServiceRecord r;
Kenny Root3619b9ab2010-02-13 10:05:42 -08007798 if (opti >= args.length) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007799 componentNameString = null;
7800 newArgs = EMPTY_STRING_ARRAY;
7801 r = null;
7802 } else {
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007803 componentNameString = args[opti];
7804 opti++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007805 ComponentName componentName = ComponentName.unflattenFromString(componentNameString);
Dianne Hackborn14bfa392010-07-24 19:58:06 -07007806 synchronized (this) {
7807 r = componentName != null ? mServices.get(componentName) : null;
7808 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007809 newArgs = new String[args.length - opti];
7810 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0, args.length - opti);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007811 }
7812
7813 if (r != null) {
Joe Onoratoeb95b082010-10-21 14:54:19 -04007814 dumpService(fd, pw, r, newArgs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007815 } else {
Dianne Hackborn14bfa392010-07-24 19:58:06 -07007816 ArrayList<ServiceRecord> services = new ArrayList<ServiceRecord>();
7817 synchronized (this) {
7818 for (ServiceRecord r1 : mServices.values()) {
7819 if (componentNameString == null
7820 || r1.name.flattenToString().contains(componentNameString)) {
7821 services.add(r1);
7822 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007823 }
7824 }
Dianne Hackborn14bfa392010-07-24 19:58:06 -07007825 for (int i=0; i<services.size(); i++) {
Joe Onoratoeb95b082010-10-21 14:54:19 -04007826 dumpService(fd, pw, services.get(i), newArgs);
Dianne Hackborn14bfa392010-07-24 19:58:06 -07007827 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007828 }
7829 }
7830
7831 /**
7832 * Invokes IApplicationThread.dumpService() on the thread of the specified service if
7833 * there is a thread associated with the service.
7834 */
Joe Onoratoeb95b082010-10-21 14:54:19 -04007835 private void dumpService(FileDescriptor fd, PrintWriter pw, ServiceRecord r, String[] args) {
7836 pw.println("------------------------------------------------------------"
7837 + "-------------------");
7838 pw.println("APP SERVICE: " + r.name.flattenToString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007839 if (r.app != null && r.app.thread != null) {
7840 try {
7841 // flush anything that is already in the PrintWriter since the thread is going
7842 // to write to the file descriptor directly
7843 pw.flush();
7844 r.app.thread.dumpService(fd, r, args);
7845 pw.print("\n");
Dianne Hackborn14bfa392010-07-24 19:58:06 -07007846 pw.flush();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007847 } catch (RemoteException e) {
7848 pw.println("got a RemoteException while dumping the service");
7849 }
7850 }
7851 }
7852
Dianne Hackborn625ac272010-09-17 18:29:22 -07007853 /**
7854 * There are three things that cmd can be:
7855 * - a flattened component name that matched an existing activity
7856 * - the cmd arg isn't the flattened component name of an existing activity:
7857 * dump all activity whose component contains the cmd as a substring
7858 * - A hex number of the ActivityRecord object instance.
7859 */
7860 protected boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name, String[] args,
7861 int opti, boolean dumpAll) {
7862 String[] newArgs;
7863 ComponentName componentName = ComponentName.unflattenFromString(name);
7864 int objectId = 0;
Dianne Hackborn30d71892010-12-11 10:37:55 -08007865 if (componentName == null) {
7866 // Not a '/' separated full component name; maybe an object ID?
7867 try {
7868 objectId = Integer.parseInt(name, 16);
7869 name = null;
7870 componentName = null;
7871 } catch (RuntimeException e) {
7872 }
Dianne Hackborn625ac272010-09-17 18:29:22 -07007873 }
7874 newArgs = new String[args.length - opti];
7875 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0, args.length - opti);
7876
7877 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
7878 synchronized (this) {
7879 for (ActivityRecord r1 : (ArrayList<ActivityRecord>)mMainStack.mHistory) {
7880 if (componentName != null) {
7881 if (r1.intent.getComponent().equals(componentName)) {
7882 activities.add(r1);
7883 }
7884 } else if (name != null) {
7885 if (r1.intent.getComponent().flattenToString().contains(name)) {
7886 activities.add(r1);
7887 }
Dianne Hackborn30d71892010-12-11 10:37:55 -08007888 } else if (System.identityHashCode(r1) == objectId) {
Dianne Hackborn625ac272010-09-17 18:29:22 -07007889 activities.add(r1);
7890 }
7891 }
7892 }
7893
7894 if (activities.size() <= 0) {
7895 return false;
7896 }
7897
Dianne Hackborn30d71892010-12-11 10:37:55 -08007898 TaskRecord lastTask = null;
7899 for (int i=activities.size()-1; i>=0; i--) {
7900 ActivityRecord r = (ActivityRecord)activities.get(i);
7901 if (lastTask != r.task) {
7902 lastTask = r.task;
7903 pw.print("* Task "); pw.print(lastTask.affinity);
7904 pw.print(" id="); pw.println(lastTask.taskId);
7905 if (dumpAll) {
7906 lastTask.dump(pw, " ");
7907 }
7908 }
7909 dumpActivity(" ", fd, pw, activities.get(i), newArgs, dumpAll);
Dianne Hackborn625ac272010-09-17 18:29:22 -07007910 }
7911 return true;
7912 }
7913
7914 /**
7915 * Invokes IApplicationThread.dumpActivity() on the thread of the specified activity if
7916 * there is a thread associated with the activity.
7917 */
Dianne Hackborn30d71892010-12-11 10:37:55 -08007918 private void dumpActivity(String prefix, FileDescriptor fd, PrintWriter pw,
7919 ActivityRecord r, String[] args, boolean dumpAll) {
7920 synchronized (this) {
7921 pw.print(prefix); pw.print("* Activity ");
7922 pw.print(Integer.toHexString(System.identityHashCode(r)));
7923 pw.print(" "); pw.print(r.shortComponentName); pw.print(" pid=");
7924 if (r.app != null) pw.println(r.app.pid);
7925 else pw.println("(not running)");
7926 if (dumpAll) {
7927 r.dump(pw, prefix + " ");
Dianne Hackborn625ac272010-09-17 18:29:22 -07007928 }
Dianne Hackborn625ac272010-09-17 18:29:22 -07007929 }
7930 if (r.app != null && r.app.thread != null) {
7931 try {
7932 // flush anything that is already in the PrintWriter since the thread is going
7933 // to write to the file descriptor directly
7934 pw.flush();
Dianne Hackborn30d71892010-12-11 10:37:55 -08007935 r.app.thread.dumpActivity(fd, r, prefix + " ", args);
Dianne Hackborn625ac272010-09-17 18:29:22 -07007936 pw.flush();
7937 } catch (RemoteException e) {
7938 pw.println("got a RemoteException while dumping the activity");
7939 }
7940 }
7941 }
7942
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007943 boolean dumpBroadcastsLocked(FileDescriptor fd, PrintWriter pw, String[] args,
7944 int opti, boolean dumpAll) {
7945 boolean needSep = false;
7946
7947 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007948 if (mRegisteredReceivers.size() > 0) {
7949 pw.println(" ");
7950 pw.println(" Registered Receivers:");
7951 Iterator it = mRegisteredReceivers.values().iterator();
7952 while (it.hasNext()) {
7953 ReceiverList r = (ReceiverList)it.next();
Dianne Hackborn1d442e02009-04-20 18:14:05 -07007954 pw.print(" * "); pw.println(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007955 r.dump(pw, " ");
7956 }
7957 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007958
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007959 pw.println(" ");
7960 pw.println("Receiver Resolver Table:");
Dianne Hackborncef65ee2010-09-30 18:27:22 -07007961 mReceiverResolver.dump(pw, null, " ", null, false);
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007962 needSep = true;
7963 }
7964
7965 if (mParallelBroadcasts.size() > 0 || mOrderedBroadcasts.size() > 0
7966 || mPendingBroadcast != null) {
7967 if (mParallelBroadcasts.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007968 pw.println(" ");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007969 pw.println(" Active broadcasts:");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007970 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007971 for (int i=mParallelBroadcasts.size()-1; i>=0; i--) {
7972 pw.println(" Broadcast #" + i + ":");
7973 mParallelBroadcasts.get(i).dump(pw, " ");
7974 }
7975 if (mOrderedBroadcasts.size() > 0) {
7976 pw.println(" ");
Dianne Hackborn399cccb2010-04-13 22:57:49 -07007977 pw.println(" Active ordered broadcasts:");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007978 }
7979 for (int i=mOrderedBroadcasts.size()-1; i>=0; i--) {
7980 pw.println(" Serialized Broadcast #" + i + ":");
7981 mOrderedBroadcasts.get(i).dump(pw, " ");
7982 }
7983 pw.println(" ");
7984 pw.println(" Pending broadcast:");
7985 if (mPendingBroadcast != null) {
7986 mPendingBroadcast.dump(pw, " ");
7987 } else {
7988 pw.println(" (null)");
7989 }
7990 needSep = true;
7991 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007992
Dianne Hackbornc59411b2009-12-21 20:10:14 -08007993 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007994 pw.println(" ");
Dianne Hackborn12527f92009-11-11 17:39:50 -08007995 pw.println(" Historical broadcasts:");
7996 for (int i=0; i<MAX_BROADCAST_HISTORY; i++) {
7997 BroadcastRecord r = mBroadcastHistory[i];
7998 if (r == null) {
7999 break;
8000 }
8001 pw.println(" Historical Broadcast #" + i + ":");
8002 r.dump(pw, " ");
8003 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008004 needSep = true;
8005 }
8006
8007 if (mStickyBroadcasts != null) {
Dianne Hackborn12527f92009-11-11 17:39:50 -08008008 pw.println(" ");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008009 pw.println(" Sticky broadcasts:");
8010 StringBuilder sb = new StringBuilder(128);
8011 for (Map.Entry<String, ArrayList<Intent>> ent
8012 : mStickyBroadcasts.entrySet()) {
8013 pw.print(" * Sticky action "); pw.print(ent.getKey());
8014 pw.println(":");
8015 ArrayList<Intent> intents = ent.getValue();
8016 final int N = intents.size();
8017 for (int i=0; i<N; i++) {
8018 sb.setLength(0);
8019 sb.append(" Intent: ");
8020 intents.get(i).toShortString(sb, true, false);
8021 pw.println(sb.toString());
8022 Bundle bundle = intents.get(i).getExtras();
8023 if (bundle != null) {
8024 pw.print(" ");
8025 pw.println(bundle.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008026 }
8027 }
8028 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008029 needSep = true;
8030 }
8031
8032 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008033 pw.println(" ");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008034 pw.println(" mBroadcastsScheduled=" + mBroadcastsScheduled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008035 pw.println(" mHandler:");
8036 mHandler.dump(new PrintWriterPrinter(pw), " ");
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008037 needSep = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008038 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008039
8040 return needSep;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008041 }
8042
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008043 boolean dumpServicesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
8044 int opti, boolean dumpAll) {
8045 boolean needSep = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008046
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008047 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008048 if (mServices.size() > 0) {
8049 pw.println(" Active services:");
8050 Iterator<ServiceRecord> it = mServices.values().iterator();
8051 while (it.hasNext()) {
8052 ServiceRecord r = it.next();
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008053 pw.print(" * "); pw.println(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008054 r.dump(pw, " ");
8055 }
8056 needSep = true;
8057 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008058 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008059
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008060 if (mPendingServices.size() > 0) {
8061 if (needSep) pw.println(" ");
8062 pw.println(" Pending services:");
8063 for (int i=0; i<mPendingServices.size(); i++) {
8064 ServiceRecord r = mPendingServices.get(i);
8065 pw.print(" * Pending "); pw.println(r);
8066 r.dump(pw, " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008067 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008068 needSep = true;
8069 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008070
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008071 if (mRestartingServices.size() > 0) {
8072 if (needSep) pw.println(" ");
8073 pw.println(" Restarting services:");
8074 for (int i=0; i<mRestartingServices.size(); i++) {
8075 ServiceRecord r = mRestartingServices.get(i);
8076 pw.print(" * Restarting "); pw.println(r);
8077 r.dump(pw, " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008078 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008079 needSep = true;
8080 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008081
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008082 if (mStoppingServices.size() > 0) {
8083 if (needSep) pw.println(" ");
8084 pw.println(" Stopping services:");
8085 for (int i=0; i<mStoppingServices.size(); i++) {
8086 ServiceRecord r = mStoppingServices.get(i);
8087 pw.print(" * Stopping "); pw.println(r);
8088 r.dump(pw, " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008089 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008090 needSep = true;
8091 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008092
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008093 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008094 if (mServiceConnections.size() > 0) {
8095 if (needSep) pw.println(" ");
8096 pw.println(" Connection bindings to services:");
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008097 Iterator<ArrayList<ConnectionRecord>> it
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008098 = mServiceConnections.values().iterator();
8099 while (it.hasNext()) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008100 ArrayList<ConnectionRecord> r = it.next();
8101 for (int i=0; i<r.size(); i++) {
8102 pw.print(" * "); pw.println(r.get(i));
8103 r.get(i).dump(pw, " ");
8104 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008105 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008106 needSep = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008107 }
8108 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008109
8110 return needSep;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008111 }
8112
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008113 boolean dumpProvidersLocked(FileDescriptor fd, PrintWriter pw, String[] args,
8114 int opti, boolean dumpAll) {
8115 boolean needSep = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008116
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008117 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008118 if (mProvidersByClass.size() > 0) {
8119 if (needSep) pw.println(" ");
8120 pw.println(" Published content providers (by class):");
Dianne Hackborn860755f2010-06-03 18:47:52 -07008121 Iterator<Map.Entry<String, ContentProviderRecord>> it
8122 = mProvidersByClass.entrySet().iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008123 while (it.hasNext()) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008124 Map.Entry<String, ContentProviderRecord> e = it.next();
8125 ContentProviderRecord r = e.getValue();
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008126 pw.print(" * "); pw.println(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008127 r.dump(pw, " ");
8128 }
8129 needSep = true;
8130 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008131
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008132 if (mProvidersByName.size() > 0) {
8133 pw.println(" ");
8134 pw.println(" Authority to provider mappings:");
Dianne Hackborn860755f2010-06-03 18:47:52 -07008135 Iterator<Map.Entry<String, ContentProviderRecord>> it
8136 = mProvidersByName.entrySet().iterator();
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008137 while (it.hasNext()) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008138 Map.Entry<String, ContentProviderRecord> e = it.next();
8139 ContentProviderRecord r = e.getValue();
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008140 pw.print(" "); pw.print(e.getKey()); pw.print(": ");
8141 pw.println(r);
8142 }
8143 needSep = true;
8144 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008145 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008146
8147 if (mLaunchingProviders.size() > 0) {
8148 if (needSep) pw.println(" ");
8149 pw.println(" Launching content providers:");
8150 for (int i=mLaunchingProviders.size()-1; i>=0; i--) {
8151 pw.print(" Launching #"); pw.print(i); pw.print(": ");
8152 pw.println(mLaunchingProviders.get(i));
8153 }
8154 needSep = true;
8155 }
8156
8157 if (mGrantedUriPermissions.size() > 0) {
8158 pw.println();
8159 pw.println("Granted Uri Permissions:");
8160 for (int i=0; i<mGrantedUriPermissions.size(); i++) {
8161 int uid = mGrantedUriPermissions.keyAt(i);
8162 HashMap<Uri, UriPermission> perms
8163 = mGrantedUriPermissions.valueAt(i);
8164 pw.print(" * UID "); pw.print(uid);
8165 pw.println(" holds:");
8166 for (UriPermission perm : perms.values()) {
8167 pw.print(" "); pw.println(perm);
8168 perm.dump(pw, " ");
8169 }
8170 }
8171 needSep = true;
8172 }
8173
8174 return needSep;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008175 }
8176
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008177 boolean dumpPendingIntentsLocked(FileDescriptor fd, PrintWriter pw, String[] args,
8178 int opti, boolean dumpAll) {
8179 boolean needSep = false;
8180
8181 if (dumpAll) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008182 if (this.mIntentSenderRecords.size() > 0) {
8183 Iterator<WeakReference<PendingIntentRecord>> it
8184 = mIntentSenderRecords.values().iterator();
8185 while (it.hasNext()) {
8186 WeakReference<PendingIntentRecord> ref = it.next();
8187 PendingIntentRecord rec = ref != null ? ref.get(): null;
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008188 needSep = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008189 if (rec != null) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008190 pw.print(" * "); pw.println(rec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008191 rec.dump(pw, " ");
8192 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008193 pw.print(" * "); pw.print(ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008194 }
8195 }
8196 }
8197 }
Dianne Hackbornc59411b2009-12-21 20:10:14 -08008198
8199 return needSep;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008200 }
8201
8202 private static final void dumpHistoryList(PrintWriter pw, List list,
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07008203 String prefix, String label, boolean complete) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008204 TaskRecord lastTask = null;
8205 for (int i=list.size()-1; i>=0; i--) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07008206 ActivityRecord r = (ActivityRecord)list.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008207 final boolean full = complete || !r.inHistory;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008208 if (lastTask != r.task) {
8209 lastTask = r.task;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008210 pw.print(prefix);
8211 pw.print(full ? "* " : " ");
8212 pw.println(lastTask);
8213 if (full) {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07008214 lastTask.dump(pw, prefix + " ");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07008215 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008216 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008217 pw.print(prefix); pw.print(full ? " * " : " "); pw.print(label);
8218 pw.print(" #"); pw.print(i); pw.print(": ");
8219 pw.println(r);
8220 if (full) {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07008221 r.dump(pw, prefix + " ");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07008222 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008223 }
8224 }
8225
Dianne Hackborn09c916b2009-12-08 14:50:51 -08008226 private static String buildOomTag(String prefix, String space, int val, int base) {
8227 if (val == base) {
8228 if (space == null) return prefix;
8229 return prefix + " ";
8230 }
8231 return prefix + "+" + Integer.toString(val-base);
8232 }
8233
8234 private static final int dumpProcessList(PrintWriter pw,
8235 ActivityManagerService service, List list,
Dianne Hackborn287952c2010-09-22 22:34:31 -07008236 String prefix, String normalLabel, String persistentLabel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008237 int numPers = 0;
Dianne Hackborn32907cf2010-06-10 17:50:20 -07008238 final int N = list.size()-1;
8239 for (int i=N; i>=0; i--) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008240 ProcessRecord r = (ProcessRecord)list.get(i);
Dianne Hackborn287952c2010-09-22 22:34:31 -07008241 pw.println(String.format("%s%s #%2d: %s",
8242 prefix, (r.persistent ? persistentLabel : normalLabel),
8243 i, r.toString()));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008244 if (r.persistent) {
8245 numPers++;
8246 }
8247 }
8248 return numPers;
8249 }
8250
Dianne Hackborn287952c2010-09-22 22:34:31 -07008251 private static final void dumpProcessOomList(PrintWriter pw,
8252 ActivityManagerService service, List<ProcessRecord> list,
8253 String prefix, String normalLabel, String persistentLabel,
8254 boolean inclDetails) {
8255
8256 final long curRealtime = SystemClock.elapsedRealtime();
8257 final long realtimeSince = curRealtime - service.mLastPowerCheckRealtime;
8258 final long curUptime = SystemClock.uptimeMillis();
8259 final long uptimeSince = curUptime - service.mLastPowerCheckUptime;
8260
8261 final int N = list.size()-1;
8262 for (int i=N; i>=0; i--) {
8263 ProcessRecord r = list.get(i);
8264 String oomAdj;
8265 if (r.setAdj >= EMPTY_APP_ADJ) {
8266 oomAdj = buildOomTag("empty", null, r.setAdj, EMPTY_APP_ADJ);
8267 } else if (r.setAdj >= HIDDEN_APP_MIN_ADJ) {
8268 oomAdj = buildOomTag("bak", " ", r.setAdj, HIDDEN_APP_MIN_ADJ);
8269 } else if (r.setAdj >= HOME_APP_ADJ) {
8270 oomAdj = buildOomTag("home ", null, r.setAdj, HOME_APP_ADJ);
8271 } else if (r.setAdj >= SECONDARY_SERVER_ADJ) {
8272 oomAdj = buildOomTag("svc", " ", r.setAdj, SECONDARY_SERVER_ADJ);
8273 } else if (r.setAdj >= BACKUP_APP_ADJ) {
8274 oomAdj = buildOomTag("bckup", null, r.setAdj, BACKUP_APP_ADJ);
8275 } else if (r.setAdj >= HEAVY_WEIGHT_APP_ADJ) {
8276 oomAdj = buildOomTag("hvy ", null, r.setAdj, HEAVY_WEIGHT_APP_ADJ);
8277 } else if (r.setAdj >= PERCEPTIBLE_APP_ADJ) {
8278 oomAdj = buildOomTag("prcp ", null, r.setAdj, PERCEPTIBLE_APP_ADJ);
8279 } else if (r.setAdj >= VISIBLE_APP_ADJ) {
8280 oomAdj = buildOomTag("vis ", null, r.setAdj, VISIBLE_APP_ADJ);
8281 } else if (r.setAdj >= FOREGROUND_APP_ADJ) {
8282 oomAdj = buildOomTag("fore ", null, r.setAdj, FOREGROUND_APP_ADJ);
8283 } else if (r.setAdj >= CORE_SERVER_ADJ) {
8284 oomAdj = buildOomTag("core ", null, r.setAdj, CORE_SERVER_ADJ);
8285 } else if (r.setAdj >= SYSTEM_ADJ) {
8286 oomAdj = buildOomTag("sys ", null, r.setAdj, SYSTEM_ADJ);
8287 } else {
8288 oomAdj = Integer.toString(r.setAdj);
8289 }
8290 String schedGroup;
8291 switch (r.setSchedGroup) {
8292 case Process.THREAD_GROUP_BG_NONINTERACTIVE:
8293 schedGroup = "B";
8294 break;
8295 case Process.THREAD_GROUP_DEFAULT:
8296 schedGroup = "F";
8297 break;
8298 default:
8299 schedGroup = Integer.toString(r.setSchedGroup);
8300 break;
8301 }
8302 pw.println(String.format("%s%s #%2d: adj=%s/%s %s (%s)",
8303 prefix, (r.persistent ? persistentLabel : normalLabel),
8304 N-i, oomAdj, schedGroup, r.toShortString(), r.adjType));
8305 if (r.adjSource != null || r.adjTarget != null) {
8306 pw.print(prefix);
8307 pw.print(" ");
8308 if (r.adjTarget instanceof ComponentName) {
8309 pw.print(((ComponentName)r.adjTarget).flattenToShortString());
8310 } else if (r.adjTarget != null) {
8311 pw.print(r.adjTarget.toString());
8312 } else {
8313 pw.print("{null}");
8314 }
8315 pw.print("<=");
8316 if (r.adjSource instanceof ProcessRecord) {
8317 pw.print("Proc{");
8318 pw.print(((ProcessRecord)r.adjSource).toShortString());
8319 pw.println("}");
8320 } else if (r.adjSource != null) {
8321 pw.println(r.adjSource.toString());
8322 } else {
8323 pw.println("{null}");
8324 }
8325 }
8326 if (inclDetails) {
8327 pw.print(prefix);
8328 pw.print(" ");
8329 pw.print("oom: max="); pw.print(r.maxAdj);
8330 pw.print(" hidden="); pw.print(r.hiddenAdj);
8331 pw.print(" curRaw="); pw.print(r.curRawAdj);
8332 pw.print(" setRaw="); pw.print(r.setRawAdj);
8333 pw.print(" cur="); pw.print(r.curAdj);
8334 pw.print(" set="); pw.println(r.setAdj);
8335 pw.print(prefix);
8336 pw.print(" ");
8337 pw.print("keeping="); pw.print(r.keeping);
8338 pw.print(" hidden="); pw.print(r.hidden);
8339 pw.print(" empty="); pw.println(r.empty);
8340
8341 if (!r.keeping) {
8342 if (r.lastWakeTime != 0) {
8343 long wtime;
8344 BatteryStatsImpl stats = service.mBatteryStatsService.getActiveStatistics();
8345 synchronized (stats) {
8346 wtime = stats.getProcessWakeTime(r.info.uid,
8347 r.pid, curRealtime);
8348 }
8349 long timeUsed = wtime - r.lastWakeTime;
8350 pw.print(prefix);
8351 pw.print(" ");
8352 pw.print("keep awake over ");
8353 TimeUtils.formatDuration(realtimeSince, pw);
8354 pw.print(" used ");
8355 TimeUtils.formatDuration(timeUsed, pw);
8356 pw.print(" (");
8357 pw.print((timeUsed*100)/realtimeSince);
8358 pw.println("%)");
8359 }
8360 if (r.lastCpuTime != 0) {
8361 long timeUsed = r.curCpuTime - r.lastCpuTime;
8362 pw.print(prefix);
8363 pw.print(" ");
8364 pw.print("run cpu over ");
8365 TimeUtils.formatDuration(uptimeSince, pw);
8366 pw.print(" used ");
8367 TimeUtils.formatDuration(timeUsed, pw);
8368 pw.print(" (");
8369 pw.print((timeUsed*100)/uptimeSince);
8370 pw.println("%)");
8371 }
8372 }
8373 }
8374 }
8375 }
8376
Dianne Hackborn472ad872010-04-07 17:31:48 -07008377 static final void dumpApplicationMemoryUsage(FileDescriptor fd,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008378 PrintWriter pw, List list, String prefix, String[] args) {
Dianne Hackborn6447ca32009-04-07 19:50:08 -07008379 final boolean isCheckinRequest = scanArgs(args, "--checkin");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008380 long uptime = SystemClock.uptimeMillis();
8381 long realtime = SystemClock.elapsedRealtime();
8382
8383 if (isCheckinRequest) {
8384 // short checkin version
8385 pw.println(uptime + "," + realtime);
8386 pw.flush();
8387 } else {
8388 pw.println("Applications Memory Usage (kB):");
8389 pw.println("Uptime: " + uptime + " Realtime: " + realtime);
8390 }
8391 for (int i = list.size() - 1 ; i >= 0 ; i--) {
8392 ProcessRecord r = (ProcessRecord)list.get(i);
8393 if (r.thread != null) {
8394 if (!isCheckinRequest) {
8395 pw.println("\n** MEMINFO in pid " + r.pid + " [" + r.processName + "] **");
8396 pw.flush();
8397 }
8398 try {
8399 r.thread.asBinder().dump(fd, args);
8400 } catch (RemoteException e) {
8401 if (!isCheckinRequest) {
8402 pw.println("Got RemoteException!");
8403 pw.flush();
8404 }
8405 }
8406 }
8407 }
8408 }
8409
8410 /**
8411 * Searches array of arguments for the specified string
8412 * @param args array of argument strings
8413 * @param value value to search for
8414 * @return true if the value is contained in the array
8415 */
8416 private static boolean scanArgs(String[] args, String value) {
8417 if (args != null) {
8418 for (String arg : args) {
8419 if (value.equals(arg)) {
8420 return true;
8421 }
8422 }
8423 }
8424 return false;
8425 }
8426
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008427 private final void killServicesLocked(ProcessRecord app,
8428 boolean allowRestart) {
8429 // Report disconnected services.
8430 if (false) {
8431 // XXX we are letting the client link to the service for
8432 // death notifications.
8433 if (app.services.size() > 0) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008434 Iterator<ServiceRecord> it = app.services.iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008435 while (it.hasNext()) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008436 ServiceRecord r = it.next();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008437 if (r.connections.size() > 0) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008438 Iterator<ArrayList<ConnectionRecord>> jt
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008439 = r.connections.values().iterator();
8440 while (jt.hasNext()) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008441 ArrayList<ConnectionRecord> cl = jt.next();
8442 for (int i=0; i<cl.size(); i++) {
8443 ConnectionRecord c = cl.get(i);
8444 if (c.binding.client != app) {
8445 try {
8446 //c.conn.connected(r.className, null);
8447 } catch (Exception e) {
8448 // todo: this should be asynchronous!
8449 Slog.w(TAG, "Exception thrown disconnected servce "
8450 + r.shortName
8451 + " from app " + app.processName, e);
8452 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008453 }
8454 }
8455 }
8456 }
8457 }
8458 }
8459 }
8460
8461 // Clean up any connections this application has to other services.
8462 if (app.connections.size() > 0) {
8463 Iterator<ConnectionRecord> it = app.connections.iterator();
8464 while (it.hasNext()) {
8465 ConnectionRecord r = it.next();
8466 removeConnectionLocked(r, app, null);
8467 }
8468 }
8469 app.connections.clear();
8470
8471 if (app.services.size() != 0) {
8472 // Any services running in the application need to be placed
8473 // back in the pending list.
Dianne Hackborn860755f2010-06-03 18:47:52 -07008474 Iterator<ServiceRecord> it = app.services.iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008475 while (it.hasNext()) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008476 ServiceRecord sr = it.next();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008477 synchronized (sr.stats.getBatteryStats()) {
8478 sr.stats.stopLaunchedLocked();
8479 }
8480 sr.app = null;
8481 sr.executeNesting = 0;
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008482 if (mStoppingServices.remove(sr)) {
8483 if (DEBUG_SERVICE) Slog.v(TAG, "killServices remove stopping " + sr);
8484 }
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07008485
8486 boolean hasClients = sr.bindings.size() > 0;
8487 if (hasClients) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008488 Iterator<IntentBindRecord> bindings
8489 = sr.bindings.values().iterator();
8490 while (bindings.hasNext()) {
8491 IntentBindRecord b = bindings.next();
Joe Onorato8a9b2202010-02-26 18:56:32 -08008492 if (DEBUG_SERVICE) Slog.v(TAG, "Killing binding " + b
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008493 + ": shouldUnbind=" + b.hasBound);
8494 b.binder = null;
8495 b.requested = b.received = b.hasBound = false;
8496 }
8497 }
8498
Dianne Hackborn070783f2010-12-29 16:46:28 -08008499 if (sr.crashCount >= 2 && (sr.serviceInfo.applicationInfo.flags
8500 &ApplicationInfo.FLAG_PERSISTENT) == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08008501 Slog.w(TAG, "Service crashed " + sr.crashCount
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008502 + " times, stopping: " + sr);
Doug Zongker2bec3d42009-12-04 12:52:44 -08008503 EventLog.writeEvent(EventLogTags.AM_SERVICE_CRASHED_TOO_MUCH,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008504 sr.crashCount, sr.shortName, app.pid);
8505 bringDownServiceLocked(sr, true);
8506 } else if (!allowRestart) {
8507 bringDownServiceLocked(sr, true);
8508 } else {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07008509 boolean canceled = scheduleServiceRestartLocked(sr, true);
8510
8511 // Should the service remain running? Note that in the
8512 // extreme case of so many attempts to deliver a command
8513 // that it failed, that we also will stop it here.
8514 if (sr.startRequested && (sr.stopIfKilled || canceled)) {
8515 if (sr.pendingStarts.size() == 0) {
8516 sr.startRequested = false;
8517 if (!hasClients) {
8518 // Whoops, no reason to restart!
8519 bringDownServiceLocked(sr, true);
8520 }
8521 }
8522 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008523 }
8524 }
8525
8526 if (!allowRestart) {
8527 app.services.clear();
8528 }
8529 }
8530
Dianne Hackbornde42bb62009-08-05 12:26:15 -07008531 // Make sure we have no more records on the stopping list.
8532 int i = mStoppingServices.size();
8533 while (i > 0) {
8534 i--;
8535 ServiceRecord sr = mStoppingServices.get(i);
8536 if (sr.app == app) {
8537 mStoppingServices.remove(i);
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008538 if (DEBUG_SERVICE) Slog.v(TAG, "killServices remove stopping " + sr);
Dianne Hackbornde42bb62009-08-05 12:26:15 -07008539 }
8540 }
8541
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008542 app.executingServices.clear();
8543 }
8544
8545 private final void removeDyingProviderLocked(ProcessRecord proc,
8546 ContentProviderRecord cpr) {
8547 synchronized (cpr) {
8548 cpr.launchingApp = null;
8549 cpr.notifyAll();
8550 }
8551
8552 mProvidersByClass.remove(cpr.info.name);
8553 String names[] = cpr.info.authority.split(";");
8554 for (int j = 0; j < names.length; j++) {
8555 mProvidersByName.remove(names[j]);
8556 }
8557
8558 Iterator<ProcessRecord> cit = cpr.clients.iterator();
8559 while (cit.hasNext()) {
8560 ProcessRecord capp = cit.next();
8561 if (!capp.persistent && capp.thread != null
8562 && capp.pid != 0
8563 && capp.pid != MY_PID) {
Dianne Hackborn8633e682010-04-22 16:03:41 -07008564 Slog.i(TAG, "Kill " + capp.processName
8565 + " (pid " + capp.pid + "): provider " + cpr.info.name
8566 + " in dying process " + proc.processName);
8567 EventLog.writeEvent(EventLogTags.AM_KILL, capp.pid,
8568 capp.processName, capp.setAdj, "dying provider " + proc.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008569 Process.killProcess(capp.pid);
8570 }
8571 }
8572
8573 mLaunchingProviders.remove(cpr);
8574 }
8575
8576 /**
8577 * Main code for cleaning up a process when it has gone away. This is
8578 * called both as a result of the process dying, or directly when stopping
8579 * a process when running in single process mode.
8580 */
8581 private final void cleanUpApplicationRecordLocked(ProcessRecord app,
8582 boolean restarting, int index) {
8583 if (index >= 0) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -08008584 mLruProcesses.remove(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008585 }
8586
Dianne Hackborn36124872009-10-08 16:22:03 -07008587 mProcessesToGc.remove(app);
8588
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008589 // Dismiss any open dialogs.
8590 if (app.crashDialog != null) {
8591 app.crashDialog.dismiss();
8592 app.crashDialog = null;
8593 }
8594 if (app.anrDialog != null) {
8595 app.anrDialog.dismiss();
8596 app.anrDialog = null;
8597 }
8598 if (app.waitDialog != null) {
8599 app.waitDialog.dismiss();
8600 app.waitDialog = null;
8601 }
8602
8603 app.crashing = false;
8604 app.notResponding = false;
8605
8606 app.resetPackageList();
8607 app.thread = null;
8608 app.forcingToForeground = null;
8609 app.foregroundServices = false;
8610
8611 killServicesLocked(app, true);
8612
8613 boolean restart = false;
8614
8615 int NL = mLaunchingProviders.size();
8616
8617 // Remove published content providers.
8618 if (!app.pubProviders.isEmpty()) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008619 Iterator<ContentProviderRecord> it = app.pubProviders.values().iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008620 while (it.hasNext()) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008621 ContentProviderRecord cpr = it.next();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008622 cpr.provider = null;
8623 cpr.app = null;
8624
8625 // See if someone is waiting for this provider... in which
8626 // case we don't remove it, but just let it restart.
8627 int i = 0;
8628 if (!app.bad) {
8629 for (; i<NL; i++) {
8630 if (mLaunchingProviders.get(i) == cpr) {
8631 restart = true;
8632 break;
8633 }
8634 }
8635 } else {
8636 i = NL;
8637 }
8638
8639 if (i >= NL) {
8640 removeDyingProviderLocked(app, cpr);
8641 NL = mLaunchingProviders.size();
8642 }
8643 }
8644 app.pubProviders.clear();
8645 }
8646
Dianne Hackbornf670ef72009-11-16 13:59:16 -08008647 // Take care of any launching providers waiting for this process.
8648 if (checkAppInLaunchingProvidersLocked(app, false)) {
8649 restart = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008650 }
Dianne Hackbornf670ef72009-11-16 13:59:16 -08008651
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008652 // Unregister from connected content providers.
8653 if (!app.conProviders.isEmpty()) {
Dianne Hackborn0c3154d2009-10-06 17:18:05 -07008654 Iterator it = app.conProviders.keySet().iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008655 while (it.hasNext()) {
8656 ContentProviderRecord cpr = (ContentProviderRecord)it.next();
8657 cpr.clients.remove(app);
8658 }
8659 app.conProviders.clear();
8660 }
8661
Dianne Hackbornde42bb62009-08-05 12:26:15 -07008662 // At this point there may be remaining entries in mLaunchingProviders
8663 // where we were the only one waiting, so they are no longer of use.
8664 // Look for these and clean up if found.
8665 // XXX Commented out for now. Trying to figure out a way to reproduce
8666 // the actual situation to identify what is actually going on.
8667 if (false) {
8668 for (int i=0; i<NL; i++) {
8669 ContentProviderRecord cpr = (ContentProviderRecord)
8670 mLaunchingProviders.get(i);
8671 if (cpr.clients.size() <= 0 && cpr.externals <= 0) {
8672 synchronized (cpr) {
8673 cpr.launchingApp = null;
8674 cpr.notifyAll();
8675 }
8676 }
8677 }
8678 }
8679
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008680 skipCurrentReceiverLocked(app);
8681
8682 // Unregister any receivers.
8683 if (app.receivers.size() > 0) {
8684 Iterator<ReceiverList> it = app.receivers.iterator();
8685 while (it.hasNext()) {
8686 removeReceiverLocked(it.next());
8687 }
8688 app.receivers.clear();
8689 }
8690
Christopher Tate181fafa2009-05-14 11:12:14 -07008691 // If the app is undergoing backup, tell the backup manager about it
8692 if (mBackupTarget != null && app.pid == mBackupTarget.app.pid) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08008693 if (DEBUG_BACKUP) Slog.d(TAG, "App " + mBackupTarget.appInfo + " died during backup");
Christopher Tate181fafa2009-05-14 11:12:14 -07008694 try {
8695 IBackupManager bm = IBackupManager.Stub.asInterface(
8696 ServiceManager.getService(Context.BACKUP_SERVICE));
8697 bm.agentDisconnected(app.info.packageName);
8698 } catch (RemoteException e) {
8699 // can't happen; backup manager is local
8700 }
8701 }
8702
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008703 // If the caller is restarting this app, then leave it in its
8704 // current lists and let the caller take care of it.
8705 if (restarting) {
8706 return;
8707 }
8708
8709 if (!app.persistent) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08008710 if (DEBUG_PROCESSES) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008711 "Removing non-persistent process during cleanup: " + app);
8712 mProcessNames.remove(app.processName, app.info.uid);
Dianne Hackborn860755f2010-06-03 18:47:52 -07008713 if (mHeavyWeightProcess == app) {
8714 mHeavyWeightProcess = null;
8715 mHandler.sendEmptyMessage(CANCEL_HEAVY_NOTIFICATION_MSG);
8716 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008717 } else if (!app.removed) {
8718 // This app is persistent, so we need to keep its record around.
8719 // If it is not already on the pending app list, add it there
8720 // and start a new process for it.
8721 app.thread = null;
8722 app.forcingToForeground = null;
8723 app.foregroundServices = false;
8724 if (mPersistentStartingProcesses.indexOf(app) < 0) {
8725 mPersistentStartingProcesses.add(app);
8726 restart = true;
8727 }
8728 }
Dianne Hackborn8891fdc2010-09-20 20:44:46 -07008729 if (DEBUG_PROCESSES && mProcessesOnHold.contains(app)) Slog.v(TAG,
8730 "Clean-up removing on hold: " + app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008731 mProcessesOnHold.remove(app);
8732
The Android Open Source Project4df24232009-03-05 14:34:35 -08008733 if (app == mHomeProcess) {
8734 mHomeProcess = null;
8735 }
8736
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008737 if (restart) {
8738 // We have components that still need to be running in the
8739 // process, so re-launch it.
8740 mProcessNames.put(app.processName, app.info.uid, app);
8741 startProcessLocked(app, "restart", app.processName);
8742 } else if (app.pid > 0 && app.pid != MY_PID) {
8743 // Goodbye!
8744 synchronized (mPidsSelfLocked) {
8745 mPidsSelfLocked.remove(app.pid);
8746 mHandler.removeMessages(PROC_START_TIMEOUT_MSG, app);
8747 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07008748 app.setPid(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008749 }
8750 }
8751
Dianne Hackbornf670ef72009-11-16 13:59:16 -08008752 boolean checkAppInLaunchingProvidersLocked(ProcessRecord app, boolean alwaysBad) {
8753 // Look through the content providers we are waiting to have launched,
8754 // and if any run in this process then either schedule a restart of
8755 // the process or kill the client waiting for it if this process has
8756 // gone bad.
8757 int NL = mLaunchingProviders.size();
8758 boolean restart = false;
8759 for (int i=0; i<NL; i++) {
Dianne Hackborn860755f2010-06-03 18:47:52 -07008760 ContentProviderRecord cpr = mLaunchingProviders.get(i);
Dianne Hackbornf670ef72009-11-16 13:59:16 -08008761 if (cpr.launchingApp == app) {
8762 if (!alwaysBad && !app.bad) {
8763 restart = true;
8764 } else {
8765 removeDyingProviderLocked(app, cpr);
8766 NL = mLaunchingProviders.size();
8767 }
8768 }
8769 }
8770 return restart;
8771 }
8772
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008773 // =========================================================
8774 // SERVICES
8775 // =========================================================
8776
8777 ActivityManager.RunningServiceInfo makeRunningServiceInfoLocked(ServiceRecord r) {
8778 ActivityManager.RunningServiceInfo info =
8779 new ActivityManager.RunningServiceInfo();
8780 info.service = r.name;
8781 if (r.app != null) {
8782 info.pid = r.app.pid;
8783 }
Dianne Hackborn3025ef32009-08-31 21:31:47 -07008784 info.uid = r.appInfo.uid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008785 info.process = r.processName;
8786 info.foreground = r.isForeground;
8787 info.activeSince = r.createTime;
8788 info.started = r.startRequested;
8789 info.clientCount = r.connections.size();
8790 info.crashCount = r.crashCount;
8791 info.lastActivityTime = r.lastActivity;
Dianne Hackborn3025ef32009-08-31 21:31:47 -07008792 if (r.isForeground) {
8793 info.flags |= ActivityManager.RunningServiceInfo.FLAG_FOREGROUND;
8794 }
8795 if (r.startRequested) {
8796 info.flags |= ActivityManager.RunningServiceInfo.FLAG_STARTED;
8797 }
Dan Egnor42471dd2010-01-07 17:25:22 -08008798 if (r.app != null && r.app.pid == MY_PID) {
Dianne Hackborn3025ef32009-08-31 21:31:47 -07008799 info.flags |= ActivityManager.RunningServiceInfo.FLAG_SYSTEM_PROCESS;
8800 }
8801 if (r.app != null && r.app.persistent) {
8802 info.flags |= ActivityManager.RunningServiceInfo.FLAG_PERSISTENT_PROCESS;
8803 }
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008804
8805 for (ArrayList<ConnectionRecord> connl : r.connections.values()) {
8806 for (int i=0; i<connl.size(); i++) {
8807 ConnectionRecord conn = connl.get(i);
8808 if (conn.clientLabel != 0) {
8809 info.clientPackage = conn.binding.client.info.packageName;
8810 info.clientLabel = conn.clientLabel;
8811 return info;
8812 }
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07008813 }
8814 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008815 return info;
8816 }
8817
8818 public List<ActivityManager.RunningServiceInfo> getServices(int maxNum,
8819 int flags) {
8820 synchronized (this) {
8821 ArrayList<ActivityManager.RunningServiceInfo> res
8822 = new ArrayList<ActivityManager.RunningServiceInfo>();
8823
8824 if (mServices.size() > 0) {
8825 Iterator<ServiceRecord> it = mServices.values().iterator();
8826 while (it.hasNext() && res.size() < maxNum) {
8827 res.add(makeRunningServiceInfoLocked(it.next()));
8828 }
8829 }
8830
8831 for (int i=0; i<mRestartingServices.size() && res.size() < maxNum; i++) {
8832 ServiceRecord r = mRestartingServices.get(i);
8833 ActivityManager.RunningServiceInfo info =
8834 makeRunningServiceInfoLocked(r);
8835 info.restarting = r.nextRestartTime;
8836 res.add(info);
8837 }
8838
8839 return res;
8840 }
8841 }
8842
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07008843 public PendingIntent getRunningServiceControlPanel(ComponentName name) {
8844 synchronized (this) {
8845 ServiceRecord r = mServices.get(name);
8846 if (r != null) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07008847 for (ArrayList<ConnectionRecord> conn : r.connections.values()) {
8848 for (int i=0; i<conn.size(); i++) {
8849 if (conn.get(i).clientIntent != null) {
8850 return conn.get(i).clientIntent;
8851 }
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07008852 }
8853 }
8854 }
8855 }
8856 return null;
8857 }
8858
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008859 private final ServiceRecord findServiceLocked(ComponentName name,
8860 IBinder token) {
8861 ServiceRecord r = mServices.get(name);
8862 return r == token ? r : null;
8863 }
8864
8865 private final class ServiceLookupResult {
8866 final ServiceRecord record;
8867 final String permission;
8868
8869 ServiceLookupResult(ServiceRecord _record, String _permission) {
8870 record = _record;
8871 permission = _permission;
8872 }
8873 };
8874
8875 private ServiceLookupResult findServiceLocked(Intent service,
8876 String resolvedType) {
8877 ServiceRecord r = null;
8878 if (service.getComponent() != null) {
8879 r = mServices.get(service.getComponent());
8880 }
8881 if (r == null) {
8882 Intent.FilterComparison filter = new Intent.FilterComparison(service);
8883 r = mServicesByIntent.get(filter);
8884 }
8885
8886 if (r == null) {
8887 try {
8888 ResolveInfo rInfo =
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07008889 AppGlobals.getPackageManager().resolveService(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008890 service, resolvedType, 0);
8891 ServiceInfo sInfo =
8892 rInfo != null ? rInfo.serviceInfo : null;
8893 if (sInfo == null) {
8894 return null;
8895 }
8896
8897 ComponentName name = new ComponentName(
8898 sInfo.applicationInfo.packageName, sInfo.name);
8899 r = mServices.get(name);
8900 } catch (RemoteException ex) {
8901 // pm is in same process, this will never happen.
8902 }
8903 }
8904 if (r != null) {
8905 int callingPid = Binder.getCallingPid();
8906 int callingUid = Binder.getCallingUid();
8907 if (checkComponentPermission(r.permission,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08008908 callingPid, callingUid, r.appInfo.uid, r.exported)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008909 != PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08008910 if (!r.exported) {
8911 Slog.w(TAG, "Permission Denial: Accessing service " + r.name
8912 + " from pid=" + callingPid
8913 + ", uid=" + callingUid
8914 + " that is not exported from uid " + r.appInfo.uid);
8915 return new ServiceLookupResult(null, "not exported from uid "
8916 + r.appInfo.uid);
8917 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08008918 Slog.w(TAG, "Permission Denial: Accessing service " + r.name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008919 + " from pid=" + callingPid
8920 + ", uid=" + callingUid
8921 + " requires " + r.permission);
8922 return new ServiceLookupResult(null, r.permission);
8923 }
8924 return new ServiceLookupResult(r, null);
8925 }
8926 return null;
8927 }
8928
8929 private class ServiceRestarter implements Runnable {
8930 private ServiceRecord mService;
8931
8932 void setService(ServiceRecord service) {
8933 mService = service;
8934 }
8935
8936 public void run() {
8937 synchronized(ActivityManagerService.this) {
8938 performServiceRestartLocked(mService);
8939 }
8940 }
8941 }
8942
8943 private ServiceLookupResult retrieveServiceLocked(Intent service,
8944 String resolvedType, int callingPid, int callingUid) {
8945 ServiceRecord r = null;
8946 if (service.getComponent() != null) {
8947 r = mServices.get(service.getComponent());
8948 }
8949 Intent.FilterComparison filter = new Intent.FilterComparison(service);
8950 r = mServicesByIntent.get(filter);
8951 if (r == null) {
8952 try {
8953 ResolveInfo rInfo =
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07008954 AppGlobals.getPackageManager().resolveService(
Dianne Hackborn1655be42009-05-08 14:29:01 -07008955 service, resolvedType, STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008956 ServiceInfo sInfo =
8957 rInfo != null ? rInfo.serviceInfo : null;
8958 if (sInfo == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08008959 Slog.w(TAG, "Unable to start service " + service +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008960 ": not found");
8961 return null;
8962 }
8963
8964 ComponentName name = new ComponentName(
8965 sInfo.applicationInfo.packageName, sInfo.name);
8966 r = mServices.get(name);
8967 if (r == null) {
8968 filter = new Intent.FilterComparison(service.cloneFilter());
8969 ServiceRestarter res = new ServiceRestarter();
8970 BatteryStatsImpl.Uid.Pkg.Serv ss = null;
8971 BatteryStatsImpl stats = mBatteryStatsService.getActiveStatistics();
8972 synchronized (stats) {
8973 ss = stats.getServiceStatsLocked(
8974 sInfo.applicationInfo.uid, sInfo.packageName,
8975 sInfo.name);
8976 }
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -08008977 r = new ServiceRecord(this, ss, name, filter, sInfo, res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008978 res.setService(r);
8979 mServices.put(name, r);
8980 mServicesByIntent.put(filter, r);
8981
8982 // Make sure this component isn't in the pending list.
8983 int N = mPendingServices.size();
8984 for (int i=0; i<N; i++) {
8985 ServiceRecord pr = mPendingServices.get(i);
8986 if (pr.name.equals(name)) {
8987 mPendingServices.remove(i);
8988 i--;
8989 N--;
8990 }
8991 }
8992 }
8993 } catch (RemoteException ex) {
8994 // pm is in same process, this will never happen.
8995 }
8996 }
8997 if (r != null) {
8998 if (checkComponentPermission(r.permission,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08008999 callingPid, callingUid, r.appInfo.uid, r.exported)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009000 != PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08009001 if (!r.exported) {
9002 Slog.w(TAG, "Permission Denial: Accessing service " + r.name
9003 + " from pid=" + callingPid
9004 + ", uid=" + callingUid
9005 + " that is not exported from uid " + r.appInfo.uid);
9006 return new ServiceLookupResult(null, "not exported from uid "
9007 + r.appInfo.uid);
9008 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08009009 Slog.w(TAG, "Permission Denial: Accessing service " + r.name
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -08009010 + " from pid=" + callingPid
9011 + ", uid=" + callingUid
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009012 + " requires " + r.permission);
9013 return new ServiceLookupResult(null, r.permission);
9014 }
9015 return new ServiceLookupResult(r, null);
9016 }
9017 return null;
9018 }
9019
Dianne Hackborn287952c2010-09-22 22:34:31 -07009020 private final void bumpServiceExecutingLocked(ServiceRecord r, String why) {
9021 if (DEBUG_SERVICE) Log.v(TAG, ">>> EXECUTING "
9022 + why + " of " + r + " in app " + r.app);
9023 else if (DEBUG_SERVICE_EXECUTING) Log.v(TAG, ">>> EXECUTING "
9024 + why + " of " + r.shortName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009025 long now = SystemClock.uptimeMillis();
9026 if (r.executeNesting == 0 && r.app != null) {
9027 if (r.app.executingServices.size() == 0) {
9028 Message msg = mHandler.obtainMessage(SERVICE_TIMEOUT_MSG);
9029 msg.obj = r.app;
9030 mHandler.sendMessageAtTime(msg, now+SERVICE_TIMEOUT);
9031 }
9032 r.app.executingServices.add(r);
9033 }
9034 r.executeNesting++;
9035 r.executingStart = now;
9036 }
9037
9038 private final void sendServiceArgsLocked(ServiceRecord r,
9039 boolean oomAdjusted) {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009040 final int N = r.pendingStarts.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009041 if (N == 0) {
9042 return;
9043 }
9044
Dianne Hackborn39792d22010-08-19 18:01:52 -07009045 while (r.pendingStarts.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009046 try {
Dianne Hackborn39792d22010-08-19 18:01:52 -07009047 ServiceRecord.StartItem si = r.pendingStarts.remove(0);
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009048 if (DEBUG_SERVICE) Slog.v(TAG, "Sending arguments to: "
9049 + r + " " + r.intent + " args=" + si.intent);
Dianne Hackborn39792d22010-08-19 18:01:52 -07009050 if (si.intent == null) {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009051 // If somehow we got a dummy start at the front, then
9052 // just drop it here.
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009053 continue;
9054 }
Dianne Hackborn39792d22010-08-19 18:01:52 -07009055 si.deliveredTime = SystemClock.uptimeMillis();
9056 r.deliveredStarts.add(si);
9057 si.deliveryCount++;
9058 if (si.targetPermissionUid >= 0) {
9059 grantUriPermissionUncheckedFromIntentLocked(si.targetPermissionUid,
Dianne Hackborn7e269642010-08-25 19:50:20 -07009060 r.packageName, si.intent, si.getUriPermissionsLocked());
Dianne Hackborn39792d22010-08-19 18:01:52 -07009061 }
Dianne Hackborn287952c2010-09-22 22:34:31 -07009062 bumpServiceExecutingLocked(r, "start");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009063 if (!oomAdjusted) {
9064 oomAdjusted = true;
9065 updateOomAdjLocked(r.app);
9066 }
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009067 int flags = 0;
9068 if (si.deliveryCount > 0) {
9069 flags |= Service.START_FLAG_RETRY;
9070 }
9071 if (si.doneExecutingCount > 0) {
9072 flags |= Service.START_FLAG_REDELIVERY;
9073 }
9074 r.app.thread.scheduleServiceArgs(r, si.id, flags, si.intent);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009075 } catch (RemoteException e) {
9076 // Remote process gone... we'll let the normal cleanup take
9077 // care of this.
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009078 if (DEBUG_SERVICE) Slog.v(TAG, "Crashed while scheduling start: " + r);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009079 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009080 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009081 Slog.w(TAG, "Unexpected exception", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009082 break;
9083 }
9084 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009085 }
9086
9087 private final boolean requestServiceBindingLocked(ServiceRecord r,
9088 IntentBindRecord i, boolean rebind) {
9089 if (r.app == null || r.app.thread == null) {
9090 // If service is not currently running, can't yet bind.
9091 return false;
9092 }
9093 if ((!i.requested || rebind) && i.apps.size() > 0) {
9094 try {
Dianne Hackborn287952c2010-09-22 22:34:31 -07009095 bumpServiceExecutingLocked(r, "bind");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009096 r.app.thread.scheduleBindService(r, i.intent.getIntent(), rebind);
9097 if (!rebind) {
9098 i.requested = true;
9099 }
9100 i.hasBound = true;
9101 i.doRebind = false;
9102 } catch (RemoteException e) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009103 if (DEBUG_SERVICE) Slog.v(TAG, "Crashed while binding " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009104 return false;
9105 }
9106 }
9107 return true;
9108 }
9109
9110 private final void requestServiceBindingsLocked(ServiceRecord r) {
9111 Iterator<IntentBindRecord> bindings = r.bindings.values().iterator();
9112 while (bindings.hasNext()) {
9113 IntentBindRecord i = bindings.next();
9114 if (!requestServiceBindingLocked(r, i, false)) {
9115 break;
9116 }
9117 }
9118 }
9119
9120 private final void realStartServiceLocked(ServiceRecord r,
9121 ProcessRecord app) throws RemoteException {
9122 if (app.thread == null) {
9123 throw new RemoteException();
9124 }
9125
9126 r.app = app;
The Android Open Source Project10592532009-03-18 17:39:46 -07009127 r.restartTime = r.lastActivity = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009128
9129 app.services.add(r);
Dianne Hackborn287952c2010-09-22 22:34:31 -07009130 bumpServiceExecutingLocked(r, "create");
Dianne Hackborndd71fc82009-12-16 19:24:32 -08009131 updateLruProcessLocked(app, true, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009132
9133 boolean created = false;
9134 try {
Dianne Hackborna33e3f72009-09-29 17:28:24 -07009135 mStringBuilder.setLength(0);
9136 r.intent.getIntent().toShortString(mStringBuilder, false, true);
Doug Zongker2bec3d42009-12-04 12:52:44 -08009137 EventLog.writeEvent(EventLogTags.AM_CREATE_SERVICE,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009138 System.identityHashCode(r), r.shortName,
Dianne Hackborna33e3f72009-09-29 17:28:24 -07009139 mStringBuilder.toString(), r.app.pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009140 synchronized (r.stats.getBatteryStats()) {
9141 r.stats.startLaunchedLocked();
9142 }
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -07009143 ensurePackageDexOpt(r.serviceInfo.packageName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009144 app.thread.scheduleCreateService(r, r.serviceInfo);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009145 r.postNotification();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009146 created = true;
9147 } finally {
9148 if (!created) {
9149 app.services.remove(r);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009150 scheduleServiceRestartLocked(r, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009151 }
9152 }
9153
9154 requestServiceBindingsLocked(r);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009155
9156 // If the service is in the started state, and there are no
9157 // pending arguments, then fake up one so its onStartCommand() will
9158 // be called.
9159 if (r.startRequested && r.callStart && r.pendingStarts.size() == 0) {
9160 r.lastStartId++;
9161 if (r.lastStartId < 1) {
9162 r.lastStartId = 1;
9163 }
Dianne Hackborn39792d22010-08-19 18:01:52 -07009164 r.pendingStarts.add(new ServiceRecord.StartItem(r, r.lastStartId, null, -1));
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009165 }
9166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009167 sendServiceArgsLocked(r, true);
9168 }
9169
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009170 private final boolean scheduleServiceRestartLocked(ServiceRecord r,
9171 boolean allowCancel) {
9172 boolean canceled = false;
9173
Dianne Hackbornfd12af42009-08-27 00:44:33 -07009174 final long now = SystemClock.uptimeMillis();
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009175 long minDuration = SERVICE_RESTART_DURATION;
Dianne Hackborn6ccd2af2009-08-27 12:26:44 -07009176 long resetTime = SERVICE_RESET_RUN_DURATION;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009177
Dianne Hackborn070783f2010-12-29 16:46:28 -08009178 if ((r.serviceInfo.applicationInfo.flags
9179 &ApplicationInfo.FLAG_PERSISTENT) != 0) {
9180 minDuration /= 4;
9181 }
9182
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009183 // Any delivered but not yet finished starts should be put back
9184 // on the pending list.
9185 final int N = r.deliveredStarts.size();
9186 if (N > 0) {
9187 for (int i=N-1; i>=0; i--) {
9188 ServiceRecord.StartItem si = r.deliveredStarts.get(i);
Dianne Hackborn39792d22010-08-19 18:01:52 -07009189 si.removeUriPermissionsLocked();
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009190 if (si.intent == null) {
9191 // We'll generate this again if needed.
9192 } else if (!allowCancel || (si.deliveryCount < ServiceRecord.MAX_DELIVERY_COUNT
9193 && si.doneExecutingCount < ServiceRecord.MAX_DONE_EXECUTING_COUNT)) {
9194 r.pendingStarts.add(0, si);
9195 long dur = SystemClock.uptimeMillis() - si.deliveredTime;
9196 dur *= 2;
9197 if (minDuration < dur) minDuration = dur;
9198 if (resetTime < dur) resetTime = dur;
9199 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009200 Slog.w(TAG, "Canceling start item " + si.intent + " in service "
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009201 + r.name);
9202 canceled = true;
9203 }
9204 }
9205 r.deliveredStarts.clear();
9206 }
9207
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009208 r.totalRestartCount++;
9209 if (r.restartDelay == 0) {
9210 r.restartCount++;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009211 r.restartDelay = minDuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009212 } else {
9213 // If it has been a "reasonably long time" since the service
9214 // was started, then reset our restart duration back to
9215 // the beginning, so we don't infinitely increase the duration
9216 // on a service that just occasionally gets killed (which is
9217 // a normal case, due to process being killed to reclaim memory).
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009218 if (now > (r.restartTime+resetTime)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009219 r.restartCount = 1;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009220 r.restartDelay = minDuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009221 } else {
Dianne Hackborn070783f2010-12-29 16:46:28 -08009222 if ((r.serviceInfo.applicationInfo.flags
9223 &ApplicationInfo.FLAG_PERSISTENT) != 0) {
9224 // Services in peristent processes will restart much more
9225 // quickly, since they are pretty important. (Think SystemUI).
9226 r.restartDelay += minDuration/2;
9227 } else {
9228 r.restartDelay *= SERVICE_RESTART_DURATION_FACTOR;
9229 if (r.restartDelay < minDuration) {
9230 r.restartDelay = minDuration;
9231 }
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009232 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009233 }
9234 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -07009235
9236 r.nextRestartTime = now + r.restartDelay;
9237
9238 // Make sure that we don't end up restarting a bunch of services
9239 // all at the same time.
9240 boolean repeat;
9241 do {
9242 repeat = false;
9243 for (int i=mRestartingServices.size()-1; i>=0; i--) {
9244 ServiceRecord r2 = mRestartingServices.get(i);
9245 if (r2 != r && r.nextRestartTime
9246 >= (r2.nextRestartTime-SERVICE_MIN_RESTART_TIME_BETWEEN)
9247 && r.nextRestartTime
9248 < (r2.nextRestartTime+SERVICE_MIN_RESTART_TIME_BETWEEN)) {
9249 r.nextRestartTime = r2.nextRestartTime + SERVICE_MIN_RESTART_TIME_BETWEEN;
9250 r.restartDelay = r.nextRestartTime - now;
9251 repeat = true;
9252 break;
9253 }
9254 }
9255 } while (repeat);
9256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009257 if (!mRestartingServices.contains(r)) {
9258 mRestartingServices.add(r);
9259 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -07009260
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009261 r.cancelNotification();
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009263 mHandler.removeCallbacks(r.restarter);
Dianne Hackbornfd12af42009-08-27 00:44:33 -07009264 mHandler.postAtTime(r.restarter, r.nextRestartTime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009265 r.nextRestartTime = SystemClock.uptimeMillis() + r.restartDelay;
Joe Onorato8a9b2202010-02-26 18:56:32 -08009266 Slog.w(TAG, "Scheduling restart of crashed service "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009267 + r.shortName + " in " + r.restartDelay + "ms");
Doug Zongker2bec3d42009-12-04 12:52:44 -08009268 EventLog.writeEvent(EventLogTags.AM_SCHEDULE_SERVICE_RESTART,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009269 r.shortName, r.restartDelay);
9270
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009271 return canceled;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009272 }
9273
9274 final void performServiceRestartLocked(ServiceRecord r) {
9275 if (!mRestartingServices.contains(r)) {
9276 return;
9277 }
9278 bringUpServiceLocked(r, r.intent.getIntent().getFlags(), true);
9279 }
9280
9281 private final boolean unscheduleServiceRestartLocked(ServiceRecord r) {
9282 if (r.restartDelay == 0) {
9283 return false;
9284 }
9285 r.resetRestartCounter();
9286 mRestartingServices.remove(r);
9287 mHandler.removeCallbacks(r.restarter);
9288 return true;
9289 }
9290
9291 private final boolean bringUpServiceLocked(ServiceRecord r,
9292 int intentFlags, boolean whileRestarting) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009293 //Slog.i(TAG, "Bring up service:");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009294 //r.dump(" ");
9295
Dianne Hackborn36124872009-10-08 16:22:03 -07009296 if (r.app != null && r.app.thread != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009297 sendServiceArgsLocked(r, false);
9298 return true;
9299 }
9300
9301 if (!whileRestarting && r.restartDelay > 0) {
9302 // If waiting for a restart, then do nothing.
9303 return true;
9304 }
9305
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009306 if (DEBUG_SERVICE) Slog.v(TAG, "Bringing up " + r + " " + r.intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009307
Dianne Hackbornde42bb62009-08-05 12:26:15 -07009308 // We are now bringing the service up, so no longer in the
9309 // restarting state.
9310 mRestartingServices.remove(r);
9311
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009312 final String appName = r.processName;
9313 ProcessRecord app = getProcessRecordLocked(appName, r.appInfo.uid);
9314 if (app != null && app.thread != null) {
9315 try {
9316 realStartServiceLocked(r, app);
9317 return true;
9318 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009319 Slog.w(TAG, "Exception when starting service " + r.shortName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009320 }
9321
9322 // If a dead object exception was thrown -- fall through to
9323 // restart the application.
9324 }
9325
Dianne Hackborn36124872009-10-08 16:22:03 -07009326 // Not running -- get it started, and enqueue this service record
9327 // to be executed when the app comes up.
9328 if (startProcessLocked(appName, r.appInfo, true, intentFlags,
9329 "service", r.name, false) == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009330 Slog.w(TAG, "Unable to launch app "
Dianne Hackborn36124872009-10-08 16:22:03 -07009331 + r.appInfo.packageName + "/"
9332 + r.appInfo.uid + " for service "
9333 + r.intent.getIntent() + ": process is bad");
9334 bringDownServiceLocked(r, true);
9335 return false;
9336 }
9337
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009338 if (!mPendingServices.contains(r)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009339 mPendingServices.add(r);
9340 }
Dianne Hackborn36124872009-10-08 16:22:03 -07009341
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009342 return true;
9343 }
9344
9345 private final void bringDownServiceLocked(ServiceRecord r, boolean force) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009346 //Slog.i(TAG, "Bring down service:");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009347 //r.dump(" ");
9348
9349 // Does it still need to run?
9350 if (!force && r.startRequested) {
9351 return;
9352 }
9353 if (r.connections.size() > 0) {
9354 if (!force) {
9355 // XXX should probably keep a count of the number of auto-create
9356 // connections directly in the service.
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009357 Iterator<ArrayList<ConnectionRecord>> it = r.connections.values().iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009358 while (it.hasNext()) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009359 ArrayList<ConnectionRecord> cr = it.next();
9360 for (int i=0; i<cr.size(); i++) {
9361 if ((cr.get(i).flags&Context.BIND_AUTO_CREATE) != 0) {
9362 return;
9363 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009364 }
9365 }
9366 }
9367
9368 // Report to all of the connections that the service is no longer
9369 // available.
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009370 Iterator<ArrayList<ConnectionRecord>> it = r.connections.values().iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009371 while (it.hasNext()) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009372 ArrayList<ConnectionRecord> c = it.next();
9373 for (int i=0; i<c.size(); i++) {
9374 try {
9375 c.get(i).conn.connected(r.name, null);
9376 } catch (Exception e) {
9377 Slog.w(TAG, "Failure disconnecting service " + r.name +
9378 " to connection " + c.get(i).conn.asBinder() +
9379 " (in " + c.get(i).binding.client.processName + ")", e);
9380 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009381 }
9382 }
9383 }
9384
9385 // Tell the service that it has been unbound.
9386 if (r.bindings.size() > 0 && r.app != null && r.app.thread != null) {
9387 Iterator<IntentBindRecord> it = r.bindings.values().iterator();
9388 while (it.hasNext()) {
9389 IntentBindRecord ibr = it.next();
Joe Onorato8a9b2202010-02-26 18:56:32 -08009390 if (DEBUG_SERVICE) Slog.v(TAG, "Bringing down binding " + ibr
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009391 + ": hasBound=" + ibr.hasBound);
9392 if (r.app != null && r.app.thread != null && ibr.hasBound) {
9393 try {
Dianne Hackborn287952c2010-09-22 22:34:31 -07009394 bumpServiceExecutingLocked(r, "bring down unbind");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009395 updateOomAdjLocked(r.app);
9396 ibr.hasBound = false;
9397 r.app.thread.scheduleUnbindService(r,
9398 ibr.intent.getIntent());
9399 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009400 Slog.w(TAG, "Exception when unbinding service "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009401 + r.shortName, e);
9402 serviceDoneExecutingLocked(r, true);
9403 }
9404 }
9405 }
9406 }
9407
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009408 if (DEBUG_SERVICE) Slog.v(TAG, "Bringing down " + r + " " + r.intent);
Doug Zongker2bec3d42009-12-04 12:52:44 -08009409 EventLog.writeEvent(EventLogTags.AM_DESTROY_SERVICE,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009410 System.identityHashCode(r), r.shortName,
9411 (r.app != null) ? r.app.pid : -1);
9412
9413 mServices.remove(r.name);
9414 mServicesByIntent.remove(r.intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009415 r.totalRestartCount = 0;
9416 unscheduleServiceRestartLocked(r);
9417
9418 // Also make sure it is not on the pending list.
9419 int N = mPendingServices.size();
9420 for (int i=0; i<N; i++) {
9421 if (mPendingServices.get(i) == r) {
9422 mPendingServices.remove(i);
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009423 if (DEBUG_SERVICE) Slog.v(TAG, "Removed pending: " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009424 i--;
9425 N--;
9426 }
9427 }
9428
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009429 r.cancelNotification();
9430 r.isForeground = false;
9431 r.foregroundId = 0;
9432 r.foregroundNoti = null;
9433
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009434 // Clear start entries.
Dianne Hackborn39792d22010-08-19 18:01:52 -07009435 r.clearDeliveredStartsLocked();
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009436 r.pendingStarts.clear();
9437
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009438 if (r.app != null) {
9439 synchronized (r.stats.getBatteryStats()) {
9440 r.stats.stopLaunchedLocked();
9441 }
9442 r.app.services.remove(r);
9443 if (r.app.thread != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009444 try {
Dianne Hackborn287952c2010-09-22 22:34:31 -07009445 bumpServiceExecutingLocked(r, "stop");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009446 mStoppingServices.add(r);
9447 updateOomAdjLocked(r.app);
9448 r.app.thread.scheduleStopService(r);
9449 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009450 Slog.w(TAG, "Exception when stopping service "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009451 + r.shortName, e);
9452 serviceDoneExecutingLocked(r, true);
9453 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009454 updateServiceForegroundLocked(r.app, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009455 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009456 if (DEBUG_SERVICE) Slog.v(
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009457 TAG, "Removed service that has no process: " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009458 }
9459 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009460 if (DEBUG_SERVICE) Slog.v(
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009461 TAG, "Removed service that is not running: " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009462 }
Vairavan Srinivasana207ce22010-12-23 13:51:48 -08009463
9464 if (r.bindings.size() > 0) {
9465 r.bindings.clear();
9466 }
9467
9468 if (r.restarter instanceof ServiceRestarter) {
9469 ((ServiceRestarter)r.restarter).setService(null);
9470 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009471 }
9472
9473 ComponentName startServiceLocked(IApplicationThread caller,
9474 Intent service, String resolvedType,
9475 int callingPid, int callingUid) {
9476 synchronized(this) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009477 if (DEBUG_SERVICE) Slog.v(TAG, "startService: " + service
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009478 + " type=" + resolvedType + " args=" + service.getExtras());
9479
9480 if (caller != null) {
9481 final ProcessRecord callerApp = getRecordForAppLocked(caller);
9482 if (callerApp == null) {
9483 throw new SecurityException(
9484 "Unable to find app for caller " + caller
9485 + " (pid=" + Binder.getCallingPid()
9486 + ") when starting service " + service);
9487 }
9488 }
9489
9490 ServiceLookupResult res =
9491 retrieveServiceLocked(service, resolvedType,
9492 callingPid, callingUid);
9493 if (res == null) {
9494 return null;
9495 }
9496 if (res.record == null) {
9497 return new ComponentName("!", res.permission != null
9498 ? res.permission : "private to package");
9499 }
9500 ServiceRecord r = res.record;
Dianne Hackborn39792d22010-08-19 18:01:52 -07009501 int targetPermissionUid = checkGrantUriPermissionFromIntentLocked(
9502 callingUid, r.packageName, service);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009503 if (unscheduleServiceRestartLocked(r)) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009504 if (DEBUG_SERVICE) Slog.v(TAG, "START SERVICE WHILE RESTART PENDING: " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009505 }
9506 r.startRequested = true;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009507 r.callStart = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009508 r.lastStartId++;
9509 if (r.lastStartId < 1) {
9510 r.lastStartId = 1;
9511 }
Dianne Hackborn39792d22010-08-19 18:01:52 -07009512 r.pendingStarts.add(new ServiceRecord.StartItem(r, r.lastStartId,
9513 service, targetPermissionUid));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009514 r.lastActivity = SystemClock.uptimeMillis();
9515 synchronized (r.stats.getBatteryStats()) {
9516 r.stats.startRunningLocked();
9517 }
9518 if (!bringUpServiceLocked(r, service.getFlags(), false)) {
9519 return new ComponentName("!", "Service process is bad");
9520 }
9521 return r.name;
9522 }
9523 }
9524
9525 public ComponentName startService(IApplicationThread caller, Intent service,
9526 String resolvedType) {
9527 // Refuse possible leaked file descriptors
9528 if (service != null && service.hasFileDescriptors() == true) {
9529 throw new IllegalArgumentException("File descriptors passed in Intent");
9530 }
9531
9532 synchronized(this) {
9533 final int callingPid = Binder.getCallingPid();
9534 final int callingUid = Binder.getCallingUid();
9535 final long origId = Binder.clearCallingIdentity();
9536 ComponentName res = startServiceLocked(caller, service,
9537 resolvedType, callingPid, callingUid);
9538 Binder.restoreCallingIdentity(origId);
9539 return res;
9540 }
9541 }
9542
9543 ComponentName startServiceInPackage(int uid,
9544 Intent service, String resolvedType) {
9545 synchronized(this) {
9546 final long origId = Binder.clearCallingIdentity();
9547 ComponentName res = startServiceLocked(null, service,
9548 resolvedType, -1, uid);
9549 Binder.restoreCallingIdentity(origId);
9550 return res;
9551 }
9552 }
9553
9554 public int stopService(IApplicationThread caller, Intent service,
9555 String resolvedType) {
9556 // Refuse possible leaked file descriptors
9557 if (service != null && service.hasFileDescriptors() == true) {
9558 throw new IllegalArgumentException("File descriptors passed in Intent");
9559 }
9560
9561 synchronized(this) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009562 if (DEBUG_SERVICE) Slog.v(TAG, "stopService: " + service
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009563 + " type=" + resolvedType);
9564
9565 final ProcessRecord callerApp = getRecordForAppLocked(caller);
9566 if (caller != null && callerApp == null) {
9567 throw new SecurityException(
9568 "Unable to find app for caller " + caller
9569 + " (pid=" + Binder.getCallingPid()
9570 + ") when stopping service " + service);
9571 }
9572
9573 // If this service is active, make sure it is stopped.
9574 ServiceLookupResult r = findServiceLocked(service, resolvedType);
9575 if (r != null) {
9576 if (r.record != null) {
9577 synchronized (r.record.stats.getBatteryStats()) {
9578 r.record.stats.stopRunningLocked();
9579 }
9580 r.record.startRequested = false;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009581 r.record.callStart = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009582 final long origId = Binder.clearCallingIdentity();
9583 bringDownServiceLocked(r.record, false);
9584 Binder.restoreCallingIdentity(origId);
9585 return 1;
9586 }
9587 return -1;
9588 }
9589 }
9590
9591 return 0;
9592 }
9593
9594 public IBinder peekService(Intent service, String resolvedType) {
9595 // Refuse possible leaked file descriptors
9596 if (service != null && service.hasFileDescriptors() == true) {
9597 throw new IllegalArgumentException("File descriptors passed in Intent");
9598 }
9599
9600 IBinder ret = null;
9601
9602 synchronized(this) {
9603 ServiceLookupResult r = findServiceLocked(service, resolvedType);
9604
9605 if (r != null) {
9606 // r.record is null if findServiceLocked() failed the caller permission check
9607 if (r.record == null) {
9608 throw new SecurityException(
lge-aospea278a92011-01-07 13:45:37 +09009609 "Permission Denial: Accessing service "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009610 + " from pid=" + Binder.getCallingPid()
9611 + ", uid=" + Binder.getCallingUid()
9612 + " requires " + r.permission);
9613 }
9614 IntentBindRecord ib = r.record.bindings.get(r.record.intent);
9615 if (ib != null) {
9616 ret = ib.binder;
9617 }
9618 }
9619 }
9620
9621 return ret;
9622 }
9623
9624 public boolean stopServiceToken(ComponentName className, IBinder token,
9625 int startId) {
9626 synchronized(this) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009627 if (DEBUG_SERVICE) Slog.v(TAG, "stopServiceToken: " + className
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009628 + " " + token + " startId=" + startId);
9629 ServiceRecord r = findServiceLocked(className, token);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009630 if (r != null) {
9631 if (startId >= 0) {
9632 // Asked to only stop if done with all work. Note that
9633 // to avoid leaks, we will take this as dropping all
9634 // start items up to and including this one.
9635 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false);
9636 if (si != null) {
9637 while (r.deliveredStarts.size() > 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07009638 ServiceRecord.StartItem cur = r.deliveredStarts.remove(0);
9639 cur.removeUriPermissionsLocked();
9640 if (cur == si) {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009641 break;
9642 }
9643 }
9644 }
9645
9646 if (r.lastStartId != startId) {
9647 return false;
9648 }
9649
9650 if (r.deliveredStarts.size() > 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009651 Slog.w(TAG, "stopServiceToken startId " + startId
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009652 + " is last, but have " + r.deliveredStarts.size()
9653 + " remaining args");
9654 }
9655 }
9656
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009657 synchronized (r.stats.getBatteryStats()) {
9658 r.stats.stopRunningLocked();
9659 r.startRequested = false;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07009660 r.callStart = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009661 }
9662 final long origId = Binder.clearCallingIdentity();
9663 bringDownServiceLocked(r, false);
9664 Binder.restoreCallingIdentity(origId);
9665 return true;
9666 }
9667 }
9668 return false;
9669 }
9670
9671 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009672 int id, Notification notification, boolean removeNotification) {
9673 final long origId = Binder.clearCallingIdentity();
9674 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009675 synchronized(this) {
9676 ServiceRecord r = findServiceLocked(className, token);
9677 if (r != null) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009678 if (id != 0) {
9679 if (notification == null) {
9680 throw new IllegalArgumentException("null notification");
9681 }
9682 if (r.foregroundId != id) {
9683 r.cancelNotification();
9684 r.foregroundId = id;
9685 }
9686 notification.flags |= Notification.FLAG_FOREGROUND_SERVICE;
9687 r.foregroundNoti = notification;
9688 r.isForeground = true;
9689 r.postNotification();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009690 if (r.app != null) {
9691 updateServiceForegroundLocked(r.app, true);
9692 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009693 } else {
9694 if (r.isForeground) {
9695 r.isForeground = false;
9696 if (r.app != null) {
Dianne Hackborn8633e682010-04-22 16:03:41 -07009697 updateLruProcessLocked(r.app, false, true);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009698 updateServiceForegroundLocked(r.app, true);
9699 }
9700 }
9701 if (removeNotification) {
9702 r.cancelNotification();
9703 r.foregroundId = 0;
9704 r.foregroundNoti = null;
9705 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009706 }
9707 }
9708 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07009709 } finally {
9710 Binder.restoreCallingIdentity(origId);
9711 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009712 }
9713
9714 public void updateServiceForegroundLocked(ProcessRecord proc, boolean oomAdj) {
9715 boolean anyForeground = false;
Dianne Hackborn860755f2010-06-03 18:47:52 -07009716 for (ServiceRecord sr : proc.services) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009717 if (sr.isForeground) {
9718 anyForeground = true;
9719 break;
9720 }
9721 }
9722 if (anyForeground != proc.foregroundServices) {
9723 proc.foregroundServices = anyForeground;
9724 if (oomAdj) {
9725 updateOomAdjLocked();
9726 }
9727 }
9728 }
9729
9730 public int bindService(IApplicationThread caller, IBinder token,
9731 Intent service, String resolvedType,
9732 IServiceConnection connection, int flags) {
9733 // Refuse possible leaked file descriptors
9734 if (service != null && service.hasFileDescriptors() == true) {
9735 throw new IllegalArgumentException("File descriptors passed in Intent");
9736 }
9737
9738 synchronized(this) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009739 if (DEBUG_SERVICE) Slog.v(TAG, "bindService: " + service
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009740 + " type=" + resolvedType + " conn=" + connection.asBinder()
9741 + " flags=0x" + Integer.toHexString(flags));
9742 final ProcessRecord callerApp = getRecordForAppLocked(caller);
9743 if (callerApp == null) {
9744 throw new SecurityException(
9745 "Unable to find app for caller " + caller
9746 + " (pid=" + Binder.getCallingPid()
9747 + ") when binding service " + service);
9748 }
9749
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07009750 ActivityRecord activity = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009751 if (token != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07009752 int aindex = mMainStack.indexOfTokenLocked(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009753 if (aindex < 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009754 Slog.w(TAG, "Binding with unknown activity: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009755 return 0;
9756 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07009757 activity = (ActivityRecord)mMainStack.mHistory.get(aindex);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009758 }
9759
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07009760 int clientLabel = 0;
9761 PendingIntent clientIntent = null;
9762
9763 if (callerApp.info.uid == Process.SYSTEM_UID) {
9764 // Hacky kind of thing -- allow system stuff to tell us
9765 // what they are, so we can report this elsewhere for
9766 // others to know why certain services are running.
9767 try {
9768 clientIntent = (PendingIntent)service.getParcelableExtra(
9769 Intent.EXTRA_CLIENT_INTENT);
9770 } catch (RuntimeException e) {
9771 }
9772 if (clientIntent != null) {
9773 clientLabel = service.getIntExtra(Intent.EXTRA_CLIENT_LABEL, 0);
9774 if (clientLabel != 0) {
9775 // There are no useful extras in the intent, trash them.
9776 // System code calling with this stuff just needs to know
9777 // this will happen.
9778 service = service.cloneFilter();
9779 }
9780 }
9781 }
9782
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009783 ServiceLookupResult res =
9784 retrieveServiceLocked(service, resolvedType,
9785 Binder.getCallingPid(), Binder.getCallingUid());
9786 if (res == null) {
9787 return 0;
9788 }
9789 if (res.record == null) {
9790 return -1;
9791 }
9792 ServiceRecord s = res.record;
9793
9794 final long origId = Binder.clearCallingIdentity();
9795
9796 if (unscheduleServiceRestartLocked(s)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009797 if (DEBUG_SERVICE) Slog.v(TAG, "BIND SERVICE WHILE RESTART PENDING: "
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009798 + s);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009799 }
9800
9801 AppBindRecord b = s.retrieveAppBindingLocked(service, callerApp);
9802 ConnectionRecord c = new ConnectionRecord(b, activity,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07009803 connection, flags, clientLabel, clientIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009804
9805 IBinder binder = connection.asBinder();
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009806 ArrayList<ConnectionRecord> clist = s.connections.get(binder);
9807 if (clist == null) {
9808 clist = new ArrayList<ConnectionRecord>();
9809 s.connections.put(binder, clist);
9810 }
9811 clist.add(c);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009812 b.connections.add(c);
9813 if (activity != null) {
9814 if (activity.connections == null) {
9815 activity.connections = new HashSet<ConnectionRecord>();
9816 }
9817 activity.connections.add(c);
9818 }
9819 b.client.connections.add(c);
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009820 clist = mServiceConnections.get(binder);
9821 if (clist == null) {
9822 clist = new ArrayList<ConnectionRecord>();
9823 mServiceConnections.put(binder, clist);
9824 }
9825 clist.add(c);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009826
9827 if ((flags&Context.BIND_AUTO_CREATE) != 0) {
9828 s.lastActivity = SystemClock.uptimeMillis();
9829 if (!bringUpServiceLocked(s, service.getFlags(), false)) {
9830 return 0;
9831 }
9832 }
9833
9834 if (s.app != null) {
9835 // This could have made the service more important.
9836 updateOomAdjLocked(s.app);
9837 }
9838
Joe Onorato8a9b2202010-02-26 18:56:32 -08009839 if (DEBUG_SERVICE) Slog.v(TAG, "Bind " + s + " with " + b
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009840 + ": received=" + b.intent.received
9841 + " apps=" + b.intent.apps.size()
9842 + " doRebind=" + b.intent.doRebind);
9843
9844 if (s.app != null && b.intent.received) {
9845 // Service is already running, so we can immediately
9846 // publish the connection.
9847 try {
9848 c.conn.connected(s.name, b.intent.binder);
9849 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009850 Slog.w(TAG, "Failure sending service " + s.shortName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009851 + " to connection " + c.conn.asBinder()
9852 + " (in " + c.binding.client.processName + ")", e);
9853 }
9854
9855 // If this is the first app connected back to this binding,
9856 // and the service had previously asked to be told when
9857 // rebound, then do so.
9858 if (b.intent.apps.size() == 1 && b.intent.doRebind) {
9859 requestServiceBindingLocked(s, b.intent, true);
9860 }
9861 } else if (!b.intent.requested) {
9862 requestServiceBindingLocked(s, b.intent, false);
9863 }
9864
9865 Binder.restoreCallingIdentity(origId);
9866 }
9867
9868 return 1;
9869 }
9870
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07009871 void removeConnectionLocked(
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07009872 ConnectionRecord c, ProcessRecord skipApp, ActivityRecord skipAct) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009873 IBinder binder = c.conn.asBinder();
9874 AppBindRecord b = c.binding;
9875 ServiceRecord s = b.service;
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009876 ArrayList<ConnectionRecord> clist = s.connections.get(binder);
9877 if (clist != null) {
9878 clist.remove(c);
9879 if (clist.size() == 0) {
9880 s.connections.remove(binder);
9881 }
9882 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009883 b.connections.remove(c);
9884 if (c.activity != null && c.activity != skipAct) {
9885 if (c.activity.connections != null) {
9886 c.activity.connections.remove(c);
9887 }
9888 }
9889 if (b.client != skipApp) {
9890 b.client.connections.remove(c);
9891 }
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009892 clist = mServiceConnections.get(binder);
9893 if (clist != null) {
9894 clist.remove(c);
9895 if (clist.size() == 0) {
9896 mServiceConnections.remove(binder);
9897 }
9898 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009899
9900 if (b.connections.size() == 0) {
9901 b.intent.apps.remove(b.client);
9902 }
9903
Joe Onorato8a9b2202010-02-26 18:56:32 -08009904 if (DEBUG_SERVICE) Slog.v(TAG, "Disconnecting binding " + b.intent
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009905 + ": shouldUnbind=" + b.intent.hasBound);
9906 if (s.app != null && s.app.thread != null && b.intent.apps.size() == 0
9907 && b.intent.hasBound) {
9908 try {
Dianne Hackborn287952c2010-09-22 22:34:31 -07009909 bumpServiceExecutingLocked(s, "unbind");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009910 updateOomAdjLocked(s.app);
9911 b.intent.hasBound = false;
9912 // Assume the client doesn't want to know about a rebind;
9913 // we will deal with that later if it asks for one.
9914 b.intent.doRebind = false;
9915 s.app.thread.scheduleUnbindService(s, b.intent.intent.getIntent());
9916 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009917 Slog.w(TAG, "Exception when unbinding service " + s.shortName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009918 serviceDoneExecutingLocked(s, true);
9919 }
9920 }
9921
9922 if ((c.flags&Context.BIND_AUTO_CREATE) != 0) {
9923 bringDownServiceLocked(s, false);
9924 }
9925 }
9926
9927 public boolean unbindService(IServiceConnection connection) {
9928 synchronized (this) {
9929 IBinder binder = connection.asBinder();
Joe Onorato8a9b2202010-02-26 18:56:32 -08009930 if (DEBUG_SERVICE) Slog.v(TAG, "unbindService: conn=" + binder);
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009931 ArrayList<ConnectionRecord> clist = mServiceConnections.get(binder);
9932 if (clist == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08009933 Slog.w(TAG, "Unbind failed: could not find connection for "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009934 + connection.asBinder());
9935 return false;
9936 }
9937
9938 final long origId = Binder.clearCallingIdentity();
9939
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009940 while (clist.size() > 0) {
9941 ConnectionRecord r = clist.get(0);
9942 removeConnectionLocked(r, null, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009943
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009944 if (r.binding.service.app != null) {
9945 // This could have made the service less important.
9946 updateOomAdjLocked(r.binding.service.app);
9947 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009948 }
9949
9950 Binder.restoreCallingIdentity(origId);
9951 }
9952
9953 return true;
9954 }
9955
9956 public void publishService(IBinder token, Intent intent, IBinder service) {
9957 // Refuse possible leaked file descriptors
9958 if (intent != null && intent.hasFileDescriptors() == true) {
9959 throw new IllegalArgumentException("File descriptors passed in Intent");
9960 }
9961
9962 synchronized(this) {
9963 if (!(token instanceof ServiceRecord)) {
9964 throw new IllegalArgumentException("Invalid service token");
9965 }
9966 ServiceRecord r = (ServiceRecord)token;
9967
9968 final long origId = Binder.clearCallingIdentity();
9969
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009970 if (DEBUG_SERVICE) Slog.v(TAG, "PUBLISHING " + r
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009971 + " " + intent + ": " + service);
9972 if (r != null) {
9973 Intent.FilterComparison filter
9974 = new Intent.FilterComparison(intent);
9975 IntentBindRecord b = r.bindings.get(filter);
9976 if (b != null && !b.received) {
9977 b.binder = service;
9978 b.requested = true;
9979 b.received = true;
9980 if (r.connections.size() > 0) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009981 Iterator<ArrayList<ConnectionRecord>> it
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009982 = r.connections.values().iterator();
9983 while (it.hasNext()) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -07009984 ArrayList<ConnectionRecord> clist = it.next();
9985 for (int i=0; i<clist.size(); i++) {
9986 ConnectionRecord c = clist.get(i);
9987 if (!filter.equals(c.binding.intent.intent)) {
9988 if (DEBUG_SERVICE) Slog.v(
9989 TAG, "Not publishing to: " + c);
9990 if (DEBUG_SERVICE) Slog.v(
9991 TAG, "Bound intent: " + c.binding.intent.intent);
9992 if (DEBUG_SERVICE) Slog.v(
9993 TAG, "Published intent: " + intent);
9994 continue;
9995 }
9996 if (DEBUG_SERVICE) Slog.v(TAG, "Publishing to: " + c);
9997 try {
9998 c.conn.connected(r.name, service);
9999 } catch (Exception e) {
10000 Slog.w(TAG, "Failure sending service " + r.name +
10001 " to connection " + c.conn.asBinder() +
10002 " (in " + c.binding.client.processName + ")", e);
10003 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010004 }
10005 }
10006 }
10007 }
10008
10009 serviceDoneExecutingLocked(r, mStoppingServices.contains(r));
10010
10011 Binder.restoreCallingIdentity(origId);
10012 }
10013 }
10014 }
10015
10016 public void unbindFinished(IBinder token, Intent intent, boolean doRebind) {
10017 // Refuse possible leaked file descriptors
10018 if (intent != null && intent.hasFileDescriptors() == true) {
10019 throw new IllegalArgumentException("File descriptors passed in Intent");
10020 }
10021
10022 synchronized(this) {
10023 if (!(token instanceof ServiceRecord)) {
10024 throw new IllegalArgumentException("Invalid service token");
10025 }
10026 ServiceRecord r = (ServiceRecord)token;
10027
10028 final long origId = Binder.clearCallingIdentity();
10029
10030 if (r != null) {
10031 Intent.FilterComparison filter
10032 = new Intent.FilterComparison(intent);
10033 IntentBindRecord b = r.bindings.get(filter);
Joe Onorato8a9b2202010-02-26 18:56:32 -080010034 if (DEBUG_SERVICE) Slog.v(TAG, "unbindFinished in " + r
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010035 + " at " + b + ": apps="
10036 + (b != null ? b.apps.size() : 0));
10037 if (b != null) {
10038 if (b.apps.size() > 0) {
10039 // Applications have already bound since the last
10040 // unbind, so just rebind right here.
10041 requestServiceBindingLocked(r, b, true);
10042 } else {
10043 // Note to tell the service the next time there is
10044 // a new client.
10045 b.doRebind = true;
10046 }
10047 }
10048
10049 serviceDoneExecutingLocked(r, mStoppingServices.contains(r));
10050
10051 Binder.restoreCallingIdentity(origId);
10052 }
10053 }
10054 }
10055
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -070010056 public void serviceDoneExecuting(IBinder token, int type, int startId, int res) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010057 synchronized(this) {
10058 if (!(token instanceof ServiceRecord)) {
10059 throw new IllegalArgumentException("Invalid service token");
10060 }
10061 ServiceRecord r = (ServiceRecord)token;
10062 boolean inStopping = mStoppingServices.contains(token);
10063 if (r != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010064 if (r != token) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010065 Slog.w(TAG, "Done executing service " + r.name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010066 + " with incorrect token: given " + token
10067 + ", expected " + r);
10068 return;
10069 }
10070
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -070010071 if (type == 1) {
10072 // This is a call from a service start... take care of
10073 // book-keeping.
10074 r.callStart = true;
10075 switch (res) {
10076 case Service.START_STICKY_COMPATIBILITY:
10077 case Service.START_STICKY: {
10078 // We are done with the associated start arguments.
10079 r.findDeliveredStart(startId, true);
10080 // Don't stop if killed.
10081 r.stopIfKilled = false;
10082 break;
10083 }
10084 case Service.START_NOT_STICKY: {
10085 // We are done with the associated start arguments.
10086 r.findDeliveredStart(startId, true);
10087 if (r.lastStartId == startId) {
10088 // There is no more work, and this service
10089 // doesn't want to hang around if killed.
10090 r.stopIfKilled = true;
10091 }
10092 break;
10093 }
10094 case Service.START_REDELIVER_INTENT: {
10095 // We'll keep this item until they explicitly
10096 // call stop for it, but keep track of the fact
10097 // that it was delivered.
10098 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false);
10099 if (si != null) {
10100 si.deliveryCount = 0;
10101 si.doneExecutingCount++;
10102 // Don't stop if killed.
10103 r.stopIfKilled = true;
10104 }
10105 break;
10106 }
10107 default:
10108 throw new IllegalArgumentException(
10109 "Unknown service start result: " + res);
10110 }
10111 if (res == Service.START_STICKY_COMPATIBILITY) {
10112 r.callStart = false;
10113 }
10114 }
10115
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010116 final long origId = Binder.clearCallingIdentity();
10117 serviceDoneExecutingLocked(r, inStopping);
10118 Binder.restoreCallingIdentity(origId);
10119 } else {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -070010120 Slog.w(TAG, "Done executing unknown service from pid "
10121 + Binder.getCallingPid());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010122 }
10123 }
10124 }
10125
10126 public void serviceDoneExecutingLocked(ServiceRecord r, boolean inStopping) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -070010127 if (DEBUG_SERVICE) Slog.v(TAG, "<<< DONE EXECUTING " + r
10128 + ": nesting=" + r.executeNesting
10129 + ", inStopping=" + inStopping + ", app=" + r.app);
Dianne Hackborn287952c2010-09-22 22:34:31 -070010130 else if (DEBUG_SERVICE_EXECUTING) Slog.v(TAG, "<<< DONE EXECUTING " + r.shortName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010131 r.executeNesting--;
10132 if (r.executeNesting <= 0 && r.app != null) {
Dianne Hackborn287952c2010-09-22 22:34:31 -070010133 if (DEBUG_SERVICE) Slog.v(TAG,
10134 "Nesting at 0 of " + r.shortName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010135 r.app.executingServices.remove(r);
10136 if (r.app.executingServices.size() == 0) {
Dianne Hackborn287952c2010-09-22 22:34:31 -070010137 if (DEBUG_SERVICE || DEBUG_SERVICE_EXECUTING) Slog.v(TAG,
10138 "No more executingServices of " + r.shortName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010139 mHandler.removeMessages(SERVICE_TIMEOUT_MSG, r.app);
10140 }
10141 if (inStopping) {
Dianne Hackborn287952c2010-09-22 22:34:31 -070010142 if (DEBUG_SERVICE) Slog.v(TAG,
10143 "doneExecuting remove stopping " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010144 mStoppingServices.remove(r);
Mattias Petersson3996b412010-10-27 09:32:51 +020010145 r.bindings.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010146 }
10147 updateOomAdjLocked(r.app);
10148 }
10149 }
10150
10151 void serviceTimeout(ProcessRecord proc) {
Dianne Hackbornad5499d2010-03-29 18:08:45 -070010152 String anrMessage = null;
10153
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010154 synchronized(this) {
10155 if (proc.executingServices.size() == 0 || proc.thread == null) {
10156 return;
10157 }
10158 long maxTime = SystemClock.uptimeMillis() - SERVICE_TIMEOUT;
10159 Iterator<ServiceRecord> it = proc.executingServices.iterator();
10160 ServiceRecord timeout = null;
10161 long nextTime = 0;
10162 while (it.hasNext()) {
10163 ServiceRecord sr = it.next();
10164 if (sr.executingStart < maxTime) {
10165 timeout = sr;
10166 break;
10167 }
10168 if (sr.executingStart > nextTime) {
10169 nextTime = sr.executingStart;
10170 }
10171 }
Dianne Hackborndd71fc82009-12-16 19:24:32 -080010172 if (timeout != null && mLruProcesses.contains(proc)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010173 Slog.w(TAG, "Timeout executing service: " + timeout);
Dianne Hackbornad5499d2010-03-29 18:08:45 -070010174 anrMessage = "Executing service " + timeout.shortName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010175 } else {
10176 Message msg = mHandler.obtainMessage(SERVICE_TIMEOUT_MSG);
10177 msg.obj = proc;
10178 mHandler.sendMessageAtTime(msg, nextTime+SERVICE_TIMEOUT);
10179 }
10180 }
Dianne Hackbornad5499d2010-03-29 18:08:45 -070010181
10182 if (anrMessage != null) {
10183 appNotResponding(proc, null, null, anrMessage);
10184 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010185 }
10186
10187 // =========================================================
Christopher Tate181fafa2009-05-14 11:12:14 -070010188 // BACKUP AND RESTORE
10189 // =========================================================
10190
10191 // Cause the target app to be launched if necessary and its backup agent
10192 // instantiated. The backup agent will invoke backupAgentCreated() on the
10193 // activity manager to announce its creation.
10194 public boolean bindBackupAgent(ApplicationInfo app, int backupMode) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010195 if (DEBUG_BACKUP) Slog.v(TAG, "startBackupAgent: app=" + app + " mode=" + backupMode);
Christopher Tate181fafa2009-05-14 11:12:14 -070010196 enforceCallingPermission("android.permission.BACKUP", "startBackupAgent");
10197
10198 synchronized(this) {
10199 // !!! TODO: currently no check here that we're already bound
10200 BatteryStatsImpl.Uid.Pkg.Serv ss = null;
10201 BatteryStatsImpl stats = mBatteryStatsService.getActiveStatistics();
10202 synchronized (stats) {
10203 ss = stats.getServiceStatsLocked(app.uid, app.packageName, app.name);
10204 }
10205
10206 BackupRecord r = new BackupRecord(ss, app, backupMode);
10207 ComponentName hostingName = new ComponentName(app.packageName, app.backupAgentName);
10208 // startProcessLocked() returns existing proc's record if it's already running
10209 ProcessRecord proc = startProcessLocked(app.processName, app,
Dianne Hackborn9acc0302009-08-25 00:27:12 -070010210 false, 0, "backup", hostingName, false);
Christopher Tate181fafa2009-05-14 11:12:14 -070010211 if (proc == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010212 Slog.e(TAG, "Unable to start backup agent process " + r);
Christopher Tate181fafa2009-05-14 11:12:14 -070010213 return false;
10214 }
10215
10216 r.app = proc;
10217 mBackupTarget = r;
10218 mBackupAppName = app.packageName;
10219
Christopher Tate6fa95972009-06-05 18:43:55 -070010220 // Try not to kill the process during backup
10221 updateOomAdjLocked(proc);
10222
Christopher Tate181fafa2009-05-14 11:12:14 -070010223 // If the process is already attached, schedule the creation of the backup agent now.
10224 // If it is not yet live, this will be done when it attaches to the framework.
10225 if (proc.thread != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010226 if (DEBUG_BACKUP) Slog.v(TAG, "Agent proc already running: " + proc);
Christopher Tate181fafa2009-05-14 11:12:14 -070010227 try {
10228 proc.thread.scheduleCreateBackupAgent(app, backupMode);
10229 } catch (RemoteException e) {
Christopher Tate436344a2009-09-30 16:17:37 -070010230 // Will time out on the backup manager side
Christopher Tate181fafa2009-05-14 11:12:14 -070010231 }
10232 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010233 if (DEBUG_BACKUP) Slog.v(TAG, "Agent proc not running, waiting for attach");
Christopher Tate181fafa2009-05-14 11:12:14 -070010234 }
10235 // Invariants: at this point, the target app process exists and the application
10236 // is either already running or in the process of coming up. mBackupTarget and
10237 // mBackupAppName describe the app, so that when it binds back to the AM we
10238 // know that it's scheduled for a backup-agent operation.
10239 }
10240
10241 return true;
10242 }
10243
10244 // A backup agent has just come up
10245 public void backupAgentCreated(String agentPackageName, IBinder agent) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010246 if (DEBUG_BACKUP) Slog.v(TAG, "backupAgentCreated: " + agentPackageName
Christopher Tate181fafa2009-05-14 11:12:14 -070010247 + " = " + agent);
10248
10249 synchronized(this) {
10250 if (!agentPackageName.equals(mBackupAppName)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010251 Slog.e(TAG, "Backup agent created for " + agentPackageName + " but not requested!");
Christopher Tate181fafa2009-05-14 11:12:14 -070010252 return;
10253 }
Dianne Hackborn06740692010-09-22 22:46:21 -070010254 }
Christopher Tate181fafa2009-05-14 11:12:14 -070010255
Dianne Hackborn06740692010-09-22 22:46:21 -070010256 long oldIdent = Binder.clearCallingIdentity();
10257 try {
10258 IBackupManager bm = IBackupManager.Stub.asInterface(
10259 ServiceManager.getService(Context.BACKUP_SERVICE));
10260 bm.agentConnected(agentPackageName, agent);
10261 } catch (RemoteException e) {
10262 // can't happen; the backup manager service is local
10263 } catch (Exception e) {
10264 Slog.w(TAG, "Exception trying to deliver BackupAgent binding: ");
10265 e.printStackTrace();
10266 } finally {
10267 Binder.restoreCallingIdentity(oldIdent);
Christopher Tate181fafa2009-05-14 11:12:14 -070010268 }
10269 }
10270
10271 // done with this agent
10272 public void unbindBackupAgent(ApplicationInfo appInfo) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010273 if (DEBUG_BACKUP) Slog.v(TAG, "unbindBackupAgent: " + appInfo);
Christopher Tate8a27f922009-06-26 11:49:18 -070010274 if (appInfo == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010275 Slog.w(TAG, "unbind backup agent for null app");
Christopher Tate8a27f922009-06-26 11:49:18 -070010276 return;
10277 }
Christopher Tate181fafa2009-05-14 11:12:14 -070010278
10279 synchronized(this) {
Christopher Tate8a27f922009-06-26 11:49:18 -070010280 if (mBackupAppName == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010281 Slog.w(TAG, "Unbinding backup agent with no active backup");
Christopher Tate8a27f922009-06-26 11:49:18 -070010282 return;
10283 }
10284
Christopher Tate181fafa2009-05-14 11:12:14 -070010285 if (!mBackupAppName.equals(appInfo.packageName)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010286 Slog.e(TAG, "Unbind of " + appInfo + " but is not the current backup target");
Christopher Tate181fafa2009-05-14 11:12:14 -070010287 return;
10288 }
10289
Christopher Tate6fa95972009-06-05 18:43:55 -070010290 ProcessRecord proc = mBackupTarget.app;
10291 mBackupTarget = null;
10292 mBackupAppName = null;
10293
10294 // Not backing this app up any more; reset its OOM adjustment
10295 updateOomAdjLocked(proc);
10296
Christopher Tatec7b31e32009-06-10 15:49:30 -070010297 // If the app crashed during backup, 'thread' will be null here
10298 if (proc.thread != null) {
10299 try {
10300 proc.thread.scheduleDestroyBackupAgent(appInfo);
10301 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010302 Slog.e(TAG, "Exception when unbinding backup agent:");
Christopher Tatec7b31e32009-06-10 15:49:30 -070010303 e.printStackTrace();
10304 }
Christopher Tate181fafa2009-05-14 11:12:14 -070010305 }
Christopher Tate181fafa2009-05-14 11:12:14 -070010306 }
10307 }
10308 // =========================================================
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010309 // BROADCASTS
10310 // =========================================================
10311
Josh Bartel7f208742010-02-25 11:01:44 -060010312 private final List getStickiesLocked(String action, IntentFilter filter,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010313 List cur) {
10314 final ContentResolver resolver = mContext.getContentResolver();
10315 final ArrayList<Intent> list = mStickyBroadcasts.get(action);
10316 if (list == null) {
10317 return cur;
10318 }
10319 int N = list.size();
10320 for (int i=0; i<N; i++) {
10321 Intent intent = list.get(i);
10322 if (filter.match(resolver, intent, true, TAG) >= 0) {
10323 if (cur == null) {
10324 cur = new ArrayList<Intent>();
10325 }
10326 cur.add(intent);
10327 }
10328 }
10329 return cur;
10330 }
10331
10332 private final void scheduleBroadcastsLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010333 if (DEBUG_BROADCAST) Slog.v(TAG, "Schedule broadcasts: current="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010334 + mBroadcastsScheduled);
10335
10336 if (mBroadcastsScheduled) {
10337 return;
10338 }
10339 mHandler.sendEmptyMessage(BROADCAST_INTENT_MSG);
10340 mBroadcastsScheduled = true;
10341 }
10342
10343 public Intent registerReceiver(IApplicationThread caller,
10344 IIntentReceiver receiver, IntentFilter filter, String permission) {
10345 synchronized(this) {
10346 ProcessRecord callerApp = null;
10347 if (caller != null) {
10348 callerApp = getRecordForAppLocked(caller);
10349 if (callerApp == null) {
10350 throw new SecurityException(
10351 "Unable to find app for caller " + caller
10352 + " (pid=" + Binder.getCallingPid()
10353 + ") when registering receiver " + receiver);
10354 }
10355 }
10356
10357 List allSticky = null;
10358
10359 // Look for any matching sticky broadcasts...
10360 Iterator actions = filter.actionsIterator();
10361 if (actions != null) {
10362 while (actions.hasNext()) {
10363 String action = (String)actions.next();
Josh Bartel7f208742010-02-25 11:01:44 -060010364 allSticky = getStickiesLocked(action, filter, allSticky);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010365 }
10366 } else {
Josh Bartel7f208742010-02-25 11:01:44 -060010367 allSticky = getStickiesLocked(null, filter, allSticky);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010368 }
10369
10370 // The first sticky in the list is returned directly back to
10371 // the client.
10372 Intent sticky = allSticky != null ? (Intent)allSticky.get(0) : null;
10373
Joe Onorato8a9b2202010-02-26 18:56:32 -080010374 if (DEBUG_BROADCAST) Slog.v(TAG, "Register receiver " + filter
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010375 + ": " + sticky);
10376
10377 if (receiver == null) {
10378 return sticky;
10379 }
10380
10381 ReceiverList rl
10382 = (ReceiverList)mRegisteredReceivers.get(receiver.asBinder());
10383 if (rl == null) {
10384 rl = new ReceiverList(this, callerApp,
10385 Binder.getCallingPid(),
10386 Binder.getCallingUid(), receiver);
10387 if (rl.app != null) {
10388 rl.app.receivers.add(rl);
10389 } else {
10390 try {
10391 receiver.asBinder().linkToDeath(rl, 0);
10392 } catch (RemoteException e) {
10393 return sticky;
10394 }
10395 rl.linkedToDeath = true;
10396 }
10397 mRegisteredReceivers.put(receiver.asBinder(), rl);
10398 }
10399 BroadcastFilter bf = new BroadcastFilter(filter, rl, permission);
10400 rl.add(bf);
10401 if (!bf.debugCheck()) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010402 Slog.w(TAG, "==> For Dynamic broadast");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010403 }
10404 mReceiverResolver.addFilter(bf);
10405
10406 // Enqueue broadcasts for all existing stickies that match
10407 // this filter.
10408 if (allSticky != null) {
10409 ArrayList receivers = new ArrayList();
10410 receivers.add(bf);
10411
10412 int N = allSticky.size();
10413 for (int i=0; i<N; i++) {
10414 Intent intent = (Intent)allSticky.get(i);
10415 BroadcastRecord r = new BroadcastRecord(intent, null,
10416 null, -1, -1, null, receivers, null, 0, null, null,
Dianne Hackborn12527f92009-11-11 17:39:50 -080010417 false, true, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010418 if (mParallelBroadcasts.size() == 0) {
10419 scheduleBroadcastsLocked();
10420 }
10421 mParallelBroadcasts.add(r);
10422 }
10423 }
10424
10425 return sticky;
10426 }
10427 }
10428
10429 public void unregisterReceiver(IIntentReceiver receiver) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010430 if (DEBUG_BROADCAST) Slog.v(TAG, "Unregister receiver: " + receiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010431
10432 boolean doNext = false;
10433
10434 synchronized(this) {
10435 ReceiverList rl
10436 = (ReceiverList)mRegisteredReceivers.get(receiver.asBinder());
10437 if (rl != null) {
10438 if (rl.curBroadcast != null) {
10439 BroadcastRecord r = rl.curBroadcast;
10440 doNext = finishReceiverLocked(
10441 receiver.asBinder(), r.resultCode, r.resultData,
10442 r.resultExtras, r.resultAbort, true);
10443 }
10444
10445 if (rl.app != null) {
10446 rl.app.receivers.remove(rl);
10447 }
10448 removeReceiverLocked(rl);
10449 if (rl.linkedToDeath) {
10450 rl.linkedToDeath = false;
10451 rl.receiver.asBinder().unlinkToDeath(rl, 0);
10452 }
10453 }
10454 }
10455
10456 if (!doNext) {
10457 return;
10458 }
10459
10460 final long origId = Binder.clearCallingIdentity();
10461 processNextBroadcast(false);
10462 trimApplications();
10463 Binder.restoreCallingIdentity(origId);
10464 }
10465
10466 void removeReceiverLocked(ReceiverList rl) {
10467 mRegisteredReceivers.remove(rl.receiver.asBinder());
10468 int N = rl.size();
10469 for (int i=0; i<N; i++) {
10470 mReceiverResolver.removeFilter(rl.get(i));
10471 }
10472 }
10473
Dianne Hackborn4416c3d2010-05-04 17:22:49 -070010474 private final void sendPackageBroadcastLocked(int cmd, String[] packages) {
10475 for (int i = mLruProcesses.size() - 1 ; i >= 0 ; i--) {
10476 ProcessRecord r = mLruProcesses.get(i);
10477 if (r.thread != null) {
10478 try {
10479 r.thread.dispatchPackageBroadcast(cmd, packages);
10480 } catch (RemoteException ex) {
10481 }
10482 }
10483 }
10484 }
10485
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010486 private final int broadcastIntentLocked(ProcessRecord callerApp,
10487 String callerPackage, Intent intent, String resolvedType,
10488 IIntentReceiver resultTo, int resultCode, String resultData,
10489 Bundle map, String requiredPermission,
10490 boolean ordered, boolean sticky, int callingPid, int callingUid) {
10491 intent = new Intent(intent);
10492
Joe Onorato8a9b2202010-02-26 18:56:32 -080010493 if (DEBUG_BROADCAST_LIGHT) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010494 TAG, (sticky ? "Broadcast sticky: ": "Broadcast: ") + intent
10495 + " ordered=" + ordered);
10496 if ((resultTo != null) && !ordered) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010497 Slog.w(TAG, "Broadcast " + intent + " not ordered but result callback requested!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010498 }
10499
10500 // Handle special intents: if this broadcast is from the package
10501 // manager about a package being removed, we need to remove all of
10502 // its activities from the history stack.
10503 final boolean uidRemoved = intent.ACTION_UID_REMOVED.equals(
10504 intent.getAction());
10505 if (intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())
10506 || intent.ACTION_PACKAGE_CHANGED.equals(intent.getAction())
Suchi Amalapurapub56ae202010-02-04 22:51:07 -080010507 || Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(intent.getAction())
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010508 || uidRemoved) {
10509 if (checkComponentPermission(
10510 android.Manifest.permission.BROADCAST_PACKAGE_REMOVED,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -080010511 callingPid, callingUid, -1, true)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010512 == PackageManager.PERMISSION_GRANTED) {
10513 if (uidRemoved) {
10514 final Bundle intentExtras = intent.getExtras();
10515 final int uid = intentExtras != null
10516 ? intentExtras.getInt(Intent.EXTRA_UID) : -1;
10517 if (uid >= 0) {
10518 BatteryStatsImpl bs = mBatteryStatsService.getActiveStatistics();
10519 synchronized (bs) {
10520 bs.removeUidStatsLocked(uid);
10521 }
10522 }
10523 } else {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -080010524 // If resources are unvailble just force stop all
10525 // those packages and flush the attribute cache as well.
Suchi Amalapurapub56ae202010-02-04 22:51:07 -080010526 if (Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(intent.getAction())) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -080010527 String list[] = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
10528 if (list != null && (list.length > 0)) {
10529 for (String pkg : list) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080010530 forceStopPackageLocked(pkg, -1, false, true, true);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -080010531 }
Dianne Hackborn4416c3d2010-05-04 17:22:49 -070010532 sendPackageBroadcastLocked(
10533 IApplicationThread.EXTERNAL_STORAGE_UNAVAILABLE, list);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -080010534 }
10535 } else {
10536 Uri data = intent.getData();
10537 String ssp;
10538 if (data != null && (ssp=data.getSchemeSpecificPart()) != null) {
10539 if (!intent.getBooleanExtra(Intent.EXTRA_DONT_KILL_APP, false)) {
10540 forceStopPackageLocked(ssp,
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080010541 intent.getIntExtra(Intent.EXTRA_UID, -1), false, true, true);
Dianne Hackbornde7faf62009-06-30 13:27:30 -070010542 }
Dianne Hackborn4416c3d2010-05-04 17:22:49 -070010543 if (intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())) {
10544 sendPackageBroadcastLocked(IApplicationThread.PACKAGE_REMOVED,
10545 new String[] {ssp});
10546 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010547 }
10548 }
10549 }
10550 } else {
10551 String msg = "Permission Denial: " + intent.getAction()
10552 + " broadcast from " + callerPackage + " (pid=" + callingPid
10553 + ", uid=" + callingUid + ")"
10554 + " requires "
10555 + android.Manifest.permission.BROADCAST_PACKAGE_REMOVED;
Joe Onorato8a9b2202010-02-26 18:56:32 -080010556 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010557 throw new SecurityException(msg);
10558 }
10559 }
10560
10561 /*
10562 * If this is the time zone changed action, queue up a message that will reset the timezone
10563 * of all currently running processes. This message will get queued up before the broadcast
10564 * happens.
10565 */
10566 if (intent.ACTION_TIMEZONE_CHANGED.equals(intent.getAction())) {
10567 mHandler.sendEmptyMessage(UPDATE_TIME_ZONE);
10568 }
10569
Robert Greenwalt03595d02010-11-02 14:08:23 -070010570 if (intent.ACTION_CLEAR_DNS_CACHE.equals(intent.getAction())) {
10571 mHandler.sendEmptyMessage(CLEAR_DNS_CACHE);
10572 }
10573
Robert Greenwalt434203a2010-10-11 16:00:27 -070010574 if (Proxy.PROXY_CHANGE_ACTION.equals(intent.getAction())) {
10575 ProxyProperties proxy = intent.getParcelableExtra("proxy");
10576 mHandler.sendMessage(mHandler.obtainMessage(UPDATE_HTTP_PROXY, proxy));
10577 }
10578
Dianne Hackborn854060af2009-07-09 18:14:31 -070010579 /*
10580 * Prevent non-system code (defined here to be non-persistent
10581 * processes) from sending protected broadcasts.
10582 */
10583 if (callingUid == Process.SYSTEM_UID || callingUid == Process.PHONE_UID
10584 || callingUid == Process.SHELL_UID || callingUid == 0) {
10585 // Always okay.
10586 } else if (callerApp == null || !callerApp.persistent) {
10587 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070010588 if (AppGlobals.getPackageManager().isProtectedBroadcast(
Dianne Hackborn854060af2009-07-09 18:14:31 -070010589 intent.getAction())) {
10590 String msg = "Permission Denial: not allowed to send broadcast "
10591 + intent.getAction() + " from pid="
10592 + callingPid + ", uid=" + callingUid;
Joe Onorato8a9b2202010-02-26 18:56:32 -080010593 Slog.w(TAG, msg);
Dianne Hackborn854060af2009-07-09 18:14:31 -070010594 throw new SecurityException(msg);
10595 }
10596 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010597 Slog.w(TAG, "Remote exception", e);
Dianne Hackborn854060af2009-07-09 18:14:31 -070010598 return BROADCAST_SUCCESS;
10599 }
10600 }
10601
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010602 // Add to the sticky list if requested.
10603 if (sticky) {
10604 if (checkPermission(android.Manifest.permission.BROADCAST_STICKY,
10605 callingPid, callingUid)
10606 != PackageManager.PERMISSION_GRANTED) {
10607 String msg = "Permission Denial: broadcastIntent() requesting a sticky broadcast from pid="
10608 + callingPid + ", uid=" + callingUid
10609 + " requires " + android.Manifest.permission.BROADCAST_STICKY;
Joe Onorato8a9b2202010-02-26 18:56:32 -080010610 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010611 throw new SecurityException(msg);
10612 }
10613 if (requiredPermission != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010614 Slog.w(TAG, "Can't broadcast sticky intent " + intent
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010615 + " and enforce permission " + requiredPermission);
10616 return BROADCAST_STICKY_CANT_HAVE_PERMISSION;
10617 }
10618 if (intent.getComponent() != null) {
10619 throw new SecurityException(
10620 "Sticky broadcasts can't target a specific component");
10621 }
10622 ArrayList<Intent> list = mStickyBroadcasts.get(intent.getAction());
10623 if (list == null) {
10624 list = new ArrayList<Intent>();
10625 mStickyBroadcasts.put(intent.getAction(), list);
10626 }
10627 int N = list.size();
10628 int i;
10629 for (i=0; i<N; i++) {
10630 if (intent.filterEquals(list.get(i))) {
10631 // This sticky already exists, replace it.
10632 list.set(i, new Intent(intent));
10633 break;
10634 }
10635 }
10636 if (i >= N) {
10637 list.add(new Intent(intent));
10638 }
10639 }
10640
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010641 // Figure out who all will receive this broadcast.
10642 List receivers = null;
10643 List<BroadcastFilter> registeredReceivers = null;
10644 try {
10645 if (intent.getComponent() != null) {
10646 // Broadcast is going to one specific receiver class...
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070010647 ActivityInfo ai = AppGlobals.getPackageManager().
Dianne Hackborn1655be42009-05-08 14:29:01 -070010648 getReceiverInfo(intent.getComponent(), STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010649 if (ai != null) {
10650 receivers = new ArrayList();
10651 ResolveInfo ri = new ResolveInfo();
10652 ri.activityInfo = ai;
10653 receivers.add(ri);
10654 }
10655 } else {
10656 // Need to resolve the intent to interested receivers...
10657 if ((intent.getFlags()&Intent.FLAG_RECEIVER_REGISTERED_ONLY)
10658 == 0) {
10659 receivers =
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070010660 AppGlobals.getPackageManager().queryIntentReceivers(
Dianne Hackborn1655be42009-05-08 14:29:01 -070010661 intent, resolvedType, STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010662 }
Mihai Preda074edef2009-05-18 17:13:31 +020010663 registeredReceivers = mReceiverResolver.queryIntent(intent, resolvedType, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010664 }
10665 } catch (RemoteException ex) {
10666 // pm is in same process, this will never happen.
10667 }
10668
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080010669 final boolean replacePending =
10670 (intent.getFlags()&Intent.FLAG_RECEIVER_REPLACE_PENDING) != 0;
10671
Joe Onorato8a9b2202010-02-26 18:56:32 -080010672 if (DEBUG_BROADCAST) Slog.v(TAG, "Enqueing broadcast: " + intent.getAction()
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080010673 + " replacePending=" + replacePending);
10674
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010675 int NR = registeredReceivers != null ? registeredReceivers.size() : 0;
10676 if (!ordered && NR > 0) {
10677 // If we are not serializing this broadcast, then send the
10678 // registered receivers separately so they don't wait for the
10679 // components to be launched.
10680 BroadcastRecord r = new BroadcastRecord(intent, callerApp,
10681 callerPackage, callingPid, callingUid, requiredPermission,
10682 registeredReceivers, resultTo, resultCode, resultData, map,
Dianne Hackborn12527f92009-11-11 17:39:50 -080010683 ordered, sticky, false);
Joe Onorato8a9b2202010-02-26 18:56:32 -080010684 if (DEBUG_BROADCAST) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010685 TAG, "Enqueueing parallel broadcast " + r
10686 + ": prev had " + mParallelBroadcasts.size());
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080010687 boolean replaced = false;
10688 if (replacePending) {
10689 for (int i=mParallelBroadcasts.size()-1; i>=0; i--) {
10690 if (intent.filterEquals(mParallelBroadcasts.get(i).intent)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010691 if (DEBUG_BROADCAST) Slog.v(TAG,
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080010692 "***** DROPPING PARALLEL: " + intent);
10693 mParallelBroadcasts.set(i, r);
10694 replaced = true;
10695 break;
10696 }
10697 }
10698 }
10699 if (!replaced) {
10700 mParallelBroadcasts.add(r);
10701 scheduleBroadcastsLocked();
10702 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010703 registeredReceivers = null;
10704 NR = 0;
10705 }
10706
10707 // Merge into one list.
10708 int ir = 0;
10709 if (receivers != null) {
10710 // A special case for PACKAGE_ADDED: do not allow the package
10711 // being added to see this broadcast. This prevents them from
10712 // using this as a back door to get run as soon as they are
10713 // installed. Maybe in the future we want to have a special install
10714 // broadcast or such for apps, but we'd like to deliberately make
10715 // this decision.
Suchi Amalapurapu08675a32010-01-28 09:57:30 -080010716 String skipPackages[] = null;
10717 if (intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())
10718 || intent.ACTION_PACKAGE_RESTARTED.equals(intent.getAction())
10719 || intent.ACTION_PACKAGE_DATA_CLEARED.equals(intent.getAction())) {
10720 Uri data = intent.getData();
10721 if (data != null) {
10722 String pkgName = data.getSchemeSpecificPart();
10723 if (pkgName != null) {
10724 skipPackages = new String[] { pkgName };
10725 }
10726 }
Suchi Amalapurapub56ae202010-02-04 22:51:07 -080010727 } else if (intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(intent.getAction())) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -080010728 skipPackages = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
The Android Open Source Project10592532009-03-18 17:39:46 -070010729 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -080010730 if (skipPackages != null && (skipPackages.length > 0)) {
10731 for (String skipPackage : skipPackages) {
10732 if (skipPackage != null) {
10733 int NT = receivers.size();
10734 for (int it=0; it<NT; it++) {
10735 ResolveInfo curt = (ResolveInfo)receivers.get(it);
10736 if (curt.activityInfo.packageName.equals(skipPackage)) {
10737 receivers.remove(it);
10738 it--;
10739 NT--;
10740 }
10741 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010742 }
10743 }
10744 }
10745
10746 int NT = receivers != null ? receivers.size() : 0;
10747 int it = 0;
10748 ResolveInfo curt = null;
10749 BroadcastFilter curr = null;
10750 while (it < NT && ir < NR) {
10751 if (curt == null) {
10752 curt = (ResolveInfo)receivers.get(it);
10753 }
10754 if (curr == null) {
10755 curr = registeredReceivers.get(ir);
10756 }
10757 if (curr.getPriority() >= curt.priority) {
10758 // Insert this broadcast record into the final list.
10759 receivers.add(it, curr);
10760 ir++;
10761 curr = null;
10762 it++;
10763 NT++;
10764 } else {
10765 // Skip to the next ResolveInfo in the final list.
10766 it++;
10767 curt = null;
10768 }
10769 }
10770 }
10771 while (ir < NR) {
10772 if (receivers == null) {
10773 receivers = new ArrayList();
10774 }
10775 receivers.add(registeredReceivers.get(ir));
10776 ir++;
10777 }
10778
10779 if ((receivers != null && receivers.size() > 0)
10780 || resultTo != null) {
10781 BroadcastRecord r = new BroadcastRecord(intent, callerApp,
10782 callerPackage, callingPid, callingUid, requiredPermission,
Dianne Hackborn12527f92009-11-11 17:39:50 -080010783 receivers, resultTo, resultCode, resultData, map, ordered,
10784 sticky, false);
Joe Onorato8a9b2202010-02-26 18:56:32 -080010785 if (DEBUG_BROADCAST) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010786 TAG, "Enqueueing ordered broadcast " + r
10787 + ": prev had " + mOrderedBroadcasts.size());
10788 if (DEBUG_BROADCAST) {
10789 int seq = r.intent.getIntExtra("seq", -1);
Joe Onorato8a9b2202010-02-26 18:56:32 -080010790 Slog.i(TAG, "Enqueueing broadcast " + r.intent.getAction() + " seq=" + seq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010791 }
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080010792 boolean replaced = false;
10793 if (replacePending) {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070010794 for (int i=mOrderedBroadcasts.size()-1; i>0; i--) {
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080010795 if (intent.filterEquals(mOrderedBroadcasts.get(i).intent)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010796 if (DEBUG_BROADCAST) Slog.v(TAG,
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080010797 "***** DROPPING ORDERED: " + intent);
10798 mOrderedBroadcasts.set(i, r);
10799 replaced = true;
10800 break;
10801 }
10802 }
10803 }
10804 if (!replaced) {
10805 mOrderedBroadcasts.add(r);
10806 scheduleBroadcastsLocked();
10807 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010808 }
10809
10810 return BROADCAST_SUCCESS;
10811 }
10812
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070010813 final Intent verifyBroadcastLocked(Intent intent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010814 // Refuse possible leaked file descriptors
10815 if (intent != null && intent.hasFileDescriptors() == true) {
10816 throw new IllegalArgumentException("File descriptors passed in Intent");
10817 }
10818
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070010819 int flags = intent.getFlags();
10820
10821 if (!mProcessesReady) {
10822 // if the caller really truly claims to know what they're doing, go
10823 // ahead and allow the broadcast without launching any receivers
10824 if ((flags&Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT) != 0) {
10825 intent = new Intent(intent);
10826 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
10827 } else if ((flags&Intent.FLAG_RECEIVER_REGISTERED_ONLY) == 0) {
10828 Slog.e(TAG, "Attempt to launch receivers of broadcast intent " + intent
10829 + " before boot completion");
10830 throw new IllegalStateException("Cannot broadcast before boot completed");
10831 }
10832 }
10833
10834 if ((flags&Intent.FLAG_RECEIVER_BOOT_UPGRADE) != 0) {
10835 throw new IllegalArgumentException(
10836 "Can't use FLAG_RECEIVER_BOOT_UPGRADE here");
10837 }
10838
10839 return intent;
10840 }
10841
10842 public final int broadcastIntent(IApplicationThread caller,
10843 Intent intent, String resolvedType, IIntentReceiver resultTo,
10844 int resultCode, String resultData, Bundle map,
10845 String requiredPermission, boolean serialized, boolean sticky) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010846 synchronized(this) {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070010847 intent = verifyBroadcastLocked(intent);
Dianne Hackborn9acc0302009-08-25 00:27:12 -070010848
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010849 final ProcessRecord callerApp = getRecordForAppLocked(caller);
10850 final int callingPid = Binder.getCallingPid();
10851 final int callingUid = Binder.getCallingUid();
10852 final long origId = Binder.clearCallingIdentity();
10853 int res = broadcastIntentLocked(callerApp,
10854 callerApp != null ? callerApp.info.packageName : null,
10855 intent, resolvedType, resultTo,
10856 resultCode, resultData, map, requiredPermission, serialized,
10857 sticky, callingPid, callingUid);
10858 Binder.restoreCallingIdentity(origId);
10859 return res;
10860 }
10861 }
10862
10863 int broadcastIntentInPackage(String packageName, int uid,
10864 Intent intent, String resolvedType, IIntentReceiver resultTo,
10865 int resultCode, String resultData, Bundle map,
10866 String requiredPermission, boolean serialized, boolean sticky) {
10867 synchronized(this) {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070010868 intent = verifyBroadcastLocked(intent);
10869
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010870 final long origId = Binder.clearCallingIdentity();
10871 int res = broadcastIntentLocked(null, packageName, intent, resolvedType,
10872 resultTo, resultCode, resultData, map, requiredPermission,
10873 serialized, sticky, -1, uid);
10874 Binder.restoreCallingIdentity(origId);
10875 return res;
10876 }
10877 }
10878
10879 public final void unbroadcastIntent(IApplicationThread caller,
10880 Intent intent) {
10881 // Refuse possible leaked file descriptors
10882 if (intent != null && intent.hasFileDescriptors() == true) {
10883 throw new IllegalArgumentException("File descriptors passed in Intent");
10884 }
10885
10886 synchronized(this) {
10887 if (checkCallingPermission(android.Manifest.permission.BROADCAST_STICKY)
10888 != PackageManager.PERMISSION_GRANTED) {
10889 String msg = "Permission Denial: unbroadcastIntent() from pid="
10890 + Binder.getCallingPid()
10891 + ", uid=" + Binder.getCallingUid()
10892 + " requires " + android.Manifest.permission.BROADCAST_STICKY;
Joe Onorato8a9b2202010-02-26 18:56:32 -080010893 Slog.w(TAG, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010894 throw new SecurityException(msg);
10895 }
10896 ArrayList<Intent> list = mStickyBroadcasts.get(intent.getAction());
10897 if (list != null) {
10898 int N = list.size();
10899 int i;
10900 for (i=0; i<N; i++) {
10901 if (intent.filterEquals(list.get(i))) {
10902 list.remove(i);
10903 break;
10904 }
10905 }
10906 }
10907 }
10908 }
10909
10910 private final boolean finishReceiverLocked(IBinder receiver, int resultCode,
10911 String resultData, Bundle resultExtras, boolean resultAbort,
10912 boolean explicit) {
10913 if (mOrderedBroadcasts.size() == 0) {
10914 if (explicit) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010915 Slog.w(TAG, "finishReceiver called but no pending broadcasts");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010916 }
10917 return false;
10918 }
10919 BroadcastRecord r = mOrderedBroadcasts.get(0);
10920 if (r.receiver == null) {
10921 if (explicit) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010922 Slog.w(TAG, "finishReceiver called but none active");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010923 }
10924 return false;
10925 }
10926 if (r.receiver != receiver) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010927 Slog.w(TAG, "finishReceiver called but active receiver is different");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010928 return false;
10929 }
10930 int state = r.state;
10931 r.state = r.IDLE;
10932 if (state == r.IDLE) {
10933 if (explicit) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010934 Slog.w(TAG, "finishReceiver called but state is IDLE");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010935 }
10936 }
10937 r.receiver = null;
10938 r.intent.setComponent(null);
10939 if (r.curApp != null) {
10940 r.curApp.curReceiver = null;
10941 }
10942 if (r.curFilter != null) {
10943 r.curFilter.receiverList.curBroadcast = null;
10944 }
10945 r.curFilter = null;
10946 r.curApp = null;
10947 r.curComponent = null;
10948 r.curReceiver = null;
10949 mPendingBroadcast = null;
10950
10951 r.resultCode = resultCode;
10952 r.resultData = resultData;
10953 r.resultExtras = resultExtras;
10954 r.resultAbort = resultAbort;
10955
10956 // We will process the next receiver right now if this is finishing
10957 // an app receiver (which is always asynchronous) or after we have
10958 // come back from calling a receiver.
10959 return state == BroadcastRecord.APP_RECEIVE
10960 || state == BroadcastRecord.CALL_DONE_RECEIVE;
10961 }
10962
10963 public void finishReceiver(IBinder who, int resultCode, String resultData,
10964 Bundle resultExtras, boolean resultAbort) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080010965 if (DEBUG_BROADCAST) Slog.v(TAG, "Finish receiver: " + who);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010966
10967 // Refuse possible leaked file descriptors
10968 if (resultExtras != null && resultExtras.hasFileDescriptors()) {
10969 throw new IllegalArgumentException("File descriptors passed in Bundle");
10970 }
10971
10972 boolean doNext;
10973
10974 final long origId = Binder.clearCallingIdentity();
10975
10976 synchronized(this) {
10977 doNext = finishReceiverLocked(
10978 who, resultCode, resultData, resultExtras, resultAbort, true);
10979 }
10980
10981 if (doNext) {
10982 processNextBroadcast(false);
10983 }
10984 trimApplications();
10985
10986 Binder.restoreCallingIdentity(origId);
10987 }
10988
Jeff Brown4d94a762010-09-23 11:33:28 -070010989 private final void logBroadcastReceiverDiscardLocked(BroadcastRecord r) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010990 if (r.nextReceiver > 0) {
10991 Object curReceiver = r.receivers.get(r.nextReceiver-1);
10992 if (curReceiver instanceof BroadcastFilter) {
10993 BroadcastFilter bf = (BroadcastFilter) curReceiver;
Doug Zongker2bec3d42009-12-04 12:52:44 -080010994 EventLog.writeEvent(EventLogTags.AM_BROADCAST_DISCARD_FILTER,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010995 System.identityHashCode(r),
10996 r.intent.getAction(),
10997 r.nextReceiver - 1,
10998 System.identityHashCode(bf));
10999 } else {
Doug Zongker2bec3d42009-12-04 12:52:44 -080011000 EventLog.writeEvent(EventLogTags.AM_BROADCAST_DISCARD_APP,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011001 System.identityHashCode(r),
11002 r.intent.getAction(),
11003 r.nextReceiver - 1,
11004 ((ResolveInfo)curReceiver).toString());
11005 }
11006 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011007 Slog.w(TAG, "Discarding broadcast before first receiver is invoked: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011008 + r);
Doug Zongker2bec3d42009-12-04 12:52:44 -080011009 EventLog.writeEvent(EventLogTags.AM_BROADCAST_DISCARD_APP,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011010 System.identityHashCode(r),
11011 r.intent.getAction(),
11012 r.nextReceiver,
11013 "NONE");
11014 }
11015 }
11016
Jeff Brown4d94a762010-09-23 11:33:28 -070011017 private final void setBroadcastTimeoutLocked(long timeoutTime) {
11018 if (! mPendingBroadcastTimeoutMessage) {
11019 Message msg = mHandler.obtainMessage(BROADCAST_TIMEOUT_MSG);
11020 mHandler.sendMessageAtTime(msg, timeoutTime);
11021 mPendingBroadcastTimeoutMessage = true;
11022 }
11023 }
11024
11025 private final void cancelBroadcastTimeoutLocked() {
11026 if (mPendingBroadcastTimeoutMessage) {
11027 mHandler.removeMessages(BROADCAST_TIMEOUT_MSG);
11028 mPendingBroadcastTimeoutMessage = false;
11029 }
11030 }
11031
11032 private final void broadcastTimeoutLocked(boolean fromMsg) {
11033 if (fromMsg) {
11034 mPendingBroadcastTimeoutMessage = false;
11035 }
11036
11037 if (mOrderedBroadcasts.size() == 0) {
11038 return;
11039 }
11040
11041 long now = SystemClock.uptimeMillis();
11042 BroadcastRecord r = mOrderedBroadcasts.get(0);
11043 if (fromMsg) {
11044 if (mDidDexOpt) {
11045 // Delay timeouts until dexopt finishes.
11046 mDidDexOpt = false;
11047 long timeoutTime = SystemClock.uptimeMillis() + BROADCAST_TIMEOUT;
11048 setBroadcastTimeoutLocked(timeoutTime);
11049 return;
11050 }
11051 if (! mProcessesReady) {
11052 // Only process broadcast timeouts if the system is ready. That way
11053 // PRE_BOOT_COMPLETED broadcasts can't timeout as they are intended
11054 // to do heavy lifting for system up.
11055 return;
11056 }
11057
11058 long timeoutTime = r.receiverTime + BROADCAST_TIMEOUT;
11059 if (timeoutTime > now) {
11060 // We can observe premature timeouts because we do not cancel and reset the
11061 // broadcast timeout message after each receiver finishes. Instead, we set up
11062 // an initial timeout then kick it down the road a little further as needed
11063 // when it expires.
11064 if (DEBUG_BROADCAST) Slog.v(TAG,
11065 "Premature timeout @ " + now + ": resetting BROADCAST_TIMEOUT_MSG for "
11066 + timeoutTime);
11067 setBroadcastTimeoutLocked(timeoutTime);
11068 return;
11069 }
11070 }
11071
11072 Slog.w(TAG, "Timeout of broadcast " + r + " - receiver=" + r.receiver
11073 + ", started " + (now - r.receiverTime) + "ms ago");
11074 r.receiverTime = now;
11075 r.anrCount++;
11076
11077 // Current receiver has passed its expiration date.
11078 if (r.nextReceiver <= 0) {
11079 Slog.w(TAG, "Timeout on receiver with nextReceiver <= 0");
11080 return;
11081 }
11082
Dianne Hackbornad5499d2010-03-29 18:08:45 -070011083 ProcessRecord app = null;
11084 String anrMessage = null;
11085
Jeff Brown4d94a762010-09-23 11:33:28 -070011086 Object curReceiver = r.receivers.get(r.nextReceiver-1);
11087 Slog.w(TAG, "Receiver during timeout: " + curReceiver);
11088 logBroadcastReceiverDiscardLocked(r);
11089 if (curReceiver instanceof BroadcastFilter) {
11090 BroadcastFilter bf = (BroadcastFilter)curReceiver;
11091 if (bf.receiverList.pid != 0
11092 && bf.receiverList.pid != MY_PID) {
11093 synchronized (this.mPidsSelfLocked) {
11094 app = this.mPidsSelfLocked.get(
11095 bf.receiverList.pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011096 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011097 }
Jeff Brown4d94a762010-09-23 11:33:28 -070011098 } else {
11099 app = r.curApp;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011100 }
Dianne Hackbornad5499d2010-03-29 18:08:45 -070011101
Jeff Brown4d94a762010-09-23 11:33:28 -070011102 if (app != null) {
11103 anrMessage = "Broadcast of " + r.intent.toString();
11104 }
11105
11106 if (mPendingBroadcast == r) {
11107 mPendingBroadcast = null;
11108 }
11109
11110 // Move on to the next receiver.
11111 finishReceiverLocked(r.receiver, r.resultCode, r.resultData,
11112 r.resultExtras, r.resultAbort, true);
11113 scheduleBroadcastsLocked();
11114
Dianne Hackbornad5499d2010-03-29 18:08:45 -070011115 if (anrMessage != null) {
Jeff Brown4d94a762010-09-23 11:33:28 -070011116 // Post the ANR to the handler since we do not want to process ANRs while
11117 // potentially holding our lock.
11118 mHandler.post(new AppNotResponding(app, anrMessage));
Dianne Hackbornad5499d2010-03-29 18:08:45 -070011119 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011120 }
11121
11122 private final void processCurBroadcastLocked(BroadcastRecord r,
11123 ProcessRecord app) throws RemoteException {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011124 if (DEBUG_BROADCAST) Slog.v(TAG,
11125 "Process cur broadcast " + r + " for app " + app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011126 if (app.thread == null) {
11127 throw new RemoteException();
11128 }
11129 r.receiver = app.thread.asBinder();
11130 r.curApp = app;
11131 app.curReceiver = r;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011132 updateLruProcessLocked(app, true, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011133
11134 // Tell the application to launch this receiver.
11135 r.intent.setComponent(r.curComponent);
11136
11137 boolean started = false;
11138 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011139 if (DEBUG_BROADCAST_LIGHT) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011140 "Delivering to component " + r.curComponent
11141 + ": " + r);
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -070011142 ensurePackageDexOpt(r.intent.getComponent().getPackageName());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011143 app.thread.scheduleReceiver(new Intent(r.intent), r.curReceiver,
11144 r.resultCode, r.resultData, r.resultExtras, r.ordered);
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011145 if (DEBUG_BROADCAST) Slog.v(TAG,
11146 "Process cur broadcast " + r + " DELIVERED for app " + app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011147 started = true;
11148 } finally {
11149 if (!started) {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011150 if (DEBUG_BROADCAST) Slog.v(TAG,
11151 "Process cur broadcast " + r + ": NOT STARTED!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011152 r.receiver = null;
11153 r.curApp = null;
11154 app.curReceiver = null;
11155 }
11156 }
11157
11158 }
11159
Jeff Brown4d94a762010-09-23 11:33:28 -070011160 static void performReceiveLocked(ProcessRecord app, IIntentReceiver receiver,
Dianne Hackborn68d881c2009-10-05 13:58:17 -070011161 Intent intent, int resultCode, String data, Bundle extras,
11162 boolean ordered, boolean sticky) throws RemoteException {
Jeff Brown4d94a762010-09-23 11:33:28 -070011163 // Send the intent to the receiver asynchronously using one-way binder calls.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011164 if (app != null && app.thread != null) {
11165 // If we have an app thread, do the call through that so it is
11166 // correctly ordered with other one-way calls.
11167 app.thread.scheduleRegisteredReceiver(receiver, intent, resultCode,
Dianne Hackborn68d881c2009-10-05 13:58:17 -070011168 data, extras, ordered, sticky);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011169 } else {
Dianne Hackborn68d881c2009-10-05 13:58:17 -070011170 receiver.performReceive(intent, resultCode, data, extras, ordered, sticky);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011171 }
11172 }
11173
Jeff Brown4d94a762010-09-23 11:33:28 -070011174 private final void deliverToRegisteredReceiverLocked(BroadcastRecord r,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011175 BroadcastFilter filter, boolean ordered) {
11176 boolean skip = false;
11177 if (filter.requiredPermission != null) {
11178 int perm = checkComponentPermission(filter.requiredPermission,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -080011179 r.callingPid, r.callingUid, -1, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011180 if (perm != PackageManager.PERMISSION_GRANTED) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011181 Slog.w(TAG, "Permission Denial: broadcasting "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011182 + r.intent.toString()
11183 + " from " + r.callerPackage + " (pid="
11184 + r.callingPid + ", uid=" + r.callingUid + ")"
11185 + " requires " + filter.requiredPermission
11186 + " due to registered receiver " + filter);
11187 skip = true;
11188 }
11189 }
11190 if (r.requiredPermission != null) {
11191 int perm = checkComponentPermission(r.requiredPermission,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -080011192 filter.receiverList.pid, filter.receiverList.uid, -1, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011193 if (perm != PackageManager.PERMISSION_GRANTED) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011194 Slog.w(TAG, "Permission Denial: receiving "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011195 + r.intent.toString()
11196 + " to " + filter.receiverList.app
11197 + " (pid=" + filter.receiverList.pid
11198 + ", uid=" + filter.receiverList.uid + ")"
11199 + " requires " + r.requiredPermission
11200 + " due to sender " + r.callerPackage
11201 + " (uid " + r.callingUid + ")");
11202 skip = true;
11203 }
11204 }
11205
11206 if (!skip) {
11207 // If this is not being sent as an ordered broadcast, then we
11208 // don't want to touch the fields that keep track of the current
11209 // state of ordered broadcasts.
11210 if (ordered) {
11211 r.receiver = filter.receiverList.receiver.asBinder();
11212 r.curFilter = filter;
11213 filter.receiverList.curBroadcast = r;
11214 r.state = BroadcastRecord.CALL_IN_RECEIVE;
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011215 if (filter.receiverList.app != null) {
11216 // Bump hosting application to no longer be in background
11217 // scheduling class. Note that we can't do that if there
11218 // isn't an app... but we can only be in that case for
11219 // things that directly call the IActivityManager API, which
11220 // are already core system stuff so don't matter for this.
11221 r.curApp = filter.receiverList.app;
11222 filter.receiverList.app.curReceiver = r;
11223 updateOomAdjLocked();
11224 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011225 }
11226 try {
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011227 if (DEBUG_BROADCAST_LIGHT) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011228 int seq = r.intent.getIntExtra("seq", -1);
Dianne Hackborn399cccb2010-04-13 22:57:49 -070011229 Slog.i(TAG, "Delivering to " + filter
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011230 + " (seq=" + seq + "): " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011231 }
Jeff Brown4d94a762010-09-23 11:33:28 -070011232 performReceiveLocked(filter.receiverList.app, filter.receiverList.receiver,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011233 new Intent(r.intent), r.resultCode,
Dianne Hackborn12527f92009-11-11 17:39:50 -080011234 r.resultData, r.resultExtras, r.ordered, r.initialSticky);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011235 if (ordered) {
11236 r.state = BroadcastRecord.CALL_DONE_RECEIVE;
11237 }
11238 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011239 Slog.w(TAG, "Failure sending broadcast " + r.intent, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011240 if (ordered) {
11241 r.receiver = null;
11242 r.curFilter = null;
11243 filter.receiverList.curBroadcast = null;
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011244 if (filter.receiverList.app != null) {
11245 filter.receiverList.app.curReceiver = null;
11246 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011247 }
11248 }
11249 }
11250 }
11251
Dianne Hackborn12527f92009-11-11 17:39:50 -080011252 private final void addBroadcastToHistoryLocked(BroadcastRecord r) {
11253 if (r.callingUid < 0) {
11254 // This was from a registerReceiver() call; ignore it.
11255 return;
11256 }
11257 System.arraycopy(mBroadcastHistory, 0, mBroadcastHistory, 1,
11258 MAX_BROADCAST_HISTORY-1);
11259 r.finishTime = SystemClock.uptimeMillis();
11260 mBroadcastHistory[0] = r;
11261 }
11262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011263 private final void processNextBroadcast(boolean fromMsg) {
11264 synchronized(this) {
11265 BroadcastRecord r;
11266
Joe Onorato8a9b2202010-02-26 18:56:32 -080011267 if (DEBUG_BROADCAST) Slog.v(TAG, "processNextBroadcast: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011268 + mParallelBroadcasts.size() + " broadcasts, "
Dianne Hackborn399cccb2010-04-13 22:57:49 -070011269 + mOrderedBroadcasts.size() + " ordered broadcasts");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011270
11271 updateCpuStats();
11272
11273 if (fromMsg) {
11274 mBroadcastsScheduled = false;
11275 }
11276
11277 // First, deliver any non-serialized broadcasts right away.
11278 while (mParallelBroadcasts.size() > 0) {
11279 r = mParallelBroadcasts.remove(0);
Dianne Hackborn12527f92009-11-11 17:39:50 -080011280 r.dispatchTime = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011281 final int N = r.receivers.size();
Joe Onorato8a9b2202010-02-26 18:56:32 -080011282 if (DEBUG_BROADCAST_LIGHT) Slog.v(TAG, "Processing parallel broadcast "
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011283 + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011284 for (int i=0; i<N; i++) {
11285 Object target = r.receivers.get(i);
Joe Onorato8a9b2202010-02-26 18:56:32 -080011286 if (DEBUG_BROADCAST) Slog.v(TAG,
Dianne Hackborn399cccb2010-04-13 22:57:49 -070011287 "Delivering non-ordered to registered "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011288 + target + ": " + r);
Jeff Brown4d94a762010-09-23 11:33:28 -070011289 deliverToRegisteredReceiverLocked(r, (BroadcastFilter)target, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011290 }
Dianne Hackborn12527f92009-11-11 17:39:50 -080011291 addBroadcastToHistoryLocked(r);
Joe Onorato8a9b2202010-02-26 18:56:32 -080011292 if (DEBUG_BROADCAST_LIGHT) Slog.v(TAG, "Done with parallel broadcast "
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011293 + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011294 }
11295
11296 // Now take care of the next serialized one...
11297
11298 // If we are waiting for a process to come up to handle the next
11299 // broadcast, then do nothing at this point. Just in case, we
11300 // check that the process we're waiting for still exists.
11301 if (mPendingBroadcast != null) {
Dianne Hackbornbd0a81f2009-10-04 13:30:50 -070011302 if (DEBUG_BROADCAST_LIGHT) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011303 Slog.v(TAG, "processNextBroadcast: waiting for "
Dianne Hackbornbd0a81f2009-10-04 13:30:50 -070011304 + mPendingBroadcast.curApp);
11305 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011306
11307 boolean isDead;
11308 synchronized (mPidsSelfLocked) {
11309 isDead = (mPidsSelfLocked.get(mPendingBroadcast.curApp.pid) == null);
11310 }
11311 if (!isDead) {
11312 // It's still alive, so keep waiting
11313 return;
11314 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011315 Slog.w(TAG, "pending app " + mPendingBroadcast.curApp
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011316 + " died before responding to broadcast");
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011317 mPendingBroadcast.state = BroadcastRecord.IDLE;
11318 mPendingBroadcast.nextReceiver = mPendingBroadcastRecvIndex;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011319 mPendingBroadcast = null;
11320 }
11321 }
11322
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011323 boolean looped = false;
11324
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011325 do {
11326 if (mOrderedBroadcasts.size() == 0) {
11327 // No more broadcasts pending, so all done!
11328 scheduleAppGcsLocked();
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011329 if (looped) {
11330 // If we had finished the last ordered broadcast, then
11331 // make sure all processes have correct oom and sched
11332 // adjustments.
11333 updateOomAdjLocked();
11334 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011335 return;
11336 }
11337 r = mOrderedBroadcasts.get(0);
11338 boolean forceReceive = false;
11339
11340 // Ensure that even if something goes awry with the timeout
11341 // detection, we catch "hung" broadcasts here, discard them,
Jeff Hamiltonacf84742010-05-25 22:10:18 -050011342 // and continue to make progress.
11343 //
11344 // This is only done if the system is ready so that PRE_BOOT_COMPLETED
Jeff Brown4d94a762010-09-23 11:33:28 -070011345 // receivers don't get executed with timeouts. They're intended for
Jeff Hamiltonacf84742010-05-25 22:10:18 -050011346 // one time heavy lifting after system upgrades and can take
11347 // significant amounts of time.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011348 int numReceivers = (r.receivers != null) ? r.receivers.size() : 0;
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011349 if (mProcessesReady && r.dispatchTime > 0) {
Jeff Hamiltonacf84742010-05-25 22:10:18 -050011350 long now = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011351 if ((numReceivers > 0) &&
11352 (now > r.dispatchTime + (2*BROADCAST_TIMEOUT*numReceivers))) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011353 Slog.w(TAG, "Hung broadcast discarded after timeout failure:"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011354 + " now=" + now
11355 + " dispatchTime=" + r.dispatchTime
Dianne Hackborn12527f92009-11-11 17:39:50 -080011356 + " startTime=" + r.receiverTime
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011357 + " intent=" + r.intent
11358 + " numReceivers=" + numReceivers
11359 + " nextReceiver=" + r.nextReceiver
11360 + " state=" + r.state);
Jeff Brown4d94a762010-09-23 11:33:28 -070011361 broadcastTimeoutLocked(false); // forcibly finish this broadcast
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011362 forceReceive = true;
11363 r.state = BroadcastRecord.IDLE;
11364 }
11365 }
11366
11367 if (r.state != BroadcastRecord.IDLE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011368 if (DEBUG_BROADCAST) Slog.d(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011369 "processNextBroadcast() called when not idle (state="
11370 + r.state + ")");
11371 return;
11372 }
11373
11374 if (r.receivers == null || r.nextReceiver >= numReceivers
11375 || r.resultAbort || forceReceive) {
11376 // No more receivers for this broadcast! Send the final
11377 // result if requested...
11378 if (r.resultTo != null) {
11379 try {
11380 if (DEBUG_BROADCAST) {
11381 int seq = r.intent.getIntExtra("seq", -1);
Joe Onorato8a9b2202010-02-26 18:56:32 -080011382 Slog.i(TAG, "Finishing broadcast " + r.intent.getAction()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011383 + " seq=" + seq + " app=" + r.callerApp);
11384 }
Jeff Brown4d94a762010-09-23 11:33:28 -070011385 performReceiveLocked(r.callerApp, r.resultTo,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011386 new Intent(r.intent), r.resultCode,
Dianne Hackborn68d881c2009-10-05 13:58:17 -070011387 r.resultData, r.resultExtras, false, false);
Johannes Carlssonb5a86542010-10-27 10:08:10 +020011388 // Set this to null so that the reference
11389 // (local and remote) isnt kept in the mBroadcastHistory.
11390 r.resultTo = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011391 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011392 Slog.w(TAG, "Failure sending broadcast result of " + r.intent, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011393 }
11394 }
11395
Joe Onorato8a9b2202010-02-26 18:56:32 -080011396 if (DEBUG_BROADCAST) Slog.v(TAG, "Cancelling BROADCAST_TIMEOUT_MSG");
Jeff Brown4d94a762010-09-23 11:33:28 -070011397 cancelBroadcastTimeoutLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011398
Joe Onorato8a9b2202010-02-26 18:56:32 -080011399 if (DEBUG_BROADCAST_LIGHT) Slog.v(TAG, "Finished with ordered broadcast "
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011400 + r);
11401
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011402 // ... and on to the next...
Dianne Hackborn12527f92009-11-11 17:39:50 -080011403 addBroadcastToHistoryLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011404 mOrderedBroadcasts.remove(0);
11405 r = null;
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011406 looped = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011407 continue;
11408 }
11409 } while (r == null);
11410
11411 // Get the next receiver...
11412 int recIdx = r.nextReceiver++;
11413
11414 // Keep track of when this receiver started, and make sure there
11415 // is a timeout message pending to kill it if need be.
Dianne Hackborn12527f92009-11-11 17:39:50 -080011416 r.receiverTime = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011417 if (recIdx == 0) {
Dianne Hackborn12527f92009-11-11 17:39:50 -080011418 r.dispatchTime = r.receiverTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011419
Joe Onorato8a9b2202010-02-26 18:56:32 -080011420 if (DEBUG_BROADCAST_LIGHT) Slog.v(TAG, "Processing ordered broadcast "
Dianne Hackborn82f3f002009-06-16 18:49:05 -070011421 + r);
Jeff Brown4d94a762010-09-23 11:33:28 -070011422 }
11423 if (! mPendingBroadcastTimeoutMessage) {
11424 long timeoutTime = r.receiverTime + BROADCAST_TIMEOUT;
Joe Onorato8a9b2202010-02-26 18:56:32 -080011425 if (DEBUG_BROADCAST) Slog.v(TAG,
Jeff Brown4d94a762010-09-23 11:33:28 -070011426 "Submitting BROADCAST_TIMEOUT_MSG for " + r + " at " + timeoutTime);
11427 setBroadcastTimeoutLocked(timeoutTime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011428 }
11429
11430 Object nextReceiver = r.receivers.get(recIdx);
11431 if (nextReceiver instanceof BroadcastFilter) {
11432 // Simple case: this is a registered receiver who gets
11433 // a direct call.
11434 BroadcastFilter filter = (BroadcastFilter)nextReceiver;
Joe Onorato8a9b2202010-02-26 18:56:32 -080011435 if (DEBUG_BROADCAST) Slog.v(TAG,
Dianne Hackborn399cccb2010-04-13 22:57:49 -070011436 "Delivering ordered to registered "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011437 + filter + ": " + r);
Jeff Brown4d94a762010-09-23 11:33:28 -070011438 deliverToRegisteredReceiverLocked(r, filter, r.ordered);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011439 if (r.receiver == null || !r.ordered) {
11440 // The receiver has already finished, so schedule to
11441 // process the next one.
Dianne Hackborn399cccb2010-04-13 22:57:49 -070011442 if (DEBUG_BROADCAST) Slog.v(TAG, "Quick finishing: ordered="
11443 + r.ordered + " receiver=" + r.receiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011444 r.state = BroadcastRecord.IDLE;
11445 scheduleBroadcastsLocked();
11446 }
11447 return;
11448 }
11449
11450 // Hard case: need to instantiate the receiver, possibly
11451 // starting its application process to host it.
11452
11453 ResolveInfo info =
11454 (ResolveInfo)nextReceiver;
11455
11456 boolean skip = false;
11457 int perm = checkComponentPermission(info.activityInfo.permission,
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -080011458 r.callingPid, r.callingUid, info.activityInfo.applicationInfo.uid,
11459 info.activityInfo.exported);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011460 if (perm != PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -080011461 if (!info.activityInfo.exported) {
11462 Slog.w(TAG, "Permission Denial: broadcasting "
11463 + r.intent.toString()
11464 + " from " + r.callerPackage + " (pid=" + r.callingPid
11465 + ", uid=" + r.callingUid + ")"
11466 + " is not exported from uid " + info.activityInfo.applicationInfo.uid
11467 + " due to receiver " + info.activityInfo.packageName
11468 + "/" + info.activityInfo.name);
11469 } else {
11470 Slog.w(TAG, "Permission Denial: broadcasting "
11471 + r.intent.toString()
11472 + " from " + r.callerPackage + " (pid=" + r.callingPid
11473 + ", uid=" + r.callingUid + ")"
11474 + " requires " + info.activityInfo.permission
11475 + " due to receiver " + info.activityInfo.packageName
11476 + "/" + info.activityInfo.name);
11477 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011478 skip = true;
11479 }
11480 if (r.callingUid != Process.SYSTEM_UID &&
11481 r.requiredPermission != null) {
11482 try {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070011483 perm = AppGlobals.getPackageManager().
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011484 checkPermission(r.requiredPermission,
11485 info.activityInfo.applicationInfo.packageName);
11486 } catch (RemoteException e) {
11487 perm = PackageManager.PERMISSION_DENIED;
11488 }
11489 if (perm != PackageManager.PERMISSION_GRANTED) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011490 Slog.w(TAG, "Permission Denial: receiving "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011491 + r.intent + " to "
11492 + info.activityInfo.applicationInfo.packageName
11493 + " requires " + r.requiredPermission
11494 + " due to sender " + r.callerPackage
11495 + " (uid " + r.callingUid + ")");
11496 skip = true;
11497 }
11498 }
11499 if (r.curApp != null && r.curApp.crashing) {
11500 // If the target process is crashing, just skip it.
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011501 if (DEBUG_BROADCAST) Slog.v(TAG,
11502 "Skipping deliver ordered " + r + " to " + r.curApp
11503 + ": process crashing");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011504 skip = true;
11505 }
11506
11507 if (skip) {
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011508 if (DEBUG_BROADCAST) Slog.v(TAG,
11509 "Skipping delivery of ordered " + r + " for whatever reason");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011510 r.receiver = null;
11511 r.curFilter = null;
11512 r.state = BroadcastRecord.IDLE;
11513 scheduleBroadcastsLocked();
11514 return;
11515 }
11516
11517 r.state = BroadcastRecord.APP_RECEIVE;
11518 String targetProcess = info.activityInfo.processName;
11519 r.curComponent = new ComponentName(
11520 info.activityInfo.applicationInfo.packageName,
11521 info.activityInfo.name);
11522 r.curReceiver = info.activityInfo;
11523
11524 // Is this receiver's application already running?
11525 ProcessRecord app = getProcessRecordLocked(targetProcess,
11526 info.activityInfo.applicationInfo.uid);
11527 if (app != null && app.thread != null) {
11528 try {
11529 processCurBroadcastLocked(r, app);
11530 return;
11531 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011532 Slog.w(TAG, "Exception when sending broadcast to "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011533 + r.curComponent, e);
11534 }
11535
11536 // If a dead object exception was thrown -- fall through to
11537 // restart the application.
11538 }
11539
Dianne Hackborn9acc0302009-08-25 00:27:12 -070011540 // Not running -- get it started, to be executed when the app comes up.
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011541 if (DEBUG_BROADCAST) Slog.v(TAG,
11542 "Need to start app " + targetProcess + " for broadcast " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011543 if ((r.curApp=startProcessLocked(targetProcess,
11544 info.activityInfo.applicationInfo, true,
11545 r.intent.getFlags() | Intent.FLAG_FROM_BACKGROUND,
Dianne Hackborn9acc0302009-08-25 00:27:12 -070011546 "broadcast", r.curComponent,
11547 (r.intent.getFlags()&Intent.FLAG_RECEIVER_BOOT_UPGRADE) != 0))
11548 == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011549 // Ah, this recipient is unavailable. Finish it if necessary,
11550 // and mark the broadcast record as ready for the next.
Joe Onorato8a9b2202010-02-26 18:56:32 -080011551 Slog.w(TAG, "Unable to launch app "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011552 + info.activityInfo.applicationInfo.packageName + "/"
11553 + info.activityInfo.applicationInfo.uid + " for broadcast "
11554 + r.intent + ": process is bad");
Jeff Brown4d94a762010-09-23 11:33:28 -070011555 logBroadcastReceiverDiscardLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011556 finishReceiverLocked(r.receiver, r.resultCode, r.resultData,
11557 r.resultExtras, r.resultAbort, true);
11558 scheduleBroadcastsLocked();
11559 r.state = BroadcastRecord.IDLE;
11560 return;
11561 }
11562
11563 mPendingBroadcast = r;
Dianne Hackborn8891fdc2010-09-20 20:44:46 -070011564 mPendingBroadcastRecvIndex = recIdx;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011565 }
11566 }
11567
11568 // =========================================================
11569 // INSTRUMENTATION
11570 // =========================================================
11571
11572 public boolean startInstrumentation(ComponentName className,
11573 String profileFile, int flags, Bundle arguments,
11574 IInstrumentationWatcher watcher) {
11575 // Refuse possible leaked file descriptors
11576 if (arguments != null && arguments.hasFileDescriptors()) {
11577 throw new IllegalArgumentException("File descriptors passed in Bundle");
11578 }
11579
11580 synchronized(this) {
11581 InstrumentationInfo ii = null;
11582 ApplicationInfo ai = null;
11583 try {
11584 ii = mContext.getPackageManager().getInstrumentationInfo(
Dianne Hackborn1655be42009-05-08 14:29:01 -070011585 className, STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011586 ai = mContext.getPackageManager().getApplicationInfo(
Dianne Hackborn1655be42009-05-08 14:29:01 -070011587 ii.targetPackage, STOCK_PM_FLAGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011588 } catch (PackageManager.NameNotFoundException e) {
11589 }
11590 if (ii == null) {
11591 reportStartInstrumentationFailure(watcher, className,
11592 "Unable to find instrumentation info for: " + className);
11593 return false;
11594 }
11595 if (ai == null) {
11596 reportStartInstrumentationFailure(watcher, className,
11597 "Unable to find instrumentation target package: " + ii.targetPackage);
11598 return false;
11599 }
11600
11601 int match = mContext.getPackageManager().checkSignatures(
11602 ii.targetPackage, ii.packageName);
11603 if (match < 0 && match != PackageManager.SIGNATURE_FIRST_NOT_SIGNED) {
11604 String msg = "Permission Denial: starting instrumentation "
11605 + className + " from pid="
11606 + Binder.getCallingPid()
11607 + ", uid=" + Binder.getCallingPid()
11608 + " not allowed because package " + ii.packageName
11609 + " does not have a signature matching the target "
11610 + ii.targetPackage;
11611 reportStartInstrumentationFailure(watcher, className, msg);
11612 throw new SecurityException(msg);
11613 }
11614
11615 final long origId = Binder.clearCallingIdentity();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080011616 forceStopPackageLocked(ii.targetPackage, -1, true, false, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011617 ProcessRecord app = addAppLocked(ai);
11618 app.instrumentationClass = className;
Dianne Hackborn1655be42009-05-08 14:29:01 -070011619 app.instrumentationInfo = ai;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011620 app.instrumentationProfileFile = profileFile;
11621 app.instrumentationArguments = arguments;
11622 app.instrumentationWatcher = watcher;
11623 app.instrumentationResultClass = className;
11624 Binder.restoreCallingIdentity(origId);
11625 }
11626
11627 return true;
11628 }
11629
11630 /**
11631 * Report errors that occur while attempting to start Instrumentation. Always writes the
11632 * error to the logs, but if somebody is watching, send the report there too. This enables
11633 * the "am" command to report errors with more information.
11634 *
11635 * @param watcher The IInstrumentationWatcher. Null if there isn't one.
11636 * @param cn The component name of the instrumentation.
11637 * @param report The error report.
11638 */
11639 private void reportStartInstrumentationFailure(IInstrumentationWatcher watcher,
11640 ComponentName cn, String report) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011641 Slog.w(TAG, report);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011642 try {
11643 if (watcher != null) {
11644 Bundle results = new Bundle();
11645 results.putString(Instrumentation.REPORT_KEY_IDENTIFIER, "ActivityManagerService");
11646 results.putString("Error", report);
11647 watcher.instrumentationStatus(cn, -1, results);
11648 }
11649 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011650 Slog.w(TAG, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011651 }
11652 }
11653
11654 void finishInstrumentationLocked(ProcessRecord app, int resultCode, Bundle results) {
11655 if (app.instrumentationWatcher != null) {
11656 try {
11657 // NOTE: IInstrumentationWatcher *must* be oneway here
11658 app.instrumentationWatcher.instrumentationFinished(
11659 app.instrumentationClass,
11660 resultCode,
11661 results);
11662 } catch (RemoteException e) {
11663 }
11664 }
11665 app.instrumentationWatcher = null;
11666 app.instrumentationClass = null;
Dianne Hackborn1655be42009-05-08 14:29:01 -070011667 app.instrumentationInfo = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011668 app.instrumentationProfileFile = null;
11669 app.instrumentationArguments = null;
11670
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080011671 forceStopPackageLocked(app.processName, -1, false, false, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011672 }
11673
11674 public void finishInstrumentation(IApplicationThread target,
11675 int resultCode, Bundle results) {
11676 // Refuse possible leaked file descriptors
11677 if (results != null && results.hasFileDescriptors()) {
11678 throw new IllegalArgumentException("File descriptors passed in Intent");
11679 }
11680
11681 synchronized(this) {
11682 ProcessRecord app = getRecordForAppLocked(target);
11683 if (app == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011684 Slog.w(TAG, "finishInstrumentation: no app for " + target);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011685 return;
11686 }
11687 final long origId = Binder.clearCallingIdentity();
11688 finishInstrumentationLocked(app, resultCode, results);
11689 Binder.restoreCallingIdentity(origId);
11690 }
11691 }
11692
11693 // =========================================================
11694 // CONFIGURATION
11695 // =========================================================
11696
11697 public ConfigurationInfo getDeviceConfigurationInfo() {
11698 ConfigurationInfo config = new ConfigurationInfo();
11699 synchronized (this) {
11700 config.reqTouchScreen = mConfiguration.touchscreen;
11701 config.reqKeyboardType = mConfiguration.keyboard;
11702 config.reqNavigation = mConfiguration.navigation;
Dianne Hackbornfae76f52009-07-16 13:41:23 -070011703 if (mConfiguration.navigation == Configuration.NAVIGATION_DPAD
11704 || mConfiguration.navigation == Configuration.NAVIGATION_TRACKBALL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011705 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_FIVE_WAY_NAV;
11706 }
Dianne Hackbornfae76f52009-07-16 13:41:23 -070011707 if (mConfiguration.keyboard != Configuration.KEYBOARD_UNDEFINED
11708 && mConfiguration.keyboard != Configuration.KEYBOARD_NOKEYS) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011709 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_HARD_KEYBOARD;
11710 }
Jack Palevichb90d28c2009-07-22 15:35:24 -070011711 config.reqGlEsVersion = GL_ES_VERSION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011712 }
11713 return config;
11714 }
11715
11716 public Configuration getConfiguration() {
11717 Configuration ci;
11718 synchronized(this) {
11719 ci = new Configuration(mConfiguration);
11720 }
11721 return ci;
11722 }
11723
11724 public void updateConfiguration(Configuration values) {
11725 enforceCallingPermission(android.Manifest.permission.CHANGE_CONFIGURATION,
11726 "updateConfiguration()");
11727
11728 synchronized(this) {
11729 if (values == null && mWindowManager != null) {
11730 // sentinel: fetch the current configuration from the window manager
11731 values = mWindowManager.computeNewConfiguration();
11732 }
11733
11734 final long origId = Binder.clearCallingIdentity();
11735 updateConfigurationLocked(values, null);
11736 Binder.restoreCallingIdentity(origId);
11737 }
11738 }
11739
11740 /**
11741 * Do either or both things: (1) change the current configuration, and (2)
11742 * make sure the given activity is running with the (now) current
11743 * configuration. Returns true if the activity has been left running, or
11744 * false if <var>starting</var> is being destroyed to match the new
11745 * configuration.
11746 */
11747 public boolean updateConfigurationLocked(Configuration values,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070011748 ActivityRecord starting) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011749 int changes = 0;
11750
11751 boolean kept = true;
11752
11753 if (values != null) {
11754 Configuration newConfig = new Configuration(mConfiguration);
11755 changes = newConfig.updateFrom(values);
11756 if (changes != 0) {
Dianne Hackborndc6b6352009-09-30 14:20:09 -070011757 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011758 Slog.i(TAG, "Updating configuration to: " + values);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011759 }
11760
Doug Zongker2bec3d42009-12-04 12:52:44 -080011761 EventLog.writeEvent(EventLogTags.CONFIGURATION_CHANGED, changes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011762
11763 if (values.locale != null) {
11764 saveLocaleLocked(values.locale,
11765 !values.locale.equals(mConfiguration.locale),
11766 values.userSetLocale);
11767 }
11768
Dianne Hackborne36d6e22010-02-17 19:46:25 -080011769 mConfigurationSeq++;
11770 if (mConfigurationSeq <= 0) {
11771 mConfigurationSeq = 1;
11772 }
11773 newConfig.seq = mConfigurationSeq;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011774 mConfiguration = newConfig;
Joe Onorato8a9b2202010-02-26 18:56:32 -080011775 Slog.i(TAG, "Config changed: " + newConfig);
Dianne Hackborn826d17c2009-11-12 12:55:51 -080011776
11777 AttributeCache ac = AttributeCache.instance();
11778 if (ac != null) {
11779 ac.updateConfiguration(mConfiguration);
11780 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011781
Dianne Hackbornb8b11a02010-03-10 15:53:11 -080011782 if (Settings.System.hasInterestingConfigurationChanges(changes)) {
11783 Message msg = mHandler.obtainMessage(UPDATE_CONFIGURATION_MSG);
11784 msg.obj = new Configuration(mConfiguration);
11785 mHandler.sendMessage(msg);
11786 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011787
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011788 for (int i=mLruProcesses.size()-1; i>=0; i--) {
11789 ProcessRecord app = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011790 try {
11791 if (app.thread != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011792 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending to proc "
Dianne Hackborndc6b6352009-09-30 14:20:09 -070011793 + app.processName + " new config " + mConfiguration);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011794 app.thread.scheduleConfigurationChanged(mConfiguration);
11795 }
11796 } catch (Exception e) {
11797 }
11798 }
11799 Intent intent = new Intent(Intent.ACTION_CONFIGURATION_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -080011800 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY
11801 | Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011802 broadcastIntentLocked(null, null, intent, null, null, 0, null, null,
11803 null, false, false, MY_PID, Process.SYSTEM_UID);
Dianne Hackborn362d5b92009-11-11 18:04:39 -080011804 if ((changes&ActivityInfo.CONFIG_LOCALE) != 0) {
11805 broadcastIntentLocked(null, null,
11806 new Intent(Intent.ACTION_LOCALE_CHANGED),
11807 null, null, 0, null, null,
11808 null, false, false, MY_PID, Process.SYSTEM_UID);
11809 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011810 }
11811 }
11812
11813 if (changes != 0 && starting == null) {
11814 // If the configuration changed, and the caller is not already
11815 // in the process of starting an activity, then find the top
11816 // activity to check if its configuration needs to change.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070011817 starting = mMainStack.topRunningActivityLocked(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011818 }
11819
11820 if (starting != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070011821 kept = mMainStack.ensureActivityConfigurationLocked(starting, changes);
Dianne Hackborn5f4d6432010-12-21 20:40:11 -080011822 // And we need to make sure at this point that all other activities
11823 // are made visible with the correct configuration.
11824 mMainStack.ensureActivitiesVisibleLocked(starting, changes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011825 }
11826
Dianne Hackborne36d6e22010-02-17 19:46:25 -080011827 if (values != null && mWindowManager != null) {
11828 mWindowManager.setNewConfiguration(mConfiguration);
11829 }
11830
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011831 return kept;
11832 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011833
11834 /**
11835 * Save the locale. You must be inside a synchronized (this) block.
11836 */
11837 private void saveLocaleLocked(Locale l, boolean isDiff, boolean isPersist) {
11838 if(isDiff) {
11839 SystemProperties.set("user.language", l.getLanguage());
11840 SystemProperties.set("user.region", l.getCountry());
11841 }
11842
11843 if(isPersist) {
11844 SystemProperties.set("persist.sys.language", l.getLanguage());
11845 SystemProperties.set("persist.sys.country", l.getCountry());
11846 SystemProperties.set("persist.sys.localevar", l.getVariant());
11847 }
11848 }
11849
11850 // =========================================================
11851 // LIFETIME MANAGEMENT
11852 // =========================================================
11853
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011854 private final int computeOomAdjLocked(ProcessRecord app, int hiddenAdj,
11855 ProcessRecord TOP_APP, boolean recursed) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011856 if (mAdjSeq == app.adjSeq) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011857 // This adjustment has already been computed. If we are calling
11858 // from the top, we may have already computed our adjustment with
11859 // an earlier hidden adjustment that isn't really for us... if
11860 // so, use the new hidden adjustment.
11861 if (!recursed && app.hidden) {
11862 app.curAdj = hiddenAdj;
11863 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011864 return app.curAdj;
11865 }
11866
11867 if (app.thread == null) {
11868 app.adjSeq = mAdjSeq;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011869 app.curSchedGroup = Process.THREAD_GROUP_BG_NONINTERACTIVE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011870 return (app.curAdj=EMPTY_APP_ADJ);
11871 }
11872
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011873 if (app.maxAdj <= FOREGROUND_APP_ADJ) {
11874 // The max adjustment doesn't allow this app to be anything
11875 // below foreground, so it is not worth doing work for it.
11876 app.adjType = "fixed";
11877 app.adjSeq = mAdjSeq;
11878 app.curRawAdj = app.maxAdj;
Dianne Hackborn287952c2010-09-22 22:34:31 -070011879 app.keeping = true;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011880 app.curSchedGroup = Process.THREAD_GROUP_DEFAULT;
11881 return (app.curAdj=app.maxAdj);
11882 }
11883
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070011884 app.adjTypeCode = ActivityManager.RunningAppProcessInfo.REASON_UNKNOWN;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011885 app.adjSource = null;
11886 app.adjTarget = null;
Dianne Hackborn287952c2010-09-22 22:34:31 -070011887 app.keeping = false;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011888 app.empty = false;
11889 app.hidden = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011890
The Android Open Source Project4df24232009-03-05 14:34:35 -080011891 // Determine the importance of the process, starting with most
11892 // important to least, and assign an appropriate OOM adjustment.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011893 int adj;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011894 int schedGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011895 int N;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011896 if (app == TOP_APP) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011897 // The last app on the list is the foreground app.
11898 adj = FOREGROUND_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011899 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackbornfd12af42009-08-27 00:44:33 -070011900 app.adjType = "top-activity";
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011901 } else if (app.instrumentationClass != null) {
11902 // Don't want to kill running instrumentation.
11903 adj = FOREGROUND_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011904 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackbornfd12af42009-08-27 00:44:33 -070011905 app.adjType = "instrumentation";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011906 } else if (app.curReceiver != null ||
11907 (mPendingBroadcast != null && mPendingBroadcast.curApp == app)) {
11908 // An app that is currently receiving a broadcast also
11909 // counts as being in the foreground.
11910 adj = FOREGROUND_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011911 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011912 app.adjType = "broadcast";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011913 } else if (app.executingServices.size() > 0) {
11914 // An app that is currently executing a service callback also
11915 // counts as being in the foreground.
11916 adj = FOREGROUND_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011917 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011918 app.adjType = "exec-service";
11919 } else if (app.foregroundServices) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011920 // The user is aware of this app, so make it visible.
Dianne Hackborn32907cf2010-06-10 17:50:20 -070011921 adj = PERCEPTIBLE_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011922 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011923 app.adjType = "foreground-service";
11924 } else if (app.forcingToForeground != null) {
11925 // The user is aware of this app, so make it visible.
Dianne Hackborn32907cf2010-06-10 17:50:20 -070011926 adj = PERCEPTIBLE_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011927 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011928 app.adjType = "force-foreground";
11929 app.adjSource = app.forcingToForeground;
Dianne Hackborn32907cf2010-06-10 17:50:20 -070011930 } else if (app == mHeavyWeightProcess) {
11931 // We don't want to kill the current heavy-weight process.
11932 adj = HEAVY_WEIGHT_APP_ADJ;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080011933 schedGroup = Process.THREAD_GROUP_BG_NONINTERACTIVE;
Dianne Hackborn32907cf2010-06-10 17:50:20 -070011934 app.adjType = "heavy";
The Android Open Source Project4df24232009-03-05 14:34:35 -080011935 } else if (app == mHomeProcess) {
11936 // This process is hosting what we currently consider to be the
11937 // home app, so we don't want to let it go into the background.
11938 adj = HOME_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011939 schedGroup = Process.THREAD_GROUP_BG_NONINTERACTIVE;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011940 app.adjType = "home";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011941 } else if ((N=app.activities.size()) != 0) {
11942 // This app is in the background with paused activities.
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011943 app.hidden = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011944 adj = hiddenAdj;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011945 schedGroup = Process.THREAD_GROUP_BG_NONINTERACTIVE;
Dianne Hackbornfd12af42009-08-27 00:44:33 -070011946 app.adjType = "bg-activities";
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011947 N = app.activities.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011948 for (int j=0; j<N; j++) {
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080011949 ActivityRecord r = app.activities.get(j);
11950 if (r.visible) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011951 // This app has a visible activity!
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011952 app.hidden = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011953 adj = VISIBLE_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011954 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011955 app.adjType = "visible";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011956 break;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080011957 } else if (r.state == ActivityState.PAUSING
11958 || r.state == ActivityState.PAUSED
11959 || r.state == ActivityState.STOPPING) {
11960 adj = PERCEPTIBLE_APP_ADJ;
11961 app.adjType = "stopping";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011962 }
11963 }
11964 } else {
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011965 // A very not-needed process. If this is lower in the lru list,
11966 // we will push it in to the empty bucket.
11967 app.hidden = true;
11968 app.empty = true;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011969 schedGroup = Process.THREAD_GROUP_BG_NONINTERACTIVE;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011970 adj = hiddenAdj;
11971 app.adjType = "bg-empty";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011972 }
11973
Joe Onorato8a9b2202010-02-26 18:56:32 -080011974 //Slog.i(TAG, "OOM " + app + ": initial adj=" + adj);
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011975
The Android Open Source Project4df24232009-03-05 14:34:35 -080011976 // By default, we use the computed adjustment. It may be changed if
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011977 // there are applications dependent on our services or providers, but
11978 // this gives us a baseline and makes sure we don't get into an
11979 // infinite recursion.
11980 app.adjSeq = mAdjSeq;
11981 app.curRawAdj = adj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011982
Christopher Tate6fa95972009-06-05 18:43:55 -070011983 if (mBackupTarget != null && app == mBackupTarget.app) {
11984 // If possible we want to avoid killing apps while they're being backed up
11985 if (adj > BACKUP_APP_ADJ) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080011986 if (DEBUG_BACKUP) Slog.v(TAG, "oom BACKUP_APP_ADJ for " + app);
Christopher Tate6fa95972009-06-05 18:43:55 -070011987 adj = BACKUP_APP_ADJ;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070011988 app.adjType = "backup";
Dianne Hackborndd71fc82009-12-16 19:24:32 -080011989 app.hidden = false;
Christopher Tate6fa95972009-06-05 18:43:55 -070011990 }
11991 }
11992
Dianne Hackborn09c916b2009-12-08 14:50:51 -080011993 if (app.services.size() != 0 && (adj > FOREGROUND_APP_ADJ
11994 || schedGroup == Process.THREAD_GROUP_BG_NONINTERACTIVE)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011995 final long now = SystemClock.uptimeMillis();
11996 // This process is more important if the top activity is
11997 // bound to the service.
Dianne Hackborn860755f2010-06-03 18:47:52 -070011998 Iterator<ServiceRecord> jt = app.services.iterator();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011999 while (jt.hasNext() && adj > FOREGROUND_APP_ADJ) {
Dianne Hackborn860755f2010-06-03 18:47:52 -070012000 ServiceRecord s = jt.next();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012001 if (s.startRequested) {
12002 if (now < (s.lastActivity+MAX_SERVICE_INACTIVITY)) {
12003 // This service has seen some activity within
12004 // recent memory, so we will keep its process ahead
12005 // of the background processes.
12006 if (adj > SECONDARY_SERVER_ADJ) {
12007 adj = SECONDARY_SERVER_ADJ;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070012008 app.adjType = "started-services";
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012009 app.hidden = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012010 }
12011 }
Dianne Hackborn5ce7d282010-02-12 19:30:02 -080012012 // If we have let the service slide into the background
12013 // state, still have some text describing what it is doing
12014 // even though the service no longer has an impact.
12015 if (adj > SECONDARY_SERVER_ADJ) {
12016 app.adjType = "started-bg-services";
12017 }
Dianne Hackborn287952c2010-09-22 22:34:31 -070012018 // Don't kill this process because it is doing work; it
12019 // has said it is doing work.
12020 app.keeping = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012021 }
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012022 if (s.connections.size() > 0 && (adj > FOREGROUND_APP_ADJ
12023 || schedGroup == Process.THREAD_GROUP_BG_NONINTERACTIVE)) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -070012024 Iterator<ArrayList<ConnectionRecord>> kt
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012025 = s.connections.values().iterator();
12026 while (kt.hasNext() && adj > FOREGROUND_APP_ADJ) {
Dianne Hackborn43d9ac82010-08-25 15:06:25 -070012027 ArrayList<ConnectionRecord> clist = kt.next();
12028 for (int i=0; i<clist.size() && adj > FOREGROUND_APP_ADJ; i++) {
12029 // XXX should compute this based on the max of
12030 // all connected clients.
12031 ConnectionRecord cr = clist.get(i);
12032 if (cr.binding.client == app) {
12033 // Binding to ourself is not interesting.
12034 continue;
12035 }
12036 if ((cr.flags&Context.BIND_AUTO_CREATE) != 0) {
12037 ProcessRecord client = cr.binding.client;
12038 int myHiddenAdj = hiddenAdj;
12039 if (myHiddenAdj > client.hiddenAdj) {
12040 if (client.hiddenAdj >= VISIBLE_APP_ADJ) {
12041 myHiddenAdj = client.hiddenAdj;
12042 } else {
12043 myHiddenAdj = VISIBLE_APP_ADJ;
12044 }
12045 }
12046 int clientAdj = computeOomAdjLocked(
12047 client, myHiddenAdj, TOP_APP, true);
12048 if (adj > clientAdj) {
12049 adj = clientAdj >= VISIBLE_APP_ADJ
12050 ? clientAdj : VISIBLE_APP_ADJ;
12051 if (!client.hidden) {
12052 app.hidden = false;
12053 }
Dianne Hackborn287952c2010-09-22 22:34:31 -070012054 if (client.keeping) {
12055 app.keeping = true;
12056 }
Dianne Hackborn43d9ac82010-08-25 15:06:25 -070012057 app.adjType = "service";
12058 app.adjTypeCode = ActivityManager.RunningAppProcessInfo
12059 .REASON_SERVICE_IN_USE;
12060 app.adjSource = cr.binding.client;
12061 app.adjTarget = s.name;
12062 }
12063 if ((cr.flags&Context.BIND_NOT_FOREGROUND) == 0) {
12064 if (client.curSchedGroup == Process.THREAD_GROUP_DEFAULT) {
12065 schedGroup = Process.THREAD_GROUP_DEFAULT;
12066 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012067 }
12068 }
Dianne Hackborn43d9ac82010-08-25 15:06:25 -070012069 ActivityRecord a = cr.activity;
12070 //if (a != null) {
12071 // Slog.i(TAG, "Connection to " + a ": state=" + a.state);
12072 //}
12073 if (a != null && adj > FOREGROUND_APP_ADJ &&
12074 (a.state == ActivityState.RESUMED
12075 || a.state == ActivityState.PAUSING)) {
12076 adj = FOREGROUND_APP_ADJ;
12077 schedGroup = Process.THREAD_GROUP_DEFAULT;
12078 app.hidden = false;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070012079 app.adjType = "service";
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070012080 app.adjTypeCode = ActivityManager.RunningAppProcessInfo
12081 .REASON_SERVICE_IN_USE;
Dianne Hackborn43d9ac82010-08-25 15:06:25 -070012082 app.adjSource = a;
Dianne Hackbornb7bb3b32010-06-06 22:47:50 -070012083 app.adjTarget = s.name;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012084 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012085 }
12086 }
12087 }
12088 }
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070012089
Dianne Hackborn287952c2010-09-22 22:34:31 -070012090 // Finally, if this process has active services running in it, we
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070012091 // would like to avoid killing it unless it would prevent the current
12092 // application from running. By default we put the process in
12093 // with the rest of the background processes; as we scan through
12094 // its services we may bump it up from there.
12095 if (adj > hiddenAdj) {
12096 adj = hiddenAdj;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012097 app.hidden = false;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070012098 app.adjType = "bg-services";
12099 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012100 }
12101
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012102 if (app.pubProviders.size() != 0 && (adj > FOREGROUND_APP_ADJ
12103 || schedGroup == Process.THREAD_GROUP_BG_NONINTERACTIVE)) {
Dianne Hackborn860755f2010-06-03 18:47:52 -070012104 Iterator<ContentProviderRecord> jt = app.pubProviders.values().iterator();
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012105 while (jt.hasNext() && (adj > FOREGROUND_APP_ADJ
12106 || schedGroup == Process.THREAD_GROUP_BG_NONINTERACTIVE)) {
Dianne Hackborn860755f2010-06-03 18:47:52 -070012107 ContentProviderRecord cpr = jt.next();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012108 if (cpr.clients.size() != 0) {
12109 Iterator<ProcessRecord> kt = cpr.clients.iterator();
12110 while (kt.hasNext() && adj > FOREGROUND_APP_ADJ) {
12111 ProcessRecord client = kt.next();
The Android Open Source Project10592532009-03-18 17:39:46 -070012112 if (client == app) {
12113 // Being our own client is not interesting.
12114 continue;
12115 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012116 int myHiddenAdj = hiddenAdj;
12117 if (myHiddenAdj > client.hiddenAdj) {
12118 if (client.hiddenAdj > FOREGROUND_APP_ADJ) {
12119 myHiddenAdj = client.hiddenAdj;
12120 } else {
12121 myHiddenAdj = FOREGROUND_APP_ADJ;
12122 }
12123 }
12124 int clientAdj = computeOomAdjLocked(
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012125 client, myHiddenAdj, TOP_APP, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012126 if (adj > clientAdj) {
12127 adj = clientAdj > FOREGROUND_APP_ADJ
Dianne Hackbornde42bb62009-08-05 12:26:15 -070012128 ? clientAdj : FOREGROUND_APP_ADJ;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012129 if (!client.hidden) {
12130 app.hidden = false;
12131 }
Dianne Hackborn287952c2010-09-22 22:34:31 -070012132 if (client.keeping) {
12133 app.keeping = true;
12134 }
Dianne Hackbornde42bb62009-08-05 12:26:15 -070012135 app.adjType = "provider";
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070012136 app.adjTypeCode = ActivityManager.RunningAppProcessInfo
12137 .REASON_PROVIDER_IN_USE;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070012138 app.adjSource = client;
Dianne Hackbornb7bb3b32010-06-06 22:47:50 -070012139 app.adjTarget = cpr.name;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012140 }
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012141 if (client.curSchedGroup == Process.THREAD_GROUP_DEFAULT) {
12142 schedGroup = Process.THREAD_GROUP_DEFAULT;
12143 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012144 }
12145 }
12146 // If the provider has external (non-framework) process
12147 // dependencies, ensure that its adjustment is at least
12148 // FOREGROUND_APP_ADJ.
12149 if (cpr.externals != 0) {
12150 if (adj > FOREGROUND_APP_ADJ) {
12151 adj = FOREGROUND_APP_ADJ;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012152 schedGroup = Process.THREAD_GROUP_DEFAULT;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012153 app.hidden = false;
Dianne Hackborn287952c2010-09-22 22:34:31 -070012154 app.keeping = true;
Dianne Hackbornde42bb62009-08-05 12:26:15 -070012155 app.adjType = "provider";
Dianne Hackbornb7bb3b32010-06-06 22:47:50 -070012156 app.adjTarget = cpr.name;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012157 }
12158 }
12159 }
12160 }
12161
12162 app.curRawAdj = adj;
12163
Joe Onorato8a9b2202010-02-26 18:56:32 -080012164 //Slog.i(TAG, "OOM ADJ " + app + ": pid=" + app.pid +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012165 // " adj=" + adj + " curAdj=" + app.curAdj + " maxAdj=" + app.maxAdj);
12166 if (adj > app.maxAdj) {
12167 adj = app.maxAdj;
Dianne Hackborn32907cf2010-06-10 17:50:20 -070012168 if (app.maxAdj <= PERCEPTIBLE_APP_ADJ) {
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012169 schedGroup = Process.THREAD_GROUP_DEFAULT;
12170 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012171 }
Dianne Hackborn287952c2010-09-22 22:34:31 -070012172 if (adj < HIDDEN_APP_MIN_ADJ) {
12173 app.keeping = true;
12174 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012175
12176 app.curAdj = adj;
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012177 app.curSchedGroup = schedGroup;
Dianne Hackborn06de2ea2009-05-21 12:56:43 -070012178
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012179 return adj;
12180 }
12181
12182 /**
12183 * Ask a given process to GC right now.
12184 */
12185 final void performAppGcLocked(ProcessRecord app) {
12186 try {
12187 app.lastRequestedGc = SystemClock.uptimeMillis();
12188 if (app.thread != null) {
Dianne Hackbornfd12af42009-08-27 00:44:33 -070012189 if (app.reportLowMemory) {
12190 app.reportLowMemory = false;
12191 app.thread.scheduleLowMemory();
12192 } else {
12193 app.thread.processInBackground();
12194 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012195 }
12196 } catch (Exception e) {
12197 // whatever.
12198 }
12199 }
12200
12201 /**
12202 * Returns true if things are idle enough to perform GCs.
12203 */
Josh Bartel7f208742010-02-25 11:01:44 -060012204 private final boolean canGcNowLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012205 return mParallelBroadcasts.size() == 0
12206 && mOrderedBroadcasts.size() == 0
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012207 && (mSleeping || (mMainStack.mResumedActivity != null &&
12208 mMainStack.mResumedActivity.idle));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012209 }
12210
12211 /**
12212 * Perform GCs on all processes that are waiting for it, but only
12213 * if things are idle.
12214 */
12215 final void performAppGcsLocked() {
12216 final int N = mProcessesToGc.size();
12217 if (N <= 0) {
12218 return;
12219 }
Josh Bartel7f208742010-02-25 11:01:44 -060012220 if (canGcNowLocked()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012221 while (mProcessesToGc.size() > 0) {
12222 ProcessRecord proc = mProcessesToGc.remove(0);
Dianne Hackborn32907cf2010-06-10 17:50:20 -070012223 if (proc.curRawAdj > PERCEPTIBLE_APP_ADJ || proc.reportLowMemory) {
Dianne Hackbornfd12af42009-08-27 00:44:33 -070012224 if ((proc.lastRequestedGc+GC_MIN_INTERVAL)
12225 <= SystemClock.uptimeMillis()) {
12226 // To avoid spamming the system, we will GC processes one
12227 // at a time, waiting a few seconds between each.
12228 performAppGcLocked(proc);
12229 scheduleAppGcsLocked();
12230 return;
12231 } else {
12232 // It hasn't been long enough since we last GCed this
12233 // process... put it in the list to wait for its time.
12234 addProcessToGcListLocked(proc);
12235 break;
12236 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012237 }
12238 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -070012239
12240 scheduleAppGcsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012241 }
12242 }
12243
12244 /**
12245 * If all looks good, perform GCs on all processes waiting for them.
12246 */
12247 final void performAppGcsIfAppropriateLocked() {
Josh Bartel7f208742010-02-25 11:01:44 -060012248 if (canGcNowLocked()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012249 performAppGcsLocked();
12250 return;
12251 }
12252 // Still not idle, wait some more.
12253 scheduleAppGcsLocked();
12254 }
12255
12256 /**
12257 * Schedule the execution of all pending app GCs.
12258 */
12259 final void scheduleAppGcsLocked() {
12260 mHandler.removeMessages(GC_BACKGROUND_PROCESSES_MSG);
Dianne Hackbornfd12af42009-08-27 00:44:33 -070012261
12262 if (mProcessesToGc.size() > 0) {
12263 // Schedule a GC for the time to the next process.
12264 ProcessRecord proc = mProcessesToGc.get(0);
12265 Message msg = mHandler.obtainMessage(GC_BACKGROUND_PROCESSES_MSG);
12266
12267 long when = mProcessesToGc.get(0).lastRequestedGc + GC_MIN_INTERVAL;
12268 long now = SystemClock.uptimeMillis();
12269 if (when < (now+GC_TIMEOUT)) {
12270 when = now + GC_TIMEOUT;
12271 }
12272 mHandler.sendMessageAtTime(msg, when);
12273 }
12274 }
12275
12276 /**
12277 * Add a process to the array of processes waiting to be GCed. Keeps the
12278 * list in sorted order by the last GC time. The process can't already be
12279 * on the list.
12280 */
12281 final void addProcessToGcListLocked(ProcessRecord proc) {
12282 boolean added = false;
12283 for (int i=mProcessesToGc.size()-1; i>=0; i--) {
12284 if (mProcessesToGc.get(i).lastRequestedGc <
12285 proc.lastRequestedGc) {
12286 added = true;
12287 mProcessesToGc.add(i+1, proc);
12288 break;
12289 }
12290 }
12291 if (!added) {
12292 mProcessesToGc.add(0, proc);
12293 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012294 }
12295
12296 /**
12297 * Set up to ask a process to GC itself. This will either do it
12298 * immediately, or put it on the list of processes to gc the next
12299 * time things are idle.
12300 */
12301 final void scheduleAppGcLocked(ProcessRecord app) {
12302 long now = SystemClock.uptimeMillis();
Dianne Hackbornfd12af42009-08-27 00:44:33 -070012303 if ((app.lastRequestedGc+GC_MIN_INTERVAL) > now) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012304 return;
12305 }
12306 if (!mProcessesToGc.contains(app)) {
Dianne Hackbornfd12af42009-08-27 00:44:33 -070012307 addProcessToGcListLocked(app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012308 scheduleAppGcsLocked();
12309 }
12310 }
12311
Dianne Hackborn287952c2010-09-22 22:34:31 -070012312 final void checkExcessivePowerUsageLocked(boolean doKills) {
12313 updateCpuStatsNow();
12314
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012315 BatteryStatsImpl stats = mBatteryStatsService.getActiveStatistics();
Dianne Hackborn287952c2010-09-22 22:34:31 -070012316 boolean doWakeKills = doKills;
12317 boolean doCpuKills = doKills;
12318 if (mLastPowerCheckRealtime == 0) {
12319 doWakeKills = false;
12320 }
12321 if (mLastPowerCheckUptime == 0) {
12322 doCpuKills = false;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012323 }
12324 if (stats.isScreenOn()) {
Dianne Hackborn287952c2010-09-22 22:34:31 -070012325 doWakeKills = false;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012326 }
12327 final long curRealtime = SystemClock.elapsedRealtime();
Dianne Hackborn287952c2010-09-22 22:34:31 -070012328 final long realtimeSince = curRealtime - mLastPowerCheckRealtime;
12329 final long curUptime = SystemClock.uptimeMillis();
12330 final long uptimeSince = curUptime - mLastPowerCheckUptime;
12331 mLastPowerCheckRealtime = curRealtime;
12332 mLastPowerCheckUptime = curUptime;
12333 if (realtimeSince < WAKE_LOCK_MIN_CHECK_DURATION) {
12334 doWakeKills = false;
12335 }
12336 if (uptimeSince < CPU_MIN_CHECK_DURATION) {
12337 doCpuKills = false;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012338 }
12339 int i = mLruProcesses.size();
12340 while (i > 0) {
12341 i--;
12342 ProcessRecord app = mLruProcesses.get(i);
Dianne Hackborn287952c2010-09-22 22:34:31 -070012343 if (!app.keeping) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012344 long wtime;
12345 synchronized (stats) {
12346 wtime = stats.getProcessWakeTime(app.info.uid,
12347 app.pid, curRealtime);
12348 }
Dianne Hackborn287952c2010-09-22 22:34:31 -070012349 long wtimeUsed = wtime - app.lastWakeTime;
12350 long cputimeUsed = app.curCpuTime - app.lastCpuTime;
12351 if (DEBUG_POWER) {
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070012352 StringBuilder sb = new StringBuilder(128);
12353 sb.append("Wake for ");
12354 app.toShortString(sb);
12355 sb.append(": over ");
Dianne Hackborn287952c2010-09-22 22:34:31 -070012356 TimeUtils.formatDuration(realtimeSince, sb);
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070012357 sb.append(" used ");
Dianne Hackborn287952c2010-09-22 22:34:31 -070012358 TimeUtils.formatDuration(wtimeUsed, sb);
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070012359 sb.append(" (");
Dianne Hackborn287952c2010-09-22 22:34:31 -070012360 sb.append((wtimeUsed*100)/realtimeSince);
12361 sb.append("%)");
12362 Slog.i(TAG, sb.toString());
12363 sb.setLength(0);
12364 sb.append("CPU for ");
12365 app.toShortString(sb);
12366 sb.append(": over ");
12367 TimeUtils.formatDuration(uptimeSince, sb);
12368 sb.append(" used ");
12369 TimeUtils.formatDuration(cputimeUsed, sb);
12370 sb.append(" (");
12371 sb.append((cputimeUsed*100)/uptimeSince);
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070012372 sb.append("%)");
12373 Slog.i(TAG, sb.toString());
12374 }
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012375 // If a process has held a wake lock for more
12376 // than 50% of the time during this period,
12377 // that sounds pad. Kill!
Dianne Hackborn287952c2010-09-22 22:34:31 -070012378 if (doWakeKills && realtimeSince > 0
12379 && ((wtimeUsed*100)/realtimeSince) >= 50) {
12380 synchronized (stats) {
12381 stats.reportExcessiveWakeLocked(app.info.uid, app.processName,
12382 realtimeSince, wtimeUsed);
12383 }
12384 Slog.w(TAG, "Excessive wake lock in " + app.processName
12385 + " (pid " + app.pid + "): held " + wtimeUsed
12386 + " during " + realtimeSince);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012387 EventLog.writeEvent(EventLogTags.AM_KILL, app.pid,
12388 app.processName, app.setAdj, "excessive wake lock");
12389 Process.killProcessQuiet(app.pid);
Dianne Hackborn287952c2010-09-22 22:34:31 -070012390 } else if (doCpuKills && uptimeSince > 0
12391 && ((cputimeUsed*100)/uptimeSince) >= 50) {
12392 synchronized (stats) {
12393 stats.reportExcessiveCpuLocked(app.info.uid, app.processName,
12394 uptimeSince, cputimeUsed);
12395 }
12396 Slog.w(TAG, "Excessive CPU in " + app.processName
12397 + " (pid " + app.pid + "): used " + cputimeUsed
12398 + " during " + uptimeSince);
12399 EventLog.writeEvent(EventLogTags.AM_KILL, app.pid,
12400 app.processName, app.setAdj, "excessive cpu");
12401 Process.killProcessQuiet(app.pid);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012402 } else {
12403 app.lastWakeTime = wtime;
Dianne Hackborn287952c2010-09-22 22:34:31 -070012404 app.lastCpuTime = app.curCpuTime;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012405 }
12406 }
12407 }
12408 }
12409
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012410 private final boolean updateOomAdjLocked(
12411 ProcessRecord app, int hiddenAdj, ProcessRecord TOP_APP) {
12412 app.hiddenAdj = hiddenAdj;
12413
12414 if (app.thread == null) {
12415 return true;
12416 }
12417
Dianne Hackborn287952c2010-09-22 22:34:31 -070012418 final boolean wasKeeping = app.keeping;
12419
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012420 int adj = computeOomAdjLocked(app, hiddenAdj, TOP_APP, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012421
Dianne Hackborn09c916b2009-12-08 14:50:51 -080012422 if ((app.pid != 0 && app.pid != MY_PID) || Process.supportsProcesses()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012423 if (app.curRawAdj != app.setRawAdj) {
12424 if (app.curRawAdj > FOREGROUND_APP_ADJ
12425 && app.setRawAdj <= FOREGROUND_APP_ADJ) {
12426 // If this app is transitioning from foreground to
12427 // non-foreground, have it do a gc.
12428 scheduleAppGcLocked(app);
12429 } else if (app.curRawAdj >= HIDDEN_APP_MIN_ADJ
12430 && app.setRawAdj < HIDDEN_APP_MIN_ADJ) {
12431 // Likewise do a gc when an app is moving in to the
12432 // background (such as a service stopping).
12433 scheduleAppGcLocked(app);
Dianne Hackborn287952c2010-09-22 22:34:31 -070012434 }
12435
12436 if (wasKeeping && !app.keeping) {
12437 // This app is no longer something we want to keep. Note
12438 // its current wake lock time to later know to kill it if
12439 // it is not behaving well.
Dianne Hackborn9adb9c32010-08-13 14:09:56 -070012440 BatteryStatsImpl stats = mBatteryStatsService.getActiveStatistics();
12441 synchronized (stats) {
12442 app.lastWakeTime = stats.getProcessWakeTime(app.info.uid,
12443 app.pid, SystemClock.elapsedRealtime());
12444 }
Dianne Hackborn287952c2010-09-22 22:34:31 -070012445 app.lastCpuTime = app.curCpuTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012446 }
Dianne Hackborn287952c2010-09-22 22:34:31 -070012447
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012448 app.setRawAdj = app.curRawAdj;
12449 }
12450 if (adj != app.setAdj) {
12451 if (Process.setOomAdj(app.pid, adj)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080012452 if (DEBUG_SWITCH || DEBUG_OOM_ADJ) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012453 TAG, "Set app " + app.processName +
12454 " oom adj to " + adj);
12455 app.setAdj = adj;
12456 } else {
12457 return false;
12458 }
12459 }
Dianne Hackborn06de2ea2009-05-21 12:56:43 -070012460 if (app.setSchedGroup != app.curSchedGroup) {
12461 app.setSchedGroup = app.curSchedGroup;
Joe Onorato8a9b2202010-02-26 18:56:32 -080012462 if (DEBUG_SWITCH || DEBUG_OOM_ADJ) Slog.v(TAG,
Dianne Hackborn06de2ea2009-05-21 12:56:43 -070012463 "Setting process group of " + app.processName
12464 + " to " + app.curSchedGroup);
12465 if (true) {
San Mehat9438de22009-06-10 09:11:28 -070012466 long oldId = Binder.clearCallingIdentity();
Dianne Hackborn06de2ea2009-05-21 12:56:43 -070012467 try {
12468 Process.setProcessGroup(app.pid, app.curSchedGroup);
12469 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080012470 Slog.w(TAG, "Failed setting process group of " + app.pid
Dianne Hackborn06de2ea2009-05-21 12:56:43 -070012471 + " to " + app.curSchedGroup);
San Mehat9438de22009-06-10 09:11:28 -070012472 e.printStackTrace();
12473 } finally {
12474 Binder.restoreCallingIdentity(oldId);
Dianne Hackborn06de2ea2009-05-21 12:56:43 -070012475 }
12476 }
12477 if (false) {
12478 if (app.thread != null) {
12479 try {
12480 app.thread.setSchedulingGroup(app.curSchedGroup);
12481 } catch (RemoteException e) {
12482 }
12483 }
12484 }
12485 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012486 }
12487
12488 return true;
12489 }
12490
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070012491 private final ActivityRecord resumedAppLocked() {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012492 ActivityRecord resumedActivity = mMainStack.mResumedActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012493 if (resumedActivity == null || resumedActivity.app == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012494 resumedActivity = mMainStack.mPausingActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012495 if (resumedActivity == null || resumedActivity.app == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012496 resumedActivity = mMainStack.topRunningActivityLocked(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012497 }
12498 }
12499 return resumedActivity;
12500 }
12501
12502 private final boolean updateOomAdjLocked(ProcessRecord app) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070012503 final ActivityRecord TOP_ACT = resumedAppLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012504 final ProcessRecord TOP_APP = TOP_ACT != null ? TOP_ACT.app : null;
12505 int curAdj = app.curAdj;
12506 final boolean wasHidden = app.curAdj >= HIDDEN_APP_MIN_ADJ
12507 && app.curAdj <= HIDDEN_APP_MAX_ADJ;
12508
12509 mAdjSeq++;
12510
12511 final boolean res = updateOomAdjLocked(app, app.hiddenAdj, TOP_APP);
12512 if (res) {
12513 final boolean nowHidden = app.curAdj >= HIDDEN_APP_MIN_ADJ
12514 && app.curAdj <= HIDDEN_APP_MAX_ADJ;
12515 if (nowHidden != wasHidden) {
12516 // Changed to/from hidden state, so apps after it in the LRU
12517 // list may also be changed.
12518 updateOomAdjLocked();
12519 }
12520 }
12521 return res;
12522 }
12523
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012524 final boolean updateOomAdjLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012525 boolean didOomAdj = true;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070012526 final ActivityRecord TOP_ACT = resumedAppLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012527 final ProcessRecord TOP_APP = TOP_ACT != null ? TOP_ACT.app : null;
12528
12529 if (false) {
12530 RuntimeException e = new RuntimeException();
12531 e.fillInStackTrace();
Joe Onorato8a9b2202010-02-26 18:56:32 -080012532 Slog.i(TAG, "updateOomAdj: top=" + TOP_ACT, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012533 }
12534
12535 mAdjSeq++;
12536
Dianne Hackborn5ce7d282010-02-12 19:30:02 -080012537 // Let's determine how many processes we have running vs.
12538 // how many slots we have for background processes; we may want
12539 // to put multiple processes in a slot of there are enough of
12540 // them.
12541 int numSlots = HIDDEN_APP_MAX_ADJ - HIDDEN_APP_MIN_ADJ + 1;
12542 int factor = (mLruProcesses.size()-4)/numSlots;
12543 if (factor < 1) factor = 1;
12544 int step = 0;
Dianne Hackborn8633e682010-04-22 16:03:41 -070012545 int numHidden = 0;
Dianne Hackborn5ce7d282010-02-12 19:30:02 -080012546
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012547 // First try updating the OOM adjustment for each of the
12548 // application processes based on their current state.
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012549 int i = mLruProcesses.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012550 int curHiddenAdj = HIDDEN_APP_MIN_ADJ;
12551 while (i > 0) {
12552 i--;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012553 ProcessRecord app = mLruProcesses.get(i);
Joe Onorato8a9b2202010-02-26 18:56:32 -080012554 //Slog.i(TAG, "OOM " + app + ": cur hidden=" + curHiddenAdj);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012555 if (updateOomAdjLocked(app, curHiddenAdj, TOP_APP)) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012556 if (curHiddenAdj < EMPTY_APP_ADJ
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012557 && app.curAdj == curHiddenAdj) {
Dianne Hackborn5ce7d282010-02-12 19:30:02 -080012558 step++;
12559 if (step >= factor) {
12560 step = 0;
12561 curHiddenAdj++;
12562 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012563 }
Dianne Hackborn8633e682010-04-22 16:03:41 -070012564 if (app.curAdj >= HIDDEN_APP_MIN_ADJ) {
Dianne Hackborn149427c2010-04-23 14:20:03 -070012565 if (!app.killedBackground) {
12566 numHidden++;
12567 if (numHidden > MAX_HIDDEN_APPS) {
Dianne Hackborn906497c2010-05-10 15:57:38 -070012568 Slog.i(TAG, "No longer want " + app.processName
12569 + " (pid " + app.pid + "): hidden #" + numHidden);
Dianne Hackborn149427c2010-04-23 14:20:03 -070012570 EventLog.writeEvent(EventLogTags.AM_KILL, app.pid,
12571 app.processName, app.setAdj, "too many background");
12572 app.killedBackground = true;
Dianne Hackborn906497c2010-05-10 15:57:38 -070012573 Process.killProcessQuiet(app.pid);
Dianne Hackborn149427c2010-04-23 14:20:03 -070012574 }
Dianne Hackborn8633e682010-04-22 16:03:41 -070012575 }
12576 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012577 } else {
12578 didOomAdj = false;
12579 }
12580 }
12581
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012582 // If we return false, we will fall back on killing processes to
12583 // have a fixed limit. Do this if a limit has been requested; else
12584 // only return false if one of the adjustments failed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012585 return ENFORCE_PROCESS_LIMIT || mProcessLimit > 0 ? false : didOomAdj;
12586 }
12587
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012588 final void trimApplications() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012589 synchronized (this) {
12590 int i;
12591
12592 // First remove any unused application processes whose package
12593 // has been removed.
12594 for (i=mRemovedProcesses.size()-1; i>=0; i--) {
12595 final ProcessRecord app = mRemovedProcesses.get(i);
12596 if (app.activities.size() == 0
12597 && app.curReceiver == null && app.services.size() == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080012598 Slog.i(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012599 TAG, "Exiting empty application process "
12600 + app.processName + " ("
12601 + (app.thread != null ? app.thread.asBinder() : null)
12602 + ")\n");
12603 if (app.pid > 0 && app.pid != MY_PID) {
12604 Process.killProcess(app.pid);
12605 } else {
12606 try {
12607 app.thread.scheduleExit();
12608 } catch (Exception e) {
12609 // Ignore exceptions.
12610 }
12611 }
12612 cleanUpApplicationRecordLocked(app, false, -1);
12613 mRemovedProcesses.remove(i);
12614
12615 if (app.persistent) {
12616 if (app.persistent) {
12617 addAppLocked(app.info);
12618 }
12619 }
12620 }
12621 }
12622
12623 // Now try updating the OOM adjustment for each of the
12624 // application processes based on their current state.
12625 // If the setOomAdj() API is not supported, then go with our
12626 // back-up plan...
12627 if (!updateOomAdjLocked()) {
12628
12629 // Count how many processes are running services.
12630 int numServiceProcs = 0;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012631 for (i=mLruProcesses.size()-1; i>=0; i--) {
12632 final ProcessRecord app = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012633
12634 if (app.persistent || app.services.size() != 0
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -070012635 || app.curReceiver != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012636 // Don't count processes holding services against our
12637 // maximum process count.
Joe Onorato8a9b2202010-02-26 18:56:32 -080012638 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012639 TAG, "Not trimming app " + app + " with services: "
12640 + app.services);
12641 numServiceProcs++;
12642 }
12643 }
12644
12645 int curMaxProcs = mProcessLimit;
12646 if (curMaxProcs <= 0) curMaxProcs = MAX_PROCESSES;
12647 if (mAlwaysFinishActivities) {
12648 curMaxProcs = 1;
12649 }
12650 curMaxProcs += numServiceProcs;
12651
12652 // Quit as many processes as we can to get down to the desired
12653 // process count. First remove any processes that no longer
12654 // have activites running in them.
12655 for ( i=0;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012656 i<mLruProcesses.size()
12657 && mLruProcesses.size() > curMaxProcs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012658 i++) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012659 final ProcessRecord app = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012660 // Quit an application only if it is not currently
12661 // running any activities.
12662 if (!app.persistent && app.activities.size() == 0
12663 && app.curReceiver == null && app.services.size() == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080012664 Slog.i(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012665 TAG, "Exiting empty application process "
12666 + app.processName + " ("
12667 + (app.thread != null ? app.thread.asBinder() : null)
12668 + ")\n");
12669 if (app.pid > 0 && app.pid != MY_PID) {
12670 Process.killProcess(app.pid);
12671 } else {
12672 try {
12673 app.thread.scheduleExit();
12674 } catch (Exception e) {
12675 // Ignore exceptions.
12676 }
12677 }
12678 // todo: For now we assume the application is not buggy
12679 // or evil, and will quit as a result of our request.
12680 // Eventually we need to drive this off of the death
12681 // notification, and kill the process if it takes too long.
12682 cleanUpApplicationRecordLocked(app, false, i);
12683 i--;
12684 }
12685 }
12686
12687 // If we still have too many processes, now from the least
12688 // recently used process we start finishing activities.
Joe Onorato8a9b2202010-02-26 18:56:32 -080012689 if (Config.LOGV) Slog.v(
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012690 TAG, "*** NOW HAVE " + mLruProcesses.size() +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012691 " of " + curMaxProcs + " processes");
12692 for ( i=0;
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012693 i<mLruProcesses.size()
12694 && mLruProcesses.size() > curMaxProcs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012695 i++) {
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012696 final ProcessRecord app = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012697 // Quit the application only if we have a state saved for
12698 // all of its activities.
12699 boolean canQuit = !app.persistent && app.curReceiver == null
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -070012700 && app.services.size() == 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012701 int NUMA = app.activities.size();
12702 int j;
Joe Onorato8a9b2202010-02-26 18:56:32 -080012703 if (Config.LOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012704 TAG, "Looking to quit " + app.processName);
12705 for (j=0; j<NUMA && canQuit; j++) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070012706 ActivityRecord r = app.activities.get(j);
Joe Onorato8a9b2202010-02-26 18:56:32 -080012707 if (Config.LOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012708 TAG, " " + r.intent.getComponent().flattenToShortString()
12709 + ": frozen=" + r.haveState + ", visible=" + r.visible);
12710 canQuit = (r.haveState || !r.stateNotNeeded)
12711 && !r.visible && r.stopped;
12712 }
12713 if (canQuit) {
12714 // Finish all of the activities, and then the app itself.
12715 for (j=0; j<NUMA; j++) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070012716 ActivityRecord r = app.activities.get(j);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012717 if (!r.finishing) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012718 r.stack.destroyActivityLocked(r, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012719 }
12720 r.resultTo = null;
12721 }
Joe Onorato8a9b2202010-02-26 18:56:32 -080012722 Slog.i(TAG, "Exiting application process "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012723 + app.processName + " ("
12724 + (app.thread != null ? app.thread.asBinder() : null)
12725 + ")\n");
12726 if (app.pid > 0 && app.pid != MY_PID) {
12727 Process.killProcess(app.pid);
12728 } else {
12729 try {
12730 app.thread.scheduleExit();
12731 } catch (Exception e) {
12732 // Ignore exceptions.
12733 }
12734 }
12735 // todo: For now we assume the application is not buggy
12736 // or evil, and will quit as a result of our request.
12737 // Eventually we need to drive this off of the death
12738 // notification, and kill the process if it takes too long.
12739 cleanUpApplicationRecordLocked(app, false, i);
12740 i--;
12741 //dump();
12742 }
12743 }
12744
12745 }
12746
12747 int curMaxActivities = MAX_ACTIVITIES;
12748 if (mAlwaysFinishActivities) {
12749 curMaxActivities = 1;
12750 }
12751
12752 // Finally, if there are too many activities now running, try to
12753 // finish as many as we can to get back down to the limit.
12754 for ( i=0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012755 i<mMainStack.mLRUActivities.size()
12756 && mMainStack.mLRUActivities.size() > curMaxActivities;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012757 i++) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -070012758 final ActivityRecord r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012759 = (ActivityRecord)mMainStack.mLRUActivities.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012760
12761 // We can finish this one if we have its icicle saved and
12762 // it is not persistent.
12763 if ((r.haveState || !r.stateNotNeeded) && !r.visible
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -070012764 && r.stopped && !r.finishing) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012765 final int origSize = mMainStack.mLRUActivities.size();
12766 r.stack.destroyActivityLocked(r, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012767
12768 // This will remove it from the LRU list, so keep
12769 // our index at the same value. Note that this check to
12770 // see if the size changes is just paranoia -- if
12771 // something unexpected happens, we don't want to end up
12772 // in an infinite loop.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070012773 if (origSize > mMainStack.mLRUActivities.size()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012774 i--;
12775 }
12776 }
12777 }
12778 }
12779 }
12780
12781 /** This method sends the specified signal to each of the persistent apps */
12782 public void signalPersistentProcesses(int sig) throws RemoteException {
12783 if (sig != Process.SIGNAL_USR1) {
12784 throw new SecurityException("Only SIGNAL_USR1 is allowed");
12785 }
12786
12787 synchronized (this) {
12788 if (checkCallingPermission(android.Manifest.permission.SIGNAL_PERSISTENT_PROCESSES)
12789 != PackageManager.PERMISSION_GRANTED) {
12790 throw new SecurityException("Requires permission "
12791 + android.Manifest.permission.SIGNAL_PERSISTENT_PROCESSES);
12792 }
12793
Dianne Hackborndd71fc82009-12-16 19:24:32 -080012794 for (int i = mLruProcesses.size() - 1 ; i >= 0 ; i--) {
12795 ProcessRecord r = mLruProcesses.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012796 if (r.thread != null && r.persistent) {
12797 Process.sendSignal(r.pid, sig);
12798 }
12799 }
12800 }
12801 }
12802
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012803 public boolean profileControl(String process, boolean start,
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070012804 String path, ParcelFileDescriptor fd) throws RemoteException {
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012805
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070012806 try {
12807 synchronized (this) {
12808 // note: hijacking SET_ACTIVITY_WATCHER, but should be changed to
12809 // its own permission.
12810 if (checkCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER)
12811 != PackageManager.PERMISSION_GRANTED) {
12812 throw new SecurityException("Requires permission "
12813 + android.Manifest.permission.SET_ACTIVITY_WATCHER);
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012814 }
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070012815
12816 if (start && fd == null) {
12817 throw new IllegalArgumentException("null fd");
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012818 }
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070012819
12820 ProcessRecord proc = null;
12821 try {
12822 int pid = Integer.parseInt(process);
12823 synchronized (mPidsSelfLocked) {
12824 proc = mPidsSelfLocked.get(pid);
12825 }
12826 } catch (NumberFormatException e) {
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012827 }
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070012828
12829 if (proc == null) {
12830 HashMap<String, SparseArray<ProcessRecord>> all
12831 = mProcessNames.getMap();
12832 SparseArray<ProcessRecord> procs = all.get(process);
12833 if (procs != null && procs.size() > 0) {
12834 proc = procs.valueAt(0);
12835 }
12836 }
12837
12838 if (proc == null || proc.thread == null) {
12839 throw new IllegalArgumentException("Unknown process: " + process);
12840 }
12841
12842 boolean isSecure = "1".equals(SystemProperties.get(SYSTEM_SECURE, "0"));
12843 if (isSecure) {
12844 if ((proc.info.flags&ApplicationInfo.FLAG_DEBUGGABLE) == 0) {
12845 throw new SecurityException("Process not debuggable: " + proc);
12846 }
12847 }
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012848
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070012849 proc.thread.profilerControl(start, path, fd);
12850 fd = null;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012851 return true;
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070012852 }
12853 } catch (RemoteException e) {
12854 throw new IllegalStateException("Process disappeared");
12855 } finally {
12856 if (fd != null) {
12857 try {
12858 fd.close();
12859 } catch (IOException e) {
12860 }
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -080012861 }
12862 }
12863 }
Andy McFadden824c5102010-07-09 16:26:57 -070012864
12865 public boolean dumpHeap(String process, boolean managed,
12866 String path, ParcelFileDescriptor fd) throws RemoteException {
12867
12868 try {
12869 synchronized (this) {
12870 // note: hijacking SET_ACTIVITY_WATCHER, but should be changed to
12871 // its own permission (same as profileControl).
12872 if (checkCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER)
12873 != PackageManager.PERMISSION_GRANTED) {
12874 throw new SecurityException("Requires permission "
12875 + android.Manifest.permission.SET_ACTIVITY_WATCHER);
12876 }
12877
12878 if (fd == null) {
12879 throw new IllegalArgumentException("null fd");
12880 }
12881
12882 ProcessRecord proc = null;
12883 try {
12884 int pid = Integer.parseInt(process);
12885 synchronized (mPidsSelfLocked) {
12886 proc = mPidsSelfLocked.get(pid);
12887 }
12888 } catch (NumberFormatException e) {
12889 }
12890
12891 if (proc == null) {
12892 HashMap<String, SparseArray<ProcessRecord>> all
12893 = mProcessNames.getMap();
12894 SparseArray<ProcessRecord> procs = all.get(process);
12895 if (procs != null && procs.size() > 0) {
12896 proc = procs.valueAt(0);
12897 }
12898 }
12899
12900 if (proc == null || proc.thread == null) {
12901 throw new IllegalArgumentException("Unknown process: " + process);
12902 }
12903
12904 boolean isSecure = "1".equals(SystemProperties.get(SYSTEM_SECURE, "0"));
12905 if (isSecure) {
12906 if ((proc.info.flags&ApplicationInfo.FLAG_DEBUGGABLE) == 0) {
12907 throw new SecurityException("Process not debuggable: " + proc);
12908 }
12909 }
12910
12911 proc.thread.dumpHeap(managed, path, fd);
12912 fd = null;
12913 return true;
12914 }
12915 } catch (RemoteException e) {
12916 throw new IllegalStateException("Process disappeared");
12917 } finally {
12918 if (fd != null) {
12919 try {
12920 fd.close();
12921 } catch (IOException e) {
12922 }
12923 }
12924 }
12925 }
12926
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012927 /** In this method we try to acquire our lock to make sure that we have not deadlocked */
12928 public void monitor() {
12929 synchronized (this) { }
12930 }
12931}