2018-09-07 13:43:55 +08:00
fwtool_check_signature( ) {
[ $# -gt 1 ] && return 1
[ ! -x /usr/bin/ucert ] && {
if [ " $REQUIRE_IMAGE_SIGNATURE " = 1 ] ; then
return 1
else
return 0
fi
}
2021-06-15 17:58:07 +08:00
if ! fwtool -q -s /tmp/sysupgrade.ucert " $1 " ; then
v "Image signature not present"
2018-09-07 13:43:55 +08:00
[ " $REQUIRE_IMAGE_SIGNATURE " = 1 -a " $FORCE " != 1 ] && {
2021-06-15 17:58:07 +08:00
v "Use sysupgrade -F to override this check when downgrading or flashing to vendor firmware"
2018-09-07 13:43:55 +08:00
}
[ " $REQUIRE_IMAGE_SIGNATURE " = 1 ] && return 1
return 0
fi
2021-06-15 17:58:07 +08:00
fwtool -q -T -s /dev/null " $1 " | \
ucert -V -m - -c "/tmp/sysupgrade.ucert" -P /etc/opkg/keys
2018-09-07 13:43:55 +08:00
return $?
}
2017-09-06 19:19:45 +08:00
fwtool_check_image( ) {
[ $# -gt 1 ] && return 1
. /usr/share/libubox/jshn.sh
if ! fwtool -q -i /tmp/sysupgrade.meta " $1 " ; then
2021-06-15 17:58:07 +08:00
v "Image metadata not present"
2017-09-06 19:19:45 +08:00
[ " $REQUIRE_IMAGE_METADATA " = 1 -a " $FORCE " != 1 ] && {
2021-06-15 17:58:07 +08:00
v "Use sysupgrade -F to override this check when downgrading or flashing to vendor firmware"
2017-09-06 19:19:45 +08:00
}
[ " $REQUIRE_IMAGE_METADATA " = 1 ] && return 1
return 0
fi
json_load " $( cat /tmp/sysupgrade.meta) " || {
2021-06-15 17:58:07 +08:00
v "Invalid image metadata"
2017-09-06 19:19:45 +08:00
return 1
}
device = " $( cat /tmp/sysinfo/board_name) "
2021-06-15 17:58:07 +08:00
devicecompat = " $( uci -q get system.@system[ 0] .compat_version) "
[ -n " $devicecompat " ] || devicecompat = "1.0"
2017-09-06 19:19:45 +08:00
2021-06-15 17:58:07 +08:00
json_get_var imagecompat compat_version
json_get_var compatmessage compat_message
[ -n " $imagecompat " ] || imagecompat = "1.0"
# select correct supported list based on compat_version
# (using this ensures that compatibility check works for devices
# not knowing about compat-version)
local supported = supported_devices
[ " $imagecompat " != "1.0" ] && supported = new_supported_devices
json_select $supported || return 1
2017-09-06 19:19:45 +08:00
json_get_keys dev_keys
for k in $dev_keys ; do
json_get_var dev " $k "
2021-06-15 17:58:07 +08:00
if [ " $dev " = " $device " ] ; then
# major compat version -> no sysupgrade
if [ " ${ devicecompat %.* } " != " ${ imagecompat %.* } " ] ; then
v " The device is supported, but this image is incompatible for sysupgrade based on the image version ( $devicecompat -> $imagecompat ). "
[ -n " $compatmessage " ] && v " $compatmessage "
return 1
fi
# minor compat version -> sysupgrade with -n required
if [ " ${ devicecompat #.* } " != " ${ imagecompat #.* } " ] && [ " $SAVE_CONFIG " = "1" ] ; then
v " The device is supported, but the config is incompatible to the new image ( $devicecompat -> $imagecompat ). Please upgrade without keeping config (sysupgrade -n). "
[ -n " $compatmessage " ] && v " $compatmessage "
return 1
fi
return 0
fi
2017-09-06 19:19:45 +08:00
done
2021-06-15 17:58:07 +08:00
v " Device $device not supported by this image "
local devices = "Supported devices:"
2017-09-06 19:19:45 +08:00
for k in $dev_keys ; do
json_get_var dev " $k "
2021-06-15 17:58:07 +08:00
devices = " $devices $dev "
2017-09-06 19:19:45 +08:00
done
2021-06-15 17:58:07 +08:00
v " $devices "
2017-09-06 19:19:45 +08:00
return 1
}