2019-07-07 07:31:49 +00:00
|
|
|
#pragma once
|
2018-07-18 10:12:47 +00:00
|
|
|
|
2017-04-14 19:21:31 +00:00
|
|
|
#include <sys/types.h>
|
2017-07-07 17:12:47 +00:00
|
|
|
#include <sys/stat.h>
|
2019-07-07 07:31:49 +00:00
|
|
|
#include <memory>
|
2018-07-18 10:12:47 +00:00
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include <db.hpp>
|
2017-05-29 10:54:33 +00:00
|
|
|
|
2018-07-18 10:12:47 +00:00
|
|
|
#define DEFAULT_SHELL "/system/bin/sh"
|
|
|
|
|
2018-10-04 08:59:51 +00:00
|
|
|
// Constants for atty
|
2019-07-07 07:31:49 +00:00
|
|
|
#define ATTY_IN (1 << 0)
|
|
|
|
#define ATTY_OUT (1 << 1)
|
|
|
|
#define ATTY_ERR (1 << 2)
|
2018-10-04 08:59:51 +00:00
|
|
|
|
2018-11-04 08:38:06 +00:00
|
|
|
class su_info {
|
|
|
|
public:
|
2022-02-06 14:45:58 +00:00
|
|
|
// Unique key
|
2020-12-31 06:11:24 +00:00
|
|
|
const int uid;
|
2017-12-11 19:03:05 +00:00
|
|
|
|
2022-02-06 14:45:58 +00:00
|
|
|
// These should be guarded with internal lock
|
|
|
|
int eval_uid; // The effective UID, taking multiuser settings into consideration
|
2020-12-31 06:11:24 +00:00
|
|
|
db_settings cfg;
|
|
|
|
su_access access;
|
2021-09-17 09:07:32 +00:00
|
|
|
std::string mgr_pkg;
|
2022-05-18 08:55:58 +00:00
|
|
|
int mgr_uid;
|
2022-02-06 14:45:58 +00:00
|
|
|
void check_db();
|
2017-12-11 19:03:05 +00:00
|
|
|
|
2022-02-06 14:45:58 +00:00
|
|
|
// These should be guarded with global cache lock
|
|
|
|
bool is_fresh();
|
|
|
|
void refresh();
|
2018-11-04 08:38:06 +00:00
|
|
|
|
2022-02-06 14:45:58 +00:00
|
|
|
su_info(int uid);
|
2020-12-31 06:11:24 +00:00
|
|
|
~su_info();
|
|
|
|
mutex_guard lock();
|
2018-11-04 08:38:06 +00:00
|
|
|
|
|
|
|
private:
|
2022-02-06 14:45:58 +00:00
|
|
|
long timestamp;
|
|
|
|
// Internal lock
|
|
|
|
pthread_mutex_t _lock;
|
2018-07-18 10:12:47 +00:00
|
|
|
};
|
|
|
|
|
2018-11-04 08:38:06 +00:00
|
|
|
struct su_req_base {
|
2020-12-31 06:11:24 +00:00
|
|
|
int uid = UID_ROOT;
|
|
|
|
bool login = false;
|
|
|
|
bool keepenv = false;
|
|
|
|
bool mount_master = false;
|
2018-11-04 08:38:06 +00:00
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct su_request : public su_req_base {
|
2021-01-12 08:07:48 +00:00
|
|
|
std::string shell = DEFAULT_SHELL;
|
|
|
|
std::string command;
|
|
|
|
};
|
2018-07-18 10:12:47 +00:00
|
|
|
|
|
|
|
struct su_context {
|
2020-12-31 06:11:24 +00:00
|
|
|
std::shared_ptr<su_info> info;
|
|
|
|
su_request req;
|
|
|
|
int pid;
|
2018-07-18 10:12:47 +00:00
|
|
|
};
|
|
|
|
|
2019-07-07 07:31:49 +00:00
|
|
|
void app_log(const su_context &ctx);
|
|
|
|
void app_notify(const su_context &ctx);
|
2022-03-25 20:08:13 +00:00
|
|
|
int app_request(const su_context &ctx);
|