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

VxWorks

开发平台:

C/C++

  1. /* svc_udp.c - server side for UDP/IP based RPC */
  2. /* Copyright 1984-2001 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. 01p,05nov01,vvv  fixed compilation warnings
  38. 01o,18apr00,ham  fixed compilation warnings.
  39. 01n,15sep93,kdl  changed svcudp_create() to only take one parameter (SPR #2427).
  40. 01m,11aug93,jmm  Changed ioctl.h and socket.h to sys/ioctl.h and sys/socket.h
  41. 01l,04jun92,wmd  added forward declarations required for gcc960 v2.0.
  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,07oct90,hjb   deleted declaration of mem_alloc() due to problems with
  49.   ISI cpp complaining about macro argument.  Added include
  50.   of "memLib.h" instead.
  51. 01h,19jul90,dnw  changed declaration of mem_alloc() from char* to void*
  52.  added coercions to (char*) where necessary
  53. 01g,10may90,dnw  changed to use rpcErrnoGet instead of errnoGet
  54. 01f,19apr90,hjb  de-linted.
  55. 01e,27oct89,hjb  upgraded to 4.0
  56. 01d,30may88,dnw  changed to v4 names.
  57. 01c,05apr88,gae  changed fprintf() to printErr().
  58. 01b,11nov87,jlf  added wrs copyright, title, mod history, etc.
  59. 01a,01nov87,rdc  first VxWorks version
  60. */
  61. #ifndef lint
  62. /* static char sccsid[] = "@(#)svc_udp.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  63. #endif
  64. /*
  65.  * svc_udp.c,
  66.  * Server side for UDP/IP based RPC.  (Does some caching in the hopes of
  67.  * achieving execute-at-most-once semantics.)
  68.  *
  69.  */
  70. #include "rpc/rpctypes.h"
  71. #include "netinet/in.h"
  72. #include "sys/socket.h"
  73. #include "errno.h"
  74. #include "rpc/xdr.h"
  75. #include "rpc/auth.h"
  76. #include "rpc/clnt.h"
  77. #include "rpc/rpc_msg.h"
  78. #include "rpc/svc.h"
  79. #include "vxWorks.h"
  80. #include "memLib.h"
  81. #include "sockLib.h"
  82. #include "remLib.h"
  83. #include "ioLib.h"
  84. #include "stdio.h"
  85. #include "stdlib.h"
  86. #include "rpcLib.h"
  87. #ifdef BUFSIZ
  88. #undef BUFSIZ
  89. #endif
  90. #define BUFSIZ 1024
  91. #define rpc_buffer(xprt) ((xprt)->xp_p1)
  92. #define MAX(a, b)     ((a > b) ? a : b)
  93. LOCAL bool_t svcudp_recv();
  94. LOCAL bool_t svcudp_reply();
  95. LOCAL enum xprt_stat svcudp_stat();
  96. LOCAL bool_t svcudp_getargs();
  97. LOCAL bool_t svcudp_freeargs();
  98. LOCAL void svcudp_destroy();
  99. LOCAL int cache_get();
  100. LOCAL void cache_set();
  101. static struct xp_ops svcudp_op = {
  102. svcudp_recv,
  103. svcudp_stat,
  104. svcudp_getargs,
  105. svcudp_reply,
  106. svcudp_freeargs,
  107. svcudp_destroy
  108. };
  109. /*
  110.  * kept in xprt->xp_p2
  111.  */
  112. struct svcudp_data {
  113. u_int   su_iosz; /* byte size of send.recv buffer */
  114. u_long su_xid; /* transaction id */
  115. XDR su_xdrs; /* XDR handle */
  116. char su_verfbody[MAX_AUTH_BYTES]; /* verifier body */
  117. char   *su_cache; /* cached data, NULL if no cache - 4.0 */
  118. };
  119. #define su_data(xprt) ((struct svcudp_data *)(xprt->xp_p2))
  120. /*
  121.  * Usage:
  122.  * xprt = svcudp_create(sock);
  123.  *
  124.  * If sock<0 then a socket is created, else sock is used.
  125.  * If the socket, sock is not bound to a port then svcudp_create
  126.  * binds it to an arbitrary port.  In any (successful) case,
  127.  * xprt->xp_sock is the registered socket number and xprt->xp_port is the
  128.  * associated port number.
  129.  * Once *xprt is initialized, it is registered as a transporter;
  130.  * see (svc.h, xprt_register).
  131.  * The routines returns NULL if a problem occurred.
  132.  */
  133. SVCXPRT *
  134. svcudp_bufcreate(sock, sendsz, recvsz)
  135. register int sock;
  136. u_int sendsz, recvsz;
  137. {
  138. bool_t madesock = FALSE;
  139. register SVCXPRT *xprt;
  140. register struct svcudp_data *su;
  141. struct sockaddr_in addr;
  142. int len = sizeof(struct sockaddr_in);
  143. if (sock == RPC_ANYSOCK) {
  144. if ((sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) {
  145. perror("svcudp_create: socket creation problem");
  146. return ((SVCXPRT *)NULL);
  147. }
  148. madesock = TRUE;
  149. }
  150. bzero ((char *) &addr, sizeof (addr)); /* 4.0 */
  151. addr.sin_family = AF_INET;
  152. if (bindresvport (sock, &addr)) /* 4.0 */
  153.     { /* 4.0 */
  154.     addr.sin_port = 0; /* 4.0 */
  155.     (void)bind(sock, (struct sockaddr *)&addr, len); /* 4.0 */
  156.     } /* 4.0 */
  157. if (getsockname(sock, (struct sockaddr *)&addr, &len) != 0) {
  158. perror("svcudp_create - cannot getsockname");
  159. if (madesock)
  160. (void)close(sock);
  161. return ((SVCXPRT *)NULL);
  162. }
  163. xprt = (SVCXPRT *)mem_alloc(sizeof(SVCXPRT));
  164. if (xprt == NULL) {
  165. printErr ("svcudp_create: out of memoryn");
  166. return (NULL);
  167. }
  168. su = (struct svcudp_data *)mem_alloc(sizeof(*su));
  169. if (su == NULL) {
  170. printErr ("svcudp_create: out of memoryn");
  171. return (NULL);
  172. }
  173. su->su_iosz = ((MAX(sendsz, recvsz) + 3) / 4) * 4;
  174. if ((rpc_buffer(xprt) = (char *) mem_alloc(su->su_iosz)) == NULL) {
  175. printErr ("svcudp_create: out of memoryn");
  176. return (NULL);
  177. }
  178. xdrmem_create(
  179.     &(su->su_xdrs), rpc_buffer(xprt), su->su_iosz, XDR_DECODE);
  180. su->su_cache = NULL; /* 4.0 */
  181. xprt->xp_p2 = (caddr_t)su;
  182. xprt->xp_verf.oa_base = su->su_verfbody;
  183. xprt->xp_ops = &svcudp_op;
  184. xprt->xp_port = ntohs(addr.sin_port);
  185. xprt->xp_sock = sock;
  186. xprt_register(xprt);
  187. return (xprt);
  188. }
  189. /* ARGSUSED1 */
  190. SVCXPRT *
  191. svcudp_create(sock)
  192. int sock;
  193. {
  194. return(svcudp_bufcreate(sock, UDPMSGSIZE, UDPMSGSIZE));
  195. }
  196. /* ARGSUSED0 */
  197. LOCAL enum xprt_stat /* 4.0 */
  198. svcudp_stat(xprt)
  199. SVCXPRT *xprt;
  200. {
  201. return (XPRT_IDLE);
  202. }
  203. LOCAL bool_t /* 4.0 */
  204. svcudp_recv(xprt, msg)
  205. register SVCXPRT *xprt;
  206. struct rpc_msg *msg;
  207. {
  208. register struct svcudp_data *su = su_data(xprt);
  209. register XDR *xdrs = &(su->su_xdrs);
  210. register int rlen;
  211. char *reply; /* 4.0 */
  212. u_long replylen; /* 4.0 */
  213.     again:
  214. xprt->xp_addrlen = sizeof(struct sockaddr_in);
  215. rlen = recvfrom(xprt->xp_sock, rpc_buffer(xprt), (int) su->su_iosz,
  216.     0, (struct sockaddr *)&(xprt->xp_raddr), &(xprt->xp_addrlen));
  217. if (rlen == -1 && (rpcErrnoGet () == EINTR))
  218. goto again;
  219. if (rlen < 4*sizeof(u_long))
  220. return (FALSE);
  221. xdrs->x_op = XDR_DECODE;
  222. XDR_SETPOS(xdrs, 0);
  223. if (! xdr_callmsg(xdrs, msg))
  224. return (FALSE);
  225. su->su_xid = msg->rm_xid;
  226. if (su->su_cache != NULL) /* 4.0 */
  227.     { /* 4.0 */
  228.     if (cache_get (xprt, msg, &reply, &replylen)) /* 4.0 */
  229. { /* 4.0 */
  230. /* 4.0 */ (void) sendto (xprt->xp_sock, reply, (int) replylen, 0,
  231.        (struct sockaddr *) &xprt->xp_raddr, /* 4.0 */
  232.        xprt->xp_addrlen); /* 4.0 */
  233. } /* 4.0 */
  234.     } /* 4.0 */
  235. return (TRUE);
  236. }
  237. LOCAL bool_t /* 4.0 */
  238. svcudp_reply(xprt, msg)
  239. register SVCXPRT *xprt;
  240. struct rpc_msg *msg;
  241. {
  242. register struct svcudp_data *su = su_data(xprt);
  243. register XDR *xdrs = &(su->su_xdrs);
  244. register int slen;
  245. register bool_t stat = FALSE;
  246. xdrs->x_op = XDR_ENCODE;
  247. XDR_SETPOS(xdrs, 0);
  248. msg->rm_xid = su->su_xid;
  249. if (xdr_replymsg(xdrs, msg)) {
  250. slen = (int)XDR_GETPOS(xdrs);
  251. if (sendto(xprt->xp_sock, rpc_buffer(xprt), slen, 0,
  252.     (struct sockaddr *)&(xprt->xp_raddr), xprt->xp_addrlen)
  253.     == slen)
  254.     { /* 4.0 */
  255.     stat = TRUE;
  256.     if (su->su_cache && slen >= 0) /* 4.0 */
  257. { /* 4.0 */
  258. cache_set (xprt, (u_long) slen); /* 4.0 */
  259. } /* 4.0 */
  260.     } /* 4.0 */
  261. }
  262. return (stat);
  263. }
  264. LOCAL bool_t /* 4.0 */
  265. svcudp_getargs(xprt, xdr_args, args_ptr)
  266. SVCXPRT *xprt;
  267. xdrproc_t xdr_args;
  268. caddr_t args_ptr;
  269. {
  270. return ((*xdr_args)(&(su_data(xprt)->su_xdrs), args_ptr));
  271. }
  272. LOCAL bool_t /* 4.0 */
  273. svcudp_freeargs(xprt, xdr_args, args_ptr)
  274. SVCXPRT *xprt;
  275. xdrproc_t xdr_args;
  276. caddr_t args_ptr;
  277. {
  278. register XDR *xdrs = &(su_data(xprt)->su_xdrs);
  279. xdrs->x_op = XDR_FREE;
  280. return ((*xdr_args)(xdrs, args_ptr));
  281. }
  282. LOCAL void /* 4.0 */
  283. svcudp_destroy(xprt)
  284. register SVCXPRT *xprt;
  285. {
  286. register struct svcudp_data *su = su_data(xprt);
  287. xprt_unregister(xprt);
  288. (void)close(xprt->xp_sock);
  289. XDR_DESTROY(&(su->su_xdrs));
  290. mem_free(rpc_buffer(xprt), su->su_iosz);
  291. mem_free((caddr_t)su, sizeof(struct svcudp_data));
  292. mem_free((caddr_t)xprt, sizeof(SVCXPRT));
  293. }
  294. /******************* 4.0 additions ***************************/
  295. /*
  296.  * Fifo cache for udp server:
  297.  * Copies pointers to reply buffers into fifo cache.
  298.  * Buffers are sent again if retransmissions are detected.
  299.  */
  300. #define SPARSENESS 4 /* 75 % sparse */
  301. #define CACHE_PERROR(msg)  (void) printErr ("%sn", (msg))
  302. #define ALLOC(type, size)
  303. (type *) mem_alloc ((unsigned) (sizeof (type) * (size)))
  304. #define BZERO(addr, type, size)  
  305. bzero((char *) addr, sizeof(type) * (int) (size))
  306. /*
  307.  * An entry in the cache
  308.  */
  309. typedef struct cache_node *cache_ptr;
  310. struct cache_node {
  311. /*
  312.  * Index into cache is xid, proc, vers, prog and address
  313.  */
  314. u_long cache_xid;
  315. u_long cache_proc;
  316. u_long cache_vers;
  317. u_long cache_prog;
  318. struct sockaddr_in cache_addr;
  319. /*
  320.  * The cached reply and length
  321.  */
  322. char * cache_reply;
  323. u_long cache_replylen;
  324. /*
  325.    * Next node on the list, if there is a collision
  326.  */
  327. cache_ptr cache_next;
  328. };
  329. /*
  330.  * The entire cache
  331.  */
  332. struct udp_cache {
  333. u_long uc_size; /* size of cache */
  334. cache_ptr *uc_entries; /* hash table of entries in cache */
  335. cache_ptr *uc_fifo; /* fifo list of entries in cache */
  336. u_long uc_nextvictim; /* points to next victim in fifo list */
  337. u_long uc_prog; /* saved program number */
  338. u_long uc_vers; /* saved version number */
  339. u_long uc_proc; /* saved procedure number */
  340. struct sockaddr_in uc_addr; /* saved caller's address */
  341. };
  342. /*
  343.  * the hashing function
  344.  */
  345. #define CACHE_LOC(transp, xid)
  346.  (xid % (SPARSENESS*((struct udp_cache *) su_data(transp)->su_cache)->uc_size))
  347. /*
  348.  * Enable use of the cache.
  349.  * Note: there is no disable.
  350.  */
  351. int
  352. svcudp_enablecache(transp, size)
  353. SVCXPRT *transp;
  354. u_long size;
  355. {
  356. struct svcudp_data *su = su_data(transp);
  357. struct udp_cache *uc;
  358. if (su->su_cache != NULL) {
  359. CACHE_PERROR("enablecache: cache already enabled");
  360. return(0);
  361. }
  362. uc = ALLOC(struct udp_cache, 1);
  363. if (uc == NULL) {
  364. CACHE_PERROR("enablecache: could not allocate cache");
  365. return(0);
  366. }
  367. uc->uc_size = size;
  368. uc->uc_nextvictim = 0;
  369. uc->uc_entries = ALLOC(cache_ptr, size * SPARSENESS);
  370. if (uc->uc_entries == NULL) {
  371. CACHE_PERROR("enablecache: could not allocate cache data");
  372. return(0);
  373. }
  374. BZERO(uc->uc_entries, cache_ptr, size * SPARSENESS);
  375. uc->uc_fifo = ALLOC(cache_ptr, size);
  376. if (uc->uc_fifo == NULL) {
  377. CACHE_PERROR("enablecache: could not allocate cache fifo");
  378. return(0);
  379. }
  380. BZERO(uc->uc_fifo, cache_ptr, size);
  381. su->su_cache = (char *) uc;
  382. return(1);
  383. }
  384. /*
  385.  * Set an entry in the cache
  386.  */
  387. static void
  388. cache_set(xprt, replylen)
  389. SVCXPRT *xprt;
  390. u_long replylen;
  391. {
  392. register cache_ptr victim;
  393. register cache_ptr *vicp;
  394. register struct svcudp_data *su = su_data(xprt);
  395. struct udp_cache *uc = (struct udp_cache *) su->su_cache;
  396. u_int loc;
  397. char *newbuf;
  398. /*
  399.    * Find space for the new entry, either by
  400.  * reusing an old entry, or by mallocing a new one
  401.  */
  402. victim = uc->uc_fifo[uc->uc_nextvictim];
  403. if (victim != NULL) {
  404. loc = CACHE_LOC(xprt, victim->cache_xid);
  405. for (vicp = &uc->uc_entries[loc];
  406.   *vicp != NULL && *vicp != victim;
  407.   vicp = &(*vicp)->cache_next)
  408. ;
  409. if (*vicp == NULL) {
  410. CACHE_PERROR("cache_set: victim not found");
  411. return;
  412. }
  413. *vicp = victim->cache_next; /* remote from cache */
  414. newbuf = victim->cache_reply;
  415. } else {
  416. victim = ALLOC(struct cache_node, 1);
  417. if (victim == NULL) {
  418. CACHE_PERROR("cache_set: victim alloc failed");
  419. return;
  420. }
  421. newbuf = (char *) mem_alloc(su->su_iosz);
  422. if (newbuf == NULL) {
  423. CACHE_PERROR("cache_set: could not allocate new rpc_buffer");
  424. return;
  425. }
  426. }
  427. /*
  428.  * Store it away
  429.  */
  430. victim->cache_replylen = replylen;
  431. victim->cache_reply = rpc_buffer(xprt);
  432. rpc_buffer(xprt) = newbuf;
  433. xdrmem_create(&(su->su_xdrs), rpc_buffer(xprt), su->su_iosz, XDR_ENCODE);
  434. victim->cache_xid = su->su_xid;
  435. victim->cache_proc = uc->uc_proc;
  436. victim->cache_vers = uc->uc_vers;
  437. victim->cache_prog = uc->uc_prog;
  438. victim->cache_addr = uc->uc_addr;
  439. loc = CACHE_LOC(xprt, victim->cache_xid);
  440. victim->cache_next = uc->uc_entries[loc];
  441. uc->uc_entries[loc] = victim;
  442. uc->uc_fifo[uc->uc_nextvictim++] = victim;
  443. uc->uc_nextvictim %= uc->uc_size;
  444. }
  445. /*
  446.  * Try to get an entry from the cache
  447.  * return 1 if found, 0 if not found
  448.  */
  449. static int
  450. cache_get(xprt, msg, replyp, replylenp)
  451. SVCXPRT *xprt;
  452. struct rpc_msg *msg;
  453. char **replyp;
  454. u_long *replylenp;
  455. {
  456. u_int loc;
  457. register cache_ptr ent;
  458. register struct svcudp_data *su = su_data(xprt);
  459. register struct udp_cache *uc = (struct udp_cache *) su->su_cache;
  460. # define EQADDR(a1, a2) (bcmp((char*)&a1, (char*)&a2, sizeof(a1)) == 0)
  461. loc = CACHE_LOC(xprt, su->su_xid);
  462. for (ent = uc->uc_entries[loc]; ent != NULL; ent = ent->cache_next) {
  463. if (ent->cache_xid == su->su_xid &&
  464.   ent->cache_proc == uc->uc_proc &&
  465.   ent->cache_vers == uc->uc_vers &&
  466.   ent->cache_prog == uc->uc_prog &&
  467.   EQADDR(ent->cache_addr, uc->uc_addr)) {
  468. *replyp = ent->cache_reply;
  469. *replylenp = ent->cache_replylen;
  470. return(1);
  471. }
  472. }
  473. /*
  474.  * Failed to find entry
  475.  * Remember a few things so we can do a set later
  476.  */
  477. uc->uc_proc = msg->rm_call.cb_proc;
  478. uc->uc_vers = msg->rm_call.cb_vers;
  479. uc->uc_prog = msg->rm_call.cb_prog;
  480. uc->uc_addr = xprt->xp_raddr;
  481. return(0);
  482. }
  483. /************************ 4.0 additions **********************************/