| version 1.134, 2021/12/25 19:16:57 |
version 1.143, 2022/01/07 01:47:24 |
|
|
| FWPUB_KEY=${DESTDIR}/etc/signify/openbsd-${VERSION}-fw.pub |
FWPUB_KEY=${DESTDIR}/etc/signify/openbsd-${VERSION}-fw.pub |
| |
|
| DRYRUN=false |
DRYRUN=false |
| VERBOSE=false |
VERBOSE=0 |
| DELETE=false |
DELETE=false |
| DOWNLOAD=true |
DOWNLOAD= |
| INSTALL=true |
INSTALL=true |
| LOCALSRC= |
LOCALSRC= |
| |
|
|
|
| # we have su(1) and doas(1) is unlikely to be configured. |
# we have su(1) and doas(1) is unlikely to be configured. |
| set -o monitor # make sure ftp gets its own process group |
set -o monitor # make sure ftp gets its own process group |
| ( |
( |
| flags=-VM |
_flags=-vm |
| "$VERBOSE" && flags=-vm |
case "$VERBOSE" in |
| |
0|1) _flags=-VM ;; |
| |
2) _flags=-Vm ;; |
| |
esac |
| if [ -x /usr/bin/su ]; then |
if [ -x /usr/bin/su ]; then |
| exec /usr/bin/su -s /bin/ksh "$_user" -c \ |
exec /usr/bin/su -s /bin/ksh "$_user" -c \ |
| "/usr/bin/ftp -N '${0##/}' -D 'Get/Verify' $flags -o- '$_src'" > "$_dst" |
"/usr/bin/ftp -N '${0##/}' -D 'Get/Verify' $_flags -o- '$_src'" > "$_dst" |
| else |
else |
| exec /usr/bin/doas -u "$_user" \ |
exec /usr/bin/doas -u "$_user" \ |
| /usr/bin/ftp -N "${0##/}" -D 'Get/Verify' $flags -o- "$_src" > "$_dst" |
/usr/bin/ftp -N "${0##/}" -D 'Get/Verify' $_flags -o- "$_src" > "$_dst" |
| fi |
fi |
| ) & FTPPID=$! |
) & FTPPID=$! |
| set +o monitor |
set +o monitor |
|
|
| SECONDS=0 |
SECONDS=0 |
| sleep 1 |
sleep 1 |
| else |
else |
| kill -INT -"$FTPPID" |
kill -INT -"$FTPPID" 2>/dev/null |
| _error=" (timed out)" |
_error=" (timed out)" |
| fi |
fi |
| else |
else |
|
|
| set -sA _devices -- $( |
set -sA _devices -- $( |
| firmware_in_dmesg |
firmware_in_dmesg |
| for _d in $( installed_firmware '*' '-firmware-' '*' ); do |
for _d in $( installed_firmware '*' '-firmware-' '*' ); do |
| echo "$( firmware_devicename "$_d" )" |
firmware_devicename "$_d" |
| done |
done |
| ) |
) |
| |
|
| [ "${_devices[*]:-}" ] || return 0 |
[ "${_devices[*]:-}" ] || return 0 |
| for _d in "${_devices[@]}"; do |
for _d in "${_devices[@]}"; do |
| [[ $_last = $_d ]] && continue |
[ "$_last" = "$_d" ] && continue |
| echo $_d |
echo "$_d" |
| _last="$_d" |
_last="$_d" |
| done |
done |
| } |
} |
| |
|
| add_firmware () { |
add_firmware () { |
| local _f="${1##*/}" _pkgname |
local _f="${1##*/}" _m="${2:-Install}" _pkgname |
| FWPKGTMP="$( tmpdir "${DESTDIR}/var/db/pkg/.firmware" )" |
FWPKGTMP="$( tmpdir "${DESTDIR}/var/db/pkg/.firmware" )" |
| local flags=-VM |
local _flags=-vm |
| "$VERBOSE" && flags=-vm |
case "$VERBOSE" in |
| ftp -N "${0##/}" -D "Install" "$flags" -o- "file:${1}" | |
0|1) _flags=-VM ;; |
| |
2|3) _flags=-Vm ;; |
| |
esac |
| |
|
| |
ftp -N "${0##/}" -D "$_m" "$_flags" -o- "file:${1}" | |
| tar -s ",^\+,${FWPKGTMP}/+," \ |
tar -s ",^\+,${FWPKGTMP}/+," \ |
| -s ",^firmware,${DESTDIR}/etc/firmware," \ |
-s ",^firmware,${DESTDIR}/etc/firmware," \ |
| -C / -zxphf - "+*" "firmware/*" |
-C / -zxphf - "+*" "firmware/*" |
|
|
| local _cwd _pkg="$1" _pkgdir="${DESTDIR}/var/db/pkg" |
local _cwd _pkg="$1" _pkgdir="${DESTDIR}/var/db/pkg" |
| |
|
| # TODO: Check hash for files before deleting |
# TODO: Check hash for files before deleting |
| "$VERBOSE" && echo "Uninstalling $_pkg" |
[ "$VERBOSE" -gt 2 ] && echo -n "Uninstall $_pkg ..." |
| _cwd="${_pkgdir}/$_pkg" |
_cwd="${_pkgdir}/$_pkg" |
| |
|
| if [ ! -e "$_cwd/+CONTENTS" ] || |
if [ ! -e "$_cwd/+CONTENTS" ] || |
|
|
| rm -f "$_r" |
rm -f "$_r" |
| fi |
fi |
| done |
done |
| |
|
| |
[ "$VERBOSE" -gt 2 ] && echo " done." |
| |
|
| |
return 0 |
| } |
} |
| |
|
| usage() { |
usage() { |
|
|
| } |
} |
| |
|
| ALL=false |
ALL=false |
| OPT_D= |
OPT_F= |
| while getopts :adDnp:v name |
while getopts :adFnp:v name |
| do |
do |
| case "$name" in |
case "$name" in |
| a) ALL=true ;; |
a) ALL=true ;; |
| d) DELETE=true ;; |
d) DELETE=true ;; |
| D) OPT_D=true ;; |
F) OPT_F=true ;; |
| n) DRYRUN=true ;; |
n) DRYRUN=true ;; |
| p) LOCALSRC="$OPTARG" ;; |
p) LOCALSRC="$OPTARG" ;; |
| v) VERBOSE=true ;; |
v) VERBOSE=$(( VERBOSE + 1 )) ;; |
| :) |
:) |
| echo "${0##*/}: option requires an argument -- -$OPTARG" >&2 |
echo "${0##*/}: option requires an argument -- -$OPTARG" >&2 |
| usage 2 |
usage 2 |
|
|
| fi |
fi |
| |
|
| # "Download only" means local dir and don't install |
# "Download only" means local dir and don't install |
| if [ "$OPT_D" ]; then |
if [ "$OPT_F" ]; then |
| |
DOWNLOAD=true |
| INSTALL=false |
INSTALL=false |
| LOCALSRC="${LOCALSRC:-.}" |
LOCALSRC="${LOCALSRC:-.}" |
| elif [ "$LOCALSRC" ]; then |
elif [ "$LOCALSRC" ]; then |
|
|
| set -sA devices -- "$@" |
set -sA devices -- "$@" |
| |
|
| if "$DELETE"; then |
if "$DELETE"; then |
| [ "$OPT_D" ] && usage 22 |
[ "$OPT_F" ] && usage 22 |
| |
|
| |
# Show the "Uninstalling" message when just deleting not upgrading |
| |
[ "$VERBOSE" -gt 0 ] && VERBOSE=3 |
| |
|
| set -A installed |
set -A installed |
| if [ "${devices[*]:-}" ]; then |
if [ "${devices[*]:-}" ]; then |
| "$ALL" && usage 22 |
"$ALL" && usage 22 |
|
|
| if [ "${installed:-}" ]; then |
if [ "${installed:-}" ]; then |
| for fw in "${installed[@]}"; do |
for fw in "${installed[@]}"; do |
| if "$DRYRUN"; then |
if "$DRYRUN"; then |
| echo "Delete $fw" |
[ "$VERBOSE" -gt 0 ] && echo "Delete $fw" |
| else |
else |
| delete_firmware "$fw" || continue |
delete_firmware "$fw" || continue |
| fi |
fi |
|
|
| done |
done |
| fi |
fi |
| |
|
| deleted="${deleted:+${deleted#,}}" |
deleted="${deleted#,}" |
| echo "${0:##*/}: deleted ${deleted:-none}"; |
echo "${0:##*/}: deleted ${deleted:-none}"; |
| |
|
| exit |
exit |
|
|
| REMOVE_LOCALSRC=true |
REMOVE_LOCALSRC=true |
| fi |
fi |
| |
|
| CFILE="$LOCALSRC/$CFILE" |
|
| |
|
| if [ "${devices[*]:-}" ]; then |
if [ "${devices[*]:-}" ]; then |
| "$ALL" && usage 22 |
"$ALL" && usage 22 |
| else |
else |
| "$VERBOSE" && echo -n "Detecting firmware ..." |
[ "$VERBOSE" -gt 1 ] && echo -n "Detect firmware ..." |
| set -sA devices -- $( detect_firmware ) |
set -sA devices -- $( detect_firmware ) |
| "$VERBOSE" && |
[ "$VERBOSE" -gt 1 ] && |
| { [ "${devices[*]:-}" ] && echo " found." || echo " done." ; } |
{ [ "${devices[*]:-}" ] && echo " found." || echo " done." ; } |
| fi |
fi |
| |
|
| [ "${devices[*]:-}" ] || exit |
[ "${devices[*]:-}" ] || exit |
| |
|
| if "$DOWNLOAD"; then |
# Only need the CFILE to verify what has been downloaded |
| set +o noclobber # we want to get the latest CFILE |
# or to convert a device to a filename. |
| fetch "$CFILE" |
NEED_CFILE="${DOWNLOAD:-false}" |
| set -o noclobber |
if ! "$NEED_CFILE"; then |
| ! signify -qVep "$FWPUB_KEY" -x "$CFILE" -m "$CFILE" && |
for f in "${devices[@]}"; do |
| echo "Signature check of SHA256.sig failed" >&2 && exit 1 |
if [ "$( firmware_devicename "$f" )" = "$f" ]; then |
| elif [ ! -e "$CFILE" ]; then |
NEED_CFILE=true |
| # TODO: We shouldn't need a CFILE if all arguments are files. |
break |
| echo "${0##*/}: $CFILE: No such file or directory" >&2 |
fi |
| exit 2 |
done |
| fi |
fi |
| |
|
| |
# Only need to download if we already decided we did, |
| |
# or the same decision as if we NEED_CFILE. |
| |
DOWNLOAD="${DOWNLOAD:-$NEED_CFILE}" |
| |
|
| |
if "$NEED_CFILE"; then |
| |
CFILE="$LOCALSRC/$CFILE" |
| |
|
| |
if "$DOWNLOAD"; then |
| |
set +o noclobber # we want to get the latest CFILE |
| |
fetch "$CFILE" |
| |
set -o noclobber |
| |
! signify -qVep "$FWPUB_KEY" -x "$CFILE" -m "$CFILE" && |
| |
echo "Signature check of SHA256.sig failed" >&2 && exit 1 |
| |
elif [ ! -e "$CFILE" ]; then |
| |
echo "${0##*/}: $CFILE: No such file or directory" >&2 |
| |
exit 2 |
| |
fi |
| |
fi |
| |
|
| added='' |
added='' |
| updated='' |
updated='' |
| kept='' |
kept='' |
|
|
| if "$INSTALL" && [ "${installed[*]:-}" ]; then |
if "$INSTALL" && [ "${installed[*]:-}" ]; then |
| for i in "${installed[@]}"; do |
for i in "${installed[@]}"; do |
| if [ "${f##*/}" = "$i.tgz" ]; then |
if [ "${f##*/}" = "$i.tgz" ]; then |
| "$VERBOSE" && echo "Keep $i" |
[ "$VERBOSE" -gt 2 ] && echo "Keep $i" |
| kept="$kept,$d" |
kept="$kept,$d" |
| continue 2 |
continue 2 |
| fi |
fi |
|
|
| |
|
| if [ -e "$f" ]; then |
if [ -e "$f" ]; then |
| if "$DOWNLOAD"; then |
if "$DOWNLOAD"; then |
| "$VERBOSE" && ! "$INSTALL" && |
[ "$VERBOSE" -gt 1 ] && ! "$INSTALL" && |
| echo "Keep/Verify ${f##*/}" |
echo "Keep/Verify ${f##*/}" |
| "$DRYRUN" || verify "$f" || continue |
"$DRYRUN" || verify "$f" || continue |
| "$INSTALL" || kept="$kept,$d" |
"$INSTALL" || kept="$kept,$d" |
|
|
| fi |
fi |
| elif "$DOWNLOAD"; then |
elif "$DOWNLOAD"; then |
| if "$DRYRUN"; then |
if "$DRYRUN"; then |
| "$VERBOSE" && echo "Get/Verify ${f##*/}" |
[ "$VERBOSE" -gt 0 ] && echo "Get/Verify ${f##*/}" |
| else |
else |
| fetch "$f" || continue |
[ "$VERBOSE" -eq 1 ] && echo -n "Get/Verify ${f##*/} ..." |
| verify "$f" || continue |
fetch "$f" && |
| |
verify "$f" || |
| |
{ [ "$VERBOSE" -eq 1 ] && echo " failed."; continue; } |
| |
[ "$VERBOSE" -eq 1 ] && ! "$INSTALL" && echo " done." |
| fi |
fi |
| "$INSTALL" || added="$added,$d" |
"$INSTALL" || added="$added,$d" |
| elif "$INSTALL"; then |
elif "$INSTALL"; then |
| echo "Cannot install ${f##*/}, not found" >&2 |
echo "Cannot install ${f##*/}, not found" >&2 |
| continue |
continue |
|
|
| |
|
| "$INSTALL" || continue |
"$INSTALL" || continue |
| |
|
| removed=false |
update='' |
| if [ "${installed[*]:-}" ]; then |
if [ "${installed[*]:-}" ]; then |
| for i in "${installed[@]}"; do |
for i in "${installed[@]}"; do |
| "$DRYRUN" || delete_firmware "$i" |
"$DRYRUN" || delete_firmware "$i" |
| removed=true |
update="Update" |
| done |
done |
| fi |
fi |
| |
|
| "$DRYRUN" || add_firmware "$f" |
"$DRYRUN" || add_firmware "$f" "$update" |
| |
|
| f="${f##*/}" |
f="${f##*/}" |
| f="${f%.tgz}" |
f="${f%.tgz}" |
| if "$removed"; then |
if [ "$update" ]; then |
| "$DRYRUN" && echo "Update $f" |
if [ "$VERBOSE" -eq 1 ] && "$DOWNLOAD" && ! "$DRYRUN"; then |
| |
echo " updated." |
| |
elif [ "$VERBOSE" -eq 1 ]; then |
| |
echo "Update $f" |
| |
elif [ "$VERBOSE" -gt 0 ] && "$DRYRUN"; then |
| |
echo "Update $f" |
| |
fi |
| updated="$updated,$d" |
updated="$updated,$d" |
| else |
else |
| "$DRYRUN" && echo "Install $f" |
if [ "$VERBOSE" -eq 1 ] && "$DOWNLOAD" && ! "$DRYRUN"; then |
| |
echo " installed." |
| |
elif [ "$VERBOSE" -eq 1 ]; then |
| |
echo "Install $f" |
| |
elif [ "$VERBOSE" -gt 0 ] && "$DRYRUN"; then |
| |
echo "Install $f" |
| |
fi |
| added="$added,$d" |
added="$added,$d" |
| fi |
fi |
| done |
done |