tools: patch-image: Added optional size option
[openwrt/staging/chunkeey.git] / tools / patch-image / src / patch-dtb.c
1 /*
2 * patch-dtb.c - patch a dtb into an image
3 *
4 * Copyright (C) 2006 Felix Fietkau <nbd@nbd.name>
5 * Copyright (C) 2012 John Crispin <blogic@openwrt.org>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 *
21 * based on patch-cmdline.c
22 */
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <stddef.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29 #include <sys/mman.h>
30 #include <sys/stat.h>
31 #include <string.h>
32
33 #define DTB_MAX (16 * 1024)
34
35 int main(int argc, char **argv)
36 {
37 int fd, fddtb, found = 0, len, ret = -1;
38 char *ptr, *ptrdtb, *p;
39 struct stat s;
40 unsigned int search_space , dtb_max_size;
41
42 if (argc <= 2 || argc > 4) {
43 fprintf(stderr, "Usage: %s <file> <dtb> [size]\n", argv[0]);
44 goto err1;
45 } else if (argc == 3) {
46 fprintf(stdout, "DT size used is default of 16KB\n");
47 search_space = dtb_max_size = DTB_MAX;
48 } else {
49 search_space = dtb_max_size = atoi(argv[3]);
50 }
51
52 fddtb = open(argv[1], O_RDONLY);
53 if (!fddtb)
54 goto err1;
55
56 if (stat(argv[2], &s)) {
57 fprintf(stderr, "DTB not found\n");
58 goto err1;
59 }
60
61 len = s.st_size;
62 if (len + 8 > dtb_max_size) {
63 fprintf(stderr, "DTB too big\n");
64 goto err1;
65 }
66
67 if (((fddtb = open(argv[2], O_RDONLY)) < 0) ||
68 (ptrdtb = (char *) mmap(0, dtb_max_size, PROT_READ, MAP_SHARED, fddtb, 0)) == (void *) (-1)) {
69 fprintf(stderr, "Could not open DTB");
70 goto err2;
71 }
72
73 if (((fd = open(argv[1], O_RDWR)) < 0) ||
74 (ptr = (char *) mmap(0, search_space + dtb_max_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1)) {
75 fprintf(stderr, "Could not open kernel image");
76 goto err3;
77 }
78
79 for (p = ptr; p < (ptr + search_space); p += 4) {
80 if (memcmp(p, "OWRTDTB:", 8) == 0) {
81 found = 1;
82 p += 8;
83 break;
84 }
85 }
86 if (!found) {
87 fprintf(stderr, "DTB marker not found!\n");
88 goto err4;
89 }
90
91 memset(p, 0, dtb_max_size - 8);
92 memcpy(p, ptrdtb, len);
93 msync(p, len, MS_SYNC|MS_INVALIDATE);
94 ret = 0;
95
96 err4:
97 munmap((void *) ptr, len);
98 err3:
99 if (fd > 0)
100 close(fd);
101 munmap((void *) ptrdtb, len);
102 err2:
103 if (fddtb > 0)
104 close(fddtb);
105 err1:
106 return ret;
107 }