资源简介
ubuntu下的unyaffs工具,unyaffs.c 和unyaffs.h 两个文件打包zip。用gcc -o unyaffs unyaffs.c编译,产生可执行的unyaffs命令。
代码片段和文件信息
/*
* unyaffs: extract files from yaffs2 file system image to current directory
*
* Created by Kai Wei
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include
#include
#include
#include
#include
#include
#include
#include “unyaffs.h“
#define CHUNK_SIZE 2048
#define SPARE_SIZE 64
#define MAX_objectS 10000
#define YAFFS_objectID_ROOT 1
unsigned char data[CHUNK_SIZE + SPARE_SIZE];
unsigned char *chunk_data = data;
unsigned char *spare_data = data + CHUNK_SIZE;
int img_file;
char *obj_list[MAX_objectS];
int process_chunk()
{
int out_file remain s;
char *full_path_name;
yaffs_PackedTags2 *pt = (yaffs_PackedTags2 *)spare_data;
if (pt->t.byteCount == 0xffff) { //a new object
yaffs_objectHeader *oh = (yaffs_objectHeader *)malloc(sizeof(yaffs_objectHeader));
memcpy(oh chunk_data sizeof(yaffs_objectHeader));
full_path_name = (char *)malloc(strlen(oh->name) + strlen(obj_list[oh->parentobjectId]) + 2);
if (full_path_name == NULL) {
perror(“malloc full path name\n“);
}
strcpy(full_path_name obj_list[oh->parentobjectId]);
strcat(full_path_name “/“);
strcat(full_path_name oh->name);
obj_list[pt->t.objectId] = full_path_name;
switch(oh->type) {
case YAFFS_object_TYPE_FILE:
remain = oh->fileSize;
out_file = creat(full_path_name oh->yst_mode);
while(remain > 0) {
if (read_chunk())
return -1;
s = (remain < pt->t.byteCount) ? remain : pt->t.byteCount;
if (write(out_file chunk_data s) == -1)
return -1;
remain -= s;
}
close(out_file);
break;
case YAFFS_object_TYPE_SYMlink:
symlink(oh->alias full_path_name);
break;
case YAFFS_object_TYPE_DIRECTORY:
mkdir(full_path_name 0777);
break;
case YAFFS_object_TYPE_HARDlink:
link(obj_list[oh->equivalentobjectId] full_path_name);
break;
}
}
}
int read_chunk()
{
ssize_t s;
int ret = -1;
memset(chunk_data 0xff sizeof(chunk_data));
s = read(img_file data CHUNK_SIZE + SPARE_SIZE);
if (s == -1) {
perror(“read image file\n“);
} else if (s == 0) {
printf(“end of image\n“);
} else if ((s == (CHUNK_SIZE + SPARE_SIZE))) {
ret = 0;
} else {
fprintf(stderr “broken image file\n“);
}
return ret;
}
int main(int argc char **argv)
{
if (argc != 2) {
printf(“Usage: unyaffs image_file_name\n“);
exit(1);
}
img_file = open(argv[1] O_RDONLY);
if (img_file == -1) {
printf(“open image file failed\n“);
exit(1);
}
obj_list[YAFFS_objectID_ROOT] = “.“;
while(1) {
if (read_chunk() == -1)
break;
process_chunk();
}
close(img_file);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2827 2013-03-10 11:32 unyaffs.c
文件 3729 2013-03-10 11:32 unyaffs.h
文件 10179 2013-03-10 11:32 unyaffs (1)
- 上一篇:CCSv5.5破解所需的License
- 下一篇:Bus Hound.zip
相关资源
- windows 1.04 img安装文件
- opencv_imgproc249d.dll
- ubuntu下 .img 镜像的制作
- image2lcd_V4.0破解版
- bootimg解压打包工具
- CImg库参考手册_中文版
- winimage万能IMG工具 映像文件
- 《 IMGUI.pdf 》
- Img2CAD(图像转CAD工具) V7.6 汉化绿色
- msdos71.img
- 百米生活2 AP 刷机img,系统
- Dlib19.15 编译好的标签工具: imgLab.e
- qemu-img for Windows
- C64x+imglib
- 树莓派缩小备份镜像终极方法简单易
- PG58IMG.ZIP
- 西门子MMC修复备份含img文件
- 图片标注工具LabelImg源码
- 东莞的一些土地利用类型img dem和矢量
- DMG2IMG v1.6.7 DMG转ISO.zip
- WordPress高清图片展示主题Perimg破解版
- 易语言imgui模块及源码
- CDIMAGE 2.47~2.54 + oscdimg2.54
- rimg2sdat tool for linux
- ROM分解合并工具合集——NBH、BIN、I
- Img2Lcd4.0
- 易语言地下城与勇士NPK/IMG模块
- imgui外挂界面开发最新源码
- 基于bootstrap实现简单的多选不同相册
- ROS电子盘复制工具DDCOPY_1.5_liunx硬盘备
评论
共有 条评论