xref: /freebsd/lib/libc/rpc/rpcb_st_xdr.c (revision 1d386b48)
1 /*	$NetBSD: rpcb_st_xdr.c,v 1.3 2000/07/14 08:40:42 fvdl Exp $	*/
2 
3 /*-
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  * Copyright (c) 2009, Sun Microsystems, Inc.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions are met:
11  * - Redistributions of source code must retain the above copyright notice,
12  *   this list of conditions and the following disclaimer.
13  * - Redistributions in binary form must reproduce the above copyright notice,
14  *   this list of conditions and the following disclaimer in the documentation
15  *   and/or other materials provided with the distribution.
16  * - Neither the name of Sun Microsystems, Inc. nor the names of its
17  *   contributors may be used to endorse or promote products derived
18  *   from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 /*
33  * Copyright 1991 Sun Microsystems, Inc.
34  * rpcb_stat_xdr.c
35  */
36 
37 /*
38  * This file was generated from rpcb_prot.x, but includes only those
39  * routines used with the rpcbind stats facility.
40  */
41 
42 #include <sys/cdefs.h>
43 #include "namespace.h"
44 #include <rpc/rpc.h>
45 #include <rpc/rpc_com.h>
46 #include "un-namespace.h"
47 
48 /* Link list of all the stats about getport and getaddr */
49 
50 bool_t
51 xdr_rpcbs_addrlist(XDR *xdrs, rpcbs_addrlist *objp)
52 {
53 	struct rpcbs_addrlist **pnext;
54 
55 	if (!xdr_rpcprog(xdrs, &objp->prog)) {
56 		return (FALSE);
57 	}
58 	if (!xdr_rpcvers(xdrs, &objp->vers)) {
59 		return (FALSE);
60 	}
61 	if (!xdr_int(xdrs, &objp->success)) {
62 		return (FALSE);
63 	}
64 	if (!xdr_int(xdrs, &objp->failure)) {
65 		return (FALSE);
66 	}
67 	if (!xdr_string(xdrs, &objp->netid, RPC_MAXDATASIZE)) {
68 		return (FALSE);
69 	}
70 
71 	pnext = &objp->next;
72 	if (!xdr_pointer(xdrs, (char **) pnext,
73 			sizeof (rpcbs_addrlist),
74 			(xdrproc_t)xdr_rpcbs_addrlist)) {
75 		return (FALSE);
76 	}
77 
78 	return (TRUE);
79 }
80 
81 /* Link list of all the stats about rmtcall */
82 
83 bool_t
84 xdr_rpcbs_rmtcalllist(XDR *xdrs, rpcbs_rmtcalllist *objp)
85 {
86 	struct rpcbs_rmtcalllist **pnext;
87 	int32_t *buf;
88 
89 	pnext = &objp->next;
90 	if (xdrs->x_op == XDR_ENCODE) {
91 		buf = XDR_INLINE(xdrs, 6 * BYTES_PER_XDR_UNIT);
92 		if (buf == NULL) {
93 			if (!xdr_rpcprog(xdrs, &objp->prog)) {
94 				return (FALSE);
95 			}
96 			if (!xdr_rpcvers(xdrs, &objp->vers)) {
97 				return (FALSE);
98 			}
99 			if (!xdr_rpcproc(xdrs, &objp->proc)) {
100 				return (FALSE);
101 			}
102 			if (!xdr_int(xdrs, &objp->success)) {
103 				return (FALSE);
104 			}
105 			if (!xdr_int(xdrs, &objp->failure)) {
106 				return (FALSE);
107 			}
108 			if (!xdr_int(xdrs, &objp->indirect)) {
109 				return (FALSE);
110 			}
111 		} else {
112 			IXDR_PUT_U_INT32(buf, objp->prog);
113 			IXDR_PUT_U_INT32(buf, objp->vers);
114 			IXDR_PUT_U_INT32(buf, objp->proc);
115 			IXDR_PUT_INT32(buf, objp->success);
116 			IXDR_PUT_INT32(buf, objp->failure);
117 			IXDR_PUT_INT32(buf, objp->indirect);
118 		}
119 		if (!xdr_string(xdrs, &objp->netid, RPC_MAXDATASIZE)) {
120 			return (FALSE);
121 		}
122 		if (!xdr_pointer(xdrs, (char **) pnext,
123 				sizeof (rpcbs_rmtcalllist),
124 				(xdrproc_t)xdr_rpcbs_rmtcalllist)) {
125 			return (FALSE);
126 		}
127 		return (TRUE);
128 	} else if (xdrs->x_op == XDR_DECODE) {
129 		buf = XDR_INLINE(xdrs, 6 * BYTES_PER_XDR_UNIT);
130 		if (buf == NULL) {
131 			if (!xdr_rpcprog(xdrs, &objp->prog)) {
132 				return (FALSE);
133 			}
134 			if (!xdr_rpcvers(xdrs, &objp->vers)) {
135 				return (FALSE);
136 			}
137 			if (!xdr_rpcproc(xdrs, &objp->proc)) {
138 				return (FALSE);
139 			}
140 			if (!xdr_int(xdrs, &objp->success)) {
141 				return (FALSE);
142 			}
143 			if (!xdr_int(xdrs, &objp->failure)) {
144 				return (FALSE);
145 			}
146 			if (!xdr_int(xdrs, &objp->indirect)) {
147 				return (FALSE);
148 			}
149 		} else {
150 			objp->prog = (rpcprog_t)IXDR_GET_U_INT32(buf);
151 			objp->vers = (rpcvers_t)IXDR_GET_U_INT32(buf);
152 			objp->proc = (rpcproc_t)IXDR_GET_U_INT32(buf);
153 			objp->success = (int)IXDR_GET_INT32(buf);
154 			objp->failure = (int)IXDR_GET_INT32(buf);
155 			objp->indirect = (int)IXDR_GET_INT32(buf);
156 		}
157 		if (!xdr_string(xdrs, &objp->netid, RPC_MAXDATASIZE)) {
158 			return (FALSE);
159 		}
160 		if (!xdr_pointer(xdrs, (char **) pnext,
161 				sizeof (rpcbs_rmtcalllist),
162 				(xdrproc_t)xdr_rpcbs_rmtcalllist)) {
163 			return (FALSE);
164 		}
165 		return (TRUE);
166 	}
167 	if (!xdr_rpcprog(xdrs, &objp->prog)) {
168 		return (FALSE);
169 	}
170 	if (!xdr_rpcvers(xdrs, &objp->vers)) {
171 		return (FALSE);
172 	}
173 	if (!xdr_rpcproc(xdrs, &objp->proc)) {
174 		return (FALSE);
175 	}
176 	if (!xdr_int(xdrs, &objp->success)) {
177 		return (FALSE);
178 	}
179 	if (!xdr_int(xdrs, &objp->failure)) {
180 		return (FALSE);
181 	}
182 	if (!xdr_int(xdrs, &objp->indirect)) {
183 		return (FALSE);
184 	}
185 	if (!xdr_string(xdrs, &objp->netid, RPC_MAXDATASIZE)) {
186 		return (FALSE);
187 	}
188 	if (!xdr_pointer(xdrs, (char **) pnext,
189 			sizeof (rpcbs_rmtcalllist),
190 			(xdrproc_t)xdr_rpcbs_rmtcalllist)) {
191 		return (FALSE);
192 	}
193 	return (TRUE);
194 }
195 
196 bool_t
197 xdr_rpcbs_proc(XDR *xdrs, rpcbs_proc objp)
198 {
199 	if (!xdr_vector(xdrs, (char *)(void *)objp, RPCBSTAT_HIGHPROC,
200 	    sizeof (int), (xdrproc_t)xdr_int)) {
201 		return (FALSE);
202 	}
203 	return (TRUE);
204 }
205 
206 bool_t
207 xdr_rpcbs_addrlist_ptr(XDR *xdrs, rpcbs_addrlist_ptr *objp)
208 {
209 	if (!xdr_pointer(xdrs, (char **)objp, sizeof (rpcbs_addrlist),
210 			(xdrproc_t)xdr_rpcbs_addrlist)) {
211 		return (FALSE);
212 	}
213 	return (TRUE);
214 }
215 
216 bool_t
217 xdr_rpcbs_rmtcalllist_ptr(XDR *xdrs, rpcbs_rmtcalllist_ptr *objp)
218 {
219 	if (!xdr_pointer(xdrs, (char **)objp, sizeof (rpcbs_rmtcalllist),
220 			(xdrproc_t)xdr_rpcbs_rmtcalllist)) {
221 		return (FALSE);
222 	}
223 	return (TRUE);
224 }
225 
226 bool_t
227 xdr_rpcb_stat(XDR *xdrs, rpcb_stat *objp)
228 {
229 
230 	if (!xdr_rpcbs_proc(xdrs, objp->info)) {
231 		return (FALSE);
232 	}
233 	if (!xdr_int(xdrs, &objp->setinfo)) {
234 		return (FALSE);
235 	}
236 	if (!xdr_int(xdrs, &objp->unsetinfo)) {
237 		return (FALSE);
238 	}
239 	if (!xdr_rpcbs_addrlist_ptr(xdrs, &objp->addrinfo)) {
240 		return (FALSE);
241 	}
242 	if (!xdr_rpcbs_rmtcalllist_ptr(xdrs, &objp->rmtinfo)) {
243 		return (FALSE);
244 	}
245 	return (TRUE);
246 }
247 
248 /*
249  * One rpcb_stat structure is returned for each version of rpcbind
250  * being monitored.
251  */
252 bool_t
253 xdr_rpcb_stat_byvers(XDR *xdrs, rpcb_stat_byvers objp)
254 {
255 	if (!xdr_vector(xdrs, (char *)(void *)objp, RPCBVERS_STAT,
256 	    sizeof (rpcb_stat), (xdrproc_t)xdr_rpcb_stat)) {
257 		return (FALSE);
258 	}
259 	return (TRUE);
260 }
261