xref: /rk3399_rockchip-uboot/fs/jffs2/jffs2_1pass.c (revision 8a36d31f72411144ac0412ee7e1880e801acd754)
1 /*
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:
55  *	(1) most pages are 4096 bytes
56  *	(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 
78 /*
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  *
95  * The fragment sorting feature must be enabled by CONFIG_SYS_JFFS2_SORT_FRAGMENTS.
96  * 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
109  * might be incompatible with any new code from the jffs2 maintainers anyway,
110  * it should probably be dumped and replaced by something like jffs2reader!
111  */
112 
113 
114 #include <common.h>
115 #include <config.h>
116 #include <malloc.h>
117 #include <linux/stat.h>
118 #include <linux/time.h>
119 #include <watchdog.h>
120 #include <jffs2/jffs2.h>
121 #include <jffs2/jffs2_1pass.h>
122 
123 #include "jffs2_private.h"
124 
125 
126 #define	NODE_CHUNK	1024	/* size of memory allocation chunk in b_nodes */
127 #define	SPIN_BLKSIZE	18	/* spin after having scanned 1<<BLKSIZE bytes */
128 
129 /* Debugging switches */
130 #undef	DEBUG_DIRENTS		/* print directory entry list after scan */
131 #undef	DEBUG_FRAGMENTS		/* print fragment list after scan */
132 #undef	DEBUG			/* enable debugging messages */
133 
134 
135 #ifdef  DEBUG
136 # define DEBUGF(fmt,args...)	printf(fmt ,##args)
137 #else
138 # define DEBUGF(fmt,args...)
139 #endif
140 
141 /* keeps pointer to currentlu processed partition */
142 static struct part_info *current_part;
143 
144 #if (defined(CONFIG_JFFS2_NAND) && \
145      defined(CONFIG_CMD_NAND) )
146 #if defined(CONFIG_NAND_LEGACY)
147 #include <linux/mtd/nand_legacy.h>
148 #else
149 #include <nand.h>
150 #endif
151 /*
152  * Support for jffs2 on top of NAND-flash
153  *
154  * NAND memory isn't mapped in processor's address space,
155  * so data should be fetched from flash before
156  * being processed. This is exactly what functions declared
157  * here do.
158  *
159  */
160 
161 #if defined(CONFIG_NAND_LEGACY)
162 /* this one defined in nand_legacy.c */
163 int read_jffs2_nand(size_t start, size_t len,
164 		size_t * retlen, u_char * buf, int nanddev);
165 #endif
166 
167 #define NAND_PAGE_SIZE 512
168 #define NAND_PAGE_SHIFT 9
169 #define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
170 
171 #ifndef NAND_CACHE_PAGES
172 #define NAND_CACHE_PAGES 16
173 #endif
174 #define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
175 
176 static u8* nand_cache = NULL;
177 static u32 nand_cache_off = (u32)-1;
178 
179 static int read_nand_cached(u32 off, u32 size, u_char *buf)
180 {
181 	struct mtdids *id = current_part->dev->id;
182 	u32 bytes_read = 0;
183 	size_t retlen;
184 	int cpy_bytes;
185 
186 	while (bytes_read < size) {
187 		if ((off + bytes_read < nand_cache_off) ||
188 		    (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
189 			nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
190 			if (!nand_cache) {
191 				/* This memory never gets freed but 'cause
192 				   it's a bootloader, nobody cares */
193 				nand_cache = malloc(NAND_CACHE_SIZE);
194 				if (!nand_cache) {
195 					printf("read_nand_cached: can't alloc cache size %d bytes\n",
196 					       NAND_CACHE_SIZE);
197 					return -1;
198 				}
199 			}
200 
201 #if defined(CONFIG_NAND_LEGACY)
202 			if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
203 						&retlen, nand_cache, id->num) < 0 ||
204 					retlen != NAND_CACHE_SIZE) {
205 				printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
206 						nand_cache_off, NAND_CACHE_SIZE);
207 				return -1;
208 			}
209 #else
210 			retlen = NAND_CACHE_SIZE;
211 			if (nand_read(&nand_info[id->num], nand_cache_off,
212 						&retlen, nand_cache) != 0 ||
213 					retlen != NAND_CACHE_SIZE) {
214 				printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
215 						nand_cache_off, NAND_CACHE_SIZE);
216 				return -1;
217 			}
218 #endif
219 		}
220 		cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
221 		if (cpy_bytes > size - bytes_read)
222 			cpy_bytes = size - bytes_read;
223 		memcpy(buf + bytes_read,
224 		       nand_cache + off + bytes_read - nand_cache_off,
225 		       cpy_bytes);
226 		bytes_read += cpy_bytes;
227 	}
228 	return bytes_read;
229 }
230 
231 static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
232 {
233 	u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
234 
235 	if (NULL == buf) {
236 		printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
237 		return NULL;
238 	}
239 	if (read_nand_cached(off, size, buf) < 0) {
240 		if (!ext_buf)
241 			free(buf);
242 		return NULL;
243 	}
244 
245 	return buf;
246 }
247 
248 static void *get_node_mem_nand(u32 off)
249 {
250 	struct jffs2_unknown_node node;
251 	void *ret = NULL;
252 
253 	if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
254 		return NULL;
255 
256 	if (!(ret = get_fl_mem_nand(off, node.magic ==
257 			       JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
258 			       NULL))) {
259 		printf("off = %#x magic %#x type %#x node.totlen = %d\n",
260 		       off, node.magic, node.nodetype, node.totlen);
261 	}
262 	return ret;
263 }
264 
265 static void put_fl_mem_nand(void *buf)
266 {
267 	free(buf);
268 }
269 #endif
270 
271 #if defined(CONFIG_CMD_ONENAND)
272 
273 #include <linux/mtd/mtd.h>
274 #include <linux/mtd/onenand.h>
275 #include <onenand_uboot.h>
276 
277 #define ONENAND_PAGE_SIZE 2048
278 #define ONENAND_PAGE_SHIFT 11
279 #define ONENAND_PAGE_MASK (~(ONENAND_PAGE_SIZE-1))
280 
281 #ifndef ONENAND_CACHE_PAGES
282 #define ONENAND_CACHE_PAGES 4
283 #endif
284 #define ONENAND_CACHE_SIZE (ONENAND_CACHE_PAGES*ONENAND_PAGE_SIZE)
285 
286 static u8* onenand_cache;
287 static u32 onenand_cache_off = (u32)-1;
288 
289 static int read_onenand_cached(u32 off, u32 size, u_char *buf)
290 {
291 	u32 bytes_read = 0;
292 	size_t retlen;
293 	int cpy_bytes;
294 
295 	while (bytes_read < size) {
296 		if ((off + bytes_read < onenand_cache_off) ||
297 		    (off + bytes_read >= onenand_cache_off + ONENAND_CACHE_SIZE)) {
298 			onenand_cache_off = (off + bytes_read) & ONENAND_PAGE_MASK;
299 			if (!onenand_cache) {
300 				/* This memory never gets freed but 'cause
301 				   it's a bootloader, nobody cares */
302 				onenand_cache = malloc(ONENAND_CACHE_SIZE);
303 				if (!onenand_cache) {
304 					printf("read_onenand_cached: can't alloc cache size %d bytes\n",
305 					       ONENAND_CACHE_SIZE);
306 					return -1;
307 				}
308 			}
309 
310 			retlen = ONENAND_CACHE_SIZE;
311 			if (onenand_read(&onenand_mtd, onenand_cache_off, retlen,
312 						&retlen, onenand_cache) != 0 ||
313 					retlen != ONENAND_CACHE_SIZE) {
314 				printf("read_onenand_cached: error reading nand off %#x size %d bytes\n",
315 					onenand_cache_off, ONENAND_CACHE_SIZE);
316 				return -1;
317 			}
318 		}
319 		cpy_bytes = onenand_cache_off + ONENAND_CACHE_SIZE - (off + bytes_read);
320 		if (cpy_bytes > size - bytes_read)
321 			cpy_bytes = size - bytes_read;
322 		memcpy(buf + bytes_read,
323 		       onenand_cache + off + bytes_read - onenand_cache_off,
324 		       cpy_bytes);
325 		bytes_read += cpy_bytes;
326 	}
327 	return bytes_read;
328 }
329 
330 static void *get_fl_mem_onenand(u32 off, u32 size, void *ext_buf)
331 {
332 	u_char *buf = ext_buf ? (u_char *)ext_buf : (u_char *)malloc(size);
333 
334 	if (NULL == buf) {
335 		printf("get_fl_mem_onenand: can't alloc %d bytes\n", size);
336 		return NULL;
337 	}
338 	if (read_onenand_cached(off, size, buf) < 0) {
339 		if (!ext_buf)
340 			free(buf);
341 		return NULL;
342 	}
343 
344 	return buf;
345 }
346 
347 static void *get_node_mem_onenand(u32 off)
348 {
349 	struct jffs2_unknown_node node;
350 	void *ret = NULL;
351 
352 	if (NULL == get_fl_mem_onenand(off, sizeof(node), &node))
353 		return NULL;
354 
355 	ret = get_fl_mem_onenand(off, node.magic ==
356 			JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
357 			NULL);
358 	if (!ret) {
359 		printf("off = %#x magic %#x type %#x node.totlen = %d\n",
360 		       off, node.magic, node.nodetype, node.totlen);
361 	}
362 	return ret;
363 }
364 
365 
366 static void put_fl_mem_onenand(void *buf)
367 {
368 	free(buf);
369 }
370 #endif
371 
372 
373 #if defined(CONFIG_CMD_FLASH)
374 /*
375  * Support for jffs2 on top of NOR-flash
376  *
377  * NOR flash memory is mapped in processor's address space,
378  * just return address.
379  */
380 static inline void *get_fl_mem_nor(u32 off)
381 {
382 	u32 addr = off;
383 	struct mtdids *id = current_part->dev->id;
384 
385 	extern flash_info_t flash_info[];
386 	flash_info_t *flash = &flash_info[id->num];
387 
388 	addr += flash->start[0];
389 	return (void*)addr;
390 }
391 
392 static inline void *get_fl_mem_nor_copy(u32 off, u32 size, void *ext_buf)
393 {
394 	memcpy(ext_buf, get_fl_mem_nor(off), size);
395 	return ext_buf;
396 }
397 
398 static inline void *get_node_mem_nor(u32 off)
399 {
400 	return (void*)get_fl_mem_nor(off);
401 }
402 #endif
403 
404 
405 /*
406  * Generic jffs2 raw memory and node read routines.
407  *
408  */
409 static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
410 {
411 	struct mtdids *id = current_part->dev->id;
412 
413 #if defined(CONFIG_CMD_FLASH)
414 	if (id->type == MTD_DEV_TYPE_NOR) {
415 		if (ext_buf)
416 			return get_fl_mem_nor_copy(off, size, ext_buf);
417 		return get_fl_mem_nor(off);
418 	}
419 #endif
420 
421 #if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
422 	if (id->type == MTD_DEV_TYPE_NAND)
423 		return get_fl_mem_nand(off, size, ext_buf);
424 #endif
425 
426 #if defined(CONFIG_CMD_ONENAND)
427 	if (id->type == MTD_DEV_TYPE_ONENAND)
428 		return get_fl_mem_onenand(off, size, ext_buf);
429 #endif
430 
431 	printf("get_fl_mem: unknown device type, using raw offset!\n");
432 	return (void*)off;
433 }
434 
435 static inline void *get_node_mem(u32 off)
436 {
437 	struct mtdids *id = current_part->dev->id;
438 
439 #if defined(CONFIG_CMD_FLASH)
440 	if (id->type == MTD_DEV_TYPE_NOR)
441 		return get_node_mem_nor(off);
442 #endif
443 
444 #if defined(CONFIG_JFFS2_NAND) && \
445     defined(CONFIG_CMD_NAND)
446 	if (id->type == MTD_DEV_TYPE_NAND)
447 		return get_node_mem_nand(off);
448 #endif
449 
450 #if defined(CONFIG_CMD_ONENAND)
451 	if (id->type == MTD_DEV_TYPE_ONENAND)
452 		return get_node_mem_onenand(off);
453 #endif
454 
455 	printf("get_node_mem: unknown device type, using raw offset!\n");
456 	return (void*)off;
457 }
458 
459 static inline void put_fl_mem(void *buf)
460 {
461 	struct mtdids *id = current_part->dev->id;
462 
463 	switch (id->type) {
464 #if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
465 	case MTD_DEV_TYPE_NAND:
466 		return put_fl_mem_nand(buf);
467 #endif
468 #if defined(CONFIG_CMD_ONENAND)
469 	case MTD_DEV_TYPE_ONENAND:
470 		return put_fl_mem_onenand(buf);
471 #endif
472 	}
473 }
474 
475 /* Compression names */
476 static char *compr_names[] = {
477 	"NONE",
478 	"ZERO",
479 	"RTIME",
480 	"RUBINMIPS",
481 	"COPY",
482 	"DYNRUBIN",
483 	"ZLIB",
484 #if defined(CONFIG_JFFS2_LZO_LZARI)
485 	"LZO",
486 	"LZARI",
487 #endif
488 };
489 
490 /* Memory management */
491 struct mem_block {
492 	u32	index;
493 	struct mem_block *next;
494 	struct b_node nodes[NODE_CHUNK];
495 };
496 
497 
498 static void
499 free_nodes(struct b_list *list)
500 {
501 	while (list->listMemBase != NULL) {
502 		struct mem_block *next = list->listMemBase->next;
503 		free( list->listMemBase );
504 		list->listMemBase = next;
505 	}
506 }
507 
508 static struct b_node *
509 add_node(struct b_list *list)
510 {
511 	u32 index = 0;
512 	struct mem_block *memBase;
513 	struct b_node *b;
514 
515 	memBase = list->listMemBase;
516 	if (memBase != NULL)
517 		index = memBase->index;
518 #if 0
519 	putLabeledWord("add_node: index = ", index);
520 	putLabeledWord("add_node: memBase = ", list->listMemBase);
521 #endif
522 
523 	if (memBase == NULL || index >= NODE_CHUNK) {
524 		/* we need more space before we continue */
525 		memBase = mmalloc(sizeof(struct mem_block));
526 		if (memBase == NULL) {
527 			putstr("add_node: malloc failed\n");
528 			return NULL;
529 		}
530 		memBase->next = list->listMemBase;
531 		index = 0;
532 #if 0
533 		putLabeledWord("add_node: alloced a new membase at ", *memBase);
534 #endif
535 
536 	}
537 	/* now we have room to add it. */
538 	b = &memBase->nodes[index];
539 	index ++;
540 
541 	memBase->index = index;
542 	list->listMemBase = memBase;
543 	list->listCount++;
544 	return b;
545 }
546 
547 static struct b_node *
548 insert_node(struct b_list *list, u32 offset)
549 {
550 	struct b_node *new;
551 #ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
552 	struct b_node *b, *prev;
553 #endif
554 
555 	if (!(new = add_node(list))) {
556 		putstr("add_node failed!\r\n");
557 		return NULL;
558 	}
559 	new->offset = offset;
560 
561 #ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
562 	if (list->listTail != NULL && list->listCompare(new, list->listTail))
563 		prev = list->listTail;
564 	else if (list->listLast != NULL && list->listCompare(new, list->listLast))
565 		prev = list->listLast;
566 	else
567 		prev = NULL;
568 
569 	for (b = (prev ? prev->next : list->listHead);
570 	     b != NULL && list->listCompare(new, b);
571 	     prev = b, b = b->next) {
572 		list->listLoops++;
573 	}
574 	if (b != NULL)
575 		list->listLast = prev;
576 
577 	if (b != NULL) {
578 		new->next = b;
579 		if (prev != NULL)
580 			prev->next = new;
581 		else
582 			list->listHead = new;
583 	} else
584 #endif
585 	{
586 		new->next = (struct b_node *) NULL;
587 		if (list->listTail != NULL) {
588 			list->listTail->next = new;
589 			list->listTail = new;
590 		} else {
591 			list->listTail = list->listHead = new;
592 		}
593 	}
594 
595 	return new;
596 }
597 
598 #ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
599 /* Sort data entries with the latest version last, so that if there
600  * is overlapping data the latest version will be used.
601  */
602 static int compare_inodes(struct b_node *new, struct b_node *old)
603 {
604 	struct jffs2_raw_inode ojNew;
605 	struct jffs2_raw_inode ojOld;
606 	struct jffs2_raw_inode *jNew =
607 		(struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
608 	struct jffs2_raw_inode *jOld =
609 		(struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
610 
611 	return jNew->version > jOld->version;
612 }
613 
614 /* Sort directory entries so all entries in the same directory
615  * with the same name are grouped together, with the latest version
616  * last. This makes it easy to eliminate all but the latest version
617  * by marking the previous version dead by setting the inode to 0.
618  */
619 static int compare_dirents(struct b_node *new, struct b_node *old)
620 {
621 	struct jffs2_raw_dirent ojNew;
622 	struct jffs2_raw_dirent ojOld;
623 	struct jffs2_raw_dirent *jNew =
624 		(struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
625 	struct jffs2_raw_dirent *jOld =
626 		(struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
627 	int cmp;
628 
629 	/* ascending sort by pino */
630 	if (jNew->pino != jOld->pino)
631 		return jNew->pino > jOld->pino;
632 
633 	/* pino is the same, so use ascending sort by nsize, so
634 	 * we don't do strncmp unless we really must.
635 	 */
636 	if (jNew->nsize != jOld->nsize)
637 		return jNew->nsize > jOld->nsize;
638 
639 	/* length is also the same, so use ascending sort by name
640 	 */
641 	cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
642 	if (cmp != 0)
643 		return cmp > 0;
644 
645 	/* we have duplicate names in this directory, so use ascending
646 	 * sort by version
647 	 */
648 	if (jNew->version > jOld->version) {
649 		/* since jNew is newer, we know jOld is not valid, so
650 		 * mark it with inode 0 and it will not be used
651 		 */
652 		jOld->ino = 0;
653 		return 1;
654 	}
655 
656 	return 0;
657 }
658 #endif
659 
660 void
661 jffs2_free_cache(struct part_info *part)
662 {
663 	struct b_lists *pL;
664 
665 	if (part->jffs2_priv != NULL) {
666 		pL = (struct b_lists *)part->jffs2_priv;
667 		free_nodes(&pL->frag);
668 		free_nodes(&pL->dir);
669 		free(pL);
670 	}
671 }
672 
673 static u32
674 jffs_init_1pass_list(struct part_info *part)
675 {
676 	struct b_lists *pL;
677 
678 	jffs2_free_cache(part);
679 
680 	if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
681 		pL = (struct b_lists *)part->jffs2_priv;
682 
683 		memset(pL, 0, sizeof(*pL));
684 #ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
685 		pL->dir.listCompare = compare_dirents;
686 		pL->frag.listCompare = compare_inodes;
687 #endif
688 	}
689 	return 0;
690 }
691 
692 /* find the inode from the slashless name given a parent */
693 static long
694 jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
695 {
696 	struct b_node *b;
697 	struct jffs2_raw_inode *jNode;
698 	u32 totalSize = 0;
699 	u32 latestVersion = 0;
700 	uchar *lDest;
701 	uchar *src;
702 	long ret;
703 	int i;
704 	u32 counter = 0;
705 #ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
706 	/* Find file size before loading any data, so fragments that
707 	 * start past the end of file can be ignored. A fragment
708 	 * that is partially in the file is loaded, so extra data may
709 	 * be loaded up to the next 4K boundary above the file size.
710 	 * This shouldn't cause trouble when loading kernel images, so
711 	 * we will live with it.
712 	 */
713 	for (b = pL->frag.listHead; b != NULL; b = b->next) {
714 		jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
715 		        sizeof(struct jffs2_raw_inode), NULL);
716 		if ((inode == jNode->ino)) {
717 			/* get actual file length from the newest node */
718 			if (jNode->version >= latestVersion) {
719 				totalSize = jNode->isize;
720 				latestVersion = jNode->version;
721 			}
722 		}
723 		put_fl_mem(jNode);
724 	}
725 #endif
726 
727 	for (b = pL->frag.listHead; b != NULL; b = b->next) {
728 		jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
729 		if ((inode == jNode->ino)) {
730 #if 0
731 			putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
732 			putLabeledWord("read_inode: inode = ", jNode->ino);
733 			putLabeledWord("read_inode: version = ", jNode->version);
734 			putLabeledWord("read_inode: isize = ", jNode->isize);
735 			putLabeledWord("read_inode: offset = ", jNode->offset);
736 			putLabeledWord("read_inode: csize = ", jNode->csize);
737 			putLabeledWord("read_inode: dsize = ", jNode->dsize);
738 			putLabeledWord("read_inode: compr = ", jNode->compr);
739 			putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
740 			putLabeledWord("read_inode: flags = ", jNode->flags);
741 #endif
742 
743 #ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
744 			/* get actual file length from the newest node */
745 			if (jNode->version >= latestVersion) {
746 				totalSize = jNode->isize;
747 				latestVersion = jNode->version;
748 			}
749 #endif
750 
751 			if(dest) {
752 				src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
753 				/* ignore data behind latest known EOF */
754 				if (jNode->offset > totalSize) {
755 					put_fl_mem(jNode);
756 					continue;
757 				}
758 				if (!data_crc(jNode)) {
759 					put_fl_mem(jNode);
760 					continue;
761 				}
762 
763 				lDest = (uchar *) (dest + jNode->offset);
764 #if 0
765 				putLabeledWord("read_inode: src = ", src);
766 				putLabeledWord("read_inode: dest = ", lDest);
767 #endif
768 				switch (jNode->compr) {
769 				case JFFS2_COMPR_NONE:
770 					ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
771 					break;
772 				case JFFS2_COMPR_ZERO:
773 					ret = 0;
774 					for (i = 0; i < jNode->dsize; i++)
775 						*(lDest++) = 0;
776 					break;
777 				case JFFS2_COMPR_RTIME:
778 					ret = 0;
779 					rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
780 					break;
781 				case JFFS2_COMPR_DYNRUBIN:
782 					/* this is slow but it works */
783 					ret = 0;
784 					dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
785 					break;
786 				case JFFS2_COMPR_ZLIB:
787 					ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
788 					break;
789 #if defined(CONFIG_JFFS2_LZO_LZARI)
790 				case JFFS2_COMPR_LZO:
791 					ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
792 					break;
793 				case JFFS2_COMPR_LZARI:
794 					ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
795 					break;
796 #endif
797 				default:
798 					/* unknown */
799 					putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
800 					put_fl_mem(jNode);
801 					return -1;
802 					break;
803 				}
804 			}
805 
806 #if 0
807 			putLabeledWord("read_inode: totalSize = ", totalSize);
808 			putLabeledWord("read_inode: compr ret = ", ret);
809 #endif
810 		}
811 		counter++;
812 		put_fl_mem(jNode);
813 	}
814 
815 #if 0
816 	putLabeledWord("read_inode: returning = ", totalSize);
817 #endif
818 	return totalSize;
819 }
820 
821 /* find the inode from the slashless name given a parent */
822 static u32
823 jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
824 {
825 	struct b_node *b;
826 	struct jffs2_raw_dirent *jDir;
827 	int len;
828 	u32 counter;
829 	u32 version = 0;
830 	u32 inode = 0;
831 
832 	/* name is assumed slash free */
833 	len = strlen(name);
834 
835 	counter = 0;
836 	/* we need to search all and return the inode with the highest version */
837 	for(b = pL->dir.listHead; b; b = b->next, counter++) {
838 		jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
839 		if ((pino == jDir->pino) && (len == jDir->nsize) &&
840 		    (jDir->ino) &&	/* 0 for unlink */
841 		    (!strncmp((char *)jDir->name, name, len))) {	/* a match */
842 			if (jDir->version < version) {
843 				put_fl_mem(jDir);
844 				continue;
845 			}
846 
847 			if (jDir->version == version && inode != 0) {
848 				/* I'm pretty sure this isn't legal */
849 				putstr(" ** ERROR ** ");
850 				putnstr(jDir->name, jDir->nsize);
851 				putLabeledWord(" has dup version =", version);
852 			}
853 			inode = jDir->ino;
854 			version = jDir->version;
855 		}
856 #if 0
857 		putstr("\r\nfind_inode:p&l ->");
858 		putnstr(jDir->name, jDir->nsize);
859 		putstr("\r\n");
860 		putLabeledWord("pino = ", jDir->pino);
861 		putLabeledWord("nsize = ", jDir->nsize);
862 		putLabeledWord("b = ", (u32) b);
863 		putLabeledWord("counter = ", counter);
864 #endif
865 		put_fl_mem(jDir);
866 	}
867 	return inode;
868 }
869 
870 char *mkmodestr(unsigned long mode, char *str)
871 {
872 	static const char *l = "xwr";
873 	int mask = 1, i;
874 	char c;
875 
876 	switch (mode & S_IFMT) {
877 		case S_IFDIR:    str[0] = 'd'; break;
878 		case S_IFBLK:    str[0] = 'b'; break;
879 		case S_IFCHR:    str[0] = 'c'; break;
880 		case S_IFIFO:    str[0] = 'f'; break;
881 		case S_IFLNK:    str[0] = 'l'; break;
882 		case S_IFSOCK:   str[0] = 's'; break;
883 		case S_IFREG:    str[0] = '-'; break;
884 		default:         str[0] = '?';
885 	}
886 
887 	for(i = 0; i < 9; i++) {
888 		c = l[i%3];
889 		str[9-i] = (mode & mask)?c:'-';
890 		mask = mask<<1;
891 	}
892 
893 	if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
894 	if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
895 	if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
896 	str[10] = '\0';
897 	return str;
898 }
899 
900 static inline void dump_stat(struct stat *st, const char *name)
901 {
902 	char str[20];
903 	char s[64], *p;
904 
905 	if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
906 		st->st_mtime = 1;
907 
908 	ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
909 
910 	if ((p = strchr(s,'\n')) != NULL) *p = '\0';
911 	if ((p = strchr(s,'\r')) != NULL) *p = '\0';
912 
913 /*
914 	printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
915 		st->st_size, s, name);
916 */
917 
918 	printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
919 }
920 
921 static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
922 {
923 	char fname[256];
924 	struct stat st;
925 
926 	if(!d || !i) return -1;
927 
928 	strncpy(fname, (char *)d->name, d->nsize);
929 	fname[d->nsize] = '\0';
930 
931 	memset(&st,0,sizeof(st));
932 
933 	st.st_mtime = i->mtime;
934 	st.st_mode = i->mode;
935 	st.st_ino = i->ino;
936 	st.st_size = i->isize;
937 
938 	dump_stat(&st, fname);
939 
940 	if (d->type == DT_LNK) {
941 		unsigned char *src = (unsigned char *) (&i[1]);
942 	        putstr(" -> ");
943 		putnstr(src, (int)i->dsize);
944 	}
945 
946 	putstr("\r\n");
947 
948 	return 0;
949 }
950 
951 /* list inodes with the given pino */
952 static u32
953 jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
954 {
955 	struct b_node *b;
956 	struct jffs2_raw_dirent *jDir;
957 
958 	for (b = pL->dir.listHead; b; b = b->next) {
959 		jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
960 		if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
961 			u32 i_version = 0;
962 			struct jffs2_raw_inode ojNode;
963 			struct jffs2_raw_inode *jNode, *i = NULL;
964 			struct b_node *b2 = pL->frag.listHead;
965 
966 			while (b2) {
967 				jNode = (struct jffs2_raw_inode *)
968 					get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
969 				if (jNode->ino == jDir->ino && jNode->version >= i_version) {
970 					i_version = jNode->version;
971 					if (i)
972 						put_fl_mem(i);
973 
974 					if (jDir->type == DT_LNK)
975 						i = get_node_mem(b2->offset);
976 					else
977 						i = get_fl_mem(b2->offset, sizeof(*i), NULL);
978 				}
979 				b2 = b2->next;
980 			}
981 
982 			dump_inode(pL, jDir, i);
983 			put_fl_mem(i);
984 		}
985 		put_fl_mem(jDir);
986 	}
987 	return pino;
988 }
989 
990 static u32
991 jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
992 {
993 	int i;
994 	char tmp[256];
995 	char working_tmp[256];
996 	char *c;
997 
998 	/* discard any leading slash */
999 	i = 0;
1000 	while (fname[i] == '/')
1001 		i++;
1002 	strcpy(tmp, &fname[i]);
1003 
1004 	while ((c = (char *) strchr(tmp, '/')))	/* we are still dired searching */
1005 	{
1006 		strncpy(working_tmp, tmp, c - tmp);
1007 		working_tmp[c - tmp] = '\0';
1008 #if 0
1009 		putstr("search_inode: tmp = ");
1010 		putstr(tmp);
1011 		putstr("\r\n");
1012 		putstr("search_inode: wtmp = ");
1013 		putstr(working_tmp);
1014 		putstr("\r\n");
1015 		putstr("search_inode: c = ");
1016 		putstr(c);
1017 		putstr("\r\n");
1018 #endif
1019 		for (i = 0; i < strlen(c) - 1; i++)
1020 			tmp[i] = c[i + 1];
1021 		tmp[i] = '\0';
1022 #if 0
1023 		putstr("search_inode: post tmp = ");
1024 		putstr(tmp);
1025 		putstr("\r\n");
1026 #endif
1027 
1028 		if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1029 			putstr("find_inode failed for name=");
1030 			putstr(working_tmp);
1031 			putstr("\r\n");
1032 			return 0;
1033 		}
1034 	}
1035 	/* this is for the bare filename, directories have already been mapped */
1036 	if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1037 		putstr("find_inode failed for name=");
1038 		putstr(tmp);
1039 		putstr("\r\n");
1040 		return 0;
1041 	}
1042 	return pino;
1043 
1044 }
1045 
1046 static u32
1047 jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1048 {
1049 	struct b_node *b;
1050 	struct b_node *b2;
1051 	struct jffs2_raw_dirent *jDir;
1052 	struct jffs2_raw_inode *jNode;
1053 	u8 jDirFoundType = 0;
1054 	u32 jDirFoundIno = 0;
1055 	u32 jDirFoundPino = 0;
1056 	char tmp[256];
1057 	u32 version = 0;
1058 	u32 pino;
1059 	unsigned char *src;
1060 
1061 	/* we need to search all and return the inode with the highest version */
1062 	for(b = pL->dir.listHead; b; b = b->next) {
1063 		jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
1064 		if (ino == jDir->ino) {
1065 			if (jDir->version < version) {
1066 				put_fl_mem(jDir);
1067 				continue;
1068 			}
1069 
1070 			if (jDir->version == version && jDirFoundType) {
1071 				/* I'm pretty sure this isn't legal */
1072 				putstr(" ** ERROR ** ");
1073 				putnstr(jDir->name, jDir->nsize);
1074 				putLabeledWord(" has dup version (resolve) = ",
1075 					version);
1076 			}
1077 
1078 			jDirFoundType = jDir->type;
1079 			jDirFoundIno = jDir->ino;
1080 			jDirFoundPino = jDir->pino;
1081 			version = jDir->version;
1082 		}
1083 		put_fl_mem(jDir);
1084 	}
1085 	/* now we found the right entry again. (shoulda returned inode*) */
1086 	if (jDirFoundType != DT_LNK)
1087 		return jDirFoundIno;
1088 
1089 	/* it's a soft link so we follow it again. */
1090 	b2 = pL->frag.listHead;
1091 	while (b2) {
1092 		jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
1093 		if (jNode->ino == jDirFoundIno) {
1094 			src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
1095 
1096 #if 0
1097 			putLabeledWord("\t\t dsize = ", jNode->dsize);
1098 			putstr("\t\t target = ");
1099 			putnstr(src, jNode->dsize);
1100 			putstr("\r\n");
1101 #endif
1102 			strncpy(tmp, (char *)src, jNode->dsize);
1103 			tmp[jNode->dsize] = '\0';
1104 			put_fl_mem(jNode);
1105 			break;
1106 		}
1107 		b2 = b2->next;
1108 		put_fl_mem(jNode);
1109 	}
1110 	/* ok so the name of the new file to find is in tmp */
1111 	/* if it starts with a slash it is root based else shared dirs */
1112 	if (tmp[0] == '/')
1113 		pino = 1;
1114 	else
1115 		pino = jDirFoundPino;
1116 
1117 	return jffs2_1pass_search_inode(pL, tmp, pino);
1118 }
1119 
1120 static u32
1121 jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1122 {
1123 	int i;
1124 	char tmp[256];
1125 	char working_tmp[256];
1126 	char *c;
1127 
1128 	/* discard any leading slash */
1129 	i = 0;
1130 	while (fname[i] == '/')
1131 		i++;
1132 	strcpy(tmp, &fname[i]);
1133 	working_tmp[0] = '\0';
1134 	while ((c = (char *) strchr(tmp, '/')))	/* we are still dired searching */
1135 	{
1136 		strncpy(working_tmp, tmp, c - tmp);
1137 		working_tmp[c - tmp] = '\0';
1138 		for (i = 0; i < strlen(c) - 1; i++)
1139 			tmp[i] = c[i + 1];
1140 		tmp[i] = '\0';
1141 		/* only a failure if we arent looking at top level */
1142 		if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1143 		    (working_tmp[0])) {
1144 			putstr("find_inode failed for name=");
1145 			putstr(working_tmp);
1146 			putstr("\r\n");
1147 			return 0;
1148 		}
1149 	}
1150 
1151 	if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1152 		putstr("find_inode failed for name=");
1153 		putstr(tmp);
1154 		putstr("\r\n");
1155 		return 0;
1156 	}
1157 	/* this is for the bare filename, directories have already been mapped */
1158 	if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1159 		putstr("find_inode failed for name=");
1160 		putstr(tmp);
1161 		putstr("\r\n");
1162 		return 0;
1163 	}
1164 	return pino;
1165 
1166 }
1167 
1168 unsigned char
1169 jffs2_1pass_rescan_needed(struct part_info *part)
1170 {
1171 	struct b_node *b;
1172 	struct jffs2_unknown_node onode;
1173 	struct jffs2_unknown_node *node;
1174 	struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
1175 
1176 	if (part->jffs2_priv == 0){
1177 		DEBUGF ("rescan: First time in use\n");
1178 		return 1;
1179 	}
1180 
1181 	/* if we have no list, we need to rescan */
1182 	if (pL->frag.listCount == 0) {
1183 		DEBUGF ("rescan: fraglist zero\n");
1184 		return 1;
1185 	}
1186 
1187 	/* but suppose someone reflashed a partition at the same offset... */
1188 	b = pL->dir.listHead;
1189 	while (b) {
1190 		node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1191 			sizeof(onode), &onode);
1192 		if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
1193 			DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1194 					(unsigned long) b->offset);
1195 			return 1;
1196 		}
1197 		b = b->next;
1198 	}
1199 	return 0;
1200 }
1201 
1202 #ifdef DEBUG_FRAGMENTS
1203 static void
1204 dump_fragments(struct b_lists *pL)
1205 {
1206 	struct b_node *b;
1207 	struct jffs2_raw_inode ojNode;
1208 	struct jffs2_raw_inode *jNode;
1209 
1210 	putstr("\r\n\r\n******The fragment Entries******\r\n");
1211 	b = pL->frag.listHead;
1212 	while (b) {
1213 		jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1214 			sizeof(ojNode), &ojNode);
1215 		putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1216 		putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1217 		putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1218 		putLabeledWord("\tbuild_list: version = ", jNode->version);
1219 		putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1220 		putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1221 		putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1222 		putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1223 		putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1224 		putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1225 		putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1226 		putLabeledWord("\tbuild_list: flags = ", jNode->flags);
1227 		putLabeledWord("\tbuild_list: offset = ", b->offset);	/* FIXME: ? [RS] */
1228 		b = b->next;
1229 	}
1230 }
1231 #endif
1232 
1233 #ifdef DEBUG_DIRENTS
1234 static void
1235 dump_dirents(struct b_lists *pL)
1236 {
1237 	struct b_node *b;
1238 	struct jffs2_raw_dirent *jDir;
1239 
1240 	putstr("\r\n\r\n******The directory Entries******\r\n");
1241 	b = pL->dir.listHead;
1242 	while (b) {
1243 		jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
1244 		putstr("\r\n");
1245 		putnstr(jDir->name, jDir->nsize);
1246 		putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1247 		putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1248 		putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1249 		putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1250 		putLabeledWord("\tbuild_list: version = ", jDir->version);
1251 		putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1252 		putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1253 		putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1254 		putLabeledWord("\tbuild_list: type = ", jDir->type);
1255 		putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1256 		putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
1257 		putLabeledWord("\tbuild_list: offset = ", b->offset);	/* FIXME: ? [RS] */
1258 		b = b->next;
1259 		put_fl_mem(jDir);
1260 	}
1261 }
1262 #endif
1263 
1264 #define min_t(type, x, y) ({                    \
1265 	type __min1 = (x);                      \
1266 	type __min2 = (y);                      \
1267 	__min1 < __min2 ? __min1: __min2; })
1268 
1269 #define DEFAULT_EMPTY_SCAN_SIZE	4096
1270 
1271 static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1272 {
1273 	if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1274 		return sector_size;
1275 	else
1276 		return DEFAULT_EMPTY_SCAN_SIZE;
1277 }
1278 
1279 static u32
1280 jffs2_1pass_build_lists(struct part_info * part)
1281 {
1282 	struct b_lists *pL;
1283 	struct jffs2_unknown_node *node;
1284 	u32 nr_sectors = part->size/part->sector_size;
1285 	u32 i;
1286 	u32 counter4 = 0;
1287 	u32 counterF = 0;
1288 	u32 counterN = 0;
1289 	u32 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
1290 	char *buf;
1291 
1292 	/* turn off the lcd.  Refreshing the lcd adds 50% overhead to the */
1293 	/* jffs2 list building enterprise nope.  in newer versions the overhead is */
1294 	/* only about 5 %.  not enough to inconvenience people for. */
1295 	/* lcd_off(); */
1296 
1297 	/* if we are building a list we need to refresh the cache. */
1298 	jffs_init_1pass_list(part);
1299 	pL = (struct b_lists *)part->jffs2_priv;
1300 	buf = malloc(buf_size);
1301 	puts ("Scanning JFFS2 FS:   ");
1302 
1303 	/* start at the beginning of the partition */
1304 	for (i = 0; i < nr_sectors; i++) {
1305 		uint32_t sector_ofs = i * part->sector_size;
1306 		uint32_t buf_ofs = sector_ofs;
1307 		uint32_t buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1308 		uint32_t ofs, prevofs;
1309 
1310 		WATCHDOG_RESET();
1311 		get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
1312 
1313 		/* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1314 		ofs = 0;
1315 
1316 		/* Scan only 4KiB of 0xFF before declaring it's empty */
1317 		while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1318 				*(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1319 			ofs += 4;
1320 
1321 		if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1322 			continue;
1323 
1324 		ofs += sector_ofs;
1325 		prevofs = ofs - 1;
1326 
1327 	scan_more:
1328 		while (ofs < sector_ofs + part->sector_size) {
1329 			if (ofs == prevofs) {
1330 				printf("offset %08x already seen, skip\n", ofs);
1331 				ofs += 4;
1332 				counter4++;
1333 				continue;
1334 			}
1335 			prevofs = ofs;
1336 			if (sector_ofs + part->sector_size <
1337 					ofs + sizeof(*node))
1338 				break;
1339 			if (buf_ofs + buf_len < ofs + sizeof(*node)) {
1340 				buf_len = min_t(uint32_t, buf_size, sector_ofs
1341 						+ part->sector_size - ofs);
1342 				get_fl_mem((u32)part->offset + ofs, buf_len,
1343 					   buf);
1344 				buf_ofs = ofs;
1345 			}
1346 
1347 			node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
1348 
1349 			if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1350 				uint32_t inbuf_ofs;
1351 				uint32_t empty_start, scan_end;
1352 
1353 				empty_start = ofs;
1354 				ofs += 4;
1355 				scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1356 							part->sector_size)/8,
1357 							buf_len);
1358 			more_empty:
1359 				inbuf_ofs = ofs - buf_ofs;
1360 				while (inbuf_ofs < scan_end) {
1361 					if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1362 							0xffffffff)
1363 						goto scan_more;
1364 
1365 					inbuf_ofs += 4;
1366 					ofs += 4;
1367 				}
1368 				/* Ran off end. */
1369 
1370 				/* See how much more there is to read in this
1371 				 * eraseblock...
1372 				 */
1373 				buf_len = min_t(uint32_t, buf_size,
1374 						sector_ofs +
1375 						part->sector_size - ofs);
1376 				if (!buf_len) {
1377 					/* No more to read. Break out of main
1378 					 * loop without marking this range of
1379 					 * empty space as dirty (because it's
1380 					 * not)
1381 					 */
1382 					break;
1383 				}
1384 				scan_end = buf_len;
1385 				get_fl_mem((u32)part->offset + ofs, buf_len,
1386 					   buf);
1387 				buf_ofs = ofs;
1388 				goto more_empty;
1389 			}
1390 			if (node->magic != JFFS2_MAGIC_BITMASK ||
1391 					!hdr_crc(node)) {
1392 				ofs += 4;
1393 				counter4++;
1394 				continue;
1395 			}
1396 			if (ofs + node->totlen >
1397 					sector_ofs + part->sector_size) {
1398 				ofs += 4;
1399 				counter4++;
1400 				continue;
1401 			}
1402 			/* if its a fragment add it */
1403 			switch (node->nodetype) {
1404 			case JFFS2_NODETYPE_INODE:
1405 				if (buf_ofs + buf_len < ofs + sizeof(struct
1406 							jffs2_raw_inode)) {
1407 					get_fl_mem((u32)part->offset + ofs,
1408 						   buf_len, buf);
1409 					buf_ofs = ofs;
1410 					node = (void *)buf;
1411 				}
1412 				if (!inode_crc((struct jffs2_raw_inode *) node))
1413 				       break;
1414 
1415 				if (insert_node(&pL->frag, (u32) part->offset +
1416 						ofs) == NULL)
1417 					return 0;
1418 				break;
1419 			case JFFS2_NODETYPE_DIRENT:
1420 				if (buf_ofs + buf_len < ofs + sizeof(struct
1421 							jffs2_raw_dirent) +
1422 							((struct
1423 							 jffs2_raw_dirent *)
1424 							node)->nsize) {
1425 					get_fl_mem((u32)part->offset + ofs,
1426 						   buf_len, buf);
1427 					buf_ofs = ofs;
1428 					node = (void *)buf;
1429 				}
1430 
1431 				if (!dirent_crc((struct jffs2_raw_dirent *)
1432 							node) ||
1433 						!dirent_name_crc(
1434 							(struct
1435 							 jffs2_raw_dirent *)
1436 							node))
1437 					break;
1438 				if (! (counterN%100))
1439 					puts ("\b\b.  ");
1440 				if (insert_node(&pL->dir, (u32) part->offset +
1441 						ofs) == NULL)
1442 					return 0;
1443 				counterN++;
1444 				break;
1445 			case JFFS2_NODETYPE_CLEANMARKER:
1446 				if (node->totlen != sizeof(struct jffs2_unknown_node))
1447 					printf("OOPS Cleanmarker has bad size "
1448 						"%d != %zu\n",
1449 						node->totlen,
1450 						sizeof(struct jffs2_unknown_node));
1451 				break;
1452 			case JFFS2_NODETYPE_PADDING:
1453 				if (node->totlen < sizeof(struct jffs2_unknown_node))
1454 					printf("OOPS Padding has bad size "
1455 						"%d < %zu\n",
1456 						node->totlen,
1457 						sizeof(struct jffs2_unknown_node));
1458 				break;
1459 			default:
1460 				printf("Unknown node type: %x len %d offset 0x%x\n",
1461 					node->nodetype,
1462 					node->totlen, ofs);
1463 			}
1464 			ofs += ((node->totlen + 3) & ~3);
1465 			counterF++;
1466 		}
1467 	}
1468 
1469 	free(buf);
1470 	putstr("\b\b done.\r\n");		/* close off the dots */
1471 	/* turn the lcd back on. */
1472 	/* splash(); */
1473 
1474 #if 0
1475 	putLabeledWord("dir entries = ", pL->dir.listCount);
1476 	putLabeledWord("frag entries = ", pL->frag.listCount);
1477 	putLabeledWord("+4 increments = ", counter4);
1478 	putLabeledWord("+file_offset increments = ", counterF);
1479 
1480 #endif
1481 
1482 #ifdef DEBUG_DIRENTS
1483 	dump_dirents(pL);
1484 #endif
1485 
1486 #ifdef DEBUG_FRAGMENTS
1487 	dump_fragments(pL);
1488 #endif
1489 
1490 	/* give visual feedback that we are done scanning the flash */
1491 	led_blink(0x0, 0x0, 0x1, 0x1);	/* off, forever, on 100ms, off 100ms */
1492 	return 1;
1493 }
1494 
1495 
1496 static u32
1497 jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1498 {
1499 	struct b_node *b;
1500 	struct jffs2_raw_inode ojNode;
1501 	struct jffs2_raw_inode *jNode;
1502 	int i;
1503 
1504 	for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1505 		piL->compr_info[i].num_frags = 0;
1506 		piL->compr_info[i].compr_sum = 0;
1507 		piL->compr_info[i].decompr_sum = 0;
1508 	}
1509 
1510 	b = pL->frag.listHead;
1511 	while (b) {
1512 		jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1513 			sizeof(ojNode), &ojNode);
1514 		if (jNode->compr < JFFS2_NUM_COMPR) {
1515 			piL->compr_info[jNode->compr].num_frags++;
1516 			piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1517 			piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1518 		}
1519 		b = b->next;
1520 	}
1521 	return 0;
1522 }
1523 
1524 
1525 static struct b_lists *
1526 jffs2_get_list(struct part_info * part, const char *who)
1527 {
1528 	/* copy requested part_info struct pointer to global location */
1529 	current_part = part;
1530 
1531 	if (jffs2_1pass_rescan_needed(part)) {
1532 		if (!jffs2_1pass_build_lists(part)) {
1533 			printf("%s: Failed to scan JFFSv2 file structure\n", who);
1534 			return NULL;
1535 		}
1536 	}
1537 	return (struct b_lists *)part->jffs2_priv;
1538 }
1539 
1540 
1541 /* Print directory / file contents */
1542 u32
1543 jffs2_1pass_ls(struct part_info * part, const char *fname)
1544 {
1545 	struct b_lists *pl;
1546 	long ret = 1;
1547 	u32 inode;
1548 
1549 	if (! (pl = jffs2_get_list(part, "ls")))
1550 		return 0;
1551 
1552 	if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1553 		putstr("ls: Failed to scan jffs2 file structure\r\n");
1554 		return 0;
1555 	}
1556 
1557 
1558 #if 0
1559 	putLabeledWord("found file at inode = ", inode);
1560 	putLabeledWord("read_inode returns = ", ret);
1561 #endif
1562 
1563 	return ret;
1564 }
1565 
1566 
1567 /* Load a file from flash into memory. fname can be a full path */
1568 u32
1569 jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1570 {
1571 
1572 	struct b_lists *pl;
1573 	long ret = 1;
1574 	u32 inode;
1575 
1576 	if (! (pl  = jffs2_get_list(part, "load")))
1577 		return 0;
1578 
1579 	if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1580 		putstr("load: Failed to find inode\r\n");
1581 		return 0;
1582 	}
1583 
1584 	/* Resolve symlinks */
1585 	if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1586 		putstr("load: Failed to resolve inode structure\r\n");
1587 		return 0;
1588 	}
1589 
1590 	if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1591 		putstr("load: Failed to read inode\r\n");
1592 		return 0;
1593 	}
1594 
1595 	DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1596 				(unsigned long) dest, ret);
1597 	return ret;
1598 }
1599 
1600 /* Return information about the fs on this partition */
1601 u32
1602 jffs2_1pass_info(struct part_info * part)
1603 {
1604 	struct b_jffs2_info info;
1605 	struct b_lists *pl;
1606 	int i;
1607 
1608 	if (! (pl  = jffs2_get_list(part, "info")))
1609 		return 0;
1610 
1611 	jffs2_1pass_fill_info(pl, &info);
1612 	for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1613 		printf ("Compression: %s\n"
1614 			"\tfrag count: %d\n"
1615 			"\tcompressed sum: %d\n"
1616 			"\tuncompressed sum: %d\n",
1617 			compr_names[i],
1618 			info.compr_info[i].num_frags,
1619 			info.compr_info[i].compr_sum,
1620 			info.compr_info[i].decompr_sum);
1621 	}
1622 	return 1;
1623 }
1624