asn1_par.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:11k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* crypto/asn1/asn1_par.c */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3.  * All rights reserved.
  4.  *
  5.  * This package is an SSL implementation written
  6.  * by Eric Young (eay@cryptsoft.com).
  7.  * The implementation was written so as to conform with Netscapes SSL.
  8.  * 
  9.  * This library is free for commercial and non-commercial use as long as
  10.  * the following conditions are aheared to.  The following conditions
  11.  * apply to all code found in this distribution, be it the RC4, RSA,
  12.  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
  13.  * included with this distribution is covered by the same copyright terms
  14.  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15.  * 
  16.  * Copyright remains Eric Young's, and as such any Copyright notices in
  17.  * the code are not to be removed.
  18.  * If this package is used in a product, Eric Young should be given attribution
  19.  * as the author of the parts of the library used.
  20.  * This can be in the form of a textual message at program startup or
  21.  * in documentation (online or textual) provided with the package.
  22.  * 
  23.  * Redistribution and use in source and binary forms, with or without
  24.  * modification, are permitted provided that the following conditions
  25.  * are met:
  26.  * 1. Redistributions of source code must retain the copyright
  27.  *    notice, this list of conditions and the following disclaimer.
  28.  * 2. Redistributions in binary form must reproduce the above copyright
  29.  *    notice, this list of conditions and the following disclaimer in the
  30.  *    documentation and/or other materials provided with the distribution.
  31.  * 3. All advertising materials mentioning features or use of this software
  32.  *    must display the following acknowledgement:
  33.  *    "This product includes cryptographic software written by
  34.  *     Eric Young (eay@cryptsoft.com)"
  35.  *    The word 'cryptographic' can be left out if the rouines from the library
  36.  *    being used are not cryptographic related :-).
  37.  * 4. If you include any Windows specific code (or a derivative thereof) from 
  38.  *    the apps directory (application code) you must include an acknowledgement:
  39.  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40.  * 
  41.  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51.  * SUCH DAMAGE.
  52.  * 
  53.  * The licence and distribution terms for any publically available version or
  54.  * derivative of this code cannot be changed.  i.e. this code cannot simply be
  55.  * copied and put under another distribution licence
  56.  * [including the GNU Public Licence.]
  57.  */
  58. #include <stdio.h>
  59. #include "cryptlib.h"
  60. #include <openssl/buffer.h>
  61. #include <openssl/objects.h>
  62. #include <openssl/asn1.h>
  63. static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
  64. int indent);
  65. static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
  66. int offset, int depth, int indent, int dump);
  67. static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed,
  68.      int indent)
  69. {
  70. static const char fmt[]="%-18s";
  71. static const char fmt2[]="%2d %-15s";
  72. char str[128];
  73. const char *p,*p2=NULL;
  74. if (constructed & V_ASN1_CONSTRUCTED)
  75. p="cons: ";
  76. else
  77. p="prim: ";
  78. if (BIO_write(bp,p,6) < 6) goto err;
  79. BIO_indent(bp,indent,128);
  80. p=str;
  81. if ((xclass & V_ASN1_PRIVATE) == V_ASN1_PRIVATE)
  82. BIO_snprintf(str,sizeof str,"priv [ %d ] ",tag);
  83. else if ((xclass & V_ASN1_CONTEXT_SPECIFIC) == V_ASN1_CONTEXT_SPECIFIC)
  84. BIO_snprintf(str,sizeof str,"cont [ %d ]",tag);
  85. else if ((xclass & V_ASN1_APPLICATION) == V_ASN1_APPLICATION)
  86. BIO_snprintf(str,sizeof str,"appl [ %d ]",tag);
  87. else if (tag > 30)
  88. BIO_snprintf(str,sizeof str,"<ASN1 %d>",tag);
  89. else
  90. p = ASN1_tag2str(tag);
  91. if (p2 != NULL)
  92. {
  93. if (BIO_printf(bp,fmt2,tag,p2) <= 0) goto err;
  94. }
  95. else
  96. {
  97. if (BIO_printf(bp,fmt,p) <= 0) goto err;
  98. }
  99. return(1);
  100. err:
  101. return(0);
  102. }
  103. int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
  104. {
  105. return(asn1_parse2(bp,&pp,len,0,0,indent,0));
  106. }
  107. int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
  108. {
  109. return(asn1_parse2(bp,&pp,len,0,0,indent,dump));
  110. }
  111. static int asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset,
  112.      int depth, int indent, int dump)
  113. {
  114. const unsigned char *p,*ep,*tot,*op,*opp;
  115. long len;
  116. int tag,xclass,ret=0;
  117. int nl,hl,j,r;
  118. ASN1_OBJECT *o=NULL;
  119. ASN1_OCTET_STRING *os=NULL;
  120. /* ASN1_BMPSTRING *bmp=NULL;*/
  121. int dump_indent;
  122. #if 0
  123. dump_indent = indent;
  124. #else
  125. dump_indent = 6; /* Because we know BIO_dump_indent() */
  126. #endif
  127. p= *pp;
  128. tot=p+length;
  129. op=p-1;
  130. while ((p < tot) && (op < p))
  131. {
  132. op=p;
  133. j=ASN1_get_object(&p,&len,&tag,&xclass,length);
  134. #ifdef LINT
  135. j=j;
  136. #endif
  137. if (j & 0x80)
  138. {
  139. if (BIO_write(bp,"Error in encodingn",18) <= 0)
  140. goto end;
  141. ret=0;
  142. goto end;
  143. }
  144. hl=(p-op);
  145. length-=hl;
  146. /* if j == 0x21 it is a constructed indefinite length object */
  147. if (BIO_printf(bp,"%5ld:",(long)offset+(long)(op- *pp))
  148. <= 0) goto end;
  149. if (j != (V_ASN1_CONSTRUCTED | 1))
  150. {
  151. if (BIO_printf(bp,"d=%-2d hl=%ld l=%4ld ",
  152. depth,(long)hl,len) <= 0)
  153. goto end;
  154. }
  155. else
  156. {
  157. if (BIO_printf(bp,"d=%-2d hl=%ld l=inf  ",
  158. depth,(long)hl) <= 0)
  159. goto end;
  160. }
  161. if (!asn1_print_info(bp,tag,xclass,j,(indent)?depth:0))
  162. goto end;
  163. if (j & V_ASN1_CONSTRUCTED)
  164. {
  165. ep=p+len;
  166. if (BIO_write(bp,"n",1) <= 0) goto end;
  167. if (len > length)
  168. {
  169. BIO_printf(bp,
  170. "length is greater than %ldn",length);
  171. ret=0;
  172. goto end;
  173. }
  174. if ((j == 0x21) && (len == 0))
  175. {
  176. for (;;)
  177. {
  178. r=asn1_parse2(bp,&p,(long)(tot-p),
  179. offset+(p - *pp),depth+1,
  180. indent,dump);
  181. if (r == 0) { ret=0; goto end; }
  182. if ((r == 2) || (p >= tot)) break;
  183. }
  184. }
  185. else
  186. while (p < ep)
  187. {
  188. r=asn1_parse2(bp,&p,(long)len,
  189. offset+(p - *pp),depth+1,
  190. indent,dump);
  191. if (r == 0) { ret=0; goto end; }
  192. }
  193. }
  194. else if (xclass != 0)
  195. {
  196. p+=len;
  197. if (BIO_write(bp,"n",1) <= 0) goto end;
  198. }
  199. else
  200. {
  201. nl=0;
  202. if ( (tag == V_ASN1_PRINTABLESTRING) ||
  203. (tag == V_ASN1_T61STRING) ||
  204. (tag == V_ASN1_IA5STRING) ||
  205. (tag == V_ASN1_VISIBLESTRING) ||
  206. (tag == V_ASN1_UTCTIME) ||
  207. (tag == V_ASN1_GENERALIZEDTIME))
  208. {
  209. if (BIO_write(bp,":",1) <= 0) goto end;
  210. if ((len > 0) &&
  211. BIO_write(bp,(const char *)p,(int)len)
  212. != (int)len)
  213. goto end;
  214. }
  215. else if (tag == V_ASN1_OBJECT)
  216. {
  217. opp=op;
  218. if (d2i_ASN1_OBJECT(&o,&opp,len+hl) != NULL)
  219. {
  220. if (BIO_write(bp,":",1) <= 0) goto end;
  221. i2a_ASN1_OBJECT(bp,o);
  222. }
  223. else
  224. {
  225. if (BIO_write(bp,":BAD OBJECT",11) <= 0)
  226. goto end;
  227. }
  228. }
  229. else if (tag == V_ASN1_BOOLEAN)
  230. {
  231. int ii;
  232. opp=op;
  233. ii=d2i_ASN1_BOOLEAN(NULL,&opp,len+hl);
  234. if (ii < 0)
  235. {
  236. if (BIO_write(bp,"Bad booleann",12))
  237. goto end;
  238. }
  239. BIO_printf(bp,":%d",ii);
  240. }
  241. else if (tag == V_ASN1_BMPSTRING)
  242. {
  243. /* do the BMP thang */
  244. }
  245. else if (tag == V_ASN1_OCTET_STRING)
  246. {
  247. int i,printable=1;
  248. opp=op;
  249. os=d2i_ASN1_OCTET_STRING(NULL,&opp,len+hl);
  250. if (os != NULL && os->length > 0)
  251. {
  252. opp = os->data;
  253. /* testing whether the octet string is
  254.  * printable */
  255. for (i=0; i<os->length; i++)
  256. {
  257. if (( (opp[i] < ' ') &&
  258. (opp[i] != 'n') &&
  259. (opp[i] != 'r') &&
  260. (opp[i] != 't')) ||
  261. (opp[i] > '~'))
  262. {
  263. printable=0;
  264. break;
  265. }
  266. }
  267. if (printable)
  268. /* printable string */
  269. {
  270. if (BIO_write(bp,":",1) <= 0)
  271. goto end;
  272. if (BIO_write(bp,(const char *)opp,
  273. os->length) <= 0)
  274. goto end;
  275. }
  276. else if (!dump)
  277. /* not printable => print octet string
  278.  * as hex dump */
  279. {
  280. if (BIO_write(bp,"[HEX DUMP]:",11) <= 0)
  281. goto end;
  282. for (i=0; i<os->length; i++)
  283. {
  284. if (BIO_printf(bp,"%02X"
  285. , opp[i]) <= 0)
  286. goto end;
  287. }
  288. }
  289. else
  290. /* print the normal dump */
  291. {
  292. if (!nl) 
  293. {
  294. if (BIO_write(bp,"n",1) <= 0)
  295. goto end;
  296. }
  297. if (BIO_dump_indent(bp,
  298. (const char *)opp,
  299. ((dump == -1 || dump > 
  300. os->length)?os->length:dump),
  301. dump_indent) <= 0)
  302. goto end;
  303. nl=1;
  304. }
  305. }
  306. if (os != NULL)
  307. {
  308. M_ASN1_OCTET_STRING_free(os);
  309. os=NULL;
  310. }
  311. }
  312. else if (tag == V_ASN1_INTEGER)
  313. {
  314. ASN1_INTEGER *bs;
  315. int i;
  316. opp=op;
  317. bs=d2i_ASN1_INTEGER(NULL,&opp,len+hl);
  318. if (bs != NULL)
  319. {
  320. if (BIO_write(bp,":",1) <= 0) goto end;
  321. if (bs->type == V_ASN1_NEG_INTEGER)
  322. if (BIO_write(bp,"-",1) <= 0)
  323. goto end;
  324. for (i=0; i<bs->length; i++)
  325. {
  326. if (BIO_printf(bp,"%02X",
  327. bs->data[i]) <= 0)
  328. goto end;
  329. }
  330. if (bs->length == 0)
  331. {
  332. if (BIO_write(bp,"00",2) <= 0)
  333. goto end;
  334. }
  335. }
  336. else
  337. {
  338. if (BIO_write(bp,"BAD INTEGER",11) <= 0)
  339. goto end;
  340. }
  341. M_ASN1_INTEGER_free(bs);
  342. }
  343. else if (tag == V_ASN1_ENUMERATED)
  344. {
  345. ASN1_ENUMERATED *bs;
  346. int i;
  347. opp=op;
  348. bs=d2i_ASN1_ENUMERATED(NULL,&opp,len+hl);
  349. if (bs != NULL)
  350. {
  351. if (BIO_write(bp,":",1) <= 0) goto end;
  352. if (bs->type == V_ASN1_NEG_ENUMERATED)
  353. if (BIO_write(bp,"-",1) <= 0)
  354. goto end;
  355. for (i=0; i<bs->length; i++)
  356. {
  357. if (BIO_printf(bp,"%02X",
  358. bs->data[i]) <= 0)
  359. goto end;
  360. }
  361. if (bs->length == 0)
  362. {
  363. if (BIO_write(bp,"00",2) <= 0)
  364. goto end;
  365. }
  366. }
  367. else
  368. {
  369. if (BIO_write(bp,"BAD ENUMERATED",11) <= 0)
  370. goto end;
  371. }
  372. M_ASN1_ENUMERATED_free(bs);
  373. }
  374. else if (len > 0 && dump)
  375. {
  376. if (!nl) 
  377. {
  378. if (BIO_write(bp,"n",1) <= 0)
  379. goto end;
  380. }
  381. if (BIO_dump_indent(bp,(const char *)p,
  382. ((dump == -1 || dump > len)?len:dump),
  383. dump_indent) <= 0)
  384. goto end;
  385. nl=1;
  386. }
  387. if (!nl) 
  388. {
  389. if (BIO_write(bp,"n",1) <= 0) goto end;
  390. }
  391. p+=len;
  392. if ((tag == V_ASN1_EOC) && (xclass == 0))
  393. {
  394. ret=2; /* End of sequence */
  395. goto end;
  396. }
  397. }
  398. length-=len;
  399. }
  400. ret=1;
  401. end:
  402. if (o != NULL) ASN1_OBJECT_free(o);
  403. if (os != NULL) M_ASN1_OCTET_STRING_free(os);
  404. *pp=p;
  405. return(ret);
  406. }
  407. const char *ASN1_tag2str(int tag)
  408. {
  409. static const char *tag2str[] = {
  410.  "EOC", "BOOLEAN", "INTEGER", "BIT STRING", "OCTET STRING", /* 0-4 */
  411.  "NULL", "OBJECT", "OBJECT DESCRIPTOR", "EXTERNAL", "REAL", /* 5-9 */
  412.  "ENUMERATED", "<ASN1 11>", "UTF8STRING", "<ASN1 13>",      /* 10-13 */
  413. "<ASN1 14>", "<ASN1 15>", "SEQUENCE", "SET",      /* 15-17 */
  414. "NUMERICSTRING", "PRINTABLESTRING", "T61STRING",     /* 18-20 */
  415. "VIDEOTEXSTRING", "IA5STRING", "UTCTIME","GENERALIZEDTIME", /* 21-24 */
  416. "GRAPHICSTRING", "VISIBLESTRING", "GENERALSTRING",     /* 25-27 */
  417. "UNIVERSALSTRING", "<ASN1 29>", "BMPSTRING"     /* 28-30 */
  418. };
  419. if((tag == V_ASN1_NEG_INTEGER) || (tag == V_ASN1_NEG_ENUMERATED))
  420. tag &= ~0x100;
  421. if(tag < 0 || tag > 30) return "(unknown)";
  422. return tag2str[tag];
  423. }