blob: e8dac77dde289348c4569274a31fb2eabcdb2f7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef PRIVEXEC_CHECK_H
#define PRIVEXEC_CHECK_H
#ifndef CONFIG_PATH
#define CONFIG_PATH "/etc/privexec.conf"
#endif
#ifndef PAM_SERVICE_NAME
#define PAM_SERVICE_NAME "privexec"
#endif
enum permission { UNKNOWN, AUTHORIZED, AUTHENTICATE, DENIED };
void fatal(int include_errno, char *fmt, ...);
enum permission get_permission(const char *user, const char *group, const char *cmd);
int authenticate(const char *user);
#endif
|