]> sourceware.org Git - glibc.git/blob - inet/rexec.c
Update.
[glibc.git] / inet / rexec.c
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.
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)
31 static 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
39 #include <alloca.h>
40 #include <stdio.h>
41 #include <netdb.h>
42 #include <errno.h>
43 #include <string.h>
44 #include <unistd.h>
45
46 int rexecoptions;
47
48 int
49 rexec(ahost, rport, name, pass, cmd, fd2p)
50 char **ahost;
51 int rport;
52 const char *name, *pass, *cmd;
53 int *fd2p;
54 {
55 struct sockaddr_in sin, sin2, from;
56 struct hostent hostbuf, *hp;
57 size_t hstbuflen;
58 char *hsttmpbuf;
59 u_short port;
60 int s, timo = 1, s3;
61 char c;
62 int herr;
63
64 hstbuflen = 1024;
65 hsttmpbuf = __alloca (hstbuflen);
66 while (__gethostbyname_r (*ahost, &hostbuf, hsttmpbuf, hstbuflen,
67 &hp, &herr) != 0
68 || hp == NULL)
69 if (herr != NETDB_INTERNAL || errno != ERANGE)
70 {
71 __set_h_errno (herr);
72 herror(*ahost);
73 return -1;
74 }
75 else
76 {
77 /* Enlarge the buffer. */
78 hstbuflen *= 2;
79 hsttmpbuf = __alloca (hstbuflen);
80 }
81
82 *ahost = hp->h_name;
83 ruserpass(hp->h_name, &name, &pass);
84 retry:
85 s = __socket(AF_INET, SOCK_STREAM, 0);
86 if (s < 0) {
87 perror("rexec: socket");
88 return (-1);
89 }
90 sin.sin_family = hp->h_addrtype;
91 sin.sin_port = rport;
92 bcopy(hp->h_addr, (caddr_t)&sin.sin_addr, hp->h_length);
93 if (__connect(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
94 if (errno == ECONNREFUSED && timo <= 16) {
95 (void) __close(s);
96 __sleep(timo);
97 timo *= 2;
98 goto retry;
99 }
100 perror(hp->h_name);
101 return (-1);
102 }
103 if (fd2p == 0) {
104 (void) __write(s, "", 1);
105 port = 0;
106 } else {
107 char num[32];
108 int s2, sin2len;
109
110 s2 = __socket(AF_INET, SOCK_STREAM, 0);
111 if (s2 < 0) {
112 (void) __close(s);
113 return (-1);
114 }
115 listen(s2, 1);
116 sin2len = sizeof (sin2);
117 if (getsockname(s2, (struct sockaddr *)&sin2, &sin2len) < 0 ||
118 sin2len != sizeof (sin2)) {
119 perror("getsockname");
120 (void) __close(s2);
121 goto bad;
122 }
123 port = ntohs((u_short)sin2.sin_port);
124 (void) sprintf(num, "%u", port);
125 (void) __write(s, num, strlen(num)+1);
126 { int len = sizeof (from);
127 s3 = accept(s2, (struct sockaddr *)&from, &len);
128 __close(s2);
129 if (s3 < 0) {
130 perror("accept");
131 port = 0;
132 goto bad;
133 }
134 }
135 *fd2p = s3;
136 }
137 (void) __write(s, name, strlen(name) + 1);
138 /* should public key encypt the password here */
139 (void) __write(s, pass, strlen(pass) + 1);
140 (void) __write(s, cmd, strlen(cmd) + 1);
141 if (__read(s, &c, 1) != 1) {
142 perror(*ahost);
143 goto bad;
144 }
145 if (c != 0) {
146 while (__read(s, &c, 1) == 1) {
147 (void) __write(2, &c, 1);
148 if (c == '\n')
149 break;
150 }
151 goto bad;
152 }
153 return (s);
154 bad:
155 if (port)
156 (void) __close(*fd2p);
157 (void) __close(s);
158 return (-1);
159 }
This page took 0.313483 seconds and 5 git commands to generate.