ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libptytty/doc/libptytty.3.pod
Revision: 1.15
Committed: Wed Jun 13 17:30:54 2007 UTC (19 years, 3 months ago) by ayin
Branch: MAIN
CVS Tags: rel-1_2
Changes since 1.14: +6 -6 lines
Log Message:
Remove trailing whitespace.

File Contents

# User Rev Content
1 root 1.1 =head1 NAME
2    
3 root 1.2 libptytty - OS independent and secure pty/tty and utmp/wtmp/lastlog handling
4 root 1.1
5     =head1 SYNOPSIS
6    
7 root 1.11 cc ... -lptytty
8 root 1.9
9     #include <libptytty.h>
10    
11    
12     // C++
13     ptytty *pty = ptytty::create ();
14    
15     if (!pty->get ())
16     // error allocating pty
17    
18     if (we want utmp)
19     pty->login (process_pid, 0, "remote.host");
20     else if (we want utmp AND wtmp/lastlog)
21     pty->login (process_pid, 1, "remote.host");
22    
23     // we are done with it
24     delete pty;
25    
26    
27     // C
28     PTYTTY pty = ptytty_create ();
29    
30     if (!ptytty_get (pty))
31     // error allocating pty
32    
33     if (we want utmp)
34     ptytty_login (pty, process_pid, 0, "remote.host");
35     else if (we want utmp AND wtmp/lastlog)
36     ptytty_login (pty, process_pid, 1, "remote.host");
37    
38     // we are done with it
39     ptytty_delete (pty);
40    
41 root 1.12 See also the F<eg/> directory, which currently contains the F<c-sample.c>
42     file that spawns a loginshell from C using libptytty.
43 root 1.1
44     =head1 DESCRIPTION
45    
46 root 1.9 Libptytty is a small library that offers pseudo-tty management in an
47     OS-independent way. It was created out of frustration over the many
48     differences of pty/tty handling in different operating systems for the use
49     inside C<rxvt-unicode>.
50    
51     In addition to offering mere pty/tty management, it also offers session
52     database support (utmp and optional wtmp/lastlog updates for login
53     shells).
54    
55     It also supports fork'ing after startup and dropping privileges in the
56     calling process, so in case the calling process gets compromised by the
57     user starting the program there is less to gain, as only the helper
58     process runs with privileges (e.g. setuid/setgid), which reduces the area
59     of attack immensely.
60    
61     Libptytty is written in C++, but it also offers a C-only API.
62 root 1.6
63 root 1.4 =head1 SECURITY CONSIDERATIONS
64 root 1.3
65 ayin 1.5 I<< B<It is of paramount importance that you at least read the following
66 root 1.4 paragraph!> >>
67    
68     If you are a typical terminal-like program that just wants one or more
69 root 1.8 ptys, you should call the C<ptytty::init ()> method (C: C<ptytty_init ()>
70 root 1.7 function) as the very first thing in your program:
71 root 1.4
72     int main (int argc, char *argv[])
73     {
74     // do nothing here
75     ptytty::init ();
76 root 1.7 // in C: ptytty_init ();
77 root 1.4
78     // initialise, parse arguments, etc.
79     }
80    
81     This checks wether the program runs setuid or setgid. If yes then it will
82     fork a helper process and drop privileges.
83    
84 root 1.6 Some programs need finer control over if and when this helper process
85     is started, and if and how to drop privileges. For those programs, the
86 root 1.14 methods C<ptytty::use_helper> and C<ptytty::drop_privileges> (and possibly
87     C<ptytty::sanitise_stdfd>) are more useful.
88 root 1.6
89 root 1.7 =head1 C++ INTERFACE: THE ptytty CLASS
90 root 1.6
91     =head2 STATIC METHODS
92    
93     =over 4
94    
95     =item ptytty::init ()
96    
97 root 1.14 The default way to initialise libptytty. Must be called immediately as
98 root 1.6 the first thing in the C<main> function, or earlier e.g. during static
99     construction time. The earlier, the better.
100    
101 root 1.14 This method calls C<sanitise_stdf> and then checks wether the program runs
102     with setuid/setgid permissions and, if yes, spawns a helper process for
103     pty/tty management. It then drops the privileges completely, so the actual
104     program runs without setuid/setgid privileges.
105 root 1.6
106     =item ptytty::use_helper ()
107    
108 root 1.7 Tries to start a helper process that retains privileges even when the
109     calling process does not. This is usually called from C<ptytty::init> when
110     it detects that the program is running setuid or setgid, but can be called
111     manually if it is inconvinient to drop privileges at startup, or when
112     you are not running setuid/setgid but want to drop privileges (e.g. when
113     running as a root-started daemon).
114    
115     This method will try not to start more than one helper process. The same
116 root 1.13 helper process can usually be used both from the process starting it and
117     all its fork'ed (not exec'ed) children.
118 root 1.6
119     =item ptytty::drop_privileges ()
120    
121     Drops privileges completely, i.e. sets real, effective and saved user id
122 root 1.13 to the real user id. Also aborts if this cannot be achieved. Useful to
123 root 1.6 make sure that the process doesn't run with special privileges.
124    
125 root 1.14 =item ptytty::sanitise_stdfd ()
126    
127     Checks wether file descriptors 0, 1 and 2 (stdin, stdout and stderr) are
128     valid (open) and, if not, connects them to F</dev/tty> or F</dev/null>
129     if possible (and aborts otherwise). This is necessary because libptytty
130     might want to output error messages to those descriptors, which might be
131     connected to something unsuitable (this can be a security issue).
132    
133 root 1.6 =item bool success = ptytty::send_fd (int socket, int fd)
134    
135     Utility method to send a file descriptor over a unix domain
136     socket. Returns true if successful, false otherwise. This method is only
137     exposed for your convinience and is not required for normal operation.
138    
139     =item int fd = ptytty::recv_fd (int socket)
140    
141     Utility method to receive a file descriptor over a unix domain
142     socket. Returns the fd if sucecssful and C<-1> otherwise. This method
143     is only exposed for your convinience and is not required for normal
144     operation.
145 root 1.4
146 root 1.6 =item ptytty *pty = ptytty::create ()
147 root 1.3
148 root 1.6 Creates new ptytty object. Creation does not yet do anything besides
149     allocating the structure.
150    
151     A static method is used because the actual ptytty implementation can
152     differ at runtime, so you need a dynamic object creation facility.
153    
154     =back
155    
156 root 1.7
157 root 1.6 =head2 DYNAMIC/SESSION-RELATED DATA MEMBERS AND METHODS
158 root 1.1
159     =over 4
160    
161 root 1.6 =item int pty_fd = pty->pty
162    
163     =item int tty_fd = pty->tty
164    
165     These members contain the pty and tty file descriptors, respectively. They
166     initially contain C<-1> until a successful to C<ptytty::get>.
167    
168     =item bool success = pty->get ()
169    
170     Tries to find, allocate and initialise a new pty/tty pair. Returns C<true>
171     when successful.
172    
173     =item pty->login (int cmd_pid, bool login_shell, const char *hostname)
174    
175     Creates an entry in the systems session database(s) (utmp, wtmp, lastlog).
176     C<cmd_pid> must be the pid of the process representing the session
177     (such as the login shell), C<login_shell> defines wether the session is
178     associated with a login, which influences wether wtmp and lastlog entries
179     are created, and C<hostname> should identify the "hostname" the user logs
180     in from, which often is the value of the C<DISPLAY> variable or tty line
181     in case of local logins.
182    
183     Calling this method is optional. A session starts at the time of the login
184     call and extends until the ptytty object is destroyed.
185    
186     =item pty->close_tty ()
187    
188     Closes the tty. Useful after forking in the parent/pty process.
189    
190     =item bool success = pty->make_controlling_tty ()
191    
192     Tries to make the pty/tty pair the controlling terminal of the current
193     process. Useful after forking in the child/tty process.
194    
195     =item pty->set_utf8_mode (bool on)
196 root 1.1
197 root 1.13 On systems supporting special UTF-8 line disciplines (e.g. Linux), this
198     tries to enable this discipline for the given pty. Can be called at any
199     time to change the mode.
200 root 1.1
201     =back
202    
203 root 1.7
204     =head1 C INTERFACE: THE ptytty FAMILY OF FUNCTIONS
205    
206     =over 4
207    
208     =item ptytty_init ()
209    
210     See C<ptytty::init ()>.
211 ayin 1.15
212 root 1.7 =item PTYTTY ptytty_create ()
213    
214     Creates a new opaque PTYTTY object and returns it. Do not try to access it
215 root 1.13 in any way except by testing it for truthness (e.g. C<if (pty) ....>). See
216 root 1.7 C<ptytty::create ()>.
217    
218     =item int ptytty_pty (PTYTTY ptytty)
219    
220     Return the pty file descriptor. See C<< pty->pty >>.
221 ayin 1.15
222 root 1.7 =item int ptytty_tty (PTYTTY ptytty)
223    
224     Return the tty file descriptor. See C<< pty->tty >>.
225 ayin 1.15
226 root 1.7 =item void ptytty_delete (PTYTTY ptytty)
227    
228     Destroys the PTYTTY object, freeing the pty/tty pair and cleaning up the
229     utmp/wtmp/lastlog databases, if initialised/used. Same as C<delete pty> in
230     C++.
231    
232     =item int ptytty_get (PTYTTY ptytty)
233    
234     See C<< pty->get >>, returns 0 in case of an error, non-zero otherwise.
235    
236     =item void ptytty_login (PTYTTY ptytty, int cmd_pid, bool login_shell, const char *hostname)
237    
238     See C<< pty->login >>.
239    
240     =item void ptytty_close_tty (PTYTTY ptytty)
241    
242     See C<< pty->close_tty >>.
243 ayin 1.15
244 root 1.7 =item int ptytty_make_controlling_tty (PTYTTY ptytty)
245    
246     See C<< pty->make_controlling_tty >>.
247 ayin 1.15
248 root 1.7 =item void ptytty_set_utf8_mode (PTYTTY ptytty, int on)
249    
250     See C<< pty->set_utf8_mode >>.
251    
252     =item void ptytty_drop_privileges ()
253    
254     See C<< ptytty::drop_privileges >>.
255 ayin 1.15
256 root 1.7 =item void ptytty_use_helper ()
257    
258     See C<< ptytty::use_helper >>.
259    
260     =back
261    
262    
263 root 1.1 =head1 BUGS
264    
265     You kiddin'?
266    
267     =head1 AUTHORS
268    
269     Emanuele Giaquinta L<< <e.giaquinta@glauco.it> >>, Marc Alexander Lehmann
270     L<< <rxvt-unicode@schmorp.de> >>.