-
-
Notifications
You must be signed in to change notification settings - Fork 717
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hexdump
is a linux only tool
#910
Comments
Mh.. that's news to me. Hexdump also exists on MacOS and FreeBSD, and a lot of other systems, I'd also assume that it's available on Illumos and similar systems since I've heard about quite a few dehydrated users on those platforms, but since the use of hexdump is relatively new maybe nobody else ran into that issue yet. For now it should only be used for EAB handling so it's not critical for most users, but dehydrated checks for its existence in any case, so if it's not available dehydrated will refuse to work. Since that also should only be important for registration I could at least move the check into that function so it doesn't disrupt any other operation.. Unfortunately If you can suggest a replacement that's available everywhere and ideally pre-installed on even minimal systems I'd reconsider changing it, but for now I think I'll stay with hexdump and will consider moving the check to right before it's actually been required. Leaving this ticket open for now as a reminder. |
Moving that check would solve my problems, at least. It seems like it ought to be possible to use awk to do this. I think even the busybox awk should be capable. And awk is already on the requirements list. |
I recently upgraded a SmartOS (Illumos derived) system and hit this issue. For Linux and SmartOS (the only platforms I have readily available) the following seems equivalent so I thought I'd mention it even though I appreciate that it may not meet your portability requirements to other platforms and I've not tested it within dehydrated. od -t x1 -An | tr -d " \n" |
@lukas2511 So, I've been looking at this today, and I think Using In addition to I also have prototyped testing all binary values from #!/bin/sh
a=( {0..3}{0..7}{0..7} )
printf 'hexdump control: '
for i in "${a[@]}" ; do
printf "\\$i" | hexdump -v -e '/1 "%02x"'
done | sha1sum
printf 'od comparison: '
for i in "${a[@]}" ; do
printf "\\$i" | od -t xC -An | tr -d '[:space:]'
done | sha1sum This script produces the following output: $ ./compare.sh
hexdump control: 330c1810efa17b806411ae71cfc79211e4b4aa01 -
od comparison: 330c1810efa17b806411ae71cfc79211e4b4aa01 - So we have provably identical output to the existing implementation, and Let me know if you have any additional thoughts on this. |
The hexdump command is linux-only, and apparently comes from the util-linux command. Something that is available on other platforms would be a better choice. I haven't followed my way through the script to figure out where all it uses this, so I don't know what features and formats are required. I do know that dehydrated has been working flawlessly on my Illumos-derived systems for years without hexdump installed. Maybe xxd would work? That seems to be widely available.
The text was updated successfully, but these errors were encountered: