mirror of
https://github.com/oplus-giulia-dev/android_hardware_oplus
synced 2025-11-04 05:45:34 +08:00
On OnePlus Nord CE3 (ziti), shimming `__system_property_get()` is not
enough. Without this change, `vendor.fingerprint.cali` is set to 0 when
`ro.boot.vbmeta.device_state` is unset.
Test: Ensure adb logcat | grep "lcd LockState" does not show up as NULL
Ensure adb shell getprop vendor.fingerprint.cali is 1
Change-Id: I913f00db1542a28aaaa11dba93fcce67b39717bf
57 lines
2.0 KiB
C++
57 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2022-2024 The LineageOS 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.
|
|
*/
|
|
|
|
#define LOG_TAG "libshims_fingerprint.oplus"
|
|
|
|
#include <cutils/log.h>
|
|
|
|
#include <dlfcn.h>
|
|
#include <string.h>
|
|
|
|
extern "C" int __system_property_get(const char* __name, char* __value) {
|
|
static auto __system_property_get_orig = reinterpret_cast<typeof(__system_property_get)*>(
|
|
dlsym(RTLD_NEXT, "__system_property_get"));
|
|
|
|
if (strcmp(__name, "ro.boot.vbmeta.device_state") == 0) {
|
|
ALOGV("Returning unlocked for ro.boot.vbmeta.device_state");
|
|
return strlen(strcpy(__value, "unlocked"));
|
|
}
|
|
|
|
if (strcmp(__name, "ro.boot.verifiedbootstate") == 0) {
|
|
ALOGV("Returning orange for ro.boot.verifiedbootstate");
|
|
return strlen(strcpy(__value, "orange"));
|
|
}
|
|
|
|
return __system_property_get_orig(__name, __value);
|
|
}
|
|
|
|
extern "C" int property_get(const char* key, char* value, const char* default_value) {
|
|
static auto property_get_orig =
|
|
reinterpret_cast<typeof(property_get)*>(dlsym(RTLD_NEXT, "property_get"));
|
|
|
|
if (strcmp(key, "ro.boot.vbmeta.device_state") == 0) {
|
|
ALOGV("Returning unlocked for ro.boot.vbmeta.device_state");
|
|
return strlen(strcpy(value, "unlocked"));
|
|
}
|
|
|
|
if (strcmp(key, "ro.boot.verifiedbootstate") == 0) {
|
|
ALOGV("Returning orange for ro.boot.verifiedbootstate");
|
|
return strlen(strcpy(value, "orange"));
|
|
}
|
|
|
|
return property_get_orig(key, value, default_value);
|
|
}
|