1 /* 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: 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 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 78 /* 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 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! 111 */ 112 113 114 #include <common.h> 115 #include <config.h> 116 #include <malloc.h> 117 #include <linux/stat.h> 118 #include <linux/time.h> 119 120 #if (CONFIG_COMMANDS & CFG_CMD_JFFS2) 121 122 #include <jffs2/jffs2.h> 123 #include <jffs2/jffs2_1pass.h> 124 125 #include "jffs2_private.h" 126 127 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 */ 130 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 */ 135 136 137 #ifdef DEBUG 138 # define DEBUGF(fmt,args...) printf(fmt ,##args) 139 #else 140 # define DEBUGF(fmt,args...) 141 #endif 142 143 /* keeps pointer to currentlu processed partition */ 144 static struct part_info *current_part; 145 146 #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) 147 #include <nand.h> 148 /* 149 * Support for jffs2 on top of NAND-flash 150 * 151 * NAND memory isn't mapped in processor's address space, 152 * so data should be fetched from flash before 153 * being processed. This is exactly what functions declared 154 * here do. 155 * 156 */ 157 158 /* info for NAND chips, defined in drivers/nand/nand.c */ 159 extern nand_info_t nand_info[]; 160 161 #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 170 #ifdef CFG_NAND_LEGACY 171 static u8* nand_cache = NULL; 172 static u32 nand_cache_off = (u32)-1; 173 174 static int read_nand_cached(u32 off, u32 size, u_char *buf) 175 { 176 struct mtdids *id = current_part->dev->id; 177 u32 bytes_read = 0; 178 ulong retlen; 179 int cpy_bytes; 180 181 while (bytes_read < size) { 182 if ((off + bytes_read < nand_cache_off) || 183 (off + bytes_read >= nand_cache_off+NAND_CACHE_SIZE)) { 184 nand_cache_off = (off + bytes_read) & NAND_PAGE_MASK; 185 if (!nand_cache) { 186 /* This memory never gets freed but 'cause 187 it's a bootloader, nobody cares */ 188 nand_cache = malloc(NAND_CACHE_SIZE); 189 if (!nand_cache) { 190 printf("read_nand_cached: can't alloc cache size %d bytes\n", 191 NAND_CACHE_SIZE); 192 return -1; 193 } 194 } 195 196 retlen = NAND_CACHE_SIZE; 197 if (nand_read(&nand_info[id->num], nand_cache_off, 198 &retlen, nand_cache) != 0 || 199 retlen != NAND_CACHE_SIZE) { 200 printf("read_nand_cached: error reading nand off %#x size %d bytes\n", 201 nand_cache_off, NAND_CACHE_SIZE); 202 return -1; 203 } 204 } 205 cpy_bytes = nand_cache_off + NAND_CACHE_SIZE - (off + bytes_read); 206 if (cpy_bytes > size - bytes_read) 207 cpy_bytes = size - bytes_read; 208 memcpy(buf + bytes_read, 209 nand_cache + off + bytes_read - nand_cache_off, 210 cpy_bytes); 211 bytes_read += cpy_bytes; 212 } 213 return bytes_read; 214 } 215 216 static void *get_fl_mem_nand(u32 off, u32 size, void *ext_buf) 217 { 218 u_char *buf = ext_buf ? (u_char*)ext_buf : (u_char*)malloc(size); 219 220 if (NULL == buf) { 221 printf("get_fl_mem_nand: can't alloc %d bytes\n", size); 222 return NULL; 223 } 224 if (read_nand_cached(off, size, buf) < 0) { 225 if (!ext_buf) 226 free(buf); 227 return NULL; 228 } 229 230 return buf; 231 } 232 233 static void *get_node_mem_nand(u32 off) 234 { 235 struct jffs2_unknown_node node; 236 void *ret = NULL; 237 238 if (NULL == get_fl_mem_nand(off, sizeof(node), &node)) 239 return NULL; 240 241 if (!(ret = get_fl_mem_nand(off, node.magic == 242 JFFS2_MAGIC_BITMASK ? node.totlen : sizeof(node), 243 NULL))) { 244 printf("off = %#x magic %#x type %#x node.totlen = %d\n", 245 off, node.magic, node.nodetype, node.totlen); 246 } 247 return ret; 248 } 249 250 static void put_fl_mem_nand(void *buf) 251 { 252 free(buf); 253 } 254 #endif /* CFG_NAND_LEGACY */ 255 #endif /* #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) */ 256 257 258 #if (CONFIG_COMMANDS & CFG_CMD_FLASH) 259 /* 260 * Support for jffs2 on top of NOR-flash 261 * 262 * NOR flash memory is mapped in processor's address space, 263 * just return address. 264 */ 265 static inline void *get_fl_mem_nor(u32 off) 266 { 267 u32 addr = off; 268 struct mtdids *id = current_part->dev->id; 269 270 extern flash_info_t flash_info[]; 271 flash_info_t *flash = &flash_info[id->num]; 272 273 addr += flash->start[0]; 274 return (void*)addr; 275 } 276 277 static inline void *get_node_mem_nor(u32 off) 278 { 279 return (void*)get_fl_mem_nor(off); 280 } 281 #endif /* #if (CONFIG_COMMANDS & CFG_CMD_FLASH) */ 282 283 284 /* 285 * Generic jffs2 raw memory and node read routines. 286 * 287 */ 288 static inline void *get_fl_mem(u32 off, u32 size, void *ext_buf) 289 { 290 struct mtdids *id = current_part->dev->id; 291 292 #if (CONFIG_COMMANDS & CFG_CMD_FLASH) 293 if (id->type == MTD_DEV_TYPE_NOR) 294 return get_fl_mem_nor(off); 295 #endif 296 297 #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY) 298 if (id->type == MTD_DEV_TYPE_NAND) 299 return get_fl_mem_nand(off, size, ext_buf); 300 #endif 301 302 printf("get_fl_mem: unknown device type, using raw offset!\n"); 303 return (void*)off; 304 } 305 306 static inline void *get_node_mem(u32 off) 307 { 308 struct mtdids *id = current_part->dev->id; 309 310 #if (CONFIG_COMMANDS & CFG_CMD_FLASH) 311 if (id->type == MTD_DEV_TYPE_NOR) 312 return get_node_mem_nor(off); 313 #endif 314 315 #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY) 316 if (id->type == MTD_DEV_TYPE_NAND) 317 return get_node_mem_nand(off); 318 #endif 319 320 printf("get_node_mem: unknown device type, using raw offset!\n"); 321 return (void*)off; 322 } 323 324 static inline void put_fl_mem(void *buf) 325 { 326 #if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY) 327 struct mtdids *id = current_part->dev->id; 328 329 if (id->type == MTD_DEV_TYPE_NAND) 330 return put_fl_mem_nand(buf); 331 #endif 332 } 333 334 /* Compression names */ 335 static char *compr_names[] = { 336 "NONE", 337 "ZERO", 338 "RTIME", 339 "RUBINMIPS", 340 "COPY", 341 "DYNRUBIN", 342 "ZLIB", 343 #if defined(CONFIG_JFFS2_LZO_LZARI) 344 "LZO", 345 "LZARI", 346 #endif 347 }; 348 349 /* Spinning wheel */ 350 static char spinner[] = { '|', '/', '-', '\\' }; 351 352 /* Memory management */ 353 struct mem_block { 354 u32 index; 355 struct mem_block *next; 356 struct b_node nodes[NODE_CHUNK]; 357 }; 358 359 360 static void 361 free_nodes(struct b_list *list) 362 { 363 while (list->listMemBase != NULL) { 364 struct mem_block *next = list->listMemBase->next; 365 free( list->listMemBase ); 366 list->listMemBase = next; 367 } 368 } 369 370 static struct b_node * 371 add_node(struct b_list *list) 372 { 373 u32 index = 0; 374 struct mem_block *memBase; 375 struct b_node *b; 376 377 memBase = list->listMemBase; 378 if (memBase != NULL) 379 index = memBase->index; 380 #if 0 381 putLabeledWord("add_node: index = ", index); 382 putLabeledWord("add_node: memBase = ", list->listMemBase); 383 #endif 384 385 if (memBase == NULL || index >= NODE_CHUNK) { 386 /* we need more space before we continue */ 387 memBase = mmalloc(sizeof(struct mem_block)); 388 if (memBase == NULL) { 389 putstr("add_node: malloc failed\n"); 390 return NULL; 391 } 392 memBase->next = list->listMemBase; 393 index = 0; 394 #if 0 395 putLabeledWord("add_node: alloced a new membase at ", *memBase); 396 #endif 397 398 } 399 /* now we have room to add it. */ 400 b = &memBase->nodes[index]; 401 index ++; 402 403 memBase->index = index; 404 list->listMemBase = memBase; 405 list->listCount++; 406 return b; 407 } 408 409 static struct b_node * 410 insert_node(struct b_list *list, u32 offset) 411 { 412 struct b_node *new; 413 #ifdef CFG_JFFS2_SORT_FRAGMENTS 414 struct b_node *b, *prev; 415 #endif 416 417 if (!(new = add_node(list))) { 418 putstr("add_node failed!\r\n"); 419 return NULL; 420 } 421 new->offset = offset; 422 423 #ifdef CFG_JFFS2_SORT_FRAGMENTS 424 if (list->listTail != NULL && list->listCompare(new, list->listTail)) 425 prev = list->listTail; 426 else if (list->listLast != NULL && list->listCompare(new, list->listLast)) 427 prev = list->listLast; 428 else 429 prev = NULL; 430 431 for (b = (prev ? prev->next : list->listHead); 432 b != NULL && list->listCompare(new, b); 433 prev = b, b = b->next) { 434 list->listLoops++; 435 } 436 if (b != NULL) 437 list->listLast = prev; 438 439 if (b != NULL) { 440 new->next = b; 441 if (prev != NULL) 442 prev->next = new; 443 else 444 list->listHead = new; 445 } else 446 #endif 447 { 448 new->next = (struct b_node *) NULL; 449 if (list->listTail != NULL) { 450 list->listTail->next = new; 451 list->listTail = new; 452 } else { 453 list->listTail = list->listHead = new; 454 } 455 } 456 457 return new; 458 } 459 460 #ifdef CFG_JFFS2_SORT_FRAGMENTS 461 /* Sort data entries with the latest version last, so that if there 462 * is overlapping data the latest version will be used. 463 */ 464 static int compare_inodes(struct b_node *new, struct b_node *old) 465 { 466 struct jffs2_raw_inode ojNew; 467 struct jffs2_raw_inode ojOld; 468 struct jffs2_raw_inode *jNew = 469 (struct jffs2_raw_inode *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew); 470 struct jffs2_raw_inode *jOld = 471 (struct jffs2_raw_inode *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld); 472 473 return jNew->version > jOld->version; 474 } 475 476 /* Sort directory entries so all entries in the same directory 477 * with the same name are grouped together, with the latest version 478 * last. This makes it easy to eliminate all but the latest version 479 * by marking the previous version dead by setting the inode to 0. 480 */ 481 static int compare_dirents(struct b_node *new, struct b_node *old) 482 { 483 struct jffs2_raw_dirent ojNew; 484 struct jffs2_raw_dirent ojOld; 485 struct jffs2_raw_dirent *jNew = 486 (struct jffs2_raw_dirent *)get_fl_mem(new->offset, sizeof(ojNew), &ojNew); 487 struct jffs2_raw_dirent *jOld = 488 (struct jffs2_raw_dirent *)get_fl_mem(old->offset, sizeof(ojOld), &ojOld); 489 int cmp; 490 491 /* ascending sort by pino */ 492 if (jNew->pino != jOld->pino) 493 return jNew->pino > jOld->pino; 494 495 /* pino is the same, so use ascending sort by nsize, so 496 * we don't do strncmp unless we really must. 497 */ 498 if (jNew->nsize != jOld->nsize) 499 return jNew->nsize > jOld->nsize; 500 501 /* length is also the same, so use ascending sort by name 502 */ 503 cmp = strncmp((char *)jNew->name, (char *)jOld->name, jNew->nsize); 504 if (cmp != 0) 505 return cmp > 0; 506 507 /* we have duplicate names in this directory, so use ascending 508 * sort by version 509 */ 510 if (jNew->version > jOld->version) { 511 /* since jNew is newer, we know jOld is not valid, so 512 * mark it with inode 0 and it will not be used 513 */ 514 jOld->ino = 0; 515 return 1; 516 } 517 518 return 0; 519 } 520 #endif 521 522 static u32 523 jffs2_scan_empty(u32 start_offset, struct part_info *part) 524 { 525 char *max = (char *)(part->offset + part->size - sizeof(struct jffs2_raw_inode)); 526 char *offset = (char *)(part->offset + start_offset); 527 u32 off; 528 529 while (offset < max && 530 *(u32*)get_fl_mem((u32)offset, sizeof(u32), &off) == 0xFFFFFFFF) { 531 offset += sizeof(u32); 532 /* return if spinning is due */ 533 if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break; 534 } 535 536 return (u32)offset - part->offset; 537 } 538 539 void 540 jffs2_free_cache(struct part_info *part) 541 { 542 struct b_lists *pL; 543 544 if (part->jffs2_priv != NULL) { 545 pL = (struct b_lists *)part->jffs2_priv; 546 free_nodes(&pL->frag); 547 free_nodes(&pL->dir); 548 free(pL); 549 } 550 } 551 552 static u32 553 jffs_init_1pass_list(struct part_info *part) 554 { 555 struct b_lists *pL; 556 557 jffs2_free_cache(part); 558 559 if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) { 560 pL = (struct b_lists *)part->jffs2_priv; 561 562 memset(pL, 0, sizeof(*pL)); 563 #ifdef CFG_JFFS2_SORT_FRAGMENTS 564 pL->dir.listCompare = compare_dirents; 565 pL->frag.listCompare = compare_inodes; 566 #endif 567 } 568 return 0; 569 } 570 571 /* find the inode from the slashless name given a parent */ 572 static long 573 jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest) 574 { 575 struct b_node *b; 576 struct jffs2_raw_inode *jNode; 577 u32 totalSize = 0; 578 u32 latestVersion = 0; 579 uchar *lDest; 580 uchar *src; 581 long ret; 582 int i; 583 u32 counter = 0; 584 #ifdef CFG_JFFS2_SORT_FRAGMENTS 585 /* Find file size before loading any data, so fragments that 586 * start past the end of file can be ignored. A fragment 587 * that is partially in the file is loaded, so extra data may 588 * be loaded up to the next 4K boundary above the file size. 589 * This shouldn't cause trouble when loading kernel images, so 590 * we will live with it. 591 */ 592 for (b = pL->frag.listHead; b != NULL; b = b->next) { 593 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset, 594 sizeof(struct jffs2_raw_inode), NULL); 595 if ((inode == jNode->ino)) { 596 /* get actual file length from the newest node */ 597 if (jNode->version >= latestVersion) { 598 totalSize = jNode->isize; 599 latestVersion = jNode->version; 600 } 601 } 602 put_fl_mem(jNode); 603 } 604 #endif 605 606 for (b = pL->frag.listHead; b != NULL; b = b->next) { 607 jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset); 608 if ((inode == jNode->ino)) { 609 #if 0 610 putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen); 611 putLabeledWord("read_inode: inode = ", jNode->ino); 612 putLabeledWord("read_inode: version = ", jNode->version); 613 putLabeledWord("read_inode: isize = ", jNode->isize); 614 putLabeledWord("read_inode: offset = ", jNode->offset); 615 putLabeledWord("read_inode: csize = ", jNode->csize); 616 putLabeledWord("read_inode: dsize = ", jNode->dsize); 617 putLabeledWord("read_inode: compr = ", jNode->compr); 618 putLabeledWord("read_inode: usercompr = ", jNode->usercompr); 619 putLabeledWord("read_inode: flags = ", jNode->flags); 620 #endif 621 622 #ifndef CFG_JFFS2_SORT_FRAGMENTS 623 /* get actual file length from the newest node */ 624 if (jNode->version >= latestVersion) { 625 totalSize = jNode->isize; 626 latestVersion = jNode->version; 627 } 628 #endif 629 630 if(dest) { 631 src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode); 632 /* ignore data behind latest known EOF */ 633 if (jNode->offset > totalSize) { 634 put_fl_mem(jNode); 635 continue; 636 } 637 638 lDest = (uchar *) (dest + jNode->offset); 639 #if 0 640 putLabeledWord("read_inode: src = ", src); 641 putLabeledWord("read_inode: dest = ", lDest); 642 #endif 643 switch (jNode->compr) { 644 case JFFS2_COMPR_NONE: 645 ret = (unsigned long) ldr_memcpy(lDest, src, jNode->dsize); 646 break; 647 case JFFS2_COMPR_ZERO: 648 ret = 0; 649 for (i = 0; i < jNode->dsize; i++) 650 *(lDest++) = 0; 651 break; 652 case JFFS2_COMPR_RTIME: 653 ret = 0; 654 rtime_decompress(src, lDest, jNode->csize, jNode->dsize); 655 break; 656 case JFFS2_COMPR_DYNRUBIN: 657 /* this is slow but it works */ 658 ret = 0; 659 dynrubin_decompress(src, lDest, jNode->csize, jNode->dsize); 660 break; 661 case JFFS2_COMPR_ZLIB: 662 ret = zlib_decompress(src, lDest, jNode->csize, jNode->dsize); 663 break; 664 #if defined(CONFIG_JFFS2_LZO_LZARI) 665 case JFFS2_COMPR_LZO: 666 ret = lzo_decompress(src, lDest, jNode->csize, jNode->dsize); 667 break; 668 case JFFS2_COMPR_LZARI: 669 ret = lzari_decompress(src, lDest, jNode->csize, jNode->dsize); 670 break; 671 #endif 672 default: 673 /* unknown */ 674 putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr); 675 put_fl_mem(jNode); 676 return -1; 677 break; 678 } 679 } 680 681 #if 0 682 putLabeledWord("read_inode: totalSize = ", totalSize); 683 putLabeledWord("read_inode: compr ret = ", ret); 684 #endif 685 } 686 counter++; 687 put_fl_mem(jNode); 688 } 689 690 #if 0 691 putLabeledWord("read_inode: returning = ", totalSize); 692 #endif 693 return totalSize; 694 } 695 696 /* find the inode from the slashless name given a parent */ 697 static u32 698 jffs2_1pass_find_inode(struct b_lists * pL, const char *name, u32 pino) 699 { 700 struct b_node *b; 701 struct jffs2_raw_dirent *jDir; 702 int len; 703 u32 counter; 704 u32 version = 0; 705 u32 inode = 0; 706 707 /* name is assumed slash free */ 708 len = strlen(name); 709 710 counter = 0; 711 /* we need to search all and return the inode with the highest version */ 712 for(b = pL->dir.listHead; b; b = b->next, counter++) { 713 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset); 714 if ((pino == jDir->pino) && (len == jDir->nsize) && 715 (jDir->ino) && /* 0 for unlink */ 716 (!strncmp((char *)jDir->name, name, len))) { /* a match */ 717 if (jDir->version < version) { 718 put_fl_mem(jDir); 719 continue; 720 } 721 722 if (jDir->version == version && inode != 0) { 723 /* I'm pretty sure this isn't legal */ 724 putstr(" ** ERROR ** "); 725 putnstr(jDir->name, jDir->nsize); 726 putLabeledWord(" has dup version =", version); 727 } 728 inode = jDir->ino; 729 version = jDir->version; 730 } 731 #if 0 732 putstr("\r\nfind_inode:p&l ->"); 733 putnstr(jDir->name, jDir->nsize); 734 putstr("\r\n"); 735 putLabeledWord("pino = ", jDir->pino); 736 putLabeledWord("nsize = ", jDir->nsize); 737 putLabeledWord("b = ", (u32) b); 738 putLabeledWord("counter = ", counter); 739 #endif 740 put_fl_mem(jDir); 741 } 742 return inode; 743 } 744 745 char *mkmodestr(unsigned long mode, char *str) 746 { 747 static const char *l = "xwr"; 748 int mask = 1, i; 749 char c; 750 751 switch (mode & S_IFMT) { 752 case S_IFDIR: str[0] = 'd'; break; 753 case S_IFBLK: str[0] = 'b'; break; 754 case S_IFCHR: str[0] = 'c'; break; 755 case S_IFIFO: str[0] = 'f'; break; 756 case S_IFLNK: str[0] = 'l'; break; 757 case S_IFSOCK: str[0] = 's'; break; 758 case S_IFREG: str[0] = '-'; break; 759 default: str[0] = '?'; 760 } 761 762 for(i = 0; i < 9; i++) { 763 c = l[i%3]; 764 str[9-i] = (mode & mask)?c:'-'; 765 mask = mask<<1; 766 } 767 768 if(mode & S_ISUID) str[3] = (mode & S_IXUSR)?'s':'S'; 769 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S'; 770 if(mode & S_ISVTX) str[9] = (mode & S_IXOTH)?'t':'T'; 771 str[10] = '\0'; 772 return str; 773 } 774 775 static inline void dump_stat(struct stat *st, const char *name) 776 { 777 char str[20]; 778 char s[64], *p; 779 780 if (st->st_mtime == (time_t)(-1)) /* some ctimes really hate -1 */ 781 st->st_mtime = 1; 782 783 ctime_r((time_t *)&st->st_mtime, s/*,64*/); /* newlib ctime doesn't have buflen */ 784 785 if ((p = strchr(s,'\n')) != NULL) *p = '\0'; 786 if ((p = strchr(s,'\r')) != NULL) *p = '\0'; 787 788 /* 789 printf("%6lo %s %8ld %s %s\n", st->st_mode, mkmodestr(st->st_mode, str), 790 st->st_size, s, name); 791 */ 792 793 printf(" %s %8ld %s %s", mkmodestr(st->st_mode,str), st->st_size, s, name); 794 } 795 796 static inline u32 dump_inode(struct b_lists * pL, struct jffs2_raw_dirent *d, struct jffs2_raw_inode *i) 797 { 798 char fname[256]; 799 struct stat st; 800 801 if(!d || !i) return -1; 802 803 strncpy(fname, (char *)d->name, d->nsize); 804 fname[d->nsize] = '\0'; 805 806 memset(&st,0,sizeof(st)); 807 808 st.st_mtime = i->mtime; 809 st.st_mode = i->mode; 810 st.st_ino = i->ino; 811 812 /* neither dsize nor isize help us.. do it the long way */ 813 st.st_size = jffs2_1pass_read_inode(pL, i->ino, NULL); 814 815 dump_stat(&st, fname); 816 817 if (d->type == DT_LNK) { 818 unsigned char *src = (unsigned char *) (&i[1]); 819 putstr(" -> "); 820 putnstr(src, (int)i->dsize); 821 } 822 823 putstr("\r\n"); 824 825 return 0; 826 } 827 828 /* list inodes with the given pino */ 829 static u32 830 jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino) 831 { 832 struct b_node *b; 833 struct jffs2_raw_dirent *jDir; 834 835 for (b = pL->dir.listHead; b; b = b->next) { 836 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset); 837 if ((pino == jDir->pino) && (jDir->ino)) { /* ino=0 -> unlink */ 838 u32 i_version = 0; 839 struct jffs2_raw_inode ojNode; 840 struct jffs2_raw_inode *jNode, *i = NULL; 841 struct b_node *b2 = pL->frag.listHead; 842 843 while (b2) { 844 jNode = (struct jffs2_raw_inode *) 845 get_fl_mem(b2->offset, sizeof(ojNode), &ojNode); 846 if (jNode->ino == jDir->ino && jNode->version >= i_version) { 847 if (i) 848 put_fl_mem(i); 849 850 if (jDir->type == DT_LNK) 851 i = get_node_mem(b2->offset); 852 else 853 i = get_fl_mem(b2->offset, sizeof(*i), NULL); 854 } 855 b2 = b2->next; 856 } 857 858 dump_inode(pL, jDir, i); 859 put_fl_mem(i); 860 } 861 put_fl_mem(jDir); 862 } 863 return pino; 864 } 865 866 static u32 867 jffs2_1pass_search_inode(struct b_lists * pL, const char *fname, u32 pino) 868 { 869 int i; 870 char tmp[256]; 871 char working_tmp[256]; 872 char *c; 873 874 /* discard any leading slash */ 875 i = 0; 876 while (fname[i] == '/') 877 i++; 878 strcpy(tmp, &fname[i]); 879 880 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */ 881 { 882 strncpy(working_tmp, tmp, c - tmp); 883 working_tmp[c - tmp] = '\0'; 884 #if 0 885 putstr("search_inode: tmp = "); 886 putstr(tmp); 887 putstr("\r\n"); 888 putstr("search_inode: wtmp = "); 889 putstr(working_tmp); 890 putstr("\r\n"); 891 putstr("search_inode: c = "); 892 putstr(c); 893 putstr("\r\n"); 894 #endif 895 for (i = 0; i < strlen(c) - 1; i++) 896 tmp[i] = c[i + 1]; 897 tmp[i] = '\0'; 898 #if 0 899 putstr("search_inode: post tmp = "); 900 putstr(tmp); 901 putstr("\r\n"); 902 #endif 903 904 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino))) { 905 putstr("find_inode failed for name="); 906 putstr(working_tmp); 907 putstr("\r\n"); 908 return 0; 909 } 910 } 911 /* this is for the bare filename, directories have already been mapped */ 912 if (!(pino = jffs2_1pass_find_inode(pL, tmp, pino))) { 913 putstr("find_inode failed for name="); 914 putstr(tmp); 915 putstr("\r\n"); 916 return 0; 917 } 918 return pino; 919 920 } 921 922 static u32 923 jffs2_1pass_resolve_inode(struct b_lists * pL, u32 ino) 924 { 925 struct b_node *b; 926 struct b_node *b2; 927 struct jffs2_raw_dirent *jDir; 928 struct jffs2_raw_inode *jNode; 929 u8 jDirFoundType = 0; 930 u32 jDirFoundIno = 0; 931 u32 jDirFoundPino = 0; 932 char tmp[256]; 933 u32 version = 0; 934 u32 pino; 935 unsigned char *src; 936 937 /* we need to search all and return the inode with the highest version */ 938 for(b = pL->dir.listHead; b; b = b->next) { 939 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset); 940 if (ino == jDir->ino) { 941 if (jDir->version < version) { 942 put_fl_mem(jDir); 943 continue; 944 } 945 946 if (jDir->version == version && jDirFoundType) { 947 /* I'm pretty sure this isn't legal */ 948 putstr(" ** ERROR ** "); 949 putnstr(jDir->name, jDir->nsize); 950 putLabeledWord(" has dup version (resolve) = ", 951 version); 952 } 953 954 jDirFoundType = jDir->type; 955 jDirFoundIno = jDir->ino; 956 jDirFoundPino = jDir->pino; 957 version = jDir->version; 958 } 959 put_fl_mem(jDir); 960 } 961 /* now we found the right entry again. (shoulda returned inode*) */ 962 if (jDirFoundType != DT_LNK) 963 return jDirFoundIno; 964 965 /* it's a soft link so we follow it again. */ 966 b2 = pL->frag.listHead; 967 while (b2) { 968 jNode = (struct jffs2_raw_inode *) get_node_mem(b2->offset); 969 if (jNode->ino == jDirFoundIno) { 970 src = (unsigned char *)jNode + sizeof(struct jffs2_raw_inode); 971 972 #if 0 973 putLabeledWord("\t\t dsize = ", jNode->dsize); 974 putstr("\t\t target = "); 975 putnstr(src, jNode->dsize); 976 putstr("\r\n"); 977 #endif 978 strncpy(tmp, (char *)src, jNode->dsize); 979 tmp[jNode->dsize] = '\0'; 980 put_fl_mem(jNode); 981 break; 982 } 983 b2 = b2->next; 984 put_fl_mem(jNode); 985 } 986 /* ok so the name of the new file to find is in tmp */ 987 /* if it starts with a slash it is root based else shared dirs */ 988 if (tmp[0] == '/') 989 pino = 1; 990 else 991 pino = jDirFoundPino; 992 993 return jffs2_1pass_search_inode(pL, tmp, pino); 994 } 995 996 static u32 997 jffs2_1pass_search_list_inodes(struct b_lists * pL, const char *fname, u32 pino) 998 { 999 int i; 1000 char tmp[256]; 1001 char working_tmp[256]; 1002 char *c; 1003 1004 /* discard any leading slash */ 1005 i = 0; 1006 while (fname[i] == '/') 1007 i++; 1008 strcpy(tmp, &fname[i]); 1009 working_tmp[0] = '\0'; 1010 while ((c = (char *) strchr(tmp, '/'))) /* we are still dired searching */ 1011 { 1012 strncpy(working_tmp, tmp, c - tmp); 1013 working_tmp[c - tmp] = '\0'; 1014 for (i = 0; i < strlen(c) - 1; i++) 1015 tmp[i] = c[i + 1]; 1016 tmp[i] = '\0'; 1017 /* only a failure if we arent looking at top level */ 1018 if (!(pino = jffs2_1pass_find_inode(pL, working_tmp, pino)) && 1019 (working_tmp[0])) { 1020 putstr("find_inode failed for name="); 1021 putstr(working_tmp); 1022 putstr("\r\n"); 1023 return 0; 1024 } 1025 } 1026 1027 if (tmp[0] && !(pino = jffs2_1pass_find_inode(pL, tmp, pino))) { 1028 putstr("find_inode failed for name="); 1029 putstr(tmp); 1030 putstr("\r\n"); 1031 return 0; 1032 } 1033 /* this is for the bare filename, directories have already been mapped */ 1034 if (!(pino = jffs2_1pass_list_inodes(pL, 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 1044 unsigned char 1045 jffs2_1pass_rescan_needed(struct part_info *part) 1046 { 1047 struct b_node *b; 1048 struct jffs2_unknown_node onode; 1049 struct jffs2_unknown_node *node; 1050 struct b_lists *pL = (struct b_lists *)part->jffs2_priv; 1051 1052 if (part->jffs2_priv == 0){ 1053 DEBUGF ("rescan: First time in use\n"); 1054 return 1; 1055 } 1056 1057 /* if we have no list, we need to rescan */ 1058 if (pL->frag.listCount == 0) { 1059 DEBUGF ("rescan: fraglist zero\n"); 1060 return 1; 1061 } 1062 1063 /* but suppose someone reflashed a partition at the same offset... */ 1064 b = pL->dir.listHead; 1065 while (b) { 1066 node = (struct jffs2_unknown_node *) get_fl_mem(b->offset, 1067 sizeof(onode), &onode); 1068 if (node->nodetype != JFFS2_NODETYPE_DIRENT) { 1069 DEBUGF ("rescan: fs changed beneath me? (%lx)\n", 1070 (unsigned long) b->offset); 1071 return 1; 1072 } 1073 b = b->next; 1074 } 1075 return 0; 1076 } 1077 1078 #ifdef DEBUG_FRAGMENTS 1079 static void 1080 dump_fragments(struct b_lists *pL) 1081 { 1082 struct b_node *b; 1083 struct jffs2_raw_inode ojNode; 1084 struct jffs2_raw_inode *jNode; 1085 1086 putstr("\r\n\r\n******The fragment Entries******\r\n"); 1087 b = pL->frag.listHead; 1088 while (b) { 1089 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset, 1090 sizeof(ojNode), &ojNode); 1091 putLabeledWord("\r\n\tbuild_list: FLASH_OFFSET = ", b->offset); 1092 putLabeledWord("\tbuild_list: totlen = ", jNode->totlen); 1093 putLabeledWord("\tbuild_list: inode = ", jNode->ino); 1094 putLabeledWord("\tbuild_list: version = ", jNode->version); 1095 putLabeledWord("\tbuild_list: isize = ", jNode->isize); 1096 putLabeledWord("\tbuild_list: atime = ", jNode->atime); 1097 putLabeledWord("\tbuild_list: offset = ", jNode->offset); 1098 putLabeledWord("\tbuild_list: csize = ", jNode->csize); 1099 putLabeledWord("\tbuild_list: dsize = ", jNode->dsize); 1100 putLabeledWord("\tbuild_list: compr = ", jNode->compr); 1101 putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr); 1102 putLabeledWord("\tbuild_list: flags = ", jNode->flags); 1103 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */ 1104 b = b->next; 1105 } 1106 } 1107 #endif 1108 1109 #ifdef DEBUG_DIRENTS 1110 static void 1111 dump_dirents(struct b_lists *pL) 1112 { 1113 struct b_node *b; 1114 struct jffs2_raw_dirent *jDir; 1115 1116 putstr("\r\n\r\n******The directory Entries******\r\n"); 1117 b = pL->dir.listHead; 1118 while (b) { 1119 jDir = (struct jffs2_raw_dirent *) get_node_mem(b->offset); 1120 putstr("\r\n"); 1121 putnstr(jDir->name, jDir->nsize); 1122 putLabeledWord("\r\n\tbuild_list: magic = ", jDir->magic); 1123 putLabeledWord("\tbuild_list: nodetype = ", jDir->nodetype); 1124 putLabeledWord("\tbuild_list: hdr_crc = ", jDir->hdr_crc); 1125 putLabeledWord("\tbuild_list: pino = ", jDir->pino); 1126 putLabeledWord("\tbuild_list: version = ", jDir->version); 1127 putLabeledWord("\tbuild_list: ino = ", jDir->ino); 1128 putLabeledWord("\tbuild_list: mctime = ", jDir->mctime); 1129 putLabeledWord("\tbuild_list: nsize = ", jDir->nsize); 1130 putLabeledWord("\tbuild_list: type = ", jDir->type); 1131 putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc); 1132 putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc); 1133 putLabeledWord("\tbuild_list: offset = ", b->offset); /* FIXME: ? [RS] */ 1134 b = b->next; 1135 put_fl_mem(jDir); 1136 } 1137 } 1138 #endif 1139 1140 static u32 1141 jffs2_1pass_build_lists(struct part_info * part) 1142 { 1143 struct b_lists *pL; 1144 struct jffs2_unknown_node *node; 1145 u32 offset, oldoffset = 0; 1146 u32 max = part->size - sizeof(struct jffs2_raw_inode); 1147 u32 counter = 0; 1148 u32 counter4 = 0; 1149 u32 counterF = 0; 1150 u32 counterN = 0; 1151 1152 /* turn off the lcd. Refreshing the lcd adds 50% overhead to the */ 1153 /* jffs2 list building enterprise nope. in newer versions the overhead is */ 1154 /* only about 5 %. not enough to inconvenience people for. */ 1155 /* lcd_off(); */ 1156 1157 /* if we are building a list we need to refresh the cache. */ 1158 jffs_init_1pass_list(part); 1159 pL = (struct b_lists *)part->jffs2_priv; 1160 offset = 0; 1161 puts ("Scanning JFFS2 FS: "); 1162 1163 /* start at the beginning of the partition */ 1164 while (offset < max) { 1165 if ((oldoffset >> SPIN_BLKSIZE) != (offset >> SPIN_BLKSIZE)) { 1166 printf("\b\b%c ", spinner[counter++ % sizeof(spinner)]); 1167 oldoffset = offset; 1168 } 1169 1170 node = (struct jffs2_unknown_node *) get_node_mem((u32)part->offset + offset); 1171 if (node->magic == JFFS2_MAGIC_BITMASK && hdr_crc(node)) { 1172 /* if its a fragment add it */ 1173 if (node->nodetype == JFFS2_NODETYPE_INODE && 1174 inode_crc((struct jffs2_raw_inode *) node)) { 1175 if (insert_node(&pL->frag, (u32) part->offset + 1176 offset) == NULL) { 1177 put_fl_mem(node); 1178 return 0; 1179 } 1180 } else if (node->nodetype == JFFS2_NODETYPE_DIRENT && 1181 dirent_crc((struct jffs2_raw_dirent *) node) && 1182 dirent_name_crc((struct jffs2_raw_dirent *) node)) { 1183 if (! (counterN%100)) 1184 puts ("\b\b. "); 1185 if (insert_node(&pL->dir, (u32) part->offset + 1186 offset) == NULL) { 1187 put_fl_mem(node); 1188 return 0; 1189 } 1190 counterN++; 1191 } else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) { 1192 if (node->totlen != sizeof(struct jffs2_unknown_node)) 1193 printf("OOPS Cleanmarker has bad size " 1194 "%d != %d\n", node->totlen, 1195 sizeof(struct jffs2_unknown_node)); 1196 } else if (node->nodetype == JFFS2_NODETYPE_PADDING) { 1197 if (node->totlen < sizeof(struct jffs2_unknown_node)) 1198 printf("OOPS Padding has bad size " 1199 "%d < %d\n", node->totlen, 1200 sizeof(struct jffs2_unknown_node)); 1201 } else { 1202 printf("Unknown node type: %x len %d " 1203 "offset 0x%x\n", node->nodetype, 1204 node->totlen, offset); 1205 } 1206 offset += ((node->totlen + 3) & ~3); 1207 counterF++; 1208 } else if (node->magic == JFFS2_EMPTY_BITMASK && 1209 node->nodetype == JFFS2_EMPTY_BITMASK) { 1210 offset = jffs2_scan_empty(offset, part); 1211 } else { /* if we know nothing, we just step and look. */ 1212 offset += 4; 1213 counter4++; 1214 } 1215 /* printf("unknown node magic %4.4x %4.4x @ %lx\n", node->magic, node->nodetype, (unsigned long)node); */ 1216 put_fl_mem(node); 1217 } 1218 1219 putstr("\b\b done.\r\n"); /* close off the dots */ 1220 /* turn the lcd back on. */ 1221 /* splash(); */ 1222 1223 #if 0 1224 putLabeledWord("dir entries = ", pL->dir.listCount); 1225 putLabeledWord("frag entries = ", pL->frag.listCount); 1226 putLabeledWord("+4 increments = ", counter4); 1227 putLabeledWord("+file_offset increments = ", counterF); 1228 1229 #endif 1230 1231 #ifdef DEBUG_DIRENTS 1232 dump_dirents(pL); 1233 #endif 1234 1235 #ifdef DEBUG_FRAGMENTS 1236 dump_fragments(pL); 1237 #endif 1238 1239 /* give visual feedback that we are done scanning the flash */ 1240 led_blink(0x0, 0x0, 0x1, 0x1); /* off, forever, on 100ms, off 100ms */ 1241 return 1; 1242 } 1243 1244 1245 static u32 1246 jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL) 1247 { 1248 struct b_node *b; 1249 struct jffs2_raw_inode ojNode; 1250 struct jffs2_raw_inode *jNode; 1251 int i; 1252 1253 for (i = 0; i < JFFS2_NUM_COMPR; i++) { 1254 piL->compr_info[i].num_frags = 0; 1255 piL->compr_info[i].compr_sum = 0; 1256 piL->compr_info[i].decompr_sum = 0; 1257 } 1258 1259 b = pL->frag.listHead; 1260 while (b) { 1261 jNode = (struct jffs2_raw_inode *) get_fl_mem(b->offset, 1262 sizeof(ojNode), &ojNode); 1263 if (jNode->compr < JFFS2_NUM_COMPR) { 1264 piL->compr_info[jNode->compr].num_frags++; 1265 piL->compr_info[jNode->compr].compr_sum += jNode->csize; 1266 piL->compr_info[jNode->compr].decompr_sum += jNode->dsize; 1267 } 1268 b = b->next; 1269 } 1270 return 0; 1271 } 1272 1273 1274 static struct b_lists * 1275 jffs2_get_list(struct part_info * part, const char *who) 1276 { 1277 /* copy requested part_info struct pointer to global location */ 1278 current_part = part; 1279 1280 if (jffs2_1pass_rescan_needed(part)) { 1281 if (!jffs2_1pass_build_lists(part)) { 1282 printf("%s: Failed to scan JFFSv2 file structure\n", who); 1283 return NULL; 1284 } 1285 } 1286 return (struct b_lists *)part->jffs2_priv; 1287 } 1288 1289 1290 /* Print directory / file contents */ 1291 u32 1292 jffs2_1pass_ls(struct part_info * part, const char *fname) 1293 { 1294 struct b_lists *pl; 1295 long ret = 1; 1296 u32 inode; 1297 1298 if (! (pl = jffs2_get_list(part, "ls"))) 1299 return 0; 1300 1301 if (! (inode = jffs2_1pass_search_list_inodes(pl, fname, 1))) { 1302 putstr("ls: Failed to scan jffs2 file structure\r\n"); 1303 return 0; 1304 } 1305 1306 1307 #if 0 1308 putLabeledWord("found file at inode = ", inode); 1309 putLabeledWord("read_inode returns = ", ret); 1310 #endif 1311 1312 return ret; 1313 } 1314 1315 1316 /* Load a file from flash into memory. fname can be a full path */ 1317 u32 1318 jffs2_1pass_load(char *dest, struct part_info * part, const char *fname) 1319 { 1320 1321 struct b_lists *pl; 1322 long ret = 1; 1323 u32 inode; 1324 1325 if (! (pl = jffs2_get_list(part, "load"))) 1326 return 0; 1327 1328 if (! (inode = jffs2_1pass_search_inode(pl, fname, 1))) { 1329 putstr("load: Failed to find inode\r\n"); 1330 return 0; 1331 } 1332 1333 /* Resolve symlinks */ 1334 if (! (inode = jffs2_1pass_resolve_inode(pl, inode))) { 1335 putstr("load: Failed to resolve inode structure\r\n"); 1336 return 0; 1337 } 1338 1339 if ((ret = jffs2_1pass_read_inode(pl, inode, dest)) < 0) { 1340 putstr("load: Failed to read inode\r\n"); 1341 return 0; 1342 } 1343 1344 DEBUGF ("load: loaded '%s' to 0x%lx (%ld bytes)\n", fname, 1345 (unsigned long) dest, ret); 1346 return ret; 1347 } 1348 1349 /* Return information about the fs on this partition */ 1350 u32 1351 jffs2_1pass_info(struct part_info * part) 1352 { 1353 struct b_jffs2_info info; 1354 struct b_lists *pl; 1355 int i; 1356 1357 if (! (pl = jffs2_get_list(part, "info"))) 1358 return 0; 1359 1360 jffs2_1pass_fill_info(pl, &info); 1361 for (i = 0; i < JFFS2_NUM_COMPR; i++) { 1362 printf ("Compression: %s\n" 1363 "\tfrag count: %d\n" 1364 "\tcompressed sum: %d\n" 1365 "\tuncompressed sum: %d\n", 1366 compr_names[i], 1367 info.compr_info[i].num_frags, 1368 info.compr_info[i].compr_sum, 1369 info.compr_info[i].decompr_sum); 1370 } 1371 return 1; 1372 } 1373 1374 #endif /* CFG_CMD_JFFS2 */ 1375