2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
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
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
22 * @APPLE_LICENSE_HEADER_END@
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.
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.
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.
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.
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.
48 * Sun Microsystems, Inc.
50 * Mountain View, California 94043
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.6 2004/06/11 16:28:07 majka Exp $";
60 * svc_tcp.c, Server side for TCP/IP based RPC.
62 * Copyright (C) 1984, Sun Microsystems, Inc.
64 * Actually implements two flavors of transporter -
65 * a tcp rendezvouser (a listner and connection establisher)
66 * and a record/tcp stream.
74 #include <sys/socket.h>
77 #define max(a, b) (((a) > (b)) ? (a) : (b))
79 extern int bindresvport();
82 * Ops vector for TCP/IP based rpc service handle
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();
91 static struct xp_ops svctcp_op
= {
101 * Ops vector for TCP/IP rendezvous handler
103 static bool_t
rendezvous_abort();
104 static bool_t
rendezvous_request();
105 static enum xprt_stat
rendezvous_stat();
107 static struct xp_ops svctcp_rendezvous_op
= {
116 static int readtcp(), writetcp();
117 static SVCXPRT
*makefd_xprt();
119 struct tcp_rendezvous
{ /* kept in xprt->xp_p1 */
124 struct tcp_conn
{ /* kept in xprt->xp_p1 */
125 enum xprt_stat strm_stat
;
132 char verf_body
[MAX_AUTH_BYTES
];
137 * xprt = svctcp_create(sock, send_buf_size, recv_buf_size);
139 * Creates, registers, and returns a (rpc) tcp based transporter.
140 * Once *xprt is initialized, it is registered as a transporter
141 * see (svc.h, xprt_register). This routine returns
142 * a NULL if a problem occurred.
144 * If sock<0 then a socket is created, else sock is used.
145 * If the socket, sock is not bound to a port then svctcp_create
146 * binds it to an arbitrary port. The routine then starts a tcp
147 * listener on the socket's associated port. In any (successful) case,
148 * xprt->xp_sock is the registered socket number and xprt->xp_port is the
149 * associated port number.
151 * Since tcp streams do buffered io similar to stdio, the caller can specify
152 * how big the send and receive buffers are via the second and third parms;
153 * 0 => use the system default.
156 svctcp_create(sock
, sendsize
, recvsize
)
161 bool_t madesock
= FALSE
;
162 register SVCXPRT
*xprt
;
163 register struct tcp_rendezvous
*r
;
164 struct sockaddr_in addr
;
165 unsigned int len
= sizeof(struct sockaddr_in
);
167 if (sock
== RPC_ANYSOCK
) {
168 if ((sock
= socket(AF_INET
, SOCK_STREAM
, IPPROTO_TCP
)) < 0) {
169 perror("svctcp_.c - udp socket creation problem");
170 return ((SVCXPRT
*)NULL
);
174 bzero((char *)&addr
, sizeof (addr
));
175 addr
.sin_family
= AF_INET
;
176 if (bindresvport(sock
, &addr
)) {
178 (void)bind(sock
, (struct sockaddr
*)&addr
, len
);
180 if ((getsockname(sock
, (struct sockaddr
*)&addr
, &len
) != 0) ||
181 (listen(sock
, 2) != 0)) {
182 perror("svctcp_.c - cannot getsockname or listen");
185 return ((SVCXPRT
*)NULL
);
187 r
= (struct tcp_rendezvous
*)mem_alloc(sizeof(*r
));
189 (void) fprintf(stderr
, "svctcp_create: out of memory\n");
192 r
->sendsize
= sendsize
;
193 r
->recvsize
= recvsize
;
194 xprt
= (SVCXPRT
*)mem_alloc(sizeof(SVCXPRT
));
196 (void) fprintf(stderr
, "svctcp_create: out of memory\n");
200 xprt
->xp_p1
= (caddr_t
)r
;
201 xprt
->xp_verf
= _null_auth
;
202 xprt
->xp_ops
= &svctcp_rendezvous_op
;
203 xprt
->xp_port
= ntohs(addr
.sin_port
);
204 xprt
->xp_sock
= sock
;
210 * Like svtcp_create(), except the routine takes any *open* UNIX file
211 * descriptor as its first input.
214 svcfd_create(fd
, sendsize
, recvsize
)
220 return (makefd_xprt(fd
, sendsize
, recvsize
));
224 makefd_xprt(fd
, sendsize
, recvsize
)
229 register SVCXPRT
*xprt
;
230 register struct tcp_conn
*cd
;
232 xprt
= (SVCXPRT
*)mem_alloc(sizeof(SVCXPRT
));
233 if (xprt
== (SVCXPRT
*)NULL
) {
234 (void) fprintf(stderr
, "svc_tcp: makefd_xprt: out of memory\n");
237 cd
= (struct tcp_conn
*)mem_alloc(sizeof(struct tcp_conn
));
238 if (cd
== (struct tcp_conn
*)NULL
) {
239 (void) fprintf(stderr
, "svc_tcp: makefd_xprt: out of memory\n");
240 mem_free((char *) xprt
, sizeof(SVCXPRT
));
241 xprt
= (SVCXPRT
*)NULL
;
244 cd
->strm_stat
= XPRT_IDLE
;
245 xdrrec_create(&(cd
->xdrs
), sendsize
, recvsize
,
246 (caddr_t
)xprt
, readtcp
, writetcp
);
248 xprt
->xp_p1
= (caddr_t
)cd
;
249 xprt
->xp_verf
.oa_base
= cd
->verf_body
;
250 xprt
->xp_addrlen
= 0;
251 xprt
->xp_ops
= &svctcp_op
; /* truely deals with calls */
252 xprt
->xp_port
= 0; /* this is a connection, not a rendezvouser */
267 rendezvous_request(xprt
)
268 register SVCXPRT
*xprt
;
271 struct tcp_rendezvous
*r
;
272 struct sockaddr_in addr
;
275 r
= (struct tcp_rendezvous
*)xprt
->xp_p1
;
277 len
= sizeof(struct sockaddr_in
);
278 if ((sock
= accept(xprt
->xp_sock
, (struct sockaddr
*)&addr
, &len
)) < 0) {
284 * make a new transporter (re-uses xprt)
286 xprt
= makefd_xprt(sock
, r
->sendsize
, r
->recvsize
);
287 xprt
->xp_raddr
= addr
;
288 xprt
->xp_addrlen
= len
;
289 return (FALSE
); /* there is never an rpc msg to be processed */
292 static enum xprt_stat
301 register SVCXPRT
*xprt
;
303 register struct tcp_conn
*cd
= (struct tcp_conn
*)xprt
->xp_p1
;
305 xprt_unregister(xprt
);
306 (void)close(xprt
->xp_sock
);
307 if (xprt
->xp_port
!= 0) {
308 /* a rendezvouser socket */
311 /* an actual connection socket */
312 XDR_DESTROY(&(cd
->xdrs
));
314 mem_free((caddr_t
)cd
, sizeof(struct tcp_conn
));
315 mem_free((caddr_t
)xprt
, sizeof(SVCXPRT
));
319 * All read operations timeout after 35 seconds.
320 * A timeout is fatal for the connection.
322 static struct timeval wait_per_try
= { 35, 0 };
324 extern int svc_maxfd
;
327 * reads data from the tcp conection.
328 * any error is fatal and the connection is closed.
329 * (And a read of zero bytes is a half closed stream => error.)
332 readtcp(xprt
, buf
, len
)
333 register SVCXPRT
*xprt
;
337 register int sock
= xprt
->xp_sock
;
339 bool_t ready
= FALSE
;
343 FD_COPY(&svc_fdset
, &readfds
);
344 FD_SET(sock
, &readfds
);
345 if (select(max(svc_maxfd
, sock
) + 1, &readfds
, NULL
, NULL
, &wait_per_try
) <= 0)
347 if (errno
== EINTR
) continue;
350 else if (FD_ISSET(sock
, &readfds
))
356 if ((len
= read(sock
, buf
, len
)) > 0) return len
;
359 ((struct tcp_conn
*)(xprt
->xp_p1
))->strm_stat
= XPRT_DIED
;
364 * writes data to the tcp connection.
365 * Any error is fatal and the connection is closed.
368 writetcp(xprt
, buf
, len
)
369 register SVCXPRT
*xprt
;
375 for (cnt
= len
; cnt
> 0; cnt
-= i
, buf
+= i
) {
376 if ((i
= write(xprt
->xp_sock
, buf
, cnt
)) < 0) {
377 ((struct tcp_conn
*)(xprt
->xp_p1
))->strm_stat
=
385 static enum xprt_stat
389 register struct tcp_conn
*cd
=
390 (struct tcp_conn
*)(xprt
->xp_p1
);
392 if (cd
->strm_stat
== XPRT_DIED
)
394 if (! xdrrec_eof(&(cd
->xdrs
)))
395 return (XPRT_MOREREQS
);
400 svctcp_recv(xprt
, msg
)
402 register struct rpc_msg
*msg
;
404 register struct tcp_conn
*cd
=
405 (struct tcp_conn
*)(xprt
->xp_p1
);
406 register XDR
*xdrs
= &(cd
->xdrs
);
408 xdrs
->x_op
= XDR_DECODE
;
409 (void)xdrrec_skiprecord(xdrs
);
410 if (xdr_callmsg(xdrs
, msg
)) {
411 cd
->x_id
= msg
->rm_xid
;
418 svctcp_getargs(xprt
, xdr_args
, args_ptr
)
424 return ((*xdr_args
)(&(((struct tcp_conn
*)(xprt
->xp_p1
))->xdrs
), args_ptr
));
428 svctcp_freeargs(xprt
, xdr_args
, args_ptr
)
434 &(((struct tcp_conn
*)(xprt
->xp_p1
))->xdrs
);
436 xdrs
->x_op
= XDR_FREE
;
437 return ((*xdr_args
)(xdrs
, args_ptr
));
441 svctcp_reply(xprt
, msg
)
443 register struct rpc_msg
*msg
;
445 register struct tcp_conn
*cd
=
446 (struct tcp_conn
*)(xprt
->xp_p1
);
447 register XDR
*xdrs
= &(cd
->xdrs
);
448 register bool_t stat
;
450 xdrs
->x_op
= XDR_ENCODE
;
451 msg
->rm_xid
= cd
->x_id
;
452 stat
= xdr_replymsg(xdrs
, msg
);
453 (void)xdrrec_endofrecord(xdrs
, TRUE
);