summaryrefslogtreecommitdiffstats
path: root/usr.sbin/uefisign
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2015-05-20 09:40:34 +0000
committertrasz <trasz@FreeBSD.org>2015-05-20 09:40:34 +0000
commitee2239f540beecc3fe0e6f1904cca04019ba1381 (patch)
tree135cde4e5f27834dc7c1625c2b0951f32e211832 /usr.sbin/uefisign
parent1d9a80040b8b7b1129a878c74400df1b84c6ef13 (diff)
downloadFreeBSD-src-ee2239f540beecc3fe0e6f1904cca04019ba1381.zip
FreeBSD-src-ee2239f540beecc3fe0e6f1904cca04019ba1381.tar.gz
Remove the warning about invalid PE checksum; apparently nothing
cares about those checksums anyway. MFC after: 1 month Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'usr.sbin/uefisign')
-rw-r--r--usr.sbin/uefisign/pe.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.sbin/uefisign/pe.c b/usr.sbin/uefisign/pe.c
index 26bb6d5..f4695b4 100644
--- a/usr.sbin/uefisign/pe.c
+++ b/usr.sbin/uefisign/pe.c
@@ -346,7 +346,9 @@ static void
parse_optional_32_plus(struct executable *x, off_t off,
int number_of_sections)
{
+#if 0
uint32_t computed_checksum;
+#endif
const struct pe_optional_header_32_plus *po;
range_check(x, off, sizeof(*po), "PE Optional Header");
@@ -373,13 +375,13 @@ parse_optional_32_plus(struct executable *x, off_t off,
#if 0
printf("checksum 0x%x at offset %zd, len %zd\n",
po->po_checksum, x->x_checksum_off, x->x_checksum_len);
-#endif
computed_checksum = compute_checksum(x);
if (computed_checksum != po->po_checksum) {
warnx("invalid PE+ checksum; is 0x%x, should be 0x%x",
po->po_checksum, computed_checksum);
}
+#endif
if (x->x_len < x->x_headers_len)
errx(1, "invalid SizeOfHeaders %d", po->po_size_of_headers);
@@ -393,7 +395,9 @@ parse_optional_32_plus(struct executable *x, off_t off,
static void
parse_optional_32(struct executable *x, off_t off, int number_of_sections)
{
+#if 0
uint32_t computed_checksum;
+#endif
const struct pe_optional_header_32 *po;
range_check(x, off, sizeof(*po), "PE Optional Header");
@@ -420,13 +424,13 @@ parse_optional_32(struct executable *x, off_t off, int number_of_sections)
#if 0
printf("checksum at offset %zd, len %zd\n",
x->x_checksum_off, x->x_checksum_len);
-#endif
computed_checksum = compute_checksum(x);
if (computed_checksum != po->po_checksum) {
warnx("invalid PE checksum; is 0x%x, should be 0x%x",
po->po_checksum, computed_checksum);
}
+#endif
if (x->x_len < x->x_headers_len)
errx(1, "invalid SizeOfHeaders %d", po->po_size_of_headers);
OpenPOWER on IntegriCloud