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 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
|
/* Copyright 2018, UCAR/Unidata and OPeNDAP, Inc.
See the COPYRIGHT file for more information. */
/*
* Copyright (c) 2009, Sun Microsystems, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of Sun Microsystems, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* from: @(#)xdr.h 1.19 87/04/22 SMI
* from: @(#)xdr.h 2.2 88/07/29 4.0 RPCSRC
* $FreeBSD: src/include/rpc/xdr.h,v 1.23 2003/03/07 13:19:40 nectar Exp $
* $NetBSD: xdr.h,v 1.19 2000/07/17 05:00:45 matt Exp $
*/
/* Define our own implementation of the needed
elements of XDR. Assumes read-only
*/
#undef ENDIAN_VALIDATE
#undef XXDRTRACE
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <string.h>
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef _MSC_VER
#include <wchar.h>
#include <sys/types.h>
#endif
#ifdef ENDIAN_VALIDATE
#include <arpa/inet.h>
#endif
#include "xxdr.h"
int xxdr_network_order; /* network order is big endian */
static int xxdr_big_endian; /* what is this machine? */
#ifdef XXDRTRACE
static void
xxdrtrace(XXDR* xdr, char* where, off_t arg)
{
fprintf(stderr,"xxdr: %s: arg=%ld ; pos=%ld len=%ld\n",
where,arg,(long)xdr->pos,(long)xdr->length);
fflush(stderr);
}
#else
#define xxdrtrace(x,y,z)
#endif
/* Read-only operations */
int xxdr_getbytes(XXDR* xdrs, char* memory, off_t count)
{
if(!memory) return 0;
if(!xdrs->getbytes(xdrs,memory,count))
return 0;
return 1;
}
/* get a (unsigned) char from underlying stream*/
int
xxdr_uchar(XXDR* xdr, unsigned char* ip)
{
unsigned int ii;
if(!ip) return 0;
if(!xdr->getbytes(xdr,(char*)&ii,(off_t)sizeof(unsigned int)))
return 0;
/*convert from network order*/
if(!xxdr_network_order) {
swapinline32(&ii);
}
*ip = (unsigned char)ii;
return 1;
}
/* get an unsigned short from underlying stream*/
int
xxdr_ushort(XXDR* xdr, unsigned short* ip)
{
unsigned int ii;
if(!ip) return 0;
if(!xdr->getbytes(xdr,(char*)&ii,(off_t)sizeof(unsigned int)))
return 0;
/*convert from network order*/
if(!xxdr_network_order) {
swapinline32(&ii);
}
*ip = (unsigned short)ii;
return 1;
}
/* get a unsigned int from underlying stream*/
int
xxdr_uint(XXDR* xdr, unsigned int* ip)
{
if(!ip) return 0;
if(!xdr->getbytes(xdr,(char*)ip,(off_t)sizeof(*ip)))
return 0;
/*convert from network order*/
if(!xxdr_network_order) {
swapinline32(ip);
}
return 1;
}
/* get a long long from underlying stream*/
int
xxdr_ulonglong(XXDR* xdr, unsigned long long* llp)
{
/* Pull two units */
if(!llp) return 0;
if(!xdr->getbytes(xdr,(char*)llp,(off_t)sizeof(*llp)))
return 0;
/* Convert to signed/unsigned */
/*convert from network order*/
if(!xxdr_network_order) {
swapinline64(llp);
}
return 1;
}
/* get some bytes from underlying stream;
will move xdrs pointer to next XDRUNIT boundary*/
int
xxdr_opaque(XXDR* xdr, char* mem, off_t count)
{
off_t pos,rounded;
if(!xdr->getbytes(xdr,mem,count))
return 0;
pos = xxdr_getpos(xdr);
rounded = RNDUP(pos);
return xxdr_skip(xdr,(rounded - pos));
}
/* get counted string from underlying stream*/
int
xxdr_string(XXDR* xdrs, char** sp, off_t* lenp)
{
char* s;
unsigned int len;
if(!xxdr_uint(xdrs,&len)) return 0;
s = (char*)malloc((size_t)len+1);
if(s == NULL) return 0;
if(!xxdr_opaque(xdrs,s,(off_t)len)) {
free((void*)s);
return 0;
}
s[len] = '\0'; /* make sure it is null terminated */
if(sp) *sp = s;
if(lenp) *lenp = len;
/* xxdr_opaque will have skippped any trailing bytes */
return 1;
}
/* returns bytes off from beginning*/
off_t
xxdr_getpos(XXDR* xdr)
{
return xdr->getpos(xdr);
}
/* reposition the stream*/
int
xxdr_setpos(XXDR* xdr, off_t pos)
{
return xdr->setpos(xdr,pos);
}
/* returns total available starting at current position */
off_t
xxdr_getavail(XXDR* xdr)
{
return xdr->getavail(xdr);
}
/* free up XXDR structure */
void
xxdr_free(XXDR* xdr)
{
xdr->free(xdr);
}
/***********************************/
/* Skip exactly "len" bytes in the input; any rounding must be done by the caller*/
int
xxdr_skip(XXDR* xdrs, off_t len)
{
off_t pos;
pos = xxdr_getpos(xdrs);
pos = (pos + len);
/* Removed the following; pos is unsigned. jhrg 9/30/13 */
/* if(pos < 0) pos = 0; */
return xxdr_setpos(xdrs,pos);
}
/* skip "n" string/bytestring instances in the input*/
int
xxdr_skip_strings(XXDR* xdrs, off_t n)
{
while(n-- > 0) {
unsigned int slen;
off_t slenz;
if(!xxdr_uint(xdrs,&slen)) return 0;
slenz = (off_t)slen;
slenz = RNDUP(slenz);
if(xxdr_skip(xdrs,slenz)) return 0;
}
return 1;
}
unsigned int
xxdr_roundup(off_t n)
{
return (unsigned int)RNDUP(n);
}
unsigned int
ocbyteswap(unsigned int i)
{
unsigned int swap,b0,b1,b2,b3;
b0 = (i>>24) & 0x000000ff;
b1 = (i>>16) & 0x000000ff;
b2 = (i>>8) & 0x000000ff;
b3 = (i) & 0x000000ff;
swap = (b0 | (b1 << 8) | (b2 << 16) | (b3 << 24));
return swap;
}
/**************************************************/
/* File based xdr */
static void
xxdr_filefree(XXDR* xdrs)
{
if(xdrs != NULL) {
(void)fflush((FILE *)xdrs->data);
free(xdrs);
}
}
static int
xxdr_filegetbytes(XXDR* xdrs, char* addr, off_t len)
{
int ok = 1;
xxdrtrace(xdrs,"getbytes",len);
if(len < 0) len = 0;
if(!xdrs->valid)
{
if(fseek((FILE *)xdrs->data, (long)(xdrs->pos + xdrs->base), 0) != 0) {
ok=0;
goto done;
}
xdrs->valid = 1;
}
if(xdrs->pos + len > xdrs->length)
return 0;
if(len > 0) {
size_t count = fread(addr, (size_t)len, (size_t)1, (FILE*)xdrs->data);
if(count == 0) {
ok=0;
goto done;
}
}
xdrs->pos += len;
done:
return ok;
}
static off_t
xxdr_filegetpos(XXDR* xdrs)
{
xxdrtrace(xdrs,"getpos",0);
return xdrs->pos;
}
static off_t
xxdr_filegetavail(XXDR* xdrs)
{
xxdrtrace(xdrs,"getavail",0);
return (xdrs->length - xdrs->pos);
}
static int
xxdr_filesetpos(XXDR* xdrs, off_t pos)
{
int ok = 1;
xxdrtrace(xdrs,"setpos",pos);
if(pos == xdrs->pos) goto done;
if(pos < 0) pos = 0;
if(pos > xdrs->length) {ok=0;goto done;}
xdrs->pos = pos;
xdrs->valid = 0;
done:
return ok;
}
/*
Modified to track the current position to avoid the file io
operation. Not sure if this worth the effort because I
don't actually know the cost to doing an fseek
*/
/*
* Initialize a stdio xdr stream.
* Sets the xdr stream handle xdrs for use on the stream file.
* Operation flag is set to op.
*/
XXDR*
xxdr_filecreate(FILE* file, off_t base)
{
XXDR* xdrs = (XXDR*)calloc(1,sizeof(XXDR));
if(xdrs != NULL) {
xdrs->data = (void*)file;
xdrs->base = base;
xdrs->pos = 0;
xdrs->valid = 0;
if(fseek(file,0L,SEEK_END)) {
free(xdrs);
return NULL;
}
xdrs->length = (off_t)ftell(file);
xdrs->length -= xdrs->base;
xdrs->getbytes = xxdr_filegetbytes;
xdrs->setpos = xxdr_filesetpos;
xdrs->getpos = xxdr_filegetpos;
xdrs->getavail = xxdr_filegetavail;
xdrs->free = xxdr_filefree;
}
xxdrtrace(xdrs,"create",base);
return xdrs;
}
/**************************************************/
/* memory based xdr */
static void
xxdr_memfree(XXDR* xdrs)
{
if(xdrs != NULL) {
free(xdrs);
}
}
static int
xxdr_memgetbytes(XXDR* xdrs, char* addr, off_t len)
{
int ok = 1;
xxdrtrace(xdrs,"getbytes",len);
if(len < 0) len = 0;
if(xdrs->pos+len > xdrs->length) {ok=0; goto done;}
if(len > 0) {
memcpy(addr,(char*)xdrs->data+xdrs->base+xdrs->pos, (size_t)len);
}
xdrs->pos += len;
done:
return ok;
}
static off_t
xxdr_memgetpos(XXDR* xdrs)
{
xxdrtrace(xdrs,"getpos",0);
return xdrs->pos;
}
static off_t
xxdr_memgetavail(XXDR* xdrs)
{
xxdrtrace(xdrs,"getavail",0);
return (xdrs->length - xdrs->pos);
}
static int
xxdr_memsetpos(XXDR* xdrs, off_t pos)
{
int ok = 1;
xxdrtrace(xdrs,"setpos",pos);
if(pos == xdrs->pos) goto done;
if(pos > xdrs->length) {ok=0; goto done;}
xdrs->pos = pos;
done:
return ok;
}
/*
Modified to track the current position to avoid the file io
operation. Not sure if this worth the effort because I
don't actually know the cost to doing an fseek
*/
/*
* Initialize a stdio xdr stream.
* Sets the xdr stream handle xdrs for use on the
* given memory starting at base offset.
*/
XXDR*
xxdr_memcreate(char* mem, off_t memsize, off_t base)
{
XXDR* xdrs = (XXDR*)calloc(1,sizeof(XXDR));
if(xdrs != NULL) {
/* zero base memory */
xdrs->data = (void*)(mem + base);
xdrs->base = 0;
xdrs->length = memsize - base;
xdrs->pos = 0;
xdrs->getbytes = xxdr_memgetbytes;
xdrs->setpos = xxdr_memsetpos;
xdrs->getpos = xxdr_memgetpos;
xdrs->getavail = xxdr_memgetavail;
xdrs->free = xxdr_memfree;
}
xxdrtrace(xdrs,"create",base);
return xdrs;
}
/* Float utility types */
/* get a float from underlying stream*/
int
xxdr_float(XXDR* xdr, float* fp)
{
int status = 0;
float f;
unsigned int* data = (unsigned int*)&f;
/* Pull one unit directly into a float */
status = xxdr_uint(xdr,data);
if(status && fp)
*fp = f;
return status;
}
/* Get a double from underlying stream */
int
xxdr_double(XXDR* xdr, double* dp)
{
int status = 0;
char data[2*XDRUNIT];
/* Pull two units */
status = xxdr_opaque(xdr,data,(off_t)2*XDRUNIT);
if(status && dp) {
xxdrntohdouble(data,dp);
}
return status;
}
/* Double needs special handling */
void
xxdrntohdouble(char* c8, double* dp)
{
unsigned int ii[2];
memcpy(ii,c8,(size_t)2*XDRUNIT);
if(!xxdr_big_endian) {
unsigned int tmp;
/* reverse byte order */
swapinline32(&ii[0]);
swapinline32(&ii[1]);
/* interchange ii[0] and ii[1] */
tmp = ii[0];
ii[0] = ii[1];
ii[1] = tmp;
}
/* use memcpy avoid type punning */
if(dp) memcpy(dp, ii, sizeof(double));
}
void
xxdr_init()
{
/* Compute if we are same as network order v-a-v xdr */
int testint = 0x00000001;
char *byte = (char *)&testint;
xxdr_big_endian = (byte[0] == 0 ? 1 : 0);
xxdr_network_order = xxdr_big_endian;
#ifdef ENDIAN_VALIDATE
/* validate using ntohl */
if(ntohl(testint) == testint) {
if(!xxdr_network_order) {
fprintf(stderr,"xxdr_init: endian mismatch\n");
fflush(stderr);
exit(1);
}
}
#endif
}
|