⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 asn_int.c

📁 ATM 网 络 协 议 实 现 源 代 码
💻 C
字号:
/* * asn_int.c - BER encode, decode, print and free routines for the  *             ASN.1 INTEGER type * * MS 92 * Copyright (C) 1992 Michael Sample and the University of British Columbia * * This library is free software; you can redistribute it and/or * modify it provided that this copyright/license information is retained * in original form. * * If you modify this file, you must clearly indicate your changes. * * This source code is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *  */#if HAVE_CONFIG_H#include <config.h>#endif#include "asn_config.h"#include "asn_len.h"#include "asn_tag.h"#include "asn_int.h"/* * encodes universal TAG LENGTH and Contents of and ASN.1 INTEGER */AsnLenBEncAsnInt PARAMS((b, data),BUF_TYPE     b _AND_AsnInt* data){    AsnLen len;    len =  BEncAsnIntContent(b, data);    len += BEncDefLen(b, len);    len += BEncTag1(b, UNIV, PRIM, INTEGER_TAG_CODE);    return(len);}  /* BEncAsnInt *//*  * decodes universal TAG LENGTH and Contents of and ASN.1 INTEGER */voidBDecAsnInt PARAMS((b, result, bytesDecoded, env),BUF_TYPE   b _AND_AsnInt*    result _AND_AsnLen* bytesDecoded _AND_jmp_buf env){    AsnTag tag;    AsnLen elmtLen;    if ( (tag =BDecTag(b, bytesDecoded, env)) !=        MAKE_TAG_ID(UNIV, PRIM, INTEGER_TAG_CODE))    {         Asn1Error("BDecAsnInt: ERROR wrong tag on INTEGER.\n");         longjmp(env, -40);    }    elmtLen = BDecLen (b, bytesDecoded, env);    BDecAsnIntContent( b, tag, elmtLen, result, bytesDecoded, env);}  /* BDecAsnInt *//* * encodes signed long integer's contents */AsnLenBEncAsnIntContent PARAMS((b, data),BUF_TYPE     b _AND_AsnInt* data){    int             len;    int             i;     unsigned long int   mask;    unsigned long int   dataCpy;#define INT_MASK (0x7f80L << ((sizeof(AsnInt) - 2) * 8))    dataCpy = *data;    /*     * calculate encoded length of the integer (content)     */    mask = INT_MASK;    if ((long int)dataCpy < 0)        for (len = sizeof(AsnInt) ; len > 1 ; --len)        {                            if ( (dataCpy & mask) == mask)                mask >>= 8;              else                break;        }    else        for (len = sizeof(AsnInt) ; len > 1 ; --len)        {                            if ( (dataCpy & mask) == 0)                mask >>= 8;              else                break;        }    /*     * write the BER integer     */    for (i = 0; i < len; i++)    {        BufPutByteRvs(b, dataCpy);        dataCpy >>= 8;    }    return(len);}  /* BEncAsnIntContent *//*  * Decodes content of BER a INTEGER value.  The given tag is ignored. */voidBDecAsnIntContent PARAMS((b, tagId, len, result, bytesDecoded, env),BUF_TYPE   b _AND_AsnTag     tagId _AND_AsnLen     len _AND_AsnInt*    result _AND_AsnLen* bytesDecoded _AND_jmp_buf env){    int   i;    long int   retVal;    unsigned long int  byte;    if ( len > sizeof(AsnInt))    {        Asn1Error("BDecAsnIntContent: ERROR - integer to big to decode.\n");        longjmp(env, -7);    }    /*      * look at integer value      */    byte =  (unsigned long int) BufGetByte(b);    if (byte & 0x80)   /* top bit of first byte is sign bit */        retVal = (-1 << 8) | byte;    else        retVal = byte;    /*     * write from buffer into long int     */    for (i = 1; i < len; i++)        retVal = (retVal << 8) | (unsigned long int)(BufGetByte(b));    if (BufReadError(b))    {        Asn1Error( "BDecAsnIntContent: ERROR - decoded past end of data \n");        longjmp(env, -8);    }    (*bytesDecoded) += len;    *result = retVal;}  /* BDecAsnIntContent *//* * Prints the given integer to the given FILE* in Value Notation.  * indent is ignored. */voidPrintAsnInt PARAMS((f, v, indent),FILE* f _AND_AsnInt* v _AND_unsigned short int indent){    fprintf(f,"%d", *v);} /* * The following deal with UNSIGNED long ints. * They do the same as the above routines for unsigned values. * * The compiler generated code does not call them. (It should * based on subtype info but it does not).  *//* * encodes universal TAG LENGTH and Contents of and ASN.1 INTEGER */AsnLenBEncUAsnInt PARAMS((b, data),BUF_TYPE b _AND_UAsnInt* data){    AsnLen len;    len =  BEncUAsnIntContent(b, data);    len += BEncDefLen(b, len);    len += BEncTag1(b, UNIV, PRIM, INTEGER_TAG_CODE);    return(len);}  /* BEncUAsnInt *//*  * decodes universal TAG LENGTH and Contents of and ASN.1 INTEGER */voidBDecUAsnInt PARAMS((b, result, bytesDecoded, env),BUF_TYPE b _AND_UAsnInt* result _AND_AsnLen* bytesDecoded _AND_jmp_buf env){    AsnTag tag;    AsnLen elmtLen;    if ( (tag =BDecTag(b, bytesDecoded, env)) !=        MAKE_TAG_ID(UNIV, PRIM, INTEGER_TAG_CODE))    {         Asn1Error("BDecAsnInt: ERROR wrong tag on INTGER.\n");         longjmp(env, -40);    }    elmtLen = BDecLen (b, bytesDecoded, env);    BDecUAsnIntContent( b, tag, elmtLen, result, bytesDecoded, env);}  /* BDecUAsnInt *//* * encodes unsigned long integer.  This allows you to correctly * handle unsiged values that used the most significant (sign) bit. */AsnLenBEncUAsnIntContent PARAMS((b, data),BUF_TYPE b _AND_UAsnInt* data){    int             len;    int             retLen;    int             i;     unsigned long int   mask;    unsigned long int   dataCpy;    dataCpy = *data;    /*     * calculate encoded length of the integer (content)     */    mask = INT_MASK;    if ((long int)dataCpy < 0)    {        /*write integer as normal (remember writing in reverse) */        for (i = 0; i < sizeof(UAsnInt); i++)        {            BufPutByteRvs(b, dataCpy);            dataCpy >>= 8;        }        /*         * write zero byte at beginning of int, since high bit         * is set and need to differentiate between sign         * bit and high bit in unsigned case.         * (this code follows the prev for loop since writing         *  in reverse)         */        BufPutByteRvs(b, 0);             return(sizeof(UAsnInt)+1);    }    else    {        for (len = sizeof(UAsnInt) ; len > 1 ; --len)        {                            if ( (dataCpy & mask) == 0)                mask >>= 8;              else                break;        }        /* write the BER integer */        for (i = 0; i < len; i++)        {            BufPutByteRvs(b, dataCpy);            dataCpy >>= 8;        }        return  (len);    }}  /* BEncUAsnIntContent *//*  * decode integer portion - no tag or length expected or decoded * assumes unsigned integer - This routine is useful for  * integer subtyped to > 0 eg Guage ::= INTEGER (0..4294967295) */voidBDecUAsnIntContent PARAMS((b, tag, len, result, bytesDecoded, env),BUF_TYPE b _AND_AsnTag   tag _AND_AsnLen   len _AND_UAsnInt* result _AND_AsnLen*  bytesDecoded _AND_jmp_buf  env){    int   i;    unsigned long int retVal;    retVal =  (unsigned long int) BufGetByte(b);    if ( len > (sizeof(UAsnInt)+1))    {        Asn1Error("BDecUAsnIntContent: ERROR - integer to big to decode.\n");        longjmp(env, -9);    }    else if (retVal & 0x80)   /* top bit of first byte is sign bit */    {        Asn1Error("BDecUAsnIntContent: ERROR - integer is negative.\n");        longjmp(env, -10);    }    else if ( (len == (sizeof(UAsnInt)+1)) && (retVal != 0) )    {        /*         * first octet must be zero 5 octets long - extra 0 octet         * at beginning is only used for value > 0 that need the         * high bit         */        Asn1Error("BDecUAsnIntContent: ERROR - integer is negative.\n");        longjmp(env, -11);    }    /*     * write from buffer into long int     */    for (i = 1; i < len; i++)        retVal = (retVal << 8) | (unsigned long int)(BufGetByte(b));    if (BufReadError(b))    {        Asn1Error( "BDecUIntegerContent: ERROR - decoded past end of data\n");        longjmp(env, -12);    }    (*bytesDecoded) += len;    *result = retVal;}  /* BDecUAsnIntContent */voidPrintUAsnInt PARAMS((f, v, indent),FILE* f _AND_UAsnInt* v _AND_unsigned short int indent){    fprintf(f,"%u", *v);} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -