blob: a7b9f49de4e451c5f64516e9e1eac4fbdb72c873 [file] [log] [blame]
/*
* 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.
*/
#define LOG_TAG "apexd"
#include "apex_preinstalled_data.h"
#include <unordered_map>
#include <android-base/file.h>
#include <android-base/result.h>
#include <android-base/strings.h>
#include "apex_constants.h"
#include "apex_file.h"
#include "apexd_utils.h"
using android::base::Error;
using android::base::Result;
namespace android {
namespace apex {
Result<void> ApexPreinstalledData::ScanDir(const std::string& dir) {
LOG(INFO) << "Scanning " << dir << " for preinstalled data";
if (access(dir.c_str(), F_OK) != 0 && errno == ENOENT) {
LOG(INFO) << dir << " does not exist. Skipping";
return {};
}
Result<std::vector<std::string>> apex_files = FindApexFilesByName(dir);
if (!apex_files.ok()) {
return apex_files.error();
}
for (const auto& file : *apex_files) {
Result<ApexFile> apex_file = ApexFile::Open(file);
if (!apex_file.ok()) {
return Error() << "Failed to open " << file << " : " << apex_file.error();
}
const std::string& name = apex_file->GetManifest().name();
ApexData apex_data;
apex_data.public_key = apex_file->GetBundledPublicKey();
apex_data.path = apex_file->GetPath();
auto it = data_.find(name);
if (it == data_.end()) {
data_[name] = apex_data;
} else if (it->second.public_key != apex_data.public_key) {
return Error() << "Key for package " << apex_data.path << " ( " << name
<< ") does not match with previously scanned key from "
<< it->second.path;
}
}
return {};
}
ApexPreinstalledData& ApexPreinstalledData::GetInstance() {
static ApexPreinstalledData instance;
return instance;
}
Result<void> ApexPreinstalledData::Initialize(
const std::vector<std::string>& dirs) {
for (const auto& dir : dirs) {
if (auto result = ScanDir(dir); !result.ok()) {
return result.error();
}
}
return {};
}
Result<const std::string> ApexPreinstalledData::GetPublicKey(
const std::string& name) const {
auto it = data_.find(name);
if (it == data_.end()) {
return Error() << "No preinstalled data found for package " << name;
}
return it->second.public_key;
}
Result<const std::string> ApexPreinstalledData::GetPreinstalledPath(
const std::string& name) const {
auto it = data_.find(name);
if (it == data_.end()) {
return Error() << "No preinstalled data found for package " << name;
}
return it->second.path;
}
bool ApexPreinstalledData::HasPreInstalledVersion(
const std::string& name) const {
return data_.find(name) != data_.end();
}
bool ApexPreinstalledData::IsPreInstalledApex(const ApexFile& apex) const {
auto it = data_.find(apex.GetManifest().name());
if (it == data_.end()) {
return false;
}
return it->second.path == apex.GetPath();
}
} // namespace apex
} // namespace android