]>
git.saurik.com Git - apple/security.git/blob - SecuritySNACCRuntime/c++-lib/c++/asn-int.cpp
2 * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License. Please obtain
7 * a copy of the License at http://www.apple.com/publicsource and read it before
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
12 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
13 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
15 * specific language governing rights and limitations under the License.
19 // file: .../c++-lib/src/asn-int.C - methods for AsnInt (ASN.1 INTEGER) class
22 // Copyright (C) 1992 Michael Sample and the University of British Columbia
24 // This library is free software; you can redistribute it and/or
25 // modify it provided that this copyright/license information is retained
28 // If you modify this file, you must clearly indicate your changes.
30 // This source code is distributed in the hope that it will be
31 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
32 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
34 // $Header: /cvs/Darwin/Security/SecuritySNACCRuntime/c++-lib/c++/asn-int.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
35 // $Log: asn-int.cpp,v $
36 // Revision 1.3 2002/03/21 05:38:44 dmitch
37 // Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
39 // Revision 1.2.44.1 2002/03/20 00:36:49 dmitch
40 // Radar 2868524: SNACC-generated code now uses throw/catch instead of setjmp/longjmp.
42 // Revision 1.2 2001/06/27 23:09:14 dmitch
43 // Pusuant to Radar 2664258, avoid all cerr-based output in NDEBUG configuration.
45 // Revision 1.1.1.1 2001/05/18 23:14:05 mb
46 // Move from private repository to open source repository
48 // Revision 1.2 2001/05/05 00:59:17 rmurphy
49 // Adding darwin license headers
51 // Revision 1.1 2000/06/15 18:44:57 dmitch
52 // These snacc-generated source files are now checked in to allow cross-platform build.
54 // Revision 1.2 2000/06/08 20:05:35 dmitch
55 // Mods for X port. These files are actually machine generated and probably don't need to be in CVS....
57 // Revision 1.1.1.1 2000/03/09 01:00:06 rmurphy
58 // Base Fortissimo Tree
60 // Revision 1.2 1999/03/21 02:07:36 mb
61 // Added Copy to every AsnType.
63 // Revision 1.1 1999/02/25 05:21:51 mb
64 // Added snacc c++ library
66 // Revision 1.7 1997/02/28 13:39:45 wan
67 // Modifications collected for new version 1.3: Bug fixes, tk4.2.
69 // Revision 1.6 1995/09/07 18:55:50 rj
70 // (unsigned) long int replaced by newly introduced Asn(U)IntType at a lot of places.
71 // they shall provide 32 bit integer types on all platforms.
73 // Revision 1.5 1995/07/24 20:17:32 rj
74 // #if TCL ... #endif wrapped into #if META ... #endif
76 // call constructor with additional pdu and create arguments.
78 // changed `_' to `-' in file names.
80 // Revision 1.4 1995/02/18 16:48:05 rj
81 // denote a long if we want a long
83 // Revision 1.3 1994/10/08 04:18:23 rj
84 // code for meta structures added (provides information about the generated code itself).
86 // code for Tcl interface added (makes use of the above mentioned meta code).
88 // virtual inline functions (the destructor, the Clone() function, BEnc(), BDec() and Print()) moved from inc/*.h to src/*.C because g++ turns every one of them into a static non-inline function in every file where the .h file gets included.
90 // made Print() const (and some other, mainly comparison functions).
92 // several `unsigned long int' turned into `size_t'.
94 // Revision 1.2 1994/08/28 10:01:12 rj
95 // comment leader fixed.
97 // Revision 1.1 1994/08/28 09:20:59 rj
98 // first check-in. for a list of changes to the snacc-1.1 distribution please refer to the ChangeLog.
100 #include "asn-config.h"
103 #include "asn-type.h"
106 AsnType
* AsnInt :: Clone () const
111 AsnType
* AsnInt :: Copy () const
113 return new AsnInt (* this );
116 // Encodes BER content of this AsnInt to the given buffer.
117 // Returns the number of octets written to the buffer.
118 AsnLen
AsnInt :: BEncContent ( BUF_TYPE b
)
125 #define MASK (0x7f80L << ((sizeof (AsnIntType) - 2) * 8))
130 * calculate encoded length of the integer (content)
133 if (( AsnIntType
) dataCpy
< 0 )
134 for ( len
= sizeof ( AsnIntType
); len
> 1 ; -- len
)
136 if (( dataCpy
& mask
) == mask
)
142 for ( len
= sizeof ( AsnIntType
); len
> 1 ; -- len
)
144 if (( dataCpy
& mask
) == 0 )
151 * write the BER integer
153 for ( i
= 0 ; i
< len
; i
++)
155 b
. PutByteRvs ( dataCpy
);
162 // Decodes the content of a BER INTEGER from the given buffer.
163 // The value is placed in this object. tagId is ignored.
164 // bytesDecoded is incremented by the number of bytes read for this
166 void AsnInt :: BDecContent ( BUF_TYPE b
, AsnTag tagId
, AsnLen elmtLen
, AsnLen
& bytesDecoded
, ENV_TYPE env
)
171 if ( elmtLen
> sizeof ( AsnIntType
))
173 Asn1Error
<< "AsnInt::BDecContent: ERROR - integer is too big to decode." << endl
;
174 #if SNACC_EXCEPTION_ENABLE
175 SnaccExcep :: throwMe (- 7 );
182 * look at integer value
184 byte
= ( AsnUIntType
) b
. GetByte ();
186 if ( byte
& 0x80 ) /* top bit of first byte is sign bit */
187 value
= (- 1 << 8 ) | byte
;
192 * write from buffer into AsnIntType
194 for ( i
= 1 ; i
< elmtLen
; i
++)
195 value
= ( value
<< 8 ) | ( AsnUIntType
)( b
. GetByte ());
197 bytesDecoded
+= elmtLen
;
201 Asn1Error
<< "AsnInt::BDecContent: ERROR - decoded past end of data." << endl
;
202 #if SNACC_EXCEPTION_ENABLE
203 SnaccExcep :: throwMe (- 8 );
210 } /* AsnInt::BDecContent */
212 AsnLen
AsnInt :: BEnc ( BUF_TYPE b
)
216 BEncDefLenTo127 ( b
, l
);
218 l
+= BEncTag1 ( b
, UNIV
, PRIM
, INTEGER_TAG_CODE
);
222 void AsnInt :: BDec ( BUF_TYPE b
, AsnLen
& bytesDecoded
, ENV_TYPE env
)
225 if ( BDecTag ( b
, bytesDecoded
, env
) != MAKE_TAG_ID ( UNIV
, PRIM
, INTEGER_TAG_CODE
))
227 Asn1Error
<< "AsnInt::BDec: ERROR tag on INTEGER is wrong." << endl
;
228 #if SNACC_EXCEPTION_ENABLE
229 SnaccExcep :: throwMe (- 53 );
235 elmtLen
= BDecLen ( b
, bytesDecoded
, env
);
236 BDecContent ( b
, MAKE_TAG_ID ( UNIV
, PRIM
, INTEGER_TAG_CODE
), elmtLen
, bytesDecoded
, env
);
239 void AsnInt :: Print ( ostream
& os
) const
248 const AsnIntTypeDesc
AsnInt :: _desc ( NULL
, NULL
, false , AsnTypeDesc :: INTEGER
, NULL
, NULL
);
250 const AsnTypeDesc
* AsnInt :: _getdesc () const
257 #define RETURN_NAME_INSTEAD_OF_VALUE 0
259 int AsnInt :: TclGetVal ( Tcl_Interp
* interp
) const
261 #if RETURN_NAME_INSTEAD_OF_VALUE
262 const AsnNameDesc
* n
= _getdesc ()-> getnames ();
265 if ( n
-> value
== value
)
267 Tcl_SetResult ( interp
, n
-> name
, TCL_STATIC
);
273 sprintf ( buf
, " %d " , value
);
274 Tcl_SetResult ( interp
, buf
, TCL_VOLATILE
);
278 int AsnInt :: TclSetVal ( Tcl_Interp
* interp
, const char * valstr
)
280 const AsnNameDesc
* n
= _getdesc ()-> getnames ();
283 if (! strcmp ( n
-> name
, valstr
))
290 if ( Tcl_GetInt ( interp
, ( char *) valstr
, & valval
) != TCL_OK
)