ar71xx: add support for Netgear WPN824N
[openwrt/svn-archive/archive.git] / target / linux / generic / files / drivers / mtd / mtdsplit / mtdsplit_uimage.c
1 /*
2 * Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published
6 * by the Free Software Foundation.
7 *
8 */
9
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/vmalloc.h>
17 #include <linux/mtd/mtd.h>
18 #include <linux/mtd/partitions.h>
19 #include <linux/byteorder/generic.h>
20
21 #include "mtdsplit.h"
22
23 /*
24 * uimage_header itself is only 64B, but it may be prepended with another data.
25 * Currently the biggest size is for Edimax devices: 20B + 64B
26 */
27 #define MAX_HEADER_LEN 84
28
29 #define IH_MAGIC 0x27051956 /* Image Magic Number */
30 #define IH_NMLEN 32 /* Image Name Length */
31
32 #define IH_OS_LINUX 5 /* Linux */
33
34 #define IH_TYPE_KERNEL 2 /* OS Kernel Image */
35 #define IH_TYPE_FILESYSTEM 7 /* Filesystem Image */
36
37 /*
38 * Legacy format image header,
39 * all data in network byte order (aka natural aka bigendian).
40 */
41 struct uimage_header {
42 uint32_t ih_magic; /* Image Header Magic Number */
43 uint32_t ih_hcrc; /* Image Header CRC Checksum */
44 uint32_t ih_time; /* Image Creation Timestamp */
45 uint32_t ih_size; /* Image Data Size */
46 uint32_t ih_load; /* Data Load Address */
47 uint32_t ih_ep; /* Entry Point Address */
48 uint32_t ih_dcrc; /* Image Data CRC Checksum */
49 uint8_t ih_os; /* Operating System */
50 uint8_t ih_arch; /* CPU architecture */
51 uint8_t ih_type; /* Image Type */
52 uint8_t ih_comp; /* Compression Type */
53 uint8_t ih_name[IH_NMLEN]; /* Image Name */
54 };
55
56 static int
57 read_uimage_header(struct mtd_info *mtd, size_t offset, u_char *buf,
58 size_t header_len)
59 {
60 size_t retlen;
61 int ret;
62
63 ret = mtd_read(mtd, offset, header_len, &retlen, buf);
64 if (ret) {
65 pr_debug("read error in \"%s\"\n", mtd->name);
66 return ret;
67 }
68
69 if (retlen != header_len) {
70 pr_debug("short read in \"%s\"\n", mtd->name);
71 return -EIO;
72 }
73
74 return 0;
75 }
76
77 /**
78 * __mtdsplit_parse_uimage - scan partition and create kernel + rootfs parts
79 *
80 * @find_header: function to call for a block of data that will return offset
81 * of a valid uImage header if found
82 */
83 static int __mtdsplit_parse_uimage(struct mtd_info *master,
84 struct mtd_partition **pparts,
85 struct mtd_part_parser_data *data,
86 ssize_t (*find_header)(u_char *buf, size_t len))
87 {
88 struct mtd_partition *parts;
89 u_char *buf;
90 int nr_parts;
91 size_t offset;
92 size_t uimage_offset;
93 size_t uimage_size = 0;
94 size_t rootfs_offset;
95 size_t rootfs_size = 0;
96 int uimage_part, rf_part;
97 int ret;
98
99 nr_parts = 2;
100 parts = kzalloc(nr_parts * sizeof(*parts), GFP_KERNEL);
101 if (!parts)
102 return -ENOMEM;
103
104 buf = vmalloc(MAX_HEADER_LEN);
105 if (!buf) {
106 ret = -ENOMEM;
107 goto err_free_parts;
108 }
109
110 /* find uImage on erase block boundaries */
111 for (offset = 0; offset < master->size; offset += master->erasesize) {
112 struct uimage_header *header;
113
114 uimage_size = 0;
115
116 ret = read_uimage_header(master, offset, buf, MAX_HEADER_LEN);
117 if (ret)
118 continue;
119
120 ret = find_header(buf, MAX_HEADER_LEN);
121 if (ret < 0) {
122 pr_debug("no valid uImage found in \"%s\" at offset %llx\n",
123 master->name, (unsigned long long) offset);
124 continue;
125 }
126 header = (struct uimage_header *)(buf + ret);
127
128 uimage_size = sizeof(*header) + be32_to_cpu(header->ih_size);
129 if ((offset + uimage_size) > master->size) {
130 pr_debug("uImage exceeds MTD device \"%s\"\n",
131 master->name);
132 continue;
133 }
134 break;
135 }
136
137 if (uimage_size == 0) {
138 pr_debug("no uImage found in \"%s\"\n", master->name);
139 ret = -ENODEV;
140 goto err_free_buf;
141 }
142
143 uimage_offset = offset;
144
145 if (uimage_offset == 0) {
146 uimage_part = 0;
147 rf_part = 1;
148
149 /* find the roots after the uImage */
150 ret = mtd_find_rootfs_from(master,
151 uimage_offset + uimage_size,
152 master->size,
153 &rootfs_offset);
154 if (ret) {
155 pr_debug("no rootfs after uImage in \"%s\"\n",
156 master->name);
157 goto err_free_buf;
158 }
159
160 rootfs_size = master->size - rootfs_offset;
161 uimage_size = rootfs_offset - uimage_offset;
162 } else {
163 rf_part = 0;
164 uimage_part = 1;
165
166 /* check rootfs presence at offset 0 */
167 ret = mtd_check_rootfs_magic(master, 0);
168 if (ret) {
169 pr_debug("no rootfs before uImage in \"%s\"\n",
170 master->name);
171 goto err_free_buf;
172 }
173
174 rootfs_offset = 0;
175 rootfs_size = uimage_offset;
176 }
177
178 if (rootfs_size == 0) {
179 pr_debug("no rootfs found in \"%s\"\n", master->name);
180 ret = -ENODEV;
181 goto err_free_buf;
182 }
183
184 parts[uimage_part].name = KERNEL_PART_NAME;
185 parts[uimage_part].offset = uimage_offset;
186 parts[uimage_part].size = uimage_size;
187
188 parts[rf_part].name = ROOTFS_PART_NAME;
189 parts[rf_part].offset = rootfs_offset;
190 parts[rf_part].size = rootfs_size;
191
192 vfree(buf);
193
194 *pparts = parts;
195 return nr_parts;
196
197 err_free_buf:
198 vfree(buf);
199
200 err_free_parts:
201 kfree(parts);
202 return ret;
203 }
204
205 static ssize_t uimage_verify_default(u_char *buf, size_t len)
206 {
207 struct uimage_header *header = (struct uimage_header *)buf;
208
209 /* default sanity checks */
210 if (be32_to_cpu(header->ih_magic) != IH_MAGIC) {
211 pr_debug("invalid uImage magic: %08x\n",
212 be32_to_cpu(header->ih_magic));
213 return -EINVAL;
214 }
215
216 if (header->ih_os != IH_OS_LINUX) {
217 pr_debug("invalid uImage OS: %08x\n",
218 be32_to_cpu(header->ih_os));
219 return -EINVAL;
220 }
221
222 if (header->ih_type != IH_TYPE_KERNEL) {
223 pr_debug("invalid uImage type: %08x\n",
224 be32_to_cpu(header->ih_type));
225 return -EINVAL;
226 }
227
228 return 0;
229 }
230
231 static int
232 mtdsplit_uimage_parse_generic(struct mtd_info *master,
233 struct mtd_partition **pparts,
234 struct mtd_part_parser_data *data)
235 {
236 return __mtdsplit_parse_uimage(master, pparts, data,
237 uimage_verify_default);
238 }
239
240 static struct mtd_part_parser uimage_generic_parser = {
241 .owner = THIS_MODULE,
242 .name = "uimage-fw",
243 .parse_fn = mtdsplit_uimage_parse_generic,
244 .type = MTD_PARSER_TYPE_FIRMWARE,
245 };
246
247 #define FW_MAGIC_WNR2000V3 0x32303033
248 #define FW_MAGIC_WNR2000V4 0x32303034
249 #define FW_MAGIC_WNR2200 0x32323030
250 #define FW_MAGIC_WNR612V2 0x32303631
251 #define FW_MAGIC_WNR1000V2 0x31303031
252 #define FW_MAGIC_WNR1000V2_VC 0x31303030
253 #define FW_MAGIC_WNDR3700 0x33373030
254 #define FW_MAGIC_WNDR3700V2 0x33373031
255 #define FW_MAGIC_WPN824N 0x31313030
256
257 static ssize_t uimage_verify_wndr3700(u_char *buf, size_t len)
258 {
259 struct uimage_header *header = (struct uimage_header *)buf;
260 uint8_t expected_type = IH_TYPE_FILESYSTEM;
261
262 switch be32_to_cpu(header->ih_magic) {
263 case FW_MAGIC_WNR612V2:
264 case FW_MAGIC_WNR1000V2:
265 case FW_MAGIC_WNR1000V2_VC:
266 case FW_MAGIC_WNR2000V3:
267 case FW_MAGIC_WNR2200:
268 case FW_MAGIC_WNDR3700:
269 case FW_MAGIC_WNDR3700V2:
270 case FW_MAGIC_WPN824N:
271 break;
272 case FW_MAGIC_WNR2000V4:
273 expected_type = IH_TYPE_KERNEL;
274 break;
275 default:
276 return -EINVAL;
277 }
278
279 if (header->ih_os != IH_OS_LINUX ||
280 header->ih_type != expected_type)
281 return -EINVAL;
282
283 return 0;
284 }
285
286 static int
287 mtdsplit_uimage_parse_netgear(struct mtd_info *master,
288 struct mtd_partition **pparts,
289 struct mtd_part_parser_data *data)
290 {
291 return __mtdsplit_parse_uimage(master, pparts, data,
292 uimage_verify_wndr3700);
293 }
294
295 static struct mtd_part_parser uimage_netgear_parser = {
296 .owner = THIS_MODULE,
297 .name = "netgear-fw",
298 .parse_fn = mtdsplit_uimage_parse_netgear,
299 .type = MTD_PARSER_TYPE_FIRMWARE,
300 };
301
302 /**************************************************
303 * Edimax
304 **************************************************/
305
306 #define FW_EDIMAX_OFFSET 20
307 #define FW_MAGIC_EDIMAX 0x43535953
308
309 static ssize_t uimage_find_edimax(u_char *buf, size_t len)
310 {
311 struct uimage_header *header;
312
313 if (len < FW_EDIMAX_OFFSET + sizeof(*header)) {
314 pr_err("Buffer too small for checking Edimax header\n");
315 return -ENOSPC;
316 }
317
318 header = (struct uimage_header *)(buf + FW_EDIMAX_OFFSET);
319
320 switch be32_to_cpu(header->ih_magic) {
321 case FW_MAGIC_EDIMAX:
322 break;
323 default:
324 return -EINVAL;
325 }
326
327 if (header->ih_os != IH_OS_LINUX ||
328 header->ih_type != IH_TYPE_FILESYSTEM)
329 return -EINVAL;
330
331 return FW_EDIMAX_OFFSET;
332 }
333
334 static int
335 mtdsplit_uimage_parse_edimax(struct mtd_info *master,
336 struct mtd_partition **pparts,
337 struct mtd_part_parser_data *data)
338 {
339 return __mtdsplit_parse_uimage(master, pparts, data,
340 uimage_find_edimax);
341 }
342
343 static struct mtd_part_parser uimage_edimax_parser = {
344 .owner = THIS_MODULE,
345 .name = "edimax-fw",
346 .parse_fn = mtdsplit_uimage_parse_edimax,
347 .type = MTD_PARSER_TYPE_FIRMWARE,
348 };
349
350 /**************************************************
351 * Init
352 **************************************************/
353
354 static int __init mtdsplit_uimage_init(void)
355 {
356 register_mtd_parser(&uimage_generic_parser);
357 register_mtd_parser(&uimage_netgear_parser);
358 register_mtd_parser(&uimage_edimax_parser);
359
360 return 0;
361 }
362
363 module_init(mtdsplit_uimage_init);