bn_div.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. /* crypto/bn/bn_div.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 <openssl/bn.h>
  60. #include "cryptlib.h"
  61. #include "bn_lcl.h"
  62. /* The old slow way */
  63. #if 0
  64. int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
  65. BN_CTX *ctx)
  66. {
  67. int i,nm,nd;
  68. int ret = 0;
  69. BIGNUM *D;
  70. bn_check_top(m);
  71. bn_check_top(d);
  72. if (BN_is_zero(d))
  73. {
  74. BNerr(BN_F_BN_DIV,BN_R_DIV_BY_ZERO);
  75. return(0);
  76. }
  77. if (BN_ucmp(m,d) < 0)
  78. {
  79. if (rem != NULL)
  80. { if (BN_copy(rem,m) == NULL) return(0); }
  81. if (dv != NULL) BN_zero(dv);
  82. return(1);
  83. }
  84. BN_CTX_start(ctx);
  85. D = BN_CTX_get(ctx);
  86. if (dv == NULL) dv = BN_CTX_get(ctx);
  87. if (rem == NULL) rem = BN_CTX_get(ctx);
  88. if (D == NULL || dv == NULL || rem == NULL)
  89. goto end;
  90. nd=BN_num_bits(d);
  91. nm=BN_num_bits(m);
  92. if (BN_copy(D,d) == NULL) goto end;
  93. if (BN_copy(rem,m) == NULL) goto end;
  94. /* The next 2 are needed so we can do a dv->d[0]|=1 later
  95. * since BN_lshift1 will only work once there is a value :-) */
  96. BN_zero(dv);
  97. bn_wexpand(dv,1);
  98. dv->top=1;
  99. if (!BN_lshift(D,D,nm-nd)) goto end;
  100. for (i=nm-nd; i>=0; i--)
  101. {
  102. if (!BN_lshift1(dv,dv)) goto end;
  103. if (BN_ucmp(rem,D) >= 0)
  104. {
  105. dv->d[0]|=1;
  106. if (!BN_usub(rem,rem,D)) goto end;
  107. }
  108. /* CAN IMPROVE (and have now :=) */
  109. if (!BN_rshift1(D,D)) goto end;
  110. }
  111. rem->neg=BN_is_zero(rem)?0:m->neg;
  112. dv->neg=m->neg^d->neg;
  113. ret = 1;
  114. end:
  115. BN_CTX_end(ctx);
  116. return(ret);
  117. }
  118. #else
  119. #if !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) \
  120. && !defined(PEDANTIC) && !defined(BN_DIV3W)
  121. # if defined(__GNUC__) && __GNUC__>=2
  122. # if defined(__i386)
  123. /*
  124. * There were two reasons for implementing this template:
  125. * - GNU C generates a call to a function (__udivdi3 to be exact)
  126. * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
  127. * understand why...);
  128. * - divl doesn't only calculate quotient, but also leaves
  129. * remainder in %edx which we can definitely use here:-)
  130. *
  131. * <appro@fy.chalmers.se>
  132. */
  133. # define bn_div_words(n0,n1,d0) \
  134. ({ asm volatile ( \
  135. "divl %4" \
  136. : "=a"(q), "=d"(rem) \
  137. : "a"(n1), "d"(n0), "g"(d0) \
  138. : "cc"); \
  139. q; \
  140. })
  141. # define REMAINDER_IS_ALREADY_CALCULATED
  142. # endif /* __<cpu> */
  143. # endif /* __GNUC__ */
  144. #endif /* OPENSSL_NO_ASM */
  145. /* BN_div computes dv := num / divisor, rounding towards zero, and sets up
  146. * rm such that dv*divisor + rm = num holds.
  147. * Thus:
  148. * dv->neg == num->neg ^ divisor->neg (unless the result is zero)
  149. * rm->neg == num->neg (unless the remainder is zero)
  150. * If 'dv' or 'rm' is NULL, the respective value is not returned.
  151. */
  152. int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
  153. BN_CTX *ctx)
  154. {
  155. int norm_shift,i,j,loop;
  156. BIGNUM *tmp,wnum,*snum,*sdiv,*res;
  157. BN_ULONG *resp,*wnump;
  158. BN_ULONG d0,d1;
  159. int num_n,div_n;
  160. bn_check_top(num);
  161. bn_check_top(divisor);
  162. if (BN_is_zero(divisor))
  163. {
  164. BNerr(BN_F_BN_DIV,BN_R_DIV_BY_ZERO);
  165. return(0);
  166. }
  167. if (BN_ucmp(num,divisor) < 0)
  168. {
  169. if (rm != NULL)
  170. { if (BN_copy(rm,num) == NULL) return(0); }
  171. if (dv != NULL) BN_zero(dv);
  172. return(1);
  173. }
  174. BN_CTX_start(ctx);
  175. tmp=BN_CTX_get(ctx);
  176. snum=BN_CTX_get(ctx);
  177. sdiv=BN_CTX_get(ctx);
  178. if (dv == NULL)
  179. res=BN_CTX_get(ctx);
  180. else res=dv;
  181. if (sdiv == NULL || res == NULL) goto err;
  182. tmp->neg=0;
  183. /* First we normalise the numbers */
  184. norm_shift=BN_BITS2-((BN_num_bits(divisor))%BN_BITS2);
  185. BN_lshift(sdiv,divisor,norm_shift);
  186. sdiv->neg=0;
  187. norm_shift+=BN_BITS2;
  188. BN_lshift(snum,num,norm_shift);
  189. snum->neg=0;
  190. div_n=sdiv->top;
  191. num_n=snum->top;
  192. loop=num_n-div_n;
  193. /* Lets setup a 'window' into snum
  194. * This is the part that corresponds to the current
  195. * 'area' being divided */
  196. BN_init(&wnum);
  197. wnum.d= &(snum->d[loop]);
  198. wnum.top= div_n;
  199. wnum.dmax= snum->dmax+1; /* a bit of a lie */
  200. /* Get the top 2 words of sdiv */
  201. /* i=sdiv->top; */
  202. d0=sdiv->d[div_n-1];
  203. d1=(div_n == 1)?0:sdiv->d[div_n-2];
  204. /* pointer to the 'top' of snum */
  205. wnump= &(snum->d[num_n-1]);
  206. /* Setup to 'res' */
  207. res->neg= (num->neg^divisor->neg);
  208. if (!bn_wexpand(res,(loop+1))) goto err;
  209. res->top=loop;
  210. resp= &(res->d[loop-1]);
  211. /* space for temp */
  212. if (!bn_wexpand(tmp,(div_n+1))) goto err;
  213. if (BN_ucmp(&wnum,sdiv) >= 0)
  214. {
  215. if (!BN_usub(&wnum,&wnum,sdiv)) goto err;
  216. *resp=1;
  217. res->d[res->top-1]=1;
  218. }
  219. else
  220. res->top--;
  221. if (res->top == 0)
  222. res->neg = 0;
  223. resp--;
  224. for (i=0; i<loop-1; i++)
  225. {
  226. BN_ULONG q,l0;
  227. #if defined(BN_DIV3W) && !defined(OPENSSL_NO_ASM)
  228. q=bn_div_3_words(wnump,d1,d0);
  229. #else
  230. BN_ULONG n0,n1,rem=0;
  231. n0=wnump[0];
  232. n1=wnump[-1];
  233. if (n0 == d0)
  234. q=BN_MASK2;
  235. else /* n0 < d0 */
  236. {
  237. #ifdef BN_LLONG
  238. BN_ULLONG t2;
  239. #if defined(BN_LLONG) && defined(BN_DIV2W) && !defined(bn_div_words)
  240. q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0);
  241. #else
  242. q=bn_div_words(n0,n1,d0);
  243. #endif
  244. #ifndef REMAINDER_IS_ALREADY_CALCULATED
  245. /*
  246. * rem doesn't have to be BN_ULLONG. The least we
  247. * know it's less that d0, isn't it?
  248. */
  249. rem=(n1-q*d0)&BN_MASK2;
  250. #endif
  251. t2=(BN_ULLONG)d1*q;
  252. for (;;)
  253. {
  254. if (t2 <= ((((BN_ULLONG)rem)<<BN_BITS2)|wnump[-2]))
  255. break;
  256. q--;
  257. rem += d0;
  258. if (rem < d0) break; /* don't let rem overflow */
  259. t2 -= d1;
  260. }
  261. #else /* !BN_LLONG */
  262. BN_ULONG t2l,t2h,ql,qh;
  263. q=bn_div_words(n0,n1,d0);
  264. #ifndef REMAINDER_IS_ALREADY_CALCULATED
  265. rem=(n1-q*d0)&BN_MASK2;
  266. #endif
  267. #ifdef BN_UMULT_HIGH
  268. t2l = d1 * q;
  269. t2h = BN_UMULT_HIGH(d1,q);
  270. #else
  271. t2l=LBITS(d1); t2h=HBITS(d1);
  272. ql =LBITS(q); qh =HBITS(q);
  273. mul64(t2l,t2h,ql,qh); /* t2=(BN_ULLONG)d1*q; */
  274. #endif
  275. for (;;)
  276. {
  277. if ((t2h < rem) ||
  278. ((t2h == rem) && (t2l <= wnump[-2])))
  279. break;
  280. q--;
  281. rem += d0;
  282. if (rem < d0) break; /* don't let rem overflow */
  283. if (t2l < d1) t2h--; t2l -= d1;
  284. }
  285. #endif /* !BN_LLONG */
  286. }
  287. #endif /* !BN_DIV3W */
  288. l0=bn_mul_words(tmp->d,sdiv->d,div_n,q);
  289. wnum.d--; wnum.top++;
  290. tmp->d[div_n]=l0;
  291. for (j=div_n+1; j>0; j--)
  292. if (tmp->d[j-1]) break;
  293. tmp->top=j;
  294. j=wnum.top;
  295. BN_sub(&wnum,&wnum,tmp);
  296. snum->top=snum->top+wnum.top-j;
  297. if (wnum.neg)
  298. {
  299. q--;
  300. j=wnum.top;
  301. BN_add(&wnum,&wnum,sdiv);
  302. snum->top+=wnum.top-j;
  303. }
  304. *(resp--)=q;
  305. wnump--;
  306. }
  307. if (rm != NULL)
  308. {
  309. BN_rshift(rm,snum,norm_shift);
  310. if (!BN_is_zero(rm))
  311. rm->neg = num->neg;
  312. }
  313. BN_CTX_end(ctx);
  314. return(1);
  315. err:
  316. BN_CTX_end(ctx);
  317. return(0);
  318. }
  319. #endif