2007-08-21 18:23:57 +00:00
|
|
|
RAM_ROOT=/tmp/root
|
|
|
|
|
2019-09-04 14:57:39 +00:00
|
|
|
export BACKUP_FILE=sysupgrade.tgz # file extracted by preinit
|
|
|
|
|
2014-10-19 21:46:08 +00:00
|
|
|
[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
|
2020-04-02 18:30:17 +00:00
|
|
|
libs() { ldd $* 2>/dev/null | sed -E 's/(.* => )?(.*) .*/\2/'; }
|
2007-08-21 18:23:57 +00:00
|
|
|
|
|
|
|
install_file() { # <file> [ <file> ... ]
|
2017-07-10 16:37:25 +00:00
|
|
|
local target dest dir
|
2007-08-21 18:23:57 +00:00
|
|
|
for file in "$@"; do
|
2017-07-10 16:37:25 +00:00
|
|
|
if [ -L "$file" ]; then
|
|
|
|
target="$(readlink -f "$file")"
|
|
|
|
dest="$RAM_ROOT/$file"
|
|
|
|
[ ! -f "$dest" ] && {
|
|
|
|
dir="$(dirname "$dest")"
|
|
|
|
mkdir -p "$dir"
|
|
|
|
ln -s "$target" "$dest"
|
|
|
|
}
|
|
|
|
file="$target"
|
|
|
|
fi
|
2007-08-21 18:23:57 +00:00
|
|
|
dest="$RAM_ROOT/$file"
|
2017-07-10 16:37:25 +00:00
|
|
|
[ -f "$file" -a ! -f "$dest" ] && {
|
|
|
|
dir="$(dirname "$dest")"
|
2007-08-21 18:23:57 +00:00
|
|
|
mkdir -p "$dir"
|
2017-07-10 16:37:25 +00:00
|
|
|
cp "$file" "$dest"
|
2007-08-21 18:23:57 +00:00
|
|
|
}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-07-10 16:37:25 +00:00
|
|
|
install_bin() {
|
|
|
|
local src files
|
2007-08-21 18:23:57 +00:00
|
|
|
src=$1
|
|
|
|
files=$1
|
|
|
|
[ -x "$src" ] && files="$src $(libs $src)"
|
|
|
|
install_file $files
|
|
|
|
}
|
|
|
|
|
|
|
|
run_hooks() {
|
|
|
|
local arg="$1"; shift
|
|
|
|
for func in "$@"; do
|
|
|
|
eval "$func $arg"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
ask_bool() {
|
|
|
|
local default="$1"; shift;
|
|
|
|
local answer="$default"
|
|
|
|
|
|
|
|
[ "$INTERACTIVE" -eq 1 ] && {
|
|
|
|
case "$default" in
|
|
|
|
0) echo -n "$* (y/N): ";;
|
|
|
|
*) echo -n "$* (Y/n): ";;
|
|
|
|
esac
|
|
|
|
read answer
|
|
|
|
case "$answer" in
|
|
|
|
y*) answer=1;;
|
|
|
|
n*) answer=0;;
|
|
|
|
*) answer="$default";;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
[ "$answer" -gt 0 ]
|
|
|
|
}
|
|
|
|
|
2020-11-10 13:30:29 +00:00
|
|
|
_v() {
|
|
|
|
[ -n "$VERBOSE" ] && [ "$VERBOSE" -ge 1 ] && echo "$*" >&2
|
|
|
|
}
|
|
|
|
|
2007-08-21 18:23:57 +00:00
|
|
|
v() {
|
2020-11-10 13:30:29 +00:00
|
|
|
_v "$(date) upgrade: $@"
|
2021-02-01 10:02:30 +00:00
|
|
|
logger -p info -t upgrade "$@"
|
2020-11-10 13:30:29 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 22:54:50 +00:00
|
|
|
json_string() {
|
|
|
|
local v="$1"
|
|
|
|
v="${v//\\/\\\\}"
|
|
|
|
v="${v//\"/\\\"}"
|
|
|
|
echo "\"$v\""
|
|
|
|
}
|
|
|
|
|
2007-08-21 18:23:57 +00:00
|
|
|
rootfs_type() {
|
2013-12-27 21:15:09 +00:00
|
|
|
/bin/mount | awk '($3 ~ /^\/$/) && ($5 !~ /rootfs/) { print $5 }'
|
2007-08-21 18:23:57 +00:00
|
|
|
}
|
|
|
|
|
2009-06-10 22:22:48 +00:00
|
|
|
get_image() { # <source> [ <command> ]
|
2007-08-21 18:23:57 +00:00
|
|
|
local from="$1"
|
2018-06-10 13:41:52 +00:00
|
|
|
local cmd="$2"
|
2017-04-21 22:54:50 +00:00
|
|
|
|
2018-06-10 13:41:52 +00:00
|
|
|
if [ -z "$cmd" ]; then
|
2017-04-21 22:54:50 +00:00
|
|
|
local magic="$(dd if="$from" bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"')"
|
2009-06-10 22:22:48 +00:00
|
|
|
case "$magic" in
|
2021-03-09 09:42:57 +00:00
|
|
|
1f8b) cmd="busybox zcat";;
|
2018-06-10 13:41:52 +00:00
|
|
|
*) cmd="cat";;
|
2009-06-10 22:22:48 +00:00
|
|
|
esac
|
|
|
|
fi
|
2007-08-21 18:23:57 +00:00
|
|
|
|
2020-11-03 03:26:21 +00:00
|
|
|
$cmd <"$from"
|
2007-08-21 18:23:57 +00:00
|
|
|
}
|
|
|
|
|
2020-11-03 03:38:06 +00:00
|
|
|
get_image_dd() {
|
|
|
|
local from="$1"; shift
|
|
|
|
|
|
|
|
(
|
|
|
|
exec 3>&2
|
|
|
|
( exec 3>&2; get_image "$from" 2>&1 1>&3 | grep -v -F ' Broken pipe' ) 2>&1 1>&3 \
|
|
|
|
| ( exec 3>&2; dd "$@" 2>&1 1>&3 | grep -v -E ' records (in|out)') 2>&1 1>&3
|
|
|
|
exec 3>&-
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2007-08-21 18:23:57 +00:00
|
|
|
get_magic_word() {
|
2014-06-11 13:00:25 +00:00
|
|
|
(get_image "$@" | dd bs=2 count=1 | hexdump -v -n 2 -e '1/1 "%02x"') 2>/dev/null
|
2007-08-21 18:23:57 +00:00
|
|
|
}
|
|
|
|
|
2011-01-26 20:35:37 +00:00
|
|
|
get_magic_long() {
|
2014-06-11 13:00:25 +00:00
|
|
|
(get_image "$@" | dd bs=4 count=1 | hexdump -v -n 4 -e '1/1 "%02x"') 2>/dev/null
|
2011-01-26 20:35:37 +00:00
|
|
|
}
|
|
|
|
|
2020-03-26 06:05:33 +00:00
|
|
|
get_magic_gpt() {
|
2020-04-04 15:50:41 +00:00
|
|
|
(get_image "$@" | dd bs=8 count=1 skip=64) 2>/dev/null
|
2020-03-26 06:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get_magic_vfat() {
|
2021-01-04 00:28:44 +00:00
|
|
|
(get_image "$@" | dd bs=3 count=1 skip=18) 2>/dev/null
|
2020-03-26 06:05:33 +00:00
|
|
|
}
|
|
|
|
|
2020-09-08 08:00:02 +00:00
|
|
|
get_magic_fat32() {
|
|
|
|
(get_image "$@" | dd bs=1 count=5 skip=82) 2>/dev/null
|
|
|
|
}
|
|
|
|
|
2023-01-13 05:32:16 +00:00
|
|
|
identify_magic_long() {
|
|
|
|
local magic=$1
|
|
|
|
case "$magic" in
|
|
|
|
"55424923")
|
|
|
|
echo "ubi"
|
|
|
|
;;
|
|
|
|
"31181006")
|
|
|
|
echo "ubifs"
|
|
|
|
;;
|
|
|
|
"68737173")
|
|
|
|
echo "squashfs"
|
|
|
|
;;
|
|
|
|
"d00dfeed")
|
|
|
|
echo "fit"
|
|
|
|
;;
|
|
|
|
"4349"*)
|
|
|
|
echo "combined"
|
|
|
|
;;
|
|
|
|
"1f8b"*)
|
|
|
|
echo "gzip"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "unknown $magic"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2020-03-26 06:05:33 +00:00
|
|
|
part_magic_efi() {
|
|
|
|
local magic=$(get_magic_gpt "$@")
|
|
|
|
[ "$magic" = "EFI PART" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
part_magic_fat() {
|
|
|
|
local magic=$(get_magic_vfat "$@")
|
2020-09-08 08:00:02 +00:00
|
|
|
local magic_fat32=$(get_magic_fat32 "$@")
|
|
|
|
[ "$magic" = "FAT" ] || [ "$magic_fat32" = "FAT32" ]
|
2020-03-26 06:05:33 +00:00
|
|
|
}
|
|
|
|
|
2016-12-31 17:06:37 +00:00
|
|
|
export_bootdevice() {
|
2021-03-31 12:47:35 +00:00
|
|
|
local cmdline uuid blockdev uevent line class
|
2016-12-31 17:06:37 +00:00
|
|
|
local MAJOR MINOR DEVNAME DEVTYPE
|
2021-03-31 12:47:35 +00:00
|
|
|
local rootpart="$(cmdline_get_var root)"
|
|
|
|
|
|
|
|
case "$rootpart" in
|
|
|
|
PARTUUID=[a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9]-[a-f0-9][a-f0-9])
|
|
|
|
uuid="${rootpart#PARTUUID=}"
|
|
|
|
uuid="${uuid%-[a-f0-9][a-f0-9]}"
|
|
|
|
for blockdev in $(find /dev -type b); do
|
|
|
|
set -- $(dd if=$blockdev bs=1 skip=440 count=4 2>/dev/null | hexdump -v -e '4/1 "%02x "')
|
|
|
|
if [ "$4$3$2$1" = "$uuid" ]; then
|
|
|
|
uevent="/sys/class/block/${blockdev##*/}/uevent"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
ipq40xx: Support Chromium OS image-type creation
See firmware-utils.git commits [1], which implemented the cros-vbutil
verified-boot payload-packing tool, and extended ptgen for the CrOS
kernel partition type. With these, it's now possible to package kernel +
rootfs to make disk images that can boot a Chrome OS-based system (e.g.,
Chromebooks, or even a few AP models).
Regarding PARTUUID= changes: Chromium bootloaders work well with a
partition number offset (i.e., relative to the kernel partition), so
we'll be using a slightly different root UUID line.
NB: I've made this support specific to ip40xx for now, because I only
plan to support an IPQ4019-based AP that uses a Chromium-based
bootloader, but this image format can be used for essentially any
Chromebook, as well as the Google OnHub, a prior Chromium-based AP using
an IPQ8064 chipset.
[1]
ptgen: add Chromium OS kernel partition support
https://git.openwrt.org/?p=project/firmware-utils.git;a=commit;h=6c95945b5de973026dc6f52eb088d0943efa96bb
cros-vbutil: add Chrome OS vboot kernel-signing utility
https://git.openwrt.org/?p=project/firmware-utils.git;a=commit;h=8e7274e02fdc6f2cb61b415d6e5b2e1c7e977aa1
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
2020-06-14 03:12:18 +00:00
|
|
|
PARTUUID=????????-????-????-????-??????????0?/PARTNROFF=1 | \
|
2021-03-31 12:47:35 +00:00
|
|
|
PARTUUID=????????-????-????-????-??????????02)
|
|
|
|
uuid="${rootpart#PARTUUID=}"
|
ipq40xx: Support Chromium OS image-type creation
See firmware-utils.git commits [1], which implemented the cros-vbutil
verified-boot payload-packing tool, and extended ptgen for the CrOS
kernel partition type. With these, it's now possible to package kernel +
rootfs to make disk images that can boot a Chrome OS-based system (e.g.,
Chromebooks, or even a few AP models).
Regarding PARTUUID= changes: Chromium bootloaders work well with a
partition number offset (i.e., relative to the kernel partition), so
we'll be using a slightly different root UUID line.
NB: I've made this support specific to ip40xx for now, because I only
plan to support an IPQ4019-based AP that uses a Chromium-based
bootloader, but this image format can be used for essentially any
Chromebook, as well as the Google OnHub, a prior Chromium-based AP using
an IPQ8064 chipset.
[1]
ptgen: add Chromium OS kernel partition support
https://git.openwrt.org/?p=project/firmware-utils.git;a=commit;h=6c95945b5de973026dc6f52eb088d0943efa96bb
cros-vbutil: add Chrome OS vboot kernel-signing utility
https://git.openwrt.org/?p=project/firmware-utils.git;a=commit;h=8e7274e02fdc6f2cb61b415d6e5b2e1c7e977aa1
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
2020-06-14 03:12:18 +00:00
|
|
|
uuid="${uuid%/PARTNROFF=1}"
|
|
|
|
uuid="${uuid%0?}00"
|
2021-03-31 12:47:35 +00:00
|
|
|
for disk in $(find /dev -type b); do
|
|
|
|
set -- $(dd if=$disk bs=1 skip=568 count=16 2>/dev/null | hexdump -v -e '8/1 "%02x "" "2/1 "%02x""-"6/1 "%02x"')
|
|
|
|
if [ "$4$3$2$1-$6$5-$8$7-$9" = "$uuid" ]; then
|
|
|
|
uevent="/sys/class/block/${disk##*/}/uevent"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
/dev/*)
|
|
|
|
uevent="/sys/class/block/${rootpart##*/}/../uevent"
|
|
|
|
;;
|
|
|
|
0x[a-f0-9][a-f0-9][a-f0-9] | 0x[a-f0-9][a-f0-9][a-f0-9][a-f0-9] | \
|
|
|
|
[a-f0-9][a-f0-9][a-f0-9] | [a-f0-9][a-f0-9][a-f0-9][a-f0-9])
|
|
|
|
rootpart=0x${rootpart#0x}
|
|
|
|
for class in /sys/class/block/*; do
|
|
|
|
while read line; do
|
|
|
|
export -n "$line"
|
|
|
|
done < "$class/uevent"
|
|
|
|
if [ $((rootpart/256)) = $MAJOR -a $((rootpart%256)) = $MINOR ]; then
|
|
|
|
uevent="$class/../uevent"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ -e "$uevent" ]; then
|
|
|
|
while read line; do
|
|
|
|
export -n "$line"
|
|
|
|
done < "$uevent"
|
|
|
|
export BOOTDEV_MAJOR=$MAJOR
|
|
|
|
export BOOTDEV_MINOR=$MINOR
|
|
|
|
return 0
|
2016-12-31 17:06:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
export_partdevice() {
|
|
|
|
local var="$1" offset="$2"
|
2018-02-12 22:36:54 +00:00
|
|
|
local uevent line MAJOR MINOR DEVNAME DEVTYPE
|
2016-12-31 17:06:37 +00:00
|
|
|
|
|
|
|
for uevent in /sys/class/block/*/uevent; do
|
2018-02-12 22:36:54 +00:00
|
|
|
while read line; do
|
|
|
|
export -n "$line"
|
|
|
|
done < "$uevent"
|
2022-12-21 06:21:46 +00:00
|
|
|
if [ "$BOOTDEV_MAJOR" = "$MAJOR" -a $(($BOOTDEV_MINOR + $offset)) = "$MINOR" -a -b "/dev/$DEVNAME" ]; then
|
2016-12-31 17:06:37 +00:00
|
|
|
export "$var=$DEVNAME"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-11-19 16:19:21 +00:00
|
|
|
hex_le32_to_cpu() {
|
2018-12-04 22:12:05 +00:00
|
|
|
[ "$(echo 01 | hexdump -v -n 2 -e '/2 "%x"')" = "3031" ] && {
|
2017-11-19 16:19:21 +00:00
|
|
|
echo "${1:0:2}${1:8:2}${1:6:2}${1:4:2}${1:2:2}"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
echo "$@"
|
|
|
|
}
|
|
|
|
|
2016-12-31 17:06:37 +00:00
|
|
|
get_partitions() { # <device> <filename>
|
|
|
|
local disk="$1"
|
|
|
|
local filename="$2"
|
|
|
|
|
|
|
|
if [ -b "$disk" -o -f "$disk" ]; then
|
|
|
|
v "Reading partition table from $filename..."
|
|
|
|
|
2017-11-19 16:19:21 +00:00
|
|
|
local magic=$(dd if="$disk" bs=2 count=1 skip=255 2>/dev/null)
|
|
|
|
if [ "$magic" != $'\x55\xAA' ]; then
|
2016-12-31 17:06:37 +00:00
|
|
|
v "Invalid partition table on $disk"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f "/tmp/partmap.$filename"
|
|
|
|
|
|
|
|
local part
|
2020-03-26 06:05:33 +00:00
|
|
|
part_magic_efi "$disk" && {
|
|
|
|
#export_partdevice will fail when partition number is greater than 15, as
|
|
|
|
#the partition major device number is not equal to the disk major device number
|
|
|
|
for part in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
|
|
|
|
set -- $(hexdump -v -n 48 -s "$((0x380 + $part * 0x80))" -e '4/4 "%08x"" "4/4 "%08x"" "4/4 "0x%08X "' "$disk")
|
2016-12-31 17:06:37 +00:00
|
|
|
|
2020-03-26 06:05:33 +00:00
|
|
|
local type="$1"
|
|
|
|
local lba="$(( $(hex_le32_to_cpu $4) * 0x100000000 + $(hex_le32_to_cpu $3) ))"
|
|
|
|
local end="$(( $(hex_le32_to_cpu $6) * 0x100000000 + $(hex_le32_to_cpu $5) ))"
|
2020-04-04 15:52:29 +00:00
|
|
|
local num="$(( $end - $lba + 1 ))"
|
2016-12-31 17:06:37 +00:00
|
|
|
|
2020-03-26 06:05:33 +00:00
|
|
|
[ "$type" = "00000000000000000000000000000000" ] && continue
|
2016-12-31 17:06:37 +00:00
|
|
|
|
2020-03-26 06:05:33 +00:00
|
|
|
printf "%2d %5d %7d\n" $part $lba $num >> "/tmp/partmap.$filename"
|
|
|
|
done
|
|
|
|
} || {
|
|
|
|
for part in 1 2 3 4; do
|
|
|
|
set -- $(hexdump -v -n 12 -s "$((0x1B2 + $part * 16))" -e '3/4 "0x%08X "' "$disk")
|
|
|
|
|
|
|
|
local type="$(( $(hex_le32_to_cpu $1) % 256))"
|
|
|
|
local lba="$(( $(hex_le32_to_cpu $2) ))"
|
|
|
|
local num="$(( $(hex_le32_to_cpu $3) ))"
|
|
|
|
|
|
|
|
[ $type -gt 0 ] || continue
|
|
|
|
|
|
|
|
printf "%2d %5d %7d\n" $part $lba $num >> "/tmp/partmap.$filename"
|
|
|
|
done
|
|
|
|
}
|
2016-12-31 17:06:37 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-08-15 16:55:01 +00:00
|
|
|
indicate_upgrade() {
|
|
|
|
. /etc/diag.sh
|
|
|
|
set_state upgrade
|
|
|
|
}
|
|
|
|
|
2015-06-05 14:12:05 +00:00
|
|
|
# Flash firmware to MTD partition
|
|
|
|
#
|
|
|
|
# $(1): path to image
|
|
|
|
# $(2): (optional) pipe command to extract firmware, e.g. dd bs=n skip=m
|
2008-09-23 11:05:54 +00:00
|
|
|
default_do_upgrade() {
|
2009-06-17 11:09:10 +00:00
|
|
|
sync
|
2020-11-24 06:39:48 +00:00
|
|
|
echo 3 > /proc/sys/vm/drop_caches
|
2019-09-06 05:10:54 +00:00
|
|
|
if [ -n "$UPGRADE_BACKUP" ]; then
|
2019-09-05 21:33:19 +00:00
|
|
|
get_image "$1" "$2" | mtd $MTD_ARGS $MTD_CONFIG_ARGS -j "$UPGRADE_BACKUP" write - "${PART_NAME:-image}"
|
2008-09-23 11:05:54 +00:00
|
|
|
else
|
2018-12-31 15:24:26 +00:00
|
|
|
get_image "$1" "$2" | mtd $MTD_ARGS write - "${PART_NAME:-image}"
|
2008-09-23 11:05:54 +00:00
|
|
|
fi
|
2018-06-11 10:52:42 +00:00
|
|
|
[ $? -ne 0 ] && exit 1
|
2008-09-23 11:05:54 +00:00
|
|
|
}
|