Module Name: src Committed By: riastradh Date: Mon Jun 29 23:35:26 UTC 2020
Modified Files: src/sys/dev: cgd.c Log Message: cgd(4): Print which key size is broken when a self-test fails. Can be gleaned from the test index but this is a little quicker. To generate a diff of this commit: cvs rdiff -u -r1.135 -r1.136 src/sys/dev/cgd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/cgd.c diff -u src/sys/dev/cgd.c:1.135 src/sys/dev/cgd.c:1.136 --- src/sys/dev/cgd.c:1.135 Wed Jun 17 20:44:45 2020 +++ src/sys/dev/cgd.c Mon Jun 29 23:35:26 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: cgd.c,v 1.135 2020/06/17 20:44:45 riastradh Exp $ */ +/* $NetBSD: cgd.c,v 1.136 2020/06/29 23:35:26 riastradh Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: cgd.c,v 1.135 2020/06/17 20:44:45 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cgd.c,v 1.136 2020/06/29 23:35:26 riastradh Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -1699,8 +1699,8 @@ cgd_selftest(void) if (memcmp(buf, selftests[i].ctxt, txtlen) != 0) { hexdump(printf, "was", buf, txtlen); hexdump(printf, "exp", selftests[i].ctxt, txtlen); - panic("cgd %s encryption is broken [%zu]", - selftests[i].alg, i); + panic("cgd %s-%d encryption is broken [%zu]", + selftests[i].alg, keylen, i); } cgd_cipher(&sc, buf, buf, txtlen, selftests[i].blkno, @@ -1708,8 +1708,8 @@ cgd_selftest(void) if (memcmp(buf, selftests[i].ptxt, txtlen) != 0) { hexdump(printf, "was", buf, txtlen); hexdump(printf, "exp", selftests[i].ptxt, txtlen); - panic("cgd %s decryption is broken [%zu]", - selftests[i].alg, i); + panic("cgd %s-%d decryption is broken [%zu]", + selftests[i].alg, keylen, i); } kmem_free(buf, txtlen);