1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
|
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.app.role;
import android.Manifest;
import android.annotation.CallbackExecutor;
import android.annotation.NonNull;
import android.annotation.RequiresPermission;
import android.annotation.SystemService;
import android.annotation.UserIdInt;
import android.app.ActivityThread;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.os.Binder;
import android.os.Handler;
import android.os.IBinder;
import android.os.RemoteCallback;
import android.os.RemoteException;
import android.util.Log;
import android.util.SparseArray;
import com.android.internal.annotations.GuardedBy;
import com.android.internal.infra.AbstractMultiplePendingRequestsRemoteService;
import com.android.internal.infra.AbstractRemoteService;
import java.util.concurrent.Executor;
import java.util.function.Consumer;
/**
* Interface for communicating with the role controller.
*
* @hide
*/
@SystemService(Context.ROLE_CONTROLLER_SERVICE)
public class RoleControllerManager {
private static final String LOG_TAG = RoleControllerManager.class.getSimpleName();
private static volatile ComponentName sRemoteServiceComponentName;
private static final Object sRemoteServicesLock = new Object();
/**
* Global remote services (per user) used by all {@link RoleControllerManager managers}.
*/
@GuardedBy("sRemoteServicesLock")
private static final SparseArray<RemoteService> sRemoteServices = new SparseArray<>();
@NonNull
private final RemoteService mRemoteService;
/**
* Initialize the remote service component name once so that we can avoid acquiring the
* PackageManagerService lock in constructor.
*
* @see #createWithInitializedRemoteServiceComponentName(Handler, Context)
*/
public static void initializeRemoteServiceComponentName(@NonNull Context context) {
sRemoteServiceComponentName = getRemoteServiceComponentName(context);
}
/**
* Create a {@link RoleControllerManager} instance with the initialized remote service component
* name so that we can avoid acquiring the PackageManagerService lock in constructor.
*
* @see #initializeRemoteServiceComponentName(Context)
*/
@NonNull
public static RoleControllerManager createWithInitializedRemoteServiceComponentName(
@NonNull Handler handler, @NonNull Context context) {
return new RoleControllerManager(sRemoteServiceComponentName, handler, context);
}
private RoleControllerManager(@NonNull ComponentName remoteServiceComponentName,
@NonNull Handler handler, @NonNull Context context) {
synchronized (sRemoteServicesLock) {
int userId = context.getUserId();
RemoteService remoteService = sRemoteServices.get(userId);
if (remoteService == null) {
remoteService = new RemoteService(ActivityThread.currentApplication(),
remoteServiceComponentName, handler, userId);
sRemoteServices.put(userId, remoteService);
}
mRemoteService = remoteService;
}
}
public RoleControllerManager(@NonNull Context context) {
this(getRemoteServiceComponentName(context), context.getMainThreadHandler(), context);
}
@NonNull
private static ComponentName getRemoteServiceComponentName(@NonNull Context context) {
Intent intent = new Intent(RoleControllerService.SERVICE_INTERFACE);
PackageManager packageManager = context.getPackageManager();
intent.setPackage(packageManager.getPermissionControllerPackageName());
ResolveInfo resolveInfo = packageManager.resolveService(intent, 0);
return resolveInfo.getComponentInfo().getComponentName();
}
/**
* @see RoleControllerService#onGrantDefaultRoles()
*/
public void grantDefaultRoles(@NonNull @CallbackExecutor Executor executor,
@NonNull Consumer<Boolean> callback) {
mRemoteService.scheduleRequest(new GrantDefaultRolesRequest(mRemoteService, executor,
callback));
}
/**
* @see RoleControllerService#onAddRoleHolder(String, String, int)
*/
public void onAddRoleHolder(@NonNull String roleName, @NonNull String packageName,
@RoleManager.ManageHoldersFlags int flags, @NonNull RemoteCallback callback) {
mRemoteService.scheduleRequest(new OnAddRoleHolderRequest(mRemoteService, roleName,
packageName, flags, callback));
}
/**
* @see RoleControllerService#onRemoveRoleHolder(String, String, int)
*/
public void onRemoveRoleHolder(@NonNull String roleName, @NonNull String packageName,
@RoleManager.ManageHoldersFlags int flags, @NonNull RemoteCallback callback) {
mRemoteService.scheduleRequest(new OnRemoveRoleHolderRequest(mRemoteService, roleName,
packageName, flags, callback));
}
/**
* @see RoleControllerService#onClearRoleHolders(String, int)
*/
public void onClearRoleHolders(@NonNull String roleName,
@RoleManager.ManageHoldersFlags int flags, @NonNull RemoteCallback callback) {
mRemoteService.scheduleRequest(new OnClearRoleHoldersRequest(mRemoteService, roleName,
flags, callback));
}
/**
* @see RoleControllerService#onIsApplicationQualifiedForRole(String, String)
*/
@RequiresPermission(Manifest.permission.MANAGE_ROLE_HOLDERS)
public void isApplicationQualifiedForRole(@NonNull String roleName, @NonNull String packageName,
@NonNull @CallbackExecutor Executor executor, @NonNull Consumer<Boolean> callback) {
mRemoteService.scheduleRequest(new IsApplicationQualifiedForRoleRequest(mRemoteService,
roleName, packageName, executor, callback));
}
/**
* @see RoleControllerService#onIsRoleVisible(String)
*/
@RequiresPermission(Manifest.permission.MANAGE_ROLE_HOLDERS)
public void isRoleVisible(@NonNull String roleName,
@NonNull @CallbackExecutor Executor executor, @NonNull Consumer<Boolean> callback) {
mRemoteService.scheduleRequest(new IsRoleVisibleRequest(mRemoteService, roleName, executor,
callback));
}
/**
* Connection to the remote service.
*/
private static final class RemoteService extends AbstractMultiplePendingRequestsRemoteService<
RemoteService, IRoleController> {
private static final long UNBIND_DELAY_MILLIS = 15 * 1000;
private static final long REQUEST_TIMEOUT_MILLIS = 15 * 1000;
/**
* Create a connection to the remote service
*
* @param context the context to use
* @param componentName the component of the service to connect to
* @param handler the handler for binding service and callbacks
* @param userId the user whom remote service should be connected as
*/
RemoteService(@NonNull Context context, @NonNull ComponentName componentName,
@NonNull Handler handler, @UserIdInt int userId) {
super(context, RoleControllerService.SERVICE_INTERFACE, componentName, userId,
service -> Log.e(LOG_TAG, "RemoteService " + service + " died"), handler, 0,
false, 1);
}
/**
* @return The default handler used by this service.
*/
@NonNull
public Handler getHandler() {
return mHandler;
}
@Override
protected @NonNull IRoleController getServiceInterface(@NonNull IBinder binder) {
return IRoleController.Stub.asInterface(binder);
}
@Override
protected long getTimeoutIdleBindMillis() {
return UNBIND_DELAY_MILLIS;
}
@Override
protected long getRemoteRequestMillis() {
return REQUEST_TIMEOUT_MILLIS;
}
@Override
public void scheduleRequest(
@NonNull BasePendingRequest<RemoteService, IRoleController> pendingRequest) {
super.scheduleRequest(pendingRequest);
}
@Override
public void scheduleAsyncRequest(@NonNull AsyncRequest<IRoleController> request) {
super.scheduleAsyncRequest(request);
}
}
/**
* Request for {@link #grantDefaultRoles(Executor, Consumer)}.
*/
private static final class GrantDefaultRolesRequest
extends AbstractRemoteService.PendingRequest<RemoteService, IRoleController> {
@NonNull
private final Executor mExecutor;
@NonNull
private final Consumer<Boolean> mCallback;
@NonNull
private final RemoteCallback mRemoteCallback;
private GrantDefaultRolesRequest(@NonNull RemoteService service,
@NonNull @CallbackExecutor Executor executor, @NonNull Consumer<Boolean> callback) {
super(service);
mExecutor = executor;
mCallback = callback;
mRemoteCallback = new RemoteCallback(result -> mExecutor.execute(() -> {
long token = Binder.clearCallingIdentity();
try {
boolean successful = result != null;
mCallback.accept(successful);
} finally {
Binder.restoreCallingIdentity(token);
finish();
}
}));
}
@Override
protected void onTimeout(@NonNull RemoteService remoteService) {
mExecutor.execute(() -> mCallback.accept(false));
}
@Override
public void run() {
try {
getService().getServiceInterface().grantDefaultRoles(mRemoteCallback);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Error calling grantDefaultRoles()", e);
}
}
@Override
protected void onFailed() {
mRemoteCallback.sendResult(null);
}
}
/**
* Request for {@link #onAddRoleHolder(String, String, int, RemoteCallback)}.
*/
private static final class OnAddRoleHolderRequest
extends AbstractRemoteService.PendingRequest<RemoteService, IRoleController> {
@NonNull
private final String mRoleName;
@NonNull
private final String mPackageName;
@RoleManager.ManageHoldersFlags
private final int mFlags;
@NonNull
private final RemoteCallback mCallback;
@NonNull
private final RemoteCallback mRemoteCallback;
private OnAddRoleHolderRequest(@NonNull RemoteService service, @NonNull String roleName,
@NonNull String packageName, @RoleManager.ManageHoldersFlags int flags,
@NonNull RemoteCallback callback) {
super(service);
mRoleName = roleName;
mPackageName = packageName;
mFlags = flags;
mCallback = callback;
mRemoteCallback = new RemoteCallback(result -> {
long token = Binder.clearCallingIdentity();
try {
mCallback.sendResult(result);
} finally {
Binder.restoreCallingIdentity(token);
finish();
}
});
}
@Override
protected void onTimeout(@NonNull RemoteService remoteService) {
mCallback.sendResult(null);
}
@Override
public void run() {
try {
getService().getServiceInterface().onAddRoleHolder(mRoleName, mPackageName, mFlags,
mRemoteCallback);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Error calling onAddRoleHolder()", e);
}
}
}
/**
* Request for {@link #onRemoveRoleHolder(String, String, int, RemoteCallback)}.
*/
private static final class OnRemoveRoleHolderRequest
extends AbstractRemoteService.PendingRequest<RemoteService, IRoleController> {
@NonNull
private final String mRoleName;
@NonNull
private final String mPackageName;
@RoleManager.ManageHoldersFlags
private final int mFlags;
@NonNull
private final RemoteCallback mCallback;
@NonNull
private final RemoteCallback mRemoteCallback;
private OnRemoveRoleHolderRequest(@NonNull RemoteService service, @NonNull String roleName,
@NonNull String packageName, @RoleManager.ManageHoldersFlags int flags,
@NonNull RemoteCallback callback) {
super(service);
mRoleName = roleName;
mPackageName = packageName;
mFlags = flags;
mCallback = callback;
mRemoteCallback = new RemoteCallback(result -> {
long token = Binder.clearCallingIdentity();
try {
mCallback.sendResult(result);
} finally {
Binder.restoreCallingIdentity(token);
finish();
}
});
}
@Override
protected void onTimeout(@NonNull RemoteService remoteService) {
mCallback.sendResult(null);
}
@Override
public void run() {
try {
getService().getServiceInterface().onRemoveRoleHolder(mRoleName, mPackageName,
mFlags, mRemoteCallback);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Error calling onRemoveRoleHolder()", e);
}
}
}
/**
* Request for {@link #onClearRoleHolders(String, int, RemoteCallback)}.
*/
private static final class OnClearRoleHoldersRequest
extends AbstractRemoteService.PendingRequest<RemoteService, IRoleController> {
@NonNull
private final String mRoleName;
@RoleManager.ManageHoldersFlags
private final int mFlags;
@NonNull
private final RemoteCallback mCallback;
@NonNull
private final RemoteCallback mRemoteCallback;
private OnClearRoleHoldersRequest(@NonNull RemoteService service, @NonNull String roleName,
@RoleManager.ManageHoldersFlags int flags, @NonNull RemoteCallback callback) {
super(service);
mRoleName = roleName;
mFlags = flags;
mCallback = callback;
mRemoteCallback = new RemoteCallback(result -> {
long token = Binder.clearCallingIdentity();
try {
mCallback.sendResult(result);
} finally {
Binder.restoreCallingIdentity(token);
finish();
}
});
}
@Override
protected void onTimeout(@NonNull RemoteService remoteService) {
mCallback.sendResult(null);
}
@Override
public void run() {
try {
getService().getServiceInterface().onClearRoleHolders(mRoleName, mFlags,
mRemoteCallback);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Error calling onClearRoleHolders()", e);
}
}
}
/**
* Request for {@link #isApplicationQualifiedForRole(String, String, Executor, Consumer)}
*/
private static final class IsApplicationQualifiedForRoleRequest extends
AbstractRemoteService.PendingRequest<RemoteService, IRoleController> {
@NonNull
private final String mRoleName;
@NonNull
private final String mPackageName;
@NonNull
private final Executor mExecutor;
@NonNull
private final Consumer<Boolean> mCallback;
@NonNull
private final RemoteCallback mRemoteCallback;
private IsApplicationQualifiedForRoleRequest(@NonNull RemoteService service,
@NonNull String roleName, @NonNull String packageName,
@CallbackExecutor @NonNull Executor executor, @NonNull Consumer<Boolean> callback) {
super(service);
mRoleName = roleName;
mPackageName = packageName;
mExecutor = executor;
mCallback = callback;
mRemoteCallback = new RemoteCallback(result -> mExecutor.execute(() -> {
long token = Binder.clearCallingIdentity();
try {
boolean qualified = result != null;
mCallback.accept(qualified);
} finally {
Binder.restoreCallingIdentity(token);
finish();
}
}));
}
@Override
protected void onTimeout(RemoteService remoteService) {
mExecutor.execute(() -> mCallback.accept(false));
}
@Override
public void run() {
try {
getService().getServiceInterface().isApplicationQualifiedForRole(mRoleName,
mPackageName, mRemoteCallback);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Error calling isApplicationQualifiedForRole()", e);
}
}
}
/**
* Request for {@link #isRoleVisible(String, Executor, Consumer)}
*/
private static final class IsRoleVisibleRequest
extends AbstractRemoteService.PendingRequest<RemoteService, IRoleController> {
@NonNull
private final String mRoleName;
@NonNull
private final Executor mExecutor;
@NonNull
private final Consumer<Boolean> mCallback;
@NonNull
private final RemoteCallback mRemoteCallback;
private IsRoleVisibleRequest(@NonNull RemoteService service, @NonNull String roleName,
@CallbackExecutor @NonNull Executor executor, @NonNull Consumer<Boolean> callback) {
super(service);
mRoleName = roleName;
mExecutor = executor;
mCallback = callback;
mRemoteCallback = new RemoteCallback(result -> mExecutor.execute(() -> {
long token = Binder.clearCallingIdentity();
try {
boolean visible = result != null;
mCallback.accept(visible);
} finally {
Binder.restoreCallingIdentity(token);
finish();
}
}));
}
@Override
protected void onTimeout(RemoteService remoteService) {
mExecutor.execute(() -> mCallback.accept(false));
}
@Override
public void run() {
try {
getService().getServiceInterface().isRoleVisible(mRoleName, mRemoteCallback);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Error calling isRoleVisible()", e);
}
}
}
}
|