2 -------------------------------------------------------------------------
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 *-----------------------------------------------------------------------*/
10 * some portions of this code are taken from jffs2, and as such, the
11 * following copyright notice is included.
13 * JFFS2 -- Journalling Flash File System, Version 2.
15 * Copyright (C) 2001 Red Hat, Inc.
17 * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
19 * The original JFFS, from which the design for JFFS2 was derived,
20 * was designed and implemented by Axis Communications AB.
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/
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.
32 * The Original Code is JFFS2 - Journalling Flash File System, version 2
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.
45 * $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $
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:
55 * (1) most pages are 4096 bytes
56 * (2) version numbers are somewhat sorted in acsending order
57 * (3) multiple compressed blocks making up one page is uncommon
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
67 * Adapted by Nye Liu <nyet@zumanetworks.com> and
68 * Rex Feany <rfeany@zumanetworks.com>
69 * on Jan/2002 for U-Boot.
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 ;).
79 * Bugfixing by Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>, (C) Mar/2003
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.
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
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.
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.
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.
104 * There's a big issue left: endianess is completely ignored in this code. Duh!
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
109 * might be incompatible with any new code from the jffs2 maintainers anyway,
110 * it should probably be dumped and replaced by something like jffs2reader!
117 #include <linux/stat.h>
118 #include <linux/time.h>
120 #if (CONFIG_COMMANDS & CFG_CMD_JFFS2)
122 #include <jffs2/jffs2.h>
123 #include <jffs2/jffs2_1pass.h>
125 #include "jffs2_private.h"
128 #define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */
129 #define SPIN_BLKSIZE 18 /* spin after having scanned 1<<BLKSIZE bytes */
131 /* Debugging switches */
132 #undef DEBUG_DIRENTS /* print directory entry list after scan */
133 #undef DEBUG_FRAGMENTS /* print fragment list after scan */
134 #undef DEBUG /* enable debugging messages */
138 # define DEBUGF(fmt,args...) printf(fmt ,##args)
140 # define DEBUGF(fmt,args...)
143 #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
146 * Support for jffs2 on top of NAND-flash
148 * NAND memory isn't mapped in processor's address space,
149 * so data should be fetched from flash before
150 * being processed. This is exactly what functions declared
155 /* this one defined in cmd_nand.c */
156 int read_jffs2_nand(size_t start, size_t len,
157 size_t * retlen, u_char * buf, int nanddev);
159 #define NAND_PAGE_SIZE 512
160 #define NAND_PAGE_SHIFT 9
161 #define NAND_PAGE_MASK (~(NAND_PAGE_SIZE-1))
163 #ifndef NAND_CACHE_PAGES
164 #define NAND_CACHE_PAGES 16
166 #define NAND_CACHE_SIZE (NAND_CACHE_PAGES*NAND_PAGE_SIZE)
168 static u8* nand_cache = NULL;
169 static u32 nand_cache_off = (u32)-1;
170 static int nanddev = 0; /* nand device of current partition */
172 static int read_nand_cached(u32 off, u32 size, u_char *buf)
178 while (bytes_read < size) {
179 if ((off + bytes_read < nand_cache_off) ||
180 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) {
181 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK;
183 /* This memory never gets freed but 'cause
184 it's a bootloader, nobody cares */
185 nand_cache = malloc(NAND_CACHE_SIZE);
187 printf("read_nand_cached: can't alloc cache size %d bytes\n",
192 if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,
193 &retlen, nand_cache, nanddev) < 0 ||
194 retlen != NAND_CACHE_SIZE) {
195 printf("read_nand_cached: error reading nand off %#x size %d bytes\n",
196 nand_cache_off, NAND_CACHE_SIZE);
200 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read);
201 if (cpy_bytes > size - bytes_read)
202 cpy_bytes = size - bytes_read;
203 memcpy(buf + bytes_read,
204 nand_cache + off + bytes_read - nand_cache_off,
206 bytes_read += cpy_bytes;
211 static void *get_fl_mem(u32 off, u32 size, void *ext_buf)
213 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size);
216 printf("get_fl_mem: can't alloc %d bytes\n", size);
219 if (read_nand_cached(off, size, buf) < 0) {
228 static void *get_node_mem(u32 off)
230 struct jffs2_unknown_node node;
233 if (NULL == get_fl_mem(off, sizeof(node), &node))
236 if (!(ret = get_fl_mem(off, node.magic ==
237 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node),
239 printf("off = %#x magic %#x type %#x node.totlen = %d\n",
240 off, node.magic, node.nodetype, node.totlen);
245 static void put_fl_mem(void *buf)
250 #else /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
252 static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf)
257 static inline void *get_node_mem(u32 off)
262 static inline void put_fl_mem(void *buf)
266 #endif /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
269 /* Compression names */
270 static char *compr_names[] = {
281 static char spinner[] = { '|', '/', '-', '\\' };
283 /* Memory management */
286 struct mem_block *next;
287 struct b_node nodes[NODE_CHUNK];
292 free_nodes(struct b_list *list)
294 while (list->listMemBase != NULL) {
295 struct mem_block *next = list->listMemBase->next;
296 free( list->listMemBase );
297 list->listMemBase = next;
301 static struct b_node *
302 add_node(struct b_list *list)
305 struct mem_block *memBase;
308 memBase = list->listMemBase;
310 index = memBase->index;
312 putLabeledWord("add_node: index = ", index);
313 putLabeledWord("add_node: memBase = ", list->listMemBase);
316 if (memBase == NULL || index >= NODE_CHUNK) {
317 /* we need more space before we continue */
318 memBase = mmalloc(sizeof(struct mem_block));
319 if (memBase == NULL) {
320 putstr("add_node: malloc failed\n");
323 memBase->next = list->listMemBase;
326 putLabeledWord("add_node: alloced a new membase at ", *memBase);
330 /* now we have room to add it. */
331 b = &memBase->nodes[index];
334 memBase->index = index;
335 list->listMemBase = memBase;
340 static struct b_node *
341 insert_node(struct b_list *list, u32 offset)
344 #ifdef CFG_JFFS2_SORT_FRAGMENTS
345 struct b_node *b, *prev;
348 if (!(new = add_node(list))) {
349 putstr("add_node failed!\r\n");
352 new->offset = offset;
354 #ifdef CFG_JFFS2_SORT_FRAGMENTS
355 if (list->listTail != NULL && list->listCompare(new, list->listTail))
356 prev = list->listTail;
357 else if (list->listLast != NULL && list->listCompare(new, list->listLast))
358 prev = list->listLast;
362 for (b = (prev ? prev->next : list->listHead);
363 b != NULL && list->listCompare(new, b);
364 prev = b, b = b->next) {
368 list->listLast = prev;
375 list->listHead = new;
379 new->next = (struct b_node *) NULL;
380 if (list->listTail != NULL) {
381 list->listTail->next = new;
382 list->listTail = new;
384 list->listTail = list->listHead = new;
391 #ifdef CFG_JFFS2_SORT_FRAGMENTS
392 /* Sort data entries with the latest version last, so that if there
393 * is overlapping data the latest version will be used.
395 static int compare_inodes(struct b_node *new, struct b_node *old)
397 struct jffs2_raw_inode ojNew;
398 struct jffs2_raw_inode ojOld;
399 struct jffs2_raw_inode *jNew =
400 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
401 struct jffs2_raw_inode *jOld =
402 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
404 return jNew->version > jOld->version;
407 /* Sort directory entries so all entries in the same directory
408 * with the same name are grouped together, with the latest version
409 * last. This makes it easy to eliminate all but the latest version
410 * by marking the previous version dead by setting the inode to 0.
412 static int compare_dirents(struct b_node *new, struct b_node *old)
414 struct jffs2_raw_dirent ojNew;
415 struct jffs2_raw_dirent ojOld;
416 struct jffs2_raw_dirent *jNew =
417 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew);
418 struct jffs2_raw_dirent *jOld =
419 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld);
422 /* ascending sort by pino */
423 if (jNew->pino != jOld->pino)
424 return jNew->pino > jOld->pino;
426 /* pino is the same, so use ascending sort by nsize, so
427 * we don't do strncmp unless we really must.
429 if (jNew->nsize != jOld->nsize)
430 return jNew->nsize > jOld->nsize;
432 /* length is also the same, so use ascending sort by name
434 cmp = strncmp(jNew->name, jOld->name, jNew->nsize);
438 /* we have duplicate names in this directory, so use ascending
441 if (jNew->version > jOld->version) {
442 /* since jNew is newer, we know jOld is not valid, so
443 * mark it with inode 0 and it will not be used
454 jffs2_scan_empty(u32 start_offset, struct part_info *part)
456 char *max = part->offset + part->size - sizeof(struct jffs2_raw_inode);
457 char *offset = part->offset + start_offset;
460 while (offset < max &&
461 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) {
462 offset += sizeof(u32);
463 /* return if spinning is due */
464 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;
467 return offset - part->offset;
471 jffs_init_1pass_list(struct part_info *part)
475 if (part->jffs2_priv != NULL) {
476 pL = (struct b_lists *)part->jffs2_priv;
477 free_nodes(&pL->frag);
478 free_nodes(&pL->dir);
481 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {
482 pL = (struct b_lists *)part->jffs2_priv;
484 memset(pL, 0, sizeof(*pL));
485 #ifdef CFG_JFFS2_SORT_FRAGMENTS
486 pL->dir.listCompare = compare_dirents;
487 pL->frag.listCompare = compare_inodes;
493 /* find the inode from the slashless name given a parent */
495 jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
498 struct jffs2_raw_inode *jNode;
500 u32 latestVersion = 0;
506 #ifdef CFG_JFFS2_SORT_FRAGMENTS
507 /* Find file size before loading any data, so fragments that
508 * start past the end of file can be ignored. A fragment
509 * that is partially in the file is loaded, so extra data may
510 * be loaded up to the next 4K boundary above the file size.
511 * This shouldn't cause trouble when loading kernel images, so
512 * we will live with it.
514 for (b = pL->frag.listHead; b != NULL; b = b->next) {
515 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
516 sizeof(struct jffs2_raw_inode), NULL);
517 if ((inode == jNode->ino)) {
518 /* get actual file length from the newest node */
519 if (jNode->version >= latestVersion) {
520 totalSize = jNode->isize;
521 latestVersion = jNode->version;
528 for (b = pL->frag.listHead; b != NULL; b = b->next) {
529 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset);
530 if ((inode == jNode->ino)) {
532 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
533 putLabeledWord("read_inode: inode = ", jNode->ino);
534 putLabeledWord("read_inode: version = ", jNode->version);
535 putLabeledWord("read_inode: isize = ", jNode->isize);
536 putLabeledWord("read_inode: offset = ", jNode->offset);
537 putLabeledWord("read_inode: csize = ", jNode->csize);
538 putLabeledWord("read_inode: dsize = ", jNode->dsize);
539 putLabeledWord("read_inode: compr = ", jNode->compr);
540 putLabeledWord("read_inode: usercompr = ", jNode->usercompr);
541 putLabeledWord("read_inode: flags = ", jNode->flags);
544 #ifndef CFG_JFFS2_SORT_FRAGMENTS
545 /* get actual file length from the newest node */
546 if (jNode->version >= latestVersion) {
547 totalSize = jNode->isize;
548 latestVersion = jNode->version;
553 src = ((char *) jNode) + sizeof(struct jffs2_raw_inode);
554 /* ignore data behind latest known EOF */
555 if (jNode->offset > totalSize) {
560 lDest = (char *) (dest + jNode->offset);
562 putLabeledWord("read_inode: src = ", src);
563 putLabeledWord("read_inode: dest = ", lDest);
565 switch (jNode->compr) {
566 case JFFS2_COMPR_NONE:
567 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize);
569 case JFFS2_COMPR_ZERO:
571 for (i = 0; i < jNode->dsize; i++)
574 case JFFS2_COMPR_RTIME:
576 rtime_decompress(src, lDest, jNode->csize, jNode->dsize);
578 case JFFS2_COMPR_DYNRUBIN:
579 /* this is slow but it works */
581 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize);
583 case JFFS2_COMPR_ZLIB:
584 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize);
588 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
596 putLabeledWord("read_inode: totalSize = ", totalSize);
597 putLabeledWord("read_inode: compr ret = ", ret);
605 putLabeledWord("read_inode: returning = ", totalSize);
610 /* find the inode from the slashless name given a parent */
612 jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino)
615 struct jffs2_raw_dirent *jDir;
621 /* name is assumed slash free */
625 /* we need to search all and return the inode with the highest version */
626 for(b = pL->dir.listHead; b; b = b->next, counter++) {
627 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
628 if ((pino == jDir->pino) && (len == jDir->nsize) &&
629 (jDir->ino) && /* 0 for unlink */
630 (!strncmp(jDir->name, name, len))) { /* a match */
631 if (jDir->version < version) {
636 if (jDir->version == version && inode != 0) {
637 /* I'm pretty sure this isn't legal */
638 putstr(" ** ERROR ** ");
639 putnstr(jDir->name, jDir->nsize);
640 putLabeledWord(" has dup version =", version);
643 version = jDir->version;
646 putstr("\r\nfind_inode:p&l ->");
647 putnstr(jDir->name, jDir->nsize);
649 putLabeledWord("pino = ", jDir->pino);
650 putLabeledWord("nsize = ", jDir->nsize);
651 putLabeledWord("b = ", (u32) b);
652 putLabeledWord("counter = ", counter);
659 char *mkmodestr(unsigned long mode, char *str)
661 static const char *l = "xwr";
665 switch (mode & S_IFMT) {
666 case S_IFDIR: str[0] = 'd'; break;
667 case S_IFBLK: str[0] = 'b'; break;
668 case S_IFCHR: str[0] = 'c'; break;
669 case S_IFIFO: str[0] = 'f'; break;
670 case S_IFLNK: str[0] = 'l'; break;
671 case S_IFSOCK: str[0] = 's'; break;
672 case S_IFREG: str[0] = '-'; break;
673 default: str[0] = '?';
676 for(i = 0; i < 9; i++) {
678 str[9-i] = (mode & mask)?c:'-';
682 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S';
683 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S';
684 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T';
689 static inline void dump_stat(struct stat *st, const char *name)
694 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */
697 ctime_r(&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */
699 if ((p = strchr(s,'\n')) != NULL) *p = '\0';
700 if ((p = strchr(s,'\r')) != NULL) *p = '\0';
703 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str),
704 st->st_size, s, name);
707 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name);
710 static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i)
715 if(!d || !i) return -1;
717 strncpy(fname, d->name, d->nsize);
718 fname[d->nsize] = '\0';
720 memset(&st,0,sizeof(st));
722 st.st_mtime = i->mtime;
723 st.st_mode = i->mode;
726 /* neither dsize nor isize help us.. do it the long way */
727 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL);
729 dump_stat(&st, fname);
731 if (d->type == DT_LNK) {
732 unsigned char *src = (unsigned char *) (&i[1]);
734 putnstr(src, (int)i->dsize);
742 /* list inodes with the given pino */
744 jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
747 struct jffs2_raw_dirent *jDir;
749 for (b = pL->dir.listHead; b; b = b->next) {
750 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
751 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */
753 struct jffs2_raw_inode ojNode;
754 struct jffs2_raw_inode *jNode, *i = NULL;
755 struct b_node *b2 = pL->frag.listHead;
758 jNode = (struct jffs2_raw_inode *)
759 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
760 if (jNode->ino == jDir->ino && jNode->version >= i_version) {
764 if (jDir->type == DT_LNK)
765 i = get_node_mem(b2->offset);
767 i = get_fl_mem(b2->offset, sizeof(*i), NULL);
772 dump_inode(pL, jDir, i);
781 jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino)
785 char working_tmp[256];
788 /* discard any leading slash */
790 while (fname[i] == '/')
792 strcpy(tmp, &fname[i]);
794 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
796 strncpy(working_tmp, tmp, c - tmp);
797 working_tmp[c - tmp] = '\0';
799 putstr("search_inode: tmp = ");
802 putstr("search_inode: wtmp = ");
805 putstr("search_inode: c = ");
809 for (i = 0; i < strlen(c) - 1; i++)
813 putstr("search_inode: post tmp = ");
818 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) {
819 putstr("find_inode failed for name=");
825 /* this is for the bare filename, directories have already been mapped */
826 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
827 putstr("find_inode failed for name=");
837 jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino)
841 struct jffs2_raw_dirent *jDir;
842 struct jffs2_raw_inode *jNode;
843 u8 jDirFoundType = 0;
844 u32 jDirFoundIno = 0;
845 u32 jDirFoundPino = 0;
851 /* we need to search all and return the inode with the highest version */
852 for(b = pL->dir.listHead; b; b = b->next) {
853 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
854 if (ino == jDir->ino) {
855 if (jDir->version < version) {
860 if (jDir->version == version && jDirFoundType) {
861 /* I'm pretty sure this isn't legal */
862 putstr(" ** ERROR ** ");
863 putnstr(jDir->name, jDir->nsize);
864 putLabeledWord(" has dup version (resolve) = ",
868 jDirFoundType = jDir->type;
869 jDirFoundIno = jDir->ino;
870 jDirFoundPino = jDir->pino;
871 version = jDir->version;
875 /* now we found the right entry again. (shoulda returned inode*) */
876 if (jDirFoundType != DT_LNK)
879 /* it's a soft link so we follow it again. */
880 b2 = pL->frag.listHead;
882 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset);
883 if (jNode->ino == jDirFoundIno) {
884 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode);
887 putLabeledWord("\t\t dsize = ", jNode->dsize);
888 putstr("\t\t target = ");
889 putnstr(src, jNode->dsize);
892 strncpy(tmp, src, jNode->dsize);
893 tmp[jNode->dsize] = '\0';
900 /* ok so the name of the new file to find is in tmp */
901 /* if it starts with a slash it is root based else shared dirs */
905 pino = jDirFoundPino;
907 return jffs2_1pass_search_inode(pL, tmp, pino);
911 jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino)
915 char working_tmp[256];
918 /* discard any leading slash */
920 while (fname[i] == '/')
922 strcpy(tmp, &fname[i]);
923 working_tmp[0] = '\0';
924 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */
926 strncpy(working_tmp, tmp, c - tmp);
927 working_tmp[c - tmp] = '\0';
928 for (i = 0; i < strlen(c) - 1; i++)
931 /* only a failure if we arent looking at top level */
932 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) &&
934 putstr("find_inode failed for name=");
941 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) {
942 putstr("find_inode failed for name=");
947 /* this is for the bare filename, directories have already been mapped */
948 if (!(pino = jffs2_1pass_list_inodes(pL, pino))) {
949 putstr("find_inode failed for name=");
959 jffs2_1pass_rescan_needed(struct part_info *part)
962 struct jffs2_unknown_node onode;
963 struct jffs2_unknown_node *node;
964 struct b_lists *pL = (struct b_lists *)part->jffs2_priv;
966 if (part->jffs2_priv == 0){
967 DEBUGF ("rescan: First time in use\n");
970 /* if we have no list, we need to rescan */
971 if (pL->frag.listCount == 0) {
972 DEBUGF ("rescan: fraglist zero\n");
976 /* or if we are scanning a new partition */
977 if (pL->partOffset != part->offset) {
978 DEBUGF ("rescan: different partition\n");
982 #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
983 if (nanddev != (int)part->usr_priv - 1) {
984 DEBUGF ("rescan: nand device changed\n");
987 #endif /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
989 /* but suppose someone reflashed a partition at the same offset... */
990 b = pL->dir.listHead;
992 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset,
993 sizeof(onode), &onode);
994 if (node->nodetype != JFFS2_NODETYPE_DIRENT) {
995 DEBUGF ("rescan: fs changed beneath me? (%lx)\n",
996 (unsigned long) b->offset);
1004 #ifdef DEBUG_FRAGMENTS
1006 dump_fragments(struct b_lists *pL)
1009 struct jffs2_raw_inode ojNode;
1010 struct jffs2_raw_inode *jNode;
1012 putstr("\r\n\r\n******The fragment Entries******\r\n");
1013 b = pL->frag.listHead;
1015 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1016 sizeof(ojNode), &ojNode);
1017 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset);
1018 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen);
1019 putLabeledWord("\tbuild_list: inode = ", jNode->ino);
1020 putLabeledWord("\tbuild_list: version = ", jNode->version);
1021 putLabeledWord("\tbuild_list: isize = ", jNode->isize);
1022 putLabeledWord("\tbuild_list: atime = ", jNode->atime);
1023 putLabeledWord("\tbuild_list: offset = ", jNode->offset);
1024 putLabeledWord("\tbuild_list: csize = ", jNode->csize);
1025 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize);
1026 putLabeledWord("\tbuild_list: compr = ", jNode->compr);
1027 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);
1028 putLabeledWord("\tbuild_list: flags = ", jNode->flags);
1029 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
1035 #ifdef DEBUG_DIRENTS
1037 dump_dirents(struct b_lists *pL)
1040 struct jffs2_raw_dirent *jDir;
1042 putstr("\r\n\r\n******The directory Entries******\r\n");
1043 b = pL->dir.listHead;
1045 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset);
1047 putnstr(jDir->name, jDir->nsize);
1048 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic);
1049 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype);
1050 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc);
1051 putLabeledWord("\tbuild_list: pino = ", jDir->pino);
1052 putLabeledWord("\tbuild_list: version = ", jDir->version);
1053 putLabeledWord("\tbuild_list: ino = ", jDir->ino);
1054 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime);
1055 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize);
1056 putLabeledWord("\tbuild_list: type = ", jDir->type);
1057 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);
1058 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc);
1059 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */
1067 jffs2_1pass_build_lists(struct part_info * part)
1070 struct jffs2_unknown_node *node;
1071 u32 offset, oldoffset = 0;
1072 u32 max = part->size - sizeof(struct jffs2_raw_inode);
1078 #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND)
1079 nanddev = (int)part->usr_priv - 1;
1080 #endif /* defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */
1082 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */
1083 /* jffs2 list building enterprise nope. in newer versions the overhead is */
1084 /* only about 5 %. not enough to inconvenience people for. */
1087 /* if we are building a list we need to refresh the cache. */
1088 jffs_init_1pass_list(part);
1089 pL = (struct b_lists *)part->jffs2_priv;
1090 pL->partOffset = part->offset;
1092 puts ("Scanning JFFS2 FS: ");
1094 /* start at the beginning of the partition */
1095 while (offset < max) {
1096 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) {
1097 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]);
1101 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset);
1102 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) {
1103 /* if its a fragment add it */
1104 if (node->nodetype == JFFS2_NODETYPE_INODE &&
1105 inode_crc((struct jffs2_raw_inode *) node)) {
1106 if (insert_node(&pL->frag, (u32) part->offset +
1111 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT &&
1112 dirent_crc((struct jffs2_raw_dirent *) node) &&
1113 dirent_name_crc((struct jffs2_raw_dirent *) node)) {
1114 if (! (counterN%100))
1116 if (insert_node(&pL->dir, (u32) part->offset +
1122 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {
1123 if (node->totlen != sizeof(struct jffs2_unknown_node))
1124 printf("OOPS Cleanmarker has bad size "
1125 "%d != %d\n", node->totlen,
1126 sizeof(struct jffs2_unknown_node));
1127 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) {
1128 if (node->totlen < sizeof(struct jffs2_unknown_node))
1129 printf("OOPS Padding has bad size "
1130 "%d < %d\n", node->totlen,
1131 sizeof(struct jffs2_unknown_node));
1133 printf("Unknown node type: %x len %d "
1134 "offset 0x%x\n", node->nodetype,
1135 node->totlen, offset);
1137 offset += ((node->totlen + 3) & ~3);
1139 } else if (node->magic == JFFS2_EMPTY_BITMASK &&
1140 node->nodetype == JFFS2_EMPTY_BITMASK) {
1141 offset = jffs2_scan_empty(offset, part);
1142 } else { /* if we know nothing, we just step and look. */
1146 /* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */
1150 putstr("\b\b done.\r\n"); /* close off the dots */
1151 /* turn the lcd back on. */
1155 putLabeledWord("dir entries = ", pL->dir.listCount);
1156 putLabeledWord("frag entries = ", pL->frag.listCount);
1157 putLabeledWord("+4 increments = ", counter4);
1158 putLabeledWord("+file_offset increments = ", counterF);
1162 #ifdef DEBUG_DIRENTS
1166 #ifdef DEBUG_FRAGMENTS
1170 /* give visual feedback that we are done scanning the flash */
1171 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */
1177 jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
1180 struct jffs2_raw_inode ojNode;
1181 struct jffs2_raw_inode *jNode;
1184 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1185 piL->compr_info[i].num_frags = 0;
1186 piL->compr_info[i].compr_sum = 0;
1187 piL->compr_info[i].decompr_sum = 0;
1190 b = pL->frag.listHead;
1192 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset,
1193 sizeof(ojNode), &ojNode);
1194 if (jNode->compr < JFFS2_NUM_COMPR) {
1195 piL->compr_info[jNode->compr].num_frags++;
1196 piL->compr_info[jNode->compr].compr_sum += jNode->csize;
1197 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize;
1205 static struct b_lists *
1206 jffs2_get_list(struct part_info * part, const char *who)
1208 if (jffs2_1pass_rescan_needed(part)) {
1209 if (!jffs2_1pass_build_lists(part)) {
1210 printf("%s: Failed to scan JFFSv2 file structure\n", who);
1214 return (struct b_lists *)part->jffs2_priv;
1218 /* Print directory / file contents */
1220 jffs2_1pass_ls(struct part_info * part, const char *fname)
1226 if (! (pl = jffs2_get_list(part, "ls")))
1229 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) {
1230 putstr("ls: Failed to scan jffs2 file structure\r\n");
1236 putLabeledWord("found file at inode = ", inode);
1237 putLabeledWord("read_inode returns = ", ret);
1244 /* Load a file from flash into memory. fname can be a full path */
1246 jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
1253 if (! (pl = jffs2_get_list(part, "load")))
1256 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) {
1257 putstr("load: Failed to find inode\r\n");
1261 /* Resolve symlinks */
1262 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) {
1263 putstr("load: Failed to resolve inode structure\r\n");
1267 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) {
1268 putstr("load: Failed to read inode\r\n");
1272 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname,
1273 (unsigned long) dest, ret);
1277 /* Return information about the fs on this partition */
1279 jffs2_1pass_info(struct part_info * part)
1281 struct b_jffs2_info info;
1285 if (! (pl = jffs2_get_list(part, "info")))
1288 jffs2_1pass_fill_info(pl, &info);
1289 for (i = 0; i < JFFS2_NUM_COMPR; i++) {
1290 printf ("Compression: %s\n"
1291 "\tfrag count: %d\n"
1292 "\tcompressed sum: %d\n"
1293 "\tuncompressed sum: %d\n",
1295 info.compr_info[i].num_frags,
1296 info.compr_info[i].compr_sum,
1297 info.compr_info[i].decompr_sum);
1302 #endif /* CFG_CMD_JFFS2 */