1 .\" Copyright (c) 1983, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
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.
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
32 .\" @(#)rexecd.8 8.3 (Berkeley) 6/1/94
39 .Nd remote execution server
46 routine. The server provides remote execution facilities
47 with authentication based on user names and
51 listens for service requests at the port indicated in
52 the ``exec'' service specification; see
54 When a service request is received the following protocol
58 The server reads characters from the socket up
61 byte. The resultant string is
66 If the number received in step 1 is non-zero,
67 it is interpreted as the port number of a secondary
68 stream to be used for the
70 A second connection is then created to the specified
71 port on the client's machine.
73 A NUL terminated user name of at most 16 characters
74 is retrieved on the initial socket.
76 A NUL terminated, unencrypted password of at most
77 16 characters is retrieved on the initial socket.
79 A NUL terminated command to be passed to a
80 shell is retrieved on the initial socket. The length of
81 the command is limited by the upper bound on the size of
82 the system's argument list.
85 then validates the user as is done at login time
86 and, if the authentication was successful, changes
87 to the user's home directory, and establishes the user
88 and group protections of the user.
89 If any of these steps fail the connection is
90 aborted with a diagnostic message returned.
92 A NUL byte is returned on the initial socket
93 and the command line is passed to the normal login
94 shell of the user. The
95 shell inherits the network connections established
100 Except for the last one listed below,
101 all diagnostic messages are returned on the initial socket,
102 after which any network connections are closed.
103 An error is indicated by a leading byte with a value of
104 1 (0 is returned in step 7 above upon successful completion
105 of all the steps prior to the command execution).
108 .It Sy username too long
110 longer than 16 characters.
111 .It Sy password too long
112 The password is longer than 16 characters.
113 .It Sy command too long
114 The command line passed exceeds the size of the argument
115 list (as configured into the system).
116 .It Sy Login incorrect.
117 No password file entry for the user name existed.
118 .It Sy Password incorrect.
119 The wrong password was supplied.
121 .It Sy \&No remote directory.
124 command to the home directory failed.
128 by the server failed.
129 .It Sy <shellname>: ...
130 The user's login shell could not be started.
131 This message is returned
132 on the connection associated with the
134 and is not preceded by a flag byte.
139 Indicating ``Login incorrect'' as opposed to ``Password incorrect''
140 is a security breach which allows people to probe a system for users
143 A facility to allow all data and password exchanges to be encrypted should be