sha_cmd() discards sys:run() error, masks real failure as 'sha256sum not found' #54
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#54
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
In crypto/hash.lua's sha_cmd(), the error result of the detection
command is silently discarded:
A genuine execution failure of
sys:run()(e.g. shell unavailable)is indistinguishable from "sha256sum not installed" -- both silently
fall through to the BSD (
sha256 -r) branch.Found while reviewing the daw_i18n/v1 migration of crypto/hash.lua
(DAW/daw-lua-common#48). Not an i18n issue, and out of scope for #48.
Scope
falling back to the BSD command, and if so, how a genuine execution
failure should be surfaced vs. "tool not found"
Related
DAW/daw-lua-common#48