File: test-hhhhhhhh.sh

package info (click to toggle)
proot 5.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,012 kB
  • sloc: ansic: 18,627; sh: 1,662; python: 108; asm: 41; makefile: 16; awk: 6
file content (23 lines) | stat: -rw-r--r-- 599 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if [ ! -x  ${ROOTFS}/bin/true ] || [ -h /bin/true ] || [ -h /bin ] || [ -z `which mcookie` ] || [ -z `which true` ] || [ -z `which mkdir` ] || [ -z `which ln` ] || [ -z `which rm` ]; then
    exit 125;
fi

TMP=/tmp/$(mcookie)
mkdir -p ${ROOTFS}/${TMP}

A=$(mcookie)
B=$(mcookie)

! ln -s /bin/true   -r ${ROOTFS}/${TMP}/${A}
! ln -s ${TMP}/${A} -r ${ROOTFS}/${TMP}/${B}

if [ ! -e ${ROOTFS}/${TMP}/${A} ]; then
    exit 125;
fi

env PATH=${TMP} ${PROOT} -r ${ROOTFS} ${B}

rm -f ${TMP}/${B}  # just in case it also exists in the host env.
${PROOT} -r ${ROOTFS} /${TMP}/${B}

rm -fr ${ROOTFS}/${TMP}