Every parent wishes to raise their child to be capable, independent, and yet still remain appreciative enough to visit once in a while in those declining autumn years, so that every longing look from the window shall not be in vain, and most of those that are will be sufficiently trimmed with happy memories, and with happy anticipations of many more to come.
Monday, 28 February 2022
bottles to make me well
Every parent wishes to raise their child to be capable, independent, and yet still remain appreciative enough to visit once in a while in those declining autumn years, so that every longing look from the window shall not be in vain, and most of those that are will be sufficiently trimmed with happy memories, and with happy anticipations of many more to come.
Wednesday, 24 November 2021
BASH inline functions or macros
Sometimes you want to write bash macros instead of bash functions.
You want to write some bash which can declare local variables in the caller context.
Maybe it parses some data and creates a bunch of hashes with a known prefix (that's as much namespace management as bash gives you) and populates a named list with the names of those hashes.
And then you need to use that twice so you want to factor it into a function. Only you can't these aren't meant to be global variables.
So you have a few solutions, all using source in one way or another
You could put it into a separate file and source it whenever you need it.
You could define it in a string or here document and source it when needed (but you loose bash syntax support in the editor).
You can call the function using command substitution and have it execute declare -p on the variables you want to export.
e.g. source <( my-function args )
Or to enjoy all the side effects directly, you can export the function body using declare -f and strip the first line (which is the function declaration) my masking it with a comment, and then execute the rest directly, using source.
First iteration
And to invoke it:
Example
Maybe source <( function-body my-function ) "$@" is a bit verbose when calling a function inline every time.
Bugs
Second iteration
Example
Note the double-eval mechanism so that <<< can be used to read the function name on stdin while the remaining arguments are applied to the body as $@ for the lifetime of the body (thanks, bash)
Bugs
Third Iteration
Example
Bugs
Bugs
Fourth Iteration
Example
Friday, 26 February 2021
Jovano Jovanke
Johnathon, Oh Johnny is my answer to Jovano Jovanke.
The original folk song lycrics are sung beautifully by Biljana Krstic
| Macedonian | English translation[6] |
|---|---|
Јовано, Jованке |
|
A more up-to-date rendering of this timeless piece is provided for the youth to reflect their own faults instead of blaming their parents.
Johnathon, my Johnny
Johnathon, oh Johnny
You sit in your bedroom, playing on your computer
instead of studying, my dear
sitting with the curtains shutJohnathon, my Johnny
I'm waiting here for you
To come to my home,
But you don't come, my dear,
My dear, my Johnny.Johnathon, oh Johnny
Your mother, won't let you,
your school work isn't done
Oh dear, oh Johnny.© Sam Liddicott 2021
Friday, 23 October 2020
dd is a pretentious fraud, don't trust it except for disks, files, and tape
Especially busybox dd.
[Note, specifying ibs and obs separately seems to work as expected (except with busybox dd). Using bs where ibs and obs have the same value is not a good idea]
I used to feel guilty writing to the tape drive with cat: cat /tmp/backup.tar.gz > /dev/rct0
What dd was good at, (I had somehow learned by osmosis) was reading and writing full block sizes where the device driver can't do it so well.
What nonsense.
dd doesn't to "impedance matching" of block sizes, it has barely any regard for them.
This all of a sudden mattered when I was using a shell to set efi variables using the efivarfs file system:
printf "\x07\x00\x00\x00%s" "$var-value" > "my-var-${owner-UUID}"
That works fine, but this was a problem:
some-process | cat /dev/fd/2 2<<<$'\x07\x00\x00\x00' - > "my-var-${owner-UUID}"
why? Because the data written to the variable pseudo-file had to be written all-in-one-go, and as this example shows, it might not happen, the output is written in two parts:
( echo hello ; sleep 1 ; echo goodbye ) | cat /dev/fd/2 2<<<$'\x07\x00\x00\x00' - | cat | cat
I supposed that this would be ideal for dd, I set the block size to 4096 which is the maximum write to the efi-var psuedo files anyway, giving:
( echo hello ; sleep 1 ; echo goodbye ) | \
cat /dev/fd/2 2<<<$'\x07\x00\x00\x00' - | dd bs=4096 of="my-var-${owner-UUID}"
but it didn't do the trick, strace showed multiple writes from dd, as we can also see here
( echo hello ; sleep 1 ; echo goodbye ) | cat /dev/fd/2 2<<<$'\x07\x00\x00\x00' - | dd bs=4096 | cat | cat
it turns out that dd doesn't care if it does a partial read from a pipe, it takes the block size as a maximum hint, rather than a requirement.
So... dd is ostensibly good at impedance matching of block sizes, lets set an input block size of 1 and an output block size of 4096 and let it accumulate the input blocks for output:
( echo hello ; sleep 1 ; echo goodbye ) | cat /dev/fd/2 2<<<$'\x07\x00\x00\x00' - | dd bs=1 obs=4096 | cat | cat
exactly the same result! dd just doesn't care!
GNU has the life-saving non-posix iflag=fullblock which actually reads a full input block (unless eof).
Without which, what is the point of dd? Well yes, we know it has incidental features such as very limited character set conversion, along with skip and seek, and unlike head, tail, etc, it won't read more input than it intends to use (which makes it very convenient for reading some of stdin from a shell script).
But it's main purpose is unmet, and with solid risk in some circles. Want to generate a random password for openssl?
password=$(dd if=/dev/random bs=32 count=1 | base64)
do you see the danger yet? What if dd blocks for want of randomness, dd will return a partial block!
simulate thus, try to read 12 random bytes and see how many we might get:
( printf "a" ; sleep 1 ; printf "bc" ; sleep 1 ; printf "def" ; sleep 1 ; printf "ghij" ; sleep 1 ; printf "klmno" ) | dd bs=12 count=1 | wc -c
we get one character instead of 12 (or instead of 256 or however many you expected)
The fix is to swap bs and count, so we keep reading 1 byte until we have enough
( printf "a" ; sleep 1 ; printf "bc" ; sleep 1 ; printf "def" ; sleep 1 ; printf "ghij" ; sleep 1 ; printf "klmno" ) | dd bs=1 count=12 | wc -c
dd, you are a pretentious ass, without the GNU extension you cannot read lots of small blocks and write one big block, and even on a non-terminating stream with more data becoming available, you will read less than block size multiplied by count, and think yourself smart!
Except with disks, files, and tape, where the driver managers block size, and partial reads won't happen, you can't be trusted to get your most basic task right.
Many interesting remarks at:
- https://unix.stackexchange.com/questions/121865/create-random-data-with-dd-and-get-partial-read-warning-is-the-data-after-the
- https://unix.stackexchange.com/questions/17295/when-is-dd-suitable-for-copying-data-or-when-are-read-and-write-partial
- https://superuser.com/questions/520601/why-does-dd-only-copy-128-bytes-from-dev-random-when-i-request-more
Saturday, 21 March 2020
Working with ttystudio and ttyrec
Sadly it is slow, and uses up way to much memory -- even running out of memory for even a small session.
Ironically it boasts of not using imagemagick while requiring node! No wonder it runs out of memory. Sadly the frams also seem to be based on clock time instead of ttyrec frames.
Even worse, it only works for recording live sessions.
This shell script causes ttystudio to convert a ttyrec file.
Use: ./ttyrec2studio ttyrecfilename
to make ttyrecfilename.gif
#! /bin/bash
ttystudio() {
local ttyrec="$1"
local fifo=$(mktemp -u)
mkfifo "$fifo"
coproc ttypipe { SHELL=$(realpath "$0") QUITPIPE="$fifo" TTYPLAYFILE="$ttyrec" command ttystudio "$ttyrec.gif" >/dev/tty 2>&1 ; }
# when we've finished with fifo, ttyplay has finished
cat "$fifo"
# send ^Q
printf $'\x11' >/proc/$$/fd/${ttypipe[1]}
# close pipe to coproc
eval "exec ${ttypipe[1]}<&-"
# Drain pipe from coproc
#eval "exec ${ttypipe[0]}<&-"
eval "cat /proc/$$/fd/${ttypipe[0]}"
wait $! # is coproc
echo Done all $?
}
emit() {
rm -f "$QUITPIPE"
echo "Playing $1" >&3
ttyplay "$1"
echo "Finished playing $1 [$?]" >&3
} 3>"$QUITPIPE"
main() {
if test -z "$QUITPIPE"
then ttystudio "$@"
else emit "$TTYPLAYFILE"
fi
}
main "$@"
Thursday, 18 July 2019
readline with bash's read -e
Thursday, 6 June 2019
synchronous pipe based task monitoring
An obvious way if I control the launch is to tie them together with a pipe and they can detect when the pipe closes.
Maybe the other process would launch many further processes, all inheriting the pipe-fd, which I want to avoid.
So clearly the launcher needs to hold the pipe-fd but not share it (close-on-exec, don't fork too much), and then wait in the usual way for the launched process to quit, and then close the pipe.
Here's a bash incantation lifetime_fd which runs a simple list of arguments and can share an fd with another process through process substitution.
# just run a simple list, without affecting $?
just() {
set -- $? "$@" "${@:2}"
return $1
}
lifetime_fd() {
set -- $_ "$@" ; eval "$1>&-" '"${@:2}"' ; just eval exec "$1>&-"
}
So if you want to run command fooly barly bazly and link it to the lame read && echo done then this will do the trick
lifetime_fd fooly barly bazly {_}> >( read && echo done )
The variable $_ is used to avoid messing with any other variables. $_ is constantly adjusted and should do no harm if we abuse it; but as it is constantly adjusted, the first thing we do in lifetime_fd is to save it.
We don't use a local variable in case of a name clash that affects something else, so we store it as $1
We then run "$@" (or "${@:2}" as it now would be) but with the fd closed, so that it is not inherited.
We then close the fd while preserving the exit code.
You can invoke it in a pipeline like this:
get_report_request | lifetime_fd get_report {_}> >( monitor ) | send_report
An illustrative example of monitor (which reads until eof), might be:
monitor() {
while read -t 1 || test $? = 142 # 142 is timeout code
do echo -n '*'
done
}
which displays a star every second until stdin closes; by continually waiting up to 1 second to fail to read anything from stdin (until it closes, having a different exit code), and displays a star.
Of course it might read other data too.... if you can send it...