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