blob: 49b5dd368712a62f39cbf5fb206a0a8827f36cbd [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen31638212000-01-15 22:28:50 +00002/*
3 * Mini whoami implementation for busybox
4 *
5 * Copyright (C) 2000 Edward Betts <edward@debian.org>.
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Erik Andersen31638212000-01-15 22:28:50 +00008 */
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +01009//config:config WHOAMI
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "whoami (3.2 kb)"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010011//config: default y
12//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: whoami is used to print the username of the current
14//config: user id (same as id -un).
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010015
16//applet:IF_WHOAMI(APPLET_NOFORK(whoami, whoami, BB_DIR_USR_BIN, BB_SUID_DROP, whoami))
17
18//kbuild:lib-$(CONFIG_WHOAMI) += whoami.o
Erik Andersen31638212000-01-15 22:28:50 +000019
Manuel Novoa III cad53642003-03-19 09:13:01 +000020/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
Eric Andersen8d4c3972001-03-09 21:28:09 +000021
Pere Orga34425382011-03-31 14:43:25 +020022//usage:#define whoami_trivial_usage
23//usage: ""
24//usage:#define whoami_full_usage "\n\n"
25//usage: "Print the user name associated with the current effective user id"
26
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000027#include "libbb.h"
Erik Andersen31638212000-01-15 22:28:50 +000028
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000029int whoami_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010030int whoami_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Erik Andersene49d5ec2000-02-08 19:58:47 +000031{
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010032 if (argv[1])
Manuel Novoa III cad53642003-03-19 09:13:01 +000033 bb_show_usage();
Erik Andersen31638212000-01-15 22:28:50 +000034
Denis Vlasenko3734b942007-07-27 11:20:10 +000035 /* Will complain and die if username not found */
Denis Vlasenko0c68a872008-12-02 22:56:59 +000036 puts(xuid2uname(geteuid()));
Denis Vlasenko99912ca2007-04-10 15:43:37 +000037
Denys Vlasenko8131eea2009-11-02 14:19:51 +010038 return fflush_all();
Erik Andersen31638212000-01-15 22:28:50 +000039}