Magisk/native/jni/include/db.h

139 lines
2.3 KiB
C
Raw Normal View History

#ifndef DB_H
#define DB_H
#include <sqlite3.h>
2018-06-13 23:09:54 +02:00
#include <sys/stat.h>
/***************
* DB Settings *
***************/
2018-10-04 07:49:52 +02:00
#define DB_SETTING_KEYS \
2018-11-01 18:23:12 +01:00
((const char *[]) { \
"root_access", \
"multiuser_mode", \
2018-11-16 07:15:34 +01:00
"mnt_ns", \
"magiskhide", \
})
2018-11-16 07:15:34 +01:00
#define DB_SETTINGS_NUM 4
2018-11-05 00:24:08 +01:00
// Settings keys
enum {
ROOT_ACCESS = 0,
SU_MULTIUSER_MODE,
2018-11-16 07:15:34 +01:00
SU_MNT_NS,
HIDE_CONFIG
};
// Values for root_access
enum {
ROOT_ACCESS_DISABLED = 0,
ROOT_ACCESS_APPS_ONLY,
ROOT_ACCESS_ADB_ONLY,
ROOT_ACCESS_APPS_AND_ADB
};
// Values for multiuser_mode
enum {
MULTIUSER_MODE_OWNER_ONLY = 0,
MULTIUSER_MODE_OWNER_MANAGED,
MULTIUSER_MODE_USER
};
// Values for mnt_ns
enum {
NAMESPACE_MODE_GLOBAL = 0,
NAMESPACE_MODE_REQUESTER,
NAMESPACE_MODE_ISOLATE
};
2018-11-05 00:24:08 +01:00
class db_settings {
public:
db_settings();
int& operator [](const char *);
const int& operator [](const char *) const;
int& operator [](const int);
const int& operator [](const int) const;
private:
int data[DB_SETTINGS_NUM + 1];
int getKeyIdx(const char *) const;
};
/**************
* DB Strings *
**************/
2018-10-04 07:49:52 +02:00
#define DB_STRING_KEYS \
2018-11-01 18:23:12 +01:00
((const char *[]) { \
2018-10-04 07:49:52 +02:00
"requester", \
})
2018-11-04 09:38:06 +01:00
#define DB_STRING_NUM 1
2018-11-05 00:24:08 +01:00
// Strings keys
enum {
2018-06-13 20:47:43 +02:00
SU_MANAGER = 0
};
2018-11-05 00:24:08 +01:00
class db_strings {
public:
db_strings();
char * operator [](const char *);
const char * operator [](const char *) const;
char * operator [](const int);
const char * operator [](const int) const;
private:
char data[DB_STRING_NUM + 1][128];
int getKeyIdx(const char *) const;
};
/*************
* SU Access *
*************/
typedef enum {
QUERY = 0,
DENY = 1,
ALLOW = 2,
} policy_t;
struct su_access {
policy_t policy;
int log;
int notify;
};
2018-11-04 09:38:06 +01:00
#define DEFAULT_SU_ACCESS (su_access) { \
.policy = QUERY, \
.log = 1, \
.notify = 1 \
}
2018-11-04 09:38:06 +01:00
#define SILENT_SU_ACCESS (su_access) { \
.policy = ALLOW, \
.log = 0, \
.notify = 0 \
}
2018-11-04 09:38:06 +01:00
#define NO_SU_ACCESS (su_access) { \
.policy = DENY, \
.log = 0, \
.notify = 0 \
}
/********************
* Public Functions *
********************/
sqlite3 *get_magiskdb();
2018-11-16 07:15:34 +01:00
int get_db_settings(sqlite3 *db, db_settings *dbs, int key = -1);
int get_db_strings(sqlite3 *db, db_strings *str, int key = -1);
int get_uid_policy(sqlite3 *db, int uid, struct su_access *su);
int validate_manager(char *alt_pkg, int userid, struct stat *st);
int exec_sql(const char *sql);
#endif //DB_H