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