libcr copy: Retarget build paths from ../libc to ../libcr and retarget
[dragonfly.git] / lib / libcr / sys / getlogin.2
1 .\" Copyright (c) 1989, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)getlogin.2  8.1 (Berkeley) 6/9/93
33 .\" $FreeBSD: src/lib/libc/sys/getlogin.2,v 1.14.2.6 2001/12/14 18:34:00 ru Exp $
34 .\" $DragonFly: src/lib/libcr/sys/Attic/getlogin.2,v 1.2 2003/06/17 04:26:47 dillon Exp $
35 .\"
36 .Dd June 9, 1993
37 .Dt GETLOGIN 2
38 .Os
39 .Sh NAME
40 .Nm getlogin ,
41 .Nm getlogin_r ,
42 .Nm setlogin
43 .Nd get/set login name
44 .Sh LIBRARY
45 .Lb libc
46 .Sh SYNOPSIS
47 .In unistd.h
48 .Ft char *
49 .Fn getlogin void
50 .In sys/param.h
51 .Ft int
52 .Fn getlogin_r "char *name" "int len"
53 .Ft int
54 .Fn setlogin "const char *name"
55 .Sh DESCRIPTION
56 The
57 .Fn getlogin
58 routine
59 returns the login name of the user associated with the current session,
60 as previously set by
61 .Fn setlogin .
62 The name is normally associated with a login shell
63 at the time a session is created,
64 and is inherited by all processes descended from the login shell.
65 (This is true even if some of those processes assume another user ID,
66 for example when
67 .Xr su 1
68 is used).
69 .Pp
70 .Fn getlogin_r
71 provides the same service as
72 .Fn getlogin
73 except the caller must provide the buffer
74 .Fa name
75 with length
76 .Fa len
77 bytes
78 to hold the result.  The buffer should be at least
79 .Dv MAXLOGNAME
80 bytes in length.
81 .Pp
82 .Fn Setlogin
83 sets the login name of the user associated with the current session to
84 .Fa name .
85 This call is restricted to the super-user, and
86 is normally used only when a new session is being created on behalf
87 of the named user
88 (for example, at login time, or when a remote shell is invoked).
89 .Pp
90 .Em NOTE :
91 There is only one login name per session.
92 .Pp
93 It is
94 .Em CRITICALLY
95 important to ensure that
96 .Fn setlogin
97 is only ever called after the process has taken adequate steps to ensure
98 that it is detached from its parent's session.
99 Making a
100 .Fn setsid
101 system call is the
102 .Em ONLY
103 way to do this.  The
104 .Fn daemon
105 library call calls
106 .Fn setsid
107 which is an ideal way of detaching from a controlling terminal and
108 forking into the background.
109 .Pp
110 In particular, doing a
111 .Fn ioctl ttyfd TIOCNOTTY ...\&
112 or
113 .Fn setpgrp ...\&
114 is
115 .Em NOT
116 sufficient.
117 .Pp
118 Once a parent process does a
119 .Fn setsid
120 call, it is acceptable for some child of that process to then do a
121 .Fn setlogin
122 even though it is not the session leader, but beware that ALL processes
123 in the session will change their login name at the same time, even the
124 parent.
125 .Pp
126 This is not the same as the traditional UNIX behavior of inheriting privilege.
127 .Pp
128 Since the
129 .Fn setlogin
130 system call is restricted to the super-user, it is assumed that (like
131 all other privileged programs) the programmer has taken adequate
132 precautions to prevent security violations.
133 .Sh RETURN VALUES
134 If a call to
135 .Fn getlogin
136 succeeds, it returns a pointer to a null-terminated string in a static buffer,
137 or
138 .Dv NULL
139 if the name has not been set.
140 .Fn getlogin_r
141 returns zero if successful, or the error number upon failure.
142 .Pp
143 .Rv -std setlogin
144 .Sh ERRORS
145 The following errors may be returned by these calls:
146 .Bl -tag -width Er
147 .It Bq Er EFAULT
148 The
149 .Fa name
150 parameter gave an
151 invalid address.
152 .It Bq Er EINVAL
153 The
154 .Fa name
155 parameter
156 pointed to a string that was too long.
157 Login names are limited to
158 .Dv MAXLOGNAME
159 (from
160 .Ao Pa sys/param.h Ac )
161 characters, currently 17 including null.
162 .It Bq Er EPERM
163 The caller tried to set the login name and was not the super-user.
164 .It Bq Er ERANGE
165 The size of the buffer is smaller than the result to be returned.
166 .El
167 .Sh SEE ALSO
168 .Xr setsid 2 ,
169 .Xr daemon 3
170 .Sh BUGS
171 In earlier versions of the system,
172 .Fn getlogin
173 failed unless the process was associated with a login terminal.
174 The current implementation (using
175 .Fn setlogin )
176 allows getlogin to succeed even when the process has no controlling terminal.
177 In earlier versions of the system, the value returned by
178 .Fn getlogin
179 could not be trusted without checking the user ID.
180 Portable programs should probably still make this check.
181 .Sh HISTORY
182 The
183 .Fn getlogin
184 function first appeared in
185 .Bx 4.4 .
186 The return value of
187 .Fn getlogin_r
188 was changed from earlier versions of
189 .Fx
190 to be conformant with
191 .St -p1003.1-96 .
192 .Sh STANDARDS
193 .Fn getlogin
194 and
195 .Fn getlogin_r
196 conform to
197 .St -p1003.1-96 .