blob: de306b507ac3d911bb62e5d34328bf2256d369be [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
19import android.app.IActivityManager.ContentProviderHolder;
Dianne Hackbornb7bb3b32010-06-06 22:47:50 -070020import android.content.ComponentName;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070021import android.content.IContentProvider;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.pm.ApplicationInfo;
23import android.content.pm.ProviderInfo;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -080024import android.os.IBinder;
25import android.os.IBinder.DeathRecipient;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.os.Process;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -080027import android.os.RemoteException;
28import android.util.Slog;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029
30import java.io.PrintWriter;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070031import java.util.ArrayList;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -080032import java.util.HashMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import java.util.HashSet;
34
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070035class ContentProviderRecord {
36 final ActivityManagerService service;
37 public final ProviderInfo info;
38 final int uid;
39 final ApplicationInfo appInfo;
40 final ComponentName name;
Dianne Hackborn7d19e022012-08-07 19:12:33 -070041 final boolean singleton;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070042 public IContentProvider provider;
43 public boolean noReleaseNeeded;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 // All attached clients
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070045 final ArrayList<ContentProviderConnection> connections
46 = new ArrayList<ContentProviderConnection>();
47 //final HashSet<ProcessRecord> clients = new HashSet<ProcessRecord>();
Svetoslav Ganov25872aa2012-02-03 19:19:09 -080048 // Handles for non-framework processes supported by this provider
49 HashMap<IBinder, ExternalProcessHandle> externalProcessTokenToHandle;
50 // Count for external process for which we have no handles.
51 int externalProcessNoHandleCount;
Dianne Hackborn2a6bcda2011-09-21 15:07:05 -070052 ProcessRecord proc; // if non-null, hosting process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 ProcessRecord launchingApp; // if non-null, waiting for this app to be launched.
Dianne Hackbornf210d6b2009-04-13 18:42:49 -070054 String stringName;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070055 String shortStringName;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -080056
57 public ContentProviderRecord(ActivityManagerService _service, ProviderInfo _info,
Dianne Hackborn7d19e022012-08-07 19:12:33 -070058 ApplicationInfo ai, ComponentName _name, boolean _singleton) {
Svetoslav Ganov25872aa2012-02-03 19:19:09 -080059 service = _service;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070060 info = _info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 uid = ai.uid;
62 appInfo = ai;
Dianne Hackborn2a6bcda2011-09-21 15:07:05 -070063 name = _name;
Dianne Hackborn7d19e022012-08-07 19:12:33 -070064 singleton = _singleton;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065 noReleaseNeeded = uid == 0 || uid == Process.SYSTEM_UID;
66 }
67
68 public ContentProviderRecord(ContentProviderRecord cpr) {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070069 service = cpr.service;
70 info = cpr.info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 uid = cpr.uid;
72 appInfo = cpr.appInfo;
Dianne Hackbornb7bb3b32010-06-06 22:47:50 -070073 name = cpr.name;
Dianne Hackborn7d19e022012-08-07 19:12:33 -070074 singleton = cpr.singleton;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 noReleaseNeeded = cpr.noReleaseNeeded;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -070076 }
77
78 public ContentProviderHolder newHolder(ContentProviderConnection conn) {
79 ContentProviderHolder holder = new ContentProviderHolder(info);
80 holder.provider = provider;
81 holder.noReleaseNeeded = noReleaseNeeded;
82 holder.connection = conn;
83 return holder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 }
85
86 public boolean canRunHere(ProcessRecord app) {
87 return (info.multiprocess || info.processName.equals(app.processName))
Dianne Hackborn11941fd2012-09-07 15:35:17 -070088 && uid == app.info.uid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 }
90
Svetoslav Ganov25872aa2012-02-03 19:19:09 -080091 public void addExternalProcessHandleLocked(IBinder token) {
92 if (token == null) {
93 externalProcessNoHandleCount++;
94 } else {
95 if (externalProcessTokenToHandle == null) {
96 externalProcessTokenToHandle = new HashMap<IBinder, ExternalProcessHandle>();
97 }
98 ExternalProcessHandle handle = externalProcessTokenToHandle.get(token);
99 if (handle == null) {
100 handle = new ExternalProcessHandle(token);
101 externalProcessTokenToHandle.put(token, handle);
102 }
103 handle.mAcquisitionCount++;
104 }
105 }
106
107 public boolean removeExternalProcessHandleLocked(IBinder token) {
108 if (hasExternalProcessHandles()) {
109 boolean hasHandle = false;
110 if (externalProcessTokenToHandle != null) {
111 ExternalProcessHandle handle = externalProcessTokenToHandle.get(token);
112 if (handle != null) {
113 hasHandle = true;
114 handle.mAcquisitionCount--;
115 if (handle.mAcquisitionCount == 0) {
116 removeExternalProcessHandleInternalLocked(token);
117 return true;
118 }
119 }
120 }
121 if (!hasHandle) {
122 externalProcessNoHandleCount--;
123 return true;
124 }
125 }
126 return false;
127 }
128
129 private void removeExternalProcessHandleInternalLocked(IBinder token) {
130 ExternalProcessHandle handle = externalProcessTokenToHandle.get(token);
131 handle.unlinkFromOwnDeathLocked();
132 externalProcessTokenToHandle.remove(token);
133 if (externalProcessTokenToHandle.size() == 0) {
134 externalProcessTokenToHandle = null;
135 }
136 }
137
138 public boolean hasExternalProcessHandles() {
139 return (externalProcessTokenToHandle != null || externalProcessNoHandleCount > 0);
140 }
141
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700142 void dump(PrintWriter pw, String prefix, boolean full) {
143 if (full) {
144 pw.print(prefix); pw.print("package=");
145 pw.print(info.applicationInfo.packageName);
146 pw.print(" process="); pw.println(info.processName);
147 }
Dianne Hackborn2a6bcda2011-09-21 15:07:05 -0700148 pw.print(prefix); pw.print("proc="); pw.println(proc);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700149 if (launchingApp != null) {
150 pw.print(prefix); pw.print("launchingApp="); pw.println(launchingApp);
151 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700152 if (full) {
153 pw.print(prefix); pw.print("uid="); pw.print(uid);
154 pw.print(" provider="); pw.println(provider);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700155 }
Dianne Hackborn7d19e022012-08-07 19:12:33 -0700156 if (singleton) {
157 pw.print(prefix); pw.print("singleton="); pw.println(singleton);
158 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700159 pw.print(prefix); pw.print("authority="); pw.println(info.authority);
160 if (full) {
161 if (info.isSyncable || info.multiprocess || info.initOrder != 0) {
162 pw.print(prefix); pw.print("isSyncable="); pw.print(info.isSyncable);
163 pw.print(" multiprocess="); pw.print(info.multiprocess);
164 pw.print(" initOrder="); pw.println(info.initOrder);
165 }
Dianne Hackbornd8c98fe2011-11-15 11:29:38 -0800166 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700167 if (full) {
168 if (hasExternalProcessHandles()) {
169 pw.print(prefix); pw.print("externals=");
170 pw.println(externalProcessTokenToHandle.size());
171 }
172 } else {
173 if (connections.size() > 0 || externalProcessNoHandleCount > 0) {
174 pw.print(prefix); pw.print(connections.size());
175 pw.print(" connections, "); pw.print(externalProcessNoHandleCount);
176 pw.println(" external handles");
177 }
178 }
179 if (connections.size() > 0) {
180 if (full) {
181 pw.print(prefix); pw.println("Connections:");
182 }
183 for (int i=0; i<connections.size(); i++) {
184 ContentProviderConnection conn = connections.get(i);
185 pw.print(prefix); pw.print(" -> "); pw.println(conn.toClientString());
186 if (conn.provider != this) {
187 pw.print(prefix); pw.print(" *** WRONG PROVIDER: ");
188 pw.println(conn.provider);
189 }
Dianne Hackborn8ec8d412011-11-14 18:27:24 -0800190 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700191 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 }
193
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800194 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 public String toString() {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700196 if (stringName != null) {
197 return stringName;
198 }
199 StringBuilder sb = new StringBuilder(128);
200 sb.append("ContentProviderRecord{");
201 sb.append(Integer.toHexString(System.identityHashCode(this)));
202 sb.append(' ');
Dianne Hackborn9da2d402012-03-15 13:43:08 -0700203 sb.append(name.flattenToShortString());
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700204 sb.append('}');
205 return stringName = sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800207
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700208 public String toShortString() {
209 if (shortStringName != null) {
210 return shortStringName;
211 }
212 StringBuilder sb = new StringBuilder(128);
213 sb.append(Integer.toHexString(System.identityHashCode(this)));
214 sb.append('/');
215 sb.append(name.flattenToShortString());
216 return shortStringName = sb.toString();
217 }
218
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800219 // This class represents a handle from an external process to a provider.
220 private class ExternalProcessHandle implements DeathRecipient {
221 private static final String LOG_TAG = "ExternalProcessHanldle";
222
223 private final IBinder mToken;
224 private int mAcquisitionCount;
225
226 public ExternalProcessHandle(IBinder token) {
227 mToken = token;
228 try {
229 token.linkToDeath(this, 0);
230 } catch (RemoteException re) {
231 Slog.e(LOG_TAG, "Couldn't register for death for token: " + mToken, re);
232 }
233 }
234
235 public void unlinkFromOwnDeathLocked() {
236 mToken.unlinkToDeath(this, 0);
237 }
238
239 @Override
240 public void binderDied() {
241 synchronized (service) {
242 if (hasExternalProcessHandles() &&
243 externalProcessTokenToHandle.get(mToken) != null) {
244 removeExternalProcessHandleInternalLocked(mToken);
245 }
246 }
247 }
248 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249}