]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/getpass.3
adjtimex.2, futex.2, mremap.2, seccomp.2, getnameinfo.3, random.3, console_codes...
[thirdparty/man-pages.git] / man3 / getpass.3
CommitLineData
fea681da
MK
1.\" Copyright (c) 2000 Andries Brouwer (aeb@cwi.nl)
2.\"
1dd72f9c 3.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
fea681da
MK
4.\" This is free documentation; you can redistribute it and/or
5.\" modify it under the terms of the GNU General Public License as
6.\" published by the Free Software Foundation; either version 2 of
7.\" the License, or (at your option) any later version.
8.\"
9.\" The GNU General Public License's references to "object code"
10.\" and "executables" are to be interpreted as the output of any
11.\" document formatting or typesetting system, including
12.\" intermediate and printed output.
13.\"
14.\" This manual is distributed in the hope that it will be useful,
15.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
16.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17.\" GNU General Public License for more details.
18.\"
19.\" You should have received a copy of the GNU General Public
c715f741
MK
20.\" License along with this manual; if not, see
21.\" <http://www.gnu.org/licenses/>.
6a8d8745 22.\" %%%LICENSE_END
fea681da 23.\"
97986708 24.TH GETPASS 3 2016-03-15 "Linux" "Linux Programmer's Manual"
fea681da
MK
25.SH NAME
26getpass \- get a password
27.SH SYNOPSIS
28.B #include <unistd.h>
68e4db0a 29.PP
b73ce084 30.BI "char *getpass(const char *" prompt );
68e4db0a 31.PP
2df50e3d
MK
32.in -4n
33Feature Test Macro Requirements for glibc (see
34.BR feature_test_macros (7)):
35.in
68e4db0a 36.PP
2df50e3d
MK
37.BR getpass ():
38.ad l
39.RS 4
40.PD 0
41.TP 4
42Since glibc 2.2.2:
43.nf
6e0869f7
MK
44_XOPEN_SOURCE && ! (_POSIX_C_SOURCE\ >=\ 200112L)
45 || /* Glibc since 2.19: */ _DEFAULT_SOURCE
46 || /* Glibc versions <= 2.19: */ _BSD_SOURCE
2df50e3d 47.fi
f1a1039a
ER
48.TP 4
49Before glibc 2.2.2:
50none
2df50e3d
MK
51.PD
52.RE
53.ad b
fea681da 54.SH DESCRIPTION
c13182ef
MK
55This function is obsolete.
56Do not use it.
63bed6ae
MK
57If you want to read input without terminal echoing enabled,
58see the description of the
59.I ECHO
60flag in
61.BR termios (3).
fea681da
MK
62.PP
63The
64.BR getpass ()
65function opens
66.I /dev/tty
67(the controlling terminal of the process), outputs the string
68.IR prompt ,
69turns off echoing, reads one line (the "password"),
70restores the terminal state and closes
71.I /dev/tty
72again.
47297adb 73.SH RETURN VALUE
fea681da 74The function
e511ffb6 75.BR getpass ()
cd4995f5 76returns a pointer to a static buffer containing (the first
2f0af33b
MK
77.B PASS_MAX
78bytes of) the password without the trailing
f81fb444 79newline, terminated by a null byte (\(aq\\0\(aq).
fea681da
MK
80This buffer may be overwritten by a following call.
81On error, the terminal state is restored,
82.I errno
83is set appropriately, and NULL is returned.
84.SH ERRORS
85The function may fail if
86.TP
87.B ENXIO
c13182ef 88The process does not have a controlling terminal.
2b2581ee
MK
89.SH FILES
90.I /dev/tty
91.\" .SH HISTORY
92.\" A
93.\" .BR getpass ()
94.\" function appeared in Version 7 AT&T UNIX.
3f970b11 95.SH ATTRIBUTES
34ed6a7e
MK
96For an explanation of the terms used in this section, see
97.BR attributes (7).
98.TS
99allbox;
100lb lb lb
101l l l.
102Interface Attribute Value
103T{
3f970b11 104.BR getpass ()
1143466a 105T} Thread safety MT-Unsafe term
34ed6a7e 106.TE
47297adb 107.SH CONFORMING TO
2b2581ee
MK
108Present in SUSv2, but marked LEGACY.
109Removed in POSIX.1-2001.
fea681da 110.SH NOTES
af3253ca
MK
111.\" For libc4 and libc5, the prompt is not written to
112.\" .I /dev/tty
113.\" but to
114.\" .IR stderr .
115.\" Moreover, if
116.\" .I /dev/tty
117.\" cannot be opened, the password is read from
118.\" .IR stdin .
119.\" The static buffer has length 128 so that only the first 127
120.\" bytes of the password are returned.
121.\" While reading the password, signal generation
122.\" .RB ( SIGINT ,
123.\" .BR SIGQUIT ,
124.\" .BR SIGSTOP ,
125.\" .BR SIGTSTP )
126.\" is disabled and the corresponding characters
127.\" (usually control-C, control-\e, control-Z and control-Y)
128.\" are transmitted as part of the password.
129.\" Since libc 5.4.19 also line editing is disabled, so that also
130.\" backspace and the like will be seen as part of the password.
fea681da 131.PP
af3253ca 132In the GNU C library implementation, if
fea681da
MK
133.I /dev/tty
134cannot be opened, the prompt is written to
135.I stderr
136and the password is read from
137.IR stdin .
138There is no limit on the length of the password.
139Line editing is not disabled.
140.PP
fb307ec7 141According to SUSv2, the value of
2f0af33b
MK
142.B PASS_MAX
143must be defined in
fea681da
MK
144.I <limits.h>
145in case it is smaller than 8, and can in any case be obtained using
146.IR sysconf(_SC_PASS_MAX) .
2f0af33b
MK
147However, POSIX.2 withdraws the constants
148.B PASS_MAX
149and
150.BR _SC_PASS_MAX ,
151and the function
f87925c6 152.BR getpass ().
a6cc92e3
MK
153.\" Libc4 and libc5 have never supported
154.\" .B PASS_MAX
155.\" or
156.\" .BR _SC_PASS_MAX .
157The glibc version accepts
0daa9e92 158.B _SC_PASS_MAX
66ee0c7e 159and returns
2f0af33b
MK
160.B BUFSIZ
161(e.g., 8192).
fea681da
MK
162.SH BUGS
163The calling process should zero the password as soon as possible to avoid
164leaving the cleartext password visible in the process's address space.
47297adb 165.SH SEE ALSO
e37e3282 166.BR crypt (3)