blob: b61a6f9626567a93dc9f986ce29486c3c72b5a06 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2-------------------------------------------------------------------------
3 * Filename: jffs2.c
4 * Version: $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
5 * Copyright: Copyright (C) 2001, Russ Dill
6 * Author: Russ Dill <Russ.Dill@asu.edu>
7 * Description: Module to load kernel from jffs2
8 *-----------------------------------------------------------------------*/
9/*
10 * some portions of this code are taken from jffs2, and as such, the
11 * following copyright notice is included.
12 *
13 * JFFS2 -- Journalling Flash File System, Version 2.
14 *
15 * Copyright (C) 2001 Red Hat, Inc.
16 *
17 * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
18 *
19 * The original JFFS, from which the design for JFFS2 was derived,
20 * was designed and implemented by Axis Communications AB.
21 *
22 * The contents of this file are subject to the Red Hat eCos Public
23 * License Version 1.1 (the "Licence"); you may not use this file
24 * except in compliance with the Licence. You may obtain a copy of
25 * the Licence at http://www.redhat.com/
26 *
27 * Software distributed under the Licence is distributed on an "AS IS"
28 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
29 * See the Licence for the specific language governing rights and
30 * limitations under the Licence.
31 *
32 * The Original Code is JFFS2 - Journalling Flash File System, version 2
33 *
34 * Alternatively, the contents of this file may be used under the
35 * terms of the GNU General Public License version 2 (the "GPL"), in
36 * which case the provisions of the GPL are applicable instead of the
37 * above. If you wish to allow the use of your version of this file
38 * only under the terms of the GPL and not to allow others to use your
39 * version of this file under the RHEPL, indicate your decision by
40 * deleting the provisions above and replace them with the notice and
41 * other provisions required by the GPL. If you do not delete the
42 * provisions above, a recipient may use your version of this file
43 * under either the RHEPL or the GPL.
44 *
45 * $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
46 *
47 */
48
49/* Ok, so anyone who knows the jffs2 code will probably want to get a papar
50 * bag to throw up into before reading this code. I looked through the jffs2
51 * code, the caching scheme is very elegant. I tried to keep the version
52 * for a bootloader as small and simple as possible. Instead of worring about
53 * unneccesary data copies, node scans, etc, I just optimized for the known
54 * common case, a kernel, which looks like:
Wolfgang Denk53677ef2008-05-20 16:00:29 +020055 * (1) most pages are 4096 bytes
wdenkfe8c2802002-11-03 00:38:21 +000056 * (2) version numbers are somewhat sorted in acsending order
57 * (3) multiple compressed blocks making up one page is uncommon
58 *
59 * So I create a linked list of decending version numbers (insertions at the
60 * head), and then for each page, walk down the list, until a matching page
61 * with 4096 bytes is found, and then decompress the watching pages in
62 * reverse order.
63 *
64 */
65
66/*
67 * Adapted by Nye Liu <nyet@zumanetworks.com> and
68 * Rex Feany <rfeany@zumanetworks.com>
69 * on Jan/2002 for U-Boot.
70 *
71 * Clipped out all the non-1pass functions, cleaned up warnings,
72 * wrappers, etc. No major changes to the code.
73 * Please, he really means it when he said have a paper bag
74 * handy. We needed it ;).
75 *
76 */
77
wdenk06d01db2003-03-14 20:47:52 +000078/*
79 * Bugfixing by Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>, (C) Mar/2003
80 *
81 * - overhaul of the memory management. Removed much of the "paper-bagging"
82 * in that part of the code, fixed several bugs, now frees memory when
83 * partition is changed.
84 * It's still ugly :-(
85 * - fixed a bug in jffs2_1pass_read_inode where the file length calculation
86 * was incorrect. Removed a bit of the paper-bagging as well.
87 * - removed double crc calculation for fragment headers in jffs2_private.h
88 * for speedup.
89 * - scan_empty rewritten in a more "standard" manner (non-paperbag, that is).
90 * - spinning wheel now spins depending on how much memory has been scanned
91 * - lots of small changes all over the place to "improve" readability.
92 * - implemented fragment sorting to ensure that the newest data is copied
93 * if there are multiple copies of fragments for a certain file offset.
94 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 * The fragment sorting feature must be enabled by CONFIG_SYS_JFFS2_SORT_FRAGMENTS.
wdenk06d01db2003-03-14 20:47:52 +000096 * Sorting is done while adding fragments to the lists, which is more or less a
97 * bubble sort. This takes a lot of time, and is most probably not an issue if
98 * the boot filesystem is always mounted readonly.
99 *
100 * You should define it if the boot filesystem is mounted writable, and updates
101 * to the boot files are done by copying files to that filesystem.
102 *
103 *
104 * There's a big issue left: endianess is completely ignored in this code. Duh!
105 *
106 *
107 * You still should have paper bags at hand :-(. The code lacks more or less
108 * any comment, and is still arcane and difficult to read in places. As this
wdenkdd875c72004-01-03 21:24:46 +0000109 * might be incompatible with any new code from the jffs2 maintainers anyway,
110 * it should probably be dumped and replaced by something like jffs2reader!
wdenk06d01db2003-03-14 20:47:52 +0000111 */
112
113
wdenkfe8c2802002-11-03 00:38:21 +0000114#include <common.h>
115#include <config.h>
116#include <malloc.h>
117#include <linux/stat.h>
118#include <linux/time.h>
Stuart Wood86d32732008-06-02 16:40:08 -0400119#include <watchdog.h>
wdenkfe8c2802002-11-03 00:38:21 +0000120#include <jffs2/jffs2.h>
121#include <jffs2/jffs2_1pass.h>
Ilya Yanok584eeda2008-12-11 05:51:57 +0300122#include <linux/mtd/compat.h>
wdenkfe8c2802002-11-03 00:38:21 +0000123
124#include "jffs2_private.h"
125
wdenkfe8c2802002-11-03 00:38:21 +0000126
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200127#define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */
128#define SPIN_BLKSIZE 18 /* spin after having scanned 1<<BLKSIZE bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000129
wdenk06d01db2003-03-14 20:47:52 +0000130/* Debugging switches */
131#undef DEBUG_DIRENTS /* print directory entry list after scan */
132#undef DEBUG_FRAGMENTS /* print fragment list after scan */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200133#undef DEBUG /* enable debugging messages */
wdenk06d01db2003-03-14 20:47:52 +0000134
135
wdenkfe8c2802002-11-03 00:38:21 +0000136#ifdef DEBUG
137# define DEBUGF(fmt,args...) printf(fmt ,##args)
138#else
139# define DEBUGF(fmt,args...)
140#endif
141
Ilya Yanok9b707622008-11-13 19:49:35 +0300142#include "summary.h"
143
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200144/* keeps pointer to currentlu processed partition */
145static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000146
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200147#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500148 defined(CONFIG_CMD_NAND) )
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100149#include <nand.h>
wdenk998eaae2004-04-18 19:43:36 +0000150/*
151 * Support for jffs2 on top of NAND-flash
152 *
153 * NAND memory isn't mapped in processor's address space,
154 * so data should be fetched from flash before
155 * being processed. This is exactly what functions declared
156 * here do.
157 *
158 */
159
wdenk998eaae2004-04-18 19:43:36 +0000160#define NAND_PAGE_SIZE 512
161#define NAND_PAGE_SHIFT 9
162#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
163
164#ifndef NAND_CACHE_PAGES
165#define NAND_CACHE_PAGES 16
166#endif
167#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
168
169static u8* nand_cache = NULL;
170static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000171
172static int read_nand_cached(u32 off, u32 size, u_char *buf)
173{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200174 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000175 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200176 size_t retlen;
wdenk998eaae2004-04-18 19:43:36 +0000177 int cpy_bytes;
178
179 while (bytes_read < size) {
180 if ((off + bytes_read < nand_cache_off) ||
181 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
182 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
183 if (!nand_cache) {
184 /* This memory never gets freed but 'cause
185 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000186 nand_cache = malloc(NAND_CACHE_SIZE);
187 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000188 printf("read_nand_cached: can't alloc cache size %d bytes\n",
189 NAND_CACHE_SIZE);
190 return -1;
191 }
192 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100193
Marian Balakowicz6db39702006-04-08 19:08:06 +0200194 retlen = NAND_CACHE_SIZE;
195 if (nand_read(&nand_info[id->num], nand_cache_off,
196 &retlen, nand_cache) != 0 ||
197 retlen != NAND_CACHE_SIZE) {
198 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
199 nand_cache_off, NAND_CACHE_SIZE);
200 return -1;
201 }
wdenk998eaae2004-04-18 19:43:36 +0000202 }
203 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
204 if (cpy_bytes > size - bytes_read)
205 cpy_bytes = size - bytes_read;
206 memcpy(buf + bytes_read,
207 nand_cache + off + bytes_read - nand_cache_off,
208 cpy_bytes);
209 bytes_read += cpy_bytes;
210 }
211 return bytes_read;
212}
213
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200214static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000215{
216 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
217
218 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200219 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000220 return NULL;
221 }
222 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000223 if (!ext_buf)
224 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000225 return NULL;
226 }
227
228 return buf;
229}
230
Ilya Yanok70741002008-11-13 19:49:34 +0300231static void *get_node_mem_nand(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000232{
233 struct jffs2_unknown_node node;
234 void *ret = NULL;
235
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200236 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000237 return NULL;
238
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200239 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000240 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300241 ext_buf))) {
wdenk998eaae2004-04-18 19:43:36 +0000242 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
243 off, node.magic, node.nodetype, node.totlen);
244 }
245 return ret;
246}
247
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200248static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000249{
250 free(buf);
251}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500252#endif
wdenk998eaae2004-04-18 19:43:36 +0000253
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900254#if defined(CONFIG_CMD_ONENAND)
255
256#include <linux/mtd/mtd.h>
257#include <linux/mtd/onenand.h>
258#include <onenand_uboot.h>
259
260#define ONENAND_PAGE_SIZE 2048
261#define ONENAND_PAGE_SHIFT 11
262#define ONENAND_PAGE_MASK (~(ONENAND_PAGE_SIZE-1))
263
264#ifndef ONENAND_CACHE_PAGES
265#define ONENAND_CACHE_PAGES 4
266#endif
267#define ONENAND_CACHE_SIZE (ONENAND_CACHE_PAGES*ONENAND_PAGE_SIZE)
268
269static u8* onenand_cache;
270static u32 onenand_cache_off = (u32)-1;
271
272static int read_onenand_cached(u32 off, u32 size, u_char *buf)
273{
274 u32 bytes_read = 0;
275 size_t retlen;
276 int cpy_bytes;
277
278 while (bytes_read < size) {
279 if ((off + bytes_read < onenand_cache_off) ||
280 (off + bytes_read >= onenand_cache_off + ONENAND_CACHE_SIZE)) {
281 onenand_cache_off = (off + bytes_read) & ONENAND_PAGE_MASK;
282 if (!onenand_cache) {
283 /* This memory never gets freed but 'cause
284 it's a bootloader, nobody cares */
285 onenand_cache = malloc(ONENAND_CACHE_SIZE);
286 if (!onenand_cache) {
287 printf("read_onenand_cached: can't alloc cache size %d bytes\n",
288 ONENAND_CACHE_SIZE);
289 return -1;
290 }
291 }
292
293 retlen = ONENAND_CACHE_SIZE;
294 if (onenand_read(&onenand_mtd, onenand_cache_off, retlen,
295 &retlen, onenand_cache) != 0 ||
296 retlen != ONENAND_CACHE_SIZE) {
297 printf("read_onenand_cached: error reading nand off %#x size %d bytes\n",
298 onenand_cache_off, ONENAND_CACHE_SIZE);
299 return -1;
300 }
301 }
302 cpy_bytes = onenand_cache_off + ONENAND_CACHE_SIZE - (off + bytes_read);
303 if (cpy_bytes > size - bytes_read)
304 cpy_bytes = size - bytes_read;
305 memcpy(buf + bytes_read,
306 onenand_cache + off + bytes_read - onenand_cache_off,
307 cpy_bytes);
308 bytes_read += cpy_bytes;
309 }
310 return bytes_read;
311}
312
313static void *get_fl_mem_onenand(u32 off, u32 size, void *ext_buf)
314{
315 u_char *buf = ext_buf ? (u_char *)ext_buf : (u_char *)malloc(size);
316
317 if (NULL == buf) {
318 printf("get_fl_mem_onenand: can't alloc %d bytes\n", size);
319 return NULL;
320 }
321 if (read_onenand_cached(off, size, buf) < 0) {
322 if (!ext_buf)
323 free(buf);
324 return NULL;
325 }
326
327 return buf;
328}
329
Ilya Yanok70741002008-11-13 19:49:34 +0300330static void *get_node_mem_onenand(u32 off, void *ext_buf)
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900331{
332 struct jffs2_unknown_node node;
333 void *ret = NULL;
334
335 if (NULL == get_fl_mem_onenand(off, sizeof(node), &node))
336 return NULL;
337
338 ret = get_fl_mem_onenand(off, node.magic ==
339 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300340 ext_buf);
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900341 if (!ret) {
342 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
343 off, node.magic, node.nodetype, node.totlen);
344 }
345 return ret;
346}
347
348
349static void put_fl_mem_onenand(void *buf)
350{
351 free(buf);
352}
353#endif
354
wdenk998eaae2004-04-18 19:43:36 +0000355
Jon Loeligerdd60d122007-07-09 17:56:50 -0500356#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200357/*
358 * Support for jffs2 on top of NOR-flash
359 *
360 * NOR flash memory is mapped in processor's address space,
361 * just return address.
362 */
Ilya Yanok70741002008-11-13 19:49:34 +0300363static inline void *get_fl_mem_nor(u32 off, u32 size, void *ext_buf)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200364{
365 u32 addr = off;
366 struct mtdids *id = current_part->dev->id;
367
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200368 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200369 flash_info_t *flash = &flash_info[id->num];
370
371 addr += flash->start[0];
Ilya Yanok70741002008-11-13 19:49:34 +0300372 if (ext_buf) {
373 memcpy(ext_buf, (void *)addr, size);
374 return ext_buf;
375 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200376 return (void*)addr;
377}
378
Ilya Yanok70741002008-11-13 19:49:34 +0300379static inline void *get_node_mem_nor(u32 off, void *ext_buf)
Ilya Yanok8a36d312008-11-13 19:49:33 +0300380{
Ilya Yanok70741002008-11-13 19:49:34 +0300381 struct jffs2_unknown_node *pNode;
Ilya Yanok8a36d312008-11-13 19:49:33 +0300382
Ilya Yanok70741002008-11-13 19:49:34 +0300383 /* pNode will point directly to flash - don't provide external buffer
384 and don't care about size */
385 pNode = get_fl_mem_nor(off, 0, NULL);
386 return (void *)get_fl_mem_nor(off, pNode->magic == JFFS2_MAGIC_BITMASK ?
387 pNode->totlen : sizeof(*pNode), ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200388}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500389#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200390
391
392/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200393 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200394 *
395 */
wdenk998eaae2004-04-18 19:43:36 +0000396static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
397{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200398 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200399
Jon Loeligerdd60d122007-07-09 17:56:50 -0500400#if defined(CONFIG_CMD_FLASH)
Ilya Yanok8a36d312008-11-13 19:49:33 +0300401 if (id->type == MTD_DEV_TYPE_NOR) {
Ilya Yanok70741002008-11-13 19:49:34 +0300402 return get_fl_mem_nor(off, size, ext_buf);
Ilya Yanok8a36d312008-11-13 19:49:33 +0300403 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200404#endif
405
Jon Loeligerdd60d122007-07-09 17:56:50 -0500406#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200407 if (id->type == MTD_DEV_TYPE_NAND)
408 return get_fl_mem_nand(off, size, ext_buf);
409#endif
410
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900411#if defined(CONFIG_CMD_ONENAND)
412 if (id->type == MTD_DEV_TYPE_ONENAND)
413 return get_fl_mem_onenand(off, size, ext_buf);
414#endif
415
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200416 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000417 return (void*)off;
418}
419
Ilya Yanok70741002008-11-13 19:49:34 +0300420static inline void *get_node_mem(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000421{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200422 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200423
Jon Loeligerdd60d122007-07-09 17:56:50 -0500424#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200425 if (id->type == MTD_DEV_TYPE_NOR)
Ilya Yanok70741002008-11-13 19:49:34 +0300426 return get_node_mem_nor(off, ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200427#endif
428
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200429#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500430 defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200431 if (id->type == MTD_DEV_TYPE_NAND)
Ilya Yanok70741002008-11-13 19:49:34 +0300432 return get_node_mem_nand(off, ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200433#endif
434
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900435#if defined(CONFIG_CMD_ONENAND)
436 if (id->type == MTD_DEV_TYPE_ONENAND)
Ilya Yanok70741002008-11-13 19:49:34 +0300437 return get_node_mem_onenand(off, ext_buf);
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900438#endif
439
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200440 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000441 return (void*)off;
442}
443
Ilya Yanok70741002008-11-13 19:49:34 +0300444static inline void put_fl_mem(void *buf, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000445{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200446 struct mtdids *id = current_part->dev->id;
447
Ilya Yanok70741002008-11-13 19:49:34 +0300448 /* If buf is the same as ext_buf, it was provided by the caller -
449 we shouldn't free it then. */
450 if (buf == ext_buf)
451 return;
Scott Wood2f77c7f2008-10-31 13:51:12 -0500452 switch (id->type) {
453#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
454 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200455 return put_fl_mem_nand(buf);
456#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900457#if defined(CONFIG_CMD_ONENAND)
Scott Wood2f77c7f2008-10-31 13:51:12 -0500458 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900459 return put_fl_mem_onenand(buf);
460#endif
Scott Wood2f77c7f2008-10-31 13:51:12 -0500461 }
wdenk998eaae2004-04-18 19:43:36 +0000462}
463
wdenk06d01db2003-03-14 20:47:52 +0000464/* Compression names */
465static char *compr_names[] = {
466 "NONE",
467 "ZERO",
468 "RTIME",
469 "RUBINMIPS",
470 "COPY",
471 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000472 "ZLIB",
wdenk412babe2005-05-05 09:51:44 +0000473#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000474 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000475 "LZARI",
476#endif
wdenk06d01db2003-03-14 20:47:52 +0000477};
478
wdenk06d01db2003-03-14 20:47:52 +0000479/* Memory management */
480struct mem_block {
481 u32 index;
482 struct mem_block *next;
483 struct b_node nodes[NODE_CHUNK];
484};
485
486
487static void
488free_nodes(struct b_list *list)
489{
490 while (list->listMemBase != NULL) {
491 struct mem_block *next = list->listMemBase->next;
492 free( list->listMemBase );
493 list->listMemBase = next;
494 }
495}
wdenkfe8c2802002-11-03 00:38:21 +0000496
497static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000498add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000499{
wdenk06d01db2003-03-14 20:47:52 +0000500 u32 index = 0;
501 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000502 struct b_node *b;
503
wdenk06d01db2003-03-14 20:47:52 +0000504 memBase = list->listMemBase;
505 if (memBase != NULL)
506 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000507#if 0
508 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000509 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000510#endif
511
wdenk06d01db2003-03-14 20:47:52 +0000512 if (memBase == NULL || index >= NODE_CHUNK) {
513 /* we need more space before we continue */
514 memBase = mmalloc(sizeof(struct mem_block));
515 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000516 putstr("add_node: malloc failed\n");
517 return NULL;
518 }
wdenk06d01db2003-03-14 20:47:52 +0000519 memBase->next = list->listMemBase;
520 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000521#if 0
522 putLabeledWord("add_node: alloced a new membase at ", *memBase);
523#endif
524
525 }
526 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000527 b = &memBase->nodes[index];
528 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000529
wdenk06d01db2003-03-14 20:47:52 +0000530 memBase->index = index;
531 list->listMemBase = memBase;
532 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000533 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000534}
535
wdenk06d01db2003-03-14 20:47:52 +0000536static struct b_node *
537insert_node(struct b_list *list, u32 offset)
538{
539 struct b_node *new;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200540#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000541 struct b_node *b, *prev;
542#endif
543
544 if (!(new = add_node(list))) {
545 putstr("add_node failed!\r\n");
546 return NULL;
547 }
548 new->offset = offset;
549
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200550#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000551 if (list->listTail != NULL && list->listCompare(new, list->listTail))
552 prev = list->listTail;
553 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
554 prev = list->listLast;
555 else
556 prev = NULL;
557
558 for (b = (prev ? prev->next : list->listHead);
559 b != NULL && list->listCompare(new, b);
560 prev = b, b = b->next) {
561 list->listLoops++;
562 }
563 if (b != NULL)
564 list->listLast = prev;
565
566 if (b != NULL) {
567 new->next = b;
568 if (prev != NULL)
569 prev->next = new;
570 else
571 list->listHead = new;
572 } else
573#endif
574 {
575 new->next = (struct b_node *) NULL;
576 if (list->listTail != NULL) {
577 list->listTail->next = new;
578 list->listTail = new;
579 } else {
580 list->listTail = list->listHead = new;
581 }
582 }
583
584 return new;
585}
586
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200587#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000588/* Sort data entries with the latest version last, so that if there
589 * is overlapping data the latest version will be used.
590 */
wdenk06d01db2003-03-14 20:47:52 +0000591static int compare_inodes(struct b_node *new, struct b_node *old)
592{
wdenk998eaae2004-04-18 19:43:36 +0000593 struct jffs2_raw_inode ojNew;
594 struct jffs2_raw_inode ojOld;
595 struct jffs2_raw_inode *jNew =
596 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
597 struct jffs2_raw_inode *jOld =
598 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000599
wdenk7205e402003-09-10 22:30:53 +0000600 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000601}
602
wdenk7205e402003-09-10 22:30:53 +0000603/* Sort directory entries so all entries in the same directory
604 * with the same name are grouped together, with the latest version
605 * last. This makes it easy to eliminate all but the latest version
606 * by marking the previous version dead by setting the inode to 0.
607 */
wdenk06d01db2003-03-14 20:47:52 +0000608static int compare_dirents(struct b_node *new, struct b_node *old)
609{
wdenk998eaae2004-04-18 19:43:36 +0000610 struct jffs2_raw_dirent ojNew;
611 struct jffs2_raw_dirent ojOld;
612 struct jffs2_raw_dirent *jNew =
613 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000614 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000615 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000616 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000617
wdenk7205e402003-09-10 22:30:53 +0000618 /* ascending sort by pino */
619 if (jNew->pino != jOld->pino)
620 return jNew->pino > jOld->pino;
621
622 /* pino is the same, so use ascending sort by nsize, so
623 * we don't do strncmp unless we really must.
624 */
625 if (jNew->nsize != jOld->nsize)
626 return jNew->nsize > jOld->nsize;
627
628 /* length is also the same, so use ascending sort by name
629 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200630 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk7205e402003-09-10 22:30:53 +0000631 if (cmp != 0)
632 return cmp > 0;
633
634 /* we have duplicate names in this directory, so use ascending
635 * sort by version
636 */
637 if (jNew->version > jOld->version) {
638 /* since jNew is newer, we know jOld is not valid, so
639 * mark it with inode 0 and it will not be used
640 */
641 jOld->ino = 0;
642 return 1;
643 }
wdenk42d1f032003-10-15 23:53:47 +0000644
wdenk7205e402003-09-10 22:30:53 +0000645 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000646}
647#endif
wdenkfe8c2802002-11-03 00:38:21 +0000648
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200649void
650jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000651{
wdenk06d01db2003-03-14 20:47:52 +0000652 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000653
wdenk06d01db2003-03-14 20:47:52 +0000654 if (part->jffs2_priv != NULL) {
655 pL = (struct b_lists *)part->jffs2_priv;
656 free_nodes(&pL->frag);
657 free_nodes(&pL->dir);
Ilya Yanok70741002008-11-13 19:49:34 +0300658 free(pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000659 free(pL);
660 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200661}
662
663static u32
664jffs_init_1pass_list(struct part_info *part)
665{
666 struct b_lists *pL;
667
668 jffs2_free_cache(part);
669
wdenk06d01db2003-03-14 20:47:52 +0000670 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
671 pL = (struct b_lists *)part->jffs2_priv;
672
673 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200674#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000675 pL->dir.listCompare = compare_dirents;
676 pL->frag.listCompare = compare_inodes;
677#endif
wdenkfe8c2802002-11-03 00:38:21 +0000678 }
679 return 0;
680}
681
682/* find the inode from the slashless name given a parent */
683static long
684jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
685{
686 struct b_node *b;
687 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000688 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000689 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200690 uchar *lDest;
691 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000692 long ret;
693 int i;
694 u32 counter = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200695#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000696 /* Find file size before loading any data, so fragments that
697 * start past the end of file can be ignored. A fragment
698 * that is partially in the file is loaded, so extra data may
699 * be loaded up to the next 4K boundary above the file size.
700 * This shouldn't cause trouble when loading kernel images, so
701 * we will live with it.
702 */
703 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000704 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
Ilya Yanok70741002008-11-13 19:49:34 +0300705 sizeof(struct jffs2_raw_inode), pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000706 if ((inode == jNode->ino)) {
707 /* get actual file length from the newest node */
708 if (jNode->version >= latestVersion) {
709 totalSize = jNode->isize;
710 latestVersion = jNode->version;
711 }
712 }
Ilya Yanok70741002008-11-13 19:49:34 +0300713 put_fl_mem(jNode, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000714 }
715#endif
wdenkfe8c2802002-11-03 00:38:21 +0000716
wdenk06d01db2003-03-14 20:47:52 +0000717 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300718 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset,
719 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000720 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000721#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000722 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
723 putLabeledWord("read_inode: inode = ", jNode->ino);
724 putLabeledWord("read_inode: version = ", jNode->version);
725 putLabeledWord("read_inode: isize = ", jNode->isize);
726 putLabeledWord("read_inode: offset = ", jNode->offset);
727 putLabeledWord("read_inode: csize = ", jNode->csize);
728 putLabeledWord("read_inode: dsize = ", jNode->dsize);
729 putLabeledWord("read_inode: compr = ", jNode->compr);
730 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
731 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000732#endif
wdenk7205e402003-09-10 22:30:53 +0000733
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200734#ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000735 /* get actual file length from the newest node */
736 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000737 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000738 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000739 }
wdenk7205e402003-09-10 22:30:53 +0000740#endif
wdenkfe8c2802002-11-03 00:38:21 +0000741
742 if(dest) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200743 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000744 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000745 if (jNode->offset > totalSize) {
Ilya Yanok70741002008-11-13 19:49:34 +0300746 put_fl_mem(jNode, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000747 continue;
wdenk998eaae2004-04-18 19:43:36 +0000748 }
Ilya Yanok142a80f2008-11-13 19:49:36 +0300749 if (b->datacrc == CRC_UNKNOWN)
750 b->datacrc = data_crc(jNode) ?
751 CRC_OK : CRC_BAD;
752 if (b->datacrc == CRC_BAD) {
Ilya Yanok70741002008-11-13 19:49:34 +0300753 put_fl_mem(jNode, pL->readbuf);
Ilya Yanok8a36d312008-11-13 19:49:33 +0300754 continue;
755 }
wdenk06d01db2003-03-14 20:47:52 +0000756
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200757 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000758#if 0
wdenk06d01db2003-03-14 20:47:52 +0000759 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000760 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000761#endif
762 switch (jNode->compr) {
763 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000764 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
765 break;
766 case JFFS2_COMPR_ZERO:
767 ret = 0;
768 for (i = 0; i < jNode->dsize; i++)
769 *(lDest++) = 0;
770 break;
771 case JFFS2_COMPR_RTIME:
772 ret = 0;
773 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
774 break;
775 case JFFS2_COMPR_DYNRUBIN:
776 /* this is slow but it works */
777 ret = 0;
778 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
779 break;
780 case JFFS2_COMPR_ZLIB:
781 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
782 break;
wdenk412babe2005-05-05 09:51:44 +0000783#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000784 case JFFS2_COMPR_LZO:
785 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
786 break;
wdenk412babe2005-05-05 09:51:44 +0000787 case JFFS2_COMPR_LZARI:
788 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
789 break;
wdenk07cc0992005-05-05 00:04:14 +0000790#endif
wdenkfe8c2802002-11-03 00:38:21 +0000791 default:
792 /* unknown */
793 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
Ilya Yanok70741002008-11-13 19:49:34 +0300794 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000795 return -1;
796 break;
797 }
798 }
799
wdenkfe8c2802002-11-03 00:38:21 +0000800#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000801 putLabeledWord("read_inode: totalSize = ", totalSize);
802 putLabeledWord("read_inode: compr ret = ", ret);
803#endif
804 }
wdenkfe8c2802002-11-03 00:38:21 +0000805 counter++;
Ilya Yanok70741002008-11-13 19:49:34 +0300806 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000807 }
wdenkfe8c2802002-11-03 00:38:21 +0000808
809#if 0
wdenk06d01db2003-03-14 20:47:52 +0000810 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000811#endif
wdenk06d01db2003-03-14 20:47:52 +0000812 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000813}
814
815/* find the inode from the slashless name given a parent */
816static u32
817jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
818{
819 struct b_node *b;
820 struct jffs2_raw_dirent *jDir;
821 int len;
822 u32 counter;
823 u32 version = 0;
824 u32 inode = 0;
825
826 /* name is assumed slash free */
827 len = strlen(name);
828
829 counter = 0;
830 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000831 for(b = pL->dir.listHead; b; b = b->next, counter++) {
Ilya Yanok70741002008-11-13 19:49:34 +0300832 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
833 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000834 if ((pino == jDir->pino) && (len == jDir->nsize) &&
835 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200836 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000837 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +0300838 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000839 continue;
wdenk998eaae2004-04-18 19:43:36 +0000840 }
wdenkfe8c2802002-11-03 00:38:21 +0000841
wdenk7205e402003-09-10 22:30:53 +0000842 if (jDir->version == version && inode != 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200843 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000844 putstr(" ** ERROR ** ");
845 putnstr(jDir->name, jDir->nsize);
846 putLabeledWord(" has dup version =", version);
847 }
848 inode = jDir->ino;
849 version = jDir->version;
850 }
851#if 0
852 putstr("\r\nfind_inode:p&l ->");
853 putnstr(jDir->name, jDir->nsize);
854 putstr("\r\n");
855 putLabeledWord("pino = ", jDir->pino);
856 putLabeledWord("nsize = ", jDir->nsize);
857 putLabeledWord("b = ", (u32) b);
858 putLabeledWord("counter = ", counter);
859#endif
Ilya Yanok70741002008-11-13 19:49:34 +0300860 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000861 }
862 return inode;
863}
864
wdenk180d3f72004-01-04 16:28:35 +0000865char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000866{
wdenk06d01db2003-03-14 20:47:52 +0000867 static const char *l = "xwr";
868 int mask = 1, i;
869 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000870
wdenk06d01db2003-03-14 20:47:52 +0000871 switch (mode & S_IFMT) {
872 case S_IFDIR: str[0] = 'd'; break;
873 case S_IFBLK: str[0] = 'b'; break;
874 case S_IFCHR: str[0] = 'c'; break;
875 case S_IFIFO: str[0] = 'f'; break;
876 case S_IFLNK: str[0] = 'l'; break;
877 case S_IFSOCK: str[0] = 's'; break;
878 case S_IFREG: str[0] = '-'; break;
879 default: str[0] = '?';
880 }
wdenkfe8c2802002-11-03 00:38:21 +0000881
wdenk06d01db2003-03-14 20:47:52 +0000882 for(i = 0; i < 9; i++) {
883 c = l[i%3];
884 str[9-i] = (mode & mask)?c:'-';
885 mask = mask<<1;
886 }
wdenkfe8c2802002-11-03 00:38:21 +0000887
wdenk06d01db2003-03-14 20:47:52 +0000888 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
889 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
890 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
891 str[10] = '\0';
892 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000893}
894
895static inline void dump_stat(struct stat *st, const char *name)
896{
wdenk06d01db2003-03-14 20:47:52 +0000897 char str[20];
898 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000899
wdenk06d01db2003-03-14 20:47:52 +0000900 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
901 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000902
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200903 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000904
wdenk06d01db2003-03-14 20:47:52 +0000905 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
906 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000907
908/*
wdenk06d01db2003-03-14 20:47:52 +0000909 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
910 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000911*/
912
wdenk06d01db2003-03-14 20:47:52 +0000913 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000914}
915
916static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
917{
918 char fname[256];
919 struct stat st;
920
921 if(!d || !i) return -1;
922
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200923 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000924 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000925
926 memset(&st,0,sizeof(st));
927
wdenk06d01db2003-03-14 20:47:52 +0000928 st.st_mtime = i->mtime;
929 st.st_mode = i->mode;
930 st.st_ino = i->ino;
Ilya Yanokf7384692008-11-13 19:49:31 +0300931 st.st_size = i->isize;
wdenkfe8c2802002-11-03 00:38:21 +0000932
933 dump_stat(&st, fname);
934
935 if (d->type == DT_LNK) {
936 unsigned char *src = (unsigned char *) (&i[1]);
937 putstr(" -> ");
938 putnstr(src, (int)i->dsize);
939 }
940
941 putstr("\r\n");
942
943 return 0;
944}
945
946/* list inodes with the given pino */
947static u32
948jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
949{
950 struct b_node *b;
951 struct jffs2_raw_dirent *jDir;
952
wdenk06d01db2003-03-14 20:47:52 +0000953 for (b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300954 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
955 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000956 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
957 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000958 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000959 struct jffs2_raw_inode *jNode, *i = NULL;
960 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000961
962 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000963 jNode = (struct jffs2_raw_inode *)
964 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000965 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
Ilya Yanokf7384692008-11-13 19:49:31 +0300966 i_version = jNode->version;
wdenk32877d62004-05-05 19:44:41 +0000967 if (i)
Ilya Yanok70741002008-11-13 19:49:34 +0300968 put_fl_mem(i, NULL);
wdenkcf8bc572005-05-04 23:50:54 +0000969
970 if (jDir->type == DT_LNK)
Ilya Yanok70741002008-11-13 19:49:34 +0300971 i = get_node_mem(b2->offset,
972 NULL);
wdenkcf8bc572005-05-04 23:50:54 +0000973 else
Ilya Yanok70741002008-11-13 19:49:34 +0300974 i = get_fl_mem(b2->offset,
975 sizeof(*i),
976 NULL);
wdenk32877d62004-05-05 19:44:41 +0000977 }
wdenkfe8c2802002-11-03 00:38:21 +0000978 b2 = b2->next;
979 }
980
981 dump_inode(pL, jDir, i);
Ilya Yanok70741002008-11-13 19:49:34 +0300982 put_fl_mem(i, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000983 }
Ilya Yanok70741002008-11-13 19:49:34 +0300984 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000985 }
986 return pino;
987}
988
989static u32
990jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
991{
992 int i;
993 char tmp[256];
994 char working_tmp[256];
995 char *c;
996
997 /* discard any leading slash */
998 i = 0;
999 while (fname[i] == '/')
1000 i++;
1001 strcpy(tmp, &fname[i]);
1002
1003 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1004 {
1005 strncpy(working_tmp, tmp, c - tmp);
1006 working_tmp[c - tmp] = '\0';
1007#if 0
1008 putstr("search_inode: tmp = ");
1009 putstr(tmp);
1010 putstr("\r\n");
1011 putstr("search_inode: wtmp = ");
1012 putstr(working_tmp);
1013 putstr("\r\n");
1014 putstr("search_inode: c = ");
1015 putstr(c);
1016 putstr("\r\n");
1017#endif
1018 for (i = 0; i < strlen(c) - 1; i++)
1019 tmp[i] = c[i + 1];
1020 tmp[i] = '\0';
1021#if 0
1022 putstr("search_inode: post tmp = ");
1023 putstr(tmp);
1024 putstr("\r\n");
1025#endif
1026
1027 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1028 putstr("find_inode failed for name=");
1029 putstr(working_tmp);
1030 putstr("\r\n");
1031 return 0;
1032 }
1033 }
1034 /* this is for the bare filename, directories have already been mapped */
1035 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1036 putstr("find_inode failed for name=");
1037 putstr(tmp);
1038 putstr("\r\n");
1039 return 0;
1040 }
1041 return pino;
1042
1043}
1044
1045static u32
1046jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1047{
1048 struct b_node *b;
1049 struct b_node *b2;
1050 struct jffs2_raw_dirent *jDir;
1051 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +00001052 u8 jDirFoundType = 0;
1053 u32 jDirFoundIno = 0;
1054 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001055 char tmp[256];
1056 u32 version = 0;
1057 u32 pino;
1058 unsigned char *src;
1059
1060 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +00001061 for(b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +03001062 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1063 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001064 if (ino == jDir->ino) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001065 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +03001066 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +00001067 continue;
wdenk998eaae2004-04-18 19:43:36 +00001068 }
wdenkfe8c2802002-11-03 00:38:21 +00001069
wdenk998eaae2004-04-18 19:43:36 +00001070 if (jDir->version == version && jDirFoundType) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001071 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001072 putstr(" ** ERROR ** ");
1073 putnstr(jDir->name, jDir->nsize);
1074 putLabeledWord(" has dup version (resolve) = ",
1075 version);
1076 }
1077
wdenk998eaae2004-04-18 19:43:36 +00001078 jDirFoundType = jDir->type;
1079 jDirFoundIno = jDir->ino;
1080 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001081 version = jDir->version;
1082 }
Ilya Yanok70741002008-11-13 19:49:34 +03001083 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001084 }
1085 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +00001086 if (jDirFoundType != DT_LNK)
1087 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +00001088
1089 /* it's a soft link so we follow it again. */
1090 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001091 while (b2) {
Ilya Yanok70741002008-11-13 19:49:34 +03001092 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset,
1093 pL->readbuf);
wdenk998eaae2004-04-18 19:43:36 +00001094 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +00001095 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001096
1097#if 0
1098 putLabeledWord("\t\t dsize = ", jNode->dsize);
1099 putstr("\t\t target = ");
1100 putnstr(src, jNode->dsize);
1101 putstr("\r\n");
1102#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001103 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001104 tmp[jNode->dsize] = '\0';
Ilya Yanok70741002008-11-13 19:49:34 +03001105 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001106 break;
1107 }
1108 b2 = b2->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001109 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001110 }
1111 /* ok so the name of the new file to find is in tmp */
1112 /* if it starts with a slash it is root based else shared dirs */
1113 if (tmp[0] == '/')
1114 pino = 1;
1115 else
wdenk998eaae2004-04-18 19:43:36 +00001116 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001117
1118 return jffs2_1pass_search_inode(pL, tmp, pino);
1119}
1120
1121static u32
1122jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1123{
1124 int i;
1125 char tmp[256];
1126 char working_tmp[256];
1127 char *c;
1128
1129 /* discard any leading slash */
1130 i = 0;
1131 while (fname[i] == '/')
1132 i++;
1133 strcpy(tmp, &fname[i]);
1134 working_tmp[0] = '\0';
1135 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1136 {
1137 strncpy(working_tmp, tmp, c - tmp);
1138 working_tmp[c - tmp] = '\0';
1139 for (i = 0; i < strlen(c) - 1; i++)
1140 tmp[i] = c[i + 1];
1141 tmp[i] = '\0';
1142 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001143 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1144 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001145 putstr("find_inode failed for name=");
1146 putstr(working_tmp);
1147 putstr("\r\n");
1148 return 0;
1149 }
1150 }
1151
1152 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1153 putstr("find_inode failed for name=");
1154 putstr(tmp);
1155 putstr("\r\n");
1156 return 0;
1157 }
1158 /* this is for the bare filename, directories have already been mapped */
1159 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1160 putstr("find_inode failed for name=");
1161 putstr(tmp);
1162 putstr("\r\n");
1163 return 0;
1164 }
1165 return pino;
1166
1167}
1168
1169unsigned char
1170jffs2_1pass_rescan_needed(struct part_info *part)
1171{
1172 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001173 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001174 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001175 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001176
1177 if (part->jffs2_priv == 0){
1178 DEBUGF ("rescan: First time in use\n");
1179 return 1;
1180 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001181
wdenkfe8c2802002-11-03 00:38:21 +00001182 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001183 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001184 DEBUGF ("rescan: fraglist zero\n");
1185 return 1;
1186 }
1187
wdenk06d01db2003-03-14 20:47:52 +00001188 /* but suppose someone reflashed a partition at the same offset... */
1189 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001190 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001191 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1192 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001193 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001194 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1195 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001196 return 1;
1197 }
1198 b = b->next;
1199 }
1200 return 0;
1201}
1202
Ilya Yanok9b707622008-11-13 19:49:35 +03001203#define dbg_summary(...) do {} while (0);
1204/* Process the stored summary information - helper function for
1205 * jffs2_sum_scan_sumnode()
1206 */
1207
1208static int jffs2_sum_process_sum_data(struct part_info *part, uint32_t offset,
1209 struct jffs2_raw_summary *summary,
1210 struct b_lists *pL)
1211{
1212 void *sp;
1213 int i;
1214
1215 sp = summary->sum;
1216
1217 for (i = 0; i < summary->sum_num; i++) {
1218 dbg_summary("processing summary index %d\n", i);
1219
1220 switch (((struct jffs2_sum_unknown_flash *)sp)->nodetype) {
1221 case JFFS2_NODETYPE_INODE: {
1222 struct jffs2_sum_inode_flash *spi;
1223 spi = sp;
1224
1225 dbg_summary("Inode at 0x%08x-0x%08x\n",
1226 offset + spi->offset,
1227 offset + spi->offset + spi->totlen);
1228
1229 if (insert_node(&pL->frag, (u32) part->offset +
1230 offset + spi->offset) == NULL)
1231 return -1;
1232
1233 sp += JFFS2_SUMMARY_INODE_SIZE;
1234
1235 break;
1236 }
1237
1238 case JFFS2_NODETYPE_DIRENT: {
1239 struct jffs2_sum_dirent_flash *spd;
1240 spd = sp;
1241
1242 dbg_summary("Dirent at 0x%08x-0x%08x\n",
1243 offset + spd->offset,
1244 offset + spd->offset + spd->totlen);
1245
1246 if (insert_node(&pL->dir, (u32) part->offset +
1247 offset + spd->offset) == NULL)
1248 return -1;
1249
1250 sp += JFFS2_SUMMARY_DIRENT_SIZE(spd->nsize);
1251
1252 break;
1253 }
1254 default : {
1255 uint16_t nodetype =
1256 ((struct jffs2_sum_unknown_flash *)
1257 sp)->nodetype;
1258 printf("Unsupported node type %x found in "
1259 "summary!\n", nodetype);
1260 break;
1261 }
1262 }
1263 }
1264 return 0;
1265}
1266
1267/* Process the summary node - called from jffs2_scan_eraseblock() */
1268int jffs2_sum_scan_sumnode(struct part_info *part, uint32_t offset,
1269 struct jffs2_raw_summary *summary, uint32_t sumsize,
1270 struct b_lists *pL)
1271{
1272 struct jffs2_unknown_node crcnode;
1273 int ret, ofs;
1274 uint32_t crc;
1275
1276 ofs = part->sector_size - sumsize;
1277
1278 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
1279 offset, offset + ofs, sumsize);
1280
1281 /* OK, now check for node validity and CRC */
1282 crcnode.magic = JFFS2_MAGIC_BITMASK;
1283 crcnode.nodetype = JFFS2_NODETYPE_SUMMARY;
1284 crcnode.totlen = summary->totlen;
1285 crc = crc32_no_comp(0, (uchar *)&crcnode, sizeof(crcnode)-4);
1286
1287 if (summary->hdr_crc != crc) {
1288 dbg_summary("Summary node header is corrupt (bad CRC or "
1289 "no summary at all)\n");
1290 goto crc_err;
1291 }
1292
1293 if (summary->totlen != sumsize) {
1294 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
1295 goto crc_err;
1296 }
1297
1298 crc = crc32_no_comp(0, (uchar *)summary,
1299 sizeof(struct jffs2_raw_summary)-8);
1300
1301 if (summary->node_crc != crc) {
1302 dbg_summary("Summary node is corrupt (bad CRC)\n");
1303 goto crc_err;
1304 }
1305
1306 crc = crc32_no_comp(0, (uchar *)summary->sum,
1307 sumsize - sizeof(struct jffs2_raw_summary));
1308
1309 if (summary->sum_crc != crc) {
1310 dbg_summary("Summary node data is corrupt (bad CRC)\n");
1311 goto crc_err;
1312 }
1313
1314 if (summary->cln_mkr)
1315 dbg_summary("Summary : CLEANMARKER node \n");
1316
1317 ret = jffs2_sum_process_sum_data(part, offset, summary, pL);
1318 if (ret)
1319 return ret; /* real error */
1320
1321 return 1;
1322
1323crc_err:
1324 putstr("Summary node crc error, skipping summary information.\n");
1325
1326 return 0;
1327}
1328
wdenk06d01db2003-03-14 20:47:52 +00001329#ifdef DEBUG_FRAGMENTS
1330static void
1331dump_fragments(struct b_lists *pL)
1332{
1333 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001334 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001335 struct jffs2_raw_inode *jNode;
1336
1337 putstr("\r\n\r\n******The fragment Entries******\r\n");
1338 b = pL->frag.listHead;
1339 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001340 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1341 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001342 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1343 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1344 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1345 putLabeledWord("\tbuild_list: version = ", jNode->version);
1346 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1347 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1348 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1349 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1350 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1351 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1352 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1353 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001354 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001355 b = b->next;
1356 }
1357}
1358#endif
1359
1360#ifdef DEBUG_DIRENTS
1361static void
1362dump_dirents(struct b_lists *pL)
1363{
1364 struct b_node *b;
1365 struct jffs2_raw_dirent *jDir;
1366
1367 putstr("\r\n\r\n******The directory Entries******\r\n");
1368 b = pL->dir.listHead;
1369 while (b) {
Ilya Yanok70741002008-11-13 19:49:34 +03001370 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1371 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001372 putstr("\r\n");
1373 putnstr(jDir->name, jDir->nsize);
1374 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1375 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1376 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1377 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1378 putLabeledWord("\tbuild_list: version = ", jDir->version);
1379 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1380 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1381 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1382 putLabeledWord("\tbuild_list: type = ", jDir->type);
1383 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1384 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001385 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001386 b = b->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001387 put_fl_mem(jDir, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001388 }
1389}
1390#endif
1391
Ilya Yanok8a36d312008-11-13 19:49:33 +03001392#define DEFAULT_EMPTY_SCAN_SIZE 4096
1393
1394static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1395{
1396 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1397 return sector_size;
1398 else
1399 return DEFAULT_EMPTY_SCAN_SIZE;
1400}
1401
wdenkfe8c2802002-11-03 00:38:21 +00001402static u32
1403jffs2_1pass_build_lists(struct part_info * part)
1404{
1405 struct b_lists *pL;
1406 struct jffs2_unknown_node *node;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001407 u32 nr_sectors = part->size/part->sector_size;
1408 u32 i;
wdenkfe8c2802002-11-03 00:38:21 +00001409 u32 counter4 = 0;
1410 u32 counterF = 0;
1411 u32 counterN = 0;
Ilya Yanok70741002008-11-13 19:49:34 +03001412 u32 max_totlen = 0;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001413 u32 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
1414 char *buf;
wdenkfe8c2802002-11-03 00:38:21 +00001415
1416 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1417 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1418 /* only about 5 %. not enough to inconvenience people for. */
1419 /* lcd_off(); */
1420
1421 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001422 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001423 pL = (struct b_lists *)part->jffs2_priv;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001424 buf = malloc(buf_size);
wdenk4b9206e2004-03-23 22:14:11 +00001425 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001426
1427 /* start at the beginning of the partition */
Ilya Yanok8a36d312008-11-13 19:49:33 +03001428 for (i = 0; i < nr_sectors; i++) {
1429 uint32_t sector_ofs = i * part->sector_size;
1430 uint32_t buf_ofs = sector_ofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001431 uint32_t buf_len;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001432 uint32_t ofs, prevofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001433 struct jffs2_sum_marker *sm;
1434 void *sumptr = NULL;
1435 uint32_t sumlen;
1436 int ret;
wdenk0b8fa032004-04-25 14:37:29 +00001437
Stuart Wood86d32732008-06-02 16:40:08 -04001438 WATCHDOG_RESET();
Ilya Yanok9b707622008-11-13 19:49:35 +03001439
1440 buf_len = sizeof(*sm);
1441
1442 /* Read as much as we want into the _end_ of the preallocated
1443 * buffer
1444 */
1445 get_fl_mem(part->offset + sector_ofs + part->sector_size -
1446 buf_len, buf_len, buf + buf_size - buf_len);
1447
1448 sm = (void *)buf + buf_size - sizeof(*sm);
1449 if (sm->magic == JFFS2_SUM_MAGIC) {
1450 sumlen = part->sector_size - sm->offset;
1451 sumptr = buf + buf_size - sumlen;
1452
1453 /* Now, make sure the summary itself is available */
1454 if (sumlen > buf_size) {
1455 /* Need to kmalloc for this. */
1456 sumptr = malloc(sumlen);
1457 if (!sumptr) {
1458 putstr("Can't get memory for summary "
1459 "node!\n");
Ilya Yanokb6440062009-08-12 16:42:48 +04001460 free(buf);
1461 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001462 return 0;
1463 }
1464 memcpy(sumptr + sumlen - buf_len, buf +
1465 buf_size - buf_len, buf_len);
1466 }
1467 if (buf_len < sumlen) {
1468 /* Need to read more so that the entire summary
1469 * node is present
1470 */
1471 get_fl_mem(part->offset + sector_ofs +
1472 part->sector_size - sumlen,
1473 sumlen - buf_len, sumptr);
1474 }
1475 }
1476
1477 if (sumptr) {
1478 ret = jffs2_sum_scan_sumnode(part, sector_ofs, sumptr,
1479 sumlen, pL);
1480
1481 if (buf_size && sumlen > buf_size)
1482 free(sumptr);
Ilya Yanokb6440062009-08-12 16:42:48 +04001483 if (ret < 0) {
1484 free(buf);
1485 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001486 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001487 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001488 if (ret)
1489 continue;
1490
1491 }
1492
1493 buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1494
Ilya Yanok8a36d312008-11-13 19:49:33 +03001495 get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
Stuart Wood86d32732008-06-02 16:40:08 -04001496
Ilya Yanok8a36d312008-11-13 19:49:33 +03001497 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1498 ofs = 0;
1499
1500 /* Scan only 4KiB of 0xFF before declaring it's empty */
1501 while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1502 *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1503 ofs += 4;
1504
1505 if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1506 continue;
1507
1508 ofs += sector_ofs;
1509 prevofs = ofs - 1;
1510
1511 scan_more:
1512 while (ofs < sector_ofs + part->sector_size) {
1513 if (ofs == prevofs) {
1514 printf("offset %08x already seen, skip\n", ofs);
1515 ofs += 4;
1516 counter4++;
1517 continue;
1518 }
1519 prevofs = ofs;
1520 if (sector_ofs + part->sector_size <
1521 ofs + sizeof(*node))
1522 break;
1523 if (buf_ofs + buf_len < ofs + sizeof(*node)) {
1524 buf_len = min_t(uint32_t, buf_size, sector_ofs
1525 + part->sector_size - ofs);
1526 get_fl_mem((u32)part->offset + ofs, buf_len,
1527 buf);
1528 buf_ofs = ofs;
1529 }
1530
1531 node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
1532
1533 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1534 uint32_t inbuf_ofs;
1535 uint32_t empty_start, scan_end;
1536
1537 empty_start = ofs;
1538 ofs += 4;
1539 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1540 part->sector_size)/8,
1541 buf_len);
1542 more_empty:
1543 inbuf_ofs = ofs - buf_ofs;
1544 while (inbuf_ofs < scan_end) {
1545 if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1546 0xffffffff)
1547 goto scan_more;
1548
1549 inbuf_ofs += 4;
1550 ofs += 4;
wdenk998eaae2004-04-18 19:43:36 +00001551 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001552 /* Ran off end. */
1553
1554 /* See how much more there is to read in this
1555 * eraseblock...
1556 */
1557 buf_len = min_t(uint32_t, buf_size,
1558 sector_ofs +
1559 part->sector_size - ofs);
1560 if (!buf_len) {
1561 /* No more to read. Break out of main
1562 * loop without marking this range of
1563 * empty space as dirty (because it's
1564 * not)
1565 */
1566 break;
1567 }
1568 scan_end = buf_len;
1569 get_fl_mem((u32)part->offset + ofs, buf_len,
1570 buf);
1571 buf_ofs = ofs;
1572 goto more_empty;
1573 }
1574 if (node->magic != JFFS2_MAGIC_BITMASK ||
1575 !hdr_crc(node)) {
1576 ofs += 4;
1577 counter4++;
1578 continue;
1579 }
1580 if (ofs + node->totlen >
1581 sector_ofs + part->sector_size) {
1582 ofs += 4;
1583 counter4++;
1584 continue;
1585 }
1586 /* if its a fragment add it */
1587 switch (node->nodetype) {
1588 case JFFS2_NODETYPE_INODE:
1589 if (buf_ofs + buf_len < ofs + sizeof(struct
1590 jffs2_raw_inode)) {
1591 get_fl_mem((u32)part->offset + ofs,
1592 buf_len, buf);
1593 buf_ofs = ofs;
1594 node = (void *)buf;
1595 }
1596 if (!inode_crc((struct jffs2_raw_inode *) node))
1597 break;
1598
1599 if (insert_node(&pL->frag, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001600 ofs) == NULL) {
1601 free(buf);
1602 jffs2_free_cache(part);
Ilya Yanok8a36d312008-11-13 19:49:33 +03001603 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001604 }
Ilya Yanok70741002008-11-13 19:49:34 +03001605 if (max_totlen < node->totlen)
1606 max_totlen = node->totlen;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001607 break;
1608 case JFFS2_NODETYPE_DIRENT:
1609 if (buf_ofs + buf_len < ofs + sizeof(struct
1610 jffs2_raw_dirent) +
1611 ((struct
1612 jffs2_raw_dirent *)
1613 node)->nsize) {
1614 get_fl_mem((u32)part->offset + ofs,
1615 buf_len, buf);
1616 buf_ofs = ofs;
1617 node = (void *)buf;
1618 }
1619
1620 if (!dirent_crc((struct jffs2_raw_dirent *)
1621 node) ||
1622 !dirent_name_crc(
1623 (struct
1624 jffs2_raw_dirent *)
1625 node))
1626 break;
wdenkfc1cfcd2004-04-25 15:41:35 +00001627 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001628 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001629 if (insert_node(&pL->dir, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001630 ofs) == NULL) {
1631 free(buf);
1632 jffs2_free_cache(part);
wdenkfe8c2802002-11-03 00:38:21 +00001633 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001634 }
Ilya Yanok70741002008-11-13 19:49:34 +03001635 if (max_totlen < node->totlen)
1636 max_totlen = node->totlen;
wdenkfe8c2802002-11-03 00:38:21 +00001637 counterN++;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001638 break;
1639 case JFFS2_NODETYPE_CLEANMARKER:
wdenkfe8c2802002-11-03 00:38:21 +00001640 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001641 printf("OOPS Cleanmarker has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001642 "%d != %zu\n",
1643 node->totlen,
wdenk06d01db2003-03-14 20:47:52 +00001644 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001645 break;
1646 case JFFS2_NODETYPE_PADDING:
wdenk7205e402003-09-10 22:30:53 +00001647 if (node->totlen < sizeof(struct jffs2_unknown_node))
1648 printf("OOPS Padding has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001649 "%d < %zu\n",
1650 node->totlen,
wdenk7205e402003-09-10 22:30:53 +00001651 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001652 break;
Ilya Yanok9b707622008-11-13 19:49:35 +03001653 case JFFS2_NODETYPE_SUMMARY:
1654 break;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001655 default:
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001656 printf("Unknown node type: %x len %d offset 0x%x\n",
1657 node->nodetype,
Ilya Yanok8a36d312008-11-13 19:49:33 +03001658 node->totlen, ofs);
wdenkfe8c2802002-11-03 00:38:21 +00001659 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001660 ofs += ((node->totlen + 3) & ~3);
wdenkfe8c2802002-11-03 00:38:21 +00001661 counterF++;
wdenkfe8c2802002-11-03 00:38:21 +00001662 }
wdenkfe8c2802002-11-03 00:38:21 +00001663 }
1664
Ilya Yanok8a36d312008-11-13 19:49:33 +03001665 free(buf);
wdenkfe8c2802002-11-03 00:38:21 +00001666 putstr("\b\b done.\r\n"); /* close off the dots */
Ilya Yanok70741002008-11-13 19:49:34 +03001667
1668 /* We don't care if malloc failed - then each read operation will
1669 * allocate its own buffer as necessary (NAND) or will read directly
1670 * from flash (NOR).
1671 */
1672 pL->readbuf = malloc(max_totlen);
1673
wdenkfe8c2802002-11-03 00:38:21 +00001674 /* turn the lcd back on. */
1675 /* splash(); */
1676
1677#if 0
wdenk06d01db2003-03-14 20:47:52 +00001678 putLabeledWord("dir entries = ", pL->dir.listCount);
1679 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001680 putLabeledWord("+4 increments = ", counter4);
1681 putLabeledWord("+file_offset increments = ", counterF);
1682
1683#endif
1684
wdenk06d01db2003-03-14 20:47:52 +00001685#ifdef DEBUG_DIRENTS
1686 dump_dirents(pL);
1687#endif
wdenkfe8c2802002-11-03 00:38:21 +00001688
wdenk06d01db2003-03-14 20:47:52 +00001689#ifdef DEBUG_FRAGMENTS
1690 dump_fragments(pL);
1691#endif
wdenkfe8c2802002-11-03 00:38:21 +00001692
wdenkfe8c2802002-11-03 00:38:21 +00001693 /* give visual feedback that we are done scanning the flash */
1694 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1695 return 1;
1696}
1697
1698
wdenkfe8c2802002-11-03 00:38:21 +00001699static u32
1700jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1701{
1702 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001703 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001704 struct jffs2_raw_inode *jNode;
1705 int i;
1706
wdenkfe8c2802002-11-03 00:38:21 +00001707 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1708 piL->compr_info[i].num_frags = 0;
1709 piL->compr_info[i].compr_sum = 0;
1710 piL->compr_info[i].decompr_sum = 0;
1711 }
1712
wdenk06d01db2003-03-14 20:47:52 +00001713 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001714 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001715 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1716 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001717 if (jNode->compr < JFFS2_NUM_COMPR) {
1718 piL->compr_info[jNode->compr].num_frags++;
1719 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1720 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1721 }
1722 b = b->next;
1723 }
1724 return 0;
1725}
1726
1727
wdenkfe8c2802002-11-03 00:38:21 +00001728static struct b_lists *
1729jffs2_get_list(struct part_info * part, const char *who)
1730{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001731 /* copy requested part_info struct pointer to global location */
1732 current_part = part;
1733
wdenkfe8c2802002-11-03 00:38:21 +00001734 if (jffs2_1pass_rescan_needed(part)) {
1735 if (!jffs2_1pass_build_lists(part)) {
1736 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1737 return NULL;
1738 }
1739 }
1740 return (struct b_lists *)part->jffs2_priv;
1741}
1742
1743
1744/* Print directory / file contents */
1745u32
1746jffs2_1pass_ls(struct part_info * part, const char *fname)
1747{
1748 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001749 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001750 u32 inode;
1751
wdenk06d01db2003-03-14 20:47:52 +00001752 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001753 return 0;
1754
1755 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1756 putstr("ls: Failed to scan jffs2 file structure\r\n");
1757 return 0;
1758 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001759
1760
wdenkfe8c2802002-11-03 00:38:21 +00001761#if 0
1762 putLabeledWord("found file at inode = ", inode);
1763 putLabeledWord("read_inode returns = ", ret);
1764#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001765
1766 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001767}
1768
1769
wdenkfe8c2802002-11-03 00:38:21 +00001770/* Load a file from flash into memory. fname can be a full path */
1771u32
1772jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1773{
1774
1775 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001776 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001777 u32 inode;
1778
1779 if (! (pl = jffs2_get_list(part, "load")))
1780 return 0;
1781
1782 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1783 putstr("load: Failed to find inode\r\n");
1784 return 0;
1785 }
1786
1787 /* Resolve symlinks */
1788 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1789 putstr("load: Failed to resolve inode structure\r\n");
1790 return 0;
1791 }
1792
1793 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1794 putstr("load: Failed to read inode\r\n");
1795 return 0;
1796 }
1797
1798 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1799 (unsigned long) dest, ret);
1800 return ret;
1801}
1802
1803/* Return information about the fs on this partition */
1804u32
1805jffs2_1pass_info(struct part_info * part)
1806{
1807 struct b_jffs2_info info;
1808 struct b_lists *pl;
1809 int i;
1810
1811 if (! (pl = jffs2_get_list(part, "info")))
1812 return 0;
1813
1814 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001815 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001816 printf ("Compression: %s\n"
1817 "\tfrag count: %d\n"
1818 "\tcompressed sum: %d\n"
1819 "\tuncompressed sum: %d\n",
1820 compr_names[i],
1821 info.compr_info[i].num_frags,
1822 info.compr_info[i].compr_sum,
1823 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001824 }
1825 return 1;
1826}