You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
161 lines
4.1 KiB
161 lines
4.1 KiB
/*
|
|
* Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2
|
|
* as published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/list.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/string.h>
|
|
#include <linux/spinlock.h>
|
|
#include "include/defex_catch_list.h"
|
|
#include "include/defex_internal.h"
|
|
|
|
#define MAX_PID_32 32768
|
|
|
|
#ifdef DEFEX_PED_ENABLE
|
|
DECLARE_HASHTABLE(creds_hash, 15);
|
|
#endif /* DEFEX_PED_ENABLE */
|
|
|
|
struct proc_cred_data {
|
|
unsigned int uid, fsuid, egid;
|
|
};
|
|
|
|
struct proc_cred_struct {
|
|
struct hlist_node node;
|
|
struct proc_cred_data cred_data;
|
|
};
|
|
|
|
static DEFINE_SPINLOCK(creds_hash_update_lock);
|
|
static struct proc_cred_data *creds_fast_hash[MAX_PID_32 + 1];
|
|
static int creds_fast_hash_ready;
|
|
|
|
void creds_fast_hash_init(void)
|
|
{
|
|
unsigned int i;
|
|
|
|
for (i = 0; i <= MAX_PID_32; i++)
|
|
creds_fast_hash[i] = NULL;
|
|
creds_fast_hash_ready = 1;
|
|
}
|
|
|
|
int is_task_creds_ready(void)
|
|
{
|
|
return creds_fast_hash_ready;
|
|
}
|
|
|
|
#ifdef DEFEX_PED_ENABLE
|
|
void get_task_creds(int pid, unsigned int *uid_ptr, unsigned int *fsuid_ptr, unsigned int *egid_ptr)
|
|
{
|
|
struct proc_cred_struct *obj;
|
|
struct proc_cred_data *cred_data;
|
|
unsigned int uid = 0, fsuid = 0, egid = 0;
|
|
unsigned long flags;
|
|
|
|
if (pid <= MAX_PID_32) {
|
|
spin_lock_irqsave(&creds_hash_update_lock, flags);
|
|
cred_data = creds_fast_hash[pid];
|
|
if (cred_data != NULL) {
|
|
uid = cred_data->uid;
|
|
fsuid = cred_data->fsuid;
|
|
egid = cred_data->egid;
|
|
}
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
} else {
|
|
spin_lock_irqsave(&creds_hash_update_lock, flags);
|
|
hash_for_each_possible(creds_hash, obj, node, pid) {
|
|
uid = obj->cred_data.uid;
|
|
fsuid = obj->cred_data.fsuid;
|
|
egid = obj->cred_data.egid;
|
|
break;
|
|
}
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
}
|
|
*uid_ptr = uid;
|
|
*fsuid_ptr = fsuid;
|
|
*egid_ptr = egid;
|
|
}
|
|
|
|
int set_task_creds(int pid, unsigned int uid, unsigned int fsuid, unsigned int egid)
|
|
{
|
|
struct proc_cred_struct *obj;
|
|
struct proc_cred_data *cred_data = NULL, *tmp_data = NULL;
|
|
unsigned long flags;
|
|
|
|
alloc_obj:;
|
|
if (pid <= MAX_PID_32) {
|
|
if (!creds_fast_hash[pid]) {
|
|
tmp_data = kmalloc(sizeof(struct proc_cred_data), GFP_ATOMIC);
|
|
if (!tmp_data)
|
|
return -1;
|
|
}
|
|
spin_lock_irqsave(&creds_hash_update_lock, flags);
|
|
cred_data = creds_fast_hash[pid];
|
|
if (!cred_data) {
|
|
if (!tmp_data) {
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
goto alloc_obj;
|
|
}
|
|
cred_data = tmp_data;
|
|
creds_fast_hash[pid] = cred_data;
|
|
tmp_data = NULL;
|
|
}
|
|
cred_data->uid = uid;
|
|
cred_data->fsuid = fsuid;
|
|
cred_data->egid = egid;
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
if (tmp_data)
|
|
kfree(tmp_data);
|
|
return 0;
|
|
}
|
|
|
|
spin_lock_irqsave(&creds_hash_update_lock, flags);
|
|
hash_for_each_possible(creds_hash, obj, node, pid) {
|
|
obj->cred_data.uid = uid;
|
|
obj->cred_data.fsuid = fsuid;
|
|
obj->cred_data.egid = egid;
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
return 0;
|
|
}
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
obj = kmalloc(sizeof(struct proc_cred_struct), GFP_ATOMIC);
|
|
if (!obj)
|
|
return -1;
|
|
obj->cred_data.uid = uid;
|
|
obj->cred_data.fsuid = fsuid;
|
|
obj->cred_data.egid = egid;
|
|
spin_lock_irqsave(&creds_hash_update_lock, flags);
|
|
hash_add(creds_hash, &obj->node, pid);
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
return 0;
|
|
}
|
|
#endif /* DEFEX_PED_ENABLE */
|
|
|
|
void delete_task_creds(int pid)
|
|
{
|
|
struct proc_cred_struct *obj;
|
|
struct proc_cred_data *cred_data;
|
|
unsigned long flags;
|
|
|
|
if (pid <= MAX_PID_32) {
|
|
spin_lock_irqsave(&creds_hash_update_lock, flags);
|
|
cred_data = creds_fast_hash[pid];
|
|
creds_fast_hash[pid] = NULL;
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
kfree(cred_data);
|
|
return;
|
|
}
|
|
|
|
spin_lock_irqsave(&creds_hash_update_lock, flags);
|
|
hash_for_each_possible(creds_hash, obj, node, pid) {
|
|
hash_del(&obj->node);
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
kfree(obj);
|
|
return;
|
|
}
|
|
spin_unlock_irqrestore(&creds_hash_update_lock, flags);
|
|
}
|
|
|
|
|