5a1065c33e
As was found out by Vladimir Karpinsky (thanks for patience!), the autochosen directory might still have too restrictive mount options -- nodev and/or noexec. Hopefully the diags are a bit better and faster by now.
82 lines
2.2 KiB
Bash
Executable File
82 lines
2.2 KiB
Bash
Executable File
#!/bin/sh
|
|
# analyze free space, preferring tmpfs over really many gigaz
|
|
# and taking into account configured hasher workdir prefices
|
|
|
|
# hope there aren't spaces in RM's $HOME are they?
|
|
DIRS="$TMP $TMPDIR $HOME/hasher /tmp /var/tmp .."
|
|
MINSIZE=262144 # face control criterion
|
|
|
|
# poor man's SourceIfExists()
|
|
try_source() { [ -f "$1" ] && . "$1"; }
|
|
|
|
# hasher accepted ones
|
|
get_prefices()
|
|
{
|
|
try_source /etc/hasher-priv/system
|
|
try_source `/usr/libexec/hasher-priv/getconf.sh`
|
|
echo "$prefix" | tr ':' '\n' | while read i; do realpath "$i"; done
|
|
}
|
|
|
|
# drop candidates that hasher won't handle anyways
|
|
# NB: doesn't take --number into account,
|
|
# prefix lists are defined by the primary configuration
|
|
contemplate_dirs()
|
|
{
|
|
for d in "$@"; do
|
|
D="`realpath "$d"`";
|
|
for p in `get_prefices`; do
|
|
[ "${D#$p}" = "$D" ] || echo "$D";
|
|
done;
|
|
done \
|
|
| uniq # _not_ sort -u
|
|
}
|
|
|
|
# hasher emits no meaningful errors regarding those, sigh
|
|
check_options()
|
|
{
|
|
! egrep -q "^$1 $2 .*no(dev|exec)" /proc/mounts
|
|
}
|
|
|
|
# pick existing, writeable, >256M free space dirs
|
|
# rank them wrt type: tmpfs > realfs > rootfs
|
|
choose_tmpdir() {
|
|
for i in "$@"; do
|
|
[ -d "$i" -a -w "$i" ] || continue
|
|
echo -n "$i "
|
|
df -Tl "$i" | tail -1
|
|
done \
|
|
| sort -unk6 \
|
|
| while read dir dev fstype size used free percent mnt; do
|
|
check_options "$dev" "$mnt" || continue
|
|
[ "$free" -gt "$MINSIZE" ] || continue
|
|
[ "$fstype" = "tmpfs" ] && { echo "2 $dir $free"; continue; }
|
|
[ "$mnt" = "/" ] && { echo "0 $dir $free"; continue; }
|
|
echo "1 $dir $free"
|
|
done \
|
|
| sort -n \
|
|
| tail -1 \
|
|
| cut -f2 -d' '
|
|
}
|
|
|
|
# bringing it all together
|
|
TMPDIRS="`contemplate_dirs $DIRS`"
|
|
if [ -z "$TMPDIRS" ]; then
|
|
echo "error: no suitable directories found;" >&2
|
|
echo "please check docs, filesystem and hasher setup" >&2
|
|
echo "(mount enough tmpfs into /tmp or fix hasher-priv prefix?)" >&2
|
|
exit 1
|
|
fi
|
|
|
|
TEMP="`choose_tmpdir $TMPDIRS`"
|
|
if [ -z "$TEMP" ]; then
|
|
echo "error: no suitable directories found;" >&2
|
|
echo "please check hasher docs and filesystem setup" >&2
|
|
echo "(nodev and/or noexec on an otherwise suitable filesystem?)" >&2
|
|
exit 1
|
|
fi
|
|
|
|
DIR="$TEMP/`dirname "$1"`"
|
|
NAME="`basename "${1:-tmpdir}"`"
|
|
mkdir -p "$DIR" # in case $1 contains slash(es)
|
|
mktemp -d "$NAME.XXXXXXX" --tmpdir="${DIR%/.}"
|