Magisk/native/jni/su/su.h

76 lines
1.3 KiB
C
Raw Normal View History

2017-04-14 21:21:31 +02:00
/* su.h - Store all general su info
*/
2017-04-14 21:21:31 +02:00
#ifndef _SU_H_
#define _SU_H_
2017-04-14 21:21:31 +02:00
#include <limits.h>
#include <sys/types.h>
2017-07-07 19:12:47 +02:00
#include <sys/stat.h>
#include "db.h"
#define DEFAULT_SHELL "/system/bin/sh"
2018-10-04 10:59:51 +02:00
// Constants for atty
#define ATTY_IN 1
#define ATTY_OUT 2
#define ATTY_ERR 4
2018-11-04 09:38:06 +01:00
class su_info {
public:
unsigned uid; /* Unique key to find su_info */
int count; /* Just a count for debugging purpose */
/* These values 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;
/* These should be guarded with global cache lock */
int ref;
2018-12-26 04:56:49 +01:00
time_t timestamp;
2018-11-04 09:38:06 +01:00
su_info(unsigned uid = 0);
2018-11-04 09:38:06 +01:00
~su_info();
void lock();
void unlock();
2018-12-26 04:56:49 +01:00
bool isFresh();
void newRef();
void deRef();
2018-11-04 09:38:06 +01:00
private:
pthread_mutex_t _lock; /* Internal lock */
};
2018-11-04 09:38:06 +01:00
struct su_req_base {
unsigned uid;
2018-11-04 09:38:06 +01:00
bool login;
bool keepenv;
bool mount_master;
protected:
su_req_base();
} __attribute__((packed));
struct su_request : public su_req_base {
const char *shell;
const char *command;
su_request();
} __attribute__((packed));
struct su_context {
2019-04-30 03:26:43 +02:00
su_info *info;
su_request req;
pid_t pid;
};
// connect.c
2017-04-14 21:21:31 +02:00
2019-04-30 03:26:43 +02:00
void app_log(su_context *ctx);
void app_notify(su_context *ctx);
void app_connect(const char *socket, su_info *info);
void socket_send_request(int fd, su_info *info);
2017-04-14 21:21:31 +02:00
#endif