Skip to main content

Extract files from UBI and UBIFS images.

Project description

UBI Reader

UBI Reader is a Python module and collection of scripts capable of extracting the contents of UBI and UBIFS images, along with analyzing these images to determine the parameter settings to recreate them using the mtd-utils tools.

Known Issues

These are some known issues, that prevent an exact data dump from occuring.

  • This does not replay the journal, so uncommited data will not be retrieved. Data can be in the journal with both clean and unclean shutdowns.

  • Depending on how the NAND was dumped, the data bits may not be error corrected.

  • Socket files will be ignored, you can change ubireader/settings.py to have it create dummy files in their place.

Testing Branch

The testing branch includes a tools/ directory, that has scripts to help when trying to extract data from broken images. These also serve as examples of how to use parts of ubi_reader in custom scripts.

An override system is also included, for manually setting certain parameters that may be reported wrong by the UBI/FS data.

This branch will probably remain seperate, as it is meant to be customized to aid in extracting data from problematic images. You can install it with 'python setup.py develop' to make it easier to modify ubi_reader as needed.

Installation:

Latest Version

$ git clone https://github.com/jrspruitt/ubi_reader
$ cd ubi_reader
$ poetry install

Or

$ pip install --user ubi_reader

Usage:

For basic usage, the scripts need no options and if applicable will save output to ./ubifs-root/. More advanced usage can set start and end offset, specify an output directory, or for debugging can print out what it is doing to the terminal.

Run program with -h or --help for explanation of options.

Extracting File Contents:

ubireader_extract_files [options] path/to/file

The script accepts a file with UBI or UBIFS data in it, so should work with a NAND dump. It will search for the first occurance of UBI or UBIFS data and attempt to extract the contents. If file includes special files, you will need to run as root or sudo for it to create these files. With out it, it'll skip them and show a warning that these files were not created.

List/Copy Files:

ubireader_list_files [options] path/to/file

The script accepts a file with UBI or UBIFS data in it, so should work with a NAND dump. It will search for the first occurance of UBI or UBIFS data and treat it as a UBIFS. To list files supply the path to list (-P, --path), e.g. "-P /" to list the filesystems root directory. To copy a file from the filesystem to a local directory supply the source path (-C, --copy) and the destination path (-D, --copy-dest), e.g. -C /etc/passwd -D . (extract /etc/passwd from the UBIFS image and copy it to local directory).

Extracting Images:

ubireader_extract_images [options] path/to/file

This script will extract the whole UBI or UBIFS image from a NAND dump, or the UBIFS image from a UBI image. You can specify what type of image to extract by setting the (-u, --image-type) option to "UBI" or "UBIFS". Default is "UBIFS".

MTD-Utils Parameters:

ubireader_utils_info [options] path/to/file

The script will analyze a UBI image and create a Linux shell script and UBI config file that can be used for building new UBI images to the same specifications. For just a printed list of the options and values, use the (-r, --show-only) option.

Display Information:

ubireader_display_info [options] path/to/file

Depending on the image type found, this script displays some UBI information along with the header info from the layout block, including volume table records. If it is a UBIFS image, the Super Node, and both Master Nodes are displayed. Using the (-u, --ubifs-info) option, it will get the UBIFS info from inside a UBI file instead.

Display Block Information:

ubireader_display_blocks [options] "{'block.attr':?, ...}" path/to/file

Search for and display block information. This can be used for debugging failed image and file extractions. The blocks are searched for using a double quoted Python Dict of search paramaters, example. "{'peb_num':[0, 1] + range(100, 102), 'ec_hdr.ec': 1, 'is_valid': True}" This will find PEBs 0, 1, 100, 101, 102, with an erase count of 1 that is a valid block. Can use any of the parameters in ubireader.ubi.block.description.

Options:

Some general option flags are

  • -l, --log: This prints to screen actions being taken while running.
  • -v, --verbose: This basically prints everything about anything happening.
  • -p, --peb-size int: Specify PEB size of the UBI image, instead of having it guess.
  • -e, --leb-size int: Specify LEB size of UBIFS image, instead of having it guess.
  • -s, --start-offset int: Tell script to look for UBI/UBIFS data at given address.
  • -n, --end-offset int: Tell script to ignore data after given address in data.
  • -g, --guess-offset: Specify offset to start guessing where UBI data is in file. Useful for NAND dumps with false positives before image.
  • -w, --warn-only-block-read-errors: Attempts to continue extracting files even with bad block reads. Some data will be missing or corrupted!
  • -i, --ignore-block-header-errors: Forces unused and error containing blocks to be included and also displayed with log/verbose.
  • -f, --u-boot-fix: Assume blocks with image_seq 0 are because of older U-boot implementations and include them. *This may cause issues with multiple UBI image files.
  • -o, --output-dir path: Specify where files should be written to, instead of ubi_reader/output

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ubi_reader-0.8.12.tar.gz (48.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ubi_reader-0.8.12-py3-none-any.whl (73.3 kB view details)

Uploaded Python 3

File details

Details for the file ubi_reader-0.8.12.tar.gz.

File metadata

  • Download URL: ubi_reader-0.8.12.tar.gz
  • Upload date:
  • Size: 48.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.8.18 Linux/6.11.0-1014-azure

File hashes

Hashes for ubi_reader-0.8.12.tar.gz
Algorithm Hash digest
SHA256 12e7f1b5da5082c50b2b316efdac9375de5870e077bc2d984f4c0f9e1112b640
MD5 398fe3d5352da0dceadf95f68f2de382
BLAKE2b-256 be47b361dac8eaae4e59406f75adc2639ec7bde53f6ce4f71dc29119e36e502e

See more details on using hashes here.

File details

Details for the file ubi_reader-0.8.12-py3-none-any.whl.

File metadata

  • Download URL: ubi_reader-0.8.12-py3-none-any.whl
  • Upload date:
  • Size: 73.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.8.18 Linux/6.11.0-1014-azure

File hashes

Hashes for ubi_reader-0.8.12-py3-none-any.whl
Algorithm Hash digest
SHA256 0eeee4d49de81b36011b13e0ae34cf2d0789151747858663046f73c214f3fe17
MD5 7778af208c0e72f310d4a596439abe6f
BLAKE2b-256 056b41219224c08e5e562d294fa79b3419e1dd042855a4ec39a2e8ecfcf2b57b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page