2017-09-17 11:45:03 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2017-09-17 10:18:17 -04:00
|
|
|
#include <pwd.h>
|
2018-03-28 12:26:56 -04:00
|
|
|
#include <stdio.h>
|
2017-09-17 10:18:17 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-09-24 09:33:01 -04:00
|
|
|
#include "../util.h"
|
2017-09-17 10:18:17 -04:00
|
|
|
|
|
|
|
const char *
|
|
|
|
gid(void)
|
|
|
|
{
|
|
|
|
return bprintf("%d", getgid());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
username(void)
|
|
|
|
{
|
2018-05-02 02:42:55 -04:00
|
|
|
struct passwd *pw;
|
2017-09-17 10:18:17 -04:00
|
|
|
|
2018-05-02 02:42:55 -04:00
|
|
|
if (!(pw = getpwuid(geteuid()))) {
|
2018-05-18 04:59:05 -04:00
|
|
|
warn("getpwuid '%d':", geteuid());
|
2017-09-17 10:18:17 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bprintf("%s", pw->pw_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
uid(void)
|
|
|
|
{
|
|
|
|
return bprintf("%d", geteuid());
|
|
|
|
}
|