diff options
Diffstat (limited to 'src/lib/libcrypto/bn/bn_div.c')
| -rw-r--r-- | src/lib/libcrypto/bn/bn_div.c | 272 |
1 files changed, 238 insertions, 34 deletions
diff --git a/src/lib/libcrypto/bn/bn_div.c b/src/lib/libcrypto/bn/bn_div.c index 52b3304293..802a43d642 100644 --- a/src/lib/libcrypto/bn/bn_div.c +++ b/src/lib/libcrypto/bn/bn_div.c | |||
| @@ -169,13 +169,15 @@ int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, | |||
| 169 | #endif /* OPENSSL_NO_ASM */ | 169 | #endif /* OPENSSL_NO_ASM */ |
| 170 | 170 | ||
| 171 | 171 | ||
| 172 | /* BN_div computes dv := num / divisor, rounding towards | 172 | /* BN_div[_no_branch] computes dv := num / divisor, rounding towards |
| 173 | * zero, and sets up rm such that dv*divisor + rm = num holds. | 173 | * zero, and sets up rm such that dv*divisor + rm = num holds. |
| 174 | * Thus: | 174 | * Thus: |
| 175 | * dv->neg == num->neg ^ divisor->neg (unless the result is zero) | 175 | * dv->neg == num->neg ^ divisor->neg (unless the result is zero) |
| 176 | * rm->neg == num->neg (unless the remainder is zero) | 176 | * rm->neg == num->neg (unless the remainder is zero) |
| 177 | * If 'dv' or 'rm' is NULL, the respective value is not returned. | 177 | * If 'dv' or 'rm' is NULL, the respective value is not returned. |
| 178 | */ | 178 | */ |
| 179 | static int BN_div_no_branch(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, | ||
| 180 | const BIGNUM *divisor, BN_CTX *ctx); | ||
| 179 | int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, | 181 | int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, |
| 180 | BN_CTX *ctx) | 182 | BN_CTX *ctx) |
| 181 | { | 183 | { |
| @@ -184,7 +186,6 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, | |||
| 184 | BN_ULONG *resp,*wnump; | 186 | BN_ULONG *resp,*wnump; |
| 185 | BN_ULONG d0,d1; | 187 | BN_ULONG d0,d1; |
| 186 | int num_n,div_n; | 188 | int num_n,div_n; |
| 187 | int no_branch=0; | ||
| 188 | 189 | ||
| 189 | /* Invalid zero-padding would have particularly bad consequences | 190 | /* Invalid zero-padding would have particularly bad consequences |
| 190 | * in the case of 'num', so don't just rely on bn_check_top() for this one | 191 | * in the case of 'num', so don't just rely on bn_check_top() for this one |
| @@ -199,7 +200,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, | |||
| 199 | 200 | ||
| 200 | if ((BN_get_flags(num, BN_FLG_CONSTTIME) != 0) || (BN_get_flags(divisor, BN_FLG_CONSTTIME) != 0)) | 201 | if ((BN_get_flags(num, BN_FLG_CONSTTIME) != 0) || (BN_get_flags(divisor, BN_FLG_CONSTTIME) != 0)) |
| 201 | { | 202 | { |
| 202 | no_branch=1; | 203 | return BN_div_no_branch(dv, rm, num, divisor, ctx); |
| 203 | } | 204 | } |
| 204 | 205 | ||
| 205 | bn_check_top(dv); | 206 | bn_check_top(dv); |
| @@ -213,7 +214,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, | |||
| 213 | return(0); | 214 | return(0); |
| 214 | } | 215 | } |
| 215 | 216 | ||
| 216 | if (!no_branch && BN_ucmp(num,divisor) < 0) | 217 | if (BN_ucmp(num,divisor) < 0) |
| 217 | { | 218 | { |
| 218 | if (rm != NULL) | 219 | if (rm != NULL) |
| 219 | { if (BN_copy(rm,num) == NULL) return(0); } | 220 | { if (BN_copy(rm,num) == NULL) return(0); } |
| @@ -238,25 +239,242 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, | |||
| 238 | norm_shift+=BN_BITS2; | 239 | norm_shift+=BN_BITS2; |
| 239 | if (!(BN_lshift(snum,num,norm_shift))) goto err; | 240 | if (!(BN_lshift(snum,num,norm_shift))) goto err; |
| 240 | snum->neg=0; | 241 | snum->neg=0; |
| 242 | div_n=sdiv->top; | ||
| 243 | num_n=snum->top; | ||
| 244 | loop=num_n-div_n; | ||
| 245 | /* Lets setup a 'window' into snum | ||
| 246 | * This is the part that corresponds to the current | ||
| 247 | * 'area' being divided */ | ||
| 248 | wnum.neg = 0; | ||
| 249 | wnum.d = &(snum->d[loop]); | ||
| 250 | wnum.top = div_n; | ||
| 251 | /* only needed when BN_ucmp messes up the values between top and max */ | ||
| 252 | wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */ | ||
| 253 | |||
| 254 | /* Get the top 2 words of sdiv */ | ||
| 255 | /* div_n=sdiv->top; */ | ||
| 256 | d0=sdiv->d[div_n-1]; | ||
| 257 | d1=(div_n == 1)?0:sdiv->d[div_n-2]; | ||
| 258 | |||
| 259 | /* pointer to the 'top' of snum */ | ||
| 260 | wnump= &(snum->d[num_n-1]); | ||
| 261 | |||
| 262 | /* Setup to 'res' */ | ||
| 263 | res->neg= (num->neg^divisor->neg); | ||
| 264 | if (!bn_wexpand(res,(loop+1))) goto err; | ||
| 265 | res->top=loop; | ||
| 266 | resp= &(res->d[loop-1]); | ||
| 267 | |||
| 268 | /* space for temp */ | ||
| 269 | if (!bn_wexpand(tmp,(div_n+1))) goto err; | ||
| 241 | 270 | ||
| 242 | if (no_branch) | 271 | if (BN_ucmp(&wnum,sdiv) >= 0) |
| 243 | { | 272 | { |
| 244 | /* Since we don't know whether snum is larger than sdiv, | 273 | /* If BN_DEBUG_RAND is defined BN_ucmp changes (via |
| 245 | * we pad snum with enough zeroes without changing its | 274 | * bn_pollute) the const bignum arguments => |
| 246 | * value. | 275 | * clean the values between top and max again */ |
| 247 | */ | 276 | bn_clear_top2max(&wnum); |
| 248 | if (snum->top <= sdiv->top+1) | 277 | bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n); |
| 278 | *resp=1; | ||
| 279 | } | ||
| 280 | else | ||
| 281 | res->top--; | ||
| 282 | /* if res->top == 0 then clear the neg value otherwise decrease | ||
| 283 | * the resp pointer */ | ||
| 284 | if (res->top == 0) | ||
| 285 | res->neg = 0; | ||
| 286 | else | ||
| 287 | resp--; | ||
| 288 | |||
| 289 | for (i=0; i<loop-1; i++, wnump--, resp--) | ||
| 290 | { | ||
| 291 | BN_ULONG q,l0; | ||
| 292 | /* the first part of the loop uses the top two words of | ||
| 293 | * snum and sdiv to calculate a BN_ULONG q such that | ||
| 294 | * | wnum - sdiv * q | < sdiv */ | ||
| 295 | #if defined(BN_DIV3W) && !defined(OPENSSL_NO_ASM) | ||
| 296 | BN_ULONG bn_div_3_words(BN_ULONG*,BN_ULONG,BN_ULONG); | ||
| 297 | q=bn_div_3_words(wnump,d1,d0); | ||
| 298 | #else | ||
| 299 | BN_ULONG n0,n1,rem=0; | ||
| 300 | |||
| 301 | n0=wnump[0]; | ||
| 302 | n1=wnump[-1]; | ||
| 303 | if (n0 == d0) | ||
| 304 | q=BN_MASK2; | ||
| 305 | else /* n0 < d0 */ | ||
| 306 | { | ||
| 307 | #ifdef BN_LLONG | ||
| 308 | BN_ULLONG t2; | ||
| 309 | |||
| 310 | #if defined(BN_LLONG) && defined(BN_DIV2W) && !defined(bn_div_words) | ||
| 311 | q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0); | ||
| 312 | #else | ||
| 313 | q=bn_div_words(n0,n1,d0); | ||
| 314 | #ifdef BN_DEBUG_LEVITTE | ||
| 315 | fprintf(stderr,"DEBUG: bn_div_words(0x%08X,0x%08X,0x%08\ | ||
| 316 | X) -> 0x%08X\n", | ||
| 317 | n0, n1, d0, q); | ||
| 318 | #endif | ||
| 319 | #endif | ||
| 320 | |||
| 321 | #ifndef REMAINDER_IS_ALREADY_CALCULATED | ||
| 322 | /* | ||
| 323 | * rem doesn't have to be BN_ULLONG. The least we | ||
| 324 | * know it's less that d0, isn't it? | ||
| 325 | */ | ||
| 326 | rem=(n1-q*d0)&BN_MASK2; | ||
| 327 | #endif | ||
| 328 | t2=(BN_ULLONG)d1*q; | ||
| 329 | |||
| 330 | for (;;) | ||
| 331 | { | ||
| 332 | if (t2 <= ((((BN_ULLONG)rem)<<BN_BITS2)|wnump[-2])) | ||
| 333 | break; | ||
| 334 | q--; | ||
| 335 | rem += d0; | ||
| 336 | if (rem < d0) break; /* don't let rem overflow */ | ||
| 337 | t2 -= d1; | ||
| 338 | } | ||
| 339 | #else /* !BN_LLONG */ | ||
| 340 | BN_ULONG t2l,t2h; | ||
| 341 | |||
| 342 | q=bn_div_words(n0,n1,d0); | ||
| 343 | #ifdef BN_DEBUG_LEVITTE | ||
| 344 | fprintf(stderr,"DEBUG: bn_div_words(0x%08X,0x%08X,0x%08\ | ||
| 345 | X) -> 0x%08X\n", | ||
| 346 | n0, n1, d0, q); | ||
| 347 | #endif | ||
| 348 | #ifndef REMAINDER_IS_ALREADY_CALCULATED | ||
| 349 | rem=(n1-q*d0)&BN_MASK2; | ||
| 350 | #endif | ||
| 351 | |||
| 352 | #if defined(BN_UMULT_LOHI) | ||
| 353 | BN_UMULT_LOHI(t2l,t2h,d1,q); | ||
| 354 | #elif defined(BN_UMULT_HIGH) | ||
| 355 | t2l = d1 * q; | ||
| 356 | t2h = BN_UMULT_HIGH(d1,q); | ||
| 357 | #else | ||
| 249 | { | 358 | { |
| 250 | if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; | 359 | BN_ULONG ql, qh; |
| 251 | for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0; | 360 | t2l=LBITS(d1); t2h=HBITS(d1); |
| 252 | snum->top = sdiv->top + 2; | 361 | ql =LBITS(q); qh =HBITS(q); |
| 362 | mul64(t2l,t2h,ql,qh); /* t2=(BN_ULLONG)d1*q; */ | ||
| 253 | } | 363 | } |
| 254 | else | 364 | #endif |
| 365 | |||
| 366 | for (;;) | ||
| 367 | { | ||
| 368 | if ((t2h < rem) || | ||
| 369 | ((t2h == rem) && (t2l <= wnump[-2]))) | ||
| 370 | break; | ||
| 371 | q--; | ||
| 372 | rem += d0; | ||
| 373 | if (rem < d0) break; /* don't let rem overflow */ | ||
| 374 | if (t2l < d1) t2h--; t2l -= d1; | ||
| 375 | } | ||
| 376 | #endif /* !BN_LLONG */ | ||
| 377 | } | ||
| 378 | #endif /* !BN_DIV3W */ | ||
| 379 | |||
| 380 | l0=bn_mul_words(tmp->d,sdiv->d,div_n,q); | ||
| 381 | tmp->d[div_n]=l0; | ||
| 382 | wnum.d--; | ||
| 383 | /* ingore top values of the bignums just sub the two | ||
| 384 | * BN_ULONG arrays with bn_sub_words */ | ||
| 385 | if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n+1)) | ||
| 255 | { | 386 | { |
| 256 | if (bn_wexpand(snum, snum->top + 1) == NULL) goto err; | 387 | /* Note: As we have considered only the leading |
| 257 | snum->d[snum->top] = 0; | 388 | * two BN_ULONGs in the calculation of q, sdiv * q |
| 258 | snum->top ++; | 389 | * might be greater than wnum (but then (q-1) * sdiv |
| 390 | * is less or equal than wnum) | ||
| 391 | */ | ||
| 392 | q--; | ||
| 393 | if (bn_add_words(wnum.d, wnum.d, sdiv->d, div_n)) | ||
| 394 | /* we can't have an overflow here (assuming | ||
| 395 | * that q != 0, but if q == 0 then tmp is | ||
| 396 | * zero anyway) */ | ||
| 397 | (*wnump)++; | ||
| 259 | } | 398 | } |
| 399 | /* store part of the result */ | ||
| 400 | *resp = q; | ||
| 401 | } | ||
| 402 | bn_correct_top(snum); | ||
| 403 | if (rm != NULL) | ||
| 404 | { | ||
| 405 | /* Keep a copy of the neg flag in num because if rm==num | ||
| 406 | * BN_rshift() will overwrite it. | ||
| 407 | */ | ||
| 408 | int neg = num->neg; | ||
| 409 | BN_rshift(rm,snum,norm_shift); | ||
| 410 | if (!BN_is_zero(rm)) | ||
| 411 | rm->neg = neg; | ||
| 412 | bn_check_top(rm); | ||
| 413 | } | ||
| 414 | BN_CTX_end(ctx); | ||
| 415 | return(1); | ||
| 416 | err: | ||
| 417 | bn_check_top(rm); | ||
| 418 | BN_CTX_end(ctx); | ||
| 419 | return(0); | ||
| 420 | } | ||
| 421 | |||
| 422 | |||
| 423 | /* BN_div_no_branch is a special version of BN_div. It does not contain | ||
| 424 | * branches that may leak sensitive information. | ||
| 425 | */ | ||
| 426 | static int BN_div_no_branch(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, | ||
| 427 | const BIGNUM *divisor, BN_CTX *ctx) | ||
| 428 | { | ||
| 429 | int norm_shift,i,loop; | ||
| 430 | BIGNUM *tmp,wnum,*snum,*sdiv,*res; | ||
| 431 | BN_ULONG *resp,*wnump; | ||
| 432 | BN_ULONG d0,d1; | ||
| 433 | int num_n,div_n; | ||
| 434 | |||
| 435 | bn_check_top(dv); | ||
| 436 | bn_check_top(rm); | ||
| 437 | /* bn_check_top(num); */ /* 'num' has been checked in BN_div() */ | ||
| 438 | bn_check_top(divisor); | ||
| 439 | |||
| 440 | if (BN_is_zero(divisor)) | ||
| 441 | { | ||
| 442 | BNerr(BN_F_BN_DIV_NO_BRANCH,BN_R_DIV_BY_ZERO); | ||
| 443 | return(0); | ||
| 444 | } | ||
| 445 | |||
| 446 | BN_CTX_start(ctx); | ||
| 447 | tmp=BN_CTX_get(ctx); | ||
| 448 | snum=BN_CTX_get(ctx); | ||
| 449 | sdiv=BN_CTX_get(ctx); | ||
| 450 | if (dv == NULL) | ||
| 451 | res=BN_CTX_get(ctx); | ||
| 452 | else res=dv; | ||
| 453 | if (sdiv == NULL || res == NULL) goto err; | ||
| 454 | |||
| 455 | /* First we normalise the numbers */ | ||
| 456 | norm_shift=BN_BITS2-((BN_num_bits(divisor))%BN_BITS2); | ||
| 457 | if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err; | ||
| 458 | sdiv->neg=0; | ||
| 459 | norm_shift+=BN_BITS2; | ||
| 460 | if (!(BN_lshift(snum,num,norm_shift))) goto err; | ||
| 461 | snum->neg=0; | ||
| 462 | |||
| 463 | /* Since we don't know whether snum is larger than sdiv, | ||
| 464 | * we pad snum with enough zeroes without changing its | ||
| 465 | * value. | ||
| 466 | */ | ||
| 467 | if (snum->top <= sdiv->top+1) | ||
| 468 | { | ||
| 469 | if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; | ||
| 470 | for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0; | ||
| 471 | snum->top = sdiv->top + 2; | ||
| 472 | } | ||
| 473 | else | ||
| 474 | { | ||
| 475 | if (bn_wexpand(snum, snum->top + 1) == NULL) goto err; | ||
| 476 | snum->d[snum->top] = 0; | ||
| 477 | snum->top ++; | ||
| 260 | } | 478 | } |
| 261 | 479 | ||
| 262 | div_n=sdiv->top; | 480 | div_n=sdiv->top; |
| @@ -282,27 +500,12 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, | |||
| 282 | /* Setup to 'res' */ | 500 | /* Setup to 'res' */ |
| 283 | res->neg= (num->neg^divisor->neg); | 501 | res->neg= (num->neg^divisor->neg); |
| 284 | if (!bn_wexpand(res,(loop+1))) goto err; | 502 | if (!bn_wexpand(res,(loop+1))) goto err; |
| 285 | res->top=loop-no_branch; | 503 | res->top=loop-1; |
| 286 | resp= &(res->d[loop-1]); | 504 | resp= &(res->d[loop-1]); |
| 287 | 505 | ||
| 288 | /* space for temp */ | 506 | /* space for temp */ |
| 289 | if (!bn_wexpand(tmp,(div_n+1))) goto err; | 507 | if (!bn_wexpand(tmp,(div_n+1))) goto err; |
| 290 | 508 | ||
| 291 | if (!no_branch) | ||
| 292 | { | ||
| 293 | if (BN_ucmp(&wnum,sdiv) >= 0) | ||
| 294 | { | ||
| 295 | /* If BN_DEBUG_RAND is defined BN_ucmp changes (via | ||
| 296 | * bn_pollute) the const bignum arguments => | ||
| 297 | * clean the values between top and max again */ | ||
| 298 | bn_clear_top2max(&wnum); | ||
| 299 | bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n); | ||
| 300 | *resp=1; | ||
| 301 | } | ||
| 302 | else | ||
| 303 | res->top--; | ||
| 304 | } | ||
| 305 | |||
| 306 | /* if res->top == 0 then clear the neg value otherwise decrease | 509 | /* if res->top == 0 then clear the neg value otherwise decrease |
| 307 | * the resp pointer */ | 510 | * the resp pointer */ |
| 308 | if (res->top == 0) | 511 | if (res->top == 0) |
| @@ -435,7 +638,7 @@ X) -> 0x%08X\n", | |||
| 435 | rm->neg = neg; | 638 | rm->neg = neg; |
| 436 | bn_check_top(rm); | 639 | bn_check_top(rm); |
| 437 | } | 640 | } |
| 438 | if (no_branch) bn_correct_top(res); | 641 | bn_correct_top(res); |
| 439 | BN_CTX_end(ctx); | 642 | BN_CTX_end(ctx); |
| 440 | return(1); | 643 | return(1); |
| 441 | err: | 644 | err: |
| @@ -443,4 +646,5 @@ err: | |||
| 443 | BN_CTX_end(ctx); | 646 | BN_CTX_end(ctx); |
| 444 | return(0); | 647 | return(0); |
| 445 | } | 648 | } |
| 649 | |||
| 446 | #endif | 650 | #endif |
