2012-08-08 02:56:30 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cutils/multiuser.h>
|
2016-12-13 19:55:19 +01:00
|
|
|
#include <private/android_filesystem_config.h>
|
2012-08-08 02:56:30 +02:00
|
|
|
|
2012-08-28 00:03:37 +02:00
|
|
|
userid_t multiuser_get_user_id(uid_t uid) {
|
2016-12-13 19:55:19 +01:00
|
|
|
return uid / AID_USER_OFFSET;
|
2012-08-08 02:56:30 +02:00
|
|
|
}
|
|
|
|
|
2012-08-28 00:03:37 +02:00
|
|
|
appid_t multiuser_get_app_id(uid_t uid) {
|
2016-12-13 19:55:19 +01:00
|
|
|
return uid % AID_USER_OFFSET;
|
2012-08-08 02:56:30 +02:00
|
|
|
}
|
|
|
|
|
2016-12-13 19:55:19 +01:00
|
|
|
uid_t multiuser_get_uid(userid_t user_id, appid_t app_id) {
|
|
|
|
return (user_id * AID_USER_OFFSET) + (app_id % AID_USER_OFFSET);
|
2012-08-08 02:56:30 +02:00
|
|
|
}
|
2016-02-01 20:27:01 +01:00
|
|
|
|
2016-12-13 19:55:19 +01:00
|
|
|
gid_t multiuser_get_cache_gid(userid_t user_id, appid_t app_id) {
|
|
|
|
if (app_id >= AID_APP_START && app_id <= AID_APP_END) {
|
|
|
|
return multiuser_get_uid(user_id, (app_id - AID_APP_START) + AID_CACHE_GID_START);
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-19 01:04:21 +01:00
|
|
|
gid_t multiuser_get_ext_gid(userid_t user_id, appid_t app_id) {
|
|
|
|
if (app_id >= AID_APP_START && app_id <= AID_APP_END) {
|
|
|
|
return multiuser_get_uid(user_id, (app_id - AID_APP_START) + AID_EXT_GID_START);
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 22:45:16 +02:00
|
|
|
gid_t multiuser_get_ext_cache_gid(userid_t user_id, appid_t app_id) {
|
|
|
|
if (app_id >= AID_APP_START && app_id <= AID_APP_END) {
|
|
|
|
return multiuser_get_uid(user_id, (app_id - AID_APP_START) + AID_EXT_CACHE_GID_START);
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-13 19:55:19 +01:00
|
|
|
gid_t multiuser_get_shared_gid(userid_t user_id, appid_t app_id) {
|
|
|
|
if (app_id >= AID_APP_START && app_id <= AID_APP_END) {
|
|
|
|
return multiuser_get_uid(user_id, (app_id - AID_APP_START) + AID_SHARED_GID_START);
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2016-02-01 20:27:01 +01:00
|
|
|
|
2016-12-13 19:55:19 +01:00
|
|
|
gid_t multiuser_get_shared_app_gid(uid_t uid) {
|
|
|
|
return multiuser_get_shared_gid(multiuser_get_user_id(uid), multiuser_get_app_id(uid));
|
2016-02-01 20:27:01 +01:00
|
|
|
}
|