#!/bin/sh # make sure symlinks with fchmodat() work properly addwrite $PWD rm -rf deny link ( set -e mkdir deny touch deny/file ln -s deny/file link ) || exit 1 # this *should not* trigger a sandbox violation fchmodat-0 0 AT_FDCWD link 0666 0 || exit 1 # this *should* trigger a sandbox violation adddeny $PWD/deny fchmodat-0 -1 AT_FDCWD link 0666 0 || exit 1 test -s sandbox.log