blob: ff9762101a939bd6eead9b07c101b0d59cec27c4 [file] [log] [blame]
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001/*
2 * Copyright (C) 2018 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
Kevin Chyn2ffadb32018-06-19 11:29:38 -070017package com.android.server.biometrics.face;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020018
19import static android.Manifest.permission.INTERACT_ACROSS_USERS;
Kevin Chyna24e9fd2018-08-27 12:39:17 -070020import static android.Manifest.permission.MANAGE_BIOMETRIC;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020021import static android.Manifest.permission.RESET_FACE_LOCKOUT;
Kevin Chyna24e9fd2018-08-27 12:39:17 -070022import static android.Manifest.permission.USE_BIOMETRIC_INTERNAL;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020023
24import android.app.ActivityManager;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020025import android.app.AppOpsManager;
Kevin Chyn56e4c3d2019-04-23 11:28:43 -070026import android.app.Notification;
27import android.app.NotificationChannel;
28import android.app.NotificationManager;
29import android.app.PendingIntent;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020030import android.content.Context;
Kevin Chyn56e4c3d2019-04-23 11:28:43 -070031import android.content.Intent;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020032import android.content.pm.UserInfo;
Kevin Chyna56dff72018-06-19 18:41:12 -070033import android.hardware.biometrics.BiometricAuthenticator;
34import android.hardware.biometrics.BiometricConstants;
Kevin Chyn7782d142019-01-18 12:51:33 -080035import android.hardware.biometrics.BiometricsProtoEnums;
Kevin Chyna56dff72018-06-19 18:41:12 -070036import android.hardware.biometrics.IBiometricServiceLockoutResetCallback;
Kevin Chyn23289ef2018-11-28 16:32:36 -080037import android.hardware.biometrics.IBiometricServiceReceiverInternal;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020038import android.hardware.biometrics.face.V1_0.IBiometricsFace;
39import android.hardware.biometrics.face.V1_0.IBiometricsFaceClientCallback;
Kevin Chynb95f1522019-03-04 16:45:15 -080040import android.hardware.biometrics.face.V1_0.OptionalBool;
Kevin Chynd79e24e2018-09-25 12:06:59 -070041import android.hardware.biometrics.face.V1_0.Status;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020042import android.hardware.face.Face;
Kevin Chyna24e9fd2018-08-27 12:39:17 -070043import android.hardware.face.FaceManager;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020044import android.hardware.face.IFaceService;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020045import android.hardware.face.IFaceServiceReceiver;
46import android.os.Binder;
Joe Onoratobf955d22019-03-25 00:16:58 -070047import android.os.Build;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020048import android.os.Environment;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020049import android.os.IBinder;
Joe Onoratodb396002019-04-05 19:49:27 -070050import android.os.NativeHandle;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020051import android.os.RemoteException;
52import android.os.SELinux;
Joe Onorato108413a2019-04-03 18:20:52 -070053import android.os.SystemProperties;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020054import android.os.UserHandle;
55import android.os.UserManager;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020056import android.util.Slog;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020057
Kevin Chyn56e4c3d2019-04-23 11:28:43 -070058import com.android.internal.R;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020059import com.android.internal.annotations.GuardedBy;
60import com.android.internal.logging.MetricsLogger;
61import com.android.internal.util.DumpUtils;
62import com.android.server.SystemServerInitThreadPool;
Kevin Chyna38653c2019-02-11 17:46:21 -080063import com.android.server.biometrics.AuthenticationClient;
Kevin Chyn355c6bf2018-09-20 22:14:19 -070064import com.android.server.biometrics.BiometricServiceBase;
Kevin Chyn836f2cf2018-08-27 11:06:39 -070065import com.android.server.biometrics.BiometricUtils;
Ilya Matyukhin9dac8482019-07-09 11:03:07 -070066import com.android.server.biometrics.ClientMonitor;
Kevin Chyn4cc49f72019-04-24 13:53:35 -070067import com.android.server.biometrics.Constants;
Kevin Chyn0ce70852019-05-10 10:29:18 -070068import com.android.server.biometrics.EnumerateClient;
Kevin Chyn6737c572019-02-08 16:10:54 -080069import com.android.server.biometrics.RemovalClient;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020070
71import org.json.JSONArray;
72import org.json.JSONException;
73import org.json.JSONObject;
74
75import java.io.File;
76import java.io.FileDescriptor;
Joe Onoratodb396002019-04-05 19:49:27 -070077import java.io.FileOutputStream;
78import java.io.IOException;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020079import java.io.PrintWriter;
80import java.util.ArrayList;
Joe Onoratodb396002019-04-05 19:49:27 -070081import java.util.Arrays;
Kevin Chyn9bc1d492019-06-21 15:31:50 -070082import java.util.HashMap;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020083import java.util.List;
Kevin Chyn9bc1d492019-06-21 15:31:50 -070084import java.util.Map;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020085
86/**
87 * A service to manage multiple clients that want to access the face HAL API.
88 * The service is responsible for maintaining a list of clients and dispatching all
Kevin Chyn51676d22018-11-05 18:00:43 -080089 * face-related events.
Gilad Brettercb51b8b2018-03-22 17:04:51 +020090 *
91 * @hide
92 */
Kevin Chyn355c6bf2018-09-20 22:14:19 -070093public class FaceService extends BiometricServiceBase {
Kevin Chyna56dff72018-06-19 18:41:12 -070094
95 protected static final String TAG = "FaceService";
96 private static final boolean DEBUG = true;
Gilad Brettercb51b8b2018-03-22 17:04:51 +020097 private static final String FACE_DATA_DIR = "facedata";
Gilad Brettercb51b8b2018-03-22 17:04:51 +020098 private static final String ACTION_LOCKOUT_RESET =
Kevin Chyn2ffadb32018-06-19 11:29:38 -070099 "com.android.server.biometrics.face.ACTION_LOCKOUT_RESET";
Kevin Chyne46a2162018-09-20 18:43:01 -0700100 private static final int CHALLENGE_TIMEOUT_SEC = 600; // 10 minutes
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200101
Kevin Chyndbfbed42019-06-13 17:01:30 -0700102 private static final String NOTIFICATION_TAG = "FaceService";
103 private static final int NOTIFICATION_ID = 1;
104
Kevin Chyn9bc1d492019-06-21 15:31:50 -0700105 /**
106 * Events for bugreports.
107 */
108 public static final class AuthenticationEvent {
109 private long mStartTime;
110 private long mLatency;
111 // Only valid if mError is 0
112 private boolean mAuthenticated;
113 private int mError;
114 // Only valid if mError is ERROR_VENDOR
115 private int mVendorError;
116
117 AuthenticationEvent(long startTime, long latency, boolean authenticated, int error,
118 int vendorError) {
119 mStartTime = startTime;
120 mLatency = latency;
121 mAuthenticated = authenticated;
122 mError = error;
123 mVendorError = vendorError;
124 }
125
126 public String toString(Context context) {
127 return "Start: " + mStartTime
128 + "\tLatency: " + mLatency
129 + "\tAuthenticated: " + mAuthenticated
130 + "\tError: " + mError
131 + "\tVendorCode: " + mVendorError
132 + "\t" + FaceManager.getErrorString(context, mError, mVendorError);
133 }
134 }
135
136 /**
137 * Keep a short historical buffer of stats, with an aggregated usage time.
138 */
139 private class UsageStats {
140 static final int EVENT_LOG_SIZE = 100;
141
142 Context mContext;
143 List<AuthenticationEvent> mAuthenticationEvents;
144
145 int acceptCount;
146 int rejectCount;
147 Map<Integer, Integer> mErrorCount;
148
149 long acceptLatency;
150 long rejectLatency;
151 Map<Integer, Long> mErrorLatency;
152
153 UsageStats(Context context) {
154 mAuthenticationEvents = new ArrayList<>();
155 mErrorCount = new HashMap<>();
156 mErrorLatency = new HashMap<>();
157 mContext = context;
158 }
159
160 void addEvent(AuthenticationEvent event) {
161 if (mAuthenticationEvents.size() >= EVENT_LOG_SIZE) {
162 mAuthenticationEvents.remove(0);
163 }
164 mAuthenticationEvents.add(event);
165
166 if (event.mAuthenticated) {
167 acceptCount++;
168 acceptLatency += event.mLatency;
169 } else if (event.mError == 0) {
170 rejectCount++;
171 rejectLatency += event.mLatency;
172 } else {
173 mErrorCount.put(event.mError, mErrorCount.getOrDefault(event.mError, 0) + 1);
174 mErrorLatency.put(event.mError,
175 mErrorLatency.getOrDefault(event.mError, 0l) + event.mLatency);
176 }
177 }
178
179 void print(PrintWriter pw) {
180 pw.println("Events since last reboot: " + mAuthenticationEvents.size());
181 for (int i = 0; i < mAuthenticationEvents.size(); i++) {
182 pw.println(mAuthenticationEvents.get(i).toString(mContext));
183 }
184
185 // Dump aggregated usage stats
186 // TODO: Remove or combine with json dump in a future release
187 pw.println("Accept\tCount: " + acceptCount + "\tLatency: " + acceptLatency
188 + "\tAverage: " + (acceptCount > 0 ? acceptLatency / acceptCount : 0));
189 pw.println("Reject\tCount: " + rejectCount + "\tLatency: " + rejectLatency
190 + "\tAverage: " + (rejectCount > 0 ? rejectLatency / rejectCount : 0));
191
192 for (Integer key : mErrorCount.keySet()) {
193 final int count = mErrorCount.get(key);
194 pw.println("Error" + key + "\tCount: " + count
195 + "\tLatency: " + mErrorLatency.getOrDefault(key, 0l)
196 + "\tAverage: " + (count > 0 ? mErrorLatency.getOrDefault(key, 0l) / count
197 : 0)
198 + "\t" + FaceManager.getErrorString(mContext, key, 0 /* vendorCode */));
199 }
200 }
201 }
202
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700203 private final class FaceAuthClient extends AuthenticationClientImpl {
Kevin Chyn0ce70852019-05-10 10:29:18 -0700204 private int mLastAcquire;
205
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700206 public FaceAuthClient(Context context,
207 DaemonWrapper daemon, long halDeviceId, IBinder token,
208 ServiceListener listener, int targetUserId, int groupId, long opId,
Kevin Chyn87f257a2018-11-27 16:26:07 -0800209 boolean restricted, String owner, int cookie, boolean requireConfirmation) {
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700210 super(context, daemon, halDeviceId, token, listener, targetUserId, groupId, opId,
Kevin Chyn87f257a2018-11-27 16:26:07 -0800211 restricted, owner, cookie, requireConfirmation);
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700212 }
Kevin Chyn7782d142019-01-18 12:51:33 -0800213
214 @Override
215 protected int statsModality() {
216 return FaceService.this.statsModality();
217 }
Kevin Chyna38653c2019-02-11 17:46:21 -0800218
219 @Override
220 public boolean shouldFrameworkHandleLockout() {
221 return false;
222 }
Kevin Chyn56d6b072019-02-13 18:39:01 -0800223
224 @Override
Kevin Chyn0ce70852019-05-10 10:29:18 -0700225 public boolean wasUserDetected() {
226 return mLastAcquire != FaceManager.FACE_ACQUIRED_NOT_DETECTED;
227 }
228
229 @Override
Kevin Chyn56d6b072019-02-13 18:39:01 -0800230 public boolean onAuthenticated(BiometricAuthenticator.Identifier identifier,
231 boolean authenticated, ArrayList<Byte> token) {
232 final boolean result = super.onAuthenticated(identifier, authenticated, token);
233
Kevin Chyn9bc1d492019-06-21 15:31:50 -0700234 mUsageStats.addEvent(new AuthenticationEvent(
235 getStartTimeMs(),
236 System.currentTimeMillis() - getStartTimeMs() /* latency */,
237 authenticated,
238 0 /* error */,
239 0 /* vendorError */));
240
Kevin Chyn56d6b072019-02-13 18:39:01 -0800241 // For face, the authentication lifecycle ends either when
242 // 1) Authenticated == true
243 // 2) Error occurred
244 // 3) Authenticated == false
245 // Fingerprint currently does not end when the third condition is met which is a bug,
246 // but let's leave it as-is for now.
247 return result || !authenticated;
248 }
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700249
250 @Override
Kevin Chyn9bc1d492019-06-21 15:31:50 -0700251 public boolean onError(long deviceId, int error, int vendorCode) {
252 mUsageStats.addEvent(new AuthenticationEvent(
253 getStartTimeMs(),
254 System.currentTimeMillis() - getStartTimeMs() /* latency */,
255 false /* authenticated */,
256 error,
257 vendorCode));
258
259 return super.onError(deviceId, error, vendorCode);
260 }
261
262 @Override
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700263 public int[] getAcquireIgnorelist() {
264 if (isBiometricPrompt()) {
265 return mBiometricPromptIgnoreList;
266 } else {
267 // Keyguard
268 return mKeyguardIgnoreList;
269 }
270 }
271
272 @Override
273 public int[] getAcquireVendorIgnorelist() {
274 if (isBiometricPrompt()) {
275 return mBiometricPromptIgnoreListVendor;
276 } else {
277 // Keyguard
278 return mKeyguardIgnoreListVendor;
279 }
280 }
281
282 @Override
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700283 public boolean onAcquired(int acquireInfo, int vendorCode) {
284
Kevin Chyn0ce70852019-05-10 10:29:18 -0700285 mLastAcquire = acquireInfo;
286
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700287 if (acquireInfo == FaceManager.FACE_ACQUIRED_RECALIBRATE) {
288 final String name =
289 getContext().getString(R.string.face_recalibrate_notification_name);
290 final String title =
291 getContext().getString(R.string.face_recalibrate_notification_title);
292 final String content =
293 getContext().getString(R.string.face_recalibrate_notification_content);
294
295 final Intent intent = new Intent("android.settings.FACE_SETTINGS");
296 intent.setPackage("com.android.settings");
297
298 final PendingIntent pendingIntent = PendingIntent.getActivityAsUser(getContext(),
299 0 /* requestCode */, intent, 0 /* flags */, null /* options */,
300 UserHandle.CURRENT);
301
Kevin Chyndbfbed42019-06-13 17:01:30 -0700302 final String channelName = "FaceEnrollNotificationChannel";
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700303
Kevin Chyndbfbed42019-06-13 17:01:30 -0700304 NotificationChannel channel = new NotificationChannel(channelName, name,
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700305 NotificationManager.IMPORTANCE_HIGH);
Kevin Chyndbfbed42019-06-13 17:01:30 -0700306 Notification notification = new Notification.Builder(getContext(), channelName)
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700307 .setSmallIcon(R.drawable.ic_lock)
308 .setContentTitle(title)
309 .setContentText(content)
310 .setSubText(name)
311 .setOnlyAlertOnce(true)
312 .setLocalOnly(true)
313 .setAutoCancel(true)
314 .setCategory(Notification.CATEGORY_SYSTEM)
315 .setContentIntent(pendingIntent)
Kevin Chyn0c3a9982019-06-11 19:09:27 -0700316 .setVisibility(Notification.VISIBILITY_SECRET)
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700317 .build();
318
Kevin Chyndbfbed42019-06-13 17:01:30 -0700319 mNotificationManager.createNotificationChannel(channel);
320 mNotificationManager.notifyAsUser(NOTIFICATION_TAG, NOTIFICATION_ID, notification,
321 UserHandle.CURRENT);
Kevin Chyn56e4c3d2019-04-23 11:28:43 -0700322 }
323
324 return super.onAcquired(acquireInfo, vendorCode);
325 }
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700326 }
327
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200328 /**
Kevin Chyna56dff72018-06-19 18:41:12 -0700329 * Receives the incoming binder calls from FaceManager.
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200330 */
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200331 private final class FaceServiceWrapper extends IFaceService.Stub {
Kevin Chyna56dff72018-06-19 18:41:12 -0700332
333 /**
334 * The following methods contain common code which is shared in biometrics/common.
335 */
Kevin Chyna38653c2019-02-11 17:46:21 -0800336
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200337 @Override // Binder call
Kevin Chynd79e24e2018-09-25 12:06:59 -0700338 public long generateChallenge(IBinder token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700339 checkPermission(MANAGE_BIOMETRIC);
Kevin Chynd79e24e2018-09-25 12:06:59 -0700340 return startGenerateChallenge(token);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200341 }
342
343 @Override // Binder call
Kevin Chynd79e24e2018-09-25 12:06:59 -0700344 public int revokeChallenge(IBinder token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700345 checkPermission(MANAGE_BIOMETRIC);
Ilya Matyukhin9dac8482019-07-09 11:03:07 -0700346 // TODO(b/137106905): Schedule binder calls in FaceService to avoid deadlocks.
347 if (getCurrentClient() == null) {
348 // if we aren't handling any other HIDL calls (mCurrentClient == null), revoke the
349 // challenge right away.
350 return startRevokeChallenge(token);
351 } else {
352 // postpone revoking the challenge until we finish processing the current HIDL call.
353 mRevokeChallengePending = true;
354 return Status.OK;
355 }
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200356 }
357
358 @Override // Binder call
Kevin Chyn593e6262019-06-28 13:24:44 -0700359 public void enroll(int userId, final IBinder token, final byte[] cryptoToken,
Kevin Chyn1f16c2d2018-12-07 13:06:08 -0800360 final IFaceServiceReceiver receiver, final String opPackageName,
361 final int[] disabledFeatures) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700362 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyn593e6262019-06-28 13:24:44 -0700363 updateActiveGroup(userId, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200364
Kevin Chyndbfbed42019-06-13 17:01:30 -0700365 mNotificationManager.cancelAsUser(NOTIFICATION_TAG, NOTIFICATION_ID,
366 UserHandle.CURRENT);
367
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200368 final boolean restricted = isRestricted();
Kevin Chyna56dff72018-06-19 18:41:12 -0700369 final EnrollClientImpl client = new EnrollClientImpl(getContext(), mDaemonWrapper,
370 mHalDeviceId, token, new ServiceListenerImpl(receiver), mCurrentUserId,
Kevin Chyn1429a312019-01-28 16:08:09 -0800371 0 /* groupId */, cryptoToken, restricted, opPackageName, disabledFeatures) {
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700372
373 @Override
374 public int[] getAcquireIgnorelist() {
375 return mEnrollIgnoreList;
376 }
377
378 @Override
379 public int[] getAcquireVendorIgnorelist() {
380 return mEnrollIgnoreListVendor;
381 }
382
Kevin Chyn1429a312019-01-28 16:08:09 -0800383 @Override
384 public boolean shouldVibrate() {
385 return false;
386 }
Kevin Chyn7782d142019-01-18 12:51:33 -0800387
388 @Override
389 protected int statsModality() {
390 return FaceService.this.statsModality();
391 }
Kevin Chyn1429a312019-01-28 16:08:09 -0800392 };
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200393
Kevin Chyn1a878c12019-04-04 15:50:11 -0700394 enrollInternal(client, mCurrentUserId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200395 }
396
397 @Override // Binder call
398 public void cancelEnrollment(final IBinder token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700399 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700400 cancelEnrollmentInternal(token);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200401 }
402
403 @Override // Binder call
Kevin Chyn747e29b2019-01-11 17:01:53 -0800404 public void authenticate(final IBinder token, final long opId, int userId,
Kevin Chyna56dff72018-06-19 18:41:12 -0700405 final IFaceServiceReceiver receiver, final int flags,
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700406 final String opPackageName) {
407 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyn747e29b2019-01-11 17:01:53 -0800408 updateActiveGroup(userId, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200409 final boolean restricted = isRestricted();
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700410 final AuthenticationClientImpl client = new FaceAuthClient(getContext(),
Kevin Chyna56dff72018-06-19 18:41:12 -0700411 mDaemonWrapper, mHalDeviceId, token, new ServiceListenerImpl(receiver),
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700412 mCurrentUserId, 0 /* groupId */, opId, restricted, opPackageName,
Kevin Chyn87f257a2018-11-27 16:26:07 -0800413 0 /* cookie */, false /* requireConfirmation */);
Kevin Chyna56dff72018-06-19 18:41:12 -0700414 authenticateInternal(client, opId, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200415 }
416
417 @Override // Binder call
Kevin Chyn87f257a2018-11-27 16:26:07 -0800418 public void prepareForAuthentication(boolean requireConfirmation, IBinder token, long opId,
Kevin Chyn23289ef2018-11-28 16:32:36 -0800419 int groupId, IBiometricServiceReceiverInternal wrapperReceiver,
420 String opPackageName, int cookie, int callingUid, int callingPid,
421 int callingUserId) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700422 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyn41a80902019-02-06 08:12:15 -0800423 updateActiveGroup(groupId, opPackageName);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700424 final boolean restricted = true; // BiometricPrompt is always restricted
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700425 final AuthenticationClientImpl client = new FaceAuthClient(getContext(),
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700426 mDaemonWrapper, mHalDeviceId, token,
Kevin Chyn87f257a2018-11-27 16:26:07 -0800427 new BiometricPromptServiceListenerImpl(wrapperReceiver),
428 mCurrentUserId, 0 /* groupId */, opId, restricted, opPackageName, cookie,
Kevin Chyn158fefb2019-01-03 18:59:05 -0800429 requireConfirmation);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700430 authenticateInternal(client, opId, opPackageName, callingUid, callingPid,
431 callingUserId);
432 }
433
434 @Override // Binder call
Kevin Chyn87f257a2018-11-27 16:26:07 -0800435 public void startPreparedClient(int cookie) {
436 checkPermission(MANAGE_BIOMETRIC);
437 startCurrentClient(cookie);
438 }
439
440 @Override // Binder call
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200441 public void cancelAuthentication(final IBinder token, final String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700442 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700443 cancelAuthenticationInternal(token, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200444 }
445
446 @Override // Binder call
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700447 public void cancelAuthenticationFromService(final IBinder token, final String opPackageName,
Kevin Chyne92cdae2018-11-21 16:35:04 -0800448 int callingUid, int callingPid, int callingUserId, boolean fromClient) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700449 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyne92cdae2018-11-21 16:35:04 -0800450 cancelAuthenticationInternal(token, opPackageName, callingUid, callingPid,
451 callingUserId, fromClient);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700452 }
453
454 @Override // Binder call
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200455 public void setActiveUser(final int userId) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700456 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700457 setActiveUserInternal(userId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200458 }
459
460 @Override // Binder call
Kevin Chyna56dff72018-06-19 18:41:12 -0700461 public void remove(final IBinder token, final int faceId, final int userId,
Kevin Chyn593e6262019-06-28 13:24:44 -0700462 final IFaceServiceReceiver receiver, final String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700463 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyn593e6262019-06-28 13:24:44 -0700464 updateActiveGroup(userId, opPackageName);
Kevin Chyna56dff72018-06-19 18:41:12 -0700465
466 if (token == null) {
467 Slog.w(TAG, "remove(): token is null");
468 return;
469 }
470
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200471 final boolean restricted = isRestricted();
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700472 final RemovalClient client = new RemovalClient(getContext(), getConstants(),
Kevin Chyn6737c572019-02-08 16:10:54 -0800473 mDaemonWrapper, mHalDeviceId, token, new ServiceListenerImpl(receiver), faceId,
474 0 /* groupId */, userId, restricted, token.toString(), getBiometricUtils()) {
Kevin Chyn7782d142019-01-18 12:51:33 -0800475 @Override
476 protected int statsModality() {
477 return FaceService.this.statsModality();
478 }
479 };
Kevin Chyna56dff72018-06-19 18:41:12 -0700480 removeInternal(client);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200481 }
482
Kevin Chyna56dff72018-06-19 18:41:12 -0700483 @Override
484 public void enumerate(final IBinder token, final int userId,
485 final IFaceServiceReceiver receiver) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700486 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700487
488 final boolean restricted = isRestricted();
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700489 final EnumerateClient client = new EnumerateClient(getContext(), getConstants(),
Kevin Chyn6737c572019-02-08 16:10:54 -0800490 mDaemonWrapper, mHalDeviceId, token, new ServiceListenerImpl(receiver), userId,
491 userId, restricted, getContext().getOpPackageName()) {
Kevin Chyn7782d142019-01-18 12:51:33 -0800492 @Override
493 protected int statsModality() {
494 return FaceService.this.statsModality();
495 }
496 };
Kevin Chyna56dff72018-06-19 18:41:12 -0700497 enumerateInternal(client);
498 }
499
500 @Override
501 public void addLockoutResetCallback(final IBiometricServiceLockoutResetCallback callback)
502 throws RemoteException {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700503 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700504 FaceService.super.addLockoutResetCallback(callback);
505 }
506
507 @Override // Binder call
508 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
509 if (!DumpUtils.checkDumpPermission(getContext(), TAG, pw)) {
510 return;
511 }
512
513 final long ident = Binder.clearCallingIdentity();
514 try {
Joe Onoratodb396002019-04-05 19:49:27 -0700515 if (args.length > 1 && "--hal".equals(args[0])) {
516 dumpHal(fd, Arrays.copyOfRange(args, 1, args.length, args.getClass()));
Kevin Chyna56dff72018-06-19 18:41:12 -0700517 } else {
518 dumpInternal(pw);
519 }
520 } finally {
521 Binder.restoreCallingIdentity(ident);
522 }
523 }
524
525 /**
526 * The following methods don't use any common code from BiometricService
527 */
528
529 // TODO: refactor out common code here
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200530 @Override // Binder call
531 public boolean isHardwareDetected(long deviceId, String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700532 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700533 if (!canUseBiometric(opPackageName, false /* foregroundOnly */,
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200534 Binder.getCallingUid(), Binder.getCallingPid(),
535 UserHandle.getCallingUserId())) {
536 return false;
537 }
538
539 final long token = Binder.clearCallingIdentity();
540 try {
541 IBiometricsFace daemon = getFaceDaemon();
542 return daemon != null && mHalDeviceId != 0;
543 } finally {
544 Binder.restoreCallingIdentity(token);
545 }
546 }
547
548 @Override // Binder call
Kevin Chyna56dff72018-06-19 18:41:12 -0700549 public void rename(final int faceId, final String name) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700550 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700551 if (!isCurrentUserOrProfile(UserHandle.getCallingUserId())) {
552 return;
553 }
554 mHandler.post(new Runnable() {
555 @Override
556 public void run() {
557 getBiometricUtils().renameBiometricForUser(getContext(), mCurrentUserId,
558 faceId, name);
559 }
560 });
561 }
562
563 @Override // Binder call
564 public List<Face> getEnrolledFaces(int userId, String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700565 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700566 if (!canUseBiometric(opPackageName, false /* foregroundOnly */,
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200567 Binder.getCallingUid(), Binder.getCallingPid(),
568 UserHandle.getCallingUserId())) {
569 return null;
570 }
571
Kevin Chyn6737c572019-02-08 16:10:54 -0800572 return FaceService.this.getEnrolledTemplates(userId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200573 }
574
575 @Override // Binder call
Kevin Chyna56dff72018-06-19 18:41:12 -0700576 public boolean hasEnrolledFaces(int userId, String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700577 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700578 if (!canUseBiometric(opPackageName, false /* foregroundOnly */,
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200579 Binder.getCallingUid(), Binder.getCallingPid(),
580 UserHandle.getCallingUserId())) {
581 return false;
582 }
583
Kevin Chyna56dff72018-06-19 18:41:12 -0700584 return FaceService.this.hasEnrolledBiometrics(userId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200585 }
586
587 @Override // Binder call
588 public long getAuthenticatorId(String opPackageName) {
589 // In this method, we're not checking whether the caller is permitted to use face
590 // API because current authenticator ID is leaked (in a more contrived way) via Android
591 // Keystore (android.security.keystore package): the user of that API can create a key
592 // which requires face authentication for its use, and then query the key's
593 // characteristics (hidden API) which returns, among other things, face
594 // authenticator ID which was active at key creation time.
595 //
596 // Reason: The part of Android Keystore which runs inside an app's process invokes this
597 // method in certain cases. Those cases are not always where the developer demonstrates
598 // explicit intent to use face functionality. Thus, to avoiding throwing an
599 // unexpected SecurityException this method does not check whether its caller is
600 // permitted to use face API.
601 //
602 // The permission check should be restored once Android Keystore no longer invokes this
603 // method from inside app processes.
604
605 return FaceService.this.getAuthenticatorId(opPackageName);
606 }
607
608 @Override // Binder call
Kevin Chyna38653c2019-02-11 17:46:21 -0800609 public void resetLockout(byte[] token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700610 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyn1d6a2862019-04-02 16:20:21 -0700611
joshmccloskeya4772062019-07-24 17:13:16 -0700612 mHandler.post(() -> {
613 if (!FaceService.this.hasEnrolledBiometrics(mCurrentUserId)) {
614 Slog.w(TAG, "Ignoring lockout reset, no templates enrolled");
615 return;
616 }
Kevin Chyn1d6a2862019-04-02 16:20:21 -0700617
joshmccloskeya4772062019-07-24 17:13:16 -0700618 Slog.d(TAG, "Resetting lockout for user: " + mCurrentUserId);
Kevin Chynbe67ce02019-06-10 16:14:22 -0700619
joshmccloskeya4772062019-07-24 17:13:16 -0700620 try {
621 mDaemonWrapper.resetLockout(token);
622 } catch (RemoteException e) {
623 Slog.e(getTag(), "Unable to reset lockout", e);
624 }
625 });
Kevin Chyna56dff72018-06-19 18:41:12 -0700626 }
Kevin Chynd79e24e2018-09-25 12:06:59 -0700627
628 @Override
Kevin Chyn593e6262019-06-28 13:24:44 -0700629 public void setFeature(int userId, int feature, boolean enabled, final byte[] token,
630 IFaceServiceReceiver receiver, final String opPackageName) {
Kevin Chynd79e24e2018-09-25 12:06:59 -0700631 checkPermission(MANAGE_BIOMETRIC);
632
Kevin Chyne62749a2019-04-02 19:33:56 -0700633 mHandler.post(() -> {
joshmccloskeya4772062019-07-24 17:13:16 -0700634 if (DEBUG) {
635 Slog.d(TAG, "setFeature for user(" + userId + ")");
636 }
637 updateActiveGroup(userId, opPackageName);
Kevin Chyne62749a2019-04-02 19:33:56 -0700638 if (!FaceService.this.hasEnrolledBiometrics(mCurrentUserId)) {
639 Slog.e(TAG, "No enrolled biometrics while setting feature: " + feature);
640 return;
Kevin Chynb95f1522019-03-04 16:45:15 -0800641 }
Kevin Chyne62749a2019-04-02 19:33:56 -0700642
643 final ArrayList<Byte> byteToken = new ArrayList<>();
644 for (int i = 0; i < token.length; i++) {
645 byteToken.add(token[i]);
646 }
647
648 // TODO: Support multiple faces
649 final int faceId = getFirstTemplateForUser(mCurrentUserId);
650
651 if (mDaemon != null) {
652 try {
653 final int result = mDaemon.setFeature(feature, enabled, byteToken, faceId);
654 receiver.onFeatureSet(result == Status.OK, feature);
655 } catch (RemoteException e) {
656 Slog.e(getTag(), "Unable to set feature: " + feature
657 + " to enabled:" + enabled, e);
658 }
659 }
660 });
661
Kevin Chynd79e24e2018-09-25 12:06:59 -0700662 }
663
664 @Override
Kevin Chyn593e6262019-06-28 13:24:44 -0700665 public void getFeature(int userId, int feature, IFaceServiceReceiver receiver,
666 final String opPackageName) {
Kevin Chynd79e24e2018-09-25 12:06:59 -0700667 checkPermission(MANAGE_BIOMETRIC);
668
Kevin Chyne62749a2019-04-02 19:33:56 -0700669 mHandler.post(() -> {
joshmccloskeya4772062019-07-24 17:13:16 -0700670 if (DEBUG) {
671 Slog.d(TAG, "getFeature for user(" + userId + ")");
672 }
673 updateActiveGroup(userId, opPackageName);
Kevin Chyne62749a2019-04-02 19:33:56 -0700674 // This should ideally return tri-state, but the user isn't shown settings unless
675 // they are enrolled so it's fine for now.
676 if (!FaceService.this.hasEnrolledBiometrics(mCurrentUserId)) {
677 Slog.e(TAG, "No enrolled biometrics while getting feature: " + feature);
678 return;
Kevin Chynb95f1522019-03-04 16:45:15 -0800679 }
Kevin Chyne62749a2019-04-02 19:33:56 -0700680
681 // TODO: Support multiple faces
682 final int faceId = getFirstTemplateForUser(mCurrentUserId);
683
684 if (mDaemon != null) {
685 try {
686 OptionalBool result = mDaemon.getFeature(feature, faceId);
687 receiver.onFeatureGet(result.status == Status.OK, feature, result.value);
688 } catch (RemoteException e) {
689 Slog.e(getTag(), "Unable to getRequireAttention", e);
690 }
691 }
692 });
693
Kevin Chynd79e24e2018-09-25 12:06:59 -0700694 }
Kevin Chyn57f119b2018-10-25 12:03:41 -0700695
696 @Override
697 public void userActivity() {
698 checkPermission(MANAGE_BIOMETRIC);
699
700 if (mDaemon != null) {
701 try {
702 mDaemon.userActivity();
703 } catch (RemoteException e) {
704 Slog.e(getTag(), "Unable to send userActivity", e);
705 }
706 }
707 }
Kevin Chynb95f1522019-03-04 16:45:15 -0800708
709 // TODO: Support multiple faces
710 private int getFirstTemplateForUser(int user) {
711 final List<Face> faces = FaceService.this.getEnrolledTemplates(user);
712 if (!faces.isEmpty()) {
713 return faces.get(0).getBiometricId();
714 }
715 return 0;
716 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700717 }
718
719 /**
720 * Receives callbacks from the ClientMonitor implementations. The results are forwarded to
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700721 * BiometricPrompt.
722 */
Kevin Chyne92cdae2018-11-21 16:35:04 -0800723 private class BiometricPromptServiceListenerImpl extends BiometricServiceListener {
Kevin Chyn23289ef2018-11-28 16:32:36 -0800724 BiometricPromptServiceListenerImpl(IBiometricServiceReceiverInternal wrapperReceiver) {
Kevin Chyn87f257a2018-11-27 16:26:07 -0800725 super(wrapperReceiver);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700726 }
727
728 @Override
729 public void onAcquired(long deviceId, int acquiredInfo, int vendorCode)
730 throws RemoteException {
731 /**
732 * Map the acquired codes onto existing {@link BiometricConstants} acquired codes.
733 */
Kevin Chyne92cdae2018-11-21 16:35:04 -0800734 if (getWrapperReceiver() != null) {
735 getWrapperReceiver().onAcquired(
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700736 FaceManager.getMappedAcquiredInfo(acquiredInfo, vendorCode),
737 FaceManager.getAcquiredString(getContext(), acquiredInfo, vendorCode));
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700738 }
739 }
740
741 @Override
Kevin Chyn87f257a2018-11-27 16:26:07 -0800742 public void onError(long deviceId, int error, int vendorCode, int cookie)
743 throws RemoteException {
Kevin Chyne92cdae2018-11-21 16:35:04 -0800744 if (getWrapperReceiver() != null) {
Kevin Chyn23289ef2018-11-28 16:32:36 -0800745 getWrapperReceiver().onError(cookie, error,
746 FaceManager.getErrorString(getContext(), error, vendorCode));
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700747 }
748 }
749 }
750
751 /**
752 * Receives callbacks from the ClientMonitor implementations. The results are forwarded to
Kevin Chyna56dff72018-06-19 18:41:12 -0700753 * the FaceManager.
754 */
755 private class ServiceListenerImpl implements ServiceListener {
Kevin Chyna56dff72018-06-19 18:41:12 -0700756 private IFaceServiceReceiver mFaceServiceReceiver;
757
758 public ServiceListenerImpl(IFaceServiceReceiver receiver) {
759 mFaceServiceReceiver = receiver;
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200760 }
761
762 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -0700763 public void onEnrollResult(BiometricAuthenticator.Identifier identifier, int remaining)
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200764 throws RemoteException {
Kevin Chyna56dff72018-06-19 18:41:12 -0700765 if (mFaceServiceReceiver != null) {
766 mFaceServiceReceiver.onEnrollResult(identifier.getDeviceId(),
767 identifier.getBiometricId(),
768 remaining);
769 }
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200770 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700771
772 @Override
773 public void onAcquired(long deviceId, int acquiredInfo, int vendorCode)
774 throws RemoteException {
775 if (mFaceServiceReceiver != null) {
776 mFaceServiceReceiver.onAcquired(deviceId, acquiredInfo, vendorCode);
777 }
778 }
779
780 @Override
781 public void onAuthenticationSucceeded(long deviceId,
782 BiometricAuthenticator.Identifier biometric, int userId)
783 throws RemoteException {
784 if (mFaceServiceReceiver != null) {
Kevin Chyn628b7182018-11-13 12:00:48 -0800785 if (biometric == null || biometric instanceof Face) {
Kevin Chyn8d2694a2019-04-11 18:30:40 -0700786 mFaceServiceReceiver.onAuthenticationSucceeded(deviceId, (Face) biometric,
787 userId);
Kevin Chyna56dff72018-06-19 18:41:12 -0700788 } else {
789 Slog.e(TAG, "onAuthenticationSucceeded received non-face biometric");
790 }
791 }
792 }
793
794 @Override
795 public void onAuthenticationFailed(long deviceId) throws RemoteException {
796 if (mFaceServiceReceiver != null) {
797 mFaceServiceReceiver.onAuthenticationFailed(deviceId);
798 }
799 }
800
801 @Override
Kevin Chyn87f257a2018-11-27 16:26:07 -0800802 public void onError(long deviceId, int error, int vendorCode, int cookie)
803 throws RemoteException {
Kevin Chyna56dff72018-06-19 18:41:12 -0700804 if (mFaceServiceReceiver != null) {
805 mFaceServiceReceiver.onError(deviceId, error, vendorCode);
806 }
807 }
808
809 @Override
810 public void onRemoved(BiometricAuthenticator.Identifier identifier,
811 int remaining) throws RemoteException {
812 if (mFaceServiceReceiver != null) {
813 mFaceServiceReceiver.onRemoved(identifier.getDeviceId(),
814 identifier.getBiometricId(), remaining);
815 }
816 }
817
818 @Override
819 public void onEnumerated(BiometricAuthenticator.Identifier identifier, int remaining)
820 throws RemoteException {
821 if (mFaceServiceReceiver != null) {
Kevin Chyn6737c572019-02-08 16:10:54 -0800822 mFaceServiceReceiver.onEnumerated(identifier.getDeviceId(),
823 identifier.getBiometricId(), remaining);
Kevin Chyna56dff72018-06-19 18:41:12 -0700824 }
825 }
826 }
827
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700828 private final FaceConstants mFaceConstants = new FaceConstants();
Kevin Chyna56dff72018-06-19 18:41:12 -0700829
830 @GuardedBy("this")
831 private IBiometricsFace mDaemon;
Kevin Chyn9bc1d492019-06-21 15:31:50 -0700832 private UsageStats mUsageStats;
Ilya Matyukhin9dac8482019-07-09 11:03:07 -0700833 private boolean mRevokeChallengePending = false;
Kevin Chyna38653c2019-02-11 17:46:21 -0800834 // One of the AuthenticationClient constants
835 private int mCurrentUserLockoutMode;
Kevin Chyna56dff72018-06-19 18:41:12 -0700836
Kevin Chyndbfbed42019-06-13 17:01:30 -0700837 private NotificationManager mNotificationManager;
838
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700839 private int[] mBiometricPromptIgnoreList;
840 private int[] mBiometricPromptIgnoreListVendor;
841 private int[] mKeyguardIgnoreList;
842 private int[] mKeyguardIgnoreListVendor;
843 private int[] mEnrollIgnoreList;
844 private int[] mEnrollIgnoreListVendor;
845
Kevin Chyna56dff72018-06-19 18:41:12 -0700846 /**
847 * Receives callbacks from the HAL.
848 */
849 private IBiometricsFaceClientCallback mDaemonCallback =
850 new IBiometricsFaceClientCallback.Stub() {
Kevin Chyn6737c572019-02-08 16:10:54 -0800851 @Override
852 public void onEnrollResult(final long deviceId, int faceId, int userId,
853 int remaining) {
854 mHandler.post(() -> {
855 final Face face = new Face(getBiometricUtils()
856 .getUniqueName(getContext(), userId), faceId, deviceId);
857 FaceService.super.handleEnrollResult(face, remaining);
Kevin Chyn576811e2019-06-12 14:50:35 -0700858
859 // Enrollment changes the authenticatorId, so update it here.
860 IBiometricsFace daemon = getFaceDaemon();
861 if (remaining == 0 && daemon != null) {
862 try {
863 mAuthenticatorIds.put(userId,
864 hasEnrolledBiometrics(userId) ? daemon.getAuthenticatorId().value
865 : 0L);
866 } catch (RemoteException e) {
867 Slog.e(TAG, "Unable to get authenticatorId", e);
868 }
869 }
Kevin Chyn6737c572019-02-08 16:10:54 -0800870 });
871 }
872
873 @Override
874 public void onAcquired(final long deviceId, final int userId,
875 final int acquiredInfo,
876 final int vendorCode) {
877 mHandler.post(() -> {
878 FaceService.super.handleAcquired(deviceId, acquiredInfo, vendorCode);
879 });
880 }
881
882 @Override
883 public void onAuthenticated(final long deviceId, final int faceId, final int userId,
884 ArrayList<Byte> token) {
885 mHandler.post(() -> {
886 Face face = new Face("", faceId, deviceId);
887 FaceService.super.handleAuthenticated(face, token);
888 });
889 }
890
891 @Override
892 public void onError(final long deviceId, final int userId, final int error,
893 final int vendorCode) {
894 mHandler.post(() -> {
895 FaceService.super.handleError(deviceId, error, vendorCode);
896
897 // TODO: this chunk of code should be common to all biometric services
898 if (error == BiometricConstants.BIOMETRIC_ERROR_HW_UNAVAILABLE) {
899 // If we get HW_UNAVAILABLE, try to connect again later...
900 Slog.w(TAG, "Got ERROR_HW_UNAVAILABLE; try reconnecting next client.");
901 synchronized (this) {
902 mDaemon = null;
903 mHalDeviceId = 0;
904 mCurrentUserId = UserHandle.USER_NULL;
905 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700906 }
Kevin Chyn6737c572019-02-08 16:10:54 -0800907 });
908 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700909
Kevin Chyn6737c572019-02-08 16:10:54 -0800910 @Override
Kevin Chyn31ae8d22019-03-11 14:12:32 -0700911 public void onRemoved(final long deviceId, ArrayList<Integer> faceIds, final int userId) {
Kevin Chyn6737c572019-02-08 16:10:54 -0800912 mHandler.post(() -> {
Kevin Chyn31ae8d22019-03-11 14:12:32 -0700913 if (!faceIds.isEmpty()) {
914 for (int i = 0; i < faceIds.size(); i++) {
915 final Face face = new Face("", faceIds.get(i), deviceId);
916 // Convert to old behavior
917 FaceService.super.handleRemoved(face, faceIds.size() - i - 1);
918 }
919 } else {
920 final Face face = new Face("", 0 /* identifier */, deviceId);
921 FaceService.super.handleRemoved(face, 0 /* remaining */);
922 }
923
Kevin Chyn6737c572019-02-08 16:10:54 -0800924 });
925 }
926
927 @Override
928 public void onEnumerate(long deviceId, ArrayList<Integer> faceIds, int userId)
929 throws RemoteException {
930 mHandler.post(() -> {
931 if (!faceIds.isEmpty()) {
932 for (int i = 0; i < faceIds.size(); i++) {
933 final Face face = new Face("", faceIds.get(i), deviceId);
934 // Convert to old old behavior
935 FaceService.super.handleEnumerate(face, faceIds.size() - i - 1);
936 }
937 } else {
938 // For face, the HIDL contract is to receive an empty list when there are no
939 // templates enrolled. Send a null identifier since we don't consume them
940 // anywhere, and send remaining == 0 to plumb this with existing common code.
941 FaceService.super.handleEnumerate(null /* identifier */, 0);
Kevin Chyna56dff72018-06-19 18:41:12 -0700942 }
Kevin Chyn6737c572019-02-08 16:10:54 -0800943 });
944 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700945
Kevin Chyn6737c572019-02-08 16:10:54 -0800946 @Override
947 public void onLockoutChanged(long duration) {
Kevin Chyna38653c2019-02-11 17:46:21 -0800948 Slog.d(TAG, "onLockoutChanged: " + duration);
949 if (duration == 0) {
950 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_NONE;
951 } else if (duration == Long.MAX_VALUE) {
952 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_PERMANENT;
953 } else {
954 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_TIMED;
955 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700956
Kevin Chyna38653c2019-02-11 17:46:21 -0800957 mHandler.post(() -> {
958 if (duration == 0) {
959 notifyLockoutResetMonitors();
960 }
961 });
Kevin Chyn6737c572019-02-08 16:10:54 -0800962 }
963 };
Kevin Chyna56dff72018-06-19 18:41:12 -0700964
965 /**
966 * Wraps the HAL-specific code and is passed to the ClientMonitor implementations so that they
967 * can be shared between the multiple biometric services.
968 */
969 private final DaemonWrapper mDaemonWrapper = new DaemonWrapper() {
970 @Override
971 public int authenticate(long operationId, int groupId) throws RemoteException {
972 IBiometricsFace daemon = getFaceDaemon();
973 if (daemon == null) {
974 Slog.w(TAG, "authenticate(): no face HAL!");
975 return ERROR_ESRCH;
976 }
977 return daemon.authenticate(operationId);
978 }
979
980 @Override
981 public int cancel() throws RemoteException {
982 IBiometricsFace daemon = getFaceDaemon();
983 if (daemon == null) {
984 Slog.w(TAG, "cancel(): no face HAL!");
985 return ERROR_ESRCH;
986 }
987 return daemon.cancel();
988 }
989
990 @Override
991 public int remove(int groupId, int biometricId) throws RemoteException {
992 IBiometricsFace daemon = getFaceDaemon();
993 if (daemon == null) {
994 Slog.w(TAG, "remove(): no face HAL!");
995 return ERROR_ESRCH;
996 }
997 return daemon.remove(biometricId);
998 }
999
1000 @Override
1001 public int enumerate() throws RemoteException {
1002 IBiometricsFace daemon = getFaceDaemon();
1003 if (daemon == null) {
1004 Slog.w(TAG, "enumerate(): no face HAL!");
1005 return ERROR_ESRCH;
1006 }
1007 return daemon.enumerate();
1008 }
1009
1010 @Override
Kevin Chyn1f16c2d2018-12-07 13:06:08 -08001011 public int enroll(byte[] cryptoToken, int groupId, int timeout,
1012 ArrayList<Integer> disabledFeatures) throws RemoteException {
Kevin Chyna56dff72018-06-19 18:41:12 -07001013 IBiometricsFace daemon = getFaceDaemon();
1014 if (daemon == null) {
1015 Slog.w(TAG, "enroll(): no face HAL!");
1016 return ERROR_ESRCH;
1017 }
1018 final ArrayList<Byte> token = new ArrayList<>();
1019 for (int i = 0; i < cryptoToken.length; i++) {
1020 token.add(cryptoToken[i]);
1021 }
Kevin Chyn1f16c2d2018-12-07 13:06:08 -08001022 return daemon.enroll(token, timeout, disabledFeatures);
Kevin Chyna56dff72018-06-19 18:41:12 -07001023 }
Kevin Chyna38653c2019-02-11 17:46:21 -08001024
1025 @Override
1026 public void resetLockout(byte[] cryptoToken) throws RemoteException {
1027 IBiometricsFace daemon = getFaceDaemon();
1028 if (daemon == null) {
1029 Slog.w(TAG, "resetLockout(): no face HAL!");
1030 return;
1031 }
1032 final ArrayList<Byte> token = new ArrayList<>();
1033 for (int i = 0; i < cryptoToken.length; i++) {
1034 token.add(cryptoToken[i]);
1035 }
1036 daemon.resetLockout(token);
1037 }
Kevin Chyna56dff72018-06-19 18:41:12 -07001038 };
1039
1040
1041 public FaceService(Context context) {
1042 super(context);
Kevin Chyn4cc49f72019-04-24 13:53:35 -07001043
Kevin Chyn9bc1d492019-06-21 15:31:50 -07001044 mUsageStats = new UsageStats(context);
1045
Kevin Chyndbfbed42019-06-13 17:01:30 -07001046 mNotificationManager = getContext().getSystemService(NotificationManager.class);
1047
Kevin Chyn4cc49f72019-04-24 13:53:35 -07001048 mBiometricPromptIgnoreList = getContext().getResources()
1049 .getIntArray(R.array.config_face_acquire_biometricprompt_ignorelist);
1050 mBiometricPromptIgnoreListVendor = getContext().getResources()
1051 .getIntArray(R.array.config_face_acquire_vendor_biometricprompt_ignorelist);
1052 mKeyguardIgnoreList = getContext().getResources()
1053 .getIntArray(R.array.config_face_acquire_keyguard_ignorelist);
1054 mKeyguardIgnoreListVendor = getContext().getResources()
1055 .getIntArray(R.array.config_face_acquire_vendor_keyguard_ignorelist);
1056 mEnrollIgnoreList = getContext().getResources()
1057 .getIntArray(R.array.config_face_acquire_enroll_ignorelist);
1058 mEnrollIgnoreListVendor = getContext().getResources()
1059 .getIntArray(R.array.config_face_acquire_vendor_enroll_ignorelist);
Kevin Chyna56dff72018-06-19 18:41:12 -07001060 }
1061
1062 @Override
Ilya Matyukhin9dac8482019-07-09 11:03:07 -07001063 protected void removeClient(ClientMonitor client) {
1064 super.removeClient(client);
1065 if (mRevokeChallengePending) {
1066 startRevokeChallenge(null);
1067 mRevokeChallengePending = false;
1068 }
1069 }
1070
1071 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001072 public void onStart() {
Kevin Chyn5a2ff5d2018-08-29 19:07:30 -07001073 super.onStart();
Kevin Chyna56dff72018-06-19 18:41:12 -07001074 publishBinderService(Context.FACE_SERVICE, new FaceServiceWrapper());
Kevin Chyn8398a712019-06-13 16:44:50 -07001075 // Get the face daemon on FaceService's on thread so SystemServerInitThreadPool isn't
1076 // blocked
1077 SystemServerInitThreadPool.get().submit(() -> mHandler.post(this::getFaceDaemon),
1078 TAG + ".onStart");
Kevin Chyna56dff72018-06-19 18:41:12 -07001079 }
1080
1081 @Override
1082 public String getTag() {
1083 return TAG;
1084 }
1085
1086 @Override
Kevin Chyn6737c572019-02-08 16:10:54 -08001087 protected DaemonWrapper getDaemonWrapper() {
1088 return mDaemonWrapper;
1089 }
1090
1091 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001092 protected BiometricUtils getBiometricUtils() {
1093 return FaceUtils.getInstance();
1094 }
1095
1096 @Override
Kevin Chyn4cc49f72019-04-24 13:53:35 -07001097 protected Constants getConstants() {
1098 return mFaceConstants;
Kevin Chyna56dff72018-06-19 18:41:12 -07001099 }
1100
1101 @Override
1102 protected boolean hasReachedEnrollmentLimit(int userId) {
1103 final int limit = getContext().getResources().getInteger(
Kevin Chyn017e76e2018-06-27 18:35:06 -07001104 com.android.internal.R.integer.config_faceMaxTemplatesPerUser);
Kevin Chyn6737c572019-02-08 16:10:54 -08001105 final int enrolled = FaceService.this.getEnrolledTemplates(userId).size();
Kevin Chyna56dff72018-06-19 18:41:12 -07001106 if (enrolled >= limit) {
Kevin Chyn1a878c12019-04-04 15:50:11 -07001107 Slog.w(TAG, "Too many faces registered, user: " + userId);
Kevin Chyna56dff72018-06-19 18:41:12 -07001108 return true;
1109 }
1110 return false;
1111 }
1112
1113 @Override
Kevin Chyn9ba99912019-01-16 16:24:36 -08001114 public void serviceDied(long cookie) {
1115 super.serviceDied(cookie);
1116 mDaemon = null;
Jim Miller7b78b222019-02-07 16:47:38 -08001117
1118 mCurrentUserId = UserHandle.USER_NULL; // Force updateActiveGroup() to re-evaluate
Kevin Chyn9ba99912019-01-16 16:24:36 -08001119 }
1120
1121 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001122 protected void updateActiveGroup(int userId, String clientPackage) {
1123 IBiometricsFace daemon = getFaceDaemon();
1124
1125 if (daemon != null) {
1126 try {
1127 userId = getUserOrWorkProfileId(clientPackage, userId);
1128 if (userId != mCurrentUserId) {
Kevin Chyn27e33d02019-04-30 01:37:32 +00001129 final File baseDir = Environment.getDataVendorDeDirectory(userId);
Kevin Chyna56dff72018-06-19 18:41:12 -07001130 final File faceDir = new File(baseDir, FACE_DATA_DIR);
1131 if (!faceDir.exists()) {
1132 if (!faceDir.mkdir()) {
1133 Slog.v(TAG, "Cannot make directory: " + faceDir.getAbsolutePath());
1134 return;
1135 }
1136 // Calling mkdir() from this process will create a directory with our
1137 // permissions (inherited from the containing dir). This command fixes
1138 // the label.
1139 if (!SELinux.restorecon(faceDir)) {
1140 Slog.w(TAG, "Restorecons failed. Directory will have wrong label.");
1141 return;
1142 }
1143 }
1144
1145 daemon.setActiveUser(userId, faceDir.getAbsolutePath());
1146 mCurrentUserId = userId;
Kevin Chyn576811e2019-06-12 14:50:35 -07001147 mAuthenticatorIds.put(userId,
1148 hasEnrolledBiometrics(userId) ? daemon.getAuthenticatorId().value : 0L);
Kevin Chyna56dff72018-06-19 18:41:12 -07001149 }
Kevin Chyna56dff72018-06-19 18:41:12 -07001150 } catch (RemoteException e) {
1151 Slog.e(TAG, "Failed to setActiveUser():", e);
1152 }
1153 }
1154 }
1155
1156 @Override
1157 protected String getLockoutResetIntent() {
1158 return ACTION_LOCKOUT_RESET;
1159 }
1160
1161 @Override
1162 protected String getLockoutBroadcastPermission() {
1163 return RESET_FACE_LOCKOUT;
1164 }
1165
1166 @Override
1167 protected long getHalDeviceId() {
1168 return mHalDeviceId;
1169 }
1170
1171 @Override
Kevin Chyna38653c2019-02-11 17:46:21 -08001172 protected void handleUserSwitching(int userId) {
1173 super.handleUserSwitching(userId);
1174 // Will be updated when we get the callback from HAL
1175 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_NONE;
1176 }
1177
1178 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001179 protected boolean hasEnrolledBiometrics(int userId) {
1180 if (userId != UserHandle.getCallingUserId()) {
1181 checkPermission(INTERACT_ACROSS_USERS);
1182 }
1183 return getBiometricUtils().getBiometricsForUser(getContext(), userId).size() > 0;
1184 }
1185
1186 @Override
1187 protected String getManageBiometricPermission() {
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001188 return MANAGE_BIOMETRIC;
Kevin Chyna56dff72018-06-19 18:41:12 -07001189 }
1190
1191 @Override
1192 protected void checkUseBiometricPermission() {
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001193 // noop for Face. The permission checks are all done on the incoming binder call.
Kevin Chyna56dff72018-06-19 18:41:12 -07001194 }
1195
1196 @Override
Kevin Chynb3c05aa2018-09-21 16:50:32 -07001197 protected boolean checkAppOps(int uid, String opPackageName) {
1198 return mAppOps.noteOp(AppOpsManager.OP_USE_BIOMETRIC, uid, opPackageName)
1199 == AppOpsManager.MODE_ALLOWED;
Kevin Chyna56dff72018-06-19 18:41:12 -07001200 }
1201
1202 @Override
Kevin Chyn6737c572019-02-08 16:10:54 -08001203 protected List<Face> getEnrolledTemplates(int userId) {
1204 return getBiometricUtils().getBiometricsForUser(getContext(), userId);
1205 }
1206
1207 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001208 protected void notifyClientActiveCallbacks(boolean isActive) {
1209 // noop for Face.
1210 }
1211
Kevin Chyn7782d142019-01-18 12:51:33 -08001212 @Override
1213 protected int statsModality() {
1214 return BiometricsProtoEnums.MODALITY_FACE;
1215 }
1216
Kevin Chyna38653c2019-02-11 17:46:21 -08001217 @Override
1218 protected int getLockoutMode() {
1219 return mCurrentUserLockoutMode;
1220 }
1221
Kevin Chyna56dff72018-06-19 18:41:12 -07001222 /** Gets the face daemon */
1223 private synchronized IBiometricsFace getFaceDaemon() {
1224 if (mDaemon == null) {
1225 Slog.v(TAG, "mDaemon was null, reconnect to face");
1226 try {
1227 mDaemon = IBiometricsFace.getService();
1228 } catch (java.util.NoSuchElementException e) {
1229 // Service doesn't exist or cannot be opened. Logged below.
1230 } catch (RemoteException e) {
1231 Slog.e(TAG, "Failed to get biometric interface", e);
1232 }
1233 if (mDaemon == null) {
1234 Slog.w(TAG, "face HIDL not available");
1235 return null;
1236 }
1237
1238 mDaemon.asBinder().linkToDeath(this, 0);
1239
1240 try {
1241 mHalDeviceId = mDaemon.setCallback(mDaemonCallback).value;
1242 } catch (RemoteException e) {
1243 Slog.e(TAG, "Failed to open face HAL", e);
1244 mDaemon = null; // try again later!
1245 }
1246
1247 if (DEBUG) Slog.v(TAG, "Face HAL id: " + mHalDeviceId);
1248 if (mHalDeviceId != 0) {
1249 loadAuthenticatorIds();
1250 updateActiveGroup(ActivityManager.getCurrentUser(), null);
Kevin Chyn6737c572019-02-08 16:10:54 -08001251 doTemplateCleanupForUser(ActivityManager.getCurrentUser());
Kevin Chyna56dff72018-06-19 18:41:12 -07001252 } else {
1253 Slog.w(TAG, "Failed to open Face HAL!");
1254 MetricsLogger.count(getContext(), "faced_openhal_error", 1);
1255 mDaemon = null;
1256 }
1257 }
1258 return mDaemon;
1259 }
1260
Kevin Chynd79e24e2018-09-25 12:06:59 -07001261 private long startGenerateChallenge(IBinder token) {
Kevin Chyna56dff72018-06-19 18:41:12 -07001262 IBiometricsFace daemon = getFaceDaemon();
1263 if (daemon == null) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001264 Slog.w(TAG, "startGenerateChallenge: no face HAL!");
Kevin Chyna56dff72018-06-19 18:41:12 -07001265 return 0;
1266 }
1267 try {
Kevin Chyne46a2162018-09-20 18:43:01 -07001268 return daemon.generateChallenge(CHALLENGE_TIMEOUT_SEC).value;
Kevin Chyna56dff72018-06-19 18:41:12 -07001269 } catch (RemoteException e) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001270 Slog.e(TAG, "startGenerateChallenge failed", e);
Kevin Chyna56dff72018-06-19 18:41:12 -07001271 }
1272 return 0;
1273 }
1274
Kevin Chynd79e24e2018-09-25 12:06:59 -07001275 private int startRevokeChallenge(IBinder token) {
Kevin Chyna56dff72018-06-19 18:41:12 -07001276 IBiometricsFace daemon = getFaceDaemon();
1277 if (daemon == null) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001278 Slog.w(TAG, "startRevokeChallenge: no face HAL!");
Kevin Chyna56dff72018-06-19 18:41:12 -07001279 return 0;
1280 }
1281 try {
Ilya Matyukhin9dac8482019-07-09 11:03:07 -07001282 final int res = daemon.revokeChallenge();
1283 if (res != Status.OK) {
1284 Slog.e(TAG, "revokeChallenge returned " + res);
1285 }
1286 return res;
Kevin Chyna56dff72018-06-19 18:41:12 -07001287 } catch (RemoteException e) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001288 Slog.e(TAG, "startRevokeChallenge failed", e);
Kevin Chyna56dff72018-06-19 18:41:12 -07001289 }
1290 return 0;
1291 }
1292
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001293 private void dumpInternal(PrintWriter pw) {
1294 JSONObject dump = new JSONObject();
1295 try {
1296 dump.put("service", "Face Manager");
1297
1298 JSONArray sets = new JSONArray();
1299 for (UserInfo user : UserManager.get(getContext()).getUsers()) {
1300 final int userId = user.getUserHandle().getIdentifier();
Kevin Chyna56dff72018-06-19 18:41:12 -07001301 final int N = getBiometricUtils().getBiometricsForUser(getContext(), userId).size();
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001302 PerformanceStats stats = mPerformanceMap.get(userId);
1303 PerformanceStats cryptoStats = mCryptoPerformanceMap.get(userId);
1304 JSONObject set = new JSONObject();
1305 set.put("id", userId);
Kevin Chyna56dff72018-06-19 18:41:12 -07001306 set.put("count", N);
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001307 set.put("accept", (stats != null) ? stats.accept : 0);
1308 set.put("reject", (stats != null) ? stats.reject : 0);
1309 set.put("acquire", (stats != null) ? stats.acquire : 0);
1310 set.put("lockout", (stats != null) ? stats.lockout : 0);
1311 set.put("permanentLockout", (stats != null) ? stats.permanentLockout : 0);
1312 // cryptoStats measures statistics about secure face transactions
1313 // (e.g. to unlock password storage, make secure purchases, etc.)
1314 set.put("acceptCrypto", (cryptoStats != null) ? cryptoStats.accept : 0);
1315 set.put("rejectCrypto", (cryptoStats != null) ? cryptoStats.reject : 0);
1316 set.put("acquireCrypto", (cryptoStats != null) ? cryptoStats.acquire : 0);
1317 set.put("lockoutCrypto", (cryptoStats != null) ? cryptoStats.lockout : 0);
Kevin Chyna56dff72018-06-19 18:41:12 -07001318 set.put("permanentLockoutCrypto",
1319 (cryptoStats != null) ? cryptoStats.permanentLockout : 0);
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001320 sets.put(set);
1321 }
1322
1323 dump.put("prints", sets);
1324 } catch (JSONException e) {
1325 Slog.e(TAG, "dump formatting failure", e);
1326 }
1327 pw.println(dump);
Kevin Chyn9bc1d492019-06-21 15:31:50 -07001328 pw.println("HAL deaths since last reboot: " + mHALDeathCount);
1329
1330 mUsageStats.print(pw);
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001331 }
1332
Joe Onoratodb396002019-04-05 19:49:27 -07001333 private void dumpHal(FileDescriptor fd, String[] args) {
Joe Onoratobf955d22019-03-25 00:16:58 -07001334 // WARNING: CDD restricts image data from leaving TEE unencrypted on
1335 // production devices:
1336 // [C-1-10] MUST not allow unencrypted access to identifiable biometric
1337 // data or any data derived from it (such as embeddings) to the
1338 // Application Processor outside the context of the TEE.
1339 // As such, this API should only be enabled for testing purposes on
1340 // engineering and userdebug builds. All modules in the software stack
1341 // MUST enforce final build products do NOT have this functionality.
1342 // Additionally, the following check MUST NOT be removed.
1343 if (!(Build.IS_ENG || Build.IS_USERDEBUG)) {
1344 return;
1345 }
1346
Joe Onorato108413a2019-04-03 18:20:52 -07001347 // Additionally, this flag allows turning off face for a device
1348 // (either permanently through the build or on an individual device).
1349 if (SystemProperties.getBoolean("ro.face.disable_debug_data", false)
1350 || SystemProperties.getBoolean("persist.face.disable_debug_data", false)) {
1351 return;
1352 }
1353
Joe Onoratodb396002019-04-05 19:49:27 -07001354 // The debug method takes two file descriptors. The first is for text
1355 // output, which we will drop. The second is for binary data, which
1356 // will be the protobuf data.
1357 final IBiometricsFace daemon = getFaceDaemon();
1358 if (daemon != null) {
1359 FileOutputStream devnull = null;
1360 try {
1361 devnull = new FileOutputStream("/dev/null");
1362 final NativeHandle handle = new NativeHandle(
1363 new FileDescriptor[] { devnull.getFD(), fd },
1364 new int[0], false);
1365 daemon.debug(handle, new ArrayList<String>(Arrays.asList(args)));
1366 } catch (IOException | RemoteException ex) {
1367 Slog.d(TAG, "error while reading face debugging data", ex);
1368 } finally {
1369 if (devnull != null) {
1370 try {
1371 devnull.close();
1372 } catch (IOException ex) {
1373 }
1374 }
1375 }
Joe Onoratobf955d22019-03-25 00:16:58 -07001376 }
Joe Onoratobf955d22019-03-25 00:16:58 -07001377 }
Kevin Chyn8b7a0372018-09-17 15:06:05 -07001378}