xref: /dragonfly/lib/libc/rpc/key_prot_xdr.c (revision b4f25088)
1 /*
2  * Please do not edit this file.
3  * It was generated using rpcgen.
4  */
5 /* $DragonFly: src/lib/libc/rpc/key_prot_xdr.c,v 1.3 2006/03/13 14:36:46 swildner Exp $								*/
6 
7 #include <rpc/key_prot.h>
8 /*
9  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
10  * unrestricted use provided that this legend is included on all tape
11  * media and as a part of the software program in whole or part.  Users
12  * may copy or modify Sun RPC without charge, but are not authorized
13  * to license or distribute it to anyone else except as part of a product or
14  * program developed by the user.
15  *
16  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
17  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
19  *
20  * Sun RPC is provided with no support and without any obligation on the
21  * part of Sun Microsystems, Inc. to assist in its use, correction,
22  * modification or enhancement.
23  *
24  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
25  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
26  * OR ANY PART THEREOF.
27  *
28  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
29  * or profits or other special, indirect and consequential damages, even if
30  * Sun has been advised of the possibility of such damages.
31  *
32  * Sun Microsystems, Inc.
33  * 2550 Garcia Avenue
34  * Mountain View, California  94043
35  */
36 /* Copyright (c)  1990, 1991 Sun Microsystems, Inc. */
37 
38 /* #pragma ident	"@(#)key_prot.x	1.7	94/04/29 SMI" */
39 
40 /*
41  * Compiled from key_prot.x using rpcgen.
42  * DO NOT EDIT THIS FILE!
43  * This is NOT source code!
44  */
45 
46 bool_t
47 xdr_keystatus(XDR *xdrs, keystatus *objp)
48 {
49 
50 	if (!xdr_enum(xdrs, (enum_t *)objp))
51 		return (FALSE);
52 	return (TRUE);
53 }
54 
55 bool_t
56 xdr_keybuf(XDR *xdrs, keybuf objp)
57 {
58 
59 	if (!xdr_opaque(xdrs, objp, HEXKEYBYTES))
60 		return (FALSE);
61 	return (TRUE);
62 }
63 
64 bool_t
65 xdr_netnamestr(XDR *xdrs, netnamestr *objp)
66 {
67 
68 	if (!xdr_string(xdrs, objp, MAXNETNAMELEN))
69 		return (FALSE);
70 	return (TRUE);
71 }
72 
73 bool_t
74 xdr_cryptkeyarg(XDR *xdrs, cryptkeyarg *objp)
75 {
76 
77 	if (!xdr_netnamestr(xdrs, &objp->remotename))
78 		return (FALSE);
79 	if (!xdr_des_block(xdrs, &objp->deskey))
80 		return (FALSE);
81 	return (TRUE);
82 }
83 
84 bool_t
85 xdr_cryptkeyarg2(XDR *xdrs, cryptkeyarg2 *objp)
86 {
87 
88 	if (!xdr_netnamestr(xdrs, &objp->remotename))
89 		return (FALSE);
90 	if (!xdr_netobj(xdrs, &objp->remotekey))
91 		return (FALSE);
92 	if (!xdr_des_block(xdrs, &objp->deskey))
93 		return (FALSE);
94 	return (TRUE);
95 }
96 
97 bool_t
98 xdr_cryptkeyres(XDR *xdrs, cryptkeyres *objp)
99 {
100 
101 	if (!xdr_keystatus(xdrs, &objp->status))
102 		return (FALSE);
103 	switch (objp->status) {
104 	case KEY_SUCCESS:
105 		if (!xdr_des_block(xdrs, &objp->cryptkeyres_u.deskey))
106 			return (FALSE);
107 		break;
108 	default:
109 		break;
110 	}
111 	return (TRUE);
112 }
113 
114 bool_t
115 xdr_unixcred(XDR *xdrs, unixcred *objp)
116 {
117 	u_int **pgids_val;
118 
119 	if (!xdr_u_int(xdrs, &objp->uid))
120 		return (FALSE);
121 	if (!xdr_u_int(xdrs, &objp->gid))
122 		return (FALSE);
123 	pgids_val = &objp->gids.gids_val;
124 	if (!xdr_array(xdrs, (char **) pgids_val, (u_int *) &objp->gids.gids_len, MAXGIDS,
125 		sizeof (u_int), (xdrproc_t) xdr_u_int))
126 		return (FALSE);
127 	return (TRUE);
128 }
129 
130 bool_t
131 xdr_getcredres(XDR *xdrs, getcredres *objp)
132 {
133 
134 	if (!xdr_keystatus(xdrs, &objp->status))
135 		return (FALSE);
136 	switch (objp->status) {
137 	case KEY_SUCCESS:
138 		if (!xdr_unixcred(xdrs, &objp->getcredres_u.cred))
139 			return (FALSE);
140 		break;
141 	default:
142 		break;
143 	}
144 	return (TRUE);
145 }
146 
147 bool_t
148 xdr_key_netstarg(XDR *xdrs, key_netstarg *objp)
149 {
150 
151 	if (!xdr_keybuf(xdrs, objp->st_priv_key))
152 		return (FALSE);
153 	if (!xdr_keybuf(xdrs, objp->st_pub_key))
154 		return (FALSE);
155 	if (!xdr_netnamestr(xdrs, &objp->st_netname))
156 		return (FALSE);
157 	return (TRUE);
158 }
159 
160 bool_t
161 xdr_key_netstres(XDR *xdrs, key_netstres *objp)
162 {
163 
164 	if (!xdr_keystatus(xdrs, &objp->status))
165 		return (FALSE);
166 	switch (objp->status) {
167 	case KEY_SUCCESS:
168 		if (!xdr_key_netstarg(xdrs, &objp->key_netstres_u.knet))
169 			return (FALSE);
170 		break;
171 	default:
172 		break;
173 	}
174 	return (TRUE);
175 }
176