Compare commits
No commits in common. "e63109a763e75f294582f2af6cb10f466a8a4e81" and "1594ec867bcba46cfbfa3da0d0f0d81cb0aa00fc" have entirely different histories.
e63109a763
...
1594ec867b
96
config.template
Normal file
96
config.template
Normal file
@ -0,0 +1,96 @@
|
||||
SECURITY CONSIDERATIONS
|
||||
=======================
|
||||
|
||||
1. commands must be given by absolute path, that's because if you do otherwise
|
||||
nopassword commands could be hijacked:
|
||||
|
||||
in the config:
|
||||
nopass badguy as root cmd zzz
|
||||
in the shell:
|
||||
~ $ export PATH=/home/badguy/test:$PATH
|
||||
~ $ mkdir test
|
||||
~ $ printf '#!/bin/sh\nrm -rf --no-preserve-root' > test/zzz
|
||||
~ $ chmod +x test/zzz
|
||||
~ $ us zzz #this deletes the filesystem without password!
|
||||
|
||||
IDEA 1
|
||||
======
|
||||
|
||||
# this is a comment
|
||||
# rules are goruped by user/group
|
||||
# rules are structured somewhat like json, example:
|
||||
|
||||
# Only 'command' is allowed to run without a password, all the rest is blocked
|
||||
ale {
|
||||
allow {
|
||||
command nopass
|
||||
}
|
||||
|
||||
deny {
|
||||
/.*/
|
||||
}
|
||||
}
|
||||
|
||||
IDEA 2 - THE DOAS WAY
|
||||
=====================
|
||||
|
||||
# this is a comment
|
||||
# every line is a rule
|
||||
# rules are structured like this:
|
||||
|
||||
permit|deny [options] identity [as target] [cmd command [args ...]]
|
||||
|
||||
# look at doas.conf(5) for more information
|
||||
|
||||
IDEA 2-3
|
||||
========
|
||||
|
||||
# reverse-doas way
|
||||
-> identity permit|deny [command [args ...]] [options]
|
||||
|
||||
# but how would I distinguish between command and options?
|
||||
-> identity [options] permit|deny [command [args ...]]
|
||||
|
||||
# spaces are not a very good separatow when in comes to commands
|
||||
-> identity,[options],permit|deny,[command [args ...]]
|
||||
|
||||
#
|
||||
# this is kinda similar to a crontab, basically options are required
|
||||
#
|
||||
|
||||
# config structure:
|
||||
-> identity options as action [command [args ...]]
|
||||
^ ^ ^ ^
|
||||
can be * | | permit, deny
|
||||
can be nil (NULL) |
|
||||
can be *
|
||||
|
||||
# permit user "ale" to execute command "shutdown" as root without password:
|
||||
-> ale nopass root permit shutdown
|
||||
# permit members of the wheel group to execute any comands as any user:
|
||||
-> :wheel nil * permit
|
||||
# deny users of the wheel group to execute commands that begin with "sys":
|
||||
# this could be circumvented by having the command inside a shell script
|
||||
-> :wheel nil * deny /sys.*/
|
||||
# deny all users to execute all comands as any other user
|
||||
-> * nil * deny
|
||||
#
|
||||
# let's scramble things up to make more sense
|
||||
#
|
||||
[action] options identity as [command [args ...]]
|
||||
^ ^ ^ ^
|
||||
| | can both be * (any)
|
||||
| can be none, comma separated
|
||||
none: permit
|
||||
'!': deny (negate rule)
|
||||
|
||||
# allow users of the wheel group to execute any command as root:
|
||||
-> none :wheel root
|
||||
# deny all users to execute commands that start with "sys"
|
||||
-> ! none * * /sys.*/
|
||||
|
||||
IDEA 3 - THE SUCKLESS WAY
|
||||
=========================
|
||||
|
||||
configuration should happen inside a source file called config.h, to apply
|
||||
changes to the configuration the program has to be recompiled
|
2
makefile
2
makefile
@ -4,7 +4,7 @@ CC ?= gcc
|
||||
CFLAGS = -Wall -pedantic --std=c99 -O2
|
||||
DBG_CFLAGS = -Wall -Werror -pedantic --std=c99 -O0 -g
|
||||
SYSTEM != uname
|
||||
LDFLAGS != if [ '${SYSTEM}' != 'OpenBSD' ]; then echo '-lcrypt'; fi
|
||||
LDFLAGS != if [ '${SYSTEM}' = 'Linux' ]; then echo '-lcrypt'; fi
|
||||
PREFIX = /usr/local
|
||||
MANPREFIX = ${PREFIX}/share/man
|
||||
|
||||
|
363
us.c
363
us.c
@ -25,7 +25,6 @@
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
@ -37,8 +36,6 @@
|
||||
#include <grp.h>
|
||||
#include <termios.h>
|
||||
#include <stdarg.h>
|
||||
#include <ctype.h>
|
||||
#include <signal.h>
|
||||
|
||||
#if !defined(_XOPEN_CRYPT) || _XOPEN_CRYPT == -1
|
||||
#include <crypt.h>
|
||||
@ -49,51 +46,30 @@
|
||||
#endif
|
||||
|
||||
#define MAX_HASH 1024
|
||||
#define CONF_LINE_MAX 1024
|
||||
#define GROUPS_MAX 256
|
||||
#define FLAG_PERSIST 0x1
|
||||
#define FLAG_NOPASS 0x2
|
||||
#define FLAG_NOLOG 0x4
|
||||
|
||||
struct env_elem {
|
||||
char *name;
|
||||
char *value;
|
||||
};
|
||||
|
||||
struct config {
|
||||
int type;
|
||||
int flags;
|
||||
char *who;
|
||||
char *as;
|
||||
struct env_elem *env;
|
||||
int env_n;
|
||||
};
|
||||
|
||||
static void *emalloc(size_t);
|
||||
static char *estrdup(const char *);
|
||||
void *erealloc(void *, size_t);
|
||||
static void usage(void);
|
||||
static void die(const char *, ...);
|
||||
static int perm_set(struct passwd *, struct group *);
|
||||
static int authenticate(uid_t, char);
|
||||
static struct passwd* user_to_passwd(const char *);
|
||||
static struct group* group_to_grp(const char *);
|
||||
static int get_config(struct config **, int *);
|
||||
//static int execvpe(const char *, char *const *, char *const *);
|
||||
|
||||
extern char **environ;
|
||||
char *config_file = "/etc/us.conf";
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
// TODO: modify signal handlers to ignore sigchld to not make zombies
|
||||
char *t_usr = "root", *t_grp = NULL;
|
||||
struct passwd *t_pw;
|
||||
struct group *t_gr;
|
||||
int opt, err;
|
||||
int shellflag = 0, envflag = 0, askpass = 0;
|
||||
while ((opt = getopt(argc, argv, "Au:g:C:se")) != -1) {
|
||||
int shellflag = 0, envflag = 0;
|
||||
while ((opt = getopt(argc, argv, "A:u:g:C:se")) != -1) {
|
||||
switch (opt) {
|
||||
case 'A':
|
||||
askpass = 1;
|
||||
printf("-A is not yet implemented\n");
|
||||
exit(EXIT_FAILURE);
|
||||
break;
|
||||
case 'u':
|
||||
t_usr = optarg;
|
||||
@ -102,7 +78,8 @@ int main(int argc, char *argv[])
|
||||
t_grp = optarg;
|
||||
break;
|
||||
case 'C':
|
||||
config_file = optarg;
|
||||
printf("-C is not yet implemented\n");
|
||||
exit(EXIT_FAILURE);
|
||||
break;
|
||||
case 's':
|
||||
shellflag = 1;
|
||||
@ -125,99 +102,20 @@ int main(int argc, char *argv[])
|
||||
fprintf(stderr, "getpwid: %s\n", strerror(errno));
|
||||
return errno;
|
||||
}
|
||||
char *my_name = my_pw->pw_name;
|
||||
gid_t my_groups[GROUPS_MAX];
|
||||
int n_groups = 0;
|
||||
if ((n_groups = getgroups(GROUPS_MAX, my_groups)) == -1)
|
||||
die("getgroups:");
|
||||
char *my_name = strdup(my_pw->pw_name);
|
||||
if (!my_name)
|
||||
die("strdup:");
|
||||
|
||||
/* Authenticate, we will be root from now on */
|
||||
if (authenticate(my_pw->pw_uid, 0))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
/* Get target user and group info */
|
||||
t_pw = user_to_passwd(t_usr);
|
||||
if (!t_pw)
|
||||
die("user_to_passwd:");
|
||||
die("usr_to_passwd:");
|
||||
t_gr = group_to_grp(t_grp);
|
||||
|
||||
/* Don't have to wait for children */
|
||||
struct sigaction sa = {0};
|
||||
sa.sa_handler = SIG_DFL;
|
||||
sa.sa_flags = SA_NOCLDWAIT;
|
||||
if (sigaction(SIGCHLD, &sa, NULL) == -1)
|
||||
die("sigaction:");
|
||||
|
||||
/* From now on most actions require root */
|
||||
if (setuid(0) == -1)
|
||||
die("setuid:");
|
||||
|
||||
/* get info from the config file and check if the action we want to
|
||||
* do is permitted */
|
||||
struct env_elem *env_extra = NULL;
|
||||
struct config *conf = NULL;
|
||||
int conf_num, conf_flags = 0, env_extra_n = 0;
|
||||
if (get_config(&conf, &conf_num) == -1)
|
||||
die("get_config: invalid arguments");
|
||||
int here = 0;
|
||||
for (int i = 0; i < conf_num; i++) {
|
||||
struct passwd *who_pw, *as_pw;
|
||||
struct group *who_gr, *as_gr;
|
||||
int who_usr = conf[i].who[0] == ':' ? 0 : 1;
|
||||
int as_usr = conf[i].as[0] == ':' ? 0 : 1;
|
||||
if (who_usr) {
|
||||
who_pw = user_to_passwd(conf[i].who);
|
||||
if (my_pw->pw_uid != who_pw->pw_uid) {
|
||||
free(who_pw);
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
who_gr = group_to_grp(conf[i].who);
|
||||
gid_t w_gid = who_gr->gr_gid;
|
||||
int x = 0;
|
||||
for (; x < n_groups && w_gid != my_groups[x]; x++);
|
||||
if (w_gid != my_groups[x]) {
|
||||
free(who_gr);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
if (as_usr) {
|
||||
as_pw = user_to_passwd(conf[i].as);
|
||||
if (!as_pw)
|
||||
die("%s not a valid user", conf[i].as);
|
||||
if (t_pw->pw_uid != as_pw->pw_uid) {
|
||||
free(as_pw);
|
||||
continue;
|
||||
}
|
||||
} else if (t_gr) {
|
||||
as_gr = group_to_grp(conf[i].as);
|
||||
if (t_gr->gr_gid != as_gr->gr_gid) {
|
||||
free(as_gr);
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
here = 1;
|
||||
if (conf[i].type == 0)
|
||||
die("Permission denied");
|
||||
|
||||
conf_flags |= conf[i].flags;
|
||||
if (conf[i].env_n) {
|
||||
env_extra = erealloc(env_extra,
|
||||
(env_extra_n+conf[i].env_n+1)*sizeof(struct env_elem));
|
||||
for (int j = env_extra_n, x = 0; j < env_extra_n + conf[i].env_n; j++, x++)
|
||||
env_extra[j] = conf[i].env[x];
|
||||
env_extra_n += conf[i].env_n;
|
||||
env_extra[env_extra_n] = (struct env_elem){NULL,NULL};
|
||||
}
|
||||
|
||||
}
|
||||
if (!here)
|
||||
die("no rule found for user %s", my_name);
|
||||
|
||||
/* Authenticate, we will be root from now on */
|
||||
if (!(conf_flags & FLAG_NOPASS))
|
||||
if (authenticate(my_pw->pw_uid, askpass))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
/* Get target user's shell */
|
||||
if (!shellflag)
|
||||
shell = t_pw->pw_shell;
|
||||
@ -230,16 +128,30 @@ int main(int argc, char *argv[])
|
||||
int c_argc = argc - optind;
|
||||
char **c_argv;
|
||||
if (c_argc) {
|
||||
c_argv = emalloc(sizeof(char *) * (c_argc + 1));
|
||||
for (int i = 0; optind < argc; optind++, i++)
|
||||
c_argv[i] = estrdup(argv[optind]);
|
||||
c_argv = malloc(sizeof(char *) * (c_argc + 1));
|
||||
if (!c_argv)
|
||||
die("malloc:");
|
||||
for (int i = 0; optind < argc; optind++, i++) {
|
||||
c_argv[i] = strdup(argv[optind]);
|
||||
if (!c_argv[i])
|
||||
die("strdup:");
|
||||
}
|
||||
} else {
|
||||
c_argc = 1;
|
||||
c_argv = emalloc(sizeof(char *) * (c_argc + 1));
|
||||
c_argv[0] = estrdup(shell);
|
||||
c_argv = malloc(sizeof(char *) * (c_argc + 1));
|
||||
if (!c_argv)
|
||||
die("malloc:");
|
||||
c_argv[0] = strdup(shell);
|
||||
if (!c_argv[0])
|
||||
die("strdup:");
|
||||
}
|
||||
c_argv[c_argc] = NULL;
|
||||
|
||||
struct env_elem {
|
||||
char *name;
|
||||
char *value;
|
||||
};
|
||||
|
||||
struct env_elem env_keep[] = {
|
||||
{"PATH", NULL},
|
||||
{"TERM", NULL},
|
||||
@ -259,8 +171,11 @@ int main(int argc, char *argv[])
|
||||
};
|
||||
|
||||
if (envflag) { /* clear env */
|
||||
for (int i = 0; env_keep[i].name; i++)
|
||||
env_keep[i].value = estrdup(getenv(env_keep[i].name));
|
||||
for (int i = 0; env_keep[i].name; i++) {
|
||||
env_keep[i].value = strdup(getenv(env_keep[i].name));
|
||||
if (!env_keep[i].value)
|
||||
die("strdup:");
|
||||
}
|
||||
environ = NULL; // in place of clearenv
|
||||
}
|
||||
|
||||
@ -272,30 +187,20 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; envflag &&env_keep[i].name; i++) {
|
||||
if (env_keep[i].value) {
|
||||
err = setenv(env_keep[i].name, env_keep[i].value, 1);
|
||||
if (err == -1) {
|
||||
fprintf(stderr, "setenv: %s\n", strerror(errno));
|
||||
goto fail_end;
|
||||
if (envflag) {
|
||||
for (int i = 0; env_keep[i].name; i++) {
|
||||
if (env_keep[i].value) {
|
||||
err = setenv(env_keep[i].name, env_keep[i].value, 1);
|
||||
if (err == -1) {
|
||||
fprintf(stderr, "setenv: %s\n", strerror(errno));
|
||||
goto fail_end;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; env_extra && env_extra[i].name; i++) {
|
||||
if (env_extra[i].value) {
|
||||
err = setenv(env_extra[i].name, env_extra[i].value, 1);
|
||||
if (err == -1) {
|
||||
fprintf(stderr, "setenv: %s\n", strerror(errno));
|
||||
goto fail_end;
|
||||
}
|
||||
} else {
|
||||
unsetenv(env_extra[i].name);
|
||||
}
|
||||
}
|
||||
|
||||
// do not override, we might be under more levels of 'us'
|
||||
err = setenv("US_USER", my_name, 0);
|
||||
free(my_name);
|
||||
|
||||
errno = 0;
|
||||
/* Set permissions */
|
||||
@ -328,7 +233,7 @@ static inline void usage(void)
|
||||
// -c [file]: manually select config file
|
||||
// something about environment
|
||||
// something about non interactiveness
|
||||
printf("usage: us [-seA] [-u user] [-g group] [-C config] command [args]\n");
|
||||
printf("usage: us [-se] [-u user] [-g group] command [args]\n");
|
||||
}
|
||||
|
||||
static int perm_set(struct passwd *pw, struct group *gr)
|
||||
@ -380,6 +285,9 @@ static int authenticate(uid_t uid, char ask)
|
||||
char *p = pw->pw_passwd;
|
||||
int tty_fd = STDOUT_FILENO;
|
||||
|
||||
// but we have to be root
|
||||
if (setuid(0) == -1)
|
||||
die("setreuid:");
|
||||
if (!strcmp(p, "x") || *p == '*' || *p == '!') {
|
||||
#if defined(__linux__)
|
||||
// get exclusive access to shadow
|
||||
@ -392,7 +300,10 @@ static int authenticate(uid_t uid, char ask)
|
||||
hash_p = sp->sp_pwdp;
|
||||
endspent();
|
||||
ulckpwdf();
|
||||
// if (setuid(uid) == -1)
|
||||
// die("setreuid:");
|
||||
#elif defined(__OpenBSD__)
|
||||
// TODO: openbsd has getpwuid_passwd
|
||||
struct passwd *op = getpwuid_shadow(uid);
|
||||
if (!op)
|
||||
die("getpwuid_shadow:");
|
||||
@ -411,7 +322,7 @@ static int authenticate(uid_t uid, char ask)
|
||||
char pass[1024] = {0};
|
||||
struct termios tio_before, tio_pass;
|
||||
if (ask && askpass) {
|
||||
pid_t pid, parent = getpid();
|
||||
pid_t pid;
|
||||
int pipefd[2];
|
||||
if (pipe(pipefd) == -1)
|
||||
die("pipe:");
|
||||
@ -420,28 +331,23 @@ static int authenticate(uid_t uid, char ask)
|
||||
die("fork:");
|
||||
break;
|
||||
case 0:
|
||||
/* we are still root, drop off permissions before
|
||||
* disasters happen */
|
||||
if (setuid(uid) == -1) {
|
||||
kill(parent, SIGTERM);
|
||||
die("askpass: setuid:");
|
||||
}
|
||||
if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
|
||||
kill(parent, SIGTERM);
|
||||
die("askpass: dup2:");
|
||||
// TODO: send signal to parent dup failed
|
||||
die("dup2:");
|
||||
}
|
||||
close(pipefd[0]);
|
||||
execl("/bin/sh", "sh", "-c", askpass, (char *)NULL);
|
||||
kill(parent, SIGTERM);
|
||||
die("askpass: execl:");
|
||||
execl(askpass, "", (char *)NULL);
|
||||
die("execl:");
|
||||
break;
|
||||
default:
|
||||
fd = pipefd[0];
|
||||
close(pipefd[1]);
|
||||
break;
|
||||
}
|
||||
} else if (ask) {
|
||||
die("askpass: no valid askpass specified");
|
||||
} else {
|
||||
printf("Password (%s): ", pw->pw_name);
|
||||
printf("Password: ");
|
||||
fflush(stdout);
|
||||
if (tcgetattr(tty_fd, &tio_before) == -1)
|
||||
die("tcgetattr:");
|
||||
@ -468,7 +374,7 @@ static int authenticate(uid_t uid, char ask)
|
||||
if (pass[l-1] == '\n')
|
||||
pass[--l] = '\0';
|
||||
|
||||
if (ask && askpass) {
|
||||
if (ask) {
|
||||
close(fd);
|
||||
} else {
|
||||
if (tcsetattr(tty_fd, TCSANOW, &tio_before) == -1)
|
||||
@ -476,7 +382,6 @@ static int authenticate(uid_t uid, char ask)
|
||||
}
|
||||
|
||||
char *enc = crypt(pass, hash);
|
||||
/* clean pass from memory */
|
||||
memset(pass, 0, 1024);
|
||||
if (strncmp(hash, enc, 1024)) {
|
||||
printf("Authentication failure\n");
|
||||
@ -494,7 +399,7 @@ static struct passwd* user_to_passwd(const char *user)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
struct passwd *pw, *pr;
|
||||
struct passwd* pw;
|
||||
long uid_l;
|
||||
errno = 0;
|
||||
if (user[0] != '#') {
|
||||
@ -513,9 +418,8 @@ static struct passwd* user_to_passwd(const char *user)
|
||||
errno = EINVAL;
|
||||
return NULL;
|
||||
}
|
||||
pr = emalloc(sizeof(struct passwd));
|
||||
memcpy(pr, pw, sizeof(struct passwd));
|
||||
return pr;
|
||||
|
||||
return pw;
|
||||
}
|
||||
|
||||
static struct group* group_to_grp(const char *group)
|
||||
@ -525,7 +429,7 @@ static struct group* group_to_grp(const char *group)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
struct group *gr, *rr;
|
||||
struct group* gr;
|
||||
long gid_l;
|
||||
errno = 0;
|
||||
if (group[0] != '#') {
|
||||
@ -544,9 +448,7 @@ static struct group* group_to_grp(const char *group)
|
||||
errno = EINVAL;
|
||||
return NULL;
|
||||
}
|
||||
rr = emalloc(sizeof(struct group));
|
||||
memcpy(rr, gr, sizeof(struct group));
|
||||
return rr;
|
||||
return gr;
|
||||
}
|
||||
|
||||
void die(const char *fmt, ...)
|
||||
@ -567,128 +469,3 @@ void die(const char *fmt, ...)
|
||||
exit(errno ? errno : EXIT_FAILURE);
|
||||
}
|
||||
|
||||
void *emalloc(size_t s)
|
||||
{
|
||||
if (!s || s == (size_t)-1)
|
||||
die("bad malloc: invalid size");
|
||||
void *p = calloc(1, s);
|
||||
if (!p)
|
||||
die("bad malloc:");
|
||||
return p;
|
||||
}
|
||||
|
||||
void *erealloc(void *p, size_t s)
|
||||
{
|
||||
if (!s || s == (size_t)-1)
|
||||
die("bad realloc: invalid size");
|
||||
void *r = realloc(p, s);
|
||||
if (!r)
|
||||
die("bad realloc:");
|
||||
return r;
|
||||
}
|
||||
|
||||
char *estrdup(const char *s)
|
||||
{
|
||||
if (!s)
|
||||
die("bad strdup: cannot duplicate NULL pointer");
|
||||
char *r = strdup(s);
|
||||
if (!r)
|
||||
die("bad strdup:");
|
||||
return r;
|
||||
}
|
||||
|
||||
static int get_config(struct config **conf, int *num)
|
||||
{
|
||||
if (!conf || !num)
|
||||
return -1;
|
||||
FILE *fp = fopen(config_file, "r");
|
||||
if (!fp)
|
||||
die("fopen:");
|
||||
struct stat st;
|
||||
if (fstat(fileno(fp), &st) == -1)
|
||||
die("fstat:");
|
||||
if (st.st_uid != 0 || st.st_gid != 0)
|
||||
die("config file must be owned by root:root");
|
||||
if (!S_ISREG(st.st_mode))
|
||||
die("config file must be a regular file");
|
||||
if (st.st_mode & S_IRWXO || st.st_mode & S_IROTH ||
|
||||
st.st_mode & S_IWOTH || st.st_mode & S_IXOTH)
|
||||
die("others may not modify, read or execute config file");
|
||||
char line[CONF_LINE_MAX];
|
||||
*num = 0;
|
||||
*conf = NULL;
|
||||
for (int i = 0; fgets(line, CONF_LINE_MAX, fp); i++) {
|
||||
char *s, *t, *sv;
|
||||
int n = 0;
|
||||
for (int ll = strlen(line)-1; isspace(line[ll]); line[ll--] = '\0');
|
||||
struct config c = {0};
|
||||
for (s = line;; s = NULL, n++) {
|
||||
int getflags = 0;
|
||||
if (!(t = strtok_r(s, " ", &sv)))
|
||||
break;
|
||||
if (*t == '#')
|
||||
break;
|
||||
switch (n) {
|
||||
case 0:
|
||||
if (!strcmp(t, "+"))
|
||||
c.type = 1;
|
||||
else if (!strcmp(t, "-"))
|
||||
c.type = 0;
|
||||
else
|
||||
die("non valid config line %d", i);
|
||||
break;
|
||||
case 1:
|
||||
c.who = estrdup(t);
|
||||
break;
|
||||
case 2:
|
||||
if (strcmp(t, "as"))
|
||||
die("non valid config line %d", i);
|
||||
break;
|
||||
case 3:
|
||||
c.as = estrdup(t);
|
||||
break;
|
||||
default:
|
||||
getflags = 1;
|
||||
break;
|
||||
}
|
||||
if (!getflags)
|
||||
continue;
|
||||
|
||||
if (isupper(*t)) {
|
||||
char *e, *se, *et;
|
||||
for (e = t;; e = NULL) {
|
||||
if (!(et = strtok_r(e, ",", &se)))
|
||||
break;
|
||||
char *sep;
|
||||
int x;
|
||||
if (!(sep = strchr(et, ',')))
|
||||
die("invalid env at %d", i);
|
||||
c.env = erealloc(c.env, (c.env_n+1)*sizeof(struct env_elem));
|
||||
x = c.env_n;
|
||||
*sep = '\0';
|
||||
for (char *p = et; *p; p++)
|
||||
if (!isupper(*p) && *p != '-'
|
||||
&& *p != '_')
|
||||
die("non valid"
|
||||
"env at %d", i);
|
||||
c.env[x].name = estrdup(et);
|
||||
c.env[x].value = estrdup(sep+1);
|
||||
c.env_n++;
|
||||
}
|
||||
} else if (!strcmp(t, "persist")) {
|
||||
c.flags |= FLAG_PERSIST;
|
||||
} else if (!strcmp(t, "nopass")) {
|
||||
c.flags |= FLAG_NOPASS;
|
||||
} else if (!strcmp(t, "nolog")) {
|
||||
c.flags |= FLAG_NOLOG;
|
||||
}
|
||||
}
|
||||
if (n < 3)
|
||||
die("non valid config line %d", i);
|
||||
*conf = erealloc(*conf, ((*num)+1)*sizeof(struct config));
|
||||
(*conf)[(*num)] = c;
|
||||
*num += 1;
|
||||
}
|
||||
fclose(fp);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user