blob: be7c1a190b51a1c9aba5001886158fafae74df39 [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
Ilya Yanok9b707622008-11-13 19:49:35 +0300141#include "summary.h"
142
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200143/* keeps pointer to currentlu processed partition */
144static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000145
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200146#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500147 defined(CONFIG_CMD_NAND) )
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +0200148#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6db39702006-04-08 19:08:06 +0200149#include <linux/mtd/nand_legacy.h>
150#else
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100151#include <nand.h>
Marian Balakowicz6db39702006-04-08 19:08:06 +0200152#endif
wdenk998eaae2004-04-18 19:43:36 +0000153/*
154 * Support for jffs2 on top of NAND-flash
155 *
156 * NAND memory isn't mapped in processor's address space,
157 * so data should be fetched from flash before
158 * being processed. This is exactly what functions declared
159 * here do.
160 *
161 */
162
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +0200163#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6db39702006-04-08 19:08:06 +0200164/* this one defined in nand_legacy.c */
165int read_jffs2_nand(size_t start, size_t len,
166 size_t * retlen, u_char * buf, int nanddev);
Marian Balakowicz6db39702006-04-08 19:08:06 +0200167#endif
wdenk998eaae2004-04-18 19:43:36 +0000168
169#define NAND_PAGE_SIZE 512
170#define NAND_PAGE_SHIFT 9
171#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
172
173#ifndef NAND_CACHE_PAGES
174#define NAND_CACHE_PAGES 16
175#endif
176#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
177
178static u8* nand_cache = NULL;
179static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000180
181static int read_nand_cached(u32 off, u32 size, u_char *buf)
182{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200183 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000184 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200185 size_t retlen;
wdenk998eaae2004-04-18 19:43:36 +0000186 int cpy_bytes;
187
188 while (bytes_read < size) {
189 if ((off + bytes_read < nand_cache_off) ||
190 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
191 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
192 if (!nand_cache) {
193 /* This memory never gets freed but 'cause
194 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000195 nand_cache = malloc(NAND_CACHE_SIZE);
196 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000197 printf("read_nand_cached: can't alloc cache size %d bytes\n",
198 NAND_CACHE_SIZE);
199 return -1;
200 }
201 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100202
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +0200203#if defined(CONFIG_NAND_LEGACY)
Marian Balakowicz6db39702006-04-08 19:08:06 +0200204 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
205 &retlen, nand_cache, id->num) < 0 ||
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200206 retlen != NAND_CACHE_SIZE) {
wdenk998eaae2004-04-18 19:43:36 +0000207 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200208 nand_cache_off, NAND_CACHE_SIZE);
wdenk998eaae2004-04-18 19:43:36 +0000209 return -1;
210 }
Marian Balakowicz6db39702006-04-08 19:08:06 +0200211#else
212 retlen = NAND_CACHE_SIZE;
213 if (nand_read(&nand_info[id->num], nand_cache_off,
214 &retlen, nand_cache) != 0 ||
215 retlen != NAND_CACHE_SIZE) {
216 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
217 nand_cache_off, NAND_CACHE_SIZE);
218 return -1;
219 }
220#endif
wdenk998eaae2004-04-18 19:43:36 +0000221 }
222 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
223 if (cpy_bytes > size - bytes_read)
224 cpy_bytes = size - bytes_read;
225 memcpy(buf + bytes_read,
226 nand_cache + off + bytes_read - nand_cache_off,
227 cpy_bytes);
228 bytes_read += cpy_bytes;
229 }
230 return bytes_read;
231}
232
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200233static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000234{
235 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
236
237 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200238 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000239 return NULL;
240 }
241 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000242 if (!ext_buf)
243 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000244 return NULL;
245 }
246
247 return buf;
248}
249
Ilya Yanok70741002008-11-13 19:49:34 +0300250static void *get_node_mem_nand(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000251{
252 struct jffs2_unknown_node node;
253 void *ret = NULL;
254
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200255 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000256 return NULL;
257
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200258 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000259 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300260 ext_buf))) {
wdenk998eaae2004-04-18 19:43:36 +0000261 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
262 off, node.magic, node.nodetype, node.totlen);
263 }
264 return ret;
265}
266
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200267static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000268{
269 free(buf);
270}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500271#endif
wdenk998eaae2004-04-18 19:43:36 +0000272
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900273#if defined(CONFIG_CMD_ONENAND)
274
275#include <linux/mtd/mtd.h>
276#include <linux/mtd/onenand.h>
277#include <onenand_uboot.h>
278
279#define ONENAND_PAGE_SIZE 2048
280#define ONENAND_PAGE_SHIFT 11
281#define ONENAND_PAGE_MASK (~(ONENAND_PAGE_SIZE-1))
282
283#ifndef ONENAND_CACHE_PAGES
284#define ONENAND_CACHE_PAGES 4
285#endif
286#define ONENAND_CACHE_SIZE (ONENAND_CACHE_PAGES*ONENAND_PAGE_SIZE)
287
288static u8* onenand_cache;
289static u32 onenand_cache_off = (u32)-1;
290
291static int read_onenand_cached(u32 off, u32 size, u_char *buf)
292{
293 u32 bytes_read = 0;
294 size_t retlen;
295 int cpy_bytes;
296
297 while (bytes_read < size) {
298 if ((off + bytes_read < onenand_cache_off) ||
299 (off + bytes_read >= onenand_cache_off + ONENAND_CACHE_SIZE)) {
300 onenand_cache_off = (off + bytes_read) & ONENAND_PAGE_MASK;
301 if (!onenand_cache) {
302 /* This memory never gets freed but 'cause
303 it's a bootloader, nobody cares */
304 onenand_cache = malloc(ONENAND_CACHE_SIZE);
305 if (!onenand_cache) {
306 printf("read_onenand_cached: can't alloc cache size %d bytes\n",
307 ONENAND_CACHE_SIZE);
308 return -1;
309 }
310 }
311
312 retlen = ONENAND_CACHE_SIZE;
313 if (onenand_read(&onenand_mtd, onenand_cache_off, retlen,
314 &retlen, onenand_cache) != 0 ||
315 retlen != ONENAND_CACHE_SIZE) {
316 printf("read_onenand_cached: error reading nand off %#x size %d bytes\n",
317 onenand_cache_off, ONENAND_CACHE_SIZE);
318 return -1;
319 }
320 }
321 cpy_bytes = onenand_cache_off + ONENAND_CACHE_SIZE - (off + bytes_read);
322 if (cpy_bytes > size - bytes_read)
323 cpy_bytes = size - bytes_read;
324 memcpy(buf + bytes_read,
325 onenand_cache + off + bytes_read - onenand_cache_off,
326 cpy_bytes);
327 bytes_read += cpy_bytes;
328 }
329 return bytes_read;
330}
331
332static void *get_fl_mem_onenand(u32 off, u32 size, void *ext_buf)
333{
334 u_char *buf = ext_buf ? (u_char *)ext_buf : (u_char *)malloc(size);
335
336 if (NULL == buf) {
337 printf("get_fl_mem_onenand: can't alloc %d bytes\n", size);
338 return NULL;
339 }
340 if (read_onenand_cached(off, size, buf) < 0) {
341 if (!ext_buf)
342 free(buf);
343 return NULL;
344 }
345
346 return buf;
347}
348
Ilya Yanok70741002008-11-13 19:49:34 +0300349static void *get_node_mem_onenand(u32 off, void *ext_buf)
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900350{
351 struct jffs2_unknown_node node;
352 void *ret = NULL;
353
354 if (NULL == get_fl_mem_onenand(off, sizeof(node), &node))
355 return NULL;
356
357 ret = get_fl_mem_onenand(off, node.magic ==
358 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300359 ext_buf);
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900360 if (!ret) {
361 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
362 off, node.magic, node.nodetype, node.totlen);
363 }
364 return ret;
365}
366
367
368static void put_fl_mem_onenand(void *buf)
369{
370 free(buf);
371}
372#endif
373
wdenk998eaae2004-04-18 19:43:36 +0000374
Jon Loeligerdd60d122007-07-09 17:56:50 -0500375#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200376/*
377 * Support for jffs2 on top of NOR-flash
378 *
379 * NOR flash memory is mapped in processor's address space,
380 * just return address.
381 */
Ilya Yanok70741002008-11-13 19:49:34 +0300382static inline void *get_fl_mem_nor(u32 off, u32 size, void *ext_buf)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200383{
384 u32 addr = off;
385 struct mtdids *id = current_part->dev->id;
386
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200387 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200388 flash_info_t *flash = &flash_info[id->num];
389
390 addr += flash->start[0];
Ilya Yanok70741002008-11-13 19:49:34 +0300391 if (ext_buf) {
392 memcpy(ext_buf, (void *)addr, size);
393 return ext_buf;
394 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200395 return (void*)addr;
396}
397
Ilya Yanok70741002008-11-13 19:49:34 +0300398static inline void *get_node_mem_nor(u32 off, void *ext_buf)
Ilya Yanok8a36d312008-11-13 19:49:33 +0300399{
Ilya Yanok70741002008-11-13 19:49:34 +0300400 struct jffs2_unknown_node *pNode;
Ilya Yanok8a36d312008-11-13 19:49:33 +0300401
Ilya Yanok70741002008-11-13 19:49:34 +0300402 /* pNode will point directly to flash - don't provide external buffer
403 and don't care about size */
404 pNode = get_fl_mem_nor(off, 0, NULL);
405 return (void *)get_fl_mem_nor(off, pNode->magic == JFFS2_MAGIC_BITMASK ?
406 pNode->totlen : sizeof(*pNode), ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200407}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500408#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200409
410
411/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200412 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200413 *
414 */
wdenk998eaae2004-04-18 19:43:36 +0000415static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
416{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200417 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200418
Jon Loeligerdd60d122007-07-09 17:56:50 -0500419#if defined(CONFIG_CMD_FLASH)
Ilya Yanok8a36d312008-11-13 19:49:33 +0300420 if (id->type == MTD_DEV_TYPE_NOR) {
Ilya Yanok70741002008-11-13 19:49:34 +0300421 return get_fl_mem_nor(off, size, ext_buf);
Ilya Yanok8a36d312008-11-13 19:49:33 +0300422 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200423#endif
424
Jon Loeligerdd60d122007-07-09 17:56:50 -0500425#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200426 if (id->type == MTD_DEV_TYPE_NAND)
427 return get_fl_mem_nand(off, size, ext_buf);
428#endif
429
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900430#if defined(CONFIG_CMD_ONENAND)
431 if (id->type == MTD_DEV_TYPE_ONENAND)
432 return get_fl_mem_onenand(off, size, ext_buf);
433#endif
434
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200435 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000436 return (void*)off;
437}
438
Ilya Yanok70741002008-11-13 19:49:34 +0300439static inline void *get_node_mem(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000440{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200441 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200442
Jon Loeligerdd60d122007-07-09 17:56:50 -0500443#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200444 if (id->type == MTD_DEV_TYPE_NOR)
Ilya Yanok70741002008-11-13 19:49:34 +0300445 return get_node_mem_nor(off, ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200446#endif
447
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200448#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500449 defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200450 if (id->type == MTD_DEV_TYPE_NAND)
Ilya Yanok70741002008-11-13 19:49:34 +0300451 return get_node_mem_nand(off, ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200452#endif
453
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900454#if defined(CONFIG_CMD_ONENAND)
455 if (id->type == MTD_DEV_TYPE_ONENAND)
Ilya Yanok70741002008-11-13 19:49:34 +0300456 return get_node_mem_onenand(off, ext_buf);
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900457#endif
458
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200459 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000460 return (void*)off;
461}
462
Ilya Yanok70741002008-11-13 19:49:34 +0300463static inline void put_fl_mem(void *buf, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000464{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200465 struct mtdids *id = current_part->dev->id;
466
Ilya Yanok70741002008-11-13 19:49:34 +0300467 /* If buf is the same as ext_buf, it was provided by the caller -
468 we shouldn't free it then. */
469 if (buf == ext_buf)
470 return;
Scott Wood2f77c7f2008-10-31 13:51:12 -0500471 switch (id->type) {
472#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
473 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200474 return put_fl_mem_nand(buf);
475#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900476#if defined(CONFIG_CMD_ONENAND)
Scott Wood2f77c7f2008-10-31 13:51:12 -0500477 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900478 return put_fl_mem_onenand(buf);
479#endif
Scott Wood2f77c7f2008-10-31 13:51:12 -0500480 }
wdenk998eaae2004-04-18 19:43:36 +0000481}
482
wdenk06d01db2003-03-14 20:47:52 +0000483/* Compression names */
484static char *compr_names[] = {
485 "NONE",
486 "ZERO",
487 "RTIME",
488 "RUBINMIPS",
489 "COPY",
490 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000491 "ZLIB",
wdenk412babe2005-05-05 09:51:44 +0000492#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000493 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000494 "LZARI",
495#endif
wdenk06d01db2003-03-14 20:47:52 +0000496};
497
wdenk06d01db2003-03-14 20:47:52 +0000498/* Memory management */
499struct mem_block {
500 u32 index;
501 struct mem_block *next;
502 struct b_node nodes[NODE_CHUNK];
503};
504
505
506static void
507free_nodes(struct b_list *list)
508{
509 while (list->listMemBase != NULL) {
510 struct mem_block *next = list->listMemBase->next;
511 free( list->listMemBase );
512 list->listMemBase = next;
513 }
514}
wdenkfe8c2802002-11-03 00:38:21 +0000515
516static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000517add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000518{
wdenk06d01db2003-03-14 20:47:52 +0000519 u32 index = 0;
520 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000521 struct b_node *b;
522
wdenk06d01db2003-03-14 20:47:52 +0000523 memBase = list->listMemBase;
524 if (memBase != NULL)
525 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000526#if 0
527 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000528 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000529#endif
530
wdenk06d01db2003-03-14 20:47:52 +0000531 if (memBase == NULL || index >= NODE_CHUNK) {
532 /* we need more space before we continue */
533 memBase = mmalloc(sizeof(struct mem_block));
534 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000535 putstr("add_node: malloc failed\n");
536 return NULL;
537 }
wdenk06d01db2003-03-14 20:47:52 +0000538 memBase->next = list->listMemBase;
539 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000540#if 0
541 putLabeledWord("add_node: alloced a new membase at ", *memBase);
542#endif
543
544 }
545 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000546 b = &memBase->nodes[index];
547 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000548
wdenk06d01db2003-03-14 20:47:52 +0000549 memBase->index = index;
550 list->listMemBase = memBase;
551 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000552 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000553}
554
wdenk06d01db2003-03-14 20:47:52 +0000555static struct b_node *
556insert_node(struct b_list *list, u32 offset)
557{
558 struct b_node *new;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200559#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000560 struct b_node *b, *prev;
561#endif
562
563 if (!(new = add_node(list))) {
564 putstr("add_node failed!\r\n");
565 return NULL;
566 }
567 new->offset = offset;
568
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200569#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000570 if (list->listTail != NULL && list->listCompare(new, list->listTail))
571 prev = list->listTail;
572 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
573 prev = list->listLast;
574 else
575 prev = NULL;
576
577 for (b = (prev ? prev->next : list->listHead);
578 b != NULL && list->listCompare(new, b);
579 prev = b, b = b->next) {
580 list->listLoops++;
581 }
582 if (b != NULL)
583 list->listLast = prev;
584
585 if (b != NULL) {
586 new->next = b;
587 if (prev != NULL)
588 prev->next = new;
589 else
590 list->listHead = new;
591 } else
592#endif
593 {
594 new->next = (struct b_node *) NULL;
595 if (list->listTail != NULL) {
596 list->listTail->next = new;
597 list->listTail = new;
598 } else {
599 list->listTail = list->listHead = new;
600 }
601 }
602
603 return new;
604}
605
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200606#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000607/* Sort data entries with the latest version last, so that if there
608 * is overlapping data the latest version will be used.
609 */
wdenk06d01db2003-03-14 20:47:52 +0000610static int compare_inodes(struct b_node *new, struct b_node *old)
611{
wdenk998eaae2004-04-18 19:43:36 +0000612 struct jffs2_raw_inode ojNew;
613 struct jffs2_raw_inode ojOld;
614 struct jffs2_raw_inode *jNew =
615 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
616 struct jffs2_raw_inode *jOld =
617 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000618
wdenk7205e402003-09-10 22:30:53 +0000619 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000620}
621
wdenk7205e402003-09-10 22:30:53 +0000622/* Sort directory entries so all entries in the same directory
623 * with the same name are grouped together, with the latest version
624 * last. This makes it easy to eliminate all but the latest version
625 * by marking the previous version dead by setting the inode to 0.
626 */
wdenk06d01db2003-03-14 20:47:52 +0000627static int compare_dirents(struct b_node *new, struct b_node *old)
628{
wdenk998eaae2004-04-18 19:43:36 +0000629 struct jffs2_raw_dirent ojNew;
630 struct jffs2_raw_dirent ojOld;
631 struct jffs2_raw_dirent *jNew =
632 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000633 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000634 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000635 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000636
wdenk7205e402003-09-10 22:30:53 +0000637 /* ascending sort by pino */
638 if (jNew->pino != jOld->pino)
639 return jNew->pino > jOld->pino;
640
641 /* pino is the same, so use ascending sort by nsize, so
642 * we don't do strncmp unless we really must.
643 */
644 if (jNew->nsize != jOld->nsize)
645 return jNew->nsize > jOld->nsize;
646
647 /* length is also the same, so use ascending sort by name
648 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200649 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk7205e402003-09-10 22:30:53 +0000650 if (cmp != 0)
651 return cmp > 0;
652
653 /* we have duplicate names in this directory, so use ascending
654 * sort by version
655 */
656 if (jNew->version > jOld->version) {
657 /* since jNew is newer, we know jOld is not valid, so
658 * mark it with inode 0 and it will not be used
659 */
660 jOld->ino = 0;
661 return 1;
662 }
wdenk42d1f032003-10-15 23:53:47 +0000663
wdenk7205e402003-09-10 22:30:53 +0000664 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000665}
666#endif
wdenkfe8c2802002-11-03 00:38:21 +0000667
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200668void
669jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000670{
wdenk06d01db2003-03-14 20:47:52 +0000671 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000672
wdenk06d01db2003-03-14 20:47:52 +0000673 if (part->jffs2_priv != NULL) {
674 pL = (struct b_lists *)part->jffs2_priv;
675 free_nodes(&pL->frag);
676 free_nodes(&pL->dir);
Ilya Yanok70741002008-11-13 19:49:34 +0300677 free(pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000678 free(pL);
679 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200680}
681
682static u32
683jffs_init_1pass_list(struct part_info *part)
684{
685 struct b_lists *pL;
686
687 jffs2_free_cache(part);
688
wdenk06d01db2003-03-14 20:47:52 +0000689 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
690 pL = (struct b_lists *)part->jffs2_priv;
691
692 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200693#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000694 pL->dir.listCompare = compare_dirents;
695 pL->frag.listCompare = compare_inodes;
696#endif
wdenkfe8c2802002-11-03 00:38:21 +0000697 }
698 return 0;
699}
700
701/* find the inode from the slashless name given a parent */
702static long
703jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
704{
705 struct b_node *b;
706 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000707 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000708 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200709 uchar *lDest;
710 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000711 long ret;
712 int i;
713 u32 counter = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200714#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000715 /* Find file size before loading any data, so fragments that
716 * start past the end of file can be ignored. A fragment
717 * that is partially in the file is loaded, so extra data may
718 * be loaded up to the next 4K boundary above the file size.
719 * This shouldn't cause trouble when loading kernel images, so
720 * we will live with it.
721 */
722 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000723 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
Ilya Yanok70741002008-11-13 19:49:34 +0300724 sizeof(struct jffs2_raw_inode), pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000725 if ((inode == jNode->ino)) {
726 /* get actual file length from the newest node */
727 if (jNode->version >= latestVersion) {
728 totalSize = jNode->isize;
729 latestVersion = jNode->version;
730 }
731 }
Ilya Yanok70741002008-11-13 19:49:34 +0300732 put_fl_mem(jNode, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000733 }
734#endif
wdenkfe8c2802002-11-03 00:38:21 +0000735
wdenk06d01db2003-03-14 20:47:52 +0000736 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300737 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset,
738 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000739 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000740#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000741 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
742 putLabeledWord("read_inode: inode = ", jNode->ino);
743 putLabeledWord("read_inode: version = ", jNode->version);
744 putLabeledWord("read_inode: isize = ", jNode->isize);
745 putLabeledWord("read_inode: offset = ", jNode->offset);
746 putLabeledWord("read_inode: csize = ", jNode->csize);
747 putLabeledWord("read_inode: dsize = ", jNode->dsize);
748 putLabeledWord("read_inode: compr = ", jNode->compr);
749 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
750 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000751#endif
wdenk7205e402003-09-10 22:30:53 +0000752
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200753#ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000754 /* get actual file length from the newest node */
755 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000756 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000757 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000758 }
wdenk7205e402003-09-10 22:30:53 +0000759#endif
wdenkfe8c2802002-11-03 00:38:21 +0000760
761 if(dest) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200762 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000763 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000764 if (jNode->offset > totalSize) {
Ilya Yanok70741002008-11-13 19:49:34 +0300765 put_fl_mem(jNode, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000766 continue;
wdenk998eaae2004-04-18 19:43:36 +0000767 }
Ilya Yanok142a80f2008-11-13 19:49:36 +0300768 if (b->datacrc == CRC_UNKNOWN)
769 b->datacrc = data_crc(jNode) ?
770 CRC_OK : CRC_BAD;
771 if (b->datacrc == CRC_BAD) {
Ilya Yanok70741002008-11-13 19:49:34 +0300772 put_fl_mem(jNode, pL->readbuf);
Ilya Yanok8a36d312008-11-13 19:49:33 +0300773 continue;
774 }
wdenk06d01db2003-03-14 20:47:52 +0000775
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200776 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000777#if 0
wdenk06d01db2003-03-14 20:47:52 +0000778 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000779 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000780#endif
781 switch (jNode->compr) {
782 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000783 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
784 break;
785 case JFFS2_COMPR_ZERO:
786 ret = 0;
787 for (i = 0; i < jNode->dsize; i++)
788 *(lDest++) = 0;
789 break;
790 case JFFS2_COMPR_RTIME:
791 ret = 0;
792 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
793 break;
794 case JFFS2_COMPR_DYNRUBIN:
795 /* this is slow but it works */
796 ret = 0;
797 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
798 break;
799 case JFFS2_COMPR_ZLIB:
800 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
801 break;
wdenk412babe2005-05-05 09:51:44 +0000802#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000803 case JFFS2_COMPR_LZO:
804 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
805 break;
wdenk412babe2005-05-05 09:51:44 +0000806 case JFFS2_COMPR_LZARI:
807 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
808 break;
wdenk07cc0992005-05-05 00:04:14 +0000809#endif
wdenkfe8c2802002-11-03 00:38:21 +0000810 default:
811 /* unknown */
812 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
Ilya Yanok70741002008-11-13 19:49:34 +0300813 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000814 return -1;
815 break;
816 }
817 }
818
wdenkfe8c2802002-11-03 00:38:21 +0000819#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000820 putLabeledWord("read_inode: totalSize = ", totalSize);
821 putLabeledWord("read_inode: compr ret = ", ret);
822#endif
823 }
wdenkfe8c2802002-11-03 00:38:21 +0000824 counter++;
Ilya Yanok70741002008-11-13 19:49:34 +0300825 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000826 }
wdenkfe8c2802002-11-03 00:38:21 +0000827
828#if 0
wdenk06d01db2003-03-14 20:47:52 +0000829 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000830#endif
wdenk06d01db2003-03-14 20:47:52 +0000831 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000832}
833
834/* find the inode from the slashless name given a parent */
835static u32
836jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
837{
838 struct b_node *b;
839 struct jffs2_raw_dirent *jDir;
840 int len;
841 u32 counter;
842 u32 version = 0;
843 u32 inode = 0;
844
845 /* name is assumed slash free */
846 len = strlen(name);
847
848 counter = 0;
849 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000850 for(b = pL->dir.listHead; b; b = b->next, counter++) {
Ilya Yanok70741002008-11-13 19:49:34 +0300851 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
852 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000853 if ((pino == jDir->pino) && (len == jDir->nsize) &&
854 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200855 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000856 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +0300857 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000858 continue;
wdenk998eaae2004-04-18 19:43:36 +0000859 }
wdenkfe8c2802002-11-03 00:38:21 +0000860
wdenk7205e402003-09-10 22:30:53 +0000861 if (jDir->version == version && inode != 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200862 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000863 putstr(" ** ERROR ** ");
864 putnstr(jDir->name, jDir->nsize);
865 putLabeledWord(" has dup version =", version);
866 }
867 inode = jDir->ino;
868 version = jDir->version;
869 }
870#if 0
871 putstr("\r\nfind_inode:p&l ->");
872 putnstr(jDir->name, jDir->nsize);
873 putstr("\r\n");
874 putLabeledWord("pino = ", jDir->pino);
875 putLabeledWord("nsize = ", jDir->nsize);
876 putLabeledWord("b = ", (u32) b);
877 putLabeledWord("counter = ", counter);
878#endif
Ilya Yanok70741002008-11-13 19:49:34 +0300879 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000880 }
881 return inode;
882}
883
wdenk180d3f72004-01-04 16:28:35 +0000884char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000885{
wdenk06d01db2003-03-14 20:47:52 +0000886 static const char *l = "xwr";
887 int mask = 1, i;
888 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000889
wdenk06d01db2003-03-14 20:47:52 +0000890 switch (mode & S_IFMT) {
891 case S_IFDIR: str[0] = 'd'; break;
892 case S_IFBLK: str[0] = 'b'; break;
893 case S_IFCHR: str[0] = 'c'; break;
894 case S_IFIFO: str[0] = 'f'; break;
895 case S_IFLNK: str[0] = 'l'; break;
896 case S_IFSOCK: str[0] = 's'; break;
897 case S_IFREG: str[0] = '-'; break;
898 default: str[0] = '?';
899 }
wdenkfe8c2802002-11-03 00:38:21 +0000900
wdenk06d01db2003-03-14 20:47:52 +0000901 for(i = 0; i < 9; i++) {
902 c = l[i%3];
903 str[9-i] = (mode & mask)?c:'-';
904 mask = mask<<1;
905 }
wdenkfe8c2802002-11-03 00:38:21 +0000906
wdenk06d01db2003-03-14 20:47:52 +0000907 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
908 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
909 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
910 str[10] = '\0';
911 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000912}
913
914static inline void dump_stat(struct stat *st, const char *name)
915{
wdenk06d01db2003-03-14 20:47:52 +0000916 char str[20];
917 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000918
wdenk06d01db2003-03-14 20:47:52 +0000919 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
920 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000921
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200922 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000923
wdenk06d01db2003-03-14 20:47:52 +0000924 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
925 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000926
927/*
wdenk06d01db2003-03-14 20:47:52 +0000928 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
929 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000930*/
931
wdenk06d01db2003-03-14 20:47:52 +0000932 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000933}
934
935static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
936{
937 char fname[256];
938 struct stat st;
939
940 if(!d || !i) return -1;
941
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200942 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000943 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000944
945 memset(&st,0,sizeof(st));
946
wdenk06d01db2003-03-14 20:47:52 +0000947 st.st_mtime = i->mtime;
948 st.st_mode = i->mode;
949 st.st_ino = i->ino;
Ilya Yanokf7384692008-11-13 19:49:31 +0300950 st.st_size = i->isize;
wdenkfe8c2802002-11-03 00:38:21 +0000951
952 dump_stat(&st, fname);
953
954 if (d->type == DT_LNK) {
955 unsigned char *src = (unsigned char *) (&i[1]);
956 putstr(" -> ");
957 putnstr(src, (int)i->dsize);
958 }
959
960 putstr("\r\n");
961
962 return 0;
963}
964
965/* list inodes with the given pino */
966static u32
967jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
968{
969 struct b_node *b;
970 struct jffs2_raw_dirent *jDir;
971
wdenk06d01db2003-03-14 20:47:52 +0000972 for (b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300973 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
974 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000975 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
976 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000977 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000978 struct jffs2_raw_inode *jNode, *i = NULL;
979 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000980
981 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000982 jNode = (struct jffs2_raw_inode *)
983 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000984 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
Ilya Yanokf7384692008-11-13 19:49:31 +0300985 i_version = jNode->version;
wdenk32877d62004-05-05 19:44:41 +0000986 if (i)
Ilya Yanok70741002008-11-13 19:49:34 +0300987 put_fl_mem(i, NULL);
wdenkcf8bc572005-05-04 23:50:54 +0000988
989 if (jDir->type == DT_LNK)
Ilya Yanok70741002008-11-13 19:49:34 +0300990 i = get_node_mem(b2->offset,
991 NULL);
wdenkcf8bc572005-05-04 23:50:54 +0000992 else
Ilya Yanok70741002008-11-13 19:49:34 +0300993 i = get_fl_mem(b2->offset,
994 sizeof(*i),
995 NULL);
wdenk32877d62004-05-05 19:44:41 +0000996 }
wdenkfe8c2802002-11-03 00:38:21 +0000997 b2 = b2->next;
998 }
999
1000 dump_inode(pL, jDir, i);
Ilya Yanok70741002008-11-13 19:49:34 +03001001 put_fl_mem(i, NULL);
wdenkfe8c2802002-11-03 00:38:21 +00001002 }
Ilya Yanok70741002008-11-13 19:49:34 +03001003 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001004 }
1005 return pino;
1006}
1007
1008static u32
1009jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
1010{
1011 int i;
1012 char tmp[256];
1013 char working_tmp[256];
1014 char *c;
1015
1016 /* discard any leading slash */
1017 i = 0;
1018 while (fname[i] == '/')
1019 i++;
1020 strcpy(tmp, &fname[i]);
1021
1022 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1023 {
1024 strncpy(working_tmp, tmp, c - tmp);
1025 working_tmp[c - tmp] = '\0';
1026#if 0
1027 putstr("search_inode: tmp = ");
1028 putstr(tmp);
1029 putstr("\r\n");
1030 putstr("search_inode: wtmp = ");
1031 putstr(working_tmp);
1032 putstr("\r\n");
1033 putstr("search_inode: c = ");
1034 putstr(c);
1035 putstr("\r\n");
1036#endif
1037 for (i = 0; i < strlen(c) - 1; i++)
1038 tmp[i] = c[i + 1];
1039 tmp[i] = '\0';
1040#if 0
1041 putstr("search_inode: post tmp = ");
1042 putstr(tmp);
1043 putstr("\r\n");
1044#endif
1045
1046 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1047 putstr("find_inode failed for name=");
1048 putstr(working_tmp);
1049 putstr("\r\n");
1050 return 0;
1051 }
1052 }
1053 /* this is for the bare filename, directories have already been mapped */
1054 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1055 putstr("find_inode failed for name=");
1056 putstr(tmp);
1057 putstr("\r\n");
1058 return 0;
1059 }
1060 return pino;
1061
1062}
1063
1064static u32
1065jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1066{
1067 struct b_node *b;
1068 struct b_node *b2;
1069 struct jffs2_raw_dirent *jDir;
1070 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +00001071 u8 jDirFoundType = 0;
1072 u32 jDirFoundIno = 0;
1073 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001074 char tmp[256];
1075 u32 version = 0;
1076 u32 pino;
1077 unsigned char *src;
1078
1079 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +00001080 for(b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +03001081 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1082 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001083 if (ino == jDir->ino) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001084 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +03001085 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +00001086 continue;
wdenk998eaae2004-04-18 19:43:36 +00001087 }
wdenkfe8c2802002-11-03 00:38:21 +00001088
wdenk998eaae2004-04-18 19:43:36 +00001089 if (jDir->version == version && jDirFoundType) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001090 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001091 putstr(" ** ERROR ** ");
1092 putnstr(jDir->name, jDir->nsize);
1093 putLabeledWord(" has dup version (resolve) = ",
1094 version);
1095 }
1096
wdenk998eaae2004-04-18 19:43:36 +00001097 jDirFoundType = jDir->type;
1098 jDirFoundIno = jDir->ino;
1099 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001100 version = jDir->version;
1101 }
Ilya Yanok70741002008-11-13 19:49:34 +03001102 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001103 }
1104 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +00001105 if (jDirFoundType != DT_LNK)
1106 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +00001107
1108 /* it's a soft link so we follow it again. */
1109 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001110 while (b2) {
Ilya Yanok70741002008-11-13 19:49:34 +03001111 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset,
1112 pL->readbuf);
wdenk998eaae2004-04-18 19:43:36 +00001113 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +00001114 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001115
1116#if 0
1117 putLabeledWord("\t\t dsize = ", jNode->dsize);
1118 putstr("\t\t target = ");
1119 putnstr(src, jNode->dsize);
1120 putstr("\r\n");
1121#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001122 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001123 tmp[jNode->dsize] = '\0';
Ilya Yanok70741002008-11-13 19:49:34 +03001124 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001125 break;
1126 }
1127 b2 = b2->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001128 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001129 }
1130 /* ok so the name of the new file to find is in tmp */
1131 /* if it starts with a slash it is root based else shared dirs */
1132 if (tmp[0] == '/')
1133 pino = 1;
1134 else
wdenk998eaae2004-04-18 19:43:36 +00001135 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001136
1137 return jffs2_1pass_search_inode(pL, tmp, pino);
1138}
1139
1140static u32
1141jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1142{
1143 int i;
1144 char tmp[256];
1145 char working_tmp[256];
1146 char *c;
1147
1148 /* discard any leading slash */
1149 i = 0;
1150 while (fname[i] == '/')
1151 i++;
1152 strcpy(tmp, &fname[i]);
1153 working_tmp[0] = '\0';
1154 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1155 {
1156 strncpy(working_tmp, tmp, c - tmp);
1157 working_tmp[c - tmp] = '\0';
1158 for (i = 0; i < strlen(c) - 1; i++)
1159 tmp[i] = c[i + 1];
1160 tmp[i] = '\0';
1161 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001162 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1163 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001164 putstr("find_inode failed for name=");
1165 putstr(working_tmp);
1166 putstr("\r\n");
1167 return 0;
1168 }
1169 }
1170
1171 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1172 putstr("find_inode failed for name=");
1173 putstr(tmp);
1174 putstr("\r\n");
1175 return 0;
1176 }
1177 /* this is for the bare filename, directories have already been mapped */
1178 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1179 putstr("find_inode failed for name=");
1180 putstr(tmp);
1181 putstr("\r\n");
1182 return 0;
1183 }
1184 return pino;
1185
1186}
1187
1188unsigned char
1189jffs2_1pass_rescan_needed(struct part_info *part)
1190{
1191 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001192 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001193 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001194 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001195
1196 if (part->jffs2_priv == 0){
1197 DEBUGF ("rescan: First time in use\n");
1198 return 1;
1199 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001200
wdenkfe8c2802002-11-03 00:38:21 +00001201 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001202 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001203 DEBUGF ("rescan: fraglist zero\n");
1204 return 1;
1205 }
1206
wdenk06d01db2003-03-14 20:47:52 +00001207 /* but suppose someone reflashed a partition at the same offset... */
1208 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001209 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001210 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1211 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001212 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001213 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1214 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001215 return 1;
1216 }
1217 b = b->next;
1218 }
1219 return 0;
1220}
1221
Ilya Yanok9b707622008-11-13 19:49:35 +03001222#define dbg_summary(...) do {} while (0);
1223/* Process the stored summary information - helper function for
1224 * jffs2_sum_scan_sumnode()
1225 */
1226
1227static int jffs2_sum_process_sum_data(struct part_info *part, uint32_t offset,
1228 struct jffs2_raw_summary *summary,
1229 struct b_lists *pL)
1230{
1231 void *sp;
1232 int i;
1233
1234 sp = summary->sum;
1235
1236 for (i = 0; i < summary->sum_num; i++) {
1237 dbg_summary("processing summary index %d\n", i);
1238
1239 switch (((struct jffs2_sum_unknown_flash *)sp)->nodetype) {
1240 case JFFS2_NODETYPE_INODE: {
1241 struct jffs2_sum_inode_flash *spi;
1242 spi = sp;
1243
1244 dbg_summary("Inode at 0x%08x-0x%08x\n",
1245 offset + spi->offset,
1246 offset + spi->offset + spi->totlen);
1247
1248 if (insert_node(&pL->frag, (u32) part->offset +
1249 offset + spi->offset) == NULL)
1250 return -1;
1251
1252 sp += JFFS2_SUMMARY_INODE_SIZE;
1253
1254 break;
1255 }
1256
1257 case JFFS2_NODETYPE_DIRENT: {
1258 struct jffs2_sum_dirent_flash *spd;
1259 spd = sp;
1260
1261 dbg_summary("Dirent at 0x%08x-0x%08x\n",
1262 offset + spd->offset,
1263 offset + spd->offset + spd->totlen);
1264
1265 if (insert_node(&pL->dir, (u32) part->offset +
1266 offset + spd->offset) == NULL)
1267 return -1;
1268
1269 sp += JFFS2_SUMMARY_DIRENT_SIZE(spd->nsize);
1270
1271 break;
1272 }
1273 default : {
1274 uint16_t nodetype =
1275 ((struct jffs2_sum_unknown_flash *)
1276 sp)->nodetype;
1277 printf("Unsupported node type %x found in "
1278 "summary!\n", nodetype);
1279 break;
1280 }
1281 }
1282 }
1283 return 0;
1284}
1285
1286/* Process the summary node - called from jffs2_scan_eraseblock() */
1287int jffs2_sum_scan_sumnode(struct part_info *part, uint32_t offset,
1288 struct jffs2_raw_summary *summary, uint32_t sumsize,
1289 struct b_lists *pL)
1290{
1291 struct jffs2_unknown_node crcnode;
1292 int ret, ofs;
1293 uint32_t crc;
1294
1295 ofs = part->sector_size - sumsize;
1296
1297 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
1298 offset, offset + ofs, sumsize);
1299
1300 /* OK, now check for node validity and CRC */
1301 crcnode.magic = JFFS2_MAGIC_BITMASK;
1302 crcnode.nodetype = JFFS2_NODETYPE_SUMMARY;
1303 crcnode.totlen = summary->totlen;
1304 crc = crc32_no_comp(0, (uchar *)&crcnode, sizeof(crcnode)-4);
1305
1306 if (summary->hdr_crc != crc) {
1307 dbg_summary("Summary node header is corrupt (bad CRC or "
1308 "no summary at all)\n");
1309 goto crc_err;
1310 }
1311
1312 if (summary->totlen != sumsize) {
1313 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
1314 goto crc_err;
1315 }
1316
1317 crc = crc32_no_comp(0, (uchar *)summary,
1318 sizeof(struct jffs2_raw_summary)-8);
1319
1320 if (summary->node_crc != crc) {
1321 dbg_summary("Summary node is corrupt (bad CRC)\n");
1322 goto crc_err;
1323 }
1324
1325 crc = crc32_no_comp(0, (uchar *)summary->sum,
1326 sumsize - sizeof(struct jffs2_raw_summary));
1327
1328 if (summary->sum_crc != crc) {
1329 dbg_summary("Summary node data is corrupt (bad CRC)\n");
1330 goto crc_err;
1331 }
1332
1333 if (summary->cln_mkr)
1334 dbg_summary("Summary : CLEANMARKER node \n");
1335
1336 ret = jffs2_sum_process_sum_data(part, offset, summary, pL);
1337 if (ret)
1338 return ret; /* real error */
1339
1340 return 1;
1341
1342crc_err:
1343 putstr("Summary node crc error, skipping summary information.\n");
1344
1345 return 0;
1346}
1347
wdenk06d01db2003-03-14 20:47:52 +00001348#ifdef DEBUG_FRAGMENTS
1349static void
1350dump_fragments(struct b_lists *pL)
1351{
1352 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001353 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001354 struct jffs2_raw_inode *jNode;
1355
1356 putstr("\r\n\r\n******The fragment Entries******\r\n");
1357 b = pL->frag.listHead;
1358 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001359 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1360 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001361 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1362 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1363 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1364 putLabeledWord("\tbuild_list: version = ", jNode->version);
1365 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1366 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1367 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1368 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1369 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1370 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1371 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1372 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001373 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001374 b = b->next;
1375 }
1376}
1377#endif
1378
1379#ifdef DEBUG_DIRENTS
1380static void
1381dump_dirents(struct b_lists *pL)
1382{
1383 struct b_node *b;
1384 struct jffs2_raw_dirent *jDir;
1385
1386 putstr("\r\n\r\n******The directory Entries******\r\n");
1387 b = pL->dir.listHead;
1388 while (b) {
Ilya Yanok70741002008-11-13 19:49:34 +03001389 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1390 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001391 putstr("\r\n");
1392 putnstr(jDir->name, jDir->nsize);
1393 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1394 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1395 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1396 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1397 putLabeledWord("\tbuild_list: version = ", jDir->version);
1398 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1399 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1400 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1401 putLabeledWord("\tbuild_list: type = ", jDir->type);
1402 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1403 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001404 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001405 b = b->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001406 put_fl_mem(jDir, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001407 }
1408}
1409#endif
1410
Ilya Yanok8a36d312008-11-13 19:49:33 +03001411#define min_t(type, x, y) ({ \
1412 type __min1 = (x); \
1413 type __min2 = (y); \
1414 __min1 < __min2 ? __min1: __min2; })
1415
1416#define DEFAULT_EMPTY_SCAN_SIZE 4096
1417
1418static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1419{
1420 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1421 return sector_size;
1422 else
1423 return DEFAULT_EMPTY_SCAN_SIZE;
1424}
1425
wdenkfe8c2802002-11-03 00:38:21 +00001426static u32
1427jffs2_1pass_build_lists(struct part_info * part)
1428{
1429 struct b_lists *pL;
1430 struct jffs2_unknown_node *node;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001431 u32 nr_sectors = part->size/part->sector_size;
1432 u32 i;
wdenkfe8c2802002-11-03 00:38:21 +00001433 u32 counter4 = 0;
1434 u32 counterF = 0;
1435 u32 counterN = 0;
Ilya Yanok70741002008-11-13 19:49:34 +03001436 u32 max_totlen = 0;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001437 u32 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
1438 char *buf;
wdenkfe8c2802002-11-03 00:38:21 +00001439
1440 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1441 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1442 /* only about 5 %. not enough to inconvenience people for. */
1443 /* lcd_off(); */
1444
1445 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001446 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001447 pL = (struct b_lists *)part->jffs2_priv;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001448 buf = malloc(buf_size);
wdenk4b9206e2004-03-23 22:14:11 +00001449 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001450
1451 /* start at the beginning of the partition */
Ilya Yanok8a36d312008-11-13 19:49:33 +03001452 for (i = 0; i < nr_sectors; i++) {
1453 uint32_t sector_ofs = i * part->sector_size;
1454 uint32_t buf_ofs = sector_ofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001455 uint32_t buf_len;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001456 uint32_t ofs, prevofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001457 struct jffs2_sum_marker *sm;
1458 void *sumptr = NULL;
1459 uint32_t sumlen;
1460 int ret;
wdenk0b8fa032004-04-25 14:37:29 +00001461
Stuart Wood86d32732008-06-02 16:40:08 -04001462 WATCHDOG_RESET();
Ilya Yanok9b707622008-11-13 19:49:35 +03001463
1464 buf_len = sizeof(*sm);
1465
1466 /* Read as much as we want into the _end_ of the preallocated
1467 * buffer
1468 */
1469 get_fl_mem(part->offset + sector_ofs + part->sector_size -
1470 buf_len, buf_len, buf + buf_size - buf_len);
1471
1472 sm = (void *)buf + buf_size - sizeof(*sm);
1473 if (sm->magic == JFFS2_SUM_MAGIC) {
1474 sumlen = part->sector_size - sm->offset;
1475 sumptr = buf + buf_size - sumlen;
1476
1477 /* Now, make sure the summary itself is available */
1478 if (sumlen > buf_size) {
1479 /* Need to kmalloc for this. */
1480 sumptr = malloc(sumlen);
1481 if (!sumptr) {
1482 putstr("Can't get memory for summary "
1483 "node!\n");
1484 return 0;
1485 }
1486 memcpy(sumptr + sumlen - buf_len, buf +
1487 buf_size - buf_len, buf_len);
1488 }
1489 if (buf_len < sumlen) {
1490 /* Need to read more so that the entire summary
1491 * node is present
1492 */
1493 get_fl_mem(part->offset + sector_ofs +
1494 part->sector_size - sumlen,
1495 sumlen - buf_len, sumptr);
1496 }
1497 }
1498
1499 if (sumptr) {
1500 ret = jffs2_sum_scan_sumnode(part, sector_ofs, sumptr,
1501 sumlen, pL);
1502
1503 if (buf_size && sumlen > buf_size)
1504 free(sumptr);
1505 if (ret < 0)
1506 return 0;
1507 if (ret)
1508 continue;
1509
1510 }
1511
1512 buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1513
Ilya Yanok8a36d312008-11-13 19:49:33 +03001514 get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
Stuart Wood86d32732008-06-02 16:40:08 -04001515
Ilya Yanok8a36d312008-11-13 19:49:33 +03001516 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1517 ofs = 0;
1518
1519 /* Scan only 4KiB of 0xFF before declaring it's empty */
1520 while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1521 *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1522 ofs += 4;
1523
1524 if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1525 continue;
1526
1527 ofs += sector_ofs;
1528 prevofs = ofs - 1;
1529
1530 scan_more:
1531 while (ofs < sector_ofs + part->sector_size) {
1532 if (ofs == prevofs) {
1533 printf("offset %08x already seen, skip\n", ofs);
1534 ofs += 4;
1535 counter4++;
1536 continue;
1537 }
1538 prevofs = ofs;
1539 if (sector_ofs + part->sector_size <
1540 ofs + sizeof(*node))
1541 break;
1542 if (buf_ofs + buf_len < ofs + sizeof(*node)) {
1543 buf_len = min_t(uint32_t, buf_size, sector_ofs
1544 + part->sector_size - ofs);
1545 get_fl_mem((u32)part->offset + ofs, buf_len,
1546 buf);
1547 buf_ofs = ofs;
1548 }
1549
1550 node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
1551
1552 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1553 uint32_t inbuf_ofs;
1554 uint32_t empty_start, scan_end;
1555
1556 empty_start = ofs;
1557 ofs += 4;
1558 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1559 part->sector_size)/8,
1560 buf_len);
1561 more_empty:
1562 inbuf_ofs = ofs - buf_ofs;
1563 while (inbuf_ofs < scan_end) {
1564 if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1565 0xffffffff)
1566 goto scan_more;
1567
1568 inbuf_ofs += 4;
1569 ofs += 4;
wdenk998eaae2004-04-18 19:43:36 +00001570 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001571 /* Ran off end. */
1572
1573 /* See how much more there is to read in this
1574 * eraseblock...
1575 */
1576 buf_len = min_t(uint32_t, buf_size,
1577 sector_ofs +
1578 part->sector_size - ofs);
1579 if (!buf_len) {
1580 /* No more to read. Break out of main
1581 * loop without marking this range of
1582 * empty space as dirty (because it's
1583 * not)
1584 */
1585 break;
1586 }
1587 scan_end = buf_len;
1588 get_fl_mem((u32)part->offset + ofs, buf_len,
1589 buf);
1590 buf_ofs = ofs;
1591 goto more_empty;
1592 }
1593 if (node->magic != JFFS2_MAGIC_BITMASK ||
1594 !hdr_crc(node)) {
1595 ofs += 4;
1596 counter4++;
1597 continue;
1598 }
1599 if (ofs + node->totlen >
1600 sector_ofs + part->sector_size) {
1601 ofs += 4;
1602 counter4++;
1603 continue;
1604 }
1605 /* if its a fragment add it */
1606 switch (node->nodetype) {
1607 case JFFS2_NODETYPE_INODE:
1608 if (buf_ofs + buf_len < ofs + sizeof(struct
1609 jffs2_raw_inode)) {
1610 get_fl_mem((u32)part->offset + ofs,
1611 buf_len, buf);
1612 buf_ofs = ofs;
1613 node = (void *)buf;
1614 }
1615 if (!inode_crc((struct jffs2_raw_inode *) node))
1616 break;
1617
1618 if (insert_node(&pL->frag, (u32) part->offset +
1619 ofs) == NULL)
1620 return 0;
Ilya Yanok70741002008-11-13 19:49:34 +03001621 if (max_totlen < node->totlen)
1622 max_totlen = node->totlen;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001623 break;
1624 case JFFS2_NODETYPE_DIRENT:
1625 if (buf_ofs + buf_len < ofs + sizeof(struct
1626 jffs2_raw_dirent) +
1627 ((struct
1628 jffs2_raw_dirent *)
1629 node)->nsize) {
1630 get_fl_mem((u32)part->offset + ofs,
1631 buf_len, buf);
1632 buf_ofs = ofs;
1633 node = (void *)buf;
1634 }
1635
1636 if (!dirent_crc((struct jffs2_raw_dirent *)
1637 node) ||
1638 !dirent_name_crc(
1639 (struct
1640 jffs2_raw_dirent *)
1641 node))
1642 break;
wdenkfc1cfcd2004-04-25 15:41:35 +00001643 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001644 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001645 if (insert_node(&pL->dir, (u32) part->offset +
Ilya Yanok8a36d312008-11-13 19:49:33 +03001646 ofs) == NULL)
wdenkfe8c2802002-11-03 00:38:21 +00001647 return 0;
Ilya Yanok70741002008-11-13 19:49:34 +03001648 if (max_totlen < node->totlen)
1649 max_totlen = node->totlen;
wdenkfe8c2802002-11-03 00:38:21 +00001650 counterN++;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001651 break;
1652 case JFFS2_NODETYPE_CLEANMARKER:
wdenkfe8c2802002-11-03 00:38:21 +00001653 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001654 printf("OOPS Cleanmarker has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001655 "%d != %zu\n",
1656 node->totlen,
wdenk06d01db2003-03-14 20:47:52 +00001657 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001658 break;
1659 case JFFS2_NODETYPE_PADDING:
wdenk7205e402003-09-10 22:30:53 +00001660 if (node->totlen < sizeof(struct jffs2_unknown_node))
1661 printf("OOPS Padding has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001662 "%d < %zu\n",
1663 node->totlen,
wdenk7205e402003-09-10 22:30:53 +00001664 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001665 break;
Ilya Yanok9b707622008-11-13 19:49:35 +03001666 case JFFS2_NODETYPE_SUMMARY:
1667 break;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001668 default:
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001669 printf("Unknown node type: %x len %d offset 0x%x\n",
1670 node->nodetype,
Ilya Yanok8a36d312008-11-13 19:49:33 +03001671 node->totlen, ofs);
wdenkfe8c2802002-11-03 00:38:21 +00001672 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001673 ofs += ((node->totlen + 3) & ~3);
wdenkfe8c2802002-11-03 00:38:21 +00001674 counterF++;
wdenkfe8c2802002-11-03 00:38:21 +00001675 }
wdenkfe8c2802002-11-03 00:38:21 +00001676 }
1677
Ilya Yanok8a36d312008-11-13 19:49:33 +03001678 free(buf);
wdenkfe8c2802002-11-03 00:38:21 +00001679 putstr("\b\b done.\r\n"); /* close off the dots */
Ilya Yanok70741002008-11-13 19:49:34 +03001680
1681 /* We don't care if malloc failed - then each read operation will
1682 * allocate its own buffer as necessary (NAND) or will read directly
1683 * from flash (NOR).
1684 */
1685 pL->readbuf = malloc(max_totlen);
1686
wdenkfe8c2802002-11-03 00:38:21 +00001687 /* turn the lcd back on. */
1688 /* splash(); */
1689
1690#if 0
wdenk06d01db2003-03-14 20:47:52 +00001691 putLabeledWord("dir entries = ", pL->dir.listCount);
1692 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001693 putLabeledWord("+4 increments = ", counter4);
1694 putLabeledWord("+file_offset increments = ", counterF);
1695
1696#endif
1697
wdenk06d01db2003-03-14 20:47:52 +00001698#ifdef DEBUG_DIRENTS
1699 dump_dirents(pL);
1700#endif
wdenkfe8c2802002-11-03 00:38:21 +00001701
wdenk06d01db2003-03-14 20:47:52 +00001702#ifdef DEBUG_FRAGMENTS
1703 dump_fragments(pL);
1704#endif
wdenkfe8c2802002-11-03 00:38:21 +00001705
wdenkfe8c2802002-11-03 00:38:21 +00001706 /* give visual feedback that we are done scanning the flash */
1707 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1708 return 1;
1709}
1710
1711
wdenkfe8c2802002-11-03 00:38:21 +00001712static u32
1713jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1714{
1715 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001716 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001717 struct jffs2_raw_inode *jNode;
1718 int i;
1719
wdenkfe8c2802002-11-03 00:38:21 +00001720 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1721 piL->compr_info[i].num_frags = 0;
1722 piL->compr_info[i].compr_sum = 0;
1723 piL->compr_info[i].decompr_sum = 0;
1724 }
1725
wdenk06d01db2003-03-14 20:47:52 +00001726 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001727 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001728 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1729 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001730 if (jNode->compr < JFFS2_NUM_COMPR) {
1731 piL->compr_info[jNode->compr].num_frags++;
1732 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1733 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1734 }
1735 b = b->next;
1736 }
1737 return 0;
1738}
1739
1740
wdenkfe8c2802002-11-03 00:38:21 +00001741static struct b_lists *
1742jffs2_get_list(struct part_info * part, const char *who)
1743{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001744 /* copy requested part_info struct pointer to global location */
1745 current_part = part;
1746
wdenkfe8c2802002-11-03 00:38:21 +00001747 if (jffs2_1pass_rescan_needed(part)) {
1748 if (!jffs2_1pass_build_lists(part)) {
1749 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1750 return NULL;
1751 }
1752 }
1753 return (struct b_lists *)part->jffs2_priv;
1754}
1755
1756
1757/* Print directory / file contents */
1758u32
1759jffs2_1pass_ls(struct part_info * part, const char *fname)
1760{
1761 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001762 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001763 u32 inode;
1764
wdenk06d01db2003-03-14 20:47:52 +00001765 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001766 return 0;
1767
1768 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1769 putstr("ls: Failed to scan jffs2 file structure\r\n");
1770 return 0;
1771 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001772
1773
wdenkfe8c2802002-11-03 00:38:21 +00001774#if 0
1775 putLabeledWord("found file at inode = ", inode);
1776 putLabeledWord("read_inode returns = ", ret);
1777#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001778
1779 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001780}
1781
1782
wdenkfe8c2802002-11-03 00:38:21 +00001783/* Load a file from flash into memory. fname can be a full path */
1784u32
1785jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1786{
1787
1788 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001789 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001790 u32 inode;
1791
1792 if (! (pl = jffs2_get_list(part, "load")))
1793 return 0;
1794
1795 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1796 putstr("load: Failed to find inode\r\n");
1797 return 0;
1798 }
1799
1800 /* Resolve symlinks */
1801 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1802 putstr("load: Failed to resolve inode structure\r\n");
1803 return 0;
1804 }
1805
1806 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1807 putstr("load: Failed to read inode\r\n");
1808 return 0;
1809 }
1810
1811 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1812 (unsigned long) dest, ret);
1813 return ret;
1814}
1815
1816/* Return information about the fs on this partition */
1817u32
1818jffs2_1pass_info(struct part_info * part)
1819{
1820 struct b_jffs2_info info;
1821 struct b_lists *pl;
1822 int i;
1823
1824 if (! (pl = jffs2_get_list(part, "info")))
1825 return 0;
1826
1827 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001828 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001829 printf ("Compression: %s\n"
1830 "\tfrag count: %d\n"
1831 "\tcompressed sum: %d\n"
1832 "\tuncompressed sum: %d\n",
1833 compr_names[i],
1834 info.compr_info[i].num_frags,
1835 info.compr_info[i].compr_sum,
1836 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001837 }
1838 return 1;
1839}