如何從uImage中提取檔案?

如何從uImage中提取檔案?

Buildroot 正在為應該運行的嵌入式裝置產生映像。這非常有效。在這些映像中,包含 rootfs。

由於一些研究,我想查看生成的檔案(例如,應用了 Buildroot 設定的不同壓縮模式,現在應檢查它們是否正確完成),但我在網路中找不到有用的東西。

據我所知,uImage 和 zImage 之間的差異只是一個小標頭,因此 u-boot 能夠讀取該二進位檔案。但我既無法開啟 uImage,也無法開啟 zImage。

誰能給我提示如何解壓縮主機上的這些(u/z)影像?

答案1

mkimage -l uImage

將轉儲標題中的資訊。

tail -c+65 < uImage > out

就會得到內容。

tail -c+65  < uImage | gunzip > out

如果它是 gzip 壓縮的,則會得到解壓縮。

如果那是 initramfs,您可以執行cpio -t < outpax < out來列出內容。

如果它是 ramdisk 映像,您可以嘗試使用以下命令掛載它:

mount -ro loop out /mnt

file out可以告訴你更多關於它是什麼的資訊。

答案2

U-Boot 自備dumpimage工具(在 U-​​Boot 樹的工具目錄中找到它)

當然它適用於簡單圖像,但它也支援舊式多圖像

$ ~2/tools/dumpimage -l uMulti 
Image Name:   
Created:      Thu Aug 31 19:54:29 2017
Image Type:   ARM Linux Multi-File Image (uncompressed)
Data Size:    5678650 Bytes = 5545.56 kB = 5.42 MB
Load Address: 10008000
Entry Point:  10008000
Contents:
   Image 0: 5028760 Bytes = 4910.90 kB = 4.80 MB
   Image 1: 602111 Bytes = 588.00 kB = 0.57 MB
   Image 2: 47762 Bytes = 46.64 kB = 0.05 MB
$ ~2/tools/dumpimage -i uMulti kernel.extracted
$ ~2/tools/dumpimage -i uMulti -p 1 initramfs.extracted
$ ~2/tools/dumpimage -i uMulti -p 2 device-tree.extracted

還沒有嘗試過新風格的 FIT 圖像,但我想它應該可以工作。

答案3

如果裡面有多個圖像,這裡有一個快速bash腳本可以將它們全部提取到文件中image_0image_1...:

#!/bin/bash

src_file=uImage

declare -ia sizes=( $(mkimage -l "$src_file" |
  awk '/^ +Image [0-9]+/ { print $3 }') )
declare -i offset="68+4*${#sizes[@]}"
declare -i size

for i in "${!sizes[@]}"; do

  size=${sizes[$i]}

  echo "Unpacking image_$i"
  dd if="$src_file" of="image_$i" bs=1 skip="$offset" count="$size"

  # going to offset of next file while rounding to 4 byte multiple
  offset+=$(( size + (4 - size % 4) % 4 ))

done

然後您需要檢查什麼是什麼(可能是打包的 Linux 核心、包含檔案的檔案、裝置樹…)。filebinwalkhttp://binwalk.org/)可能會有所幫助。

答案4

7z對我來說“只是有效”,儘管這可能特定於 OpenWRT 和 SquashFS。我嘗試過基於OpenWRT 論壇上的評論

$ file image.bin 
image.bin: u-boot legacy uImage, OpenWrt fullimage, Linux/MIPS, Multi-File Image (Not compressed), 11334834 bytes, Mon Apr 12 09:59:28 2021, Load Address: 00000000, Entry Point: 00000000, Header CRC: 0XDFDE3FF5, Data CRC: 0X7704142B

$ 7z x image.bin

7-Zip [64] 17.04 : Copyright (c) 1999-2021 Igor Pavlov : 2017-08-28
p7zip Version 17.04 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,16 CPUs x64)

Scanning the drive for archives:
1 file, 11334898 bytes (11 MiB)

Extracting archive: image.bin
--       
Path = image.bin
Type = SquashFS
Offset = 2097224
Physical Size = 9237674
Headers Size = 47040
File System = SquashFS 4.0
Method = XZ
Cluster Size = 262144
Big-endian = -
Created = 2021-04-12 04:59:26
Characteristics = DUPLICATES_REMOVED EXPORTABLE 0x600
Code Page = UTF-8

Everything is Ok                                        

Folders: 145
Files: 2518
Size:       36789620
Compressed: 11334898


相關內容