2018-07-18 12:12:47 +02:00
|
|
|
/*
|
|
|
|
** Copyright 2013, Koushik Dutta (@koush)
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <sqlite3.h>
|
|
|
|
#include <time.h>
|
2017-04-14 21:21:31 +02:00
|
|
|
#include <string.h>
|
2018-07-18 12:12:47 +02:00
|
|
|
|
2017-04-14 21:21:31 +02:00
|
|
|
#include "magisk.h"
|
2018-07-18 12:12:47 +02:00
|
|
|
#include "su.h"
|
|
|
|
|
|
|
|
struct callback_data_t {
|
2017-04-14 21:21:31 +02:00
|
|
|
struct su_context *ctx;
|
|
|
|
policy_t policy;
|
2018-07-18 12:12:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static int database_callback(void *v, int argc, char **argv, char **azColName){
|
2017-04-14 21:21:31 +02:00
|
|
|
struct callback_data_t *data = (struct callback_data_t *)v;
|
|
|
|
policy_t policy = INTERACTIVE;
|
|
|
|
int i;
|
|
|
|
time_t until = 0;
|
|
|
|
for(i = 0; i < argc; i++) {
|
|
|
|
if (strcmp(azColName[i], "policy") == 0) {
|
|
|
|
if (argv[i] != NULL) {
|
|
|
|
policy = atoi(argv[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp(azColName[i], "until") == 0) {
|
|
|
|
if (argv[i] != NULL) {
|
|
|
|
until = atol(argv[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-18 12:12:47 +02:00
|
|
|
|
2017-04-14 21:21:31 +02:00
|
|
|
if (policy == DENY) {
|
|
|
|
data->policy = DENY;
|
|
|
|
return -1;
|
|
|
|
} else if (policy == ALLOW && (until == 0 || until > time(NULL))) {
|
|
|
|
data->policy = ALLOW;
|
|
|
|
// even though we allow, continue, so we can see if there's another policy
|
|
|
|
// that denies...
|
|
|
|
}
|
2017-01-23 15:51:00 +01:00
|
|
|
|
2017-04-14 21:21:31 +02:00
|
|
|
return 0;
|
2018-07-18 12:12:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
policy_t database_check(struct su_context *ctx) {
|
2017-04-14 21:21:31 +02:00
|
|
|
sqlite3 *db = NULL;
|
|
|
|
|
|
|
|
char query[512];
|
|
|
|
snprintf(query, sizeof(query), "select policy, until from policies where uid=%d", ctx->from.uid);
|
|
|
|
int ret = sqlite3_open_v2(ctx->user.database_path, &db, SQLITE_OPEN_READONLY, NULL);
|
|
|
|
if (ret) {
|
|
|
|
LOGE("sqlite3 open failure: %d", ret);
|
|
|
|
sqlite3_close(db);
|
|
|
|
return INTERACTIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *err = NULL;
|
|
|
|
struct callback_data_t data;
|
|
|
|
data.ctx = ctx;
|
|
|
|
data.policy = INTERACTIVE;
|
|
|
|
ret = sqlite3_exec(db, query, database_callback, &data, &err);
|
|
|
|
sqlite3_close(db);
|
|
|
|
if (err != NULL) {
|
|
|
|
LOGE("sqlite3_exec: %s", err);
|
|
|
|
return DENY;
|
|
|
|
}
|
2018-07-18 12:12:47 +02:00
|
|
|
|
2017-04-14 21:21:31 +02:00
|
|
|
return data.policy;
|
2018-07-18 12:12:47 +02:00
|
|
|
}
|