1 1.20 tron /* $NetBSD: rpc_callmsg.c,v 1.20 2013/03/11 20:19:29 tron Exp $ */ 2 1.3 cgd 3 1.1 cgd /* 4 1.20 tron * Copyright (c) 2010, Oracle America, Inc. 5 1.20 tron * 6 1.20 tron * Redistribution and use in source and binary forms, with or without 7 1.20 tron * modification, are permitted provided that the following conditions are 8 1.20 tron * met: 9 1.20 tron * 10 1.20 tron * * Redistributions of source code must retain the above copyright 11 1.20 tron * notice, this list of conditions and the following disclaimer. 12 1.20 tron * * Redistributions in binary form must reproduce the above 13 1.20 tron * copyright notice, this list of conditions and the following 14 1.20 tron * disclaimer in the documentation and/or other materials 15 1.20 tron * provided with the distribution. 16 1.20 tron * * Neither the name of the "Oracle America, Inc." nor the names of its 17 1.20 tron * contributors may be used to endorse or promote products derived 18 1.20 tron * from this software without specific prior written permission. 19 1.20 tron * 20 1.20 tron * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 1.20 tron * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22 1.20 tron * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 23 1.20 tron * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 24 1.20 tron * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 25 1.20 tron * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 1.20 tron * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 27 1.20 tron * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 1.20 tron * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 29 1.20 tron * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 30 1.20 tron * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 31 1.20 tron * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 1.1 cgd */ 33 1.1 cgd 34 1.6 christos #include <sys/cdefs.h> 35 1.1 cgd #if defined(LIBC_SCCS) && !defined(lint) 36 1.6 christos #if 0 37 1.6 christos static char *sccsid = "@(#)rpc_callmsg.c 1.4 87/08/11 Copyr 1984 Sun Micro"; 38 1.6 christos static char *sccsid = "@(#)rpc_callmsg.c 2.1 88/07/29 4.0 RPCSRC"; 39 1.6 christos #else 40 1.20 tron __RCSID("$NetBSD: rpc_callmsg.c,v 1.20 2013/03/11 20:19:29 tron Exp $"); 41 1.6 christos #endif 42 1.1 cgd #endif 43 1.1 cgd 44 1.1 cgd /* 45 1.1 cgd * rpc_callmsg.c 46 1.1 cgd * 47 1.1 cgd * Copyright (C) 1984, Sun Microsystems, Inc. 48 1.1 cgd * 49 1.1 cgd */ 50 1.1 cgd 51 1.7 jtc #include "namespace.h" 52 1.10 lukem 53 1.10 lukem #include <sys/param.h> 54 1.10 lukem 55 1.13 lukem #include <assert.h> 56 1.2 cgd #include <stdlib.h> 57 1.5 cgd #include <string.h> 58 1.10 lukem 59 1.7 jtc #include <rpc/rpc.h> 60 1.1 cgd 61 1.7 jtc #ifdef __weak_alias 62 1.15 mycroft __weak_alias(xdr_callmsg,_xdr_callmsg) 63 1.7 jtc #endif 64 1.1 cgd 65 1.1 cgd /* 66 1.1 cgd * XDR a call message 67 1.1 cgd */ 68 1.1 cgd bool_t 69 1.19 matt xdr_callmsg(XDR *xdrs, struct rpc_msg *cmsg) 70 1.1 cgd { 71 1.10 lukem int32_t *buf; 72 1.10 lukem struct opaque_auth *oa; 73 1.13 lukem 74 1.13 lukem _DIAGASSERT(xdrs != NULL); 75 1.13 lukem _DIAGASSERT(cmsg != NULL); 76 1.1 cgd 77 1.1 cgd if (xdrs->x_op == XDR_ENCODE) { 78 1.1 cgd if (cmsg->rm_call.cb_cred.oa_length > MAX_AUTH_BYTES) { 79 1.1 cgd return (FALSE); 80 1.1 cgd } 81 1.1 cgd if (cmsg->rm_call.cb_verf.oa_length > MAX_AUTH_BYTES) { 82 1.1 cgd return (FALSE); 83 1.1 cgd } 84 1.1 cgd buf = XDR_INLINE(xdrs, 8 * BYTES_PER_XDR_UNIT 85 1.1 cgd + RNDUP(cmsg->rm_call.cb_cred.oa_length) 86 1.1 cgd + 2 * BYTES_PER_XDR_UNIT 87 1.1 cgd + RNDUP(cmsg->rm_call.cb_verf.oa_length)); 88 1.1 cgd if (buf != NULL) { 89 1.16 fvdl IXDR_PUT_INT32(buf, cmsg->rm_xid); 90 1.1 cgd IXDR_PUT_ENUM(buf, cmsg->rm_direction); 91 1.1 cgd if (cmsg->rm_direction != CALL) { 92 1.1 cgd return (FALSE); 93 1.1 cgd } 94 1.16 fvdl IXDR_PUT_INT32(buf, cmsg->rm_call.cb_rpcvers); 95 1.1 cgd if (cmsg->rm_call.cb_rpcvers != RPC_MSG_VERSION) { 96 1.1 cgd return (FALSE); 97 1.1 cgd } 98 1.16 fvdl IXDR_PUT_INT32(buf, cmsg->rm_call.cb_prog); 99 1.16 fvdl IXDR_PUT_INT32(buf, cmsg->rm_call.cb_vers); 100 1.16 fvdl IXDR_PUT_INT32(buf, cmsg->rm_call.cb_proc); 101 1.1 cgd oa = &cmsg->rm_call.cb_cred; 102 1.1 cgd IXDR_PUT_ENUM(buf, oa->oa_flavor); 103 1.16 fvdl IXDR_PUT_INT32(buf, oa->oa_length); 104 1.1 cgd if (oa->oa_length) { 105 1.11 christos memmove(buf, oa->oa_base, oa->oa_length); 106 1.2 cgd buf += RNDUP(oa->oa_length) / sizeof (int32_t); 107 1.1 cgd } 108 1.1 cgd oa = &cmsg->rm_call.cb_verf; 109 1.1 cgd IXDR_PUT_ENUM(buf, oa->oa_flavor); 110 1.16 fvdl IXDR_PUT_INT32(buf, oa->oa_length); 111 1.1 cgd if (oa->oa_length) { 112 1.11 christos memmove(buf, oa->oa_base, oa->oa_length); 113 1.1 cgd /* no real need.... 114 1.2 cgd buf += RNDUP(oa->oa_length) / sizeof (int32_t); 115 1.1 cgd */ 116 1.1 cgd } 117 1.1 cgd return (TRUE); 118 1.1 cgd } 119 1.1 cgd } 120 1.1 cgd if (xdrs->x_op == XDR_DECODE) { 121 1.1 cgd buf = XDR_INLINE(xdrs, 8 * BYTES_PER_XDR_UNIT); 122 1.1 cgd if (buf != NULL) { 123 1.16 fvdl cmsg->rm_xid = IXDR_GET_U_INT32(buf); 124 1.1 cgd cmsg->rm_direction = IXDR_GET_ENUM(buf, enum msg_type); 125 1.1 cgd if (cmsg->rm_direction != CALL) { 126 1.1 cgd return (FALSE); 127 1.1 cgd } 128 1.16 fvdl cmsg->rm_call.cb_rpcvers = IXDR_GET_U_INT32(buf); 129 1.1 cgd if (cmsg->rm_call.cb_rpcvers != RPC_MSG_VERSION) { 130 1.1 cgd return (FALSE); 131 1.1 cgd } 132 1.16 fvdl cmsg->rm_call.cb_prog = IXDR_GET_U_INT32(buf); 133 1.16 fvdl cmsg->rm_call.cb_vers = IXDR_GET_U_INT32(buf); 134 1.16 fvdl cmsg->rm_call.cb_proc = IXDR_GET_U_INT32(buf); 135 1.1 cgd oa = &cmsg->rm_call.cb_cred; 136 1.1 cgd oa->oa_flavor = IXDR_GET_ENUM(buf, enum_t); 137 1.16 fvdl oa->oa_length = (u_int)IXDR_GET_U_INT32(buf); 138 1.1 cgd if (oa->oa_length) { 139 1.1 cgd if (oa->oa_length > MAX_AUTH_BYTES) { 140 1.1 cgd return (FALSE); 141 1.1 cgd } 142 1.1 cgd if (oa->oa_base == NULL) { 143 1.18 christos oa->oa_base = mem_alloc(oa->oa_length); 144 1.12 lukem if (oa->oa_base == NULL) 145 1.12 lukem return (FALSE); 146 1.1 cgd } 147 1.1 cgd buf = XDR_INLINE(xdrs, RNDUP(oa->oa_length)); 148 1.1 cgd if (buf == NULL) { 149 1.1 cgd if (xdr_opaque(xdrs, oa->oa_base, 150 1.1 cgd oa->oa_length) == FALSE) { 151 1.1 cgd return (FALSE); 152 1.1 cgd } 153 1.1 cgd } else { 154 1.11 christos memmove(oa->oa_base, buf, 155 1.1 cgd oa->oa_length); 156 1.1 cgd /* no real need.... 157 1.1 cgd buf += RNDUP(oa->oa_length) / 158 1.2 cgd sizeof (int32_t); 159 1.1 cgd */ 160 1.1 cgd } 161 1.1 cgd } 162 1.1 cgd oa = &cmsg->rm_call.cb_verf; 163 1.1 cgd buf = XDR_INLINE(xdrs, 2 * BYTES_PER_XDR_UNIT); 164 1.1 cgd if (buf == NULL) { 165 1.1 cgd if (xdr_enum(xdrs, &oa->oa_flavor) == FALSE || 166 1.1 cgd xdr_u_int(xdrs, &oa->oa_length) == FALSE) { 167 1.1 cgd return (FALSE); 168 1.1 cgd } 169 1.1 cgd } else { 170 1.1 cgd oa->oa_flavor = IXDR_GET_ENUM(buf, enum_t); 171 1.16 fvdl oa->oa_length = (u_int)IXDR_GET_U_INT32(buf); 172 1.1 cgd } 173 1.1 cgd if (oa->oa_length) { 174 1.1 cgd if (oa->oa_length > MAX_AUTH_BYTES) { 175 1.1 cgd return (FALSE); 176 1.1 cgd } 177 1.1 cgd if (oa->oa_base == NULL) { 178 1.18 christos oa->oa_base = mem_alloc(oa->oa_length); 179 1.12 lukem if (oa->oa_base == NULL) 180 1.12 lukem return (FALSE); 181 1.1 cgd } 182 1.1 cgd buf = XDR_INLINE(xdrs, RNDUP(oa->oa_length)); 183 1.1 cgd if (buf == NULL) { 184 1.1 cgd if (xdr_opaque(xdrs, oa->oa_base, 185 1.1 cgd oa->oa_length) == FALSE) { 186 1.1 cgd return (FALSE); 187 1.1 cgd } 188 1.1 cgd } else { 189 1.11 christos memmove(oa->oa_base, buf, 190 1.1 cgd oa->oa_length); 191 1.1 cgd /* no real need... 192 1.1 cgd buf += RNDUP(oa->oa_length) / 193 1.2 cgd sizeof (int32_t); 194 1.1 cgd */ 195 1.1 cgd } 196 1.1 cgd } 197 1.1 cgd return (TRUE); 198 1.1 cgd } 199 1.1 cgd } 200 1.1 cgd if ( 201 1.4 cgd xdr_u_int32_t(xdrs, &(cmsg->rm_xid)) && 202 1.17 christos xdr_enum(xdrs, (enum_t *)(void *)&(cmsg->rm_direction)) && 203 1.1 cgd (cmsg->rm_direction == CALL) && 204 1.4 cgd xdr_u_int32_t(xdrs, &(cmsg->rm_call.cb_rpcvers)) && 205 1.1 cgd (cmsg->rm_call.cb_rpcvers == RPC_MSG_VERSION) && 206 1.4 cgd xdr_u_int32_t(xdrs, &(cmsg->rm_call.cb_prog)) && 207 1.4 cgd xdr_u_int32_t(xdrs, &(cmsg->rm_call.cb_vers)) && 208 1.4 cgd xdr_u_int32_t(xdrs, &(cmsg->rm_call.cb_proc)) && 209 1.1 cgd xdr_opaque_auth(xdrs, &(cmsg->rm_call.cb_cred)) ) 210 1.12 lukem return (xdr_opaque_auth(xdrs, &(cmsg->rm_call.cb_verf))); 211 1.1 cgd return (FALSE); 212 1.1 cgd } 213