blob: aba6ce3c6162500e24a3f16c8abc33b0ff671b72 [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 *
Bernhard Reutner-Fischer20f40002006-01-30 17:17:14 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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
Eric Andersencbe31da2001-02-20 06:14:08 +000023#include "busybox.h"
Erik Andersen31638212000-01-15 22:28:50 +000024
Denis Vlasenko99912ca2007-04-10 15:43:37 +000025/* This is a NOFORK applet. Be very careful! */
26
Denis Vlasenko06af2162007-02-03 17:28:39 +000027int logname_main(int argc, char ATTRIBUTE_UNUSED **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000028int logname_main(int argc, char ATTRIBUTE_UNUSED **argv)
Erik Andersene49d5ec2000-02-08 19:58:47 +000029{
Denis Vlasenko99912ca2007-04-10 15:43:37 +000030 char buf[128];
Erik Andersen31638212000-01-15 22:28:50 +000031
Manuel Novoa III cad53642003-03-19 09:13:01 +000032 if (argc > 1) {
33 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000034 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000035
Denis Vlasenko99912ca2007-04-10 15:43:37 +000036 /* Using _r function - avoid pulling in static buffer from libc */
37 if (getlogin_r(buf, sizeof(buf)) == 0) {
38 puts(buf);
39 return fflush(stdout);
Manuel Novoa III cad53642003-03-19 09:13:01 +000040 }
41
42 bb_perror_msg_and_die("getlogin");
Erik Andersen31638212000-01-15 22:28:50 +000043}