Skip to content
Snippets Groups Projects
Commit 995dfa9c authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

allows @runas field to be on format uid:gid,uid:,:gid or uid whereas uid and...

allows @runas field to be on format uid:gid,uid:,:gid or uid whereas uid and gid is the name of user and the name of the group respectively
parent aa4f2120
No related branches found
No related tags found
No related merge requests found
...@@ -1075,16 +1075,90 @@ int get_uint(keynocheck *ch,uint32_t *ui) ...@@ -1075,16 +1075,90 @@ int get_uint(keynocheck *ch,uint32_t *ui)
int check_valid_runas(keynocheck *ch) int check_valid_runas(keynocheck *ch)
{ {
errno = 0 ; size_t len = strlen(ch->val.s) ;
struct passwd *pw = getpwnam(ch->val.s); char file[len + 1] ;
if (pw == NULL && errno) auto_strings(file,ch->val.s) ;
{
parse_err(0,ch) ; char *colon ;
return 0 ; colon = strchr(file,':') ;
}
if (colon) {
*colon = 0 ;
uid_t uid ;
gid_t gid ;
size_t uid_strlen ;
size_t gid_strlen ;
static char uid_str[UID_FMT] ;
static char gid_str[GID_FMT] ;
/** on format :gid, get the uid of
* the owner of the process */
if (!*file) {
uid = getuid() ;
}
else {
if (get_uidbyname(file,&uid) == -1) {
parse_err(0,ch) ;
return 0 ;
}
}
uid_strlen = uid_fmt(uid_str,uid) ;
uid_str[uid_strlen] = 0 ;
/** on format uid:, get the gid of
* the owner of the process */
if (!*(colon + 1)) {
if (!yourgid(&gid,uid)) {
parse_err(0,ch) ;
return 0 ;
}
}
else {
if (get_gidbygroup(colon + 1,&gid) == -1) {
parse_err(0,ch) ;
return 0 ;
}
}
gid_strlen = gid_fmt(gid_str,gid) ;
gid_str[gid_strlen] = 0 ;
ch->val.len = 0 ;
if (!auto_stra(&ch->val,uid_str,":",gid_str))
log_warnsys_return(LOG_EXIT_ZERO,"stralloc") ;
}
else {
int e = errno ;
errno = 0 ;
struct passwd *pw = getpwnam(ch->val.s);
if (!pw) {
if (!errno) errno = ESRCH ;
parse_err(0,ch) ;
return 0 ;
}
errno = e ;
}
return 1 ; return 1 ;
} }
void parse_err(int ierr,keynocheck *check) void parse_err(int ierr,keynocheck *check)
{ {
int idsec = check->idsec ; int idsec = check->idsec ;
......
...@@ -119,9 +119,10 @@ int youruid(uid_t *passto,char const *owner) ...@@ -119,9 +119,10 @@ int youruid(uid_t *passto,char const *owner)
e = errno ; e = errno ;
errno = 0 ; errno = 0 ;
struct passwd *st ; struct passwd *st ;
if (!(st = getpwnam(owner)) || errno) st = getpwnam(owner) ;
if (!st)
{ {
if (!errno) errno = EINVAL ; if (!errno) errno = ESRCH ;
return 0 ; return 0 ;
} }
*passto = st->pw_uid ; *passto = st->pw_uid ;
...@@ -135,9 +136,10 @@ int yourgid(gid_t *passto,uid_t owner) ...@@ -135,9 +136,10 @@ int yourgid(gid_t *passto,uid_t owner)
e = errno ; e = errno ;
errno = 0 ; errno = 0 ;
struct passwd *st ; struct passwd *st ;
if (!(st = getpwuid(owner)) || errno) st = getpwuid(owner) ;
if (!st)
{ {
if (!errno) errno = EINVAL ; if (!errno) errno = ESRCH ;
return 0 ; return 0 ;
} }
*passto = st->pw_gid ; *passto = st->pw_gid ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment