blob: d344d0f1c5311f1ff6c7122065ae0a9d57887054 [file] [log] [blame]
/*
* Copyright (C) 2018 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.
*/
#include "idmap2/CommandUtils.h"
#include <fstream>
#include <memory>
#include <string>
#include <vector>
#include "idmap2/Idmap.h"
#include "idmap2/Result.h"
#include "idmap2/SysTrace.h"
using android::idmap2::Error;
using android::idmap2::IdmapHeader;
using android::idmap2::OverlayResourceContainer;
using android::idmap2::Result;
using android::idmap2::TargetResourceContainer;
using android::idmap2::Unit;
Result<Unit> Verify(const std::string& idmap_path, const std::string& target_path,
const std::string& overlay_path, const std::string& overlay_name,
PolicyBitmask fulfilled_policies, bool enforce_overlayable) {
SYSTRACE << "Verify " << idmap_path;
std::ifstream fin(idmap_path);
const std::unique_ptr<const IdmapHeader> header = IdmapHeader::FromBinaryStream(fin);
fin.close();
if (!header) {
return Error("failed to parse idmap header");
}
auto target = TargetResourceContainer::FromPath(target_path);
if (!target) {
return Error("failed to load target '%s'", target_path.c_str());
}
auto overlay = OverlayResourceContainer::FromPath(overlay_path);
if (!overlay) {
return Error("failed to load overlay '%s'", overlay_path.c_str());
}
const auto header_ok = header->IsUpToDate(**target, **overlay, overlay_name, fulfilled_policies,
enforce_overlayable);
if (!header_ok) {
return Error(header_ok.GetError(), "idmap not up to date");
}
return Unit{};
}