Libinfo-129.2.tar.gz
[apple/libinfo.git] / rpc.subproj / svc_tcp.c
1 /*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License.
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24 /*
25 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
26 * unrestricted use provided that this legend is included on all tape
27 * media and as a part of the software program in whole or part. Users
28 * may copy or modify Sun RPC without charge, but are not authorized
29 * to license or distribute it to anyone else except as part of a product or
30 * program developed by the user.
31 *
32 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
33 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
34 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
35 *
36 * Sun RPC is provided with no support and without any obligation on the
37 * part of Sun Microsystems, Inc. to assist in its use, correction,
38 * modification or enhancement.
39 *
40 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
41 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
42 * OR ANY PART THEREOF.
43 *
44 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
45 * or profits or other special, indirect and consequential damages, even if
46 * Sun has been advised of the possibility of such damages.
47 *
48 * Sun Microsystems, Inc.
49 * 2550 Garcia Avenue
50 * Mountain View, California 94043
51 */
52
53 #if defined(LIBC_SCCS) && !defined(lint)
54 /*static char *sccsid = "from: @(#)svc_tcp.c 1.21 87/08/11 Copyr 1984 Sun Micro";*/
55 /*static char *sccsid = "from: @(#)svc_tcp.c 2.2 88/08/01 4.0 RPCSRC";*/
56 static char *rcsid = "$Id: svc_tcp.c,v 1.3.84.1 2002/10/18 21:16:15 bbraun Exp $";
57 #endif
58
59 /*
60 * svc_tcp.c, Server side for TCP/IP based RPC.
61 *
62 * Copyright (C) 1984, Sun Microsystems, Inc.
63 *
64 * Actually implements two flavors of transporter -
65 * a tcp rendezvouser (a listner and connection establisher)
66 * and a record/tcp stream.
67 */
68
69 #include <stdio.h>
70 #include <stdlib.h>
71 #include <string.h>
72 #include <unistd.h>
73 #include <rpc/rpc.h>
74 #include <sys/socket.h>
75 #include <errno.h>
76
77 #define max(a, b) (((a) > (b)) ? (a) : (b))
78
79 extern int bindresvport();
80
81 /*
82 * Ops vector for TCP/IP based rpc service handle
83 */
84 static bool_t svctcp_recv();
85 static enum xprt_stat svctcp_stat();
86 static bool_t svctcp_getargs();
87 static bool_t svctcp_reply();
88 static bool_t svctcp_freeargs();
89 static void svctcp_destroy();
90
91 static struct xp_ops svctcp_op = {
92 svctcp_recv,
93 svctcp_stat,
94 svctcp_getargs,
95 svctcp_reply,
96 svctcp_freeargs,
97 svctcp_destroy
98 };
99
100 /*
101 * Ops vector for TCP/IP rendezvous handler
102 */
103 static bool_t rendezvous_abort();
104 static bool_t rendezvous_request();
105 static enum xprt_stat rendezvous_stat();
106
107 static struct xp_ops svctcp_rendezvous_op = {
108 rendezvous_request,
109 rendezvous_stat,
110 rendezvous_abort,
111 rendezvous_abort,
112 rendezvous_abort,
113 svctcp_destroy
114 };
115
116 static int readtcp(), writetcp();
117 static SVCXPRT *makefd_xprt();
118
119 struct tcp_rendezvous { /* kept in xprt->xp_p1 */
120 u_int sendsize;
121 u_int recvsize;
122 };
123
124 struct tcp_conn { /* kept in xprt->xp_p1 */
125 enum xprt_stat strm_stat;
126 u_long x_id;
127 XDR xdrs;
128 char verf_body[MAX_AUTH_BYTES];
129 };
130
131 /*
132 * Usage:
133 * xprt = svctcp_create(sock, send_buf_size, recv_buf_size);
134 *
135 * Creates, registers, and returns a (rpc) tcp based transporter.
136 * Once *xprt is initialized, it is registered as a transporter
137 * see (svc.h, xprt_register). This routine returns
138 * a NULL if a problem occurred.
139 *
140 * If sock<0 then a socket is created, else sock is used.
141 * If the socket, sock is not bound to a port then svctcp_create
142 * binds it to an arbitrary port. The routine then starts a tcp
143 * listener on the socket's associated port. In any (successful) case,
144 * xprt->xp_sock is the registered socket number and xprt->xp_port is the
145 * associated port number.
146 *
147 * Since tcp streams do buffered io similar to stdio, the caller can specify
148 * how big the send and receive buffers are via the second and third parms;
149 * 0 => use the system default.
150 */
151 SVCXPRT *
152 svctcp_create(sock, sendsize, recvsize)
153 register int sock;
154 u_int sendsize;
155 u_int recvsize;
156 {
157 bool_t madesock = FALSE;
158 register SVCXPRT *xprt;
159 register struct tcp_rendezvous *r;
160 struct sockaddr_in addr;
161 int len = sizeof(struct sockaddr_in);
162
163 if (sock == RPC_ANYSOCK) {
164 if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) {
165 perror("svctcp_.c - udp socket creation problem");
166 return ((SVCXPRT *)NULL);
167 }
168 madesock = TRUE;
169 }
170 bzero((char *)&addr, sizeof (addr));
171 addr.sin_family = AF_INET;
172 if (bindresvport(sock, &addr)) {
173 addr.sin_port = 0;
174 (void)bind(sock, (struct sockaddr *)&addr, len);
175 }
176 if ((getsockname(sock, (struct sockaddr *)&addr, &len) != 0) ||
177 (listen(sock, 2) != 0)) {
178 perror("svctcp_.c - cannot getsockname or listen");
179 if (madesock)
180 (void)close(sock);
181 return ((SVCXPRT *)NULL);
182 }
183 r = (struct tcp_rendezvous *)mem_alloc(sizeof(*r));
184 if (r == NULL) {
185 (void) fprintf(stderr, "svctcp_create: out of memory\n");
186 return (NULL);
187 }
188 r->sendsize = sendsize;
189 r->recvsize = recvsize;
190 xprt = (SVCXPRT *)mem_alloc(sizeof(SVCXPRT));
191 if (xprt == NULL) {
192 (void) fprintf(stderr, "svctcp_create: out of memory\n");
193 return (NULL);
194 }
195 xprt->xp_p2 = NULL;
196 xprt->xp_p1 = (caddr_t)r;
197 xprt->xp_verf = _null_auth;
198 xprt->xp_ops = &svctcp_rendezvous_op;
199 xprt->xp_port = ntohs(addr.sin_port);
200 xprt->xp_sock = sock;
201 xprt_register(xprt);
202 return (xprt);
203 }
204
205 /*
206 * Like svtcp_create(), except the routine takes any *open* UNIX file
207 * descriptor as its first input.
208 */
209 SVCXPRT *
210 svcfd_create(fd, sendsize, recvsize)
211 int fd;
212 u_int sendsize;
213 u_int recvsize;
214 {
215
216 return (makefd_xprt(fd, sendsize, recvsize));
217 }
218
219 static SVCXPRT *
220 makefd_xprt(fd, sendsize, recvsize)
221 int fd;
222 u_int sendsize;
223 u_int recvsize;
224 {
225 register SVCXPRT *xprt;
226 register struct tcp_conn *cd;
227
228 xprt = (SVCXPRT *)mem_alloc(sizeof(SVCXPRT));
229 if (xprt == (SVCXPRT *)NULL) {
230 (void) fprintf(stderr, "svc_tcp: makefd_xprt: out of memory\n");
231 goto done;
232 }
233 cd = (struct tcp_conn *)mem_alloc(sizeof(struct tcp_conn));
234 if (cd == (struct tcp_conn *)NULL) {
235 (void) fprintf(stderr, "svc_tcp: makefd_xprt: out of memory\n");
236 mem_free((char *) xprt, sizeof(SVCXPRT));
237 xprt = (SVCXPRT *)NULL;
238 goto done;
239 }
240 cd->strm_stat = XPRT_IDLE;
241 xdrrec_create(&(cd->xdrs), sendsize, recvsize,
242 (caddr_t)xprt, readtcp, writetcp);
243 xprt->xp_p2 = NULL;
244 xprt->xp_p1 = (caddr_t)cd;
245 xprt->xp_verf.oa_base = cd->verf_body;
246 xprt->xp_addrlen = 0;
247 xprt->xp_ops = &svctcp_op; /* truely deals with calls */
248 xprt->xp_port = 0; /* this is a connection, not a rendezvouser */
249 xprt->xp_sock = fd;
250 xprt_register(xprt);
251 done:
252 return (xprt);
253 }
254
255 static bool_t
256 rendezvous_abort()
257 {
258 abort();
259 return (FALSE);
260 }
261
262 static bool_t
263 rendezvous_request(xprt)
264 register SVCXPRT *xprt;
265 {
266 int sock;
267 struct tcp_rendezvous *r;
268 struct sockaddr_in addr;
269 int len;
270
271 r = (struct tcp_rendezvous *)xprt->xp_p1;
272 again:
273 len = sizeof(struct sockaddr_in);
274 if ((sock = accept(xprt->xp_sock, (struct sockaddr *)&addr,
275 &len)) < 0) {
276 if (errno == EINTR)
277 goto again;
278 return (FALSE);
279 }
280 /*
281 * make a new transporter (re-uses xprt)
282 */
283 xprt = makefd_xprt(sock, r->sendsize, r->recvsize);
284 xprt->xp_raddr = addr;
285 xprt->xp_addrlen = len;
286 return (FALSE); /* there is never an rpc msg to be processed */
287 }
288
289 static enum xprt_stat
290 rendezvous_stat()
291 {
292
293 return (XPRT_IDLE);
294 }
295
296 static void
297 svctcp_destroy(xprt)
298 register SVCXPRT *xprt;
299 {
300 register struct tcp_conn *cd = (struct tcp_conn *)xprt->xp_p1;
301
302 xprt_unregister(xprt);
303 (void)close(xprt->xp_sock);
304 if (xprt->xp_port != 0) {
305 /* a rendezvouser socket */
306 xprt->xp_port = 0;
307 } else {
308 /* an actual connection socket */
309 XDR_DESTROY(&(cd->xdrs));
310 }
311 mem_free((caddr_t)cd, sizeof(struct tcp_conn));
312 mem_free((caddr_t)xprt, sizeof(SVCXPRT));
313 }
314
315 /*
316 * All read operations timeout after 35 seconds.
317 * A timeout is fatal for the connection.
318 */
319 static struct timeval wait_per_try = { 35, 0 };
320
321 extern int svc_maxfd;
322
323 /*
324 * reads data from the tcp conection.
325 * any error is fatal and the connection is closed.
326 * (And a read of zero bytes is a half closed stream => error.)
327 */
328 static int
329 readtcp(xprt, buf, len)
330 register SVCXPRT *xprt;
331 caddr_t buf;
332 register int len;
333 {
334 register int sock = xprt->xp_sock;
335 fd_set readfds;
336 bool_t ready = FALSE;
337 struct timeval delta, start, tv, tmp1, tmp2;
338
339 delta = wait_per_try;
340 gettimeofday(&start, NULL);
341 do
342 {
343 FD_COPY(&svc_fdset, &readfds);
344 FD_SET(sock, &readfds);
345 tv = delta;
346 switch( select(max(svc_maxfd, sock) + 1, &readfds, (fd_set*)NULL, (fd_set*)NULL, &tv) ) {
347 case -1:
348 if( errno != EINTR )
349 goto fatal_err;
350 gettimeofday(&tmp1, NULL);
351 timersub(&tmp1, &start, &tmp2);
352 timersub(&wait_per_try, &tmp2, &tmp1);
353 if( tmp1.tv_sec < 0 || !timerisset(&tmp1) )
354 goto fatal_err;
355 delta = tmp1;
356 continue;
357 case 0:
358 goto fatal_err;
359 default:
360 if(!FD_ISSET(sock, &readfds)) {
361 svc_getreqset(&readfds);
362 gettimeofday(&tmp1, NULL);
363 timersub(&tmp1, &start, &tmp2);
364 timersub(&wait_per_try, &tmp2, &tmp1);
365 if( tmp1.tv_sec < 0 || !timerisset(&tmp1) )
366 goto fatal_err;
367 delta = tmp1;
368 continue;
369 } else {
370 ready = TRUE;
371 }
372 }
373
374 } while (!ready);
375
376 if ((len = read(sock, buf, len)) > 0) return len;
377
378 fatal_err:
379 ((struct tcp_conn *)(xprt->xp_p1))->strm_stat = XPRT_DIED;
380 return -1;
381 }
382
383 /*
384 * writes data to the tcp connection.
385 * Any error is fatal and the connection is closed.
386 */
387 static int
388 writetcp(xprt, buf, len)
389 register SVCXPRT *xprt;
390 caddr_t buf;
391 int len;
392 {
393 register int i, cnt;
394
395 for (cnt = len; cnt > 0; cnt -= i, buf += i) {
396 if ((i = write(xprt->xp_sock, buf, cnt)) < 0) {
397 ((struct tcp_conn *)(xprt->xp_p1))->strm_stat =
398 XPRT_DIED;
399 return (-1);
400 }
401 }
402 return (len);
403 }
404
405 static enum xprt_stat
406 svctcp_stat(xprt)
407 SVCXPRT *xprt;
408 {
409 register struct tcp_conn *cd =
410 (struct tcp_conn *)(xprt->xp_p1);
411
412 if (cd->strm_stat == XPRT_DIED)
413 return (XPRT_DIED);
414 if (! xdrrec_eof(&(cd->xdrs)))
415 return (XPRT_MOREREQS);
416 return (XPRT_IDLE);
417 }
418
419 static bool_t
420 svctcp_recv(xprt, msg)
421 SVCXPRT *xprt;
422 register struct rpc_msg *msg;
423 {
424 register struct tcp_conn *cd =
425 (struct tcp_conn *)(xprt->xp_p1);
426 register XDR *xdrs = &(cd->xdrs);
427
428 xdrs->x_op = XDR_DECODE;
429 (void)xdrrec_skiprecord(xdrs);
430 if (xdr_callmsg(xdrs, msg)) {
431 cd->x_id = msg->rm_xid;
432 return (TRUE);
433 }
434 return (FALSE);
435 }
436
437 static bool_t
438 svctcp_getargs(xprt, xdr_args, args_ptr)
439 SVCXPRT *xprt;
440 xdrproc_t xdr_args;
441 caddr_t args_ptr;
442 {
443
444 return ((*xdr_args)(&(((struct tcp_conn *)(xprt->xp_p1))->xdrs), args_ptr));
445 }
446
447 static bool_t
448 svctcp_freeargs(xprt, xdr_args, args_ptr)
449 SVCXPRT *xprt;
450 xdrproc_t xdr_args;
451 caddr_t args_ptr;
452 {
453 register XDR *xdrs =
454 &(((struct tcp_conn *)(xprt->xp_p1))->xdrs);
455
456 xdrs->x_op = XDR_FREE;
457 return ((*xdr_args)(xdrs, args_ptr));
458 }
459
460 static bool_t
461 svctcp_reply(xprt, msg)
462 SVCXPRT *xprt;
463 register struct rpc_msg *msg;
464 {
465 register struct tcp_conn *cd =
466 (struct tcp_conn *)(xprt->xp_p1);
467 register XDR *xdrs = &(cd->xdrs);
468 register bool_t stat;
469
470 xdrs->x_op = XDR_ENCODE;
471 msg->rm_xid = cd->x_id;
472 stat = xdr_replymsg(xdrs, msg);
473 (void)xdrrec_endofrecord(xdrs, TRUE);
474 return (stat);
475 }