1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
#! /bin/sh -e
SCRATCH=scratch/$(basename "$0" .sh)
PATCHELF=$(readlink -f "../src/patchelf")
rm -rf "${SCRATCH}"
mkdir -p "${SCRATCH}"
cp simple "${SCRATCH}"/
cp simple-execstack "${SCRATCH}"/
cp libsimple.so "${SCRATCH}"/
cp libsimple-execstack.so "${SCRATCH}"/
cd "${SCRATCH}"
## simple
cp simple backup
if ! ${PATCHELF} --print-execstack simple | grep -q 'execstack: -'; then
echo "[simple] wrong initial execstack detection"
${PATCHELF} --print-execstack simple
exit 1
fi
if ! ${PATCHELF} --clear-execstack simple; then
echo "[simple] failed noop initial clear"
exit 1
fi
if ! ${PATCHELF} --set-execstack simple; then
echo "[simple] failed set"
exit 1
fi
if ! ${PATCHELF} --print-execstack simple | grep -q 'execstack: X'; then
echo "[simple] wrong execstack detection after set"
${PATCHELF} --print-execstack simple
exit 1
fi
if diff simple backup; then
echo "[simple] no change after set"
exit 1
fi
if ! ${PATCHELF} --set-execstack simple; then
echo "[simple] failed noop set"
exit 1
fi
if ! ${PATCHELF} --clear-execstack simple; then
echo "[simple] failed clear after set"
exit 1
fi
if ! ${PATCHELF} --print-execstack simple | grep -q 'execstack: -'; then
echo "[simple] wrong execstack detection after clear after set"
${PATCHELF} --print-execstack simple
exit 1
fi
if ! diff simple backup; then
echo "[simple] change against backup after clear after set"
exit 1
fi
## simple-execstack
cp simple-execstack backup
if ! ${PATCHELF} --print-execstack simple-execstack | grep -q 'execstack: X'; then
echo "[simple-execstack] wrong initial execstack detection"
${PATCHELF} --print-execstack simple-execstack
exit 1
fi
if ! ${PATCHELF} --set-execstack simple-execstack; then
echo "[simple-execstack] failed noop initial set"
exit 1
fi
if ! ${PATCHELF} --clear-execstack simple-execstack; then
echo "[simple-execstack] failed clear"
exit 1
fi
if ! ${PATCHELF} --print-execstack simple-execstack | grep -q 'execstack: -'; then
echo "[simple-execstack] wrong execstack detection after clear"
${PATCHELF} --print-execstack simple-execstack
exit 1
fi
if diff simple-execstack backup; then
echo "[simple-execstack] no change after set"
exit 1
fi
if ! ${PATCHELF} --clear-execstack simple-execstack; then
echo "[simple-execstack] failed noop clear"
exit 1
fi
if ! ${PATCHELF} --set-execstack simple-execstack; then
echo "[simple-execstack] failed set after clear"
exit 1
fi
if ! ${PATCHELF} --print-execstack simple-execstack | grep -q 'execstack: X'; then
echo "[simple-execstack] wrong execstack detection after set after clear"
${PATCHELF} --print-execstack simple-execstack
exit 1
fi
if ! diff simple-execstack backup; then
echo "[simple-execstack] change against backup after set after clear"
exit 1
fi
## libsimple.so
cp libsimple.so backup
if ! ${PATCHELF} --print-execstack libsimple.so | grep -q 'execstack: -'; then
echo "[libsimple.so] wrong initial execstack detection"
${PATCHELF} --print-execstack libsimple.so
exit 1
fi
if ! ${PATCHELF} --clear-execstack libsimple.so; then
echo "[libsimple.so] failed noop initial clear"
exit 1
fi
if ! ${PATCHELF} --set-execstack libsimple.so; then
echo "[libsimple.so] failed set"
exit 1
fi
if ! ${PATCHELF} --print-execstack libsimple.so | grep -q 'execstack: X'; then
echo "[libsimple.so] wrong execstack detection after set"
${PATCHELF} --print-execstack libsimple.so
exit 1
fi
if diff libsimple.so backup; then
echo "[libsimple.so] no change after set"
exit 1
fi
if ! ${PATCHELF} --set-execstack libsimple.so; then
echo "[libsimple.so] failed noop set"
exit 1
fi
if ! ${PATCHELF} --clear-execstack libsimple.so; then
echo "[libsimple.so] failed clear after set"
exit 1
fi
if ! ${PATCHELF} --print-execstack libsimple.so | grep -q 'execstack: -'; then
echo "[libsimple.so] wrong execstack detection after clear after set"
${PATCHELF} --print-execstack libsimple.so
exit 1
fi
if ! diff libsimple.so backup; then
echo "[libsimple.so] change against backup after clear after set"
exit 1
fi
## libsimple-execstack.so
cp libsimple-execstack.so backup
if ! ${PATCHELF} --print-execstack libsimple-execstack.so | grep -q 'execstack: X'; then
echo "[libsimple-execstack.so] wrong initial execstack detection"
${PATCHELF} --print-execstack libsimple-execstack.so
exit 1
fi
if ! ${PATCHELF} --set-execstack libsimple-execstack.so; then
echo "[libsimple-execstack.so] failed noop initial set"
exit 1
fi
if ! ${PATCHELF} --clear-execstack libsimple-execstack.so; then
echo "[libsimple-execstack.so] failed clear"
exit 1
fi
if ! ${PATCHELF} --print-execstack libsimple-execstack.so | grep -q 'execstack: -'; then
echo "[libsimple-execstack.so] wrong execstack detection after clear"
${PATCHELF} --print-execstack libsimple-execstack.so
exit 1
fi
if diff libsimple-execstack.so backup; then
echo "[libsimple-execstack.so] no change after set"
exit 1
fi
if ! ${PATCHELF} --clear-execstack libsimple-execstack.so; then
echo "[libsimple-execstack.so] failed noop clear"
exit 1
fi
if ! ${PATCHELF} --set-execstack libsimple-execstack.so; then
echo "[libsimple-execstack.so] failed set after clear"
exit 1
fi
if ! ${PATCHELF} --print-execstack libsimple-execstack.so | grep -q 'execstack: X'; then
echo "[libsimple-execstack.so] wrong execstack detection after set after clear"
${PATCHELF} --print-execstack libsimple-execstack.so
exit 1
fi
if ! diff libsimple-execstack.so backup; then
echo "[libsimple-execstack.so] change against backup after set after clear"
exit 1
fi
|