summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/yppush/yp_xdr.c
blob: 5afc8d9cd2b5c47b5160f83b69bf3f045c380ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/*
    YPS-0.2, NIS-Server for Linux
    Copyright (C) 1994  Tobias Reber

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    Modified for use with FreeBSD 2.x by Bill Paul (wpaul@ctr.columbia.edu)

	$Id$
*/

/*
 *	$Author: root $
 *	$Log: yp_xdr.c,v $
 * Revision 0.20  1994/01/02  22:48:22  root
 * Added strict prototypes
 *
 * Revision 0.19  1994/01/02  20:09:39  root
 * Added GPL notice
 *
 * Revision 0.18  1994/01/02  18:06:13  root
 * Fixed another bug in __xdr_ypresp_all
 *
 * Revision 0.17  1993/12/30  22:34:57  root
 * *** empty log message ***
 *
 * Revision 0.16  1993/12/29  00:37:37  root
 * Fixed a bug in __xdr_ypresp_key_val
 *
 * Revision 0.15  1993/06/16  22:54:12  dok235
 * Fix a bug in ypresp_key_val
 *
 * Revision 0.14  1993/06/12  09:39:30  root
 * Align with include-4.4
 *
 * Revision 0.13  1993/06/11  21:45:00  root
 * Regenned from yp.x, that came with include-4.4
 *
 */

/*
 * Please do not edit this file.
 * It was generated using rpcgen.
 */

#include <rpc/rpc.h>
#include <rpcsvc/yp.h>

#ifdef DEBUG
#define PRINTF(x) printf x
#define PRLINENO printf(__FILE__ "(%d): ", __LINE__)
#else
#define PRINTF(x)
#define PRLINENO
#endif

struct {
	union {
	int (*encoder)(char *, int, char **, int *, char **, int *);
	int (*decoder)(int, char *, int, char *, int, char *);
	} foreach;
	char *data;
} *__xdr_ypall_callback;

bool_t
__xdr_ypstat(XDR *xdrs, ypstat *objp)
{

	 if (!xdr_enum(xdrs, (enum_t *)objp)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypxfrstat(XDR *xdrs, ypxfrstat *objp)
{

	 if (!xdr_enum(xdrs, (enum_t *)objp)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_domainname(XDR *xdrs, domainname *objp)
{

	 if (!xdr_string(xdrs, objp, YPMAXDOMAIN)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_mapname(XDR *xdrs, mapname *objp)
{

	 if (!xdr_string(xdrs, objp, YPMAXMAP)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_peername(XDR *xdrs, peername *objp)
{

	 if (!xdr_string(xdrs, objp, YPMAXPEER)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
xdr_keydat(XDR *xdrs, keydat *objp)
{

	 if (!xdr_bytes(xdrs, (char **)&objp->keydat_val, (u_int *)&objp->keydat_len, YPMAXRECORD)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
xdr_valdat(XDR *xdrs, valdat *objp)
{

	 if (!xdr_bytes(xdrs, (char **)&objp->valdat_val, (u_int *)&objp->valdat_len, YPMAXRECORD)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypmap_parms(XDR *xdrs, ypmap_parms *objp)
{

	 if (!__xdr_domainname(xdrs, &objp->domain)) {
		 return (FALSE);
	 }
	 if (!__xdr_mapname(xdrs, &objp->map)) {
		 return (FALSE);
	 }
	 if (!xdr_u_int(xdrs, &objp->ordernum)) {
		 return (FALSE);
	 }
	 if (!__xdr_peername(xdrs, &objp->peer)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypreq_key(XDR *xdrs, ypreq_key *objp)
{

	 if (!__xdr_domainname(xdrs, &objp->domain)) {
		 return (FALSE);
	 }
	 if (!__xdr_mapname(xdrs, &objp->map)) {
		 return (FALSE);
	 }
	 if (!xdr_keydat(xdrs, &objp->key)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypreq_nokey(XDR *xdrs, ypreq_nokey *objp)
{

	 if (!__xdr_domainname(xdrs, &objp->domain)) {
		 return (FALSE);
	 }
	 if (!__xdr_mapname(xdrs, &objp->map)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypreq_xfr(XDR *xdrs, ypreq_xfr *objp)
{

	 if (!__xdr_ypmap_parms(xdrs, &objp->map_parms)) {
		 return (FALSE);
	 }
	 if (!xdr_u_int(xdrs, &objp->transid)) {
		 return (FALSE);
	 }
	 if (!xdr_u_int(xdrs, &objp->prog)) {
		 return (FALSE);
	 }
	 if (!xdr_u_int(xdrs, &objp->port)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypresp_val(XDR *xdrs, ypresp_val *objp)
{

	 if (!__xdr_ypstat(xdrs, &objp->stat)) {
		 return (FALSE);
	 }
	 if (!xdr_valdat(xdrs, &objp->val)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypresp_key_val(XDR *xdrs, ypresp_key_val *objp)
{

	 if (!__xdr_ypstat(xdrs, &objp->stat)) {
		 return (FALSE);
	 }
	 if (!xdr_valdat(xdrs, &objp->val)) {
		 return (FALSE);
	 }
	 if (!xdr_keydat(xdrs, &objp->key)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypresp_master(XDR *xdrs, ypresp_master *objp)
{

	 if (!__xdr_ypstat(xdrs, &objp->stat)) {
		 return (FALSE);
	 }
	 if (!__xdr_peername(xdrs, &objp->peer)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypresp_order(XDR *xdrs, ypresp_order *objp)
{

	 if (!__xdr_ypstat(xdrs, &objp->stat)) {
		 return (FALSE);
	 }
	 if (!xdr_u_int(xdrs, &objp->ordernum)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypresp_all(XDR *xdrs, ypresp_all *objp)
{
   int CallAgain = 0;
   PRLINENO;
   if (xdrs->x_op == XDR_DECODE) {
      while(1) {
#if 1
         int s=objp->ypresp_all_u.val.stat;
         bzero((char *)objp, sizeof (*objp));
         objp->ypresp_all_u.val.stat=s;
#endif
	 if (!xdr_bool(xdrs, &objp->more)) {
	    return (FALSE);
	 }
	 switch (objp->more) {
	 case TRUE:
	    if (!__xdr_ypresp_key_val(xdrs, &objp->ypresp_all_u.val)) {
	       return (FALSE);
	    }
	    if (CallAgain==0) {
	       CallAgain=(*(__xdr_ypall_callback->foreach.decoder))(
	       objp->ypresp_all_u.val.stat,
	       objp->ypresp_all_u.val.key.keydat_val,
	       objp->ypresp_all_u.val.key.keydat_len,
	       objp->ypresp_all_u.val.val.valdat_val,
	       objp->ypresp_all_u.val.val.valdat_len,
	       __xdr_ypall_callback->data);
	    }
            break;
	 case FALSE:
	    return TRUE;
	 }
#if 0
         xdrs->x_op=XDR_FREE;
	 if (!__xdr_ypresp_all(xdrs, objp)) {
	    return FALSE;
         }
         xdrs->x_op=XDR_DECODE;
#else
	 xdr_free(__xdr_ypresp_all, (char *)objp);
#endif
      }
   } else if (xdrs->x_op == XDR_ENCODE) {
      while(1) {
	 if (!xdr_bool(xdrs, &(objp->more))) {
	    return (FALSE);
	 }
	 if (!__xdr_ypresp_key_val(xdrs, &objp->ypresp_all_u.val)) {
	    printf("__xdr_ypresp_key_val failed\n");
	    return (FALSE);
	 }
	 if (objp->ypresp_all_u.val.stat!=YP_TRUE) {
	    objp->more=FALSE;
	    if (!xdr_bool(xdrs, &(objp->more))) {
	       return (FALSE);
	    }
	    return(TRUE);
	 }
	 objp->ypresp_all_u.val.stat =
	    (enum ypstat)(*(__xdr_ypall_callback->foreach.encoder))(
	    objp->ypresp_all_u.val.key.keydat_val,
	    objp->ypresp_all_u.val.key.keydat_len,
	    &(objp->ypresp_all_u.val.key.keydat_val),
	    &(objp->ypresp_all_u.val.key.keydat_len),
	    &(objp->ypresp_all_u.val.val.valdat_val),
	    &(objp->ypresp_all_u.val.val.valdat_len));
      }
   } else {
#if 0
        bool_t more=objp->more;
	if (more==TRUE) {
	   if (!xdr_bool(xdrs, &objp->more)) {
	      return FALSE;
	   }
           if (!__xdr_ypresp_key_val(xdrs, &objp->ypresp_all_u.val)) {
	      return (FALSE);
	   }
        }
#endif
	   
      return(TRUE);
   }
}

bool_t
__xdr_ypresp_xfr(XDR *xdrs, ypresp_xfr *objp)
{

	 if (!xdr_u_int(xdrs, &objp->transid)) {
		 return (FALSE);
	 }
	 if (!__xdr_ypxfrstat(xdrs, &objp->xfrstat)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypmaplist(XDR *xdrs, ypmaplist *objp)
{

	 if (!__xdr_mapname(xdrs, &objp->map)) {
		 return (FALSE);
	 }
	 if (!xdr_pointer(xdrs, (char **)&objp->next, sizeof(ypmaplist), (xdrproc_t)__xdr_ypmaplist)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypresp_maplist(XDR *xdrs, ypresp_maplist *objp)
{

	 if (!__xdr_ypstat(xdrs, &objp->stat)) {
		 return (FALSE);
	 }
	 if (!xdr_pointer(xdrs, (char **)&objp->maps, sizeof(ypmaplist), (xdrproc_t)__xdr_ypmaplist)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_yppush_status(XDR *xdrs, yppush_status *objp)
{

	 if (!xdr_enum(xdrs, (enum_t *)objp)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_yppushresp_xfr(XDR *xdrs, yppushresp_xfr *objp)
{

	 if (!xdr_u_int(xdrs, &objp->transid)) {
		 return (FALSE);
	 }
	 if (!__xdr_yppush_status(xdrs, &objp->status)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypbind_resptype(XDR *xdrs, ypbind_resptype *objp)
{

	 if (!xdr_enum(xdrs, (enum_t *)objp)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypbind_binding(XDR *xdrs, ypbind_binding *objp)
{

	 if (!xdr_opaque(xdrs, objp->ypbind_binding_addr, 4)) {
		 return (FALSE);
	 }
	 if (!xdr_opaque(xdrs, objp->ypbind_binding_port, 2)) {
		 return (FALSE);
	 }
	return (TRUE);
}

bool_t
__xdr_ypbind_resp(XDR *xdrs, ypbind_resp *objp)
{

	 if (!__xdr_ypbind_resptype(xdrs, &objp->ypbind_status)) {
		 return (FALSE);
	 }
	switch (objp->ypbind_status) {
	case YPBIND_FAIL_VAL:
		 if (!xdr_u_int(xdrs, &objp->ypbind_resp_u.ypbind_error)) {
			 return (FALSE);
		 }
		break;
	case YPBIND_SUCC_VAL:
		 if (!__xdr_ypbind_binding(xdrs, &objp->ypbind_resp_u.ypbind_bindinfo)) {
			 return (FALSE);
		 }
		break;
	default:
		return (FALSE);
	}
	return (TRUE);
}

bool_t
__xdr_ypbind_setdom(XDR *xdrs, ypbind_setdom *objp)
{

	 if (!__xdr_domainname(xdrs, &objp->ypsetdom_domain)) {
		 return (FALSE);
	 }
	 if (!__xdr_ypbind_binding(xdrs, &objp->ypsetdom_binding)) {
		 return (FALSE);
	 }
	 if (!xdr_u_int(xdrs, &objp->ypsetdom_vers)) {
		 return (FALSE);
	 }
	return (TRUE);
}
OpenPOWER on IntegriCloud