⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jffs2_1pass.c

📁 U BOOT源码
💻 C
📖 第 1 页 / 共 3 页
字号:
/*------------------------------------------------------------------------- * Filename:      jffs2.c * Version:       $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $ * Copyright:     Copyright (C) 2001, Russ Dill * Author:        Russ Dill <Russ.Dill@asu.edu> * Description:   Module to load kernel from jffs2 *-----------------------------------------------------------------------*//* * some portions of this code are taken from jffs2, and as such, the * following copyright notice is included. * * JFFS2 -- Journalling Flash File System, Version 2. * * Copyright (C) 2001 Red Hat, Inc. * * Created by David Woodhouse <dwmw2@cambridge.redhat.com> * * The original JFFS, from which the design for JFFS2 was derived, * was designed and implemented by Axis Communications AB. * * The contents of this file are subject to the Red Hat eCos Public * License Version 1.1 (the "Licence"); you may not use this file * except in compliance with the Licence.  You may obtain a copy of * the Licence at http://www.redhat.com/ * * Software distributed under the Licence is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. * See the Licence for the specific language governing rights and * limitations under the Licence. * * The Original Code is JFFS2 - Journalling Flash File System, version 2 * * Alternatively, the contents of this file may be used under the * terms of the GNU General Public License version 2 (the "GPL"), in * which case the provisions of the GPL are applicable instead of the * above.  If you wish to allow the use of your version of this file * only under the terms of the GPL and not to allow others to use your * version of this file under the RHEPL, indicate your decision by * deleting the provisions above and replace them with the notice and * other provisions required by the GPL.  If you do not delete the * provisions above, a recipient may use your version of this file * under either the RHEPL or the GPL. * * $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $ * *//* Ok, so anyone who knows the jffs2 code will probably want to get a papar * bag to throw up into before reading this code. I looked through the jffs2 * code, the caching scheme is very elegant. I tried to keep the version * for a bootloader as small and simple as possible. Instead of worring about * unneccesary data copies, node scans, etc, I just optimized for the known * common case, a kernel, which looks like: * 	(1) most pages are 4096 bytes *	(2) version numbers are somewhat sorted in acsending order *	(3) multiple compressed blocks making up one page is uncommon * * So I create a linked list of decending version numbers (insertions at the * head), and then for each page, walk down the list, until a matching page * with 4096 bytes is found, and then decompress the watching pages in * reverse order. * *//* * Adapted by Nye Liu <nyet@zumanetworks.com> and * Rex Feany <rfeany@zumanetworks.com> * on Jan/2002 for U-Boot. * * Clipped out all the non-1pass functions, cleaned up warnings, * wrappers, etc. No major changes to the code. * Please, he really means it when he said have a paper bag * handy. We needed it ;). * *//* * Bugfixing by Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>, (C) Mar/2003 * * - overhaul of the memory management. Removed much of the "paper-bagging" *   in that part of the code, fixed several bugs, now frees memory when *   partition is changed. *   It's still ugly :-( * - fixed a bug in jffs2_1pass_read_inode where the file length calculation *   was incorrect. Removed a bit of the paper-bagging as well. * - removed double crc calculation for fragment headers in jffs2_private.h *   for speedup. * - scan_empty rewritten in a more "standard" manner (non-paperbag, that is). * - spinning wheel now spins depending on how much memory has been scanned * - lots of small changes all over the place to "improve" readability. * - implemented fragment sorting to ensure that the newest data is copied *   if there are multiple copies of fragments for a certain file offset. * * The fragment sorting feature must be enabled by CFG_JFFS2_SORT_FRAGMENTS. * Sorting is done while adding fragments to the lists, which is more or less a * bubble sort. This takes a lot of time, and is most probably not an issue if * the boot filesystem is always mounted readonly. * * You should define it if the boot filesystem is mounted writable, and updates * to the boot files are done by copying files to that filesystem. * * * There's a big issue left: endianess is completely ignored in this code. Duh! * * * You still should have paper bags at hand :-(. The code lacks more or less * any comment, and is still arcane and difficult to read in places. As this * is incompatible with any new code from the jffs2 maintainers anyway, it * should probably be dumped and replaced by something like jffs2reader! */#include <common.h>#include <config.h>#include <malloc.h>#include <linux/stat.h>#include <linux/time.h>#if (CONFIG_COMMANDS & CFG_CMD_JFFS2)#include <jffs2/jffs2.h>#include <jffs2/jffs2_1pass.h>#include "jffs2_private.h"#define	NODE_CHUNK  	1024	/* size of memory allocation chunk in b_nodes */#define	SPIN_BLKSIZE	18  	/* spin after having scanned 1<<BLKSIZE bytes *//* Debugging switches */#undef	DEBUG_DIRENTS		/* print directory entry list after scan */#undef	DEBUG_FRAGMENTS		/* print fragment list after scan */#undef	DEBUG   			/* enable debugging messages */#ifdef  DEBUG# define DEBUGF(fmt,args...)	printf(fmt ,##args)#else# define DEBUGF(fmt,args...)#endif/* Compression names */static char *compr_names[] = {	"NONE",	"ZERO",	"RTIME",	"RUBINMIPS",	"COPY",	"DYNRUBIN",	"ZLIB"};/* Spinning wheel */static char spinner[] = { '|', '/', '-', '\\' };/* Memory management */struct mem_block {	u32	index;	struct mem_block *next;	struct b_node nodes[NODE_CHUNK];};static voidfree_nodes(struct b_list *list){	while (list->listMemBase != NULL) {		struct mem_block *next = list->listMemBase->next;		free( list->listMemBase );		list->listMemBase = next;	}}static struct b_node *add_node(struct b_list *list){	u32 index = 0;	struct mem_block *memBase;	struct b_node *b;	memBase = list->listMemBase;	if (memBase != NULL)		index = memBase->index;#if 0	putLabeledWord("add_node: index = ", index);	putLabeledWord("add_node: memBase = ", list->listMemBase);#endif	if (memBase == NULL || index >= NODE_CHUNK) {		/* we need more space before we continue */		memBase = mmalloc(sizeof(struct mem_block));		if (memBase == NULL) {			putstr("add_node: malloc failed\n");			return NULL;		}		memBase->next = list->listMemBase;		index = 0;#if 0		putLabeledWord("add_node: alloced a new membase at ", *memBase);#endif	}	/* now we have room to add it. */	b = &memBase->nodes[index];	index ++;	memBase->index = index;	list->listMemBase = memBase;	list->listCount++;	return b;}static struct b_node *insert_node(struct b_list *list, u32 offset){	struct b_node *new;#ifdef CFG_JFFS2_SORT_FRAGMENTS	struct b_node *b, *prev;#endif	if (!(new = add_node(list))) {		putstr("add_node failed!\r\n");		return NULL;	}	new->offset = offset;#ifdef CFG_JFFS2_SORT_FRAGMENTS	if (list->listTail != NULL && list->listCompare(new, list->listTail))		prev = list->listTail;	else if (list->listLast != NULL && list->listCompare(new, list->listLast))		prev = list->listLast;	else		prev = NULL;	for (b = (prev ? prev->next : list->listHead);	     b != NULL && list->listCompare(new, b);	     prev = b, b = b->next) {		list->listLoops++;	}	if (b != NULL)		list->listLast = prev;	if (b != NULL) {		new->next = b;		if (prev != NULL)			prev->next = new;		else			list->listHead = new;	} else#endif	{		new->next = (struct b_node *) NULL;		if (list->listTail != NULL) {			list->listTail->next = new;			list->listTail = new;		} else {			list->listTail = list->listHead = new;		}	}	return new;}#ifdef CFG_JFFS2_SORT_FRAGMENTS/* Sort data entries with the latest version last, so that if there * is overlapping data the latest version will be used. */static int compare_inodes(struct b_node *new, struct b_node *old){	struct jffs2_raw_inode *jNew = (struct jffs2_raw_inode *)new->offset;	struct jffs2_raw_inode *jOld = (struct jffs2_raw_inode *)old->offset;	return jNew->version > jOld->version;}/* Sort directory entries so all entries in the same directory * with the same name are grouped together, with the latest version * last. This makes it easy to eliminate all but the latest version * by marking the previous version dead by setting the inode to 0. */static int compare_dirents(struct b_node *new, struct b_node *old){	struct jffs2_raw_dirent *jNew = (struct jffs2_raw_dirent *)new->offset;	struct jffs2_raw_dirent *jOld = (struct jffs2_raw_dirent *)old->offset;	int cmp;	/* ascending sort by pino */	if (jNew->pino != jOld->pino)		return jNew->pino > jOld->pino;	/* pino is the same, so use ascending sort by nsize, so	 * we don't do strncmp unless we really must.	 */	if (jNew->nsize != jOld->nsize)		return jNew->nsize > jOld->nsize;	/* length is also the same, so use ascending sort by name	 */	cmp = strncmp(jNew->name, jOld->name, jNew->nsize);	if (cmp != 0)		return cmp > 0;	/* we have duplicate names in this directory, so use ascending	 * sort by version	 */	if (jNew->version > jOld->version) {		/* since jNew is newer, we know jOld is not valid, so		 * mark it with inode 0 and it will not be used		 */		jOld->ino = 0;		return 1;	}	return 0;}#endifstatic u32jffs2_scan_empty(u32 start_offset, struct part_info *part){	char *max = part->offset + part->size - sizeof(struct jffs2_raw_inode);	char *offset = part->offset + start_offset;	while (offset < max && *(u32 *)offset == 0xFFFFFFFF) {		offset += sizeof(u32);		/* return if spinning is due */		if (((u32)offset & ((1 << SPIN_BLKSIZE)-1)) == 0) break;	}	return offset - part->offset;}static u32jffs_init_1pass_list(struct part_info *part){	struct b_lists *pL;	if (part->jffs2_priv != NULL) {		pL = (struct b_lists *)part->jffs2_priv;		free_nodes(&pL->frag);		free_nodes(&pL->dir);		free(pL);	}	if (NULL != (part->jffs2_priv = malloc(sizeof(struct b_lists)))) {		pL = (struct b_lists *)part->jffs2_priv;		memset(pL, 0, sizeof(*pL));#ifdef CFG_JFFS2_SORT_FRAGMENTS		pL->dir.listCompare = compare_dirents;		pL->frag.listCompare = compare_inodes;#endif	}	return 0;}/* find the inode from the slashless name given a parent */static longjffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest){	struct b_node *b;	struct jffs2_raw_inode *jNode;	u32 totalSize = 0;	u32 latestVersion = 0;	char *lDest;	char *src;	long ret;	int i;	u32 counter = 0;#ifdef CFG_JFFS2_SORT_FRAGMENTS

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -