blob: 41ff4c1fbbd369a191debb703c03caf3ac36e86e [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
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200143/* keeps pointer to currentlu processed partition */
144static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000145
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100146#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
Marian Balakowicz6db39702006-04-08 19:08:06 +0200147#if defined(CFG_NAND_LEGACY)
148#include <linux/mtd/nand_legacy.h>
149#else
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100150#include <nand.h>
Marian Balakowicz6db39702006-04-08 19:08:06 +0200151#endif
wdenk998eaae2004-04-18 19:43:36 +0000152/*
153 * Support for jffs2 on top of NAND-flash
154 *
155 * NAND memory isn't mapped in processor's address space,
156 * so data should be fetched from flash before
157 * being processed. This is exactly what functions declared
158 * here do.
159 *
160 */
161
Marian Balakowicz6db39702006-04-08 19:08:06 +0200162#if defined(CFG_NAND_LEGACY)
163/* this one defined in nand_legacy.c */
164int read_jffs2_nand(size_t start, size_t len,
165 size_t * retlen, u_char * buf, int nanddev);
166#else
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100167/* info for NAND chips, defined in drivers/nand/nand.c */
168extern nand_info_t nand_info[];
Marian Balakowicz6db39702006-04-08 19:08:06 +0200169#endif
wdenk998eaae2004-04-18 19:43:36 +0000170
171#define NAND_PAGE_SIZE 512
172#define NAND_PAGE_SHIFT 9
173#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
174
175#ifndef NAND_CACHE_PAGES
176#define NAND_CACHE_PAGES 16
177#endif
178#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
179
180static u8* nand_cache = NULL;
181static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000182
183static int read_nand_cached(u32 off, u32 size, u_char *buf)
184{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200185 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000186 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200187#if defined(CFG_NAND_LEGACY)
188 size_t retlen;
189#else
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100190 ulong retlen;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200191#endif
wdenk998eaae2004-04-18 19:43:36 +0000192 int cpy_bytes;
193
194 while (bytes_read < size) {
195 if ((off + bytes_read < nand_cache_off) ||
196 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
197 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
198 if (!nand_cache) {
199 /* This memory never gets freed but 'cause
200 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000201 nand_cache = malloc(NAND_CACHE_SIZE);
202 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000203 printf("read_nand_cached: can't alloc cache size %d bytes\n",
204 NAND_CACHE_SIZE);
205 return -1;
206 }
207 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100208
Marian Balakowicz6db39702006-04-08 19:08:06 +0200209#if defined(CFG_NAND_LEGACY)
210 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
211 &retlen, nand_cache, id->num) < 0 ||
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200212 retlen != NAND_CACHE_SIZE) {
wdenk998eaae2004-04-18 19:43:36 +0000213 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200214 nand_cache_off, NAND_CACHE_SIZE);
wdenk998eaae2004-04-18 19:43:36 +0000215 return -1;
216 }
Marian Balakowicz6db39702006-04-08 19:08:06 +0200217#else
218 retlen = NAND_CACHE_SIZE;
219 if (nand_read(&nand_info[id->num], nand_cache_off,
220 &retlen, nand_cache) != 0 ||
221 retlen != NAND_CACHE_SIZE) {
222 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
223 nand_cache_off, NAND_CACHE_SIZE);
224 return -1;
225 }
226#endif
wdenk998eaae2004-04-18 19:43:36 +0000227 }
228 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
229 if (cpy_bytes > size - bytes_read)
230 cpy_bytes = size - bytes_read;
231 memcpy(buf + bytes_read,
232 nand_cache + off + bytes_read - nand_cache_off,
233 cpy_bytes);
234 bytes_read += cpy_bytes;
235 }
236 return bytes_read;
237}
238
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200239static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000240{
241 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
242
243 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200244 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000245 return NULL;
246 }
247 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000248 if (!ext_buf)
249 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000250 return NULL;
251 }
252
253 return buf;
254}
255
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200256static void *get_node_mem_nand(u32 off)
wdenk998eaae2004-04-18 19:43:36 +0000257{
258 struct jffs2_unknown_node node;
259 void *ret = NULL;
260
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200261 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000262 return NULL;
263
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200264 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000265 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
266 NULL))) {
267 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
268 off, node.magic, node.nodetype, node.totlen);
269 }
270 return ret;
271}
272
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200273static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000274{
275 free(buf);
276}
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200277#endif /* #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
wdenk998eaae2004-04-18 19:43:36 +0000278
wdenk998eaae2004-04-18 19:43:36 +0000279
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200280#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
281/*
282 * Support for jffs2 on top of NOR-flash
283 *
284 * NOR flash memory is mapped in processor's address space,
285 * just return address.
286 */
287static inline void *get_fl_mem_nor(u32 off)
288{
289 u32 addr = off;
290 struct mtdids *id = current_part->dev->id;
291
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200292 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200293 flash_info_t *flash = &flash_info[id->num];
294
295 addr += flash->start[0];
296 return (void*)addr;
297}
298
299static inline void *get_node_mem_nor(u32 off)
300{
301 return (void*)get_fl_mem_nor(off);
302}
303#endif /* #if (CONFIG_COMMANDS & CFG_CMD_FLASH) */
304
305
306/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200307 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200308 *
309 */
wdenk998eaae2004-04-18 19:43:36 +0000310static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
311{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200312 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200313
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200314#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
315 if (id->type == MTD_DEV_TYPE_NOR)
316 return get_fl_mem_nor(off);
317#endif
318
Marian Balakowicz6db39702006-04-08 19:08:06 +0200319#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200320 if (id->type == MTD_DEV_TYPE_NAND)
321 return get_fl_mem_nand(off, size, ext_buf);
322#endif
323
324 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000325 return (void*)off;
326}
327
328static inline void *get_node_mem(u32 off)
329{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200330 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200331
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200332#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
333 if (id->type == MTD_DEV_TYPE_NOR)
334 return get_node_mem_nor(off);
335#endif
336
Marian Balakowicz6db39702006-04-08 19:08:06 +0200337#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200338 if (id->type == MTD_DEV_TYPE_NAND)
339 return get_node_mem_nand(off);
340#endif
341
342 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000343 return (void*)off;
344}
345
wdenk507bbe32004-04-18 21:13:41 +0000346static inline void put_fl_mem(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000347{
Marian Balakowicz6db39702006-04-08 19:08:06 +0200348#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200349 struct mtdids *id = current_part->dev->id;
350
351 if (id->type == MTD_DEV_TYPE_NAND)
352 return put_fl_mem_nand(buf);
353#endif
wdenk998eaae2004-04-18 19:43:36 +0000354}
355
wdenk06d01db2003-03-14 20:47:52 +0000356/* Compression names */
357static char *compr_names[] = {
358 "NONE",
359 "ZERO",
360 "RTIME",
361 "RUBINMIPS",
362 "COPY",
363 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000364 "ZLIB",
wdenk412babe2005-05-05 09:51:44 +0000365#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000366 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000367 "LZARI",
368#endif
wdenk06d01db2003-03-14 20:47:52 +0000369};
370
371/* Spinning wheel */
372static char spinner[] = { '|', '/', '-', '\\' };
373
374/* Memory management */
375struct mem_block {
376 u32 index;
377 struct mem_block *next;
378 struct b_node nodes[NODE_CHUNK];
379};
380
381
382static void
383free_nodes(struct b_list *list)
384{
385 while (list->listMemBase != NULL) {
386 struct mem_block *next = list->listMemBase->next;
387 free( list->listMemBase );
388 list->listMemBase = next;
389 }
390}
wdenkfe8c2802002-11-03 00:38:21 +0000391
392static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000393add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000394{
wdenk06d01db2003-03-14 20:47:52 +0000395 u32 index = 0;
396 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000397 struct b_node *b;
398
wdenk06d01db2003-03-14 20:47:52 +0000399 memBase = list->listMemBase;
400 if (memBase != NULL)
401 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000402#if 0
403 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000404 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000405#endif
406
wdenk06d01db2003-03-14 20:47:52 +0000407 if (memBase == NULL || index >= NODE_CHUNK) {
408 /* we need more space before we continue */
409 memBase = mmalloc(sizeof(struct mem_block));
410 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000411 putstr("add_node: malloc failed\n");
412 return NULL;
413 }
wdenk06d01db2003-03-14 20:47:52 +0000414 memBase->next = list->listMemBase;
415 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000416#if 0
417 putLabeledWord("add_node: alloced a new membase at ", *memBase);
418#endif
419
420 }
421 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000422 b = &memBase->nodes[index];
423 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000424
wdenk06d01db2003-03-14 20:47:52 +0000425 memBase->index = index;
426 list->listMemBase = memBase;
427 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000428 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000429}
430
wdenk06d01db2003-03-14 20:47:52 +0000431static struct b_node *
432insert_node(struct b_list *list, u32 offset)
433{
434 struct b_node *new;
435#ifdef CFG_JFFS2_SORT_FRAGMENTS
436 struct b_node *b, *prev;
437#endif
438
439 if (!(new = add_node(list))) {
440 putstr("add_node failed!\r\n");
441 return NULL;
442 }
443 new->offset = offset;
444
445#ifdef CFG_JFFS2_SORT_FRAGMENTS
446 if (list->listTail != NULL && list->listCompare(new, list->listTail))
447 prev = list->listTail;
448 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
449 prev = list->listLast;
450 else
451 prev = NULL;
452
453 for (b = (prev ? prev->next : list->listHead);
454 b != NULL && list->listCompare(new, b);
455 prev = b, b = b->next) {
456 list->listLoops++;
457 }
458 if (b != NULL)
459 list->listLast = prev;
460
461 if (b != NULL) {
462 new->next = b;
463 if (prev != NULL)
464 prev->next = new;
465 else
466 list->listHead = new;
467 } else
468#endif
469 {
470 new->next = (struct b_node *) NULL;
471 if (list->listTail != NULL) {
472 list->listTail->next = new;
473 list->listTail = new;
474 } else {
475 list->listTail = list->listHead = new;
476 }
477 }
478
479 return new;
480}
481
482#ifdef CFG_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000483/* Sort data entries with the latest version last, so that if there
484 * is overlapping data the latest version will be used.
485 */
wdenk06d01db2003-03-14 20:47:52 +0000486static int compare_inodes(struct b_node *new, struct b_node *old)
487{
wdenk998eaae2004-04-18 19:43:36 +0000488 struct jffs2_raw_inode ojNew;
489 struct jffs2_raw_inode ojOld;
490 struct jffs2_raw_inode *jNew =
491 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
492 struct jffs2_raw_inode *jOld =
493 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000494
wdenk7205e402003-09-10 22:30:53 +0000495 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000496}
497
wdenk7205e402003-09-10 22:30:53 +0000498/* Sort directory entries so all entries in the same directory
499 * with the same name are grouped together, with the latest version
500 * last. This makes it easy to eliminate all but the latest version
501 * by marking the previous version dead by setting the inode to 0.
502 */
wdenk06d01db2003-03-14 20:47:52 +0000503static int compare_dirents(struct b_node *new, struct b_node *old)
504{
wdenk998eaae2004-04-18 19:43:36 +0000505 struct jffs2_raw_dirent ojNew;
506 struct jffs2_raw_dirent ojOld;
507 struct jffs2_raw_dirent *jNew =
508 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000509 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000510 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000511 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000512
wdenk7205e402003-09-10 22:30:53 +0000513 /* ascending sort by pino */
514 if (jNew->pino != jOld->pino)
515 return jNew->pino > jOld->pino;
516
517 /* pino is the same, so use ascending sort by nsize, so
518 * we don't do strncmp unless we really must.
519 */
520 if (jNew->nsize != jOld->nsize)
521 return jNew->nsize > jOld->nsize;
522
523 /* length is also the same, so use ascending sort by name
524 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200525 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk7205e402003-09-10 22:30:53 +0000526 if (cmp != 0)
527 return cmp > 0;
528
529 /* we have duplicate names in this directory, so use ascending
530 * sort by version
531 */
532 if (jNew->version > jOld->version) {
533 /* since jNew is newer, we know jOld is not valid, so
534 * mark it with inode 0 and it will not be used
535 */
536 jOld->ino = 0;
537 return 1;
538 }
wdenk42d1f032003-10-15 23:53:47 +0000539
wdenk7205e402003-09-10 22:30:53 +0000540 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000541}
542#endif
wdenkfe8c2802002-11-03 00:38:21 +0000543
544static u32
545jffs2_scan_empty(u32 start_offset, struct part_info *part)
546{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200547 char *max = (char *)(part->offset + part->size - sizeof(struct jffs2_raw_inode));
548 char *offset = (char *)(part->offset + start_offset);
wdenk998eaae2004-04-18 19:43:36 +0000549 u32 off;
wdenkfe8c2802002-11-03 00:38:21 +0000550
wdenk998eaae2004-04-18 19:43:36 +0000551 while (offset < max &&
552 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
wdenk06d01db2003-03-14 20:47:52 +0000553 offset += sizeof(u32);
554 /* return if spinning is due */
555 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
wdenkfe8c2802002-11-03 00:38:21 +0000556 }
wdenkfc1cfcd2004-04-25 15:41:35 +0000557
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200558 return (u32)offset - part->offset;
wdenkfe8c2802002-11-03 00:38:21 +0000559}
560
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200561void
562jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000563{
wdenk06d01db2003-03-14 20:47:52 +0000564 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000565
wdenk06d01db2003-03-14 20:47:52 +0000566 if (part->jffs2_priv != NULL) {
567 pL = (struct b_lists *)part->jffs2_priv;
568 free_nodes(&pL->frag);
569 free_nodes(&pL->dir);
570 free(pL);
571 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200572}
573
574static u32
575jffs_init_1pass_list(struct part_info *part)
576{
577 struct b_lists *pL;
578
579 jffs2_free_cache(part);
580
wdenk06d01db2003-03-14 20:47:52 +0000581 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
582 pL = (struct b_lists *)part->jffs2_priv;
583
584 memset(pL, 0, sizeof(*pL));
585#ifdef CFG_JFFS2_SORT_FRAGMENTS
586 pL->dir.listCompare = compare_dirents;
587 pL->frag.listCompare = compare_inodes;
588#endif
wdenkfe8c2802002-11-03 00:38:21 +0000589 }
590 return 0;
591}
592
593/* find the inode from the slashless name given a parent */
594static long
595jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
596{
597 struct b_node *b;
598 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000599 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000600 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200601 uchar *lDest;
602 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000603 long ret;
604 int i;
605 u32 counter = 0;
wdenk7205e402003-09-10 22:30:53 +0000606#ifdef CFG_JFFS2_SORT_FRAGMENTS
607 /* Find file size before loading any data, so fragments that
608 * start past the end of file can be ignored. A fragment
609 * that is partially in the file is loaded, so extra data may
610 * be loaded up to the next 4K boundary above the file size.
611 * This shouldn't cause trouble when loading kernel images, so
612 * we will live with it.
613 */
614 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000615 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
wdenk998eaae2004-04-18 19:43:36 +0000616 sizeof(struct jffs2_raw_inode), NULL);
wdenk7205e402003-09-10 22:30:53 +0000617 if ((inode == jNode->ino)) {
618 /* get actual file length from the newest node */
619 if (jNode->version >= latestVersion) {
620 totalSize = jNode->isize;
621 latestVersion = jNode->version;
622 }
623 }
wdenk998eaae2004-04-18 19:43:36 +0000624 put_fl_mem(jNode);
wdenk7205e402003-09-10 22:30:53 +0000625 }
626#endif
wdenkfe8c2802002-11-03 00:38:21 +0000627
wdenk06d01db2003-03-14 20:47:52 +0000628 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000629 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000630 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000631#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000632 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
633 putLabeledWord("read_inode: inode = ", jNode->ino);
634 putLabeledWord("read_inode: version = ", jNode->version);
635 putLabeledWord("read_inode: isize = ", jNode->isize);
636 putLabeledWord("read_inode: offset = ", jNode->offset);
637 putLabeledWord("read_inode: csize = ", jNode->csize);
638 putLabeledWord("read_inode: dsize = ", jNode->dsize);
639 putLabeledWord("read_inode: compr = ", jNode->compr);
640 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
641 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000642#endif
wdenk7205e402003-09-10 22:30:53 +0000643
644#ifndef CFG_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000645 /* get actual file length from the newest node */
646 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000647 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000648 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000649 }
wdenk7205e402003-09-10 22:30:53 +0000650#endif
wdenkfe8c2802002-11-03 00:38:21 +0000651
652 if(dest) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200653 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000654 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000655 if (jNode->offset > totalSize) {
656 put_fl_mem(jNode);
wdenk06d01db2003-03-14 20:47:52 +0000657 continue;
wdenk998eaae2004-04-18 19:43:36 +0000658 }
wdenk06d01db2003-03-14 20:47:52 +0000659
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200660 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000661#if 0
wdenk06d01db2003-03-14 20:47:52 +0000662 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000663 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000664#endif
665 switch (jNode->compr) {
666 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000667 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
668 break;
669 case JFFS2_COMPR_ZERO:
670 ret = 0;
671 for (i = 0; i < jNode->dsize; i++)
672 *(lDest++) = 0;
673 break;
674 case JFFS2_COMPR_RTIME:
675 ret = 0;
676 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
677 break;
678 case JFFS2_COMPR_DYNRUBIN:
679 /* this is slow but it works */
680 ret = 0;
681 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
682 break;
683 case JFFS2_COMPR_ZLIB:
684 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
685 break;
wdenk412babe2005-05-05 09:51:44 +0000686#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000687 case JFFS2_COMPR_LZO:
688 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
689 break;
wdenk412babe2005-05-05 09:51:44 +0000690 case JFFS2_COMPR_LZARI:
691 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
692 break;
wdenk07cc0992005-05-05 00:04:14 +0000693#endif
wdenkfe8c2802002-11-03 00:38:21 +0000694 default:
695 /* unknown */
696 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
wdenk998eaae2004-04-18 19:43:36 +0000697 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000698 return -1;
699 break;
700 }
701 }
702
wdenkfe8c2802002-11-03 00:38:21 +0000703#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000704 putLabeledWord("read_inode: totalSize = ", totalSize);
705 putLabeledWord("read_inode: compr ret = ", ret);
706#endif
707 }
wdenkfe8c2802002-11-03 00:38:21 +0000708 counter++;
wdenk998eaae2004-04-18 19:43:36 +0000709 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000710 }
wdenkfe8c2802002-11-03 00:38:21 +0000711
712#if 0
wdenk06d01db2003-03-14 20:47:52 +0000713 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000714#endif
wdenk06d01db2003-03-14 20:47:52 +0000715 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000716}
717
718/* find the inode from the slashless name given a parent */
719static u32
720jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
721{
722 struct b_node *b;
723 struct jffs2_raw_dirent *jDir;
724 int len;
725 u32 counter;
726 u32 version = 0;
727 u32 inode = 0;
728
729 /* name is assumed slash free */
730 len = strlen(name);
731
732 counter = 0;
733 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000734 for(b = pL->dir.listHead; b; b = b->next, counter++) {
wdenk998eaae2004-04-18 19:43:36 +0000735 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000736 if ((pino == jDir->pino) && (len == jDir->nsize) &&
737 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200738 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000739 if (jDir->version < version) {
740 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000741 continue;
wdenk998eaae2004-04-18 19:43:36 +0000742 }
wdenkfe8c2802002-11-03 00:38:21 +0000743
wdenk7205e402003-09-10 22:30:53 +0000744 if (jDir->version == version && inode != 0) {
745 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000746 putstr(" ** ERROR ** ");
747 putnstr(jDir->name, jDir->nsize);
748 putLabeledWord(" has dup version =", version);
749 }
750 inode = jDir->ino;
751 version = jDir->version;
752 }
753#if 0
754 putstr("\r\nfind_inode:p&l ->");
755 putnstr(jDir->name, jDir->nsize);
756 putstr("\r\n");
757 putLabeledWord("pino = ", jDir->pino);
758 putLabeledWord("nsize = ", jDir->nsize);
759 putLabeledWord("b = ", (u32) b);
760 putLabeledWord("counter = ", counter);
761#endif
wdenk998eaae2004-04-18 19:43:36 +0000762 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000763 }
764 return inode;
765}
766
wdenk180d3f72004-01-04 16:28:35 +0000767char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000768{
wdenk06d01db2003-03-14 20:47:52 +0000769 static const char *l = "xwr";
770 int mask = 1, i;
771 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000772
wdenk06d01db2003-03-14 20:47:52 +0000773 switch (mode & S_IFMT) {
774 case S_IFDIR: str[0] = 'd'; break;
775 case S_IFBLK: str[0] = 'b'; break;
776 case S_IFCHR: str[0] = 'c'; break;
777 case S_IFIFO: str[0] = 'f'; break;
778 case S_IFLNK: str[0] = 'l'; break;
779 case S_IFSOCK: str[0] = 's'; break;
780 case S_IFREG: str[0] = '-'; break;
781 default: str[0] = '?';
782 }
wdenkfe8c2802002-11-03 00:38:21 +0000783
wdenk06d01db2003-03-14 20:47:52 +0000784 for(i = 0; i < 9; i++) {
785 c = l[i%3];
786 str[9-i] = (mode & mask)?c:'-';
787 mask = mask<<1;
788 }
wdenkfe8c2802002-11-03 00:38:21 +0000789
wdenk06d01db2003-03-14 20:47:52 +0000790 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
791 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
792 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
793 str[10] = '\0';
794 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000795}
796
797static inline void dump_stat(struct stat *st, const char *name)
798{
wdenk06d01db2003-03-14 20:47:52 +0000799 char str[20];
800 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000801
wdenk06d01db2003-03-14 20:47:52 +0000802 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
803 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000804
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200805 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000806
wdenk06d01db2003-03-14 20:47:52 +0000807 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
808 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000809
810/*
wdenk06d01db2003-03-14 20:47:52 +0000811 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
812 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000813*/
814
wdenk06d01db2003-03-14 20:47:52 +0000815 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000816}
817
818static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
819{
820 char fname[256];
821 struct stat st;
822
823 if(!d || !i) return -1;
824
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200825 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000826 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000827
828 memset(&st,0,sizeof(st));
829
wdenk06d01db2003-03-14 20:47:52 +0000830 st.st_mtime = i->mtime;
831 st.st_mode = i->mode;
832 st.st_ino = i->ino;
wdenkfe8c2802002-11-03 00:38:21 +0000833
834 /* neither dsize nor isize help us.. do it the long way */
wdenk06d01db2003-03-14 20:47:52 +0000835 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000836
837 dump_stat(&st, fname);
838
839 if (d->type == DT_LNK) {
840 unsigned char *src = (unsigned char *) (&i[1]);
841 putstr(" -> ");
842 putnstr(src, (int)i->dsize);
843 }
844
845 putstr("\r\n");
846
847 return 0;
848}
849
850/* list inodes with the given pino */
851static u32
852jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
853{
854 struct b_node *b;
855 struct jffs2_raw_dirent *jDir;
856
wdenk06d01db2003-03-14 20:47:52 +0000857 for (b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000858 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000859 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
860 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000861 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000862 struct jffs2_raw_inode *jNode, *i = NULL;
863 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000864
865 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000866 jNode = (struct jffs2_raw_inode *)
867 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000868 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
869 if (i)
wdenk02b11f82004-05-12 22:54:36 +0000870 put_fl_mem(i);
wdenkcf8bc572005-05-04 23:50:54 +0000871
872 if (jDir->type == DT_LNK)
873 i = get_node_mem(b2->offset);
874 else
875 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
wdenk32877d62004-05-05 19:44:41 +0000876 }
wdenkfe8c2802002-11-03 00:38:21 +0000877 b2 = b2->next;
878 }
879
880 dump_inode(pL, jDir, i);
wdenk998eaae2004-04-18 19:43:36 +0000881 put_fl_mem(i);
wdenkfe8c2802002-11-03 00:38:21 +0000882 }
wdenk998eaae2004-04-18 19:43:36 +0000883 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000884 }
885 return pino;
886}
887
888static u32
889jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
890{
891 int i;
892 char tmp[256];
893 char working_tmp[256];
894 char *c;
895
896 /* discard any leading slash */
897 i = 0;
898 while (fname[i] == '/')
899 i++;
900 strcpy(tmp, &fname[i]);
901
902 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
903 {
904 strncpy(working_tmp, tmp, c - tmp);
905 working_tmp[c - tmp] = '\0';
906#if 0
907 putstr("search_inode: tmp = ");
908 putstr(tmp);
909 putstr("\r\n");
910 putstr("search_inode: wtmp = ");
911 putstr(working_tmp);
912 putstr("\r\n");
913 putstr("search_inode: c = ");
914 putstr(c);
915 putstr("\r\n");
916#endif
917 for (i = 0; i < strlen(c) - 1; i++)
918 tmp[i] = c[i + 1];
919 tmp[i] = '\0';
920#if 0
921 putstr("search_inode: post tmp = ");
922 putstr(tmp);
923 putstr("\r\n");
924#endif
925
926 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
927 putstr("find_inode failed for name=");
928 putstr(working_tmp);
929 putstr("\r\n");
930 return 0;
931 }
932 }
933 /* this is for the bare filename, directories have already been mapped */
934 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
935 putstr("find_inode failed for name=");
936 putstr(tmp);
937 putstr("\r\n");
938 return 0;
939 }
940 return pino;
941
942}
943
944static u32
945jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
946{
947 struct b_node *b;
948 struct b_node *b2;
949 struct jffs2_raw_dirent *jDir;
950 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +0000951 u8 jDirFoundType = 0;
952 u32 jDirFoundIno = 0;
953 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000954 char tmp[256];
955 u32 version = 0;
956 u32 pino;
957 unsigned char *src;
958
959 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000960 for(b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000961 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000962 if (ino == jDir->ino) {
wdenk998eaae2004-04-18 19:43:36 +0000963 if (jDir->version < version) {
964 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000965 continue;
wdenk998eaae2004-04-18 19:43:36 +0000966 }
wdenkfe8c2802002-11-03 00:38:21 +0000967
wdenk998eaae2004-04-18 19:43:36 +0000968 if (jDir->version == version && jDirFoundType) {
wdenk7205e402003-09-10 22:30:53 +0000969 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000970 putstr(" ** ERROR ** ");
971 putnstr(jDir->name, jDir->nsize);
972 putLabeledWord(" has dup version (resolve) = ",
973 version);
974 }
975
wdenk998eaae2004-04-18 19:43:36 +0000976 jDirFoundType = jDir->type;
977 jDirFoundIno = jDir->ino;
978 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +0000979 version = jDir->version;
980 }
wdenk998eaae2004-04-18 19:43:36 +0000981 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000982 }
983 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +0000984 if (jDirFoundType != DT_LNK)
985 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +0000986
987 /* it's a soft link so we follow it again. */
988 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000989 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000990 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
991 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +0000992 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +0000993
994#if 0
995 putLabeledWord("\t\t dsize = ", jNode->dsize);
996 putstr("\t\t target = ");
997 putnstr(src, jNode->dsize);
998 putstr("\r\n");
999#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001000 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001001 tmp[jNode->dsize] = '\0';
wdenk998eaae2004-04-18 19:43:36 +00001002 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +00001003 break;
1004 }
1005 b2 = b2->next;
wdenk998eaae2004-04-18 19:43:36 +00001006 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +00001007 }
1008 /* ok so the name of the new file to find is in tmp */
1009 /* if it starts with a slash it is root based else shared dirs */
1010 if (tmp[0] == '/')
1011 pino = 1;
1012 else
wdenk998eaae2004-04-18 19:43:36 +00001013 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001014
1015 return jffs2_1pass_search_inode(pL, tmp, pino);
1016}
1017
1018static u32
1019jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1020{
1021 int i;
1022 char tmp[256];
1023 char working_tmp[256];
1024 char *c;
1025
1026 /* discard any leading slash */
1027 i = 0;
1028 while (fname[i] == '/')
1029 i++;
1030 strcpy(tmp, &fname[i]);
1031 working_tmp[0] = '\0';
1032 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1033 {
1034 strncpy(working_tmp, tmp, c - tmp);
1035 working_tmp[c - tmp] = '\0';
1036 for (i = 0; i < strlen(c) - 1; i++)
1037 tmp[i] = c[i + 1];
1038 tmp[i] = '\0';
1039 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001040 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1041 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001042 putstr("find_inode failed for name=");
1043 putstr(working_tmp);
1044 putstr("\r\n");
1045 return 0;
1046 }
1047 }
1048
1049 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1050 putstr("find_inode failed for name=");
1051 putstr(tmp);
1052 putstr("\r\n");
1053 return 0;
1054 }
1055 /* this is for the bare filename, directories have already been mapped */
1056 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1057 putstr("find_inode failed for name=");
1058 putstr(tmp);
1059 putstr("\r\n");
1060 return 0;
1061 }
1062 return pino;
1063
1064}
1065
1066unsigned char
1067jffs2_1pass_rescan_needed(struct part_info *part)
1068{
1069 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001070 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001071 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001072 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001073
1074 if (part->jffs2_priv == 0){
1075 DEBUGF ("rescan: First time in use\n");
1076 return 1;
1077 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001078
wdenkfe8c2802002-11-03 00:38:21 +00001079 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001080 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001081 DEBUGF ("rescan: fraglist zero\n");
1082 return 1;
1083 }
1084
wdenk06d01db2003-03-14 20:47:52 +00001085 /* but suppose someone reflashed a partition at the same offset... */
1086 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001087 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001088 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1089 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001090 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001091 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1092 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001093 return 1;
1094 }
1095 b = b->next;
1096 }
1097 return 0;
1098}
1099
wdenk06d01db2003-03-14 20:47:52 +00001100#ifdef DEBUG_FRAGMENTS
1101static void
1102dump_fragments(struct b_lists *pL)
1103{
1104 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001105 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001106 struct jffs2_raw_inode *jNode;
1107
1108 putstr("\r\n\r\n******The fragment Entries******\r\n");
1109 b = pL->frag.listHead;
1110 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001111 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1112 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001113 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1114 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1115 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1116 putLabeledWord("\tbuild_list: version = ", jNode->version);
1117 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1118 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1119 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1120 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1121 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1122 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1123 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1124 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001125 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001126 b = b->next;
1127 }
1128}
1129#endif
1130
1131#ifdef DEBUG_DIRENTS
1132static void
1133dump_dirents(struct b_lists *pL)
1134{
1135 struct b_node *b;
1136 struct jffs2_raw_dirent *jDir;
1137
1138 putstr("\r\n\r\n******The directory Entries******\r\n");
1139 b = pL->dir.listHead;
1140 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001141 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +00001142 putstr("\r\n");
1143 putnstr(jDir->name, jDir->nsize);
1144 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1145 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1146 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1147 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1148 putLabeledWord("\tbuild_list: version = ", jDir->version);
1149 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1150 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1151 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1152 putLabeledWord("\tbuild_list: type = ", jDir->type);
1153 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1154 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
wdenk8bde7f72003-06-27 21:31:46 +00001155 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001156 b = b->next;
wdenk998eaae2004-04-18 19:43:36 +00001157 put_fl_mem(jDir);
wdenk06d01db2003-03-14 20:47:52 +00001158 }
1159}
1160#endif
1161
wdenkfe8c2802002-11-03 00:38:21 +00001162static u32
1163jffs2_1pass_build_lists(struct part_info * part)
1164{
1165 struct b_lists *pL;
1166 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001167 u32 offset, oldoffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001168 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1169 u32 counter = 0;
1170 u32 counter4 = 0;
1171 u32 counterF = 0;
1172 u32 counterN = 0;
1173
1174 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1175 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1176 /* only about 5 %. not enough to inconvenience people for. */
1177 /* lcd_off(); */
1178
1179 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001180 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001181 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001182 offset = 0;
wdenk4b9206e2004-03-23 22:14:11 +00001183 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001184
1185 /* start at the beginning of the partition */
1186 while (offset < max) {
wdenk06d01db2003-03-14 20:47:52 +00001187 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
1188 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1189 oldoffset = offset;
1190 }
wdenk0b8fa032004-04-25 14:37:29 +00001191
wdenkfc1cfcd2004-04-25 15:41:35 +00001192 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
1193 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
1194 /* if its a fragment add it */
1195 if (node->nodetype == JFFS2_NODETYPE_INODE &&
Wolfgang Denk74f92e62006-03-12 16:05:05 +01001196 inode_crc((struct jffs2_raw_inode *) node) &&
1197 data_crc((struct jffs2_raw_inode *) node)) {
wdenk06d01db2003-03-14 20:47:52 +00001198 if (insert_node(&pL->frag, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001199 offset) == NULL) {
1200 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001201 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001202 }
wdenkfe8c2802002-11-03 00:38:21 +00001203 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1204 dirent_crc((struct jffs2_raw_dirent *) node) &&
1205 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
wdenkfc1cfcd2004-04-25 15:41:35 +00001206 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001207 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001208 if (insert_node(&pL->dir, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001209 offset) == NULL) {
1210 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001211 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001212 }
wdenkfe8c2802002-11-03 00:38:21 +00001213 counterN++;
1214 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1215 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001216 printf("OOPS Cleanmarker has bad size "
1217 "%d != %d\n", node->totlen,
1218 sizeof(struct jffs2_unknown_node));
wdenk7205e402003-09-10 22:30:53 +00001219 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1220 if (node->totlen < sizeof(struct jffs2_unknown_node))
1221 printf("OOPS Padding has bad size "
1222 "%d < %d\n", node->totlen,
1223 sizeof(struct jffs2_unknown_node));
wdenkfe8c2802002-11-03 00:38:21 +00001224 } else {
wdenkfc1cfcd2004-04-25 15:41:35 +00001225 printf("Unknown node type: %x len %d "
1226 "offset 0x%x\n", node->nodetype,
1227 node->totlen, offset);
wdenkfe8c2802002-11-03 00:38:21 +00001228 }
1229 offset += ((node->totlen + 3) & ~3);
1230 counterF++;
wdenk06d01db2003-03-14 20:47:52 +00001231 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1232 node->nodetype == JFFS2_EMPTY_BITMASK) {
wdenkfe8c2802002-11-03 00:38:21 +00001233 offset = jffs2_scan_empty(offset, part);
wdenkfc1cfcd2004-04-25 15:41:35 +00001234 } else { /* if we know nothing, we just step and look. */
wdenkfe8c2802002-11-03 00:38:21 +00001235 offset += 4;
1236 counter4++;
1237 }
1238/* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
wdenk998eaae2004-04-18 19:43:36 +00001239 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001240 }
1241
1242 putstr("\b\b done.\r\n"); /* close off the dots */
1243 /* turn the lcd back on. */
1244 /* splash(); */
1245
1246#if 0
wdenk06d01db2003-03-14 20:47:52 +00001247 putLabeledWord("dir entries = ", pL->dir.listCount);
1248 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001249 putLabeledWord("+4 increments = ", counter4);
1250 putLabeledWord("+file_offset increments = ", counterF);
1251
1252#endif
1253
wdenk06d01db2003-03-14 20:47:52 +00001254#ifdef DEBUG_DIRENTS
1255 dump_dirents(pL);
1256#endif
wdenkfe8c2802002-11-03 00:38:21 +00001257
wdenk06d01db2003-03-14 20:47:52 +00001258#ifdef DEBUG_FRAGMENTS
1259 dump_fragments(pL);
1260#endif
wdenkfe8c2802002-11-03 00:38:21 +00001261
wdenkfe8c2802002-11-03 00:38:21 +00001262 /* give visual feedback that we are done scanning the flash */
1263 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1264 return 1;
1265}
1266
1267
wdenkfe8c2802002-11-03 00:38:21 +00001268static u32
1269jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1270{
1271 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001272 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001273 struct jffs2_raw_inode *jNode;
1274 int i;
1275
wdenkfe8c2802002-11-03 00:38:21 +00001276 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1277 piL->compr_info[i].num_frags = 0;
1278 piL->compr_info[i].compr_sum = 0;
1279 piL->compr_info[i].decompr_sum = 0;
1280 }
1281
wdenk06d01db2003-03-14 20:47:52 +00001282 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001283 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001284 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1285 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001286 if (jNode->compr < JFFS2_NUM_COMPR) {
1287 piL->compr_info[jNode->compr].num_frags++;
1288 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1289 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1290 }
1291 b = b->next;
1292 }
1293 return 0;
1294}
1295
1296
wdenkfe8c2802002-11-03 00:38:21 +00001297static struct b_lists *
1298jffs2_get_list(struct part_info * part, const char *who)
1299{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001300 /* copy requested part_info struct pointer to global location */
1301 current_part = part;
1302
wdenkfe8c2802002-11-03 00:38:21 +00001303 if (jffs2_1pass_rescan_needed(part)) {
1304 if (!jffs2_1pass_build_lists(part)) {
1305 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1306 return NULL;
1307 }
1308 }
1309 return (struct b_lists *)part->jffs2_priv;
1310}
1311
1312
1313/* Print directory / file contents */
1314u32
1315jffs2_1pass_ls(struct part_info * part, const char *fname)
1316{
1317 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001318 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001319 u32 inode;
1320
wdenk06d01db2003-03-14 20:47:52 +00001321 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001322 return 0;
1323
1324 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1325 putstr("ls: Failed to scan jffs2 file structure\r\n");
1326 return 0;
1327 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001328
1329
wdenkfe8c2802002-11-03 00:38:21 +00001330#if 0
1331 putLabeledWord("found file at inode = ", inode);
1332 putLabeledWord("read_inode returns = ", ret);
1333#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001334
1335 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001336}
1337
1338
wdenkfe8c2802002-11-03 00:38:21 +00001339/* Load a file from flash into memory. fname can be a full path */
1340u32
1341jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1342{
1343
1344 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001345 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001346 u32 inode;
1347
1348 if (! (pl = jffs2_get_list(part, "load")))
1349 return 0;
1350
1351 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1352 putstr("load: Failed to find inode\r\n");
1353 return 0;
1354 }
1355
1356 /* Resolve symlinks */
1357 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1358 putstr("load: Failed to resolve inode structure\r\n");
1359 return 0;
1360 }
1361
1362 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1363 putstr("load: Failed to read inode\r\n");
1364 return 0;
1365 }
1366
1367 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1368 (unsigned long) dest, ret);
1369 return ret;
1370}
1371
1372/* Return information about the fs on this partition */
1373u32
1374jffs2_1pass_info(struct part_info * part)
1375{
1376 struct b_jffs2_info info;
1377 struct b_lists *pl;
1378 int i;
1379
1380 if (! (pl = jffs2_get_list(part, "info")))
1381 return 0;
1382
1383 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001384 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001385 printf ("Compression: %s\n"
1386 "\tfrag count: %d\n"
1387 "\tcompressed sum: %d\n"
1388 "\tuncompressed sum: %d\n",
1389 compr_names[i],
1390 info.compr_info[i].num_frags,
1391 info.compr_info[i].compr_sum,
1392 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001393 }
1394 return 1;
1395}
1396
1397#endif /* CFG_CMD_JFFS2 */