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