blob: 5d22dd78e97c77c204e3c5e9fd671b2679aababe [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:
Wolfgang Denka1be4762008-05-20 16:00:29 +020055 * (1) most pages are 4096 bytes
wdenkfe8c2802002-11-03 00:38:21 +000056 * (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
wdenk6b58f332003-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
wdenkae65f502004-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!
wdenk6b58f332003-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>
Stuart Wood471a2f02008-06-02 16:40:08 -0400119#include <watchdog.h>
wdenkfe8c2802002-11-03 00:38:21 +0000120#include <jffs2/jffs2.h>
121#include <jffs2/jffs2_1pass.h>
122
123#include "jffs2_private.h"
124
wdenk6b58f332003-03-14 20:47:52 +0000125
Wolfgang Denka1be4762008-05-20 16:00:29 +0200126#define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */
127#define SPIN_BLKSIZE 18 /* spin after having scanned 1<<BLKSIZE bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000128
wdenk6b58f332003-03-14 20:47:52 +0000129/* Debugging switches */
130#undef DEBUG_DIRENTS /* print directory entry list after scan */
131#undef DEBUG_FRAGMENTS /* print fragment list after scan */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200132#undef DEBUG /* enable debugging messages */
wdenkfe8c2802002-11-03 00:38:21 +0000133
wdenk6b58f332003-03-14 20:47:52 +0000134
wdenkfe8c2802002-11-03 00:38:21 +0000135#ifdef DEBUG
136# define DEBUGF(fmt,args...) printf(fmt ,##args)
137#else
138# define DEBUGF(fmt,args...)
139#endif
140
Wolfgang Denk47f57792005-08-08 01:03:24 +0200141/* keeps pointer to currentlu processed partition */
142static struct part_info *current_part;
wdenk8886a662004-04-18 19:43:36 +0000143
Wolfgang Denk15888b42007-07-05 17:56:27 +0200144#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500145 defined(CONFIG_CMD_NAND) )
Jean-Christophe PLAGNIOL-VILLARD719bb5f2008-08-13 01:40:43 +0200146#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6a076752006-04-08 19:08:06 +0200147#include <linux/mtd/nand_legacy.h>
148#else
Bartlomiej Sieka582f1a32006-03-05 18:57:33 +0100149#include <nand.h>
Marian Balakowicz6a076752006-04-08 19:08:06 +0200150#endif
wdenk8886a662004-04-18 19:43:36 +0000151/*
152 * Support for jffs2 on top of NAND-flash
153 *
154 * NAND memory isn't mapped in processor's address space,
155 * so data should be fetched from flash before
156 * being processed. This is exactly what functions declared
157 * here do.
158 *
159 */
160
Jean-Christophe PLAGNIOL-VILLARD719bb5f2008-08-13 01:40:43 +0200161#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6a076752006-04-08 19:08:06 +0200162/* this one defined in nand_legacy.c */
163int read_jffs2_nand(size_t start, size_t len,
164 size_t * retlen, u_char * buf, int nanddev);
Marian Balakowicz6a076752006-04-08 19:08:06 +0200165#endif
wdenk8886a662004-04-18 19:43:36 +0000166
167#define NAND_PAGE_SIZE 512
168#define NAND_PAGE_SHIFT 9
169#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
170
171#ifndef NAND_CACHE_PAGES
172#define NAND_CACHE_PAGES 16
173#endif
174#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
175
176static u8* nand_cache = NULL;
177static u32 nand_cache_off = (u32)-1;
wdenk8886a662004-04-18 19:43:36 +0000178
179static int read_nand_cached(u32 off, u32 size, u_char *buf)
180{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200181 struct mtdids *id = current_part->dev->id;
wdenk8886a662004-04-18 19:43:36 +0000182 u32 bytes_read = 0;
Marian Balakowicz6a076752006-04-08 19:08:06 +0200183 size_t retlen;
wdenk8886a662004-04-18 19:43:36 +0000184 int cpy_bytes;
185
186 while (bytes_read < size) {
187 if ((off + bytes_read < nand_cache_off) ||
188 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
189 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
190 if (!nand_cache) {
191 /* This memory never gets freed but 'cause
192 it's a bootloader, nobody cares */
wdenk12490652004-04-18 21:13:41 +0000193 nand_cache = malloc(NAND_CACHE_SIZE);
194 if (!nand_cache) {
wdenk8886a662004-04-18 19:43:36 +0000195 printf("read_nand_cached: can't alloc cache size %d bytes\n",
196 NAND_CACHE_SIZE);
197 return -1;
198 }
199 }
Bartlomiej Sieka582f1a32006-03-05 18:57:33 +0100200
Jean-Christophe PLAGNIOL-VILLARD719bb5f2008-08-13 01:40:43 +0200201#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6a076752006-04-08 19:08:06 +0200202 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
203 &retlen, nand_cache, id->num) < 0 ||
204 retlen != NAND_CACHE_SIZE) {
205 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
206 nand_cache_off, NAND_CACHE_SIZE);
207 return -1;
208 }
209#else
Bartlomiej Sieka582f1a32006-03-05 18:57:33 +0100210 retlen = NAND_CACHE_SIZE;
211 if (nand_read(&nand_info[id->num], nand_cache_off,
Marian Balakowicz6a076752006-04-08 19:08:06 +0200212 &retlen, nand_cache) != 0 ||
Wolfgang Denk47f57792005-08-08 01:03:24 +0200213 retlen != NAND_CACHE_SIZE) {
wdenk8886a662004-04-18 19:43:36 +0000214 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk47f57792005-08-08 01:03:24 +0200215 nand_cache_off, NAND_CACHE_SIZE);
wdenk8886a662004-04-18 19:43:36 +0000216 return -1;
217 }
Marian Balakowicz6a076752006-04-08 19:08:06 +0200218#endif
wdenk8886a662004-04-18 19:43:36 +0000219 }
220 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
221 if (cpy_bytes > size - bytes_read)
222 cpy_bytes = size - bytes_read;
223 memcpy(buf + bytes_read,
224 nand_cache + off + bytes_read - nand_cache_off,
225 cpy_bytes);
226 bytes_read += cpy_bytes;
227 }
228 return bytes_read;
229}
230
Wolfgang Denk47f57792005-08-08 01:03:24 +0200231static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk8886a662004-04-18 19:43:36 +0000232{
233 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
234
235 if (NULL == buf) {
Wolfgang Denk47f57792005-08-08 01:03:24 +0200236 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk8886a662004-04-18 19:43:36 +0000237 return NULL;
238 }
239 if (read_nand_cached(off, size, buf) < 0) {
wdenkf248ebc2004-05-05 19:44:41 +0000240 if (!ext_buf)
241 free(buf);
wdenk8886a662004-04-18 19:43:36 +0000242 return NULL;
243 }
244
245 return buf;
246}
247
Wolfgang Denk47f57792005-08-08 01:03:24 +0200248static void *get_node_mem_nand(u32 off)
wdenk8886a662004-04-18 19:43:36 +0000249{
250 struct jffs2_unknown_node node;
251 void *ret = NULL;
252
Wolfgang Denk47f57792005-08-08 01:03:24 +0200253 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk8886a662004-04-18 19:43:36 +0000254 return NULL;
255
Wolfgang Denk47f57792005-08-08 01:03:24 +0200256 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk8886a662004-04-18 19:43:36 +0000257 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
258 NULL))) {
259 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
260 off, node.magic, node.nodetype, node.totlen);
261 }
262 return ret;
263}
264
Wolfgang Denk47f57792005-08-08 01:03:24 +0200265static void put_fl_mem_nand(void *buf)
wdenk8886a662004-04-18 19:43:36 +0000266{
267 free(buf);
268}
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500269#endif
Wolfgang Denk47f57792005-08-08 01:03:24 +0200270
271
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500272#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200273/*
274 * Support for jffs2 on top of NOR-flash
275 *
276 * NOR flash memory is mapped in processor's address space,
277 * just return address.
278 */
279static inline void *get_fl_mem_nor(u32 off)
280{
281 u32 addr = off;
282 struct mtdids *id = current_part->dev->id;
283
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200284 extern flash_info_t flash_info[];
Wolfgang Denk47f57792005-08-08 01:03:24 +0200285 flash_info_t *flash = &flash_info[id->num];
286
287 addr += flash->start[0];
288 return (void*)addr;
289}
290
291static inline void *get_node_mem_nor(u32 off)
292{
293 return (void*)get_fl_mem_nor(off);
294}
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500295#endif
wdenk8886a662004-04-18 19:43:36 +0000296
wdenk8886a662004-04-18 19:43:36 +0000297
Wolfgang Denk47f57792005-08-08 01:03:24 +0200298/*
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200299 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk47f57792005-08-08 01:03:24 +0200300 *
301 */
wdenk8886a662004-04-18 19:43:36 +0000302static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
303{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200304 struct mtdids *id = current_part->dev->id;
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200305
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500306#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200307 if (id->type == MTD_DEV_TYPE_NOR)
308 return get_fl_mem_nor(off);
309#endif
310
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500311#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200312 if (id->type == MTD_DEV_TYPE_NAND)
313 return get_fl_mem_nand(off, size, ext_buf);
314#endif
315
316 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk8886a662004-04-18 19:43:36 +0000317 return (void*)off;
318}
319
320static inline void *get_node_mem(u32 off)
321{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200322 struct mtdids *id = current_part->dev->id;
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200323
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500324#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200325 if (id->type == MTD_DEV_TYPE_NOR)
326 return get_node_mem_nor(off);
327#endif
328
Wolfgang Denk15888b42007-07-05 17:56:27 +0200329#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500330 defined(CONFIG_CMD_NAND)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200331 if (id->type == MTD_DEV_TYPE_NAND)
332 return get_node_mem_nand(off);
333#endif
334
335 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk8886a662004-04-18 19:43:36 +0000336 return (void*)off;
337}
338
wdenk12490652004-04-18 21:13:41 +0000339static inline void put_fl_mem(void *buf)
wdenk8886a662004-04-18 19:43:36 +0000340{
Wolfgang Denk15888b42007-07-05 17:56:27 +0200341#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500342 defined(CONFIG_CMD_NAND)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200343 struct mtdids *id = current_part->dev->id;
wdenk8886a662004-04-18 19:43:36 +0000344
Wolfgang Denk47f57792005-08-08 01:03:24 +0200345 if (id->type == MTD_DEV_TYPE_NAND)
346 return put_fl_mem_nand(buf);
347#endif
348}
wdenk6b58f332003-03-14 20:47:52 +0000349
350/* Compression names */
351static char *compr_names[] = {
352 "NONE",
353 "ZERO",
354 "RTIME",
355 "RUBINMIPS",
356 "COPY",
357 "DYNRUBIN",
wdenke84ec902005-05-05 00:04:14 +0000358 "ZLIB",
wdenkb85efc22005-05-05 09:51:44 +0000359#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenke84ec902005-05-05 00:04:14 +0000360 "LZO",
wdenke84ec902005-05-05 00:04:14 +0000361 "LZARI",
362#endif
wdenk6b58f332003-03-14 20:47:52 +0000363};
364
365/* Spinning wheel */
366static char spinner[] = { '|', '/', '-', '\\' };
wdenkfe8c2802002-11-03 00:38:21 +0000367
wdenk6b58f332003-03-14 20:47:52 +0000368/* Memory management */
369struct mem_block {
370 u32 index;
371 struct mem_block *next;
372 struct b_node nodes[NODE_CHUNK];
373};
374
375
376static void
377free_nodes(struct b_list *list)
378{
379 while (list->listMemBase != NULL) {
380 struct mem_block *next = list->listMemBase->next;
381 free( list->listMemBase );
382 list->listMemBase = next;
383 }
384}
wdenkfe8c2802002-11-03 00:38:21 +0000385
386static struct b_node *
wdenk6b58f332003-03-14 20:47:52 +0000387add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000388{
wdenk6b58f332003-03-14 20:47:52 +0000389 u32 index = 0;
390 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000391 struct b_node *b;
392
wdenk6b58f332003-03-14 20:47:52 +0000393 memBase = list->listMemBase;
394 if (memBase != NULL)
395 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000396#if 0
397 putLabeledWord("add_node: index = ", index);
wdenk6b58f332003-03-14 20:47:52 +0000398 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000399#endif
400
wdenk6b58f332003-03-14 20:47:52 +0000401 if (memBase == NULL || index >= NODE_CHUNK) {
402 /* we need more space before we continue */
403 memBase = mmalloc(sizeof(struct mem_block));
404 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000405 putstr("add_node: malloc failed\n");
406 return NULL;
407 }
wdenk6b58f332003-03-14 20:47:52 +0000408 memBase->next = list->listMemBase;
409 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000410#if 0
411 putLabeledWord("add_node: alloced a new membase at ", *memBase);
412#endif
413
414 }
415 /* now we have room to add it. */
wdenk6b58f332003-03-14 20:47:52 +0000416 b = &memBase->nodes[index];
417 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000418
wdenk6b58f332003-03-14 20:47:52 +0000419 memBase->index = index;
420 list->listMemBase = memBase;
421 list->listCount++;
422 return b;
423}
wdenkfe8c2802002-11-03 00:38:21 +0000424
wdenk6b58f332003-03-14 20:47:52 +0000425static struct b_node *
426insert_node(struct b_list *list, u32 offset)
427{
428 struct b_node *new;
429#ifdef CFG_JFFS2_SORT_FRAGMENTS
430 struct b_node *b, *prev;
wdenkfe8c2802002-11-03 00:38:21 +0000431#endif
432
wdenk6b58f332003-03-14 20:47:52 +0000433 if (!(new = add_node(list))) {
434 putstr("add_node failed!\r\n");
435 return NULL;
436 }
437 new->offset = offset;
438
439#ifdef CFG_JFFS2_SORT_FRAGMENTS
440 if (list->listTail != NULL && list->listCompare(new, list->listTail))
441 prev = list->listTail;
442 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
443 prev = list->listLast;
444 else
445 prev = NULL;
446
447 for (b = (prev ? prev->next : list->listHead);
448 b != NULL && list->listCompare(new, b);
449 prev = b, b = b->next) {
450 list->listLoops++;
451 }
452 if (b != NULL)
453 list->listLast = prev;
454
455 if (b != NULL) {
456 new->next = b;
457 if (prev != NULL)
458 prev->next = new;
459 else
460 list->listHead = new;
461 } else
wdenkfe8c2802002-11-03 00:38:21 +0000462#endif
wdenk6b58f332003-03-14 20:47:52 +0000463 {
464 new->next = (struct b_node *) NULL;
465 if (list->listTail != NULL) {
466 list->listTail->next = new;
467 list->listTail = new;
468 } else {
469 list->listTail = list->listHead = new;
470 }
471 }
wdenkfe8c2802002-11-03 00:38:21 +0000472
wdenk6b58f332003-03-14 20:47:52 +0000473 return new;
wdenkfe8c2802002-11-03 00:38:21 +0000474}
475
wdenk6b58f332003-03-14 20:47:52 +0000476#ifdef CFG_JFFS2_SORT_FRAGMENTS
wdenk2c9b05d2003-09-10 22:30:53 +0000477/* Sort data entries with the latest version last, so that if there
478 * is overlapping data the latest version will be used.
479 */
wdenk6b58f332003-03-14 20:47:52 +0000480static int compare_inodes(struct b_node *new, struct b_node *old)
481{
wdenk8886a662004-04-18 19:43:36 +0000482 struct jffs2_raw_inode ojNew;
483 struct jffs2_raw_inode ojOld;
484 struct jffs2_raw_inode *jNew =
485 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
486 struct jffs2_raw_inode *jOld =
487 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk6b58f332003-03-14 20:47:52 +0000488
wdenk2c9b05d2003-09-10 22:30:53 +0000489 return jNew->version > jOld->version;
wdenk6b58f332003-03-14 20:47:52 +0000490}
491
wdenk2c9b05d2003-09-10 22:30:53 +0000492/* Sort directory entries so all entries in the same directory
493 * with the same name are grouped together, with the latest version
494 * last. This makes it easy to eliminate all but the latest version
495 * by marking the previous version dead by setting the inode to 0.
496 */
wdenk6b58f332003-03-14 20:47:52 +0000497static int compare_dirents(struct b_node *new, struct b_node *old)
498{
wdenk8886a662004-04-18 19:43:36 +0000499 struct jffs2_raw_dirent ojNew;
500 struct jffs2_raw_dirent ojOld;
501 struct jffs2_raw_dirent *jNew =
502 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk12490652004-04-18 21:13:41 +0000503 struct jffs2_raw_dirent *jOld =
wdenk8886a662004-04-18 19:43:36 +0000504 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk2c9b05d2003-09-10 22:30:53 +0000505 int cmp;
wdenk6b58f332003-03-14 20:47:52 +0000506
wdenk2c9b05d2003-09-10 22:30:53 +0000507 /* ascending sort by pino */
508 if (jNew->pino != jOld->pino)
509 return jNew->pino > jOld->pino;
510
511 /* pino is the same, so use ascending sort by nsize, so
512 * we don't do strncmp unless we really must.
513 */
514 if (jNew->nsize != jOld->nsize)
515 return jNew->nsize > jOld->nsize;
516
517 /* length is also the same, so use ascending sort by name
518 */
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200519 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk2c9b05d2003-09-10 22:30:53 +0000520 if (cmp != 0)
521 return cmp > 0;
522
523 /* we have duplicate names in this directory, so use ascending
524 * sort by version
525 */
526 if (jNew->version > jOld->version) {
527 /* since jNew is newer, we know jOld is not valid, so
528 * mark it with inode 0 and it will not be used
529 */
530 jOld->ino = 0;
531 return 1;
532 }
wdenk9c53f402003-10-15 23:53:47 +0000533
wdenk2c9b05d2003-09-10 22:30:53 +0000534 return 0;
wdenk6b58f332003-03-14 20:47:52 +0000535}
536#endif
wdenkfe8c2802002-11-03 00:38:21 +0000537
538static u32
539jffs2_scan_empty(u32 start_offset, struct part_info *part)
540{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200541 char *max = (char *)(part->offset + part->size - sizeof(struct jffs2_raw_inode));
542 char *offset = (char *)(part->offset + start_offset);
wdenk8886a662004-04-18 19:43:36 +0000543 u32 off;
wdenkfe8c2802002-11-03 00:38:21 +0000544
wdenk8886a662004-04-18 19:43:36 +0000545 while (offset < max &&
546 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
wdenk6b58f332003-03-14 20:47:52 +0000547 offset += sizeof(u32);
548 /* return if spinning is due */
549 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
wdenkfe8c2802002-11-03 00:38:21 +0000550 }
wdenk7ad5e4c2004-04-25 15:41:35 +0000551
Wolfgang Denk47f57792005-08-08 01:03:24 +0200552 return (u32)offset - part->offset;
wdenkfe8c2802002-11-03 00:38:21 +0000553}
554
Wolfgang Denk47f57792005-08-08 01:03:24 +0200555void
556jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000557{
wdenk6b58f332003-03-14 20:47:52 +0000558 struct b_lists *pL;
559
560 if (part->jffs2_priv != NULL) {
561 pL = (struct b_lists *)part->jffs2_priv;
562 free_nodes(&pL->frag);
563 free_nodes(&pL->dir);
564 free(pL);
565 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200566}
567
568static u32
569jffs_init_1pass_list(struct part_info *part)
570{
571 struct b_lists *pL;
572
573 jffs2_free_cache(part);
574
wdenk6b58f332003-03-14 20:47:52 +0000575 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
576 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +0000577
wdenk6b58f332003-03-14 20:47:52 +0000578 memset(pL, 0, sizeof(*pL));
579#ifdef CFG_JFFS2_SORT_FRAGMENTS
580 pL->dir.listCompare = compare_dirents;
581 pL->frag.listCompare = compare_inodes;
582#endif
wdenkfe8c2802002-11-03 00:38:21 +0000583 }
584 return 0;
585}
586
587/* find the inode from the slashless name given a parent */
588static long
589jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
590{
591 struct b_node *b;
592 struct jffs2_raw_inode *jNode;
wdenk6b58f332003-03-14 20:47:52 +0000593 u32 totalSize = 0;
wdenk2c9b05d2003-09-10 22:30:53 +0000594 u32 latestVersion = 0;
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200595 uchar *lDest;
596 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000597 long ret;
598 int i;
599 u32 counter = 0;
wdenk2c9b05d2003-09-10 22:30:53 +0000600#ifdef CFG_JFFS2_SORT_FRAGMENTS
601 /* Find file size before loading any data, so fragments that
602 * start past the end of file can be ignored. A fragment
603 * that is partially in the file is loaded, so extra data may
604 * be loaded up to the next 4K boundary above the file size.
605 * This shouldn't cause trouble when loading kernel images, so
606 * we will live with it.
607 */
608 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk12490652004-04-18 21:13:41 +0000609 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
wdenk8886a662004-04-18 19:43:36 +0000610 sizeof(struct jffs2_raw_inode), NULL);
wdenk2c9b05d2003-09-10 22:30:53 +0000611 if ((inode == jNode->ino)) {
612 /* get actual file length from the newest node */
613 if (jNode->version >= latestVersion) {
614 totalSize = jNode->isize;
615 latestVersion = jNode->version;
616 }
617 }
wdenk8886a662004-04-18 19:43:36 +0000618 put_fl_mem(jNode);
wdenk2c9b05d2003-09-10 22:30:53 +0000619 }
620#endif
wdenkfe8c2802002-11-03 00:38:21 +0000621
wdenk6b58f332003-03-14 20:47:52 +0000622 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk8886a662004-04-18 19:43:36 +0000623 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000624 if ((inode == jNode->ino)) {
wdenk6b58f332003-03-14 20:47:52 +0000625#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000626 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
627 putLabeledWord("read_inode: inode = ", jNode->ino);
628 putLabeledWord("read_inode: version = ", jNode->version);
629 putLabeledWord("read_inode: isize = ", jNode->isize);
630 putLabeledWord("read_inode: offset = ", jNode->offset);
631 putLabeledWord("read_inode: csize = ", jNode->csize);
632 putLabeledWord("read_inode: dsize = ", jNode->dsize);
633 putLabeledWord("read_inode: compr = ", jNode->compr);
634 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
635 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000636#endif
wdenk2c9b05d2003-09-10 22:30:53 +0000637
638#ifndef CFG_JFFS2_SORT_FRAGMENTS
wdenk6b58f332003-03-14 20:47:52 +0000639 /* get actual file length from the newest node */
640 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000641 totalSize = jNode->isize;
wdenk6b58f332003-03-14 20:47:52 +0000642 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000643 }
wdenk2c9b05d2003-09-10 22:30:53 +0000644#endif
wdenkfe8c2802002-11-03 00:38:21 +0000645
646 if(dest) {
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200647 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk6b58f332003-03-14 20:47:52 +0000648 /* ignore data behind latest known EOF */
wdenk8886a662004-04-18 19:43:36 +0000649 if (jNode->offset > totalSize) {
650 put_fl_mem(jNode);
wdenk6b58f332003-03-14 20:47:52 +0000651 continue;
wdenk8886a662004-04-18 19:43:36 +0000652 }
wdenk6b58f332003-03-14 20:47:52 +0000653
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200654 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000655#if 0
wdenk6b58f332003-03-14 20:47:52 +0000656 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000657 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000658#endif
659 switch (jNode->compr) {
660 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000661 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
662 break;
663 case JFFS2_COMPR_ZERO:
664 ret = 0;
665 for (i = 0; i < jNode->dsize; i++)
666 *(lDest++) = 0;
667 break;
668 case JFFS2_COMPR_RTIME:
669 ret = 0;
670 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
671 break;
672 case JFFS2_COMPR_DYNRUBIN:
673 /* this is slow but it works */
674 ret = 0;
675 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
676 break;
677 case JFFS2_COMPR_ZLIB:
678 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
679 break;
wdenkb85efc22005-05-05 09:51:44 +0000680#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenke84ec902005-05-05 00:04:14 +0000681 case JFFS2_COMPR_LZO:
682 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
683 break;
wdenkb85efc22005-05-05 09:51:44 +0000684 case JFFS2_COMPR_LZARI:
685 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
686 break;
wdenke84ec902005-05-05 00:04:14 +0000687#endif
wdenkfe8c2802002-11-03 00:38:21 +0000688 default:
689 /* unknown */
690 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
wdenk8886a662004-04-18 19:43:36 +0000691 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000692 return -1;
693 break;
694 }
695 }
696
wdenkfe8c2802002-11-03 00:38:21 +0000697#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000698 putLabeledWord("read_inode: totalSize = ", totalSize);
699 putLabeledWord("read_inode: compr ret = ", ret);
700#endif
701 }
wdenkfe8c2802002-11-03 00:38:21 +0000702 counter++;
wdenk8886a662004-04-18 19:43:36 +0000703 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000704 }
wdenkfe8c2802002-11-03 00:38:21 +0000705
706#if 0
wdenk6b58f332003-03-14 20:47:52 +0000707 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000708#endif
wdenk6b58f332003-03-14 20:47:52 +0000709 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000710}
711
712/* find the inode from the slashless name given a parent */
713static u32
714jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
715{
716 struct b_node *b;
717 struct jffs2_raw_dirent *jDir;
718 int len;
719 u32 counter;
720 u32 version = 0;
721 u32 inode = 0;
722
723 /* name is assumed slash free */
724 len = strlen(name);
725
726 counter = 0;
727 /* we need to search all and return the inode with the highest version */
wdenk6b58f332003-03-14 20:47:52 +0000728 for(b = pL->dir.listHead; b; b = b->next, counter++) {
wdenk8886a662004-04-18 19:43:36 +0000729 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk6b58f332003-03-14 20:47:52 +0000730 if ((pino == jDir->pino) && (len == jDir->nsize) &&
731 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200732 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk8886a662004-04-18 19:43:36 +0000733 if (jDir->version < version) {
734 put_fl_mem(jDir);
wdenk2c9b05d2003-09-10 22:30:53 +0000735 continue;
wdenk8886a662004-04-18 19:43:36 +0000736 }
wdenkfe8c2802002-11-03 00:38:21 +0000737
wdenk2c9b05d2003-09-10 22:30:53 +0000738 if (jDir->version == version && inode != 0) {
Wolfgang Denka1be4762008-05-20 16:00:29 +0200739 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000740 putstr(" ** ERROR ** ");
741 putnstr(jDir->name, jDir->nsize);
742 putLabeledWord(" has dup version =", version);
743 }
744 inode = jDir->ino;
745 version = jDir->version;
746 }
747#if 0
748 putstr("\r\nfind_inode:p&l ->");
749 putnstr(jDir->name, jDir->nsize);
750 putstr("\r\n");
751 putLabeledWord("pino = ", jDir->pino);
752 putLabeledWord("nsize = ", jDir->nsize);
753 putLabeledWord("b = ", (u32) b);
754 putLabeledWord("counter = ", counter);
755#endif
wdenk8886a662004-04-18 19:43:36 +0000756 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000757 }
758 return inode;
759}
760
wdenkad276f22004-01-04 16:28:35 +0000761char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000762{
wdenk6b58f332003-03-14 20:47:52 +0000763 static const char *l = "xwr";
764 int mask = 1, i;
765 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000766
wdenk6b58f332003-03-14 20:47:52 +0000767 switch (mode & S_IFMT) {
768 case S_IFDIR: str[0] = 'd'; break;
769 case S_IFBLK: str[0] = 'b'; break;
770 case S_IFCHR: str[0] = 'c'; break;
771 case S_IFIFO: str[0] = 'f'; break;
772 case S_IFLNK: str[0] = 'l'; break;
773 case S_IFSOCK: str[0] = 's'; break;
774 case S_IFREG: str[0] = '-'; break;
775 default: str[0] = '?';
776 }
wdenkfe8c2802002-11-03 00:38:21 +0000777
wdenk6b58f332003-03-14 20:47:52 +0000778 for(i = 0; i < 9; i++) {
779 c = l[i%3];
780 str[9-i] = (mode & mask)?c:'-';
781 mask = mask<<1;
782 }
wdenkfe8c2802002-11-03 00:38:21 +0000783
wdenk6b58f332003-03-14 20:47:52 +0000784 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
785 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
786 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
787 str[10] = '\0';
788 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000789}
790
791static inline void dump_stat(struct stat *st, const char *name)
792{
wdenk6b58f332003-03-14 20:47:52 +0000793 char str[20];
794 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000795
wdenk6b58f332003-03-14 20:47:52 +0000796 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
797 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000798
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200799 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000800
wdenk6b58f332003-03-14 20:47:52 +0000801 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
802 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000803
804/*
wdenk6b58f332003-03-14 20:47:52 +0000805 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
806 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000807*/
808
wdenk6b58f332003-03-14 20:47:52 +0000809 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000810}
811
812static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
813{
814 char fname[256];
815 struct stat st;
816
817 if(!d || !i) return -1;
818
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200819 strncpy(fname, (char *)d->name, d->nsize);
wdenk6b58f332003-03-14 20:47:52 +0000820 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000821
822 memset(&st,0,sizeof(st));
823
wdenk6b58f332003-03-14 20:47:52 +0000824 st.st_mtime = i->mtime;
825 st.st_mode = i->mode;
826 st.st_ino = i->ino;
wdenkfe8c2802002-11-03 00:38:21 +0000827
828 /* neither dsize nor isize help us.. do it the long way */
wdenk6b58f332003-03-14 20:47:52 +0000829 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000830
831 dump_stat(&st, fname);
832
833 if (d->type == DT_LNK) {
834 unsigned char *src = (unsigned char *) (&i[1]);
835 putstr(" -> ");
836 putnstr(src, (int)i->dsize);
837 }
838
839 putstr("\r\n");
840
841 return 0;
842}
843
844/* list inodes with the given pino */
845static u32
846jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
847{
848 struct b_node *b;
849 struct jffs2_raw_dirent *jDir;
850
wdenk6b58f332003-03-14 20:47:52 +0000851 for (b = pL->dir.listHead; b; b = b->next) {
wdenk8886a662004-04-18 19:43:36 +0000852 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk6b58f332003-03-14 20:47:52 +0000853 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
854 u32 i_version = 0;
wdenk8886a662004-04-18 19:43:36 +0000855 struct jffs2_raw_inode ojNode;
wdenk6b58f332003-03-14 20:47:52 +0000856 struct jffs2_raw_inode *jNode, *i = NULL;
857 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000858
859 while (b2) {
wdenk8886a662004-04-18 19:43:36 +0000860 jNode = (struct jffs2_raw_inode *)
861 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenkf248ebc2004-05-05 19:44:41 +0000862 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
863 if (i)
wdenke07ec1b2004-05-12 22:54:36 +0000864 put_fl_mem(i);
wdenke02d2ae2005-05-04 23:50:54 +0000865
866 if (jDir->type == DT_LNK)
867 i = get_node_mem(b2->offset);
868 else
869 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
wdenkf248ebc2004-05-05 19:44:41 +0000870 }
wdenkfe8c2802002-11-03 00:38:21 +0000871 b2 = b2->next;
872 }
873
874 dump_inode(pL, jDir, i);
wdenk8886a662004-04-18 19:43:36 +0000875 put_fl_mem(i);
wdenkfe8c2802002-11-03 00:38:21 +0000876 }
wdenk8886a662004-04-18 19:43:36 +0000877 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000878 }
879 return pino;
880}
881
882static u32
883jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
884{
885 int i;
886 char tmp[256];
887 char working_tmp[256];
888 char *c;
889
890 /* discard any leading slash */
891 i = 0;
892 while (fname[i] == '/')
893 i++;
894 strcpy(tmp, &fname[i]);
895
896 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
897 {
898 strncpy(working_tmp, tmp, c - tmp);
899 working_tmp[c - tmp] = '\0';
900#if 0
901 putstr("search_inode: tmp = ");
902 putstr(tmp);
903 putstr("\r\n");
904 putstr("search_inode: wtmp = ");
905 putstr(working_tmp);
906 putstr("\r\n");
907 putstr("search_inode: c = ");
908 putstr(c);
909 putstr("\r\n");
910#endif
911 for (i = 0; i < strlen(c) - 1; i++)
912 tmp[i] = c[i + 1];
913 tmp[i] = '\0';
914#if 0
915 putstr("search_inode: post tmp = ");
916 putstr(tmp);
917 putstr("\r\n");
918#endif
919
920 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
921 putstr("find_inode failed for name=");
922 putstr(working_tmp);
923 putstr("\r\n");
924 return 0;
925 }
926 }
927 /* this is for the bare filename, directories have already been mapped */
928 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
929 putstr("find_inode failed for name=");
930 putstr(tmp);
931 putstr("\r\n");
932 return 0;
933 }
934 return pino;
935
936}
937
938static u32
939jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
940{
941 struct b_node *b;
942 struct b_node *b2;
943 struct jffs2_raw_dirent *jDir;
944 struct jffs2_raw_inode *jNode;
wdenk8886a662004-04-18 19:43:36 +0000945 u8 jDirFoundType = 0;
946 u32 jDirFoundIno = 0;
947 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000948 char tmp[256];
949 u32 version = 0;
950 u32 pino;
951 unsigned char *src;
952
953 /* we need to search all and return the inode with the highest version */
wdenk6b58f332003-03-14 20:47:52 +0000954 for(b = pL->dir.listHead; b; b = b->next) {
wdenk8886a662004-04-18 19:43:36 +0000955 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000956 if (ino == jDir->ino) {
Wolfgang Denka1be4762008-05-20 16:00:29 +0200957 if (jDir->version < version) {
wdenk8886a662004-04-18 19:43:36 +0000958 put_fl_mem(jDir);
wdenk2c9b05d2003-09-10 22:30:53 +0000959 continue;
wdenk8886a662004-04-18 19:43:36 +0000960 }
wdenkfe8c2802002-11-03 00:38:21 +0000961
wdenk8886a662004-04-18 19:43:36 +0000962 if (jDir->version == version && jDirFoundType) {
Wolfgang Denka1be4762008-05-20 16:00:29 +0200963 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000964 putstr(" ** ERROR ** ");
965 putnstr(jDir->name, jDir->nsize);
966 putLabeledWord(" has dup version (resolve) = ",
967 version);
968 }
969
wdenk8886a662004-04-18 19:43:36 +0000970 jDirFoundType = jDir->type;
971 jDirFoundIno = jDir->ino;
972 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +0000973 version = jDir->version;
974 }
wdenk8886a662004-04-18 19:43:36 +0000975 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000976 }
977 /* now we found the right entry again. (shoulda returned inode*) */
wdenk8886a662004-04-18 19:43:36 +0000978 if (jDirFoundType != DT_LNK)
979 return jDirFoundIno;
wdenk6b58f332003-03-14 20:47:52 +0000980
981 /* it's a soft link so we follow it again. */
982 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000983 while (b2) {
wdenk8886a662004-04-18 19:43:36 +0000984 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
985 if (jNode->ino == jDirFoundIno) {
wdenk6c59edc2004-05-03 20:45:30 +0000986 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +0000987
988#if 0
989 putLabeledWord("\t\t dsize = ", jNode->dsize);
990 putstr("\t\t target = ");
991 putnstr(src, jNode->dsize);
992 putstr("\r\n");
993#endif
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200994 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000995 tmp[jNode->dsize] = '\0';
wdenk8886a662004-04-18 19:43:36 +0000996 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000997 break;
998 }
999 b2 = b2->next;
wdenk8886a662004-04-18 19:43:36 +00001000 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +00001001 }
1002 /* ok so the name of the new file to find is in tmp */
1003 /* if it starts with a slash it is root based else shared dirs */
1004 if (tmp[0] == '/')
1005 pino = 1;
1006 else
wdenk8886a662004-04-18 19:43:36 +00001007 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001008
1009 return jffs2_1pass_search_inode(pL, tmp, pino);
1010}
1011
1012static u32
1013jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1014{
1015 int i;
1016 char tmp[256];
1017 char working_tmp[256];
1018 char *c;
1019
1020 /* discard any leading slash */
1021 i = 0;
1022 while (fname[i] == '/')
1023 i++;
1024 strcpy(tmp, &fname[i]);
1025 working_tmp[0] = '\0';
1026 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1027 {
1028 strncpy(working_tmp, tmp, c - tmp);
1029 working_tmp[c - tmp] = '\0';
1030 for (i = 0; i < strlen(c) - 1; i++)
1031 tmp[i] = c[i + 1];
1032 tmp[i] = '\0';
1033 /* only a failure if we arent looking at top level */
wdenk6b58f332003-03-14 20:47:52 +00001034 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1035 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001036 putstr("find_inode failed for name=");
1037 putstr(working_tmp);
1038 putstr("\r\n");
1039 return 0;
1040 }
1041 }
1042
1043 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1044 putstr("find_inode failed for name=");
1045 putstr(tmp);
1046 putstr("\r\n");
1047 return 0;
1048 }
1049 /* this is for the bare filename, directories have already been mapped */
1050 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1051 putstr("find_inode failed for name=");
1052 putstr(tmp);
1053 putstr("\r\n");
1054 return 0;
1055 }
1056 return pino;
1057
1058}
1059
1060unsigned char
1061jffs2_1pass_rescan_needed(struct part_info *part)
1062{
1063 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001064 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001065 struct jffs2_unknown_node *node;
wdenk6b58f332003-03-14 20:47:52 +00001066 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001067
1068 if (part->jffs2_priv == 0){
1069 DEBUGF ("rescan: First time in use\n");
1070 return 1;
1071 }
Wolfgang Denk47f57792005-08-08 01:03:24 +02001072
wdenkfe8c2802002-11-03 00:38:21 +00001073 /* if we have no list, we need to rescan */
wdenk6b58f332003-03-14 20:47:52 +00001074 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001075 DEBUGF ("rescan: fraglist zero\n");
1076 return 1;
1077 }
1078
wdenk6b58f332003-03-14 20:47:52 +00001079 /* but suppose someone reflashed a partition at the same offset... */
1080 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001081 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001082 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1083 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001084 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk6b58f332003-03-14 20:47:52 +00001085 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1086 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001087 return 1;
1088 }
1089 b = b->next;
1090 }
1091 return 0;
1092}
wdenk6b58f332003-03-14 20:47:52 +00001093
1094#ifdef DEBUG_FRAGMENTS
1095static void
1096dump_fragments(struct b_lists *pL)
1097{
1098 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001099 struct jffs2_raw_inode ojNode;
wdenk6b58f332003-03-14 20:47:52 +00001100 struct jffs2_raw_inode *jNode;
1101
1102 putstr("\r\n\r\n******The fragment Entries******\r\n");
1103 b = pL->frag.listHead;
1104 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001105 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1106 sizeof(ojNode), &ojNode);
wdenk6b58f332003-03-14 20:47:52 +00001107 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1108 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1109 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1110 putLabeledWord("\tbuild_list: version = ", jNode->version);
1111 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1112 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1113 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1114 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1115 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1116 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1117 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1118 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk57b2d802003-06-27 21:31:46 +00001119 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk6b58f332003-03-14 20:47:52 +00001120 b = b->next;
1121 }
1122}
1123#endif
1124
1125#ifdef DEBUG_DIRENTS
1126static void
1127dump_dirents(struct b_lists *pL)
1128{
1129 struct b_node *b;
1130 struct jffs2_raw_dirent *jDir;
1131
1132 putstr("\r\n\r\n******The directory Entries******\r\n");
1133 b = pL->dir.listHead;
1134 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001135 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk6b58f332003-03-14 20:47:52 +00001136 putstr("\r\n");
1137 putnstr(jDir->name, jDir->nsize);
1138 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1139 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1140 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1141 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1142 putLabeledWord("\tbuild_list: version = ", jDir->version);
1143 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1144 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1145 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1146 putLabeledWord("\tbuild_list: type = ", jDir->type);
1147 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1148 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denka1be4762008-05-20 16:00:29 +02001149 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk6b58f332003-03-14 20:47:52 +00001150 b = b->next;
wdenk8886a662004-04-18 19:43:36 +00001151 put_fl_mem(jDir);
wdenk6b58f332003-03-14 20:47:52 +00001152 }
1153}
1154#endif
wdenkfe8c2802002-11-03 00:38:21 +00001155
1156static u32
1157jffs2_1pass_build_lists(struct part_info * part)
1158{
1159 struct b_lists *pL;
1160 struct jffs2_unknown_node *node;
wdenk6b58f332003-03-14 20:47:52 +00001161 u32 offset, oldoffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001162 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1163 u32 counter = 0;
1164 u32 counter4 = 0;
1165 u32 counterF = 0;
1166 u32 counterN = 0;
1167
1168 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1169 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1170 /* only about 5 %. not enough to inconvenience people for. */
1171 /* lcd_off(); */
1172
1173 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001174 jffs_init_1pass_list(part);
wdenk6b58f332003-03-14 20:47:52 +00001175 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001176 offset = 0;
wdenk42c05472004-03-23 22:14:11 +00001177 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001178
1179 /* start at the beginning of the partition */
1180 while (offset < max) {
Wolfgang Denka1be4762008-05-20 16:00:29 +02001181 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
wdenk6b58f332003-03-14 20:47:52 +00001182 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1183 oldoffset = offset;
1184 }
wdenk7ad5e4c2004-04-25 15:41:35 +00001185
Stuart Wood471a2f02008-06-02 16:40:08 -04001186 WATCHDOG_RESET();
1187
wdenk8886a662004-04-18 19:43:36 +00001188 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
wdenk7ad5e4c2004-04-25 15:41:35 +00001189 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
wdenkfe8c2802002-11-03 00:38:21 +00001190 /* if its a fragment add it */
wdenk7ad5e4c2004-04-25 15:41:35 +00001191 if (node->nodetype == JFFS2_NODETYPE_INODE &&
Wolfgang Denkdd7e8662006-03-12 16:05:05 +01001192 inode_crc((struct jffs2_raw_inode *) node) &&
1193 data_crc((struct jffs2_raw_inode *) node)) {
wdenk6b58f332003-03-14 20:47:52 +00001194 if (insert_node(&pL->frag, (u32) part->offset +
wdenk8886a662004-04-18 19:43:36 +00001195 offset) == NULL) {
1196 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001197 return 0;
wdenk8886a662004-04-18 19:43:36 +00001198 }
wdenkfe8c2802002-11-03 00:38:21 +00001199 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1200 dirent_crc((struct jffs2_raw_dirent *) node) &&
1201 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
wdenk7ad5e4c2004-04-25 15:41:35 +00001202 if (! (counterN%100))
wdenk42c05472004-03-23 22:14:11 +00001203 puts ("\b\b. ");
wdenk6b58f332003-03-14 20:47:52 +00001204 if (insert_node(&pL->dir, (u32) part->offset +
wdenk8886a662004-04-18 19:43:36 +00001205 offset) == NULL) {
1206 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001207 return 0;
wdenk8886a662004-04-18 19:43:36 +00001208 }
wdenkfe8c2802002-11-03 00:38:21 +00001209 counterN++;
1210 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1211 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk6b58f332003-03-14 20:47:52 +00001212 printf("OOPS Cleanmarker has bad size "
Wolfgang Denk509cd072008-07-14 15:06:35 +02001213 "%d != %zu\n",
1214 node->totlen,
wdenk6b58f332003-03-14 20:47:52 +00001215 sizeof(struct jffs2_unknown_node));
wdenk2c9b05d2003-09-10 22:30:53 +00001216 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1217 if (node->totlen < sizeof(struct jffs2_unknown_node))
1218 printf("OOPS Padding has bad size "
Wolfgang Denk509cd072008-07-14 15:06:35 +02001219 "%d < %zu\n",
1220 node->totlen,
wdenk2c9b05d2003-09-10 22:30:53 +00001221 sizeof(struct jffs2_unknown_node));
wdenkfe8c2802002-11-03 00:38:21 +00001222 } else {
Wolfgang Denk509cd072008-07-14 15:06:35 +02001223 printf("Unknown node type: %x len %d offset 0x%x\n",
1224 node->nodetype,
wdenk7ad5e4c2004-04-25 15:41:35 +00001225 node->totlen, offset);
wdenkfe8c2802002-11-03 00:38:21 +00001226 }
1227 offset += ((node->totlen + 3) & ~3);
1228 counterF++;
wdenk6b58f332003-03-14 20:47:52 +00001229 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1230 node->nodetype == JFFS2_EMPTY_BITMASK) {
wdenkfe8c2802002-11-03 00:38:21 +00001231 offset = jffs2_scan_empty(offset, part);
wdenk7ad5e4c2004-04-25 15:41:35 +00001232 } else { /* if we know nothing, we just step and look. */
wdenkfe8c2802002-11-03 00:38:21 +00001233 offset += 4;
1234 counter4++;
1235 }
1236/* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
wdenk8886a662004-04-18 19:43:36 +00001237 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001238 }
1239
1240 putstr("\b\b done.\r\n"); /* close off the dots */
1241 /* turn the lcd back on. */
1242 /* splash(); */
1243
1244#if 0
wdenk6b58f332003-03-14 20:47:52 +00001245 putLabeledWord("dir entries = ", pL->dir.listCount);
1246 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001247 putLabeledWord("+4 increments = ", counter4);
1248 putLabeledWord("+file_offset increments = ", counterF);
1249
1250#endif
1251
wdenk6b58f332003-03-14 20:47:52 +00001252#ifdef DEBUG_DIRENTS
1253 dump_dirents(pL);
1254#endif
wdenkfe8c2802002-11-03 00:38:21 +00001255
wdenk6b58f332003-03-14 20:47:52 +00001256#ifdef DEBUG_FRAGMENTS
1257 dump_fragments(pL);
1258#endif
wdenkfe8c2802002-11-03 00:38:21 +00001259
wdenkfe8c2802002-11-03 00:38:21 +00001260 /* give visual feedback that we are done scanning the flash */
1261 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1262 return 1;
1263}
1264
1265
wdenkfe8c2802002-11-03 00:38:21 +00001266static u32
1267jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1268{
1269 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001270 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001271 struct jffs2_raw_inode *jNode;
1272 int i;
1273
wdenkfe8c2802002-11-03 00:38:21 +00001274 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1275 piL->compr_info[i].num_frags = 0;
1276 piL->compr_info[i].compr_sum = 0;
1277 piL->compr_info[i].decompr_sum = 0;
1278 }
1279
wdenk6b58f332003-03-14 20:47:52 +00001280 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001281 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001282 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1283 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001284 if (jNode->compr < JFFS2_NUM_COMPR) {
1285 piL->compr_info[jNode->compr].num_frags++;
1286 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1287 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1288 }
1289 b = b->next;
1290 }
1291 return 0;
1292}
1293
1294
wdenkfe8c2802002-11-03 00:38:21 +00001295static struct b_lists *
1296jffs2_get_list(struct part_info * part, const char *who)
1297{
Wolfgang Denk47f57792005-08-08 01:03:24 +02001298 /* copy requested part_info struct pointer to global location */
1299 current_part = part;
1300
wdenkfe8c2802002-11-03 00:38:21 +00001301 if (jffs2_1pass_rescan_needed(part)) {
1302 if (!jffs2_1pass_build_lists(part)) {
1303 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1304 return NULL;
1305 }
1306 }
1307 return (struct b_lists *)part->jffs2_priv;
1308}
1309
1310
1311/* Print directory / file contents */
1312u32
1313jffs2_1pass_ls(struct part_info * part, const char *fname)
1314{
1315 struct b_lists *pl;
Wolfgang Denk79117cd2005-08-16 09:32:45 +02001316 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001317 u32 inode;
1318
wdenk6b58f332003-03-14 20:47:52 +00001319 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001320 return 0;
1321
1322 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1323 putstr("ls: Failed to scan jffs2 file structure\r\n");
1324 return 0;
1325 }
wdenk7ad5e4c2004-04-25 15:41:35 +00001326
1327
wdenkfe8c2802002-11-03 00:38:21 +00001328#if 0
1329 putLabeledWord("found file at inode = ", inode);
1330 putLabeledWord("read_inode returns = ", ret);
1331#endif
wdenk7ad5e4c2004-04-25 15:41:35 +00001332
1333 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001334}
1335
1336
wdenkfe8c2802002-11-03 00:38:21 +00001337/* Load a file from flash into memory. fname can be a full path */
1338u32
1339jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1340{
1341
1342 struct b_lists *pl;
Wolfgang Denk79117cd2005-08-16 09:32:45 +02001343 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001344 u32 inode;
1345
1346 if (! (pl = jffs2_get_list(part, "load")))
1347 return 0;
1348
1349 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1350 putstr("load: Failed to find inode\r\n");
1351 return 0;
1352 }
1353
1354 /* Resolve symlinks */
1355 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1356 putstr("load: Failed to resolve inode structure\r\n");
1357 return 0;
1358 }
1359
1360 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1361 putstr("load: Failed to read inode\r\n");
1362 return 0;
1363 }
1364
1365 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1366 (unsigned long) dest, ret);
1367 return ret;
1368}
1369
1370/* Return information about the fs on this partition */
1371u32
1372jffs2_1pass_info(struct part_info * part)
1373{
1374 struct b_jffs2_info info;
1375 struct b_lists *pl;
1376 int i;
1377
1378 if (! (pl = jffs2_get_list(part, "info")))
1379 return 0;
1380
1381 jffs2_1pass_fill_info(pl, &info);
wdenk6b58f332003-03-14 20:47:52 +00001382 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk42c05472004-03-23 22:14:11 +00001383 printf ("Compression: %s\n"
1384 "\tfrag count: %d\n"
1385 "\tcompressed sum: %d\n"
1386 "\tuncompressed sum: %d\n",
1387 compr_names[i],
1388 info.compr_info[i].num_frags,
1389 info.compr_info[i].compr_sum,
1390 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001391 }
1392 return 1;
1393}