svc_tcp.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:12k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* svc_tcp.c - server side for TCP/IP based RPC */
  2. /* Copyright 1984-2002 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  * Copyright (C) 1984, Sun Microsystems, Inc.
  6.  *
  7.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  8.  * unrestricted use provided that this legend is included on all tape
  9.  * media and as a part of the software program in whole or part.  Users
  10.  * may copy or modify Sun RPC without charge, but are not authorized
  11.  * to license or distribute it to anyone else except as part of a product or
  12.  * program developed by the user.
  13.  *
  14.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  15.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  16.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  17.  *
  18.  * Sun RPC is provided with no support and without any obligation on the
  19.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  20.  * modification or enhancement.
  21.  *
  22.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  23.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  24.  * OR ANY PART THEREOF.
  25.  *
  26.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  27.  * or profits or other special, indirect and consequential damages, even if
  28.  * Sun has been advised of the possibility of such damages.
  29.  *
  30.  * Sun Microsystems, Inc.
  31.  * 2550 Garcia Avenue
  32.  * Mountain View, California  94043
  33.  */
  34. /*
  35. modification history
  36. --------------------
  37. 01o,11jan02,vvv  fixed infinite loop in readtcp when select times out 
  38.  (SPR #67857)
  39. 01n,05nov01,vvv  fixed compilation warnings
  40. 01m,18apr00,ham  fixed compilation warnings.
  41. 01l,11aug93,jmm  Changed ioctl.h and socket.h to sys/ioctl.h and sys/socket.h
  42. 01k,26may92,rrr  the tree shuffle
  43.   -changed includes to have absolute path from h/
  44. 01j,04oct91,rrr  passed through the ansification filter
  45.   -changed includes to have absolute path from h/
  46.   -changed VOID to void
  47.   -changed copyright notice
  48. 01i,25oct90,dnw   removed include of utime.h.
  49. 01h,07oct90,hjb   deleted declaration of mem_alloc() due to problems with
  50.   ISI cpp complaining about macro argument.  Added include
  51.   of "memLib.h" instead.
  52. 01g,19jul90,dnw   changed declaration of mem_alloc() from char* to void*
  53. 01f,10may90,dnw   changed to use rpcErrnoGet instead of errnoGet
  54. 01e,19apr90,hjb   de-linted.
  55. 01d,27oct89,hjb   upgraded to 4.0
  56. 01d,30may88,dnw   changed to v4 names.
  57. 01c,05apr88,gae   updated select() to BSD4.3, i.e. used "fd_set".
  58.   changed fprintf() to printErr().
  59. 01b,11nov87,jlf   added wrs copyright, title, mod history, etc.
  60. 01a,01nov87,rdc   first VxWorks version
  61. */
  62. #ifndef lint
  63. /* static char sccsid[] = "@(#)svc_tcp.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  64. #endif
  65. /*
  66.  * svc_tcp.c, Server side for TCP/IP based RPC.
  67.  *
  68.  * Actually implements two flavors of transporter -
  69.  * a tcp rendezvouser (a listner and connection establisher)
  70.  * and a record/tcp stream.
  71.  */
  72. #include "rpc/rpctypes.h"
  73. #include "netinet/in.h"
  74. #include "sys/socket.h"
  75. #include "errno.h"
  76. #include "errnoLib.h"
  77. #include "rpc/xdr.h"
  78. #include "rpc/auth.h"
  79. #include "rpc/clnt.h"
  80. #include "rpc/rpc_msg.h"
  81. #include "rpc/svc.h"
  82. #include "vxWorks.h"
  83. #include "memLib.h"
  84. #include "stdio.h"
  85. #include "sockLib.h"
  86. #include "ioLib.h"
  87. #include "rpcLib.h"
  88. #include "remLib.h"
  89. extern bool_t abort();
  90. /*
  91.  * Including stdlib.h causes conflict with abort() declaration, so adding
  92.  * externs for malloc and free
  93.  */
  94. extern void *malloc ();
  95. extern void free ();
  96. /*
  97.  * Ops vector for TCP/IP based rpc service handle
  98.  */
  99. LOCAL bool_t svctcp_recv();
  100. LOCAL enum xprt_stat svctcp_stat();
  101. LOCAL bool_t svctcp_getargs();
  102. LOCAL bool_t svctcp_reply();
  103. LOCAL bool_t svctcp_freeargs();
  104. LOCAL void svctcp_destroy();
  105. static struct xp_ops svctcp_op = {
  106. svctcp_recv,
  107. svctcp_stat,
  108. svctcp_getargs,
  109. svctcp_reply,
  110. svctcp_freeargs,
  111. svctcp_destroy
  112. };
  113. /*
  114.  * Ops vector for TCP/IP rendezvous handler
  115.  */
  116. LOCAL bool_t rendezvous_request();
  117. LOCAL enum xprt_stat rendezvous_stat();
  118. static struct xp_ops svctcp_rendezvous_op = {
  119. rendezvous_request,
  120. rendezvous_stat,
  121. abort,
  122. abort,
  123. abort,
  124. svctcp_destroy
  125. };
  126. LOCAL int readtcp();
  127. LOCAL int writetcp();
  128. LOCAL SVCXPRT * makefd_xprt();
  129. struct tcp_rendezvous { /* kept in xprt->xp_p1 */
  130. u_int sendsize;
  131. u_int recvsize;
  132. };
  133. struct tcp_conn {  /* kept in xprt->xp_p1 */
  134. enum xprt_stat strm_stat;
  135. u_long x_id;
  136. XDR xdrs;
  137. char verf_body[MAX_AUTH_BYTES];
  138. };
  139. /*
  140.  * Usage:
  141.  * xprt = svctcp_create(sock, send_buf_size, recv_buf_size);
  142.  *
  143.  * Creates, registers, and returns a (rpc) tcp based transporter.
  144.  * Once *xprt is initialized, it is registered as a transporter
  145.  * see (svc.h, xprt_register).  This routine returns
  146.  * a NULL if a problem occurred.
  147.  *
  148.  * If sock<0 then a socket is created, else sock is used.
  149.  * If the socket, sock is not bound to a port then svctcp_create
  150.  * binds it to an arbitrary port.  The routine then starts a tcp
  151.  * listener on the socket's associated port.  In any (successful) case,
  152.  * xprt->xp_sock is the registered socket number and xprt->xp_port is the
  153.  * associated port number.
  154.  *
  155.  * Since tcp streams do buffered io similar to stdio, the caller can specify
  156.  * how big the send and receive buffers are via the second and third parms;
  157.  * 0 => use the system default.
  158.  */
  159. SVCXPRT *
  160. svctcp_create(sock, sendsize, recvsize)
  161. register int sock;
  162. u_int sendsize;
  163. u_int recvsize;
  164. {
  165. bool_t madesock = FALSE;
  166. register SVCXPRT *xprt;
  167. register struct tcp_rendezvous *r;
  168. struct sockaddr_in addr;
  169. int len = sizeof(struct sockaddr_in);
  170. if (sock == RPC_ANYSOCK) {
  171. if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) {
  172. perror("svctcp_.c - udp socket creation problem");
  173. return ((SVCXPRT *)NULL);
  174. }
  175. madesock = TRUE;
  176. }
  177. bzero ((char *) &addr, sizeof (addr)); /* 4.0 */
  178. addr.sin_family = AF_INET;
  179. if (bindresvport (sock, &addr))  /* 4.0 */
  180.     { /* 4.0 */
  181.     addr.sin_port = 0; /* 4.0 */
  182.     (void) bind (sock, (struct sockaddr *)&addr, len); /* 4.0 */
  183.     } /* 4.0 */
  184. if ((getsockname(sock, (struct sockaddr *)&addr, &len) != 0)  ||
  185.     (listen(sock, 2) != 0)) {
  186. perror("svctcp_.c - cannot getsockname or listen");
  187. if (madesock)
  188.        (void)close(sock);
  189. return ((SVCXPRT *)NULL);
  190. }
  191. r = (struct tcp_rendezvous *)mem_alloc(sizeof(*r));
  192. if (r == NULL) {
  193. printErr ("svctcp_create: out of memoryn");
  194. return (NULL);
  195. }
  196. r->sendsize = sendsize;
  197. r->recvsize = recvsize;
  198. xprt = (SVCXPRT *)mem_alloc(sizeof(SVCXPRT));
  199. if (xprt == NULL) {
  200. printErr ("svctcp_create: out of memoryn");
  201. return (NULL);
  202. }
  203. xprt->xp_p2 = NULL;
  204. xprt->xp_p1 = (caddr_t)r;
  205. xprt->xp_verf = _null_auth;
  206. xprt->xp_ops = &svctcp_rendezvous_op;
  207. xprt->xp_port = ntohs(addr.sin_port);
  208. xprt->xp_sock = sock;
  209. xprt_register(xprt);
  210. return (xprt);
  211. }
  212. /*
  213.  * Like svtcp_create(), except the routine takes any *open* UNIX file
  214.  * descriptor as its first input.
  215.  */
  216. SVCXPRT *
  217. svcfd_create(fd, sendsize, recvsize)
  218. int fd;
  219. u_int sendsize;
  220. u_int recvsize;
  221. {
  222. return (makefd_xprt(fd, sendsize, recvsize));
  223. }
  224. LOCAL SVCXPRT * /* 4.0 */
  225. makefd_xprt(fd, sendsize, recvsize)
  226. int fd;
  227. u_int sendsize;
  228. u_int recvsize;
  229. {
  230. register SVCXPRT *xprt;
  231. register struct tcp_conn *cd;
  232. xprt = (SVCXPRT *)mem_alloc(sizeof(SVCXPRT));
  233. if (xprt == (SVCXPRT *)NULL) {
  234. printErr ("svc_tcp: makefd_xprt: out of memoryn");
  235. goto done;
  236. }
  237. cd = (struct tcp_conn *)mem_alloc(sizeof(struct tcp_conn));
  238. if (cd == (struct tcp_conn *)NULL) {
  239. printErr ("svc_tcp: makefd_xprt: out of memoryn");
  240. mem_free((char *) xprt, sizeof(SVCXPRT));
  241. xprt = (SVCXPRT *)NULL;
  242. goto done;
  243. }
  244. cd->strm_stat = XPRT_IDLE;
  245. xdrrec_create(&(cd->xdrs), sendsize, recvsize,
  246.     (caddr_t)xprt, readtcp, writetcp);
  247. xprt->xp_p2 = NULL;
  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 */
  253. xprt->xp_sock = fd;
  254. xprt_register(xprt);
  255.     done:
  256. return (xprt);
  257. }
  258. LOCAL bool_t /* 4.0 */
  259. rendezvous_request(xprt)
  260. register SVCXPRT *xprt;
  261. {
  262. int sock;
  263. struct tcp_rendezvous *r;
  264. struct sockaddr_in addr;
  265. int len;
  266. r = (struct tcp_rendezvous *)xprt->xp_p1;
  267.     again:
  268. len = sizeof(struct sockaddr_in);
  269. if ((sock = accept(xprt->xp_sock, (struct sockaddr *)&addr,
  270.     &len)) < 0) {
  271. if (rpcErrnoGet () == EINTR)
  272. goto again;
  273.        return (FALSE);
  274. }
  275. /*
  276.  * make a new transporter (re-uses xprt)
  277.  */
  278. xprt = makefd_xprt(sock, r->sendsize, r->recvsize);
  279. xprt->xp_raddr = addr;
  280. xprt->xp_addrlen = len;
  281. return (FALSE); /* there is never an rpc msg to be processed */
  282. }
  283. LOCAL enum xprt_stat /* 4.0 */
  284. rendezvous_stat()
  285. {
  286. return (XPRT_IDLE);
  287. }
  288. LOCAL void /* 4.0 */
  289. svctcp_destroy(xprt)
  290. register SVCXPRT *xprt;
  291. {
  292. register struct tcp_conn *cd = (struct tcp_conn *)xprt->xp_p1;
  293. xprt_unregister(xprt);
  294. (void)close(xprt->xp_sock);
  295. if (xprt->xp_port != 0) {
  296. /* a rendezvouser socket */
  297. xprt->xp_port = 0;
  298. } else {
  299. /* an actual connection socket */
  300. XDR_DESTROY(&(cd->xdrs));
  301. }
  302. mem_free((caddr_t)cd, sizeof(struct tcp_conn));
  303. mem_free((caddr_t)xprt, sizeof(SVCXPRT));
  304. }
  305. /*
  306.  * All read operations timeout after 35 seconds.
  307.  * A timeout is fatal for the connection.
  308.  */
  309. static struct timeval wait_per_try = { 35, 0 };
  310. /*
  311.  * reads data from the tcp conection.
  312.  * any error is fatal and the connection is closed.
  313.  * (And a read of zero bytes is a half closed stream => error.)
  314.  */
  315. LOCAL int /* 4.0 */
  316. readtcp(xprt, buf, len)
  317. register SVCXPRT *xprt;
  318. caddr_t buf;
  319. register int len;
  320. {
  321. register int sock = xprt->xp_sock;
  322. fd_set mask; /* 4.0 */
  323. fd_set readFds;
  324. FD_ZERO (&mask); /* 4.0 */
  325. FD_SET (sock, &mask); /* 4.0 */
  326. do {
  327. readFds = mask; /* 4.0 */
  328. if (select (FD_SETSIZE, &readFds, (fd_set *)NULL,
  329.     (fd_set *)NULL, &wait_per_try) <= 0) {
  330. if (errnoGet () == EINTR)
  331.     continue;
  332. goto fatal_err;
  333. }
  334. } while (!FD_ISSET (sock, &readFds));
  335. if ((len = read(sock, buf, len)) > 0)
  336. return (len);
  337. fatal_err:
  338. ((struct tcp_conn *)(xprt->xp_p1))->strm_stat = XPRT_DIED;
  339. return (-1);
  340. }
  341. /*
  342.  * writes data to the tcp connection.
  343.  * Any error is fatal and the connection is closed.
  344.  */
  345. LOCAL int /* 4.0 */
  346. writetcp(xprt, buf, len)
  347. register SVCXPRT *xprt;
  348. caddr_t buf;
  349. int len;
  350. {
  351. register int i, cnt;
  352. for (cnt = len; cnt > 0; cnt -= i, buf += i) {
  353. if ((i = write(xprt->xp_sock, buf, cnt)) < 0) {
  354. ((struct tcp_conn *)(xprt->xp_p1))->strm_stat =
  355.     XPRT_DIED;
  356. return (-1);
  357. }
  358. }
  359. return (len);
  360. }
  361. LOCAL enum xprt_stat /* 4.0 */
  362. svctcp_stat(xprt)
  363. SVCXPRT *xprt;
  364. {
  365. register struct tcp_conn *cd =
  366.     (struct tcp_conn *)(xprt->xp_p1);
  367. if (cd->strm_stat == XPRT_DIED)
  368. return (XPRT_DIED);
  369. if (! xdrrec_eof(&(cd->xdrs)))
  370. return (XPRT_MOREREQS);
  371. return (XPRT_IDLE);
  372. }
  373. LOCAL bool_t /* 4.0 */
  374. svctcp_recv(xprt, msg)
  375. SVCXPRT *xprt;
  376. register struct rpc_msg *msg;
  377. {
  378. register struct tcp_conn *cd =
  379.     (struct tcp_conn *)(xprt->xp_p1);
  380. register XDR *xdrs = &(cd->xdrs);
  381. xdrs->x_op = XDR_DECODE;
  382. (void)xdrrec_skiprecord(xdrs);
  383. if (xdr_callmsg(xdrs, msg)) {
  384. cd->x_id = msg->rm_xid;
  385. return (TRUE);
  386. }
  387. return (FALSE);
  388. }
  389. LOCAL bool_t /* 4.0 */
  390. svctcp_getargs(xprt, xdr_args, args_ptr)
  391. SVCXPRT *xprt;
  392. xdrproc_t xdr_args;
  393. caddr_t args_ptr;
  394. {
  395. return ((*xdr_args)(&(((struct tcp_conn *)(xprt->xp_p1))->xdrs), args_ptr));
  396. }
  397. LOCAL bool_t /* 4.0 */
  398. svctcp_freeargs(xprt, xdr_args, args_ptr)
  399. SVCXPRT *xprt;
  400. xdrproc_t xdr_args;
  401. caddr_t args_ptr;
  402. {
  403. register XDR *xdrs =
  404.     &(((struct tcp_conn *)(xprt->xp_p1))->xdrs);
  405. xdrs->x_op = XDR_FREE;
  406. return ((*xdr_args)(xdrs, args_ptr));
  407. }
  408. LOCAL bool_t /* 4.0 */
  409. svctcp_reply(xprt, msg)
  410. SVCXPRT *xprt;
  411. register struct rpc_msg *msg;
  412. {
  413. register struct tcp_conn *cd =
  414.     (struct tcp_conn *)(xprt->xp_p1);
  415. register XDR *xdrs = &(cd->xdrs);
  416. register bool_t stat;
  417. xdrs->x_op = XDR_ENCODE;
  418. msg->rm_xid = cd->x_id;
  419. stat = xdr_replymsg(xdrs, msg);
  420. (void)xdrrec_endofrecord(xdrs, TRUE);
  421. return (stat);
  422. }