Skip to content

Commit

Permalink
[CRYPTO] xts: Use proper alignment
Browse files Browse the repository at this point in the history
The XTS blockmode uses a copy of the IV which is saved on the stack
and may or may not be properly aligned. If it is not, it will break
hardware cipher like the geode or padlock.
This patch encrypts the IV in place so we don't have to worry about
alignment.

Signed-off-by: Sebastian Siewior <[email protected]>
Tested-by: Stefan Hellermann <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
sebastianas authored and herbertx committed Mar 6, 2008
1 parent bc97f19 commit 6212f2c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions crypto/xts.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,16 @@ static int setkey(struct crypto_tfm *parent, const u8 *key,
}

struct sinfo {
be128 t;
be128 *t;
struct crypto_tfm *tfm;
void (*fn)(struct crypto_tfm *, u8 *, const u8 *);
};

static inline void xts_round(struct sinfo *s, void *dst, const void *src)
{
be128_xor(dst, &s->t, src); /* PP <- T xor P */
be128_xor(dst, s->t, src); /* PP <- T xor P */
s->fn(s->tfm, dst, dst); /* CC <- E(Key1,PP) */
be128_xor(dst, dst, &s->t); /* C <- T xor CC */
be128_xor(dst, dst, s->t); /* C <- T xor CC */
}

static int crypt(struct blkcipher_desc *d,
Expand All @@ -101,28 +101,27 @@ static int crypt(struct blkcipher_desc *d,
.tfm = crypto_cipher_tfm(ctx->child),
.fn = fn
};
be128 *iv;
u8 *wsrc;
u8 *wdst;

err = blkcipher_walk_virt(d, w);
if (!w->nbytes)
return err;

s.t = (be128 *)w->iv;
avail = w->nbytes;

wsrc = w->src.virt.addr;
wdst = w->dst.virt.addr;

/* calculate first value of T */
iv = (be128 *)w->iv;
tw(crypto_cipher_tfm(ctx->tweak), (void *)&s.t, w->iv);
tw(crypto_cipher_tfm(ctx->tweak), w->iv, w->iv);

goto first;

for (;;) {
do {
gf128mul_x_ble(&s.t, &s.t);
gf128mul_x_ble(s.t, s.t);

first:
xts_round(&s, wdst, wsrc);
Expand Down

0 comments on commit 6212f2c

Please sign in to comment.