| /* |
| * Copyright (C) 2016 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. |
| */ |
| #define LOG_TAG "libhidltransport" |
| |
| #include <hidl/LegacySupport.h> |
| |
| #include <chrono> |
| #include <cutils/properties.h> |
| #include <thread> |
| #include <utils/misc.h> |
| #include <utils/Log.h> |
| |
| namespace android { |
| namespace hardware { |
| |
| static const char* kDataProperty = "vold.post_fs_data_done"; |
| |
| void waitForData() { |
| using namespace std::literals::chrono_literals; |
| |
| // TODO(b/34274385) remove this |
| while (!property_get_bool(kDataProperty, false)) { |
| std::this_thread::sleep_for(300ms); |
| } |
| |
| // TODO(b/35178781) wait a bit longer |
| std::this_thread::sleep_for(300ms); |
| } |
| |
| namespace details { |
| |
| bool blockingHalBinderizationEnabled() { |
| waitForData(); |
| return property_get_bool("persist.hal.binderization", false); |
| } |
| |
| void blockIfBinderizationDisabled(const std::string& interface, |
| const std::string& instance) { |
| // TODO(b/34274385) remove this |
| |
| size_t loc = interface.find_first_of("@"); |
| if (loc == std::string::npos) { |
| LOG_ALWAYS_FATAL("Bad interface name: %s", interface.c_str()); |
| } |
| std::string package = interface.substr(0, loc); |
| |
| // only block if this is supposed to be toggled |
| if (getTransport(interface) != vintf::Transport::TOGGLED) { |
| return; |
| } |
| |
| // Must wait for data to be mounted and persistant properties to be read, |
| // but only delay the start of hals which require reading this property. |
| bool enabled = blockingHalBinderizationEnabled(); |
| |
| if (!enabled) { |
| ALOGI("Deactivating %s/%s binderized service to" |
| " yield to passthrough implementation.", |
| interface.c_str(), |
| instance.c_str()); |
| while (true) { |
| sleep(UINT_MAX); |
| } |
| } |
| } |
| } // namespace details |
| |
| } // namespace hardware |
| } // namespace android |