Skip to content
Snippets Groups Projects
constr_CHOICE.c 15.8 KiB
Newer Older
Lev Walkin's avatar
Lev Walkin committed
/*-
 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
 * Redistribution and modifications are permitted subject to BSD license.
 */
#include <constr_CHOICE.h>
#include <assert.h>

/*
 * Number of bytes left for this structure.
 * (ctx->left) indicates the number of bytes _transferred_ for the structure.
 * (size) contains the number of bytes in the buffer passed.
 */
Lev Walkin's avatar
Lev Walkin committed
#define	LEFT	((size<(size_t)ctx->left)?size:(size_t)ctx->left)
Lev Walkin's avatar
Lev Walkin committed

/*
 * If the subprocessor function returns with an indication that it wants
 * more data, it may well be a fatal decoding problem, because the
 * size is constrained by the <TLV>'s L, even if the buffer size allows
 * reading more data.
 * For example, consider the buffer containing the following TLVs:
 * <T:5><L:1><V> <T:6>...
 * The TLV length clearly indicates that one byte is expected in V, but
 * if the V processor returns with "want more data" even if the buffer
 * contains way more data than the V processor have seen.
 */
#define	SIZE_VIOLATION	(ctx->left >= 0 && (size_t)ctx->left <= size)
Lev Walkin's avatar
Lev Walkin committed

/*
 * This macro "eats" the part of the buffer which is definitely "consumed",
 * i.e. was correctly converted into local representation or rightfully skipped.
 */
#define	ADVANCE(num_bytes)	do {		\
		size_t num = num_bytes;		\
Lev Walkin's avatar
Lev Walkin committed
		(char *)ptr += num;		\
Lev Walkin's avatar
Lev Walkin committed
		size -= num;			\
		if(ctx->left >= 0)		\
			ctx->left -= num;	\
		consumed_myself += num;		\
	} while(0)

/*
 * Switch to the next phase of parsing.
 */
#define	NEXT_PHASE(ctx)	do {			\
		ctx->phase++;			\
		ctx->step = 0;			\
	} while(0)

/*
 * Return a standardized complex structure.
 */
#define	RETURN(_code)	do {			\
		rval.code = _code;		\
		rval.consumed = consumed_myself;\
		return rval;			\
	} while(0)

/*
 * See the definitions.
 */
Lev Walkin's avatar
Lev Walkin committed
static int _fetch_present_idx(const void *struct_ptr, int off, int size);
static void _set_present_idx(void *sptr, int offset, int size, int pres);
Lev Walkin's avatar
Lev Walkin committed

/*
 * Tags are canonically sorted in the tag to member table.
 */
static int
_search4tag(const void *ap, const void *bp) {
Lev Walkin's avatar
Lev Walkin committed
	const asn1_TYPE_tag2member_t *a = (const asn1_TYPE_tag2member_t *)ap;
	const asn1_TYPE_tag2member_t *b = (const asn1_TYPE_tag2member_t *)bp;

Lev Walkin's avatar
Lev Walkin committed
	int a_class = BER_TAG_CLASS(a->el_tag);
	int b_class = BER_TAG_CLASS(b->el_tag);

	if(a_class == b_class) {
		ber_tlv_tag_t a_value = BER_TAG_VALUE(a->el_tag);
		ber_tlv_tag_t b_value = BER_TAG_VALUE(b->el_tag);

		if(a_value == b_value)
			return 0;
		else if(a_value < b_value)
			return -1;
		else
			return 1;
	} else if(a_class < b_class) {
		return -1;
	} else {
		return 1;
	}
}

/*
 * The decoder of the CHOICE type.
 */
ber_dec_rval_t
Lev Walkin's avatar
Lev Walkin committed
CHOICE_decode_ber(asn1_TYPE_descriptor_t *td,
Lev Walkin's avatar
Lev Walkin committed
	void **struct_ptr, void *ptr, size_t size, int tag_mode) {
	/*
	 * Bring closer parts of structure description.
	 */
Lev Walkin's avatar
Lev Walkin committed
	asn1_CHOICE_specifics_t *specs = (asn1_CHOICE_specifics_t *)td->specifics;
	asn1_TYPE_member_t *elements = td->elements;
Lev Walkin's avatar
Lev Walkin committed

	/*
	 * Parts of the structure being constructed.
	 */
	void *st = *struct_ptr;	/* Target structure. */
	ber_dec_ctx_t *ctx;	/* Decoder context */

	ber_tlv_tag_t tlv_tag;	/* T from TLV */
	ssize_t tag_len;	/* Length of TLV's T */
	//ber_tlv_len_t tlv_len;	/* L from TLV */
	ber_dec_rval_t rval;	/* Return code from subparsers */

	ssize_t consumed_myself = 0;	/* Consumed bytes from ptr */

Lev Walkin's avatar
Lev Walkin committed
	ASN_DEBUG("Decoding %s as CHOICE", td->name);
Lev Walkin's avatar
Lev Walkin committed
	
	/*
	 * Create the target structure if it is not present already.
	 */
	if(st == 0) {
		st = *struct_ptr = CALLOC(1, specs->struct_size);
		if(st == 0) {
			RETURN(RC_FAIL);
		}
	}

	/*
	 * Restore parsing context.
	 */
Lev Walkin's avatar
Lev Walkin committed
	ctx = (ber_dec_ctx_t *)((char *)st + specs->ctx_offset);
Lev Walkin's avatar
Lev Walkin committed
	
	/*
	 * Start to parse where left previously
	 */
	switch(ctx->phase) {
	case 0:
		/*
		 * PHASE 0.
		 * Check that the set of tags associated with given structure
		 * perfectly fits our expectations.
		 */

Lev Walkin's avatar
Lev Walkin committed
		if(tag_mode || td->tags_count) {
			rval = ber_check_tags(td, ctx, ptr, size,
Lev Walkin's avatar
Lev Walkin committed
				tag_mode, &ctx->left, 0);
			if(rval.code != RC_OK) {
				ASN_DEBUG("%s tagging check failed: %d",
Lev Walkin's avatar
Lev Walkin committed
					td->name, rval.code);
Lev Walkin's avatar
Lev Walkin committed
				consumed_myself += rval.consumed;
				RETURN(rval.code);
			}

			if(ctx->left >= 0) {
				/* ?Substracted below! */
				ctx->left += rval.consumed;
			}
			ADVANCE(rval.consumed);
		} else {
			ctx->left = -1;
		}

		NEXT_PHASE(ctx);

		ASN_DEBUG("Structure consumes %ld bytes, buffer %ld",
			(long)ctx->left, (long)size);

		/* Fall through */
	case 1:
		/*
		 * Fetch the T from TLV.
		 */
		tag_len = ber_fetch_tag(ptr, LEFT, &tlv_tag);
Lev Walkin's avatar
Lev Walkin committed
		ASN_DEBUG("In %s CHOICE tag length %d", td->name, (int)tag_len);
Lev Walkin's avatar
Lev Walkin committed
		switch(tag_len) {
		case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
			/* Fall through */
		case -1: RETURN(RC_FAIL);
		}

		do {
Lev Walkin's avatar
Lev Walkin committed
			asn1_TYPE_tag2member_t *t2m;
			asn1_TYPE_tag2member_t key;
Lev Walkin's avatar
Lev Walkin committed

			key.el_tag = tlv_tag;
Lev Walkin's avatar
Lev Walkin committed
			(void *)t2m = bsearch(&key,
					specs->tag2el, specs->tag2el_count,
Lev Walkin's avatar
Lev Walkin committed
					sizeof(specs->tag2el[0]), _search4tag);
			if(t2m) {
				/*
				 * Found the element corresponding to the tag.
				 */
				NEXT_PHASE(ctx);
				ctx->step = t2m->el_no;
				break;
			} else if(specs->extensible == 0) {
				ASN_DEBUG("Unexpected tag %s "
					"in non-extensible CHOICE %s",
Lev Walkin's avatar
Lev Walkin committed
					ber_tlv_tag_string(tlv_tag), td->name);
Lev Walkin's avatar
Lev Walkin committed
				RETURN(RC_FAIL);
			} else {
				/* Skip this tag */
				ssize_t skip;

				ASN_DEBUG("Skipping unknown tag %s",
					ber_tlv_tag_string(tlv_tag));

				skip = ber_skip_length(
					BER_TLV_CONSTRUCTED(ptr),
Lev Walkin's avatar
Lev Walkin committed
					(char *)ptr + tag_len, LEFT - tag_len);
Lev Walkin's avatar
Lev Walkin committed

				switch(skip) {
				case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
					/* Fall through */
				case -1: RETURN(RC_FAIL);
				}

				ADVANCE(skip + tag_len);
				RETURN(RC_OK);
			}
		} while(0);

	case 2:
		/*
		 * PHASE 2.
		 * Read in the element.
		 */
	    do {
Lev Walkin's avatar
Lev Walkin committed
		asn1_TYPE_member_t *elm;/* CHOICE's element */
Lev Walkin's avatar
Lev Walkin committed
		void *memb_ptr;		/* Pointer to the member */
Lev Walkin's avatar
Lev Walkin committed
		void **memb_ptr2;	/* Pointer to that pointer */
Lev Walkin's avatar
Lev Walkin committed

		elm = &elements[ctx->step];

		/*
		 * Compute the position of the member inside a structure,
		 * and also a type of containment (it may be contained
		 * as pointer or using inline inclusion).
		 */
		if(elm->optional) {
			/* Optional member, hereby, a simple pointer */
Lev Walkin's avatar
Lev Walkin committed
			memb_ptr2 = (void **)((char *)st + elm->memb_offset);
Lev Walkin's avatar
Lev Walkin committed
		} else {
			/*
			 * A pointer to a pointer
			 * holding the start of the structure
			 */
			memb_ptr = (char *)st + elm->memb_offset;
			memb_ptr2 = &memb_ptr;
		}
		/*
		 * Invoke the member fetch routine according to member's type
		 */
Lev Walkin's avatar
Lev Walkin committed
		rval = elm->type->ber_decoder(elm->type,
Lev Walkin's avatar
Lev Walkin committed
				memb_ptr2, ptr, LEFT,
				elm->tag_mode);
		switch(rval.code) {
		case RC_OK:
			_set_present_idx(st, specs->pres_offset,
				specs->pres_size, ctx->step + 1);
			break;
		case RC_WMORE: /* More data expected */
			if(!SIZE_VIOLATION) {
				ADVANCE(rval.consumed);
				RETURN(RC_WMORE);
			}
			RETURN(RC_FAIL);
		case RC_FAIL: /* Fatal error */
			RETURN(rval.code);
		} /* switch(rval) */
		
		ADVANCE(rval.consumed);
	  } while(0);

		NEXT_PHASE(ctx);

		/* Fall through */
	case 3:
		ASN_DEBUG("CHOICE %s Leftover: %ld, size = %ld, tm=%d, tc=%d",
Lev Walkin's avatar
Lev Walkin committed
			td->name, (long)ctx->left, (long)size,
			tag_mode, td->tags_count);
Lev Walkin's avatar
Lev Walkin committed

		if(ctx->left > 0) {
			/*
			 * The type must be fully decoded
			 * by the CHOICE member-specific decoder.
			 */
			RETURN(RC_FAIL);
		}

		if(ctx->left == -1
Lev Walkin's avatar
Lev Walkin committed
		&& !(tag_mode || td->tags_count)) {
Lev Walkin's avatar
Lev Walkin committed
			/*
			 * This is an untagged CHOICE.
			 * It doesn't contain nothing
			 * except for the member itself, including all its tags.
			 * The decoding is completed.
			 */
			NEXT_PHASE(ctx);
			break;
		}

		/*
		 * Read in the "end of data chunks"'s.
		 */
		while(ctx->left < 0) {
			ssize_t tl;

			tl = ber_fetch_tag(ptr, LEFT, &tlv_tag);
			switch(tl) {
			case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
				/* Fall through */
			case -1: RETURN(RC_FAIL);
			}

			/*
			 * Expected <0><0>...
			 */
			if(((uint8_t *)ptr)[0] == 0) {
				if(LEFT < 2) {
					if(SIZE_VIOLATION)
						RETURN(RC_FAIL);
					else
						RETURN(RC_WMORE);
				} else if(((uint8_t *)ptr)[1] == 0) {
					/*
					 * Correctly finished with <0><0>.
					 */
					continue;
				}
			} else {
				ASN_DEBUG("Unexpected continuation in %s",
Lev Walkin's avatar
Lev Walkin committed
					td->name);
Lev Walkin's avatar
Lev Walkin committed
				RETURN(RC_FAIL);
			}

			ADVANCE(2);
			ctx->left++;
		}

		NEXT_PHASE(ctx);
	case 4:
		/* No meaningful work here */
		break;
	}
	
	RETURN(RC_OK);
}

der_enc_rval_t
Lev Walkin's avatar
Lev Walkin committed
CHOICE_encode_der(asn1_TYPE_descriptor_t *td,
Lev Walkin's avatar
Lev Walkin committed
		void *struct_ptr,
		int tag_mode, ber_tlv_tag_t tag,
		asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkin's avatar
Lev Walkin committed
	asn1_CHOICE_specifics_t *specs = (asn1_CHOICE_specifics_t *)td->specifics;
	asn1_TYPE_member_t *elm;	/* CHOICE element */
Lev Walkin's avatar
Lev Walkin committed
	der_enc_rval_t erval;
	void *memb_ptr;
	size_t computed_size = 0;
	int present;

	ASN_DEBUG("%s %s as CHOICE",
Lev Walkin's avatar
Lev Walkin committed
		cb?"Encoding":"Estimating", td->name);
Lev Walkin's avatar
Lev Walkin committed

	present = _fetch_present_idx(struct_ptr,
		specs->pres_offset, specs->pres_size);

	/*
	 * If the structure was not initialized, it cannot be encoded:
	 * can't deduce what to encode in the choice type.
	 */
Lev Walkin's avatar
Lev Walkin committed
	if(present <= 0 || present > td->elements_count) {
		if(present == 0 && td->elements_count == 0) {
Lev Walkin's avatar
Lev Walkin committed
			/* The CHOICE is empty?! */
			erval.encoded = 0;
			return erval;
		}
		erval.encoded = -1;
Lev Walkin's avatar
Lev Walkin committed
		erval.failed_type = td;
Lev Walkin's avatar
Lev Walkin committed
		erval.structure_ptr = struct_ptr;
		return erval;
	}

	/*
	 * Seek over the present member of the structure.
	 */
Lev Walkin's avatar
Lev Walkin committed
	elm = &td->elements[present-1];
Lev Walkin's avatar
Lev Walkin committed
	if(elm->optional) {
		memb_ptr = *(void **)((char *)struct_ptr + elm->memb_offset);
		if(memb_ptr == 0) {
			erval.encoded = 0;
			return erval;
		}
	} else {
		memb_ptr = (void *)((char *)struct_ptr + elm->memb_offset);
	}

	/*
	 * If the CHOICE itself is tagged EXPLICIT:
	 * T ::= [2] EXPLICIT CHOICE { ... }
	 * Then emit the appropriate tags.
	 */
Lev Walkin's avatar
Lev Walkin committed
	if(tag_mode == 1 || td->tags_count) {
Lev Walkin's avatar
Lev Walkin committed
		/*
		 * For this, we need to pre-compute the member.
		 */
		ssize_t ret;

		/* Encode member with its tag */
		erval = elm->type->der_encoder(elm->type, memb_ptr,
			elm->tag_mode, elm->tag, 0, 0);
		if(erval.encoded == -1)
			return erval;

		/* Encode CHOICE with parent or my own tag */
Lev Walkin's avatar
Lev Walkin committed
		ret = der_write_tags(td, erval.encoded, tag_mode, tag,
Lev Walkin's avatar
Lev Walkin committed
			cb, app_key);
		if(ret == -1) {
			erval.encoded = -1;
Lev Walkin's avatar
Lev Walkin committed
			erval.failed_type = td;
Lev Walkin's avatar
Lev Walkin committed
			erval.structure_ptr = struct_ptr;
			return erval;
		}
		computed_size += ret;
	}

	/*
	 * Encode the single underlying member.
	 */
	erval = elm->type->der_encoder(elm->type, memb_ptr,
		elm->tag_mode, elm->tag, cb, app_key);
	if(erval.encoded == -1)
		return erval;

	ASN_DEBUG("Encoded CHOICE member in %ld bytes (+%ld)",
		(long)erval.encoded, (long)computed_size);

	erval.encoded += computed_size;

	return erval;
}

ber_tlv_tag_t
CHOICE_outmost_tag(asn1_TYPE_descriptor_t *td, const void *ptr, int tag_mode, ber_tlv_tag_t tag) {
Lev Walkin's avatar
Lev Walkin committed
	asn1_CHOICE_specifics_t *specs = (asn1_CHOICE_specifics_t *)td->specifics;
Lev Walkin's avatar
Lev Walkin committed
	int present;

	assert(tag_mode == 0);
	assert(tag == 0);

	/*
	 * Figure out which CHOICE element is encoded.
	 */
	present = _fetch_present_idx(ptr, specs->pres_offset, specs->pres_size);

Lev Walkin's avatar
Lev Walkin committed
	if(present > 0 || present <= td->elements_count) {
		asn1_TYPE_member_t *elm = &td->elements[present-1];
Lev Walkin's avatar
Lev Walkin committed
		const void *memb_ptr;
Lev Walkin's avatar
Lev Walkin committed

		if(elm->optional) {
Lev Walkin's avatar
Lev Walkin committed
			memb_ptr = *(const void * const *)
					((const char *)ptr + elm->memb_offset);
Lev Walkin's avatar
Lev Walkin committed
		} else {
Lev Walkin's avatar
Lev Walkin committed
			memb_ptr = (const void *)
					((const char *)ptr + elm->memb_offset);
Lev Walkin's avatar
Lev Walkin committed
		}

		return asn1_TYPE_outmost_tag(elm->type, memb_ptr,
			elm->tag_mode, elm->tag);
	} else {
Lev Walkin's avatar
Lev Walkin committed
		return (ber_tlv_tag_t)-1;
Lev Walkin's avatar
Lev Walkin committed
	}
}

int
CHOICE_constraint(asn1_TYPE_descriptor_t *td, const void *sptr,
		asn_app_consume_bytes_f *app_errlog, void *app_key) {
Lev Walkin's avatar
Lev Walkin committed
	asn1_CHOICE_specifics_t *specs = (asn1_CHOICE_specifics_t *)td->specifics;
Lev Walkin's avatar
Lev Walkin committed
	int present;

	if(!sptr) {
Lev Walkin's avatar
Lev Walkin committed
		_ASN_ERRLOG(app_errlog, app_key,
			"%s: value not given (%s:%d)",
			td->name, __FILE__, __LINE__);
Lev Walkin's avatar
Lev Walkin committed
		return -1;
	}

	/*
	 * Figure out which CHOICE element is encoded.
	 */
	present = _fetch_present_idx(sptr, specs->pres_offset,specs->pres_size);
Lev Walkin's avatar
Lev Walkin committed
	if(present > 0 && present <= td->elements_count) {
		asn1_TYPE_member_t *elm = &td->elements[present-1];
Lev Walkin's avatar
Lev Walkin committed
		const void *memb_ptr;

		if(elm->optional) {
			memb_ptr = *(const void * const *)((const char *)sptr + elm->memb_offset);
			if(!memb_ptr) return 0;
		} else {
			memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
		}

Lev Walkin's avatar
Lev Walkin committed
		if(elm->memb_constraints) {
			return elm->memb_constraints(elm->type, memb_ptr,
Lev Walkin's avatar
Lev Walkin committed
				app_errlog, app_key);
Lev Walkin's avatar
Lev Walkin committed
		} else {
			int ret = elm->type->check_constraints(elm->type,
					memb_ptr, app_errlog, app_key);
			/*
			 * Cannot inherit it eralier:
			 * need to make sure we get the updated version.
			 */
			elm->memb_constraints = elm->type->check_constraints;
			return ret;
		}
Lev Walkin's avatar
Lev Walkin committed
	} else {
Lev Walkin's avatar
Lev Walkin committed
		_ASN_ERRLOG(app_errlog, app_key,
Lev Walkin's avatar
Lev Walkin committed
			"%s: no CHOICE element given (%s:%d)",
			td->name, __FILE__, __LINE__);
Lev Walkin's avatar
Lev Walkin committed
		return -1;
	}
}

int
CHOICE_print(asn1_TYPE_descriptor_t *td, const void *sptr, int ilevel,
		asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkin's avatar
Lev Walkin committed
	asn1_CHOICE_specifics_t *specs = (asn1_CHOICE_specifics_t *)td->specifics;
Lev Walkin's avatar
Lev Walkin committed
	int present;

	if(!sptr) return cb("<absent>", 8, app_key);

	/*
	 * Figure out which CHOICE element is encoded.
	 */
	present = _fetch_present_idx(sptr, specs->pres_offset,specs->pres_size);

	/*
	 * Free that element.
	 */
Lev Walkin's avatar
Lev Walkin committed
	if(present > 0 && present <= td->elements_count) {
		asn1_TYPE_member_t *elm = &td->elements[present-1];
Lev Walkin's avatar
Lev Walkin committed
		const void *memb_ptr;

		if(elm->optional) {
			memb_ptr = *(const void * const *)((const char *)sptr + elm->memb_offset);
			if(!memb_ptr) return cb("<absent>", 8, app_key);
		} else {
			memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
		}

		/* Print member's name and stuff */
		if(cb(elm->name, strlen(elm->name), app_key)
		|| cb(": ", 2, app_key))
			return -1;

		return elm->type->print_struct(elm->type, memb_ptr, ilevel,
			cb, app_key);
	} else {
		return cb("<absent>", 8, app_key);
	}
}

void
CHOICE_free(asn1_TYPE_descriptor_t *td, void *ptr, int contents_only) {
Lev Walkin's avatar
Lev Walkin committed
	asn1_CHOICE_specifics_t *specs = (asn1_CHOICE_specifics_t *)td->specifics;
Lev Walkin's avatar
Lev Walkin committed
	int present;

	if(!td || !ptr)
		return;

	ASN_DEBUG("Freeing %s as CHOICE", td->name);

	/*
	 * Figure out which CHOICE element is encoded.
	 */
	present = _fetch_present_idx(ptr, specs->pres_offset, specs->pres_size);

	/*
	 * Free that element.
	 */
Lev Walkin's avatar
Lev Walkin committed
	if(present > 0 && present <= td->elements_count) {
		asn1_TYPE_member_t *elm = &td->elements[present-1];
Lev Walkin's avatar
Lev Walkin committed
		void *memb_ptr;

		if(elm->optional) {
			memb_ptr = *(void **)((char *)ptr + elm->memb_offset);
			if(memb_ptr)
				elm->type->free_struct(elm->type, memb_ptr, 0);
		} else {
			memb_ptr = (void *)((char *)ptr + elm->memb_offset);
			elm->type->free_struct(elm->type, memb_ptr, 1);
		}
	}

	if(!contents_only) {
		FREEMEM(ptr);
	}
}


/*
 * The following functions functions offer protection against -fshort-enums,
 * compatible with little- and big-endian machines.
 * If assertion is triggered, either disable -fshort-enums, or add an entry
 * here with the ->pres_size of your target stracture.
 * Unless the target structure is packed, the ".present" member
 * is guaranteed to be aligned properly. ASN.1 compiler itself does not
 * produce packed code.
 */
Lev Walkin's avatar
Lev Walkin committed
static int
Lev Walkin's avatar
Lev Walkin committed
_fetch_present_idx(const void *struct_ptr, int pres_offset, int pres_size) {
	const void *present_ptr;
	int present;

	present_ptr = ((const char *)struct_ptr) + pres_offset;

	switch(pres_size) {
	case sizeof(int):	present =   *(const int *)present_ptr; break;
	case sizeof(short):	present = *(const short *)present_ptr; break;
	case sizeof(char):	present =  *(const char *)present_ptr; break;
	default:
		/* ANSI C mandates enum to be equivalent to integer */
		assert(pres_size != sizeof(int));
		return 0;	/* If not aborted, pass back safe value */
	}

	return present;
}

Lev Walkin's avatar
Lev Walkin committed
static void
Lev Walkin's avatar
Lev Walkin committed
_set_present_idx(void *struct_ptr, int pres_offset, int pres_size, int present) {
	void *present_ptr;
	present_ptr = ((char *)struct_ptr) + pres_offset;

	switch(pres_size) {
	case sizeof(int):	*(int *)present_ptr   = present; break;
	case sizeof(short):	*(short *)present_ptr = present; break;
	case sizeof(char):	*(char *)present_ptr  = present; break;
	default:
		/* ANSI C mandates enum to be equivalent to integer */
		assert(pres_size != sizeof(int));
	}
}