blob: f38000ddc4278a1cee399dff6d6cf122aa3fb67a [file] [log] [blame]
/*
* Copyright (C) 2022 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.
*/
package com.android.server.art;
import static com.android.server.art.OutputArtifacts.PermissionSettings;
import static com.android.server.art.OutputArtifacts.PermissionSettings.SeContext;
import static com.android.server.art.ProfilePath.PrebuiltProfilePath;
import static com.android.server.art.ProfilePath.PrimaryCurProfilePath;
import static com.android.server.art.ProfilePath.PrimaryRefProfilePath;
import static com.android.server.art.ProfilePath.SecondaryCurProfilePath;
import static com.android.server.art.ProfilePath.SecondaryRefProfilePath;
import static com.android.server.art.ProfilePath.TmpProfilePath;
import static com.android.server.art.ProfilePath.WritableProfilePath;
import android.annotation.NonNull;
import android.annotation.Nullable;
/** @hide */
public final class AidlUtils {
private AidlUtils() {}
@NonNull
public static ArtifactsPath buildArtifactsPath(
@NonNull String dexPath, @NonNull String isa, boolean isInDalvikCache) {
var artifactsPath = new ArtifactsPath();
artifactsPath.dexPath = dexPath;
artifactsPath.isa = isa;
artifactsPath.isInDalvikCache = isInDalvikCache;
return artifactsPath;
}
@NonNull
public static FsPermission buildFsPermission(
int uid, int gid, boolean isOtherReadable, boolean isOtherExecutable) {
var fsPermission = new FsPermission();
fsPermission.uid = uid;
fsPermission.gid = gid;
fsPermission.isOtherReadable = isOtherReadable;
fsPermission.isOtherExecutable = isOtherExecutable;
return fsPermission;
}
@NonNull
public static FsPermission buildFsPermission(int uid, int gid, boolean isOtherReadable) {
return buildFsPermission(uid, gid, isOtherReadable, false /* isOtherExecutable */);
}
@NonNull
public static DexMetadataPath buildDexMetadataPath(@NonNull String dexPath) {
var dexMetadataPath = new DexMetadataPath();
dexMetadataPath.dexPath = dexPath;
return dexMetadataPath;
}
@NonNull
public static PermissionSettings buildPermissionSettings(@NonNull FsPermission dirFsPermission,
@NonNull FsPermission fileFsPermission, @Nullable SeContext seContext) {
var permissionSettings = new PermissionSettings();
permissionSettings.dirFsPermission = dirFsPermission;
permissionSettings.fileFsPermission = fileFsPermission;
permissionSettings.seContext = seContext;
return permissionSettings;
}
@NonNull
public static OutputArtifacts buildOutputArtifacts(@NonNull String dexPath, @NonNull String isa,
boolean isInDalvikCache, @NonNull PermissionSettings permissionSettings) {
var outputArtifacts = new OutputArtifacts();
outputArtifacts.artifactsPath = buildArtifactsPath(dexPath, isa, isInDalvikCache);
outputArtifacts.permissionSettings = permissionSettings;
return outputArtifacts;
}
@NonNull
public static PrimaryRefProfilePath buildPrimaryRefProfilePath(
@NonNull String packageName, @NonNull String profileName) {
var primaryRefProfilePath = new PrimaryRefProfilePath();
primaryRefProfilePath.packageName = packageName;
primaryRefProfilePath.profileName = profileName;
return primaryRefProfilePath;
}
@NonNull
public static SecondaryRefProfilePath buildSecondaryRefProfilePath(@NonNull String dexPath) {
var secondaryRefProfilePath = new SecondaryRefProfilePath();
secondaryRefProfilePath.dexPath = dexPath;
return secondaryRefProfilePath;
}
@NonNull
public static ProfilePath buildProfilePathForPrimaryRef(
@NonNull String packageName, @NonNull String profileName) {
return ProfilePath.primaryRefProfilePath(
buildPrimaryRefProfilePath(packageName, profileName));
}
@NonNull
public static ProfilePath buildProfilePathForPrebuilt(@NonNull String dexPath) {
var prebuiltProfilePath = new PrebuiltProfilePath();
prebuiltProfilePath.dexPath = dexPath;
return ProfilePath.prebuiltProfilePath(prebuiltProfilePath);
}
@NonNull
public static ProfilePath buildProfilePathForDm(@NonNull String dexPath) {
return ProfilePath.dexMetadataPath(buildDexMetadataPath(dexPath));
}
@NonNull
public static ProfilePath buildProfilePathForPrimaryCur(
int userId, @NonNull String packageName, @NonNull String profileName) {
var primaryCurProfilePath = new PrimaryCurProfilePath();
primaryCurProfilePath.userId = userId;
primaryCurProfilePath.packageName = packageName;
primaryCurProfilePath.profileName = profileName;
return ProfilePath.primaryCurProfilePath(primaryCurProfilePath);
}
@NonNull
public static ProfilePath buildProfilePathForSecondaryRef(@NonNull String dexPath) {
return ProfilePath.secondaryRefProfilePath(buildSecondaryRefProfilePath(dexPath));
}
@NonNull
public static ProfilePath buildProfilePathForSecondaryCur(@NonNull String dexPath) {
var secondaryCurProfilePath = new SecondaryCurProfilePath();
secondaryCurProfilePath.dexPath = dexPath;
return ProfilePath.secondaryCurProfilePath(secondaryCurProfilePath);
}
@NonNull
private static OutputProfile buildOutputProfile(
@NonNull WritableProfilePath finalPath, int uid, int gid, boolean isPublic) {
var outputProfile = new OutputProfile();
outputProfile.profilePath = new TmpProfilePath();
outputProfile.profilePath.finalPath = finalPath;
outputProfile.profilePath.id = ""; // Will be filled by artd.
outputProfile.profilePath.tmpPath = ""; // Will be filled by artd.
outputProfile.fsPermission = buildFsPermission(uid, gid, isPublic);
return outputProfile;
}
@NonNull
public static OutputProfile buildOutputProfileForPrimary(@NonNull String packageName,
@NonNull String profileName, int uid, int gid, boolean isPublic) {
return buildOutputProfile(WritableProfilePath.forPrimary(
buildPrimaryRefProfilePath(packageName, profileName)),
uid, gid, isPublic);
}
@NonNull
public static OutputProfile buildOutputProfileForSecondary(
@NonNull String dexPath, int uid, int gid, boolean isPublic) {
return buildOutputProfile(
WritableProfilePath.forSecondary(buildSecondaryRefProfilePath(dexPath)), uid, gid,
isPublic);
}
@NonNull
public static SeContext buildSeContext(@NonNull String seInfo, int uid) {
var seContext = new SeContext();
seContext.seInfo = seInfo;
seContext.uid = uid;
return seContext;
}
@NonNull
public static String toString(@NonNull PrimaryRefProfilePath profile) {
return String.format(
"[packageName = %s, profileName = %s]", profile.packageName, profile.profileName);
}
@NonNull
public static String toString(@NonNull SecondaryRefProfilePath profile) {
return String.format("[dexPath = %s]", profile.dexPath);
}
@NonNull
public static String toString(@NonNull WritableProfilePath profile) {
switch (profile.getTag()) {
case WritableProfilePath.forPrimary:
return toString(profile.getForPrimary());
case WritableProfilePath.forSecondary:
return toString(profile.getForSecondary());
default:
throw new IllegalStateException(
"Unknown WritableProfilePath tag " + profile.getTag());
}
}
@NonNull
public static String toString(@NonNull ProfilePath profile) {
switch (profile.getTag()) {
case ProfilePath.primaryRefProfilePath:
return toString(profile.getPrimaryRefProfilePath());
case ProfilePath.secondaryRefProfilePath:
return toString(profile.getSecondaryRefProfilePath());
default:
throw new UnsupportedOperationException(
"Only reference profile paths are supported to be converted to string, got "
+ profile.getTag());
}
}
}