blob: 1115c8682e8189d29739c81ca020bd469c8b6e95 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2-------------------------------------------------------------------------
3 * Filename: jffs2.c
4 * Version: $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
5 * Copyright: Copyright (C) 2001, Russ Dill
6 * Author: Russ Dill <Russ.Dill@asu.edu>
7 * Description: Module to load kernel from jffs2
8 *-----------------------------------------------------------------------*/
9/*
10 * some portions of this code are taken from jffs2, and as such, the
11 * following copyright notice is included.
12 *
13 * JFFS2 -- Journalling Flash File System, Version 2.
14 *
15 * Copyright (C) 2001 Red Hat, Inc.
16 *
17 * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
18 *
19 * The original JFFS, from which the design for JFFS2 was derived,
20 * was designed and implemented by Axis Communications AB.
21 *
22 * The contents of this file are subject to the Red Hat eCos Public
23 * License Version 1.1 (the "Licence"); you may not use this file
24 * except in compliance with the Licence. You may obtain a copy of
25 * the Licence at http://www.redhat.com/
26 *
27 * Software distributed under the Licence is distributed on an "AS IS"
28 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
29 * See the Licence for the specific language governing rights and
30 * limitations under the Licence.
31 *
32 * The Original Code is JFFS2 - Journalling Flash File System, version 2
33 *
34 * Alternatively, the contents of this file may be used under the
35 * terms of the GNU General Public License version 2 (the "GPL"), in
36 * which case the provisions of the GPL are applicable instead of the
37 * above. If you wish to allow the use of your version of this file
38 * only under the terms of the GPL and not to allow others to use your
39 * version of this file under the RHEPL, indicate your decision by
40 * deleting the provisions above and replace them with the notice and
41 * other provisions required by the GPL. If you do not delete the
42 * provisions above, a recipient may use your version of this file
43 * under either the RHEPL or the GPL.
44 *
45 * $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
46 *
47 */
48
49/* Ok, so anyone who knows the jffs2 code will probably want to get a papar
50 * bag to throw up into before reading this code. I looked through the jffs2
51 * code, the caching scheme is very elegant. I tried to keep the version
52 * for a bootloader as small and simple as possible. Instead of worring about
53 * unneccesary data copies, node scans, etc, I just optimized for the known
54 * common case, a kernel, which looks like:
Wolfgang Denka1be4762008-05-20 16:00:29 +020055 * (1) most pages are 4096 bytes
wdenkfe8c2802002-11-03 00:38:21 +000056 * (2) version numbers are somewhat sorted in acsending order
57 * (3) multiple compressed blocks making up one page is uncommon
58 *
59 * So I create a linked list of decending version numbers (insertions at the
60 * head), and then for each page, walk down the list, until a matching page
61 * with 4096 bytes is found, and then decompress the watching pages in
62 * reverse order.
63 *
64 */
65
66/*
67 * Adapted by Nye Liu <nyet@zumanetworks.com> and
68 * Rex Feany <rfeany@zumanetworks.com>
69 * on Jan/2002 for U-Boot.
70 *
71 * Clipped out all the non-1pass functions, cleaned up warnings,
72 * wrappers, etc. No major changes to the code.
73 * Please, he really means it when he said have a paper bag
74 * handy. We needed it ;).
75 *
76 */
77
wdenk6b58f332003-03-14 20:47:52 +000078/*
79 * Bugfixing by Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>, (C) Mar/2003
80 *
81 * - overhaul of the memory management. Removed much of the "paper-bagging"
82 * in that part of the code, fixed several bugs, now frees memory when
83 * partition is changed.
84 * It's still ugly :-(
85 * - fixed a bug in jffs2_1pass_read_inode where the file length calculation
86 * was incorrect. Removed a bit of the paper-bagging as well.
87 * - removed double crc calculation for fragment headers in jffs2_private.h
88 * for speedup.
89 * - scan_empty rewritten in a more "standard" manner (non-paperbag, that is).
90 * - spinning wheel now spins depending on how much memory has been scanned
91 * - lots of small changes all over the place to "improve" readability.
92 * - implemented fragment sorting to ensure that the newest data is copied
93 * if there are multiple copies of fragments for a certain file offset.
94 *
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020095 * The fragment sorting feature must be enabled by CONFIG_SYS_JFFS2_SORT_FRAGMENTS.
wdenk6b58f332003-03-14 20:47:52 +000096 * Sorting is done while adding fragments to the lists, which is more or less a
97 * bubble sort. This takes a lot of time, and is most probably not an issue if
98 * the boot filesystem is always mounted readonly.
99 *
100 * You should define it if the boot filesystem is mounted writable, and updates
101 * to the boot files are done by copying files to that filesystem.
102 *
103 *
104 * There's a big issue left: endianess is completely ignored in this code. Duh!
105 *
106 *
107 * You still should have paper bags at hand :-(. The code lacks more or less
108 * any comment, and is still arcane and difficult to read in places. As this
wdenkae65f502004-01-03 21:24:46 +0000109 * might be incompatible with any new code from the jffs2 maintainers anyway,
110 * it should probably be dumped and replaced by something like jffs2reader!
wdenk6b58f332003-03-14 20:47:52 +0000111 */
112
113
wdenkfe8c2802002-11-03 00:38:21 +0000114#include <common.h>
115#include <config.h>
116#include <malloc.h>
Tom Rini3cd84d62013-12-05 14:48:38 -0500117#include <div64.h>
Tom Rini7c4734d2016-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 Glass48b6c6b2019-11-14 12:57:16 -0700121#include <u-boot/crc.h>
Stuart Wood471a2f02008-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 Frysinger11d1a092012-04-09 13:39:55 +0000125#include <linux/compat.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +0900126#include <linux/errno.h>
wdenkfe8c2802002-11-03 00:38:21 +0000127
128#include "jffs2_private.h"
129
wdenk6b58f332003-03-14 20:47:52 +0000130
Wolfgang Denka1be4762008-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
wdenk6b58f332003-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 Denka1be4762008-05-20 16:00:29 +0200137#undef DEBUG /* enable debugging messages */
wdenkfe8c2802002-11-03 00:38:21 +0000138
wdenk6b58f332003-03-14 20:47:52 +0000139
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 Yanoka933bd62008-11-13 19:49:35 +0300146#include "summary.h"
147
Wolfgang Denk47f57792005-08-08 01:03:24 +0200148/* keeps pointer to currentlu processed partition */
149static struct part_info *current_part;
wdenk8886a662004-04-18 19:43:36 +0000150
Wolfgang Denk15888b42007-07-05 17:56:27 +0200151#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500152 defined(CONFIG_CMD_NAND) )
Bartlomiej Sieka582f1a32006-03-05 18:57:33 +0100153#include <nand.h>
wdenk8886a662004-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
wdenk8886a662004-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;
wdenk8886a662004-04-18 19:43:36 +0000175
176static int read_nand_cached(u32 off, u32 size, u_char *buf)
177{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200178 struct mtdids *id = current_part->dev->id;
Grygorii Strashkoac8f8e32017-06-26 19:12:57 -0500179 struct mtd_info *mtd;
wdenk8886a662004-04-18 19:43:36 +0000180 u32 bytes_read = 0;
Marian Balakowicz6a076752006-04-08 19:08:06 +0200181 size_t retlen;
wdenk8886a662004-04-18 19:43:36 +0000182 int cpy_bytes;
183
Grygorii Strashkoac8f8e32017-06-26 19:12:57 -0500184 mtd = get_nand_dev_by_index(id->num);
185 if (!mtd)
186 return -1;
187
wdenk8886a662004-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 */
wdenk12490652004-04-18 21:13:41 +0000195 nand_cache = malloc(NAND_CACHE_SIZE);
196 if (!nand_cache) {
wdenk8886a662004-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 Sieka582f1a32006-03-05 18:57:33 +0100202
203 retlen = NAND_CACHE_SIZE;
Grygorii Strashkoac8f8e32017-06-26 19:12:57 -0500204 if (nand_read(mtd, nand_cache_off,
Engling, Uwee5e23ee2017-10-10 14:20:55 +0000205 &retlen, nand_cache) < 0 ||
Wolfgang Denk47f57792005-08-08 01:03:24 +0200206 retlen != NAND_CACHE_SIZE) {
wdenk8886a662004-04-18 19:43:36 +0000207 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk47f57792005-08-08 01:03:24 +0200208 nand_cache_off, NAND_CACHE_SIZE);
wdenk8886a662004-04-18 19:43:36 +0000209 return -1;
210 }
211 }
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 Denk47f57792005-08-08 01:03:24 +0200223static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk8886a662004-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 Denk47f57792005-08-08 01:03:24 +0200228 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk8886a662004-04-18 19:43:36 +0000229 return NULL;
230 }
231 if (read_nand_cached(off, size, buf) < 0) {
wdenkf248ebc2004-05-05 19:44:41 +0000232 if (!ext_buf)
233 free(buf);
wdenk8886a662004-04-18 19:43:36 +0000234 return NULL;
235 }
236
237 return buf;
238}
239
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300240static void *get_node_mem_nand(u32 off, void *ext_buf)
wdenk8886a662004-04-18 19:43:36 +0000241{
242 struct jffs2_unknown_node node;
243 void *ret = NULL;
244
Wolfgang Denk47f57792005-08-08 01:03:24 +0200245 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk8886a662004-04-18 19:43:36 +0000246 return NULL;
247
Wolfgang Denk47f57792005-08-08 01:03:24 +0200248 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk8886a662004-04-18 19:43:36 +0000249 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300250 ext_buf))) {
wdenk8886a662004-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 Denk47f57792005-08-08 01:03:24 +0200257static void put_fl_mem_nand(void *buf)
wdenk8886a662004-04-18 19:43:36 +0000258{
259 free(buf);
260}
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500261#endif
Wolfgang Denk47f57792005-08-08 01:03:24 +0200262
Kyungmin Park25383742008-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, Uwee5e23ee2017-10-10 14:20:55 +0000304 &retlen, onenand_cache) < 0 ||
Kyungmin Park25383742008-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 Yanoke7fd6712008-11-13 19:49:34 +0300339static void *get_node_mem_onenand(u32 off, void *ext_buf)
Kyungmin Park25383742008-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 Yanoke7fd6712008-11-13 19:49:34 +0300349 ext_buf);
Kyungmin Park25383742008-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
Wolfgang Denk47f57792005-08-08 01:03:24 +0200364
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500365#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk47f57792005-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 Yanoke7fd6712008-11-13 19:49:34 +0300372static inline void *get_fl_mem_nor(u32 off, u32 size, void *ext_buf)
Wolfgang Denk47f57792005-08-08 01:03:24 +0200373{
374 u32 addr = off;
375 struct mtdids *id = current_part->dev->id;
376
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200377 extern flash_info_t flash_info[];
Wolfgang Denk47f57792005-08-08 01:03:24 +0200378 flash_info_t *flash = &flash_info[id->num];
379
380 addr += flash->start[0];
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300381 if (ext_buf) {
382 memcpy(ext_buf, (void *)addr, size);
383 return ext_buf;
384 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200385 return (void*)addr;
386}
387
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300388static inline void *get_node_mem_nor(u32 off, void *ext_buf)
Ilya Yanokddb02692008-11-13 19:49:33 +0300389{
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300390 struct jffs2_unknown_node *pNode;
Ilya Yanokddb02692008-11-13 19:49:33 +0300391
Ilya Yanoke7fd6712008-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 Denk47f57792005-08-08 01:03:24 +0200397}
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500398#endif
wdenk8886a662004-04-18 19:43:36 +0000399
wdenk8886a662004-04-18 19:43:36 +0000400
Wolfgang Denk47f57792005-08-08 01:03:24 +0200401/*
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200402 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk47f57792005-08-08 01:03:24 +0200403 *
404 */
wdenk8886a662004-04-18 19:43:36 +0000405static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
406{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200407 struct mtdids *id = current_part->dev->id;
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200408
Heiko Schocherd64a8132010-03-24 13:22:50 +0100409 switch(id->type) {
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500410#if defined(CONFIG_CMD_FLASH)
Heiko Schocherd64a8132010-03-24 13:22:50 +0100411 case MTD_DEV_TYPE_NOR:
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300412 return get_fl_mem_nor(off, size, ext_buf);
Heiko Schocherd64a8132010-03-24 13:22:50 +0100413 break;
Wolfgang Denk47f57792005-08-08 01:03:24 +0200414#endif
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500415#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Heiko Schocherd64a8132010-03-24 13:22:50 +0100416 case MTD_DEV_TYPE_NAND:
Wolfgang Denk47f57792005-08-08 01:03:24 +0200417 return get_fl_mem_nand(off, size, ext_buf);
Heiko Schocherd64a8132010-03-24 13:22:50 +0100418 break;
Wolfgang Denk47f57792005-08-08 01:03:24 +0200419#endif
Kyungmin Park25383742008-08-27 14:45:20 +0900420#if defined(CONFIG_CMD_ONENAND)
Heiko Schocherd64a8132010-03-24 13:22:50 +0100421 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park25383742008-08-27 14:45:20 +0900422 return get_fl_mem_onenand(off, size, ext_buf);
Heiko Schocherd64a8132010-03-24 13:22:50 +0100423 break;
Kyungmin Park25383742008-08-27 14:45:20 +0900424#endif
Heiko Schocherd64a8132010-03-24 13:22:50 +0100425 default:
426 printf("get_fl_mem: unknown device type, " \
427 "using raw offset!\n");
428 }
wdenk8886a662004-04-18 19:43:36 +0000429 return (void*)off;
430}
431
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300432static inline void *get_node_mem(u32 off, void *ext_buf)
wdenk8886a662004-04-18 19:43:36 +0000433{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200434 struct mtdids *id = current_part->dev->id;
Wolfgang Denkeb95c852005-08-10 15:14:32 +0200435
Heiko Schocherd64a8132010-03-24 13:22:50 +0100436 switch(id->type) {
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500437#if defined(CONFIG_CMD_FLASH)
Heiko Schocherd64a8132010-03-24 13:22:50 +0100438 case MTD_DEV_TYPE_NOR:
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300439 return get_node_mem_nor(off, ext_buf);
Heiko Schocherd64a8132010-03-24 13:22:50 +0100440 break;
Wolfgang Denk47f57792005-08-08 01:03:24 +0200441#endif
Wolfgang Denk15888b42007-07-05 17:56:27 +0200442#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeliger80eb47c2007-07-09 17:56:50 -0500443 defined(CONFIG_CMD_NAND)
Heiko Schocherd64a8132010-03-24 13:22:50 +0100444 case MTD_DEV_TYPE_NAND:
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300445 return get_node_mem_nand(off, ext_buf);
Heiko Schocherd64a8132010-03-24 13:22:50 +0100446 break;
Wolfgang Denk47f57792005-08-08 01:03:24 +0200447#endif
Kyungmin Park25383742008-08-27 14:45:20 +0900448#if defined(CONFIG_CMD_ONENAND)
Heiko Schocherd64a8132010-03-24 13:22:50 +0100449 case MTD_DEV_TYPE_ONENAND:
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300450 return get_node_mem_onenand(off, ext_buf);
Heiko Schocherd64a8132010-03-24 13:22:50 +0100451 break;
Kyungmin Park25383742008-08-27 14:45:20 +0900452#endif
Heiko Schocherd64a8132010-03-24 13:22:50 +0100453 default:
454 printf("get_fl_mem: unknown device type, " \
455 "using raw offset!\n");
456 }
wdenk8886a662004-04-18 19:43:36 +0000457 return (void*)off;
458}
459
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300460static inline void put_fl_mem(void *buf, void *ext_buf)
wdenk8886a662004-04-18 19:43:36 +0000461{
Wolfgang Denk47f57792005-08-08 01:03:24 +0200462 struct mtdids *id = current_part->dev->id;
wdenk8886a662004-04-18 19:43:36 +0000463
Ilya Yanoke7fd6712008-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 Woodc97ba112008-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 Denk47f57792005-08-08 01:03:24 +0200471 return put_fl_mem_nand(buf);
472#endif
Kyungmin Park25383742008-08-27 14:45:20 +0900473#if defined(CONFIG_CMD_ONENAND)
Scott Woodc97ba112008-10-31 13:51:12 -0500474 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park25383742008-08-27 14:45:20 +0900475 return put_fl_mem_onenand(buf);
476#endif
Scott Woodc97ba112008-10-31 13:51:12 -0500477 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200478}
wdenk6b58f332003-03-14 20:47:52 +0000479
480/* Compression names */
481static char *compr_names[] = {
482 "NONE",
483 "ZERO",
484 "RTIME",
485 "RUBINMIPS",
486 "COPY",
487 "DYNRUBIN",
wdenke84ec902005-05-05 00:04:14 +0000488 "ZLIB",
Wolfgang Denk0eded4f2010-01-15 11:10:33 +0100489#if defined(CONFIG_JFFS2_LZO)
wdenke84ec902005-05-05 00:04:14 +0000490 "LZO",
wdenke84ec902005-05-05 00:04:14 +0000491#endif
wdenk6b58f332003-03-14 20:47:52 +0000492};
493
wdenk6b58f332003-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 *
wdenk6b58f332003-03-14 20:47:52 +0000513add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000514{
wdenk6b58f332003-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
wdenk6b58f332003-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);
wdenk6b58f332003-03-14 20:47:52 +0000524 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000525#endif
526
wdenk6b58f332003-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 }
wdenk6b58f332003-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. */
wdenk6b58f332003-03-14 20:47:52 +0000542 b = &memBase->nodes[index];
543 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000544
wdenk6b58f332003-03-14 20:47:52 +0000545 memBase->index = index;
546 list->listMemBase = memBase;
547 list->listCount++;
548 return b;
549}
wdenkfe8c2802002-11-03 00:38:21 +0000550
wdenk6b58f332003-03-14 20:47:52 +0000551static struct b_node *
Petr Borsodi80c25b12020-05-07 12:25:56 +0200552insert_node(struct b_list *list)
wdenk6b58f332003-03-14 20:47:52 +0000553{
554 struct b_node *new;
wdenkfe8c2802002-11-03 00:38:21 +0000555
wdenk6b58f332003-03-14 20:47:52 +0000556 if (!(new = add_node(list))) {
557 putstr("add_node failed!\r\n");
558 return NULL;
559 }
Mark Tomlinsonefdc2a62015-07-01 16:38:29 +1200560 new->next = NULL;
wdenk6b58f332003-03-14 20:47:52 +0000561
Mark Tomlinsonefdc2a62015-07-01 16:38:29 +1200562 if (list->listTail != NULL)
563 list->listTail->next = new;
wdenk6b58f332003-03-14 20:47:52 +0000564 else
Mark Tomlinsonefdc2a62015-07-01 16:38:29 +1200565 list->listHead = new;
566 list->listTail = new;
wdenkfe8c2802002-11-03 00:38:21 +0000567
wdenk6b58f332003-03-14 20:47:52 +0000568 return new;
wdenkfe8c2802002-11-03 00:38:21 +0000569}
570
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200571#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk2c9b05d2003-09-10 22:30:53 +0000572/* Sort data entries with the latest version last, so that if there
573 * is overlapping data the latest version will be used.
574 */
wdenk6b58f332003-03-14 20:47:52 +0000575static int compare_inodes(struct b_node *new, struct b_node *old)
576{
Petr Borsodi80c25b12020-05-07 12:25:56 +0200577 return new->version > old->version;
wdenk6b58f332003-03-14 20:47:52 +0000578}
579
wdenk2c9b05d2003-09-10 22:30:53 +0000580/* Sort directory entries so all entries in the same directory
581 * with the same name are grouped together, with the latest version
582 * last. This makes it easy to eliminate all but the latest version
583 * by marking the previous version dead by setting the inode to 0.
584 */
wdenk6b58f332003-03-14 20:47:52 +0000585static int compare_dirents(struct b_node *new, struct b_node *old)
586{
Mark Tomlinson7c6558e2015-07-01 16:38:23 +1200587 /*
588 * Using NULL as the buffer for NOR flash prevents the entire node
589 * being read. This makes most comparisons much quicker as only one
590 * or two entries from the node will be used most of the time.
wdenk2c9b05d2003-09-10 22:30:53 +0000591 */
Mark Tomlinson7c6558e2015-07-01 16:38:23 +1200592 struct jffs2_raw_dirent *jNew = get_node_mem(new->offset, NULL);
593 struct jffs2_raw_dirent *jOld = get_node_mem(old->offset, NULL);
594 int cmp;
595 int ret;
wdenk2c9b05d2003-09-10 22:30:53 +0000596
Mark Tomlinson7c6558e2015-07-01 16:38:23 +1200597 if (jNew->pino != jOld->pino) {
598 /* ascending sort by pino */
599 ret = jNew->pino > jOld->pino;
600 } else if (jNew->nsize != jOld->nsize) {
601 /*
602 * pino is the same, so use ascending sort by nsize,
603 * so we don't do strncmp unless we really must.
wdenk2c9b05d2003-09-10 22:30:53 +0000604 */
Mark Tomlinson7c6558e2015-07-01 16:38:23 +1200605 ret = jNew->nsize > jOld->nsize;
606 } else {
607 /*
608 * length is also the same, so use ascending sort by name
609 */
610 cmp = strncmp((char *)jNew->name, (char *)jOld->name,
611 jNew->nsize);
612 if (cmp != 0) {
613 ret = cmp > 0;
614 } else {
615 /*
616 * we have duplicate names in this directory,
617 * so use ascending sort by version
618 */
619 ret = jNew->version > jOld->version;
620 }
wdenk2c9b05d2003-09-10 22:30:53 +0000621 }
Mark Tomlinson7c6558e2015-07-01 16:38:23 +1200622 put_fl_mem(jNew, NULL);
623 put_fl_mem(jOld, NULL);
wdenk9c53f402003-10-15 23:53:47 +0000624
Mark Tomlinson7c6558e2015-07-01 16:38:23 +1200625 return ret;
wdenk6b58f332003-03-14 20:47:52 +0000626}
627#endif
wdenkfe8c2802002-11-03 00:38:21 +0000628
Wolfgang Denk47f57792005-08-08 01:03:24 +0200629void
630jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000631{
wdenk6b58f332003-03-14 20:47:52 +0000632 struct b_lists *pL;
633
634 if (part->jffs2_priv != NULL) {
635 pL = (struct b_lists *)part->jffs2_priv;
636 free_nodes(&pL->frag);
637 free_nodes(&pL->dir);
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300638 free(pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000639 free(pL);
640 }
Wolfgang Denk47f57792005-08-08 01:03:24 +0200641}
642
643static u32
644jffs_init_1pass_list(struct part_info *part)
645{
646 struct b_lists *pL;
647
648 jffs2_free_cache(part);
649
wdenk6b58f332003-03-14 20:47:52 +0000650 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
651 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +0000652
wdenk6b58f332003-03-14 20:47:52 +0000653 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200654#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk6b58f332003-03-14 20:47:52 +0000655 pL->dir.listCompare = compare_dirents;
656 pL->frag.listCompare = compare_inodes;
657#endif
wdenkfe8c2802002-11-03 00:38:21 +0000658 }
659 return 0;
660}
661
662/* find the inode from the slashless name given a parent */
663static long
664jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
665{
666 struct b_node *b;
667 struct jffs2_raw_inode *jNode;
wdenk6b58f332003-03-14 20:47:52 +0000668 u32 totalSize = 0;
wdenk2c9b05d2003-09-10 22:30:53 +0000669 u32 latestVersion = 0;
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200670 uchar *lDest;
671 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000672 int i;
673 u32 counter = 0;
Petr Borsodi80c25b12020-05-07 12:25:56 +0200674
wdenk2c9b05d2003-09-10 22:30:53 +0000675 /* Find file size before loading any data, so fragments that
676 * start past the end of file can be ignored. A fragment
677 * that is partially in the file is loaded, so extra data may
678 * be loaded up to the next 4K boundary above the file size.
679 * This shouldn't cause trouble when loading kernel images, so
680 * we will live with it.
681 */
Petr Borsodi80c25b12020-05-07 12:25:56 +0200682 int latestOffset = -1;
wdenk2c9b05d2003-09-10 22:30:53 +0000683 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Petr Borsodi80c25b12020-05-07 12:25:56 +0200684 if (inode == b->ino) {
wdenk2c9b05d2003-09-10 22:30:53 +0000685 /* get actual file length from the newest node */
Petr Borsodi80c25b12020-05-07 12:25:56 +0200686 if (b->version >= latestVersion) {
687 latestVersion = b->version;
688 latestOffset = b->offset;
wdenk2c9b05d2003-09-10 22:30:53 +0000689 }
690 }
Petr Borsodi80c25b12020-05-07 12:25:56 +0200691 }
692
693 if (latestOffset >= 0) {
694 jNode = (struct jffs2_raw_inode *)get_fl_mem(latestOffset,
695 sizeof(struct jffs2_raw_inode), pL->readbuf);
696 totalSize = jNode->isize;
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300697 put_fl_mem(jNode, pL->readbuf);
wdenk2c9b05d2003-09-10 22:30:53 +0000698 }
Petr Borsodi80c25b12020-05-07 12:25:56 +0200699
Mark Tomlinson6d998452015-07-01 16:38:22 +1200700 /*
701 * If no destination is provided, we are done.
702 * Just return the total size.
703 */
704 if (!dest)
705 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000706
wdenk6b58f332003-03-14 20:47:52 +0000707 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Petr Borsodi80c25b12020-05-07 12:25:56 +0200708 if (inode == b->ino) {
709 /*
710 * Copy just the node and not the data at this point,
711 * since we don't yet know if we need this data.
712 */
713 jNode = (struct jffs2_raw_inode *)get_fl_mem(b->offset,
714 sizeof(struct jffs2_raw_inode),
715 pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000716#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000717 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
718 putLabeledWord("read_inode: inode = ", jNode->ino);
719 putLabeledWord("read_inode: version = ", jNode->version);
720 putLabeledWord("read_inode: isize = ", jNode->isize);
721 putLabeledWord("read_inode: offset = ", jNode->offset);
722 putLabeledWord("read_inode: csize = ", jNode->csize);
723 putLabeledWord("read_inode: dsize = ", jNode->dsize);
724 putLabeledWord("read_inode: compr = ", jNode->compr);
725 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
726 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000727#endif
wdenk2c9b05d2003-09-10 22:30:53 +0000728
wdenkfe8c2802002-11-03 00:38:21 +0000729 if(dest) {
Mark Tomlinsonb71748f2015-07-01 16:38:25 +1200730 /*
731 * Now that the inode has been checked,
732 * read the entire inode, including data.
733 */
734 put_fl_mem(jNode, pL->readbuf);
735 jNode = (struct jffs2_raw_inode *)
736 get_node_mem(b->offset, pL->readbuf);
737 src = ((uchar *)jNode) +
738 sizeof(struct jffs2_raw_inode);
wdenk6b58f332003-03-14 20:47:52 +0000739 /* ignore data behind latest known EOF */
wdenk8886a662004-04-18 19:43:36 +0000740 if (jNode->offset > totalSize) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300741 put_fl_mem(jNode, pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000742 continue;
wdenk8886a662004-04-18 19:43:36 +0000743 }
Ilya Yanokc0c07732008-11-13 19:49:36 +0300744 if (b->datacrc == CRC_UNKNOWN)
745 b->datacrc = data_crc(jNode) ?
746 CRC_OK : CRC_BAD;
747 if (b->datacrc == CRC_BAD) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300748 put_fl_mem(jNode, pL->readbuf);
Ilya Yanokddb02692008-11-13 19:49:33 +0300749 continue;
750 }
wdenk6b58f332003-03-14 20:47:52 +0000751
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200752 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000753#if 0
wdenk6b58f332003-03-14 20:47:52 +0000754 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000755 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000756#endif
757 switch (jNode->compr) {
758 case JFFS2_COMPR_NONE:
Wolfgang Denkbf913c12011-10-05 22:58:11 +0200759 ldr_memcpy(lDest, src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000760 break;
761 case JFFS2_COMPR_ZERO:
wdenkfe8c2802002-11-03 00:38:21 +0000762 for (i = 0; i < jNode->dsize; i++)
763 *(lDest++) = 0;
764 break;
765 case JFFS2_COMPR_RTIME:
wdenkfe8c2802002-11-03 00:38:21 +0000766 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
767 break;
768 case JFFS2_COMPR_DYNRUBIN:
769 /* this is slow but it works */
wdenkfe8c2802002-11-03 00:38:21 +0000770 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
771 break;
772 case JFFS2_COMPR_ZLIB:
Wolfgang Denkbf913c12011-10-05 22:58:11 +0200773 zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000774 break;
Wolfgang Denk0eded4f2010-01-15 11:10:33 +0100775#if defined(CONFIG_JFFS2_LZO)
wdenke84ec902005-05-05 00:04:14 +0000776 case JFFS2_COMPR_LZO:
Wolfgang Denkbf913c12011-10-05 22:58:11 +0200777 lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenke84ec902005-05-05 00:04:14 +0000778 break;
779#endif
wdenkfe8c2802002-11-03 00:38:21 +0000780 default:
781 /* unknown */
Loïc Minier5d0569a2011-02-03 22:04:26 +0100782 putLabeledWord("UNKNOWN COMPRESSION METHOD = ", jNode->compr);
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300783 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000784 return -1;
785 break;
786 }
787 }
788
wdenkfe8c2802002-11-03 00:38:21 +0000789#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000790 putLabeledWord("read_inode: totalSize = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000791#endif
Petr Borsodi80c25b12020-05-07 12:25:56 +0200792 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000793 }
wdenkfe8c2802002-11-03 00:38:21 +0000794 counter++;
795 }
wdenkfe8c2802002-11-03 00:38:21 +0000796
797#if 0
wdenk6b58f332003-03-14 20:47:52 +0000798 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000799#endif
wdenk6b58f332003-03-14 20:47:52 +0000800 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000801}
802
803/* find the inode from the slashless name given a parent */
804static u32
805jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
806{
807 struct b_node *b;
808 struct jffs2_raw_dirent *jDir;
809 int len;
810 u32 counter;
811 u32 version = 0;
812 u32 inode = 0;
813
814 /* name is assumed slash free */
815 len = strlen(name);
816
817 counter = 0;
818 /* we need to search all and return the inode with the highest version */
wdenk6b58f332003-03-14 20:47:52 +0000819 for(b = pL->dir.listHead; b; b = b->next, counter++) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300820 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
821 pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +0000822 if ((pino == jDir->pino) && (len == jDir->nsize) &&
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200823 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk8886a662004-04-18 19:43:36 +0000824 if (jDir->version < version) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300825 put_fl_mem(jDir, pL->readbuf);
wdenk2c9b05d2003-09-10 22:30:53 +0000826 continue;
wdenk8886a662004-04-18 19:43:36 +0000827 }
wdenkfe8c2802002-11-03 00:38:21 +0000828
wdenk2c9b05d2003-09-10 22:30:53 +0000829 if (jDir->version == version && inode != 0) {
Wolfgang Denka1be4762008-05-20 16:00:29 +0200830 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000831 putstr(" ** ERROR ** ");
832 putnstr(jDir->name, jDir->nsize);
833 putLabeledWord(" has dup version =", version);
834 }
835 inode = jDir->ino;
836 version = jDir->version;
837 }
838#if 0
839 putstr("\r\nfind_inode:p&l ->");
840 putnstr(jDir->name, jDir->nsize);
841 putstr("\r\n");
842 putLabeledWord("pino = ", jDir->pino);
843 putLabeledWord("nsize = ", jDir->nsize);
844 putLabeledWord("b = ", (u32) b);
845 putLabeledWord("counter = ", counter);
846#endif
Ilya Yanoke7fd6712008-11-13 19:49:34 +0300847 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000848 }
849 return inode;
850}
851
wdenkad276f22004-01-04 16:28:35 +0000852char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000853{
wdenk6b58f332003-03-14 20:47:52 +0000854 static const char *l = "xwr";
855 int mask = 1, i;
856 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000857
wdenk6b58f332003-03-14 20:47:52 +0000858 switch (mode & S_IFMT) {
859 case S_IFDIR: str[0] = 'd'; break;
860 case S_IFBLK: str[0] = 'b'; break;
861 case S_IFCHR: str[0] = 'c'; break;
862 case S_IFIFO: str[0] = 'f'; break;
863 case S_IFLNK: str[0] = 'l'; break;
864 case S_IFSOCK: str[0] = 's'; break;
865 case S_IFREG: str[0] = '-'; break;
866 default: str[0] = '?';
867 }
wdenkfe8c2802002-11-03 00:38:21 +0000868
wdenk6b58f332003-03-14 20:47:52 +0000869 for(i = 0; i < 9; i++) {
870 c = l[i%3];
871 str[9-i] = (mode & mask)?c:'-';
872 mask = mask<<1;
873 }
wdenkfe8c2802002-11-03 00:38:21 +0000874
wdenk6b58f332003-03-14 20:47:52 +0000875 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
876 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
877 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
878 str[10] = '\0';
879 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000880}
881
882static inline void dump_stat(struct stat *st, const char *name)
883{
wdenk6b58f332003-03-14 20:47:52 +0000884 char str[20];
885 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000886
wdenk6b58f332003-03-14 20:47:52 +0000887 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
888 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000889
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200890 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000891
wdenk6b58f332003-03-14 20:47:52 +0000892 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
893 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000894
895/*
wdenk6b58f332003-03-14 20:47:52 +0000896 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
897 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000898*/
899
wdenk6b58f332003-03-14 20:47:52 +0000900 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000901}
902
903static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
904{
905 char fname[256];
906 struct stat st;
907
908 if(!d || !i) return -1;
909
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200910 strncpy(fname, (char *)d->name, d->nsize);
wdenk6b58f332003-03-14 20:47:52 +0000911 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000912
913 memset(&st,0,sizeof(st));
914
wdenk6b58f332003-03-14 20:47:52 +0000915 st.st_mtime = i->mtime;
916 st.st_mode = i->mode;
917 st.st_ino = i->ino;
Ilya Yanokc4785fb2008-11-13 19:49:31 +0300918 st.st_size = i->isize;
wdenkfe8c2802002-11-03 00:38:21 +0000919
920 dump_stat(&st, fname);
921
922 if (d->type == DT_LNK) {
923 unsigned char *src = (unsigned char *) (&i[1]);
924 putstr(" -> ");
925 putnstr(src, (int)i->dsize);
926 }
927
928 putstr("\r\n");
929
930 return 0;
931}
932
933/* list inodes with the given pino */
934static u32
935jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
936{
937 struct b_node *b;
938 struct jffs2_raw_dirent *jDir;
939
wdenk6b58f332003-03-14 20:47:52 +0000940 for (b = pL->dir.listHead; b; b = b->next) {
Petr Borsodi80c25b12020-05-07 12:25:56 +0200941 if (pino == b->pino) {
wdenk6b58f332003-03-14 20:47:52 +0000942 u32 i_version = 0;
Petr Borsodi80c25b12020-05-07 12:25:56 +0200943 int i_offset = -1;
944 struct jffs2_raw_inode *jNode = NULL;
Mark Tomlinson29468522015-07-01 16:38:24 +1200945 struct b_node *b2;
wdenkfe8c2802002-11-03 00:38:21 +0000946
Petr Borsodi80c25b12020-05-07 12:25:56 +0200947 jDir = (struct jffs2_raw_dirent *)
948 get_node_mem(b->offset, pL->readbuf);
Mark Tomlinson29468522015-07-01 16:38:24 +1200949#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
950 /* Check for more recent versions of this file */
951 int match;
952 do {
953 struct b_node *next = b->next;
954 struct jffs2_raw_dirent *jDirNext;
955 if (!next)
956 break;
957 jDirNext = (struct jffs2_raw_dirent *)
958 get_node_mem(next->offset, NULL);
959 match = jDirNext->pino == jDir->pino &&
960 jDirNext->nsize == jDir->nsize &&
961 strncmp((char *)jDirNext->name,
962 (char *)jDir->name,
963 jDir->nsize) == 0;
964 if (match) {
965 /* Use next. It is more recent */
966 b = next;
967 /* Update buffer with the new info */
968 *jDir = *jDirNext;
969 }
970 put_fl_mem(jDirNext, NULL);
971 } while (match);
972#endif
973 if (jDir->ino == 0) {
974 /* Deleted file */
975 put_fl_mem(jDir, pL->readbuf);
976 continue;
977 }
978
979 for (b2 = pL->frag.listHead; b2; b2 = b2->next) {
Petr Borsodi80c25b12020-05-07 12:25:56 +0200980 if (b2->ino == jDir->ino &&
981 b2->version >= i_version) {
982 i_version = b2->version;
983 i_offset = b2->offset;
wdenkf248ebc2004-05-05 19:44:41 +0000984 }
wdenkfe8c2802002-11-03 00:38:21 +0000985 }
986
Petr Borsodi80c25b12020-05-07 12:25:56 +0200987 if (i_version >= 0) {
988 if (jDir->type == DT_LNK)
989 jNode = get_node_mem(i_offset, NULL);
990 else
991 jNode = get_fl_mem(i_offset,
992 sizeof(*jNode),
993 NULL);
994 }
995
996 dump_inode(pL, jDir, jNode);
997 put_fl_mem(jNode, NULL);
998
999 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001000 }
1001 }
1002 return pino;
1003}
1004
1005static u32
1006jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
1007{
1008 int i;
1009 char tmp[256];
1010 char working_tmp[256];
1011 char *c;
1012
1013 /* discard any leading slash */
1014 i = 0;
1015 while (fname[i] == '/')
1016 i++;
1017 strcpy(tmp, &fname[i]);
1018
1019 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1020 {
1021 strncpy(working_tmp, tmp, c - tmp);
1022 working_tmp[c - tmp] = '\0';
1023#if 0
1024 putstr("search_inode: tmp = ");
1025 putstr(tmp);
1026 putstr("\r\n");
1027 putstr("search_inode: wtmp = ");
1028 putstr(working_tmp);
1029 putstr("\r\n");
1030 putstr("search_inode: c = ");
1031 putstr(c);
1032 putstr("\r\n");
1033#endif
1034 for (i = 0; i < strlen(c) - 1; i++)
1035 tmp[i] = c[i + 1];
1036 tmp[i] = '\0';
1037#if 0
1038 putstr("search_inode: post tmp = ");
1039 putstr(tmp);
1040 putstr("\r\n");
1041#endif
1042
1043 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1044 putstr("find_inode failed for name=");
1045 putstr(working_tmp);
1046 putstr("\r\n");
1047 return 0;
1048 }
1049 }
1050 /* this is for the bare filename, directories have already been mapped */
1051 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1052 putstr("find_inode failed for name=");
1053 putstr(tmp);
1054 putstr("\r\n");
1055 return 0;
1056 }
1057 return pino;
1058
1059}
1060
1061static u32
1062jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1063{
1064 struct b_node *b;
1065 struct b_node *b2;
1066 struct jffs2_raw_dirent *jDir;
1067 struct jffs2_raw_inode *jNode;
wdenk8886a662004-04-18 19:43:36 +00001068 u8 jDirFoundType = 0;
1069 u32 jDirFoundIno = 0;
1070 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001071 char tmp[256];
1072 u32 version = 0;
1073 u32 pino;
1074 unsigned char *src;
1075
1076 /* we need to search all and return the inode with the highest version */
wdenk6b58f332003-03-14 20:47:52 +00001077 for(b = pL->dir.listHead; b; b = b->next) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001078 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1079 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001080 if (ino == jDir->ino) {
Wolfgang Denka1be4762008-05-20 16:00:29 +02001081 if (jDir->version < version) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001082 put_fl_mem(jDir, pL->readbuf);
wdenk2c9b05d2003-09-10 22:30:53 +00001083 continue;
wdenk8886a662004-04-18 19:43:36 +00001084 }
wdenkfe8c2802002-11-03 00:38:21 +00001085
wdenk8886a662004-04-18 19:43:36 +00001086 if (jDir->version == version && jDirFoundType) {
Wolfgang Denka1be4762008-05-20 16:00:29 +02001087 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001088 putstr(" ** ERROR ** ");
1089 putnstr(jDir->name, jDir->nsize);
1090 putLabeledWord(" has dup version (resolve) = ",
1091 version);
1092 }
1093
wdenk8886a662004-04-18 19:43:36 +00001094 jDirFoundType = jDir->type;
1095 jDirFoundIno = jDir->ino;
1096 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001097 version = jDir->version;
1098 }
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001099 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001100 }
1101 /* now we found the right entry again. (shoulda returned inode*) */
wdenk8886a662004-04-18 19:43:36 +00001102 if (jDirFoundType != DT_LNK)
1103 return jDirFoundIno;
wdenk6b58f332003-03-14 20:47:52 +00001104
1105 /* it's a soft link so we follow it again. */
1106 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001107 while (b2) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001108 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset,
1109 pL->readbuf);
wdenk8886a662004-04-18 19:43:36 +00001110 if (jNode->ino == jDirFoundIno) {
wdenk6c59edc2004-05-03 20:45:30 +00001111 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001112
1113#if 0
1114 putLabeledWord("\t\t dsize = ", jNode->dsize);
1115 putstr("\t\t target = ");
1116 putnstr(src, jNode->dsize);
1117 putstr("\r\n");
1118#endif
Wolfgang Denk7fb52662005-10-13 16:45:02 +02001119 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001120 tmp[jNode->dsize] = '\0';
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001121 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001122 break;
1123 }
1124 b2 = b2->next;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001125 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001126 }
1127 /* ok so the name of the new file to find is in tmp */
1128 /* if it starts with a slash it is root based else shared dirs */
1129 if (tmp[0] == '/')
1130 pino = 1;
1131 else
wdenk8886a662004-04-18 19:43:36 +00001132 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001133
1134 return jffs2_1pass_search_inode(pL, tmp, pino);
1135}
1136
1137static u32
1138jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1139{
1140 int i;
1141 char tmp[256];
1142 char working_tmp[256];
1143 char *c;
1144
1145 /* discard any leading slash */
1146 i = 0;
1147 while (fname[i] == '/')
1148 i++;
1149 strcpy(tmp, &fname[i]);
1150 working_tmp[0] = '\0';
1151 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1152 {
1153 strncpy(working_tmp, tmp, c - tmp);
1154 working_tmp[c - tmp] = '\0';
1155 for (i = 0; i < strlen(c) - 1; i++)
1156 tmp[i] = c[i + 1];
1157 tmp[i] = '\0';
1158 /* only a failure if we arent looking at top level */
wdenk6b58f332003-03-14 20:47:52 +00001159 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1160 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001161 putstr("find_inode failed for name=");
1162 putstr(working_tmp);
1163 putstr("\r\n");
1164 return 0;
1165 }
1166 }
1167
1168 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1169 putstr("find_inode failed for name=");
1170 putstr(tmp);
1171 putstr("\r\n");
1172 return 0;
1173 }
1174 /* this is for the bare filename, directories have already been mapped */
1175 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1176 putstr("find_inode failed for name=");
1177 putstr(tmp);
1178 putstr("\r\n");
1179 return 0;
1180 }
1181 return pino;
1182
1183}
1184
1185unsigned char
1186jffs2_1pass_rescan_needed(struct part_info *part)
1187{
1188 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001189 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001190 struct jffs2_unknown_node *node;
wdenk6b58f332003-03-14 20:47:52 +00001191 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001192
1193 if (part->jffs2_priv == 0){
1194 DEBUGF ("rescan: First time in use\n");
1195 return 1;
1196 }
Wolfgang Denk47f57792005-08-08 01:03:24 +02001197
wdenkfe8c2802002-11-03 00:38:21 +00001198 /* if we have no list, we need to rescan */
wdenk6b58f332003-03-14 20:47:52 +00001199 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001200 DEBUGF ("rescan: fraglist zero\n");
1201 return 1;
1202 }
1203
wdenk6b58f332003-03-14 20:47:52 +00001204 /* but suppose someone reflashed a partition at the same offset... */
1205 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001206 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001207 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1208 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001209 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk6b58f332003-03-14 20:47:52 +00001210 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1211 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001212 return 1;
1213 }
1214 b = b->next;
1215 }
1216 return 0;
1217}
wdenk6b58f332003-03-14 20:47:52 +00001218
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001219#ifdef CONFIG_JFFS2_SUMMARY
1220static u32 sum_get_unaligned32(u32 *ptr)
1221{
1222 u32 val;
1223 u8 *p = (u8 *)ptr;
1224
1225 val = *p | (*(p + 1) << 8) | (*(p + 2) << 16) | (*(p + 3) << 24);
1226
1227 return __le32_to_cpu(val);
1228}
1229
1230static u16 sum_get_unaligned16(u16 *ptr)
1231{
1232 u16 val;
1233 u8 *p = (u8 *)ptr;
1234
1235 val = *p | (*(p + 1) << 8);
1236
1237 return __le16_to_cpu(val);
1238}
1239
Ilya Yanoka933bd62008-11-13 19:49:35 +03001240#define dbg_summary(...) do {} while (0);
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001241/*
1242 * Process the stored summary information - helper function for
Ilya Yanoka933bd62008-11-13 19:49:35 +03001243 * jffs2_sum_scan_sumnode()
1244 */
1245
1246static int jffs2_sum_process_sum_data(struct part_info *part, uint32_t offset,
1247 struct jffs2_raw_summary *summary,
1248 struct b_lists *pL)
1249{
1250 void *sp;
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001251 int i, pass;
Petr Borsodi80c25b12020-05-07 12:25:56 +02001252 struct b_node *b;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001253
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001254 for (pass = 0; pass < 2; pass++) {
1255 sp = summary->sum;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001256
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001257 for (i = 0; i < summary->sum_num; i++) {
1258 struct jffs2_sum_unknown_flash *spu = sp;
1259 dbg_summary("processing summary index %d\n", i);
Ilya Yanoka933bd62008-11-13 19:49:35 +03001260
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001261 switch (sum_get_unaligned16(&spu->nodetype)) {
1262 case JFFS2_NODETYPE_INODE: {
Ilya Yanoka933bd62008-11-13 19:49:35 +03001263 struct jffs2_sum_inode_flash *spi;
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001264 if (pass) {
1265 spi = sp;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001266
Petr Borsodi80c25b12020-05-07 12:25:56 +02001267 b = insert_node(&pL->frag);
1268 if (!b)
1269 return -1;
1270 b->offset = (u32)part->offset +
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001271 offset +
1272 sum_get_unaligned32(
Petr Borsodi80c25b12020-05-07 12:25:56 +02001273 &spi->offset);
1274 b->version = sum_get_unaligned32(
1275 &spi->version);
1276 b->ino = sum_get_unaligned32(
1277 &spi->inode);
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001278 }
Ilya Yanoka933bd62008-11-13 19:49:35 +03001279
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001280 sp += JFFS2_SUMMARY_INODE_SIZE;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001281
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001282 break;
1283 }
1284 case JFFS2_NODETYPE_DIRENT: {
1285 struct jffs2_sum_dirent_flash *spd;
1286 spd = sp;
1287 if (pass) {
Petr Borsodi80c25b12020-05-07 12:25:56 +02001288 b = insert_node(&pL->dir);
1289 if (!b)
1290 return -1;
1291 b->offset = (u32)part->offset +
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001292 offset +
1293 sum_get_unaligned32(
Petr Borsodi80c25b12020-05-07 12:25:56 +02001294 &spd->offset);
1295 b->version = sum_get_unaligned32(
1296 &spd->version);
1297 b->pino = sum_get_unaligned32(
1298 &spd->pino);
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001299 }
Ilya Yanoka933bd62008-11-13 19:49:35 +03001300
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001301 sp += JFFS2_SUMMARY_DIRENT_SIZE(
1302 spd->nsize);
Ilya Yanoka933bd62008-11-13 19:49:35 +03001303
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001304 break;
1305 }
1306 default : {
1307 uint16_t nodetype = sum_get_unaligned16(
1308 &spu->nodetype);
1309 printf("Unsupported node type %x found"
1310 " in summary!\n",
1311 nodetype);
1312 if ((nodetype & JFFS2_COMPAT_MASK) ==
1313 JFFS2_FEATURE_INCOMPAT)
1314 return -EIO;
1315 return -EBADMSG;
1316 }
Ilya Yanoka933bd62008-11-13 19:49:35 +03001317 }
1318 }
1319 }
1320 return 0;
1321}
1322
1323/* Process the summary node - called from jffs2_scan_eraseblock() */
1324int jffs2_sum_scan_sumnode(struct part_info *part, uint32_t offset,
1325 struct jffs2_raw_summary *summary, uint32_t sumsize,
1326 struct b_lists *pL)
1327{
1328 struct jffs2_unknown_node crcnode;
Tom Rini7c4734d2016-03-27 14:48:36 -04001329 int ret, __maybe_unused ofs;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001330 uint32_t crc;
1331
1332 ofs = part->sector_size - sumsize;
1333
1334 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
1335 offset, offset + ofs, sumsize);
1336
1337 /* OK, now check for node validity and CRC */
1338 crcnode.magic = JFFS2_MAGIC_BITMASK;
1339 crcnode.nodetype = JFFS2_NODETYPE_SUMMARY;
1340 crcnode.totlen = summary->totlen;
1341 crc = crc32_no_comp(0, (uchar *)&crcnode, sizeof(crcnode)-4);
1342
1343 if (summary->hdr_crc != crc) {
1344 dbg_summary("Summary node header is corrupt (bad CRC or "
1345 "no summary at all)\n");
1346 goto crc_err;
1347 }
1348
1349 if (summary->totlen != sumsize) {
1350 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
1351 goto crc_err;
1352 }
1353
1354 crc = crc32_no_comp(0, (uchar *)summary,
1355 sizeof(struct jffs2_raw_summary)-8);
1356
1357 if (summary->node_crc != crc) {
1358 dbg_summary("Summary node is corrupt (bad CRC)\n");
1359 goto crc_err;
1360 }
1361
1362 crc = crc32_no_comp(0, (uchar *)summary->sum,
1363 sumsize - sizeof(struct jffs2_raw_summary));
1364
1365 if (summary->sum_crc != crc) {
1366 dbg_summary("Summary node data is corrupt (bad CRC)\n");
1367 goto crc_err;
1368 }
1369
1370 if (summary->cln_mkr)
1371 dbg_summary("Summary : CLEANMARKER node \n");
1372
1373 ret = jffs2_sum_process_sum_data(part, offset, summary, pL);
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001374 if (ret == -EBADMSG)
1375 return 0;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001376 if (ret)
1377 return ret; /* real error */
1378
1379 return 1;
1380
1381crc_err:
1382 putstr("Summary node crc error, skipping summary information.\n");
1383
1384 return 0;
1385}
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001386#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanoka933bd62008-11-13 19:49:35 +03001387
wdenk6b58f332003-03-14 20:47:52 +00001388#ifdef DEBUG_FRAGMENTS
1389static void
1390dump_fragments(struct b_lists *pL)
1391{
1392 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001393 struct jffs2_raw_inode ojNode;
wdenk6b58f332003-03-14 20:47:52 +00001394 struct jffs2_raw_inode *jNode;
1395
1396 putstr("\r\n\r\n******The fragment Entries******\r\n");
1397 b = pL->frag.listHead;
1398 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001399 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1400 sizeof(ojNode), &ojNode);
wdenk6b58f332003-03-14 20:47:52 +00001401 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1402 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1403 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1404 putLabeledWord("\tbuild_list: version = ", jNode->version);
1405 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1406 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1407 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1408 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1409 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1410 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1411 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1412 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk57b2d802003-06-27 21:31:46 +00001413 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk6b58f332003-03-14 20:47:52 +00001414 b = b->next;
1415 }
1416}
1417#endif
1418
1419#ifdef DEBUG_DIRENTS
1420static void
1421dump_dirents(struct b_lists *pL)
1422{
1423 struct b_node *b;
1424 struct jffs2_raw_dirent *jDir;
1425
1426 putstr("\r\n\r\n******The directory Entries******\r\n");
1427 b = pL->dir.listHead;
1428 while (b) {
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001429 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1430 pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +00001431 putstr("\r\n");
1432 putnstr(jDir->name, jDir->nsize);
1433 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1434 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1435 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1436 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1437 putLabeledWord("\tbuild_list: version = ", jDir->version);
1438 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1439 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1440 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1441 putLabeledWord("\tbuild_list: type = ", jDir->type);
1442 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1443 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denka1be4762008-05-20 16:00:29 +02001444 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk6b58f332003-03-14 20:47:52 +00001445 b = b->next;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001446 put_fl_mem(jDir, pL->readbuf);
wdenk6b58f332003-03-14 20:47:52 +00001447 }
1448}
1449#endif
wdenkfe8c2802002-11-03 00:38:21 +00001450
Mark Tomlinsonf89bfd02015-07-01 16:38:27 +12001451#define DEFAULT_EMPTY_SCAN_SIZE 256
Ilya Yanokddb02692008-11-13 19:49:33 +03001452
1453static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1454{
1455 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1456 return sector_size;
1457 else
1458 return DEFAULT_EMPTY_SCAN_SIZE;
1459}
1460
wdenkfe8c2802002-11-03 00:38:21 +00001461static u32
1462jffs2_1pass_build_lists(struct part_info * part)
1463{
1464 struct b_lists *pL;
Petr Borsodia61d1d12020-05-07 12:25:55 +02001465 union jffs2_node_union *node;
Tom Rini3cd84d62013-12-05 14:48:38 -05001466 u32 nr_sectors;
Ilya Yanokddb02692008-11-13 19:49:33 +03001467 u32 i;
wdenkfe8c2802002-11-03 00:38:21 +00001468 u32 counter4 = 0;
1469 u32 counterF = 0;
1470 u32 counterN = 0;
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001471 u32 max_totlen = 0;
Mark Tomlinsonef619822015-07-01 16:38:26 +12001472 u32 buf_size;
Ilya Yanokddb02692008-11-13 19:49:33 +03001473 char *buf;
wdenkfe8c2802002-11-03 00:38:21 +00001474
Tom Rini3cd84d62013-12-05 14:48:38 -05001475 nr_sectors = lldiv(part->size, part->sector_size);
wdenkfe8c2802002-11-03 00:38:21 +00001476 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1477 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1478 /* only about 5 %. not enough to inconvenience people for. */
1479 /* lcd_off(); */
1480
1481 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001482 jffs_init_1pass_list(part);
wdenk6b58f332003-03-14 20:47:52 +00001483 pL = (struct b_lists *)part->jffs2_priv;
Mark Tomlinsonef619822015-07-01 16:38:26 +12001484 buf = malloc(DEFAULT_EMPTY_SCAN_SIZE);
wdenk42c05472004-03-23 22:14:11 +00001485 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001486
1487 /* start at the beginning of the partition */
Ilya Yanokddb02692008-11-13 19:49:33 +03001488 for (i = 0; i < nr_sectors; i++) {
1489 uint32_t sector_ofs = i * part->sector_size;
1490 uint32_t buf_ofs = sector_ofs;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001491 uint32_t buf_len;
Ilya Yanokddb02692008-11-13 19:49:33 +03001492 uint32_t ofs, prevofs;
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001493#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanoka933bd62008-11-13 19:49:35 +03001494 struct jffs2_sum_marker *sm;
1495 void *sumptr = NULL;
1496 uint32_t sumlen;
1497 int ret;
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001498#endif
Mark Tomlinson56a7f482015-07-01 16:38:28 +12001499 /* Indicates a sector with a CLEANMARKER was found */
1500 int clean_sector = 0;
Petr Borsodia61d1d12020-05-07 12:25:55 +02001501 struct jffs2_unknown_node crcnode;
Petr Borsodi80c25b12020-05-07 12:25:56 +02001502 struct b_node *b;
wdenk7ad5e4c2004-04-25 15:41:35 +00001503
Mark Tomlinsonef619822015-07-01 16:38:26 +12001504 /* Set buf_size to maximum length */
1505 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
Stuart Wood471a2f02008-06-02 16:40:08 -04001506 WATCHDOG_RESET();
Ilya Yanoka933bd62008-11-13 19:49:35 +03001507
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001508#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanoka933bd62008-11-13 19:49:35 +03001509 buf_len = sizeof(*sm);
1510
1511 /* Read as much as we want into the _end_ of the preallocated
1512 * buffer
1513 */
1514 get_fl_mem(part->offset + sector_ofs + part->sector_size -
1515 buf_len, buf_len, buf + buf_size - buf_len);
1516
1517 sm = (void *)buf + buf_size - sizeof(*sm);
1518 if (sm->magic == JFFS2_SUM_MAGIC) {
1519 sumlen = part->sector_size - sm->offset;
1520 sumptr = buf + buf_size - sumlen;
1521
1522 /* Now, make sure the summary itself is available */
1523 if (sumlen > buf_size) {
1524 /* Need to kmalloc for this. */
1525 sumptr = malloc(sumlen);
1526 if (!sumptr) {
1527 putstr("Can't get memory for summary "
1528 "node!\n");
Ilya Yanoka87011e2009-08-12 16:42:48 +04001529 free(buf);
1530 jffs2_free_cache(part);
Ilya Yanoka933bd62008-11-13 19:49:35 +03001531 return 0;
1532 }
1533 memcpy(sumptr + sumlen - buf_len, buf +
1534 buf_size - buf_len, buf_len);
1535 }
1536 if (buf_len < sumlen) {
1537 /* Need to read more so that the entire summary
1538 * node is present
1539 */
1540 get_fl_mem(part->offset + sector_ofs +
1541 part->sector_size - sumlen,
1542 sumlen - buf_len, sumptr);
1543 }
1544 }
1545
1546 if (sumptr) {
1547 ret = jffs2_sum_scan_sumnode(part, sector_ofs, sumptr,
1548 sumlen, pL);
1549
1550 if (buf_size && sumlen > buf_size)
1551 free(sumptr);
Ilya Yanoka87011e2009-08-12 16:42:48 +04001552 if (ret < 0) {
1553 free(buf);
1554 jffs2_free_cache(part);
Ilya Yanoka933bd62008-11-13 19:49:35 +03001555 return 0;
Ilya Yanoka87011e2009-08-12 16:42:48 +04001556 }
Ilya Yanoka933bd62008-11-13 19:49:35 +03001557 if (ret)
1558 continue;
1559
1560 }
Ilya Yanokbcaa1f72009-07-17 15:02:42 +04001561#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanoka933bd62008-11-13 19:49:35 +03001562
1563 buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1564
Ilya Yanokddb02692008-11-13 19:49:33 +03001565 get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
Stuart Wood471a2f02008-06-02 16:40:08 -04001566
Ilya Yanokddb02692008-11-13 19:49:33 +03001567 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1568 ofs = 0;
1569
1570 /* Scan only 4KiB of 0xFF before declaring it's empty */
1571 while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1572 *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1573 ofs += 4;
1574
1575 if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1576 continue;
1577
1578 ofs += sector_ofs;
1579 prevofs = ofs - 1;
Mark Tomlinsonef619822015-07-01 16:38:26 +12001580 /*
1581 * Set buf_size down to the minimum size required.
1582 * This prevents reading in chunks of flash data unnecessarily.
1583 */
1584 buf_size = sizeof(union jffs2_node_union);
Ilya Yanokddb02692008-11-13 19:49:33 +03001585
1586 scan_more:
1587 while (ofs < sector_ofs + part->sector_size) {
1588 if (ofs == prevofs) {
1589 printf("offset %08x already seen, skip\n", ofs);
1590 ofs += 4;
1591 counter4++;
1592 continue;
1593 }
1594 prevofs = ofs;
1595 if (sector_ofs + part->sector_size <
Petr Borsodia61d1d12020-05-07 12:25:55 +02001596 ofs + sizeof(struct jffs2_unknown_node))
Ilya Yanokddb02692008-11-13 19:49:33 +03001597 break;
Petr Borsodia61d1d12020-05-07 12:25:55 +02001598 if (buf_ofs + buf_len <
1599 ofs + sizeof(struct jffs2_unknown_node)) {
Ilya Yanokddb02692008-11-13 19:49:33 +03001600 buf_len = min_t(uint32_t, buf_size, sector_ofs
1601 + part->sector_size - ofs);
1602 get_fl_mem((u32)part->offset + ofs, buf_len,
1603 buf);
1604 buf_ofs = ofs;
1605 }
1606
Petr Borsodia61d1d12020-05-07 12:25:55 +02001607 node = (union jffs2_node_union *)&buf[ofs - buf_ofs];
Ilya Yanokddb02692008-11-13 19:49:33 +03001608
1609 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1610 uint32_t inbuf_ofs;
Wolfgang Denkbf913c12011-10-05 22:58:11 +02001611 uint32_t scan_end;
Ilya Yanokddb02692008-11-13 19:49:33 +03001612
Ilya Yanokddb02692008-11-13 19:49:33 +03001613 ofs += 4;
1614 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1615 part->sector_size)/8,
1616 buf_len);
1617 more_empty:
1618 inbuf_ofs = ofs - buf_ofs;
1619 while (inbuf_ofs < scan_end) {
1620 if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1621 0xffffffff)
1622 goto scan_more;
1623
1624 inbuf_ofs += 4;
1625 ofs += 4;
1626 }
1627 /* Ran off end. */
Mark Tomlinson56a7f482015-07-01 16:38:28 +12001628 /*
1629 * If this sector had a clean marker at the
1630 * beginning, and immediately following this
1631 * have been a bunch of FF bytes, treat the
1632 * entire sector as empty.
1633 */
1634 if (clean_sector)
1635 break;
Ilya Yanokddb02692008-11-13 19:49:33 +03001636
1637 /* See how much more there is to read in this
1638 * eraseblock...
1639 */
1640 buf_len = min_t(uint32_t, buf_size,
1641 sector_ofs +
1642 part->sector_size - ofs);
1643 if (!buf_len) {
1644 /* No more to read. Break out of main
1645 * loop without marking this range of
1646 * empty space as dirty (because it's
1647 * not)
1648 */
1649 break;
1650 }
1651 scan_end = buf_len;
1652 get_fl_mem((u32)part->offset + ofs, buf_len,
1653 buf);
1654 buf_ofs = ofs;
1655 goto more_empty;
1656 }
Mark Tomlinson56a7f482015-07-01 16:38:28 +12001657 /*
1658 * Found something not erased in the sector, so reset
1659 * the 'clean_sector' flag.
1660 */
1661 clean_sector = 0;
Petr Borsodia61d1d12020-05-07 12:25:55 +02001662 if (node->u.magic != JFFS2_MAGIC_BITMASK) {
Ilya Yanokddb02692008-11-13 19:49:33 +03001663 ofs += 4;
1664 counter4++;
1665 continue;
1666 }
Petr Borsodia61d1d12020-05-07 12:25:55 +02001667
1668 crcnode.magic = node->u.magic;
1669 crcnode.nodetype = node->u.nodetype | JFFS2_NODE_ACCURATE;
1670 crcnode.totlen = node->u.totlen;
1671 crcnode.hdr_crc = node->u.hdr_crc;
1672 if (!hdr_crc(&crcnode)) {
1673 ofs += 4;
1674 counter4++;
1675 continue;
1676 }
1677
1678 if (ofs + node->u.totlen > sector_ofs + part->sector_size) {
Ilya Yanokddb02692008-11-13 19:49:33 +03001679 ofs += 4;
1680 counter4++;
1681 continue;
1682 }
Petr Borsodia61d1d12020-05-07 12:25:55 +02001683
1684 if (!(node->u.nodetype & JFFS2_NODE_ACCURATE)) {
1685 DEBUGF("Obsolete node type: %x len %d offset 0x%x\n",
1686 node->u.nodetype, node->u.totlen, ofs);
1687 ofs += ((node->u.totlen + 3) & ~3);
1688 counterF++;
1689 continue;
1690 }
1691
wdenkfe8c2802002-11-03 00:38:21 +00001692 /* if its a fragment add it */
Petr Borsodia61d1d12020-05-07 12:25:55 +02001693 switch (node->u.nodetype) {
Ilya Yanokddb02692008-11-13 19:49:33 +03001694 case JFFS2_NODETYPE_INODE:
Petr Borsodia61d1d12020-05-07 12:25:55 +02001695 if (buf_ofs + buf_len <
1696 ofs + sizeof(struct jffs2_raw_inode)) {
Mark Tomlinsonef619822015-07-01 16:38:26 +12001697 buf_len = min_t(uint32_t,
1698 sizeof(struct jffs2_raw_inode),
1699 sector_ofs +
1700 part->sector_size -
1701 ofs);
Ilya Yanokddb02692008-11-13 19:49:33 +03001702 get_fl_mem((u32)part->offset + ofs,
1703 buf_len, buf);
1704 buf_ofs = ofs;
1705 node = (void *)buf;
1706 }
Mark Tomlinsonef619822015-07-01 16:38:26 +12001707 if (!inode_crc((struct jffs2_raw_inode *)node))
1708 break;
Ilya Yanokddb02692008-11-13 19:49:33 +03001709
Petr Borsodi80c25b12020-05-07 12:25:56 +02001710 b = insert_node(&pL->frag);
1711 if (!b) {
Ilya Yanoka87011e2009-08-12 16:42:48 +04001712 free(buf);
1713 jffs2_free_cache(part);
wdenkfe8c2802002-11-03 00:38:21 +00001714 return 0;
Ilya Yanoka87011e2009-08-12 16:42:48 +04001715 }
Petr Borsodi80c25b12020-05-07 12:25:56 +02001716 b->offset = (u32)part->offset + ofs;
1717 b->version = node->i.version;
1718 b->ino = node->i.ino;
Petr Borsodia61d1d12020-05-07 12:25:55 +02001719 if (max_totlen < node->u.totlen)
1720 max_totlen = node->u.totlen;
Ilya Yanokddb02692008-11-13 19:49:33 +03001721 break;
1722 case JFFS2_NODETYPE_DIRENT:
1723 if (buf_ofs + buf_len < ofs + sizeof(struct
1724 jffs2_raw_dirent) +
1725 ((struct
1726 jffs2_raw_dirent *)
1727 node)->nsize) {
Mark Tomlinsonef619822015-07-01 16:38:26 +12001728 buf_len = min_t(uint32_t,
Petr Borsodia61d1d12020-05-07 12:25:55 +02001729 node->u.totlen,
Mark Tomlinsonef619822015-07-01 16:38:26 +12001730 sector_ofs +
1731 part->sector_size -
1732 ofs);
Ilya Yanokddb02692008-11-13 19:49:33 +03001733 get_fl_mem((u32)part->offset + ofs,
1734 buf_len, buf);
1735 buf_ofs = ofs;
1736 node = (void *)buf;
wdenk8886a662004-04-18 19:43:36 +00001737 }
Ilya Yanokddb02692008-11-13 19:49:33 +03001738
1739 if (!dirent_crc((struct jffs2_raw_dirent *)
1740 node) ||
1741 !dirent_name_crc(
1742 (struct
1743 jffs2_raw_dirent *)
1744 node))
1745 break;
wdenk7ad5e4c2004-04-25 15:41:35 +00001746 if (! (counterN%100))
wdenk42c05472004-03-23 22:14:11 +00001747 puts ("\b\b. ");
Petr Borsodi80c25b12020-05-07 12:25:56 +02001748 b = insert_node(&pL->dir);
1749 if (!b) {
Ilya Yanoka87011e2009-08-12 16:42:48 +04001750 free(buf);
1751 jffs2_free_cache(part);
wdenkfe8c2802002-11-03 00:38:21 +00001752 return 0;
Ilya Yanoka87011e2009-08-12 16:42:48 +04001753 }
Petr Borsodi80c25b12020-05-07 12:25:56 +02001754 b->offset = (u32)part->offset + ofs;
1755 b->version = node->d.version;
1756 b->pino = node->d.pino;
Petr Borsodia61d1d12020-05-07 12:25:55 +02001757 if (max_totlen < node->u.totlen)
1758 max_totlen = node->u.totlen;
wdenkfe8c2802002-11-03 00:38:21 +00001759 counterN++;
Ilya Yanokddb02692008-11-13 19:49:33 +03001760 break;
1761 case JFFS2_NODETYPE_CLEANMARKER:
Petr Borsodia61d1d12020-05-07 12:25:55 +02001762 if (node->u.totlen != sizeof(struct jffs2_unknown_node))
wdenk6b58f332003-03-14 20:47:52 +00001763 printf("OOPS Cleanmarker has bad size "
Wolfgang Denk509cd072008-07-14 15:06:35 +02001764 "%d != %zu\n",
Petr Borsodia61d1d12020-05-07 12:25:55 +02001765 node->u.totlen,
wdenk6b58f332003-03-14 20:47:52 +00001766 sizeof(struct jffs2_unknown_node));
Petr Borsodia61d1d12020-05-07 12:25:55 +02001767 if (node->u.totlen ==
1768 sizeof(struct jffs2_unknown_node) &&
1769 ofs == sector_ofs) {
Mark Tomlinson56a7f482015-07-01 16:38:28 +12001770 /*
1771 * Found a CLEANMARKER at the beginning
1772 * of the sector. It's in the correct
1773 * place with correct size and CRC.
1774 */
1775 clean_sector = 1;
1776 }
Ilya Yanokddb02692008-11-13 19:49:33 +03001777 break;
1778 case JFFS2_NODETYPE_PADDING:
Petr Borsodia61d1d12020-05-07 12:25:55 +02001779 if (node->u.totlen <
1780 sizeof(struct jffs2_unknown_node))
wdenk2c9b05d2003-09-10 22:30:53 +00001781 printf("OOPS Padding has bad size "
Wolfgang Denk509cd072008-07-14 15:06:35 +02001782 "%d < %zu\n",
Petr Borsodia61d1d12020-05-07 12:25:55 +02001783 node->u.totlen,
wdenk2c9b05d2003-09-10 22:30:53 +00001784 sizeof(struct jffs2_unknown_node));
Ilya Yanokddb02692008-11-13 19:49:33 +03001785 break;
Ilya Yanoka933bd62008-11-13 19:49:35 +03001786 case JFFS2_NODETYPE_SUMMARY:
1787 break;
Ilya Yanokddb02692008-11-13 19:49:33 +03001788 default:
Wolfgang Denk509cd072008-07-14 15:06:35 +02001789 printf("Unknown node type: %x len %d offset 0x%x\n",
Petr Borsodia61d1d12020-05-07 12:25:55 +02001790 node->u.nodetype,
1791 node->u.totlen, ofs);
wdenkfe8c2802002-11-03 00:38:21 +00001792 }
Petr Borsodia61d1d12020-05-07 12:25:55 +02001793 ofs += ((node->u.totlen + 3) & ~3);
wdenkfe8c2802002-11-03 00:38:21 +00001794 counterF++;
wdenkfe8c2802002-11-03 00:38:21 +00001795 }
wdenkfe8c2802002-11-03 00:38:21 +00001796 }
1797
Ilya Yanokddb02692008-11-13 19:49:33 +03001798 free(buf);
Mark Tomlinsonefdc2a62015-07-01 16:38:29 +12001799#if defined(CONFIG_SYS_JFFS2_SORT_FRAGMENTS)
1800 /*
1801 * Sort the lists.
1802 */
1803 sort_list(&pL->frag);
1804 sort_list(&pL->dir);
1805#endif
wdenkfe8c2802002-11-03 00:38:21 +00001806 putstr("\b\b done.\r\n"); /* close off the dots */
Ilya Yanoke7fd6712008-11-13 19:49:34 +03001807
1808 /* We don't care if malloc failed - then each read operation will
1809 * allocate its own buffer as necessary (NAND) or will read directly
1810 * from flash (NOR).
1811 */
1812 pL->readbuf = malloc(max_totlen);
1813
wdenkfe8c2802002-11-03 00:38:21 +00001814 /* turn the lcd back on. */
1815 /* splash(); */
1816
1817#if 0
wdenk6b58f332003-03-14 20:47:52 +00001818 putLabeledWord("dir entries = ", pL->dir.listCount);
1819 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001820 putLabeledWord("+4 increments = ", counter4);
1821 putLabeledWord("+file_offset increments = ", counterF);
1822
1823#endif
1824
wdenk6b58f332003-03-14 20:47:52 +00001825#ifdef DEBUG_DIRENTS
1826 dump_dirents(pL);
1827#endif
wdenkfe8c2802002-11-03 00:38:21 +00001828
wdenk6b58f332003-03-14 20:47:52 +00001829#ifdef DEBUG_FRAGMENTS
1830 dump_fragments(pL);
1831#endif
wdenkfe8c2802002-11-03 00:38:21 +00001832
wdenkfe8c2802002-11-03 00:38:21 +00001833 /* give visual feedback that we are done scanning the flash */
1834 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1835 return 1;
1836}
1837
1838
wdenkfe8c2802002-11-03 00:38:21 +00001839static u32
1840jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1841{
1842 struct b_node *b;
wdenk8886a662004-04-18 19:43:36 +00001843 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001844 struct jffs2_raw_inode *jNode;
1845 int i;
1846
wdenkfe8c2802002-11-03 00:38:21 +00001847 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1848 piL->compr_info[i].num_frags = 0;
1849 piL->compr_info[i].compr_sum = 0;
1850 piL->compr_info[i].decompr_sum = 0;
1851 }
1852
wdenk6b58f332003-03-14 20:47:52 +00001853 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001854 while (b) {
wdenk8886a662004-04-18 19:43:36 +00001855 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1856 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001857 if (jNode->compr < JFFS2_NUM_COMPR) {
1858 piL->compr_info[jNode->compr].num_frags++;
1859 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1860 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1861 }
1862 b = b->next;
1863 }
1864 return 0;
1865}
1866
1867
wdenkfe8c2802002-11-03 00:38:21 +00001868static struct b_lists *
1869jffs2_get_list(struct part_info * part, const char *who)
1870{
Wolfgang Denk47f57792005-08-08 01:03:24 +02001871 /* copy requested part_info struct pointer to global location */
1872 current_part = part;
1873
wdenkfe8c2802002-11-03 00:38:21 +00001874 if (jffs2_1pass_rescan_needed(part)) {
1875 if (!jffs2_1pass_build_lists(part)) {
1876 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1877 return NULL;
1878 }
1879 }
1880 return (struct b_lists *)part->jffs2_priv;
1881}
1882
1883
1884/* Print directory / file contents */
1885u32
1886jffs2_1pass_ls(struct part_info * part, const char *fname)
1887{
1888 struct b_lists *pl;
Wolfgang Denk79117cd2005-08-16 09:32:45 +02001889 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001890 u32 inode;
1891
wdenk6b58f332003-03-14 20:47:52 +00001892 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001893 return 0;
1894
1895 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1896 putstr("ls: Failed to scan jffs2 file structure\r\n");
1897 return 0;
1898 }
wdenk7ad5e4c2004-04-25 15:41:35 +00001899
1900
wdenkfe8c2802002-11-03 00:38:21 +00001901#if 0
1902 putLabeledWord("found file at inode = ", inode);
1903 putLabeledWord("read_inode returns = ", ret);
1904#endif
wdenk7ad5e4c2004-04-25 15:41:35 +00001905
1906 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001907}
1908
1909
wdenkfe8c2802002-11-03 00:38:21 +00001910/* Load a file from flash into memory. fname can be a full path */
1911u32
1912jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1913{
1914
1915 struct b_lists *pl;
Wolfgang Denk79117cd2005-08-16 09:32:45 +02001916 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001917 u32 inode;
1918
1919 if (! (pl = jffs2_get_list(part, "load")))
1920 return 0;
1921
1922 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1923 putstr("load: Failed to find inode\r\n");
1924 return 0;
1925 }
1926
1927 /* Resolve symlinks */
1928 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1929 putstr("load: Failed to resolve inode structure\r\n");
1930 return 0;
1931 }
1932
1933 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1934 putstr("load: Failed to read inode\r\n");
1935 return 0;
1936 }
1937
1938 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1939 (unsigned long) dest, ret);
1940 return ret;
1941}
1942
1943/* Return information about the fs on this partition */
1944u32
1945jffs2_1pass_info(struct part_info * part)
1946{
1947 struct b_jffs2_info info;
1948 struct b_lists *pl;
1949 int i;
1950
1951 if (! (pl = jffs2_get_list(part, "info")))
1952 return 0;
1953
1954 jffs2_1pass_fill_info(pl, &info);
wdenk6b58f332003-03-14 20:47:52 +00001955 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk42c05472004-03-23 22:14:11 +00001956 printf ("Compression: %s\n"
1957 "\tfrag count: %d\n"
1958 "\tcompressed sum: %d\n"
1959 "\tuncompressed sum: %d\n",
1960 compr_names[i],
1961 info.compr_info[i].num_frags,
1962 info.compr_info[i].compr_sum,
1963 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001964 }
1965 return 1;
1966}