[CRYPTO] ctr: Fix multi-page processing
authorHerbert Xu <herbert@gondor.apana.org.au>
Thu, 29 Nov 2007 13:23:53 +0000 (00:23 +1100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 10 Jan 2008 21:16:24 +0000 (08:16 +1100)
commit0971eb0de9446b66bd45696338f54948314db379
tree379cd3396219f9187a23ea6c57bae62de1d4cef9
parent06e1a8f0505426a97292174a959560fd86ea0a3d
[CRYPTO] ctr: Fix multi-page processing

When the data spans across a page boundary, CTR may incorrectly process
a partial block in the middle because the blkcipher walking code may
supply partial blocks in the middle as long as the total length of the
supplied data is more than a block.  CTR is supposed to return any unused
partial block in that case to the walker.

This patch fixes this by doing exactly that, returning partial blocks to
the walker unless we received less than a block-worth of data to start
with.

This also allows us to optimise the bulk of the processing since we no
longer have to worry about partial blocks until the very end.

Thanks to Tan Swee Heng for fixes and actually testing this :)

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/ctr.c