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 libc_freeres_ptr (static char *ahostbuf
);
52 rexec_af(ahost
, rport
, name
, pass
, cmd
, fd2p
, af
)
55 const char *name
, *pass
, *cmd
;
59 struct sockaddr_storage sa2
, from
;
60 struct addrinfo hints
, *res0
;
61 const char *orig_name
= name
;
62 const char *orig_pass
= pass
;
67 char servbuff
[NI_MAXSERV
];
69 __snprintf(servbuff
, sizeof(servbuff
), "%d", ntohs(rport
));
70 servbuff
[sizeof(servbuff
) - 1] = '\0';
72 memset(&hints
, '\0', sizeof(hints
));
74 hints
.ai_socktype
= SOCK_STREAM
;
75 hints
.ai_flags
= AI_CANONNAME
;
76 gai
= getaddrinfo(*ahost
, servbuff
, &hints
, &res0
);
82 if (res0
->ai_canonname
){
84 ahostbuf
= strdup (res0
->ai_canonname
);
85 if (ahostbuf
== NULL
) {
86 perror ("rexec: strdup");
95 ruserpass(res0
->ai_canonname
, &name
, &pass
);
97 s
= __socket(res0
->ai_family
, res0
->ai_socktype
, 0);
99 perror("rexec: socket");
102 if (__connect(s
, res0
->ai_addr
, res0
->ai_addrlen
) < 0) {
103 if (errno
== ECONNREFUSED
&& timo
<= 16) {
109 perror(res0
->ai_canonname
);
113 (void) __write(s
, "", 1);
120 s2
= __socket(res0
->ai_family
, res0
->ai_socktype
, 0);
126 sa2len
= sizeof (sa2
);
127 if (__getsockname(s2
, (struct sockaddr
*)&sa2
, &sa2len
) < 0) {
128 perror("getsockname");
131 } else if (sa2len
!= SA_LEN((struct sockaddr
*)&sa2
)) {
137 if (!getnameinfo((struct sockaddr
*)&sa2
, sa2len
,
138 NULL
, 0, servbuff
, sizeof(servbuff
),
140 port
= atoi(servbuff
);
141 (void) sprintf(num
, "%u", port
);
142 (void) __write(s
, num
, strlen(num
)+1);
143 { socklen_t len
= sizeof (from
);
144 s3
= TEMP_FAILURE_RETRY (accept(s2
, (struct sockaddr
*)&from
,
156 struct iovec iov
[3] =
158 [0] = { .iov_base
= (void *) name
, .iov_len
= strlen (name
) + 1 },
159 /* should public key encypt the password here */
160 [1] = { .iov_base
= (void *) pass
, .iov_len
= strlen (pass
) + 1 },
161 [2] = { .iov_base
= (void *) cmd
, .iov_len
= strlen (cmd
) + 1 }
163 (void) TEMP_FAILURE_RETRY (__writev (s
, iov
, 3));
165 /* We don't need the memory allocated for the name and the password
166 in ruserpass anymore. */
167 if (name
!= orig_name
)
168 free ((char *) name
);
169 if (pass
!= orig_pass
)
170 free ((char *) pass
);
172 if (__read(s
, &c
, 1) != 1) {
177 while (__read(s
, &c
, 1) == 1) {
178 (void) __write(2, &c
, 1);
188 (void) __close(*fd2p
);
193 libc_hidden_def (rexec_af
)
196 rexec(ahost
, rport
, name
, pass
, cmd
, fd2p
)
199 const char *name
, *pass
, *cmd
;
202 return rexec_af(ahost
, rport
, name
, pass
, cmd
, fd2p
, AF_INET
);