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.
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.
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.
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.
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.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
29 * @(#)pmap_clnt.c 1.37 87/08/11 Copyr 1984 Sun Micro
30 * @(#)pmap_clnt.c 2.2 88/08/01 4.0 RPCSRC
31 * $FreeBSD: src/lib/libc/rpc/pmap_clnt.c,v 1.11 2000/01/27 23:06:39 jasone Exp $
32 * $DragonFly: src/lib/libc/rpc/pmap_clnt.c,v 1.5 2005/11/13 12:27:04 swildner Exp $
37 * Client interface to pmap rpc service.
39 * Copyright (C) 1984, Sun Microsystems, Inc.
42 #include "namespace.h"
43 #include <sys/types.h>
47 #include <rpc/pmap_prot.h>
48 #include <rpc/pmap_clnt.h>
49 #include <netinet/in.h>
50 #include "un-namespace.h"
52 static struct timeval timeout
= { 5, 0 };
53 static struct timeval tottimeout
= { 60, 0 };
58 #define PORTMAPSOCK "/var/run/portmapsock"
62 * Set a mapping between program,version and port.
63 * Calls the pmap service remotely to do the mapping.
66 pmap_set(u_long program
, u_long version
, int protocol
, u_short port
)
68 struct sockaddr_in myaddress
;
76 * Temporary hack for backwards compatibility. Eventually
77 * this test will go away and we'll use only the "unix" transport.
79 if (stat(PORTMAPSOCK
, &st
) == 0 && st
.st_mode
& S_IFSOCK
)
80 client
= clnt_create(PORTMAPSOCK
, PMAPPROG
, PMAPVERS
, "unix");
82 if (get_myaddress(&myaddress
) != 0)
84 myaddress
.sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
);
85 client
= clntudp_bufcreate(&myaddress
, PMAPPROG
, PMAPVERS
,
86 timeout
, &socket
, RPCSMALLMSGSIZE
, RPCSMALLMSGSIZE
);
89 if (client
== (CLIENT
*)NULL
)
91 parms
.pm_prog
= program
;
92 parms
.pm_vers
= version
;
93 parms
.pm_prot
= protocol
;
95 if (CLNT_CALL(client
, PMAPPROC_SET
, xdr_pmap
, &parms
, xdr_bool
, &rslt
,
96 tottimeout
) != RPC_SUCCESS
) {
97 clnt_perror(client
, "Cannot register service");
100 CLNT_DESTROY(client
);
107 * Remove the mapping between program,version and port.
108 * Calls the pmap service remotely to do the un-mapping.
111 pmap_unset(u_long program
, u_long version
)
113 struct sockaddr_in myaddress
;
121 * Temporary hack for backwards compatibility. Eventually
122 * this test will go away and we'll use only the "unix" transport.
124 if (stat(PORTMAPSOCK
, &st
) == 0 && st
.st_mode
& S_IFSOCK
)
125 client
= clnt_create(PORTMAPSOCK
, PMAPPROG
, PMAPVERS
, "unix");
127 if (get_myaddress(&myaddress
) != 0)
129 myaddress
.sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
);
130 client
= clntudp_bufcreate(&myaddress
, PMAPPROG
, PMAPVERS
,
131 timeout
, &socket
, RPCSMALLMSGSIZE
, RPCSMALLMSGSIZE
);
133 if (client
== (CLIENT
*)NULL
)
135 parms
.pm_prog
= program
;
136 parms
.pm_vers
= version
;
137 parms
.pm_port
= parms
.pm_prot
= 0;
138 CLNT_CALL(client
, PMAPPROC_UNSET
, xdr_pmap
, &parms
, xdr_bool
, &rslt
,
140 CLNT_DESTROY(client
);