2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static char sccsid
[] = "@(#)rexec.c 8.1 (Berkeley) 6/4/93";
32 #endif /* LIBC_SCCS and not lint */
34 #include <sys/types.h>
35 #include <sys/socket.h>
37 #include <netinet/in.h>
49 rexec(ahost
, rport
, name
, pass
, cmd
, fd2p
)
52 const char *name
, *pass
, *cmd
;
55 struct sockaddr_in sin
, sin2
, from
;
56 struct hostent hostbuf
, *hp
;
57 const char *orig_name
= name
;
58 const char *orig_pass
= pass
;
67 hsttmpbuf
= __alloca (hstbuflen
);
68 while (__gethostbyname_r (*ahost
, &hostbuf
, hsttmpbuf
, hstbuflen
,
71 if (herr
!= NETDB_INTERNAL
|| errno
!= ERANGE
)
79 /* Enlarge the buffer. */
81 hsttmpbuf
= __alloca (hstbuflen
);
85 ruserpass(hp
->h_name
, &name
, &pass
);
87 s
= __socket(AF_INET
, SOCK_STREAM
, 0);
89 perror("rexec: socket");
92 sin
.sin_family
= hp
->h_addrtype
;
94 bcopy(hp
->h_addr
, (caddr_t
)&sin
.sin_addr
, hp
->h_length
);
95 if (__connect(s
, (struct sockaddr
*)&sin
, sizeof(sin
)) < 0) {
96 if (errno
== ECONNREFUSED
&& timo
<= 16) {
106 (void) __write(s
, "", 1);
112 s2
= __socket(AF_INET
, SOCK_STREAM
, 0);
118 sin2len
= sizeof (sin2
);
119 if (getsockname(s2
, (struct sockaddr
*)&sin2
, &sin2len
) < 0 ||
120 sin2len
!= sizeof (sin2
)) {
121 perror("getsockname");
125 port
= ntohs((u_short
)sin2
.sin_port
);
126 (void) sprintf(num
, "%u", port
);
127 (void) __write(s
, num
, strlen(num
)+1);
128 { int len
= sizeof (from
);
129 s3
= accept(s2
, (struct sockaddr
*)&from
, &len
);
139 (void) __write(s
, name
, strlen(name
) + 1);
140 /* should public key encypt the password here */
141 (void) __write(s
, pass
, strlen(pass
) + 1);
142 (void) __write(s
, cmd
, strlen(cmd
) + 1);
144 /* We don't need the memory allocated for the name and the password
145 in ruserpass anymore. */
146 if (name
!= orig_name
)
148 if (pass
!= orig_pass
)
151 if (__read(s
, &c
, 1) != 1) {
156 while (__read(s
, &c
, 1) == 1) {
157 (void) __write(2, &c
, 1);
166 (void) __close(*fd2p
);