Blame extract.h

Packit 209cc3
/*
Packit 209cc3
 * Copyright (c) 1992, 1993, 1994, 1995, 1996
Packit 209cc3
 *	The Regents of the University of California.  All rights reserved.
Packit 209cc3
 *
Packit 209cc3
 * Redistribution and use in source and binary forms, with or without
Packit 209cc3
 * modification, are permitted provided that: (1) source code distributions
Packit 209cc3
 * retain the above copyright notice and this paragraph in its entirety, (2)
Packit 209cc3
 * distributions including binary code include the above copyright notice and
Packit 209cc3
 * this paragraph in its entirety in the documentation or other materials
Packit 209cc3
 * provided with the distribution, and (3) all advertising materials mentioning
Packit 209cc3
 * features or use of this software display the following acknowledgement:
Packit 209cc3
 * ``This product includes software developed by the University of California,
Packit 209cc3
 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
Packit 209cc3
 * the University nor the names of its contributors may be used to endorse
Packit 209cc3
 * or promote products derived from this software without specific prior
Packit 209cc3
 * written permission.
Packit 209cc3
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
Packit 209cc3
 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
Packit 209cc3
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
Packit 209cc3
 */
Packit 209cc3
Packit 209cc3
#ifndef _WIN32
Packit 209cc3
#include <arpa/inet.h>
Packit 209cc3
#endif
Packit 209cc3
Packit 209cc3
#include <pcap/pcap-inttypes.h>
Packit 209cc3
#include <pcap/compiler-tests.h>
Packit 209cc3
Packit 209cc3
/*
Packit 209cc3
 * Macros to extract possibly-unaligned big-endian integral values.
Packit 209cc3
 */
Packit 209cc3
#ifdef LBL_ALIGN
Packit 209cc3
/*
Packit 209cc3
 * The processor doesn't natively handle unaligned loads.
Packit 209cc3
 */
Packit 209cc3
#if PCAP_IS_AT_LEAST_GNUC_VERSION(2,0) && \
Packit 209cc3
    (defined(__alpha) || defined(__alpha__) || \
Packit 209cc3
     defined(__mips) || defined(__mips__))
Packit 209cc3
/*
Packit 209cc3
 * This is MIPS or Alpha, which don't natively handle unaligned loads,
Packit 209cc3
 * but which have instructions that can help when doing unaligned
Packit 209cc3
 * loads, and this is GCC 2.0 or later or a compiler that claims to
Packit 209cc3
 * be GCC 2.0 or later, which we assume that mean we have
Packit 209cc3
 * __attribute__((packed)), which we can use to convince the compiler
Packit 209cc3
 * to generate those instructions.
Packit 209cc3
 *
Packit 209cc3
 * Declare packed structures containing a uint16_t and a uint32_t,
Packit 209cc3
 * cast the pointer to point to one of those, and fetch through it;
Packit 209cc3
 * the GCC manual doesn't appear to explicitly say that
Packit 209cc3
 * __attribute__((packed)) causes the compiler to generate unaligned-safe
Packit 209cc3
 * code, but it apppears to do so.
Packit 209cc3
 *
Packit 209cc3
 * We do this in case the compiler can generate code using those
Packit 209cc3
 * instructions to do an unaligned load and pass stuff to "ntohs()" or
Packit 209cc3
 * "ntohl()", which might be better than than the code to fetch the
Packit 209cc3
 * bytes one at a time and assemble them.  (That might not be the
Packit 209cc3
 * case on a little-endian platform, such as DEC's MIPS machines and
Packit 209cc3
 * Alpha machines, where "ntohs()" and "ntohl()" might not be done
Packit 209cc3
 * inline.)
Packit 209cc3
 *
Packit 209cc3
 * We do this only for specific architectures because, for example,
Packit 209cc3
 * at least some versions of GCC, when compiling for 64-bit SPARC,
Packit 209cc3
 * generate code that assumes alignment if we do this.
Packit 209cc3
 *
Packit 209cc3
 * XXX - add other architectures and compilers as possible and
Packit 209cc3
 * appropriate.
Packit 209cc3
 *
Packit 209cc3
 * HP's C compiler, indicated by __HP_cc being defined, supports
Packit 209cc3
 * "#pragma unaligned N" in version A.05.50 and later, where "N"
Packit 209cc3
 * specifies a number of bytes at which the typedef on the next
Packit 209cc3
 * line is aligned, e.g.
Packit 209cc3
 *
Packit 209cc3
 *	#pragma unalign 1
Packit 209cc3
 *	typedef uint16_t unaligned_uint16_t;
Packit 209cc3
 *
Packit 209cc3
 * to define unaligned_uint16_t as a 16-bit unaligned data type.
Packit 209cc3
 * This could be presumably used, in sufficiently recent versions of
Packit 209cc3
 * the compiler, with macros similar to those below.  This would be
Packit 209cc3
 * useful only if that compiler could generate better code for PA-RISC
Packit 209cc3
 * or Itanium than would be generated by a bunch of shifts-and-ORs.
Packit 209cc3
 *
Packit 209cc3
 * DEC C, indicated by __DECC being defined, has, at least on Alpha,
Packit 209cc3
 * an __unaligned qualifier that can be applied to pointers to get the
Packit 209cc3
 * compiler to generate code that does unaligned loads and stores when
Packit 209cc3
 * dereferencing the pointer in question.
Packit 209cc3
 *
Packit 209cc3
 * XXX - what if the native C compiler doesn't support
Packit 209cc3
 * __attribute__((packed))?  How can we get it to generate unaligned
Packit 209cc3
 * accesses for *specific* items?
Packit 209cc3
 */
Packit 209cc3
typedef struct {
Packit 209cc3
	uint16_t	val;
Packit 209cc3
} __attribute__((packed)) unaligned_uint16_t;
Packit 209cc3
Packit 209cc3
typedef struct {
Packit 209cc3
	uint32_t	val;
Packit 209cc3
} __attribute__((packed)) unaligned_uint32_t;
Packit 209cc3
Packit 209cc3
static inline uint16_t
Packit 209cc3
EXTRACT_16BITS(const void *p)
Packit 209cc3
{
Packit 209cc3
	return ((uint16_t)ntohs(((const unaligned_uint16_t *)(p))->val));
Packit 209cc3
}
Packit 209cc3
Packit 209cc3
static inline uint32_t
Packit 209cc3
EXTRACT_32BITS(const void *p)
Packit 209cc3
{
Packit 209cc3
	return ((uint32_t)ntohl(((const unaligned_uint32_t *)(p))->val));
Packit 209cc3
}
Packit 209cc3
Packit 209cc3
static inline uint64_t
Packit 209cc3
EXTRACT_64BITS(const void *p)
Packit 209cc3
{
Packit 209cc3
	return ((uint64_t)(((uint64_t)ntohl(((const unaligned_uint32_t *)(p) + 0)->val)) << 32 | \
Packit 209cc3
		((uint64_t)ntohl(((const unaligned_uint32_t *)(p) + 1)->val)) << 0));
Packit 209cc3
}
Packit 209cc3
Packit 209cc3
#else /* have to do it a byte at a time */
Packit 209cc3
/*
Packit 209cc3
 * This isn't a GCC-compatible compiler, we don't have __attribute__,
Packit 209cc3
 * or we do but we don't know of any better way with this instruction
Packit 209cc3
 * set to do unaligned loads, so do unaligned loads of big-endian
Packit 209cc3
 * quantities the hard way - fetch the bytes one at a time and
Packit 209cc3
 * assemble them.
Packit 209cc3
 */
Packit 209cc3
#define EXTRACT_16BITS(p) \
Packit 209cc3
	((uint16_t)(((uint16_t)(*((const uint8_t *)(p) + 0)) << 8) | \
Packit 209cc3
	            ((uint16_t)(*((const uint8_t *)(p) + 1)) << 0)))
Packit 209cc3
#define EXTRACT_32BITS(p) \
Packit 209cc3
	((uint32_t)(((uint32_t)(*((const uint8_t *)(p) + 0)) << 24) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 1)) << 16) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 2)) << 8) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 3)) << 0)))
Packit 209cc3
#define EXTRACT_64BITS(p) \
Packit 209cc3
	((uint64_t)(((uint64_t)(*((const uint8_t *)(p) + 0)) << 56) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 1)) << 48) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 2)) << 40) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 3)) << 32) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 4)) << 24) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 5)) << 16) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 6)) << 8) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 7)) << 0)))
Packit 209cc3
#endif /* must special-case unaligned accesses */
Packit 209cc3
#else /* LBL_ALIGN */
Packit 209cc3
/*
Packit 209cc3
 * The processor natively handles unaligned loads, so we can just
Packit 209cc3
 * cast the pointer and fetch through it.
Packit 209cc3
 */
Packit 209cc3
static inline uint16_t
Packit 209cc3
EXTRACT_16BITS(const void *p)
Packit 209cc3
{
Packit 209cc3
	return ((uint16_t)ntohs(*(const uint16_t *)(p)));
Packit 209cc3
}
Packit 209cc3
Packit 209cc3
static inline uint32_t
Packit 209cc3
EXTRACT_32BITS(const void *p)
Packit 209cc3
{
Packit 209cc3
	return ((uint32_t)ntohl(*(const uint32_t *)(p)));
Packit 209cc3
}
Packit 209cc3
Packit 209cc3
static inline uint64_t
Packit 209cc3
EXTRACT_64BITS(const void *p)
Packit 209cc3
{
Packit 209cc3
	return ((uint64_t)(((uint64_t)ntohl(*((const uint32_t *)(p) + 0))) << 32 | \
Packit 209cc3
		((uint64_t)ntohl(*((const uint32_t *)(p) + 1))) << 0));
Packit 209cc3
Packit 209cc3
}
Packit 209cc3
Packit 209cc3
#endif /* LBL_ALIGN */
Packit 209cc3
Packit 209cc3
#define EXTRACT_24BITS(p) \
Packit 209cc3
	((uint32_t)(((uint32_t)(*((const uint8_t *)(p) + 0)) << 16) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 1)) << 8) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 2)) << 0)))
Packit 209cc3
Packit 209cc3
#define EXTRACT_40BITS(p) \
Packit 209cc3
	((uint64_t)(((uint64_t)(*((const uint8_t *)(p) + 0)) << 32) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 1)) << 24) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 2)) << 16) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 3)) << 8) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 4)) << 0)))
Packit 209cc3
Packit 209cc3
#define EXTRACT_48BITS(p) \
Packit 209cc3
	((uint64_t)(((uint64_t)(*((const uint8_t *)(p) + 0)) << 40) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 1)) << 32) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 2)) << 24) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 3)) << 16) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 4)) << 8) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 5)) << 0)))
Packit 209cc3
Packit 209cc3
#define EXTRACT_56BITS(p) \
Packit 209cc3
	((uint64_t)(((uint64_t)(*((const uint8_t *)(p) + 0)) << 48) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 1)) << 40) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 2)) << 32) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 3)) << 24) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 4)) << 16) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 5)) << 8) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 6)) << 0)))
Packit 209cc3
Packit 209cc3
/*
Packit 209cc3
 * Macros to extract possibly-unaligned little-endian integral values.
Packit 209cc3
 * XXX - do loads on little-endian machines that support unaligned loads?
Packit 209cc3
 */
Packit 209cc3
#define EXTRACT_LE_8BITS(p) (*(p))
Packit 209cc3
#define EXTRACT_LE_16BITS(p) \
Packit 209cc3
	((uint16_t)(((uint16_t)(*((const uint8_t *)(p) + 1)) << 8) | \
Packit 209cc3
	            ((uint16_t)(*((const uint8_t *)(p) + 0)) << 0)))
Packit 209cc3
#define EXTRACT_LE_32BITS(p) \
Packit 209cc3
	((uint32_t)(((uint32_t)(*((const uint8_t *)(p) + 3)) << 24) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 2)) << 16) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 1)) << 8) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 0)) << 0)))
Packit 209cc3
#define EXTRACT_LE_24BITS(p) \
Packit 209cc3
	((uint32_t)(((uint32_t)(*((const uint8_t *)(p) + 2)) << 16) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 1)) << 8) | \
Packit 209cc3
	            ((uint32_t)(*((const uint8_t *)(p) + 0)) << 0)))
Packit 209cc3
#define EXTRACT_LE_64BITS(p) \
Packit 209cc3
	((uint64_t)(((uint64_t)(*((const uint8_t *)(p) + 7)) << 56) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 6)) << 48) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 5)) << 40) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 4)) << 32) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 3)) << 24) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 2)) << 16) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 1)) << 8) | \
Packit 209cc3
	            ((uint64_t)(*((const uint8_t *)(p) + 0)) << 0)))