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

VxWorks

开发平台:

C/C++

  1. /* pmap_getport.c - client interface to pmap rpc service */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  * Copyright (c) 1987 Wind River Systems, Inc.
  6.  * Copyright (C) 1984, Sun Microsystems, Inc.
  7.  *
  8.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  9.  * unrestricted use provided that this legend is included on all tape
  10.  * media and as a part of the software program in whole or part.  Users
  11.  * may copy or modify Sun RPC without charge, but are not authorized
  12.  * to license or distribute it to anyone else except as part of a product or
  13.  * program developed by the user.
  14.  *
  15.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  16.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  17.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  18.  *
  19.  * Sun RPC is provided with no support and without any obligation on the
  20.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  21.  * modification or enhancement.
  22.  *
  23.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  24.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  25.  * OR ANY PART THEREOF.
  26.  *
  27.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  28.  * or profits or other special, indirect and consequential damages, even if
  29.  * Sun has been advised of the possibility of such damages.
  30.  *
  31.  * Sun Microsystems, Inc.
  32.  * 2550 Garcia Avenue
  33.  * Mountain View, California  94043
  34.  */
  35. /*
  36. modification history
  37. --------------------
  38. 01j,11aug93,jmm  Changed ioctl.h and socket.h to sys/ioctl.h and sys/socket.h
  39. 01i,26may92,rrr  the tree shuffle
  40.   -changed includes to have absolute path from h/
  41. 01h,04oct91,rrr  passed through the ansification filter
  42.   -changed includes to have absolute path from h/
  43.   -changed copyright notice
  44. 01g,25oct90,dnw  removed include of utime.h.
  45. 01f,26jun90,hjb  removed sccsid[].
  46. 01e,10may90,dnw  changed taskModuleList->rpccreateerr to rpccreateerr macro
  47.  removed close() of socket which ALWAYS failed (see comment
  48.     in code).
  49. 01d,19apr90,hjb  de-linted.
  50. 01c,18mar90,jcf  fixed header dependency.
  51. 01b,11nov87,jlf  added wrs copyright, title, mod history, etc.
  52. 01a,01nov87,rdc  first VxWorks version
  53. */
  54. #ifndef lint
  55. /* static char sccsid[] = "@(#)pmap_getport.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  56. #endif
  57. /*
  58.  * pmap_getport.c
  59.  * Client interface to pmap rpc service.
  60.  *
  61.  */
  62. #include "rpc/rpctypes.h"
  63. #include "netinet/in.h"
  64. #include "rpc/xdr.h"
  65. #include "rpc/auth.h"
  66. #include "rpc/clnt.h"
  67. #include "rpc/rpc_msg.h"
  68. #include "rpc/pmap_prot.h"
  69. #include "rpc/pmap_clnt.h"
  70. #include "sys/socket.h"
  71. #include "vxWorks.h"
  72. #include "net/if.h"
  73. #include "sys/ioctl.h"
  74. #include "rpc/rpcGbl.h"
  75. #define NAMELEN 255
  76. static struct timeval timeout = { 5, 0 };
  77. static struct timeval tottimeout = { 60, 0 };
  78. /*
  79.  * Find the mapped port for program,version.
  80.  * Calls the pmap service remotely to do the lookup.
  81.  * Returns 0 if no map exists.
  82.  */
  83. u_short
  84. pmap_getport(address, program, version, protocol)
  85. struct sockaddr_in *address;
  86. u_long program;
  87. u_long version;
  88. u_long protocol;
  89. {
  90. u_short port = 0;
  91. int socket = -1;
  92. register CLIENT *client;
  93. struct pmap parms;
  94. address->sin_port = htons((u_short) PMAPPORT);
  95. client = clntudp_bufcreate(address, PMAPPROG,
  96.     PMAPVERS, timeout, &socket, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
  97. if (client != (CLIENT *)NULL) {
  98. parms.pm_prog = program;
  99. parms.pm_vers = version;
  100. parms.pm_prot = protocol;
  101. parms.pm_port = 0;  /* not needed or used */
  102. if (CLNT_CALL(client, PMAPPROC_GETPORT, xdr_pmap, &parms,
  103.     xdr_u_short, &port, tottimeout) != RPC_SUCCESS){
  104. rpc_createerr.cf_stat = RPC_PMAPFAILURE;
  105. clnt_geterr(client, &rpc_createerr.cf_error);
  106. } else if (port == 0) {
  107. rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
  108. }
  109. CLNT_DESTROY(client);
  110. }
  111. /* XXX
  112.  * the following close ALWAYS fails because either the
  113.  * bufcreate failed, in which case no socket was opened,
  114.  * or the bufcreate succeeded, in which case CLNT_DESTROY
  115.  * was called, which closed the socket.
  116.  */
  117. /* (void)close(socket); */
  118. address->sin_port = 0;
  119. return (port);
  120. }