pmap_clnt.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  3. * unrestricted use provided that this legend is included on all tape
  4. * media and as a part of the software program in whole or part. Users
  5. * may copy or modify Sun RPC without charge, but are not authorized
  6. * to license or distribute it to anyone else except as part of a product or
  7. * program developed by the user.
  8. *
  9. * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  10. * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  11. * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  12. *
  13. * Sun RPC is provided with no support and without any obligation on the
  14. * part of Sun Microsystems, Inc. to assist in its use, correction,
  15. * modification or enhancement.
  16. *
  17. * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  18. * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  19. * OR ANY PART THEREOF.
  20. *
  21. * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  22. * or profits or other special, indirect and consequential damages, even if
  23. * Sun has been advised of the possibility of such damages.
  24. *
  25. * Sun Microsystems, Inc.
  26. * 2550 Garcia Avenue
  27. * Mountain View, California 94043
  28. */
  29. /*
  30. * Copyright (C) 1984, Sun Microsystems, Inc.
  31. */
  32. /*
  33. * pmap_clnt.c
  34. * Client interface to pmap rpc service.
  35. */
  36. #define clnt_perror __clnt_perror
  37. #define clntudp_bufcreate __clntudp_bufcreate
  38. #define __FORCE_GLIBC
  39. #include <features.h>
  40. #include <stdio.h>
  41. #include <unistd.h>
  42. #include <net/if.h>
  43. #include <sys/ioctl.h>
  44. #include <sys/socket.h>
  45. #include <netinet/in.h>
  46. #include <arpa/inet.h>
  47. #include <rpc/rpc.h>
  48. #include <rpc/pmap_prot.h>
  49. #include <rpc/pmap_clnt.h>
  50. /*
  51. * Same as get_myaddress, but we try to use the loopback
  52. * interface. portmap caches interfaces, and on DHCP clients,
  53. * it could be that only loopback is started at this time.
  54. */
  55. static bool_t
  56. __get_myaddress (struct sockaddr_in *addr)
  57. {
  58. int s;
  59. char buf[BUFSIZ];
  60. struct ifconf ifc;
  61. struct ifreq ifreq, *ifr;
  62. int len, loopback = 1;
  63. if ((s = socket (AF_INET, SOCK_DGRAM, 0)) < 0)
  64. {
  65. __perror ("__get_myaddress: socket");
  66. exit (1);
  67. }
  68. ifc.ifc_len = sizeof (buf);
  69. ifc.ifc_buf = buf;
  70. if (ioctl (s, SIOCGIFCONF, (char *) &ifc) < 0)
  71. {
  72. __perror (_("__get_myaddress: ioctl (get interface configuration)"));
  73. exit (1);
  74. }
  75. again:
  76. ifr = ifc.ifc_req;
  77. for (len = ifc.ifc_len; len; len -= sizeof ifreq)
  78. {
  79. ifreq = *ifr;
  80. if (ioctl (s, SIOCGIFFLAGS, (char *) &ifreq) < 0)
  81. {
  82. __perror ("__get_myaddress: ioctl");
  83. exit (1);
  84. }
  85. if ((ifreq.ifr_flags & IFF_UP) && (ifr->ifr_addr.sa_family == AF_INET)
  86. && ((ifreq.ifr_flags & IFF_LOOPBACK) || (loopback == 0)))
  87. {
  88. *addr = *((struct sockaddr_in *) &ifr->ifr_addr);
  89. addr->sin_port = htons (PMAPPORT);
  90. __close (s);
  91. return TRUE;
  92. }
  93. ifr++;
  94. }
  95. if (loopback == 1)
  96. {
  97. loopback = 0;
  98. goto again;
  99. }
  100. __close (s);
  101. return FALSE;
  102. }
  103. static const struct timeval timeout = {5, 0};
  104. static const struct timeval tottimeout = {60, 0};
  105. /*
  106. * Set a mapping between program,version and port.
  107. * Calls the pmap service remotely to do the mapping.
  108. */
  109. bool_t attribute_hidden
  110. __pmap_set (u_long program, u_long version, int protocol, u_short port)
  111. {
  112. struct sockaddr_in myaddress;
  113. int socket = -1;
  114. CLIENT *client;
  115. struct pmap parms;
  116. bool_t rslt;
  117. if (!__get_myaddress (&myaddress))
  118. return FALSE;
  119. client = clntudp_bufcreate (&myaddress, PMAPPROG, PMAPVERS,
  120. timeout, &socket, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
  121. if (client == (CLIENT *) NULL)
  122. return (FALSE);
  123. parms.pm_prog = program;
  124. parms.pm_vers = version;
  125. parms.pm_prot = protocol;
  126. parms.pm_port = port;
  127. if (CLNT_CALL (client, PMAPPROC_SET, (xdrproc_t)xdr_pmap, (caddr_t)&parms,
  128. (xdrproc_t)xdr_bool, (caddr_t)&rslt,
  129. tottimeout) != RPC_SUCCESS)
  130. {
  131. clnt_perror (client, _("Cannot register service"));
  132. return FALSE;
  133. }
  134. CLNT_DESTROY (client);
  135. /* (void)__close(socket); CLNT_DESTROY closes it */
  136. return rslt;
  137. }
  138. strong_alias(__pmap_set,pmap_set)
  139. /*
  140. * Remove the mapping between program,version and port.
  141. * Calls the pmap service remotely to do the un-mapping.
  142. */
  143. bool_t attribute_hidden
  144. __pmap_unset (u_long program, u_long version)
  145. {
  146. struct sockaddr_in myaddress;
  147. int socket = -1;
  148. CLIENT *client;
  149. struct pmap parms;
  150. bool_t rslt;
  151. if (!__get_myaddress (&myaddress))
  152. return FALSE;
  153. client = clntudp_bufcreate (&myaddress, PMAPPROG, PMAPVERS,
  154. timeout, &socket, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
  155. if (client == (CLIENT *) NULL)
  156. return FALSE;
  157. parms.pm_prog = program;
  158. parms.pm_vers = version;
  159. parms.pm_port = parms.pm_prot = 0;
  160. CLNT_CALL (client, PMAPPROC_UNSET, (xdrproc_t)xdr_pmap, (caddr_t)&parms,
  161. (xdrproc_t)xdr_bool, (caddr_t)&rslt, tottimeout);
  162. CLNT_DESTROY (client);
  163. /* (void)__close(socket); CLNT_DESTROY already closed it */
  164. return rslt;
  165. }
  166. strong_alias(__pmap_unset,pmap_unset)