Skip to content

Commit bc01637

Browse files
Dmitry Kasatkintorvalds
Dmitry Kasatkin
authored andcommitted
digsig: add hash size comparision on signature verification
When pkcs_1_v1_5_decode_emsa() returns without error and hash sizes do not match, hash comparision is not done and digsig_verify_rsa() returns no error. This is a bug and this patch fixes it. The bug was introduced in v3.3 by commit b35e286 ("lib/digsig: pkcs_1_v1_5_decode_emsa cleanup"). Cc: [email protected] Signed-off-by: Dmitry Kasatkin <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 8507876 commit bc01637

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/digsig.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,11 @@ static int digsig_verify_rsa(struct key *key,
163163
memcpy(out1 + head, p, l);
164164

165165
err = pkcs_1_v1_5_decode_emsa(out1, len, mblen, out2, &len);
166+
if (err)
167+
goto err;
166168

167-
if (!err && len == hlen)
168-
err = memcmp(out2, h, hlen);
169+
if (len != hlen || memcmp(out2, h, hlen))
170+
err = -EINVAL;
169171

170172
err:
171173
mpi_free(in);

0 commit comments

Comments
 (0)