blob: e58e7d25cff128b248db26b99b0f50a73428a9bf [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>
wdenkfe8c2802002-11-03 00:38:21 +0000118#include <linux/stat.h>
119#include <linux/time.h>
Stuart Wood86d32732008-06-02 16:40:08 -0400120#include <watchdog.h>
wdenkfe8c2802002-11-03 00:38:21 +0000121#include <jffs2/jffs2.h>
122#include <jffs2/jffs2_1pass.h>
Mike Frysinger7b15e2b2012-04-09 13:39:55 +0000123#include <linux/compat.h>
Ilya Yanok8cf19b92009-07-17 15:02:42 +0400124#include <asm/errno.h>
wdenkfe8c2802002-11-03 00:38:21 +0000125
126#include "jffs2_private.h"
127
wdenkfe8c2802002-11-03 00:38:21 +0000128
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200129#define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */
130#define SPIN_BLKSIZE 18 /* spin after having scanned 1<<BLKSIZE bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000131
wdenk06d01db2003-03-14 20:47:52 +0000132/* Debugging switches */
133#undef DEBUG_DIRENTS /* print directory entry list after scan */
134#undef DEBUG_FRAGMENTS /* print fragment list after scan */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200135#undef DEBUG /* enable debugging messages */
wdenk06d01db2003-03-14 20:47:52 +0000136
137
wdenkfe8c2802002-11-03 00:38:21 +0000138#ifdef DEBUG
139# define DEBUGF(fmt,args...) printf(fmt ,##args)
140#else
141# define DEBUGF(fmt,args...)
142#endif
143
Ilya Yanok9b707622008-11-13 19:49:35 +0300144#include "summary.h"
145
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200146/* keeps pointer to currentlu processed partition */
147static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000148
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200149#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500150 defined(CONFIG_CMD_NAND) )
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100151#include <nand.h>
wdenk998eaae2004-04-18 19:43:36 +0000152/*
153 * Support for jffs2 on top of NAND-flash
154 *
155 * NAND memory isn't mapped in processor's address space,
156 * so data should be fetched from flash before
157 * being processed. This is exactly what functions declared
158 * here do.
159 *
160 */
161
wdenk998eaae2004-04-18 19:43:36 +0000162#define NAND_PAGE_SIZE 512
163#define NAND_PAGE_SHIFT 9
164#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
165
166#ifndef NAND_CACHE_PAGES
167#define NAND_CACHE_PAGES 16
168#endif
169#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
170
171static u8* nand_cache = NULL;
172static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000173
174static int read_nand_cached(u32 off, u32 size, u_char *buf)
175{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200176 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000177 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200178 size_t retlen;
wdenk998eaae2004-04-18 19:43:36 +0000179 int cpy_bytes;
180
181 while (bytes_read < size) {
182 if ((off + bytes_read < nand_cache_off) ||
183 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
184 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
185 if (!nand_cache) {
186 /* This memory never gets freed but 'cause
187 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000188 nand_cache = malloc(NAND_CACHE_SIZE);
189 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000190 printf("read_nand_cached: can't alloc cache size %d bytes\n",
191 NAND_CACHE_SIZE);
192 return -1;
193 }
194 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100195
Marian Balakowicz6db39702006-04-08 19:08:06 +0200196 retlen = NAND_CACHE_SIZE;
197 if (nand_read(&nand_info[id->num], nand_cache_off,
198 &retlen, nand_cache) != 0 ||
199 retlen != NAND_CACHE_SIZE) {
200 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
201 nand_cache_off, NAND_CACHE_SIZE);
202 return -1;
203 }
wdenk998eaae2004-04-18 19:43:36 +0000204 }
205 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
206 if (cpy_bytes > size - bytes_read)
207 cpy_bytes = size - bytes_read;
208 memcpy(buf + bytes_read,
209 nand_cache + off + bytes_read - nand_cache_off,
210 cpy_bytes);
211 bytes_read += cpy_bytes;
212 }
213 return bytes_read;
214}
215
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200216static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000217{
218 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
219
220 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200221 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000222 return NULL;
223 }
224 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000225 if (!ext_buf)
226 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000227 return NULL;
228 }
229
230 return buf;
231}
232
Ilya Yanok70741002008-11-13 19:49:34 +0300233static void *get_node_mem_nand(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000234{
235 struct jffs2_unknown_node node;
236 void *ret = NULL;
237
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200238 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000239 return NULL;
240
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200241 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000242 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300243 ext_buf))) {
wdenk998eaae2004-04-18 19:43:36 +0000244 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
245 off, node.magic, node.nodetype, node.totlen);
246 }
247 return ret;
248}
249
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200250static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000251{
252 free(buf);
253}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500254#endif
wdenk998eaae2004-04-18 19:43:36 +0000255
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900256#if defined(CONFIG_CMD_ONENAND)
257
258#include <linux/mtd/mtd.h>
259#include <linux/mtd/onenand.h>
260#include <onenand_uboot.h>
261
262#define ONENAND_PAGE_SIZE 2048
263#define ONENAND_PAGE_SHIFT 11
264#define ONENAND_PAGE_MASK (~(ONENAND_PAGE_SIZE-1))
265
266#ifndef ONENAND_CACHE_PAGES
267#define ONENAND_CACHE_PAGES 4
268#endif
269#define ONENAND_CACHE_SIZE (ONENAND_CACHE_PAGES*ONENAND_PAGE_SIZE)
270
271static u8* onenand_cache;
272static u32 onenand_cache_off = (u32)-1;
273
274static int read_onenand_cached(u32 off, u32 size, u_char *buf)
275{
276 u32 bytes_read = 0;
277 size_t retlen;
278 int cpy_bytes;
279
280 while (bytes_read < size) {
281 if ((off + bytes_read < onenand_cache_off) ||
282 (off + bytes_read >= onenand_cache_off + ONENAND_CACHE_SIZE)) {
283 onenand_cache_off = (off + bytes_read) & ONENAND_PAGE_MASK;
284 if (!onenand_cache) {
285 /* This memory never gets freed but 'cause
286 it's a bootloader, nobody cares */
287 onenand_cache = malloc(ONENAND_CACHE_SIZE);
288 if (!onenand_cache) {
289 printf("read_onenand_cached: can't alloc cache size %d bytes\n",
290 ONENAND_CACHE_SIZE);
291 return -1;
292 }
293 }
294
295 retlen = ONENAND_CACHE_SIZE;
296 if (onenand_read(&onenand_mtd, onenand_cache_off, retlen,
297 &retlen, onenand_cache) != 0 ||
298 retlen != ONENAND_CACHE_SIZE) {
299 printf("read_onenand_cached: error reading nand off %#x size %d bytes\n",
300 onenand_cache_off, ONENAND_CACHE_SIZE);
301 return -1;
302 }
303 }
304 cpy_bytes = onenand_cache_off + ONENAND_CACHE_SIZE - (off + bytes_read);
305 if (cpy_bytes > size - bytes_read)
306 cpy_bytes = size - bytes_read;
307 memcpy(buf + bytes_read,
308 onenand_cache + off + bytes_read - onenand_cache_off,
309 cpy_bytes);
310 bytes_read += cpy_bytes;
311 }
312 return bytes_read;
313}
314
315static void *get_fl_mem_onenand(u32 off, u32 size, void *ext_buf)
316{
317 u_char *buf = ext_buf ? (u_char *)ext_buf : (u_char *)malloc(size);
318
319 if (NULL == buf) {
320 printf("get_fl_mem_onenand: can't alloc %d bytes\n", size);
321 return NULL;
322 }
323 if (read_onenand_cached(off, size, buf) < 0) {
324 if (!ext_buf)
325 free(buf);
326 return NULL;
327 }
328
329 return buf;
330}
331
Ilya Yanok70741002008-11-13 19:49:34 +0300332static void *get_node_mem_onenand(u32 off, void *ext_buf)
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900333{
334 struct jffs2_unknown_node node;
335 void *ret = NULL;
336
337 if (NULL == get_fl_mem_onenand(off, sizeof(node), &node))
338 return NULL;
339
340 ret = get_fl_mem_onenand(off, node.magic ==
341 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300342 ext_buf);
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900343 if (!ret) {
344 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
345 off, node.magic, node.nodetype, node.totlen);
346 }
347 return ret;
348}
349
350
351static void put_fl_mem_onenand(void *buf)
352{
353 free(buf);
354}
355#endif
356
wdenk998eaae2004-04-18 19:43:36 +0000357
Jon Loeligerdd60d122007-07-09 17:56:50 -0500358#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200359/*
360 * Support for jffs2 on top of NOR-flash
361 *
362 * NOR flash memory is mapped in processor's address space,
363 * just return address.
364 */
Ilya Yanok70741002008-11-13 19:49:34 +0300365static inline void *get_fl_mem_nor(u32 off, u32 size, void *ext_buf)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200366{
367 u32 addr = off;
368 struct mtdids *id = current_part->dev->id;
369
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200370 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200371 flash_info_t *flash = &flash_info[id->num];
372
373 addr += flash->start[0];
Ilya Yanok70741002008-11-13 19:49:34 +0300374 if (ext_buf) {
375 memcpy(ext_buf, (void *)addr, size);
376 return ext_buf;
377 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200378 return (void*)addr;
379}
380
Ilya Yanok70741002008-11-13 19:49:34 +0300381static inline void *get_node_mem_nor(u32 off, void *ext_buf)
Ilya Yanok8a36d312008-11-13 19:49:33 +0300382{
Ilya Yanok70741002008-11-13 19:49:34 +0300383 struct jffs2_unknown_node *pNode;
Ilya Yanok8a36d312008-11-13 19:49:33 +0300384
Ilya Yanok70741002008-11-13 19:49:34 +0300385 /* pNode will point directly to flash - don't provide external buffer
386 and don't care about size */
387 pNode = get_fl_mem_nor(off, 0, NULL);
388 return (void *)get_fl_mem_nor(off, pNode->magic == JFFS2_MAGIC_BITMASK ?
389 pNode->totlen : sizeof(*pNode), ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200390}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500391#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200392
393
394/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200395 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200396 *
397 */
wdenk998eaae2004-04-18 19:43:36 +0000398static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
399{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200400 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200401
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100402 switch(id->type) {
Jon Loeligerdd60d122007-07-09 17:56:50 -0500403#if defined(CONFIG_CMD_FLASH)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100404 case MTD_DEV_TYPE_NOR:
Ilya Yanok70741002008-11-13 19:49:34 +0300405 return get_fl_mem_nor(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100406 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200407#endif
Jon Loeligerdd60d122007-07-09 17:56:50 -0500408#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100409 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200410 return get_fl_mem_nand(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100411 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200412#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900413#if defined(CONFIG_CMD_ONENAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100414 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900415 return get_fl_mem_onenand(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100416 break;
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900417#endif
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100418 default:
419 printf("get_fl_mem: unknown device type, " \
420 "using raw offset!\n");
421 }
wdenk998eaae2004-04-18 19:43:36 +0000422 return (void*)off;
423}
424
Ilya Yanok70741002008-11-13 19:49:34 +0300425static inline void *get_node_mem(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000426{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200427 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200428
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100429 switch(id->type) {
Jon Loeligerdd60d122007-07-09 17:56:50 -0500430#if defined(CONFIG_CMD_FLASH)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100431 case MTD_DEV_TYPE_NOR:
Ilya Yanok70741002008-11-13 19:49:34 +0300432 return get_node_mem_nor(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100433 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200434#endif
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200435#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500436 defined(CONFIG_CMD_NAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100437 case MTD_DEV_TYPE_NAND:
Ilya Yanok70741002008-11-13 19:49:34 +0300438 return get_node_mem_nand(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100439 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200440#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900441#if defined(CONFIG_CMD_ONENAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100442 case MTD_DEV_TYPE_ONENAND:
Ilya Yanok70741002008-11-13 19:49:34 +0300443 return get_node_mem_onenand(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100444 break;
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900445#endif
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100446 default:
447 printf("get_fl_mem: unknown device type, " \
448 "using raw offset!\n");
449 }
wdenk998eaae2004-04-18 19:43:36 +0000450 return (void*)off;
451}
452
Ilya Yanok70741002008-11-13 19:49:34 +0300453static inline void put_fl_mem(void *buf, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000454{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200455 struct mtdids *id = current_part->dev->id;
456
Ilya Yanok70741002008-11-13 19:49:34 +0300457 /* If buf is the same as ext_buf, it was provided by the caller -
458 we shouldn't free it then. */
459 if (buf == ext_buf)
460 return;
Scott Wood2f77c7f2008-10-31 13:51:12 -0500461 switch (id->type) {
462#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
463 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200464 return put_fl_mem_nand(buf);
465#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900466#if defined(CONFIG_CMD_ONENAND)
Scott Wood2f77c7f2008-10-31 13:51:12 -0500467 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900468 return put_fl_mem_onenand(buf);
469#endif
Scott Wood2f77c7f2008-10-31 13:51:12 -0500470 }
wdenk998eaae2004-04-18 19:43:36 +0000471}
472
wdenk06d01db2003-03-14 20:47:52 +0000473/* Compression names */
474static char *compr_names[] = {
475 "NONE",
476 "ZERO",
477 "RTIME",
478 "RUBINMIPS",
479 "COPY",
480 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000481 "ZLIB",
Wolfgang Denkf0983372010-01-15 11:10:33 +0100482#if defined(CONFIG_JFFS2_LZO)
wdenk07cc0992005-05-05 00:04:14 +0000483 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000484#endif
wdenk06d01db2003-03-14 20:47:52 +0000485};
486
wdenk06d01db2003-03-14 20:47:52 +0000487/* Memory management */
488struct mem_block {
489 u32 index;
490 struct mem_block *next;
491 struct b_node nodes[NODE_CHUNK];
492};
493
494
495static void
496free_nodes(struct b_list *list)
497{
498 while (list->listMemBase != NULL) {
499 struct mem_block *next = list->listMemBase->next;
500 free( list->listMemBase );
501 list->listMemBase = next;
502 }
503}
wdenkfe8c2802002-11-03 00:38:21 +0000504
505static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000506add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000507{
wdenk06d01db2003-03-14 20:47:52 +0000508 u32 index = 0;
509 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000510 struct b_node *b;
511
wdenk06d01db2003-03-14 20:47:52 +0000512 memBase = list->listMemBase;
513 if (memBase != NULL)
514 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000515#if 0
516 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000517 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000518#endif
519
wdenk06d01db2003-03-14 20:47:52 +0000520 if (memBase == NULL || index >= NODE_CHUNK) {
521 /* we need more space before we continue */
522 memBase = mmalloc(sizeof(struct mem_block));
523 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000524 putstr("add_node: malloc failed\n");
525 return NULL;
526 }
wdenk06d01db2003-03-14 20:47:52 +0000527 memBase->next = list->listMemBase;
528 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000529#if 0
530 putLabeledWord("add_node: alloced a new membase at ", *memBase);
531#endif
532
533 }
534 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000535 b = &memBase->nodes[index];
536 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000537
wdenk06d01db2003-03-14 20:47:52 +0000538 memBase->index = index;
539 list->listMemBase = memBase;
540 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000541 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000542}
543
wdenk06d01db2003-03-14 20:47:52 +0000544static struct b_node *
545insert_node(struct b_list *list, u32 offset)
546{
547 struct b_node *new;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200548#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000549 struct b_node *b, *prev;
550#endif
551
552 if (!(new = add_node(list))) {
553 putstr("add_node failed!\r\n");
554 return NULL;
555 }
556 new->offset = offset;
557
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200558#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000559 if (list->listTail != NULL && list->listCompare(new, list->listTail))
560 prev = list->listTail;
561 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
562 prev = list->listLast;
563 else
564 prev = NULL;
565
566 for (b = (prev ? prev->next : list->listHead);
567 b != NULL && list->listCompare(new, b);
568 prev = b, b = b->next) {
569 list->listLoops++;
570 }
571 if (b != NULL)
572 list->listLast = prev;
573
574 if (b != NULL) {
575 new->next = b;
576 if (prev != NULL)
577 prev->next = new;
578 else
579 list->listHead = new;
580 } else
581#endif
582 {
583 new->next = (struct b_node *) NULL;
584 if (list->listTail != NULL) {
585 list->listTail->next = new;
586 list->listTail = new;
587 } else {
588 list->listTail = list->listHead = new;
589 }
590 }
591
592 return new;
593}
594
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200595#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000596/* Sort data entries with the latest version last, so that if there
597 * is overlapping data the latest version will be used.
598 */
wdenk06d01db2003-03-14 20:47:52 +0000599static int compare_inodes(struct b_node *new, struct b_node *old)
600{
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200601 /*
602 * Only read in the version info from flash, not the entire inode.
603 * This can make a big difference to speed if flash is slow.
604 */
605 u32 new_version;
606 u32 old_version;
607 get_fl_mem(new->offset + offsetof(struct jffs2_raw_inode, version),
608 sizeof(new_version), &new_version);
609 get_fl_mem(old->offset + offsetof(struct jffs2_raw_inode, version),
610 sizeof(old_version), &old_version);
wdenk06d01db2003-03-14 20:47:52 +0000611
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200612 return new_version > old_version;
wdenk06d01db2003-03-14 20:47:52 +0000613}
614
wdenk7205e402003-09-10 22:30:53 +0000615/* Sort directory entries so all entries in the same directory
616 * with the same name are grouped together, with the latest version
617 * last. This makes it easy to eliminate all but the latest version
618 * by marking the previous version dead by setting the inode to 0.
619 */
wdenk06d01db2003-03-14 20:47:52 +0000620static int compare_dirents(struct b_node *new, struct b_node *old)
621{
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200622 /*
623 * Using NULL as the buffer for NOR flash prevents the entire node
624 * being read. This makes most comparisons much quicker as only one
625 * or two entries from the node will be used most of the time.
626 */
627 struct jffs2_raw_dirent *jNew = get_node_mem(new->offset, NULL);
628 struct jffs2_raw_dirent *jOld = get_node_mem(old->offset, NULL);
wdenk7205e402003-09-10 22:30:53 +0000629 int cmp;
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200630 int ret;
wdenk06d01db2003-03-14 20:47:52 +0000631
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200632 if (jNew->pino != jOld->pino) {
633 /* ascending sort by pino */
634 ret = jNew->pino > jOld->pino;
635 } else if (jNew->nsize != jOld->nsize) {
636 /*
637 * pino is the same, so use ascending sort by nsize,
638 * so we don't do strncmp unless we really must.
wdenk7205e402003-09-10 22:30:53 +0000639 */
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200640 ret = jNew->nsize > jOld->nsize;
641 } else {
642 /*
643 * length is also the same, so use ascending sort by name
644 */
645 cmp = strncmp((char *)jNew->name, (char *)jOld->name,
646 jNew->nsize);
647 if (cmp != 0) {
648 ret = cmp > 0;
649 } else {
650 /*
651 * we have duplicate names in this directory,
652 * so use ascending sort by version
653 */
654 ret = jNew->version > jOld->version;
655 }
wdenk7205e402003-09-10 22:30:53 +0000656 }
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200657 put_fl_mem(jNew, NULL);
658 put_fl_mem(jOld, NULL);
wdenk42d1f032003-10-15 23:53:47 +0000659
Mark Tomlinson225cf4c2015-07-01 16:38:23 +1200660 return ret;
wdenk06d01db2003-03-14 20:47:52 +0000661}
662#endif
wdenkfe8c2802002-11-03 00:38:21 +0000663
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200664void
665jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000666{
wdenk06d01db2003-03-14 20:47:52 +0000667 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000668
wdenk06d01db2003-03-14 20:47:52 +0000669 if (part->jffs2_priv != NULL) {
670 pL = (struct b_lists *)part->jffs2_priv;
671 free_nodes(&pL->frag);
672 free_nodes(&pL->dir);
Ilya Yanok70741002008-11-13 19:49:34 +0300673 free(pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000674 free(pL);
675 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200676}
677
678static u32
679jffs_init_1pass_list(struct part_info *part)
680{
681 struct b_lists *pL;
682
683 jffs2_free_cache(part);
684
wdenk06d01db2003-03-14 20:47:52 +0000685 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
686 pL = (struct b_lists *)part->jffs2_priv;
687
688 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200689#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000690 pL->dir.listCompare = compare_dirents;
691 pL->frag.listCompare = compare_inodes;
692#endif
wdenkfe8c2802002-11-03 00:38:21 +0000693 }
694 return 0;
695}
696
697/* find the inode from the slashless name given a parent */
698static long
699jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
700{
701 struct b_node *b;
702 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000703 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000704 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200705 uchar *lDest;
706 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000707 int i;
708 u32 counter = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200709#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000710 /* Find file size before loading any data, so fragments that
711 * start past the end of file can be ignored. A fragment
712 * that is partially in the file is loaded, so extra data may
713 * be loaded up to the next 4K boundary above the file size.
714 * This shouldn't cause trouble when loading kernel images, so
715 * we will live with it.
716 */
717 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000718 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
Ilya Yanok70741002008-11-13 19:49:34 +0300719 sizeof(struct jffs2_raw_inode), pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000720 if ((inode == jNode->ino)) {
721 /* get actual file length from the newest node */
722 if (jNode->version >= latestVersion) {
723 totalSize = jNode->isize;
724 latestVersion = jNode->version;
725 }
726 }
Ilya Yanok70741002008-11-13 19:49:34 +0300727 put_fl_mem(jNode, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000728 }
Mark Tomlinson3799b3f2015-07-01 16:38:22 +1200729 /*
730 * If no destination is provided, we are done.
731 * Just return the total size.
732 */
733 if (!dest)
734 return totalSize;
wdenk7205e402003-09-10 22:30:53 +0000735#endif
wdenkfe8c2802002-11-03 00:38:21 +0000736
wdenk06d01db2003-03-14 20:47:52 +0000737 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +1200738 /*
739 * Copy just the node and not the data at this point,
740 * since we don't yet know if we need this data.
741 */
742 jNode = (struct jffs2_raw_inode *)get_fl_mem(b->offset,
743 sizeof(struct jffs2_raw_inode),
744 pL->readbuf);
Jeroen Hofstee46f46fd2014-06-11 00:40:25 +0200745 if (inode == jNode->ino) {
wdenk06d01db2003-03-14 20:47:52 +0000746#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000747 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
748 putLabeledWord("read_inode: inode = ", jNode->ino);
749 putLabeledWord("read_inode: version = ", jNode->version);
750 putLabeledWord("read_inode: isize = ", jNode->isize);
751 putLabeledWord("read_inode: offset = ", jNode->offset);
752 putLabeledWord("read_inode: csize = ", jNode->csize);
753 putLabeledWord("read_inode: dsize = ", jNode->dsize);
754 putLabeledWord("read_inode: compr = ", jNode->compr);
755 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
756 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000757#endif
wdenk7205e402003-09-10 22:30:53 +0000758
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200759#ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000760 /* get actual file length from the newest node */
761 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000762 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000763 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000764 }
wdenk7205e402003-09-10 22:30:53 +0000765#endif
wdenkfe8c2802002-11-03 00:38:21 +0000766
767 if(dest) {
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +1200768 /*
769 * Now that the inode has been checked,
770 * read the entire inode, including data.
771 */
772 put_fl_mem(jNode, pL->readbuf);
773 jNode = (struct jffs2_raw_inode *)
774 get_node_mem(b->offset, pL->readbuf);
775 src = ((uchar *)jNode) +
776 sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000777 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000778 if (jNode->offset > totalSize) {
Ilya Yanok70741002008-11-13 19:49:34 +0300779 put_fl_mem(jNode, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000780 continue;
wdenk998eaae2004-04-18 19:43:36 +0000781 }
Ilya Yanok142a80f2008-11-13 19:49:36 +0300782 if (b->datacrc == CRC_UNKNOWN)
783 b->datacrc = data_crc(jNode) ?
784 CRC_OK : CRC_BAD;
785 if (b->datacrc == CRC_BAD) {
Ilya Yanok70741002008-11-13 19:49:34 +0300786 put_fl_mem(jNode, pL->readbuf);
Ilya Yanok8a36d312008-11-13 19:49:33 +0300787 continue;
788 }
wdenk06d01db2003-03-14 20:47:52 +0000789
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200790 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000791#if 0
wdenk06d01db2003-03-14 20:47:52 +0000792 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000793 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000794#endif
795 switch (jNode->compr) {
796 case JFFS2_COMPR_NONE:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200797 ldr_memcpy(lDest, src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000798 break;
799 case JFFS2_COMPR_ZERO:
wdenkfe8c2802002-11-03 00:38:21 +0000800 for (i = 0; i < jNode->dsize; i++)
801 *(lDest++) = 0;
802 break;
803 case JFFS2_COMPR_RTIME:
wdenkfe8c2802002-11-03 00:38:21 +0000804 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
805 break;
806 case JFFS2_COMPR_DYNRUBIN:
807 /* this is slow but it works */
wdenkfe8c2802002-11-03 00:38:21 +0000808 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
809 break;
810 case JFFS2_COMPR_ZLIB:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200811 zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000812 break;
Wolfgang Denkf0983372010-01-15 11:10:33 +0100813#if defined(CONFIG_JFFS2_LZO)
wdenk07cc0992005-05-05 00:04:14 +0000814 case JFFS2_COMPR_LZO:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200815 lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenk07cc0992005-05-05 00:04:14 +0000816 break;
817#endif
wdenkfe8c2802002-11-03 00:38:21 +0000818 default:
819 /* unknown */
Loïc Minier6052cba2011-02-03 22:04:26 +0100820 putLabeledWord("UNKNOWN COMPRESSION METHOD = ", jNode->compr);
Ilya Yanok70741002008-11-13 19:49:34 +0300821 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000822 return -1;
823 break;
824 }
825 }
826
wdenkfe8c2802002-11-03 00:38:21 +0000827#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000828 putLabeledWord("read_inode: totalSize = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000829#endif
830 }
wdenkfe8c2802002-11-03 00:38:21 +0000831 counter++;
Ilya Yanok70741002008-11-13 19:49:34 +0300832 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000833 }
wdenkfe8c2802002-11-03 00:38:21 +0000834
835#if 0
wdenk06d01db2003-03-14 20:47:52 +0000836 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000837#endif
wdenk06d01db2003-03-14 20:47:52 +0000838 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000839}
840
841/* find the inode from the slashless name given a parent */
842static u32
843jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
844{
845 struct b_node *b;
846 struct jffs2_raw_dirent *jDir;
847 int len;
848 u32 counter;
849 u32 version = 0;
850 u32 inode = 0;
851
852 /* name is assumed slash free */
853 len = strlen(name);
854
855 counter = 0;
856 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000857 for(b = pL->dir.listHead; b; b = b->next, counter++) {
Ilya Yanok70741002008-11-13 19:49:34 +0300858 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
859 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000860 if ((pino == jDir->pino) && (len == jDir->nsize) &&
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200861 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000862 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +0300863 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000864 continue;
wdenk998eaae2004-04-18 19:43:36 +0000865 }
wdenkfe8c2802002-11-03 00:38:21 +0000866
wdenk7205e402003-09-10 22:30:53 +0000867 if (jDir->version == version && inode != 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200868 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000869 putstr(" ** ERROR ** ");
870 putnstr(jDir->name, jDir->nsize);
871 putLabeledWord(" has dup version =", version);
872 }
873 inode = jDir->ino;
874 version = jDir->version;
875 }
876#if 0
877 putstr("\r\nfind_inode:p&l ->");
878 putnstr(jDir->name, jDir->nsize);
879 putstr("\r\n");
880 putLabeledWord("pino = ", jDir->pino);
881 putLabeledWord("nsize = ", jDir->nsize);
882 putLabeledWord("b = ", (u32) b);
883 putLabeledWord("counter = ", counter);
884#endif
Ilya Yanok70741002008-11-13 19:49:34 +0300885 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000886 }
887 return inode;
888}
889
wdenk180d3f72004-01-04 16:28:35 +0000890char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000891{
wdenk06d01db2003-03-14 20:47:52 +0000892 static const char *l = "xwr";
893 int mask = 1, i;
894 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000895
wdenk06d01db2003-03-14 20:47:52 +0000896 switch (mode & S_IFMT) {
897 case S_IFDIR: str[0] = 'd'; break;
898 case S_IFBLK: str[0] = 'b'; break;
899 case S_IFCHR: str[0] = 'c'; break;
900 case S_IFIFO: str[0] = 'f'; break;
901 case S_IFLNK: str[0] = 'l'; break;
902 case S_IFSOCK: str[0] = 's'; break;
903 case S_IFREG: str[0] = '-'; break;
904 default: str[0] = '?';
905 }
wdenkfe8c2802002-11-03 00:38:21 +0000906
wdenk06d01db2003-03-14 20:47:52 +0000907 for(i = 0; i < 9; i++) {
908 c = l[i%3];
909 str[9-i] = (mode & mask)?c:'-';
910 mask = mask<<1;
911 }
wdenkfe8c2802002-11-03 00:38:21 +0000912
wdenk06d01db2003-03-14 20:47:52 +0000913 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
914 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
915 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
916 str[10] = '\0';
917 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000918}
919
920static inline void dump_stat(struct stat *st, const char *name)
921{
wdenk06d01db2003-03-14 20:47:52 +0000922 char str[20];
923 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000924
wdenk06d01db2003-03-14 20:47:52 +0000925 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
926 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000927
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200928 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000929
wdenk06d01db2003-03-14 20:47:52 +0000930 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
931 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000932
933/*
wdenk06d01db2003-03-14 20:47:52 +0000934 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
935 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000936*/
937
wdenk06d01db2003-03-14 20:47:52 +0000938 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000939}
940
941static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
942{
943 char fname[256];
944 struct stat st;
945
946 if(!d || !i) return -1;
947
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200948 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000949 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000950
951 memset(&st,0,sizeof(st));
952
wdenk06d01db2003-03-14 20:47:52 +0000953 st.st_mtime = i->mtime;
954 st.st_mode = i->mode;
955 st.st_ino = i->ino;
Ilya Yanokf7384692008-11-13 19:49:31 +0300956 st.st_size = i->isize;
wdenkfe8c2802002-11-03 00:38:21 +0000957
958 dump_stat(&st, fname);
959
960 if (d->type == DT_LNK) {
961 unsigned char *src = (unsigned char *) (&i[1]);
962 putstr(" -> ");
963 putnstr(src, (int)i->dsize);
964 }
965
966 putstr("\r\n");
967
968 return 0;
969}
970
971/* list inodes with the given pino */
972static u32
973jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
974{
975 struct b_node *b;
976 struct jffs2_raw_dirent *jDir;
977
wdenk06d01db2003-03-14 20:47:52 +0000978 for (b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300979 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
980 pL->readbuf);
Mark Tomlinson891224a2015-07-01 16:38:24 +1200981 if (pino == jDir->pino) {
wdenk06d01db2003-03-14 20:47:52 +0000982 u32 i_version = 0;
983 struct jffs2_raw_inode *jNode, *i = NULL;
Mark Tomlinson891224a2015-07-01 16:38:24 +1200984 struct b_node *b2;
wdenkfe8c2802002-11-03 00:38:21 +0000985
Mark Tomlinson891224a2015-07-01 16:38:24 +1200986#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
987 /* Check for more recent versions of this file */
988 int match;
989 do {
990 struct b_node *next = b->next;
991 struct jffs2_raw_dirent *jDirNext;
992 if (!next)
993 break;
994 jDirNext = (struct jffs2_raw_dirent *)
995 get_node_mem(next->offset, NULL);
996 match = jDirNext->pino == jDir->pino &&
997 jDirNext->nsize == jDir->nsize &&
998 strncmp((char *)jDirNext->name,
999 (char *)jDir->name,
1000 jDir->nsize) == 0;
1001 if (match) {
1002 /* Use next. It is more recent */
1003 b = next;
1004 /* Update buffer with the new info */
1005 *jDir = *jDirNext;
1006 }
1007 put_fl_mem(jDirNext, NULL);
1008 } while (match);
1009#endif
1010 if (jDir->ino == 0) {
1011 /* Deleted file */
1012 put_fl_mem(jDir, pL->readbuf);
1013 continue;
1014 }
1015
1016 for (b2 = pL->frag.listHead; b2; b2 = b2->next) {
wdenk998eaae2004-04-18 19:43:36 +00001017 jNode = (struct jffs2_raw_inode *)
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +12001018 get_fl_mem(b2->offset, sizeof(*jNode),
1019 NULL);
1020 if (jNode->ino == jDir->ino &&
1021 jNode->version >= i_version) {
Ilya Yanokf7384692008-11-13 19:49:31 +03001022 i_version = jNode->version;
wdenk32877d62004-05-05 19:44:41 +00001023 if (i)
Ilya Yanok70741002008-11-13 19:49:34 +03001024 put_fl_mem(i, NULL);
wdenkcf8bc572005-05-04 23:50:54 +00001025
1026 if (jDir->type == DT_LNK)
Ilya Yanok70741002008-11-13 19:49:34 +03001027 i = get_node_mem(b2->offset,
1028 NULL);
wdenkcf8bc572005-05-04 23:50:54 +00001029 else
Ilya Yanok70741002008-11-13 19:49:34 +03001030 i = get_fl_mem(b2->offset,
1031 sizeof(*i),
1032 NULL);
wdenk32877d62004-05-05 19:44:41 +00001033 }
Mark Tomlinson2d6d93a2015-07-01 16:38:25 +12001034 put_fl_mem(jNode, NULL);
wdenkfe8c2802002-11-03 00:38:21 +00001035 }
1036
1037 dump_inode(pL, jDir, i);
Ilya Yanok70741002008-11-13 19:49:34 +03001038 put_fl_mem(i, NULL);
wdenkfe8c2802002-11-03 00:38:21 +00001039 }
Ilya Yanok70741002008-11-13 19:49:34 +03001040 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001041 }
1042 return pino;
1043}
1044
1045static u32
1046jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
1047{
1048 int i;
1049 char tmp[256];
1050 char working_tmp[256];
1051 char *c;
1052
1053 /* discard any leading slash */
1054 i = 0;
1055 while (fname[i] == '/')
1056 i++;
1057 strcpy(tmp, &fname[i]);
1058
1059 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1060 {
1061 strncpy(working_tmp, tmp, c - tmp);
1062 working_tmp[c - tmp] = '\0';
1063#if 0
1064 putstr("search_inode: tmp = ");
1065 putstr(tmp);
1066 putstr("\r\n");
1067 putstr("search_inode: wtmp = ");
1068 putstr(working_tmp);
1069 putstr("\r\n");
1070 putstr("search_inode: c = ");
1071 putstr(c);
1072 putstr("\r\n");
1073#endif
1074 for (i = 0; i < strlen(c) - 1; i++)
1075 tmp[i] = c[i + 1];
1076 tmp[i] = '\0';
1077#if 0
1078 putstr("search_inode: post tmp = ");
1079 putstr(tmp);
1080 putstr("\r\n");
1081#endif
1082
1083 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1084 putstr("find_inode failed for name=");
1085 putstr(working_tmp);
1086 putstr("\r\n");
1087 return 0;
1088 }
1089 }
1090 /* this is for the bare filename, directories have already been mapped */
1091 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1092 putstr("find_inode failed for name=");
1093 putstr(tmp);
1094 putstr("\r\n");
1095 return 0;
1096 }
1097 return pino;
1098
1099}
1100
1101static u32
1102jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1103{
1104 struct b_node *b;
1105 struct b_node *b2;
1106 struct jffs2_raw_dirent *jDir;
1107 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +00001108 u8 jDirFoundType = 0;
1109 u32 jDirFoundIno = 0;
1110 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001111 char tmp[256];
1112 u32 version = 0;
1113 u32 pino;
1114 unsigned char *src;
1115
1116 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +00001117 for(b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +03001118 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1119 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001120 if (ino == jDir->ino) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001121 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +03001122 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +00001123 continue;
wdenk998eaae2004-04-18 19:43:36 +00001124 }
wdenkfe8c2802002-11-03 00:38:21 +00001125
wdenk998eaae2004-04-18 19:43:36 +00001126 if (jDir->version == version && jDirFoundType) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001127 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001128 putstr(" ** ERROR ** ");
1129 putnstr(jDir->name, jDir->nsize);
1130 putLabeledWord(" has dup version (resolve) = ",
1131 version);
1132 }
1133
wdenk998eaae2004-04-18 19:43:36 +00001134 jDirFoundType = jDir->type;
1135 jDirFoundIno = jDir->ino;
1136 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001137 version = jDir->version;
1138 }
Ilya Yanok70741002008-11-13 19:49:34 +03001139 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001140 }
1141 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +00001142 if (jDirFoundType != DT_LNK)
1143 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +00001144
1145 /* it's a soft link so we follow it again. */
1146 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001147 while (b2) {
Ilya Yanok70741002008-11-13 19:49:34 +03001148 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset,
1149 pL->readbuf);
wdenk998eaae2004-04-18 19:43:36 +00001150 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +00001151 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001152
1153#if 0
1154 putLabeledWord("\t\t dsize = ", jNode->dsize);
1155 putstr("\t\t target = ");
1156 putnstr(src, jNode->dsize);
1157 putstr("\r\n");
1158#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001159 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001160 tmp[jNode->dsize] = '\0';
Ilya Yanok70741002008-11-13 19:49:34 +03001161 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001162 break;
1163 }
1164 b2 = b2->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001165 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001166 }
1167 /* ok so the name of the new file to find is in tmp */
1168 /* if it starts with a slash it is root based else shared dirs */
1169 if (tmp[0] == '/')
1170 pino = 1;
1171 else
wdenk998eaae2004-04-18 19:43:36 +00001172 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001173
1174 return jffs2_1pass_search_inode(pL, tmp, pino);
1175}
1176
1177static u32
1178jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1179{
1180 int i;
1181 char tmp[256];
1182 char working_tmp[256];
1183 char *c;
1184
1185 /* discard any leading slash */
1186 i = 0;
1187 while (fname[i] == '/')
1188 i++;
1189 strcpy(tmp, &fname[i]);
1190 working_tmp[0] = '\0';
1191 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1192 {
1193 strncpy(working_tmp, tmp, c - tmp);
1194 working_tmp[c - tmp] = '\0';
1195 for (i = 0; i < strlen(c) - 1; i++)
1196 tmp[i] = c[i + 1];
1197 tmp[i] = '\0';
1198 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001199 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1200 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001201 putstr("find_inode failed for name=");
1202 putstr(working_tmp);
1203 putstr("\r\n");
1204 return 0;
1205 }
1206 }
1207
1208 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1209 putstr("find_inode failed for name=");
1210 putstr(tmp);
1211 putstr("\r\n");
1212 return 0;
1213 }
1214 /* this is for the bare filename, directories have already been mapped */
1215 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1216 putstr("find_inode failed for name=");
1217 putstr(tmp);
1218 putstr("\r\n");
1219 return 0;
1220 }
1221 return pino;
1222
1223}
1224
1225unsigned char
1226jffs2_1pass_rescan_needed(struct part_info *part)
1227{
1228 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001229 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001230 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001231 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001232
1233 if (part->jffs2_priv == 0){
1234 DEBUGF ("rescan: First time in use\n");
1235 return 1;
1236 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001237
wdenkfe8c2802002-11-03 00:38:21 +00001238 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001239 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001240 DEBUGF ("rescan: fraglist zero\n");
1241 return 1;
1242 }
1243
wdenk06d01db2003-03-14 20:47:52 +00001244 /* but suppose someone reflashed a partition at the same offset... */
1245 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001246 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001247 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1248 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001249 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001250 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1251 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001252 return 1;
1253 }
1254 b = b->next;
1255 }
1256 return 0;
1257}
1258
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001259#ifdef CONFIG_JFFS2_SUMMARY
1260static u32 sum_get_unaligned32(u32 *ptr)
1261{
1262 u32 val;
1263 u8 *p = (u8 *)ptr;
1264
1265 val = *p | (*(p + 1) << 8) | (*(p + 2) << 16) | (*(p + 3) << 24);
1266
1267 return __le32_to_cpu(val);
1268}
1269
1270static u16 sum_get_unaligned16(u16 *ptr)
1271{
1272 u16 val;
1273 u8 *p = (u8 *)ptr;
1274
1275 val = *p | (*(p + 1) << 8);
1276
1277 return __le16_to_cpu(val);
1278}
1279
Ilya Yanok9b707622008-11-13 19:49:35 +03001280#define dbg_summary(...) do {} while (0);
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001281/*
1282 * Process the stored summary information - helper function for
Ilya Yanok9b707622008-11-13 19:49:35 +03001283 * jffs2_sum_scan_sumnode()
1284 */
1285
1286static int jffs2_sum_process_sum_data(struct part_info *part, uint32_t offset,
1287 struct jffs2_raw_summary *summary,
1288 struct b_lists *pL)
1289{
1290 void *sp;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001291 int i, pass;
1292 void *ret;
Ilya Yanok9b707622008-11-13 19:49:35 +03001293
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001294 for (pass = 0; pass < 2; pass++) {
1295 sp = summary->sum;
Ilya Yanok9b707622008-11-13 19:49:35 +03001296
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001297 for (i = 0; i < summary->sum_num; i++) {
1298 struct jffs2_sum_unknown_flash *spu = sp;
1299 dbg_summary("processing summary index %d\n", i);
Ilya Yanok9b707622008-11-13 19:49:35 +03001300
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001301 switch (sum_get_unaligned16(&spu->nodetype)) {
1302 case JFFS2_NODETYPE_INODE: {
Ilya Yanok9b707622008-11-13 19:49:35 +03001303 struct jffs2_sum_inode_flash *spi;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001304 if (pass) {
1305 spi = sp;
Ilya Yanok9b707622008-11-13 19:49:35 +03001306
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001307 ret = insert_node(&pL->frag,
1308 (u32)part->offset +
1309 offset +
1310 sum_get_unaligned32(
1311 &spi->offset));
1312 if (ret == NULL)
1313 return -1;
1314 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001315
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001316 sp += JFFS2_SUMMARY_INODE_SIZE;
Ilya Yanok9b707622008-11-13 19:49:35 +03001317
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001318 break;
1319 }
1320 case JFFS2_NODETYPE_DIRENT: {
1321 struct jffs2_sum_dirent_flash *spd;
1322 spd = sp;
1323 if (pass) {
1324 ret = insert_node(&pL->dir,
1325 (u32) part->offset +
1326 offset +
1327 sum_get_unaligned32(
1328 &spd->offset));
1329 if (ret == NULL)
1330 return -1;
1331 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001332
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001333 sp += JFFS2_SUMMARY_DIRENT_SIZE(
1334 spd->nsize);
Ilya Yanok9b707622008-11-13 19:49:35 +03001335
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001336 break;
1337 }
1338 default : {
1339 uint16_t nodetype = sum_get_unaligned16(
1340 &spu->nodetype);
1341 printf("Unsupported node type %x found"
1342 " in summary!\n",
1343 nodetype);
1344 if ((nodetype & JFFS2_COMPAT_MASK) ==
1345 JFFS2_FEATURE_INCOMPAT)
1346 return -EIO;
1347 return -EBADMSG;
1348 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001349 }
1350 }
1351 }
1352 return 0;
1353}
1354
1355/* Process the summary node - called from jffs2_scan_eraseblock() */
1356int jffs2_sum_scan_sumnode(struct part_info *part, uint32_t offset,
1357 struct jffs2_raw_summary *summary, uint32_t sumsize,
1358 struct b_lists *pL)
1359{
1360 struct jffs2_unknown_node crcnode;
1361 int ret, ofs;
1362 uint32_t crc;
1363
1364 ofs = part->sector_size - sumsize;
1365
1366 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
1367 offset, offset + ofs, sumsize);
1368
1369 /* OK, now check for node validity and CRC */
1370 crcnode.magic = JFFS2_MAGIC_BITMASK;
1371 crcnode.nodetype = JFFS2_NODETYPE_SUMMARY;
1372 crcnode.totlen = summary->totlen;
1373 crc = crc32_no_comp(0, (uchar *)&crcnode, sizeof(crcnode)-4);
1374
1375 if (summary->hdr_crc != crc) {
1376 dbg_summary("Summary node header is corrupt (bad CRC or "
1377 "no summary at all)\n");
1378 goto crc_err;
1379 }
1380
1381 if (summary->totlen != sumsize) {
1382 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
1383 goto crc_err;
1384 }
1385
1386 crc = crc32_no_comp(0, (uchar *)summary,
1387 sizeof(struct jffs2_raw_summary)-8);
1388
1389 if (summary->node_crc != crc) {
1390 dbg_summary("Summary node is corrupt (bad CRC)\n");
1391 goto crc_err;
1392 }
1393
1394 crc = crc32_no_comp(0, (uchar *)summary->sum,
1395 sumsize - sizeof(struct jffs2_raw_summary));
1396
1397 if (summary->sum_crc != crc) {
1398 dbg_summary("Summary node data is corrupt (bad CRC)\n");
1399 goto crc_err;
1400 }
1401
1402 if (summary->cln_mkr)
1403 dbg_summary("Summary : CLEANMARKER node \n");
1404
1405 ret = jffs2_sum_process_sum_data(part, offset, summary, pL);
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001406 if (ret == -EBADMSG)
1407 return 0;
Ilya Yanok9b707622008-11-13 19:49:35 +03001408 if (ret)
1409 return ret; /* real error */
1410
1411 return 1;
1412
1413crc_err:
1414 putstr("Summary node crc error, skipping summary information.\n");
1415
1416 return 0;
1417}
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001418#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanok9b707622008-11-13 19:49:35 +03001419
wdenk06d01db2003-03-14 20:47:52 +00001420#ifdef DEBUG_FRAGMENTS
1421static void
1422dump_fragments(struct b_lists *pL)
1423{
1424 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001425 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001426 struct jffs2_raw_inode *jNode;
1427
1428 putstr("\r\n\r\n******The fragment Entries******\r\n");
1429 b = pL->frag.listHead;
1430 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001431 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1432 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001433 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1434 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1435 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1436 putLabeledWord("\tbuild_list: version = ", jNode->version);
1437 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1438 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1439 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1440 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1441 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1442 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1443 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1444 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001445 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001446 b = b->next;
1447 }
1448}
1449#endif
1450
1451#ifdef DEBUG_DIRENTS
1452static void
1453dump_dirents(struct b_lists *pL)
1454{
1455 struct b_node *b;
1456 struct jffs2_raw_dirent *jDir;
1457
1458 putstr("\r\n\r\n******The directory Entries******\r\n");
1459 b = pL->dir.listHead;
1460 while (b) {
Ilya Yanok70741002008-11-13 19:49:34 +03001461 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1462 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001463 putstr("\r\n");
1464 putnstr(jDir->name, jDir->nsize);
1465 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1466 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1467 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1468 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1469 putLabeledWord("\tbuild_list: version = ", jDir->version);
1470 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1471 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1472 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1473 putLabeledWord("\tbuild_list: type = ", jDir->type);
1474 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1475 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001476 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001477 b = b->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001478 put_fl_mem(jDir, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001479 }
1480}
1481#endif
1482
Ilya Yanok8a36d312008-11-13 19:49:33 +03001483#define DEFAULT_EMPTY_SCAN_SIZE 4096
1484
1485static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1486{
1487 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1488 return sector_size;
1489 else
1490 return DEFAULT_EMPTY_SCAN_SIZE;
1491}
1492
wdenkfe8c2802002-11-03 00:38:21 +00001493static u32
1494jffs2_1pass_build_lists(struct part_info * part)
1495{
1496 struct b_lists *pL;
1497 struct jffs2_unknown_node *node;
Tom Rini18e86722013-12-05 14:48:38 -05001498 u32 nr_sectors;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001499 u32 i;
wdenkfe8c2802002-11-03 00:38:21 +00001500 u32 counter4 = 0;
1501 u32 counterF = 0;
1502 u32 counterN = 0;
Ilya Yanok70741002008-11-13 19:49:34 +03001503 u32 max_totlen = 0;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001504 u32 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
1505 char *buf;
wdenkfe8c2802002-11-03 00:38:21 +00001506
Tom Rini18e86722013-12-05 14:48:38 -05001507 nr_sectors = lldiv(part->size, part->sector_size);
wdenkfe8c2802002-11-03 00:38:21 +00001508 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1509 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1510 /* only about 5 %. not enough to inconvenience people for. */
1511 /* lcd_off(); */
1512
1513 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001514 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001515 pL = (struct b_lists *)part->jffs2_priv;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001516 buf = malloc(buf_size);
wdenk4b9206e2004-03-23 22:14:11 +00001517 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001518
1519 /* start at the beginning of the partition */
Ilya Yanok8a36d312008-11-13 19:49:33 +03001520 for (i = 0; i < nr_sectors; i++) {
1521 uint32_t sector_ofs = i * part->sector_size;
1522 uint32_t buf_ofs = sector_ofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001523 uint32_t buf_len;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001524 uint32_t ofs, prevofs;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001525#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanok9b707622008-11-13 19:49:35 +03001526 struct jffs2_sum_marker *sm;
1527 void *sumptr = NULL;
1528 uint32_t sumlen;
1529 int ret;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001530#endif
wdenk0b8fa032004-04-25 14:37:29 +00001531
Stuart Wood86d32732008-06-02 16:40:08 -04001532 WATCHDOG_RESET();
Ilya Yanok9b707622008-11-13 19:49:35 +03001533
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001534#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanok9b707622008-11-13 19:49:35 +03001535 buf_len = sizeof(*sm);
1536
1537 /* Read as much as we want into the _end_ of the preallocated
1538 * buffer
1539 */
1540 get_fl_mem(part->offset + sector_ofs + part->sector_size -
1541 buf_len, buf_len, buf + buf_size - buf_len);
1542
1543 sm = (void *)buf + buf_size - sizeof(*sm);
1544 if (sm->magic == JFFS2_SUM_MAGIC) {
1545 sumlen = part->sector_size - sm->offset;
1546 sumptr = buf + buf_size - sumlen;
1547
1548 /* Now, make sure the summary itself is available */
1549 if (sumlen > buf_size) {
1550 /* Need to kmalloc for this. */
1551 sumptr = malloc(sumlen);
1552 if (!sumptr) {
1553 putstr("Can't get memory for summary "
1554 "node!\n");
Ilya Yanokb6440062009-08-12 16:42:48 +04001555 free(buf);
1556 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001557 return 0;
1558 }
1559 memcpy(sumptr + sumlen - buf_len, buf +
1560 buf_size - buf_len, buf_len);
1561 }
1562 if (buf_len < sumlen) {
1563 /* Need to read more so that the entire summary
1564 * node is present
1565 */
1566 get_fl_mem(part->offset + sector_ofs +
1567 part->sector_size - sumlen,
1568 sumlen - buf_len, sumptr);
1569 }
1570 }
1571
1572 if (sumptr) {
1573 ret = jffs2_sum_scan_sumnode(part, sector_ofs, sumptr,
1574 sumlen, pL);
1575
1576 if (buf_size && sumlen > buf_size)
1577 free(sumptr);
Ilya Yanokb6440062009-08-12 16:42:48 +04001578 if (ret < 0) {
1579 free(buf);
1580 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001581 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001582 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001583 if (ret)
1584 continue;
1585
1586 }
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001587#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanok9b707622008-11-13 19:49:35 +03001588
1589 buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1590
Ilya Yanok8a36d312008-11-13 19:49:33 +03001591 get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
Stuart Wood86d32732008-06-02 16:40:08 -04001592
Ilya Yanok8a36d312008-11-13 19:49:33 +03001593 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1594 ofs = 0;
1595
1596 /* Scan only 4KiB of 0xFF before declaring it's empty */
1597 while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1598 *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1599 ofs += 4;
1600
1601 if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1602 continue;
1603
1604 ofs += sector_ofs;
1605 prevofs = ofs - 1;
1606
1607 scan_more:
1608 while (ofs < sector_ofs + part->sector_size) {
1609 if (ofs == prevofs) {
1610 printf("offset %08x already seen, skip\n", ofs);
1611 ofs += 4;
1612 counter4++;
1613 continue;
1614 }
1615 prevofs = ofs;
1616 if (sector_ofs + part->sector_size <
1617 ofs + sizeof(*node))
1618 break;
1619 if (buf_ofs + buf_len < ofs + sizeof(*node)) {
1620 buf_len = min_t(uint32_t, buf_size, sector_ofs
1621 + part->sector_size - ofs);
1622 get_fl_mem((u32)part->offset + ofs, buf_len,
1623 buf);
1624 buf_ofs = ofs;
1625 }
1626
1627 node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
1628
1629 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1630 uint32_t inbuf_ofs;
Wolfgang Denk16b9afd2011-10-05 22:58:11 +02001631 uint32_t scan_end;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001632
Ilya Yanok8a36d312008-11-13 19:49:33 +03001633 ofs += 4;
1634 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1635 part->sector_size)/8,
1636 buf_len);
1637 more_empty:
1638 inbuf_ofs = ofs - buf_ofs;
1639 while (inbuf_ofs < scan_end) {
1640 if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1641 0xffffffff)
1642 goto scan_more;
1643
1644 inbuf_ofs += 4;
1645 ofs += 4;
wdenk998eaae2004-04-18 19:43:36 +00001646 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001647 /* Ran off end. */
1648
1649 /* See how much more there is to read in this
1650 * eraseblock...
1651 */
1652 buf_len = min_t(uint32_t, buf_size,
1653 sector_ofs +
1654 part->sector_size - ofs);
1655 if (!buf_len) {
1656 /* No more to read. Break out of main
1657 * loop without marking this range of
1658 * empty space as dirty (because it's
1659 * not)
1660 */
1661 break;
1662 }
1663 scan_end = buf_len;
1664 get_fl_mem((u32)part->offset + ofs, buf_len,
1665 buf);
1666 buf_ofs = ofs;
1667 goto more_empty;
1668 }
1669 if (node->magic != JFFS2_MAGIC_BITMASK ||
1670 !hdr_crc(node)) {
1671 ofs += 4;
1672 counter4++;
1673 continue;
1674 }
1675 if (ofs + node->totlen >
1676 sector_ofs + part->sector_size) {
1677 ofs += 4;
1678 counter4++;
1679 continue;
1680 }
1681 /* if its a fragment add it */
1682 switch (node->nodetype) {
1683 case JFFS2_NODETYPE_INODE:
1684 if (buf_ofs + buf_len < ofs + sizeof(struct
1685 jffs2_raw_inode)) {
1686 get_fl_mem((u32)part->offset + ofs,
1687 buf_len, buf);
1688 buf_ofs = ofs;
1689 node = (void *)buf;
1690 }
1691 if (!inode_crc((struct jffs2_raw_inode *) node))
1692 break;
1693
1694 if (insert_node(&pL->frag, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001695 ofs) == NULL) {
1696 free(buf);
1697 jffs2_free_cache(part);
Ilya Yanok8a36d312008-11-13 19:49:33 +03001698 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001699 }
Ilya Yanok70741002008-11-13 19:49:34 +03001700 if (max_totlen < node->totlen)
1701 max_totlen = node->totlen;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001702 break;
1703 case JFFS2_NODETYPE_DIRENT:
1704 if (buf_ofs + buf_len < ofs + sizeof(struct
1705 jffs2_raw_dirent) +
1706 ((struct
1707 jffs2_raw_dirent *)
1708 node)->nsize) {
1709 get_fl_mem((u32)part->offset + ofs,
1710 buf_len, buf);
1711 buf_ofs = ofs;
1712 node = (void *)buf;
1713 }
1714
1715 if (!dirent_crc((struct jffs2_raw_dirent *)
1716 node) ||
1717 !dirent_name_crc(
1718 (struct
1719 jffs2_raw_dirent *)
1720 node))
1721 break;
wdenkfc1cfcd2004-04-25 15:41:35 +00001722 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001723 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001724 if (insert_node(&pL->dir, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001725 ofs) == NULL) {
1726 free(buf);
1727 jffs2_free_cache(part);
wdenkfe8c2802002-11-03 00:38:21 +00001728 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001729 }
Ilya Yanok70741002008-11-13 19:49:34 +03001730 if (max_totlen < node->totlen)
1731 max_totlen = node->totlen;
wdenkfe8c2802002-11-03 00:38:21 +00001732 counterN++;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001733 break;
1734 case JFFS2_NODETYPE_CLEANMARKER:
wdenkfe8c2802002-11-03 00:38:21 +00001735 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001736 printf("OOPS Cleanmarker has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001737 "%d != %zu\n",
1738 node->totlen,
wdenk06d01db2003-03-14 20:47:52 +00001739 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001740 break;
1741 case JFFS2_NODETYPE_PADDING:
wdenk7205e402003-09-10 22:30:53 +00001742 if (node->totlen < sizeof(struct jffs2_unknown_node))
1743 printf("OOPS Padding has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001744 "%d < %zu\n",
1745 node->totlen,
wdenk7205e402003-09-10 22:30:53 +00001746 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001747 break;
Ilya Yanok9b707622008-11-13 19:49:35 +03001748 case JFFS2_NODETYPE_SUMMARY:
1749 break;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001750 default:
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001751 printf("Unknown node type: %x len %d offset 0x%x\n",
1752 node->nodetype,
Ilya Yanok8a36d312008-11-13 19:49:33 +03001753 node->totlen, ofs);
wdenkfe8c2802002-11-03 00:38:21 +00001754 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001755 ofs += ((node->totlen + 3) & ~3);
wdenkfe8c2802002-11-03 00:38:21 +00001756 counterF++;
wdenkfe8c2802002-11-03 00:38:21 +00001757 }
wdenkfe8c2802002-11-03 00:38:21 +00001758 }
1759
Ilya Yanok8a36d312008-11-13 19:49:33 +03001760 free(buf);
wdenkfe8c2802002-11-03 00:38:21 +00001761 putstr("\b\b done.\r\n"); /* close off the dots */
Ilya Yanok70741002008-11-13 19:49:34 +03001762
1763 /* We don't care if malloc failed - then each read operation will
1764 * allocate its own buffer as necessary (NAND) or will read directly
1765 * from flash (NOR).
1766 */
1767 pL->readbuf = malloc(max_totlen);
1768
wdenkfe8c2802002-11-03 00:38:21 +00001769 /* turn the lcd back on. */
1770 /* splash(); */
1771
1772#if 0
wdenk06d01db2003-03-14 20:47:52 +00001773 putLabeledWord("dir entries = ", pL->dir.listCount);
1774 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001775 putLabeledWord("+4 increments = ", counter4);
1776 putLabeledWord("+file_offset increments = ", counterF);
1777
1778#endif
1779
wdenk06d01db2003-03-14 20:47:52 +00001780#ifdef DEBUG_DIRENTS
1781 dump_dirents(pL);
1782#endif
wdenkfe8c2802002-11-03 00:38:21 +00001783
wdenk06d01db2003-03-14 20:47:52 +00001784#ifdef DEBUG_FRAGMENTS
1785 dump_fragments(pL);
1786#endif
wdenkfe8c2802002-11-03 00:38:21 +00001787
wdenkfe8c2802002-11-03 00:38:21 +00001788 /* give visual feedback that we are done scanning the flash */
1789 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1790 return 1;
1791}
1792
1793
wdenkfe8c2802002-11-03 00:38:21 +00001794static u32
1795jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1796{
1797 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001798 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001799 struct jffs2_raw_inode *jNode;
1800 int i;
1801
wdenkfe8c2802002-11-03 00:38:21 +00001802 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1803 piL->compr_info[i].num_frags = 0;
1804 piL->compr_info[i].compr_sum = 0;
1805 piL->compr_info[i].decompr_sum = 0;
1806 }
1807
wdenk06d01db2003-03-14 20:47:52 +00001808 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001809 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001810 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1811 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001812 if (jNode->compr < JFFS2_NUM_COMPR) {
1813 piL->compr_info[jNode->compr].num_frags++;
1814 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1815 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1816 }
1817 b = b->next;
1818 }
1819 return 0;
1820}
1821
1822
wdenkfe8c2802002-11-03 00:38:21 +00001823static struct b_lists *
1824jffs2_get_list(struct part_info * part, const char *who)
1825{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001826 /* copy requested part_info struct pointer to global location */
1827 current_part = part;
1828
wdenkfe8c2802002-11-03 00:38:21 +00001829 if (jffs2_1pass_rescan_needed(part)) {
1830 if (!jffs2_1pass_build_lists(part)) {
1831 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1832 return NULL;
1833 }
1834 }
1835 return (struct b_lists *)part->jffs2_priv;
1836}
1837
1838
1839/* Print directory / file contents */
1840u32
1841jffs2_1pass_ls(struct part_info * part, const char *fname)
1842{
1843 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001844 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001845 u32 inode;
1846
wdenk06d01db2003-03-14 20:47:52 +00001847 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001848 return 0;
1849
1850 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1851 putstr("ls: Failed to scan jffs2 file structure\r\n");
1852 return 0;
1853 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001854
1855
wdenkfe8c2802002-11-03 00:38:21 +00001856#if 0
1857 putLabeledWord("found file at inode = ", inode);
1858 putLabeledWord("read_inode returns = ", ret);
1859#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001860
1861 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001862}
1863
1864
wdenkfe8c2802002-11-03 00:38:21 +00001865/* Load a file from flash into memory. fname can be a full path */
1866u32
1867jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1868{
1869
1870 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001871 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001872 u32 inode;
1873
1874 if (! (pl = jffs2_get_list(part, "load")))
1875 return 0;
1876
1877 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1878 putstr("load: Failed to find inode\r\n");
1879 return 0;
1880 }
1881
1882 /* Resolve symlinks */
1883 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1884 putstr("load: Failed to resolve inode structure\r\n");
1885 return 0;
1886 }
1887
1888 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1889 putstr("load: Failed to read inode\r\n");
1890 return 0;
1891 }
1892
1893 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1894 (unsigned long) dest, ret);
1895 return ret;
1896}
1897
1898/* Return information about the fs on this partition */
1899u32
1900jffs2_1pass_info(struct part_info * part)
1901{
1902 struct b_jffs2_info info;
1903 struct b_lists *pl;
1904 int i;
1905
1906 if (! (pl = jffs2_get_list(part, "info")))
1907 return 0;
1908
1909 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001910 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001911 printf ("Compression: %s\n"
1912 "\tfrag count: %d\n"
1913 "\tcompressed sum: %d\n"
1914 "\tuncompressed sum: %d\n",
1915 compr_names[i],
1916 info.compr_info[i].num_frags,
1917 info.compr_info[i].compr_sum,
1918 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001919 }
1920 return 1;
1921}