]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/getlogin.3
fanotify_init.2, fanotify.7: Document FAN_REPORT_TID
[thirdparty/man-pages.git] / man3 / getlogin.3
CommitLineData
fea681da
MK
1.\" Copyright 1995 James R. Van Zandt <jrv@vanzandt.mv.com>
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
c13182ef 12.\"
fea681da
MK
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da
MK
24.\"
25.\" Changed Tue Sep 19 01:49:29 1995, aeb: moved from man2 to man3
26.\" added ref to /etc/utmp, added BUGS section, etc.
27.\" modified 2003 Walter Harms, aeb - added getlogin_r, note on stdin use
4b8c67d9 28.TH GETLOGIN 3 2017-09-15 "GNU" "Linux Programmer's Manual"
fea681da 29.SH NAME
18701562 30getlogin, getlogin_r, cuserid \- get username
fea681da
MK
31.SH SYNOPSIS
32.B #include <unistd.h>
68e4db0a 33.PP
fea681da
MK
34.B "char *getlogin(void);"
35.br
36.BI "int getlogin_r(char *" buf ", size_t " bufsize );
dbfe9c70 37.PP
fea681da 38.B #include <stdio.h>
68e4db0a 39.PP
fea681da 40.BI "char *cuserid(char *" string );
68e4db0a 41.PP
cc4615cc
MK
42.in -4n
43Feature Test Macro Requirements for glibc (see
44.BR feature_test_macros (7)):
45.in
68e4db0a 46.PP
cc4615cc 47.BR getlogin_r ():
790980e0
MK
48.\" Deprecated: _REENTRANT ||
49_POSIX_C_SOURCE\ >=\ 199506L
68e4db0a 50.PP
cc4615cc 51.BR cuserid ():
8ff35845
MK
52.nf
53 Since glibc 2.24:
54 (_XOPEN_SOURCE && ! (_POSIX_C_SOURCE >= 200112L)
24467b3f 55 || _GNU_SOURCE
8ff35845
MK
56 Up to and including glibc 2.23:
57 _XOPEN_SOURCE
58.fi
fea681da 59.SH DESCRIPTION
60a90ecd
MK
60.BR getlogin ()
61returns a pointer to a string containing the name of
fea681da 62the user logged in on the controlling terminal of the process, or a
b437fdd9 63null pointer if this information cannot be determined.
c13182ef 64The string is
fea681da 65statically allocated and might be overwritten on subsequent calls to
60a90ecd
MK
66this function or to
67.BR cuserid ().
fea681da 68.PP
60a90ecd 69.BR getlogin_r ()
18701562 70returns this same username in the array
fea681da
MK
71.I buf
72of size
73.IR bufsize .
74.PP
60a90ecd 75.BR cuserid ()
18701562 76returns a pointer to a string containing a username
c13182ef
MK
77associated with the effective user ID of the process.
78If \fIstring\fP
b437fdd9 79is not a null pointer, it should be an array that can hold at least
fea681da 80\fBL_cuserid\fP characters; the string is returned in this array.
c13182ef
MK
81Otherwise, a pointer to a string in a static area is returned.
82This
fea681da 83string is statically allocated and might be overwritten on subsequent
60a90ecd
MK
84calls to this function or to
85.BR getlogin ().
fea681da
MK
86.PP
87The macro \fBL_cuserid\fP is an integer constant that indicates how
18701562 88long an array you might need to store a username.
1608e0bd 89\fBL_cuserid\fP is declared in \fI<stdio.h>\fP.
fea681da
MK
90.PP
91These functions let your program identify positively the user who is
988db661 92running
60a90ecd
MK
93.RB ( cuserid ())
94or the user who logged in this session
95.RB ( getlogin ()).
96(These can differ when set-user-ID programs are involved.)
fea681da
MK
97.PP
98For most purposes, it is more useful to use the environment variable
c13182ef
MK
99\fBLOGNAME\fP to find out who the user is.
100This is more flexible
fea681da 101precisely because the user can set \fBLOGNAME\fP arbitrarily.
47297adb 102.SH RETURN VALUE
60a90ecd 103.BR getlogin ()
18701562 104returns a pointer to the username when successful,
c0ebcc7a
MK
105and NULL on failure, with
106.I errno
107set to indicate the cause of the error.
60a90ecd 108.BR getlogin_r ()
c7094399 109returns 0 when successful, and nonzero on failure.
fea681da
MK
110.SH ERRORS
111POSIX specifies
112.TP
113.B EMFILE
26c32fab 114The per-process limit on the number of open file descriptors has been reached.
fea681da
MK
115.TP
116.B ENFILE
e258766b 117The system-wide limit on the total number of open files has been reached.
fea681da
MK
118.TP
119.B ENXIO
1285ff3d 120The calling process has no controlling terminal.
fea681da
MK
121.TP
122.B ERANGE
123(getlogin_r)
f24e3a3a 124The length of the username, including the terminating null byte (\(aq\\0\(aq),
28d88c17 125is larger than
fea681da 126.IR bufsize .
dd3568a1 127.PP
fea681da
MK
128Linux/glibc also has
129.TP
130.B ENOENT
131There was no corresponding entry in the utmp-file.
132.TP
133.B ENOMEM
134Insufficient memory to allocate passwd structure.
1de9af46
MK
135.TP
136.B ENOTTY
137Standard input didn't refer to a terminal.
138(See BUGS.)
fea681da 139.SH FILES
3ffdc54f
MK
140.TP
141\fI/etc/passwd\fP
142password database file
143.TP
144\fI/var/run/utmp\fP
145(traditionally \fI/etc/utmp\fP;
146some libc versions used \fI/var/adm/utmp\fP)
1454246e 147.SH ATTRIBUTES
edb60ed0
PH
148For an explanation of the terms used in this section, see
149.BR attributes (7).
150.TS
151allbox;
152lb lb lb
153l l l.
154Interface Attribute Value
155T{
1454246e 156.BR getlogin ()
1e2afa78
MS
157T} Thread safety T{
158MT-Unsafe race:getlogin race:utent
159.br
160sig:ALRM timer locale
161T}
edb60ed0 162T{
1454246e 163.BR getlogin_r ()
1e2afa78
MS
164T} Thread safety T{
165MT-Unsafe race:utent sig:ALRM timer
166.br
167locale
168T}
edb60ed0 169T{
1454246e 170.BR cuserid ()
edb60ed0
PH
171T} Thread safety MT-Unsafe race:cuserid/!string locale
172.TE
847e0d88 173.sp 1
1e2afa78
MS
174In the above table,
175.I utent
176in
177.I race:utent
178signifies that if any of the functions
60570269
MK
179.BR setutent (3),
180.BR getutent (3),
1e2afa78 181or
58f5b793
MK
182.BR endutent (3)
183are used in parallel in different threads of a program,
184then data races could occur.
1e2afa78
MS
185.BR getlogin ()
186and
187.BR getlogin_r ()
58f5b793
MK
188call those functions,
189so we use race:utent to remind users.
47297adb 190.SH CONFORMING TO
68e1685c
MK
191.BR getlogin ()
192and
d7298fcf
MK
193.BR getlogin_r ():
194POSIX.1-2001, POSIX.1-2008.
847e0d88 195.PP
60a90ecd
MK
196System V has a
197.BR cuserid ()
198function which uses the real
c13182ef 199user ID rather than the effective user ID.
60a90ecd
MK
200The
201.BR cuserid ()
202function
c13182ef 203was included in the 1988 version of POSIX,
68e1685c
MK
204but removed from the 1990 version.
205It was present in SUSv2, but removed in POSIX.1-2001.
dd3568a1 206.PP
60a90ecd
MK
207OpenBSD has
208.BR getlogin ()
209and
210.BR setlogin (),
211and a username
1285ff3d 212associated with a session, even if it has no controlling terminal.
fea681da 213.SH BUGS
c13182ef 214Unfortunately, it is often rather easy to fool
b5cc2ffb 215.BR getlogin ().
fea681da 216Sometimes it does not work at all, because some program messed up
c13182ef
MK
217the utmp file.
218Often, it gives only the first 8 characters of
219the login name.
1285ff3d 220The user currently logged in on the controlling terminal
fea681da 221of our program need not be the user who started it.
c13182ef 222Avoid
b5cc2ffb
MK
223.BR getlogin ()
224for security-related purposes.
dd3568a1 225.PP
a306ffff 226Note that glibc does not follow the POSIX specification and uses
68e1685c 227.I stdin
fea681da
MK
228instead of
229.IR /dev/tty .
c13182ef
MK
230A bug.
231(Other recent systems, like SunOS 5.8 and HP-UX 11.11 and FreeBSD 4.8
232all return the login name also when
233.I stdin
68e1685c 234is redirected.)
dd3568a1 235.PP
c13182ef
MK
236Nobody knows precisely what
237.BR cuserid ()
b5cc2ffb 238does; avoid it in portable programs.
c13182ef 239Or avoid it altogether: use
b5cc2ffb
MK
240.I getpwuid(geteuid())
241instead, if that is
fea681da 242what you meant.
4bd8c614 243.B Do not use
b5cc2ffb 244.BR cuserid ().
47297adb 245.SH SEE ALSO
2a47cc96 246.BR logname (1),
fea681da 247.BR geteuid (2),
1bced40f
MK
248.BR getuid (2),
249.BR utmp (5)