Magisk/native/jni/su/su.h

65 lines
1.2 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"
2017-05-31 21:19:45 +02:00
struct su_info {
unsigned uid; /* Unique key to find su_info */
pthread_mutex_t lock; /* Internal lock */
int count; /* Just a count for debugging purpose */
/* These values should be guarded with internal lock */
struct db_settings dbs;
struct db_strings str;
struct 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;
int life;
};
2018-10-04 07:49:52 +02:00
#define DB_SET(i, e) (i)->dbs.v[e]
#define DB_STR(i, e) (i)->str.s[e]
struct su_request {
unsigned uid;
int login;
int keepenv;
char *shell;
char *command;
};
struct su_context {
struct su_info *info;
struct su_request to;
pid_t pid;
char cwd[PATH_MAX];
int pipefd[2];
};
extern struct su_context *su_ctx;
2017-04-14 21:21:31 +02:00
// su.c
int su_daemon_main(int argc, char **argv);
__attribute__ ((noreturn)) void exit2(int status);
2017-09-15 09:23:50 +02:00
void set_identity(unsigned uid);
2017-04-14 21:21:31 +02:00
// connect.c
2017-04-14 21:21:31 +02:00
void app_log();
void app_connect(const char *socket);
void socket_send_request(int fd);
2017-04-14 21:21:31 +02:00
#endif