-a to show addresses in packets
[unix-history] / usr / src / lib / libc / net / rcmd.c
CommitLineData
f0bb4ca8 1#ifndef lint
c1dfbf19 2static char sccsid[] = "@(#)rcmd.c 4.5 %G%";
f0bb4ca8
BJ
3#endif
4
5#include <stdio.h>
6#include <sys/types.h>
7#include <sys/socket.h>
40d6b022
SL
8
9#include <netinet/in.h>
10
3f5b52bc 11#include <netdb.h>
40d6b022 12#include <errno.h>
f0bb4ca8
BJ
13
14extern errno;
15char *index(), *sprintf();
f0bb4ca8
BJ
16
17rcmd(ahost, rport, locuser, remuser, cmd, fd2p)
18 char **ahost;
19 int rport;
20 char *locuser, *remuser, *cmd;
21 int *fd2p;
22{
40d6b022 23 int s, timo = 1;
f0bb4ca8
BJ
24 struct sockaddr_in sin, sin2, from;
25 char c;
40d6b022 26 int lport = IPPORT_RESERVED - 1;
3f5b52bc 27 struct hostent *hp;
f0bb4ca8 28
3f5b52bc
SL
29 hp = gethostbyname(*ahost);
30 if (hp == 0) {
f0bb4ca8
BJ
31 fprintf(stderr, "%s: unknown host\n", *ahost);
32 return (-1);
33 }
3f5b52bc 34 *ahost = hp->h_name;
f0bb4ca8 35retry:
c1dfbf19 36 s = rresvport(&lport);
f0bb4ca8
BJ
37 if (s < 0)
38 return (-1);
3f5b52bc 39 sin.sin_family = hp->h_addrtype;
40d6b022 40 bcopy(hp->h_addr, (caddr_t)&sin.sin_addr, hp->h_length);
b567f18d 41 sin.sin_port = rport;
40d6b022
SL
42 if (connect(s, (caddr_t)&sin, sizeof (sin), 0) < 0) {
43 if (errno == EADDRINUSE) {
44 close(s);
45 lport--;
46 goto retry;
47 }
f0bb4ca8
BJ
48 if (errno == ECONNREFUSED && timo <= 16) {
49 (void) close(s);
50 sleep(timo);
51 timo *= 2;
52 goto retry;
53 }
40d6b022 54 perror(hp->h_name);
f0bb4ca8
BJ
55 return (-1);
56 }
40d6b022 57 lport--;
f0bb4ca8
BJ
58 if (fd2p == 0) {
59 write(s, "", 1);
c1dfbf19 60 lport = 0;
f0bb4ca8
BJ
61 } else {
62 char num[8];
c1dfbf19 63 int s2 = rresvport(&lport), s3;
f0bb4ca8
BJ
64
65 if (s2 < 0) {
66 (void) close(s);
67 return (-1);
68 }
40d6b022 69 listen(s2, 1);
c1dfbf19 70 (void) sprintf(num, "%d", lport);
f0bb4ca8 71 (void) write(s, num, strlen(num)+1);
40d6b022
SL
72 { int len = sizeof (from);
73 s3 = accept(s2, &from, &len, 0);
74 close(s2);
75 if (s3 < 0) {
f0bb4ca8 76 perror("accept");
c1dfbf19 77 lport = 0;
f0bb4ca8 78 goto bad;
40d6b022 79 }
f0bb4ca8 80 }
40d6b022
SL
81 *fd2p = s3;
82 from.sin_port = ntohs((u_short)from.sin_port);
f0bb4ca8
BJ
83 if (from.sin_family != AF_INET ||
84 from.sin_port >= IPPORT_RESERVED) {
85 fprintf(stderr,
86 "socket: protocol failure in circuit setup.\n");
40d6b022 87 goto bad2;
f0bb4ca8 88 }
f0bb4ca8
BJ
89 }
90 (void) write(s, locuser, strlen(locuser)+1);
91 (void) write(s, remuser, strlen(remuser)+1);
92 (void) write(s, cmd, strlen(cmd)+1);
93 if (read(s, &c, 1) != 1) {
94 perror(*ahost);
40d6b022 95 goto bad2;
f0bb4ca8
BJ
96 }
97 if (c != 0) {
98 while (read(s, &c, 1) == 1) {
99 (void) write(2, &c, 1);
100 if (c == '\n')
101 break;
102 }
40d6b022 103 goto bad2;
f0bb4ca8
BJ
104 }
105 return (s);
40d6b022 106bad2:
c1dfbf19 107 if (lport)
f0bb4ca8 108 (void) close(*fd2p);
40d6b022 109bad:
f0bb4ca8
BJ
110 (void) close(s);
111 return (-1);
112}
113
c1dfbf19
SL
114rresvport(alport)
115 int *alport;
f0bb4ca8
BJ
116{
117 struct sockaddr_in sin;
f0bb4ca8
BJ
118 int s;
119
40d6b022
SL
120 sin.sin_family = AF_INET;
121 sin.sin_addr.s_addr = 0;
b567f18d 122 s = socket(AF_INET, SOCK_STREAM, 0, 0);
40d6b022
SL
123 if (s < 0)
124 return (-1);
f0bb4ca8 125 for (;;) {
40d6b022
SL
126 sin.sin_port = htons((u_short)*alport);
127 if (bind(s, (caddr_t)&sin, sizeof (sin), 0) >= 0)
f0bb4ca8
BJ
128 return (s);
129 if (errno != EADDRINUSE && errno != EADDRNOTAVAIL) {
130 perror("socket");
131 return (-1);
132 }
40d6b022
SL
133 (*alport)--;
134 if (*alport == IPPORT_RESERVED/2) {
f0bb4ca8
BJ
135 fprintf(stderr, "socket: All ports in use\n");
136 return (-1);
137 }
138 }
139}
140
141ruserok(rhost, ruser, luser)
142 char *rhost, *ruser, *luser;
143{
144 FILE *hostf;
145 char ahost[32];
146 int first = 1;
147
148 hostf = fopen("/etc/hosts.equiv", "r");
149again:
150 if (hostf) {
151 while (fgets(ahost, sizeof (ahost), hostf)) {
152 char *user;
153 if (index(ahost, '\n'))
154 *index(ahost, '\n') = 0;
155 user = index(ahost, ' ');
156 if (user)
157 *user++ = 0;
158 if (!strcmp(rhost, ahost) &&
159 !strcmp(ruser, user ? user : luser))
160 goto ok;
161 }
162 (void) fclose(hostf);
163 }
164 if (first == 1) {
165 first = 0;
166 hostf = fopen(".rhosts", "r");
167 goto again;
168 }
169 return (-1);
170ok:
171 (void) fclose(hostf);
172 return (0);
173}
40d6b022
SL
174
175socketaddr(x, y)
176{
177
178 syscall(103,x,y);
179}