Updated to fedora-glibc-20060521T2153
[glibc.git] / nis / nis_xdr.c
blobbcb396a509535fa5e50c9439f33fc859a92bf680
1 /* Copyright (c) 1997, 1998, 2005, 2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <rpcsvc/nis.h>
21 #include <rpcsvc/nis_callback.h> /* for "official" Solaris xdr functions */
23 /* This functions do exist without beginning "_" under Solaris 2.x, but
24 we have no prototypes for them. To avoid the same problems as with the
25 YP xdr functions, we don't make them public. */
26 #include "nis_xdr.h"
28 static bool_t
29 xdr_nis_attr (XDR *xdrs, nis_attr *objp)
31 bool_t res = xdr_string (xdrs, &objp->zattr_ndx, ~0);
32 if (__builtin_expect (res, TRUE))
33 res = xdr_bytes (xdrs, (char **) &objp->zattr_val.zattr_val_val,
34 &objp->zattr_val.zattr_val_len, ~0);
35 return res;
38 bool_t
39 _xdr_nis_name (XDR *xdrs, nis_name *objp)
41 return xdr_string (xdrs, objp, ~0);
44 static __always_inline bool_t
45 xdr_zotypes (XDR *xdrs, zotypes *objp)
47 return xdr_enum (xdrs, (enum_t *) objp);
50 static __always_inline bool_t
51 xdr_nstype (XDR *xdrs, nstype *objp)
53 return xdr_enum (xdrs, (enum_t *) objp);
56 static bool_t
57 xdr_oar_mask (XDR *xdrs, oar_mask *objp)
59 bool_t res = xdr_u_int (xdrs, &objp->oa_rights);
60 if (__builtin_expect (res, TRUE))
61 res = xdr_zotypes (xdrs, &objp->oa_otype);
62 return res;
65 static bool_t
66 xdr_endpoint (XDR *xdrs, endpoint *objp)
68 bool_t res = xdr_string (xdrs, &objp->uaddr, ~0);
69 if (__builtin_expect (res, TRUE))
71 res = xdr_string (xdrs, &objp->family, ~0);
72 if (__builtin_expect (res, 1))
73 res = xdr_string (xdrs, &objp->proto, ~0);
75 return res;
78 bool_t
79 _xdr_nis_server (XDR *xdrs, nis_server *objp)
81 bool_t res = _xdr_nis_name (xdrs, &objp->name);
82 if (__builtin_expect (res, TRUE))
84 res = xdr_array (xdrs, (char **) &objp->ep.ep_val, &objp->ep.ep_len,
85 ~0, sizeof (endpoint), (xdrproc_t) xdr_endpoint);
86 if (__builtin_expect (res, TRUE))
88 res = xdr_u_int (xdrs, &objp->key_type);
89 if (__builtin_expect (res, TRUE))
90 res = xdr_netobj (xdrs, &objp->pkey);
93 return res;
96 bool_t
97 _xdr_directory_obj (XDR *xdrs, directory_obj *objp)
99 bool_t res = _xdr_nis_name (xdrs, &objp->do_name);
100 if (__builtin_expect (res, TRUE))
102 res = xdr_nstype (xdrs, &objp->do_type);
103 if (__builtin_expect (res, TRUE))
105 res = xdr_array (xdrs, (char **) &objp->do_servers.do_servers_val,
106 &objp->do_servers.do_servers_len, ~0,
107 sizeof (nis_server), (xdrproc_t) _xdr_nis_server);
108 if (__builtin_expect (res, TRUE))
110 res = xdr_uint32_t (xdrs, &objp->do_ttl);
111 if (__builtin_expect (res, TRUE))
112 res = xdr_array (xdrs,
113 (char **) &objp->do_armask.do_armask_val,
114 &objp->do_armask.do_armask_len, ~0,
115 sizeof (oar_mask), (xdrproc_t) xdr_oar_mask);
119 return res;
122 static bool_t
123 xdr_entry_col (XDR *xdrs, entry_col *objp)
125 bool_t res = xdr_u_int (xdrs, &objp->ec_flags);
126 if (__builtin_expect (res, TRUE))
127 res = xdr_bytes (xdrs, (char **) &objp->ec_value.ec_value_val,
128 &objp->ec_value.ec_value_len, ~0);
129 return res;
132 static bool_t
133 xdr_entry_obj (XDR *xdrs, entry_obj *objp)
135 bool_t res = xdr_string (xdrs, &objp->en_type, ~0);
136 if (__builtin_expect (res, TRUE))
137 res = xdr_array (xdrs, (char **) &objp->en_cols.en_cols_val,
138 &objp->en_cols.en_cols_len, ~0,
139 sizeof (entry_col), (xdrproc_t) xdr_entry_col);
140 return res;
143 static bool_t
144 xdr_group_obj (XDR *xdrs, group_obj *objp)
146 bool_t res = xdr_u_int (xdrs, &objp->gr_flags);
147 if (__builtin_expect (res, TRUE))
148 res = xdr_array (xdrs, (char **) &objp->gr_members.gr_members_val,
149 &objp->gr_members.gr_members_len, ~0,
150 sizeof (nis_name), (xdrproc_t) _xdr_nis_name);
151 return res;
154 static bool_t
155 xdr_link_obj (XDR *xdrs, link_obj *objp)
157 bool_t res = xdr_zotypes (xdrs, &objp->li_rtype);
158 if (__builtin_expect (res, TRUE))
160 res = xdr_array (xdrs, (char **) &objp->li_attrs.li_attrs_val,
161 &objp->li_attrs.li_attrs_len, ~0,
162 sizeof (nis_attr), (xdrproc_t) xdr_nis_attr);
163 if (__builtin_expect (res, TRUE))
164 res = _xdr_nis_name (xdrs, &objp->li_name);
166 return res;
169 static bool_t
170 xdr_table_col (XDR *xdrs, table_col *objp)
172 bool_t res = xdr_string (xdrs, &objp->tc_name, 64);
173 if (__builtin_expect (res, TRUE))
175 res = xdr_u_int (xdrs, &objp->tc_flags);
176 if (__builtin_expect (res, TRUE))
177 res = xdr_u_int (xdrs, &objp->tc_rights);
179 return res;
182 static bool_t
183 xdr_table_obj (XDR *xdrs, table_obj *objp)
185 bool_t res = xdr_string (xdrs, &objp->ta_type, 64);
186 if (__builtin_expect (res, TRUE))
188 res = xdr_int (xdrs, &objp->ta_maxcol);
189 if (__builtin_expect (res, TRUE))
191 res = xdr_u_char (xdrs, &objp->ta_sep);
192 if (__builtin_expect (res, TRUE))
194 res = xdr_array (xdrs, (char **) &objp->ta_cols.ta_cols_val,
195 &objp->ta_cols.ta_cols_len, ~0,
196 sizeof (table_col), (xdrproc_t) xdr_table_col);
197 if (__builtin_expect (res, TRUE))
198 res = xdr_string (xdrs, &objp->ta_path, ~0);
202 return res;
205 static bool_t
206 xdr_objdata (XDR *xdrs, objdata *objp)
208 bool_t res = xdr_zotypes (xdrs, &objp->zo_type);
209 if (!__builtin_expect (res, TRUE))
210 return res;
211 switch (objp->zo_type)
213 case NIS_DIRECTORY_OBJ:
214 return _xdr_directory_obj (xdrs, &objp->objdata_u.di_data);
215 case NIS_GROUP_OBJ:
216 return xdr_group_obj (xdrs, &objp->objdata_u.gr_data);
217 case NIS_TABLE_OBJ:
218 return xdr_table_obj (xdrs, &objp->objdata_u.ta_data);
219 case NIS_ENTRY_OBJ:
220 return xdr_entry_obj (xdrs, &objp->objdata_u.en_data);
221 case NIS_LINK_OBJ:
222 return xdr_link_obj (xdrs, &objp->objdata_u.li_data);
223 case NIS_PRIVATE_OBJ:
224 return xdr_bytes (xdrs, &objp->objdata_u.po_data.po_data_val,
225 &objp->objdata_u.po_data.po_data_len, ~0);
226 case NIS_NO_OBJ:
227 case NIS_BOGUS_OBJ:
228 default:
229 return TRUE;
233 static bool_t
234 xdr_nis_oid (XDR *xdrs, nis_oid *objp)
236 bool_t res = xdr_uint32_t (xdrs, &objp->ctime);
237 if (__builtin_expect (res, TRUE))
238 res = xdr_uint32_t (xdrs, &objp->mtime);
239 return res;
242 bool_t
243 _xdr_nis_object (XDR *xdrs, nis_object *objp)
245 bool_t res = xdr_nis_oid (xdrs, &objp->zo_oid);
246 if (__builtin_expect (res, TRUE))
248 res = _xdr_nis_name (xdrs, &objp->zo_name);
249 if (__builtin_expect (res, TRUE))
251 res = _xdr_nis_name (xdrs, &objp->zo_owner);
252 if (__builtin_expect (res, TRUE))
254 res = _xdr_nis_name (xdrs, &objp->zo_group);
255 if (__builtin_expect (res, TRUE))
257 res = _xdr_nis_name (xdrs, &objp->zo_domain);
258 if (__builtin_expect (res, TRUE))
260 res = xdr_u_int (xdrs, &objp->zo_access);
261 if (__builtin_expect (res, TRUE))
263 res = xdr_uint32_t (xdrs, &objp->zo_ttl);
264 if (__builtin_expect (res, TRUE))
265 res = xdr_objdata (xdrs, &objp->zo_data);
272 return res;
275 bool_t
276 _xdr_nis_error (XDR *xdrs, nis_error *objp)
278 return xdr_enum (xdrs, (enum_t *) objp);
281 bool_t
282 _xdr_nis_result (XDR *xdrs, nis_result *objp)
284 bool_t res = _xdr_nis_error (xdrs, &objp->status);
285 if (__builtin_expect (res, TRUE))
287 res = xdr_array (xdrs, (char **) &objp->objects.objects_val,
288 &objp->objects.objects_len, ~0,
289 sizeof (nis_object), (xdrproc_t) _xdr_nis_object);
290 if (__builtin_expect (res, TRUE))
292 res = xdr_netobj (xdrs, &objp->cookie);
293 if (__builtin_expect (res, TRUE))
295 res = xdr_uint32_t (xdrs, &objp->zticks);
296 if (__builtin_expect (res, TRUE))
298 res = xdr_uint32_t (xdrs, &objp->dticks);
299 if (__builtin_expect (res, TRUE))
301 res = xdr_uint32_t (xdrs, &objp->aticks);
302 if (__builtin_expect (res, TRUE))
303 res = xdr_uint32_t (xdrs, &objp->cticks);
309 return res;
311 libnsl_hidden_def (_xdr_nis_result)
313 bool_t
314 _xdr_ns_request (XDR *xdrs, ns_request *objp)
316 bool_t res = _xdr_nis_name (xdrs, &objp->ns_name);
317 if (__builtin_expect (res, TRUE))
318 res = xdr_array (xdrs, (char **) &objp->ns_object.ns_object_val,
319 &objp->ns_object.ns_object_len, 1,
320 sizeof (nis_object), (xdrproc_t) _xdr_nis_object);
321 return res;
324 bool_t
325 _xdr_ib_request (XDR *xdrs, ib_request *objp)
327 bool_t res = _xdr_nis_name (xdrs, &objp->ibr_name);
328 if (__builtin_expect (res, TRUE))
330 res = xdr_array (xdrs, (char **) &objp->ibr_srch.ibr_srch_val,
331 &objp->ibr_srch.ibr_srch_len, ~0,
332 sizeof (nis_attr), (xdrproc_t) xdr_nis_attr);
333 if (__builtin_expect (res, TRUE))
335 res = xdr_u_int (xdrs, &objp->ibr_flags);
336 if (__builtin_expect (res, TRUE))
338 res = xdr_array (xdrs, (char **) &objp->ibr_obj.ibr_obj_val,
339 &objp->ibr_obj.ibr_obj_len, 1,
340 sizeof (nis_object),
341 (xdrproc_t) _xdr_nis_object);
342 if (__builtin_expect (res, TRUE))
344 res = xdr_array (xdrs,
345 (char **) &objp->ibr_cbhost.ibr_cbhost_val,
346 &objp->ibr_cbhost.ibr_cbhost_len, 1,
347 sizeof (nis_server),
348 (xdrproc_t) _xdr_nis_server);
349 if (__builtin_expect (res, TRUE))
351 res = xdr_u_int (xdrs, &objp->ibr_bufsize);
352 if (__builtin_expect (res, TRUE))
353 res = xdr_netobj (xdrs, &objp->ibr_cookie);
359 return res;
361 libnsl_hidden_def (_xdr_ib_request)
363 bool_t
364 _xdr_ping_args (XDR *xdrs, ping_args *objp)
366 bool_t res = _xdr_nis_name (xdrs, &objp->dir);
367 if (__builtin_expect (res, TRUE))
368 res = xdr_uint32_t (xdrs, &objp->stamp);
369 return res;
372 bool_t
373 _xdr_cp_result (XDR *xdrs, cp_result *objp)
375 bool_t res = _xdr_nis_error (xdrs, &objp->cp_status);
376 if (__builtin_expect (res, TRUE))
378 res = xdr_uint32_t (xdrs, &objp->cp_zticks);
379 if (__builtin_expect (res, TRUE))
380 res = xdr_uint32_t (xdrs, &objp->cp_dticks);
382 return res;
385 bool_t
386 _xdr_nis_tag (XDR *xdrs, nis_tag *objp)
388 bool_t res = xdr_u_int (xdrs, &objp->tag_type);
389 if (__builtin_expect (res, TRUE))
390 res = xdr_string (xdrs, &objp->tag_val, ~0);
391 return res;
394 bool_t
395 _xdr_nis_taglist (XDR *xdrs, nis_taglist *objp)
397 return xdr_array (xdrs, (char **) &objp->tags.tags_val,
398 &objp->tags.tags_len, ~0, sizeof (nis_tag),
399 (xdrproc_t) _xdr_nis_tag);
402 bool_t
403 _xdr_fd_args (XDR *xdrs, fd_args *objp)
405 bool_t res = _xdr_nis_name (xdrs, &objp->dir_name);
406 if (__builtin_expect (res, TRUE))
407 res = _xdr_nis_name (xdrs, &objp->requester);
408 return res;
411 bool_t
412 _xdr_fd_result (XDR *xdrs, fd_result *objp)
414 bool_t res = _xdr_nis_error (xdrs, &objp->status);
415 if (__builtin_expect (res, TRUE))
417 res = _xdr_nis_name (xdrs, &objp->source);
418 if (__builtin_expect (res, TRUE))
420 res = xdr_bytes (xdrs, (char **) &objp->dir_data.dir_data_val,
421 &objp->dir_data.dir_data_len, ~0);
422 if (__builtin_expect (res, TRUE))
423 res = xdr_bytes (xdrs, (char **) &objp->signature.signature_val,
424 &objp->signature.signature_len, ~0);
427 return res;
430 /* The following functions have prototypes in nis_callback.h. So
431 we make them public */
432 bool_t
433 xdr_obj_p (XDR *xdrs, obj_p *objp)
435 return xdr_pointer (xdrs, (char **)objp, sizeof (nis_object),
436 (xdrproc_t)_xdr_nis_object);
438 libnsl_hidden_def (xdr_obj_p)
440 bool_t
441 xdr_cback_data (XDR *xdrs, cback_data *objp)
443 return xdr_array (xdrs, (char **)&objp->entries.entries_val,
444 &objp->entries.entries_len, ~0,
445 sizeof (obj_p), (xdrproc_t) xdr_obj_p);
447 libnsl_hidden_def (xdr_cback_data)