pmap_clnt.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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 __FORCE_GLIBC
  37. #include <features.h>
  38. #include <stdio.h>
  39. #include <unistd.h>
  40. #include <net/if.h>
  41. #include <sys/ioctl.h>
  42. #include <sys/socket.h>
  43. #include <netinet/in.h>
  44. #include <arpa/inet.h>
  45. #include <rpc/rpc.h>
  46. #include <rpc/pmap_prot.h>
  47. #include <rpc/pmap_clnt.h>
  48. libc_hidden_proto(ioctl)
  49. libc_hidden_proto(socket)
  50. libc_hidden_proto(close)
  51. libc_hidden_proto(perror)
  52. libc_hidden_proto(exit)
  53. libc_hidden_proto(clnt_perror)
  54. libc_hidden_proto(clntudp_bufcreate)
  55. libc_hidden_proto(xdr_bool)
  56. /*
  57. * Same as get_myaddress, but we try to use the loopback
  58. * interface. portmap caches interfaces, and on DHCP clients,
  59. * it could be that only loopback is started at this time.
  60. */
  61. static bool_t
  62. __get_myaddress (struct sockaddr_in *addr)
  63. {
  64. int s;
  65. char buf[BUFSIZ];
  66. struct ifconf ifc;
  67. struct ifreq ifreq, *ifr;
  68. int len, loopback = 1;
  69. if ((s = socket (AF_INET, SOCK_DGRAM, 0)) < 0)
  70. {
  71. perror ("__get_myaddress: socket");
  72. exit (1);
  73. }
  74. ifc.ifc_len = sizeof (buf);
  75. ifc.ifc_buf = buf;
  76. if (ioctl (s, SIOCGIFCONF, (char *) &ifc) < 0)
  77. {
  78. perror (_("__get_myaddress: ioctl (get interface configuration)"));
  79. exit (1);
  80. }
  81. again:
  82. ifr = ifc.ifc_req;
  83. for (len = ifc.ifc_len; len; len -= sizeof ifreq)
  84. {
  85. ifreq = *ifr;
  86. if (ioctl (s, SIOCGIFFLAGS, (char *) &ifreq) < 0)
  87. {
  88. perror ("__get_myaddress: ioctl");
  89. exit (1);
  90. }
  91. if ((ifreq.ifr_flags & IFF_UP) && (ifr->ifr_addr.sa_family == AF_INET)
  92. && ((ifreq.ifr_flags & IFF_LOOPBACK) || (loopback == 0)))
  93. {
  94. *addr = *((struct sockaddr_in *) &ifr->ifr_addr);
  95. addr->sin_port = htons (PMAPPORT);
  96. close (s);
  97. return TRUE;
  98. }
  99. ifr++;
  100. }
  101. if (loopback == 1)
  102. {
  103. loopback = 0;
  104. goto again;
  105. }
  106. close (s);
  107. return FALSE;
  108. }
  109. static const struct timeval timeout = {5, 0};
  110. static const struct timeval tottimeout = {60, 0};
  111. /*
  112. * Set a mapping between program,version and port.
  113. * Calls the pmap service remotely to do the mapping.
  114. */
  115. libc_hidden_proto(pmap_set)
  116. bool_t
  117. pmap_set (u_long program, u_long version, int protocol, u_short port)
  118. {
  119. struct sockaddr_in myaddress;
  120. int socket = -1;
  121. CLIENT *client;
  122. struct pmap parms;
  123. bool_t rslt;
  124. if (!__get_myaddress (&myaddress))
  125. return FALSE;
  126. client = clntudp_bufcreate (&myaddress, PMAPPROG, PMAPVERS,
  127. timeout, &socket, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
  128. if (client == (CLIENT *) NULL)
  129. return (FALSE);
  130. parms.pm_prog = program;
  131. parms.pm_vers = version;
  132. parms.pm_prot = protocol;
  133. parms.pm_port = port;
  134. if (CLNT_CALL (client, PMAPPROC_SET, (xdrproc_t)xdr_pmap, (caddr_t)&parms,
  135. (xdrproc_t)xdr_bool, (caddr_t)&rslt,
  136. tottimeout) != RPC_SUCCESS)
  137. {
  138. clnt_perror (client, _("Cannot register service"));
  139. return FALSE;
  140. }
  141. CLNT_DESTROY (client);
  142. /* (void)close(socket); CLNT_DESTROY closes it */
  143. return rslt;
  144. }
  145. libc_hidden_def(pmap_set)
  146. /*
  147. * Remove the mapping between program,version and port.
  148. * Calls the pmap service remotely to do the un-mapping.
  149. */
  150. libc_hidden_proto(pmap_unset)
  151. bool_t
  152. pmap_unset (u_long program, u_long version)
  153. {
  154. struct sockaddr_in myaddress;
  155. int socket = -1;
  156. CLIENT *client;
  157. struct pmap parms;
  158. bool_t rslt;
  159. if (!__get_myaddress (&myaddress))
  160. return FALSE;
  161. client = clntudp_bufcreate (&myaddress, PMAPPROG, PMAPVERS,
  162. timeout, &socket, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
  163. if (client == (CLIENT *) NULL)
  164. return FALSE;
  165. parms.pm_prog = program;
  166. parms.pm_vers = version;
  167. parms.pm_port = parms.pm_prot = 0;
  168. CLNT_CALL (client, PMAPPROC_UNSET, (xdrproc_t)xdr_pmap, (caddr_t)&parms,
  169. (xdrproc_t)xdr_bool, (caddr_t)&rslt, tottimeout);
  170. CLNT_DESTROY (client);
  171. /* (void)close(socket); CLNT_DESTROY already closed it */
  172. return rslt;
  173. }
  174. libc_hidden_def(pmap_unset)