Ketut Putu Kumajaya | 6384637 | 2014-06-23 20:05:33 +0700 | [diff] [blame] | 1 | /* tools/mkbootimg/mkbootimg.c |
| 2 | ** |
| 3 | ** Copyright 2007, The Android Open Source Project |
| 4 | ** |
| 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
| 8 | ** |
| 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ** |
| 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
| 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <stdio.h> |
| 19 | #include <stdlib.h> |
| 20 | #include <string.h> |
| 21 | #include <unistd.h> |
| 22 | #include <fcntl.h> |
| 23 | #include <errno.h> |
| 24 | |
| 25 | #include "mincrypt/sha.h" |
| 26 | #include "bootimg.h" |
| 27 | |
| 28 | static void *load_file(const char *fn, unsigned *_sz) |
| 29 | { |
| 30 | char *data; |
| 31 | int sz; |
| 32 | int fd; |
| 33 | |
| 34 | data = 0; |
| 35 | fd = open(fn, O_RDONLY); |
| 36 | if(fd < 0) return 0; |
| 37 | |
| 38 | sz = lseek(fd, 0, SEEK_END); |
| 39 | if(sz < 0) goto oops; |
| 40 | |
| 41 | if(lseek(fd, 0, SEEK_SET) != 0) goto oops; |
| 42 | |
| 43 | data = (char*) malloc(sz); |
| 44 | if(data == 0) goto oops; |
| 45 | |
| 46 | if(read(fd, data, sz) != sz) goto oops; |
| 47 | close(fd); |
| 48 | |
| 49 | if(_sz) *_sz = sz; |
| 50 | return data; |
| 51 | |
| 52 | oops: |
| 53 | close(fd); |
| 54 | if(data != 0) free(data); |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | int usage(void) |
| 59 | { |
| 60 | fprintf(stderr,"usage: mkbootimg\n" |
| 61 | " --kernel <filename>\n" |
| 62 | " --ramdisk <filename>\n" |
| 63 | " [ --second <2ndbootloader-filename> ]\n" |
| 64 | " [ --cmdline <kernel-commandline> ]\n" |
| 65 | " [ --board <boardname> ]\n" |
| 66 | " [ --base <address> ]\n" |
| 67 | " [ --pagesize <pagesize> ]\n" |
| 68 | " [ --ramdisk_offset <address> ]\n" |
| 69 | " [ --dt <filename> ]\n" |
Ketut Putu Kumajaya | 0c2cc5a | 2014-06-23 20:18:46 +0700 | [diff] [blame^] | 70 | " [ --signature <filename> ]\n" |
Ketut Putu Kumajaya | 6384637 | 2014-06-23 20:05:33 +0700 | [diff] [blame] | 71 | " -o|--output <filename>\n" |
| 72 | ); |
| 73 | return 1; |
| 74 | } |
| 75 | |
| 76 | |
| 77 | |
| 78 | static unsigned char padding[131072] = { 0, }; |
| 79 | |
| 80 | int write_padding(int fd, unsigned pagesize, unsigned itemsize) |
| 81 | { |
| 82 | unsigned pagemask = pagesize - 1; |
| 83 | unsigned count; |
| 84 | |
| 85 | if((itemsize & pagemask) == 0) { |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | count = pagesize - (itemsize & pagemask); |
| 90 | |
| 91 | if(write(fd, padding, count) != count) { |
| 92 | return -1; |
| 93 | } else { |
| 94 | return 0; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | int main(int argc, char **argv) |
| 99 | { |
| 100 | boot_img_hdr hdr; |
| 101 | |
| 102 | char *kernel_fn = 0; |
| 103 | void *kernel_data = 0; |
| 104 | char *ramdisk_fn = 0; |
| 105 | void *ramdisk_data = 0; |
| 106 | char *second_fn = 0; |
| 107 | void *second_data = 0; |
| 108 | char *cmdline = ""; |
| 109 | char *bootimg = 0; |
| 110 | char *board = ""; |
| 111 | char *dt_fn = 0; |
| 112 | void *dt_data = 0; |
Ketut Putu Kumajaya | 0c2cc5a | 2014-06-23 20:18:46 +0700 | [diff] [blame^] | 113 | char *sig_fn = 0; |
| 114 | void *sig_data = 0; |
Ketut Putu Kumajaya | 6384637 | 2014-06-23 20:05:33 +0700 | [diff] [blame] | 115 | unsigned pagesize = 2048; |
| 116 | int fd; |
| 117 | SHA_CTX ctx; |
| 118 | uint8_t* sha; |
| 119 | unsigned base = 0x10000000; |
| 120 | unsigned kernel_offset = 0x00008000; |
| 121 | unsigned ramdisk_offset = 0x01000000; |
| 122 | unsigned second_offset = 0x00f00000; |
| 123 | unsigned tags_offset = 0x00000100; |
| 124 | |
| 125 | argc--; |
| 126 | argv++; |
| 127 | |
| 128 | memset(&hdr, 0, sizeof(hdr)); |
| 129 | |
| 130 | while(argc > 0){ |
| 131 | char *arg = argv[0]; |
| 132 | char *val = argv[1]; |
| 133 | if(argc < 2) { |
| 134 | return usage(); |
| 135 | } |
| 136 | argc -= 2; |
| 137 | argv += 2; |
| 138 | if(!strcmp(arg, "--output") || !strcmp(arg, "-o")) { |
| 139 | bootimg = val; |
| 140 | } else if(!strcmp(arg, "--kernel")) { |
| 141 | kernel_fn = val; |
| 142 | } else if(!strcmp(arg, "--ramdisk")) { |
| 143 | ramdisk_fn = val; |
| 144 | } else if(!strcmp(arg, "--second")) { |
| 145 | second_fn = val; |
| 146 | } else if(!strcmp(arg, "--cmdline")) { |
| 147 | cmdline = val; |
| 148 | } else if(!strcmp(arg, "--base")) { |
| 149 | base = strtoul(val, 0, 16); |
| 150 | } else if(!strcmp(arg, "--kernel_offset")) { |
| 151 | kernel_offset = strtoul(val, 0, 16); |
| 152 | } else if(!strcmp(arg, "--ramdisk_offset")) { |
| 153 | ramdisk_offset = strtoul(val, 0, 16); |
| 154 | } else if(!strcmp(arg, "--second_offset")) { |
| 155 | second_offset = strtoul(val, 0, 16); |
| 156 | } else if(!strcmp(arg, "--tags_offset")) { |
| 157 | tags_offset = strtoul(val, 0, 16); |
| 158 | } else if(!strcmp(arg, "--board")) { |
| 159 | board = val; |
| 160 | } else if(!strcmp(arg,"--pagesize")) { |
| 161 | pagesize = strtoul(val, 0, 10); |
| 162 | if ((pagesize != 2048) && (pagesize != 4096) && (pagesize != 8192) && (pagesize != 16384) && (pagesize != 32768) && (pagesize != 65536) && (pagesize != 131072)) { |
| 163 | fprintf(stderr,"error: unsupported page size %d\n", pagesize); |
| 164 | return -1; |
| 165 | } |
| 166 | } else if(!strcmp(arg, "--dt")) { |
| 167 | dt_fn = val; |
Ketut Putu Kumajaya | 0c2cc5a | 2014-06-23 20:18:46 +0700 | [diff] [blame^] | 168 | } else if(!strcmp(arg, "--signature")) { |
| 169 | sig_fn = val; |
Ketut Putu Kumajaya | 6384637 | 2014-06-23 20:05:33 +0700 | [diff] [blame] | 170 | } else { |
| 171 | return usage(); |
| 172 | } |
| 173 | } |
| 174 | hdr.page_size = pagesize; |
| 175 | |
| 176 | hdr.kernel_addr = base + kernel_offset; |
| 177 | hdr.ramdisk_addr = base + ramdisk_offset; |
| 178 | hdr.second_addr = base + second_offset; |
| 179 | hdr.tags_addr = base + tags_offset; |
| 180 | |
| 181 | if(bootimg == 0) { |
| 182 | fprintf(stderr,"error: no output filename specified\n"); |
| 183 | return usage(); |
| 184 | } |
| 185 | |
| 186 | if(kernel_fn == 0) { |
| 187 | fprintf(stderr,"error: no kernel image specified\n"); |
| 188 | return usage(); |
| 189 | } |
| 190 | |
| 191 | if(ramdisk_fn == 0) { |
| 192 | fprintf(stderr,"error: no ramdisk image specified\n"); |
| 193 | return usage(); |
| 194 | } |
| 195 | |
| 196 | if(strlen(board) >= BOOT_NAME_SIZE) { |
| 197 | fprintf(stderr,"error: board name too large\n"); |
| 198 | return usage(); |
| 199 | } |
| 200 | |
| 201 | strcpy(hdr.name, board); |
| 202 | |
| 203 | memcpy(hdr.magic, BOOT_MAGIC, BOOT_MAGIC_SIZE); |
| 204 | |
| 205 | if(strlen(cmdline) > (BOOT_ARGS_SIZE - 1)) { |
| 206 | fprintf(stderr,"error: kernel commandline too large\n"); |
| 207 | return 1; |
| 208 | } |
| 209 | strcpy((char*)hdr.cmdline, cmdline); |
| 210 | |
| 211 | kernel_data = load_file(kernel_fn, &hdr.kernel_size); |
| 212 | if(kernel_data == 0) { |
| 213 | fprintf(stderr,"error: could not load kernel '%s'\n", kernel_fn); |
| 214 | return 1; |
| 215 | } |
| 216 | |
| 217 | if(!strcmp(ramdisk_fn,"NONE")) { |
| 218 | ramdisk_data = 0; |
| 219 | hdr.ramdisk_size = 0; |
| 220 | } else { |
| 221 | ramdisk_data = load_file(ramdisk_fn, &hdr.ramdisk_size); |
| 222 | if(ramdisk_data == 0) { |
| 223 | fprintf(stderr,"error: could not load ramdisk '%s'\n", ramdisk_fn); |
| 224 | return 1; |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | if(second_fn) { |
| 229 | second_data = load_file(second_fn, &hdr.second_size); |
| 230 | if(second_data == 0) { |
| 231 | fprintf(stderr,"error: could not load secondstage '%s'\n", second_fn); |
| 232 | return 1; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | if(dt_fn) { |
| 237 | dt_data = load_file(dt_fn, &hdr.dt_size); |
| 238 | if (dt_data == 0) { |
| 239 | fprintf(stderr,"error: could not load device tree image '%s'\n", dt_fn); |
| 240 | return 1; |
| 241 | } |
| 242 | } |
| 243 | |
Ketut Putu Kumajaya | 0c2cc5a | 2014-06-23 20:18:46 +0700 | [diff] [blame^] | 244 | if(sig_fn) { |
| 245 | sig_data = load_file(sig_fn, 0); |
| 246 | if (sig_data == 0) { |
| 247 | fprintf(stderr,"error: could not load signature '%s'\n", sig_fn); |
| 248 | return 1; |
| 249 | } |
| 250 | } |
| 251 | |
Ketut Putu Kumajaya | 6384637 | 2014-06-23 20:05:33 +0700 | [diff] [blame] | 252 | /* put a hash of the contents in the header so boot images can be |
| 253 | * differentiated based on their first 2k. |
| 254 | */ |
| 255 | SHA_init(&ctx); |
| 256 | SHA_update(&ctx, kernel_data, hdr.kernel_size); |
| 257 | SHA_update(&ctx, &hdr.kernel_size, sizeof(hdr.kernel_size)); |
| 258 | SHA_update(&ctx, ramdisk_data, hdr.ramdisk_size); |
| 259 | SHA_update(&ctx, &hdr.ramdisk_size, sizeof(hdr.ramdisk_size)); |
| 260 | SHA_update(&ctx, second_data, hdr.second_size); |
| 261 | SHA_update(&ctx, &hdr.second_size, sizeof(hdr.second_size)); |
| 262 | if(dt_data) { |
| 263 | SHA_update(&ctx, dt_data, hdr.dt_size); |
| 264 | SHA_update(&ctx, &hdr.dt_size, sizeof(hdr.dt_size)); |
| 265 | } |
| 266 | sha = SHA_final(&ctx); |
| 267 | memcpy(hdr.id, sha, |
| 268 | SHA_DIGEST_SIZE > sizeof(hdr.id) ? sizeof(hdr.id) : SHA_DIGEST_SIZE); |
| 269 | |
| 270 | fd = open(bootimg, O_CREAT | O_TRUNC | O_WRONLY, 0644); |
| 271 | if(fd < 0) { |
| 272 | fprintf(stderr,"error: could not create '%s'\n", bootimg); |
| 273 | return 1; |
| 274 | } |
| 275 | |
| 276 | if(write(fd, &hdr, sizeof(hdr)) != sizeof(hdr)) goto fail; |
| 277 | if(write_padding(fd, pagesize, sizeof(hdr))) goto fail; |
| 278 | |
| 279 | if(write(fd, kernel_data, hdr.kernel_size) != hdr.kernel_size) goto fail; |
| 280 | if(write_padding(fd, pagesize, hdr.kernel_size)) goto fail; |
| 281 | |
| 282 | if(write(fd, ramdisk_data, hdr.ramdisk_size) != hdr.ramdisk_size) goto fail; |
| 283 | if(write_padding(fd, pagesize, hdr.ramdisk_size)) goto fail; |
| 284 | |
| 285 | if(second_data) { |
| 286 | if(write(fd, second_data, hdr.second_size) != hdr.second_size) goto fail; |
| 287 | if(write_padding(fd, pagesize, hdr.ramdisk_size)) goto fail; |
| 288 | } |
| 289 | |
| 290 | if(dt_data) { |
| 291 | if(write(fd, dt_data, hdr.dt_size) != hdr.dt_size) goto fail; |
| 292 | if(write_padding(fd, pagesize, hdr.dt_size)) goto fail; |
| 293 | } |
Ketut Putu Kumajaya | 0c2cc5a | 2014-06-23 20:18:46 +0700 | [diff] [blame^] | 294 | |
| 295 | if(sig_data) { |
| 296 | if(write(fd, sig_data, 256) != 256) goto fail; |
| 297 | } |
| 298 | |
Ketut Putu Kumajaya | 6384637 | 2014-06-23 20:05:33 +0700 | [diff] [blame] | 299 | return 0; |
| 300 | |
| 301 | fail: |
| 302 | unlink(bootimg); |
| 303 | close(fd); |
| 304 | fprintf(stderr,"error: failed writing '%s': %s\n", bootimg, |
| 305 | strerror(errno)); |
| 306 | return 1; |
| 307 | } |