You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
This commit fixes some few UBs (Undefined Behaviors) based on numerous sanitizers, and also adds the missing error handling for a "malloc" call.
64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/prctl.h>
|
|
#include <errno.h>
|
|
|
|
#include "../constants.h"
|
|
#include "../utils.h"
|
|
|
|
#include "kernelsu.h"
|
|
|
|
/* INFO: It would be presumed it is a unsigned int,
|
|
so we need to cast it to signed int to
|
|
avoid any potential UB.
|
|
*/
|
|
#define KERNEL_SU_OPTION (signed int)0xdeadbeef
|
|
|
|
#define CMD_GET_VERSION 2
|
|
#define CMD_UID_GRANTED_ROOT 12
|
|
#define CMD_UID_SHOULD_UMOUNT 13
|
|
|
|
enum RootImplState ksu_get_existence(void) {
|
|
int version = 0;
|
|
prctl(KERNEL_SU_OPTION, CMD_GET_VERSION, &version, 0, 0);
|
|
|
|
if (version == 0) return Inexistent;
|
|
if (version >= MIN_KSU_VERSION && version <= MAX_KSU_VERSION) return Supported;
|
|
if (version >= 1 && version <= MIN_KSU_VERSION - 1) return TooOld;
|
|
|
|
return Abnormal;
|
|
}
|
|
|
|
bool ksu_uid_granted_root(uid_t uid) {
|
|
uint32_t result = 0;
|
|
bool granted = false;
|
|
prctl(KERNEL_SU_OPTION, CMD_UID_GRANTED_ROOT, uid, &granted, &result);
|
|
|
|
if (result != KERNEL_SU_OPTION) return false;
|
|
|
|
return granted;
|
|
}
|
|
|
|
bool ksu_uid_should_umount(uid_t uid) {
|
|
uint32_t result = 0;
|
|
bool umount = false;
|
|
prctl(KERNEL_SU_OPTION, CMD_UID_SHOULD_UMOUNT, uid, &umount, &result);
|
|
|
|
if (result != KERNEL_SU_OPTION) return false;
|
|
|
|
return umount;
|
|
}
|
|
|
|
bool ksu_uid_is_manager(uid_t uid) {
|
|
struct stat s;
|
|
if (stat("/data/user_de/0/me.weishu.kernelsu", &s) == -1) {
|
|
if (errno != ENOENT) LOGE("Failed to stat KSU manager data directory: %s\n", strerror(errno));
|
|
errno = 0;
|
|
|
|
return false;
|
|
}
|
|
|
|
return s.st_uid == uid;
|
|
}
|