blob: c26e53ff8583fa1f17ea2912e031bb9973c8dc58 [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 {
Curtis Belmonte45788542019-07-23 11:07:27 -0700332 private static final int ENROLL_TIMEOUT_SEC = 75;
Kevin Chyna56dff72018-06-19 18:41:12 -0700333
334 /**
335 * The following methods contain common code which is shared in biometrics/common.
336 */
Kevin Chyna38653c2019-02-11 17:46:21 -0800337
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200338 @Override // Binder call
Kevin Chynd79e24e2018-09-25 12:06:59 -0700339 public long generateChallenge(IBinder token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700340 checkPermission(MANAGE_BIOMETRIC);
Kevin Chynd79e24e2018-09-25 12:06:59 -0700341 return startGenerateChallenge(token);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200342 }
343
344 @Override // Binder call
Kevin Chynd79e24e2018-09-25 12:06:59 -0700345 public int revokeChallenge(IBinder token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700346 checkPermission(MANAGE_BIOMETRIC);
Ilya Matyukhin9dac8482019-07-09 11:03:07 -0700347 // TODO(b/137106905): Schedule binder calls in FaceService to avoid deadlocks.
348 if (getCurrentClient() == null) {
349 // if we aren't handling any other HIDL calls (mCurrentClient == null), revoke the
350 // challenge right away.
351 return startRevokeChallenge(token);
352 } else {
353 // postpone revoking the challenge until we finish processing the current HIDL call.
354 mRevokeChallengePending = true;
355 return Status.OK;
356 }
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200357 }
358
359 @Override // Binder call
Kevin Chyn593e6262019-06-28 13:24:44 -0700360 public void enroll(int userId, final IBinder token, final byte[] cryptoToken,
Kevin Chyn1f16c2d2018-12-07 13:06:08 -0800361 final IFaceServiceReceiver receiver, final String opPackageName,
362 final int[] disabledFeatures) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700363 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyn593e6262019-06-28 13:24:44 -0700364 updateActiveGroup(userId, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200365
Kevin Chyndbfbed42019-06-13 17:01:30 -0700366 mNotificationManager.cancelAsUser(NOTIFICATION_TAG, NOTIFICATION_ID,
367 UserHandle.CURRENT);
368
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200369 final boolean restricted = isRestricted();
Kevin Chyna56dff72018-06-19 18:41:12 -0700370 final EnrollClientImpl client = new EnrollClientImpl(getContext(), mDaemonWrapper,
371 mHalDeviceId, token, new ServiceListenerImpl(receiver), mCurrentUserId,
Curtis Belmonte45788542019-07-23 11:07:27 -0700372 0 /* groupId */, cryptoToken, restricted, opPackageName, disabledFeatures,
373 ENROLL_TIMEOUT_SEC) {
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700374
375 @Override
376 public int[] getAcquireIgnorelist() {
377 return mEnrollIgnoreList;
378 }
379
380 @Override
381 public int[] getAcquireVendorIgnorelist() {
382 return mEnrollIgnoreListVendor;
383 }
384
Kevin Chyn1429a312019-01-28 16:08:09 -0800385 @Override
386 public boolean shouldVibrate() {
387 return false;
388 }
Kevin Chyn7782d142019-01-18 12:51:33 -0800389
390 @Override
391 protected int statsModality() {
392 return FaceService.this.statsModality();
393 }
Kevin Chyn1429a312019-01-28 16:08:09 -0800394 };
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200395
Kevin Chyn1a878c12019-04-04 15:50:11 -0700396 enrollInternal(client, mCurrentUserId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200397 }
398
399 @Override // Binder call
400 public void cancelEnrollment(final IBinder token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700401 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700402 cancelEnrollmentInternal(token);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200403 }
404
405 @Override // Binder call
Kevin Chyn747e29b2019-01-11 17:01:53 -0800406 public void authenticate(final IBinder token, final long opId, int userId,
Kevin Chyna56dff72018-06-19 18:41:12 -0700407 final IFaceServiceReceiver receiver, final int flags,
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700408 final String opPackageName) {
409 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyn747e29b2019-01-11 17:01:53 -0800410 updateActiveGroup(userId, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200411 final boolean restricted = isRestricted();
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700412 final AuthenticationClientImpl client = new FaceAuthClient(getContext(),
Kevin Chyna56dff72018-06-19 18:41:12 -0700413 mDaemonWrapper, mHalDeviceId, token, new ServiceListenerImpl(receiver),
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700414 mCurrentUserId, 0 /* groupId */, opId, restricted, opPackageName,
Kevin Chyn87f257a2018-11-27 16:26:07 -0800415 0 /* cookie */, false /* requireConfirmation */);
Kevin Chyna56dff72018-06-19 18:41:12 -0700416 authenticateInternal(client, opId, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200417 }
418
419 @Override // Binder call
Kevin Chyn87f257a2018-11-27 16:26:07 -0800420 public void prepareForAuthentication(boolean requireConfirmation, IBinder token, long opId,
Kevin Chyn23289ef2018-11-28 16:32:36 -0800421 int groupId, IBiometricServiceReceiverInternal wrapperReceiver,
422 String opPackageName, int cookie, int callingUid, int callingPid,
423 int callingUserId) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700424 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyn41a80902019-02-06 08:12:15 -0800425 updateActiveGroup(groupId, opPackageName);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700426 final boolean restricted = true; // BiometricPrompt is always restricted
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700427 final AuthenticationClientImpl client = new FaceAuthClient(getContext(),
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700428 mDaemonWrapper, mHalDeviceId, token,
Kevin Chyn87f257a2018-11-27 16:26:07 -0800429 new BiometricPromptServiceListenerImpl(wrapperReceiver),
430 mCurrentUserId, 0 /* groupId */, opId, restricted, opPackageName, cookie,
Kevin Chyn158fefb2019-01-03 18:59:05 -0800431 requireConfirmation);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700432 authenticateInternal(client, opId, opPackageName, callingUid, callingPid,
433 callingUserId);
434 }
435
436 @Override // Binder call
Kevin Chyn87f257a2018-11-27 16:26:07 -0800437 public void startPreparedClient(int cookie) {
438 checkPermission(MANAGE_BIOMETRIC);
439 startCurrentClient(cookie);
440 }
441
442 @Override // Binder call
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200443 public void cancelAuthentication(final IBinder token, final String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700444 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700445 cancelAuthenticationInternal(token, opPackageName);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200446 }
447
448 @Override // Binder call
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700449 public void cancelAuthenticationFromService(final IBinder token, final String opPackageName,
Kevin Chyne92cdae2018-11-21 16:35:04 -0800450 int callingUid, int callingPid, int callingUserId, boolean fromClient) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700451 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyne92cdae2018-11-21 16:35:04 -0800452 cancelAuthenticationInternal(token, opPackageName, callingUid, callingPid,
453 callingUserId, fromClient);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700454 }
455
456 @Override // Binder call
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200457 public void setActiveUser(final int userId) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700458 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700459 setActiveUserInternal(userId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200460 }
461
462 @Override // Binder call
Kevin Chyna56dff72018-06-19 18:41:12 -0700463 public void remove(final IBinder token, final int faceId, final int userId,
Kevin Chyn593e6262019-06-28 13:24:44 -0700464 final IFaceServiceReceiver receiver, final String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700465 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyn593e6262019-06-28 13:24:44 -0700466 updateActiveGroup(userId, opPackageName);
Kevin Chyna56dff72018-06-19 18:41:12 -0700467
468 if (token == null) {
469 Slog.w(TAG, "remove(): token is null");
470 return;
471 }
472
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200473 final boolean restricted = isRestricted();
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700474 final RemovalClient client = new RemovalClient(getContext(), getConstants(),
Kevin Chyn6737c572019-02-08 16:10:54 -0800475 mDaemonWrapper, mHalDeviceId, token, new ServiceListenerImpl(receiver), faceId,
476 0 /* groupId */, userId, restricted, token.toString(), getBiometricUtils()) {
Kevin Chyn7782d142019-01-18 12:51:33 -0800477 @Override
478 protected int statsModality() {
479 return FaceService.this.statsModality();
480 }
481 };
Kevin Chyna56dff72018-06-19 18:41:12 -0700482 removeInternal(client);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200483 }
484
Kevin Chyna56dff72018-06-19 18:41:12 -0700485 @Override
486 public void enumerate(final IBinder token, final int userId,
487 final IFaceServiceReceiver receiver) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700488 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700489
490 final boolean restricted = isRestricted();
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700491 final EnumerateClient client = new EnumerateClient(getContext(), getConstants(),
Kevin Chyn6737c572019-02-08 16:10:54 -0800492 mDaemonWrapper, mHalDeviceId, token, new ServiceListenerImpl(receiver), userId,
493 userId, restricted, getContext().getOpPackageName()) {
Kevin Chyn7782d142019-01-18 12:51:33 -0800494 @Override
495 protected int statsModality() {
496 return FaceService.this.statsModality();
497 }
498 };
Kevin Chyna56dff72018-06-19 18:41:12 -0700499 enumerateInternal(client);
500 }
501
502 @Override
503 public void addLockoutResetCallback(final IBiometricServiceLockoutResetCallback callback)
504 throws RemoteException {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700505 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700506 FaceService.super.addLockoutResetCallback(callback);
507 }
508
509 @Override // Binder call
510 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
511 if (!DumpUtils.checkDumpPermission(getContext(), TAG, pw)) {
512 return;
513 }
514
515 final long ident = Binder.clearCallingIdentity();
516 try {
Joe Onoratodb396002019-04-05 19:49:27 -0700517 if (args.length > 1 && "--hal".equals(args[0])) {
518 dumpHal(fd, Arrays.copyOfRange(args, 1, args.length, args.getClass()));
Kevin Chyna56dff72018-06-19 18:41:12 -0700519 } else {
520 dumpInternal(pw);
521 }
522 } finally {
523 Binder.restoreCallingIdentity(ident);
524 }
525 }
526
527 /**
528 * The following methods don't use any common code from BiometricService
529 */
530
531 // TODO: refactor out common code here
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200532 @Override // Binder call
533 public boolean isHardwareDetected(long deviceId, String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700534 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700535 if (!canUseBiometric(opPackageName, false /* foregroundOnly */,
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200536 Binder.getCallingUid(), Binder.getCallingPid(),
537 UserHandle.getCallingUserId())) {
538 return false;
539 }
540
541 final long token = Binder.clearCallingIdentity();
542 try {
543 IBiometricsFace daemon = getFaceDaemon();
544 return daemon != null && mHalDeviceId != 0;
545 } finally {
546 Binder.restoreCallingIdentity(token);
547 }
548 }
549
550 @Override // Binder call
Kevin Chyna56dff72018-06-19 18:41:12 -0700551 public void rename(final int faceId, final String name) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700552 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700553 if (!isCurrentUserOrProfile(UserHandle.getCallingUserId())) {
554 return;
555 }
556 mHandler.post(new Runnable() {
557 @Override
558 public void run() {
559 getBiometricUtils().renameBiometricForUser(getContext(), mCurrentUserId,
560 faceId, name);
561 }
562 });
563 }
564
565 @Override // Binder call
566 public List<Face> getEnrolledFaces(int userId, String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700567 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyna56dff72018-06-19 18:41:12 -0700568 if (!canUseBiometric(opPackageName, false /* foregroundOnly */,
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200569 Binder.getCallingUid(), Binder.getCallingPid(),
570 UserHandle.getCallingUserId())) {
571 return null;
572 }
573
Kevin Chyn6737c572019-02-08 16:10:54 -0800574 return FaceService.this.getEnrolledTemplates(userId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200575 }
576
577 @Override // Binder call
Kevin Chyna56dff72018-06-19 18:41:12 -0700578 public boolean hasEnrolledFaces(int userId, String opPackageName) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700579 checkPermission(USE_BIOMETRIC_INTERNAL);
Kevin Chyna56dff72018-06-19 18:41:12 -0700580 if (!canUseBiometric(opPackageName, false /* foregroundOnly */,
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200581 Binder.getCallingUid(), Binder.getCallingPid(),
582 UserHandle.getCallingUserId())) {
583 return false;
584 }
585
Kevin Chyna56dff72018-06-19 18:41:12 -0700586 return FaceService.this.hasEnrolledBiometrics(userId);
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200587 }
588
589 @Override // Binder call
590 public long getAuthenticatorId(String opPackageName) {
591 // In this method, we're not checking whether the caller is permitted to use face
592 // API because current authenticator ID is leaked (in a more contrived way) via Android
593 // Keystore (android.security.keystore package): the user of that API can create a key
594 // which requires face authentication for its use, and then query the key's
595 // characteristics (hidden API) which returns, among other things, face
596 // authenticator ID which was active at key creation time.
597 //
598 // Reason: The part of Android Keystore which runs inside an app's process invokes this
599 // method in certain cases. Those cases are not always where the developer demonstrates
600 // explicit intent to use face functionality. Thus, to avoiding throwing an
601 // unexpected SecurityException this method does not check whether its caller is
602 // permitted to use face API.
603 //
604 // The permission check should be restored once Android Keystore no longer invokes this
605 // method from inside app processes.
606
607 return FaceService.this.getAuthenticatorId(opPackageName);
608 }
609
610 @Override // Binder call
Kevin Chyna38653c2019-02-11 17:46:21 -0800611 public void resetLockout(byte[] token) {
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700612 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyn1d6a2862019-04-02 16:20:21 -0700613
614 if (!FaceService.this.hasEnrolledBiometrics(mCurrentUserId)) {
615 Slog.w(TAG, "Ignoring lockout reset, no templates enrolled");
616 return;
617 }
618
Kevin Chynbe67ce02019-06-10 16:14:22 -0700619 Slog.d(TAG, "Resetting lockout for user: " + mCurrentUserId);
620
Kevin Chyna38653c2019-02-11 17:46:21 -0800621 try {
622 mDaemonWrapper.resetLockout(token);
623 } catch (RemoteException e) {
624 Slog.e(getTag(), "Unable to reset lockout", e);
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);
Kevin Chyn593e6262019-06-28 13:24:44 -0700632 updateActiveGroup(userId, opPackageName);
Kevin Chynd79e24e2018-09-25 12:06:59 -0700633
Kevin Chyne62749a2019-04-02 19:33:56 -0700634 mHandler.post(() -> {
635 if (!FaceService.this.hasEnrolledBiometrics(mCurrentUserId)) {
636 Slog.e(TAG, "No enrolled biometrics while setting feature: " + feature);
637 return;
Kevin Chynb95f1522019-03-04 16:45:15 -0800638 }
Kevin Chyne62749a2019-04-02 19:33:56 -0700639
640 final ArrayList<Byte> byteToken = new ArrayList<>();
641 for (int i = 0; i < token.length; i++) {
642 byteToken.add(token[i]);
643 }
644
645 // TODO: Support multiple faces
646 final int faceId = getFirstTemplateForUser(mCurrentUserId);
647
648 if (mDaemon != null) {
649 try {
650 final int result = mDaemon.setFeature(feature, enabled, byteToken, faceId);
651 receiver.onFeatureSet(result == Status.OK, feature);
652 } catch (RemoteException e) {
653 Slog.e(getTag(), "Unable to set feature: " + feature
654 + " to enabled:" + enabled, e);
655 }
656 }
657 });
658
Kevin Chynd79e24e2018-09-25 12:06:59 -0700659 }
660
661 @Override
Kevin Chyn593e6262019-06-28 13:24:44 -0700662 public void getFeature(int userId, int feature, IFaceServiceReceiver receiver,
663 final String opPackageName) {
Kevin Chynd79e24e2018-09-25 12:06:59 -0700664 checkPermission(MANAGE_BIOMETRIC);
Kevin Chyn593e6262019-06-28 13:24:44 -0700665 updateActiveGroup(userId, opPackageName);
Kevin Chynd79e24e2018-09-25 12:06:59 -0700666
Kevin Chyne62749a2019-04-02 19:33:56 -0700667 mHandler.post(() -> {
668 // This should ideally return tri-state, but the user isn't shown settings unless
669 // they are enrolled so it's fine for now.
670 if (!FaceService.this.hasEnrolledBiometrics(mCurrentUserId)) {
671 Slog.e(TAG, "No enrolled biometrics while getting feature: " + feature);
672 return;
Kevin Chynb95f1522019-03-04 16:45:15 -0800673 }
Kevin Chyne62749a2019-04-02 19:33:56 -0700674
675 // TODO: Support multiple faces
676 final int faceId = getFirstTemplateForUser(mCurrentUserId);
677
678 if (mDaemon != null) {
679 try {
680 OptionalBool result = mDaemon.getFeature(feature, faceId);
681 receiver.onFeatureGet(result.status == Status.OK, feature, result.value);
682 } catch (RemoteException e) {
683 Slog.e(getTag(), "Unable to getRequireAttention", e);
684 }
685 }
686 });
687
Kevin Chynd79e24e2018-09-25 12:06:59 -0700688 }
Kevin Chyn57f119b2018-10-25 12:03:41 -0700689
690 @Override
691 public void userActivity() {
692 checkPermission(MANAGE_BIOMETRIC);
693
694 if (mDaemon != null) {
695 try {
696 mDaemon.userActivity();
697 } catch (RemoteException e) {
698 Slog.e(getTag(), "Unable to send userActivity", e);
699 }
700 }
701 }
Kevin Chynb95f1522019-03-04 16:45:15 -0800702
703 // TODO: Support multiple faces
704 private int getFirstTemplateForUser(int user) {
705 final List<Face> faces = FaceService.this.getEnrolledTemplates(user);
706 if (!faces.isEmpty()) {
707 return faces.get(0).getBiometricId();
708 }
709 return 0;
710 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700711 }
712
713 /**
714 * Receives callbacks from the ClientMonitor implementations. The results are forwarded to
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700715 * BiometricPrompt.
716 */
Kevin Chyne92cdae2018-11-21 16:35:04 -0800717 private class BiometricPromptServiceListenerImpl extends BiometricServiceListener {
Kevin Chyn23289ef2018-11-28 16:32:36 -0800718 BiometricPromptServiceListenerImpl(IBiometricServiceReceiverInternal wrapperReceiver) {
Kevin Chyn87f257a2018-11-27 16:26:07 -0800719 super(wrapperReceiver);
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700720 }
721
722 @Override
723 public void onAcquired(long deviceId, int acquiredInfo, int vendorCode)
724 throws RemoteException {
725 /**
726 * Map the acquired codes onto existing {@link BiometricConstants} acquired codes.
727 */
Kevin Chyne92cdae2018-11-21 16:35:04 -0800728 if (getWrapperReceiver() != null) {
729 getWrapperReceiver().onAcquired(
Kevin Chyn8b7a0372018-09-17 15:06:05 -0700730 FaceManager.getMappedAcquiredInfo(acquiredInfo, vendorCode),
731 FaceManager.getAcquiredString(getContext(), acquiredInfo, vendorCode));
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700732 }
733 }
734
735 @Override
Kevin Chyn87f257a2018-11-27 16:26:07 -0800736 public void onError(long deviceId, int error, int vendorCode, int cookie)
737 throws RemoteException {
Kevin Chyne92cdae2018-11-21 16:35:04 -0800738 if (getWrapperReceiver() != null) {
Kevin Chyn23289ef2018-11-28 16:32:36 -0800739 getWrapperReceiver().onError(cookie, error,
740 FaceManager.getErrorString(getContext(), error, vendorCode));
Kevin Chyna24e9fd2018-08-27 12:39:17 -0700741 }
742 }
743 }
744
745 /**
746 * Receives callbacks from the ClientMonitor implementations. The results are forwarded to
Kevin Chyna56dff72018-06-19 18:41:12 -0700747 * the FaceManager.
748 */
749 private class ServiceListenerImpl implements ServiceListener {
Kevin Chyna56dff72018-06-19 18:41:12 -0700750 private IFaceServiceReceiver mFaceServiceReceiver;
751
752 public ServiceListenerImpl(IFaceServiceReceiver receiver) {
753 mFaceServiceReceiver = receiver;
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200754 }
755
756 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -0700757 public void onEnrollResult(BiometricAuthenticator.Identifier identifier, int remaining)
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200758 throws RemoteException {
Kevin Chyna56dff72018-06-19 18:41:12 -0700759 if (mFaceServiceReceiver != null) {
760 mFaceServiceReceiver.onEnrollResult(identifier.getDeviceId(),
761 identifier.getBiometricId(),
762 remaining);
763 }
Gilad Brettercb51b8b2018-03-22 17:04:51 +0200764 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700765
766 @Override
767 public void onAcquired(long deviceId, int acquiredInfo, int vendorCode)
768 throws RemoteException {
769 if (mFaceServiceReceiver != null) {
770 mFaceServiceReceiver.onAcquired(deviceId, acquiredInfo, vendorCode);
771 }
772 }
773
774 @Override
775 public void onAuthenticationSucceeded(long deviceId,
776 BiometricAuthenticator.Identifier biometric, int userId)
777 throws RemoteException {
778 if (mFaceServiceReceiver != null) {
Kevin Chyn628b7182018-11-13 12:00:48 -0800779 if (biometric == null || biometric instanceof Face) {
Kevin Chyn8d2694a2019-04-11 18:30:40 -0700780 mFaceServiceReceiver.onAuthenticationSucceeded(deviceId, (Face) biometric,
781 userId);
Kevin Chyna56dff72018-06-19 18:41:12 -0700782 } else {
783 Slog.e(TAG, "onAuthenticationSucceeded received non-face biometric");
784 }
785 }
786 }
787
788 @Override
789 public void onAuthenticationFailed(long deviceId) throws RemoteException {
790 if (mFaceServiceReceiver != null) {
791 mFaceServiceReceiver.onAuthenticationFailed(deviceId);
792 }
793 }
794
795 @Override
Kevin Chyn87f257a2018-11-27 16:26:07 -0800796 public void onError(long deviceId, int error, int vendorCode, int cookie)
797 throws RemoteException {
Kevin Chyna56dff72018-06-19 18:41:12 -0700798 if (mFaceServiceReceiver != null) {
799 mFaceServiceReceiver.onError(deviceId, error, vendorCode);
800 }
801 }
802
803 @Override
804 public void onRemoved(BiometricAuthenticator.Identifier identifier,
805 int remaining) throws RemoteException {
806 if (mFaceServiceReceiver != null) {
807 mFaceServiceReceiver.onRemoved(identifier.getDeviceId(),
808 identifier.getBiometricId(), remaining);
809 }
810 }
811
812 @Override
813 public void onEnumerated(BiometricAuthenticator.Identifier identifier, int remaining)
814 throws RemoteException {
815 if (mFaceServiceReceiver != null) {
Kevin Chyn6737c572019-02-08 16:10:54 -0800816 mFaceServiceReceiver.onEnumerated(identifier.getDeviceId(),
817 identifier.getBiometricId(), remaining);
Kevin Chyna56dff72018-06-19 18:41:12 -0700818 }
819 }
820 }
821
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700822 private final FaceConstants mFaceConstants = new FaceConstants();
Kevin Chyna56dff72018-06-19 18:41:12 -0700823
824 @GuardedBy("this")
825 private IBiometricsFace mDaemon;
Kevin Chyn9bc1d492019-06-21 15:31:50 -0700826 private UsageStats mUsageStats;
Ilya Matyukhin9dac8482019-07-09 11:03:07 -0700827 private boolean mRevokeChallengePending = false;
Kevin Chyna38653c2019-02-11 17:46:21 -0800828 // One of the AuthenticationClient constants
829 private int mCurrentUserLockoutMode;
Kevin Chyna56dff72018-06-19 18:41:12 -0700830
Kevin Chyndbfbed42019-06-13 17:01:30 -0700831 private NotificationManager mNotificationManager;
832
Kevin Chyn4cc49f72019-04-24 13:53:35 -0700833 private int[] mBiometricPromptIgnoreList;
834 private int[] mBiometricPromptIgnoreListVendor;
835 private int[] mKeyguardIgnoreList;
836 private int[] mKeyguardIgnoreListVendor;
837 private int[] mEnrollIgnoreList;
838 private int[] mEnrollIgnoreListVendor;
839
Kevin Chyna56dff72018-06-19 18:41:12 -0700840 /**
841 * Receives callbacks from the HAL.
842 */
843 private IBiometricsFaceClientCallback mDaemonCallback =
844 new IBiometricsFaceClientCallback.Stub() {
Kevin Chyn6737c572019-02-08 16:10:54 -0800845 @Override
846 public void onEnrollResult(final long deviceId, int faceId, int userId,
847 int remaining) {
848 mHandler.post(() -> {
849 final Face face = new Face(getBiometricUtils()
850 .getUniqueName(getContext(), userId), faceId, deviceId);
851 FaceService.super.handleEnrollResult(face, remaining);
Kevin Chyn576811e2019-06-12 14:50:35 -0700852
853 // Enrollment changes the authenticatorId, so update it here.
854 IBiometricsFace daemon = getFaceDaemon();
855 if (remaining == 0 && daemon != null) {
856 try {
857 mAuthenticatorIds.put(userId,
858 hasEnrolledBiometrics(userId) ? daemon.getAuthenticatorId().value
859 : 0L);
860 } catch (RemoteException e) {
861 Slog.e(TAG, "Unable to get authenticatorId", e);
862 }
863 }
Kevin Chyn6737c572019-02-08 16:10:54 -0800864 });
865 }
866
867 @Override
868 public void onAcquired(final long deviceId, final int userId,
869 final int acquiredInfo,
870 final int vendorCode) {
871 mHandler.post(() -> {
872 FaceService.super.handleAcquired(deviceId, acquiredInfo, vendorCode);
873 });
874 }
875
876 @Override
877 public void onAuthenticated(final long deviceId, final int faceId, final int userId,
878 ArrayList<Byte> token) {
879 mHandler.post(() -> {
880 Face face = new Face("", faceId, deviceId);
881 FaceService.super.handleAuthenticated(face, token);
882 });
883 }
884
885 @Override
886 public void onError(final long deviceId, final int userId, final int error,
887 final int vendorCode) {
888 mHandler.post(() -> {
889 FaceService.super.handleError(deviceId, error, vendorCode);
890
891 // TODO: this chunk of code should be common to all biometric services
892 if (error == BiometricConstants.BIOMETRIC_ERROR_HW_UNAVAILABLE) {
893 // If we get HW_UNAVAILABLE, try to connect again later...
894 Slog.w(TAG, "Got ERROR_HW_UNAVAILABLE; try reconnecting next client.");
895 synchronized (this) {
896 mDaemon = null;
897 mHalDeviceId = 0;
898 mCurrentUserId = UserHandle.USER_NULL;
899 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700900 }
Kevin Chyn6737c572019-02-08 16:10:54 -0800901 });
902 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700903
Kevin Chyn6737c572019-02-08 16:10:54 -0800904 @Override
Kevin Chyn31ae8d22019-03-11 14:12:32 -0700905 public void onRemoved(final long deviceId, ArrayList<Integer> faceIds, final int userId) {
Kevin Chyn6737c572019-02-08 16:10:54 -0800906 mHandler.post(() -> {
Kevin Chyn31ae8d22019-03-11 14:12:32 -0700907 if (!faceIds.isEmpty()) {
908 for (int i = 0; i < faceIds.size(); i++) {
909 final Face face = new Face("", faceIds.get(i), deviceId);
910 // Convert to old behavior
911 FaceService.super.handleRemoved(face, faceIds.size() - i - 1);
912 }
913 } else {
914 final Face face = new Face("", 0 /* identifier */, deviceId);
915 FaceService.super.handleRemoved(face, 0 /* remaining */);
916 }
917
Kevin Chyn6737c572019-02-08 16:10:54 -0800918 });
919 }
920
921 @Override
922 public void onEnumerate(long deviceId, ArrayList<Integer> faceIds, int userId)
923 throws RemoteException {
924 mHandler.post(() -> {
925 if (!faceIds.isEmpty()) {
926 for (int i = 0; i < faceIds.size(); i++) {
927 final Face face = new Face("", faceIds.get(i), deviceId);
928 // Convert to old old behavior
929 FaceService.super.handleEnumerate(face, faceIds.size() - i - 1);
930 }
931 } else {
932 // For face, the HIDL contract is to receive an empty list when there are no
933 // templates enrolled. Send a null identifier since we don't consume them
934 // anywhere, and send remaining == 0 to plumb this with existing common code.
935 FaceService.super.handleEnumerate(null /* identifier */, 0);
Kevin Chyna56dff72018-06-19 18:41:12 -0700936 }
Kevin Chyn6737c572019-02-08 16:10:54 -0800937 });
938 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700939
Kevin Chyn6737c572019-02-08 16:10:54 -0800940 @Override
941 public void onLockoutChanged(long duration) {
Kevin Chyna38653c2019-02-11 17:46:21 -0800942 Slog.d(TAG, "onLockoutChanged: " + duration);
943 if (duration == 0) {
944 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_NONE;
945 } else if (duration == Long.MAX_VALUE) {
946 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_PERMANENT;
947 } else {
948 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_TIMED;
949 }
Kevin Chyna56dff72018-06-19 18:41:12 -0700950
Kevin Chyna38653c2019-02-11 17:46:21 -0800951 mHandler.post(() -> {
952 if (duration == 0) {
953 notifyLockoutResetMonitors();
954 }
955 });
Kevin Chyn6737c572019-02-08 16:10:54 -0800956 }
957 };
Kevin Chyna56dff72018-06-19 18:41:12 -0700958
959 /**
960 * Wraps the HAL-specific code and is passed to the ClientMonitor implementations so that they
961 * can be shared between the multiple biometric services.
962 */
963 private final DaemonWrapper mDaemonWrapper = new DaemonWrapper() {
964 @Override
965 public int authenticate(long operationId, int groupId) throws RemoteException {
966 IBiometricsFace daemon = getFaceDaemon();
967 if (daemon == null) {
968 Slog.w(TAG, "authenticate(): no face HAL!");
969 return ERROR_ESRCH;
970 }
971 return daemon.authenticate(operationId);
972 }
973
974 @Override
975 public int cancel() throws RemoteException {
976 IBiometricsFace daemon = getFaceDaemon();
977 if (daemon == null) {
978 Slog.w(TAG, "cancel(): no face HAL!");
979 return ERROR_ESRCH;
980 }
981 return daemon.cancel();
982 }
983
984 @Override
985 public int remove(int groupId, int biometricId) throws RemoteException {
986 IBiometricsFace daemon = getFaceDaemon();
987 if (daemon == null) {
988 Slog.w(TAG, "remove(): no face HAL!");
989 return ERROR_ESRCH;
990 }
991 return daemon.remove(biometricId);
992 }
993
994 @Override
995 public int enumerate() throws RemoteException {
996 IBiometricsFace daemon = getFaceDaemon();
997 if (daemon == null) {
998 Slog.w(TAG, "enumerate(): no face HAL!");
999 return ERROR_ESRCH;
1000 }
1001 return daemon.enumerate();
1002 }
1003
1004 @Override
Kevin Chyn1f16c2d2018-12-07 13:06:08 -08001005 public int enroll(byte[] cryptoToken, int groupId, int timeout,
1006 ArrayList<Integer> disabledFeatures) throws RemoteException {
Kevin Chyna56dff72018-06-19 18:41:12 -07001007 IBiometricsFace daemon = getFaceDaemon();
1008 if (daemon == null) {
1009 Slog.w(TAG, "enroll(): no face HAL!");
1010 return ERROR_ESRCH;
1011 }
1012 final ArrayList<Byte> token = new ArrayList<>();
1013 for (int i = 0; i < cryptoToken.length; i++) {
1014 token.add(cryptoToken[i]);
1015 }
Kevin Chyn1f16c2d2018-12-07 13:06:08 -08001016 return daemon.enroll(token, timeout, disabledFeatures);
Kevin Chyna56dff72018-06-19 18:41:12 -07001017 }
Kevin Chyna38653c2019-02-11 17:46:21 -08001018
1019 @Override
1020 public void resetLockout(byte[] cryptoToken) throws RemoteException {
1021 IBiometricsFace daemon = getFaceDaemon();
1022 if (daemon == null) {
1023 Slog.w(TAG, "resetLockout(): no face HAL!");
1024 return;
1025 }
1026 final ArrayList<Byte> token = new ArrayList<>();
1027 for (int i = 0; i < cryptoToken.length; i++) {
1028 token.add(cryptoToken[i]);
1029 }
1030 daemon.resetLockout(token);
1031 }
Kevin Chyna56dff72018-06-19 18:41:12 -07001032 };
1033
1034
1035 public FaceService(Context context) {
1036 super(context);
Kevin Chyn4cc49f72019-04-24 13:53:35 -07001037
Kevin Chyn9bc1d492019-06-21 15:31:50 -07001038 mUsageStats = new UsageStats(context);
1039
Kevin Chyndbfbed42019-06-13 17:01:30 -07001040 mNotificationManager = getContext().getSystemService(NotificationManager.class);
1041
Kevin Chyn4cc49f72019-04-24 13:53:35 -07001042 mBiometricPromptIgnoreList = getContext().getResources()
1043 .getIntArray(R.array.config_face_acquire_biometricprompt_ignorelist);
1044 mBiometricPromptIgnoreListVendor = getContext().getResources()
1045 .getIntArray(R.array.config_face_acquire_vendor_biometricprompt_ignorelist);
1046 mKeyguardIgnoreList = getContext().getResources()
1047 .getIntArray(R.array.config_face_acquire_keyguard_ignorelist);
1048 mKeyguardIgnoreListVendor = getContext().getResources()
1049 .getIntArray(R.array.config_face_acquire_vendor_keyguard_ignorelist);
1050 mEnrollIgnoreList = getContext().getResources()
1051 .getIntArray(R.array.config_face_acquire_enroll_ignorelist);
1052 mEnrollIgnoreListVendor = getContext().getResources()
1053 .getIntArray(R.array.config_face_acquire_vendor_enroll_ignorelist);
Kevin Chyna56dff72018-06-19 18:41:12 -07001054 }
1055
1056 @Override
Ilya Matyukhin9dac8482019-07-09 11:03:07 -07001057 protected void removeClient(ClientMonitor client) {
1058 super.removeClient(client);
1059 if (mRevokeChallengePending) {
1060 startRevokeChallenge(null);
1061 mRevokeChallengePending = false;
1062 }
1063 }
1064
1065 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001066 public void onStart() {
Kevin Chyn5a2ff5d2018-08-29 19:07:30 -07001067 super.onStart();
Kevin Chyna56dff72018-06-19 18:41:12 -07001068 publishBinderService(Context.FACE_SERVICE, new FaceServiceWrapper());
Kevin Chyn8398a712019-06-13 16:44:50 -07001069 // Get the face daemon on FaceService's on thread so SystemServerInitThreadPool isn't
1070 // blocked
1071 SystemServerInitThreadPool.get().submit(() -> mHandler.post(this::getFaceDaemon),
1072 TAG + ".onStart");
Kevin Chyna56dff72018-06-19 18:41:12 -07001073 }
1074
1075 @Override
1076 public String getTag() {
1077 return TAG;
1078 }
1079
1080 @Override
Kevin Chyn6737c572019-02-08 16:10:54 -08001081 protected DaemonWrapper getDaemonWrapper() {
1082 return mDaemonWrapper;
1083 }
1084
1085 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001086 protected BiometricUtils getBiometricUtils() {
1087 return FaceUtils.getInstance();
1088 }
1089
1090 @Override
Kevin Chyn4cc49f72019-04-24 13:53:35 -07001091 protected Constants getConstants() {
1092 return mFaceConstants;
Kevin Chyna56dff72018-06-19 18:41:12 -07001093 }
1094
1095 @Override
1096 protected boolean hasReachedEnrollmentLimit(int userId) {
1097 final int limit = getContext().getResources().getInteger(
Kevin Chyn017e76e2018-06-27 18:35:06 -07001098 com.android.internal.R.integer.config_faceMaxTemplatesPerUser);
Kevin Chyn6737c572019-02-08 16:10:54 -08001099 final int enrolled = FaceService.this.getEnrolledTemplates(userId).size();
Kevin Chyna56dff72018-06-19 18:41:12 -07001100 if (enrolled >= limit) {
Kevin Chyn1a878c12019-04-04 15:50:11 -07001101 Slog.w(TAG, "Too many faces registered, user: " + userId);
Kevin Chyna56dff72018-06-19 18:41:12 -07001102 return true;
1103 }
1104 return false;
1105 }
1106
1107 @Override
Kevin Chyn9ba99912019-01-16 16:24:36 -08001108 public void serviceDied(long cookie) {
1109 super.serviceDied(cookie);
1110 mDaemon = null;
Jim Miller7b78b222019-02-07 16:47:38 -08001111
1112 mCurrentUserId = UserHandle.USER_NULL; // Force updateActiveGroup() to re-evaluate
Kevin Chyn9ba99912019-01-16 16:24:36 -08001113 }
1114
1115 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001116 protected void updateActiveGroup(int userId, String clientPackage) {
1117 IBiometricsFace daemon = getFaceDaemon();
1118
1119 if (daemon != null) {
1120 try {
1121 userId = getUserOrWorkProfileId(clientPackage, userId);
1122 if (userId != mCurrentUserId) {
Kevin Chyn27e33d02019-04-30 01:37:32 +00001123 final File baseDir = Environment.getDataVendorDeDirectory(userId);
Kevin Chyna56dff72018-06-19 18:41:12 -07001124 final File faceDir = new File(baseDir, FACE_DATA_DIR);
1125 if (!faceDir.exists()) {
1126 if (!faceDir.mkdir()) {
1127 Slog.v(TAG, "Cannot make directory: " + faceDir.getAbsolutePath());
1128 return;
1129 }
1130 // Calling mkdir() from this process will create a directory with our
1131 // permissions (inherited from the containing dir). This command fixes
1132 // the label.
1133 if (!SELinux.restorecon(faceDir)) {
1134 Slog.w(TAG, "Restorecons failed. Directory will have wrong label.");
1135 return;
1136 }
1137 }
1138
1139 daemon.setActiveUser(userId, faceDir.getAbsolutePath());
1140 mCurrentUserId = userId;
Kevin Chyn576811e2019-06-12 14:50:35 -07001141 mAuthenticatorIds.put(userId,
1142 hasEnrolledBiometrics(userId) ? daemon.getAuthenticatorId().value : 0L);
Kevin Chyna56dff72018-06-19 18:41:12 -07001143 }
Kevin Chyna56dff72018-06-19 18:41:12 -07001144 } catch (RemoteException e) {
1145 Slog.e(TAG, "Failed to setActiveUser():", e);
1146 }
1147 }
1148 }
1149
1150 @Override
1151 protected String getLockoutResetIntent() {
1152 return ACTION_LOCKOUT_RESET;
1153 }
1154
1155 @Override
1156 protected String getLockoutBroadcastPermission() {
1157 return RESET_FACE_LOCKOUT;
1158 }
1159
1160 @Override
1161 protected long getHalDeviceId() {
1162 return mHalDeviceId;
1163 }
1164
1165 @Override
Kevin Chyna38653c2019-02-11 17:46:21 -08001166 protected void handleUserSwitching(int userId) {
1167 super.handleUserSwitching(userId);
1168 // Will be updated when we get the callback from HAL
1169 mCurrentUserLockoutMode = AuthenticationClient.LOCKOUT_NONE;
1170 }
1171
1172 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001173 protected boolean hasEnrolledBiometrics(int userId) {
1174 if (userId != UserHandle.getCallingUserId()) {
1175 checkPermission(INTERACT_ACROSS_USERS);
1176 }
1177 return getBiometricUtils().getBiometricsForUser(getContext(), userId).size() > 0;
1178 }
1179
1180 @Override
1181 protected String getManageBiometricPermission() {
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001182 return MANAGE_BIOMETRIC;
Kevin Chyna56dff72018-06-19 18:41:12 -07001183 }
1184
1185 @Override
1186 protected void checkUseBiometricPermission() {
Kevin Chyna24e9fd2018-08-27 12:39:17 -07001187 // noop for Face. The permission checks are all done on the incoming binder call.
Kevin Chyna56dff72018-06-19 18:41:12 -07001188 }
1189
1190 @Override
Kevin Chynb3c05aa2018-09-21 16:50:32 -07001191 protected boolean checkAppOps(int uid, String opPackageName) {
1192 return mAppOps.noteOp(AppOpsManager.OP_USE_BIOMETRIC, uid, opPackageName)
1193 == AppOpsManager.MODE_ALLOWED;
Kevin Chyna56dff72018-06-19 18:41:12 -07001194 }
1195
1196 @Override
Kevin Chyn6737c572019-02-08 16:10:54 -08001197 protected List<Face> getEnrolledTemplates(int userId) {
1198 return getBiometricUtils().getBiometricsForUser(getContext(), userId);
1199 }
1200
1201 @Override
Kevin Chyna56dff72018-06-19 18:41:12 -07001202 protected void notifyClientActiveCallbacks(boolean isActive) {
1203 // noop for Face.
1204 }
1205
Kevin Chyn7782d142019-01-18 12:51:33 -08001206 @Override
1207 protected int statsModality() {
1208 return BiometricsProtoEnums.MODALITY_FACE;
1209 }
1210
Kevin Chyna38653c2019-02-11 17:46:21 -08001211 @Override
1212 protected int getLockoutMode() {
1213 return mCurrentUserLockoutMode;
1214 }
1215
Kevin Chyna56dff72018-06-19 18:41:12 -07001216 /** Gets the face daemon */
1217 private synchronized IBiometricsFace getFaceDaemon() {
1218 if (mDaemon == null) {
1219 Slog.v(TAG, "mDaemon was null, reconnect to face");
1220 try {
1221 mDaemon = IBiometricsFace.getService();
1222 } catch (java.util.NoSuchElementException e) {
1223 // Service doesn't exist or cannot be opened. Logged below.
1224 } catch (RemoteException e) {
1225 Slog.e(TAG, "Failed to get biometric interface", e);
1226 }
1227 if (mDaemon == null) {
1228 Slog.w(TAG, "face HIDL not available");
1229 return null;
1230 }
1231
1232 mDaemon.asBinder().linkToDeath(this, 0);
1233
1234 try {
1235 mHalDeviceId = mDaemon.setCallback(mDaemonCallback).value;
1236 } catch (RemoteException e) {
1237 Slog.e(TAG, "Failed to open face HAL", e);
1238 mDaemon = null; // try again later!
1239 }
1240
1241 if (DEBUG) Slog.v(TAG, "Face HAL id: " + mHalDeviceId);
1242 if (mHalDeviceId != 0) {
1243 loadAuthenticatorIds();
1244 updateActiveGroup(ActivityManager.getCurrentUser(), null);
Kevin Chyn6737c572019-02-08 16:10:54 -08001245 doTemplateCleanupForUser(ActivityManager.getCurrentUser());
Kevin Chyna56dff72018-06-19 18:41:12 -07001246 } else {
1247 Slog.w(TAG, "Failed to open Face HAL!");
1248 MetricsLogger.count(getContext(), "faced_openhal_error", 1);
1249 mDaemon = null;
1250 }
1251 }
1252 return mDaemon;
1253 }
1254
Kevin Chynd79e24e2018-09-25 12:06:59 -07001255 private long startGenerateChallenge(IBinder token) {
Kevin Chyna56dff72018-06-19 18:41:12 -07001256 IBiometricsFace daemon = getFaceDaemon();
1257 if (daemon == null) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001258 Slog.w(TAG, "startGenerateChallenge: no face HAL!");
Kevin Chyna56dff72018-06-19 18:41:12 -07001259 return 0;
1260 }
1261 try {
Kevin Chyne46a2162018-09-20 18:43:01 -07001262 return daemon.generateChallenge(CHALLENGE_TIMEOUT_SEC).value;
Kevin Chyna56dff72018-06-19 18:41:12 -07001263 } catch (RemoteException e) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001264 Slog.e(TAG, "startGenerateChallenge failed", e);
Kevin Chyna56dff72018-06-19 18:41:12 -07001265 }
1266 return 0;
1267 }
1268
Kevin Chynd79e24e2018-09-25 12:06:59 -07001269 private int startRevokeChallenge(IBinder token) {
Kevin Chyna56dff72018-06-19 18:41:12 -07001270 IBiometricsFace daemon = getFaceDaemon();
1271 if (daemon == null) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001272 Slog.w(TAG, "startRevokeChallenge: no face HAL!");
Kevin Chyna56dff72018-06-19 18:41:12 -07001273 return 0;
1274 }
1275 try {
Ilya Matyukhin9dac8482019-07-09 11:03:07 -07001276 final int res = daemon.revokeChallenge();
1277 if (res != Status.OK) {
1278 Slog.e(TAG, "revokeChallenge returned " + res);
1279 }
1280 return res;
Kevin Chyna56dff72018-06-19 18:41:12 -07001281 } catch (RemoteException e) {
Kevin Chynd79e24e2018-09-25 12:06:59 -07001282 Slog.e(TAG, "startRevokeChallenge failed", e);
Kevin Chyna56dff72018-06-19 18:41:12 -07001283 }
1284 return 0;
1285 }
1286
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001287 private void dumpInternal(PrintWriter pw) {
1288 JSONObject dump = new JSONObject();
1289 try {
1290 dump.put("service", "Face Manager");
1291
1292 JSONArray sets = new JSONArray();
1293 for (UserInfo user : UserManager.get(getContext()).getUsers()) {
1294 final int userId = user.getUserHandle().getIdentifier();
Kevin Chyna56dff72018-06-19 18:41:12 -07001295 final int N = getBiometricUtils().getBiometricsForUser(getContext(), userId).size();
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001296 PerformanceStats stats = mPerformanceMap.get(userId);
1297 PerformanceStats cryptoStats = mCryptoPerformanceMap.get(userId);
1298 JSONObject set = new JSONObject();
1299 set.put("id", userId);
Kevin Chyna56dff72018-06-19 18:41:12 -07001300 set.put("count", N);
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001301 set.put("accept", (stats != null) ? stats.accept : 0);
1302 set.put("reject", (stats != null) ? stats.reject : 0);
1303 set.put("acquire", (stats != null) ? stats.acquire : 0);
1304 set.put("lockout", (stats != null) ? stats.lockout : 0);
1305 set.put("permanentLockout", (stats != null) ? stats.permanentLockout : 0);
1306 // cryptoStats measures statistics about secure face transactions
1307 // (e.g. to unlock password storage, make secure purchases, etc.)
1308 set.put("acceptCrypto", (cryptoStats != null) ? cryptoStats.accept : 0);
1309 set.put("rejectCrypto", (cryptoStats != null) ? cryptoStats.reject : 0);
1310 set.put("acquireCrypto", (cryptoStats != null) ? cryptoStats.acquire : 0);
1311 set.put("lockoutCrypto", (cryptoStats != null) ? cryptoStats.lockout : 0);
Kevin Chyna56dff72018-06-19 18:41:12 -07001312 set.put("permanentLockoutCrypto",
1313 (cryptoStats != null) ? cryptoStats.permanentLockout : 0);
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001314 sets.put(set);
1315 }
1316
1317 dump.put("prints", sets);
1318 } catch (JSONException e) {
1319 Slog.e(TAG, "dump formatting failure", e);
1320 }
1321 pw.println(dump);
Kevin Chyn9bc1d492019-06-21 15:31:50 -07001322 pw.println("HAL deaths since last reboot: " + mHALDeathCount);
1323
1324 mUsageStats.print(pw);
Gilad Brettercb51b8b2018-03-22 17:04:51 +02001325 }
1326
Joe Onoratodb396002019-04-05 19:49:27 -07001327 private void dumpHal(FileDescriptor fd, String[] args) {
Joe Onoratobf955d22019-03-25 00:16:58 -07001328 // WARNING: CDD restricts image data from leaving TEE unencrypted on
1329 // production devices:
1330 // [C-1-10] MUST not allow unencrypted access to identifiable biometric
1331 // data or any data derived from it (such as embeddings) to the
1332 // Application Processor outside the context of the TEE.
1333 // As such, this API should only be enabled for testing purposes on
1334 // engineering and userdebug builds. All modules in the software stack
1335 // MUST enforce final build products do NOT have this functionality.
1336 // Additionally, the following check MUST NOT be removed.
1337 if (!(Build.IS_ENG || Build.IS_USERDEBUG)) {
1338 return;
1339 }
1340
Joe Onorato108413a2019-04-03 18:20:52 -07001341 // Additionally, this flag allows turning off face for a device
1342 // (either permanently through the build or on an individual device).
1343 if (SystemProperties.getBoolean("ro.face.disable_debug_data", false)
1344 || SystemProperties.getBoolean("persist.face.disable_debug_data", false)) {
1345 return;
1346 }
1347
Joe Onoratodb396002019-04-05 19:49:27 -07001348 // The debug method takes two file descriptors. The first is for text
1349 // output, which we will drop. The second is for binary data, which
1350 // will be the protobuf data.
1351 final IBiometricsFace daemon = getFaceDaemon();
1352 if (daemon != null) {
1353 FileOutputStream devnull = null;
1354 try {
1355 devnull = new FileOutputStream("/dev/null");
1356 final NativeHandle handle = new NativeHandle(
1357 new FileDescriptor[] { devnull.getFD(), fd },
1358 new int[0], false);
1359 daemon.debug(handle, new ArrayList<String>(Arrays.asList(args)));
1360 } catch (IOException | RemoteException ex) {
1361 Slog.d(TAG, "error while reading face debugging data", ex);
1362 } finally {
1363 if (devnull != null) {
1364 try {
1365 devnull.close();
1366 } catch (IOException ex) {
1367 }
1368 }
1369 }
Joe Onoratobf955d22019-03-25 00:16:58 -07001370 }
Joe Onoratobf955d22019-03-25 00:16:58 -07001371 }
Kevin Chyn8b7a0372018-09-17 15:06:05 -07001372}