1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2014 The FreeBSD Foundation 5 * 6 * This software was developed by Edward Tomasz Napierala under sponsorship 7 * from the FreeBSD Foundation. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 * 30 */ 31 32 #include <sys/cdefs.h> 33 #include <sys/param.h> 34 #include <sys/capsicum.h> 35 #include <sys/types.h> 36 #include <sys/stat.h> 37 #include <assert.h> 38 #include <capsicum_helpers.h> 39 #include <err.h> 40 #include <errno.h> 41 #include <stdio.h> 42 #include <stdlib.h> 43 #include <string.h> 44 #include <unistd.h> 45 46 #include <openssl/evp.h> 47 #include <openssl/err.h> 48 #include <openssl/pem.h> 49 50 #include "uefisign.h" 51 52 static void 53 load(struct executable *x) 54 { 55 int error, fd; 56 struct stat sb; 57 char *buf; 58 size_t nread, len; 59 60 fd = fileno(x->x_fp); 61 62 error = fstat(fd, &sb); 63 if (error != 0) 64 err(1, "%s: fstat", x->x_path); 65 66 len = sb.st_size; 67 if (len <= 0) 68 errx(1, "%s: file is empty", x->x_path); 69 70 buf = malloc(len); 71 if (buf == NULL) 72 err(1, "%s: cannot malloc %zd bytes", x->x_path, len); 73 74 nread = fread(buf, len, 1, x->x_fp); 75 if (nread != 1) 76 err(1, "%s: fread", x->x_path); 77 78 x->x_buf = buf; 79 x->x_len = len; 80 } 81 82 static void 83 digest_range(struct executable *x, EVP_MD_CTX *mdctx, off_t off, size_t len) 84 { 85 int ok; 86 87 range_check(x, off, len, "chunk"); 88 89 ok = EVP_DigestUpdate(mdctx, x->x_buf + off, len); 90 if (ok == 0) { 91 ERR_print_errors_fp(stderr); 92 errx(1, "EVP_DigestUpdate(3) failed"); 93 } 94 } 95 96 static void 97 digest(struct executable *x) 98 { 99 EVP_MD_CTX *mdctx; 100 const EVP_MD *md; 101 size_t sum_of_bytes_hashed; 102 int i, ok; 103 104 /* 105 * Windows Authenticode Portable Executable Signature Format 106 * spec version 1.0 specifies MD5 and SHA1. However, pesign 107 * and sbsign both use SHA256, so do the same. 108 */ 109 md = EVP_get_digestbyname(DIGEST); 110 if (md == NULL) { 111 ERR_print_errors_fp(stderr); 112 errx(1, "EVP_get_digestbyname(\"%s\") failed", DIGEST); 113 } 114 115 mdctx = EVP_MD_CTX_create(); 116 if (mdctx == NULL) { 117 ERR_print_errors_fp(stderr); 118 errx(1, "EVP_MD_CTX_create(3) failed"); 119 } 120 121 ok = EVP_DigestInit_ex(mdctx, md, NULL); 122 if (ok == 0) { 123 ERR_print_errors_fp(stderr); 124 errx(1, "EVP_DigestInit_ex(3) failed"); 125 } 126 127 /* 128 * According to the Authenticode spec, we need to compute 129 * the digest in a rather... specific manner; see "Calculating 130 * the PE Image Hash" part of the spec for details. 131 * 132 * First, everything from 0 to before the PE checksum. 133 */ 134 digest_range(x, mdctx, 0, x->x_checksum_off); 135 136 /* 137 * Second, from after the PE checksum to before the Certificate 138 * entry in Data Directory. 139 */ 140 digest_range(x, mdctx, x->x_checksum_off + x->x_checksum_len, 141 x->x_certificate_entry_off - 142 (x->x_checksum_off + x->x_checksum_len)); 143 144 /* 145 * Then, from after the Certificate entry to the end of headers. 146 */ 147 digest_range(x, mdctx, 148 x->x_certificate_entry_off + x->x_certificate_entry_len, 149 x->x_headers_len - 150 (x->x_certificate_entry_off + x->x_certificate_entry_len)); 151 152 /* 153 * Then, each section in turn, as specified in the PE Section Table. 154 * 155 * XXX: Sorting. 156 */ 157 sum_of_bytes_hashed = x->x_headers_len; 158 for (i = 0; i < x->x_nsections; i++) { 159 digest_range(x, mdctx, 160 x->x_section_off[i], x->x_section_len[i]); 161 sum_of_bytes_hashed += x->x_section_len[i]; 162 } 163 164 /* 165 * I believe this can happen with overlapping sections. 166 */ 167 if (sum_of_bytes_hashed > x->x_len) 168 errx(1, "number of bytes hashed is larger than file size"); 169 170 /* 171 * I can't really explain this one; just do what the spec says. 172 */ 173 if (sum_of_bytes_hashed < x->x_len) { 174 digest_range(x, mdctx, sum_of_bytes_hashed, 175 x->x_len - (signature_size(x) + sum_of_bytes_hashed)); 176 } 177 178 ok = EVP_DigestFinal_ex(mdctx, x->x_digest, &x->x_digest_len); 179 if (ok == 0) { 180 ERR_print_errors_fp(stderr); 181 errx(1, "EVP_DigestFinal_ex(3) failed"); 182 } 183 184 EVP_MD_CTX_destroy(mdctx); 185 } 186 187 static void 188 show_digest(const struct executable *x) 189 { 190 int i; 191 192 printf("computed %s digest ", DIGEST); 193 for (i = 0; i < (int)x->x_digest_len; i++) 194 printf("%02x", (unsigned char)x->x_digest[i]); 195 printf("; digest len %u\n", x->x_digest_len); 196 } 197 198 static void 199 send_digest(const struct executable *x, int pipefd) 200 { 201 202 send_chunk(x->x_digest, x->x_digest_len, pipefd); 203 } 204 205 static void 206 receive_signature(struct executable *x, int pipefd) 207 { 208 209 receive_chunk(&x->x_signature, &x->x_signature_len, pipefd); 210 } 211 212 static void 213 save(struct executable *x, FILE *fp, const char *path) 214 { 215 size_t nwritten; 216 217 assert(fp != NULL); 218 assert(path != NULL); 219 220 nwritten = fwrite(x->x_buf, x->x_len, 1, fp); 221 if (nwritten != 1) 222 err(1, "%s: fwrite", path); 223 } 224 225 int 226 child(const char *inpath, const char *outpath, int pipefd, 227 bool Vflag, bool vflag) 228 { 229 FILE *outfp = NULL, *infp = NULL; 230 struct executable *x; 231 232 infp = checked_fopen(inpath, "r"); 233 if (outpath != NULL) 234 outfp = checked_fopen(outpath, "w"); 235 236 if (caph_enter() < 0) 237 err(1, "cap_enter"); 238 239 x = calloc(1, sizeof(*x)); 240 if (x == NULL) 241 err(1, "calloc"); 242 x->x_path = inpath; 243 x->x_fp = infp; 244 245 load(x); 246 parse(x); 247 if (Vflag) { 248 if (signature_size(x) == 0) 249 errx(1, "file not signed"); 250 251 printf("file contains signature\n"); 252 if (vflag) { 253 digest(x); 254 show_digest(x); 255 show_certificate(x); 256 } 257 } else { 258 if (signature_size(x) != 0) 259 errx(1, "file already signed"); 260 261 digest(x); 262 if (vflag) 263 show_digest(x); 264 send_digest(x, pipefd); 265 receive_signature(x, pipefd); 266 update(x); 267 save(x, outfp, outpath); 268 } 269 270 return (0); 271 } 272