3108c5a9e6bf0df9c34593c78a7f56f2bb58d2ee
[openwrt/svn-archive/archive.git] / package / mtd / src / fis.c
1 /*
2 * FIS table updating code for mtd
3 *
4 * Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License v2
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15 #include <sys/mman.h>
16 #include <stdint.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <unistd.h>
20 #include <stdio.h>
21 #include "crc32.h"
22 #include "mtd.h"
23 #include "fis.h"
24
25 struct fis_image_hdr {
26 unsigned char name[16];
27 uint32_t flash_base;
28 uint32_t mem_base;
29 uint32_t size;
30 uint32_t entry_point;
31 uint32_t data_length;
32 } __attribute__((packed));
33
34 struct fis_image_crc {
35 uint32_t desc;
36 uint32_t file;
37 } __attribute__((packed));
38
39 struct fis_image_desc {
40 struct fis_image_hdr hdr;
41 char _pad[256 - sizeof(struct fis_image_hdr) - sizeof(struct fis_image_crc)];
42 struct fis_image_crc crc;
43 } __attribute__((packed));
44
45 static int fis_fd = -1;
46 static struct fis_image_desc *fis_desc;
47 static int fis_erasesize = 0;
48
49 static void
50 fis_close(void)
51 {
52 if (fis_desc)
53 munmap(fis_desc, fis_erasesize);
54
55 if (fis_fd >= 0)
56 close(fis_fd);
57
58 fis_fd = -1;
59 fis_desc = NULL;
60 }
61
62 static struct fis_image_desc *
63 fis_open(void)
64 {
65 struct fis_image_desc *desc;
66
67 if (fis_fd >= 0)
68 fis_close();
69
70 fis_fd = mtd_check_open("FIS directory");
71 if (fis_fd < 0)
72 goto error;
73
74 close(fis_fd);
75 fis_fd = mtd_open("FIS directory", true);
76 if (fis_fd < 0)
77 goto error;
78
79 fis_erasesize = erasesize;
80 desc = mmap(NULL, erasesize, PROT_READ|PROT_WRITE, MAP_SHARED, fis_fd, 0);
81 if (desc == MAP_FAILED)
82 goto error;
83
84 fis_desc = desc;
85 return desc;
86
87 error:
88 fis_close();
89 return NULL;
90 }
91
92 int
93 fis_validate(struct fis_part *old, int n_old, struct fis_part *new, int n_new)
94 {
95 struct fis_image_desc *desc;
96 void *end;
97 int found = 0;
98 int i;
99
100 desc = fis_open();
101 if (!desc)
102 return -1;
103
104 for (i = 0; i < n_new - 1; i++) {
105 if (!new[i].size) {
106 fprintf(stderr, "FIS error: only the last partition can detect the size automatically\n");
107 i = -1;
108 goto done;
109 }
110 }
111
112 end = desc;
113 end = (char *) end + fis_erasesize;
114 while ((void *) desc < end) {
115 if (!desc->hdr.name[0] || (desc->hdr.name[0] == 0xff))
116 break;
117
118 for (i = 0; i < n_old; i++) {
119 if (!strncmp((char *) desc->hdr.name, (char *) old[i].name, sizeof(desc->hdr.name))) {
120 found++;
121 goto next;
122 }
123 }
124 next:
125 desc++;
126 continue;
127 }
128
129 if (found == n_old)
130 i = 1;
131 else
132 i = -1;
133
134 done:
135 fis_close();
136 return i;
137 }
138
139 int
140 fis_remap(struct fis_part *old, int n_old, struct fis_part *new, int n_new)
141 {
142 struct fis_image_desc *fisdir = NULL;
143 struct fis_image_desc *redboot = NULL;
144 struct fis_image_desc *first = NULL;
145 struct fis_image_desc *last = NULL;
146 struct fis_image_desc *desc;
147 struct fis_part *part;
148 uint32_t offset = 0, size = 0;
149 char *end, *tmp;
150 int i;
151
152 desc = fis_open();
153 if (!desc)
154 return -1;
155
156 if (!quiet)
157 fprintf(stderr, "Updating FIS table... \n");
158
159 end = (char *) desc + fis_erasesize;
160 while ((char *) desc < end) {
161 if (!desc->hdr.name[0] || (desc->hdr.name[0] == 0xff))
162 break;
163
164 if (!strcmp((char *) desc->hdr.name, "FIS directory"))
165 fisdir = desc;
166
167 if (!strcmp((char *) desc->hdr.name, "RedBoot"))
168 redboot = desc;
169
170 for (i = 0; i < n_old; i++) {
171 if (!strncmp((char *) desc->hdr.name, (char *) old[i].name, sizeof(desc->hdr.name))) {
172 size += desc->hdr.size;
173 last = desc;
174 if (!first)
175 first = desc;
176 break;
177 }
178 }
179 desc++;
180 }
181 desc--;
182
183 if (desc == last) {
184 desc = fisdir;
185 }
186
187 /* size fixup */
188 if (desc && (last->hdr.flash_base < desc->hdr.flash_base - last->hdr.size))
189 size += (desc->hdr.flash_base - last->hdr.flash_base) - last->hdr.size;
190
191 #ifdef notyet
192 desc = first - 1;
193 if (redboot && (desc >= redboot)) {
194 if (first->hdr.flash_base - desc->hdr.size > desc->hdr.flash_base) {
195 int delta = first->hdr.flash_base - desc->hdr.size - desc->hdr.flash_base;
196
197 offset -= delta;
198 size += delta;
199 }
200 }
201 #endif
202
203 last++;
204 desc = first + n_new;
205 offset = first->hdr.flash_base;
206
207 if (desc != last) {
208 if (desc > last)
209 tmp = (char *) desc;
210 else
211 tmp = (char *) last;
212
213 memmove(desc, last, end - tmp);
214 if (desc < last) {
215 tmp = end - (last - desc) * sizeof(struct fis_image_desc);
216 memset(tmp, 0xff, tmp - end);
217 }
218 }
219
220 for (part = new, desc = first; desc < first + n_new; desc++, part++) {
221 memset(desc, 0, sizeof(struct fis_image_desc));
222 memcpy(desc->hdr.name, part->name, sizeof(desc->hdr.name));
223 desc->crc.desc = 0;
224 desc->crc.file = 0;
225
226 desc->hdr.flash_base = offset;
227 desc->hdr.mem_base = part->loadaddr;
228 desc->hdr.entry_point = part->loadaddr;
229 desc->hdr.size = (part->size > 0) ? part->size : size;
230 desc->hdr.data_length = desc->hdr.size;
231
232 offset += desc->hdr.size;
233 size -= desc->hdr.size;
234 }
235
236 msync(fis_desc, fis_erasesize, MS_SYNC|MS_INVALIDATE);
237 fis_close();
238
239 return 0;
240 }