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