blob: 8a06777ae2a91d70027a04cae4ac2d0c39b24bff [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 *
95 * The fragment sorting feature must be enabled by CFG_JFFS2_SORT_FRAGMENTS.
96 * 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
Jon Loeligerdd60d122007-07-09 17:56:50 -0500121#if defined(CONFIG_CMD_JFFS2)
wdenkfe8c2802002-11-03 00:38:21 +0000122
123#include <jffs2/jffs2.h>
124#include <jffs2/jffs2_1pass.h>
125
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
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200144/* keeps pointer to currentlu processed partition */
145static struct part_info *current_part;
wdenk998eaae2004-04-18 19:43:36 +0000146
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200147#if (defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500148 defined(CONFIG_CMD_NAND) )
Marian Balakowicz6db39702006-04-08 19:08:06 +0200149#if defined(CFG_NAND_LEGACY)
150#include <linux/mtd/nand_legacy.h>
151#else
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100152#include <nand.h>
Marian Balakowicz6db39702006-04-08 19:08:06 +0200153#endif
wdenk998eaae2004-04-18 19:43:36 +0000154/*
155 * Support for jffs2 on top of NAND-flash
156 *
157 * NAND memory isn't mapped in processor's address space,
158 * so data should be fetched from flash before
159 * being processed. This is exactly what functions declared
160 * here do.
161 *
162 */
163
Marian Balakowicz6db39702006-04-08 19:08:06 +0200164#if defined(CFG_NAND_LEGACY)
165/* this one defined in nand_legacy.c */
166int read_jffs2_nand(size_t start, size_t len,
167 size_t * retlen, u_char * buf, int nanddev);
Marian Balakowicz6db39702006-04-08 19:08:06 +0200168#endif
wdenk998eaae2004-04-18 19:43:36 +0000169
170#define NAND_PAGE_SIZE 512
171#define NAND_PAGE_SHIFT 9
172#define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
173
174#ifndef NAND_CACHE_PAGES
175#define NAND_CACHE_PAGES 16
176#endif
177#define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
178
179static u8* nand_cache = NULL;
180static u32 nand_cache_off = (u32)-1;
wdenk998eaae2004-04-18 19:43:36 +0000181
182static int read_nand_cached(u32 off, u32 size, u_char *buf)
183{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200184 struct mtdids *id = current_part->dev->id;
wdenk998eaae2004-04-18 19:43:36 +0000185 u32 bytes_read = 0;
Marian Balakowicz6db39702006-04-08 19:08:06 +0200186 size_t retlen;
wdenk998eaae2004-04-18 19:43:36 +0000187 int cpy_bytes;
188
189 while (bytes_read < size) {
190 if ((off + bytes_read < nand_cache_off) ||
191 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
192 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
193 if (!nand_cache) {
194 /* This memory never gets freed but 'cause
195 it's a bootloader, nobody cares */
wdenk507bbe32004-04-18 21:13:41 +0000196 nand_cache = malloc(NAND_CACHE_SIZE);
197 if (!nand_cache) {
wdenk998eaae2004-04-18 19:43:36 +0000198 printf("read_nand_cached: can't alloc cache size %d bytes\n",
199 NAND_CACHE_SIZE);
200 return -1;
201 }
202 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100203
Marian Balakowicz6db39702006-04-08 19:08:06 +0200204#if defined(CFG_NAND_LEGACY)
205 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
206 &retlen, nand_cache, id->num) < 0 ||
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200207 retlen != NAND_CACHE_SIZE) {
wdenk998eaae2004-04-18 19:43:36 +0000208 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200209 nand_cache_off, NAND_CACHE_SIZE);
wdenk998eaae2004-04-18 19:43:36 +0000210 return -1;
211 }
Marian Balakowicz6db39702006-04-08 19:08:06 +0200212#else
213 retlen = NAND_CACHE_SIZE;
214 if (nand_read(&nand_info[id->num], nand_cache_off,
215 &retlen, nand_cache) != 0 ||
216 retlen != NAND_CACHE_SIZE) {
217 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
218 nand_cache_off, NAND_CACHE_SIZE);
219 return -1;
220 }
221#endif
wdenk998eaae2004-04-18 19:43:36 +0000222 }
223 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
224 if (cpy_bytes > size - bytes_read)
225 cpy_bytes = size - bytes_read;
226 memcpy(buf + bytes_read,
227 nand_cache + off + bytes_read - nand_cache_off,
228 cpy_bytes);
229 bytes_read += cpy_bytes;
230 }
231 return bytes_read;
232}
233
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200234static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf)
wdenk998eaae2004-04-18 19:43:36 +0000235{
236 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
237
238 if (NULL == buf) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200239 printf("get_fl_mem_nand: can't alloc %d bytes\n", size);
wdenk998eaae2004-04-18 19:43:36 +0000240 return NULL;
241 }
242 if (read_nand_cached(off, size, buf) < 0) {
wdenk32877d62004-05-05 19:44:41 +0000243 if (!ext_buf)
244 free(buf);
wdenk998eaae2004-04-18 19:43:36 +0000245 return NULL;
246 }
247
248 return buf;
249}
250
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200251static void *get_node_mem_nand(u32 off)
wdenk998eaae2004-04-18 19:43:36 +0000252{
253 struct jffs2_unknown_node node;
254 void *ret = NULL;
255
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200256 if (NULL == get_fl_mem_nand(off, sizeof(node), &node))
wdenk998eaae2004-04-18 19:43:36 +0000257 return NULL;
258
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200259 if (!(ret = get_fl_mem_nand(off, node.magic ==
wdenk998eaae2004-04-18 19:43:36 +0000260 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
261 NULL))) {
262 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
263 off, node.magic, node.nodetype, node.totlen);
264 }
265 return ret;
266}
267
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200268static void put_fl_mem_nand(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000269{
270 free(buf);
271}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500272#endif
wdenk998eaae2004-04-18 19:43:36 +0000273
wdenk998eaae2004-04-18 19:43:36 +0000274
Jon Loeligerdd60d122007-07-09 17:56:50 -0500275#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200276/*
277 * Support for jffs2 on top of NOR-flash
278 *
279 * NOR flash memory is mapped in processor's address space,
280 * just return address.
281 */
282static inline void *get_fl_mem_nor(u32 off)
283{
284 u32 addr = off;
285 struct mtdids *id = current_part->dev->id;
286
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200287 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200288 flash_info_t *flash = &flash_info[id->num];
289
290 addr += flash->start[0];
291 return (void*)addr;
292}
293
294static inline void *get_node_mem_nor(u32 off)
295{
296 return (void*)get_fl_mem_nor(off);
297}
Jon Loeligerdd60d122007-07-09 17:56:50 -0500298#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200299
300
301/*
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200302 * Generic jffs2 raw memory and node read routines.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200303 *
304 */
wdenk998eaae2004-04-18 19:43:36 +0000305static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
306{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200307 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200308
Jon Loeligerdd60d122007-07-09 17:56:50 -0500309#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200310 if (id->type == MTD_DEV_TYPE_NOR)
311 return get_fl_mem_nor(off);
312#endif
313
Jon Loeligerdd60d122007-07-09 17:56:50 -0500314#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200315 if (id->type == MTD_DEV_TYPE_NAND)
316 return get_fl_mem_nand(off, size, ext_buf);
317#endif
318
319 printf("get_fl_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000320 return (void*)off;
321}
322
323static inline void *get_node_mem(u32 off)
324{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200325 struct mtdids *id = current_part->dev->id;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200326
Jon Loeligerdd60d122007-07-09 17:56:50 -0500327#if defined(CONFIG_CMD_FLASH)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200328 if (id->type == MTD_DEV_TYPE_NOR)
329 return get_node_mem_nor(off);
330#endif
331
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200332#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500333 defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200334 if (id->type == MTD_DEV_TYPE_NAND)
335 return get_node_mem_nand(off);
336#endif
337
338 printf("get_node_mem: unknown device type, using raw offset!\n");
wdenk998eaae2004-04-18 19:43:36 +0000339 return (void*)off;
340}
341
wdenk507bbe32004-04-18 21:13:41 +0000342static inline void put_fl_mem(void *buf)
wdenk998eaae2004-04-18 19:43:36 +0000343{
Wolfgang Denke4dbe1b2007-07-05 17:56:27 +0200344#if defined(CONFIG_JFFS2_NAND) && \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500345 defined(CONFIG_CMD_NAND)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200346 struct mtdids *id = current_part->dev->id;
347
348 if (id->type == MTD_DEV_TYPE_NAND)
349 return put_fl_mem_nand(buf);
350#endif
wdenk998eaae2004-04-18 19:43:36 +0000351}
352
wdenk06d01db2003-03-14 20:47:52 +0000353/* Compression names */
354static char *compr_names[] = {
355 "NONE",
356 "ZERO",
357 "RTIME",
358 "RUBINMIPS",
359 "COPY",
360 "DYNRUBIN",
wdenk07cc0992005-05-05 00:04:14 +0000361 "ZLIB",
wdenk412babe2005-05-05 09:51:44 +0000362#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000363 "LZO",
wdenk07cc0992005-05-05 00:04:14 +0000364 "LZARI",
365#endif
wdenk06d01db2003-03-14 20:47:52 +0000366};
367
368/* Spinning wheel */
369static char spinner[] = { '|', '/', '-', '\\' };
370
371/* Memory management */
372struct mem_block {
373 u32 index;
374 struct mem_block *next;
375 struct b_node nodes[NODE_CHUNK];
376};
377
378
379static void
380free_nodes(struct b_list *list)
381{
382 while (list->listMemBase != NULL) {
383 struct mem_block *next = list->listMemBase->next;
384 free( list->listMemBase );
385 list->listMemBase = next;
386 }
387}
wdenkfe8c2802002-11-03 00:38:21 +0000388
389static struct b_node *
wdenk06d01db2003-03-14 20:47:52 +0000390add_node(struct b_list *list)
wdenkfe8c2802002-11-03 00:38:21 +0000391{
wdenk06d01db2003-03-14 20:47:52 +0000392 u32 index = 0;
393 struct mem_block *memBase;
wdenkfe8c2802002-11-03 00:38:21 +0000394 struct b_node *b;
395
wdenk06d01db2003-03-14 20:47:52 +0000396 memBase = list->listMemBase;
397 if (memBase != NULL)
398 index = memBase->index;
wdenkfe8c2802002-11-03 00:38:21 +0000399#if 0
400 putLabeledWord("add_node: index = ", index);
wdenk06d01db2003-03-14 20:47:52 +0000401 putLabeledWord("add_node: memBase = ", list->listMemBase);
wdenkfe8c2802002-11-03 00:38:21 +0000402#endif
403
wdenk06d01db2003-03-14 20:47:52 +0000404 if (memBase == NULL || index >= NODE_CHUNK) {
405 /* we need more space before we continue */
406 memBase = mmalloc(sizeof(struct mem_block));
407 if (memBase == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +0000408 putstr("add_node: malloc failed\n");
409 return NULL;
410 }
wdenk06d01db2003-03-14 20:47:52 +0000411 memBase->next = list->listMemBase;
412 index = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000413#if 0
414 putLabeledWord("add_node: alloced a new membase at ", *memBase);
415#endif
416
417 }
418 /* now we have room to add it. */
wdenk06d01db2003-03-14 20:47:52 +0000419 b = &memBase->nodes[index];
420 index ++;
wdenkfe8c2802002-11-03 00:38:21 +0000421
wdenk06d01db2003-03-14 20:47:52 +0000422 memBase->index = index;
423 list->listMemBase = memBase;
424 list->listCount++;
wdenkfe8c2802002-11-03 00:38:21 +0000425 return b;
wdenkfe8c2802002-11-03 00:38:21 +0000426}
427
wdenk06d01db2003-03-14 20:47:52 +0000428static struct b_node *
429insert_node(struct b_list *list, u32 offset)
430{
431 struct b_node *new;
432#ifdef CFG_JFFS2_SORT_FRAGMENTS
433 struct b_node *b, *prev;
434#endif
435
436 if (!(new = add_node(list))) {
437 putstr("add_node failed!\r\n");
438 return NULL;
439 }
440 new->offset = offset;
441
442#ifdef CFG_JFFS2_SORT_FRAGMENTS
443 if (list->listTail != NULL && list->listCompare(new, list->listTail))
444 prev = list->listTail;
445 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
446 prev = list->listLast;
447 else
448 prev = NULL;
449
450 for (b = (prev ? prev->next : list->listHead);
451 b != NULL && list->listCompare(new, b);
452 prev = b, b = b->next) {
453 list->listLoops++;
454 }
455 if (b != NULL)
456 list->listLast = prev;
457
458 if (b != NULL) {
459 new->next = b;
460 if (prev != NULL)
461 prev->next = new;
462 else
463 list->listHead = new;
464 } else
465#endif
466 {
467 new->next = (struct b_node *) NULL;
468 if (list->listTail != NULL) {
469 list->listTail->next = new;
470 list->listTail = new;
471 } else {
472 list->listTail = list->listHead = new;
473 }
474 }
475
476 return new;
477}
478
479#ifdef CFG_JFFS2_SORT_FRAGMENTS
wdenk7205e402003-09-10 22:30:53 +0000480/* Sort data entries with the latest version last, so that if there
481 * is overlapping data the latest version will be used.
482 */
wdenk06d01db2003-03-14 20:47:52 +0000483static int compare_inodes(struct b_node *new, struct b_node *old)
484{
wdenk998eaae2004-04-18 19:43:36 +0000485 struct jffs2_raw_inode ojNew;
486 struct jffs2_raw_inode ojOld;
487 struct jffs2_raw_inode *jNew =
488 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
489 struct jffs2_raw_inode *jOld =
490 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk06d01db2003-03-14 20:47:52 +0000491
wdenk7205e402003-09-10 22:30:53 +0000492 return jNew->version > jOld->version;
wdenk06d01db2003-03-14 20:47:52 +0000493}
494
wdenk7205e402003-09-10 22:30:53 +0000495/* Sort directory entries so all entries in the same directory
496 * with the same name are grouped together, with the latest version
497 * last. This makes it easy to eliminate all but the latest version
498 * by marking the previous version dead by setting the inode to 0.
499 */
wdenk06d01db2003-03-14 20:47:52 +0000500static int compare_dirents(struct b_node *new, struct b_node *old)
501{
wdenk998eaae2004-04-18 19:43:36 +0000502 struct jffs2_raw_dirent ojNew;
503 struct jffs2_raw_dirent ojOld;
504 struct jffs2_raw_dirent *jNew =
505 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
wdenk507bbe32004-04-18 21:13:41 +0000506 struct jffs2_raw_dirent *jOld =
wdenk998eaae2004-04-18 19:43:36 +0000507 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
wdenk7205e402003-09-10 22:30:53 +0000508 int cmp;
wdenk06d01db2003-03-14 20:47:52 +0000509
wdenk7205e402003-09-10 22:30:53 +0000510 /* ascending sort by pino */
511 if (jNew->pino != jOld->pino)
512 return jNew->pino > jOld->pino;
513
514 /* pino is the same, so use ascending sort by nsize, so
515 * we don't do strncmp unless we really must.
516 */
517 if (jNew->nsize != jOld->nsize)
518 return jNew->nsize > jOld->nsize;
519
520 /* length is also the same, so use ascending sort by name
521 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200522 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize);
wdenk7205e402003-09-10 22:30:53 +0000523 if (cmp != 0)
524 return cmp > 0;
525
526 /* we have duplicate names in this directory, so use ascending
527 * sort by version
528 */
529 if (jNew->version > jOld->version) {
530 /* since jNew is newer, we know jOld is not valid, so
531 * mark it with inode 0 and it will not be used
532 */
533 jOld->ino = 0;
534 return 1;
535 }
wdenk42d1f032003-10-15 23:53:47 +0000536
wdenk7205e402003-09-10 22:30:53 +0000537 return 0;
wdenk06d01db2003-03-14 20:47:52 +0000538}
539#endif
wdenkfe8c2802002-11-03 00:38:21 +0000540
541static u32
542jffs2_scan_empty(u32 start_offset, struct part_info *part)
543{
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200544 char *max = (char *)(part->offset + part->size - sizeof(struct jffs2_raw_inode));
545 char *offset = (char *)(part->offset + start_offset);
wdenk998eaae2004-04-18 19:43:36 +0000546 u32 off;
wdenkfe8c2802002-11-03 00:38:21 +0000547
wdenk998eaae2004-04-18 19:43:36 +0000548 while (offset < max &&
549 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
wdenk06d01db2003-03-14 20:47:52 +0000550 offset += sizeof(u32);
551 /* return if spinning is due */
552 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
wdenkfe8c2802002-11-03 00:38:21 +0000553 }
wdenkfc1cfcd2004-04-25 15:41:35 +0000554
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200555 return (u32)offset - part->offset;
wdenkfe8c2802002-11-03 00:38:21 +0000556}
557
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200558void
559jffs2_free_cache(struct part_info *part)
wdenkfe8c2802002-11-03 00:38:21 +0000560{
wdenk06d01db2003-03-14 20:47:52 +0000561 struct b_lists *pL;
wdenkfe8c2802002-11-03 00:38:21 +0000562
wdenk06d01db2003-03-14 20:47:52 +0000563 if (part->jffs2_priv != NULL) {
564 pL = (struct b_lists *)part->jffs2_priv;
565 free_nodes(&pL->frag);
566 free_nodes(&pL->dir);
567 free(pL);
568 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200569}
570
571static u32
572jffs_init_1pass_list(struct part_info *part)
573{
574 struct b_lists *pL;
575
576 jffs2_free_cache(part);
577
wdenk06d01db2003-03-14 20:47:52 +0000578 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
579 pL = (struct b_lists *)part->jffs2_priv;
580
581 memset(pL, 0, sizeof(*pL));
582#ifdef CFG_JFFS2_SORT_FRAGMENTS
583 pL->dir.listCompare = compare_dirents;
584 pL->frag.listCompare = compare_inodes;
585#endif
wdenkfe8c2802002-11-03 00:38:21 +0000586 }
587 return 0;
588}
589
590/* find the inode from the slashless name given a parent */
591static long
592jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
593{
594 struct b_node *b;
595 struct jffs2_raw_inode *jNode;
wdenk06d01db2003-03-14 20:47:52 +0000596 u32 totalSize = 0;
wdenk7205e402003-09-10 22:30:53 +0000597 u32 latestVersion = 0;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200598 uchar *lDest;
599 uchar *src;
wdenkfe8c2802002-11-03 00:38:21 +0000600 long ret;
601 int i;
602 u32 counter = 0;
wdenk7205e402003-09-10 22:30:53 +0000603#ifdef CFG_JFFS2_SORT_FRAGMENTS
604 /* Find file size before loading any data, so fragments that
605 * start past the end of file can be ignored. A fragment
606 * that is partially in the file is loaded, so extra data may
607 * be loaded up to the next 4K boundary above the file size.
608 * This shouldn't cause trouble when loading kernel images, so
609 * we will live with it.
610 */
611 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk507bbe32004-04-18 21:13:41 +0000612 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
wdenk998eaae2004-04-18 19:43:36 +0000613 sizeof(struct jffs2_raw_inode), NULL);
wdenk7205e402003-09-10 22:30:53 +0000614 if ((inode == jNode->ino)) {
615 /* get actual file length from the newest node */
616 if (jNode->version >= latestVersion) {
617 totalSize = jNode->isize;
618 latestVersion = jNode->version;
619 }
620 }
wdenk998eaae2004-04-18 19:43:36 +0000621 put_fl_mem(jNode);
wdenk7205e402003-09-10 22:30:53 +0000622 }
623#endif
wdenkfe8c2802002-11-03 00:38:21 +0000624
wdenk06d01db2003-03-14 20:47:52 +0000625 for (b = pL->frag.listHead; b != NULL; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000626 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000627 if ((inode == jNode->ino)) {
wdenk06d01db2003-03-14 20:47:52 +0000628#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000629 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
630 putLabeledWord("read_inode: inode = ", jNode->ino);
631 putLabeledWord("read_inode: version = ", jNode->version);
632 putLabeledWord("read_inode: isize = ", jNode->isize);
633 putLabeledWord("read_inode: offset = ", jNode->offset);
634 putLabeledWord("read_inode: csize = ", jNode->csize);
635 putLabeledWord("read_inode: dsize = ", jNode->dsize);
636 putLabeledWord("read_inode: compr = ", jNode->compr);
637 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
638 putLabeledWord("read_inode: flags = ", jNode->flags);
wdenkfe8c2802002-11-03 00:38:21 +0000639#endif
wdenk7205e402003-09-10 22:30:53 +0000640
641#ifndef CFG_JFFS2_SORT_FRAGMENTS
wdenk06d01db2003-03-14 20:47:52 +0000642 /* get actual file length from the newest node */
643 if (jNode->version >= latestVersion) {
wdenkfe8c2802002-11-03 00:38:21 +0000644 totalSize = jNode->isize;
wdenk06d01db2003-03-14 20:47:52 +0000645 latestVersion = jNode->version;
wdenkfe8c2802002-11-03 00:38:21 +0000646 }
wdenk7205e402003-09-10 22:30:53 +0000647#endif
wdenkfe8c2802002-11-03 00:38:21 +0000648
649 if(dest) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200650 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
wdenk06d01db2003-03-14 20:47:52 +0000651 /* ignore data behind latest known EOF */
wdenk998eaae2004-04-18 19:43:36 +0000652 if (jNode->offset > totalSize) {
653 put_fl_mem(jNode);
wdenk06d01db2003-03-14 20:47:52 +0000654 continue;
wdenk998eaae2004-04-18 19:43:36 +0000655 }
wdenk06d01db2003-03-14 20:47:52 +0000656
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200657 lDest = (uchar *) (dest + jNode->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000658#if 0
wdenk06d01db2003-03-14 20:47:52 +0000659 putLabeledWord("read_inode: src = ", src);
wdenkfe8c2802002-11-03 00:38:21 +0000660 putLabeledWord("read_inode: dest = ", lDest);
wdenkfe8c2802002-11-03 00:38:21 +0000661#endif
662 switch (jNode->compr) {
663 case JFFS2_COMPR_NONE:
wdenkfe8c2802002-11-03 00:38:21 +0000664 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
665 break;
666 case JFFS2_COMPR_ZERO:
667 ret = 0;
668 for (i = 0; i < jNode->dsize; i++)
669 *(lDest++) = 0;
670 break;
671 case JFFS2_COMPR_RTIME:
672 ret = 0;
673 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
674 break;
675 case JFFS2_COMPR_DYNRUBIN:
676 /* this is slow but it works */
677 ret = 0;
678 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
679 break;
680 case JFFS2_COMPR_ZLIB:
681 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
682 break;
wdenk412babe2005-05-05 09:51:44 +0000683#if defined(CONFIG_JFFS2_LZO_LZARI)
wdenk07cc0992005-05-05 00:04:14 +0000684 case JFFS2_COMPR_LZO:
685 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize);
686 break;
wdenk412babe2005-05-05 09:51:44 +0000687 case JFFS2_COMPR_LZARI:
688 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize);
689 break;
wdenk07cc0992005-05-05 00:04:14 +0000690#endif
wdenkfe8c2802002-11-03 00:38:21 +0000691 default:
692 /* unknown */
693 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
wdenk998eaae2004-04-18 19:43:36 +0000694 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000695 return -1;
696 break;
697 }
698 }
699
wdenkfe8c2802002-11-03 00:38:21 +0000700#if 0
wdenkfe8c2802002-11-03 00:38:21 +0000701 putLabeledWord("read_inode: totalSize = ", totalSize);
702 putLabeledWord("read_inode: compr ret = ", ret);
703#endif
704 }
wdenkfe8c2802002-11-03 00:38:21 +0000705 counter++;
wdenk998eaae2004-04-18 19:43:36 +0000706 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +0000707 }
wdenkfe8c2802002-11-03 00:38:21 +0000708
709#if 0
wdenk06d01db2003-03-14 20:47:52 +0000710 putLabeledWord("read_inode: returning = ", totalSize);
wdenkfe8c2802002-11-03 00:38:21 +0000711#endif
wdenk06d01db2003-03-14 20:47:52 +0000712 return totalSize;
wdenkfe8c2802002-11-03 00:38:21 +0000713}
714
715/* find the inode from the slashless name given a parent */
716static u32
717jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
718{
719 struct b_node *b;
720 struct jffs2_raw_dirent *jDir;
721 int len;
722 u32 counter;
723 u32 version = 0;
724 u32 inode = 0;
725
726 /* name is assumed slash free */
727 len = strlen(name);
728
729 counter = 0;
730 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000731 for(b = pL->dir.listHead; b; b = b->next, counter++) {
wdenk998eaae2004-04-18 19:43:36 +0000732 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000733 if ((pino == jDir->pino) && (len == jDir->nsize) &&
734 (jDir->ino) && /* 0 for unlink */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200735 (!strncmp((char *)jDir->name, name, len))) { /* a match */
wdenk998eaae2004-04-18 19:43:36 +0000736 if (jDir->version < version) {
737 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000738 continue;
wdenk998eaae2004-04-18 19:43:36 +0000739 }
wdenkfe8c2802002-11-03 00:38:21 +0000740
wdenk7205e402003-09-10 22:30:53 +0000741 if (jDir->version == version && inode != 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200742 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000743 putstr(" ** ERROR ** ");
744 putnstr(jDir->name, jDir->nsize);
745 putLabeledWord(" has dup version =", version);
746 }
747 inode = jDir->ino;
748 version = jDir->version;
749 }
750#if 0
751 putstr("\r\nfind_inode:p&l ->");
752 putnstr(jDir->name, jDir->nsize);
753 putstr("\r\n");
754 putLabeledWord("pino = ", jDir->pino);
755 putLabeledWord("nsize = ", jDir->nsize);
756 putLabeledWord("b = ", (u32) b);
757 putLabeledWord("counter = ", counter);
758#endif
wdenk998eaae2004-04-18 19:43:36 +0000759 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000760 }
761 return inode;
762}
763
wdenk180d3f72004-01-04 16:28:35 +0000764char *mkmodestr(unsigned long mode, char *str)
wdenkfe8c2802002-11-03 00:38:21 +0000765{
wdenk06d01db2003-03-14 20:47:52 +0000766 static const char *l = "xwr";
767 int mask = 1, i;
768 char c;
wdenkfe8c2802002-11-03 00:38:21 +0000769
wdenk06d01db2003-03-14 20:47:52 +0000770 switch (mode & S_IFMT) {
771 case S_IFDIR: str[0] = 'd'; break;
772 case S_IFBLK: str[0] = 'b'; break;
773 case S_IFCHR: str[0] = 'c'; break;
774 case S_IFIFO: str[0] = 'f'; break;
775 case S_IFLNK: str[0] = 'l'; break;
776 case S_IFSOCK: str[0] = 's'; break;
777 case S_IFREG: str[0] = '-'; break;
778 default: str[0] = '?';
779 }
wdenkfe8c2802002-11-03 00:38:21 +0000780
wdenk06d01db2003-03-14 20:47:52 +0000781 for(i = 0; i < 9; i++) {
782 c = l[i%3];
783 str[9-i] = (mode & mask)?c:'-';
784 mask = mask<<1;
785 }
wdenkfe8c2802002-11-03 00:38:21 +0000786
wdenk06d01db2003-03-14 20:47:52 +0000787 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
788 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
789 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
790 str[10] = '\0';
791 return str;
wdenkfe8c2802002-11-03 00:38:21 +0000792}
793
794static inline void dump_stat(struct stat *st, const char *name)
795{
wdenk06d01db2003-03-14 20:47:52 +0000796 char str[20];
797 char s[64], *p;
wdenkfe8c2802002-11-03 00:38:21 +0000798
wdenk06d01db2003-03-14 20:47:52 +0000799 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
800 st->st_mtime = 1;
wdenkfe8c2802002-11-03 00:38:21 +0000801
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200802 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
wdenkfe8c2802002-11-03 00:38:21 +0000803
wdenk06d01db2003-03-14 20:47:52 +0000804 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
805 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000806
807/*
wdenk06d01db2003-03-14 20:47:52 +0000808 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
809 st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000810*/
811
wdenk06d01db2003-03-14 20:47:52 +0000812 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
wdenkfe8c2802002-11-03 00:38:21 +0000813}
814
815static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
816{
817 char fname[256];
818 struct stat st;
819
820 if(!d || !i) return -1;
821
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200822 strncpy(fname, (char *)d->name, d->nsize);
wdenk06d01db2003-03-14 20:47:52 +0000823 fname[d->nsize] = '\0';
wdenkfe8c2802002-11-03 00:38:21 +0000824
825 memset(&st,0,sizeof(st));
826
wdenk06d01db2003-03-14 20:47:52 +0000827 st.st_mtime = i->mtime;
828 st.st_mode = i->mode;
829 st.st_ino = i->ino;
wdenkfe8c2802002-11-03 00:38:21 +0000830
831 /* neither dsize nor isize help us.. do it the long way */
wdenk06d01db2003-03-14 20:47:52 +0000832 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
wdenkfe8c2802002-11-03 00:38:21 +0000833
834 dump_stat(&st, fname);
835
836 if (d->type == DT_LNK) {
837 unsigned char *src = (unsigned char *) (&i[1]);
838 putstr(" -> ");
839 putnstr(src, (int)i->dsize);
840 }
841
842 putstr("\r\n");
843
844 return 0;
845}
846
847/* list inodes with the given pino */
848static u32
849jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
850{
851 struct b_node *b;
852 struct jffs2_raw_dirent *jDir;
853
wdenk06d01db2003-03-14 20:47:52 +0000854 for (b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000855 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +0000856 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
857 u32 i_version = 0;
wdenk998eaae2004-04-18 19:43:36 +0000858 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +0000859 struct jffs2_raw_inode *jNode, *i = NULL;
860 struct b_node *b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000861
862 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000863 jNode = (struct jffs2_raw_inode *)
864 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
wdenk32877d62004-05-05 19:44:41 +0000865 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
866 if (i)
wdenk02b11f82004-05-12 22:54:36 +0000867 put_fl_mem(i);
wdenkcf8bc572005-05-04 23:50:54 +0000868
869 if (jDir->type == DT_LNK)
870 i = get_node_mem(b2->offset);
871 else
872 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
wdenk32877d62004-05-05 19:44:41 +0000873 }
wdenkfe8c2802002-11-03 00:38:21 +0000874 b2 = b2->next;
875 }
876
877 dump_inode(pL, jDir, i);
wdenk998eaae2004-04-18 19:43:36 +0000878 put_fl_mem(i);
wdenkfe8c2802002-11-03 00:38:21 +0000879 }
wdenk998eaae2004-04-18 19:43:36 +0000880 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000881 }
882 return pino;
883}
884
885static u32
886jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
887{
888 int i;
889 char tmp[256];
890 char working_tmp[256];
891 char *c;
892
893 /* discard any leading slash */
894 i = 0;
895 while (fname[i] == '/')
896 i++;
897 strcpy(tmp, &fname[i]);
898
899 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
900 {
901 strncpy(working_tmp, tmp, c - tmp);
902 working_tmp[c - tmp] = '\0';
903#if 0
904 putstr("search_inode: tmp = ");
905 putstr(tmp);
906 putstr("\r\n");
907 putstr("search_inode: wtmp = ");
908 putstr(working_tmp);
909 putstr("\r\n");
910 putstr("search_inode: c = ");
911 putstr(c);
912 putstr("\r\n");
913#endif
914 for (i = 0; i < strlen(c) - 1; i++)
915 tmp[i] = c[i + 1];
916 tmp[i] = '\0';
917#if 0
918 putstr("search_inode: post tmp = ");
919 putstr(tmp);
920 putstr("\r\n");
921#endif
922
923 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
924 putstr("find_inode failed for name=");
925 putstr(working_tmp);
926 putstr("\r\n");
927 return 0;
928 }
929 }
930 /* this is for the bare filename, directories have already been mapped */
931 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
932 putstr("find_inode failed for name=");
933 putstr(tmp);
934 putstr("\r\n");
935 return 0;
936 }
937 return pino;
938
939}
940
941static u32
942jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
943{
944 struct b_node *b;
945 struct b_node *b2;
946 struct jffs2_raw_dirent *jDir;
947 struct jffs2_raw_inode *jNode;
wdenk998eaae2004-04-18 19:43:36 +0000948 u8 jDirFoundType = 0;
949 u32 jDirFoundIno = 0;
950 u32 jDirFoundPino = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000951 char tmp[256];
952 u32 version = 0;
953 u32 pino;
954 unsigned char *src;
955
956 /* we need to search all and return the inode with the highest version */
wdenk06d01db2003-03-14 20:47:52 +0000957 for(b = pL->dir.listHead; b; b = b->next) {
wdenk998eaae2004-04-18 19:43:36 +0000958 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenkfe8c2802002-11-03 00:38:21 +0000959 if (ino == jDir->ino) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200960 if (jDir->version < version) {
wdenk998eaae2004-04-18 19:43:36 +0000961 put_fl_mem(jDir);
wdenk7205e402003-09-10 22:30:53 +0000962 continue;
wdenk998eaae2004-04-18 19:43:36 +0000963 }
wdenkfe8c2802002-11-03 00:38:21 +0000964
wdenk998eaae2004-04-18 19:43:36 +0000965 if (jDir->version == version && jDirFoundType) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200966 /* I'm pretty sure this isn't legal */
wdenkfe8c2802002-11-03 00:38:21 +0000967 putstr(" ** ERROR ** ");
968 putnstr(jDir->name, jDir->nsize);
969 putLabeledWord(" has dup version (resolve) = ",
970 version);
971 }
972
wdenk998eaae2004-04-18 19:43:36 +0000973 jDirFoundType = jDir->type;
974 jDirFoundIno = jDir->ino;
975 jDirFoundPino = jDir->pino;
wdenkfe8c2802002-11-03 00:38:21 +0000976 version = jDir->version;
977 }
wdenk998eaae2004-04-18 19:43:36 +0000978 put_fl_mem(jDir);
wdenkfe8c2802002-11-03 00:38:21 +0000979 }
980 /* now we found the right entry again. (shoulda returned inode*) */
wdenk998eaae2004-04-18 19:43:36 +0000981 if (jDirFoundType != DT_LNK)
982 return jDirFoundIno;
wdenk06d01db2003-03-14 20:47:52 +0000983
984 /* it's a soft link so we follow it again. */
985 b2 = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +0000986 while (b2) {
wdenk998eaae2004-04-18 19:43:36 +0000987 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
988 if (jNode->ino == jDirFoundIno) {
wdenk2729af92004-05-03 20:45:30 +0000989 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
wdenkfe8c2802002-11-03 00:38:21 +0000990
991#if 0
992 putLabeledWord("\t\t dsize = ", jNode->dsize);
993 putstr("\t\t target = ");
994 putnstr(src, jNode->dsize);
995 putstr("\r\n");
996#endif
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200997 strncpy(tmp, (char *)src, jNode->dsize);
wdenkfe8c2802002-11-03 00:38:21 +0000998 tmp[jNode->dsize] = '\0';
wdenk998eaae2004-04-18 19:43:36 +0000999 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +00001000 break;
1001 }
1002 b2 = b2->next;
wdenk998eaae2004-04-18 19:43:36 +00001003 put_fl_mem(jNode);
wdenkfe8c2802002-11-03 00:38:21 +00001004 }
1005 /* ok so the name of the new file to find is in tmp */
1006 /* if it starts with a slash it is root based else shared dirs */
1007 if (tmp[0] == '/')
1008 pino = 1;
1009 else
wdenk998eaae2004-04-18 19:43:36 +00001010 pino = jDirFoundPino;
wdenkfe8c2802002-11-03 00:38:21 +00001011
1012 return jffs2_1pass_search_inode(pL, tmp, pino);
1013}
1014
1015static u32
1016jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
1017{
1018 int i;
1019 char tmp[256];
1020 char working_tmp[256];
1021 char *c;
1022
1023 /* discard any leading slash */
1024 i = 0;
1025 while (fname[i] == '/')
1026 i++;
1027 strcpy(tmp, &fname[i]);
1028 working_tmp[0] = '\0';
1029 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
1030 {
1031 strncpy(working_tmp, tmp, c - tmp);
1032 working_tmp[c - tmp] = '\0';
1033 for (i = 0; i < strlen(c) - 1; i++)
1034 tmp[i] = c[i + 1];
1035 tmp[i] = '\0';
1036 /* only a failure if we arent looking at top level */
wdenk06d01db2003-03-14 20:47:52 +00001037 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
1038 (working_tmp[0])) {
wdenkfe8c2802002-11-03 00:38:21 +00001039 putstr("find_inode failed for name=");
1040 putstr(working_tmp);
1041 putstr("\r\n");
1042 return 0;
1043 }
1044 }
1045
1046 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
1047 putstr("find_inode failed for name=");
1048 putstr(tmp);
1049 putstr("\r\n");
1050 return 0;
1051 }
1052 /* this is for the bare filename, directories have already been mapped */
1053 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
1054 putstr("find_inode failed for name=");
1055 putstr(tmp);
1056 putstr("\r\n");
1057 return 0;
1058 }
1059 return pino;
1060
1061}
1062
1063unsigned char
1064jffs2_1pass_rescan_needed(struct part_info *part)
1065{
1066 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001067 struct jffs2_unknown_node onode;
wdenkfe8c2802002-11-03 00:38:21 +00001068 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001069 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001070
1071 if (part->jffs2_priv == 0){
1072 DEBUGF ("rescan: First time in use\n");
1073 return 1;
1074 }
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001075
wdenkfe8c2802002-11-03 00:38:21 +00001076 /* if we have no list, we need to rescan */
wdenk06d01db2003-03-14 20:47:52 +00001077 if (pL->frag.listCount == 0) {
wdenkfe8c2802002-11-03 00:38:21 +00001078 DEBUGF ("rescan: fraglist zero\n");
1079 return 1;
1080 }
1081
wdenk06d01db2003-03-14 20:47:52 +00001082 /* but suppose someone reflashed a partition at the same offset... */
1083 b = pL->dir.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001084 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001085 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
1086 sizeof(onode), &onode);
wdenkfe8c2802002-11-03 00:38:21 +00001087 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
wdenk06d01db2003-03-14 20:47:52 +00001088 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
1089 (unsigned long) b->offset);
wdenkfe8c2802002-11-03 00:38:21 +00001090 return 1;
1091 }
1092 b = b->next;
1093 }
1094 return 0;
1095}
1096
wdenk06d01db2003-03-14 20:47:52 +00001097#ifdef DEBUG_FRAGMENTS
1098static void
1099dump_fragments(struct b_lists *pL)
1100{
1101 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001102 struct jffs2_raw_inode ojNode;
wdenk06d01db2003-03-14 20:47:52 +00001103 struct jffs2_raw_inode *jNode;
1104
1105 putstr("\r\n\r\n******The fragment Entries******\r\n");
1106 b = pL->frag.listHead;
1107 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001108 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1109 sizeof(ojNode), &ojNode);
wdenk06d01db2003-03-14 20:47:52 +00001110 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1111 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1112 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1113 putLabeledWord("\tbuild_list: version = ", jNode->version);
1114 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1115 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1116 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1117 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1118 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1119 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1120 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1121 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
wdenk8bde7f72003-06-27 21:31:46 +00001122 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001123 b = b->next;
1124 }
1125}
1126#endif
1127
1128#ifdef DEBUG_DIRENTS
1129static void
1130dump_dirents(struct b_lists *pL)
1131{
1132 struct b_node *b;
1133 struct jffs2_raw_dirent *jDir;
1134
1135 putstr("\r\n\r\n******The directory Entries******\r\n");
1136 b = pL->dir.listHead;
1137 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001138 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
wdenk06d01db2003-03-14 20:47:52 +00001139 putstr("\r\n");
1140 putnstr(jDir->name, jDir->nsize);
1141 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1142 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1143 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1144 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1145 putLabeledWord("\tbuild_list: version = ", jDir->version);
1146 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1147 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1148 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1149 putLabeledWord("\tbuild_list: type = ", jDir->type);
1150 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1151 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001152 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
wdenk06d01db2003-03-14 20:47:52 +00001153 b = b->next;
wdenk998eaae2004-04-18 19:43:36 +00001154 put_fl_mem(jDir);
wdenk06d01db2003-03-14 20:47:52 +00001155 }
1156}
1157#endif
1158
wdenkfe8c2802002-11-03 00:38:21 +00001159static u32
1160jffs2_1pass_build_lists(struct part_info * part)
1161{
1162 struct b_lists *pL;
1163 struct jffs2_unknown_node *node;
wdenk06d01db2003-03-14 20:47:52 +00001164 u32 offset, oldoffset = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001165 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1166 u32 counter = 0;
1167 u32 counter4 = 0;
1168 u32 counterF = 0;
1169 u32 counterN = 0;
1170
1171 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1172 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1173 /* only about 5 %. not enough to inconvenience people for. */
1174 /* lcd_off(); */
1175
1176 /* if we are building a list we need to refresh the cache. */
wdenkfe8c2802002-11-03 00:38:21 +00001177 jffs_init_1pass_list(part);
wdenk06d01db2003-03-14 20:47:52 +00001178 pL = (struct b_lists *)part->jffs2_priv;
wdenkfe8c2802002-11-03 00:38:21 +00001179 offset = 0;
wdenk4b9206e2004-03-23 22:14:11 +00001180 puts ("Scanning JFFS2 FS: ");
wdenkfe8c2802002-11-03 00:38:21 +00001181
1182 /* start at the beginning of the partition */
1183 while (offset < max) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001184 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
wdenk06d01db2003-03-14 20:47:52 +00001185 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1186 oldoffset = offset;
1187 }
wdenk0b8fa032004-04-25 14:37:29 +00001188
Stuart Wood86d32732008-06-02 16:40:08 -04001189 WATCHDOG_RESET();
1190
wdenkfc1cfcd2004-04-25 15:41:35 +00001191 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
1192 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
1193 /* if its a fragment add it */
1194 if (node->nodetype == JFFS2_NODETYPE_INODE &&
Wolfgang Denk74f92e62006-03-12 16:05:05 +01001195 inode_crc((struct jffs2_raw_inode *) node) &&
1196 data_crc((struct jffs2_raw_inode *) node)) {
wdenk06d01db2003-03-14 20:47:52 +00001197 if (insert_node(&pL->frag, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001198 offset) == NULL) {
1199 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001200 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001201 }
wdenkfe8c2802002-11-03 00:38:21 +00001202 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1203 dirent_crc((struct jffs2_raw_dirent *) node) &&
1204 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
wdenkfc1cfcd2004-04-25 15:41:35 +00001205 if (! (counterN%100))
wdenk4b9206e2004-03-23 22:14:11 +00001206 puts ("\b\b. ");
wdenk06d01db2003-03-14 20:47:52 +00001207 if (insert_node(&pL->dir, (u32) part->offset +
wdenk998eaae2004-04-18 19:43:36 +00001208 offset) == NULL) {
1209 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001210 return 0;
wdenk998eaae2004-04-18 19:43:36 +00001211 }
wdenkfe8c2802002-11-03 00:38:21 +00001212 counterN++;
1213 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1214 if (node->totlen != sizeof(struct jffs2_unknown_node))
wdenk06d01db2003-03-14 20:47:52 +00001215 printf("OOPS Cleanmarker has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001216 "%d != %zu\n",
1217 node->totlen,
wdenk06d01db2003-03-14 20:47:52 +00001218 sizeof(struct jffs2_unknown_node));
wdenk7205e402003-09-10 22:30:53 +00001219 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1220 if (node->totlen < sizeof(struct jffs2_unknown_node))
1221 printf("OOPS Padding has bad size "
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001222 "%d < %zu\n",
1223 node->totlen,
wdenk7205e402003-09-10 22:30:53 +00001224 sizeof(struct jffs2_unknown_node));
wdenkfe8c2802002-11-03 00:38:21 +00001225 } else {
Wolfgang Denkb64f1902008-07-14 15:06:35 +02001226 printf("Unknown node type: %x len %d offset 0x%x\n",
1227 node->nodetype,
wdenkfc1cfcd2004-04-25 15:41:35 +00001228 node->totlen, offset);
wdenkfe8c2802002-11-03 00:38:21 +00001229 }
1230 offset += ((node->totlen + 3) & ~3);
1231 counterF++;
wdenk06d01db2003-03-14 20:47:52 +00001232 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1233 node->nodetype == JFFS2_EMPTY_BITMASK) {
wdenkfe8c2802002-11-03 00:38:21 +00001234 offset = jffs2_scan_empty(offset, part);
wdenkfc1cfcd2004-04-25 15:41:35 +00001235 } else { /* if we know nothing, we just step and look. */
wdenkfe8c2802002-11-03 00:38:21 +00001236 offset += 4;
1237 counter4++;
1238 }
1239/* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
wdenk998eaae2004-04-18 19:43:36 +00001240 put_fl_mem(node);
wdenkfe8c2802002-11-03 00:38:21 +00001241 }
1242
1243 putstr("\b\b done.\r\n"); /* close off the dots */
1244 /* turn the lcd back on. */
1245 /* splash(); */
1246
1247#if 0
wdenk06d01db2003-03-14 20:47:52 +00001248 putLabeledWord("dir entries = ", pL->dir.listCount);
1249 putLabeledWord("frag entries = ", pL->frag.listCount);
wdenkfe8c2802002-11-03 00:38:21 +00001250 putLabeledWord("+4 increments = ", counter4);
1251 putLabeledWord("+file_offset increments = ", counterF);
1252
1253#endif
1254
wdenk06d01db2003-03-14 20:47:52 +00001255#ifdef DEBUG_DIRENTS
1256 dump_dirents(pL);
1257#endif
wdenkfe8c2802002-11-03 00:38:21 +00001258
wdenk06d01db2003-03-14 20:47:52 +00001259#ifdef DEBUG_FRAGMENTS
1260 dump_fragments(pL);
1261#endif
wdenkfe8c2802002-11-03 00:38:21 +00001262
wdenkfe8c2802002-11-03 00:38:21 +00001263 /* give visual feedback that we are done scanning the flash */
1264 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1265 return 1;
1266}
1267
1268
wdenkfe8c2802002-11-03 00:38:21 +00001269static u32
1270jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1271{
1272 struct b_node *b;
wdenk998eaae2004-04-18 19:43:36 +00001273 struct jffs2_raw_inode ojNode;
wdenkfe8c2802002-11-03 00:38:21 +00001274 struct jffs2_raw_inode *jNode;
1275 int i;
1276
wdenkfe8c2802002-11-03 00:38:21 +00001277 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1278 piL->compr_info[i].num_frags = 0;
1279 piL->compr_info[i].compr_sum = 0;
1280 piL->compr_info[i].decompr_sum = 0;
1281 }
1282
wdenk06d01db2003-03-14 20:47:52 +00001283 b = pL->frag.listHead;
wdenkfe8c2802002-11-03 00:38:21 +00001284 while (b) {
wdenk998eaae2004-04-18 19:43:36 +00001285 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1286 sizeof(ojNode), &ojNode);
wdenkfe8c2802002-11-03 00:38:21 +00001287 if (jNode->compr < JFFS2_NUM_COMPR) {
1288 piL->compr_info[jNode->compr].num_frags++;
1289 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1290 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1291 }
1292 b = b->next;
1293 }
1294 return 0;
1295}
1296
1297
wdenkfe8c2802002-11-03 00:38:21 +00001298static struct b_lists *
1299jffs2_get_list(struct part_info * part, const char *who)
1300{
Wolfgang Denk700a0c62005-08-08 01:03:24 +02001301 /* copy requested part_info struct pointer to global location */
1302 current_part = part;
1303
wdenkfe8c2802002-11-03 00:38:21 +00001304 if (jffs2_1pass_rescan_needed(part)) {
1305 if (!jffs2_1pass_build_lists(part)) {
1306 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1307 return NULL;
1308 }
1309 }
1310 return (struct b_lists *)part->jffs2_priv;
1311}
1312
1313
1314/* Print directory / file contents */
1315u32
1316jffs2_1pass_ls(struct part_info * part, const char *fname)
1317{
1318 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001319 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001320 u32 inode;
1321
wdenk06d01db2003-03-14 20:47:52 +00001322 if (! (pl = jffs2_get_list(part, "ls")))
wdenkfe8c2802002-11-03 00:38:21 +00001323 return 0;
1324
1325 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1326 putstr("ls: Failed to scan jffs2 file structure\r\n");
1327 return 0;
1328 }
wdenkfc1cfcd2004-04-25 15:41:35 +00001329
1330
wdenkfe8c2802002-11-03 00:38:21 +00001331#if 0
1332 putLabeledWord("found file at inode = ", inode);
1333 putLabeledWord("read_inode returns = ", ret);
1334#endif
wdenkfc1cfcd2004-04-25 15:41:35 +00001335
1336 return ret;
wdenkfe8c2802002-11-03 00:38:21 +00001337}
1338
1339
wdenkfe8c2802002-11-03 00:38:21 +00001340/* Load a file from flash into memory. fname can be a full path */
1341u32
1342jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1343{
1344
1345 struct b_lists *pl;
Wolfgang Denk87b8bd52005-08-16 09:32:45 +02001346 long ret = 1;
wdenkfe8c2802002-11-03 00:38:21 +00001347 u32 inode;
1348
1349 if (! (pl = jffs2_get_list(part, "load")))
1350 return 0;
1351
1352 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1353 putstr("load: Failed to find inode\r\n");
1354 return 0;
1355 }
1356
1357 /* Resolve symlinks */
1358 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1359 putstr("load: Failed to resolve inode structure\r\n");
1360 return 0;
1361 }
1362
1363 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1364 putstr("load: Failed to read inode\r\n");
1365 return 0;
1366 }
1367
1368 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1369 (unsigned long) dest, ret);
1370 return ret;
1371}
1372
1373/* Return information about the fs on this partition */
1374u32
1375jffs2_1pass_info(struct part_info * part)
1376{
1377 struct b_jffs2_info info;
1378 struct b_lists *pl;
1379 int i;
1380
1381 if (! (pl = jffs2_get_list(part, "info")))
1382 return 0;
1383
1384 jffs2_1pass_fill_info(pl, &info);
wdenk06d01db2003-03-14 20:47:52 +00001385 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
wdenk4b9206e2004-03-23 22:14:11 +00001386 printf ("Compression: %s\n"
1387 "\tfrag count: %d\n"
1388 "\tcompressed sum: %d\n"
1389 "\tuncompressed sum: %d\n",
1390 compr_names[i],
1391 info.compr_info[i].num_frags,
1392 info.compr_info[i].compr_sum,
1393 info.compr_info[i].decompr_sum);
wdenkfe8c2802002-11-03 00:38:21 +00001394 }
1395 return 1;
1396}
1397
Jon Loeligerf40a7f32007-07-10 11:07:56 -05001398#endif