blob: a025116b7f0fc8ecd7db85fdd372e0b5bc02ae6a [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2-------------------------------------------------------------------------
3 * Filename: jffs2.c
4 * Version: $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
5 * Copyright: Copyright (C) 2001, Russ Dill
6 * Author: Russ Dill <Russ.Dill@asu.edu>
7 * Description: Module to load kernel from jffs2
8 *-----------------------------------------------------------------------*/
9/*
10 * some portions of this code are taken from jffs2, and as such, the
11 * following copyright notice is included.
12 *
13 * JFFS2 -- Journalling Flash File System, Version 2.
14 *
15 * Copyright (C) 2001 Red Hat, Inc.
16 *
17 * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
18 *
19 * The original JFFS, from which the design for JFFS2 was derived,
20 * was designed and implemented by Axis Communications AB.
21 *
22 * The contents of this file are subject to the Red Hat eCos Public
23 * License Version 1.1 (the "Licence"); you may not use this file
24 * except in compliance with the Licence. You may obtain a copy of
25 * the Licence at http://www.redhat.com/
26 *
27 * Software distributed under the Licence is distributed on an "AS IS"
28 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
29 * See the Licence for the specific language governing rights and
30 * limitations under the Licence.
31 *
32 * The Original Code is JFFS2 - Journalling Flash File System, version 2
33 *
34 * Alternatively, the contents of this file may be used under the
35 * terms of the GNU General Public License version 2 (the "GPL"), in
36 * which case the provisions of the GPL are applicable instead of the
37 * above. If you wish to allow the use of your version of this file
38 * only under the terms of the GPL and not to allow others to use your
39 * version of this file under the RHEPL, indicate your decision by
40 * deleting the provisions above and replace them with the notice and
41 * other provisions required by the GPL. If you do not delete the
42 * provisions above, a recipient may use your version of this file
43 * under either the RHEPL or the GPL.
44 *
45 * $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
46 *
47 */
48
49/* Ok, so anyone who knows the jffs2 code will probably want to get a papar
50 * bag to throw up into before reading this code. I looked through the jffs2
51 * code, the caching scheme is very elegant. I tried to keep the version
52 * for a bootloader as small and simple as possible. Instead of worring about
53 * unneccesary data copies, node scans, etc, I just optimized for the known
54 * common case, a kernel, which looks like:
55 * (1) most pages are 4096 bytes
56 * (2) version numbers are somewhat sorted in acsending order
57 * (3) multiple compressed blocks making up one page is uncommon
58 *
59 * So I create a linked list of decending version numbers (insertions at the
60 * head), and then for each page, walk down the list, until a matching page
61 * with 4096 bytes is found, and then decompress the watching pages in
62 * reverse order.
63 *
64 */
65
66/*
67 * Adapted by Nye Liu <nyet@zumanetworks.com> and
68 * Rex Feany <rfeany@zumanetworks.com>
69 * on Jan/2002 for U-Boot.
70 *
71 * Clipped out all the non-1pass functions, cleaned up warnings,
72 * wrappers, etc. No major changes to the code.
73 * Please, he really means it when he said have a paper bag
74 * handy. We needed it ;).
75 *
76 */
77
wdenk06d01db2003-03-14 20:47:52 +000078/*
79 * Bugfixing by Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>, (C) Mar/2003
80 *
81 * - overhaul of the memory management. Removed much of the "paper-bagging"
82 * in that part of the code, fixed several bugs, now frees memory when
83 * partition is changed.
84 * It's still ugly :-(
85 * - fixed a bug in jffs2_1pass_read_inode where the file length calculation
86 * was incorrect. Removed a bit of the paper-bagging as well.
87 * - removed double crc calculation for fragment headers in jffs2_private.h
88 * for speedup.
89 * - scan_empty rewritten in a more "standard" manner (non-paperbag, that is).
90 * - spinning wheel now spins depending on how much memory has been scanned
91 * - lots of small changes all over the place to "improve" readability.
92 * - implemented fragment sorting to ensure that the newest data is copied
93 * if there are multiple copies of fragments for a certain file offset.
94 *
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
wdenkdd875c72004-01-03 21:24:46 +0000109 * might be incompatible with any new code from the jffs2 maintainers anyway,
110 * it should probably be dumped and replaced by something like jffs2reader!
wdenk06d01db2003-03-14 20:47:52 +0000111 */
112
113
wdenkfe8c2802002-11-03 00:38:21 +0000114#include <common.h>
115#include <config.h>
116#include <malloc.h>
117#include <linux/stat.h>
118#include <linux/time.h>
119
120#if (CONFIG_COMMANDS & CFG_CMD_JFFS2)
121
122#include <jffs2/jffs2.h>
123#include <jffs2/jffs2_1pass.h>
124
125#include "jffs2_private.h"
126
wdenkfe8c2802002-11-03 00:38:21 +0000127
wdenk06d01db2003-03-14 20:47:52 +0000128#define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */
wdenkfc1cfcd2004-04-25 15:41:35 +0000129#define SPIN_BLKSIZE 18 /* spin after having scanned 1<<BLKSIZE bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000130
wdenk06d01db2003-03-14 20:47:52 +0000131/* Debugging switches */
132#undef DEBUG_DIRENTS /* print directory entry list after scan */
133#undef DEBUG_FRAGMENTS /* print fragment list after scan */
134#undef DEBUG /* enable debugging messages */
135
136
wdenkfe8c2802002-11-03 00:38:21 +0000137#ifdef DEBUG
138# define DEBUGF(fmt,args...) printf(fmt ,##args)
139#else
140# define DEBUGF(fmt,args...)
141#endif
142
wdenk998eaae2004-04-18 19:43:36 +0000143#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
144
145/*
146 * Support for jffs2 on top of NAND-flash
147 *
148 * NAND memory isn't mapped in processor's address space,
149 * so data should be fetched from flash before
150 * being processed. This is exactly what functions declared
151 * here do.
152 *
153 */
154
155/* this one defined in cmd_nand.c */
156int read_jffs2_nand(size_t start, size_t len,
157 size_t * retlen, u_char * buf, int nanddev);
158
159#define NAND_PAGE_SIZE 512
160#define NAND_PAGE_SHIFT 9
161#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
162
163#ifndef NAND_CACHE_PAGES
164#define NAND_CACHE_PAGES 16
165#endif
166#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
167
168static u8* nand_cache = NULL;
169static u32 nand_cache_off = (u32)-1;
170static int nanddev = 0; /* nand device of current partition */
171
172static int read_nand_cached(u32 off, u32 size, u_char *buf)
173{
174 u32 bytes_read = 0;
175 size_t retlen;
176 int cpy_bytes;
177
178 while (bytes_read < size) {
179 if ((off + bytes_read < nand_cache_off) ||
180 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
181 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
182 if (!nand_cache) {
183 /* This memory never gets freed but 'cause
184 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000185 nand_cache = malloc(NAND_CACHE_SIZE);
186 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000187 printf("read_nand_cached: can't alloc cache size %d bytes\n",
188 NAND_CACHE_SIZE);
189 return -1;
190 }
191 }
192 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
193 &retlen, nand_cache, nanddev) < 0 ||
194 retlen != NAND_CACHE_SIZE) {
195 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
196 nand_cache_off, NAND_CACHE_SIZE);
197 return -1;
198 }
199 }
200 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
201 if (cpy_bytes > size - bytes_read)
202 cpy_bytes = size - bytes_read;
203 memcpy(buf + bytes_read,
204 nand_cache + off + bytes_read - nand_cache_off,
205 cpy_bytes);
206 bytes_read += cpy_bytes;
207 }
208 return bytes_read;
209}
210
211static void *get_fl_mem(u32 off, u32 size, void *ext_buf)
212{
213 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
214
215 if (NULL == buf) {
216 printf("get_fl_mem: can't alloc %d bytes\n", size);
217 return NULL;
218 }
219 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000220 if (!ext_buf)
221 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000222 return NULL;
223 }
224
225 return buf;
226}
227
228static void *get_node_mem(u32 off)
229{
230 struct jffs2_unknown_node node;
231 void *ret = NULL;
232
233 if (NULL == get_fl_mem(off, sizeof(node), &node))
234 return NULL;
235
236 if (!(ret = get_fl_mem(off, node.magic ==
237 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
238 NULL))) {
239 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
240 off, node.magic, node.nodetype, node.totlen);
241 }
242 return ret;
243}
244
wdenk507bbe32004-04-18 21:13:41 +0000245static void put_fl_mem(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000246{
247 free(buf);
248}
249
250#else /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
251
252static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
253{
254 return (void*)off;
255}
256
257static inline void *get_node_mem(u32 off)
258{
259 return (void*)off;
260}
261
wdenk507bbe32004-04-18 21:13:41 +0000262static inline void put_fl_mem(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000263{
264}
265
266#endif /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
267
wdenkfe8c2802002-11-03 00:38:21 +0000268
wdenk06d01db2003-03-14 20:47:52 +0000269/* Compression names */
270static char *compr_names[] = {
271 "NONE",
272 "ZERO",
273 "RTIME",
274 "RUBINMIPS",
275 "COPY",
276 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000277 "ZLIB",
278#if defined(CONFIG_JFFS2_LZO)
279 "LZO",
280#endif
281#if defined(CONFIG_JFFS2_LZARI)
282 "LZARI",
283#endif
wdenk06d01db2003-03-14 20:47:52 +0000284};
285
286/* Spinning wheel */
287static char spinner[] = { '|', '/', '-', '\\' };
288
289/* Memory management */
290struct mem_block {
291 u32 index;
292 struct mem_block *next;
293 struct b_node nodes[NODE_CHUNK];
294};
295
296
297static void
298free_nodes(struct b_list *list)
299{
300 while (list->listMemBase != NULL) {
301 struct mem_block *next = list->listMemBase->next;
302 free( list->listMemBase );
303 list->listMemBase = next;
304 }
305}
wdenkfe8c2802002-11-03 00:38:21 +0000306
307static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000308add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000309{
wdenk06d01db2003-03-14 20:47:52 +0000310 u32 index = 0;
311 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000312 struct b_node *b;
313
wdenk06d01db2003-03-14 20:47:52 +0000314 memBase = list->listMemBase;
315 if (memBase != NULL)
316 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000317#if 0
318 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000319 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000320#endif
321
wdenk06d01db2003-03-14 20:47:52 +0000322 if (memBase == NULL || index >= NODE_CHUNK) {
323 /* we need more space before we continue */
324 memBase = mmalloc(sizeof(struct mem_block));
325 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000326 putstr("add_node: malloc failed\n");
327 return NULL;
328 }
wdenk06d01db2003-03-14 20:47:52 +0000329 memBase->next = list->listMemBase;
330 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000331#if 0
332 putLabeledWord("add_node: alloced a new membase at ", *memBase);
333#endif
334
335 }
336 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000337 b = &memBase->nodes[index];
338 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000339
wdenk06d01db2003-03-14 20:47:52 +0000340 memBase->index = index;
341 list->listMemBase = memBase;
342 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000343 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000344}
345
wdenk06d01db2003-03-14 20:47:52 +0000346static struct b_node *
347insert_node(struct b_list *list, u32 offset)
348{
349 struct b_node *new;
350#ifdef CFG_JFFS2_SORT_FRAGMENTS
351 struct b_node *b, *prev;
352#endif
353
354 if (!(new = add_node(list))) {
355 putstr("add_node failed!\r\n");
356 return NULL;
357 }
358 new->offset = offset;
359
360#ifdef CFG_JFFS2_SORT_FRAGMENTS
361 if (list->listTail != NULL && list->listCompare(new, list->listTail))
362 prev = list->listTail;
363 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
364 prev = list->listLast;
365 else
366 prev = NULL;
367
368 for (b = (prev ? prev->next : list->listHead);
369 b != NULL && list->listCompare(new, b);
370 prev = b, b = b->next) {
371 list->listLoops++;
372 }
373 if (b != NULL)
374 list->listLast = prev;
375
376 if (b != NULL) {
377 new->next = b;
378 if (prev != NULL)
379 prev->next = new;
380 else
381 list->listHead = new;
382 } else
383#endif
384 {
385 new->next = (struct b_node *) NULL;
386 if (list->listTail != NULL) {
387 list->listTail->next = new;
388 list->listTail = new;
389 } else {
390 list->listTail = list->listHead = new;
391 }
392 }
393
394 return new;
395}
396
397#ifdef CFG_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000398/* Sort data entries with the latest version last, so that if there
399 * is overlapping data the latest version will be used.
400 */
wdenk06d01db2003-03-14 20:47:52 +0000401static int compare_inodes(struct b_node *new, struct b_node *old)
402{
wdenk998eaae2004-04-18 19:43:36 +0000403 struct jffs2_raw_inode ojNew;
404 struct jffs2_raw_inode ojOld;
405 struct jffs2_raw_inode *jNew =
406 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
407 struct jffs2_raw_inode *jOld =
408 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000409
wdenk7205e402003-09-10 22:30:53 +0000410 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000411}
412
wdenk7205e402003-09-10 22:30:53 +0000413/* Sort directory entries so all entries in the same directory
414 * with the same name are grouped together, with the latest version
415 * last. This makes it easy to eliminate all but the latest version
416 * by marking the previous version dead by setting the inode to 0.
417 */
wdenk06d01db2003-03-14 20:47:52 +0000418static int compare_dirents(struct b_node *new, struct b_node *old)
419{
wdenk998eaae2004-04-18 19:43:36 +0000420 struct jffs2_raw_dirent ojNew;
421 struct jffs2_raw_dirent ojOld;
422 struct jffs2_raw_dirent *jNew =
423 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000424 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000425 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000426 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000427
wdenk7205e402003-09-10 22:30:53 +0000428 /* ascending sort by pino */
429 if (jNew->pino != jOld->pino)
430 return jNew->pino > jOld->pino;
431
432 /* pino is the same, so use ascending sort by nsize, so
433 * we don't do strncmp unless we really must.
434 */
435 if (jNew->nsize != jOld->nsize)
436 return jNew->nsize > jOld->nsize;
437
438 /* length is also the same, so use ascending sort by name
439 */
440 cmp = strncmp(jNew->name, jOld->name, jNew->nsize);
441 if (cmp != 0)
442 return cmp > 0;
443
444 /* we have duplicate names in this directory, so use ascending
445 * sort by version
446 */
447 if (jNew->version > jOld->version) {
448 /* since jNew is newer, we know jOld is not valid, so
449 * mark it with inode 0 and it will not be used
450 */
451 jOld->ino = 0;
452 return 1;
453 }
wdenk42d1f032003-10-15 23:53:47 +0000454
wdenk7205e402003-09-10 22:30:53 +0000455 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000456}
457#endif
wdenkfe8c2802002-11-03 00:38:21 +0000458
459static u32
460jffs2_scan_empty(u32 start_offset, struct part_info *part)
461{
wdenk06d01db2003-03-14 20:47:52 +0000462 char *max = part->offset + part->size - sizeof(struct jffs2_raw_inode);
463 char *offset = part->offset + start_offset;
wdenk998eaae2004-04-18 19:43:36 +0000464 u32 off;
wdenkfe8c2802002-11-03 00:38:21 +0000465
wdenk998eaae2004-04-18 19:43:36 +0000466 while (offset < max &&
467 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
wdenk06d01db2003-03-14 20:47:52 +0000468 offset += sizeof(u32);
469 /* return if spinning is due */
470 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
wdenkfe8c2802002-11-03 00:38:21 +0000471 }
wdenkfc1cfcd2004-04-25 15:41:35 +0000472
wdenk06d01db2003-03-14 20:47:52 +0000473 return offset - part->offset;
wdenkfe8c2802002-11-03 00:38:21 +0000474}
475
476static u32
477jffs_init_1pass_list(struct part_info *part)
478{
wdenk06d01db2003-03-14 20:47:52 +0000479 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000480
wdenk06d01db2003-03-14 20:47:52 +0000481 if (part->jffs2_priv != NULL) {
482 pL = (struct b_lists *)part->jffs2_priv;
483 free_nodes(&pL->frag);
484 free_nodes(&pL->dir);
485 free(pL);
486 }
487 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
488 pL = (struct b_lists *)part->jffs2_priv;
489
490 memset(pL, 0, sizeof(*pL));
491#ifdef CFG_JFFS2_SORT_FRAGMENTS
492 pL->dir.listCompare = compare_dirents;
493 pL->frag.listCompare = compare_inodes;
494#endif
wdenkfe8c2802002-11-03 00:38:21 +0000495 }
496 return 0;
497}
498
499/* find the inode from the slashless name given a parent */
500static long
501jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
502{
503 struct b_node *b;
504 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000505 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000506 u32 latestVersion = 0;
wdenk06d01db2003-03-14 20:47:52 +0000507 char *lDest;
wdenkfe8c2802002-11-03 00:38:21 +0000508 char *src;
509 long ret;
510 int i;
511 u32 counter = 0;
wdenk7205e402003-09-10 22:30:53 +0000512#ifdef CFG_JFFS2_SORT_FRAGMENTS
513 /* Find file size before loading any data, so fragments that
514 * start past the end of file can be ignored. A fragment
515 * that is partially in the file is loaded, so extra data may
516 * be loaded up to the next 4K boundary above the file size.
517 * This shouldn't cause trouble when loading kernel images, so
518 * we will live with it.
519 */
520 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000521 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
wdenk998eaae2004-04-18 19:43:36 +0000522 sizeof(struct jffs2_raw_inode), NULL);
wdenk7205e402003-09-10 22:30:53 +0000523 if ((inode == jNode->ino)) {
524 /* get actual file length from the newest node */
525 if (jNode->version >= latestVersion) {
526 totalSize = jNode->isize;
527 latestVersion = jNode->version;
528 }
529 }
wdenk998eaae2004-04-18 19:43:36 +0000530 put_fl_mem(jNode);
wdenk7205e402003-09-10 22:30:53 +0000531 }
532#endif
wdenkfe8c2802002-11-03 00:38:21 +0000533
wdenk06d01db2003-03-14 20:47:52 +0000534 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000535 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000536 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000537#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000538 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
539 putLabeledWord("read_inode: inode = ", jNode->ino);
540 putLabeledWord("read_inode: version = ", jNode->version);
541 putLabeledWord("read_inode: isize = ", jNode->isize);
542 putLabeledWord("read_inode: offset = ", jNode->offset);
543 putLabeledWord("read_inode: csize = ", jNode->csize);
544 putLabeledWord("read_inode: dsize = ", jNode->dsize);
545 putLabeledWord("read_inode: compr = ", jNode->compr);
546 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
547 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000548#endif
wdenk7205e402003-09-10 22:30:53 +0000549
550#ifndef CFG_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000551 /* get actual file length from the newest node */
552 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000553 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000554 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000555 }
wdenk7205e402003-09-10 22:30:53 +0000556#endif
wdenkfe8c2802002-11-03 00:38:21 +0000557
558 if(dest) {
559 src = ((char *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000560 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000561 if (jNode->offset > totalSize) {
562 put_fl_mem(jNode);
wdenk06d01db2003-03-14 20:47:52 +0000563 continue;
wdenk998eaae2004-04-18 19:43:36 +0000564 }
wdenk06d01db2003-03-14 20:47:52 +0000565
wdenkfe8c2802002-11-03 00:38:21 +0000566 lDest = (char *) (dest + jNode->offset);
567#if 0
wdenk06d01db2003-03-14 20:47:52 +0000568 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000569 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000570#endif
571 switch (jNode->compr) {
572 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000573 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
574 break;
575 case JFFS2_COMPR_ZERO:
576 ret = 0;
577 for (i = 0; i < jNode->dsize; i++)
578 *(lDest++) = 0;
579 break;
580 case JFFS2_COMPR_RTIME:
581 ret = 0;
582 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
583 break;
584 case JFFS2_COMPR_DYNRUBIN:
585 /* this is slow but it works */
586 ret = 0;
587 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
588 break;
589 case JFFS2_COMPR_ZLIB:
590 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
591 break;
wdenk07cc0992005-05-05 00:04:14 +0000592#if defined(CONFIG_JFFS2_LZARI)
593 case JFFS2_COMPR_LZARI:
594 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
595 break;
596#endif
597#if defined(CONFIG_JFFS2_LZO)
598 case JFFS2_COMPR_LZO:
599 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
600 break;
601#endif
wdenkfe8c2802002-11-03 00:38:21 +0000602 default:
603 /* unknown */
604 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
wdenk998eaae2004-04-18 19:43:36 +0000605 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000606 return -1;
607 break;
608 }
609 }
610
wdenkfe8c2802002-11-03 00:38:21 +0000611#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000612 putLabeledWord("read_inode: totalSize = ", totalSize);
613 putLabeledWord("read_inode: compr ret = ", ret);
614#endif
615 }
wdenkfe8c2802002-11-03 00:38:21 +0000616 counter++;
wdenk998eaae2004-04-18 19:43:36 +0000617 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000618 }
wdenkfe8c2802002-11-03 00:38:21 +0000619
620#if 0
wdenk06d01db2003-03-14 20:47:52 +0000621 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000622#endif
wdenk06d01db2003-03-14 20:47:52 +0000623 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000624}
625
626/* find the inode from the slashless name given a parent */
627static u32
628jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
629{
630 struct b_node *b;
631 struct jffs2_raw_dirent *jDir;
632 int len;
633 u32 counter;
634 u32 version = 0;
635 u32 inode = 0;
636
637 /* name is assumed slash free */
638 len = strlen(name);
639
640 counter = 0;
641 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000642 for(b = pL->dir.listHead; b; b = b->next, counter++) {
wdenk998eaae2004-04-18 19:43:36 +0000643 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000644 if ((pino == jDir->pino) && (len == jDir->nsize) &&
645 (jDir->ino) && /* 0 for unlink */
wdenkfe8c2802002-11-03 00:38:21 +0000646 (!strncmp(jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000647 if (jDir->version < version) {
648 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000649 continue;
wdenk998eaae2004-04-18 19:43:36 +0000650 }
wdenkfe8c2802002-11-03 00:38:21 +0000651
wdenk7205e402003-09-10 22:30:53 +0000652 if (jDir->version == version && inode != 0) {
653 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000654 putstr(" ** ERROR ** ");
655 putnstr(jDir->name, jDir->nsize);
656 putLabeledWord(" has dup version =", version);
657 }
658 inode = jDir->ino;
659 version = jDir->version;
660 }
661#if 0
662 putstr("\r\nfind_inode:p&l ->");
663 putnstr(jDir->name, jDir->nsize);
664 putstr("\r\n");
665 putLabeledWord("pino = ", jDir->pino);
666 putLabeledWord("nsize = ", jDir->nsize);
667 putLabeledWord("b = ", (u32) b);
668 putLabeledWord("counter = ", counter);
669#endif
wdenk998eaae2004-04-18 19:43:36 +0000670 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000671 }
672 return inode;
673}
674
wdenk180d3f72004-01-04 16:28:35 +0000675char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000676{
wdenk06d01db2003-03-14 20:47:52 +0000677 static const char *l = "xwr";
678 int mask = 1, i;
679 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000680
wdenk06d01db2003-03-14 20:47:52 +0000681 switch (mode & S_IFMT) {
682 case S_IFDIR: str[0] = 'd'; break;
683 case S_IFBLK: str[0] = 'b'; break;
684 case S_IFCHR: str[0] = 'c'; break;
685 case S_IFIFO: str[0] = 'f'; break;
686 case S_IFLNK: str[0] = 'l'; break;
687 case S_IFSOCK: str[0] = 's'; break;
688 case S_IFREG: str[0] = '-'; break;
689 default: str[0] = '?';
690 }
wdenkfe8c2802002-11-03 00:38:21 +0000691
wdenk06d01db2003-03-14 20:47:52 +0000692 for(i = 0; i < 9; i++) {
693 c = l[i%3];
694 str[9-i] = (mode & mask)?c:'-';
695 mask = mask<<1;
696 }
wdenkfe8c2802002-11-03 00:38:21 +0000697
wdenk06d01db2003-03-14 20:47:52 +0000698 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
699 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
700 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
701 str[10] = '\0';
702 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000703}
704
705static inline void dump_stat(struct stat *st, const char *name)
706{
wdenk06d01db2003-03-14 20:47:52 +0000707 char str[20];
708 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000709
wdenk06d01db2003-03-14 20:47:52 +0000710 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
711 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000712
wdenk06d01db2003-03-14 20:47:52 +0000713 ctime_r(&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000714
wdenk06d01db2003-03-14 20:47:52 +0000715 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
716 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000717
718/*
wdenk06d01db2003-03-14 20:47:52 +0000719 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
720 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000721*/
722
wdenk06d01db2003-03-14 20:47:52 +0000723 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000724}
725
726static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
727{
728 char fname[256];
729 struct stat st;
730
731 if(!d || !i) return -1;
732
733 strncpy(fname, d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000734 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000735
736 memset(&st,0,sizeof(st));
737
wdenk06d01db2003-03-14 20:47:52 +0000738 st.st_mtime = i->mtime;
739 st.st_mode = i->mode;
740 st.st_ino = i->ino;
wdenkfe8c2802002-11-03 00:38:21 +0000741
742 /* neither dsize nor isize help us.. do it the long way */
wdenk06d01db2003-03-14 20:47:52 +0000743 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000744
745 dump_stat(&st, fname);
746
747 if (d->type == DT_LNK) {
748 unsigned char *src = (unsigned char *) (&i[1]);
749 putstr(" -> ");
750 putnstr(src, (int)i->dsize);
751 }
752
753 putstr("\r\n");
754
755 return 0;
756}
757
758/* list inodes with the given pino */
759static u32
760jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
761{
762 struct b_node *b;
763 struct jffs2_raw_dirent *jDir;
764
wdenk06d01db2003-03-14 20:47:52 +0000765 for (b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000766 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000767 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
768 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000769 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000770 struct jffs2_raw_inode *jNode, *i = NULL;
771 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000772
773 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000774 jNode = (struct jffs2_raw_inode *)
775 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000776 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
777 if (i)
wdenk02b11f82004-05-12 22:54:36 +0000778 put_fl_mem(i);
wdenkcf8bc572005-05-04 23:50:54 +0000779
780 if (jDir->type == DT_LNK)
781 i = get_node_mem(b2->offset);
782 else
783 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
wdenk32877d62004-05-05 19:44:41 +0000784 }
wdenkfe8c2802002-11-03 00:38:21 +0000785 b2 = b2->next;
786 }
787
788 dump_inode(pL, jDir, i);
wdenk998eaae2004-04-18 19:43:36 +0000789 put_fl_mem(i);
wdenkfe8c2802002-11-03 00:38:21 +0000790 }
wdenk998eaae2004-04-18 19:43:36 +0000791 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000792 }
793 return pino;
794}
795
796static u32
797jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
798{
799 int i;
800 char tmp[256];
801 char working_tmp[256];
802 char *c;
803
804 /* discard any leading slash */
805 i = 0;
806 while (fname[i] == '/')
807 i++;
808 strcpy(tmp, &fname[i]);
809
810 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
811 {
812 strncpy(working_tmp, tmp, c - tmp);
813 working_tmp[c - tmp] = '\0';
814#if 0
815 putstr("search_inode: tmp = ");
816 putstr(tmp);
817 putstr("\r\n");
818 putstr("search_inode: wtmp = ");
819 putstr(working_tmp);
820 putstr("\r\n");
821 putstr("search_inode: c = ");
822 putstr(c);
823 putstr("\r\n");
824#endif
825 for (i = 0; i < strlen(c) - 1; i++)
826 tmp[i] = c[i + 1];
827 tmp[i] = '\0';
828#if 0
829 putstr("search_inode: post tmp = ");
830 putstr(tmp);
831 putstr("\r\n");
832#endif
833
834 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
835 putstr("find_inode failed for name=");
836 putstr(working_tmp);
837 putstr("\r\n");
838 return 0;
839 }
840 }
841 /* this is for the bare filename, directories have already been mapped */
842 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
843 putstr("find_inode failed for name=");
844 putstr(tmp);
845 putstr("\r\n");
846 return 0;
847 }
848 return pino;
849
850}
851
852static u32
853jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
854{
855 struct b_node *b;
856 struct b_node *b2;
857 struct jffs2_raw_dirent *jDir;
858 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +0000859 u8 jDirFoundType = 0;
860 u32 jDirFoundIno = 0;
861 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000862 char tmp[256];
863 u32 version = 0;
864 u32 pino;
865 unsigned char *src;
866
867 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000868 for(b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000869 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000870 if (ino == jDir->ino) {
wdenk998eaae2004-04-18 19:43:36 +0000871 if (jDir->version < version) {
872 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000873 continue;
wdenk998eaae2004-04-18 19:43:36 +0000874 }
wdenkfe8c2802002-11-03 00:38:21 +0000875
wdenk998eaae2004-04-18 19:43:36 +0000876 if (jDir->version == version && jDirFoundType) {
wdenk7205e402003-09-10 22:30:53 +0000877 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000878 putstr(" ** ERROR ** ");
879 putnstr(jDir->name, jDir->nsize);
880 putLabeledWord(" has dup version (resolve) = ",
881 version);
882 }
883
wdenk998eaae2004-04-18 19:43:36 +0000884 jDirFoundType = jDir->type;
885 jDirFoundIno = jDir->ino;
886 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +0000887 version = jDir->version;
888 }
wdenk998eaae2004-04-18 19:43:36 +0000889 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000890 }
891 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +0000892 if (jDirFoundType != DT_LNK)
893 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +0000894
895 /* it's a soft link so we follow it again. */
896 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000897 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000898 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
899 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +0000900 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +0000901
902#if 0
903 putLabeledWord("\t\t dsize = ", jNode->dsize);
904 putstr("\t\t target = ");
905 putnstr(src, jNode->dsize);
906 putstr("\r\n");
907#endif
908 strncpy(tmp, src, jNode->dsize);
909 tmp[jNode->dsize] = '\0';
wdenk998eaae2004-04-18 19:43:36 +0000910 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000911 break;
912 }
913 b2 = b2->next;
wdenk998eaae2004-04-18 19:43:36 +0000914 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000915 }
916 /* ok so the name of the new file to find is in tmp */
917 /* if it starts with a slash it is root based else shared dirs */
918 if (tmp[0] == '/')
919 pino = 1;
920 else
wdenk998eaae2004-04-18 19:43:36 +0000921 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +0000922
923 return jffs2_1pass_search_inode(pL, tmp, pino);
924}
925
926static u32
927jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
928{
929 int i;
930 char tmp[256];
931 char working_tmp[256];
932 char *c;
933
934 /* discard any leading slash */
935 i = 0;
936 while (fname[i] == '/')
937 i++;
938 strcpy(tmp, &fname[i]);
939 working_tmp[0] = '\0';
940 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
941 {
942 strncpy(working_tmp, tmp, c - tmp);
943 working_tmp[c - tmp] = '\0';
944 for (i = 0; i < strlen(c) - 1; i++)
945 tmp[i] = c[i + 1];
946 tmp[i] = '\0';
947 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +0000948 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
949 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +0000950 putstr("find_inode failed for name=");
951 putstr(working_tmp);
952 putstr("\r\n");
953 return 0;
954 }
955 }
956
957 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
958 putstr("find_inode failed for name=");
959 putstr(tmp);
960 putstr("\r\n");
961 return 0;
962 }
963 /* this is for the bare filename, directories have already been mapped */
964 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
965 putstr("find_inode failed for name=");
966 putstr(tmp);
967 putstr("\r\n");
968 return 0;
969 }
970 return pino;
971
972}
973
974unsigned char
975jffs2_1pass_rescan_needed(struct part_info *part)
976{
977 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +0000978 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +0000979 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +0000980 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +0000981
982 if (part->jffs2_priv == 0){
983 DEBUGF ("rescan: First time in use\n");
984 return 1;
985 }
986 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +0000987 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +0000988 DEBUGF ("rescan: fraglist zero\n");
989 return 1;
990 }
991
wdenk06d01db2003-03-14 20:47:52 +0000992 /* or if we are scanning a new partition */
wdenkfe8c2802002-11-03 00:38:21 +0000993 if (pL->partOffset != part->offset) {
994 DEBUGF ("rescan: different partition\n");
995 return 1;
996 }
wdenk998eaae2004-04-18 19:43:36 +0000997
998#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
999 if (nanddev != (int)part->usr_priv - 1) {
1000 DEBUGF ("rescan: nand device changed\n");
1001 return -1;
1002 }
1003#endif /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
1004
wdenk06d01db2003-03-14 20:47:52 +00001005 /* but suppose someone reflashed a partition at the same offset... */
1006 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001007 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001008 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1009 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001010 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001011 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1012 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001013 return 1;
1014 }
1015 b = b->next;
1016 }
1017 return 0;
1018}
1019
wdenk06d01db2003-03-14 20:47:52 +00001020#ifdef DEBUG_FRAGMENTS
1021static void
1022dump_fragments(struct b_lists *pL)
1023{
1024 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001025 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001026 struct jffs2_raw_inode *jNode;
1027
1028 putstr("\r\n\r\n******The fragment Entries******\r\n");
1029 b = pL->frag.listHead;
1030 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001031 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1032 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001033 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1034 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1035 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1036 putLabeledWord("\tbuild_list: version = ", jNode->version);
1037 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1038 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1039 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1040 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1041 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1042 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1043 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1044 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001045 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001046 b = b->next;
1047 }
1048}
1049#endif
1050
1051#ifdef DEBUG_DIRENTS
1052static void
1053dump_dirents(struct b_lists *pL)
1054{
1055 struct b_node *b;
1056 struct jffs2_raw_dirent *jDir;
1057
1058 putstr("\r\n\r\n******The directory Entries******\r\n");
1059 b = pL->dir.listHead;
1060 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001061 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +00001062 putstr("\r\n");
1063 putnstr(jDir->name, jDir->nsize);
1064 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1065 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1066 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1067 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1068 putLabeledWord("\tbuild_list: version = ", jDir->version);
1069 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1070 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1071 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1072 putLabeledWord("\tbuild_list: type = ", jDir->type);
1073 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1074 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
wdenk8bde7f72003-06-27 21:31:46 +00001075 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001076 b = b->next;
wdenk998eaae2004-04-18 19:43:36 +00001077 put_fl_mem(jDir);
wdenk06d01db2003-03-14 20:47:52 +00001078 }
1079}
1080#endif
1081
wdenkfe8c2802002-11-03 00:38:21 +00001082static u32
1083jffs2_1pass_build_lists(struct part_info * part)
1084{
1085 struct b_lists *pL;
1086 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001087 u32 offset, oldoffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001088 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1089 u32 counter = 0;
1090 u32 counter4 = 0;
1091 u32 counterF = 0;
1092 u32 counterN = 0;
1093
wdenk998eaae2004-04-18 19:43:36 +00001094#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
1095 nanddev = (int)part->usr_priv - 1;
1096#endif /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
1097
wdenkfe8c2802002-11-03 00:38:21 +00001098 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1099 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1100 /* only about 5 %. not enough to inconvenience people for. */
1101 /* lcd_off(); */
1102
1103 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001104 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001105 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001106 pL->partOffset = part->offset;
1107 offset = 0;
wdenk4b9206e2004-03-23 22:14:11 +00001108 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001109
1110 /* start at the beginning of the partition */
1111 while (offset < max) {
wdenk06d01db2003-03-14 20:47:52 +00001112 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
1113 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1114 oldoffset = offset;
1115 }
wdenk0b8fa032004-04-25 14:37:29 +00001116
wdenkfc1cfcd2004-04-25 15:41:35 +00001117 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
1118 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
1119 /* if its a fragment add it */
1120 if (node->nodetype == JFFS2_NODETYPE_INODE &&
wdenk06d01db2003-03-14 20:47:52 +00001121 inode_crc((struct jffs2_raw_inode *) node)) {
1122 if (insert_node(&pL->frag, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001123 offset) == NULL) {
1124 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001125 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001126 }
wdenkfe8c2802002-11-03 00:38:21 +00001127 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1128 dirent_crc((struct jffs2_raw_dirent *) node) &&
1129 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
wdenkfc1cfcd2004-04-25 15:41:35 +00001130 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001131 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001132 if (insert_node(&pL->dir, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001133 offset) == NULL) {
1134 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001135 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001136 }
wdenkfe8c2802002-11-03 00:38:21 +00001137 counterN++;
1138 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1139 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001140 printf("OOPS Cleanmarker has bad size "
1141 "%d != %d\n", node->totlen,
1142 sizeof(struct jffs2_unknown_node));
wdenk7205e402003-09-10 22:30:53 +00001143 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1144 if (node->totlen < sizeof(struct jffs2_unknown_node))
1145 printf("OOPS Padding has bad size "
1146 "%d < %d\n", node->totlen,
1147 sizeof(struct jffs2_unknown_node));
wdenkfe8c2802002-11-03 00:38:21 +00001148 } else {
wdenkfc1cfcd2004-04-25 15:41:35 +00001149 printf("Unknown node type: %x len %d "
1150 "offset 0x%x\n", node->nodetype,
1151 node->totlen, offset);
wdenkfe8c2802002-11-03 00:38:21 +00001152 }
1153 offset += ((node->totlen + 3) & ~3);
1154 counterF++;
wdenk06d01db2003-03-14 20:47:52 +00001155 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1156 node->nodetype == JFFS2_EMPTY_BITMASK) {
wdenkfe8c2802002-11-03 00:38:21 +00001157 offset = jffs2_scan_empty(offset, part);
wdenkfc1cfcd2004-04-25 15:41:35 +00001158 } else { /* if we know nothing, we just step and look. */
wdenkfe8c2802002-11-03 00:38:21 +00001159 offset += 4;
1160 counter4++;
1161 }
1162/* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
wdenk998eaae2004-04-18 19:43:36 +00001163 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001164 }
1165
1166 putstr("\b\b done.\r\n"); /* close off the dots */
1167 /* turn the lcd back on. */
1168 /* splash(); */
1169
1170#if 0
wdenk06d01db2003-03-14 20:47:52 +00001171 putLabeledWord("dir entries = ", pL->dir.listCount);
1172 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001173 putLabeledWord("+4 increments = ", counter4);
1174 putLabeledWord("+file_offset increments = ", counterF);
1175
1176#endif
1177
wdenk06d01db2003-03-14 20:47:52 +00001178#ifdef DEBUG_DIRENTS
1179 dump_dirents(pL);
1180#endif
wdenkfe8c2802002-11-03 00:38:21 +00001181
wdenk06d01db2003-03-14 20:47:52 +00001182#ifdef DEBUG_FRAGMENTS
1183 dump_fragments(pL);
1184#endif
wdenkfe8c2802002-11-03 00:38:21 +00001185
wdenkfe8c2802002-11-03 00:38:21 +00001186 /* give visual feedback that we are done scanning the flash */
1187 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1188 return 1;
1189}
1190
1191
wdenkfe8c2802002-11-03 00:38:21 +00001192static u32
1193jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1194{
1195 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001196 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001197 struct jffs2_raw_inode *jNode;
1198 int i;
1199
wdenkfe8c2802002-11-03 00:38:21 +00001200 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1201 piL->compr_info[i].num_frags = 0;
1202 piL->compr_info[i].compr_sum = 0;
1203 piL->compr_info[i].decompr_sum = 0;
1204 }
1205
wdenk06d01db2003-03-14 20:47:52 +00001206 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001207 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001208 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1209 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001210 if (jNode->compr < JFFS2_NUM_COMPR) {
1211 piL->compr_info[jNode->compr].num_frags++;
1212 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1213 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1214 }
1215 b = b->next;
1216 }
1217 return 0;
1218}
1219
1220
wdenkfe8c2802002-11-03 00:38:21 +00001221static struct b_lists *
1222jffs2_get_list(struct part_info * part, const char *who)
1223{
1224 if (jffs2_1pass_rescan_needed(part)) {
1225 if (!jffs2_1pass_build_lists(part)) {
1226 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1227 return NULL;
1228 }
1229 }
1230 return (struct b_lists *)part->jffs2_priv;
1231}
1232
1233
1234/* Print directory / file contents */
1235u32
1236jffs2_1pass_ls(struct part_info * part, const char *fname)
1237{
1238 struct b_lists *pl;
wdenkfc1cfcd2004-04-25 15:41:35 +00001239 long ret = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001240 u32 inode;
1241
wdenk06d01db2003-03-14 20:47:52 +00001242 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001243 return 0;
1244
1245 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1246 putstr("ls: Failed to scan jffs2 file structure\r\n");
1247 return 0;
1248 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001249
1250
wdenkfe8c2802002-11-03 00:38:21 +00001251#if 0
1252 putLabeledWord("found file at inode = ", inode);
1253 putLabeledWord("read_inode returns = ", ret);
1254#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001255
1256 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001257}
1258
1259
wdenkfe8c2802002-11-03 00:38:21 +00001260/* Load a file from flash into memory. fname can be a full path */
1261u32
1262jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1263{
1264
1265 struct b_lists *pl;
1266 long ret = 0;
1267 u32 inode;
1268
1269 if (! (pl = jffs2_get_list(part, "load")))
1270 return 0;
1271
1272 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1273 putstr("load: Failed to find inode\r\n");
1274 return 0;
1275 }
1276
1277 /* Resolve symlinks */
1278 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1279 putstr("load: Failed to resolve inode structure\r\n");
1280 return 0;
1281 }
1282
1283 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1284 putstr("load: Failed to read inode\r\n");
1285 return 0;
1286 }
1287
1288 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1289 (unsigned long) dest, ret);
1290 return ret;
1291}
1292
1293/* Return information about the fs on this partition */
1294u32
1295jffs2_1pass_info(struct part_info * part)
1296{
1297 struct b_jffs2_info info;
1298 struct b_lists *pl;
1299 int i;
1300
1301 if (! (pl = jffs2_get_list(part, "info")))
1302 return 0;
1303
1304 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001305 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001306 printf ("Compression: %s\n"
1307 "\tfrag count: %d\n"
1308 "\tcompressed sum: %d\n"
1309 "\tuncompressed sum: %d\n",
1310 compr_names[i],
1311 info.compr_info[i].num_frags,
1312 info.compr_info[i].compr_sum,
1313 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001314 }
1315 return 1;
1316}
1317
1318#endif /* CFG_CMD_JFFS2 */