blob: 10b9615a1e86fad3e54fe8e6765ee8b396f7309c [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 logname 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 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 compliant */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/logname.html */
12
13/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
14 *
15 * SUSv3 specifies the string used is that returned from getlogin().
16 * The previous implementation used getpwuid() for geteuid(), which
17 * is _not_ the same. Erik apparently made this change almost 3 years
18 * ago to avoid failing when no utmp was available. However, the
19 * correct course of action wrt SUSv3 for a failing getlogin() is
Eric Andersenaff114c2004-04-14 17:51:38 +000020 * a diagnostic message and an error return.
Manuel Novoa III cad53642003-03-19 09:13:01 +000021 */
22
Pere Orga34425382011-03-31 14:43:25 +020023//usage:#define logname_trivial_usage
24//usage: ""
25//usage:#define logname_full_usage "\n\n"
26//usage: "Print the name of the current user"
27//usage:
28//usage:#define logname_example_usage
29//usage: "$ logname\n"
30//usage: "root\n"
31
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000032#include "libbb.h"
Erik Andersen31638212000-01-15 22:28:50 +000033
Denis Vlasenko99912ca2007-04-10 15:43:37 +000034/* This is a NOFORK applet. Be very careful! */
35
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000036int logname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010037int logname_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Erik Andersene49d5ec2000-02-08 19:58:47 +000038{
Denys Vlasenkod069e532009-09-09 23:12:10 +020039 char buf[64];
Erik Andersen31638212000-01-15 22:28:50 +000040
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010041 if (argv[1]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000043 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000044
Denis Vlasenko99912ca2007-04-10 15:43:37 +000045 /* Using _r function - avoid pulling in static buffer from libc */
46 if (getlogin_r(buf, sizeof(buf)) == 0) {
47 puts(buf);
Denys Vlasenko8131eea2009-11-02 14:19:51 +010048 return fflush_all();
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 }
50
51 bb_perror_msg_and_die("getlogin");
Erik Andersen31638212000-01-15 22:28:50 +000052}