blob: 49c86524c769d5524c261e2de5fc27c5b604bc70 [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)
147#include <nand.h>
wdenk998eaae2004-04-18 19:43:36 +0000148/*
149 * Support for jffs2 on top of NAND-flash
150 *
151 * NAND memory isn't mapped in processor's address space,
152 * so data should be fetched from flash before
153 * being processed. This is exactly what functions declared
154 * here do.
155 *
156 */
157
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100158/* info for NAND chips, defined in drivers/nand/nand.c */
159extern nand_info_t nand_info[];
wdenk998eaae2004-04-18 19:43:36 +0000160
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
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100170#ifdef CFG_NAND_LEGACY
wdenk998eaae2004-04-18 19:43:36 +0000171static u8* nand_cache = NULL;
172static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000173
174static int read_nand_cached(u32 off, u32 size, u_char *buf)
175{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200176 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000177 u32 bytes_read = 0;
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100178 ulong retlen;
wdenk998eaae2004-04-18 19:43:36 +0000179 int cpy_bytes;
180
181 while (bytes_read < size) {
182 if ((off + bytes_read < nand_cache_off) ||
183 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
184 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
185 if (!nand_cache) {
186 /* This memory never gets freed but 'cause
187 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000188 nand_cache = malloc(NAND_CACHE_SIZE);
189 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000190 printf("read_nand_cached: can't alloc cache size %d bytes\n",
191 NAND_CACHE_SIZE);
192 return -1;
193 }
194 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100195
196 retlen = NAND_CACHE_SIZE;
197 if (nand_read(&nand_info[id->num], nand_cache_off,
198 &retlen, nand_cache) != 0 ||
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200199 retlen != NAND_CACHE_SIZE) {
wdenk998eaae2004-04-18 19:43:36 +0000200 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200201 nand_cache_off, NAND_CACHE_SIZE);
wdenk998eaae2004-04-18 19:43:36 +0000202 return -1;
203 }
204 }
205 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
206 if (cpy_bytes > size - bytes_read)
207 cpy_bytes = size - bytes_read;
208 memcpy(buf + bytes_read,
209 nand_cache + off + bytes_read - nand_cache_off,
210 cpy_bytes);
211 bytes_read += cpy_bytes;
212 }
213 return bytes_read;
214}
215
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200216static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000217{
218 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
219
220 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200221 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000222 return NULL;
223 }
224 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000225 if (!ext_buf)
226 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000227 return NULL;
228 }
229
230 return buf;
231}
232
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200233static void *get_node_mem_nand(u32 off)
wdenk998eaae2004-04-18 19:43:36 +0000234{
235 struct jffs2_unknown_node node;
236 void *ret = NULL;
237
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200238 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000239 return NULL;
240
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200241 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000242 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
243 NULL))) {
244 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
245 off, node.magic, node.nodetype, node.totlen);
246 }
247 return ret;
248}
249
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200250static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000251{
252 free(buf);
253}
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100254#endif /* CFG_NAND_LEGACY */
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200255#endif /* #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
wdenk998eaae2004-04-18 19:43:36 +0000256
wdenk998eaae2004-04-18 19:43:36 +0000257
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200258#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
259/*
260 * Support for jffs2 on top of NOR-flash
261 *
262 * NOR flash memory is mapped in processor's address space,
263 * just return address.
264 */
265static inline void *get_fl_mem_nor(u32 off)
266{
267 u32 addr = off;
268 struct mtdids *id = current_part->dev->id;
269
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200270 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200271 flash_info_t *flash = &flash_info[id->num];
272
273 addr += flash->start[0];
274 return (void*)addr;
275}
276
277static inline void *get_node_mem_nor(u32 off)
278{
279 return (void*)get_fl_mem_nor(off);
280}
281#endif /* #if (CONFIG_COMMANDS & CFG_CMD_FLASH) */
282
283
284/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200285 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200286 *
287 */
wdenk998eaae2004-04-18 19:43:36 +0000288static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
289{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200290 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200291
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200292#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
293 if (id->type == MTD_DEV_TYPE_NOR)
294 return get_fl_mem_nor(off);
295#endif
296
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100297#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200298 if (id->type == MTD_DEV_TYPE_NAND)
299 return get_fl_mem_nand(off, size, ext_buf);
300#endif
301
302 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000303 return (void*)off;
304}
305
306static inline void *get_node_mem(u32 off)
307{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200308 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200309
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200310#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
311 if (id->type == MTD_DEV_TYPE_NOR)
312 return get_node_mem_nor(off);
313#endif
314
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100315#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200316 if (id->type == MTD_DEV_TYPE_NAND)
317 return get_node_mem_nand(off);
318#endif
319
320 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000321 return (void*)off;
322}
323
wdenk507bbe32004-04-18 21:13:41 +0000324static inline void put_fl_mem(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000325{
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100326#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200327 struct mtdids *id = current_part->dev->id;
328
329 if (id->type == MTD_DEV_TYPE_NAND)
330 return put_fl_mem_nand(buf);
331#endif
wdenk998eaae2004-04-18 19:43:36 +0000332}
333
wdenk06d01db2003-03-14 20:47:52 +0000334/* Compression names */
335static char *compr_names[] = {
336 "NONE",
337 "ZERO",
338 "RTIME",
339 "RUBINMIPS",
340 "COPY",
341 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000342 "ZLIB",
wdenk412babe2005-05-05 09:51:44 +0000343#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000344 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000345 "LZARI",
346#endif
wdenk06d01db2003-03-14 20:47:52 +0000347};
348
349/* Spinning wheel */
350static char spinner[] = { '|', '/', '-', '\\' };
351
352/* Memory management */
353struct mem_block {
354 u32 index;
355 struct mem_block *next;
356 struct b_node nodes[NODE_CHUNK];
357};
358
359
360static void
361free_nodes(struct b_list *list)
362{
363 while (list->listMemBase != NULL) {
364 struct mem_block *next = list->listMemBase->next;
365 free( list->listMemBase );
366 list->listMemBase = next;
367 }
368}
wdenkfe8c2802002-11-03 00:38:21 +0000369
370static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000371add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000372{
wdenk06d01db2003-03-14 20:47:52 +0000373 u32 index = 0;
374 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000375 struct b_node *b;
376
wdenk06d01db2003-03-14 20:47:52 +0000377 memBase = list->listMemBase;
378 if (memBase != NULL)
379 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000380#if 0
381 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000382 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000383#endif
384
wdenk06d01db2003-03-14 20:47:52 +0000385 if (memBase == NULL || index >= NODE_CHUNK) {
386 /* we need more space before we continue */
387 memBase = mmalloc(sizeof(struct mem_block));
388 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000389 putstr("add_node: malloc failed\n");
390 return NULL;
391 }
wdenk06d01db2003-03-14 20:47:52 +0000392 memBase->next = list->listMemBase;
393 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000394#if 0
395 putLabeledWord("add_node: alloced a new membase at ", *memBase);
396#endif
397
398 }
399 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000400 b = &memBase->nodes[index];
401 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000402
wdenk06d01db2003-03-14 20:47:52 +0000403 memBase->index = index;
404 list->listMemBase = memBase;
405 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000406 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000407}
408
wdenk06d01db2003-03-14 20:47:52 +0000409static struct b_node *
410insert_node(struct b_list *list, u32 offset)
411{
412 struct b_node *new;
413#ifdef CFG_JFFS2_SORT_FRAGMENTS
414 struct b_node *b, *prev;
415#endif
416
417 if (!(new = add_node(list))) {
418 putstr("add_node failed!\r\n");
419 return NULL;
420 }
421 new->offset = offset;
422
423#ifdef CFG_JFFS2_SORT_FRAGMENTS
424 if (list->listTail != NULL && list->listCompare(new, list->listTail))
425 prev = list->listTail;
426 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
427 prev = list->listLast;
428 else
429 prev = NULL;
430
431 for (b = (prev ? prev->next : list->listHead);
432 b != NULL && list->listCompare(new, b);
433 prev = b, b = b->next) {
434 list->listLoops++;
435 }
436 if (b != NULL)
437 list->listLast = prev;
438
439 if (b != NULL) {
440 new->next = b;
441 if (prev != NULL)
442 prev->next = new;
443 else
444 list->listHead = new;
445 } else
446#endif
447 {
448 new->next = (struct b_node *) NULL;
449 if (list->listTail != NULL) {
450 list->listTail->next = new;
451 list->listTail = new;
452 } else {
453 list->listTail = list->listHead = new;
454 }
455 }
456
457 return new;
458}
459
460#ifdef CFG_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000461/* Sort data entries with the latest version last, so that if there
462 * is overlapping data the latest version will be used.
463 */
wdenk06d01db2003-03-14 20:47:52 +0000464static int compare_inodes(struct b_node *new, struct b_node *old)
465{
wdenk998eaae2004-04-18 19:43:36 +0000466 struct jffs2_raw_inode ojNew;
467 struct jffs2_raw_inode ojOld;
468 struct jffs2_raw_inode *jNew =
469 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
470 struct jffs2_raw_inode *jOld =
471 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000472
wdenk7205e402003-09-10 22:30:53 +0000473 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000474}
475
wdenk7205e402003-09-10 22:30:53 +0000476/* Sort directory entries so all entries in the same directory
477 * with the same name are grouped together, with the latest version
478 * last. This makes it easy to eliminate all but the latest version
479 * by marking the previous version dead by setting the inode to 0.
480 */
wdenk06d01db2003-03-14 20:47:52 +0000481static int compare_dirents(struct b_node *new, struct b_node *old)
482{
wdenk998eaae2004-04-18 19:43:36 +0000483 struct jffs2_raw_dirent ojNew;
484 struct jffs2_raw_dirent ojOld;
485 struct jffs2_raw_dirent *jNew =
486 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000487 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000488 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000489 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000490
wdenk7205e402003-09-10 22:30:53 +0000491 /* ascending sort by pino */
492 if (jNew->pino != jOld->pino)
493 return jNew->pino > jOld->pino;
494
495 /* pino is the same, so use ascending sort by nsize, so
496 * we don't do strncmp unless we really must.
497 */
498 if (jNew->nsize != jOld->nsize)
499 return jNew->nsize > jOld->nsize;
500
501 /* length is also the same, so use ascending sort by name
502 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200503 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk7205e402003-09-10 22:30:53 +0000504 if (cmp != 0)
505 return cmp > 0;
506
507 /* we have duplicate names in this directory, so use ascending
508 * sort by version
509 */
510 if (jNew->version > jOld->version) {
511 /* since jNew is newer, we know jOld is not valid, so
512 * mark it with inode 0 and it will not be used
513 */
514 jOld->ino = 0;
515 return 1;
516 }
wdenk42d1f032003-10-15 23:53:47 +0000517
wdenk7205e402003-09-10 22:30:53 +0000518 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000519}
520#endif
wdenkfe8c2802002-11-03 00:38:21 +0000521
522static u32
523jffs2_scan_empty(u32 start_offset, struct part_info *part)
524{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200525 char *max = (char *)(part->offset + part->size - sizeof(struct jffs2_raw_inode));
526 char *offset = (char *)(part->offset + start_offset);
wdenk998eaae2004-04-18 19:43:36 +0000527 u32 off;
wdenkfe8c2802002-11-03 00:38:21 +0000528
wdenk998eaae2004-04-18 19:43:36 +0000529 while (offset < max &&
530 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
wdenk06d01db2003-03-14 20:47:52 +0000531 offset += sizeof(u32);
532 /* return if spinning is due */
533 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
wdenkfe8c2802002-11-03 00:38:21 +0000534 }
wdenkfc1cfcd2004-04-25 15:41:35 +0000535
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200536 return (u32)offset - part->offset;
wdenkfe8c2802002-11-03 00:38:21 +0000537}
538
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200539void
540jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000541{
wdenk06d01db2003-03-14 20:47:52 +0000542 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000543
wdenk06d01db2003-03-14 20:47:52 +0000544 if (part->jffs2_priv != NULL) {
545 pL = (struct b_lists *)part->jffs2_priv;
546 free_nodes(&pL->frag);
547 free_nodes(&pL->dir);
548 free(pL);
549 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200550}
551
552static u32
553jffs_init_1pass_list(struct part_info *part)
554{
555 struct b_lists *pL;
556
557 jffs2_free_cache(part);
558
wdenk06d01db2003-03-14 20:47:52 +0000559 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
560 pL = (struct b_lists *)part->jffs2_priv;
561
562 memset(pL, 0, sizeof(*pL));
563#ifdef CFG_JFFS2_SORT_FRAGMENTS
564 pL->dir.listCompare = compare_dirents;
565 pL->frag.listCompare = compare_inodes;
566#endif
wdenkfe8c2802002-11-03 00:38:21 +0000567 }
568 return 0;
569}
570
571/* find the inode from the slashless name given a parent */
572static long
573jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
574{
575 struct b_node *b;
576 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000577 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000578 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200579 uchar *lDest;
580 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000581 long ret;
582 int i;
583 u32 counter = 0;
wdenk7205e402003-09-10 22:30:53 +0000584#ifdef CFG_JFFS2_SORT_FRAGMENTS
585 /* Find file size before loading any data, so fragments that
586 * start past the end of file can be ignored. A fragment
587 * that is partially in the file is loaded, so extra data may
588 * be loaded up to the next 4K boundary above the file size.
589 * This shouldn't cause trouble when loading kernel images, so
590 * we will live with it.
591 */
592 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000593 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
wdenk998eaae2004-04-18 19:43:36 +0000594 sizeof(struct jffs2_raw_inode), NULL);
wdenk7205e402003-09-10 22:30:53 +0000595 if ((inode == jNode->ino)) {
596 /* get actual file length from the newest node */
597 if (jNode->version >= latestVersion) {
598 totalSize = jNode->isize;
599 latestVersion = jNode->version;
600 }
601 }
wdenk998eaae2004-04-18 19:43:36 +0000602 put_fl_mem(jNode);
wdenk7205e402003-09-10 22:30:53 +0000603 }
604#endif
wdenkfe8c2802002-11-03 00:38:21 +0000605
wdenk06d01db2003-03-14 20:47:52 +0000606 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000607 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000608 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000609#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000610 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
611 putLabeledWord("read_inode: inode = ", jNode->ino);
612 putLabeledWord("read_inode: version = ", jNode->version);
613 putLabeledWord("read_inode: isize = ", jNode->isize);
614 putLabeledWord("read_inode: offset = ", jNode->offset);
615 putLabeledWord("read_inode: csize = ", jNode->csize);
616 putLabeledWord("read_inode: dsize = ", jNode->dsize);
617 putLabeledWord("read_inode: compr = ", jNode->compr);
618 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
619 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000620#endif
wdenk7205e402003-09-10 22:30:53 +0000621
622#ifndef CFG_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000623 /* get actual file length from the newest node */
624 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000625 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000626 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000627 }
wdenk7205e402003-09-10 22:30:53 +0000628#endif
wdenkfe8c2802002-11-03 00:38:21 +0000629
630 if(dest) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200631 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000632 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000633 if (jNode->offset > totalSize) {
634 put_fl_mem(jNode);
wdenk06d01db2003-03-14 20:47:52 +0000635 continue;
wdenk998eaae2004-04-18 19:43:36 +0000636 }
wdenk06d01db2003-03-14 20:47:52 +0000637
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200638 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000639#if 0
wdenk06d01db2003-03-14 20:47:52 +0000640 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000641 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000642#endif
643 switch (jNode->compr) {
644 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000645 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
646 break;
647 case JFFS2_COMPR_ZERO:
648 ret = 0;
649 for (i = 0; i < jNode->dsize; i++)
650 *(lDest++) = 0;
651 break;
652 case JFFS2_COMPR_RTIME:
653 ret = 0;
654 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
655 break;
656 case JFFS2_COMPR_DYNRUBIN:
657 /* this is slow but it works */
658 ret = 0;
659 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
660 break;
661 case JFFS2_COMPR_ZLIB:
662 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
663 break;
wdenk412babe2005-05-05 09:51:44 +0000664#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000665 case JFFS2_COMPR_LZO:
666 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
667 break;
wdenk412babe2005-05-05 09:51:44 +0000668 case JFFS2_COMPR_LZARI:
669 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
670 break;
wdenk07cc0992005-05-05 00:04:14 +0000671#endif
wdenkfe8c2802002-11-03 00:38:21 +0000672 default:
673 /* unknown */
674 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
wdenk998eaae2004-04-18 19:43:36 +0000675 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000676 return -1;
677 break;
678 }
679 }
680
wdenkfe8c2802002-11-03 00:38:21 +0000681#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000682 putLabeledWord("read_inode: totalSize = ", totalSize);
683 putLabeledWord("read_inode: compr ret = ", ret);
684#endif
685 }
wdenkfe8c2802002-11-03 00:38:21 +0000686 counter++;
wdenk998eaae2004-04-18 19:43:36 +0000687 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000688 }
wdenkfe8c2802002-11-03 00:38:21 +0000689
690#if 0
wdenk06d01db2003-03-14 20:47:52 +0000691 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000692#endif
wdenk06d01db2003-03-14 20:47:52 +0000693 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000694}
695
696/* find the inode from the slashless name given a parent */
697static u32
698jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
699{
700 struct b_node *b;
701 struct jffs2_raw_dirent *jDir;
702 int len;
703 u32 counter;
704 u32 version = 0;
705 u32 inode = 0;
706
707 /* name is assumed slash free */
708 len = strlen(name);
709
710 counter = 0;
711 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000712 for(b = pL->dir.listHead; b; b = b->next, counter++) {
wdenk998eaae2004-04-18 19:43:36 +0000713 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000714 if ((pino == jDir->pino) && (len == jDir->nsize) &&
715 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200716 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000717 if (jDir->version < version) {
718 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000719 continue;
wdenk998eaae2004-04-18 19:43:36 +0000720 }
wdenkfe8c2802002-11-03 00:38:21 +0000721
wdenk7205e402003-09-10 22:30:53 +0000722 if (jDir->version == version && inode != 0) {
723 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000724 putstr(" ** ERROR ** ");
725 putnstr(jDir->name, jDir->nsize);
726 putLabeledWord(" has dup version =", version);
727 }
728 inode = jDir->ino;
729 version = jDir->version;
730 }
731#if 0
732 putstr("\r\nfind_inode:p&l ->");
733 putnstr(jDir->name, jDir->nsize);
734 putstr("\r\n");
735 putLabeledWord("pino = ", jDir->pino);
736 putLabeledWord("nsize = ", jDir->nsize);
737 putLabeledWord("b = ", (u32) b);
738 putLabeledWord("counter = ", counter);
739#endif
wdenk998eaae2004-04-18 19:43:36 +0000740 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000741 }
742 return inode;
743}
744
wdenk180d3f72004-01-04 16:28:35 +0000745char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000746{
wdenk06d01db2003-03-14 20:47:52 +0000747 static const char *l = "xwr";
748 int mask = 1, i;
749 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000750
wdenk06d01db2003-03-14 20:47:52 +0000751 switch (mode & S_IFMT) {
752 case S_IFDIR: str[0] = 'd'; break;
753 case S_IFBLK: str[0] = 'b'; break;
754 case S_IFCHR: str[0] = 'c'; break;
755 case S_IFIFO: str[0] = 'f'; break;
756 case S_IFLNK: str[0] = 'l'; break;
757 case S_IFSOCK: str[0] = 's'; break;
758 case S_IFREG: str[0] = '-'; break;
759 default: str[0] = '?';
760 }
wdenkfe8c2802002-11-03 00:38:21 +0000761
wdenk06d01db2003-03-14 20:47:52 +0000762 for(i = 0; i < 9; i++) {
763 c = l[i%3];
764 str[9-i] = (mode & mask)?c:'-';
765 mask = mask<<1;
766 }
wdenkfe8c2802002-11-03 00:38:21 +0000767
wdenk06d01db2003-03-14 20:47:52 +0000768 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
769 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
770 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
771 str[10] = '\0';
772 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000773}
774
775static inline void dump_stat(struct stat *st, const char *name)
776{
wdenk06d01db2003-03-14 20:47:52 +0000777 char str[20];
778 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000779
wdenk06d01db2003-03-14 20:47:52 +0000780 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
781 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000782
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200783 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000784
wdenk06d01db2003-03-14 20:47:52 +0000785 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
786 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000787
788/*
wdenk06d01db2003-03-14 20:47:52 +0000789 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
790 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000791*/
792
wdenk06d01db2003-03-14 20:47:52 +0000793 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000794}
795
796static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
797{
798 char fname[256];
799 struct stat st;
800
801 if(!d || !i) return -1;
802
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200803 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000804 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000805
806 memset(&st,0,sizeof(st));
807
wdenk06d01db2003-03-14 20:47:52 +0000808 st.st_mtime = i->mtime;
809 st.st_mode = i->mode;
810 st.st_ino = i->ino;
wdenkfe8c2802002-11-03 00:38:21 +0000811
812 /* neither dsize nor isize help us.. do it the long way */
wdenk06d01db2003-03-14 20:47:52 +0000813 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000814
815 dump_stat(&st, fname);
816
817 if (d->type == DT_LNK) {
818 unsigned char *src = (unsigned char *) (&i[1]);
819 putstr(" -> ");
820 putnstr(src, (int)i->dsize);
821 }
822
823 putstr("\r\n");
824
825 return 0;
826}
827
828/* list inodes with the given pino */
829static u32
830jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
831{
832 struct b_node *b;
833 struct jffs2_raw_dirent *jDir;
834
wdenk06d01db2003-03-14 20:47:52 +0000835 for (b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000836 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000837 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
838 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000839 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000840 struct jffs2_raw_inode *jNode, *i = NULL;
841 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000842
843 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000844 jNode = (struct jffs2_raw_inode *)
845 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000846 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
847 if (i)
wdenk02b11f82004-05-12 22:54:36 +0000848 put_fl_mem(i);
wdenkcf8bc572005-05-04 23:50:54 +0000849
850 if (jDir->type == DT_LNK)
851 i = get_node_mem(b2->offset);
852 else
853 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
wdenk32877d62004-05-05 19:44:41 +0000854 }
wdenkfe8c2802002-11-03 00:38:21 +0000855 b2 = b2->next;
856 }
857
858 dump_inode(pL, jDir, i);
wdenk998eaae2004-04-18 19:43:36 +0000859 put_fl_mem(i);
wdenkfe8c2802002-11-03 00:38:21 +0000860 }
wdenk998eaae2004-04-18 19:43:36 +0000861 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000862 }
863 return pino;
864}
865
866static u32
867jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
868{
869 int i;
870 char tmp[256];
871 char working_tmp[256];
872 char *c;
873
874 /* discard any leading slash */
875 i = 0;
876 while (fname[i] == '/')
877 i++;
878 strcpy(tmp, &fname[i]);
879
880 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
881 {
882 strncpy(working_tmp, tmp, c - tmp);
883 working_tmp[c - tmp] = '\0';
884#if 0
885 putstr("search_inode: tmp = ");
886 putstr(tmp);
887 putstr("\r\n");
888 putstr("search_inode: wtmp = ");
889 putstr(working_tmp);
890 putstr("\r\n");
891 putstr("search_inode: c = ");
892 putstr(c);
893 putstr("\r\n");
894#endif
895 for (i = 0; i < strlen(c) - 1; i++)
896 tmp[i] = c[i + 1];
897 tmp[i] = '\0';
898#if 0
899 putstr("search_inode: post tmp = ");
900 putstr(tmp);
901 putstr("\r\n");
902#endif
903
904 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
905 putstr("find_inode failed for name=");
906 putstr(working_tmp);
907 putstr("\r\n");
908 return 0;
909 }
910 }
911 /* this is for the bare filename, directories have already been mapped */
912 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
913 putstr("find_inode failed for name=");
914 putstr(tmp);
915 putstr("\r\n");
916 return 0;
917 }
918 return pino;
919
920}
921
922static u32
923jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
924{
925 struct b_node *b;
926 struct b_node *b2;
927 struct jffs2_raw_dirent *jDir;
928 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +0000929 u8 jDirFoundType = 0;
930 u32 jDirFoundIno = 0;
931 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000932 char tmp[256];
933 u32 version = 0;
934 u32 pino;
935 unsigned char *src;
936
937 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000938 for(b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000939 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000940 if (ino == jDir->ino) {
wdenk998eaae2004-04-18 19:43:36 +0000941 if (jDir->version < version) {
942 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000943 continue;
wdenk998eaae2004-04-18 19:43:36 +0000944 }
wdenkfe8c2802002-11-03 00:38:21 +0000945
wdenk998eaae2004-04-18 19:43:36 +0000946 if (jDir->version == version && jDirFoundType) {
wdenk7205e402003-09-10 22:30:53 +0000947 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000948 putstr(" ** ERROR ** ");
949 putnstr(jDir->name, jDir->nsize);
950 putLabeledWord(" has dup version (resolve) = ",
951 version);
952 }
953
wdenk998eaae2004-04-18 19:43:36 +0000954 jDirFoundType = jDir->type;
955 jDirFoundIno = jDir->ino;
956 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +0000957 version = jDir->version;
958 }
wdenk998eaae2004-04-18 19:43:36 +0000959 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000960 }
961 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +0000962 if (jDirFoundType != DT_LNK)
963 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +0000964
965 /* it's a soft link so we follow it again. */
966 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000967 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000968 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
969 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +0000970 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +0000971
972#if 0
973 putLabeledWord("\t\t dsize = ", jNode->dsize);
974 putstr("\t\t target = ");
975 putnstr(src, jNode->dsize);
976 putstr("\r\n");
977#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200978 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000979 tmp[jNode->dsize] = '\0';
wdenk998eaae2004-04-18 19:43:36 +0000980 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000981 break;
982 }
983 b2 = b2->next;
wdenk998eaae2004-04-18 19:43:36 +0000984 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000985 }
986 /* ok so the name of the new file to find is in tmp */
987 /* if it starts with a slash it is root based else shared dirs */
988 if (tmp[0] == '/')
989 pino = 1;
990 else
wdenk998eaae2004-04-18 19:43:36 +0000991 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +0000992
993 return jffs2_1pass_search_inode(pL, tmp, pino);
994}
995
996static u32
997jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
998{
999 int i;
1000 char tmp[256];
1001 char working_tmp[256];
1002 char *c;
1003
1004 /* discard any leading slash */
1005 i = 0;
1006 while (fname[i] == '/')
1007 i++;
1008 strcpy(tmp, &fname[i]);
1009 working_tmp[0] = '\0';
1010 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1011 {
1012 strncpy(working_tmp, tmp, c - tmp);
1013 working_tmp[c - tmp] = '\0';
1014 for (i = 0; i < strlen(c) - 1; i++)
1015 tmp[i] = c[i + 1];
1016 tmp[i] = '\0';
1017 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001018 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1019 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001020 putstr("find_inode failed for name=");
1021 putstr(working_tmp);
1022 putstr("\r\n");
1023 return 0;
1024 }
1025 }
1026
1027 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1028 putstr("find_inode failed for name=");
1029 putstr(tmp);
1030 putstr("\r\n");
1031 return 0;
1032 }
1033 /* this is for the bare filename, directories have already been mapped */
1034 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1035 putstr("find_inode failed for name=");
1036 putstr(tmp);
1037 putstr("\r\n");
1038 return 0;
1039 }
1040 return pino;
1041
1042}
1043
1044unsigned char
1045jffs2_1pass_rescan_needed(struct part_info *part)
1046{
1047 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001048 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001049 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001050 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001051
1052 if (part->jffs2_priv == 0){
1053 DEBUGF ("rescan: First time in use\n");
1054 return 1;
1055 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001056
wdenkfe8c2802002-11-03 00:38:21 +00001057 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001058 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001059 DEBUGF ("rescan: fraglist zero\n");
1060 return 1;
1061 }
1062
wdenk06d01db2003-03-14 20:47:52 +00001063 /* but suppose someone reflashed a partition at the same offset... */
1064 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001065 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001066 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1067 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001068 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001069 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1070 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001071 return 1;
1072 }
1073 b = b->next;
1074 }
1075 return 0;
1076}
1077
wdenk06d01db2003-03-14 20:47:52 +00001078#ifdef DEBUG_FRAGMENTS
1079static void
1080dump_fragments(struct b_lists *pL)
1081{
1082 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001083 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001084 struct jffs2_raw_inode *jNode;
1085
1086 putstr("\r\n\r\n******The fragment Entries******\r\n");
1087 b = pL->frag.listHead;
1088 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001089 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1090 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001091 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1092 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1093 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1094 putLabeledWord("\tbuild_list: version = ", jNode->version);
1095 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1096 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1097 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1098 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1099 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1100 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1101 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1102 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001103 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001104 b = b->next;
1105 }
1106}
1107#endif
1108
1109#ifdef DEBUG_DIRENTS
1110static void
1111dump_dirents(struct b_lists *pL)
1112{
1113 struct b_node *b;
1114 struct jffs2_raw_dirent *jDir;
1115
1116 putstr("\r\n\r\n******The directory Entries******\r\n");
1117 b = pL->dir.listHead;
1118 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001119 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +00001120 putstr("\r\n");
1121 putnstr(jDir->name, jDir->nsize);
1122 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1123 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1124 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1125 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1126 putLabeledWord("\tbuild_list: version = ", jDir->version);
1127 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1128 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1129 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1130 putLabeledWord("\tbuild_list: type = ", jDir->type);
1131 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1132 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
wdenk8bde7f72003-06-27 21:31:46 +00001133 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001134 b = b->next;
wdenk998eaae2004-04-18 19:43:36 +00001135 put_fl_mem(jDir);
wdenk06d01db2003-03-14 20:47:52 +00001136 }
1137}
1138#endif
1139
wdenkfe8c2802002-11-03 00:38:21 +00001140static u32
1141jffs2_1pass_build_lists(struct part_info * part)
1142{
1143 struct b_lists *pL;
1144 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001145 u32 offset, oldoffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001146 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1147 u32 counter = 0;
1148 u32 counter4 = 0;
1149 u32 counterF = 0;
1150 u32 counterN = 0;
1151
1152 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1153 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1154 /* only about 5 %. not enough to inconvenience people for. */
1155 /* lcd_off(); */
1156
1157 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001158 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001159 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001160 offset = 0;
wdenk4b9206e2004-03-23 22:14:11 +00001161 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001162
1163 /* start at the beginning of the partition */
1164 while (offset < max) {
wdenk06d01db2003-03-14 20:47:52 +00001165 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
1166 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1167 oldoffset = offset;
1168 }
wdenk0b8fa032004-04-25 14:37:29 +00001169
wdenkfc1cfcd2004-04-25 15:41:35 +00001170 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
1171 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
1172 /* if its a fragment add it */
1173 if (node->nodetype == JFFS2_NODETYPE_INODE &&
Wolfgang Denk74f92e62006-03-12 16:05:05 +01001174 inode_crc((struct jffs2_raw_inode *) node) &&
1175 data_crc((struct jffs2_raw_inode *) node)) {
wdenk06d01db2003-03-14 20:47:52 +00001176 if (insert_node(&pL->frag, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001177 offset) == NULL) {
1178 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001179 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001180 }
wdenkfe8c2802002-11-03 00:38:21 +00001181 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1182 dirent_crc((struct jffs2_raw_dirent *) node) &&
1183 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
wdenkfc1cfcd2004-04-25 15:41:35 +00001184 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001185 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001186 if (insert_node(&pL->dir, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001187 offset) == NULL) {
1188 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001189 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001190 }
wdenkfe8c2802002-11-03 00:38:21 +00001191 counterN++;
1192 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1193 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001194 printf("OOPS Cleanmarker has bad size "
1195 "%d != %d\n", node->totlen,
1196 sizeof(struct jffs2_unknown_node));
wdenk7205e402003-09-10 22:30:53 +00001197 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1198 if (node->totlen < sizeof(struct jffs2_unknown_node))
1199 printf("OOPS Padding has bad size "
1200 "%d < %d\n", node->totlen,
1201 sizeof(struct jffs2_unknown_node));
wdenkfe8c2802002-11-03 00:38:21 +00001202 } else {
wdenkfc1cfcd2004-04-25 15:41:35 +00001203 printf("Unknown node type: %x len %d "
1204 "offset 0x%x\n", node->nodetype,
1205 node->totlen, offset);
wdenkfe8c2802002-11-03 00:38:21 +00001206 }
1207 offset += ((node->totlen + 3) & ~3);
1208 counterF++;
wdenk06d01db2003-03-14 20:47:52 +00001209 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1210 node->nodetype == JFFS2_EMPTY_BITMASK) {
wdenkfe8c2802002-11-03 00:38:21 +00001211 offset = jffs2_scan_empty(offset, part);
wdenkfc1cfcd2004-04-25 15:41:35 +00001212 } else { /* if we know nothing, we just step and look. */
wdenkfe8c2802002-11-03 00:38:21 +00001213 offset += 4;
1214 counter4++;
1215 }
1216/* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
wdenk998eaae2004-04-18 19:43:36 +00001217 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001218 }
1219
1220 putstr("\b\b done.\r\n"); /* close off the dots */
1221 /* turn the lcd back on. */
1222 /* splash(); */
1223
1224#if 0
wdenk06d01db2003-03-14 20:47:52 +00001225 putLabeledWord("dir entries = ", pL->dir.listCount);
1226 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001227 putLabeledWord("+4 increments = ", counter4);
1228 putLabeledWord("+file_offset increments = ", counterF);
1229
1230#endif
1231
wdenk06d01db2003-03-14 20:47:52 +00001232#ifdef DEBUG_DIRENTS
1233 dump_dirents(pL);
1234#endif
wdenkfe8c2802002-11-03 00:38:21 +00001235
wdenk06d01db2003-03-14 20:47:52 +00001236#ifdef DEBUG_FRAGMENTS
1237 dump_fragments(pL);
1238#endif
wdenkfe8c2802002-11-03 00:38:21 +00001239
wdenkfe8c2802002-11-03 00:38:21 +00001240 /* give visual feedback that we are done scanning the flash */
1241 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1242 return 1;
1243}
1244
1245
wdenkfe8c2802002-11-03 00:38:21 +00001246static u32
1247jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1248{
1249 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001250 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001251 struct jffs2_raw_inode *jNode;
1252 int i;
1253
wdenkfe8c2802002-11-03 00:38:21 +00001254 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1255 piL->compr_info[i].num_frags = 0;
1256 piL->compr_info[i].compr_sum = 0;
1257 piL->compr_info[i].decompr_sum = 0;
1258 }
1259
wdenk06d01db2003-03-14 20:47:52 +00001260 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001261 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001262 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1263 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001264 if (jNode->compr < JFFS2_NUM_COMPR) {
1265 piL->compr_info[jNode->compr].num_frags++;
1266 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1267 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1268 }
1269 b = b->next;
1270 }
1271 return 0;
1272}
1273
1274
wdenkfe8c2802002-11-03 00:38:21 +00001275static struct b_lists *
1276jffs2_get_list(struct part_info * part, const char *who)
1277{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001278 /* copy requested part_info struct pointer to global location */
1279 current_part = part;
1280
wdenkfe8c2802002-11-03 00:38:21 +00001281 if (jffs2_1pass_rescan_needed(part)) {
1282 if (!jffs2_1pass_build_lists(part)) {
1283 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1284 return NULL;
1285 }
1286 }
1287 return (struct b_lists *)part->jffs2_priv;
1288}
1289
1290
1291/* Print directory / file contents */
1292u32
1293jffs2_1pass_ls(struct part_info * part, const char *fname)
1294{
1295 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001296 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001297 u32 inode;
1298
wdenk06d01db2003-03-14 20:47:52 +00001299 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001300 return 0;
1301
1302 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1303 putstr("ls: Failed to scan jffs2 file structure\r\n");
1304 return 0;
1305 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001306
1307
wdenkfe8c2802002-11-03 00:38:21 +00001308#if 0
1309 putLabeledWord("found file at inode = ", inode);
1310 putLabeledWord("read_inode returns = ", ret);
1311#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001312
1313 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001314}
1315
1316
wdenkfe8c2802002-11-03 00:38:21 +00001317/* Load a file from flash into memory. fname can be a full path */
1318u32
1319jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1320{
1321
1322 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001323 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001324 u32 inode;
1325
1326 if (! (pl = jffs2_get_list(part, "load")))
1327 return 0;
1328
1329 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1330 putstr("load: Failed to find inode\r\n");
1331 return 0;
1332 }
1333
1334 /* Resolve symlinks */
1335 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1336 putstr("load: Failed to resolve inode structure\r\n");
1337 return 0;
1338 }
1339
1340 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1341 putstr("load: Failed to read inode\r\n");
1342 return 0;
1343 }
1344
1345 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1346 (unsigned long) dest, ret);
1347 return ret;
1348}
1349
1350/* Return information about the fs on this partition */
1351u32
1352jffs2_1pass_info(struct part_info * part)
1353{
1354 struct b_jffs2_info info;
1355 struct b_lists *pl;
1356 int i;
1357
1358 if (! (pl = jffs2_get_list(part, "info")))
1359 return 0;
1360
1361 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001362 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001363 printf ("Compression: %s\n"
1364 "\tfrag count: %d\n"
1365 "\tcompressed sum: %d\n"
1366 "\tuncompressed sum: %d\n",
1367 compr_names[i],
1368 info.compr_info[i].num_frags,
1369 info.compr_info[i].compr_sum,
1370 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001371 }
1372 return 1;
1373}
1374
1375#endif /* CFG_CMD_JFFS2 */