summaryrefslogtreecommitdiff
path: root/util/sbase/whoami.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/sbase/whoami.c')
-rw-r--r--util/sbase/whoami.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/util/sbase/whoami.c b/util/sbase/whoami.c
new file mode 100644
index 00000000..c991ac29
--- /dev/null
+++ b/util/sbase/whoami.c
@@ -0,0 +1,37 @@
+/* See LICENSE file for copyright and license details. */
+#include <errno.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <pwd.h>
+
+#include "util.h"
+
+static void
+usage(void)
+{
+ eprintf("usage: %s\n", argv0);
+}
+
+int
+main(int argc, char *argv[])
+{
+ uid_t uid;
+ struct passwd *pw;
+
+ argv0 = *argv, argv0 ? (argc--, argv++) : (void *)0;
+
+ if (argc)
+ usage();
+
+ uid = geteuid();
+ errno = 0;
+ if (!(pw = getpwuid(uid))) {
+ if (errno)
+ eprintf("getpwuid %d:", uid);
+ else
+ eprintf("getpwuid %d: no such user\n", uid);
+ }
+ puts(pw->pw_name);
+
+ return fshut(stdout, "<stdout>");
+}