blob: 743e2291c61d5bcdd200c64cdb595f8f5a9b9127 [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
Erik Andersen31638212000-01-15 22:28:50 +000023#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000024#include <stdlib.h>
25#include <unistd.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000026#include "busybox.h"
Erik Andersen31638212000-01-15 22:28:50 +000027
Denis Vlasenko06af2162007-02-03 17:28:39 +000028int logname_main(int argc, char ATTRIBUTE_UNUSED **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000029int logname_main(int argc, char ATTRIBUTE_UNUSED **argv)
Erik Andersene49d5ec2000-02-08 19:58:47 +000030{
Manuel Novoa III cad53642003-03-19 09:13:01 +000031 const char *p;
Erik Andersen31638212000-01-15 22:28:50 +000032
Manuel Novoa III cad53642003-03-19 09:13:01 +000033 if (argc > 1) {
34 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000035 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000036
37 if ((p = getlogin()) != NULL) {
38 puts(p);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000039 fflush_stdout_and_exit(EXIT_SUCCESS);
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}