blob: 0177268c3cee762862f2ca98f842aefc67550982 [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 Denk53677ef2008-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
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 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 * The fragment sorting feature must be enabled by CONFIG_SYS_JFFS2_SORT_FRAGMENTS.
wdenk06d01db2003-03-14 20:47:52 +000096 * 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>
Stuart Wood86d32732008-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
wdenkfe8c2802002-11-03 00:38:21 +0000125
Wolfgang Denk53677ef2008-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
wdenk06d01db2003-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 Denk53677ef2008-05-20 16:00:29 +0200132#undef DEBUG /* enable debugging messages */
wdenk06d01db2003-03-14 20:47:52 +0000133
134
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 Denk700a0c62005-08-08 01:03:24 +0200141/* keeps pointer to currentlu processed partition */
142static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000143
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200144#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500145 defined(CONFIG_CMD_NAND) )
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +0200146#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6db39702006-04-08 19:08:06 +0200147#include <linux/mtd/nand_legacy.h>
148#else
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100149#include <nand.h>
Marian Balakowicz6db39702006-04-08 19:08:06 +0200150#endif
wdenk998eaae2004-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-VILLARDcc4a0ce2008-08-13 01:40:43 +0200161#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6db39702006-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 Balakowicz6db39702006-04-08 19:08:06 +0200165#endif
wdenk998eaae2004-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;
wdenk998eaae2004-04-18 19:43:36 +0000178
179static int read_nand_cached(u32 off, u32 size, u_char *buf)
180{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200181 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000182 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200183 size_t retlen;
wdenk998eaae2004-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 */
wdenk507bbe32004-04-18 21:13:41 +0000193 nand_cache = malloc(NAND_CACHE_SIZE);
194 if (!nand_cache) {
wdenk998eaae2004-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 Siekaaddb2e12006-03-05 18:57:33 +0100200
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +0200201#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6db39702006-04-08 19:08:06 +0200202 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
203 &retlen, nand_cache, id->num) < 0 ||
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200204 retlen != NAND_CACHE_SIZE) {
wdenk998eaae2004-04-18 19:43:36 +0000205 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200206 nand_cache_off, NAND_CACHE_SIZE);
wdenk998eaae2004-04-18 19:43:36 +0000207 return -1;
208 }
Marian Balakowicz6db39702006-04-08 19:08:06 +0200209#else
210 retlen = NAND_CACHE_SIZE;
211 if (nand_read(&nand_info[id->num], nand_cache_off,
212 &retlen, nand_cache) != 0 ||
213 retlen != NAND_CACHE_SIZE) {
214 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
215 nand_cache_off, NAND_CACHE_SIZE);
216 return -1;
217 }
218#endif
wdenk998eaae2004-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 Denk700a0c62005-08-08 01:03:24 +0200231static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-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 Denk700a0c62005-08-08 01:03:24 +0200236 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000237 return NULL;
238 }
239 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000240 if (!ext_buf)
241 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000242 return NULL;
243 }
244
245 return buf;
246}
247
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200248static void *get_node_mem_nand(u32 off)
wdenk998eaae2004-04-18 19:43:36 +0000249{
250 struct jffs2_unknown_node node;
251 void *ret = NULL;
252
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200253 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000254 return NULL;
255
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200256 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-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 Denk700a0c62005-08-08 01:03:24 +0200265static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000266{
267 free(buf);
268}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500269#endif
wdenk998eaae2004-04-18 19:43:36 +0000270
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900271#if defined(CONFIG_CMD_ONENAND)
272
273#include <linux/mtd/mtd.h>
274#include <linux/mtd/onenand.h>
275#include <onenand_uboot.h>
276
277#define ONENAND_PAGE_SIZE 2048
278#define ONENAND_PAGE_SHIFT 11
279#define ONENAND_PAGE_MASK (~(ONENAND_PAGE_SIZE-1))
280
281#ifndef ONENAND_CACHE_PAGES
282#define ONENAND_CACHE_PAGES 4
283#endif
284#define ONENAND_CACHE_SIZE (ONENAND_CACHE_PAGES*ONENAND_PAGE_SIZE)
285
286static u8* onenand_cache;
287static u32 onenand_cache_off = (u32)-1;
288
289static int read_onenand_cached(u32 off, u32 size, u_char *buf)
290{
291 u32 bytes_read = 0;
292 size_t retlen;
293 int cpy_bytes;
294
295 while (bytes_read < size) {
296 if ((off + bytes_read < onenand_cache_off) ||
297 (off + bytes_read >= onenand_cache_off + ONENAND_CACHE_SIZE)) {
298 onenand_cache_off = (off + bytes_read) & ONENAND_PAGE_MASK;
299 if (!onenand_cache) {
300 /* This memory never gets freed but 'cause
301 it's a bootloader, nobody cares */
302 onenand_cache = malloc(ONENAND_CACHE_SIZE);
303 if (!onenand_cache) {
304 printf("read_onenand_cached: can't alloc cache size %d bytes\n",
305 ONENAND_CACHE_SIZE);
306 return -1;
307 }
308 }
309
310 retlen = ONENAND_CACHE_SIZE;
311 if (onenand_read(&onenand_mtd, onenand_cache_off, retlen,
312 &retlen, onenand_cache) != 0 ||
313 retlen != ONENAND_CACHE_SIZE) {
314 printf("read_onenand_cached: error reading nand off %#x size %d bytes\n",
315 onenand_cache_off, ONENAND_CACHE_SIZE);
316 return -1;
317 }
318 }
319 cpy_bytes = onenand_cache_off + ONENAND_CACHE_SIZE - (off + bytes_read);
320 if (cpy_bytes > size - bytes_read)
321 cpy_bytes = size - bytes_read;
322 memcpy(buf + bytes_read,
323 onenand_cache + off + bytes_read - onenand_cache_off,
324 cpy_bytes);
325 bytes_read += cpy_bytes;
326 }
327 return bytes_read;
328}
329
330static void *get_fl_mem_onenand(u32 off, u32 size, void *ext_buf)
331{
332 u_char *buf = ext_buf ? (u_char *)ext_buf : (u_char *)malloc(size);
333
334 if (NULL == buf) {
335 printf("get_fl_mem_onenand: can't alloc %d bytes\n", size);
336 return NULL;
337 }
338 if (read_onenand_cached(off, size, buf) < 0) {
339 if (!ext_buf)
340 free(buf);
341 return NULL;
342 }
343
344 return buf;
345}
346
347static void *get_node_mem_onenand(u32 off)
348{
349 struct jffs2_unknown_node node;
350 void *ret = NULL;
351
352 if (NULL == get_fl_mem_onenand(off, sizeof(node), &node))
353 return NULL;
354
355 ret = get_fl_mem_onenand(off, node.magic ==
356 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
357 NULL);
358 if (!ret) {
359 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
360 off, node.magic, node.nodetype, node.totlen);
361 }
362 return ret;
363}
364
365
366static void put_fl_mem_onenand(void *buf)
367{
368 free(buf);
369}
370#endif
371
wdenk998eaae2004-04-18 19:43:36 +0000372
Jon Loeligerdd60d122007-07-09 17:56:50 -0500373#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200374/*
375 * Support for jffs2 on top of NOR-flash
376 *
377 * NOR flash memory is mapped in processor's address space,
378 * just return address.
379 */
380static inline void *get_fl_mem_nor(u32 off)
381{
382 u32 addr = off;
383 struct mtdids *id = current_part->dev->id;
384
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200385 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200386 flash_info_t *flash = &flash_info[id->num];
387
388 addr += flash->start[0];
389 return (void*)addr;
390}
391
392static inline void *get_node_mem_nor(u32 off)
393{
394 return (void*)get_fl_mem_nor(off);
395}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500396#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200397
398
399/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200400 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200401 *
402 */
wdenk998eaae2004-04-18 19:43:36 +0000403static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
404{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200405 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200406
Jon Loeligerdd60d122007-07-09 17:56:50 -0500407#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200408 if (id->type == MTD_DEV_TYPE_NOR)
409 return get_fl_mem_nor(off);
410#endif
411
Jon Loeligerdd60d122007-07-09 17:56:50 -0500412#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200413 if (id->type == MTD_DEV_TYPE_NAND)
414 return get_fl_mem_nand(off, size, ext_buf);
415#endif
416
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900417#if defined(CONFIG_CMD_ONENAND)
418 if (id->type == MTD_DEV_TYPE_ONENAND)
419 return get_fl_mem_onenand(off, size, ext_buf);
420#endif
421
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200422 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000423 return (void*)off;
424}
425
426static inline void *get_node_mem(u32 off)
427{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200428 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200429
Jon Loeligerdd60d122007-07-09 17:56:50 -0500430#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200431 if (id->type == MTD_DEV_TYPE_NOR)
432 return get_node_mem_nor(off);
433#endif
434
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200435#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500436 defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200437 if (id->type == MTD_DEV_TYPE_NAND)
438 return get_node_mem_nand(off);
439#endif
440
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900441#if defined(CONFIG_CMD_ONENAND)
442 if (id->type == MTD_DEV_TYPE_ONENAND)
443 return get_node_mem_onenand(off);
444#endif
445
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200446 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000447 return (void*)off;
448}
449
wdenk507bbe32004-04-18 21:13:41 +0000450static inline void put_fl_mem(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000451{
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200452#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500453 defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200454 struct mtdids *id = current_part->dev->id;
455
456 if (id->type == MTD_DEV_TYPE_NAND)
457 return put_fl_mem_nand(buf);
458#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900459
460#if defined(CONFIG_CMD_ONENAND)
461 struct mtdids *id = current_part->dev->id;
462
463 if (id->type == MTD_DEV_TYPE_ONENAND)
464 return put_fl_mem_onenand(buf);
465#endif
wdenk998eaae2004-04-18 19:43:36 +0000466}
467
wdenk06d01db2003-03-14 20:47:52 +0000468/* Compression names */
469static char *compr_names[] = {
470 "NONE",
471 "ZERO",
472 "RTIME",
473 "RUBINMIPS",
474 "COPY",
475 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000476 "ZLIB",
wdenk412babe2005-05-05 09:51:44 +0000477#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000478 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000479 "LZARI",
480#endif
wdenk06d01db2003-03-14 20:47:52 +0000481};
482
483/* Spinning wheel */
484static char spinner[] = { '|', '/', '-', '\\' };
485
486/* Memory management */
487struct mem_block {
488 u32 index;
489 struct mem_block *next;
490 struct b_node nodes[NODE_CHUNK];
491};
492
493
494static void
495free_nodes(struct b_list *list)
496{
497 while (list->listMemBase != NULL) {
498 struct mem_block *next = list->listMemBase->next;
499 free( list->listMemBase );
500 list->listMemBase = next;
501 }
502}
wdenkfe8c2802002-11-03 00:38:21 +0000503
504static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000505add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000506{
wdenk06d01db2003-03-14 20:47:52 +0000507 u32 index = 0;
508 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000509 struct b_node *b;
510
wdenk06d01db2003-03-14 20:47:52 +0000511 memBase = list->listMemBase;
512 if (memBase != NULL)
513 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000514#if 0
515 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000516 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000517#endif
518
wdenk06d01db2003-03-14 20:47:52 +0000519 if (memBase == NULL || index >= NODE_CHUNK) {
520 /* we need more space before we continue */
521 memBase = mmalloc(sizeof(struct mem_block));
522 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000523 putstr("add_node: malloc failed\n");
524 return NULL;
525 }
wdenk06d01db2003-03-14 20:47:52 +0000526 memBase->next = list->listMemBase;
527 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000528#if 0
529 putLabeledWord("add_node: alloced a new membase at ", *memBase);
530#endif
531
532 }
533 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000534 b = &memBase->nodes[index];
535 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000536
wdenk06d01db2003-03-14 20:47:52 +0000537 memBase->index = index;
538 list->listMemBase = memBase;
539 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000540 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000541}
542
wdenk06d01db2003-03-14 20:47:52 +0000543static struct b_node *
544insert_node(struct b_list *list, u32 offset)
545{
546 struct b_node *new;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200547#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000548 struct b_node *b, *prev;
549#endif
550
551 if (!(new = add_node(list))) {
552 putstr("add_node failed!\r\n");
553 return NULL;
554 }
555 new->offset = offset;
556
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200557#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000558 if (list->listTail != NULL && list->listCompare(new, list->listTail))
559 prev = list->listTail;
560 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
561 prev = list->listLast;
562 else
563 prev = NULL;
564
565 for (b = (prev ? prev->next : list->listHead);
566 b != NULL && list->listCompare(new, b);
567 prev = b, b = b->next) {
568 list->listLoops++;
569 }
570 if (b != NULL)
571 list->listLast = prev;
572
573 if (b != NULL) {
574 new->next = b;
575 if (prev != NULL)
576 prev->next = new;
577 else
578 list->listHead = new;
579 } else
580#endif
581 {
582 new->next = (struct b_node *) NULL;
583 if (list->listTail != NULL) {
584 list->listTail->next = new;
585 list->listTail = new;
586 } else {
587 list->listTail = list->listHead = new;
588 }
589 }
590
591 return new;
592}
593
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200594#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000595/* Sort data entries with the latest version last, so that if there
596 * is overlapping data the latest version will be used.
597 */
wdenk06d01db2003-03-14 20:47:52 +0000598static int compare_inodes(struct b_node *new, struct b_node *old)
599{
wdenk998eaae2004-04-18 19:43:36 +0000600 struct jffs2_raw_inode ojNew;
601 struct jffs2_raw_inode ojOld;
602 struct jffs2_raw_inode *jNew =
603 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
604 struct jffs2_raw_inode *jOld =
605 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000606
wdenk7205e402003-09-10 22:30:53 +0000607 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000608}
609
wdenk7205e402003-09-10 22:30:53 +0000610/* Sort directory entries so all entries in the same directory
611 * with the same name are grouped together, with the latest version
612 * last. This makes it easy to eliminate all but the latest version
613 * by marking the previous version dead by setting the inode to 0.
614 */
wdenk06d01db2003-03-14 20:47:52 +0000615static int compare_dirents(struct b_node *new, struct b_node *old)
616{
wdenk998eaae2004-04-18 19:43:36 +0000617 struct jffs2_raw_dirent ojNew;
618 struct jffs2_raw_dirent ojOld;
619 struct jffs2_raw_dirent *jNew =
620 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000621 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000622 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000623 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000624
wdenk7205e402003-09-10 22:30:53 +0000625 /* ascending sort by pino */
626 if (jNew->pino != jOld->pino)
627 return jNew->pino > jOld->pino;
628
629 /* pino is the same, so use ascending sort by nsize, so
630 * we don't do strncmp unless we really must.
631 */
632 if (jNew->nsize != jOld->nsize)
633 return jNew->nsize > jOld->nsize;
634
635 /* length is also the same, so use ascending sort by name
636 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200637 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk7205e402003-09-10 22:30:53 +0000638 if (cmp != 0)
639 return cmp > 0;
640
641 /* we have duplicate names in this directory, so use ascending
642 * sort by version
643 */
644 if (jNew->version > jOld->version) {
645 /* since jNew is newer, we know jOld is not valid, so
646 * mark it with inode 0 and it will not be used
647 */
648 jOld->ino = 0;
649 return 1;
650 }
wdenk42d1f032003-10-15 23:53:47 +0000651
wdenk7205e402003-09-10 22:30:53 +0000652 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000653}
654#endif
wdenkfe8c2802002-11-03 00:38:21 +0000655
656static u32
657jffs2_scan_empty(u32 start_offset, struct part_info *part)
658{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200659 char *max = (char *)(part->offset + part->size - sizeof(struct jffs2_raw_inode));
660 char *offset = (char *)(part->offset + start_offset);
wdenk998eaae2004-04-18 19:43:36 +0000661 u32 off;
wdenkfe8c2802002-11-03 00:38:21 +0000662
wdenk998eaae2004-04-18 19:43:36 +0000663 while (offset < max &&
664 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
wdenk06d01db2003-03-14 20:47:52 +0000665 offset += sizeof(u32);
666 /* return if spinning is due */
667 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
wdenkfe8c2802002-11-03 00:38:21 +0000668 }
wdenkfc1cfcd2004-04-25 15:41:35 +0000669
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200670 return (u32)offset - part->offset;
wdenkfe8c2802002-11-03 00:38:21 +0000671}
672
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200673void
674jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000675{
wdenk06d01db2003-03-14 20:47:52 +0000676 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000677
wdenk06d01db2003-03-14 20:47:52 +0000678 if (part->jffs2_priv != NULL) {
679 pL = (struct b_lists *)part->jffs2_priv;
680 free_nodes(&pL->frag);
681 free_nodes(&pL->dir);
682 free(pL);
683 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200684}
685
686static u32
687jffs_init_1pass_list(struct part_info *part)
688{
689 struct b_lists *pL;
690
691 jffs2_free_cache(part);
692
wdenk06d01db2003-03-14 20:47:52 +0000693 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
694 pL = (struct b_lists *)part->jffs2_priv;
695
696 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200697#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000698 pL->dir.listCompare = compare_dirents;
699 pL->frag.listCompare = compare_inodes;
700#endif
wdenkfe8c2802002-11-03 00:38:21 +0000701 }
702 return 0;
703}
704
705/* find the inode from the slashless name given a parent */
706static long
707jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
708{
709 struct b_node *b;
710 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000711 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000712 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200713 uchar *lDest;
714 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000715 long ret;
716 int i;
717 u32 counter = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200718#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000719 /* Find file size before loading any data, so fragments that
720 * start past the end of file can be ignored. A fragment
721 * that is partially in the file is loaded, so extra data may
722 * be loaded up to the next 4K boundary above the file size.
723 * This shouldn't cause trouble when loading kernel images, so
724 * we will live with it.
725 */
726 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000727 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
wdenk998eaae2004-04-18 19:43:36 +0000728 sizeof(struct jffs2_raw_inode), NULL);
wdenk7205e402003-09-10 22:30:53 +0000729 if ((inode == jNode->ino)) {
730 /* get actual file length from the newest node */
731 if (jNode->version >= latestVersion) {
732 totalSize = jNode->isize;
733 latestVersion = jNode->version;
734 }
735 }
wdenk998eaae2004-04-18 19:43:36 +0000736 put_fl_mem(jNode);
wdenk7205e402003-09-10 22:30:53 +0000737 }
738#endif
wdenkfe8c2802002-11-03 00:38:21 +0000739
wdenk06d01db2003-03-14 20:47:52 +0000740 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000741 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000742 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000743#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000744 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
745 putLabeledWord("read_inode: inode = ", jNode->ino);
746 putLabeledWord("read_inode: version = ", jNode->version);
747 putLabeledWord("read_inode: isize = ", jNode->isize);
748 putLabeledWord("read_inode: offset = ", jNode->offset);
749 putLabeledWord("read_inode: csize = ", jNode->csize);
750 putLabeledWord("read_inode: dsize = ", jNode->dsize);
751 putLabeledWord("read_inode: compr = ", jNode->compr);
752 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
753 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000754#endif
wdenk7205e402003-09-10 22:30:53 +0000755
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200756#ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000757 /* get actual file length from the newest node */
758 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000759 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000760 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000761 }
wdenk7205e402003-09-10 22:30:53 +0000762#endif
wdenkfe8c2802002-11-03 00:38:21 +0000763
764 if(dest) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200765 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000766 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000767 if (jNode->offset > totalSize) {
768 put_fl_mem(jNode);
wdenk06d01db2003-03-14 20:47:52 +0000769 continue;
wdenk998eaae2004-04-18 19:43:36 +0000770 }
wdenk06d01db2003-03-14 20:47:52 +0000771
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200772 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000773#if 0
wdenk06d01db2003-03-14 20:47:52 +0000774 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000775 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000776#endif
777 switch (jNode->compr) {
778 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000779 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
780 break;
781 case JFFS2_COMPR_ZERO:
782 ret = 0;
783 for (i = 0; i < jNode->dsize; i++)
784 *(lDest++) = 0;
785 break;
786 case JFFS2_COMPR_RTIME:
787 ret = 0;
788 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
789 break;
790 case JFFS2_COMPR_DYNRUBIN:
791 /* this is slow but it works */
792 ret = 0;
793 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
794 break;
795 case JFFS2_COMPR_ZLIB:
796 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
797 break;
wdenk412babe2005-05-05 09:51:44 +0000798#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000799 case JFFS2_COMPR_LZO:
800 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
801 break;
wdenk412babe2005-05-05 09:51:44 +0000802 case JFFS2_COMPR_LZARI:
803 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
804 break;
wdenk07cc0992005-05-05 00:04:14 +0000805#endif
wdenkfe8c2802002-11-03 00:38:21 +0000806 default:
807 /* unknown */
808 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
wdenk998eaae2004-04-18 19:43:36 +0000809 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000810 return -1;
811 break;
812 }
813 }
814
wdenkfe8c2802002-11-03 00:38:21 +0000815#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000816 putLabeledWord("read_inode: totalSize = ", totalSize);
817 putLabeledWord("read_inode: compr ret = ", ret);
818#endif
819 }
wdenkfe8c2802002-11-03 00:38:21 +0000820 counter++;
wdenk998eaae2004-04-18 19:43:36 +0000821 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000822 }
wdenkfe8c2802002-11-03 00:38:21 +0000823
824#if 0
wdenk06d01db2003-03-14 20:47:52 +0000825 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000826#endif
wdenk06d01db2003-03-14 20:47:52 +0000827 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000828}
829
830/* find the inode from the slashless name given a parent */
831static u32
832jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
833{
834 struct b_node *b;
835 struct jffs2_raw_dirent *jDir;
836 int len;
837 u32 counter;
838 u32 version = 0;
839 u32 inode = 0;
840
841 /* name is assumed slash free */
842 len = strlen(name);
843
844 counter = 0;
845 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000846 for(b = pL->dir.listHead; b; b = b->next, counter++) {
wdenk998eaae2004-04-18 19:43:36 +0000847 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000848 if ((pino == jDir->pino) && (len == jDir->nsize) &&
849 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200850 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000851 if (jDir->version < version) {
852 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000853 continue;
wdenk998eaae2004-04-18 19:43:36 +0000854 }
wdenkfe8c2802002-11-03 00:38:21 +0000855
wdenk7205e402003-09-10 22:30:53 +0000856 if (jDir->version == version && inode != 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200857 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000858 putstr(" ** ERROR ** ");
859 putnstr(jDir->name, jDir->nsize);
860 putLabeledWord(" has dup version =", version);
861 }
862 inode = jDir->ino;
863 version = jDir->version;
864 }
865#if 0
866 putstr("\r\nfind_inode:p&l ->");
867 putnstr(jDir->name, jDir->nsize);
868 putstr("\r\n");
869 putLabeledWord("pino = ", jDir->pino);
870 putLabeledWord("nsize = ", jDir->nsize);
871 putLabeledWord("b = ", (u32) b);
872 putLabeledWord("counter = ", counter);
873#endif
wdenk998eaae2004-04-18 19:43:36 +0000874 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000875 }
876 return inode;
877}
878
wdenk180d3f72004-01-04 16:28:35 +0000879char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000880{
wdenk06d01db2003-03-14 20:47:52 +0000881 static const char *l = "xwr";
882 int mask = 1, i;
883 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000884
wdenk06d01db2003-03-14 20:47:52 +0000885 switch (mode & S_IFMT) {
886 case S_IFDIR: str[0] = 'd'; break;
887 case S_IFBLK: str[0] = 'b'; break;
888 case S_IFCHR: str[0] = 'c'; break;
889 case S_IFIFO: str[0] = 'f'; break;
890 case S_IFLNK: str[0] = 'l'; break;
891 case S_IFSOCK: str[0] = 's'; break;
892 case S_IFREG: str[0] = '-'; break;
893 default: str[0] = '?';
894 }
wdenkfe8c2802002-11-03 00:38:21 +0000895
wdenk06d01db2003-03-14 20:47:52 +0000896 for(i = 0; i < 9; i++) {
897 c = l[i%3];
898 str[9-i] = (mode & mask)?c:'-';
899 mask = mask<<1;
900 }
wdenkfe8c2802002-11-03 00:38:21 +0000901
wdenk06d01db2003-03-14 20:47:52 +0000902 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
903 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
904 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
905 str[10] = '\0';
906 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000907}
908
909static inline void dump_stat(struct stat *st, const char *name)
910{
wdenk06d01db2003-03-14 20:47:52 +0000911 char str[20];
912 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000913
wdenk06d01db2003-03-14 20:47:52 +0000914 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
915 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000916
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200917 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000918
wdenk06d01db2003-03-14 20:47:52 +0000919 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
920 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000921
922/*
wdenk06d01db2003-03-14 20:47:52 +0000923 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
924 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000925*/
926
wdenk06d01db2003-03-14 20:47:52 +0000927 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000928}
929
930static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
931{
932 char fname[256];
933 struct stat st;
934
935 if(!d || !i) return -1;
936
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200937 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000938 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000939
940 memset(&st,0,sizeof(st));
941
wdenk06d01db2003-03-14 20:47:52 +0000942 st.st_mtime = i->mtime;
943 st.st_mode = i->mode;
944 st.st_ino = i->ino;
wdenkfe8c2802002-11-03 00:38:21 +0000945
946 /* neither dsize nor isize help us.. do it the long way */
wdenk06d01db2003-03-14 20:47:52 +0000947 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000948
949 dump_stat(&st, fname);
950
951 if (d->type == DT_LNK) {
952 unsigned char *src = (unsigned char *) (&i[1]);
953 putstr(" -> ");
954 putnstr(src, (int)i->dsize);
955 }
956
957 putstr("\r\n");
958
959 return 0;
960}
961
962/* list inodes with the given pino */
963static u32
964jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
965{
966 struct b_node *b;
967 struct jffs2_raw_dirent *jDir;
968
wdenk06d01db2003-03-14 20:47:52 +0000969 for (b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000970 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000971 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
972 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000973 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000974 struct jffs2_raw_inode *jNode, *i = NULL;
975 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000976
977 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000978 jNode = (struct jffs2_raw_inode *)
979 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000980 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
981 if (i)
wdenk02b11f82004-05-12 22:54:36 +0000982 put_fl_mem(i);
wdenkcf8bc572005-05-04 23:50:54 +0000983
984 if (jDir->type == DT_LNK)
985 i = get_node_mem(b2->offset);
986 else
987 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
wdenk32877d62004-05-05 19:44:41 +0000988 }
wdenkfe8c2802002-11-03 00:38:21 +0000989 b2 = b2->next;
990 }
991
992 dump_inode(pL, jDir, i);
wdenk998eaae2004-04-18 19:43:36 +0000993 put_fl_mem(i);
wdenkfe8c2802002-11-03 00:38:21 +0000994 }
wdenk998eaae2004-04-18 19:43:36 +0000995 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000996 }
997 return pino;
998}
999
1000static u32
1001jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
1002{
1003 int i;
1004 char tmp[256];
1005 char working_tmp[256];
1006 char *c;
1007
1008 /* discard any leading slash */
1009 i = 0;
1010 while (fname[i] == '/')
1011 i++;
1012 strcpy(tmp, &fname[i]);
1013
1014 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1015 {
1016 strncpy(working_tmp, tmp, c - tmp);
1017 working_tmp[c - tmp] = '\0';
1018#if 0
1019 putstr("search_inode: tmp = ");
1020 putstr(tmp);
1021 putstr("\r\n");
1022 putstr("search_inode: wtmp = ");
1023 putstr(working_tmp);
1024 putstr("\r\n");
1025 putstr("search_inode: c = ");
1026 putstr(c);
1027 putstr("\r\n");
1028#endif
1029 for (i = 0; i < strlen(c) - 1; i++)
1030 tmp[i] = c[i + 1];
1031 tmp[i] = '\0';
1032#if 0
1033 putstr("search_inode: post tmp = ");
1034 putstr(tmp);
1035 putstr("\r\n");
1036#endif
1037
1038 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1039 putstr("find_inode failed for name=");
1040 putstr(working_tmp);
1041 putstr("\r\n");
1042 return 0;
1043 }
1044 }
1045 /* this is for the bare filename, directories have already been mapped */
1046 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1047 putstr("find_inode failed for name=");
1048 putstr(tmp);
1049 putstr("\r\n");
1050 return 0;
1051 }
1052 return pino;
1053
1054}
1055
1056static u32
1057jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1058{
1059 struct b_node *b;
1060 struct b_node *b2;
1061 struct jffs2_raw_dirent *jDir;
1062 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +00001063 u8 jDirFoundType = 0;
1064 u32 jDirFoundIno = 0;
1065 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001066 char tmp[256];
1067 u32 version = 0;
1068 u32 pino;
1069 unsigned char *src;
1070
1071 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +00001072 for(b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +00001073 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001074 if (ino == jDir->ino) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001075 if (jDir->version < version) {
wdenk998eaae2004-04-18 19:43:36 +00001076 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +00001077 continue;
wdenk998eaae2004-04-18 19:43:36 +00001078 }
wdenkfe8c2802002-11-03 00:38:21 +00001079
wdenk998eaae2004-04-18 19:43:36 +00001080 if (jDir->version == version && jDirFoundType) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001081 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001082 putstr(" ** ERROR ** ");
1083 putnstr(jDir->name, jDir->nsize);
1084 putLabeledWord(" has dup version (resolve) = ",
1085 version);
1086 }
1087
wdenk998eaae2004-04-18 19:43:36 +00001088 jDirFoundType = jDir->type;
1089 jDirFoundIno = jDir->ino;
1090 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001091 version = jDir->version;
1092 }
wdenk998eaae2004-04-18 19:43:36 +00001093 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +00001094 }
1095 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +00001096 if (jDirFoundType != DT_LNK)
1097 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +00001098
1099 /* it's a soft link so we follow it again. */
1100 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001101 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +00001102 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
1103 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +00001104 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001105
1106#if 0
1107 putLabeledWord("\t\t dsize = ", jNode->dsize);
1108 putstr("\t\t target = ");
1109 putnstr(src, jNode->dsize);
1110 putstr("\r\n");
1111#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001112 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001113 tmp[jNode->dsize] = '\0';
wdenk998eaae2004-04-18 19:43:36 +00001114 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +00001115 break;
1116 }
1117 b2 = b2->next;
wdenk998eaae2004-04-18 19:43:36 +00001118 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +00001119 }
1120 /* ok so the name of the new file to find is in tmp */
1121 /* if it starts with a slash it is root based else shared dirs */
1122 if (tmp[0] == '/')
1123 pino = 1;
1124 else
wdenk998eaae2004-04-18 19:43:36 +00001125 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001126
1127 return jffs2_1pass_search_inode(pL, tmp, pino);
1128}
1129
1130static u32
1131jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1132{
1133 int i;
1134 char tmp[256];
1135 char working_tmp[256];
1136 char *c;
1137
1138 /* discard any leading slash */
1139 i = 0;
1140 while (fname[i] == '/')
1141 i++;
1142 strcpy(tmp, &fname[i]);
1143 working_tmp[0] = '\0';
1144 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1145 {
1146 strncpy(working_tmp, tmp, c - tmp);
1147 working_tmp[c - tmp] = '\0';
1148 for (i = 0; i < strlen(c) - 1; i++)
1149 tmp[i] = c[i + 1];
1150 tmp[i] = '\0';
1151 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001152 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1153 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001154 putstr("find_inode failed for name=");
1155 putstr(working_tmp);
1156 putstr("\r\n");
1157 return 0;
1158 }
1159 }
1160
1161 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1162 putstr("find_inode failed for name=");
1163 putstr(tmp);
1164 putstr("\r\n");
1165 return 0;
1166 }
1167 /* this is for the bare filename, directories have already been mapped */
1168 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1169 putstr("find_inode failed for name=");
1170 putstr(tmp);
1171 putstr("\r\n");
1172 return 0;
1173 }
1174 return pino;
1175
1176}
1177
1178unsigned char
1179jffs2_1pass_rescan_needed(struct part_info *part)
1180{
1181 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001182 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001183 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001184 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001185
1186 if (part->jffs2_priv == 0){
1187 DEBUGF ("rescan: First time in use\n");
1188 return 1;
1189 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001190
wdenkfe8c2802002-11-03 00:38:21 +00001191 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001192 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001193 DEBUGF ("rescan: fraglist zero\n");
1194 return 1;
1195 }
1196
wdenk06d01db2003-03-14 20:47:52 +00001197 /* but suppose someone reflashed a partition at the same offset... */
1198 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001199 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001200 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1201 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001202 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001203 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1204 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001205 return 1;
1206 }
1207 b = b->next;
1208 }
1209 return 0;
1210}
1211
wdenk06d01db2003-03-14 20:47:52 +00001212#ifdef DEBUG_FRAGMENTS
1213static void
1214dump_fragments(struct b_lists *pL)
1215{
1216 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001217 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001218 struct jffs2_raw_inode *jNode;
1219
1220 putstr("\r\n\r\n******The fragment Entries******\r\n");
1221 b = pL->frag.listHead;
1222 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001223 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1224 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001225 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1226 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1227 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1228 putLabeledWord("\tbuild_list: version = ", jNode->version);
1229 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1230 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1231 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1232 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1233 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1234 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1235 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1236 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001237 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001238 b = b->next;
1239 }
1240}
1241#endif
1242
1243#ifdef DEBUG_DIRENTS
1244static void
1245dump_dirents(struct b_lists *pL)
1246{
1247 struct b_node *b;
1248 struct jffs2_raw_dirent *jDir;
1249
1250 putstr("\r\n\r\n******The directory Entries******\r\n");
1251 b = pL->dir.listHead;
1252 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001253 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +00001254 putstr("\r\n");
1255 putnstr(jDir->name, jDir->nsize);
1256 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1257 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1258 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1259 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1260 putLabeledWord("\tbuild_list: version = ", jDir->version);
1261 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1262 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1263 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1264 putLabeledWord("\tbuild_list: type = ", jDir->type);
1265 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1266 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001267 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001268 b = b->next;
wdenk998eaae2004-04-18 19:43:36 +00001269 put_fl_mem(jDir);
wdenk06d01db2003-03-14 20:47:52 +00001270 }
1271}
1272#endif
1273
wdenkfe8c2802002-11-03 00:38:21 +00001274static u32
1275jffs2_1pass_build_lists(struct part_info * part)
1276{
1277 struct b_lists *pL;
1278 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001279 u32 offset, oldoffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001280 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1281 u32 counter = 0;
1282 u32 counter4 = 0;
1283 u32 counterF = 0;
1284 u32 counterN = 0;
1285
1286 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1287 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1288 /* only about 5 %. not enough to inconvenience people for. */
1289 /* lcd_off(); */
1290
1291 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001292 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001293 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001294 offset = 0;
wdenk4b9206e2004-03-23 22:14:11 +00001295 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001296
1297 /* start at the beginning of the partition */
1298 while (offset < max) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001299 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
wdenk06d01db2003-03-14 20:47:52 +00001300 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1301 oldoffset = offset;
1302 }
wdenk0b8fa032004-04-25 14:37:29 +00001303
Stuart Wood86d32732008-06-02 16:40:08 -04001304 WATCHDOG_RESET();
1305
wdenkfc1cfcd2004-04-25 15:41:35 +00001306 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
1307 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
1308 /* if its a fragment add it */
1309 if (node->nodetype == JFFS2_NODETYPE_INODE &&
Wolfgang Denk74f92e62006-03-12 16:05:05 +01001310 inode_crc((struct jffs2_raw_inode *) node) &&
1311 data_crc((struct jffs2_raw_inode *) node)) {
wdenk06d01db2003-03-14 20:47:52 +00001312 if (insert_node(&pL->frag, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001313 offset) == NULL) {
1314 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001315 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001316 }
wdenkfe8c2802002-11-03 00:38:21 +00001317 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1318 dirent_crc((struct jffs2_raw_dirent *) node) &&
1319 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
wdenkfc1cfcd2004-04-25 15:41:35 +00001320 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001321 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001322 if (insert_node(&pL->dir, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001323 offset) == NULL) {
1324 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001325 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001326 }
wdenkfe8c2802002-11-03 00:38:21 +00001327 counterN++;
1328 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1329 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001330 printf("OOPS Cleanmarker has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001331 "%d != %zu\n",
1332 node->totlen,
wdenk06d01db2003-03-14 20:47:52 +00001333 sizeof(struct jffs2_unknown_node));
wdenk7205e402003-09-10 22:30:53 +00001334 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1335 if (node->totlen < sizeof(struct jffs2_unknown_node))
1336 printf("OOPS Padding has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001337 "%d < %zu\n",
1338 node->totlen,
wdenk7205e402003-09-10 22:30:53 +00001339 sizeof(struct jffs2_unknown_node));
wdenkfe8c2802002-11-03 00:38:21 +00001340 } else {
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001341 printf("Unknown node type: %x len %d offset 0x%x\n",
1342 node->nodetype,
wdenkfc1cfcd2004-04-25 15:41:35 +00001343 node->totlen, offset);
wdenkfe8c2802002-11-03 00:38:21 +00001344 }
1345 offset += ((node->totlen + 3) & ~3);
1346 counterF++;
wdenk06d01db2003-03-14 20:47:52 +00001347 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1348 node->nodetype == JFFS2_EMPTY_BITMASK) {
wdenkfe8c2802002-11-03 00:38:21 +00001349 offset = jffs2_scan_empty(offset, part);
wdenkfc1cfcd2004-04-25 15:41:35 +00001350 } else { /* if we know nothing, we just step and look. */
wdenkfe8c2802002-11-03 00:38:21 +00001351 offset += 4;
1352 counter4++;
1353 }
1354/* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
wdenk998eaae2004-04-18 19:43:36 +00001355 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001356 }
1357
1358 putstr("\b\b done.\r\n"); /* close off the dots */
1359 /* turn the lcd back on. */
1360 /* splash(); */
1361
1362#if 0
wdenk06d01db2003-03-14 20:47:52 +00001363 putLabeledWord("dir entries = ", pL->dir.listCount);
1364 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001365 putLabeledWord("+4 increments = ", counter4);
1366 putLabeledWord("+file_offset increments = ", counterF);
1367
1368#endif
1369
wdenk06d01db2003-03-14 20:47:52 +00001370#ifdef DEBUG_DIRENTS
1371 dump_dirents(pL);
1372#endif
wdenkfe8c2802002-11-03 00:38:21 +00001373
wdenk06d01db2003-03-14 20:47:52 +00001374#ifdef DEBUG_FRAGMENTS
1375 dump_fragments(pL);
1376#endif
wdenkfe8c2802002-11-03 00:38:21 +00001377
wdenkfe8c2802002-11-03 00:38:21 +00001378 /* give visual feedback that we are done scanning the flash */
1379 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1380 return 1;
1381}
1382
1383
wdenkfe8c2802002-11-03 00:38:21 +00001384static u32
1385jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1386{
1387 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001388 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001389 struct jffs2_raw_inode *jNode;
1390 int i;
1391
wdenkfe8c2802002-11-03 00:38:21 +00001392 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1393 piL->compr_info[i].num_frags = 0;
1394 piL->compr_info[i].compr_sum = 0;
1395 piL->compr_info[i].decompr_sum = 0;
1396 }
1397
wdenk06d01db2003-03-14 20:47:52 +00001398 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001399 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001400 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1401 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001402 if (jNode->compr < JFFS2_NUM_COMPR) {
1403 piL->compr_info[jNode->compr].num_frags++;
1404 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1405 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1406 }
1407 b = b->next;
1408 }
1409 return 0;
1410}
1411
1412
wdenkfe8c2802002-11-03 00:38:21 +00001413static struct b_lists *
1414jffs2_get_list(struct part_info * part, const char *who)
1415{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001416 /* copy requested part_info struct pointer to global location */
1417 current_part = part;
1418
wdenkfe8c2802002-11-03 00:38:21 +00001419 if (jffs2_1pass_rescan_needed(part)) {
1420 if (!jffs2_1pass_build_lists(part)) {
1421 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1422 return NULL;
1423 }
1424 }
1425 return (struct b_lists *)part->jffs2_priv;
1426}
1427
1428
1429/* Print directory / file contents */
1430u32
1431jffs2_1pass_ls(struct part_info * part, const char *fname)
1432{
1433 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001434 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001435 u32 inode;
1436
wdenk06d01db2003-03-14 20:47:52 +00001437 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001438 return 0;
1439
1440 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1441 putstr("ls: Failed to scan jffs2 file structure\r\n");
1442 return 0;
1443 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001444
1445
wdenkfe8c2802002-11-03 00:38:21 +00001446#if 0
1447 putLabeledWord("found file at inode = ", inode);
1448 putLabeledWord("read_inode returns = ", ret);
1449#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001450
1451 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001452}
1453
1454
wdenkfe8c2802002-11-03 00:38:21 +00001455/* Load a file from flash into memory. fname can be a full path */
1456u32
1457jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1458{
1459
1460 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001461 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001462 u32 inode;
1463
1464 if (! (pl = jffs2_get_list(part, "load")))
1465 return 0;
1466
1467 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1468 putstr("load: Failed to find inode\r\n");
1469 return 0;
1470 }
1471
1472 /* Resolve symlinks */
1473 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1474 putstr("load: Failed to resolve inode structure\r\n");
1475 return 0;
1476 }
1477
1478 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1479 putstr("load: Failed to read inode\r\n");
1480 return 0;
1481 }
1482
1483 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1484 (unsigned long) dest, ret);
1485 return ret;
1486}
1487
1488/* Return information about the fs on this partition */
1489u32
1490jffs2_1pass_info(struct part_info * part)
1491{
1492 struct b_jffs2_info info;
1493 struct b_lists *pl;
1494 int i;
1495
1496 if (! (pl = jffs2_get_list(part, "info")))
1497 return 0;
1498
1499 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001500 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001501 printf ("Compression: %s\n"
1502 "\tfrag count: %d\n"
1503 "\tcompressed sum: %d\n"
1504 "\tuncompressed sum: %d\n",
1505 compr_names[i],
1506 info.compr_info[i].num_frags,
1507 info.compr_info[i].compr_sum,
1508 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001509 }
1510 return 1;
1511}