blob: b0f8bfb713ab9f1ca3670ba7fbf9797529e86148 [file] [log] [blame]
/*
* Copyright (C) 2020 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 com.android.server.devicepolicy;
import static android.app.admin.DevicePolicyManager.operationToString;
import android.app.admin.DevicePolicyManager.DevicePolicyOperation;
import android.app.admin.DevicePolicySafetyChecker;
import android.util.Slog;
import java.util.Objects;
//TODO(b/172376923): add unit tests
/**
* {@code DevicePolicySafetyChecker} implementation that overrides the real checker for just
* one command.
*
* <p>Used only for debugging and CTS tests.
*/
final class OneTimeSafetyChecker implements DevicePolicySafetyChecker {
private static final String TAG = OneTimeSafetyChecker.class.getSimpleName();
private final DevicePolicyManagerService mService;
private final DevicePolicySafetyChecker mRealSafetyChecker;
private final @DevicePolicyOperation int mOperation;
private final boolean mSafe;
OneTimeSafetyChecker(DevicePolicyManagerService service,
@DevicePolicyOperation int operation, boolean safe) {
mService = Objects.requireNonNull(service);
mOperation = operation;
mSafe = safe;
mRealSafetyChecker = service.getDevicePolicySafetyChecker();
Slog.i(TAG, "Saving real DevicePolicySafetyChecker as " + mRealSafetyChecker);
}
@Override
public boolean isDevicePolicyOperationSafe(@DevicePolicyOperation int operation) {
String name = operationToString(operation);
boolean safe = true;
if (operation == mOperation) {
safe = mSafe;
} else {
Slog.wtf(TAG, "invalid call to isDevicePolicyOperationSafe(): asked for " + name
+ ", should be " + operationToString(mOperation));
}
Slog.i(TAG, "isDevicePolicyOperationSafe(" + name + "): returning " + safe
+ " and restoring DevicePolicySafetyChecker to " + mRealSafetyChecker);
mService.setDevicePolicySafetyChecker(mRealSafetyChecker);
return safe;
}
}