/* asn1.c * Abstract Syntax Notation One, ASN.1 * As defined in ISO/IS 8824 and ISO/IS 8825 * This implements a subset of the above International Standards that * is sufficient to implement SNMP. * * Encodes abstract data types into a machine independent stream of bytes. * */ /*********************************************************** Copyright 1988, 1989 by Carnegie Mellon University All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of CMU not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ #ifdef ERPCD #include "../inc/config.h" #include #endif #include #if ((defined(unix) && !defined(KINETICS)) || defined(AIX)) #if (!defined(ANNEX)) #include #endif #endif #ifdef ANNEX #include "stdio.h" #include "machine/endian.h" #endif #ifdef KINETICS #include "gw.h" #endif #include "asn1.h" #ifndef NULL #define NULL 0 #endif #if defined(ALPHA) #define INT32 int #define UINT32 unsigned int #else #ifndef INT32 #define INT32 long #endif #ifndef UINT32 #define UINT32 unsigned long #endif #endif #define ERROR(msg) printf ("%s\n", (msg)) #define ERROR1(msg,dval) printf ("%s %d\n", (msg), (dval)) #define ERROR2(msg,dval,hval) printf ("%s %d %X\n", (msg), (dval), (hval)) /* #define DEBUG_PARSING */ struct counter64 { UINT32 high; UINT32 low; }; /* * asn_parse_int - pulls an INT32 out of an ASN int type. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the end of this object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_parse_int(data, datalength, type, intp, intsize) register u_char *data; /* IN - pointer to start of object */ register int *datalength;/* IN/OUT - # of valid bytes left in buffer */ u_char *type; /* OUT - asn type of object */ INT32 *intp; /* IN/OUT - pointer to start of output buffer*/ int intsize; /* IN - size of output buffer */ { /* * ASN.1 integer ::= 0x02 asnlength byte {byte}* */ register u_char *bufp = data; UINT32 asn_length; register INT32 value = 0; if (intsize != sizeof(INT32)) { ERROR("not long"); return NULL; } *type = *bufp++; bufp = asn_parse_length(bufp, &asn_length); if (bufp == NULL){ ERROR("bad length"); return NULL; } if (asn_length + (bufp - data) > *datalength){ ERROR("overflow of message"); return NULL; } if (asn_length > intsize){ ERROR("I don't support such large integers"); return NULL; } *datalength -= (int)asn_length + (bufp - data); value = 0; if (*bufp & 0x80) value = -1; /* integer is negative */ /* * This code was taken from /vobs/annex/tools/snmp/sam/asn1.c * I am unsure of it's significance at this point, but I don't * want it lost */ else if (*bufp == '\0' && asn_length == 5) { --asn_length; /* integer is unsigned with high order bit in use */ ++bufp; } while(asn_length--) value = (value << 8) | *bufp++; if (intp) *intp = value; #ifdef DEBUG_PARSING printf("asn int: Parsed value %d; remaining data length %d\n", value,*datalength); #endif return bufp; } /* * asn_build_int - builds an ASN object containing an integer. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the end of this object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_build_int(data, datalength, type, intp, intsize) register u_char *data; /* IN - pointer to start of output buffer */ register int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - asn type of object */ register INT32 *intp; /* IN - pointer to start of long integer */ register int intsize; /* IN - size of *intp */ { /* * ASN.1 integer ::= 0x02 asnlength byte {byte}* */ register INT32 integer; register UINT32 mask; if (intsize != sizeof(INT32)) { ERROR("not long"); return NULL; } integer = *intp; /* * Truncate "unnecessary" bytes off of the most significant end of * this 2's complement integer. There should be no sequence of 9 * consecutive 1's or 0's at the most significant end of the integer. */ mask = 0x1FF << ((8 * (sizeof(INT32) - 1)) - 1); /* mask is 0xFF800000 on a big-endian machine */ while((((integer & mask) == 0) || ((integer & mask) == mask)) && intsize > 1){ intsize--; integer <<= 8; } data = asn_build_header(data, datalength, type, intsize); if (data == NULL) return NULL; if (*datalength < intsize) return NULL; *datalength -= intsize; mask = 0xFF << (8 * (sizeof(INT32) - 1)); /* mask is 0xFF000000 on a big-endian machine */ while(intsize--){ *data++ = (u_char)((integer & mask) >> (8 * (sizeof(INT32) - 1))); integer <<= 8; } return data; } /* * asn_parse_unsigned_int - pulls an unsigned long out of an ASN int type. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the end of this object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_parse_unsigned_int(data, datalength, type, intp, intsize) register u_char *data; /* IN - pointer to start of object */ register int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char *type; /* OUT - asn type of object */ UINT32 *intp; /* IN/OUT - pointer to start of output buffer */ int intsize; /* IN - size of output buffer */ { /* * ASN.1 integer ::= 0x02 asnlength byte {byte}* */ register u_char *bufp = data; UINT32 asn_length; register UINT32 value = 0; if (intsize != sizeof (UINT32)){ ERROR("not long"); return NULL; } *type = *bufp++; bufp = asn_parse_length(bufp, &asn_length); if (bufp == NULL){ ERROR("bad length"); return NULL; } if (asn_length + (bufp - data) > *datalength){ ERROR("overflow of message"); return NULL; } if ((asn_length > (intsize + 1)) || ((asn_length == intsize + 1) && *bufp != 0x00)){ ERROR("I don't support such large integers"); return NULL; } *datalength -= (int)asn_length + (bufp - data); if (*bufp & 0x80) value = -1; /* integer is negative */ while(asn_length--) value = (value << 8) | *bufp++; if (intp) *intp = value; return bufp; } /* * asn_build_unsigned_int - builds an ASN object containing an integer. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the end of this object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_build_unsigned_int(data, datalength, type, intp, intsize) register u_char *data; /* IN - pointer to start of output buffer */ register int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - asn type of object */ register UINT32 *intp; /* IN - pointer to start of long integer */ register int intsize; /* IN - size of *intp */ { /* * ASN.1 integer ::= 0x02 asnlength byte {byte}* */ register UINT32 integer; register UINT32 mask; int add_null_byte = 0; if (intsize != sizeof (UINT32)) { ERROR("not long"); return NULL; } integer = *intp; mask = 0xFF << (8 * (sizeof(INT32) - 1)); /* mask is 0xFF000000 on a big-endian machine */ if ((u_char)((integer & mask) >> (8 * (sizeof(INT32) - 1))) & 0x80){ /* if MSB is set */ add_null_byte = 1; intsize++; } /* * Truncate "unnecessary" bytes off of the most significant end of this 2's complement integer. * There should be no sequence of 9 consecutive 1's or 0's at the most significant end of the * integer. */ mask = 0x1FF << ((8 * (sizeof(INT32) - 1)) - 1); /* mask is 0xFF800000 on a big-endian machine */ while((((integer & mask) == 0) || ((integer & mask) == mask)) && intsize > 1){ intsize--; integer <<= 8; } data = asn_build_header(data, datalength, type, intsize); if (data == NULL) return NULL; if (*datalength < intsize) return NULL; *datalength -= intsize; if (add_null_byte == 1){ *data++ = '\0'; intsize--; } mask = 0xFF << (8 * (sizeof(INT32) - 1)); /* mask is 0xFF000000 on a big-endian machine */ while(intsize--){ *data++ = (u_char)((integer & mask) >> (8 * (sizeof(INT32) - 1))); integer <<= 8; } return data; } /* * asn_parse_string - pulls an octet string out of an ASN octet string type. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * "string" is filled with the octet string. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_parse_string(data, datalength, type, string, strlength) u_char *data; /* IN - pointer to start of object */ register int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char *type; /* OUT - asn type of object */ u_char *string; /* IN/OUT - pointer to start of output buffer */ register int *strlength; /* IN/OUT - size of output buffer */ { /* * ASN.1 octet string ::= primstring | cmpdstring * primstring ::= 0x04 asnlength byte {byte}* * cmpdstring ::= 0x24 asnlength string {string}* * This doesn't yet support the compound string. */ register u_char *bufp = data; UINT32 asn_length; *type = *bufp++; bufp = asn_parse_length(bufp, &asn_length); if (bufp == NULL) return NULL; if (asn_length + (bufp - data) > *datalength){ ERROR("overflow of message"); return NULL; } if (asn_length > *strlength){ ERROR("I don't support such long strings"); return NULL; } if (string) bcopy((char *)bufp, (char *)string, (int)asn_length); *strlength = (int)asn_length; *datalength -= (int)asn_length + (bufp - data); #ifdef DEBUG_PARSING printf("asn string: String length %d; remaining data length %d\n", asn_length,*datalength); #endif return bufp + asn_length; } /* * asn_build_string - Builds an ASN octet string object containing the input string. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_build_string(data, datalength, type, string, strlength) u_char *data; /* IN - pointer to start of object */ register int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - ASN type of string */ u_char *string; /* IN - pointer to start of input buffer */ register int strlength; /* IN - size of input buffer */ { /* * ASN.1 octet string ::= primstring | cmpdstring * primstring ::= 0x04 asnlength byte {byte}* * cmpdstring ::= 0x24 asnlength string {string}* * This code will never send a compound string. */ data = asn_build_header(data, datalength, type, strlength); if (data == NULL) return NULL; if (*datalength < strlength) return NULL; bcopy((char *)string, (char *)data, strlength); *datalength -= strlength; return data + strlength; } /* * asn_parse_header - interprets the ID and length of the current object. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * in this object following the id and length. * * Returns a pointer to the first byte of the contents of this object. * Returns NULL on any error. */ u_char * asn_parse_header(data, datalength, type) u_char *data; /* IN - pointer to start of object */ int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char *type; /* OUT - ASN type of object */ { register u_char *bufp = data; register header_len; UINT32 asn_length; /* this only works on data types < 30, i.e. no extension octets */ if (IS_EXTENSION_ID(*bufp)){ ERROR2("can't process ID >= 30; ID was",*bufp,(int)data); return NULL; } *type = *bufp; bufp = asn_parse_length(bufp + 1, &asn_length); if (bufp == NULL) { ERROR2("length parse fails",0,(int)data); return NULL; } header_len = bufp - data; if (header_len + asn_length > *datalength){ ERROR("asn length too long"); return NULL; } *datalength = (int)asn_length; #ifdef DEBUG_PARSING printf("asn header: Parsed out object length %d; remaining data length %d\n", asn_length,*datalength); #endif return bufp; } /* * asn_build_header - builds an ASN header for an object with the ID and * length specified. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * in this object following the id and length. * * This only works on data types < 30, i.e. no extension octets. * The maximum length is 0xFFFF; * * Returns a pointer to the first byte of the contents of this object. * Returns NULL on any error. */ u_char * asn_build_header(data, datalength, type, length) register u_char *data; /* IN - pointer to start of object */ int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - ASN type of object */ int length; /* IN - length of object */ { if (*datalength < 1) return NULL; *data++ = type; (*datalength)--; return asn_build_length(data, datalength, length); } u_char * asn_build_boolean (data, datalength, type, intp) u_char *data; /* IN - pointer to start of output buffer */ int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - asn type of object */ INT32 *intp; /* IN - pointer to start of 32-bit integer */ { *intp = (*intp ? 1 : 0); return(asn_build_int(data, datalength, type, intp, sizeof(*intp))); } u_char * asn_parse_boolean (data, datalength, type, intp, intsize) register u_char *data; /* IN - pointer to start of object */ register int *datalength;/* IN/OUT - # of valid bytes left in buffer */ u_char *type; /* OUT - asn type of object */ INT32 *intp; /* IN/OUT - pointer to start of output buffer*/ int intsize; /* IN - size of output buffer */ { return(asn_parse_int (data, datalength, type, intp, intsize)); } /* * asn_parse_length - interprets the length of the current object. * On exit, length contains the value of this length field. * * Returns a pointer to the first byte after this length * field (aka: the start of the data field). * Returns NULL on any error. */ u_char * asn_parse_length(data, length) u_char *data; /* IN - pointer to start of length field */ UINT32 *length; /* OUT - value of length field */ { register u_char lengthbyte = *data; if (lengthbyte & ASN_LONG_LEN){ lengthbyte &= ~ASN_LONG_LEN; /* turn MSb off */ if (lengthbyte == 0){ ERROR("We don't support indefinite lengths"); return NULL; } if (lengthbyte > sizeof(INT32)) { ERROR2("we can't support data lengths that long",lengthbyte, (int)data); return NULL; } #ifndef SAM bcopy((char *)data + 1, (char *)length, (int)lengthbyte); *length = ntohl(*length); *length >>= (8 * ((sizeof *length) - lengthbyte)); #else *length = 0; for(i=0; i< lengthbyte; i++) { *length <<= 8; *length |= (*(data + i + 1) & 0xff); } #endif return data + lengthbyte + 1; } else { /* short asnlength */ *length = (INT32)lengthbyte; return data + 1; } } u_char * asn_build_length(data, datalength, length) register u_char *data; /* IN - pointer to start of object */ int *datalength;/* IN/OUT - number of valid bytes left in buffer */ register int length; /* IN - length of object */ { u_char *start_data = data; /* no indefinite lengths sent */ if (length < 0x80){ if (*datalength < 1){ ERROR("build_length"); return NULL; } *data++ = (u_char)length; } else if (length <= 0xFF){ if (*datalength < 2){ ERROR("build_length"); return NULL; } *data++ = (u_char)(0x01 | ASN_LONG_LEN); *data++ = (u_char)length; } else { /* 0xFF < length <= 0xFFFF */ if (*datalength < 3){ ERROR("build_length"); return NULL; } *data++ = (u_char)(0x02 | ASN_LONG_LEN); *data++ = (u_char)((length >> 8) & 0xFF); *data++ = (u_char)(length & 0xFF); } if (*datalength < (data - start_data)){ ERROR("build_length"); return NULL; } *datalength -= (data - start_data); return data; } /* * asn_parse_objid - pulls an object indentifier out of an ASN object identifier type. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * "objid" is filled with the object identifier. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_parse_objid(data, datalength, type, objid, objidlength) u_char *data; /* IN - pointer to start of object */ int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char *type; /* OUT - ASN type of object */ oid *objid; /* IN/OUT - pointer to start of output buffer */ int *objidlength; /* IN/OUT - number of sub-id's in objid */ { /* * ASN.1 objid ::= 0x06 asnlength subidentifier {subidentifier}* * subidentifier ::= {leadingbyte}* lastbyte * leadingbyte ::= 1 7bitvalue * lastbyte ::= 0 7bitvalue */ register u_char *bufp = data; register oid *oidp = objid + 1; register UINT32 subidentifier; register INT32 length; UINT32 asn_length; *type = *bufp++; bufp = asn_parse_length(bufp, &asn_length); if (bufp == NULL) return NULL; if (asn_length + (bufp - data) > *datalength){ ERROR("overflow of message"); return NULL; } *datalength -= (int)asn_length + (bufp - data); length = asn_length; (*objidlength)--; /* account for expansion of first byte */ while (length > 0 && (*objidlength)-- > 0){ subidentifier = 0; do { /* shift and add in low order 7 bits */ subidentifier = (subidentifier << 7) + ((int) (*(u_char *)bufp) & ~ASN_BIT8); length--; } while (*(u_char *)bufp++ & ASN_BIT8); /* last byte has high bit clear */ if (subidentifier > (UINT32)MAX_SUBID){ ERROR("subidentifier too long"); return NULL; } *oidp++ = (oid)subidentifier; } /* * The first two subidentifiers are encoded into the first component * with the value (X * 40) + Y, where: * X is the value of the first subidentifier. * Y is the value of the second subidentifier. */ subidentifier = (UINT32)objid[1]; objid[1] = (u_char)(subidentifier % 40); objid[0] = (u_char)((subidentifier - objid[1]) / 40); *objidlength = (int)(oidp - objid); return bufp; } /* * asn_build_objid - Builds an ASN object identifier object containing the input string. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_build_objid(data, datalength, type, objid, objidlength) register u_char *data; /* IN - pointer to start of object */ int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - ASN type of object */ oid *objid; /* IN - pointer to start of input buffer */ int objidlength; /* IN - number of sub-id's in objid */ { /* * ASN.1 objid ::= 0x06 asnlength subidentifier {subidentifier}* * subidentifier ::= {leadingbyte}* lastbyte * leadingbyte ::= 1 7bitvalue * lastbyte ::= 0 7bitvalue */ u_char buf[MAX_OID_LEN]; u_char *bp = buf; oid objbuf[MAX_OID_LEN]; oid *op = objbuf; register int asnlength; register UINT32 subid, mask, testmask; register int bits, testbits; bcopy((char *)objid, (char *)objbuf, objidlength * sizeof(oid)); /* transform size in bytes to size in subid's */ /* encode the first two components into the first subidentifier */ op[1] = op[1] + (op[0] * 40); op++; objidlength--; while(objidlength-- > 0){ subid = *op++; mask = 0x7F; /* handle subid == 0 case */ bits = 0; /* testmask *MUST* !!!! be of an unsigned type */ for(testmask = 0x7F, testbits = 0; testmask != 0; testmask <<= 7, testbits += 7){ if (subid & testmask){ /* if any bits set */ mask = testmask; bits = testbits; } } /* mask can't be zero here */ for(;mask != 0x7F; mask >>= 7, bits -= 7){ if (mask == 0x1E00000) /* fix a mask that got truncated above */ mask = 0xFE00000; *bp++ = (u_char)(((subid & mask) >> bits) | ASN_BIT8); } *bp++ = (u_char)(subid & mask); } asnlength = bp - buf; data = asn_build_header(data, datalength, type, asnlength); if (data == NULL) { return NULL; } if (*datalength < asnlength) { return NULL; } bcopy((char *)buf, (char *)data, asnlength); *datalength -= asnlength; return data + asnlength; } /* * asn_parse_null - Interprets an ASN null type. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_parse_null(data, datalength, type) u_char *data; /* IN - pointer to start of object */ int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char *type; /* OUT - ASN type of object */ { /* * ASN.1 null ::= 0x05 0x00 */ register u_char *bufp = data; UINT32 asn_length; *type = *bufp++; bufp = asn_parse_length(bufp, &asn_length); if (bufp == NULL) return NULL; if (asn_length != 0){ ERROR("Malformed NULL"); return NULL; } *datalength -= (bufp - data); return bufp + asn_length; } /* * asn_build_null - Builds an ASN null object. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_build_null(data, datalength, type) u_char *data; /* IN - pointer to start of object */ int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - ASN type of object */ { /* * ASN.1 null ::= 0x05 0x00 */ return asn_build_header(data, datalength, type, 0); } /* * asn_parse_bitstring - pulls a bitstring out of an ASN bitstring type. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * "string" is filled with the bit string. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_parse_bitstring(data, datalength, type, string, strlength) u_char *data; /* IN - pointer to start of object */ register int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char *type; /* OUT - asn type of object */ u_char *string; /* IN/OUT - pointer to start of output buffer */ register int *strlength; /* IN/OUT - size of output buffer */ { /* * bitstring ::= 0x03 asnlength unused {byte}* */ register u_char *bufp = data; UINT32 asn_length; *type = *bufp++; bufp = asn_parse_length(bufp, &asn_length); if (bufp == NULL) return NULL; if (asn_length + (bufp - data) > *datalength){ ERROR("overflow of message"); return NULL; } if (asn_length > *strlength){ ERROR("I don't support such long bitstrings"); return NULL; } if (asn_length < 1){ ERROR("Invalid bitstring"); return NULL; } if ((char)*bufp < 0 || (char)*bufp > 7){ ERROR("Invalid bitstring"); return NULL; } if (string) bcopy((char *)bufp, (char *)string, (int)asn_length); *strlength = (int)asn_length; *datalength -= (int)asn_length + (bufp - data); return bufp + asn_length; } /* * asn_build_bitstring - Builds an ASN bit string object containing the * input string. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the beginning of the next object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_build_bitstring(data, datalength, type, string, strlength) u_char *data; /* IN - pointer to start of object */ register int *datalength; /* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - ASN type of string */ u_char *string; /* IN - pointer to start of input buffer */ register int strlength; /* IN - size of input buffer */ { /* * ASN.1 bit string ::= 0x03 asnlength unused {byte}* */ if (strlength < 1 || (char)*string < 0 || (char)*string > 7){ ERROR("Building invalid bitstring"); return NULL; } data = asn_build_header(data, datalength, type, strlength); if (data == NULL) return NULL; if (*datalength < strlength) return NULL; bcopy((char *)string, (char *)data, strlength); *datalength -= strlength; return data + strlength; } /* * asn_parse_unsigned_int64 - pulls a 64 bit unsigned long out of an ASN int * type. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the end of this object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_parse_unsigned_int64(data, datalength, type, cp, countersize) register u_char *data; /* IN - pointer to start of object */ register int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char *type; /* OUT - asn type of object */ struct counter64 *cp; /* IN/OUT -pointer to counter struct */ int countersize;/* IN - size of output buffer */ { /* * ASN.1 integer ::= 0x02 asnlength byte {byte}* */ register u_char *bufp = data; UINT32 asn_length; register UINT32 low = 0, high = 0; int intsize = 4; if (countersize != sizeof(struct counter64)){ ERROR("not right size"); return NULL; } *type = *bufp++; bufp = asn_parse_length(bufp, &asn_length); if (bufp == NULL){ ERROR("bad length"); return NULL; } if (asn_length + (bufp - data) > *datalength){ ERROR("overflow of message"); return NULL; } if ((asn_length > (intsize * 2 + 1)) || ((asn_length == (intsize * 2) + 1) && *bufp != 0x00)){ ERROR("I don't support such large integers"); return NULL; } *datalength -= (int)asn_length + (bufp - data); if (*bufp & 0x80){ low = -1; /* integer is negative */ high = -1; } while(asn_length--){ high = (high << 8) | ((low & 0xFF000000) >> 24); low = (low << 8) | *bufp++; } if (cp) { cp->low = low; cp->high = high; } return bufp; } /* * asn_build_unsigned_int64 - builds an ASN object containing a 64 bit integer. * On entry, datalength is input as the number of valid bytes following * "data". On exit, it is returned as the number of valid bytes * following the end of this object. * * Returns a pointer to the first byte past the end * of this object (i.e. the start of the next object). * Returns NULL on any error. */ u_char * asn_build_unsigned_int64(data, datalength, type, cp, countersize) register u_char *data; /* IN - pointer to start of output buffer */ register int *datalength;/* IN/OUT - number of valid bytes left in buffer */ u_char type; /* IN - asn type of object */ struct counter64 *cp; /* IN - pointer to counter struct */ register int countersize; /* IN - size of *intp */ { /* * ASN.1 integer ::= 0x02 asnlength byte {byte}* */ register UINT32 low, high; register UINT32 mask, mask2; int add_null_byte = 0; int intsize; if (countersize != sizeof (struct counter64)) return NULL; intsize = 8; low = cp->low; high = cp->high; mask = 0xFF << (8 * (sizeof(INT32) - 1)); /* mask is 0xFF000000 on a big-endian machine */ if ((u_char)((high & mask) >> (8 * (sizeof(INT32) - 1))) & 0x80){ /* if MSB is set */ add_null_byte = 1; intsize++; } /* * Truncate "unnecessary" bytes off of the most significant end of this 2's * complement integer. * There should be no sequence of 9 consecutive 1's or 0's at the most * significant end of the integer. */ mask2 = 0x1FF << ((8 * (sizeof(INT32) - 1)) - 1); /* mask2 is 0xFF800000 on a big-endian machine */ while((((high & mask2) == 0) || ((high & mask2) == mask2)) && intsize > 1){ intsize--; high = (high << 8) | ((low & mask) >> (8 * (sizeof(INT32) - 1))); low <<= 8; } data = asn_build_header(data, datalength, type, intsize); if (data == NULL) return NULL; if (*datalength < intsize) return NULL; *datalength -= intsize; if (add_null_byte == 1){ *data++ = '\0'; intsize--; } while(intsize--){ *data++ = (u_char)((high & mask) >> (8 * (sizeof(INT32) - 1))); high = (high << 8) | ((low & mask) >> (8 * (sizeof(INT32) - 1))); low <<= 8; } return data; }