a_int.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. /* crypto/asn1/a_int.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/asn1.h>
  61. #include <openssl/bn.h>
  62. ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x)
  63. {
  64. return M_ASN1_INTEGER_dup(x);
  65. }
  66. int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y)
  67. {
  68. int neg, ret;
  69. /* Compare signs */
  70. neg = x->type & V_ASN1_NEG;
  71. if (neg != (y->type & V_ASN1_NEG)) {
  72. if (neg)
  73. return -1;
  74. else
  75. return 1;
  76. }
  77. ret = ASN1_STRING_cmp(x, y);
  78. if (neg)
  79. return -ret;
  80. else
  81. return ret;
  82. }
  83. /*-
  84. * This converts an ASN1 INTEGER into its content encoding.
  85. * The internal representation is an ASN1_STRING whose data is a big endian
  86. * representation of the value, ignoring the sign. The sign is determined by
  87. * the type: V_ASN1_INTEGER for positive and V_ASN1_NEG_INTEGER for negative.
  88. *
  89. * Positive integers are no problem: they are almost the same as the DER
  90. * encoding, except if the first byte is >= 0x80 we need to add a zero pad.
  91. *
  92. * Negative integers are a bit trickier...
  93. * The DER representation of negative integers is in 2s complement form.
  94. * The internal form is converted by complementing each octet and finally
  95. * adding one to the result. This can be done less messily with a little trick.
  96. * If the internal form has trailing zeroes then they will become FF by the
  97. * complement and 0 by the add one (due to carry) so just copy as many trailing
  98. * zeros to the destination as there are in the source. The carry will add one
  99. * to the last none zero octet: so complement this octet and add one and finally
  100. * complement any left over until you get to the start of the string.
  101. *
  102. * Padding is a little trickier too. If the first bytes is > 0x80 then we pad
  103. * with 0xff. However if the first byte is 0x80 and one of the following bytes
  104. * is non-zero we pad with 0xff. The reason for this distinction is that 0x80
  105. * followed by optional zeros isn't padded.
  106. */
  107. int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp)
  108. {
  109. int pad = 0, ret, i, neg;
  110. unsigned char *p, *n, pb = 0;
  111. if (a == NULL)
  112. return (0);
  113. neg = a->type & V_ASN1_NEG;
  114. if (a->length == 0)
  115. ret = 1;
  116. else {
  117. ret = a->length;
  118. i = a->data[0];
  119. if (ret == 1 && i == 0)
  120. neg = 0;
  121. if (!neg && (i > 127)) {
  122. pad = 1;
  123. pb = 0;
  124. } else if (neg) {
  125. if (i > 128) {
  126. pad = 1;
  127. pb = 0xFF;
  128. } else if (i == 128) {
  129. /*
  130. * Special case: if any other bytes non zero we pad:
  131. * otherwise we don't.
  132. */
  133. for (i = 1; i < a->length; i++)
  134. if (a->data[i]) {
  135. pad = 1;
  136. pb = 0xFF;
  137. break;
  138. }
  139. }
  140. }
  141. ret += pad;
  142. }
  143. if (pp == NULL)
  144. return (ret);
  145. p = *pp;
  146. if (pad)
  147. *(p++) = pb;
  148. if (a->length == 0)
  149. *(p++) = 0;
  150. else if (!neg)
  151. memcpy(p, a->data, (unsigned int)a->length);
  152. else {
  153. /* Begin at the end of the encoding */
  154. n = a->data + a->length - 1;
  155. p += a->length - 1;
  156. i = a->length;
  157. /* Copy zeros to destination as long as source is zero */
  158. while (!*n && i > 1) {
  159. *(p--) = 0;
  160. n--;
  161. i--;
  162. }
  163. /* Complement and increment next octet */
  164. *(p--) = ((*(n--)) ^ 0xff) + 1;
  165. i--;
  166. /* Complement any octets left */
  167. for (; i > 0; i--)
  168. *(p--) = *(n--) ^ 0xff;
  169. }
  170. *pp += ret;
  171. return (ret);
  172. }
  173. /* Convert just ASN1 INTEGER content octets to ASN1_INTEGER structure */
  174. ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
  175. long len)
  176. {
  177. ASN1_INTEGER *ret = NULL;
  178. const unsigned char *p, *pend;
  179. unsigned char *to, *s;
  180. int i;
  181. if ((a == NULL) || ((*a) == NULL)) {
  182. if ((ret = M_ASN1_INTEGER_new()) == NULL)
  183. return (NULL);
  184. ret->type = V_ASN1_INTEGER;
  185. } else
  186. ret = (*a);
  187. p = *pp;
  188. pend = p + len;
  189. /*
  190. * We must OPENSSL_malloc stuff, even for 0 bytes otherwise it signifies
  191. * a missing NULL parameter.
  192. */
  193. s = (unsigned char *)OPENSSL_malloc((int)len + 1);
  194. if (s == NULL) {
  195. i = ERR_R_MALLOC_FAILURE;
  196. goto err;
  197. }
  198. to = s;
  199. if (!len) {
  200. /*
  201. * Strictly speaking this is an illegal INTEGER but we tolerate it.
  202. */
  203. ret->type = V_ASN1_INTEGER;
  204. } else if (*p & 0x80) { /* a negative number */
  205. ret->type = V_ASN1_NEG_INTEGER;
  206. if ((*p == 0xff) && (len != 1)) {
  207. p++;
  208. len--;
  209. }
  210. i = len;
  211. p += i - 1;
  212. to += i - 1;
  213. while ((!*p) && i) {
  214. *(to--) = 0;
  215. i--;
  216. p--;
  217. }
  218. /*
  219. * Special case: if all zeros then the number will be of the form FF
  220. * followed by n zero bytes: this corresponds to 1 followed by n zero
  221. * bytes. We've already written n zeros so we just append an extra
  222. * one and set the first byte to a 1. This is treated separately
  223. * because it is the only case where the number of bytes is larger
  224. * than len.
  225. */
  226. if (!i) {
  227. *s = 1;
  228. s[len] = 0;
  229. len++;
  230. } else {
  231. *(to--) = (*(p--) ^ 0xff) + 1;
  232. i--;
  233. for (; i > 0; i--)
  234. *(to--) = *(p--) ^ 0xff;
  235. }
  236. } else {
  237. ret->type = V_ASN1_INTEGER;
  238. if ((*p == 0) && (len != 1)) {
  239. p++;
  240. len--;
  241. }
  242. memcpy(s, p, (int)len);
  243. }
  244. if (ret->data != NULL)
  245. OPENSSL_free(ret->data);
  246. ret->data = s;
  247. ret->length = (int)len;
  248. if (a != NULL)
  249. (*a) = ret;
  250. *pp = pend;
  251. return (ret);
  252. err:
  253. ASN1err(ASN1_F_C2I_ASN1_INTEGER, i);
  254. if ((ret != NULL) && ((a == NULL) || (*a != ret)))
  255. M_ASN1_INTEGER_free(ret);
  256. return (NULL);
  257. }
  258. /*
  259. * This is a version of d2i_ASN1_INTEGER that ignores the sign bit of ASN1
  260. * integers: some broken software can encode a positive INTEGER with its MSB
  261. * set as negative (it doesn't add a padding zero).
  262. */
  263. ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp,
  264. long length)
  265. {
  266. ASN1_INTEGER *ret = NULL;
  267. const unsigned char *p;
  268. unsigned char *s;
  269. long len;
  270. int inf, tag, xclass;
  271. int i;
  272. if ((a == NULL) || ((*a) == NULL)) {
  273. if ((ret = M_ASN1_INTEGER_new()) == NULL)
  274. return (NULL);
  275. ret->type = V_ASN1_INTEGER;
  276. } else
  277. ret = (*a);
  278. p = *pp;
  279. inf = ASN1_get_object(&p, &len, &tag, &xclass, length);
  280. if (inf & 0x80) {
  281. i = ASN1_R_BAD_OBJECT_HEADER;
  282. goto err;
  283. }
  284. if (tag != V_ASN1_INTEGER) {
  285. i = ASN1_R_EXPECTING_AN_INTEGER;
  286. goto err;
  287. }
  288. /*
  289. * We must OPENSSL_malloc stuff, even for 0 bytes otherwise it signifies
  290. * a missing NULL parameter.
  291. */
  292. s = (unsigned char *)OPENSSL_malloc((int)len + 1);
  293. if (s == NULL) {
  294. i = ERR_R_MALLOC_FAILURE;
  295. goto err;
  296. }
  297. ret->type = V_ASN1_INTEGER;
  298. if (len) {
  299. if ((*p == 0) && (len != 1)) {
  300. p++;
  301. len--;
  302. }
  303. memcpy(s, p, (int)len);
  304. p += len;
  305. }
  306. if (ret->data != NULL)
  307. OPENSSL_free(ret->data);
  308. ret->data = s;
  309. ret->length = (int)len;
  310. if (a != NULL)
  311. (*a) = ret;
  312. *pp = p;
  313. return (ret);
  314. err:
  315. ASN1err(ASN1_F_D2I_ASN1_UINTEGER, i);
  316. if ((ret != NULL) && ((a == NULL) || (*a != ret)))
  317. M_ASN1_INTEGER_free(ret);
  318. return (NULL);
  319. }
  320. int ASN1_INTEGER_set(ASN1_INTEGER *a, long v)
  321. {
  322. int j, k;
  323. unsigned int i;
  324. unsigned char buf[sizeof(long) + 1];
  325. long d;
  326. a->type = V_ASN1_INTEGER;
  327. if (a->length < (int)(sizeof(long) + 1)) {
  328. if (a->data != NULL)
  329. OPENSSL_free(a->data);
  330. if ((a->data =
  331. (unsigned char *)OPENSSL_malloc(sizeof(long) + 1)) != NULL)
  332. memset((char *)a->data, 0, sizeof(long) + 1);
  333. }
  334. if (a->data == NULL) {
  335. ASN1err(ASN1_F_ASN1_INTEGER_SET, ERR_R_MALLOC_FAILURE);
  336. return (0);
  337. }
  338. d = v;
  339. if (d < 0) {
  340. d = -d;
  341. a->type = V_ASN1_NEG_INTEGER;
  342. }
  343. for (i = 0; i < sizeof(long); i++) {
  344. if (d == 0)
  345. break;
  346. buf[i] = (int)d & 0xff;
  347. d >>= 8;
  348. }
  349. j = 0;
  350. for (k = i - 1; k >= 0; k--)
  351. a->data[j++] = buf[k];
  352. a->length = j;
  353. return (1);
  354. }
  355. long ASN1_INTEGER_get(const ASN1_INTEGER *a)
  356. {
  357. int neg = 0, i;
  358. long r = 0;
  359. if (a == NULL)
  360. return (0L);
  361. i = a->type;
  362. if (i == V_ASN1_NEG_INTEGER)
  363. neg = 1;
  364. else if (i != V_ASN1_INTEGER)
  365. return -1;
  366. if (a->length > (int)sizeof(long)) {
  367. /* hmm... a bit ugly, return all ones */
  368. return -1;
  369. }
  370. if (a->data == NULL)
  371. return 0;
  372. for (i = 0; i < a->length; i++) {
  373. r <<= 8;
  374. r |= (unsigned char)a->data[i];
  375. }
  376. if (neg)
  377. r = -r;
  378. return (r);
  379. }
  380. ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai)
  381. {
  382. ASN1_INTEGER *ret;
  383. int len, j;
  384. if (ai == NULL)
  385. ret = M_ASN1_INTEGER_new();
  386. else
  387. ret = ai;
  388. if (ret == NULL) {
  389. ASN1err(ASN1_F_BN_TO_ASN1_INTEGER, ERR_R_NESTED_ASN1_ERROR);
  390. goto err;
  391. }
  392. if (BN_is_negative(bn) && !BN_is_zero(bn))
  393. ret->type = V_ASN1_NEG_INTEGER;
  394. else
  395. ret->type = V_ASN1_INTEGER;
  396. j = BN_num_bits(bn);
  397. len = ((j == 0) ? 0 : ((j / 8) + 1));
  398. if (ret->length < len + 4) {
  399. unsigned char *new_data = OPENSSL_realloc(ret->data, len + 4);
  400. if (!new_data) {
  401. ASN1err(ASN1_F_BN_TO_ASN1_INTEGER, ERR_R_MALLOC_FAILURE);
  402. goto err;
  403. }
  404. ret->data = new_data;
  405. }
  406. ret->length = BN_bn2bin(bn, ret->data);
  407. /* Correct zero case */
  408. if (!ret->length) {
  409. ret->data[0] = 0;
  410. ret->length = 1;
  411. }
  412. return (ret);
  413. err:
  414. if (ret != ai)
  415. M_ASN1_INTEGER_free(ret);
  416. return (NULL);
  417. }
  418. BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn)
  419. {
  420. BIGNUM *ret;
  421. if ((ret = BN_bin2bn(ai->data, ai->length, bn)) == NULL)
  422. ASN1err(ASN1_F_ASN1_INTEGER_TO_BN, ASN1_R_BN_LIB);
  423. else if (ai->type == V_ASN1_NEG_INTEGER)
  424. BN_set_negative(ret, 1);
  425. return (ret);
  426. }
  427. IMPLEMENT_STACK_OF(ASN1_INTEGER)
  428. IMPLEMENT_ASN1_SET_OF(ASN1_INTEGER)