Merge from vendor branch OPENSSH:
[dragonfly.git] / lib / libc / net / rcmdsh.3
1 .\"     $OpenBSD: rcmdsh.3,v 1.6 1999/07/05 04:41:00 aaron Exp $
2 .\"
3 .\" Copyright (c) 1983, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\"    must display the following acknowledgement:
16 .\"     This product includes software developed by the University of
17 .\"     California, Berkeley and its contributors.
18 .\" 4. Neither the name of the University nor the names of its contributors
19 .\"    may be used to endorse or promote products derived from this software
20 .\"    without specific prior written permission.
21 .\"
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" SUCH DAMAGE.
33 .\"
34 .\" $FreeBSD: src/lib/libc/net/rcmdsh.3,v 1.2.2.2 2002/06/06 10:53:29 sheldonh Exp $
35 .\" $DragonFly: src/lib/libc/net/rcmdsh.3,v 1.4 2007/08/18 20:48:47 swildner Exp $
36 .\"
37 .Dd September 1, 1996
38 .Dt RCMDSH 3
39 .Os
40 .Sh NAME
41 .Nm rcmdsh
42 .Nd return a stream to a remote command without superuser
43 .Sh LIBRARY
44 .Lb libc
45 .Sh SYNOPSIS
46 .In unistd.h
47 .Ft int
48 .Fo rcmdsh
49 .Fa "char **ahost"
50 .Fa "int inport"
51 .Fa "const char *locuser"
52 .Fa "const char *remuser"
53 .Fa "const char *cmd"
54 .Fa "const char *rshprog"
55 .Fc
56 .Sh DESCRIPTION
57 The
58 .Fn rcmdsh
59 function
60 is used by normal users to execute a command on
61 a remote machine using an authentication scheme based
62 on reserved port numbers using
63 .Xr rshd 8
64 or the value of
65 .Fa rshprog
66 (if
67 .No non- Ns Dv NULL ) .
68 .Pp
69 The
70 .Fn rcmdsh
71 function
72 looks up the host
73 .Fa *ahost
74 using
75 .Xr gethostbyname 3 ,
76 returning \-1 if the host does not exist.
77 Otherwise
78 .Fa *ahost
79 is set to the standard name of the host
80 and a connection is established to a server
81 residing at the well-known Internet port
82 .Dq Li shell/tcp
83 (or whatever port is used by
84 .Fa rshprog ) .
85 The parameter
86 .Fa inport
87 is ignored; it is only included to provide an interface similar to
88 .Xr rcmd 3 .
89 .Pp
90 If the connection succeeds,
91 a socket in the
92 .Ux
93 domain of type
94 .Dv SOCK_STREAM
95 is returned to the caller, and given to the remote
96 command as stdin, stdout, and stderr.
97 .Sh RETURN VALUES
98 The
99 .Fn rcmdsh
100 function
101 returns a valid socket descriptor on success.
102 Otherwise, \-1 is returned
103 and a diagnostic message is printed on the standard error.
104 .Sh SEE ALSO
105 .Xr rsh 1 ,
106 .Xr socketpair 2 ,
107 .Xr rcmd 3 ,
108 .Xr rshd 8
109 .Sh HISTORY
110 The
111 .Fn rcmdsh
112 function first appeared in
113 .Ox 2.0 ,
114 and made its way into
115 .Fx 4.6 .
116 .Sh BUGS
117 If
118 .Xr rsh 1
119 encounters an error, a file descriptor is still returned instead of \-1.