blob: 87c2e3cb2192bc92b66b7df37d2fcc75bf3931f4 [file] [log] [blame]
// Copyright 2016 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ARC_SETUP_ARC_SETUP_UTIL_H_
#define ARC_SETUP_ARC_SETUP_UTIL_H_
#include <sys/types.h>
#include <unistd.h>
#include <initializer_list>
#include <map>
#include <memory>
#include <string>
#include <vector>
#include <base/callback.h>
#include <base/files/file_path.h>
#include <base/files/scoped_file.h>
#include <base/macros.h>
namespace base {
class Environment;
class TimeDelta;
} // namespace base
namespace brillo {
class CrosConfigInterface;
} // namespace brillo
namespace arc {
#if defined(USE_HOUDINI64)
constexpr bool kUseHoudini64 = true;
constexpr bool kUseHoudini = true;
#elif defined(USE_HOUDINI)
constexpr bool kUseHoudini64 = false;
constexpr bool kUseHoudini = true;
#else
constexpr bool kUseHoudini64 = false;
constexpr bool kUseHoudini = false;
#endif // USE_HOUDINI
#if defined(USE_NDK_TRANSLATION)
constexpr bool kUseNdkTranslation = true;
#else
constexpr bool kUseNdkTranslation = false;
#endif // USE_NDK_TRANSLATION
// A class that provides mount(2) and umount(2) wrappers. They return true on
// success.
class ArcMounter {
public:
virtual ~ArcMounter() = default;
virtual bool Mount(const std::string& source,
const base::FilePath& target,
const char* filesystem_type,
unsigned long mount_flags, // NOLINT(runtime/int)
const char* data) = 0;
virtual bool Remount(const base::FilePath& target_directory,
unsigned long mount_flags, // NOLINT(runtime/int)
const char* data) = 0;
virtual bool LoopMount(const std::string& source,
const base::FilePath& target,
unsigned long mount_flags) = 0; // NOLINT(runtime/int)
virtual bool BindMount(const base::FilePath& old_path,
const base::FilePath& new_path) = 0;
virtual bool SharedMount(const base::FilePath& path) = 0;
virtual bool Umount(const base::FilePath& path) = 0;
virtual bool UmountIfExists(const base::FilePath& path) = 0;
// Unmounts |path|, then frees the loop device for the |path|.
virtual bool LoopUmount(const base::FilePath& path) = 0;
virtual bool LoopUmountIfExists(const base::FilePath& path) = 0;
};
// A class that umounts a mountpoint when the mountpoint goes out of scope.
class ScopedMount {
public:
ScopedMount(const base::FilePath& path, ArcMounter* mounter, bool is_loop);
~ScopedMount();
// Mounts |source| to |target| and returns a unique_ptr that umounts the
// mountpoint when it goes out of scope.
static std::unique_ptr<ScopedMount> CreateScopedMount(
ArcMounter* mounter,
const std::string& source,
const base::FilePath& target,
const char* filesystem_type,
unsigned long mount_flags, // NOLINT(runtime/int)
const char* data);
// Loopmounts |source| to |target| and returns a unique_ptr that umounts the
// mountpoint when it goes out of scope.
static std::unique_ptr<ScopedMount> CreateScopedLoopMount(
ArcMounter* mounter,
const std::string& source,
const base::FilePath& target,
unsigned long flags); // NOLINT(runtime/int)
// Bindmounts |old_path| to |new_path| and returns a unique_ptr that umounts
// the mountpoint when it goes out of scope.
static std::unique_ptr<ScopedMount> CreateScopedBindMount(
ArcMounter* mounter,
const base::FilePath& old_path,
const base::FilePath& new_path);
private:
// Owned by caller.
ArcMounter* const mounter_;
const base::FilePath path_;
const bool is_loop_;
DISALLOW_COPY_AND_ASSIGN(ScopedMount);
};
// A class that restores a mount namespace when it goes out of scope. This can
// be done by entering another process' mount namespace by using
// CreateScopedMountNamespaceForPid(), or supplying a mount namespace FD
// directly.
class ScopedMountNamespace {
public:
// Enters the process identified by |pid|'s mount namespace and returns a
// unique_ptr that restores the original mount namespace when it goes out of
// scope.
static std::unique_ptr<ScopedMountNamespace> CreateScopedMountNamespaceForPid(
pid_t pid);
explicit ScopedMountNamespace(base::ScopedFD mount_namespace_fd);
~ScopedMountNamespace();
private:
base::ScopedFD mount_namespace_fd_;
DISALLOW_COPY_AND_ASSIGN(ScopedMountNamespace);
};
// Resolves |path| to an absolute path that does not include symbolic links
// or the special . or .. directory entries.
base::FilePath Realpath(const base::FilePath& path);
// Creates directories specified by |full_path|. Newly created directories will
// have 0755 permissions. Returns true on success.
bool MkdirRecursively(const base::FilePath& full_path);
// Changes the owner of the |path|. Returns true on success.
bool Chown(uid_t uid, gid_t gid, const base::FilePath& path);
// Changes SELinux context of the |path|. Returns true on success.
bool Chcon(const std::string& context, const base::FilePath& path);
// Creates the |path| with the |mode|, |uid|, and |gid|. Also creates parent
// directories of the |path| if they do not exist. Newly created parent
// directories will have 0755 (mode), caller's uid, and caller's gid.
// Returns true on success.
bool InstallDirectory(mode_t mode,
uid_t uid,
gid_t gid,
const base::FilePath& path);
// Creates |file_path| with |mode| and writes |content| to the file. If the
// file already exists, this function overwrites the existing one and sets its
// mode to |mode|. Returns true on success.
bool WriteToFile(const base::FilePath& file_path,
mode_t mode,
const std::string& content);
// Reads |prop_file_path| for an Android property with |prop_name|. If the
// property is found, stores its value in |out_prop| and returns true.
// Otherwise, returns false without updating |out_prop|.
bool GetPropertyFromFile(const base::FilePath& prop_file_path,
const std::string& prop_name,
std::string* out_prop);
// Reads |prop_file_path| and fills property map |out_properties|. Returns true
// if property file was correctly read and parsed.
bool GetPropertiesFromFile(const base::FilePath& prop_file_path,
std::map<std::string, std::string>* out_properties);
// Reads Android's packages.xml at |packages_xml_path|, fills
// |out_fingerprint| and |out_sdk_version| with the OS fingerprint and the SDK
// version for the internal storage found in the XML.
// If the file does not exist or no fingerprint is found in the file, returns
// false.
bool GetFingerprintAndSdkVersionFromPackagesXml(
const base::FilePath& packages_xml_path,
std::string* out_fingerprint,
std::string* out_sdk_version);
// Creates |file_path| with |mode|. If the file already exists, this function
// sets the file size to 0 and mode to |mode|. Returns true on success.
bool CreateOrTruncate(const base::FilePath& file_path, mode_t mode);
// Waits for all paths in |paths| to be available. Returns true if all the paths
// are found. If it times out, returns false. If |out_elapsed| is not |nullptr|,
// the function stores the time spent in the function in the variable.
bool WaitForPaths(std::initializer_list<base::FilePath> paths,
const base::TimeDelta& timeout,
base::TimeDelta* out_elapsed);
// Launches the command specified by |argv| and waits for the command to finish.
// Returns true if the command returns 0.
//
// WARNING: LaunchAndWait is *very* slow. Use this only when it's unavoidable.
// One LaunchAndWait call will take at least ~40ms on ARM Chromebooks because
// arc_setup is executed when the CPU is very busy and fork/exec takes time.
//
// WARNING: *Never* execute /bin/[u]mount with LaunchAndWait which may take
// ~200ms or more. Instead, use one of the mount/umount syscall wrappers above.
bool LaunchAndWait(const std::vector<std::string>& argv);
// Restores contexts of the |directories| and their contents recursively.
// Returns true on success.
bool RestoreconRecursively(const std::vector<base::FilePath>& directories);
// Restores contexts of the |paths|. Returns true on success.
bool Restorecon(const std::vector<base::FilePath>& paths);
// Generates a unique, 20-character hex string from |chromeos_user| and
// |salt| which can be used as Android's ro.boot.serialno and ro.serialno
// properties. Note that Android treats serialno in a case-insensitive manner.
std::string GenerateFakeSerialNumber(const std::string& chromeos_user,
const std::string& salt);
// Gets an offset seed (>0) that can be passed to ArtContainer::PatchImage().
uint64_t GetArtCompilationOffsetSeed(const std::string& image_build_id,
const std::string& salt);
// Clears |dir| by renaming it to a randomly-named temp directory in
// |android_data_old_dir|. Does nothing if |dir| does not exist or is not a
// directory. |android_data_old_dir| will be cleaned up by
// arc-stale-directory-remover kicked off by arc-booted signal.
bool MoveDirIntoDataOldDir(const base::FilePath& dir,
const base::FilePath& android_data_old_dir);
// Deletes files in |directory|, directory tree is kept to avoid recreating
// sub-directories.
bool DeleteFilesInDir(const base::FilePath& directory);
// Returns a mounter for production.
std::unique_ptr<ArcMounter> GetDefaultMounter();
// Reads |file_path| line by line and pass each line to the |callback| after
// trimming it. If |callback| returns true, stops reading the file and returns
// true.
bool FindLine(const base::FilePath& file_path,
const base::Callback<bool(const std::string&)>& callback);
// See OpenSafely() in arc_setup_util.cc.
base::ScopedFD OpenSafelyForTesting(const base::FilePath& path,
int flags,
mode_t mode);
// Reads |lsb_release_file_path| and returns the Chrome OS channel, or
// "unknown" in case of failures.
std::string GetChromeOsChannelFromFile(
const base::FilePath& lsb_release_file_path);
// Reads the OCI container state from |path| and populates |out_container_pid|
// with the PID of the container and |out_rootfs| with the path to the root of
// the container.
bool GetOciContainerState(const base::FilePath& path,
pid_t* out_container_pid,
base::FilePath* out_rootfs);
// Expands the contents of a template Android property file. Strings like
// {property} will be looked up in |config| and replaced with their values.
// Returns true if all {} strings were successfully expanded, or false if any
// properties were not found.
bool ExpandPropertyContents(const std::string& content,
brillo::CrosConfigInterface* config,
std::string* expanded_content);
// Replaces fingerprint in packages cache xml file.
void SetFingerprintsForPackagesCache(const std::string& content,
const std::string& fingerprint,
std::string* new_content);
// Truncates the value side of an Android key=val property line, including
// handling the special case of build fingerprint.
std::string TruncateAndroidProperty(const std::string& line);
// Opens the |path| in a safe way (see OpenSafelyInternal() for more details)
// and checks if the returned FD is a FIFO. Returns an invalid FD if it's not.
base::ScopedFD OpenFifoSafely(const base::FilePath& path,
int flags,
mode_t mode);
// Performs deep resource copying. Resource means directory, regular file or
// symbolic link. |from_readonly_path| must point to a read-only filesystem like
// squashfs. In case |from_readonly_path| defines a directory then recursive
// copy of resources is used. This also copies permissions and owners of the
// resources. selinux attributes are copied only for top resource in case it is
// regular file or directory. |from_readonly_path| and |to_path| must define an
// absolute path. All underling unsupported resources are ignored. For the root
// unsupported resources false is returned.
bool CopyWithAttributes(const base::FilePath& from_readonly_path,
const base::FilePath& to_path);
// Returns true if the process with |pid| is alive or zombie.
bool IsProcessAlive(pid_t pid);
// Reads files in the vector and returns SHA1 hash of the files.
bool GetSha1HashOfFiles(const std::vector<base::FilePath>& files,
std::string* out_hash);
// Sets an extended attribute of the |path| to |value|.
bool SetXattr(const base::FilePath& path,
const char* name,
const std::string& value);
} // namespace arc
#endif // ARC_SETUP_ARC_SETUP_UTIL_H_