blob: 0f2907183732ec30654921aaf90407818c58bfe6 [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
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200146#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
wdenk998eaae2004-04-18 19:43:36 +0000147/*
148 * Support for jffs2 on top of NAND-flash
149 *
150 * NAND memory isn't mapped in processor's address space,
151 * so data should be fetched from flash before
152 * being processed. This is exactly what functions declared
153 * here do.
154 *
155 */
156
157/* this one defined in cmd_nand.c */
158int read_jffs2_nand(size_t start, size_t len,
159 size_t * retlen, u_char * buf, int nanddev);
160
161#define NAND_PAGE_SIZE 512
162#define NAND_PAGE_SHIFT 9
163#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
164
165#ifndef NAND_CACHE_PAGES
166#define NAND_CACHE_PAGES 16
167#endif
168#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
169
170static u8* nand_cache = NULL;
171static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000172
173static int read_nand_cached(u32 off, u32 size, u_char *buf)
174{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200175 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000176 u32 bytes_read = 0;
177 size_t retlen;
178 int cpy_bytes;
179
180 while (bytes_read < size) {
181 if ((off + bytes_read < nand_cache_off) ||
182 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
183 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
184 if (!nand_cache) {
185 /* This memory never gets freed but 'cause
186 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000187 nand_cache = malloc(NAND_CACHE_SIZE);
188 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000189 printf("read_nand_cached: can't alloc cache size %d bytes\n",
190 NAND_CACHE_SIZE);
191 return -1;
192 }
193 }
194 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200195 &retlen, nand_cache, id->num) < 0 ||
196 retlen != NAND_CACHE_SIZE) {
wdenk998eaae2004-04-18 19:43:36 +0000197 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200198 nand_cache_off, NAND_CACHE_SIZE);
wdenk998eaae2004-04-18 19:43:36 +0000199 return -1;
200 }
201 }
202 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
203 if (cpy_bytes > size - bytes_read)
204 cpy_bytes = size - bytes_read;
205 memcpy(buf + bytes_read,
206 nand_cache + off + bytes_read - nand_cache_off,
207 cpy_bytes);
208 bytes_read += cpy_bytes;
209 }
210 return bytes_read;
211}
212
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200213static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000214{
215 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
216
217 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200218 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000219 return NULL;
220 }
221 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000222 if (!ext_buf)
223 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000224 return NULL;
225 }
226
227 return buf;
228}
229
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200230static void *get_node_mem_nand(u32 off)
wdenk998eaae2004-04-18 19:43:36 +0000231{
232 struct jffs2_unknown_node node;
233 void *ret = NULL;
234
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200235 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000236 return NULL;
237
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200238 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000239 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
240 NULL))) {
241 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
242 off, node.magic, node.nodetype, node.totlen);
243 }
244 return ret;
245}
246
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200247static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000248{
249 free(buf);
250}
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200251#endif /* #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
wdenk998eaae2004-04-18 19:43:36 +0000252
wdenk998eaae2004-04-18 19:43:36 +0000253
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200254#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
255/*
256 * Support for jffs2 on top of NOR-flash
257 *
258 * NOR flash memory is mapped in processor's address space,
259 * just return address.
260 */
261static inline void *get_fl_mem_nor(u32 off)
262{
263 u32 addr = off;
264 struct mtdids *id = current_part->dev->id;
265
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200266 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200267 flash_info_t *flash = &flash_info[id->num];
268
269 addr += flash->start[0];
270 return (void*)addr;
271}
272
273static inline void *get_node_mem_nor(u32 off)
274{
275 return (void*)get_fl_mem_nor(off);
276}
277#endif /* #if (CONFIG_COMMANDS & CFG_CMD_FLASH) */
278
279
280/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200281 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200282 *
283 */
wdenk998eaae2004-04-18 19:43:36 +0000284static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
285{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200286 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200287
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200288#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
289 if (id->type == MTD_DEV_TYPE_NOR)
290 return get_fl_mem_nor(off);
291#endif
292
293#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
294 if (id->type == MTD_DEV_TYPE_NAND)
295 return get_fl_mem_nand(off, size, ext_buf);
296#endif
297
298 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000299 return (void*)off;
300}
301
302static inline void *get_node_mem(u32 off)
303{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200304 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200305
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200306#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
307 if (id->type == MTD_DEV_TYPE_NOR)
308 return get_node_mem_nor(off);
309#endif
310
311#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
312 if (id->type == MTD_DEV_TYPE_NAND)
313 return get_node_mem_nand(off);
314#endif
315
316 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000317 return (void*)off;
318}
319
wdenk507bbe32004-04-18 21:13:41 +0000320static inline void put_fl_mem(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000321{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200322#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
323 struct mtdids *id = current_part->dev->id;
324
325 if (id->type == MTD_DEV_TYPE_NAND)
326 return put_fl_mem_nand(buf);
327#endif
wdenk998eaae2004-04-18 19:43:36 +0000328}
329
wdenk06d01db2003-03-14 20:47:52 +0000330/* Compression names */
331static char *compr_names[] = {
332 "NONE",
333 "ZERO",
334 "RTIME",
335 "RUBINMIPS",
336 "COPY",
337 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000338 "ZLIB",
wdenk412babe2005-05-05 09:51:44 +0000339#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000340 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000341 "LZARI",
342#endif
wdenk06d01db2003-03-14 20:47:52 +0000343};
344
345/* Spinning wheel */
346static char spinner[] = { '|', '/', '-', '\\' };
347
348/* Memory management */
349struct mem_block {
350 u32 index;
351 struct mem_block *next;
352 struct b_node nodes[NODE_CHUNK];
353};
354
355
356static void
357free_nodes(struct b_list *list)
358{
359 while (list->listMemBase != NULL) {
360 struct mem_block *next = list->listMemBase->next;
361 free( list->listMemBase );
362 list->listMemBase = next;
363 }
364}
wdenkfe8c2802002-11-03 00:38:21 +0000365
366static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000367add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000368{
wdenk06d01db2003-03-14 20:47:52 +0000369 u32 index = 0;
370 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000371 struct b_node *b;
372
wdenk06d01db2003-03-14 20:47:52 +0000373 memBase = list->listMemBase;
374 if (memBase != NULL)
375 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000376#if 0
377 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000378 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000379#endif
380
wdenk06d01db2003-03-14 20:47:52 +0000381 if (memBase == NULL || index >= NODE_CHUNK) {
382 /* we need more space before we continue */
383 memBase = mmalloc(sizeof(struct mem_block));
384 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000385 putstr("add_node: malloc failed\n");
386 return NULL;
387 }
wdenk06d01db2003-03-14 20:47:52 +0000388 memBase->next = list->listMemBase;
389 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000390#if 0
391 putLabeledWord("add_node: alloced a new membase at ", *memBase);
392#endif
393
394 }
395 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000396 b = &memBase->nodes[index];
397 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000398
wdenk06d01db2003-03-14 20:47:52 +0000399 memBase->index = index;
400 list->listMemBase = memBase;
401 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000402 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000403}
404
wdenk06d01db2003-03-14 20:47:52 +0000405static struct b_node *
406insert_node(struct b_list *list, u32 offset)
407{
408 struct b_node *new;
409#ifdef CFG_JFFS2_SORT_FRAGMENTS
410 struct b_node *b, *prev;
411#endif
412
413 if (!(new = add_node(list))) {
414 putstr("add_node failed!\r\n");
415 return NULL;
416 }
417 new->offset = offset;
418
419#ifdef CFG_JFFS2_SORT_FRAGMENTS
420 if (list->listTail != NULL && list->listCompare(new, list->listTail))
421 prev = list->listTail;
422 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
423 prev = list->listLast;
424 else
425 prev = NULL;
426
427 for (b = (prev ? prev->next : list->listHead);
428 b != NULL && list->listCompare(new, b);
429 prev = b, b = b->next) {
430 list->listLoops++;
431 }
432 if (b != NULL)
433 list->listLast = prev;
434
435 if (b != NULL) {
436 new->next = b;
437 if (prev != NULL)
438 prev->next = new;
439 else
440 list->listHead = new;
441 } else
442#endif
443 {
444 new->next = (struct b_node *) NULL;
445 if (list->listTail != NULL) {
446 list->listTail->next = new;
447 list->listTail = new;
448 } else {
449 list->listTail = list->listHead = new;
450 }
451 }
452
453 return new;
454}
455
456#ifdef CFG_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000457/* Sort data entries with the latest version last, so that if there
458 * is overlapping data the latest version will be used.
459 */
wdenk06d01db2003-03-14 20:47:52 +0000460static int compare_inodes(struct b_node *new, struct b_node *old)
461{
wdenk998eaae2004-04-18 19:43:36 +0000462 struct jffs2_raw_inode ojNew;
463 struct jffs2_raw_inode ojOld;
464 struct jffs2_raw_inode *jNew =
465 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
466 struct jffs2_raw_inode *jOld =
467 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000468
wdenk7205e402003-09-10 22:30:53 +0000469 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000470}
471
wdenk7205e402003-09-10 22:30:53 +0000472/* Sort directory entries so all entries in the same directory
473 * with the same name are grouped together, with the latest version
474 * last. This makes it easy to eliminate all but the latest version
475 * by marking the previous version dead by setting the inode to 0.
476 */
wdenk06d01db2003-03-14 20:47:52 +0000477static int compare_dirents(struct b_node *new, struct b_node *old)
478{
wdenk998eaae2004-04-18 19:43:36 +0000479 struct jffs2_raw_dirent ojNew;
480 struct jffs2_raw_dirent ojOld;
481 struct jffs2_raw_dirent *jNew =
482 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000483 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000484 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000485 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000486
wdenk7205e402003-09-10 22:30:53 +0000487 /* ascending sort by pino */
488 if (jNew->pino != jOld->pino)
489 return jNew->pino > jOld->pino;
490
491 /* pino is the same, so use ascending sort by nsize, so
492 * we don't do strncmp unless we really must.
493 */
494 if (jNew->nsize != jOld->nsize)
495 return jNew->nsize > jOld->nsize;
496
497 /* length is also the same, so use ascending sort by name
498 */
499 cmp = strncmp(jNew->name, jOld->name, jNew->nsize);
500 if (cmp != 0)
501 return cmp > 0;
502
503 /* we have duplicate names in this directory, so use ascending
504 * sort by version
505 */
506 if (jNew->version > jOld->version) {
507 /* since jNew is newer, we know jOld is not valid, so
508 * mark it with inode 0 and it will not be used
509 */
510 jOld->ino = 0;
511 return 1;
512 }
wdenk42d1f032003-10-15 23:53:47 +0000513
wdenk7205e402003-09-10 22:30:53 +0000514 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000515}
516#endif
wdenkfe8c2802002-11-03 00:38:21 +0000517
518static u32
519jffs2_scan_empty(u32 start_offset, struct part_info *part)
520{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200521 char *max = (char *)(part->offset + part->size - sizeof(struct jffs2_raw_inode));
522 char *offset = (char *)(part->offset + start_offset);
wdenk998eaae2004-04-18 19:43:36 +0000523 u32 off;
wdenkfe8c2802002-11-03 00:38:21 +0000524
wdenk998eaae2004-04-18 19:43:36 +0000525 while (offset < max &&
526 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
wdenk06d01db2003-03-14 20:47:52 +0000527 offset += sizeof(u32);
528 /* return if spinning is due */
529 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
wdenkfe8c2802002-11-03 00:38:21 +0000530 }
wdenkfc1cfcd2004-04-25 15:41:35 +0000531
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200532 return (u32)offset - part->offset;
wdenkfe8c2802002-11-03 00:38:21 +0000533}
534
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200535void
536jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000537{
wdenk06d01db2003-03-14 20:47:52 +0000538 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000539
wdenk06d01db2003-03-14 20:47:52 +0000540 if (part->jffs2_priv != NULL) {
541 pL = (struct b_lists *)part->jffs2_priv;
542 free_nodes(&pL->frag);
543 free_nodes(&pL->dir);
544 free(pL);
545 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200546}
547
548static u32
549jffs_init_1pass_list(struct part_info *part)
550{
551 struct b_lists *pL;
552
553 jffs2_free_cache(part);
554
wdenk06d01db2003-03-14 20:47:52 +0000555 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
556 pL = (struct b_lists *)part->jffs2_priv;
557
558 memset(pL, 0, sizeof(*pL));
559#ifdef CFG_JFFS2_SORT_FRAGMENTS
560 pL->dir.listCompare = compare_dirents;
561 pL->frag.listCompare = compare_inodes;
562#endif
wdenkfe8c2802002-11-03 00:38:21 +0000563 }
564 return 0;
565}
566
567/* find the inode from the slashless name given a parent */
568static long
569jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
570{
571 struct b_node *b;
572 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000573 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000574 u32 latestVersion = 0;
wdenk06d01db2003-03-14 20:47:52 +0000575 char *lDest;
wdenkfe8c2802002-11-03 00:38:21 +0000576 char *src;
577 long ret;
578 int i;
579 u32 counter = 0;
wdenk7205e402003-09-10 22:30:53 +0000580#ifdef CFG_JFFS2_SORT_FRAGMENTS
581 /* Find file size before loading any data, so fragments that
582 * start past the end of file can be ignored. A fragment
583 * that is partially in the file is loaded, so extra data may
584 * be loaded up to the next 4K boundary above the file size.
585 * This shouldn't cause trouble when loading kernel images, so
586 * we will live with it.
587 */
588 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000589 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
wdenk998eaae2004-04-18 19:43:36 +0000590 sizeof(struct jffs2_raw_inode), NULL);
wdenk7205e402003-09-10 22:30:53 +0000591 if ((inode == jNode->ino)) {
592 /* get actual file length from the newest node */
593 if (jNode->version >= latestVersion) {
594 totalSize = jNode->isize;
595 latestVersion = jNode->version;
596 }
597 }
wdenk998eaae2004-04-18 19:43:36 +0000598 put_fl_mem(jNode);
wdenk7205e402003-09-10 22:30:53 +0000599 }
600#endif
wdenkfe8c2802002-11-03 00:38:21 +0000601
wdenk06d01db2003-03-14 20:47:52 +0000602 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000603 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000604 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000605#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000606 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
607 putLabeledWord("read_inode: inode = ", jNode->ino);
608 putLabeledWord("read_inode: version = ", jNode->version);
609 putLabeledWord("read_inode: isize = ", jNode->isize);
610 putLabeledWord("read_inode: offset = ", jNode->offset);
611 putLabeledWord("read_inode: csize = ", jNode->csize);
612 putLabeledWord("read_inode: dsize = ", jNode->dsize);
613 putLabeledWord("read_inode: compr = ", jNode->compr);
614 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
615 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000616#endif
wdenk7205e402003-09-10 22:30:53 +0000617
618#ifndef CFG_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000619 /* get actual file length from the newest node */
620 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000621 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000622 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000623 }
wdenk7205e402003-09-10 22:30:53 +0000624#endif
wdenkfe8c2802002-11-03 00:38:21 +0000625
626 if(dest) {
627 src = ((char *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000628 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000629 if (jNode->offset > totalSize) {
630 put_fl_mem(jNode);
wdenk06d01db2003-03-14 20:47:52 +0000631 continue;
wdenk998eaae2004-04-18 19:43:36 +0000632 }
wdenk06d01db2003-03-14 20:47:52 +0000633
wdenkfe8c2802002-11-03 00:38:21 +0000634 lDest = (char *) (dest + jNode->offset);
635#if 0
wdenk06d01db2003-03-14 20:47:52 +0000636 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000637 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000638#endif
639 switch (jNode->compr) {
640 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000641 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
642 break;
643 case JFFS2_COMPR_ZERO:
644 ret = 0;
645 for (i = 0; i < jNode->dsize; i++)
646 *(lDest++) = 0;
647 break;
648 case JFFS2_COMPR_RTIME:
649 ret = 0;
650 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
651 break;
652 case JFFS2_COMPR_DYNRUBIN:
653 /* this is slow but it works */
654 ret = 0;
655 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
656 break;
657 case JFFS2_COMPR_ZLIB:
658 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
659 break;
wdenk412babe2005-05-05 09:51:44 +0000660#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000661 case JFFS2_COMPR_LZO:
662 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
663 break;
wdenk412babe2005-05-05 09:51:44 +0000664 case JFFS2_COMPR_LZARI:
665 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
666 break;
wdenk07cc0992005-05-05 00:04:14 +0000667#endif
wdenkfe8c2802002-11-03 00:38:21 +0000668 default:
669 /* unknown */
670 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
wdenk998eaae2004-04-18 19:43:36 +0000671 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000672 return -1;
673 break;
674 }
675 }
676
wdenkfe8c2802002-11-03 00:38:21 +0000677#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000678 putLabeledWord("read_inode: totalSize = ", totalSize);
679 putLabeledWord("read_inode: compr ret = ", ret);
680#endif
681 }
wdenkfe8c2802002-11-03 00:38:21 +0000682 counter++;
wdenk998eaae2004-04-18 19:43:36 +0000683 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000684 }
wdenkfe8c2802002-11-03 00:38:21 +0000685
686#if 0
wdenk06d01db2003-03-14 20:47:52 +0000687 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000688#endif
wdenk06d01db2003-03-14 20:47:52 +0000689 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000690}
691
692/* find the inode from the slashless name given a parent */
693static u32
694jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
695{
696 struct b_node *b;
697 struct jffs2_raw_dirent *jDir;
698 int len;
699 u32 counter;
700 u32 version = 0;
701 u32 inode = 0;
702
703 /* name is assumed slash free */
704 len = strlen(name);
705
706 counter = 0;
707 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000708 for(b = pL->dir.listHead; b; b = b->next, counter++) {
wdenk998eaae2004-04-18 19:43:36 +0000709 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000710 if ((pino == jDir->pino) && (len == jDir->nsize) &&
711 (jDir->ino) && /* 0 for unlink */
wdenkfe8c2802002-11-03 00:38:21 +0000712 (!strncmp(jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000713 if (jDir->version < version) {
714 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000715 continue;
wdenk998eaae2004-04-18 19:43:36 +0000716 }
wdenkfe8c2802002-11-03 00:38:21 +0000717
wdenk7205e402003-09-10 22:30:53 +0000718 if (jDir->version == version && inode != 0) {
719 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000720 putstr(" ** ERROR ** ");
721 putnstr(jDir->name, jDir->nsize);
722 putLabeledWord(" has dup version =", version);
723 }
724 inode = jDir->ino;
725 version = jDir->version;
726 }
727#if 0
728 putstr("\r\nfind_inode:p&l ->");
729 putnstr(jDir->name, jDir->nsize);
730 putstr("\r\n");
731 putLabeledWord("pino = ", jDir->pino);
732 putLabeledWord("nsize = ", jDir->nsize);
733 putLabeledWord("b = ", (u32) b);
734 putLabeledWord("counter = ", counter);
735#endif
wdenk998eaae2004-04-18 19:43:36 +0000736 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000737 }
738 return inode;
739}
740
wdenk180d3f72004-01-04 16:28:35 +0000741char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000742{
wdenk06d01db2003-03-14 20:47:52 +0000743 static const char *l = "xwr";
744 int mask = 1, i;
745 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000746
wdenk06d01db2003-03-14 20:47:52 +0000747 switch (mode & S_IFMT) {
748 case S_IFDIR: str[0] = 'd'; break;
749 case S_IFBLK: str[0] = 'b'; break;
750 case S_IFCHR: str[0] = 'c'; break;
751 case S_IFIFO: str[0] = 'f'; break;
752 case S_IFLNK: str[0] = 'l'; break;
753 case S_IFSOCK: str[0] = 's'; break;
754 case S_IFREG: str[0] = '-'; break;
755 default: str[0] = '?';
756 }
wdenkfe8c2802002-11-03 00:38:21 +0000757
wdenk06d01db2003-03-14 20:47:52 +0000758 for(i = 0; i < 9; i++) {
759 c = l[i%3];
760 str[9-i] = (mode & mask)?c:'-';
761 mask = mask<<1;
762 }
wdenkfe8c2802002-11-03 00:38:21 +0000763
wdenk06d01db2003-03-14 20:47:52 +0000764 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
765 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
766 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
767 str[10] = '\0';
768 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000769}
770
771static inline void dump_stat(struct stat *st, const char *name)
772{
wdenk06d01db2003-03-14 20:47:52 +0000773 char str[20];
774 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000775
wdenk06d01db2003-03-14 20:47:52 +0000776 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
777 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000778
wdenk06d01db2003-03-14 20:47:52 +0000779 ctime_r(&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000780
wdenk06d01db2003-03-14 20:47:52 +0000781 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
782 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000783
784/*
wdenk06d01db2003-03-14 20:47:52 +0000785 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
786 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000787*/
788
wdenk06d01db2003-03-14 20:47:52 +0000789 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000790}
791
792static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
793{
794 char fname[256];
795 struct stat st;
796
797 if(!d || !i) return -1;
798
799 strncpy(fname, d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000800 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000801
802 memset(&st,0,sizeof(st));
803
wdenk06d01db2003-03-14 20:47:52 +0000804 st.st_mtime = i->mtime;
805 st.st_mode = i->mode;
806 st.st_ino = i->ino;
wdenkfe8c2802002-11-03 00:38:21 +0000807
808 /* neither dsize nor isize help us.. do it the long way */
wdenk06d01db2003-03-14 20:47:52 +0000809 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000810
811 dump_stat(&st, fname);
812
813 if (d->type == DT_LNK) {
814 unsigned char *src = (unsigned char *) (&i[1]);
815 putstr(" -> ");
816 putnstr(src, (int)i->dsize);
817 }
818
819 putstr("\r\n");
820
821 return 0;
822}
823
824/* list inodes with the given pino */
825static u32
826jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
827{
828 struct b_node *b;
829 struct jffs2_raw_dirent *jDir;
830
wdenk06d01db2003-03-14 20:47:52 +0000831 for (b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000832 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000833 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
834 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000835 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000836 struct jffs2_raw_inode *jNode, *i = NULL;
837 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000838
839 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000840 jNode = (struct jffs2_raw_inode *)
841 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000842 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
843 if (i)
wdenk02b11f82004-05-12 22:54:36 +0000844 put_fl_mem(i);
wdenkcf8bc572005-05-04 23:50:54 +0000845
846 if (jDir->type == DT_LNK)
847 i = get_node_mem(b2->offset);
848 else
849 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
wdenk32877d62004-05-05 19:44:41 +0000850 }
wdenkfe8c2802002-11-03 00:38:21 +0000851 b2 = b2->next;
852 }
853
854 dump_inode(pL, jDir, i);
wdenk998eaae2004-04-18 19:43:36 +0000855 put_fl_mem(i);
wdenkfe8c2802002-11-03 00:38:21 +0000856 }
wdenk998eaae2004-04-18 19:43:36 +0000857 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000858 }
859 return pino;
860}
861
862static u32
863jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
864{
865 int i;
866 char tmp[256];
867 char working_tmp[256];
868 char *c;
869
870 /* discard any leading slash */
871 i = 0;
872 while (fname[i] == '/')
873 i++;
874 strcpy(tmp, &fname[i]);
875
876 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
877 {
878 strncpy(working_tmp, tmp, c - tmp);
879 working_tmp[c - tmp] = '\0';
880#if 0
881 putstr("search_inode: tmp = ");
882 putstr(tmp);
883 putstr("\r\n");
884 putstr("search_inode: wtmp = ");
885 putstr(working_tmp);
886 putstr("\r\n");
887 putstr("search_inode: c = ");
888 putstr(c);
889 putstr("\r\n");
890#endif
891 for (i = 0; i < strlen(c) - 1; i++)
892 tmp[i] = c[i + 1];
893 tmp[i] = '\0';
894#if 0
895 putstr("search_inode: post tmp = ");
896 putstr(tmp);
897 putstr("\r\n");
898#endif
899
900 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
901 putstr("find_inode failed for name=");
902 putstr(working_tmp);
903 putstr("\r\n");
904 return 0;
905 }
906 }
907 /* this is for the bare filename, directories have already been mapped */
908 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
909 putstr("find_inode failed for name=");
910 putstr(tmp);
911 putstr("\r\n");
912 return 0;
913 }
914 return pino;
915
916}
917
918static u32
919jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
920{
921 struct b_node *b;
922 struct b_node *b2;
923 struct jffs2_raw_dirent *jDir;
924 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +0000925 u8 jDirFoundType = 0;
926 u32 jDirFoundIno = 0;
927 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000928 char tmp[256];
929 u32 version = 0;
930 u32 pino;
931 unsigned char *src;
932
933 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000934 for(b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000935 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000936 if (ino == jDir->ino) {
wdenk998eaae2004-04-18 19:43:36 +0000937 if (jDir->version < version) {
938 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000939 continue;
wdenk998eaae2004-04-18 19:43:36 +0000940 }
wdenkfe8c2802002-11-03 00:38:21 +0000941
wdenk998eaae2004-04-18 19:43:36 +0000942 if (jDir->version == version && jDirFoundType) {
wdenk7205e402003-09-10 22:30:53 +0000943 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000944 putstr(" ** ERROR ** ");
945 putnstr(jDir->name, jDir->nsize);
946 putLabeledWord(" has dup version (resolve) = ",
947 version);
948 }
949
wdenk998eaae2004-04-18 19:43:36 +0000950 jDirFoundType = jDir->type;
951 jDirFoundIno = jDir->ino;
952 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +0000953 version = jDir->version;
954 }
wdenk998eaae2004-04-18 19:43:36 +0000955 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000956 }
957 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +0000958 if (jDirFoundType != DT_LNK)
959 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +0000960
961 /* it's a soft link so we follow it again. */
962 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000963 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000964 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
965 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +0000966 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +0000967
968#if 0
969 putLabeledWord("\t\t dsize = ", jNode->dsize);
970 putstr("\t\t target = ");
971 putnstr(src, jNode->dsize);
972 putstr("\r\n");
973#endif
974 strncpy(tmp, src, jNode->dsize);
975 tmp[jNode->dsize] = '\0';
wdenk998eaae2004-04-18 19:43:36 +0000976 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000977 break;
978 }
979 b2 = b2->next;
wdenk998eaae2004-04-18 19:43:36 +0000980 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000981 }
982 /* ok so the name of the new file to find is in tmp */
983 /* if it starts with a slash it is root based else shared dirs */
984 if (tmp[0] == '/')
985 pino = 1;
986 else
wdenk998eaae2004-04-18 19:43:36 +0000987 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +0000988
989 return jffs2_1pass_search_inode(pL, tmp, pino);
990}
991
992static u32
993jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
994{
995 int i;
996 char tmp[256];
997 char working_tmp[256];
998 char *c;
999
1000 /* discard any leading slash */
1001 i = 0;
1002 while (fname[i] == '/')
1003 i++;
1004 strcpy(tmp, &fname[i]);
1005 working_tmp[0] = '\0';
1006 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1007 {
1008 strncpy(working_tmp, tmp, c - tmp);
1009 working_tmp[c - tmp] = '\0';
1010 for (i = 0; i < strlen(c) - 1; i++)
1011 tmp[i] = c[i + 1];
1012 tmp[i] = '\0';
1013 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001014 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1015 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001016 putstr("find_inode failed for name=");
1017 putstr(working_tmp);
1018 putstr("\r\n");
1019 return 0;
1020 }
1021 }
1022
1023 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1024 putstr("find_inode failed for name=");
1025 putstr(tmp);
1026 putstr("\r\n");
1027 return 0;
1028 }
1029 /* this is for the bare filename, directories have already been mapped */
1030 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1031 putstr("find_inode failed for name=");
1032 putstr(tmp);
1033 putstr("\r\n");
1034 return 0;
1035 }
1036 return pino;
1037
1038}
1039
1040unsigned char
1041jffs2_1pass_rescan_needed(struct part_info *part)
1042{
1043 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001044 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001045 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001046 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001047
1048 if (part->jffs2_priv == 0){
1049 DEBUGF ("rescan: First time in use\n");
1050 return 1;
1051 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001052
wdenkfe8c2802002-11-03 00:38:21 +00001053 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001054 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001055 DEBUGF ("rescan: fraglist zero\n");
1056 return 1;
1057 }
1058
wdenk06d01db2003-03-14 20:47:52 +00001059 /* but suppose someone reflashed a partition at the same offset... */
1060 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001061 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001062 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1063 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001064 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001065 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1066 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001067 return 1;
1068 }
1069 b = b->next;
1070 }
1071 return 0;
1072}
1073
wdenk06d01db2003-03-14 20:47:52 +00001074#ifdef DEBUG_FRAGMENTS
1075static void
1076dump_fragments(struct b_lists *pL)
1077{
1078 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001079 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001080 struct jffs2_raw_inode *jNode;
1081
1082 putstr("\r\n\r\n******The fragment Entries******\r\n");
1083 b = pL->frag.listHead;
1084 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001085 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1086 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001087 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1088 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1089 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1090 putLabeledWord("\tbuild_list: version = ", jNode->version);
1091 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1092 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1093 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1094 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1095 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1096 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1097 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1098 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001099 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001100 b = b->next;
1101 }
1102}
1103#endif
1104
1105#ifdef DEBUG_DIRENTS
1106static void
1107dump_dirents(struct b_lists *pL)
1108{
1109 struct b_node *b;
1110 struct jffs2_raw_dirent *jDir;
1111
1112 putstr("\r\n\r\n******The directory Entries******\r\n");
1113 b = pL->dir.listHead;
1114 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001115 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +00001116 putstr("\r\n");
1117 putnstr(jDir->name, jDir->nsize);
1118 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1119 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1120 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1121 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1122 putLabeledWord("\tbuild_list: version = ", jDir->version);
1123 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1124 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1125 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1126 putLabeledWord("\tbuild_list: type = ", jDir->type);
1127 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1128 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
wdenk8bde7f72003-06-27 21:31:46 +00001129 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001130 b = b->next;
wdenk998eaae2004-04-18 19:43:36 +00001131 put_fl_mem(jDir);
wdenk06d01db2003-03-14 20:47:52 +00001132 }
1133}
1134#endif
1135
wdenkfe8c2802002-11-03 00:38:21 +00001136static u32
1137jffs2_1pass_build_lists(struct part_info * part)
1138{
1139 struct b_lists *pL;
1140 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001141 u32 offset, oldoffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001142 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1143 u32 counter = 0;
1144 u32 counter4 = 0;
1145 u32 counterF = 0;
1146 u32 counterN = 0;
1147
1148 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1149 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1150 /* only about 5 %. not enough to inconvenience people for. */
1151 /* lcd_off(); */
1152
1153 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001154 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001155 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001156 offset = 0;
wdenk4b9206e2004-03-23 22:14:11 +00001157 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001158
1159 /* start at the beginning of the partition */
1160 while (offset < max) {
wdenk06d01db2003-03-14 20:47:52 +00001161 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
1162 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1163 oldoffset = offset;
1164 }
wdenk0b8fa032004-04-25 14:37:29 +00001165
wdenkfc1cfcd2004-04-25 15:41:35 +00001166 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
1167 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
1168 /* if its a fragment add it */
1169 if (node->nodetype == JFFS2_NODETYPE_INODE &&
wdenk06d01db2003-03-14 20:47:52 +00001170 inode_crc((struct jffs2_raw_inode *) node)) {
1171 if (insert_node(&pL->frag, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001172 offset) == NULL) {
1173 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001174 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001175 }
wdenkfe8c2802002-11-03 00:38:21 +00001176 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1177 dirent_crc((struct jffs2_raw_dirent *) node) &&
1178 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
wdenkfc1cfcd2004-04-25 15:41:35 +00001179 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001180 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001181 if (insert_node(&pL->dir, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001182 offset) == NULL) {
1183 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001184 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001185 }
wdenkfe8c2802002-11-03 00:38:21 +00001186 counterN++;
1187 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1188 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001189 printf("OOPS Cleanmarker has bad size "
1190 "%d != %d\n", node->totlen,
1191 sizeof(struct jffs2_unknown_node));
wdenk7205e402003-09-10 22:30:53 +00001192 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1193 if (node->totlen < sizeof(struct jffs2_unknown_node))
1194 printf("OOPS Padding has bad size "
1195 "%d < %d\n", node->totlen,
1196 sizeof(struct jffs2_unknown_node));
wdenkfe8c2802002-11-03 00:38:21 +00001197 } else {
wdenkfc1cfcd2004-04-25 15:41:35 +00001198 printf("Unknown node type: %x len %d "
1199 "offset 0x%x\n", node->nodetype,
1200 node->totlen, offset);
wdenkfe8c2802002-11-03 00:38:21 +00001201 }
1202 offset += ((node->totlen + 3) & ~3);
1203 counterF++;
wdenk06d01db2003-03-14 20:47:52 +00001204 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1205 node->nodetype == JFFS2_EMPTY_BITMASK) {
wdenkfe8c2802002-11-03 00:38:21 +00001206 offset = jffs2_scan_empty(offset, part);
wdenkfc1cfcd2004-04-25 15:41:35 +00001207 } else { /* if we know nothing, we just step and look. */
wdenkfe8c2802002-11-03 00:38:21 +00001208 offset += 4;
1209 counter4++;
1210 }
1211/* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
wdenk998eaae2004-04-18 19:43:36 +00001212 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001213 }
1214
1215 putstr("\b\b done.\r\n"); /* close off the dots */
1216 /* turn the lcd back on. */
1217 /* splash(); */
1218
1219#if 0
wdenk06d01db2003-03-14 20:47:52 +00001220 putLabeledWord("dir entries = ", pL->dir.listCount);
1221 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001222 putLabeledWord("+4 increments = ", counter4);
1223 putLabeledWord("+file_offset increments = ", counterF);
1224
1225#endif
1226
wdenk06d01db2003-03-14 20:47:52 +00001227#ifdef DEBUG_DIRENTS
1228 dump_dirents(pL);
1229#endif
wdenkfe8c2802002-11-03 00:38:21 +00001230
wdenk06d01db2003-03-14 20:47:52 +00001231#ifdef DEBUG_FRAGMENTS
1232 dump_fragments(pL);
1233#endif
wdenkfe8c2802002-11-03 00:38:21 +00001234
wdenkfe8c2802002-11-03 00:38:21 +00001235 /* give visual feedback that we are done scanning the flash */
1236 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1237 return 1;
1238}
1239
1240
wdenkfe8c2802002-11-03 00:38:21 +00001241static u32
1242jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1243{
1244 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001245 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001246 struct jffs2_raw_inode *jNode;
1247 int i;
1248
wdenkfe8c2802002-11-03 00:38:21 +00001249 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1250 piL->compr_info[i].num_frags = 0;
1251 piL->compr_info[i].compr_sum = 0;
1252 piL->compr_info[i].decompr_sum = 0;
1253 }
1254
wdenk06d01db2003-03-14 20:47:52 +00001255 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001256 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001257 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1258 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001259 if (jNode->compr < JFFS2_NUM_COMPR) {
1260 piL->compr_info[jNode->compr].num_frags++;
1261 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1262 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1263 }
1264 b = b->next;
1265 }
1266 return 0;
1267}
1268
1269
wdenkfe8c2802002-11-03 00:38:21 +00001270static struct b_lists *
1271jffs2_get_list(struct part_info * part, const char *who)
1272{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001273 /* copy requested part_info struct pointer to global location */
1274 current_part = part;
1275
wdenkfe8c2802002-11-03 00:38:21 +00001276 if (jffs2_1pass_rescan_needed(part)) {
1277 if (!jffs2_1pass_build_lists(part)) {
1278 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1279 return NULL;
1280 }
1281 }
1282 return (struct b_lists *)part->jffs2_priv;
1283}
1284
1285
1286/* Print directory / file contents */
1287u32
1288jffs2_1pass_ls(struct part_info * part, const char *fname)
1289{
1290 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001291 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001292 u32 inode;
1293
wdenk06d01db2003-03-14 20:47:52 +00001294 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001295 return 0;
1296
1297 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1298 putstr("ls: Failed to scan jffs2 file structure\r\n");
1299 return 0;
1300 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001301
1302
wdenkfe8c2802002-11-03 00:38:21 +00001303#if 0
1304 putLabeledWord("found file at inode = ", inode);
1305 putLabeledWord("read_inode returns = ", ret);
1306#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001307
1308 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001309}
1310
1311
wdenkfe8c2802002-11-03 00:38:21 +00001312/* Load a file from flash into memory. fname can be a full path */
1313u32
1314jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1315{
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
1321 if (! (pl = jffs2_get_list(part, "load")))
1322 return 0;
1323
1324 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1325 putstr("load: Failed to find inode\r\n");
1326 return 0;
1327 }
1328
1329 /* Resolve symlinks */
1330 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1331 putstr("load: Failed to resolve inode structure\r\n");
1332 return 0;
1333 }
1334
1335 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1336 putstr("load: Failed to read inode\r\n");
1337 return 0;
1338 }
1339
1340 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1341 (unsigned long) dest, ret);
1342 return ret;
1343}
1344
1345/* Return information about the fs on this partition */
1346u32
1347jffs2_1pass_info(struct part_info * part)
1348{
1349 struct b_jffs2_info info;
1350 struct b_lists *pl;
1351 int i;
1352
1353 if (! (pl = jffs2_get_list(part, "info")))
1354 return 0;
1355
1356 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001357 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001358 printf ("Compression: %s\n"
1359 "\tfrag count: %d\n"
1360 "\tcompressed sum: %d\n"
1361 "\tuncompressed sum: %d\n",
1362 compr_names[i],
1363 info.compr_info[i].num_frags,
1364 info.compr_info[i].compr_sum,
1365 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001366 }
1367 return 1;
1368}
1369
1370#endif /* CFG_CMD_JFFS2 */