blob: 5912cde83840f1b997cdb46251286f6912f8813f [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>
Tom Rini18e86722013-12-05 14:48:38 -0500117#include <div64.h>
Tom Rini1c8fdf82016-03-27 14:48:36 -0400118#include <linux/compiler.h>
wdenkfe8c2802002-11-03 00:38:21 +0000119#include <linux/stat.h>
120#include <linux/time.h>
Simon Glass3db71102019-11-14 12:57:16 -0700121#include <u-boot/crc.h>
Stuart Wood86d32732008-06-02 16:40:08 -0400122#include <watchdog.h>
wdenkfe8c2802002-11-03 00:38:21 +0000123#include <jffs2/jffs2.h>
124#include <jffs2/jffs2_1pass.h>
Mike Frysinger7b15e2b2012-04-09 13:39:55 +0000125#include <linux/compat.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +0900126#include <linux/errno.h>
wdenkfe8c2802002-11-03 00:38:21 +0000127
128#include "jffs2_private.h"
129
wdenkfe8c2802002-11-03 00:38:21 +0000130
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200131#define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */
132#define SPIN_BLKSIZE 18 /* spin after having scanned 1<<BLKSIZE bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000133
wdenk06d01db2003-03-14 20:47:52 +0000134/* Debugging switches */
135#undef DEBUG_DIRENTS /* print directory entry list after scan */
136#undef DEBUG_FRAGMENTS /* print fragment list after scan */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200137#undef DEBUG /* enable debugging messages */
wdenk06d01db2003-03-14 20:47:52 +0000138
139
wdenkfe8c2802002-11-03 00:38:21 +0000140#ifdef DEBUG
141# define DEBUGF(fmt,args...) printf(fmt ,##args)
142#else
143# define DEBUGF(fmt,args...)
144#endif
145
Ilya Yanok9b707622008-11-13 19:49:35 +0300146#include "summary.h"
147
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200148/* keeps pointer to currentlu processed partition */
149static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000150
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200151#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500152 defined(CONFIG_CMD_NAND) )
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100153#include <nand.h>
wdenk998eaae2004-04-18 19:43:36 +0000154/*
155 * Support for jffs2 on top of NAND-flash
156 *
157 * NAND memory isn't mapped in processor's address space,
158 * so data should be fetched from flash before
159 * being processed. This is exactly what functions declared
160 * here do.
161 *
162 */
163
wdenk998eaae2004-04-18 19:43:36 +0000164#define NAND_PAGE_SIZE 512
165#define NAND_PAGE_SHIFT 9
166#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
167
168#ifndef NAND_CACHE_PAGES
169#define NAND_CACHE_PAGES 16
170#endif
171#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
172
173static u8* nand_cache = NULL;
174static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000175
176static int read_nand_cached(u32 off, u32 size, u_char *buf)
177{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200178 struct mtdids *id = current_part->dev->id;
Grygorii Strashkoeb6a5c32017-06-26 19:12:57 -0500179 struct mtd_info *mtd;
wdenk998eaae2004-04-18 19:43:36 +0000180 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200181 size_t retlen;
wdenk998eaae2004-04-18 19:43:36 +0000182 int cpy_bytes;
183
Grygorii Strashkoeb6a5c32017-06-26 19:12:57 -0500184 mtd = get_nand_dev_by_index(id->num);
185 if (!mtd)
186 return -1;
187
wdenk998eaae2004-04-18 19:43:36 +0000188 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
Marian Balakowicz6db39702006-04-08 19:08:06 +0200203 retlen = NAND_CACHE_SIZE;
Grygorii Strashkoeb6a5c32017-06-26 19:12:57 -0500204 if (nand_read(mtd, nand_cache_off,
Engling, Uwe41ba7f52017-10-10 14:20:55 +0000205 &retlen, nand_cache) < 0 ||
Marian Balakowicz6db39702006-04-08 19:08:06 +0200206 retlen != NAND_CACHE_SIZE) {
207 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
208 nand_cache_off, NAND_CACHE_SIZE);
209 return -1;
210 }
wdenk998eaae2004-04-18 19:43:36 +0000211 }
212 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
213 if (cpy_bytes > size - bytes_read)
214 cpy_bytes = size - bytes_read;
215 memcpy(buf + bytes_read,
216 nand_cache + off + bytes_read - nand_cache_off,
217 cpy_bytes);
218 bytes_read += cpy_bytes;
219 }
220 return bytes_read;
221}
222
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200223static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000224{
225 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
226
227 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200228 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000229 return NULL;
230 }
231 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000232 if (!ext_buf)
233 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000234 return NULL;
235 }
236
237 return buf;
238}
239
Ilya Yanok70741002008-11-13 19:49:34 +0300240static void *get_node_mem_nand(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000241{
242 struct jffs2_unknown_node node;
243 void *ret = NULL;
244
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200245 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000246 return NULL;
247
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200248 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000249 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300250 ext_buf))) {
wdenk998eaae2004-04-18 19:43:36 +0000251 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
252 off, node.magic, node.nodetype, node.totlen);
253 }
254 return ret;
255}
256
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200257static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000258{
259 free(buf);
260}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500261#endif
wdenk998eaae2004-04-18 19:43:36 +0000262
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900263#if defined(CONFIG_CMD_ONENAND)
264
265#include <linux/mtd/mtd.h>
266#include <linux/mtd/onenand.h>
267#include <onenand_uboot.h>
268
269#define ONENAND_PAGE_SIZE 2048
270#define ONENAND_PAGE_SHIFT 11
271#define ONENAND_PAGE_MASK (~(ONENAND_PAGE_SIZE-1))
272
273#ifndef ONENAND_CACHE_PAGES
274#define ONENAND_CACHE_PAGES 4
275#endif
276#define ONENAND_CACHE_SIZE (ONENAND_CACHE_PAGES*ONENAND_PAGE_SIZE)
277
278static u8* onenand_cache;
279static u32 onenand_cache_off = (u32)-1;
280
281static int read_onenand_cached(u32 off, u32 size, u_char *buf)
282{
283 u32 bytes_read = 0;
284 size_t retlen;
285 int cpy_bytes;
286
287 while (bytes_read < size) {
288 if ((off + bytes_read < onenand_cache_off) ||
289 (off + bytes_read >= onenand_cache_off + ONENAND_CACHE_SIZE)) {
290 onenand_cache_off = (off + bytes_read) & ONENAND_PAGE_MASK;
291 if (!onenand_cache) {
292 /* This memory never gets freed but 'cause
293 it's a bootloader, nobody cares */
294 onenand_cache = malloc(ONENAND_CACHE_SIZE);
295 if (!onenand_cache) {
296 printf("read_onenand_cached: can't alloc cache size %d bytes\n",
297 ONENAND_CACHE_SIZE);
298 return -1;
299 }
300 }
301
302 retlen = ONENAND_CACHE_SIZE;
303 if (onenand_read(&onenand_mtd, onenand_cache_off, retlen,
Engling, Uwe41ba7f52017-10-10 14:20:55 +0000304 &retlen, onenand_cache) < 0 ||
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900305 retlen != ONENAND_CACHE_SIZE) {
306 printf("read_onenand_cached: error reading nand off %#x size %d bytes\n",
307 onenand_cache_off, ONENAND_CACHE_SIZE);
308 return -1;
309 }
310 }
311 cpy_bytes = onenand_cache_off + ONENAND_CACHE_SIZE - (off + bytes_read);
312 if (cpy_bytes > size - bytes_read)
313 cpy_bytes = size - bytes_read;
314 memcpy(buf + bytes_read,
315 onenand_cache + off + bytes_read - onenand_cache_off,
316 cpy_bytes);
317 bytes_read += cpy_bytes;
318 }
319 return bytes_read;
320}
321
322static void *get_fl_mem_onenand(u32 off, u32 size, void *ext_buf)
323{
324 u_char *buf = ext_buf ? (u_char *)ext_buf : (u_char *)malloc(size);
325
326 if (NULL == buf) {
327 printf("get_fl_mem_onenand: can't alloc %d bytes\n", size);
328 return NULL;
329 }
330 if (read_onenand_cached(off, size, buf) < 0) {
331 if (!ext_buf)
332 free(buf);
333 return NULL;
334 }
335
336 return buf;
337}
338
Ilya Yanok70741002008-11-13 19:49:34 +0300339static void *get_node_mem_onenand(u32 off, void *ext_buf)
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900340{
341 struct jffs2_unknown_node node;
342 void *ret = NULL;
343
344 if (NULL == get_fl_mem_onenand(off, sizeof(node), &node))
345 return NULL;
346
347 ret = get_fl_mem_onenand(off, node.magic ==
348 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300349 ext_buf);
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900350 if (!ret) {
351 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
352 off, node.magic, node.nodetype, node.totlen);
353 }
354 return ret;
355}
356
357
358static void put_fl_mem_onenand(void *buf)
359{
360 free(buf);
361}
362#endif
363
wdenk998eaae2004-04-18 19:43:36 +0000364
Jon Loeligerdd60d122007-07-09 17:56:50 -0500365#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200366/*
367 * Support for jffs2 on top of NOR-flash
368 *
369 * NOR flash memory is mapped in processor's address space,
370 * just return address.
371 */
Ilya Yanok70741002008-11-13 19:49:34 +0300372static inline void *get_fl_mem_nor(u32 off, u32 size, void *ext_buf)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200373{
374 u32 addr = off;
375 struct mtdids *id = current_part->dev->id;
376
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200377 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200378 flash_info_t *flash = &flash_info[id->num];
379
380 addr += flash->start[0];
Ilya Yanok70741002008-11-13 19:49:34 +0300381 if (ext_buf) {
382 memcpy(ext_buf, (void *)addr, size);
383 return ext_buf;
384 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200385 return (void*)addr;
386}
387
Ilya Yanok70741002008-11-13 19:49:34 +0300388static inline void *get_node_mem_nor(u32 off, void *ext_buf)
Ilya Yanok8a36d312008-11-13 19:49:33 +0300389{
Ilya Yanok70741002008-11-13 19:49:34 +0300390 struct jffs2_unknown_node *pNode;
Ilya Yanok8a36d312008-11-13 19:49:33 +0300391
Ilya Yanok70741002008-11-13 19:49:34 +0300392 /* pNode will point directly to flash - don't provide external buffer
393 and don't care about size */
394 pNode = get_fl_mem_nor(off, 0, NULL);
395 return (void *)get_fl_mem_nor(off, pNode->magic == JFFS2_MAGIC_BITMASK ?
396 pNode->totlen : sizeof(*pNode), ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200397}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500398#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200399
400
401/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200402 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200403 *
404 */
wdenk998eaae2004-04-18 19:43:36 +0000405static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
406{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200407 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200408
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100409 switch(id->type) {
Jon Loeligerdd60d122007-07-09 17:56:50 -0500410#if defined(CONFIG_CMD_FLASH)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100411 case MTD_DEV_TYPE_NOR:
Ilya Yanok70741002008-11-13 19:49:34 +0300412 return get_fl_mem_nor(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100413 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200414#endif
Jon Loeligerdd60d122007-07-09 17:56:50 -0500415#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100416 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200417 return get_fl_mem_nand(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100418 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200419#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900420#if defined(CONFIG_CMD_ONENAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100421 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900422 return get_fl_mem_onenand(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100423 break;
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900424#endif
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100425 default:
426 printf("get_fl_mem: unknown device type, " \
427 "using raw offset!\n");
428 }
wdenk998eaae2004-04-18 19:43:36 +0000429 return (void*)off;
430}
431
Ilya Yanok70741002008-11-13 19:49:34 +0300432static inline void *get_node_mem(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000433{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200434 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200435
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100436 switch(id->type) {
Jon Loeligerdd60d122007-07-09 17:56:50 -0500437#if defined(CONFIG_CMD_FLASH)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100438 case MTD_DEV_TYPE_NOR:
Ilya Yanok70741002008-11-13 19:49:34 +0300439 return get_node_mem_nor(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100440 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200441#endif
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200442#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500443 defined(CONFIG_CMD_NAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100444 case MTD_DEV_TYPE_NAND:
Ilya Yanok70741002008-11-13 19:49:34 +0300445 return get_node_mem_nand(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100446 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200447#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900448#if defined(CONFIG_CMD_ONENAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100449 case MTD_DEV_TYPE_ONENAND:
Ilya Yanok70741002008-11-13 19:49:34 +0300450 return get_node_mem_onenand(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100451 break;
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900452#endif
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100453 default:
454 printf("get_fl_mem: unknown device type, " \
455 "using raw offset!\n");
456 }
wdenk998eaae2004-04-18 19:43:36 +0000457 return (void*)off;
458}
459
Ilya Yanok70741002008-11-13 19:49:34 +0300460static inline void put_fl_mem(void *buf, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000461{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200462 struct mtdids *id = current_part->dev->id;
463
Ilya Yanok70741002008-11-13 19:49:34 +0300464 /* If buf is the same as ext_buf, it was provided by the caller -
465 we shouldn't free it then. */
466 if (buf == ext_buf)
467 return;
Scott Wood2f77c7f2008-10-31 13:51:12 -0500468 switch (id->type) {
469#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
470 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200471 return put_fl_mem_nand(buf);
472#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900473#if defined(CONFIG_CMD_ONENAND)
Scott Wood2f77c7f2008-10-31 13:51:12 -0500474 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900475 return put_fl_mem_onenand(buf);
476#endif
Scott Wood2f77c7f2008-10-31 13:51:12 -0500477 }
wdenk998eaae2004-04-18 19:43:36 +0000478}
479
wdenk06d01db2003-03-14 20:47:52 +0000480/* Compression names */
481static char *compr_names[] = {
482 "NONE",
483 "ZERO",
484 "RTIME",
485 "RUBINMIPS",
486 "COPY",
487 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000488 "ZLIB",
Wolfgang Denkf0983372010-01-15 11:10:33 +0100489#if defined(CONFIG_JFFS2_LZO)
wdenk07cc0992005-05-05 00:04:14 +0000490 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000491#endif
wdenk06d01db2003-03-14 20:47:52 +0000492};
493
wdenk06d01db2003-03-14 20:47:52 +0000494/* Memory management */
495struct mem_block {
496 u32 index;
497 struct mem_block *next;
498 struct b_node nodes[NODE_CHUNK];
499};
500
501
502static void
503free_nodes(struct b_list *list)
504{
505 while (list->listMemBase != NULL) {
506 struct mem_block *next = list->listMemBase->next;
507 free( list->listMemBase );
508 list->listMemBase = next;
509 }
510}
wdenkfe8c2802002-11-03 00:38:21 +0000511
512static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000513add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000514{
wdenk06d01db2003-03-14 20:47:52 +0000515 u32 index = 0;
516 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000517 struct b_node *b;
518
wdenk06d01db2003-03-14 20:47:52 +0000519 memBase = list->listMemBase;
520 if (memBase != NULL)
521 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000522#if 0
523 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000524 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000525#endif
526
wdenk06d01db2003-03-14 20:47:52 +0000527 if (memBase == NULL || index >= NODE_CHUNK) {
528 /* we need more space before we continue */
529 memBase = mmalloc(sizeof(struct mem_block));
530 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000531 putstr("add_node: malloc failed\n");
532 return NULL;
533 }
wdenk06d01db2003-03-14 20:47:52 +0000534 memBase->next = list->listMemBase;
535 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000536#if 0
537 putLabeledWord("add_node: alloced a new membase at ", *memBase);
538#endif
539
540 }
541 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000542 b = &memBase->nodes[index];
543 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000544
wdenk06d01db2003-03-14 20:47:52 +0000545 memBase->index = index;
546 list->listMemBase = memBase;
547 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000548 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000549}
550
wdenk06d01db2003-03-14 20:47:52 +0000551static struct b_node *
552insert_node(struct b_list *list, u32 offset)
553{
554 struct b_node *new;
wdenk06d01db2003-03-14 20:47:52 +0000555
556 if (!(new = add_node(list))) {
557 putstr("add_node failed!\r\n");
558 return NULL;
559 }
560 new->offset = offset;
Mark Tomlinson10d3ac32015-07-01 16:38:29 +1200561 new->next = NULL;
wdenk06d01db2003-03-14 20:47:52 +0000562
Mark Tomlinson10d3ac32015-07-01 16:38:29 +1200563 if (list->listTail != NULL)
564 list->listTail->next = new;
wdenk06d01db2003-03-14 20:47:52 +0000565 else
Mark Tomlinson10d3ac32015-07-01 16:38:29 +1200566 list->listHead = new;
567 list->listTail = new;
wdenk06d01db2003-03-14 20:47:52 +0000568
569 return new;
570}
571
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200572#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000573/* Sort data entries with the latest version last, so that if there
574 * is overlapping data the latest version will be used.
575 */
wdenk06d01db2003-03-14 20:47:52 +0000576static int compare_inodes(struct b_node *new, struct b_node *old)
577{
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200578 /*
579 * Only read in the version info from flash, not the entire inode.
580 * This can make a big difference to speed if flash is slow.
581 */
582 u32 new_version;
583 u32 old_version;
584 get_fl_mem(new->offset + offsetof(struct jffs2_raw_inode, version),
585 sizeof(new_version), &new_version);
586 get_fl_mem(old->offset + offsetof(struct jffs2_raw_inode, version),
587 sizeof(old_version), &old_version);
wdenk06d01db2003-03-14 20:47:52 +0000588
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200589 return new_version > old_version;
wdenk06d01db2003-03-14 20:47:52 +0000590}
591
wdenk7205e402003-09-10 22:30:53 +0000592/* Sort directory entries so all entries in the same directory
593 * with the same name are grouped together, with the latest version
594 * last. This makes it easy to eliminate all but the latest version
595 * by marking the previous version dead by setting the inode to 0.
596 */
wdenk06d01db2003-03-14 20:47:52 +0000597static int compare_dirents(struct b_node *new, struct b_node *old)
598{
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200599 /*
600 * Using NULL as the buffer for NOR flash prevents the entire node
601 * being read. This makes most comparisons much quicker as only one
602 * or two entries from the node will be used most of the time.
603 */
604 struct jffs2_raw_dirent *jNew = get_node_mem(new->offset, NULL);
605 struct jffs2_raw_dirent *jOld = get_node_mem(old->offset, NULL);
wdenk7205e402003-09-10 22:30:53 +0000606 int cmp;
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200607 int ret;
wdenk06d01db2003-03-14 20:47:52 +0000608
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200609 if (jNew->pino != jOld->pino) {
610 /* ascending sort by pino */
611 ret = jNew->pino > jOld->pino;
612 } else if (jNew->nsize != jOld->nsize) {
613 /*
614 * pino is the same, so use ascending sort by nsize,
615 * so we don't do strncmp unless we really must.
wdenk7205e402003-09-10 22:30:53 +0000616 */
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200617 ret = jNew->nsize > jOld->nsize;
618 } else {
619 /*
620 * length is also the same, so use ascending sort by name
621 */
622 cmp = strncmp((char *)jNew->name, (char *)jOld->name,
623 jNew->nsize);
624 if (cmp != 0) {
625 ret = cmp > 0;
626 } else {
627 /*
628 * we have duplicate names in this directory,
629 * so use ascending sort by version
630 */
631 ret = jNew->version > jOld->version;
632 }
wdenk7205e402003-09-10 22:30:53 +0000633 }
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200634 put_fl_mem(jNew, NULL);
635 put_fl_mem(jOld, NULL);
wdenk42d1f032003-10-15 23:53:47 +0000636
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200637 return ret;
wdenk06d01db2003-03-14 20:47:52 +0000638}
639#endif
wdenkfe8c2802002-11-03 00:38:21 +0000640
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200641void
642jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000643{
wdenk06d01db2003-03-14 20:47:52 +0000644 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000645
wdenk06d01db2003-03-14 20:47:52 +0000646 if (part->jffs2_priv != NULL) {
647 pL = (struct b_lists *)part->jffs2_priv;
648 free_nodes(&pL->frag);
649 free_nodes(&pL->dir);
Ilya Yanok70741002008-11-13 19:49:34 +0300650 free(pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000651 free(pL);
652 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200653}
654
655static u32
656jffs_init_1pass_list(struct part_info *part)
657{
658 struct b_lists *pL;
659
660 jffs2_free_cache(part);
661
wdenk06d01db2003-03-14 20:47:52 +0000662 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
663 pL = (struct b_lists *)part->jffs2_priv;
664
665 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200666#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000667 pL->dir.listCompare = compare_dirents;
668 pL->frag.listCompare = compare_inodes;
669#endif
wdenkfe8c2802002-11-03 00:38:21 +0000670 }
671 return 0;
672}
673
674/* find the inode from the slashless name given a parent */
675static long
676jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
677{
678 struct b_node *b;
679 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000680 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000681 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200682 uchar *lDest;
683 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000684 int i;
685 u32 counter = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200686#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000687 /* Find file size before loading any data, so fragments that
688 * start past the end of file can be ignored. A fragment
689 * that is partially in the file is loaded, so extra data may
690 * be loaded up to the next 4K boundary above the file size.
691 * This shouldn't cause trouble when loading kernel images, so
692 * we will live with it.
693 */
694 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000695 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
Ilya Yanok70741002008-11-13 19:49:34 +0300696 sizeof(struct jffs2_raw_inode), pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000697 if ((inode == jNode->ino)) {
698 /* get actual file length from the newest node */
699 if (jNode->version >= latestVersion) {
700 totalSize = jNode->isize;
701 latestVersion = jNode->version;
702 }
703 }
Ilya Yanok70741002008-11-13 19:49:34 +0300704 put_fl_mem(jNode, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000705 }
Mark Tomlinson3799b3f2015-07-01 16:38:22 +1200706 /*
707 * If no destination is provided, we are done.
708 * Just return the total size.
709 */
710 if (!dest)
711 return totalSize;
wdenk7205e402003-09-10 22:30:53 +0000712#endif
wdenkfe8c2802002-11-03 00:38:21 +0000713
wdenk06d01db2003-03-14 20:47:52 +0000714 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +1200715 /*
716 * Copy just the node and not the data at this point,
717 * since we don't yet know if we need this data.
718 */
719 jNode = (struct jffs2_raw_inode *)get_fl_mem(b->offset,
720 sizeof(struct jffs2_raw_inode),
721 pL->readbuf);
Jeroen Hofstee46f46fd2014-06-11 00:40:25 +0200722 if (inode == jNode->ino) {
wdenk06d01db2003-03-14 20:47:52 +0000723#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000724 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
725 putLabeledWord("read_inode: inode = ", jNode->ino);
726 putLabeledWord("read_inode: version = ", jNode->version);
727 putLabeledWord("read_inode: isize = ", jNode->isize);
728 putLabeledWord("read_inode: offset = ", jNode->offset);
729 putLabeledWord("read_inode: csize = ", jNode->csize);
730 putLabeledWord("read_inode: dsize = ", jNode->dsize);
731 putLabeledWord("read_inode: compr = ", jNode->compr);
732 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
733 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000734#endif
wdenk7205e402003-09-10 22:30:53 +0000735
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200736#ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000737 /* get actual file length from the newest node */
738 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000739 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000740 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000741 }
wdenk7205e402003-09-10 22:30:53 +0000742#endif
wdenkfe8c2802002-11-03 00:38:21 +0000743
744 if(dest) {
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +1200745 /*
746 * Now that the inode has been checked,
747 * read the entire inode, including data.
748 */
749 put_fl_mem(jNode, pL->readbuf);
750 jNode = (struct jffs2_raw_inode *)
751 get_node_mem(b->offset, pL->readbuf);
752 src = ((uchar *)jNode) +
753 sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000754 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000755 if (jNode->offset > totalSize) {
Ilya Yanok70741002008-11-13 19:49:34 +0300756 put_fl_mem(jNode, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000757 continue;
wdenk998eaae2004-04-18 19:43:36 +0000758 }
Ilya Yanok142a80f2008-11-13 19:49:36 +0300759 if (b->datacrc == CRC_UNKNOWN)
760 b->datacrc = data_crc(jNode) ?
761 CRC_OK : CRC_BAD;
762 if (b->datacrc == CRC_BAD) {
Ilya Yanok70741002008-11-13 19:49:34 +0300763 put_fl_mem(jNode, pL->readbuf);
Ilya Yanok8a36d312008-11-13 19:49:33 +0300764 continue;
765 }
wdenk06d01db2003-03-14 20:47:52 +0000766
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200767 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000768#if 0
wdenk06d01db2003-03-14 20:47:52 +0000769 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000770 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000771#endif
772 switch (jNode->compr) {
773 case JFFS2_COMPR_NONE:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200774 ldr_memcpy(lDest, src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000775 break;
776 case JFFS2_COMPR_ZERO:
wdenkfe8c2802002-11-03 00:38:21 +0000777 for (i = 0; i < jNode->dsize; i++)
778 *(lDest++) = 0;
779 break;
780 case JFFS2_COMPR_RTIME:
wdenkfe8c2802002-11-03 00:38:21 +0000781 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
782 break;
783 case JFFS2_COMPR_DYNRUBIN:
784 /* this is slow but it works */
wdenkfe8c2802002-11-03 00:38:21 +0000785 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
786 break;
787 case JFFS2_COMPR_ZLIB:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200788 zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000789 break;
Wolfgang Denkf0983372010-01-15 11:10:33 +0100790#if defined(CONFIG_JFFS2_LZO)
wdenk07cc0992005-05-05 00:04:14 +0000791 case JFFS2_COMPR_LZO:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200792 lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenk07cc0992005-05-05 00:04:14 +0000793 break;
794#endif
wdenkfe8c2802002-11-03 00:38:21 +0000795 default:
796 /* unknown */
Loïc Minier6052cba2011-02-03 22:04:26 +0100797 putLabeledWord("UNKNOWN COMPRESSION METHOD = ", jNode->compr);
Ilya Yanok70741002008-11-13 19:49:34 +0300798 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000799 return -1;
800 break;
801 }
802 }
803
wdenkfe8c2802002-11-03 00:38:21 +0000804#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000805 putLabeledWord("read_inode: totalSize = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000806#endif
807 }
wdenkfe8c2802002-11-03 00:38:21 +0000808 counter++;
Ilya Yanok70741002008-11-13 19:49:34 +0300809 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000810 }
wdenkfe8c2802002-11-03 00:38:21 +0000811
812#if 0
wdenk06d01db2003-03-14 20:47:52 +0000813 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000814#endif
wdenk06d01db2003-03-14 20:47:52 +0000815 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000816}
817
818/* find the inode from the slashless name given a parent */
819static u32
820jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
821{
822 struct b_node *b;
823 struct jffs2_raw_dirent *jDir;
824 int len;
825 u32 counter;
826 u32 version = 0;
827 u32 inode = 0;
828
829 /* name is assumed slash free */
830 len = strlen(name);
831
832 counter = 0;
833 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000834 for(b = pL->dir.listHead; b; b = b->next, counter++) {
Ilya Yanok70741002008-11-13 19:49:34 +0300835 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
836 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000837 if ((pino == jDir->pino) && (len == jDir->nsize) &&
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200838 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000839 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +0300840 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000841 continue;
wdenk998eaae2004-04-18 19:43:36 +0000842 }
wdenkfe8c2802002-11-03 00:38:21 +0000843
wdenk7205e402003-09-10 22:30:53 +0000844 if (jDir->version == version && inode != 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200845 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000846 putstr(" ** ERROR ** ");
847 putnstr(jDir->name, jDir->nsize);
848 putLabeledWord(" has dup version =", version);
849 }
850 inode = jDir->ino;
851 version = jDir->version;
852 }
853#if 0
854 putstr("\r\nfind_inode:p&l ->");
855 putnstr(jDir->name, jDir->nsize);
856 putstr("\r\n");
857 putLabeledWord("pino = ", jDir->pino);
858 putLabeledWord("nsize = ", jDir->nsize);
859 putLabeledWord("b = ", (u32) b);
860 putLabeledWord("counter = ", counter);
861#endif
Ilya Yanok70741002008-11-13 19:49:34 +0300862 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000863 }
864 return inode;
865}
866
wdenk180d3f72004-01-04 16:28:35 +0000867char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000868{
wdenk06d01db2003-03-14 20:47:52 +0000869 static const char *l = "xwr";
870 int mask = 1, i;
871 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000872
wdenk06d01db2003-03-14 20:47:52 +0000873 switch (mode & S_IFMT) {
874 case S_IFDIR: str[0] = 'd'; break;
875 case S_IFBLK: str[0] = 'b'; break;
876 case S_IFCHR: str[0] = 'c'; break;
877 case S_IFIFO: str[0] = 'f'; break;
878 case S_IFLNK: str[0] = 'l'; break;
879 case S_IFSOCK: str[0] = 's'; break;
880 case S_IFREG: str[0] = '-'; break;
881 default: str[0] = '?';
882 }
wdenkfe8c2802002-11-03 00:38:21 +0000883
wdenk06d01db2003-03-14 20:47:52 +0000884 for(i = 0; i < 9; i++) {
885 c = l[i%3];
886 str[9-i] = (mode & mask)?c:'-';
887 mask = mask<<1;
888 }
wdenkfe8c2802002-11-03 00:38:21 +0000889
wdenk06d01db2003-03-14 20:47:52 +0000890 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
891 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
892 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
893 str[10] = '\0';
894 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000895}
896
897static inline void dump_stat(struct stat *st, const char *name)
898{
wdenk06d01db2003-03-14 20:47:52 +0000899 char str[20];
900 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000901
wdenk06d01db2003-03-14 20:47:52 +0000902 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
903 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000904
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200905 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000906
wdenk06d01db2003-03-14 20:47:52 +0000907 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
908 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000909
910/*
wdenk06d01db2003-03-14 20:47:52 +0000911 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
912 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000913*/
914
wdenk06d01db2003-03-14 20:47:52 +0000915 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000916}
917
918static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
919{
920 char fname[256];
921 struct stat st;
922
923 if(!d || !i) return -1;
924
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200925 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000926 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000927
928 memset(&st,0,sizeof(st));
929
wdenk06d01db2003-03-14 20:47:52 +0000930 st.st_mtime = i->mtime;
931 st.st_mode = i->mode;
932 st.st_ino = i->ino;
Ilya Yanokf7384692008-11-13 19:49:31 +0300933 st.st_size = i->isize;
wdenkfe8c2802002-11-03 00:38:21 +0000934
935 dump_stat(&st, fname);
936
937 if (d->type == DT_LNK) {
938 unsigned char *src = (unsigned char *) (&i[1]);
939 putstr(" -> ");
940 putnstr(src, (int)i->dsize);
941 }
942
943 putstr("\r\n");
944
945 return 0;
946}
947
948/* list inodes with the given pino */
949static u32
950jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
951{
952 struct b_node *b;
953 struct jffs2_raw_dirent *jDir;
954
wdenk06d01db2003-03-14 20:47:52 +0000955 for (b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300956 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
957 pL->readbuf);
Mark Tomlinson891224a2015-07-01 16:38:24 +1200958 if (pino == jDir->pino) {
wdenk06d01db2003-03-14 20:47:52 +0000959 u32 i_version = 0;
960 struct jffs2_raw_inode *jNode, *i = NULL;
Mark Tomlinson891224a2015-07-01 16:38:24 +1200961 struct b_node *b2;
wdenkfe8c2802002-11-03 00:38:21 +0000962
Mark Tomlinson891224a2015-07-01 16:38:24 +1200963#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
964 /* Check for more recent versions of this file */
965 int match;
966 do {
967 struct b_node *next = b->next;
968 struct jffs2_raw_dirent *jDirNext;
969 if (!next)
970 break;
971 jDirNext = (struct jffs2_raw_dirent *)
972 get_node_mem(next->offset, NULL);
973 match = jDirNext->pino == jDir->pino &&
974 jDirNext->nsize == jDir->nsize &&
975 strncmp((char *)jDirNext->name,
976 (char *)jDir->name,
977 jDir->nsize) == 0;
978 if (match) {
979 /* Use next. It is more recent */
980 b = next;
981 /* Update buffer with the new info */
982 *jDir = *jDirNext;
983 }
984 put_fl_mem(jDirNext, NULL);
985 } while (match);
986#endif
987 if (jDir->ino == 0) {
988 /* Deleted file */
989 put_fl_mem(jDir, pL->readbuf);
990 continue;
991 }
992
993 for (b2 = pL->frag.listHead; b2; b2 = b2->next) {
wdenk998eaae2004-04-18 19:43:36 +0000994 jNode = (struct jffs2_raw_inode *)
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +1200995 get_fl_mem(b2->offset, sizeof(*jNode),
996 NULL);
997 if (jNode->ino == jDir->ino &&
998 jNode->version >= i_version) {
Ilya Yanokf7384692008-11-13 19:49:31 +0300999 i_version = jNode->version;
wdenk32877d62004-05-05 19:44:41 +00001000 if (i)
Ilya Yanok70741002008-11-13 19:49:34 +03001001 put_fl_mem(i, NULL);
wdenkcf8bc572005-05-04 23:50:54 +00001002
1003 if (jDir->type == DT_LNK)
Ilya Yanok70741002008-11-13 19:49:34 +03001004 i = get_node_mem(b2->offset,
1005 NULL);
wdenkcf8bc572005-05-04 23:50:54 +00001006 else
Ilya Yanok70741002008-11-13 19:49:34 +03001007 i = get_fl_mem(b2->offset,
1008 sizeof(*i),
1009 NULL);
wdenk32877d62004-05-05 19:44:41 +00001010 }
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +12001011 put_fl_mem(jNode, NULL);
wdenkfe8c2802002-11-03 00:38:21 +00001012 }
1013
1014 dump_inode(pL, jDir, i);
Ilya Yanok70741002008-11-13 19:49:34 +03001015 put_fl_mem(i, NULL);
wdenkfe8c2802002-11-03 00:38:21 +00001016 }
Ilya Yanok70741002008-11-13 19:49:34 +03001017 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001018 }
1019 return pino;
1020}
1021
1022static u32
1023jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
1024{
1025 int i;
1026 char tmp[256];
1027 char working_tmp[256];
1028 char *c;
1029
1030 /* discard any leading slash */
1031 i = 0;
1032 while (fname[i] == '/')
1033 i++;
1034 strcpy(tmp, &fname[i]);
1035
1036 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1037 {
1038 strncpy(working_tmp, tmp, c - tmp);
1039 working_tmp[c - tmp] = '\0';
1040#if 0
1041 putstr("search_inode: tmp = ");
1042 putstr(tmp);
1043 putstr("\r\n");
1044 putstr("search_inode: wtmp = ");
1045 putstr(working_tmp);
1046 putstr("\r\n");
1047 putstr("search_inode: c = ");
1048 putstr(c);
1049 putstr("\r\n");
1050#endif
1051 for (i = 0; i < strlen(c) - 1; i++)
1052 tmp[i] = c[i + 1];
1053 tmp[i] = '\0';
1054#if 0
1055 putstr("search_inode: post tmp = ");
1056 putstr(tmp);
1057 putstr("\r\n");
1058#endif
1059
1060 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1061 putstr("find_inode failed for name=");
1062 putstr(working_tmp);
1063 putstr("\r\n");
1064 return 0;
1065 }
1066 }
1067 /* this is for the bare filename, directories have already been mapped */
1068 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1069 putstr("find_inode failed for name=");
1070 putstr(tmp);
1071 putstr("\r\n");
1072 return 0;
1073 }
1074 return pino;
1075
1076}
1077
1078static u32
1079jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1080{
1081 struct b_node *b;
1082 struct b_node *b2;
1083 struct jffs2_raw_dirent *jDir;
1084 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +00001085 u8 jDirFoundType = 0;
1086 u32 jDirFoundIno = 0;
1087 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001088 char tmp[256];
1089 u32 version = 0;
1090 u32 pino;
1091 unsigned char *src;
1092
1093 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +00001094 for(b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +03001095 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1096 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001097 if (ino == jDir->ino) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001098 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +03001099 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +00001100 continue;
wdenk998eaae2004-04-18 19:43:36 +00001101 }
wdenkfe8c2802002-11-03 00:38:21 +00001102
wdenk998eaae2004-04-18 19:43:36 +00001103 if (jDir->version == version && jDirFoundType) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001104 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001105 putstr(" ** ERROR ** ");
1106 putnstr(jDir->name, jDir->nsize);
1107 putLabeledWord(" has dup version (resolve) = ",
1108 version);
1109 }
1110
wdenk998eaae2004-04-18 19:43:36 +00001111 jDirFoundType = jDir->type;
1112 jDirFoundIno = jDir->ino;
1113 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001114 version = jDir->version;
1115 }
Ilya Yanok70741002008-11-13 19:49:34 +03001116 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001117 }
1118 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +00001119 if (jDirFoundType != DT_LNK)
1120 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +00001121
1122 /* it's a soft link so we follow it again. */
1123 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001124 while (b2) {
Ilya Yanok70741002008-11-13 19:49:34 +03001125 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset,
1126 pL->readbuf);
wdenk998eaae2004-04-18 19:43:36 +00001127 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +00001128 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001129
1130#if 0
1131 putLabeledWord("\t\t dsize = ", jNode->dsize);
1132 putstr("\t\t target = ");
1133 putnstr(src, jNode->dsize);
1134 putstr("\r\n");
1135#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001136 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001137 tmp[jNode->dsize] = '\0';
Ilya Yanok70741002008-11-13 19:49:34 +03001138 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001139 break;
1140 }
1141 b2 = b2->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001142 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001143 }
1144 /* ok so the name of the new file to find is in tmp */
1145 /* if it starts with a slash it is root based else shared dirs */
1146 if (tmp[0] == '/')
1147 pino = 1;
1148 else
wdenk998eaae2004-04-18 19:43:36 +00001149 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001150
1151 return jffs2_1pass_search_inode(pL, tmp, pino);
1152}
1153
1154static u32
1155jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1156{
1157 int i;
1158 char tmp[256];
1159 char working_tmp[256];
1160 char *c;
1161
1162 /* discard any leading slash */
1163 i = 0;
1164 while (fname[i] == '/')
1165 i++;
1166 strcpy(tmp, &fname[i]);
1167 working_tmp[0] = '\0';
1168 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1169 {
1170 strncpy(working_tmp, tmp, c - tmp);
1171 working_tmp[c - tmp] = '\0';
1172 for (i = 0; i < strlen(c) - 1; i++)
1173 tmp[i] = c[i + 1];
1174 tmp[i] = '\0';
1175 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001176 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1177 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001178 putstr("find_inode failed for name=");
1179 putstr(working_tmp);
1180 putstr("\r\n");
1181 return 0;
1182 }
1183 }
1184
1185 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1186 putstr("find_inode failed for name=");
1187 putstr(tmp);
1188 putstr("\r\n");
1189 return 0;
1190 }
1191 /* this is for the bare filename, directories have already been mapped */
1192 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1193 putstr("find_inode failed for name=");
1194 putstr(tmp);
1195 putstr("\r\n");
1196 return 0;
1197 }
1198 return pino;
1199
1200}
1201
1202unsigned char
1203jffs2_1pass_rescan_needed(struct part_info *part)
1204{
1205 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001206 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001207 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001208 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001209
1210 if (part->jffs2_priv == 0){
1211 DEBUGF ("rescan: First time in use\n");
1212 return 1;
1213 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001214
wdenkfe8c2802002-11-03 00:38:21 +00001215 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001216 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001217 DEBUGF ("rescan: fraglist zero\n");
1218 return 1;
1219 }
1220
wdenk06d01db2003-03-14 20:47:52 +00001221 /* but suppose someone reflashed a partition at the same offset... */
1222 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001223 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001224 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1225 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001226 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001227 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1228 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001229 return 1;
1230 }
1231 b = b->next;
1232 }
1233 return 0;
1234}
1235
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001236#ifdef CONFIG_JFFS2_SUMMARY
1237static u32 sum_get_unaligned32(u32 *ptr)
1238{
1239 u32 val;
1240 u8 *p = (u8 *)ptr;
1241
1242 val = *p | (*(p + 1) << 8) | (*(p + 2) << 16) | (*(p + 3) << 24);
1243
1244 return __le32_to_cpu(val);
1245}
1246
1247static u16 sum_get_unaligned16(u16 *ptr)
1248{
1249 u16 val;
1250 u8 *p = (u8 *)ptr;
1251
1252 val = *p | (*(p + 1) << 8);
1253
1254 return __le16_to_cpu(val);
1255}
1256
Ilya Yanok9b707622008-11-13 19:49:35 +03001257#define dbg_summary(...) do {} while (0);
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001258/*
1259 * Process the stored summary information - helper function for
Ilya Yanok9b707622008-11-13 19:49:35 +03001260 * jffs2_sum_scan_sumnode()
1261 */
1262
1263static int jffs2_sum_process_sum_data(struct part_info *part, uint32_t offset,
1264 struct jffs2_raw_summary *summary,
1265 struct b_lists *pL)
1266{
1267 void *sp;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001268 int i, pass;
1269 void *ret;
Ilya Yanok9b707622008-11-13 19:49:35 +03001270
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001271 for (pass = 0; pass < 2; pass++) {
1272 sp = summary->sum;
Ilya Yanok9b707622008-11-13 19:49:35 +03001273
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001274 for (i = 0; i < summary->sum_num; i++) {
1275 struct jffs2_sum_unknown_flash *spu = sp;
1276 dbg_summary("processing summary index %d\n", i);
Ilya Yanok9b707622008-11-13 19:49:35 +03001277
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001278 switch (sum_get_unaligned16(&spu->nodetype)) {
1279 case JFFS2_NODETYPE_INODE: {
Ilya Yanok9b707622008-11-13 19:49:35 +03001280 struct jffs2_sum_inode_flash *spi;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001281 if (pass) {
1282 spi = sp;
Ilya Yanok9b707622008-11-13 19:49:35 +03001283
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001284 ret = insert_node(&pL->frag,
1285 (u32)part->offset +
1286 offset +
1287 sum_get_unaligned32(
1288 &spi->offset));
1289 if (ret == NULL)
1290 return -1;
1291 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001292
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001293 sp += JFFS2_SUMMARY_INODE_SIZE;
Ilya Yanok9b707622008-11-13 19:49:35 +03001294
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001295 break;
1296 }
1297 case JFFS2_NODETYPE_DIRENT: {
1298 struct jffs2_sum_dirent_flash *spd;
1299 spd = sp;
1300 if (pass) {
1301 ret = insert_node(&pL->dir,
1302 (u32) part->offset +
1303 offset +
1304 sum_get_unaligned32(
1305 &spd->offset));
1306 if (ret == NULL)
1307 return -1;
1308 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001309
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001310 sp += JFFS2_SUMMARY_DIRENT_SIZE(
1311 spd->nsize);
Ilya Yanok9b707622008-11-13 19:49:35 +03001312
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001313 break;
1314 }
1315 default : {
1316 uint16_t nodetype = sum_get_unaligned16(
1317 &spu->nodetype);
1318 printf("Unsupported node type %x found"
1319 " in summary!\n",
1320 nodetype);
1321 if ((nodetype & JFFS2_COMPAT_MASK) ==
1322 JFFS2_FEATURE_INCOMPAT)
1323 return -EIO;
1324 return -EBADMSG;
1325 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001326 }
1327 }
1328 }
1329 return 0;
1330}
1331
1332/* Process the summary node - called from jffs2_scan_eraseblock() */
1333int jffs2_sum_scan_sumnode(struct part_info *part, uint32_t offset,
1334 struct jffs2_raw_summary *summary, uint32_t sumsize,
1335 struct b_lists *pL)
1336{
1337 struct jffs2_unknown_node crcnode;
Tom Rini1c8fdf82016-03-27 14:48:36 -04001338 int ret, __maybe_unused ofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001339 uint32_t crc;
1340
1341 ofs = part->sector_size - sumsize;
1342
1343 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
1344 offset, offset + ofs, sumsize);
1345
1346 /* OK, now check for node validity and CRC */
1347 crcnode.magic = JFFS2_MAGIC_BITMASK;
1348 crcnode.nodetype = JFFS2_NODETYPE_SUMMARY;
1349 crcnode.totlen = summary->totlen;
1350 crc = crc32_no_comp(0, (uchar *)&crcnode, sizeof(crcnode)-4);
1351
1352 if (summary->hdr_crc != crc) {
1353 dbg_summary("Summary node header is corrupt (bad CRC or "
1354 "no summary at all)\n");
1355 goto crc_err;
1356 }
1357
1358 if (summary->totlen != sumsize) {
1359 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
1360 goto crc_err;
1361 }
1362
1363 crc = crc32_no_comp(0, (uchar *)summary,
1364 sizeof(struct jffs2_raw_summary)-8);
1365
1366 if (summary->node_crc != crc) {
1367 dbg_summary("Summary node is corrupt (bad CRC)\n");
1368 goto crc_err;
1369 }
1370
1371 crc = crc32_no_comp(0, (uchar *)summary->sum,
1372 sumsize - sizeof(struct jffs2_raw_summary));
1373
1374 if (summary->sum_crc != crc) {
1375 dbg_summary("Summary node data is corrupt (bad CRC)\n");
1376 goto crc_err;
1377 }
1378
1379 if (summary->cln_mkr)
1380 dbg_summary("Summary : CLEANMARKER node \n");
1381
1382 ret = jffs2_sum_process_sum_data(part, offset, summary, pL);
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001383 if (ret == -EBADMSG)
1384 return 0;
Ilya Yanok9b707622008-11-13 19:49:35 +03001385 if (ret)
1386 return ret; /* real error */
1387
1388 return 1;
1389
1390crc_err:
1391 putstr("Summary node crc error, skipping summary information.\n");
1392
1393 return 0;
1394}
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001395#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanok9b707622008-11-13 19:49:35 +03001396
wdenk06d01db2003-03-14 20:47:52 +00001397#ifdef DEBUG_FRAGMENTS
1398static void
1399dump_fragments(struct b_lists *pL)
1400{
1401 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001402 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001403 struct jffs2_raw_inode *jNode;
1404
1405 putstr("\r\n\r\n******The fragment Entries******\r\n");
1406 b = pL->frag.listHead;
1407 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001408 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1409 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001410 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1411 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1412 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1413 putLabeledWord("\tbuild_list: version = ", jNode->version);
1414 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1415 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1416 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1417 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1418 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1419 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1420 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1421 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001422 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001423 b = b->next;
1424 }
1425}
1426#endif
1427
1428#ifdef DEBUG_DIRENTS
1429static void
1430dump_dirents(struct b_lists *pL)
1431{
1432 struct b_node *b;
1433 struct jffs2_raw_dirent *jDir;
1434
1435 putstr("\r\n\r\n******The directory Entries******\r\n");
1436 b = pL->dir.listHead;
1437 while (b) {
Ilya Yanok70741002008-11-13 19:49:34 +03001438 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1439 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001440 putstr("\r\n");
1441 putnstr(jDir->name, jDir->nsize);
1442 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1443 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1444 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1445 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1446 putLabeledWord("\tbuild_list: version = ", jDir->version);
1447 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1448 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1449 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1450 putLabeledWord("\tbuild_list: type = ", jDir->type);
1451 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1452 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001453 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001454 b = b->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001455 put_fl_mem(jDir, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001456 }
1457}
1458#endif
1459
Mark Tomlinson081adef2015-07-01 16:38:27 +12001460#define DEFAULT_EMPTY_SCAN_SIZE 256
Ilya Yanok8a36d312008-11-13 19:49:33 +03001461
1462static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1463{
1464 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1465 return sector_size;
1466 else
1467 return DEFAULT_EMPTY_SCAN_SIZE;
1468}
1469
wdenkfe8c2802002-11-03 00:38:21 +00001470static u32
1471jffs2_1pass_build_lists(struct part_info * part)
1472{
1473 struct b_lists *pL;
1474 struct jffs2_unknown_node *node;
Tom Rini18e86722013-12-05 14:48:38 -05001475 u32 nr_sectors;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001476 u32 i;
wdenkfe8c2802002-11-03 00:38:21 +00001477 u32 counter4 = 0;
1478 u32 counterF = 0;
1479 u32 counterN = 0;
Ilya Yanok70741002008-11-13 19:49:34 +03001480 u32 max_totlen = 0;
Mark Tomlinsonc5b19402015-07-01 16:38:26 +12001481 u32 buf_size;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001482 char *buf;
wdenkfe8c2802002-11-03 00:38:21 +00001483
Tom Rini18e86722013-12-05 14:48:38 -05001484 nr_sectors = lldiv(part->size, part->sector_size);
wdenkfe8c2802002-11-03 00:38:21 +00001485 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1486 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1487 /* only about 5 %. not enough to inconvenience people for. */
1488 /* lcd_off(); */
1489
1490 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001491 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001492 pL = (struct b_lists *)part->jffs2_priv;
Mark Tomlinsonc5b19402015-07-01 16:38:26 +12001493 buf = malloc(DEFAULT_EMPTY_SCAN_SIZE);
wdenk4b9206e2004-03-23 22:14:11 +00001494 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001495
1496 /* start at the beginning of the partition */
Ilya Yanok8a36d312008-11-13 19:49:33 +03001497 for (i = 0; i < nr_sectors; i++) {
1498 uint32_t sector_ofs = i * part->sector_size;
1499 uint32_t buf_ofs = sector_ofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001500 uint32_t buf_len;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001501 uint32_t ofs, prevofs;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001502#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanok9b707622008-11-13 19:49:35 +03001503 struct jffs2_sum_marker *sm;
1504 void *sumptr = NULL;
1505 uint32_t sumlen;
1506 int ret;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001507#endif
Mark Tomlinson54a88382015-07-01 16:38:28 +12001508 /* Indicates a sector with a CLEANMARKER was found */
1509 int clean_sector = 0;
wdenk0b8fa032004-04-25 14:37:29 +00001510
Mark Tomlinsonc5b19402015-07-01 16:38:26 +12001511 /* Set buf_size to maximum length */
1512 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
Stuart Wood86d32732008-06-02 16:40:08 -04001513 WATCHDOG_RESET();
Ilya Yanok9b707622008-11-13 19:49:35 +03001514
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001515#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanok9b707622008-11-13 19:49:35 +03001516 buf_len = sizeof(*sm);
1517
1518 /* Read as much as we want into the _end_ of the preallocated
1519 * buffer
1520 */
1521 get_fl_mem(part->offset + sector_ofs + part->sector_size -
1522 buf_len, buf_len, buf + buf_size - buf_len);
1523
1524 sm = (void *)buf + buf_size - sizeof(*sm);
1525 if (sm->magic == JFFS2_SUM_MAGIC) {
1526 sumlen = part->sector_size - sm->offset;
1527 sumptr = buf + buf_size - sumlen;
1528
1529 /* Now, make sure the summary itself is available */
1530 if (sumlen > buf_size) {
1531 /* Need to kmalloc for this. */
1532 sumptr = malloc(sumlen);
1533 if (!sumptr) {
1534 putstr("Can't get memory for summary "
1535 "node!\n");
Ilya Yanokb6440062009-08-12 16:42:48 +04001536 free(buf);
1537 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001538 return 0;
1539 }
1540 memcpy(sumptr + sumlen - buf_len, buf +
1541 buf_size - buf_len, buf_len);
1542 }
1543 if (buf_len < sumlen) {
1544 /* Need to read more so that the entire summary
1545 * node is present
1546 */
1547 get_fl_mem(part->offset + sector_ofs +
1548 part->sector_size - sumlen,
1549 sumlen - buf_len, sumptr);
1550 }
1551 }
1552
1553 if (sumptr) {
1554 ret = jffs2_sum_scan_sumnode(part, sector_ofs, sumptr,
1555 sumlen, pL);
1556
1557 if (buf_size && sumlen > buf_size)
1558 free(sumptr);
Ilya Yanokb6440062009-08-12 16:42:48 +04001559 if (ret < 0) {
1560 free(buf);
1561 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001562 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001563 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001564 if (ret)
1565 continue;
1566
1567 }
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001568#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanok9b707622008-11-13 19:49:35 +03001569
1570 buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1571
Ilya Yanok8a36d312008-11-13 19:49:33 +03001572 get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
Stuart Wood86d32732008-06-02 16:40:08 -04001573
Ilya Yanok8a36d312008-11-13 19:49:33 +03001574 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1575 ofs = 0;
1576
1577 /* Scan only 4KiB of 0xFF before declaring it's empty */
1578 while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1579 *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1580 ofs += 4;
1581
1582 if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1583 continue;
1584
1585 ofs += sector_ofs;
1586 prevofs = ofs - 1;
Mark Tomlinsonc5b19402015-07-01 16:38:26 +12001587 /*
1588 * Set buf_size down to the minimum size required.
1589 * This prevents reading in chunks of flash data unnecessarily.
1590 */
1591 buf_size = sizeof(union jffs2_node_union);
Ilya Yanok8a36d312008-11-13 19:49:33 +03001592
1593 scan_more:
1594 while (ofs < sector_ofs + part->sector_size) {
1595 if (ofs == prevofs) {
1596 printf("offset %08x already seen, skip\n", ofs);
1597 ofs += 4;
1598 counter4++;
1599 continue;
1600 }
1601 prevofs = ofs;
1602 if (sector_ofs + part->sector_size <
1603 ofs + sizeof(*node))
1604 break;
1605 if (buf_ofs + buf_len < ofs + sizeof(*node)) {
1606 buf_len = min_t(uint32_t, buf_size, sector_ofs
1607 + part->sector_size - ofs);
1608 get_fl_mem((u32)part->offset + ofs, buf_len,
1609 buf);
1610 buf_ofs = ofs;
1611 }
1612
1613 node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
1614
1615 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1616 uint32_t inbuf_ofs;
Wolfgang Denk16b9afd2011-10-05 22:58:11 +02001617 uint32_t scan_end;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001618
Ilya Yanok8a36d312008-11-13 19:49:33 +03001619 ofs += 4;
1620 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1621 part->sector_size)/8,
1622 buf_len);
1623 more_empty:
1624 inbuf_ofs = ofs - buf_ofs;
1625 while (inbuf_ofs < scan_end) {
1626 if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1627 0xffffffff)
1628 goto scan_more;
1629
1630 inbuf_ofs += 4;
1631 ofs += 4;
wdenk998eaae2004-04-18 19:43:36 +00001632 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001633 /* Ran off end. */
Mark Tomlinson54a88382015-07-01 16:38:28 +12001634 /*
1635 * If this sector had a clean marker at the
1636 * beginning, and immediately following this
1637 * have been a bunch of FF bytes, treat the
1638 * entire sector as empty.
1639 */
1640 if (clean_sector)
1641 break;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001642
1643 /* See how much more there is to read in this
1644 * eraseblock...
1645 */
1646 buf_len = min_t(uint32_t, buf_size,
1647 sector_ofs +
1648 part->sector_size - ofs);
1649 if (!buf_len) {
1650 /* No more to read. Break out of main
1651 * loop without marking this range of
1652 * empty space as dirty (because it's
1653 * not)
1654 */
1655 break;
1656 }
1657 scan_end = buf_len;
1658 get_fl_mem((u32)part->offset + ofs, buf_len,
1659 buf);
1660 buf_ofs = ofs;
1661 goto more_empty;
1662 }
Mark Tomlinson54a88382015-07-01 16:38:28 +12001663 /*
1664 * Found something not erased in the sector, so reset
1665 * the 'clean_sector' flag.
1666 */
1667 clean_sector = 0;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001668 if (node->magic != JFFS2_MAGIC_BITMASK ||
1669 !hdr_crc(node)) {
1670 ofs += 4;
1671 counter4++;
1672 continue;
1673 }
1674 if (ofs + node->totlen >
1675 sector_ofs + part->sector_size) {
1676 ofs += 4;
1677 counter4++;
1678 continue;
1679 }
1680 /* if its a fragment add it */
1681 switch (node->nodetype) {
1682 case JFFS2_NODETYPE_INODE:
1683 if (buf_ofs + buf_len < ofs + sizeof(struct
1684 jffs2_raw_inode)) {
Mark Tomlinsonc5b19402015-07-01 16:38:26 +12001685 buf_len = min_t(uint32_t,
1686 sizeof(struct jffs2_raw_inode),
1687 sector_ofs +
1688 part->sector_size -
1689 ofs);
Ilya Yanok8a36d312008-11-13 19:49:33 +03001690 get_fl_mem((u32)part->offset + ofs,
1691 buf_len, buf);
1692 buf_ofs = ofs;
1693 node = (void *)buf;
1694 }
Mark Tomlinsonc5b19402015-07-01 16:38:26 +12001695 if (!inode_crc((struct jffs2_raw_inode *)node))
1696 break;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001697
1698 if (insert_node(&pL->frag, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001699 ofs) == NULL) {
1700 free(buf);
1701 jffs2_free_cache(part);
Ilya Yanok8a36d312008-11-13 19:49:33 +03001702 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001703 }
Ilya Yanok70741002008-11-13 19:49:34 +03001704 if (max_totlen < node->totlen)
1705 max_totlen = node->totlen;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001706 break;
1707 case JFFS2_NODETYPE_DIRENT:
1708 if (buf_ofs + buf_len < ofs + sizeof(struct
1709 jffs2_raw_dirent) +
1710 ((struct
1711 jffs2_raw_dirent *)
1712 node)->nsize) {
Mark Tomlinsonc5b19402015-07-01 16:38:26 +12001713 buf_len = min_t(uint32_t,
1714 node->totlen,
1715 sector_ofs +
1716 part->sector_size -
1717 ofs);
Ilya Yanok8a36d312008-11-13 19:49:33 +03001718 get_fl_mem((u32)part->offset + ofs,
1719 buf_len, buf);
1720 buf_ofs = ofs;
1721 node = (void *)buf;
1722 }
1723
1724 if (!dirent_crc((struct jffs2_raw_dirent *)
1725 node) ||
1726 !dirent_name_crc(
1727 (struct
1728 jffs2_raw_dirent *)
1729 node))
1730 break;
wdenkfc1cfcd2004-04-25 15:41:35 +00001731 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001732 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001733 if (insert_node(&pL->dir, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001734 ofs) == NULL) {
1735 free(buf);
1736 jffs2_free_cache(part);
wdenkfe8c2802002-11-03 00:38:21 +00001737 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001738 }
Ilya Yanok70741002008-11-13 19:49:34 +03001739 if (max_totlen < node->totlen)
1740 max_totlen = node->totlen;
wdenkfe8c2802002-11-03 00:38:21 +00001741 counterN++;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001742 break;
1743 case JFFS2_NODETYPE_CLEANMARKER:
wdenkfe8c2802002-11-03 00:38:21 +00001744 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001745 printf("OOPS Cleanmarker has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001746 "%d != %zu\n",
1747 node->totlen,
wdenk06d01db2003-03-14 20:47:52 +00001748 sizeof(struct jffs2_unknown_node));
Mark Tomlinson54a88382015-07-01 16:38:28 +12001749 if ((node->totlen ==
1750 sizeof(struct jffs2_unknown_node)) &&
1751 (ofs == sector_ofs)) {
1752 /*
1753 * Found a CLEANMARKER at the beginning
1754 * of the sector. It's in the correct
1755 * place with correct size and CRC.
1756 */
1757 clean_sector = 1;
1758 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001759 break;
1760 case JFFS2_NODETYPE_PADDING:
wdenk7205e402003-09-10 22:30:53 +00001761 if (node->totlen < sizeof(struct jffs2_unknown_node))
1762 printf("OOPS Padding has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001763 "%d < %zu\n",
1764 node->totlen,
wdenk7205e402003-09-10 22:30:53 +00001765 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001766 break;
Ilya Yanok9b707622008-11-13 19:49:35 +03001767 case JFFS2_NODETYPE_SUMMARY:
1768 break;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001769 default:
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001770 printf("Unknown node type: %x len %d offset 0x%x\n",
1771 node->nodetype,
Ilya Yanok8a36d312008-11-13 19:49:33 +03001772 node->totlen, ofs);
wdenkfe8c2802002-11-03 00:38:21 +00001773 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001774 ofs += ((node->totlen + 3) & ~3);
wdenkfe8c2802002-11-03 00:38:21 +00001775 counterF++;
wdenkfe8c2802002-11-03 00:38:21 +00001776 }
wdenkfe8c2802002-11-03 00:38:21 +00001777 }
1778
Ilya Yanok8a36d312008-11-13 19:49:33 +03001779 free(buf);
Mark Tomlinson10d3ac32015-07-01 16:38:29 +12001780#if defined(CONFIG_SYS_JFFS2_SORT_FRAGMENTS)
1781 /*
1782 * Sort the lists.
1783 */
1784 sort_list(&pL->frag);
1785 sort_list(&pL->dir);
1786#endif
wdenkfe8c2802002-11-03 00:38:21 +00001787 putstr("\b\b done.\r\n"); /* close off the dots */
Ilya Yanok70741002008-11-13 19:49:34 +03001788
1789 /* We don't care if malloc failed - then each read operation will
1790 * allocate its own buffer as necessary (NAND) or will read directly
1791 * from flash (NOR).
1792 */
1793 pL->readbuf = malloc(max_totlen);
1794
wdenkfe8c2802002-11-03 00:38:21 +00001795 /* turn the lcd back on. */
1796 /* splash(); */
1797
1798#if 0
wdenk06d01db2003-03-14 20:47:52 +00001799 putLabeledWord("dir entries = ", pL->dir.listCount);
1800 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001801 putLabeledWord("+4 increments = ", counter4);
1802 putLabeledWord("+file_offset increments = ", counterF);
1803
1804#endif
1805
wdenk06d01db2003-03-14 20:47:52 +00001806#ifdef DEBUG_DIRENTS
1807 dump_dirents(pL);
1808#endif
wdenkfe8c2802002-11-03 00:38:21 +00001809
wdenk06d01db2003-03-14 20:47:52 +00001810#ifdef DEBUG_FRAGMENTS
1811 dump_fragments(pL);
1812#endif
wdenkfe8c2802002-11-03 00:38:21 +00001813
wdenkfe8c2802002-11-03 00:38:21 +00001814 /* give visual feedback that we are done scanning the flash */
1815 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1816 return 1;
1817}
1818
1819
wdenkfe8c2802002-11-03 00:38:21 +00001820static u32
1821jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1822{
1823 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001824 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001825 struct jffs2_raw_inode *jNode;
1826 int i;
1827
wdenkfe8c2802002-11-03 00:38:21 +00001828 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1829 piL->compr_info[i].num_frags = 0;
1830 piL->compr_info[i].compr_sum = 0;
1831 piL->compr_info[i].decompr_sum = 0;
1832 }
1833
wdenk06d01db2003-03-14 20:47:52 +00001834 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001835 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001836 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1837 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001838 if (jNode->compr < JFFS2_NUM_COMPR) {
1839 piL->compr_info[jNode->compr].num_frags++;
1840 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1841 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1842 }
1843 b = b->next;
1844 }
1845 return 0;
1846}
1847
1848
wdenkfe8c2802002-11-03 00:38:21 +00001849static struct b_lists *
1850jffs2_get_list(struct part_info * part, const char *who)
1851{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001852 /* copy requested part_info struct pointer to global location */
1853 current_part = part;
1854
wdenkfe8c2802002-11-03 00:38:21 +00001855 if (jffs2_1pass_rescan_needed(part)) {
1856 if (!jffs2_1pass_build_lists(part)) {
1857 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1858 return NULL;
1859 }
1860 }
1861 return (struct b_lists *)part->jffs2_priv;
1862}
1863
1864
1865/* Print directory / file contents */
1866u32
1867jffs2_1pass_ls(struct part_info * part, const char *fname)
1868{
1869 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001870 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001871 u32 inode;
1872
wdenk06d01db2003-03-14 20:47:52 +00001873 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001874 return 0;
1875
1876 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1877 putstr("ls: Failed to scan jffs2 file structure\r\n");
1878 return 0;
1879 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001880
1881
wdenkfe8c2802002-11-03 00:38:21 +00001882#if 0
1883 putLabeledWord("found file at inode = ", inode);
1884 putLabeledWord("read_inode returns = ", ret);
1885#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001886
1887 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001888}
1889
1890
wdenkfe8c2802002-11-03 00:38:21 +00001891/* Load a file from flash into memory. fname can be a full path */
1892u32
1893jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1894{
1895
1896 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001897 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001898 u32 inode;
1899
1900 if (! (pl = jffs2_get_list(part, "load")))
1901 return 0;
1902
1903 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1904 putstr("load: Failed to find inode\r\n");
1905 return 0;
1906 }
1907
1908 /* Resolve symlinks */
1909 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1910 putstr("load: Failed to resolve inode structure\r\n");
1911 return 0;
1912 }
1913
1914 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1915 putstr("load: Failed to read inode\r\n");
1916 return 0;
1917 }
1918
1919 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1920 (unsigned long) dest, ret);
1921 return ret;
1922}
1923
1924/* Return information about the fs on this partition */
1925u32
1926jffs2_1pass_info(struct part_info * part)
1927{
1928 struct b_jffs2_info info;
1929 struct b_lists *pl;
1930 int i;
1931
1932 if (! (pl = jffs2_get_list(part, "info")))
1933 return 0;
1934
1935 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001936 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001937 printf ("Compression: %s\n"
1938 "\tfrag count: %d\n"
1939 "\tcompressed sum: %d\n"
1940 "\tuncompressed sum: %d\n",
1941 compr_names[i],
1942 info.compr_info[i].num_frags,
1943 info.compr_info[i].compr_sum,
1944 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001945 }
1946 return 1;
1947}