* Copyright (c) 2022 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 "permission.h"
#include <accesstoken_kit.h>
#include <bundle_constants.h>
#include <ipc_skeleton.h>
#include <bundle_mgr_proxy.h>
#include <bundle_mgr_interface.h>
#include <system_ability_definition.h>
#include <iservice_registry.h>
#include <tokenid_kit.h>
#include "window_manager_hilog.h"
namespace OHOS {
namespace Rosen {
namespace {
constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, HILOG_DOMAIN_WINDOW, "Permission"};
}
bool Permission::IsSystemServiceCalling(bool needPrintLog, bool isLocalSysCalling)
{
uint32_t tokenId = isLocalSysCalling ?
static_cast<uint32_t>(IPCSkeleton::GetSelfTokenID()) :
IPCSkeleton::GetCallingTokenID();
const auto flag = Security::AccessToken::AccessTokenKit::GetTokenTypeFlag(tokenId);
if (flag == Security::AccessToken::ATokenTypeEnum::TOKEN_NATIVE ||
flag == Security::AccessToken::ATokenTypeEnum::TOKEN_SHELL) {
TLOGD(WmsLogTag::DEFAULT, "system service calling, tokenId: %{private}u, flag: %{public}u", tokenId, flag);
return true;
}
if (needPrintLog) {
TLOGE(WmsLogTag::DEFAULT, "not system service calling, tokenId: %{private}u, flag: %{public}u", tokenId, flag);
}
return false;
}
bool Permission::IsSystemCallingOrStartByHdcd(bool isLocalSysCalling)
{
if (!IsSystemCalling(isLocalSysCalling) && !IsStartByHdcd(isLocalSysCalling)) {
TLOGE(WmsLogTag::DEFAULT, "not system calling, not start by hdcd");
return false;
}
return true;
}
bool Permission::IsSystemCalling(bool isLocalSysCalling)
{
if (IsSystemServiceCalling(false, isLocalSysCalling)) {
return true;
}
uint64_t tokenId = isLocalSysCalling ?
IPCSkeleton::GetSelfTokenID() : IPCSkeleton::GetCallingFullTokenID();
return Security::AccessToken::TokenIdKit::IsSystemAppByFullTokenID(tokenId);
}
bool Permission::CheckCallingPermission(const std::string& permission)
{
WLOGFD("permission:%{public}s", permission.c_str());
if (Security::AccessToken::AccessTokenKit::VerifyAccessToken(IPCSkeleton::GetCallingTokenID(), permission) !=
AppExecFwk::Constants::PERMISSION_GRANTED) {
TLOGD(WmsLogTag::DEFAULT, "Permission denied!");
return false;
}
WLOGFD("permission ok!");
return true;
}
bool Permission::CheckSelfPermission(const std::string& permission)
{
TLOGI(WmsLogTag::DEFAULT, "permission: %{public}s", permission.c_str());
if (Security::AccessToken::AccessTokenKit::VerifyAccessToken(IPCSkeleton::GetSelfTokenID(), permission) !=
AppExecFwk::Constants::PERMISSION_GRANTED) {
TLOGE(WmsLogTag::DEFAULT, "Permission denied!");
return false;
}
return true;
}
bool Permission::IsStartByHdcd(bool isLocalSysCalling)
{
uint32_t tokenId = isLocalSysCalling ?
static_cast<uint32_t>(IPCSkeleton::GetSelfTokenID()) :
IPCSkeleton::GetCallingTokenID();
OHOS::Security::AccessToken::NativeTokenInfo info;
if (!IsTokenNativeOrShellType(tokenId)) {
return false;
}
if (Security::AccessToken::AccessTokenKit::GetNativeTokenInfo(tokenId, info) != 0) {
return false;
}
if (info.processName.compare("hdcd") == 0) {
return true;
}
return false;
}
bool Permission::IsStartByInputMethod()
{
sptr<ISystemAbilityManager> systemAbilityManager =
SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager();
if (!systemAbilityManager) {
WLOGFE("Failed to get system ability mgr.");
return false;
}
sptr<IRemoteObject> remoteObject
= systemAbilityManager->GetSystemAbility(BUNDLE_MGR_SERVICE_SYS_ABILITY_ID);
if (!remoteObject) {
WLOGFE("Failed to get display manager service.");
return false;
}
auto bundleManagerServiceProxy_ = iface_cast<AppExecFwk::IBundleMgr>(remoteObject);
if ((!bundleManagerServiceProxy_) || (!bundleManagerServiceProxy_->AsObject())) {
WLOGFE("Failed to get system display manager services");
return false;
}
int uid = IPCSkeleton::GetCallingUid();
std::string identity = IPCSkeleton::ResetCallingIdentity();
std::string bundleName;
bundleManagerServiceProxy_->GetNameForUid(uid, bundleName);
AppExecFwk::BundleInfo bundleInfo;
int userId = uid / 200000;
bool result = bundleManagerServiceProxy_->GetBundleInfo(bundleName,
AppExecFwk::BundleFlag::GET_BUNDLE_WITH_EXTENSION_INFO, bundleInfo, userId);
IPCSkeleton::SetCallingIdentity(identity);
if (!result) {
WLOGFE("failed to query extension ability info");
return false;
}
auto extensionInfo = std::find_if(bundleInfo.extensionInfos.begin(), bundleInfo.extensionInfos.end(),
[](AppExecFwk::ExtensionAbilityInfo extensionInfo) {
return (extensionInfo.type == AppExecFwk::ExtensionAbilityType::INPUTMETHOD);
});
if (extensionInfo != bundleInfo.extensionInfos.end()) {
return true;
} else {
return false;
}
}
bool Permission::CheckIsCallingBundleName(const std::string name)
{
sptr<ISystemAbilityManager> systemAbilityManager =
SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager();
if (!systemAbilityManager) {
WLOGFE("Failed to get system ability mgr.");
return false;
}
sptr<IRemoteObject> remoteObject
= systemAbilityManager->GetSystemAbility(BUNDLE_MGR_SERVICE_SYS_ABILITY_ID);
if (!remoteObject) {
WLOGFE("Failed to get display manager service.");
return false;
}
auto bundleManagerServiceProxy_ = iface_cast<AppExecFwk::IBundleMgr>(remoteObject);
if ((!bundleManagerServiceProxy_) || (!bundleManagerServiceProxy_->AsObject())) {
WLOGFE("Failed to get system display manager services");
return false;
}
int uid = IPCSkeleton::GetCallingUid();
std::string identity = IPCSkeleton::ResetCallingIdentity();
TLOGD(WmsLogTag::DEFAULT, "resetCallingIdentity:%{public}s", identity.c_str());
std::string callingBundleName;
bundleManagerServiceProxy_->GetNameForUid(uid, callingBundleName);
TLOGD(WmsLogTag::DEFAULT, "get the bundle name:%{public}s", callingBundleName.c_str());
IPCSkeleton::SetCallingIdentity(identity);
std::string::size_type idx = callingBundleName.find(name);
if (idx != std::string::npos) {
return true;
}
return false;
}
bool Permission::IsTokenNativeOrShellType(uint32_t tokenId)
{
const auto flag = Security::AccessToken::AccessTokenKit::GetTokenTypeFlag(tokenId);
if (flag != Security::AccessToken::ATokenTypeEnum::TOKEN_NATIVE &&
flag != Security::AccessToken::ATokenTypeEnum::TOKEN_SHELL) {
return false;
}
return true;
}
}
}