blob: a0b02e4dda1a0816ba8e5d6e68158ae83d1e8608 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2-------------------------------------------------------------------------
3 * Filename: jffs2.c
4 * Version: $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
5 * Copyright: Copyright (C) 2001, Russ Dill
6 * Author: Russ Dill <Russ.Dill@asu.edu>
7 * Description: Module to load kernel from jffs2
8 *-----------------------------------------------------------------------*/
9/*
10 * some portions of this code are taken from jffs2, and as such, the
11 * following copyright notice is included.
12 *
13 * JFFS2 -- Journalling Flash File System, Version 2.
14 *
15 * Copyright (C) 2001 Red Hat, Inc.
16 *
17 * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
18 *
19 * The original JFFS, from which the design for JFFS2 was derived,
20 * was designed and implemented by Axis Communications AB.
21 *
22 * The contents of this file are subject to the Red Hat eCos Public
23 * License Version 1.1 (the "Licence"); you may not use this file
24 * except in compliance with the Licence. You may obtain a copy of
25 * the Licence at http://www.redhat.com/
26 *
27 * Software distributed under the Licence is distributed on an "AS IS"
28 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
29 * See the Licence for the specific language governing rights and
30 * limitations under the Licence.
31 *
32 * The Original Code is JFFS2 - Journalling Flash File System, version 2
33 *
34 * Alternatively, the contents of this file may be used under the
35 * terms of the GNU General Public License version 2 (the "GPL"), in
36 * which case the provisions of the GPL are applicable instead of the
37 * above. If you wish to allow the use of your version of this file
38 * only under the terms of the GPL and not to allow others to use your
39 * version of this file under the RHEPL, indicate your decision by
40 * deleting the provisions above and replace them with the notice and
41 * other provisions required by the GPL. If you do not delete the
42 * provisions above, a recipient may use your version of this file
43 * under either the RHEPL or the GPL.
44 *
45 * $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
46 *
47 */
48
49/* Ok, so anyone who knows the jffs2 code will probably want to get a papar
50 * bag to throw up into before reading this code. I looked through the jffs2
51 * code, the caching scheme is very elegant. I tried to keep the version
52 * for a bootloader as small and simple as possible. Instead of worring about
53 * unneccesary data copies, node scans, etc, I just optimized for the known
54 * common case, a kernel, which looks like:
Wolfgang Denk53677ef2008-05-20 16:00:29 +020055 * (1) most pages are 4096 bytes
wdenkfe8c2802002-11-03 00:38:21 +000056 * (2) version numbers are somewhat sorted in acsending order
57 * (3) multiple compressed blocks making up one page is uncommon
58 *
59 * So I create a linked list of decending version numbers (insertions at the
60 * head), and then for each page, walk down the list, until a matching page
61 * with 4096 bytes is found, and then decompress the watching pages in
62 * reverse order.
63 *
64 */
65
66/*
67 * Adapted by Nye Liu <nyet@zumanetworks.com> and
68 * Rex Feany <rfeany@zumanetworks.com>
69 * on Jan/2002 for U-Boot.
70 *
71 * Clipped out all the non-1pass functions, cleaned up warnings,
72 * wrappers, etc. No major changes to the code.
73 * Please, he really means it when he said have a paper bag
74 * handy. We needed it ;).
75 *
76 */
77
wdenk06d01db2003-03-14 20:47:52 +000078/*
79 * Bugfixing by Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>, (C) Mar/2003
80 *
81 * - overhaul of the memory management. Removed much of the "paper-bagging"
82 * in that part of the code, fixed several bugs, now frees memory when
83 * partition is changed.
84 * It's still ugly :-(
85 * - fixed a bug in jffs2_1pass_read_inode where the file length calculation
86 * was incorrect. Removed a bit of the paper-bagging as well.
87 * - removed double crc calculation for fragment headers in jffs2_private.h
88 * for speedup.
89 * - scan_empty rewritten in a more "standard" manner (non-paperbag, that is).
90 * - spinning wheel now spins depending on how much memory has been scanned
91 * - lots of small changes all over the place to "improve" readability.
92 * - implemented fragment sorting to ensure that the newest data is copied
93 * if there are multiple copies of fragments for a certain file offset.
94 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 * The fragment sorting feature must be enabled by CONFIG_SYS_JFFS2_SORT_FRAGMENTS.
wdenk06d01db2003-03-14 20:47:52 +000096 * Sorting is done while adding fragments to the lists, which is more or less a
97 * bubble sort. This takes a lot of time, and is most probably not an issue if
98 * the boot filesystem is always mounted readonly.
99 *
100 * You should define it if the boot filesystem is mounted writable, and updates
101 * to the boot files are done by copying files to that filesystem.
102 *
103 *
104 * There's a big issue left: endianess is completely ignored in this code. Duh!
105 *
106 *
107 * You still should have paper bags at hand :-(. The code lacks more or less
108 * any comment, and is still arcane and difficult to read in places. As this
wdenkdd875c72004-01-03 21:24:46 +0000109 * might be incompatible with any new code from the jffs2 maintainers anyway,
110 * it should probably be dumped and replaced by something like jffs2reader!
wdenk06d01db2003-03-14 20:47:52 +0000111 */
112
113
wdenkfe8c2802002-11-03 00:38:21 +0000114#include <common.h>
115#include <config.h>
116#include <malloc.h>
117#include <linux/stat.h>
118#include <linux/time.h>
Stuart Wood86d32732008-06-02 16:40:08 -0400119#include <watchdog.h>
wdenkfe8c2802002-11-03 00:38:21 +0000120#include <jffs2/jffs2.h>
121#include <jffs2/jffs2_1pass.h>
Ilya Yanok584eeda2008-12-11 05:51:57 +0300122#include <linux/mtd/compat.h>
Ilya Yanok8cf19b92009-07-17 15:02:42 +0400123#include <asm/errno.h>
wdenkfe8c2802002-11-03 00:38:21 +0000124
125#include "jffs2_private.h"
126
wdenkfe8c2802002-11-03 00:38:21 +0000127
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200128#define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */
129#define SPIN_BLKSIZE 18 /* spin after having scanned 1<<BLKSIZE bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000130
wdenk06d01db2003-03-14 20:47:52 +0000131/* Debugging switches */
132#undef DEBUG_DIRENTS /* print directory entry list after scan */
133#undef DEBUG_FRAGMENTS /* print fragment list after scan */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200134#undef DEBUG /* enable debugging messages */
wdenk06d01db2003-03-14 20:47:52 +0000135
136
wdenkfe8c2802002-11-03 00:38:21 +0000137#ifdef DEBUG
138# define DEBUGF(fmt,args...) printf(fmt ,##args)
139#else
140# define DEBUGF(fmt,args...)
141#endif
142
Ilya Yanok9b707622008-11-13 19:49:35 +0300143#include "summary.h"
144
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200145/* keeps pointer to currentlu processed partition */
146static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000147
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200148#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500149 defined(CONFIG_CMD_NAND) )
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100150#include <nand.h>
wdenk998eaae2004-04-18 19:43:36 +0000151/*
152 * Support for jffs2 on top of NAND-flash
153 *
154 * NAND memory isn't mapped in processor's address space,
155 * so data should be fetched from flash before
156 * being processed. This is exactly what functions declared
157 * here do.
158 *
159 */
160
wdenk998eaae2004-04-18 19:43:36 +0000161#define NAND_PAGE_SIZE 512
162#define NAND_PAGE_SHIFT 9
163#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
164
165#ifndef NAND_CACHE_PAGES
166#define NAND_CACHE_PAGES 16
167#endif
168#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
169
170static u8* nand_cache = NULL;
171static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000172
173static int read_nand_cached(u32 off, u32 size, u_char *buf)
174{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200175 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000176 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200177 size_t retlen;
wdenk998eaae2004-04-18 19:43:36 +0000178 int cpy_bytes;
179
180 while (bytes_read < size) {
181 if ((off + bytes_read < nand_cache_off) ||
182 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
183 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
184 if (!nand_cache) {
185 /* This memory never gets freed but 'cause
186 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000187 nand_cache = malloc(NAND_CACHE_SIZE);
188 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000189 printf("read_nand_cached: can't alloc cache size %d bytes\n",
190 NAND_CACHE_SIZE);
191 return -1;
192 }
193 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100194
Marian Balakowicz6db39702006-04-08 19:08:06 +0200195 retlen = NAND_CACHE_SIZE;
196 if (nand_read(&nand_info[id->num], nand_cache_off,
197 &retlen, nand_cache) != 0 ||
198 retlen != NAND_CACHE_SIZE) {
199 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
200 nand_cache_off, NAND_CACHE_SIZE);
201 return -1;
202 }
wdenk998eaae2004-04-18 19:43:36 +0000203 }
204 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
205 if (cpy_bytes > size - bytes_read)
206 cpy_bytes = size - bytes_read;
207 memcpy(buf + bytes_read,
208 nand_cache + off + bytes_read - nand_cache_off,
209 cpy_bytes);
210 bytes_read += cpy_bytes;
211 }
212 return bytes_read;
213}
214
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200215static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000216{
217 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
218
219 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200220 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000221 return NULL;
222 }
223 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000224 if (!ext_buf)
225 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000226 return NULL;
227 }
228
229 return buf;
230}
231
Ilya Yanok70741002008-11-13 19:49:34 +0300232static void *get_node_mem_nand(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000233{
234 struct jffs2_unknown_node node;
235 void *ret = NULL;
236
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200237 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000238 return NULL;
239
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200240 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000241 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300242 ext_buf))) {
wdenk998eaae2004-04-18 19:43:36 +0000243 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
244 off, node.magic, node.nodetype, node.totlen);
245 }
246 return ret;
247}
248
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200249static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000250{
251 free(buf);
252}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500253#endif
wdenk998eaae2004-04-18 19:43:36 +0000254
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900255#if defined(CONFIG_CMD_ONENAND)
256
257#include <linux/mtd/mtd.h>
258#include <linux/mtd/onenand.h>
259#include <onenand_uboot.h>
260
261#define ONENAND_PAGE_SIZE 2048
262#define ONENAND_PAGE_SHIFT 11
263#define ONENAND_PAGE_MASK (~(ONENAND_PAGE_SIZE-1))
264
265#ifndef ONENAND_CACHE_PAGES
266#define ONENAND_CACHE_PAGES 4
267#endif
268#define ONENAND_CACHE_SIZE (ONENAND_CACHE_PAGES*ONENAND_PAGE_SIZE)
269
270static u8* onenand_cache;
271static u32 onenand_cache_off = (u32)-1;
272
273static int read_onenand_cached(u32 off, u32 size, u_char *buf)
274{
275 u32 bytes_read = 0;
276 size_t retlen;
277 int cpy_bytes;
278
279 while (bytes_read < size) {
280 if ((off + bytes_read < onenand_cache_off) ||
281 (off + bytes_read >= onenand_cache_off + ONENAND_CACHE_SIZE)) {
282 onenand_cache_off = (off + bytes_read) & ONENAND_PAGE_MASK;
283 if (!onenand_cache) {
284 /* This memory never gets freed but 'cause
285 it's a bootloader, nobody cares */
286 onenand_cache = malloc(ONENAND_CACHE_SIZE);
287 if (!onenand_cache) {
288 printf("read_onenand_cached: can't alloc cache size %d bytes\n",
289 ONENAND_CACHE_SIZE);
290 return -1;
291 }
292 }
293
294 retlen = ONENAND_CACHE_SIZE;
295 if (onenand_read(&onenand_mtd, onenand_cache_off, retlen,
296 &retlen, onenand_cache) != 0 ||
297 retlen != ONENAND_CACHE_SIZE) {
298 printf("read_onenand_cached: error reading nand off %#x size %d bytes\n",
299 onenand_cache_off, ONENAND_CACHE_SIZE);
300 return -1;
301 }
302 }
303 cpy_bytes = onenand_cache_off + ONENAND_CACHE_SIZE - (off + bytes_read);
304 if (cpy_bytes > size - bytes_read)
305 cpy_bytes = size - bytes_read;
306 memcpy(buf + bytes_read,
307 onenand_cache + off + bytes_read - onenand_cache_off,
308 cpy_bytes);
309 bytes_read += cpy_bytes;
310 }
311 return bytes_read;
312}
313
314static void *get_fl_mem_onenand(u32 off, u32 size, void *ext_buf)
315{
316 u_char *buf = ext_buf ? (u_char *)ext_buf : (u_char *)malloc(size);
317
318 if (NULL == buf) {
319 printf("get_fl_mem_onenand: can't alloc %d bytes\n", size);
320 return NULL;
321 }
322 if (read_onenand_cached(off, size, buf) < 0) {
323 if (!ext_buf)
324 free(buf);
325 return NULL;
326 }
327
328 return buf;
329}
330
Ilya Yanok70741002008-11-13 19:49:34 +0300331static void *get_node_mem_onenand(u32 off, void *ext_buf)
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900332{
333 struct jffs2_unknown_node node;
334 void *ret = NULL;
335
336 if (NULL == get_fl_mem_onenand(off, sizeof(node), &node))
337 return NULL;
338
339 ret = get_fl_mem_onenand(off, node.magic ==
340 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
Ilya Yanok70741002008-11-13 19:49:34 +0300341 ext_buf);
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900342 if (!ret) {
343 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
344 off, node.magic, node.nodetype, node.totlen);
345 }
346 return ret;
347}
348
349
350static void put_fl_mem_onenand(void *buf)
351{
352 free(buf);
353}
354#endif
355
wdenk998eaae2004-04-18 19:43:36 +0000356
Jon Loeligerdd60d122007-07-09 17:56:50 -0500357#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200358/*
359 * Support for jffs2 on top of NOR-flash
360 *
361 * NOR flash memory is mapped in processor's address space,
362 * just return address.
363 */
Ilya Yanok70741002008-11-13 19:49:34 +0300364static inline void *get_fl_mem_nor(u32 off, u32 size, void *ext_buf)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200365{
366 u32 addr = off;
367 struct mtdids *id = current_part->dev->id;
368
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200369 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200370 flash_info_t *flash = &flash_info[id->num];
371
372 addr += flash->start[0];
Ilya Yanok70741002008-11-13 19:49:34 +0300373 if (ext_buf) {
374 memcpy(ext_buf, (void *)addr, size);
375 return ext_buf;
376 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200377 return (void*)addr;
378}
379
Ilya Yanok70741002008-11-13 19:49:34 +0300380static inline void *get_node_mem_nor(u32 off, void *ext_buf)
Ilya Yanok8a36d312008-11-13 19:49:33 +0300381{
Ilya Yanok70741002008-11-13 19:49:34 +0300382 struct jffs2_unknown_node *pNode;
Ilya Yanok8a36d312008-11-13 19:49:33 +0300383
Ilya Yanok70741002008-11-13 19:49:34 +0300384 /* pNode will point directly to flash - don't provide external buffer
385 and don't care about size */
386 pNode = get_fl_mem_nor(off, 0, NULL);
387 return (void *)get_fl_mem_nor(off, pNode->magic == JFFS2_MAGIC_BITMASK ?
388 pNode->totlen : sizeof(*pNode), ext_buf);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200389}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500390#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200391
392
393/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200394 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200395 *
396 */
wdenk998eaae2004-04-18 19:43:36 +0000397static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
398{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200399 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200400
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100401 switch(id->type) {
Jon Loeligerdd60d122007-07-09 17:56:50 -0500402#if defined(CONFIG_CMD_FLASH)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100403 case MTD_DEV_TYPE_NOR:
Ilya Yanok70741002008-11-13 19:49:34 +0300404 return get_fl_mem_nor(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100405 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200406#endif
Jon Loeligerdd60d122007-07-09 17:56:50 -0500407#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100408 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200409 return get_fl_mem_nand(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100410 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200411#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900412#if defined(CONFIG_CMD_ONENAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100413 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900414 return get_fl_mem_onenand(off, size, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100415 break;
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900416#endif
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100417 default:
418 printf("get_fl_mem: unknown device type, " \
419 "using raw offset!\n");
420 }
wdenk998eaae2004-04-18 19:43:36 +0000421 return (void*)off;
422}
423
Ilya Yanok70741002008-11-13 19:49:34 +0300424static inline void *get_node_mem(u32 off, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000425{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200426 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200427
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100428 switch(id->type) {
Jon Loeligerdd60d122007-07-09 17:56:50 -0500429#if defined(CONFIG_CMD_FLASH)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100430 case MTD_DEV_TYPE_NOR:
Ilya Yanok70741002008-11-13 19:49:34 +0300431 return get_node_mem_nor(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100432 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200433#endif
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200434#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500435 defined(CONFIG_CMD_NAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100436 case MTD_DEV_TYPE_NAND:
Ilya Yanok70741002008-11-13 19:49:34 +0300437 return get_node_mem_nand(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100438 break;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200439#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900440#if defined(CONFIG_CMD_ONENAND)
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100441 case MTD_DEV_TYPE_ONENAND:
Ilya Yanok70741002008-11-13 19:49:34 +0300442 return get_node_mem_onenand(off, ext_buf);
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100443 break;
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900444#endif
Heiko Schocher2d2018f2010-03-24 13:22:50 +0100445 default:
446 printf("get_fl_mem: unknown device type, " \
447 "using raw offset!\n");
448 }
wdenk998eaae2004-04-18 19:43:36 +0000449 return (void*)off;
450}
451
Ilya Yanok70741002008-11-13 19:49:34 +0300452static inline void put_fl_mem(void *buf, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000453{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200454 struct mtdids *id = current_part->dev->id;
455
Ilya Yanok70741002008-11-13 19:49:34 +0300456 /* If buf is the same as ext_buf, it was provided by the caller -
457 we shouldn't free it then. */
458 if (buf == ext_buf)
459 return;
Scott Wood2f77c7f2008-10-31 13:51:12 -0500460 switch (id->type) {
461#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
462 case MTD_DEV_TYPE_NAND:
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200463 return put_fl_mem_nand(buf);
464#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900465#if defined(CONFIG_CMD_ONENAND)
Scott Wood2f77c7f2008-10-31 13:51:12 -0500466 case MTD_DEV_TYPE_ONENAND:
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900467 return put_fl_mem_onenand(buf);
468#endif
Scott Wood2f77c7f2008-10-31 13:51:12 -0500469 }
wdenk998eaae2004-04-18 19:43:36 +0000470}
471
wdenk06d01db2003-03-14 20:47:52 +0000472/* Compression names */
473static char *compr_names[] = {
474 "NONE",
475 "ZERO",
476 "RTIME",
477 "RUBINMIPS",
478 "COPY",
479 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000480 "ZLIB",
Wolfgang Denkf0983372010-01-15 11:10:33 +0100481#if defined(CONFIG_JFFS2_LZO)
wdenk07cc0992005-05-05 00:04:14 +0000482 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000483#endif
wdenk06d01db2003-03-14 20:47:52 +0000484};
485
wdenk06d01db2003-03-14 20:47:52 +0000486/* Memory management */
487struct mem_block {
488 u32 index;
489 struct mem_block *next;
490 struct b_node nodes[NODE_CHUNK];
491};
492
493
494static void
495free_nodes(struct b_list *list)
496{
497 while (list->listMemBase != NULL) {
498 struct mem_block *next = list->listMemBase->next;
499 free( list->listMemBase );
500 list->listMemBase = next;
501 }
502}
wdenkfe8c2802002-11-03 00:38:21 +0000503
504static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000505add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000506{
wdenk06d01db2003-03-14 20:47:52 +0000507 u32 index = 0;
508 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000509 struct b_node *b;
510
wdenk06d01db2003-03-14 20:47:52 +0000511 memBase = list->listMemBase;
512 if (memBase != NULL)
513 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000514#if 0
515 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000516 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000517#endif
518
wdenk06d01db2003-03-14 20:47:52 +0000519 if (memBase == NULL || index >= NODE_CHUNK) {
520 /* we need more space before we continue */
521 memBase = mmalloc(sizeof(struct mem_block));
522 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000523 putstr("add_node: malloc failed\n");
524 return NULL;
525 }
wdenk06d01db2003-03-14 20:47:52 +0000526 memBase->next = list->listMemBase;
527 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000528#if 0
529 putLabeledWord("add_node: alloced a new membase at ", *memBase);
530#endif
531
532 }
533 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000534 b = &memBase->nodes[index];
535 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000536
wdenk06d01db2003-03-14 20:47:52 +0000537 memBase->index = index;
538 list->listMemBase = memBase;
539 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000540 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000541}
542
wdenk06d01db2003-03-14 20:47:52 +0000543static struct b_node *
544insert_node(struct b_list *list, u32 offset)
545{
546 struct b_node *new;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200547#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000548 struct b_node *b, *prev;
549#endif
550
551 if (!(new = add_node(list))) {
552 putstr("add_node failed!\r\n");
553 return NULL;
554 }
555 new->offset = offset;
556
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200557#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000558 if (list->listTail != NULL && list->listCompare(new, list->listTail))
559 prev = list->listTail;
560 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
561 prev = list->listLast;
562 else
563 prev = NULL;
564
565 for (b = (prev ? prev->next : list->listHead);
566 b != NULL && list->listCompare(new, b);
567 prev = b, b = b->next) {
568 list->listLoops++;
569 }
570 if (b != NULL)
571 list->listLast = prev;
572
573 if (b != NULL) {
574 new->next = b;
575 if (prev != NULL)
576 prev->next = new;
577 else
578 list->listHead = new;
579 } else
580#endif
581 {
582 new->next = (struct b_node *) NULL;
583 if (list->listTail != NULL) {
584 list->listTail->next = new;
585 list->listTail = new;
586 } else {
587 list->listTail = list->listHead = new;
588 }
589 }
590
591 return new;
592}
593
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200594#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000595/* Sort data entries with the latest version last, so that if there
596 * is overlapping data the latest version will be used.
597 */
wdenk06d01db2003-03-14 20:47:52 +0000598static int compare_inodes(struct b_node *new, struct b_node *old)
599{
wdenk998eaae2004-04-18 19:43:36 +0000600 struct jffs2_raw_inode ojNew;
601 struct jffs2_raw_inode ojOld;
602 struct jffs2_raw_inode *jNew =
603 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
604 struct jffs2_raw_inode *jOld =
605 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000606
wdenk7205e402003-09-10 22:30:53 +0000607 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000608}
609
wdenk7205e402003-09-10 22:30:53 +0000610/* Sort directory entries so all entries in the same directory
611 * with the same name are grouped together, with the latest version
612 * last. This makes it easy to eliminate all but the latest version
613 * by marking the previous version dead by setting the inode to 0.
614 */
wdenk06d01db2003-03-14 20:47:52 +0000615static int compare_dirents(struct b_node *new, struct b_node *old)
616{
wdenk998eaae2004-04-18 19:43:36 +0000617 struct jffs2_raw_dirent ojNew;
618 struct jffs2_raw_dirent ojOld;
619 struct jffs2_raw_dirent *jNew =
620 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000621 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000622 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000623 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000624
wdenk7205e402003-09-10 22:30:53 +0000625 /* ascending sort by pino */
626 if (jNew->pino != jOld->pino)
627 return jNew->pino > jOld->pino;
628
629 /* pino is the same, so use ascending sort by nsize, so
630 * we don't do strncmp unless we really must.
631 */
632 if (jNew->nsize != jOld->nsize)
633 return jNew->nsize > jOld->nsize;
634
635 /* length is also the same, so use ascending sort by name
636 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200637 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk7205e402003-09-10 22:30:53 +0000638 if (cmp != 0)
639 return cmp > 0;
640
641 /* we have duplicate names in this directory, so use ascending
642 * sort by version
643 */
644 if (jNew->version > jOld->version) {
645 /* since jNew is newer, we know jOld is not valid, so
646 * mark it with inode 0 and it will not be used
647 */
648 jOld->ino = 0;
649 return 1;
650 }
wdenk42d1f032003-10-15 23:53:47 +0000651
wdenk7205e402003-09-10 22:30:53 +0000652 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000653}
654#endif
wdenkfe8c2802002-11-03 00:38:21 +0000655
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200656void
657jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000658{
wdenk06d01db2003-03-14 20:47:52 +0000659 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000660
wdenk06d01db2003-03-14 20:47:52 +0000661 if (part->jffs2_priv != NULL) {
662 pL = (struct b_lists *)part->jffs2_priv;
663 free_nodes(&pL->frag);
664 free_nodes(&pL->dir);
Ilya Yanok70741002008-11-13 19:49:34 +0300665 free(pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000666 free(pL);
667 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200668}
669
670static u32
671jffs_init_1pass_list(struct part_info *part)
672{
673 struct b_lists *pL;
674
675 jffs2_free_cache(part);
676
wdenk06d01db2003-03-14 20:47:52 +0000677 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
678 pL = (struct b_lists *)part->jffs2_priv;
679
680 memset(pL, 0, sizeof(*pL));
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200681#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000682 pL->dir.listCompare = compare_dirents;
683 pL->frag.listCompare = compare_inodes;
684#endif
wdenkfe8c2802002-11-03 00:38:21 +0000685 }
686 return 0;
687}
688
689/* find the inode from the slashless name given a parent */
690static long
691jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
692{
693 struct b_node *b;
694 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000695 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000696 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200697 uchar *lDest;
698 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000699 int i;
700 u32 counter = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200701#ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000702 /* Find file size before loading any data, so fragments that
703 * start past the end of file can be ignored. A fragment
704 * that is partially in the file is loaded, so extra data may
705 * be loaded up to the next 4K boundary above the file size.
706 * This shouldn't cause trouble when loading kernel images, so
707 * we will live with it.
708 */
709 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000710 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
Ilya Yanok70741002008-11-13 19:49:34 +0300711 sizeof(struct jffs2_raw_inode), pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000712 if ((inode == jNode->ino)) {
713 /* get actual file length from the newest node */
714 if (jNode->version >= latestVersion) {
715 totalSize = jNode->isize;
716 latestVersion = jNode->version;
717 }
718 }
Ilya Yanok70741002008-11-13 19:49:34 +0300719 put_fl_mem(jNode, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000720 }
721#endif
wdenkfe8c2802002-11-03 00:38:21 +0000722
wdenk06d01db2003-03-14 20:47:52 +0000723 for (b = pL->frag.listHead; b != NULL; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300724 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset,
725 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000726 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000727#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000728 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
729 putLabeledWord("read_inode: inode = ", jNode->ino);
730 putLabeledWord("read_inode: version = ", jNode->version);
731 putLabeledWord("read_inode: isize = ", jNode->isize);
732 putLabeledWord("read_inode: offset = ", jNode->offset);
733 putLabeledWord("read_inode: csize = ", jNode->csize);
734 putLabeledWord("read_inode: dsize = ", jNode->dsize);
735 putLabeledWord("read_inode: compr = ", jNode->compr);
736 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
737 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000738#endif
wdenk7205e402003-09-10 22:30:53 +0000739
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200740#ifndef CONFIG_SYS_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000741 /* get actual file length from the newest node */
742 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000743 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000744 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000745 }
wdenk7205e402003-09-10 22:30:53 +0000746#endif
wdenkfe8c2802002-11-03 00:38:21 +0000747
748 if(dest) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200749 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000750 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000751 if (jNode->offset > totalSize) {
Ilya Yanok70741002008-11-13 19:49:34 +0300752 put_fl_mem(jNode, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000753 continue;
wdenk998eaae2004-04-18 19:43:36 +0000754 }
Ilya Yanok142a80f2008-11-13 19:49:36 +0300755 if (b->datacrc == CRC_UNKNOWN)
756 b->datacrc = data_crc(jNode) ?
757 CRC_OK : CRC_BAD;
758 if (b->datacrc == CRC_BAD) {
Ilya Yanok70741002008-11-13 19:49:34 +0300759 put_fl_mem(jNode, pL->readbuf);
Ilya Yanok8a36d312008-11-13 19:49:33 +0300760 continue;
761 }
wdenk06d01db2003-03-14 20:47:52 +0000762
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200763 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000764#if 0
wdenk06d01db2003-03-14 20:47:52 +0000765 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000766 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000767#endif
768 switch (jNode->compr) {
769 case JFFS2_COMPR_NONE:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200770 ldr_memcpy(lDest, src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000771 break;
772 case JFFS2_COMPR_ZERO:
wdenkfe8c2802002-11-03 00:38:21 +0000773 for (i = 0; i < jNode->dsize; i++)
774 *(lDest++) = 0;
775 break;
776 case JFFS2_COMPR_RTIME:
wdenkfe8c2802002-11-03 00:38:21 +0000777 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
778 break;
779 case JFFS2_COMPR_DYNRUBIN:
780 /* this is slow but it works */
wdenkfe8c2802002-11-03 00:38:21 +0000781 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
782 break;
783 case JFFS2_COMPR_ZLIB:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200784 zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000785 break;
Wolfgang Denkf0983372010-01-15 11:10:33 +0100786#if defined(CONFIG_JFFS2_LZO)
wdenk07cc0992005-05-05 00:04:14 +0000787 case JFFS2_COMPR_LZO:
Wolfgang Denk16b9afd2011-10-05 22:58:11 +0200788 lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
wdenk07cc0992005-05-05 00:04:14 +0000789 break;
790#endif
wdenkfe8c2802002-11-03 00:38:21 +0000791 default:
792 /* unknown */
Loïc Minier6052cba2011-02-03 22:04:26 +0100793 putLabeledWord("UNKNOWN COMPRESSION METHOD = ", jNode->compr);
Ilya Yanok70741002008-11-13 19:49:34 +0300794 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000795 return -1;
796 break;
797 }
798 }
799
wdenkfe8c2802002-11-03 00:38:21 +0000800#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000801 putLabeledWord("read_inode: totalSize = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000802#endif
803 }
wdenkfe8c2802002-11-03 00:38:21 +0000804 counter++;
Ilya Yanok70741002008-11-13 19:49:34 +0300805 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000806 }
wdenkfe8c2802002-11-03 00:38:21 +0000807
808#if 0
wdenk06d01db2003-03-14 20:47:52 +0000809 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000810#endif
wdenk06d01db2003-03-14 20:47:52 +0000811 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000812}
813
814/* find the inode from the slashless name given a parent */
815static u32
816jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
817{
818 struct b_node *b;
819 struct jffs2_raw_dirent *jDir;
820 int len;
821 u32 counter;
822 u32 version = 0;
823 u32 inode = 0;
824
825 /* name is assumed slash free */
826 len = strlen(name);
827
828 counter = 0;
829 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000830 for(b = pL->dir.listHead; b; b = b->next, counter++) {
Ilya Yanok70741002008-11-13 19:49:34 +0300831 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
832 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000833 if ((pino == jDir->pino) && (len == jDir->nsize) &&
834 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200835 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000836 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +0300837 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +0000838 continue;
wdenk998eaae2004-04-18 19:43:36 +0000839 }
wdenkfe8c2802002-11-03 00:38:21 +0000840
wdenk7205e402003-09-10 22:30:53 +0000841 if (jDir->version == version && inode != 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200842 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000843 putstr(" ** ERROR ** ");
844 putnstr(jDir->name, jDir->nsize);
845 putLabeledWord(" has dup version =", version);
846 }
847 inode = jDir->ino;
848 version = jDir->version;
849 }
850#if 0
851 putstr("\r\nfind_inode:p&l ->");
852 putnstr(jDir->name, jDir->nsize);
853 putstr("\r\n");
854 putLabeledWord("pino = ", jDir->pino);
855 putLabeledWord("nsize = ", jDir->nsize);
856 putLabeledWord("b = ", (u32) b);
857 putLabeledWord("counter = ", counter);
858#endif
Ilya Yanok70741002008-11-13 19:49:34 +0300859 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000860 }
861 return inode;
862}
863
wdenk180d3f72004-01-04 16:28:35 +0000864char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000865{
wdenk06d01db2003-03-14 20:47:52 +0000866 static const char *l = "xwr";
867 int mask = 1, i;
868 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000869
wdenk06d01db2003-03-14 20:47:52 +0000870 switch (mode & S_IFMT) {
871 case S_IFDIR: str[0] = 'd'; break;
872 case S_IFBLK: str[0] = 'b'; break;
873 case S_IFCHR: str[0] = 'c'; break;
874 case S_IFIFO: str[0] = 'f'; break;
875 case S_IFLNK: str[0] = 'l'; break;
876 case S_IFSOCK: str[0] = 's'; break;
877 case S_IFREG: str[0] = '-'; break;
878 default: str[0] = '?';
879 }
wdenkfe8c2802002-11-03 00:38:21 +0000880
wdenk06d01db2003-03-14 20:47:52 +0000881 for(i = 0; i < 9; i++) {
882 c = l[i%3];
883 str[9-i] = (mode & mask)?c:'-';
884 mask = mask<<1;
885 }
wdenkfe8c2802002-11-03 00:38:21 +0000886
wdenk06d01db2003-03-14 20:47:52 +0000887 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
888 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
889 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
890 str[10] = '\0';
891 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000892}
893
894static inline void dump_stat(struct stat *st, const char *name)
895{
wdenk06d01db2003-03-14 20:47:52 +0000896 char str[20];
897 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000898
wdenk06d01db2003-03-14 20:47:52 +0000899 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
900 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000901
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200902 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000903
wdenk06d01db2003-03-14 20:47:52 +0000904 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
905 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000906
907/*
wdenk06d01db2003-03-14 20:47:52 +0000908 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
909 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000910*/
911
wdenk06d01db2003-03-14 20:47:52 +0000912 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000913}
914
915static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
916{
917 char fname[256];
918 struct stat st;
919
920 if(!d || !i) return -1;
921
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200922 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000923 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000924
925 memset(&st,0,sizeof(st));
926
wdenk06d01db2003-03-14 20:47:52 +0000927 st.st_mtime = i->mtime;
928 st.st_mode = i->mode;
929 st.st_ino = i->ino;
Ilya Yanokf7384692008-11-13 19:49:31 +0300930 st.st_size = i->isize;
wdenkfe8c2802002-11-03 00:38:21 +0000931
932 dump_stat(&st, fname);
933
934 if (d->type == DT_LNK) {
935 unsigned char *src = (unsigned char *) (&i[1]);
936 putstr(" -> ");
937 putnstr(src, (int)i->dsize);
938 }
939
940 putstr("\r\n");
941
942 return 0;
943}
944
945/* list inodes with the given pino */
946static u32
947jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
948{
949 struct b_node *b;
950 struct jffs2_raw_dirent *jDir;
951
wdenk06d01db2003-03-14 20:47:52 +0000952 for (b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +0300953 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
954 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +0000955 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
956 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000957 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000958 struct jffs2_raw_inode *jNode, *i = NULL;
959 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000960
961 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000962 jNode = (struct jffs2_raw_inode *)
963 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000964 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
Ilya Yanokf7384692008-11-13 19:49:31 +0300965 i_version = jNode->version;
wdenk32877d62004-05-05 19:44:41 +0000966 if (i)
Ilya Yanok70741002008-11-13 19:49:34 +0300967 put_fl_mem(i, NULL);
wdenkcf8bc572005-05-04 23:50:54 +0000968
969 if (jDir->type == DT_LNK)
Ilya Yanok70741002008-11-13 19:49:34 +0300970 i = get_node_mem(b2->offset,
971 NULL);
wdenkcf8bc572005-05-04 23:50:54 +0000972 else
Ilya Yanok70741002008-11-13 19:49:34 +0300973 i = get_fl_mem(b2->offset,
974 sizeof(*i),
975 NULL);
wdenk32877d62004-05-05 19:44:41 +0000976 }
wdenkfe8c2802002-11-03 00:38:21 +0000977 b2 = b2->next;
978 }
979
980 dump_inode(pL, jDir, i);
Ilya Yanok70741002008-11-13 19:49:34 +0300981 put_fl_mem(i, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000982 }
Ilya Yanok70741002008-11-13 19:49:34 +0300983 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +0000984 }
985 return pino;
986}
987
988static u32
989jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
990{
991 int i;
992 char tmp[256];
993 char working_tmp[256];
994 char *c;
995
996 /* discard any leading slash */
997 i = 0;
998 while (fname[i] == '/')
999 i++;
1000 strcpy(tmp, &fname[i]);
1001
1002 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1003 {
1004 strncpy(working_tmp, tmp, c - tmp);
1005 working_tmp[c - tmp] = '\0';
1006#if 0
1007 putstr("search_inode: tmp = ");
1008 putstr(tmp);
1009 putstr("\r\n");
1010 putstr("search_inode: wtmp = ");
1011 putstr(working_tmp);
1012 putstr("\r\n");
1013 putstr("search_inode: c = ");
1014 putstr(c);
1015 putstr("\r\n");
1016#endif
1017 for (i = 0; i < strlen(c) - 1; i++)
1018 tmp[i] = c[i + 1];
1019 tmp[i] = '\0';
1020#if 0
1021 putstr("search_inode: post tmp = ");
1022 putstr(tmp);
1023 putstr("\r\n");
1024#endif
1025
1026 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
1027 putstr("find_inode failed for name=");
1028 putstr(working_tmp);
1029 putstr("\r\n");
1030 return 0;
1031 }
1032 }
1033 /* this is for the bare filename, directories have already been mapped */
1034 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1035 putstr("find_inode failed for name=");
1036 putstr(tmp);
1037 putstr("\r\n");
1038 return 0;
1039 }
1040 return pino;
1041
1042}
1043
1044static u32
1045jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
1046{
1047 struct b_node *b;
1048 struct b_node *b2;
1049 struct jffs2_raw_dirent *jDir;
1050 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +00001051 u8 jDirFoundType = 0;
1052 u32 jDirFoundIno = 0;
1053 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001054 char tmp[256];
1055 u32 version = 0;
1056 u32 pino;
1057 unsigned char *src;
1058
1059 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +00001060 for(b = pL->dir.listHead; b; b = b->next) {
Ilya Yanok70741002008-11-13 19:49:34 +03001061 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1062 pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001063 if (ino == jDir->ino) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001064 if (jDir->version < version) {
Ilya Yanok70741002008-11-13 19:49:34 +03001065 put_fl_mem(jDir, pL->readbuf);
wdenk7205e402003-09-10 22:30:53 +00001066 continue;
wdenk998eaae2004-04-18 19:43:36 +00001067 }
wdenkfe8c2802002-11-03 00:38:21 +00001068
wdenk998eaae2004-04-18 19:43:36 +00001069 if (jDir->version == version && jDirFoundType) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001070 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +00001071 putstr(" ** ERROR ** ");
1072 putnstr(jDir->name, jDir->nsize);
1073 putLabeledWord(" has dup version (resolve) = ",
1074 version);
1075 }
1076
wdenk998eaae2004-04-18 19:43:36 +00001077 jDirFoundType = jDir->type;
1078 jDirFoundIno = jDir->ino;
1079 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +00001080 version = jDir->version;
1081 }
Ilya Yanok70741002008-11-13 19:49:34 +03001082 put_fl_mem(jDir, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001083 }
1084 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +00001085 if (jDirFoundType != DT_LNK)
1086 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +00001087
1088 /* it's a soft link so we follow it again. */
1089 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001090 while (b2) {
Ilya Yanok70741002008-11-13 19:49:34 +03001091 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset,
1092 pL->readbuf);
wdenk998eaae2004-04-18 19:43:36 +00001093 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +00001094 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +00001095
1096#if 0
1097 putLabeledWord("\t\t dsize = ", jNode->dsize);
1098 putstr("\t\t target = ");
1099 putnstr(src, jNode->dsize);
1100 putstr("\r\n");
1101#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001102 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +00001103 tmp[jNode->dsize] = '\0';
Ilya Yanok70741002008-11-13 19:49:34 +03001104 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001105 break;
1106 }
1107 b2 = b2->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001108 put_fl_mem(jNode, pL->readbuf);
wdenkfe8c2802002-11-03 00:38:21 +00001109 }
1110 /* ok so the name of the new file to find is in tmp */
1111 /* if it starts with a slash it is root based else shared dirs */
1112 if (tmp[0] == '/')
1113 pino = 1;
1114 else
wdenk998eaae2004-04-18 19:43:36 +00001115 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001116
1117 return jffs2_1pass_search_inode(pL, tmp, pino);
1118}
1119
1120static u32
1121jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1122{
1123 int i;
1124 char tmp[256];
1125 char working_tmp[256];
1126 char *c;
1127
1128 /* discard any leading slash */
1129 i = 0;
1130 while (fname[i] == '/')
1131 i++;
1132 strcpy(tmp, &fname[i]);
1133 working_tmp[0] = '\0';
1134 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1135 {
1136 strncpy(working_tmp, tmp, c - tmp);
1137 working_tmp[c - tmp] = '\0';
1138 for (i = 0; i < strlen(c) - 1; i++)
1139 tmp[i] = c[i + 1];
1140 tmp[i] = '\0';
1141 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001142 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1143 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001144 putstr("find_inode failed for name=");
1145 putstr(working_tmp);
1146 putstr("\r\n");
1147 return 0;
1148 }
1149 }
1150
1151 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1152 putstr("find_inode failed for name=");
1153 putstr(tmp);
1154 putstr("\r\n");
1155 return 0;
1156 }
1157 /* this is for the bare filename, directories have already been mapped */
1158 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1159 putstr("find_inode failed for name=");
1160 putstr(tmp);
1161 putstr("\r\n");
1162 return 0;
1163 }
1164 return pino;
1165
1166}
1167
1168unsigned char
1169jffs2_1pass_rescan_needed(struct part_info *part)
1170{
1171 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001172 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001173 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001174 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001175
1176 if (part->jffs2_priv == 0){
1177 DEBUGF ("rescan: First time in use\n");
1178 return 1;
1179 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001180
wdenkfe8c2802002-11-03 00:38:21 +00001181 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001182 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001183 DEBUGF ("rescan: fraglist zero\n");
1184 return 1;
1185 }
1186
wdenk06d01db2003-03-14 20:47:52 +00001187 /* but suppose someone reflashed a partition at the same offset... */
1188 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001189 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001190 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1191 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001192 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001193 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1194 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001195 return 1;
1196 }
1197 b = b->next;
1198 }
1199 return 0;
1200}
1201
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001202#ifdef CONFIG_JFFS2_SUMMARY
1203static u32 sum_get_unaligned32(u32 *ptr)
1204{
1205 u32 val;
1206 u8 *p = (u8 *)ptr;
1207
1208 val = *p | (*(p + 1) << 8) | (*(p + 2) << 16) | (*(p + 3) << 24);
1209
1210 return __le32_to_cpu(val);
1211}
1212
1213static u16 sum_get_unaligned16(u16 *ptr)
1214{
1215 u16 val;
1216 u8 *p = (u8 *)ptr;
1217
1218 val = *p | (*(p + 1) << 8);
1219
1220 return __le16_to_cpu(val);
1221}
1222
Ilya Yanok9b707622008-11-13 19:49:35 +03001223#define dbg_summary(...) do {} while (0);
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001224/*
1225 * Process the stored summary information - helper function for
Ilya Yanok9b707622008-11-13 19:49:35 +03001226 * jffs2_sum_scan_sumnode()
1227 */
1228
1229static int jffs2_sum_process_sum_data(struct part_info *part, uint32_t offset,
1230 struct jffs2_raw_summary *summary,
1231 struct b_lists *pL)
1232{
1233 void *sp;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001234 int i, pass;
1235 void *ret;
Ilya Yanok9b707622008-11-13 19:49:35 +03001236
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001237 for (pass = 0; pass < 2; pass++) {
1238 sp = summary->sum;
Ilya Yanok9b707622008-11-13 19:49:35 +03001239
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001240 for (i = 0; i < summary->sum_num; i++) {
1241 struct jffs2_sum_unknown_flash *spu = sp;
1242 dbg_summary("processing summary index %d\n", i);
Ilya Yanok9b707622008-11-13 19:49:35 +03001243
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001244 switch (sum_get_unaligned16(&spu->nodetype)) {
1245 case JFFS2_NODETYPE_INODE: {
Ilya Yanok9b707622008-11-13 19:49:35 +03001246 struct jffs2_sum_inode_flash *spi;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001247 if (pass) {
1248 spi = sp;
Ilya Yanok9b707622008-11-13 19:49:35 +03001249
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001250 ret = insert_node(&pL->frag,
1251 (u32)part->offset +
1252 offset +
1253 sum_get_unaligned32(
1254 &spi->offset));
1255 if (ret == NULL)
1256 return -1;
1257 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001258
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001259 sp += JFFS2_SUMMARY_INODE_SIZE;
Ilya Yanok9b707622008-11-13 19:49:35 +03001260
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001261 break;
1262 }
1263 case JFFS2_NODETYPE_DIRENT: {
1264 struct jffs2_sum_dirent_flash *spd;
1265 spd = sp;
1266 if (pass) {
1267 ret = insert_node(&pL->dir,
1268 (u32) part->offset +
1269 offset +
1270 sum_get_unaligned32(
1271 &spd->offset));
1272 if (ret == NULL)
1273 return -1;
1274 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001275
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001276 sp += JFFS2_SUMMARY_DIRENT_SIZE(
1277 spd->nsize);
Ilya Yanok9b707622008-11-13 19:49:35 +03001278
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001279 break;
1280 }
1281 default : {
1282 uint16_t nodetype = sum_get_unaligned16(
1283 &spu->nodetype);
1284 printf("Unsupported node type %x found"
1285 " in summary!\n",
1286 nodetype);
1287 if ((nodetype & JFFS2_COMPAT_MASK) ==
1288 JFFS2_FEATURE_INCOMPAT)
1289 return -EIO;
1290 return -EBADMSG;
1291 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001292 }
1293 }
1294 }
1295 return 0;
1296}
1297
1298/* Process the summary node - called from jffs2_scan_eraseblock() */
1299int jffs2_sum_scan_sumnode(struct part_info *part, uint32_t offset,
1300 struct jffs2_raw_summary *summary, uint32_t sumsize,
1301 struct b_lists *pL)
1302{
1303 struct jffs2_unknown_node crcnode;
1304 int ret, ofs;
1305 uint32_t crc;
1306
1307 ofs = part->sector_size - sumsize;
1308
1309 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
1310 offset, offset + ofs, sumsize);
1311
1312 /* OK, now check for node validity and CRC */
1313 crcnode.magic = JFFS2_MAGIC_BITMASK;
1314 crcnode.nodetype = JFFS2_NODETYPE_SUMMARY;
1315 crcnode.totlen = summary->totlen;
1316 crc = crc32_no_comp(0, (uchar *)&crcnode, sizeof(crcnode)-4);
1317
1318 if (summary->hdr_crc != crc) {
1319 dbg_summary("Summary node header is corrupt (bad CRC or "
1320 "no summary at all)\n");
1321 goto crc_err;
1322 }
1323
1324 if (summary->totlen != sumsize) {
1325 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
1326 goto crc_err;
1327 }
1328
1329 crc = crc32_no_comp(0, (uchar *)summary,
1330 sizeof(struct jffs2_raw_summary)-8);
1331
1332 if (summary->node_crc != crc) {
1333 dbg_summary("Summary node is corrupt (bad CRC)\n");
1334 goto crc_err;
1335 }
1336
1337 crc = crc32_no_comp(0, (uchar *)summary->sum,
1338 sumsize - sizeof(struct jffs2_raw_summary));
1339
1340 if (summary->sum_crc != crc) {
1341 dbg_summary("Summary node data is corrupt (bad CRC)\n");
1342 goto crc_err;
1343 }
1344
1345 if (summary->cln_mkr)
1346 dbg_summary("Summary : CLEANMARKER node \n");
1347
1348 ret = jffs2_sum_process_sum_data(part, offset, summary, pL);
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001349 if (ret == -EBADMSG)
1350 return 0;
Ilya Yanok9b707622008-11-13 19:49:35 +03001351 if (ret)
1352 return ret; /* real error */
1353
1354 return 1;
1355
1356crc_err:
1357 putstr("Summary node crc error, skipping summary information.\n");
1358
1359 return 0;
1360}
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001361#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanok9b707622008-11-13 19:49:35 +03001362
wdenk06d01db2003-03-14 20:47:52 +00001363#ifdef DEBUG_FRAGMENTS
1364static void
1365dump_fragments(struct b_lists *pL)
1366{
1367 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001368 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001369 struct jffs2_raw_inode *jNode;
1370
1371 putstr("\r\n\r\n******The fragment Entries******\r\n");
1372 b = pL->frag.listHead;
1373 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001374 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1375 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001376 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1377 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1378 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1379 putLabeledWord("\tbuild_list: version = ", jNode->version);
1380 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1381 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1382 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1383 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1384 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1385 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1386 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1387 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001388 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001389 b = b->next;
1390 }
1391}
1392#endif
1393
1394#ifdef DEBUG_DIRENTS
1395static void
1396dump_dirents(struct b_lists *pL)
1397{
1398 struct b_node *b;
1399 struct jffs2_raw_dirent *jDir;
1400
1401 putstr("\r\n\r\n******The directory Entries******\r\n");
1402 b = pL->dir.listHead;
1403 while (b) {
Ilya Yanok70741002008-11-13 19:49:34 +03001404 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset,
1405 pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001406 putstr("\r\n");
1407 putnstr(jDir->name, jDir->nsize);
1408 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1409 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1410 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1411 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1412 putLabeledWord("\tbuild_list: version = ", jDir->version);
1413 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1414 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1415 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1416 putLabeledWord("\tbuild_list: type = ", jDir->type);
1417 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1418 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001419 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001420 b = b->next;
Ilya Yanok70741002008-11-13 19:49:34 +03001421 put_fl_mem(jDir, pL->readbuf);
wdenk06d01db2003-03-14 20:47:52 +00001422 }
1423}
1424#endif
1425
Ilya Yanok8a36d312008-11-13 19:49:33 +03001426#define DEFAULT_EMPTY_SCAN_SIZE 4096
1427
1428static inline uint32_t EMPTY_SCAN_SIZE(uint32_t sector_size)
1429{
1430 if (sector_size < DEFAULT_EMPTY_SCAN_SIZE)
1431 return sector_size;
1432 else
1433 return DEFAULT_EMPTY_SCAN_SIZE;
1434}
1435
wdenkfe8c2802002-11-03 00:38:21 +00001436static u32
1437jffs2_1pass_build_lists(struct part_info * part)
1438{
1439 struct b_lists *pL;
1440 struct jffs2_unknown_node *node;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001441 u32 nr_sectors = part->size/part->sector_size;
1442 u32 i;
wdenkfe8c2802002-11-03 00:38:21 +00001443 u32 counter4 = 0;
1444 u32 counterF = 0;
1445 u32 counterN = 0;
Ilya Yanok70741002008-11-13 19:49:34 +03001446 u32 max_totlen = 0;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001447 u32 buf_size = DEFAULT_EMPTY_SCAN_SIZE;
1448 char *buf;
wdenkfe8c2802002-11-03 00:38:21 +00001449
1450 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1451 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1452 /* only about 5 %. not enough to inconvenience people for. */
1453 /* lcd_off(); */
1454
1455 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001456 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001457 pL = (struct b_lists *)part->jffs2_priv;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001458 buf = malloc(buf_size);
wdenk4b9206e2004-03-23 22:14:11 +00001459 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001460
1461 /* start at the beginning of the partition */
Ilya Yanok8a36d312008-11-13 19:49:33 +03001462 for (i = 0; i < nr_sectors; i++) {
1463 uint32_t sector_ofs = i * part->sector_size;
1464 uint32_t buf_ofs = sector_ofs;
Ilya Yanok9b707622008-11-13 19:49:35 +03001465 uint32_t buf_len;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001466 uint32_t ofs, prevofs;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001467#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanok9b707622008-11-13 19:49:35 +03001468 struct jffs2_sum_marker *sm;
1469 void *sumptr = NULL;
1470 uint32_t sumlen;
1471 int ret;
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001472#endif
wdenk0b8fa032004-04-25 14:37:29 +00001473
Stuart Wood86d32732008-06-02 16:40:08 -04001474 WATCHDOG_RESET();
Ilya Yanok9b707622008-11-13 19:49:35 +03001475
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001476#ifdef CONFIG_JFFS2_SUMMARY
Ilya Yanok9b707622008-11-13 19:49:35 +03001477 buf_len = sizeof(*sm);
1478
1479 /* Read as much as we want into the _end_ of the preallocated
1480 * buffer
1481 */
1482 get_fl_mem(part->offset + sector_ofs + part->sector_size -
1483 buf_len, buf_len, buf + buf_size - buf_len);
1484
1485 sm = (void *)buf + buf_size - sizeof(*sm);
1486 if (sm->magic == JFFS2_SUM_MAGIC) {
1487 sumlen = part->sector_size - sm->offset;
1488 sumptr = buf + buf_size - sumlen;
1489
1490 /* Now, make sure the summary itself is available */
1491 if (sumlen > buf_size) {
1492 /* Need to kmalloc for this. */
1493 sumptr = malloc(sumlen);
1494 if (!sumptr) {
1495 putstr("Can't get memory for summary "
1496 "node!\n");
Ilya Yanokb6440062009-08-12 16:42:48 +04001497 free(buf);
1498 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001499 return 0;
1500 }
1501 memcpy(sumptr + sumlen - buf_len, buf +
1502 buf_size - buf_len, buf_len);
1503 }
1504 if (buf_len < sumlen) {
1505 /* Need to read more so that the entire summary
1506 * node is present
1507 */
1508 get_fl_mem(part->offset + sector_ofs +
1509 part->sector_size - sumlen,
1510 sumlen - buf_len, sumptr);
1511 }
1512 }
1513
1514 if (sumptr) {
1515 ret = jffs2_sum_scan_sumnode(part, sector_ofs, sumptr,
1516 sumlen, pL);
1517
1518 if (buf_size && sumlen > buf_size)
1519 free(sumptr);
Ilya Yanokb6440062009-08-12 16:42:48 +04001520 if (ret < 0) {
1521 free(buf);
1522 jffs2_free_cache(part);
Ilya Yanok9b707622008-11-13 19:49:35 +03001523 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001524 }
Ilya Yanok9b707622008-11-13 19:49:35 +03001525 if (ret)
1526 continue;
1527
1528 }
Ilya Yanok8cf19b92009-07-17 15:02:42 +04001529#endif /* CONFIG_JFFS2_SUMMARY */
Ilya Yanok9b707622008-11-13 19:49:35 +03001530
1531 buf_len = EMPTY_SCAN_SIZE(part->sector_size);
1532
Ilya Yanok8a36d312008-11-13 19:49:33 +03001533 get_fl_mem((u32)part->offset + buf_ofs, buf_len, buf);
Stuart Wood86d32732008-06-02 16:40:08 -04001534
Ilya Yanok8a36d312008-11-13 19:49:33 +03001535 /* We temporarily use 'ofs' as a pointer into the buffer/jeb */
1536 ofs = 0;
1537
1538 /* Scan only 4KiB of 0xFF before declaring it's empty */
1539 while (ofs < EMPTY_SCAN_SIZE(part->sector_size) &&
1540 *(uint32_t *)(&buf[ofs]) == 0xFFFFFFFF)
1541 ofs += 4;
1542
1543 if (ofs == EMPTY_SCAN_SIZE(part->sector_size))
1544 continue;
1545
1546 ofs += sector_ofs;
1547 prevofs = ofs - 1;
1548
1549 scan_more:
1550 while (ofs < sector_ofs + part->sector_size) {
1551 if (ofs == prevofs) {
1552 printf("offset %08x already seen, skip\n", ofs);
1553 ofs += 4;
1554 counter4++;
1555 continue;
1556 }
1557 prevofs = ofs;
1558 if (sector_ofs + part->sector_size <
1559 ofs + sizeof(*node))
1560 break;
1561 if (buf_ofs + buf_len < ofs + sizeof(*node)) {
1562 buf_len = min_t(uint32_t, buf_size, sector_ofs
1563 + part->sector_size - ofs);
1564 get_fl_mem((u32)part->offset + ofs, buf_len,
1565 buf);
1566 buf_ofs = ofs;
1567 }
1568
1569 node = (struct jffs2_unknown_node *)&buf[ofs-buf_ofs];
1570
1571 if (*(uint32_t *)(&buf[ofs-buf_ofs]) == 0xffffffff) {
1572 uint32_t inbuf_ofs;
Wolfgang Denk16b9afd2011-10-05 22:58:11 +02001573 uint32_t scan_end;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001574
Ilya Yanok8a36d312008-11-13 19:49:33 +03001575 ofs += 4;
1576 scan_end = min_t(uint32_t, EMPTY_SCAN_SIZE(
1577 part->sector_size)/8,
1578 buf_len);
1579 more_empty:
1580 inbuf_ofs = ofs - buf_ofs;
1581 while (inbuf_ofs < scan_end) {
1582 if (*(uint32_t *)(&buf[inbuf_ofs]) !=
1583 0xffffffff)
1584 goto scan_more;
1585
1586 inbuf_ofs += 4;
1587 ofs += 4;
wdenk998eaae2004-04-18 19:43:36 +00001588 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001589 /* Ran off end. */
1590
1591 /* See how much more there is to read in this
1592 * eraseblock...
1593 */
1594 buf_len = min_t(uint32_t, buf_size,
1595 sector_ofs +
1596 part->sector_size - ofs);
1597 if (!buf_len) {
1598 /* No more to read. Break out of main
1599 * loop without marking this range of
1600 * empty space as dirty (because it's
1601 * not)
1602 */
1603 break;
1604 }
1605 scan_end = buf_len;
1606 get_fl_mem((u32)part->offset + ofs, buf_len,
1607 buf);
1608 buf_ofs = ofs;
1609 goto more_empty;
1610 }
1611 if (node->magic != JFFS2_MAGIC_BITMASK ||
1612 !hdr_crc(node)) {
1613 ofs += 4;
1614 counter4++;
1615 continue;
1616 }
1617 if (ofs + node->totlen >
1618 sector_ofs + part->sector_size) {
1619 ofs += 4;
1620 counter4++;
1621 continue;
1622 }
1623 /* if its a fragment add it */
1624 switch (node->nodetype) {
1625 case JFFS2_NODETYPE_INODE:
1626 if (buf_ofs + buf_len < ofs + sizeof(struct
1627 jffs2_raw_inode)) {
1628 get_fl_mem((u32)part->offset + ofs,
1629 buf_len, buf);
1630 buf_ofs = ofs;
1631 node = (void *)buf;
1632 }
1633 if (!inode_crc((struct jffs2_raw_inode *) node))
1634 break;
1635
1636 if (insert_node(&pL->frag, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001637 ofs) == NULL) {
1638 free(buf);
1639 jffs2_free_cache(part);
Ilya Yanok8a36d312008-11-13 19:49:33 +03001640 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001641 }
Ilya Yanok70741002008-11-13 19:49:34 +03001642 if (max_totlen < node->totlen)
1643 max_totlen = node->totlen;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001644 break;
1645 case JFFS2_NODETYPE_DIRENT:
1646 if (buf_ofs + buf_len < ofs + sizeof(struct
1647 jffs2_raw_dirent) +
1648 ((struct
1649 jffs2_raw_dirent *)
1650 node)->nsize) {
1651 get_fl_mem((u32)part->offset + ofs,
1652 buf_len, buf);
1653 buf_ofs = ofs;
1654 node = (void *)buf;
1655 }
1656
1657 if (!dirent_crc((struct jffs2_raw_dirent *)
1658 node) ||
1659 !dirent_name_crc(
1660 (struct
1661 jffs2_raw_dirent *)
1662 node))
1663 break;
wdenkfc1cfcd2004-04-25 15:41:35 +00001664 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001665 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001666 if (insert_node(&pL->dir, (u32) part->offset +
Ilya Yanokb6440062009-08-12 16:42:48 +04001667 ofs) == NULL) {
1668 free(buf);
1669 jffs2_free_cache(part);
wdenkfe8c2802002-11-03 00:38:21 +00001670 return 0;
Ilya Yanokb6440062009-08-12 16:42:48 +04001671 }
Ilya Yanok70741002008-11-13 19:49:34 +03001672 if (max_totlen < node->totlen)
1673 max_totlen = node->totlen;
wdenkfe8c2802002-11-03 00:38:21 +00001674 counterN++;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001675 break;
1676 case JFFS2_NODETYPE_CLEANMARKER:
wdenkfe8c2802002-11-03 00:38:21 +00001677 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001678 printf("OOPS Cleanmarker has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001679 "%d != %zu\n",
1680 node->totlen,
wdenk06d01db2003-03-14 20:47:52 +00001681 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001682 break;
1683 case JFFS2_NODETYPE_PADDING:
wdenk7205e402003-09-10 22:30:53 +00001684 if (node->totlen < sizeof(struct jffs2_unknown_node))
1685 printf("OOPS Padding has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001686 "%d < %zu\n",
1687 node->totlen,
wdenk7205e402003-09-10 22:30:53 +00001688 sizeof(struct jffs2_unknown_node));
Ilya Yanok8a36d312008-11-13 19:49:33 +03001689 break;
Ilya Yanok9b707622008-11-13 19:49:35 +03001690 case JFFS2_NODETYPE_SUMMARY:
1691 break;
Ilya Yanok8a36d312008-11-13 19:49:33 +03001692 default:
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001693 printf("Unknown node type: %x len %d offset 0x%x\n",
1694 node->nodetype,
Ilya Yanok8a36d312008-11-13 19:49:33 +03001695 node->totlen, ofs);
wdenkfe8c2802002-11-03 00:38:21 +00001696 }
Ilya Yanok8a36d312008-11-13 19:49:33 +03001697 ofs += ((node->totlen + 3) & ~3);
wdenkfe8c2802002-11-03 00:38:21 +00001698 counterF++;
wdenkfe8c2802002-11-03 00:38:21 +00001699 }
wdenkfe8c2802002-11-03 00:38:21 +00001700 }
1701
Ilya Yanok8a36d312008-11-13 19:49:33 +03001702 free(buf);
wdenkfe8c2802002-11-03 00:38:21 +00001703 putstr("\b\b done.\r\n"); /* close off the dots */
Ilya Yanok70741002008-11-13 19:49:34 +03001704
1705 /* We don't care if malloc failed - then each read operation will
1706 * allocate its own buffer as necessary (NAND) or will read directly
1707 * from flash (NOR).
1708 */
1709 pL->readbuf = malloc(max_totlen);
1710
wdenkfe8c2802002-11-03 00:38:21 +00001711 /* turn the lcd back on. */
1712 /* splash(); */
1713
1714#if 0
wdenk06d01db2003-03-14 20:47:52 +00001715 putLabeledWord("dir entries = ", pL->dir.listCount);
1716 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001717 putLabeledWord("+4 increments = ", counter4);
1718 putLabeledWord("+file_offset increments = ", counterF);
1719
1720#endif
1721
wdenk06d01db2003-03-14 20:47:52 +00001722#ifdef DEBUG_DIRENTS
1723 dump_dirents(pL);
1724#endif
wdenkfe8c2802002-11-03 00:38:21 +00001725
wdenk06d01db2003-03-14 20:47:52 +00001726#ifdef DEBUG_FRAGMENTS
1727 dump_fragments(pL);
1728#endif
wdenkfe8c2802002-11-03 00:38:21 +00001729
wdenkfe8c2802002-11-03 00:38:21 +00001730 /* give visual feedback that we are done scanning the flash */
1731 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1732 return 1;
1733}
1734
1735
wdenkfe8c2802002-11-03 00:38:21 +00001736static u32
1737jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1738{
1739 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001740 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001741 struct jffs2_raw_inode *jNode;
1742 int i;
1743
wdenkfe8c2802002-11-03 00:38:21 +00001744 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1745 piL->compr_info[i].num_frags = 0;
1746 piL->compr_info[i].compr_sum = 0;
1747 piL->compr_info[i].decompr_sum = 0;
1748 }
1749
wdenk06d01db2003-03-14 20:47:52 +00001750 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001751 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001752 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1753 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001754 if (jNode->compr < JFFS2_NUM_COMPR) {
1755 piL->compr_info[jNode->compr].num_frags++;
1756 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1757 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1758 }
1759 b = b->next;
1760 }
1761 return 0;
1762}
1763
1764
wdenkfe8c2802002-11-03 00:38:21 +00001765static struct b_lists *
1766jffs2_get_list(struct part_info * part, const char *who)
1767{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001768 /* copy requested part_info struct pointer to global location */
1769 current_part = part;
1770
wdenkfe8c2802002-11-03 00:38:21 +00001771 if (jffs2_1pass_rescan_needed(part)) {
1772 if (!jffs2_1pass_build_lists(part)) {
1773 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1774 return NULL;
1775 }
1776 }
1777 return (struct b_lists *)part->jffs2_priv;
1778}
1779
1780
1781/* Print directory / file contents */
1782u32
1783jffs2_1pass_ls(struct part_info * part, const char *fname)
1784{
1785 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001786 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001787 u32 inode;
1788
wdenk06d01db2003-03-14 20:47:52 +00001789 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001790 return 0;
1791
1792 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1793 putstr("ls: Failed to scan jffs2 file structure\r\n");
1794 return 0;
1795 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001796
1797
wdenkfe8c2802002-11-03 00:38:21 +00001798#if 0
1799 putLabeledWord("found file at inode = ", inode);
1800 putLabeledWord("read_inode returns = ", ret);
1801#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001802
1803 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001804}
1805
1806
wdenkfe8c2802002-11-03 00:38:21 +00001807/* Load a file from flash into memory. fname can be a full path */
1808u32
1809jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1810{
1811
1812 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001813 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001814 u32 inode;
1815
1816 if (! (pl = jffs2_get_list(part, "load")))
1817 return 0;
1818
1819 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1820 putstr("load: Failed to find inode\r\n");
1821 return 0;
1822 }
1823
1824 /* Resolve symlinks */
1825 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1826 putstr("load: Failed to resolve inode structure\r\n");
1827 return 0;
1828 }
1829
1830 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1831 putstr("load: Failed to read inode\r\n");
1832 return 0;
1833 }
1834
1835 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1836 (unsigned long) dest, ret);
1837 return ret;
1838}
1839
1840/* Return information about the fs on this partition */
1841u32
1842jffs2_1pass_info(struct part_info * part)
1843{
1844 struct b_jffs2_info info;
1845 struct b_lists *pl;
1846 int i;
1847
1848 if (! (pl = jffs2_get_list(part, "info")))
1849 return 0;
1850
1851 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001852 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001853 printf ("Compression: %s\n"
1854 "\tfrag count: %d\n"
1855 "\tcompressed sum: %d\n"
1856 "\tuncompressed sum: %d\n",
1857 compr_names[i],
1858 info.compr_info[i].num_frags,
1859 info.compr_info[i].compr_sum,
1860 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001861 }
1862 return 1;
1863}