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 <pwd.h>
|
2018-03-28 18:26:56 +02:00
|
|
|
#include <stdio.h>
|
2017-09-17 16:18:17 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2022-10-26 22:14:53 +02:00
|
|
|
#include "../slstatus.h"
|
2022-10-27 23:18:30 +02:00
|
|
|
#include "../util.h"
|
2017-09-17 16:18:17 +02:00
|
|
|
|
|
|
|
const char *
|
2022-10-26 22:16:05 +02:00
|
|
|
gid(const char *unused)
|
2017-09-17 16:18:17 +02:00
|
|
|
{
|
|
|
|
return bprintf("%d", getgid());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2022-10-26 22:16:05 +02:00
|
|
|
username(const char *unused)
|
2017-09-17 16:18:17 +02:00
|
|
|
{
|
2018-05-02 08:42:55 +02:00
|
|
|
struct passwd *pw;
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-02 08:42:55 +02:00
|
|
|
if (!(pw = getpwuid(geteuid()))) {
|
2018-05-18 10:59:05 +02:00
|
|
|
warn("getpwuid '%d':", geteuid());
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bprintf("%s", pw->pw_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2022-10-26 22:16:05 +02:00
|
|
|
uid(const char *unused)
|
2017-09-17 16:18:17 +02:00
|
|
|
{
|
|
|
|
return bprintf("%d", geteuid());
|
|
|
|
}
|