2019-07-07 09:31:49 +02:00
|
|
|
#pragma once
|
2018-07-18 12:12:47 +02:00
|
|
|
|
2017-04-14 21:21:31 +02:00
|
|
|
#include <sys/types.h>
|
2017-07-07 19:12:47 +02:00
|
|
|
#include <sys/stat.h>
|
2019-07-07 09:31:49 +02:00
|
|
|
#include <memory>
|
2018-07-18 12:12:47 +02:00
|
|
|
|
2019-07-01 04:09:31 +02:00
|
|
|
#include <db.h>
|
2017-05-29 12:54:33 +02:00
|
|
|
|
2018-07-18 12:12:47 +02:00
|
|
|
#define DEFAULT_SHELL "/system/bin/sh"
|
|
|
|
|
2018-10-04 10:59:51 +02:00
|
|
|
// Constants for atty
|
2019-07-07 09:31:49 +02:00
|
|
|
#define ATTY_IN (1 << 0)
|
|
|
|
#define ATTY_OUT (1 << 1)
|
|
|
|
#define ATTY_ERR (1 << 2)
|
2018-10-04 10:59:51 +02:00
|
|
|
|
2018-11-04 09:38:06 +01:00
|
|
|
class su_info {
|
|
|
|
public:
|
2019-07-07 09:31:49 +02:00
|
|
|
/* Unique key */
|
|
|
|
const unsigned uid;
|
2017-12-11 20:03:05 +01:00
|
|
|
|
2019-07-07 09:31:49 +02:00
|
|
|
/* These should be guarded with internal lock */
|
2019-03-06 14:16:12 +01:00
|
|
|
db_settings cfg;
|
|
|
|
db_strings str;
|
|
|
|
su_access access;
|
2018-10-04 07:49:52 +02:00
|
|
|
struct stat mgr_st;
|
2017-12-11 20:03:05 +01:00
|
|
|
|
2019-07-07 09:31:49 +02:00
|
|
|
/* This should be guarded with global cache lock */
|
|
|
|
long timestamp;
|
2018-11-04 09:38:06 +01:00
|
|
|
|
2019-05-13 11:01:10 +02:00
|
|
|
su_info(unsigned uid = 0);
|
2018-11-04 09:38:06 +01:00
|
|
|
~su_info();
|
|
|
|
void lock();
|
|
|
|
void unlock();
|
2019-07-07 09:31:49 +02:00
|
|
|
bool is_fresh();
|
|
|
|
void refresh();
|
2018-11-04 09:38:06 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
pthread_mutex_t _lock; /* Internal lock */
|
2018-07-18 12:12:47 +02:00
|
|
|
};
|
|
|
|
|
2018-11-04 09:38:06 +01:00
|
|
|
struct su_req_base {
|
2019-07-07 21:20:19 +02:00
|
|
|
unsigned uid = UID_ROOT;
|
|
|
|
bool login = false;
|
|
|
|
bool keepenv = false;
|
|
|
|
bool mount_master = false;
|
2018-11-04 09:38:06 +01:00
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct su_request : public su_req_base {
|
2019-07-07 21:20:19 +02:00
|
|
|
const char *shell = DEFAULT_SHELL;
|
|
|
|
const char *command = "";
|
|
|
|
su_request(bool dyn = false) : dyn(dyn) {}
|
|
|
|
~su_request() {
|
|
|
|
if (dyn) {
|
|
|
|
free(const_cast<char*>(shell));
|
|
|
|
free(const_cast<char*>(command));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool dyn;
|
2018-11-04 09:38:06 +01:00
|
|
|
} __attribute__((packed));
|
2018-07-18 12:12:47 +02:00
|
|
|
|
|
|
|
struct su_context {
|
2019-07-07 09:31:49 +02:00
|
|
|
std::shared_ptr<su_info> info;
|
2019-04-30 03:26:43 +02:00
|
|
|
su_request req;
|
2017-12-11 20:03:05 +01:00
|
|
|
pid_t pid;
|
2018-07-18 12:12:47 +02:00
|
|
|
};
|
|
|
|
|
2019-07-07 09:31:49 +02:00
|
|
|
void app_log(const su_context &ctx);
|
|
|
|
void app_notify(const su_context &ctx);
|
|
|
|
void app_connect(const char *socket, const std::shared_ptr<su_info> &info);
|
|
|
|
void socket_send_request(int fd, const std::shared_ptr<su_info> &info);
|