aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mpi/mpicoder.c
diff options
context:
space:
mode:
authorNicolai Stange <nicstange@gmail.com>2016-03-22 08:18:07 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2016-04-05 08:35:51 -0400
commit85d541a3d14ab7a4e08c280740d9a7e097b04835 (patch)
tree911836bb1c5fb48923c747a587b076797725044e /lib/mpi/mpicoder.c
parent64c09b0b59b92ad231dd526f57f24139b728044b (diff)
lib/mpi: mpi_read_raw_from_sgl(): sanitize meaning of indices
Within the byte reading loop in mpi_read_raw_sgl(), there are two housekeeping indices used, z and x. At all times, the index z represents the number of output bytes covered by the input SGEs for which processing has completed so far. This includes any leading zero bytes within the most significant limb. The index x changes its meaning after the first outer loop's iteration though: while processing the first input SGE, it represents "number of leading zero bytes in most significant output limb" + "current position within current SGE" For the remaining SGEs OTOH, x corresponds just to "current position within current SGE" After all, it is only the sum of z and x that has any meaning for the output buffer and thus, the "number of leading zero bytes in most significant output limb" part can be moved away from x into z from the beginning, opening up the opportunity for cleaner code. Before the outer loop iterating over the SGEs, don't initialize z with zero, but with the number of leading zero bytes in the most significant output limb. For the inner loop iterating over a single SGE's bytes, get rid of the buf_shift offset to x' bounds and let x run from zero to sg->length - 1. Signed-off-by: Nicolai Stange <nicstange@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib/mpi/mpicoder.c')
-rw-r--r--lib/mpi/mpicoder.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/mpi/mpicoder.c b/lib/mpi/mpicoder.c
index 24a015513b40..a9f1097c18cb 100644
--- a/lib/mpi/mpicoder.c
+++ b/lib/mpi/mpicoder.c
@@ -477,19 +477,17 @@ MPI mpi_read_raw_from_sgl(struct scatterlist *sgl, unsigned int nbytes)
477 477
478 j = nlimbs - 1; 478 j = nlimbs - 1;
479 a = 0; 479 a = 0;
480 z = 0; 480 z = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB;
481 x = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB; 481 z %= BYTES_PER_MPI_LIMB;
482 x %= BYTES_PER_MPI_LIMB;
483 482
484 for_each_sg(sgl, sg, ents, i) { 483 for_each_sg(sgl, sg, ents, i) {
485 const u8 *buffer = sg_virt(sg) + lzeros; 484 const u8 *buffer = sg_virt(sg) + lzeros;
486 int len = sg->length - lzeros; 485 int len = sg->length - lzeros;
487 int buf_shift = x;
488 486
489 if (sg_is_last(sg) && (len % BYTES_PER_MPI_LIMB)) 487 if (sg_is_last(sg) && (len % BYTES_PER_MPI_LIMB))
490 len += BYTES_PER_MPI_LIMB - (len % BYTES_PER_MPI_LIMB); 488 len += BYTES_PER_MPI_LIMB - (len % BYTES_PER_MPI_LIMB);
491 489
492 for (; x < len + buf_shift; x++) { 490 for (x = 0; x < len; x++) {
493 a <<= 8; 491 a <<= 8;
494 a |= *buffer++; 492 a |= *buffer++;
495 if (((z + x + 1) % BYTES_PER_MPI_LIMB) == 0) { 493 if (((z + x + 1) % BYTES_PER_MPI_LIMB) == 0) {
@@ -498,7 +496,6 @@ MPI mpi_read_raw_from_sgl(struct scatterlist *sgl, unsigned int nbytes)
498 } 496 }
499 } 497 }
500 z += x; 498 z += x;
501 x = 0;
502 lzeros = 0; 499 lzeros = 0;
503 } 500 }
504 return val; 501 return val;