kernel: Use a cached buffer as an array-based stack to avoid panics caused by overly deep traversal.

INTCAM: no information
       TPU: no information
       TNR: no information
       MFC: no information
        BO: no information
[   4.715484] [I] [DSS] Last AVB: avb_ret=ERROR_VERIFICATION
[   4.715890] [I] [DSS] Last AVB: avb_veritymode=enforcing
[   4.716289] [I] [DSS] Last AVB: avb_error_parts=boot
[   4.717085] [I] [LNXDBG] build info set by kernel
RAMDUMP_MSG.txt:
  reset message: KP: kernel stack overflow
  UUID: e2faff80-83ea-c240-ac75-d7b8a528c892
  last kernel version: 6.1.134-android14-11-g23e556daebf3-ab13800907
  aosp kernel version: 6.1.145-android14-11-g8d713f9e8e7b-ab13202960
  build: google/shiba/shiba:16/BP3A.250905.014/13873947:user/release-keys
  RST_STAT: 0x1 - CLUSTER0_NONCPU_WDTRESET
  GSA_RESET_STATUS: 0x0 -
  Reboot reason: 0xbaba - Kernel PANIC
  Reboot mode: 0x0 - Normal Boot
[   4.719030] [I] [DSS] -------------------- DSS LOGS END --------------------

Reboot Info:
  RST_STAT: 0x180000 - PIN_RESET | PO_RESET
  GSA_RESET_STATUS: 0x0 -
  Reboot reason: 0xbaba - Kernel PANIC
  Reboot mode: 0x0 - Normal Boot

Signed-off-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com>
This commit is contained in:
ShirkNeko
2025-09-16 00:53:48 +08:00
parent a197600cb5
commit eb5d8fa770

View File

@@ -28,6 +28,21 @@ static struct task_struct *throne_thread;
#define PRIMARY_USER_PATH "/data/user_de/0" #define PRIMARY_USER_PATH "/data/user_de/0"
#define MAX_SUPPORTED_USERS 32 // Supports up to 32 users #define MAX_SUPPORTED_USERS 32 // Supports up to 32 users
#define DATA_PATH_LEN 384 // 384 is enough for /data/app/<package>/base.apk and /data/user_de/{userid}/<package> #define DATA_PATH_LEN 384 // 384 is enough for /data/app/<package>/base.apk and /data/user_de/{userid}/<package>
#define SMALL_BUFFER_SIZE 64
// Global work buffer to avoid stack allocation
struct work_buffers {
char path_buffer[DATA_PATH_LEN];
char package_buffer[KSU_MAX_PACKAGE_NAME];
char small_buffer[SMALL_BUFFER_SIZE];
uid_t user_ids_buffer[MAX_SUPPORTED_USERS];
};
static struct work_buffers *get_work_buffer(void)
{
static struct work_buffers global_buffer;
return &global_buffer;
}
struct uid_data { struct uid_data {
struct list_head list; struct list_head list;
@@ -41,6 +56,7 @@ struct user_scan_ctx {
uid_t user_id; uid_t user_id;
size_t pkg_count; size_t pkg_count;
size_t error_count; size_t error_count;
struct work_buffers *work_buf; // Passing the work buffer
}; };
struct user_dir_ctx { struct user_dir_ctx {
@@ -77,8 +93,8 @@ struct my_dir_context {
int depth; int depth;
int *stop; int *stop;
bool found_dynamic_manager; bool found_dynamic_manager;
struct work_buffers *work_buf; // Passing the work buffer
}; };
// https://docs.kernel.org/filesystems/porting.html // https://docs.kernel.org/filesystems/porting.html
// filldir_t (readdir callbacks) calling conventions have changed. Instead of returning 0 or -E... it returns bool now. false means "no more" (as -E... used to) and true - "keep going" (as 0 in old calling conventions). Rationale: callers never looked at specific -E... values anyway. -> iterate_shared() instances require no changes at all, all filldir_t ones in the tree converted. // filldir_t (readdir callbacks) calling conventions have changed. Instead of returning 0 or -E... it returns bool now. false means "no more" (as -E... used to) and true - "keep going" (as 0 in old calling conventions). Rationale: callers never looked at specific -E... values anyway. -> iterate_shared() instances require no changes at all, all filldir_t ones in the tree converted.
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0) #if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
@@ -134,33 +150,30 @@ static int get_pkg_from_apk_path(char *pkg, const char *path)
} }
static void crown_manager(const char *apk, struct list_head *uid_data, static void crown_manager(const char *apk, struct list_head *uid_data,
int signature_index) int signature_index, struct work_buffers *work_buf)
{ {
char pkg[KSU_MAX_PACKAGE_NAME]; if (get_pkg_from_apk_path(work_buf->package_buffer, apk) < 0) {
if (get_pkg_from_apk_path(pkg, apk) < 0) {
pr_err("Failed to get package name from apk path: %s\n", apk); pr_err("Failed to get package name from apk path: %s\n", apk);
return; return;
} }
pr_info("manager pkg: %s, signature_index: %d\n", pkg, signature_index); pr_info("manager pkg: %s, signature_index: %d\n", work_buf->package_buffer, signature_index);
#ifdef KSU_MANAGER_PACKAGE #ifdef KSU_MANAGER_PACKAGE
// pkg is `/<real package>` // pkg is `/<real package>`
if (strncmp(pkg, KSU_MANAGER_PACKAGE, sizeof(KSU_MANAGER_PACKAGE))) { if (strncmp(work_buf->package_buffer, KSU_MANAGER_PACKAGE, sizeof(KSU_MANAGER_PACKAGE))) {
pr_info("manager package is inconsistent with kernel build: %s\n", pr_info("manager package is inconsistent with kernel build: %s\n",
KSU_MANAGER_PACKAGE); KSU_MANAGER_PACKAGE);
return; return;
} }
#endif #endif
struct list_head *list = (struct list_head *)uid_data;
struct uid_data *np; struct uid_data *np;
list_for_each_entry(np, uid_data, list) {
list_for_each_entry(np, list, list) { if (strncmp(np->package, work_buf->package_buffer, KSU_MAX_PACKAGE_NAME) == 0) {
if (strncmp(np->package, pkg, KSU_MAX_PACKAGE_NAME) == 0) {
pr_info("Crowning manager: %s(uid=%d, signature_index=%d, user=%u)\n", pr_info("Crowning manager: %s(uid=%d, signature_index=%d, user=%u)\n",
pkg, np->uid, signature_index, np->user_id); work_buf->package_buffer, np->uid, signature_index, np->user_id);
// Dynamic Sign index (100) or multi-manager signatures (>= 2)
if (signature_index == DYNAMIC_SIGN_INDEX || signature_index >= 2) { if (signature_index == DYNAMIC_SIGN_INDEX || signature_index >= 2) {
ksu_add_manager(np->uid, signature_index); ksu_add_manager(np->uid, signature_index);
if (!ksu_is_manager_uid_valid()) { if (!ksu_is_manager_uid_valid()) {
@@ -174,7 +187,9 @@ static void crown_manager(const char *apk, struct list_head *uid_data,
} }
} }
// Scan the primary user // Scan the primary user
static int scan_primary_user_apps(struct list_head *uid_list, size_t *pkg_count, size_t *error_count) static int scan_primary_user_apps(struct list_head *uid_list,
size_t *pkg_count, size_t *error_count,
struct work_buffers *work_buf)
{ {
struct file *dir_file; struct file *dir_file;
int ret; int ret;
@@ -193,7 +208,8 @@ static int scan_primary_user_apps(struct list_head *uid_list, size_t *pkg_count,
.uid_list = uid_list, .uid_list = uid_list,
.user_id = 0, .user_id = 0,
.pkg_count = 0, .pkg_count = 0,
.error_count = 0 .error_count = 0,
.work_buf = work_buf
}; };
struct user_dir_ctx uctx = { struct user_dir_ctx uctx = {
@@ -238,7 +254,7 @@ FILLDIR_RETURN_TYPE collect_user_ids(struct dir_context *ctx, const char *name,
} }
// Retrieve all active users (optional) // Retrieve all active users (optional)
static int get_all_active_users(uid_t *user_ids, size_t max_users, size_t *found_count) static int get_all_active_users(struct work_buffers *work_buf, size_t *found_count)
{ {
struct file *dir_file; struct file *dir_file;
int ret; int ret;
@@ -253,9 +269,9 @@ static int get_all_active_users(uid_t *user_ids, size_t max_users, size_t *found
struct user_id_ctx uctx = { struct user_id_ctx uctx = {
.ctx.actor = collect_user_ids, .ctx.actor = collect_user_ids,
.user_ids = user_ids, .user_ids = work_buf->user_ids_buffer,
.count = 0, .count = 0,
.max_count = max_users .max_count = MAX_SUPPORTED_USERS
}; };
ret = iterate_dir(dir_file, &uctx.ctx); ret = iterate_dir(dir_file, &uctx.ctx);
@@ -265,7 +281,7 @@ static int get_all_active_users(uid_t *user_ids, size_t max_users, size_t *found
if (uctx.count > 0) { if (uctx.count > 0) {
pr_info("Found %zu active users: ", uctx.count); pr_info("Found %zu active users: ", uctx.count);
for (size_t i = 0; i < uctx.count; i++) { for (size_t i = 0; i < uctx.count; i++) {
pr_cont("%u ", user_ids[i]); pr_cont("%u ", work_buf->user_ids_buffer[i]);
} }
pr_cont("\n"); pr_cont("\n");
} }
@@ -278,6 +294,7 @@ FILLDIR_RETURN_TYPE scan_user_packages(struct dir_context *ctx, const char *name
{ {
struct user_dir_ctx *uctx = container_of(ctx, struct user_dir_ctx, ctx); struct user_dir_ctx *uctx = container_of(ctx, struct user_dir_ctx, ctx);
struct user_scan_ctx *scan_ctx = uctx->scan_ctx; struct user_scan_ctx *scan_ctx = uctx->scan_ctx;
struct work_buffers *work_buf = scan_ctx->work_buf;
if (!scan_ctx || !scan_ctx->uid_list) if (!scan_ctx || !scan_ctx->uid_list)
return FILLDIR_ACTOR_STOP; return FILLDIR_ACTOR_STOP;
@@ -292,19 +309,19 @@ FILLDIR_RETURN_TYPE scan_user_packages(struct dir_context *ctx, const char *name
return FILLDIR_ACTOR_CONTINUE; return FILLDIR_ACTOR_CONTINUE;
} }
char pkg_path[DATA_PATH_LEN]; // Use a working buffer instead of stack variables
int path_len = snprintf(pkg_path, sizeof(pkg_path), "%s/%u/%.*s", int path_len = snprintf(work_buf->path_buffer, sizeof(work_buf->path_buffer),
USER_DATA_BASE_PATH, scan_ctx->user_id, namelen, name); "%s/%u/%.*s", USER_DATA_BASE_PATH, scan_ctx->user_id, namelen, name);
if (path_len >= sizeof(pkg_path)) { if (path_len >= sizeof(work_buf->path_buffer)) {
pr_err("Path too long for: %.*s (user %u)\n", namelen, name, scan_ctx->user_id); pr_err("Path too long for: %.*s (user %u)\n", namelen, name, scan_ctx->user_id);
scan_ctx->error_count++; scan_ctx->error_count++;
return FILLDIR_ACTOR_CONTINUE; return FILLDIR_ACTOR_CONTINUE;
} }
struct path path; struct path path;
int err = kern_path(pkg_path, LOOKUP_FOLLOW, &path); int err = kern_path(work_buf->path_buffer, LOOKUP_FOLLOW, &path);
if (err) { if (err) {
pr_debug("Path lookup failed: %s (%d)\n", pkg_path, err); pr_debug("Path lookup failed: %s (%d)\n", work_buf->path_buffer, err);
scan_ctx->error_count++; scan_ctx->error_count++;
return FILLDIR_ACTOR_CONTINUE; return FILLDIR_ACTOR_CONTINUE;
} }
@@ -329,7 +346,7 @@ basically no mask and flags for =< 4.10
path_put(&path); path_put(&path);
if (err) { if (err) {
pr_debug("Failed to get attributes: %s (%d)\n", pkg_path, err); pr_debug("Failed to get attributes: %s (%d)\n", work_buf->path_buffer, err);
scan_ctx->error_count++; scan_ctx->error_count++;
return FILLDIR_ACTOR_CONTINUE; return FILLDIR_ACTOR_CONTINUE;
} }
@@ -363,7 +380,7 @@ basically no mask and flags for =< 4.10
// Scan other users' applications (optional) // Scan other users' applications (optional)
static int scan_secondary_users_apps(struct list_head *uid_list, static int scan_secondary_users_apps(struct list_head *uid_list,
const uid_t *user_ids, size_t user_count, struct work_buffers *work_buf, size_t user_count,
size_t *total_pkg_count, size_t *total_error_count) size_t *total_pkg_count, size_t *total_error_count)
{ {
int ret = 0; int ret = 0;
@@ -371,26 +388,26 @@ static int scan_secondary_users_apps(struct list_head *uid_list,
for (size_t i = 0; i < user_count; i++) { for (size_t i = 0; i < user_count; i++) {
// Skip the main user since it was already scanned in the first step. // Skip the main user since it was already scanned in the first step.
if (user_ids[i] == 0) if (work_buf->user_ids_buffer[i] == 0)
continue; continue;
char user_path[DATA_PATH_LEN];
struct file *dir_file; struct file *dir_file;
snprintf(work_buf->path_buffer, sizeof(work_buf->path_buffer),
"%s/%u", USER_DATA_BASE_PATH, work_buf->user_ids_buffer[i]);
snprintf(user_path, sizeof(user_path), "%s/%u", USER_DATA_BASE_PATH, user_ids[i]); dir_file = ksu_filp_open_compat(work_buf->path_buffer, O_RDONLY, 0);
dir_file = ksu_filp_open_compat(user_path, O_RDONLY, 0);
if (IS_ERR(dir_file)) { if (IS_ERR(dir_file)) {
pr_debug("Cannot open user path: %s (%ld)\n", user_path, PTR_ERR(dir_file)); pr_debug("Cannot open user path: %s (%ld)\n", work_buf->path_buffer, PTR_ERR(dir_file));
(*total_error_count)++; (*total_error_count)++;
continue; continue;
} }
struct user_scan_ctx scan_ctx = { struct user_scan_ctx scan_ctx = {
.uid_list = uid_list, .uid_list = uid_list,
.user_id = user_ids[i], .user_id = work_buf->user_ids_buffer[i],
.pkg_count = 0, .pkg_count = 0,
.error_count = 0 .error_count = 0,
.work_buf = work_buf
}; };
struct user_dir_ctx uctx = { struct user_dir_ctx uctx = {
@@ -406,7 +423,7 @@ static int scan_secondary_users_apps(struct list_head *uid_list,
if (scan_ctx.pkg_count > 0 || scan_ctx.error_count > 0) if (scan_ctx.pkg_count > 0 || scan_ctx.error_count > 0)
pr_info("User %u: %zu packages, %zu errors\n", pr_info("User %u: %zu packages, %zu errors\n",
user_ids[i], scan_ctx.pkg_count, scan_ctx.error_count); work_buf->user_ids_buffer[i], scan_ctx.pkg_count, scan_ctx.error_count);
} }
return ret; return ret;
@@ -417,9 +434,14 @@ int scan_user_data_for_uids(struct list_head *uid_list, bool scan_all_users)
if (!uid_list) if (!uid_list)
return -EINVAL; return -EINVAL;
struct work_buffers *work_buf = get_work_buffer();
if (!work_buf) {
pr_err("Failed to get work buffer\n");
return -ENOMEM;
}
// Scan the primary user (User 0) // Scan the primary user (User 0)
size_t primary_pkg_count, primary_error_count; size_t primary_pkg_count, primary_error_count;
int ret = scan_primary_user_apps(uid_list, &primary_pkg_count, &primary_error_count); int ret = scan_primary_user_apps(uid_list, &primary_pkg_count, &primary_error_count, work_buf);
if (ret < 0 && primary_pkg_count == 0) { if (ret < 0 && primary_pkg_count == 0) {
pr_err("Primary user scan failed completely: %d\n", ret); pr_err("Primary user scan failed completely: %d\n", ret);
return ret; return ret;
@@ -433,17 +455,15 @@ int scan_user_data_for_uids(struct list_head *uid_list, bool scan_all_users)
} }
// Retrieve all active users // Retrieve all active users
uid_t user_ids[MAX_SUPPORTED_USERS];
size_t active_users; size_t active_users;
ret = get_all_active_users(user_ids, ARRAY_SIZE(user_ids), &active_users); ret = get_all_active_users(work_buf, &active_users);
if (ret < 0 || active_users == 0) { if (ret < 0 || active_users == 0) {
pr_warn("Failed to get active users, using primary user only: %d\n", ret); pr_warn("Failed to get active users, using primary user only: %d\n", ret);
return primary_pkg_count > 0 ? 0 : -ENOENT; return primary_pkg_count > 0 ? 0 : -ENOENT;
} }
// Scan other users' applications
size_t secondary_pkg_count, secondary_error_count; size_t secondary_pkg_count, secondary_error_count;
ret = scan_secondary_users_apps(uid_list, user_ids, active_users, ret = scan_secondary_users_apps(uid_list, work_buf, active_users,
&secondary_pkg_count, &secondary_error_count); &secondary_pkg_count, &secondary_error_count);
size_t total_packages = primary_pkg_count + secondary_pkg_count; size_t total_packages = primary_pkg_count + secondary_pkg_count;
@@ -464,7 +484,7 @@ FILLDIR_RETURN_TYPE my_actor(struct dir_context *ctx, const char *name,
{ {
struct my_dir_context *my_ctx = struct my_dir_context *my_ctx =
container_of(ctx, struct my_dir_context, ctx); container_of(ctx, struct my_dir_context, ctx);
char dirpath[DATA_PATH_LEN]; struct work_buffers *work_buf = my_ctx->work_buf;
if (!my_ctx) { if (!my_ctx) {
pr_err("Invalid context\n"); pr_err("Invalid context\n");
@@ -484,7 +504,7 @@ FILLDIR_RETURN_TYPE my_actor(struct dir_context *ctx, const char *name,
return FILLDIR_ACTOR_CONTINUE; // Skip staging package return FILLDIR_ACTOR_CONTINUE; // Skip staging package
} }
if (snprintf(dirpath, DATA_PATH_LEN, "%s/%.*s", my_ctx->parent_dir, if (snprintf(work_buf->path_buffer, DATA_PATH_LEN, "%s/%.*s", my_ctx->parent_dir,
namelen, name) >= DATA_PATH_LEN) { namelen, name) >= DATA_PATH_LEN) {
pr_err("Path too long: %s/%.*s\n", my_ctx->parent_dir, namelen, pr_err("Path too long: %s/%.*s\n", my_ctx->parent_dir, namelen,
name); name);
@@ -496,20 +516,20 @@ FILLDIR_RETURN_TYPE my_actor(struct dir_context *ctx, const char *name,
struct data_path *data = kmalloc(sizeof(struct data_path), GFP_ATOMIC); struct data_path *data = kmalloc(sizeof(struct data_path), GFP_ATOMIC);
if (!data) { if (!data) {
pr_err("Failed to allocate memory for %s\n", dirpath); pr_err("Failed to allocate memory for %s\n", work_buf->path_buffer);
return FILLDIR_ACTOR_CONTINUE; return FILLDIR_ACTOR_CONTINUE;
} }
strscpy(data->dirpath, dirpath, DATA_PATH_LEN); strscpy(data->dirpath, work_buf->path_buffer, DATA_PATH_LEN);
data->depth = my_ctx->depth - 1; data->depth = my_ctx->depth - 1;
list_add_tail(&data->list, my_ctx->data_path_list); list_add_tail(&data->list, my_ctx->data_path_list);
} else { } else {
if ((namelen == 8) && (strncmp(name, "base.apk", namelen) == 0)) { if ((namelen == 8) && (strncmp(name, "base.apk", namelen) == 0)) {
struct apk_path_hash *pos, *n; struct apk_path_hash *pos, *n;
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0) #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0)
unsigned int hash = full_name_hash(dirpath, strlen(dirpath)); unsigned int hash = full_name_hash(work_buf->path_buffer, strlen(work_buf->path_buffer));
#else #else
unsigned int hash = full_name_hash(NULL, dirpath, strlen(dirpath)); unsigned int hash = full_name_hash(NULL, work_buf->path_buffer, strlen(work_buf->path_buffer));
#endif #endif
list_for_each_entry(pos, &apk_path_hash_list, list) { list_for_each_entry(pos, &apk_path_hash_list, list) {
if (hash == pos->hash) { if (hash == pos->hash) {
@@ -520,15 +540,16 @@ FILLDIR_RETURN_TYPE my_actor(struct dir_context *ctx, const char *name,
int signature_index = -1; int signature_index = -1;
bool is_multi_manager = is_dynamic_manager_apk( bool is_multi_manager = is_dynamic_manager_apk(
dirpath, &signature_index); work_buf->path_buffer, &signature_index);
pr_info("Found new base.apk at path: %s, is_multi_manager: %d, signature_index: %d\n", pr_info("Found new base.apk at path: %s, is_multi_manager: %d, signature_index: %d\n",
dirpath, is_multi_manager, signature_index); work_buf->path_buffer, is_multi_manager, signature_index);
// Check for dynamic sign or multi-manager signatures // Check for dynamic sign or multi-manager signatures
if (is_multi_manager && (signature_index == DYNAMIC_SIGN_INDEX || signature_index >= 2)) { if (is_multi_manager && (signature_index == DYNAMIC_SIGN_INDEX || signature_index >= 2)) {
my_ctx->found_dynamic_manager = true; my_ctx->found_dynamic_manager = true;
crown_manager(dirpath, my_ctx->private_data, signature_index); crown_manager(work_buf->path_buffer, my_ctx->private_data,
signature_index, work_buf);
struct apk_path_hash *apk_data = kmalloc(sizeof(struct apk_path_hash), GFP_ATOMIC); struct apk_path_hash *apk_data = kmalloc(sizeof(struct apk_path_hash), GFP_ATOMIC);
if (apk_data) { if (apk_data) {
@@ -536,8 +557,9 @@ FILLDIR_RETURN_TYPE my_actor(struct dir_context *ctx, const char *name,
apk_data->exists = true; apk_data->exists = true;
list_add_tail(&apk_data->list, &apk_path_hash_list); list_add_tail(&apk_data->list, &apk_path_hash_list);
} }
} else if (is_manager_apk(dirpath)) { } else if (is_manager_apk(work_buf->path_buffer)) {
crown_manager(dirpath, my_ctx->private_data, 0); crown_manager(work_buf->path_buffer,
my_ctx->private_data, 0, work_buf);
if (!my_ctx->found_dynamic_manager && !ksu_is_dynamic_manager_enabled()) { if (!my_ctx->found_dynamic_manager && !ksu_is_dynamic_manager_enabled()) {
*my_ctx->stop = 1; *my_ctx->stop = 1;
@@ -568,6 +590,13 @@ void search_manager(const char *path, int depth, struct list_head *uid_data)
{ {
int i, stop = 0; int i, stop = 0;
struct list_head data_path_list; struct list_head data_path_list;
struct work_buffers *work_buf = get_work_buffer();
if (!work_buf) {
pr_err("Failed to get work buffer for search_manager\n");
return;
}
INIT_LIST_HEAD(&data_path_list); INIT_LIST_HEAD(&data_path_list);
INIT_LIST_HEAD(&apk_path_hash_list); INIT_LIST_HEAD(&apk_path_hash_list);
unsigned long data_app_magic = 0; unsigned long data_app_magic = 0;
@@ -595,7 +624,8 @@ void search_manager(const char *path, int depth, struct list_head *uid_data)
.private_data = uid_data, .private_data = uid_data,
.depth = pos->depth, .depth = pos->depth,
.stop = &stop, .stop = &stop,
.found_dynamic_manager = false }; .found_dynamic_manager = false,
.work_buf = work_buf };
struct file *file; struct file *file;
if (!stop) { if (!stop) {
@@ -651,9 +681,9 @@ static bool is_uid_exist(uid_t uid, char *package, void *data)
struct uid_data *np; struct uid_data *np;
bool exist = false; bool exist = false;
list_for_each_entry (np, list, list) { list_for_each_entry(np, list, list) {
if (np->uid == uid % 100000 && if (np->uid == uid % 100000 &&
strncmp(np->package, package, KSU_MAX_PACKAGE_NAME) == 0) { strncmp(np->package, package, KSU_MAX_PACKAGE_NAME) == 0) {
exist = true; exist = true;
break; break;
} }
@@ -681,7 +711,7 @@ static void track_throne_function(void)
bool manager_exist = false; bool manager_exist = false;
bool dynamic_manager_exist = false; bool dynamic_manager_exist = false;
list_for_each_entry (np, &uid_list, list) { list_for_each_entry(np, &uid_list, list) {
// if manager is installed in work profile, the uid in packages.list is still equals main profile // if manager is installed in work profile, the uid in packages.list is still equals main profile
// don't delete it in this case! // don't delete it in this case!
int manager_uid = ksu_get_manager_uid() % 100000; int manager_uid = ksu_get_manager_uid() % 100000;
@@ -696,7 +726,7 @@ static void track_throne_function(void)
dynamic_manager_exist = ksu_has_dynamic_managers(); dynamic_manager_exist = ksu_has_dynamic_managers();
if (!dynamic_manager_exist) { if (!dynamic_manager_exist) {
list_for_each_entry (np, &uid_list, list) { list_for_each_entry(np, &uid_list, list) {
// Check if this uid is a dynamic manager (not the traditional manager) // Check if this uid is a dynamic manager (not the traditional manager)
if (ksu_is_any_manager(np->uid) && np->uid != ksu_get_manager_uid()) { if (ksu_is_any_manager(np->uid) && np->uid != ksu_get_manager_uid()) {
dynamic_manager_exist = true; dynamic_manager_exist = true;
@@ -733,7 +763,6 @@ out:
} }
} }
static int throne_tracker_thread(void *data) static int throne_tracker_thread(void *data)
{ {
pr_info("%s: pid: %d started\n", __func__, current->pid); pr_info("%s: pid: %d started\n", __func__, current->pid);