* Copyright (c) 2025-2026 Huawei Device Co., Ltd.
* 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 "user_controller.h"
#include <mutex>
#include "ability_manager_errors.h"
#include "display_util.h"
#include "hilog_tag_wrapper.h"
#include "ipc_skeleton.h"
#include "os_account_manager_wrapper.h"
namespace OHOS {
namespace AbilityRuntime {
namespace {
constexpr int32_t BASE_USER_RANGE = 200000;
constexpr int32_t DEFAULT_INVAL_VALUE = -1;
constexpr int32_t U0_USER_ID = 0;
constexpr int32_t U1_USER_ID = 1;
constexpr int32_t USER_ID_DEFAULT = 100;
constexpr int32_t ACCOUNT_MGR_SERVICE_UID = 3058;
constexpr uint64_t DEFAULT_DISPLAY_ID = 0;
}
UserController& UserController::GetInstance()
{
static UserController instance;
return instance;
}
void UserController::ClearUserId(int32_t userId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
for (auto iter = displayIdMap_.begin(); iter != displayIdMap_.end(); iter++) {
if (iter->second == userId) {
displayIdMap_.erase(iter);
break;
}
}
}
void UserController::ClearDisplayId(uint64_t displayId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
displayIdMap_.erase(displayId);
}
int32_t UserController::GetForegroundUserId(uint64_t displayId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
auto iter = displayIdMap_.find(displayId);
if (iter != displayIdMap_.end()) {
return iter->second;
}
return 0;
}
bool UserController::IsExistDisplayId(uint64_t displayId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
auto iter = displayIdMap_.find(displayId);
return iter != displayIdMap_.end();
}
bool UserController::GetDisplayIdByForegroundUserId(int32_t userId, uint64_t &displayId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
for (auto &item : displayIdMap_) {
if (item.second == userId) {
displayId = item.first;
return true;
}
}
return false;
}
bool UserController::IsForegroundUser(int32_t userId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
for (auto &item : displayIdMap_) {
if (item.second == userId) {
return true;
}
}
return false;
}
bool UserController::IsForegroundUser(int32_t userId, uint64_t displayId)
{
int32_t foregroundUserId = GetForegroundUserId(displayId);
if (foregroundUserId == userId) {
return true;
}
TAG_LOGI(AAFwkTag::ABILITYMGR, "foregroundUserId:%{public}d", foregroundUserId);
return false;
}
void UserController::SetForegroundUserId(int32_t userId, uint64_t displayId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
displayIdMap_[displayId] = userId;
}
void UserController::GetAllForegroundUserId(std::vector<int32_t> &userIds)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
for (auto &item : displayIdMap_) {
userIds.push_back(item.second);
}
}
int32_t UserController::GetCallerUserId()
{
int32_t callerUid = IPCSkeleton::GetCallingUid();
int32_t callerUser = callerUid / BASE_USER_RANGE;
TAG_LOGD(AAFwkTag::ABILITYMGR, "callerUser = %{public}d, CallingUid = %{public}d.", callerUser, callerUid);
if (callerUser == U0_USER_ID || callerUser == U1_USER_ID) {
callerUser = GetForegroundUserId(DEFAULT_DISPLAY_ID);
}
return callerUser;
}
int32_t UserController::GetFreezingNewUserId() const
{
return freezingNewUserId_;
}
void UserController::SetFreezingNewUserId(int32_t userId)
{
freezingNewUserId_ = userId;
}
bool UserController::IsExistOsAccount(int32_t userId) const
{
bool isExist = false;
auto errCode = AppExecFwk::OsAccountManagerWrapper::IsOsAccountExists(userId,
isExist);
return (errCode == 0) && isExist;
}
int32_t UserController::CheckStopUserParam(int32_t userId) const
{
if (userId == USER_ID_DEFAULT) {
TAG_LOGE(AAFwkTag::ABILITYMGR, "stopUser invalid:%{public}d", userId);
return AAFwk::INVALID_USERID_VALUE;
}
return CheckUserParam(userId);
}
int32_t UserController::CheckUserParam(int32_t userId) const
{
if (userId <= U0_USER_ID) {
TAG_LOGE(AAFwkTag::ABILITYMGR, "userId invalid:%{public}d", userId);
return AAFwk::INVALID_USERID_VALUE;
}
if (IPCSkeleton::GetCallingUid() != ACCOUNT_MGR_SERVICE_UID) {
TAG_LOGE(AAFwkTag::ABILITYMGR, "permission verification failed, not account process");
return AAFwk::CHECK_PERMISSION_FAILED;
}
if (!IsExistOsAccount(userId)) {
TAG_LOGE(AAFwkTag::ABILITYMGR, "userId not exist");
return AAFwk::INVALID_USERID_VALUE;
}
return ERR_OK;
}
UserController::UserLockStatus UserController::GetUserLockStatus(int32_t userId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
auto iter = userLockStatusMap_.find(userId);
if (iter != userLockStatusMap_.end()) {
return iter->second;
}
return UserLockStatus::USER_LOCK_STATUS_BUTT;
}
void UserController::SetUserLockStatus(int32_t userId, UserController::UserLockStatus status)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
if (status == UserLockStatus::USER_LOCKED &&
userLockStatusMap_.find(userId) != userLockStatusMap_.end()) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "userId:%{public}d already exist", userId);
return;
}
userLockStatusMap_[userId] = status;
TAG_LOGI(AAFwkTag::ABILITYMGR, "SetUserLockStatus successful, userId:%{public}d, status:%{public}d",
userId, static_cast<int32_t>(status));
}
void UserController::DeleteUserLockStatus(int32_t userId)
{
std::lock_guard<ffrt::mutex> guard(userLock_);
userLockStatusMap_.erase(userId);
TAG_LOGD(AAFwkTag::ABILITYMGR, "DeleteUserLockStatus successful, userId:%{public}d", userId);
}
int32_t UserController::GetUserLockedBundleList(int32_t userId, std::unordered_set<std::string> &userLockedBundleList)
{
TAG_LOGD(AAFwkTag::ABILITYMGR, "GetUserLockedBundleList called");
{
std::lock_guard<ffrt::mutex> guard(userLockedBundleMapMutex_);
auto it = userLockedBundleMap_.find(userId);
if (it != userLockedBundleMap_.end()) {
userLockedBundleList = std::move(it->second);
userLockedBundleMap_.erase(it);
return ERR_OK;
}
}
TAG_LOGD(AAFwkTag::ABILITYMGR, "GetUserLockedBundleList, no bundle list for userId: %{public}d", userId);
return ERR_OK;
}
void UserController::DeleteUserLockedBundleListByUserId(int32_t userId)
{
TAG_LOGD(AAFwkTag::ABILITYMGR, "DeleteUserLockedBundleListByUserId called");
std::lock_guard<ffrt::mutex> guard(userLockedBundleMapMutex_);
auto it = userLockedBundleMap_.find(userId);
if (it != userLockedBundleMap_.end()) {
userLockedBundleMap_.erase(it);
}
}
void UserController::AddToUserLockedBundleList(const std::string &bundleName, int32_t userId)
{
if (bundleName.empty()) {
TAG_LOGE(AAFwkTag::ABILITYMGR, "empty bundleName");
return;
}
if (userId == DEFAULT_INVAL_VALUE) {
TAG_LOGE(AAFwkTag::ABILITYMGR, "invalid userId: %{public}d", userId);
return;
}
if (userId == U0_USER_ID || userId == U1_USER_ID) {
TAG_LOGE(AAFwkTag::ABILITYMGR, "invalid userId: %{public}d", userId);
return;
}
auto userLockStatus = AbilityRuntime::UserController::GetInstance().GetUserLockStatus(userId);
if (userLockStatus != AbilityRuntime::UserController::UserLockStatus::USER_LOCKED) {
TAG_LOGW(AAFwkTag::ABILITYMGR, "invalid user lock status: %{public}d",
static_cast<int32_t>(userLockStatus));
return;
}
{
std::lock_guard<ffrt::mutex> guard(userLockedBundleMapMutex_);
userLockedBundleMap_[userId].insert(bundleName);
}
TAG_LOGD(AAFwkTag::ABILITYMGR, "AddToUserLockedBundleList success, userId: %{public}d, bundleName: %{public}s",
userId, bundleName.c_str());
}
}
}