This source file includes following definitions.
- rpc_call
- recvrpc
- rpc_fromaddr
- rpc_pmap_getcache
- rpc_pmap_putcache
- rpc_getport
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51 #include <sys/param.h>
52 #include <sys/socket.h>
53
54 #include <netinet/in.h>
55 #include <netinet/in_systm.h>
56
57 #include <nfs/rpcv2.h>
58
59 #include "stand.h"
60 #include "net.h"
61 #include "netif.h"
62 #include "rpc.h"
63
64 struct auth_info {
65 int32_t authtype;
66 u_int32_t authlen;
67 };
68
69 struct auth_unix {
70 int32_t ua_time;
71 int32_t ua_hostname;
72 int32_t ua_uid;
73 int32_t ua_gid;
74 int32_t ua_gidlist;
75 };
76
77 struct rpc_call {
78 u_int32_t rp_xid;
79 int32_t rp_direction;
80 u_int32_t rp_rpcvers;
81 u_int32_t rp_prog;
82 u_int32_t rp_vers;
83 u_int32_t rp_proc;
84 };
85
86 struct rpc_reply {
87 u_int32_t rp_xid;
88 int32_t rp_direction;
89 int32_t rp_astatus;
90 union {
91 u_int32_t rpu_errno;
92 struct {
93 struct auth_info rok_auth;
94 u_int32_t rok_status;
95 } rpu_rok;
96 } rp_u;
97 };
98
99
100 static ssize_t recvrpc(struct iodesc *, void *, size_t, time_t);
101 static int rpc_getport(struct iodesc *, n_long, n_long);
102
103 int rpc_xid;
104 int rpc_port = 0x400;
105
106
107
108
109
110 ssize_t
111 rpc_call(struct iodesc *d, n_long prog, n_long vers, n_long proc, void *sdata,
112 size_t slen, void *rdata, size_t rlen)
113 {
114 ssize_t cc;
115 struct auth_info *auth;
116 struct rpc_call *call;
117 struct rpc_reply *reply;
118 char *send_head, *send_tail;
119 char *recv_head, *recv_tail;
120 n_long x;
121 int port;
122
123 #ifdef RPC_DEBUG
124 if (debug)
125 printf("rpc_call: prog=0x%x vers=%d proc=%d\n",
126 prog, vers, proc);
127 #endif
128
129 port = rpc_getport(d, prog, vers);
130 if (port == -1)
131 return (-1);
132
133 d->destport = htons(port);
134
135
136
137
138
139 send_head = sdata;
140 send_tail = (char *)sdata + slen;
141
142
143 send_head -= sizeof(*auth);
144 auth = (struct auth_info *)send_head;
145 auth->authtype = htonl(RPCAUTH_NULL);
146 auth->authlen = 0;
147
148 #if 1
149
150 send_head -= sizeof(struct auth_unix);
151 bzero(send_head, sizeof(struct auth_unix));
152 send_head -= sizeof(*auth);
153 auth = (struct auth_info *)send_head;
154 auth->authtype = htonl(RPCAUTH_UNIX);
155 auth->authlen = htonl(sizeof(struct auth_unix));
156 #else
157
158 send_head -= sizeof(*auth);
159 auth = send_head;
160 auth->authtype = htonl(RPCAUTH_NULL);
161 auth->authlen = 0;
162 #endif
163
164
165 send_head -= sizeof(*call);
166 call = (struct rpc_call *)send_head;
167 rpc_xid++;
168 call->rp_xid = htonl(rpc_xid);
169 call->rp_direction = htonl(RPC_CALL);
170 call->rp_rpcvers = htonl(RPC_VER2);
171 call->rp_prog = htonl(prog);
172 call->rp_vers = htonl(vers);
173 call->rp_proc = htonl(proc);
174
175
176 recv_head = rdata;
177 recv_tail = (char *)rdata + rlen;
178 recv_head -= sizeof(*reply);
179
180 cc = sendrecv(d,
181 sendudp, send_head, send_tail - send_head,
182 recvrpc, recv_head, recv_tail - recv_head);
183
184 #ifdef RPC_DEBUG
185 if (debug)
186 printf("callrpc: cc=%d rlen=%d\n", cc, rlen);
187 #endif
188 if (cc < -1)
189 return (-1);
190
191 if ((size_t)cc <= sizeof(*reply)) {
192 errno = EBADRPC;
193 return (-1);
194 }
195
196 recv_tail = recv_head + cc;
197
198
199
200
201
202 reply = (struct rpc_reply *)recv_head;
203 auth = &reply->rp_u.rpu_rok.rok_auth;
204 x = ntohl(auth->authlen);
205 if (x != 0) {
206 #ifdef RPC_DEBUG
207 if (debug)
208 printf("callrpc: reply auth != NULL\n");
209 #endif
210 errno = EBADRPC;
211 return(-1);
212 }
213 x = ntohl(reply->rp_u.rpu_rok.rok_status);
214 if (x != 0) {
215 printf("callrpc: error = %d\n", x);
216 errno = EBADRPC;
217 return(-1);
218 }
219 recv_head += sizeof(*reply);
220
221 return (ssize_t)(recv_tail - recv_head);
222 }
223
224
225
226
227
228
229 static ssize_t
230 recvrpc(struct iodesc *d, void *pkt, size_t len, time_t tleft)
231 {
232 struct rpc_reply *reply;
233 ssize_t n;
234 int x;
235
236 errno = 0;
237 #ifdef RPC_DEBUG
238 if (debug)
239 printf("recvrpc: called len=%d\n", len);
240 #endif
241
242 n = readudp(d, pkt, len, tleft);
243 if (n <= (4 * 4))
244 return -1;
245
246 reply = (struct rpc_reply *)pkt;
247
248 x = ntohl(reply->rp_xid);
249 if (x != rpc_xid) {
250 #ifdef RPC_DEBUG
251 if (debug)
252 printf("recvrpc: rp_xid %d != xid %d\n", x, rpc_xid);
253 #endif
254 return -1;
255 }
256
257 x = ntohl(reply->rp_direction);
258 if (x != RPC_REPLY) {
259 #ifdef RPC_DEBUG
260 if (debug)
261 printf("recvrpc: rp_direction %d != REPLY\n", x);
262 #endif
263 return -1;
264 }
265
266 x = ntohl(reply->rp_astatus);
267 if (x != RPC_MSGACCEPTED) {
268 errno = ntohl(reply->rp_u.rpu_errno);
269 printf("recvrpc: reject, astat=%d, errno=%d\n", x, errno);
270 return -1;
271 }
272
273
274 return (n);
275 }
276
277
278
279
280
281 void
282 rpc_fromaddr(void *pkt, struct in_addr *addr, u_short *port)
283 {
284 struct hackhdr {
285
286 n_long ip_src;
287 n_long ip_dst;
288
289 u_int16_t uh_sport;
290 u_int16_t uh_dport;
291 int16_t uh_ulen;
292 u_int16_t uh_sum;
293
294 struct rpc_reply rpc;
295 } *hhdr;
296
297 hhdr = ((struct hackhdr *)pkt) - 1;
298 addr->s_addr = hhdr->ip_src;
299 *port = hhdr->uh_sport;
300 }
301
302
303
304
305 #define PMAP_NUM 8
306
307 int rpc_pmap_num;
308 struct pmap_list {
309 struct in_addr addr;
310 u_int prog;
311 u_int vers;
312 int port;
313 } rpc_pmap_list[PMAP_NUM];
314
315
316 int
317 rpc_pmap_getcache(struct in_addr addr, u_int prog, u_int vers)
318 {
319 struct pmap_list *pl;
320
321 for (pl = rpc_pmap_list; pl < &rpc_pmap_list[rpc_pmap_num]; pl++) {
322 if (pl->addr.s_addr == addr.s_addr &&
323 pl->prog == prog && pl->vers == vers)
324 return (pl->port);
325 }
326 return (-1);
327 }
328
329 void
330 rpc_pmap_putcache(struct in_addr addr, u_int prog, u_int vers, int port)
331 {
332 struct pmap_list *pl;
333
334
335 if (rpc_pmap_num >= PMAP_NUM) {
336
337 rpc_pmap_num = PMAP_NUM - 1;
338 #ifdef RPC_DEBUG
339 printf("rpc_pmap_putcache: cache overflow\n");
340 #endif
341 }
342
343 pl = &rpc_pmap_list[rpc_pmap_num];
344 rpc_pmap_num++;
345
346
347 pl->addr = addr;
348 pl->prog = prog;
349 pl->vers = vers;
350 pl->port = port;
351 }
352
353
354
355
356
357
358 int
359 rpc_getport(struct iodesc *d, n_long prog, n_long vers)
360 {
361 struct args {
362 n_long prog;
363 n_long vers;
364 n_long proto;
365 n_long port;
366 } *args;
367 struct res {
368 n_long port;
369 } *res;
370 struct {
371 n_long h[RPC_HEADER_WORDS];
372 struct args d;
373 } sdata;
374 struct {
375 n_long h[RPC_HEADER_WORDS];
376 struct res d;
377 n_long pad;
378 } rdata;
379 ssize_t cc;
380 int port;
381
382 #ifdef RPC_DEBUG
383 if (debug)
384 printf("getport: prog=0x%x vers=%d\n", prog, vers);
385 #endif
386
387
388 if (prog == PMAPPROG)
389 return (PMAPPORT);
390
391
392 port = rpc_pmap_getcache(d->destip, prog, vers);
393 if (port != -1)
394 return (port);
395
396 args = &sdata.d;
397 args->prog = htonl(prog);
398 args->vers = htonl(vers);
399 args->proto = htonl(IPPROTO_UDP);
400 args->port = 0;
401 res = &rdata.d;
402
403 cc = rpc_call(d, PMAPPROG, PMAPVERS, PMAPPROC_GETPORT,
404 args, sizeof(*args), res, sizeof(*res));
405 if (cc < 0 || (size_t)cc < sizeof(*res)) {
406 printf("getport: %s", strerror(errno));
407 errno = EBADRPC;
408 return (-1);
409 }
410 port = (int)ntohl(res->port);
411
412 rpc_pmap_putcache(d->destip, prog, vers, port);
413
414 return (port);
415 }