Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e72abb65 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4632767 from 25f5e5dc to pi-release

Change-Id: I316114850564e0e7d45e7cb7141f5c30b0206702
parents 996142a0 25f5e5dc
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -5,6 +5,10 @@ cc_defaults {
        "-Wall",
        "-Werror",
        "-Wextra",

        "-Wunreachable-code",
        "-Wunreachable-code-break",
        "-Wunreachable-code-return",
    ],
    srcs: [
        "CacheItem.cpp",
@@ -15,6 +19,9 @@ cc_defaults {
        "utils.cpp",
        ":installd_aidl",
    ],
    header_libs: [
        "dex2oat_headers",
    ],
    shared_libs: [
        "libbase",
        "libbinder",
+3 −2
Original line number Diff line number Diff line
@@ -1971,10 +1971,11 @@ binder::Status InstalldNativeService::dexopt(const std::string& apkPath, int32_t
    const char* profile_name = getCStr(profileName);
    const char* dm_path = getCStr(dexMetadataPath);
    const char* compilation_reason = getCStr(compilationReason);
    std::string error_msg;
    int res = android::installd::dexopt(apk_path, uid, pkgname, instruction_set, dexoptNeeded,
            oat_dir, dexFlags, compiler_filter, volume_uuid, class_loader_context, se_info,
            downgrade, targetSdkVersion, profile_name, dm_path, compilation_reason);
    return res ? error(res, "Failed to dexopt") : ok();
            downgrade, targetSdkVersion, profile_name, dm_path, compilation_reason, &error_msg);
    return res ? error(res, error_msg) : ok();
}

binder::Status InstalldNativeService::markBootComplete(const std::string& instructionSet) {
+147 −77

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ int dexopt(const char *apk_path, uid_t uid, const char *pkgName, const char *ins
        int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter,
        const char* volume_uuid, const char* class_loader_context, const char* se_info,
        bool downgrade, int target_sdk_version, const char* profile_name,
        const char* dexMetadataPath, const char* compilation_reason);
        const char* dexMetadataPath, const char* compilation_reason, std::string* error_msg);

bool calculate_oat_file_path_default(char path[PKG_PATH_MAX], const char *oat_dir,
        const char *apk_path, const char *instruction_set);
+119 −0
Original line number Diff line number Diff line
/*
 * 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 <dex2oat_return_codes.h>

namespace android {
namespace installd {

// Constants for exit codes that installd code emits. These are failure situations before calling
// any tools, e.g., in validation, and must not overlap with the exit codes of tools, so they
// can be distinguished.
enum DexoptReturnCodes : int {
    kSetGid = 64,
    kSetUid = 65,
    kCapSet = 66,
    kFlock = 67,
    kProfmanExec = 68,
    kSetSchedPolicy = 70,
    kSetPriority = 71,
    kDex2oatExec = 72,
    kInstructionSetLength = 73,
    kHashValidatePath = 74,
    kHashOpenPath = 75,
    kHashReadDex = 76,
    kHashWrite = 77,
};

inline const char* get_installd_return_code_name(DexoptReturnCodes code) {
    switch (code) {
        case kSetGid:
            return "setgid";
        case kSetUid:
            return "setuid";
        case kCapSet:
            return "capset";
        case kFlock:
            return "flock";
        case kProfmanExec:
            return "exec(profman)";
        case kSetSchedPolicy:
            return "setschedpolicy";
        case kSetPriority:
            return "setpriority";
        case kDex2oatExec:
            return "exec(dex2oat)";
        case kInstructionSetLength:
            return "instruction-set-length";
        case kHashValidatePath:
            return "hash(validate-path)";
        case kHashOpenPath:
            return "hash(open-path)";
        case kHashReadDex:
            return "hash(read-dex)";
        case kHashWrite:
            return "hash(write)";
    }
    return nullptr;
}

inline const char* get_dex2oat_return_code_name(art::dex2oat::ReturnCode code) {
    switch (code) {
        case art::dex2oat::ReturnCode::kNoFailure:
            return "dex2oat success";
        case art::dex2oat::ReturnCode::kOther:
            return "unspecified dex2oat error";
        case art::dex2oat::ReturnCode::kCreateRuntime:
            return "dex2oat failed to create a runtime";
    }
    return nullptr;
}

// Get some slightly descriptive string for the return code. Handles both DexoptReturnCodes (local
// exit codes) as well as art::dex2oat::ReturnCode.
inline const char* get_return_code_name(int code) {
    // Try to enforce non-overlap (see comment on DexoptReturnCodes)
    // TODO: How could switch-case checks be used to enforce completeness?
    switch (code) {
        case kSetGid:
        case kSetUid:
        case kCapSet:
        case kFlock:
        case kProfmanExec:
        case kSetSchedPolicy:
        case kSetPriority:
        case kDex2oatExec:
        case kInstructionSetLength:
        case kHashValidatePath:
        case kHashOpenPath:
        case kHashReadDex:
        case kHashWrite:
            break;
        case static_cast<int>(art::dex2oat::ReturnCode::kNoFailure):
        case static_cast<int>(art::dex2oat::ReturnCode::kOther):
        case static_cast<int>(art::dex2oat::ReturnCode::kCreateRuntime):
            break;
    }
    const char* value = get_installd_return_code_name(static_cast<DexoptReturnCodes>(code));
    if (value != nullptr) {
        return value;
    }
    value = get_dex2oat_return_code_name(static_cast<art::dex2oat::ReturnCode>(code));
    return value;
}

}  // namespace installd
}  // namespace android
Loading