1 /* Copyright (c) 2010, Oracle America, Inc.
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above
10 * copyright notice, this list of conditions and the following
11 * disclaimer in the documentation and/or other materials
12 * provided with the distribution.
13 * * Neither the name of the "Oracle America, Inc." nor the names of its
14 * contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include <rpc/key_prot.h>
32 #include <shlib-compat.h>
35 xdr_keystatus (XDR
* xdrs
, keystatus
* objp
)
37 if (!xdr_enum (xdrs
, (enum_t
*) objp
))
42 libc_hidden_nolink_sunrpc (xdr_keystatus
, GLIBC_2_0
)
45 xdr_keybuf (XDR
* xdrs
, keybuf objp
)
47 if (!xdr_opaque (xdrs
, objp
, HEXKEYBYTES
))
52 libc_hidden_nolink_sunrpc (xdr_keybuf
, GLIBC_2_0
)
55 xdr_netnamestr (XDR
* xdrs
, netnamestr
* objp
)
57 if (!xdr_string (xdrs
, objp
, MAXNETNAMELEN
))
62 libc_hidden_nolink_sunrpc (xdr_netnamestr
, GLIBC_2_1
)
65 xdr_cryptkeyarg (XDR
* xdrs
, cryptkeyarg
* objp
)
67 if (!xdr_netnamestr (xdrs
, &objp
->remotename
))
70 if (!xdr_des_block (xdrs
, &objp
->deskey
))
75 libc_hidden_nolink_sunrpc (xdr_cryptkeyarg
, GLIBC_2_0
)
78 xdr_cryptkeyarg2 (XDR
* xdrs
, cryptkeyarg2
* objp
)
80 if (!xdr_netnamestr (xdrs
, &objp
->remotename
))
82 if (!xdr_netobj (xdrs
, &objp
->remotekey
))
84 if (!xdr_des_block (xdrs
, &objp
->deskey
))
88 libc_hidden_nolink_sunrpc (xdr_cryptkeyarg2
, GLIBC_2_0
)
91 xdr_cryptkeyres (XDR
* xdrs
, cryptkeyres
* objp
)
93 if (!xdr_keystatus (xdrs
, &objp
->status
))
98 if (!xdr_des_block (xdrs
, &objp
->cryptkeyres_u
.deskey
))
106 libc_hidden_nolink_sunrpc (xdr_cryptkeyres
, GLIBC_2_0
)
109 xdr_unixcred (XDR
* xdrs
, unixcred
* objp
)
111 if (!xdr_u_int (xdrs
, &objp
->uid
))
113 if (!xdr_u_int (xdrs
, &objp
->gid
))
115 if (!xdr_array (xdrs
, (void *) &objp
->gids
.gids_val
,
116 (u_int
*) & objp
->gids
.gids_len
, MAXGIDS
,
117 sizeof (u_int
), (xdrproc_t
) xdr_u_int
))
121 libc_hidden_nolink_sunrpc (xdr_unixcred
, GLIBC_2_1
)
124 xdr_getcredres (XDR
* xdrs
, getcredres
* objp
)
126 if (!xdr_keystatus (xdrs
, &objp
->status
))
128 switch (objp
->status
)
131 if (!xdr_unixcred (xdrs
, &objp
->getcredres_u
.cred
))
139 libc_hidden_nolink_sunrpc (xdr_getcredres
, GLIBC_2_1
)
142 xdr_key_netstarg (XDR
* xdrs
, key_netstarg
* objp
)
144 if (!xdr_keybuf (xdrs
, objp
->st_priv_key
))
146 if (!xdr_keybuf (xdrs
, objp
->st_pub_key
))
148 if (!xdr_netnamestr (xdrs
, &objp
->st_netname
))
152 libc_hidden_nolink_sunrpc (xdr_key_netstarg
, GLIBC_2_0
)
155 xdr_key_netstres (XDR
* xdrs
, key_netstres
* objp
)
157 if (!xdr_keystatus (xdrs
, &objp
->status
))
159 switch (objp
->status
)
162 if (!xdr_key_netstarg (xdrs
, &objp
->key_netstres_u
.knet
))
170 libc_hidden_nolink_sunrpc (xdr_key_netstres
, GLIBC_2_0
)