]> git.ipfire.org Git - thirdparty/glibc.git/blame - inet/rexec.c
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[thirdparty/glibc.git] / inet / rexec.c
CommitLineData
28f540f4
RM
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
28f540f4
RM
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.
16 *
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
27 * SUCH DAMAGE.
28 */
29
30#if defined(LIBC_SCCS) && !defined(lint)
31static char sccsid[] = "@(#)rexec.c 8.1 (Berkeley) 6/4/93";
32#endif /* LIBC_SCCS and not lint */
33
34#include <sys/types.h>
35#include <sys/socket.h>
36
37#include <netinet/in.h>
38
e4cf5070 39#include <alloca.h>
28f540f4
RM
40#include <stdio.h>
41#include <netdb.h>
42#include <errno.h>
3846463e 43#include <stdlib.h>
84384f5b
UD
44#include <string.h>
45#include <unistd.h>
039c1b75 46#include <sys/uio.h>
28f540f4 47
28f540f4 48int rexecoptions;
c877418f 49libc_freeres_ptr (static char *ahostbuf);
28f540f4 50
84384f5b 51int
2d29aba9 52rexec_af(ahost, rport, name, pass, cmd, fd2p, af)
28f540f4
RM
53 char **ahost;
54 int rport;
e7fd8a39 55 const char *name, *pass, *cmd;
28f540f4 56 int *fd2p;
2d29aba9 57 sa_family_t af;
28f540f4 58{
2d29aba9
UD
59 struct sockaddr_storage sa2, from;
60 struct addrinfo hints, *res0;
8a3c8443
UD
61 const char *orig_name = name;
62 const char *orig_pass = pass;
3846463e 63 u_short port = 0;
28f540f4
RM
64 int s, timo = 1, s3;
65 char c;
3846463e 66 int gai;
2d29aba9
UD
67 char servbuff[NI_MAXSERV];
68
0bb258e3 69 __snprintf(servbuff, sizeof(servbuff), "%d", ntohs(rport));
2d29aba9 70 servbuff[sizeof(servbuff) - 1] = '\0';
e4cf5070 71
d372f89a 72 memset(&hints, '\0', sizeof(hints));
2d29aba9
UD
73 hints.ai_family = af;
74 hints.ai_socktype = SOCK_STREAM;
75 hints.ai_flags = AI_CANONNAME;
3846463e
UD
76 gai = getaddrinfo(*ahost, servbuff, &hints, &res0);
77 if (gai){
2d29aba9
UD
78 /* XXX: set errno? */
79 return -1;
80 }
28f540f4 81
2d29aba9 82 if (res0->ai_canonname){
c877418f
RM
83 free (ahostbuf);
84 ahostbuf = strdup (res0->ai_canonname);
85 if (ahostbuf == NULL) {
86 perror ("rexec: strdup");
87 return (-1);
88 }
2d29aba9 89 *ahost = ahostbuf;
a334319f 90 } else
2d29aba9 91 *ahost = NULL;
2d29aba9 92 ruserpass(res0->ai_canonname, &name, &pass);
28f540f4 93retry:
2d29aba9 94 s = __socket(res0->ai_family, res0->ai_socktype, 0);
28f540f4
RM
95 if (s < 0) {
96 perror("rexec: socket");
97 return (-1);
98 }
2d29aba9 99 if (__connect(s, res0->ai_addr, res0->ai_addrlen) < 0) {
28f540f4 100 if (errno == ECONNREFUSED && timo <= 16) {
50304ef0
UD
101 (void) __close(s);
102 __sleep(timo);
28f540f4
RM
103 timo *= 2;
104 goto retry;
105 }
2d29aba9 106 perror(res0->ai_canonname);
28f540f4
RM
107 return (-1);
108 }
109 if (fd2p == 0) {
50304ef0 110 (void) __write(s, "", 1);
28f540f4
RM
111 port = 0;
112 } else {
d68171ed 113 char num[32];
a334319f 114 int s2, sa2len;
d68171ed 115
2d29aba9 116 s2 = __socket(res0->ai_family, res0->ai_socktype, 0);
28f540f4 117 if (s2 < 0) {
50304ef0 118 (void) __close(s);
28f540f4
RM
119 return (-1);
120 }
b2bffca2 121 __listen(s2, 1);
2d29aba9 122 sa2len = sizeof (sa2);
b2bffca2 123 if (__getsockname(s2, (struct sockaddr *)&sa2, &sa2len) < 0) {
28f540f4 124 perror("getsockname");
50304ef0 125 (void) __close(s2);
28f540f4 126 goto bad;
eacde9d0
UD
127 } else if (sa2len != SA_LEN((struct sockaddr *)&sa2)) {
128 __set_errno(EINVAL);
129 (void) __close(s2);
130 goto bad;
28f540f4 131 }
2d29aba9
UD
132 port = 0;
133 if (!getnameinfo((struct sockaddr *)&sa2, sa2len,
134 NULL, 0, servbuff, sizeof(servbuff),
135 NI_NUMERICSERV))
136 port = atoi(servbuff);
28f540f4 137 (void) sprintf(num, "%u", port);
50304ef0 138 (void) __write(s, num, strlen(num)+1);
a334319f 139 { int len = sizeof (from);
039c1b75
UD
140 s3 = TEMP_FAILURE_RETRY (accept(s2, (struct sockaddr *)&from,
141 &len));
50304ef0 142 __close(s2);
28f540f4
RM
143 if (s3 < 0) {
144 perror("accept");
145 port = 0;
146 goto bad;
147 }
148 }
149 *fd2p = s3;
150 }
039c1b75
UD
151
152 struct iovec iov[3] =
153 {
154 [0] = { .iov_base = (void *) name, .iov_len = strlen (name) + 1 },
155 /* should public key encypt the password here */
156 [1] = { .iov_base = (void *) pass, .iov_len = strlen (pass) + 1 },
157 [2] = { .iov_base = (void *) cmd, .iov_len = strlen (cmd) + 1 }
158 };
159 (void) TEMP_FAILURE_RETRY (__writev (s, iov, 3));
8a3c8443
UD
160
161 /* We don't need the memory allocated for the name and the password
162 in ruserpass anymore. */
163 if (name != orig_name)
3846463e 164 free ((char *) name);
8a3c8443 165 if (pass != orig_pass)
3846463e 166 free ((char *) pass);
8a3c8443 167
50304ef0 168 if (__read(s, &c, 1) != 1) {
28f540f4
RM
169 perror(*ahost);
170 goto bad;
171 }
172 if (c != 0) {
50304ef0
UD
173 while (__read(s, &c, 1) == 1) {
174 (void) __write(2, &c, 1);
28f540f4
RM
175 if (c == '\n')
176 break;
177 }
178 goto bad;
179 }
2d29aba9 180 freeaddrinfo(res0);
28f540f4
RM
181 return (s);
182bad:
183 if (port)
50304ef0
UD
184 (void) __close(*fd2p);
185 (void) __close(s);
2d29aba9 186 freeaddrinfo(res0);
28f540f4
RM
187 return (-1);
188}
cb09a2cd 189libc_hidden_def (rexec_af)
2d29aba9
UD
190
191int
192rexec(ahost, rport, name, pass, cmd, fd2p)
193 char **ahost;
194 int rport;
195 const char *name, *pass, *cmd;
196 int *fd2p;
197{
198 return rexec_af(ahost, rport, name, pass, cmd, fd2p, AF_INET);
199}