]> git.decadent.org.uk Git - nfs-utils.git/blob - support/include/nfsrpc.h
getport: Clear shared error fields before trying rpcbind queries
[nfs-utils.git] / support / include / nfsrpc.h
1 /*
2  * nfsrpc.h -- RPC client APIs provided by support/nfs
3  *
4  * Copyright (C) 2008 Oracle Corporation.  All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA.
20  *
21  */
22
23 #ifndef __NFS_UTILS_NFSRPC_H
24 #define __NFS_UTILS_NFSRPC_H
25
26 #include <rpc/types.h>
27 #include <rpc/clnt.h>
28
29 /*
30  * Conventional RPC program numbers
31  */
32 #ifndef RPCBPROG
33 #define RPCBPROG        ((rpcprog_t)100000)
34 #endif
35 #ifndef PMAPPROG
36 #define PMAPPROG        ((rpcprog_t)100000)
37 #endif
38
39 #ifndef NFSPROG
40 #define NFSPROG         ((rpcprog_t)100003)
41 #endif
42 #ifndef MOUNTPROG
43 #define MOUNTPROG       ((rpcprog_t)100005)
44 #endif
45 #ifndef NLMPROG
46 #define NLMPROG         ((rpcprog_t)100021)
47 #endif
48 #ifndef NSMPROG
49 #define NSMPROG         ((rpcprog_t)100024)
50 #endif
51
52 /**
53  * nfs_clear_rpc_createerr - zap all error reporting fields
54  *
55  */
56 static inline void nfs_clear_rpc_createerr(void)
57 {
58         memset(&rpc_createerr, 0, sizeof(rpc_createerr));
59 }
60
61 /*
62  * Look up an RPC program name in /etc/rpc
63  */
64 extern rpcprog_t        nfs_getrpcbyname(const rpcprog_t, const char *table[]);
65
66 /*
67  * Acquire an RPC CLIENT * with an ephemeral source port
68  */
69 extern CLIENT           *nfs_get_rpcclient(const struct sockaddr *,
70                                 const socklen_t, const unsigned short,
71                                 const rpcprog_t, const rpcvers_t,
72                                 struct timeval *);
73
74 /*
75  * Acquire an RPC CLIENT * with a privileged source port
76  */
77 extern CLIENT           *nfs_get_priv_rpcclient( const struct sockaddr *,
78                                 const socklen_t, const unsigned short,
79                                 const rpcprog_t, const rpcvers_t,
80                                 struct timeval *);
81
82 /*
83  * Convert a socket address to a universal address
84  */
85 extern char             *nfs_sockaddr2universal(const struct sockaddr *);
86
87 /*
88  * Extract port number from a universal address
89  */
90 extern int              nfs_universal2port(const char *);
91
92 /*
93  * Generic function that maps an RPC service tuple to an IP port
94  * number of the service on a remote post, and sends a NULL
95  * request to determine if the service is responding to requests
96  */
97 extern int              nfs_getport_ping(struct sockaddr *sap,
98                                 const socklen_t salen,
99                                 const rpcprog_t program,
100                                 const rpcvers_t version,
101                                 const unsigned short protocol);
102
103 /*
104  * Generic function that maps an RPC service tuple to an IP port
105  * number of the service on a remote host
106  */
107 extern unsigned short   nfs_getport(const struct sockaddr *,
108                                 const socklen_t, const rpcprog_t,
109                                 const rpcvers_t, const unsigned short);
110
111 /*
112  * Generic function that maps an RPC service tuple to an IP port
113  * number of the service on the local host
114  */
115 extern unsigned short   nfs_getlocalport(const rpcprot_t,
116                                 const rpcvers_t, const unsigned short);
117
118 /*
119  * Function to invoke an rpcbind v3/v4 GETADDR request
120  */
121 extern unsigned short   nfs_rpcb_getaddr(const struct sockaddr *,
122                                 const socklen_t,
123                                 const unsigned short,
124                                 const struct sockaddr *,
125                                 const rpcprog_t,
126                                 const rpcvers_t,
127                                 const unsigned short,
128                                 const struct timeval *);
129
130 /*
131  * Function to invoke a portmap GETPORT request
132  */
133 extern unsigned long    nfs_pmap_getport(const struct sockaddr_in *,
134                                 const unsigned short,
135                                 const unsigned long,
136                                 const unsigned long,
137                                 const unsigned long,
138                                 const struct timeval *);
139
140 /*
141  * Contact a remote RPC service to discover whether it is responding
142  * to requests.
143  */
144 extern int              nfs_rpc_ping(const struct sockaddr *sap,
145                                 const socklen_t salen,
146                                 const rpcprog_t program,
147                                 const rpcvers_t version,
148                                 const unsigned short protocol,
149                                 const struct timeval *timeout);
150
151 #endif  /* __NFS_UTILS_NFSRPC_H */