blob: 73d3ddc9e137fa7e68cc8e1855e9186d3fffeeaa [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 *
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020095 * The fragment sorting feature must be enabled by CONFIG_SYS_JFFS2_SORT_FRAGMENTS.
wdenk6b58f332003-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
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
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300248static void *get_node_mem_nand(u32 off, void *ext_buf)
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),
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300258 ext_buf))) {
wdenk8886a662004-04-18 19:43:36 +0000259 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
Kyungmin Park25383742008-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
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300347static void *get_node_mem_onenand(u32 off, void *ext_buf)
Kyungmin Park25383742008-08-27 14:45:20 +0900348{
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),
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300357 ext_buf);
Kyungmin Park25383742008-08-27 14:45:20 +0900358 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
Wolfgang Denk47f57792005-08-08 01:03:24 +0200372
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500373#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk47f57792005-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 */
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300380static inline void *get_fl_mem_nor(u32 off, u32 size, void *ext_buf)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200381{
382 u32 addr = off;
383 struct mtdids *id = current_part->dev->id;
384
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200385 extern flash_info_t flash_info[];
Wolfgang Denk47f57792005-08-08 01:03:24 +0200386 flash_info_t *flash = &flash_info[id->num];
387
388 addr += flash->start[0];
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300389 if (ext_buf) {
390 memcpy(ext_buf, (void *)addr, size);
391 return ext_buf;
392 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200393 return (void*)addr;
394}
395
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300396static inline void *get_node_mem_nor(u32 off, void *ext_buf)
Ilya Yanokddb02692008-11-13 19:49:33 +0300397{
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300398 struct jffs2_unknown_node *pNode;
Ilya Yanokddb02692008-11-13 19:49:33 +0300399
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300400 /* pNode will point directly to flash - don't provide external buffer
401 and don't care about size */
402 pNode = get_fl_mem_nor(off, 0, NULL);
403 return (void *)get_fl_mem_nor(off, pNode->magic == JFFS2_MAGIC_BITMASK ?
404 pNode->totlen : sizeof(*pNode), ext_buf);
Wolfgang Denk47f57792005-08-08 01:03:24 +0200405}
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500406#endif
wdenk8886a662004-04-18 19:43:36 +0000407
wdenk8886a662004-04-18 19:43:36 +0000408
Wolfgang Denk47f57792005-08-08 01:03:24 +0200409/*
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200410 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk47f57792005-08-08 01:03:24 +0200411 *
412 */
wdenk8886a662004-04-18 19:43:36 +0000413static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
414{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200415 struct mtdids *id = current_part->dev->id;
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200416
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500417#if defined(CONFIG_CMD_FLASH)
Ilya Yanokddb02692008-11-13 19:49:33 +0300418 if (id->type == MTD_DEV_TYPE_NOR) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300419 return get_fl_mem_nor(off, size, ext_buf);
Ilya Yanokddb02692008-11-13 19:49:33 +0300420 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200421#endif
422
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500423#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200424 if (id->type == MTD_DEV_TYPE_NAND)
425 return get_fl_mem_nand(off, size, ext_buf);
426#endif
427
Kyungmin Park25383742008-08-27 14:45:20 +0900428#if defined(CONFIG_CMD_ONENAND)
429 if (id->type == MTD_DEV_TYPE_ONENAND)
430 return get_fl_mem_onenand(off, size, ext_buf);
431#endif
432
Wolfgang Denk47f57792005-08-08 01:03:24 +0200433 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk8886a662004-04-18 19:43:36 +0000434 return (void*)off;
435}
436
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300437static inline void *get_node_mem(u32 off, void *ext_buf)
wdenk8886a662004-04-18 19:43:36 +0000438{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200439 struct mtdids *id = current_part->dev->id;
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200440
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500441#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200442 if (id->type == MTD_DEV_TYPE_NOR)
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300443 return get_node_mem_nor(off, ext_buf);
Wolfgang Denk47f57792005-08-08 01:03:24 +0200444#endif
445
Wolfgang Denk15888b42007-07-05 17:56:27 +0200446#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500447 defined(CONFIG_CMD_NAND)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200448 if (id->type == MTD_DEV_TYPE_NAND)
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300449 return get_node_mem_nand(off, ext_buf);
Wolfgang Denk47f57792005-08-08 01:03:24 +0200450#endif
451
Kyungmin Park25383742008-08-27 14:45:20 +0900452#if defined(CONFIG_CMD_ONENAND)
453 if (id->type == MTD_DEV_TYPE_ONENAND)
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300454 return get_node_mem_onenand(off, ext_buf);
Kyungmin Park25383742008-08-27 14:45:20 +0900455#endif
456
Wolfgang Denk47f57792005-08-08 01:03:24 +0200457 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk8886a662004-04-18 19:43:36 +0000458 return (void*)off;
459}
460
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300461static inline void put_fl_mem(void *buf, void *ext_buf)
wdenk8886a662004-04-18 19:43:36 +0000462{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200463 struct mtdids *id = current_part->dev->id;
wdenk8886a662004-04-18 19:43:36 +0000464
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300465 /* If buf is the same as ext_buf, it was provided by the caller -
466 we shouldn't free it then. */
467 if (buf == ext_buf)
468 return;
Scott Woodc97ba112008-10-31 13:51:12 -0500469 switch (id->type) {
470#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
471 case MTD_DEV_TYPE_NAND:
Wolfgang Denk47f57792005-08-08 01:03:24 +0200472 return put_fl_mem_nand(buf);
473#endif
Kyungmin Park25383742008-08-27 14:45:20 +0900474#if defined(CONFIG_CMD_ONENAND)
Scott Woodc97ba112008-10-31 13:51:12 -0500475 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park25383742008-08-27 14:45:20 +0900476 return put_fl_mem_onenand(buf);
477#endif
Scott Woodc97ba112008-10-31 13:51:12 -0500478 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200479}
wdenk6b58f332003-03-14 20:47:52 +0000480
481/* Compression names */
482static char *compr_names[] = {
483 "NONE",
484 "ZERO",
485 "RTIME",
486 "RUBINMIPS",
487 "COPY",
488 "DYNRUBIN",
wdenke84ec902005-05-05 00:04:14 +0000489 "ZLIB",
wdenkb85efc22005-05-05 09:51:44 +0000490#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenke84ec902005-05-05 00:04:14 +0000491 "LZO",
wdenke84ec902005-05-05 00:04:14 +0000492 "LZARI",
493#endif
wdenk6b58f332003-03-14 20:47:52 +0000494};
495
wdenk6b58f332003-03-14 20:47:52 +0000496/* Memory management */
497struct mem_block {
498 u32 index;
499 struct mem_block *next;
500 struct b_node nodes[NODE_CHUNK];
501};
502
503
504static void
505free_nodes(struct b_list *list)
506{
507 while (list->listMemBase != NULL) {
508 struct mem_block *next = list->listMemBase->next;
509 free( list->listMemBase );
510 list->listMemBase = next;
511 }
512}
wdenkfe8c2802002-11-03 00:38:21 +0000513
514static struct b_node *
wdenk6b58f332003-03-14 20:47:52 +0000515add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000516{
wdenk6b58f332003-03-14 20:47:52 +0000517 u32 index = 0;
518 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000519 struct b_node *b;
520
wdenk6b58f332003-03-14 20:47:52 +0000521 memBase = list->listMemBase;
522 if (memBase != NULL)
523 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000524#if 0
525 putLabeledWord("add_node: index = ", index);
wdenk6b58f332003-03-14 20:47:52 +0000526 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000527#endif
528
wdenk6b58f332003-03-14 20:47:52 +0000529 if (memBase == NULL || index >= NODE_CHUNK) {
530 /* we need more space before we continue */
531 memBase = mmalloc(sizeof(struct mem_block));
532 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000533 putstr("add_node: malloc failed\n");
534 return NULL;
535 }
wdenk6b58f332003-03-14 20:47:52 +0000536 memBase->next = list->listMemBase;
537 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000538#if 0
539 putLabeledWord("add_node: alloced a new membase at ", *memBase);
540#endif
541
542 }
543 /* now we have room to add it. */
wdenk6b58f332003-03-14 20:47:52 +0000544 b = &memBase->nodes[index];
545 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000546
wdenk6b58f332003-03-14 20:47:52 +0000547 memBase->index = index;
548 list->listMemBase = memBase;
549 list->listCount++;
550 return b;
551}
wdenkfe8c2802002-11-03 00:38:21 +0000552
wdenk6b58f332003-03-14 20:47:52 +0000553static struct b_node *
554insert_node(struct b_list *list, u32 offset)
555{
556 struct b_node *new;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200557#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk6b58f332003-03-14 20:47:52 +0000558 struct b_node *b, *prev;
wdenkfe8c2802002-11-03 00:38:21 +0000559#endif
560
wdenk6b58f332003-03-14 20:47:52 +0000561 if (!(new = add_node(list))) {
562 putstr("add_node failed!\r\n");
563 return NULL;
564 }
565 new->offset = offset;
566
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200567#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk6b58f332003-03-14 20:47:52 +0000568 if (list->listTail != NULL && list->listCompare(new, list->listTail))
569 prev = list->listTail;
570 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
571 prev = list->listLast;
572 else
573 prev = NULL;
574
575 for (b = (prev ? prev->next : list->listHead);
576 b != NULL && list->listCompare(new, b);
577 prev = b, b = b->next) {
578 list->listLoops++;
579 }
580 if (b != NULL)
581 list->listLast = prev;
582
583 if (b != NULL) {
584 new->next = b;
585 if (prev != NULL)
586 prev->next = new;
587 else
588 list->listHead = new;
589 } else
wdenkfe8c2802002-11-03 00:38:21 +0000590#endif
wdenk6b58f332003-03-14 20:47:52 +0000591 {
592 new->next = (struct b_node *) NULL;
593 if (list->listTail != NULL) {
594 list->listTail->next = new;
595 list->listTail = new;
596 } else {
597 list->listTail = list->listHead = new;
598 }
599 }
wdenkfe8c2802002-11-03 00:38:21 +0000600
wdenk6b58f332003-03-14 20:47:52 +0000601 return new;
wdenkfe8c2802002-11-03 00:38:21 +0000602}
603
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200604#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk2c9b05d2003-09-10 22:30:53 +0000605/* Sort data entries with the latest version last, so that if there
606 * is overlapping data the latest version will be used.
607 */
wdenk6b58f332003-03-14 20:47:52 +0000608static int compare_inodes(struct b_node *new, struct b_node *old)
609{
wdenk8886a662004-04-18 19:43:36 +0000610 struct jffs2_raw_inode ojNew;
611 struct jffs2_raw_inode ojOld;
612 struct jffs2_raw_inode *jNew =
613 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
614 struct jffs2_raw_inode *jOld =
615 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk6b58f332003-03-14 20:47:52 +0000616
wdenk2c9b05d2003-09-10 22:30:53 +0000617 return jNew->version > jOld->version;
wdenk6b58f332003-03-14 20:47:52 +0000618}
619
wdenk2c9b05d2003-09-10 22:30:53 +0000620/* Sort directory entries so all entries in the same directory
621 * with the same name are grouped together, with the latest version
622 * last. This makes it easy to eliminate all but the latest version
623 * by marking the previous version dead by setting the inode to 0.
624 */
wdenk6b58f332003-03-14 20:47:52 +0000625static int compare_dirents(struct b_node *new, struct b_node *old)
626{
wdenk8886a662004-04-18 19:43:36 +0000627 struct jffs2_raw_dirent ojNew;
628 struct jffs2_raw_dirent ojOld;
629 struct jffs2_raw_dirent *jNew =
630 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk12490652004-04-18 21:13:41 +0000631 struct jffs2_raw_dirent *jOld =
wdenk8886a662004-04-18 19:43:36 +0000632 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk2c9b05d2003-09-10 22:30:53 +0000633 int cmp;
wdenk6b58f332003-03-14 20:47:52 +0000634
wdenk2c9b05d2003-09-10 22:30:53 +0000635 /* ascending sort by pino */
636 if (jNew->pino != jOld->pino)
637 return jNew->pino > jOld->pino;
638
639 /* pino is the same, so use ascending sort by nsize, so
640 * we don't do strncmp unless we really must.
641 */
642 if (jNew->nsize != jOld->nsize)
643 return jNew->nsize > jOld->nsize;
644
645 /* length is also the same, so use ascending sort by name
646 */
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200647 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk2c9b05d2003-09-10 22:30:53 +0000648 if (cmp != 0)
649 return cmp > 0;
650
651 /* we have duplicate names in this directory, so use ascending
652 * sort by version
653 */
654 if (jNew->version > jOld->version) {
655 /* since jNew is newer, we know jOld is not valid, so
656 * mark it with inode 0 and it will not be used
657 */
658 jOld->ino = 0;
659 return 1;
660 }
wdenk9c53f402003-10-15 23:53:47 +0000661
wdenk2c9b05d2003-09-10 22:30:53 +0000662 return 0;
wdenk6b58f332003-03-14 20:47:52 +0000663}
664#endif
wdenkfe8c2802002-11-03 00:38:21 +0000665
Wolfgang Denk47f57792005-08-08 01:03:24 +0200666void
667jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000668{
wdenk6b58f332003-03-14 20:47:52 +0000669 struct b_lists *pL;
670
671 if (part->jffs2_priv != NULL) {
672 pL = (struct b_lists *)part->jffs2_priv;
673 free_nodes(&pL->frag);
674 free_nodes(&pL->dir);
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300675 free(pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000676 free(pL);
677 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200678}
679
680static u32
681jffs_init_1pass_list(struct part_info *part)
682{
683 struct b_lists *pL;
684
685 jffs2_free_cache(part);
686
wdenk6b58f332003-03-14 20:47:52 +0000687 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
688 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +0000689
wdenk6b58f332003-03-14 20:47:52 +0000690 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200691#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk6b58f332003-03-14 20:47:52 +0000692 pL->dir.listCompare = compare_dirents;
693 pL->frag.listCompare = compare_inodes;
694#endif
wdenkfe8c2802002-11-03 00:38:21 +0000695 }
696 return 0;
697}
698
699/* find the inode from the slashless name given a parent */
700static long
701jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
702{
703 struct b_node *b;
704 struct jffs2_raw_inode *jNode;
wdenk6b58f332003-03-14 20:47:52 +0000705 u32 totalSize = 0;
wdenk2c9b05d2003-09-10 22:30:53 +0000706 u32 latestVersion = 0;
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200707 uchar *lDest;
708 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000709 long ret;
710 int i;
711 u32 counter = 0;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200712#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk2c9b05d2003-09-10 22:30:53 +0000713 /* Find file size before loading any data, so fragments that
714 * start past the end of file can be ignored. A fragment
715 * that is partially in the file is loaded, so extra data may
716 * be loaded up to the next 4K boundary above the file size.
717 * This shouldn't cause trouble when loading kernel images, so
718 * we will live with it.
719 */
720 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk12490652004-04-18 21:13:41 +0000721 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300722 sizeof(struct jffs2_raw_inode), pL->readbuf);
wdenk2c9b05d2003-09-10 22:30:53 +0000723 if ((inode == jNode->ino)) {
724 /* get actual file length from the newest node */
725 if (jNode->version >= latestVersion) {
726 totalSize = jNode->isize;
727 latestVersion = jNode->version;
728 }
729 }
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300730 put_fl_mem(jNode, pL->readbuf);
wdenk2c9b05d2003-09-10 22:30:53 +0000731 }
732#endif
wdenkfe8c2802002-11-03 00:38:21 +0000733
wdenk6b58f332003-03-14 20:47:52 +0000734 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300735 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset,
736 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000737 if ((inode == jNode->ino)) {
wdenk6b58f332003-03-14 20:47:52 +0000738#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000739 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
740 putLabeledWord("read_inode: inode = ", jNode->ino);
741 putLabeledWord("read_inode: version = ", jNode->version);
742 putLabeledWord("read_inode: isize = ", jNode->isize);
743 putLabeledWord("read_inode: offset = ", jNode->offset);
744 putLabeledWord("read_inode: csize = ", jNode->csize);
745 putLabeledWord("read_inode: dsize = ", jNode->dsize);
746 putLabeledWord("read_inode: compr = ", jNode->compr);
747 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
748 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000749#endif
wdenk2c9b05d2003-09-10 22:30:53 +0000750
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200751#ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk6b58f332003-03-14 20:47:52 +0000752 /* get actual file length from the newest node */
753 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000754 totalSize = jNode->isize;
wdenk6b58f332003-03-14 20:47:52 +0000755 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000756 }
wdenk2c9b05d2003-09-10 22:30:53 +0000757#endif
wdenkfe8c2802002-11-03 00:38:21 +0000758
759 if(dest) {
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200760 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk6b58f332003-03-14 20:47:52 +0000761 /* ignore data behind latest known EOF */
wdenk8886a662004-04-18 19:43:36 +0000762 if (jNode->offset > totalSize) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300763 put_fl_mem(jNode, pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000764 continue;
wdenk8886a662004-04-18 19:43:36 +0000765 }
Ilya Yanokddb02692008-11-13 19:49:33 +0300766 if (!data_crc(jNode)) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300767 put_fl_mem(jNode, pL->readbuf);
Ilya Yanokddb02692008-11-13 19:49:33 +0300768 continue;
769 }
wdenk6b58f332003-03-14 20:47:52 +0000770
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200771 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000772#if 0
wdenk6b58f332003-03-14 20:47:52 +0000773 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000774 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000775#endif
776 switch (jNode->compr) {
777 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000778 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
779 break;
780 case JFFS2_COMPR_ZERO:
781 ret = 0;
782 for (i = 0; i < jNode->dsize; i++)
783 *(lDest++) = 0;
784 break;
785 case JFFS2_COMPR_RTIME:
786 ret = 0;
787 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
788 break;
789 case JFFS2_COMPR_DYNRUBIN:
790 /* this is slow but it works */
791 ret = 0;
792 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
793 break;
794 case JFFS2_COMPR_ZLIB:
795 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
796 break;
wdenkb85efc22005-05-05 09:51:44 +0000797#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenke84ec902005-05-05 00:04:14 +0000798 case JFFS2_COMPR_LZO:
799 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
800 break;
wdenkb85efc22005-05-05 09:51:44 +0000801 case JFFS2_COMPR_LZARI:
802 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
803 break;
wdenke84ec902005-05-05 00:04:14 +0000804#endif
wdenkfe8c2802002-11-03 00:38:21 +0000805 default:
806 /* unknown */
807 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300808 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000809 return -1;
810 break;
811 }
812 }
813
wdenkfe8c2802002-11-03 00:38:21 +0000814#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000815 putLabeledWord("read_inode: totalSize = ", totalSize);
816 putLabeledWord("read_inode: compr ret = ", ret);
817#endif
818 }
wdenkfe8c2802002-11-03 00:38:21 +0000819 counter++;
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300820 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000821 }
wdenkfe8c2802002-11-03 00:38:21 +0000822
823#if 0
wdenk6b58f332003-03-14 20:47:52 +0000824 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000825#endif
wdenk6b58f332003-03-14 20:47:52 +0000826 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000827}
828
829/* find the inode from the slashless name given a parent */
830static u32
831jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
832{
833 struct b_node *b;
834 struct jffs2_raw_dirent *jDir;
835 int len;
836 u32 counter;
837 u32 version = 0;
838 u32 inode = 0;
839
840 /* name is assumed slash free */
841 len = strlen(name);
842
843 counter = 0;
844 /* we need to search all and return the inode with the highest version */
wdenk6b58f332003-03-14 20:47:52 +0000845 for(b = pL->dir.listHead; b; b = b->next, counter++) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300846 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
847 pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000848 if ((pino == jDir->pino) && (len == jDir->nsize) &&
849 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200850 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk8886a662004-04-18 19:43:36 +0000851 if (jDir->version < version) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300852 put_fl_mem(jDir, pL->readbuf);
wdenk2c9b05d2003-09-10 22:30:53 +0000853 continue;
wdenk8886a662004-04-18 19:43:36 +0000854 }
wdenkfe8c2802002-11-03 00:38:21 +0000855
wdenk2c9b05d2003-09-10 22:30:53 +0000856 if (jDir->version == version && inode != 0) {
Wolfgang Denka1be4762008-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
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300874 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000875 }
876 return inode;
877}
878
wdenkad276f22004-01-04 16:28:35 +0000879char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000880{
wdenk6b58f332003-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
wdenk6b58f332003-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
wdenk6b58f332003-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
wdenk6b58f332003-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{
wdenk6b58f332003-03-14 20:47:52 +0000911 char str[20];
912 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000913
wdenk6b58f332003-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 Denk7fb52662005-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
wdenk6b58f332003-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/*
wdenk6b58f332003-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
wdenk6b58f332003-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 Denk7fb52662005-10-13 16:45:02 +0200937 strncpy(fname, (char *)d->name, d->nsize);
wdenk6b58f332003-03-14 20:47:52 +0000938 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000939
940 memset(&st,0,sizeof(st));
941
wdenk6b58f332003-03-14 20:47:52 +0000942 st.st_mtime = i->mtime;
943 st.st_mode = i->mode;
944 st.st_ino = i->ino;
Ilya Yanokc4785fb2008-11-13 19:49:31 +0300945 st.st_size = i->isize;
wdenkfe8c2802002-11-03 00:38:21 +0000946
947 dump_stat(&st, fname);
948
949 if (d->type == DT_LNK) {
950 unsigned char *src = (unsigned char *) (&i[1]);
951 putstr(" -> ");
952 putnstr(src, (int)i->dsize);
953 }
954
955 putstr("\r\n");
956
957 return 0;
958}
959
960/* list inodes with the given pino */
961static u32
962jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
963{
964 struct b_node *b;
965 struct jffs2_raw_dirent *jDir;
966
wdenk6b58f332003-03-14 20:47:52 +0000967 for (b = pL->dir.listHead; b; b = b->next) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300968 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
969 pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000970 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
971 u32 i_version = 0;
wdenk8886a662004-04-18 19:43:36 +0000972 struct jffs2_raw_inode ojNode;
wdenk6b58f332003-03-14 20:47:52 +0000973 struct jffs2_raw_inode *jNode, *i = NULL;
974 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000975
976 while (b2) {
wdenk8886a662004-04-18 19:43:36 +0000977 jNode = (struct jffs2_raw_inode *)
978 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenkf248ebc2004-05-05 19:44:41 +0000979 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
Ilya Yanokc4785fb2008-11-13 19:49:31 +0300980 i_version = jNode->version;
wdenkf248ebc2004-05-05 19:44:41 +0000981 if (i)
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300982 put_fl_mem(i, NULL);
wdenke02d2ae2005-05-04 23:50:54 +0000983
984 if (jDir->type == DT_LNK)
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300985 i = get_node_mem(b2->offset,
986 NULL);
wdenke02d2ae2005-05-04 23:50:54 +0000987 else
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300988 i = get_fl_mem(b2->offset,
989 sizeof(*i),
990 NULL);
wdenkf248ebc2004-05-05 19:44:41 +0000991 }
wdenkfe8c2802002-11-03 00:38:21 +0000992 b2 = b2->next;
993 }
994
995 dump_inode(pL, jDir, i);
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300996 put_fl_mem(i, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000997 }
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300998 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000999 }
1000 return pino;
1001}
1002
1003static u32
1004jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
1005{
1006 int i;
1007 char tmp[256];
1008 char working_tmp[256];
1009 char *c;
1010
1011 /* discard any leading slash */
1012 i = 0;
1013 while (fname[i] == '/')
1014 i++;
1015 strcpy(tmp, &fname[i]);
1016
1017 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1018 {
1019 strncpy(working_tmp, tmp, c - tmp);
1020 working_tmp[c - tmp] = '\0';
1021#if 0
1022 putstr("search_inode: tmp = ");
1023 putstr(tmp);
1024 putstr("\r\n");
1025 putstr("search_inode: wtmp = ");
1026 putstr(working_tmp);
1027 putstr("\r\n");
1028 putstr("search_inode: c = ");
1029 putstr(c);
1030 putstr("\r\n");
1031#endif
1032 for (i = 0; i < strlen(c) - 1; i++)
1033 tmp[i] = c[i + 1];
1034 tmp[i] = '\0';
1035#if 0
1036 putstr("search_inode: post tmp = ");
1037 putstr(tmp);
1038 putstr("\r\n");
1039#endif
1040
1041 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1042 putstr("find_inode failed for name=");
1043 putstr(working_tmp);
1044 putstr("\r\n");
1045 return 0;
1046 }
1047 }
1048 /* this is for the bare filename, directories have already been mapped */
1049 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1050 putstr("find_inode failed for name=");
1051 putstr(tmp);
1052 putstr("\r\n");
1053 return 0;
1054 }
1055 return pino;
1056
1057}
1058
1059static u32
1060jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1061{
1062 struct b_node *b;
1063 struct b_node *b2;
1064 struct jffs2_raw_dirent *jDir;
1065 struct jffs2_raw_inode *jNode;
wdenk8886a662004-04-18 19:43:36 +00001066 u8 jDirFoundType = 0;
1067 u32 jDirFoundIno = 0;
1068 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001069 char tmp[256];
1070 u32 version = 0;
1071 u32 pino;
1072 unsigned char *src;
1073
1074 /* we need to search all and return the inode with the highest version */
wdenk6b58f332003-03-14 20:47:52 +00001075 for(b = pL->dir.listHead; b; b = b->next) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001076 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1077 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001078 if (ino == jDir->ino) {
Wolfgang Denka1be4762008-05-20 16:00:29 +02001079 if (jDir->version < version) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001080 put_fl_mem(jDir, pL->readbuf);
wdenk2c9b05d2003-09-10 22:30:53 +00001081 continue;
wdenk8886a662004-04-18 19:43:36 +00001082 }
wdenkfe8c2802002-11-03 00:38:21 +00001083
wdenk8886a662004-04-18 19:43:36 +00001084 if (jDir->version == version && jDirFoundType) {
Wolfgang Denka1be4762008-05-20 16:00:29 +02001085 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001086 putstr(" ** ERROR ** ");
1087 putnstr(jDir->name, jDir->nsize);
1088 putLabeledWord(" has dup version (resolve) = ",
1089 version);
1090 }
1091
wdenk8886a662004-04-18 19:43:36 +00001092 jDirFoundType = jDir->type;
1093 jDirFoundIno = jDir->ino;
1094 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001095 version = jDir->version;
1096 }
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001097 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001098 }
1099 /* now we found the right entry again. (shoulda returned inode*) */
wdenk8886a662004-04-18 19:43:36 +00001100 if (jDirFoundType != DT_LNK)
1101 return jDirFoundIno;
wdenk6b58f332003-03-14 20:47:52 +00001102
1103 /* it's a soft link so we follow it again. */
1104 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001105 while (b2) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001106 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset,
1107 pL->readbuf);
wdenk8886a662004-04-18 19:43:36 +00001108 if (jNode->ino == jDirFoundIno) {
wdenk6c59edc2004-05-03 20:45:30 +00001109 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001110
1111#if 0
1112 putLabeledWord("\t\t dsize = ", jNode->dsize);
1113 putstr("\t\t target = ");
1114 putnstr(src, jNode->dsize);
1115 putstr("\r\n");
1116#endif
Wolfgang Denk7fb52662005-10-13 16:45:02 +02001117 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001118 tmp[jNode->dsize] = '\0';
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001119 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001120 break;
1121 }
1122 b2 = b2->next;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001123 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001124 }
1125 /* ok so the name of the new file to find is in tmp */
1126 /* if it starts with a slash it is root based else shared dirs */
1127 if (tmp[0] == '/')
1128 pino = 1;
1129 else
wdenk8886a662004-04-18 19:43:36 +00001130 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001131
1132 return jffs2_1pass_search_inode(pL, tmp, pino);
1133}
1134
1135static u32
1136jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1137{
1138 int i;
1139 char tmp[256];
1140 char working_tmp[256];
1141 char *c;
1142
1143 /* discard any leading slash */
1144 i = 0;
1145 while (fname[i] == '/')
1146 i++;
1147 strcpy(tmp, &fname[i]);
1148 working_tmp[0] = '\0';
1149 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1150 {
1151 strncpy(working_tmp, tmp, c - tmp);
1152 working_tmp[c - tmp] = '\0';
1153 for (i = 0; i < strlen(c) - 1; i++)
1154 tmp[i] = c[i + 1];
1155 tmp[i] = '\0';
1156 /* only a failure if we arent looking at top level */
wdenk6b58f332003-03-14 20:47:52 +00001157 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1158 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001159 putstr("find_inode failed for name=");
1160 putstr(working_tmp);
1161 putstr("\r\n");
1162 return 0;
1163 }
1164 }
1165
1166 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1167 putstr("find_inode failed for name=");
1168 putstr(tmp);
1169 putstr("\r\n");
1170 return 0;
1171 }
1172 /* this is for the bare filename, directories have already been mapped */
1173 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1174 putstr("find_inode failed for name=");
1175 putstr(tmp);
1176 putstr("\r\n");
1177 return 0;
1178 }
1179 return pino;
1180
1181}
1182
1183unsigned char
1184jffs2_1pass_rescan_needed(struct part_info *part)
1185{
1186 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001187 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001188 struct jffs2_unknown_node *node;
wdenk6b58f332003-03-14 20:47:52 +00001189 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001190
1191 if (part->jffs2_priv == 0){
1192 DEBUGF ("rescan: First time in use\n");
1193 return 1;
1194 }
Wolfgang Denk47f57792005-08-08 01:03:24 +02001195
wdenkfe8c2802002-11-03 00:38:21 +00001196 /* if we have no list, we need to rescan */
wdenk6b58f332003-03-14 20:47:52 +00001197 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001198 DEBUGF ("rescan: fraglist zero\n");
1199 return 1;
1200 }
1201
wdenk6b58f332003-03-14 20:47:52 +00001202 /* but suppose someone reflashed a partition at the same offset... */
1203 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001204 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001205 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1206 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001207 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk6b58f332003-03-14 20:47:52 +00001208 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1209 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001210 return 1;
1211 }
1212 b = b->next;
1213 }
1214 return 0;
1215}
wdenk6b58f332003-03-14 20:47:52 +00001216
1217#ifdef DEBUG_FRAGMENTS
1218static void
1219dump_fragments(struct b_lists *pL)
1220{
1221 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001222 struct jffs2_raw_inode ojNode;
wdenk6b58f332003-03-14 20:47:52 +00001223 struct jffs2_raw_inode *jNode;
1224
1225 putstr("\r\n\r\n******The fragment Entries******\r\n");
1226 b = pL->frag.listHead;
1227 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001228 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1229 sizeof(ojNode), &ojNode);
wdenk6b58f332003-03-14 20:47:52 +00001230 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1231 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1232 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1233 putLabeledWord("\tbuild_list: version = ", jNode->version);
1234 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1235 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1236 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1237 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1238 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1239 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1240 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1241 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk57b2d802003-06-27 21:31:46 +00001242 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk6b58f332003-03-14 20:47:52 +00001243 b = b->next;
1244 }
1245}
1246#endif
1247
1248#ifdef DEBUG_DIRENTS
1249static void
1250dump_dirents(struct b_lists *pL)
1251{
1252 struct b_node *b;
1253 struct jffs2_raw_dirent *jDir;
1254
1255 putstr("\r\n\r\n******The directory Entries******\r\n");
1256 b = pL->dir.listHead;
1257 while (b) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001258 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1259 pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +00001260 putstr("\r\n");
1261 putnstr(jDir->name, jDir->nsize);
1262 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1263 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1264 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1265 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1266 putLabeledWord("\tbuild_list: version = ", jDir->version);
1267 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1268 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1269 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1270 putLabeledWord("\tbuild_list: type = ", jDir->type);
1271 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1272 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denka1be4762008-05-20 16:00:29 +02001273 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk6b58f332003-03-14 20:47:52 +00001274 b = b->next;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001275 put_fl_mem(jDir, pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +00001276 }
1277}
1278#endif
wdenkfe8c2802002-11-03 00:38:21 +00001279
Ilya Yanokddb02692008-11-13 19:49:33 +03001280#define min_t(type, x, y) ({ \
1281 type __min1 = (x); \
1282 type __min2 = (y); \
1283 __min1 < __min2 ? __min1: __min2; })
1284
1285#define DEFAULT_EMPTY_SCAN_SIZE 4096
1286
1287static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1288{
1289 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1290 return sector_size;
1291 else
1292 return DEFAULT_EMPTY_SCAN_SIZE;
1293}
1294
wdenkfe8c2802002-11-03 00:38:21 +00001295static u32
1296jffs2_1pass_build_lists(struct part_info * part)
1297{
1298 struct b_lists *pL;
1299 struct jffs2_unknown_node *node;
Ilya Yanokddb02692008-11-13 19:49:33 +03001300 u32 nr_sectors = part->size/part->sector_size;
1301 u32 i;
wdenkfe8c2802002-11-03 00:38:21 +00001302 u32 counter4 = 0;
1303 u32 counterF = 0;
1304 u32 counterN = 0;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001305 u32 max_totlen = 0;
Ilya Yanokddb02692008-11-13 19:49:33 +03001306 u32 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
1307 char *buf;
wdenkfe8c2802002-11-03 00:38:21 +00001308
1309 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1310 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1311 /* only about 5 %. not enough to inconvenience people for. */
1312 /* lcd_off(); */
1313
1314 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001315 jffs_init_1pass_list(part);
wdenk6b58f332003-03-14 20:47:52 +00001316 pL = (struct b_lists *)part->jffs2_priv;
Ilya Yanokddb02692008-11-13 19:49:33 +03001317 buf = malloc(buf_size);
wdenk42c05472004-03-23 22:14:11 +00001318 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001319
1320 /* start at the beginning of the partition */
Ilya Yanokddb02692008-11-13 19:49:33 +03001321 for (i = 0; i < nr_sectors; i++) {
1322 uint32_t sector_ofs = i * part->sector_size;
1323 uint32_t buf_ofs = sector_ofs;
1324 uint32_t buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1325 uint32_t ofs, prevofs;
wdenk7ad5e4c2004-04-25 15:41:35 +00001326
Stuart Wood471a2f02008-06-02 16:40:08 -04001327 WATCHDOG_RESET();
Ilya Yanokddb02692008-11-13 19:49:33 +03001328 get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
Stuart Wood471a2f02008-06-02 16:40:08 -04001329
Ilya Yanokddb02692008-11-13 19:49:33 +03001330 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1331 ofs = 0;
1332
1333 /* Scan only 4KiB of 0xFF before declaring it's empty */
1334 while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1335 *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1336 ofs += 4;
1337
1338 if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1339 continue;
1340
1341 ofs += sector_ofs;
1342 prevofs = ofs - 1;
1343
1344 scan_more:
1345 while (ofs < sector_ofs + part->sector_size) {
1346 if (ofs == prevofs) {
1347 printf("offset %08x already seen, skip\n", ofs);
1348 ofs += 4;
1349 counter4++;
1350 continue;
1351 }
1352 prevofs = ofs;
1353 if (sector_ofs + part->sector_size <
1354 ofs + sizeof(*node))
1355 break;
1356 if (buf_ofs + buf_len < ofs + sizeof(*node)) {
1357 buf_len = min_t(uint32_t, buf_size, sector_ofs
1358 + part->sector_size - ofs);
1359 get_fl_mem((u32)part->offset + ofs, buf_len,
1360 buf);
1361 buf_ofs = ofs;
1362 }
1363
1364 node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
1365
1366 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1367 uint32_t inbuf_ofs;
1368 uint32_t empty_start, scan_end;
1369
1370 empty_start = ofs;
1371 ofs += 4;
1372 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1373 part->sector_size)/8,
1374 buf_len);
1375 more_empty:
1376 inbuf_ofs = ofs - buf_ofs;
1377 while (inbuf_ofs < scan_end) {
1378 if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1379 0xffffffff)
1380 goto scan_more;
1381
1382 inbuf_ofs += 4;
1383 ofs += 4;
1384 }
1385 /* Ran off end. */
1386
1387 /* See how much more there is to read in this
1388 * eraseblock...
1389 */
1390 buf_len = min_t(uint32_t, buf_size,
1391 sector_ofs +
1392 part->sector_size - ofs);
1393 if (!buf_len) {
1394 /* No more to read. Break out of main
1395 * loop without marking this range of
1396 * empty space as dirty (because it's
1397 * not)
1398 */
1399 break;
1400 }
1401 scan_end = buf_len;
1402 get_fl_mem((u32)part->offset + ofs, buf_len,
1403 buf);
1404 buf_ofs = ofs;
1405 goto more_empty;
1406 }
1407 if (node->magic != JFFS2_MAGIC_BITMASK ||
1408 !hdr_crc(node)) {
1409 ofs += 4;
1410 counter4++;
1411 continue;
1412 }
1413 if (ofs + node->totlen >
1414 sector_ofs + part->sector_size) {
1415 ofs += 4;
1416 counter4++;
1417 continue;
1418 }
wdenkfe8c2802002-11-03 00:38:21 +00001419 /* if its a fragment add it */
Ilya Yanokddb02692008-11-13 19:49:33 +03001420 switch (node->nodetype) {
1421 case JFFS2_NODETYPE_INODE:
1422 if (buf_ofs + buf_len < ofs + sizeof(struct
1423 jffs2_raw_inode)) {
1424 get_fl_mem((u32)part->offset + ofs,
1425 buf_len, buf);
1426 buf_ofs = ofs;
1427 node = (void *)buf;
1428 }
1429 if (!inode_crc((struct jffs2_raw_inode *) node))
1430 break;
1431
wdenk6b58f332003-03-14 20:47:52 +00001432 if (insert_node(&pL->frag, (u32) part->offset +
Ilya Yanokddb02692008-11-13 19:49:33 +03001433 ofs) == NULL)
wdenkfe8c2802002-11-03 00:38:21 +00001434 return 0;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001435 if (max_totlen < node->totlen)
1436 max_totlen = node->totlen;
Ilya Yanokddb02692008-11-13 19:49:33 +03001437 break;
1438 case JFFS2_NODETYPE_DIRENT:
1439 if (buf_ofs + buf_len < ofs + sizeof(struct
1440 jffs2_raw_dirent) +
1441 ((struct
1442 jffs2_raw_dirent *)
1443 node)->nsize) {
1444 get_fl_mem((u32)part->offset + ofs,
1445 buf_len, buf);
1446 buf_ofs = ofs;
1447 node = (void *)buf;
wdenk8886a662004-04-18 19:43:36 +00001448 }
Ilya Yanokddb02692008-11-13 19:49:33 +03001449
1450 if (!dirent_crc((struct jffs2_raw_dirent *)
1451 node) ||
1452 !dirent_name_crc(
1453 (struct
1454 jffs2_raw_dirent *)
1455 node))
1456 break;
wdenk7ad5e4c2004-04-25 15:41:35 +00001457 if (! (counterN%100))
wdenk42c05472004-03-23 22:14:11 +00001458 puts ("\b\b. ");
wdenk6b58f332003-03-14 20:47:52 +00001459 if (insert_node(&pL->dir, (u32) part->offset +
Ilya Yanokddb02692008-11-13 19:49:33 +03001460 ofs) == NULL)
wdenkfe8c2802002-11-03 00:38:21 +00001461 return 0;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001462 if (max_totlen < node->totlen)
1463 max_totlen = node->totlen;
wdenkfe8c2802002-11-03 00:38:21 +00001464 counterN++;
Ilya Yanokddb02692008-11-13 19:49:33 +03001465 break;
1466 case JFFS2_NODETYPE_CLEANMARKER:
wdenkfe8c2802002-11-03 00:38:21 +00001467 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk6b58f332003-03-14 20:47:52 +00001468 printf("OOPS Cleanmarker has bad size "
Wolfgang Denk509cd072008-07-14 15:06:35 +02001469 "%d != %zu\n",
1470 node->totlen,
wdenk6b58f332003-03-14 20:47:52 +00001471 sizeof(struct jffs2_unknown_node));
Ilya Yanokddb02692008-11-13 19:49:33 +03001472 break;
1473 case JFFS2_NODETYPE_PADDING:
wdenk2c9b05d2003-09-10 22:30:53 +00001474 if (node->totlen < sizeof(struct jffs2_unknown_node))
1475 printf("OOPS Padding has bad size "
Wolfgang Denk509cd072008-07-14 15:06:35 +02001476 "%d < %zu\n",
1477 node->totlen,
wdenk2c9b05d2003-09-10 22:30:53 +00001478 sizeof(struct jffs2_unknown_node));
Ilya Yanokddb02692008-11-13 19:49:33 +03001479 break;
1480 default:
Wolfgang Denk509cd072008-07-14 15:06:35 +02001481 printf("Unknown node type: %x len %d offset 0x%x\n",
1482 node->nodetype,
Ilya Yanokddb02692008-11-13 19:49:33 +03001483 node->totlen, ofs);
wdenkfe8c2802002-11-03 00:38:21 +00001484 }
Ilya Yanokddb02692008-11-13 19:49:33 +03001485 ofs += ((node->totlen + 3) & ~3);
wdenkfe8c2802002-11-03 00:38:21 +00001486 counterF++;
wdenkfe8c2802002-11-03 00:38:21 +00001487 }
wdenkfe8c2802002-11-03 00:38:21 +00001488 }
1489
Ilya Yanokddb02692008-11-13 19:49:33 +03001490 free(buf);
wdenkfe8c2802002-11-03 00:38:21 +00001491 putstr("\b\b done.\r\n"); /* close off the dots */
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001492
1493 /* We don't care if malloc failed - then each read operation will
1494 * allocate its own buffer as necessary (NAND) or will read directly
1495 * from flash (NOR).
1496 */
1497 pL->readbuf = malloc(max_totlen);
1498
wdenkfe8c2802002-11-03 00:38:21 +00001499 /* turn the lcd back on. */
1500 /* splash(); */
1501
1502#if 0
wdenk6b58f332003-03-14 20:47:52 +00001503 putLabeledWord("dir entries = ", pL->dir.listCount);
1504 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001505 putLabeledWord("+4 increments = ", counter4);
1506 putLabeledWord("+file_offset increments = ", counterF);
1507
1508#endif
1509
wdenk6b58f332003-03-14 20:47:52 +00001510#ifdef DEBUG_DIRENTS
1511 dump_dirents(pL);
1512#endif
wdenkfe8c2802002-11-03 00:38:21 +00001513
wdenk6b58f332003-03-14 20:47:52 +00001514#ifdef DEBUG_FRAGMENTS
1515 dump_fragments(pL);
1516#endif
wdenkfe8c2802002-11-03 00:38:21 +00001517
wdenkfe8c2802002-11-03 00:38:21 +00001518 /* give visual feedback that we are done scanning the flash */
1519 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1520 return 1;
1521}
1522
1523
wdenkfe8c2802002-11-03 00:38:21 +00001524static u32
1525jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1526{
1527 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001528 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001529 struct jffs2_raw_inode *jNode;
1530 int i;
1531
wdenkfe8c2802002-11-03 00:38:21 +00001532 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1533 piL->compr_info[i].num_frags = 0;
1534 piL->compr_info[i].compr_sum = 0;
1535 piL->compr_info[i].decompr_sum = 0;
1536 }
1537
wdenk6b58f332003-03-14 20:47:52 +00001538 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001539 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001540 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1541 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001542 if (jNode->compr < JFFS2_NUM_COMPR) {
1543 piL->compr_info[jNode->compr].num_frags++;
1544 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1545 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1546 }
1547 b = b->next;
1548 }
1549 return 0;
1550}
1551
1552
wdenkfe8c2802002-11-03 00:38:21 +00001553static struct b_lists *
1554jffs2_get_list(struct part_info * part, const char *who)
1555{
Wolfgang Denk47f57792005-08-08 01:03:24 +02001556 /* copy requested part_info struct pointer to global location */
1557 current_part = part;
1558
wdenkfe8c2802002-11-03 00:38:21 +00001559 if (jffs2_1pass_rescan_needed(part)) {
1560 if (!jffs2_1pass_build_lists(part)) {
1561 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1562 return NULL;
1563 }
1564 }
1565 return (struct b_lists *)part->jffs2_priv;
1566}
1567
1568
1569/* Print directory / file contents */
1570u32
1571jffs2_1pass_ls(struct part_info * part, const char *fname)
1572{
1573 struct b_lists *pl;
Wolfgang Denk79117cd2005-08-16 09:32:45 +02001574 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001575 u32 inode;
1576
wdenk6b58f332003-03-14 20:47:52 +00001577 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001578 return 0;
1579
1580 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1581 putstr("ls: Failed to scan jffs2 file structure\r\n");
1582 return 0;
1583 }
wdenk7ad5e4c2004-04-25 15:41:35 +00001584
1585
wdenkfe8c2802002-11-03 00:38:21 +00001586#if 0
1587 putLabeledWord("found file at inode = ", inode);
1588 putLabeledWord("read_inode returns = ", ret);
1589#endif
wdenk7ad5e4c2004-04-25 15:41:35 +00001590
1591 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001592}
1593
1594
wdenkfe8c2802002-11-03 00:38:21 +00001595/* Load a file from flash into memory. fname can be a full path */
1596u32
1597jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1598{
1599
1600 struct b_lists *pl;
Wolfgang Denk79117cd2005-08-16 09:32:45 +02001601 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001602 u32 inode;
1603
1604 if (! (pl = jffs2_get_list(part, "load")))
1605 return 0;
1606
1607 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1608 putstr("load: Failed to find inode\r\n");
1609 return 0;
1610 }
1611
1612 /* Resolve symlinks */
1613 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1614 putstr("load: Failed to resolve inode structure\r\n");
1615 return 0;
1616 }
1617
1618 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1619 putstr("load: Failed to read inode\r\n");
1620 return 0;
1621 }
1622
1623 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1624 (unsigned long) dest, ret);
1625 return ret;
1626}
1627
1628/* Return information about the fs on this partition */
1629u32
1630jffs2_1pass_info(struct part_info * part)
1631{
1632 struct b_jffs2_info info;
1633 struct b_lists *pl;
1634 int i;
1635
1636 if (! (pl = jffs2_get_list(part, "info")))
1637 return 0;
1638
1639 jffs2_1pass_fill_info(pl, &info);
wdenk6b58f332003-03-14 20:47:52 +00001640 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk42c05472004-03-23 22:14:11 +00001641 printf ("Compression: %s\n"
1642 "\tfrag count: %d\n"
1643 "\tcompressed sum: %d\n"
1644 "\tuncompressed sum: %d\n",
1645 compr_names[i],
1646 info.compr_info[i].num_frags,
1647 info.compr_info[i].compr_sum,
1648 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001649 }
1650 return 1;
1651}