2017-09-17 17:45:03 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2017-09-17 16:18:17 +02:00
|
|
|
#include <err.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-09-24 15:33:01 +02:00
|
|
|
#include "../util.h"
|
2017-09-17 16:18:17 +02:00
|
|
|
|
|
|
|
const char *
|
|
|
|
gid(void)
|
|
|
|
{
|
|
|
|
return bprintf("%d", getgid());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
username(void)
|
|
|
|
{
|
|
|
|
struct passwd *pw = getpwuid(geteuid());
|
|
|
|
|
|
|
|
if (pw == NULL) {
|
|
|
|
warn("Failed to get username");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bprintf("%s", pw->pw_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
uid(void)
|
|
|
|
{
|
|
|
|
return bprintf("%d", geteuid());
|
|
|
|
}
|