4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 1989 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
29 #include <sys/types.h>
30 #include <sys/socket.h>
32 #include <netinet/in.h>
53 struct sockaddr_in sin
, sin2
, from
;
58 hp
= gethostbyname(*ahost
);
60 fprintf(stderr
, "%s: unknown host\n", *ahost
);
64 _ruserpass(hp
->h_name
, &name
, &pass
);
66 s
= socket(AF_INET
, SOCK_STREAM
, 0);
68 perror("rexec: socket");
71 sin
.sin_family
= hp
->h_addrtype
;
73 bcopy(hp
->h_addr
, (caddr_t
)&sin
.sin_addr
, hp
->h_length
);
74 if (connect(s
, &sin
, sizeof(sin
)) < 0) {
75 if (errno
== ECONNREFUSED
&& timo
<= 16) {
86 (void) write(s
, "", 1);
92 s2
= socket(AF_INET
, SOCK_STREAM
, 0);
98 sin2len
= sizeof (sin2
);
99 if (getsockname(s2
, (char *)&sin2
, &sin2len
) < 0 ||
100 sin2len
!= sizeof (sin2
)) {
101 perror("getsockname");
105 port
= ntohs((u_short
)sin2
.sin_port
);
106 (void) sprintf(num
, "%u", port
);
107 (void) write(s
, num
, strlen(num
)+1);
108 { int len
= sizeof (from
);
109 s3
= accept(s2
, &from
, &len
);
119 (void) write(s
, name
, strlen(name
) + 1);
120 /* should public key encypt the password here */
121 (void) write(s
, pass
, strlen(pass
) + 1);
122 (void) write(s
, cmd
, strlen(cmd
) + 1);
123 if (read(s
, &c
, 1) != 1) {
128 while (read(s
, &c
, 1) == 1) {
129 (void) write(2, &c
, 1);