// Copyright 2017 The Chromium 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 COMPONENTS_ARC_ARC_UTIL_H_ #define COMPONENTS_ARC_ARC_UTIL_H_ // This file contains utility to see ARC functionality status controlled by // outside of ARC, e.g. CommandLine flag, attribute of global data/state, // users' preferences, and FeatureList. #include #include #include #include #include "chromeos/dbus/dbus_method_call_status.h" namespace aura { class Window; } // namespace aura namespace base { struct SystemMemoryInfoKB; } // namespace base namespace user_manager { class User; } // namespace user_manager namespace arc { // This enum should be synced with CpuRestrictionState in // src/third_party/cros_system_api/dbus/vm_concierge/concierge_service.proto enum class CpuRestrictionState { // The CPU usage is relaxed. CPU_RESTRICTION_FOREGROUND = 0, // The CPU usage is tightly restricted. CPU_RESTRICTION_BACKGROUND = 1, }; enum class UpstartOperation { JOB_START = 0, JOB_STOP, // This sends STOP D-Bus message, then sends START. Unlike 'initctl restart', // this starts the job even when the job hasn't been started yet (and // therefore the stop operation fails.) JOB_STOP_AND_START, }; // Enum for configuring ureadahead mode of operation during ARCVM boot process. enum class ArcVmUreadaheadMode { // ARCVM ureadahead is in readahead mode for normal user boot flow. READAHEAD = 0, // ARCVM ureadahead is turned on for generate mode in data collector flow. GENERATE, // ARCVM ureadahead is turned off for disabled mode. DISABLED, }; using SystemMemoryInfoCallback = base::RepeatingCallback; // Upstart Job Description struct JobDesc { // Explicit ctor/dtor declaration is necessary for complex struct. See // https://cs.chromium.org/chromium/src/tools/clang/plugins/FindBadConstructsConsumer.cpp JobDesc(const std::string& job_name, UpstartOperation operation, const std::vector& environment); ~JobDesc(); JobDesc(const JobDesc& other); std::string job_name; UpstartOperation operation; std::vector environment; }; // Name of the crosvm instance when ARCVM is enabled. constexpr char kArcVmName[] = "arcvm"; // Returns true if ARC is installed and the current device is officially // supported to run ARC. // Note that, to run ARC practically, it is necessary to meet more conditions, // e.g., ARC supports only on Primary User Profile. To see if ARC can actually // run for the profile etc., arc::ArcSessionManager::IsAllowedForProfile() is // the function for that purpose. Please see also its comment, too. // Also note that, ARC singleton classes (e.g. ArcSessionManager, // ArcServiceManager, ArcServiceLauncher) are instantiated regardless of this // check, so it is ok to access them directly. bool IsArcAvailable(); // Returns true if ARC VM is enabled. bool IsArcVmEnabled(); // Returns true if ARC VM realtime VCPU is enabled. // |cpus| is the number of logical cores that are currently online on the // device. bool IsArcVmRtVcpuEnabled(uint32_t cpus); // Returns true if ARC VM advised to use Huge Pages for guest memory. bool IsArcVmUseHugePages(); // Returns true if all development configuration directives in the // vm_tools/init/arcvm_dev.conf file are ignored during ARCVM start. bool IsArcVmDevConfIgnored(); // Returns mode of operation for ureadahead during the ARCVM boot flow. // Valid modes are readahead, generate, or disabled. ArcVmUreadaheadMode GetArcVmUreadaheadMode(SystemMemoryInfoCallback callback); // Returns true if ARC should always start within the primary user session // (opted in user or not), and other supported mode such as guest and Kiosk // mode. bool ShouldArcAlwaysStart(); // Returns true if ARC should always start with no Play Store availability // within the primary user session (opted in user or not), and other supported // mode such as guest and Kiosk mode. bool ShouldArcAlwaysStartWithNoPlayStore(); // Returns true if ARC OptIn ui needs to be shown for testing. bool ShouldShowOptInForTesting(); // Returns true if ARC is installed and running ARC kiosk apps on the current // device is officially supported. // It doesn't follow that ARC is available for user sessions and // IsArcAvailable() will return true, although the reverse should be. // This is used to distinguish special cases when ARC kiosk is available on // the device, but is not yet supported for regular user sessions. // In most cases, IsArcAvailable() check should be used instead of this. // Also not that this function may return true when ARC is not running in // Kiosk mode, it checks only ARC Kiosk availability. bool IsArcKioskAvailable(); // Returns true if ARC should run under Kiosk mode for the current profile. // As it can return true only when user is already initialized, it implies // that ARC availability was checked before and IsArcKioskAvailable() // should also return true in that case. bool IsArcKioskMode(); // Returns true if current user is a robot account user, or offline demo mode // user. // These are Public Session and ARC Kiosk users. Note that demo mode, including // offline demo mode, is implemented as a Public Session - offline demo mode // is setup offline and it isn't associated with a working robot account. // As it can return true only when user is already initialized, it implies // that ARC availability was checked before. // The check is basically IsArcKioskMode() | IsLoggedInAsPublicSession(). bool IsRobotOrOfflineDemoAccountMode(); // Returns true if ARC is allowed for the given user. Note this should not be // used as a signal of whether ARC is allowed alone because it only considers // user meta data. e.g. a user could be allowed for ARC but if the user signs in // as a secondary user or signs in to create a supervised user, ARC should be // disabled for such cases. bool IsArcAllowedForUser(const user_manager::User* user); // Checks if opt-in verification was disabled by switch in command line. // In most cases, it is disabled for testing purpose. bool IsArcOptInVerificationDisabled(); constexpr int kNoTaskId = -1; constexpr int kSystemWindowTaskId = 0; // Returns the task id given by the exo shell's application id, or // absl::nullopt if not an ARC window. absl::optional GetWindowTaskId(const aura::Window* window); absl::optional GetTaskIdFromWindowAppId(const std::string& app_id); absl::optional GetWindowSessionId(const aura::Window* window); absl::optional GetSessionIdFromWindowAppId(const std::string& app_id); absl::optional GetWindowTaskOrSessionId(const aura::Window* window); // Returns true if ARC app icons are forced to cache. bool IsArcForceCacheAppIcon(); // Returns true if data clean up is requested for each ARC start. bool IsArcDataCleanupOnStartRequested(); // Returns true in case ARC app sync flow is disabled. bool IsArcAppSyncFlowDisabled(); // Returns true in case ARC locale sync is disabled. bool IsArcLocaleSyncDisabled(); // Returns true in case ARC Play Auto Install flow is disabled. bool IsArcPlayAutoInstallDisabled(); // Adjusts the amount of CPU the ARC instance is allowed to use. When // |cpu_restriction_state| is CPU_RESTRICTION_BACKGROUND, the limit is adjusted // so ARC can only use tightly restricted CPU resources. void SetArcCpuRestriction(CpuRestrictionState cpu_restriction_state); // Returns the Android density that should be used for the given device scale // factor used on chrome. int32_t GetLcdDensityForDeviceScaleFactor(float device_scale_factor); // Gets a system property managed by crossystem. This function can be called // only with base::MayBlock(). int GetSystemPropertyInt(const std::string& property); // Starts or stops a job in |jobs| one by one. If starting a job fails, the // whole operation is aborted and the |callback| is immediately called with // false. Errors on stopping a job is just ignored with some logs. Once all jobs // are successfully processed, |callback| is called with true. void ConfigureUpstartJobs(std::deque jobs, chromeos::VoidDBusMethodCallback callback); // Returns true if core scheduling is supported in the kernel, and CPU has MDS // or L1TF vulnerabilities. Core scheduling does not run on CPUs that are not // vulnerable. // TODO(yusukes): Once https://crrev.com/c/3063740 is submitted, switch to the // function in the CL and delete this. bool IsCoreSchedulingAvailable(); // Returns number of physical cores. // TODO(yusukes): Once https://crrev.com/c/3063740 is submitted, switch to the // function in the CL and delete this. int NumberOfProcessorsForCoreScheduling(); } // namespace arc #endif // COMPONENTS_ARC_ARC_UTIL_H_