blob: ce2668fb9ac0c2eae7a528a0869f082cf4dbe911 [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.
*/
#define LOG_TAG "apexd"
#include <strings.h>
#include <android-base/logging.h>
#include "apexd.h"
#include "apexd_prepostinstall.h"
#include "apexservice.h"
namespace {
int HandleSubcommand(char** argv) {
if (strcmp("--pre-install", argv[1]) == 0) {
LOG(INFO) << "Preinstall subcommand detected";
return android::apex::RunPreInstall(argv);
}
if (strcmp("--post-install", argv[1]) == 0) {
LOG(INFO) << "Postinstall subcommand detected";
return android::apex::RunPostInstall(argv);
}
LOG(ERROR) << "Unknown subcommand: " << argv[1];
return 1;
}
} // namespace
int main(int /*argc*/, char** argv) {
android::base::InitLogging(argv);
if (argv[1] != nullptr) {
return HandleSubcommand(argv);
}
android::apex::onStart();
// TODO: add a -v flag or an external setting to change LogSeverity.
android::base::SetMinimumLogSeverity(android::base::VERBOSE);
android::apex::binder::CreateAndRegisterService();
android::apex::unmountAndDetachExistingImages();
android::apex::scanStagedSessionsDirAndStage();
// Scan the directory under /data first, as it may contain updates of APEX
// packages living in the directory under /system, and we want the former ones
// to be used over the latter ones.
android::apex::scanPackagesDirAndActivate(android::apex::kApexPackageDataDir);
android::apex::scanPackagesDirAndActivate(
android::apex::kApexPackageSystemDir);
// Notify other components (e.g. init) that all APEXs are correctly mounted
// and are ready to be used.
android::apex::onAllPackagesReady();
android::apex::binder::JoinThreadPool();
return 1;
}