blob: f4454ae2a18075608250fe2cbed49530818e04c2 [file] [log] [blame]
Nandana Dutt3386fb72018-12-12 17:26:57 +00001/*
2 * Copyright (C) 2019 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.os;
18
19import android.annotation.RequiresPermission;
Nandana Dutt551906c2019-01-23 09:51:49 +000020import android.app.ActivityManager;
Nandana Dutt161a4462019-01-16 18:18:38 +000021import android.app.AppOpsManager;
Nandana Dutt3386fb72018-12-12 17:26:57 +000022import android.content.Context;
Nandana Dutt551906c2019-01-23 09:51:49 +000023import android.content.pm.UserInfo;
Nandana Dutt161a4462019-01-16 18:18:38 +000024import android.os.Binder;
Nandana Dutt3386fb72018-12-12 17:26:57 +000025import android.os.BugreportParams;
26import android.os.IDumpstate;
27import android.os.IDumpstateListener;
28import android.os.IDumpstateToken;
29import android.os.RemoteException;
30import android.os.ServiceManager;
31import android.os.SystemClock;
32import android.os.SystemProperties;
Nandana Dutt551906c2019-01-23 09:51:49 +000033import android.os.UserManager;
Nandana Dutt3386fb72018-12-12 17:26:57 +000034import android.util.Slog;
35
Nandana Dutt551906c2019-01-23 09:51:49 +000036import com.android.internal.annotations.GuardedBy;
37import com.android.internal.util.Preconditions;
38
Nandana Dutt3386fb72018-12-12 17:26:57 +000039import java.io.FileDescriptor;
40
41// TODO(b/111441001):
Nandana Dutt551906c2019-01-23 09:51:49 +000042// Intercept onFinished() & implement death recipient here and shutdown
43// bugreportd service.
Nandana Dutt3386fb72018-12-12 17:26:57 +000044
45/**
46 * Implementation of the service that provides a privileged API to capture and consume bugreports.
47 *
Nandana Dutt551906c2019-01-23 09:51:49 +000048 * <p>Delegates the actualy generation to a native implementation of {@code IDumpstate}.
Nandana Dutt3386fb72018-12-12 17:26:57 +000049 */
50class BugreportManagerServiceImpl extends IDumpstate.Stub {
51 private static final String TAG = "BugreportManagerService";
Nandana Duttb2da22a2019-01-23 08:39:05 +000052 private static final String BUGREPORT_SERVICE = "bugreportd";
Nandana Dutt3386fb72018-12-12 17:26:57 +000053 private static final long DEFAULT_BUGREPORT_SERVICE_TIMEOUT_MILLIS = 30 * 1000;
54
Nandana Dutt551906c2019-01-23 09:51:49 +000055 private final Object mLock = new Object();
Nandana Dutt3386fb72018-12-12 17:26:57 +000056 private final Context mContext;
Nandana Dutt161a4462019-01-16 18:18:38 +000057 private final AppOpsManager mAppOps;
Nandana Dutt3386fb72018-12-12 17:26:57 +000058
59 BugreportManagerServiceImpl(Context context) {
60 mContext = context;
Nandana Dutt161a4462019-01-16 18:18:38 +000061 mAppOps = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);
Nandana Dutt3386fb72018-12-12 17:26:57 +000062 }
63
64 @Override
65 @RequiresPermission(android.Manifest.permission.DUMP)
66 public IDumpstateToken setListener(String name, IDumpstateListener listener,
Nandana Dutt551906c2019-01-23 09:51:49 +000067 boolean getSectionDetails) {
Nandana Dutt3386fb72018-12-12 17:26:57 +000068 throw new UnsupportedOperationException("setListener is not allowed on this service");
69 }
70
Nandana Dutt3386fb72018-12-12 17:26:57 +000071 @Override
72 @RequiresPermission(android.Manifest.permission.DUMP)
Nandana Dutt161a4462019-01-16 18:18:38 +000073 public void startBugreport(int callingUidUnused, String callingPackage,
74 FileDescriptor bugreportFd, FileDescriptor screenshotFd,
Nandana Dutt551906c2019-01-23 09:51:49 +000075 int bugreportMode, IDumpstateListener listener) {
76 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DUMP, "startBugreport");
77 Preconditions.checkNotNull(callingPackage);
78 Preconditions.checkNotNull(bugreportFd);
79 Preconditions.checkNotNull(listener);
80 validateBugreportMode(bugreportMode);
81 ensureIsPrimaryUser();
Nandana Dutt3386fb72018-12-12 17:26:57 +000082
Nandana Dutt551906c2019-01-23 09:51:49 +000083 int callingUid = Binder.getCallingUid();
Nandana Dutt161a4462019-01-16 18:18:38 +000084 mAppOps.checkPackage(callingUid, callingPackage);
Nandana Dutt551906c2019-01-23 09:51:49 +000085
86 synchronized (mLock) {
87 startBugreportLocked(callingUid, callingPackage, bugreportFd, screenshotFd,
88 bugreportMode, listener);
Nandana Dutt3386fb72018-12-12 17:26:57 +000089 }
Nandana Dutt3386fb72018-12-12 17:26:57 +000090 }
91
Nandana Duttb2da22a2019-01-23 08:39:05 +000092 @Override
93 @RequiresPermission(android.Manifest.permission.DUMP)
Nandana Dutt551906c2019-01-23 09:51:49 +000094 public void cancelBugreport() {
95 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DUMP, "startBugreport");
96 // This tells init to cancel bugreportd service. Note that this is achieved through setting
97 // a system property which is not thread-safe. So the lock here offers thread-safety only
98 // among callers of the API.
99 synchronized (mLock) {
100 SystemProperties.set("ctl.stop", BUGREPORT_SERVICE);
101 }
Nandana Duttb2da22a2019-01-23 08:39:05 +0000102 }
103
Nandana Dutt551906c2019-01-23 09:51:49 +0000104 private void validateBugreportMode(@BugreportParams.BugreportMode int mode) {
Nandana Dutt3386fb72018-12-12 17:26:57 +0000105 if (mode != BugreportParams.BUGREPORT_MODE_FULL
106 && mode != BugreportParams.BUGREPORT_MODE_INTERACTIVE
107 && mode != BugreportParams.BUGREPORT_MODE_REMOTE
108 && mode != BugreportParams.BUGREPORT_MODE_WEAR
109 && mode != BugreportParams.BUGREPORT_MODE_TELEPHONY
110 && mode != BugreportParams.BUGREPORT_MODE_WIFI) {
111 Slog.w(TAG, "Unknown bugreport mode: " + mode);
Nandana Dutt551906c2019-01-23 09:51:49 +0000112 throw new IllegalArgumentException("Unknown bugreport mode: " + mode);
Nandana Dutt3386fb72018-12-12 17:26:57 +0000113 }
Nandana Dutt551906c2019-01-23 09:51:49 +0000114 }
115
116 /**
117 * Validates that the current user is the primary user.
118 *
119 * @throws IllegalArgumentException if the current user is not the primary user
120 */
121 private void ensureIsPrimaryUser() {
122 UserInfo currentUser = null;
123 try {
124 currentUser = ActivityManager.getService().getCurrentUser();
125 } catch (RemoteException e) {
126 // Impossible to get RemoteException for an in-process call.
127 }
128
129 UserInfo primaryUser = UserManager.get(mContext).getPrimaryUser();
130 if (currentUser == null) {
131 logAndThrow("No current user. Only primary user is allowed to take bugreports.");
132 }
133 if (primaryUser == null) {
134 logAndThrow("No primary user. Only primary user is allowed to take bugreports.");
135 }
136 if (primaryUser.id != currentUser.id) {
137 logAndThrow("Current user not primary user. Only primary user"
138 + " is allowed to take bugreports.");
139 }
140 }
141
142 @GuardedBy("mLock")
143 private void startBugreportLocked(int callingUid, String callingPackage,
144 FileDescriptor bugreportFd, FileDescriptor screenshotFd,
145 int bugreportMode, IDumpstateListener listener) {
146 if (isDumpstateBinderServiceRunningLocked()) {
147 Slog.w(TAG, "'dumpstate' is already running. Cannot start a new bugreport"
148 + " while another one is currently in progress.");
Nandana Duttcfb3d482019-02-20 11:25:35 +0000149 reportError(listener,
150 IDumpstateListener.BUGREPORT_ERROR_ANOTHER_REPORT_IN_PROGRESS);
Nandana Dutt551906c2019-01-23 09:51:49 +0000151 return;
152 }
153
154 IDumpstate ds = startAndGetDumpstateBinderServiceLocked();
155 if (ds == null) {
156 Slog.w(TAG, "Unable to get bugreport service");
157 reportError(listener, IDumpstateListener.BUGREPORT_ERROR_RUNTIME_ERROR);
158 return;
159 }
160 try {
161 ds.startBugreport(callingUid, callingPackage,
162 bugreportFd, screenshotFd, bugreportMode, listener);
163 } catch (RemoteException e) {
164 reportError(listener, IDumpstateListener.BUGREPORT_ERROR_RUNTIME_ERROR);
165 }
166 }
167
168 @GuardedBy("mLock")
169 private boolean isDumpstateBinderServiceRunningLocked() {
170 IDumpstate ds = IDumpstate.Stub.asInterface(ServiceManager.getService("dumpstate"));
171 return ds != null;
Nandana Dutt3386fb72018-12-12 17:26:57 +0000172 }
173
174 /*
175 * Start and get a handle to the native implementation of {@code IDumpstate} which does the
176 * actual bugreport generation.
177 *
178 * <p>Generating bugreports requires root privileges. To limit the footprint
179 * of the root access, the actual generation in Dumpstate binary is accessed as a
180 * oneshot service 'bugreport'.
Nandana Dutt551906c2019-01-23 09:51:49 +0000181 *
182 * <p>Note that starting the service is achieved through setting a system property, which is
183 * not thread-safe. So the lock here offers thread-safety only among callers of the API.
Nandana Dutt3386fb72018-12-12 17:26:57 +0000184 */
Nandana Dutt551906c2019-01-23 09:51:49 +0000185 @GuardedBy("mLock")
186 private IDumpstate startAndGetDumpstateBinderServiceLocked() {
Nandana Dutt3386fb72018-12-12 17:26:57 +0000187 // Start bugreport service.
Nandana Duttb2da22a2019-01-23 08:39:05 +0000188 SystemProperties.set("ctl.start", BUGREPORT_SERVICE);
Nandana Dutt3386fb72018-12-12 17:26:57 +0000189
190 IDumpstate ds = null;
191 boolean timedOut = false;
192 int totalTimeWaitedMillis = 0;
193 int seedWaitTimeMillis = 500;
194 while (!timedOut) {
195 // Note that the binder service on the native side is "dumpstate".
196 ds = IDumpstate.Stub.asInterface(ServiceManager.getService("dumpstate"));
197 if (ds != null) {
198 Slog.i(TAG, "Got bugreport service handle.");
199 break;
200 }
201 SystemClock.sleep(seedWaitTimeMillis);
202 Slog.i(TAG,
203 "Waiting to get dumpstate service handle (" + totalTimeWaitedMillis + "ms)");
204 totalTimeWaitedMillis += seedWaitTimeMillis;
205 seedWaitTimeMillis *= 2;
206 timedOut = totalTimeWaitedMillis > DEFAULT_BUGREPORT_SERVICE_TIMEOUT_MILLIS;
207 }
208 if (timedOut) {
209 Slog.w(TAG,
210 "Timed out waiting to get dumpstate service handle ("
211 + totalTimeWaitedMillis + "ms)");
212 }
213 return ds;
214 }
Nandana Dutt551906c2019-01-23 09:51:49 +0000215
216 private void reportError(IDumpstateListener listener, int errorCode) {
217 try {
218 listener.onError(errorCode);
219 } catch (RemoteException e) {
220 // Something went wrong in binder or app process. There's nothing to do here.
221 Slog.w(TAG, "onError() transaction threw RemoteException: " + e.getMessage());
222 }
223 }
224
225 private void logAndThrow(String message) {
226 Slog.w(TAG, message);
227 throw new IllegalArgumentException(message);
228 }
Nandana Dutt3386fb72018-12-12 17:26:57 +0000229}