2017-04-14 19:21:31 +00:00
|
|
|
/* su.h - Store all general su info
|
|
|
|
*/
|
2018-07-18 10:12:47 +00:00
|
|
|
|
2017-04-14 19:21:31 +00:00
|
|
|
#ifndef _SU_H_
|
|
|
|
#define _SU_H_
|
2018-07-18 10:12:47 +00:00
|
|
|
|
2017-04-14 19:21:31 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/types.h>
|
2017-07-07 17:12:47 +00:00
|
|
|
#include <sys/stat.h>
|
2018-07-18 10:12:47 +00:00
|
|
|
|
2018-06-12 20:33:32 +00:00
|
|
|
#include "db.h"
|
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
|
|
|
|
#define ATTY_IN 1
|
|
|
|
#define ATTY_OUT 2
|
|
|
|
#define ATTY_ERR 4
|
|
|
|
|
2017-05-31 19:19:45 +00:00
|
|
|
struct su_info {
|
2018-06-12 20:33:32 +00:00
|
|
|
unsigned uid; /* Unique key to find su_info */
|
2017-12-11 19:03:05 +00:00
|
|
|
pthread_mutex_t lock; /* Internal lock */
|
2018-06-12 20:33:32 +00:00
|
|
|
int count; /* Just a count for debugging purpose */
|
2017-12-11 19:03:05 +00:00
|
|
|
|
|
|
|
/* These values should be guarded with internal lock */
|
2018-06-12 20:33:32 +00:00
|
|
|
struct db_settings dbs;
|
|
|
|
struct db_strings str;
|
|
|
|
struct su_access access;
|
2018-10-04 05:49:52 +00:00
|
|
|
struct stat mgr_st;
|
2017-12-11 19:03:05 +00:00
|
|
|
|
2018-10-04 03:31:15 +00:00
|
|
|
/* These should be guarded with global cache lock */
|
2017-12-11 19:03:05 +00:00
|
|
|
int ref;
|
2018-10-04 03:31:15 +00:00
|
|
|
int life;
|
2018-07-18 10:12:47 +00:00
|
|
|
};
|
|
|
|
|
2018-10-04 05:49:52 +00:00
|
|
|
#define DB_SET(i, e) (i)->dbs.v[e]
|
|
|
|
#define DB_STR(i, e) (i)->str.s[e]
|
|
|
|
|
2018-07-18 10:12:47 +00:00
|
|
|
struct su_request {
|
2017-12-11 19:03:05 +00:00
|
|
|
unsigned uid;
|
2018-10-04 08:59:51 +00:00
|
|
|
unsigned login;
|
|
|
|
unsigned keepenv;
|
2018-10-04 18:41:48 +00:00
|
|
|
unsigned mount_master;
|
2017-12-11 19:03:05 +00:00
|
|
|
char *shell;
|
|
|
|
char *command;
|
2018-07-18 10:12:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct su_context {
|
2017-12-11 19:03:05 +00:00
|
|
|
struct su_info *info;
|
2018-10-04 08:59:51 +00:00
|
|
|
struct su_request req;
|
2017-12-11 19:03:05 +00:00
|
|
|
pid_t pid;
|
2018-07-18 10:12:47 +00:00
|
|
|
};
|
|
|
|
|
2018-09-16 08:16:18 +00:00
|
|
|
// connect.c
|
2017-04-14 19:21:31 +00:00
|
|
|
|
2018-10-04 08:59:51 +00:00
|
|
|
void app_log(struct su_context *ctx);
|
2018-10-28 02:06:24 +00:00
|
|
|
void app_notify(struct su_context *ctx);
|
2018-10-04 08:59:51 +00:00
|
|
|
void app_connect(const char *socket, struct su_info *info);
|
|
|
|
void socket_send_request(int fd, struct su_info *info);
|
2017-04-14 19:21:31 +00:00
|
|
|
|
2018-07-18 10:12:47 +00:00
|
|
|
#endif
|