2014-11-25 11:21:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Measure memory usage of a minimal client using a small configuration
|
2014-12-01 10:30:56 +00:00
|
|
|
# Currently hardwired to ccm-psk and suite-b, may be expanded later
|
|
|
|
#
|
|
|
|
# Use different build options for measuring executable size and memory usage,
|
|
|
|
# since for memory we want debug information.
|
2014-11-25 11:21:48 +00:00
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
CONFIG_H='include/polarssl/config.h'
|
|
|
|
CLIENT='mini_client'
|
|
|
|
|
|
|
|
if [ -r $CONFIG_H ]; then :; else
|
|
|
|
echo "$CONFIG_H not found" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2014-12-01 10:30:56 +00:00
|
|
|
if grep -i cmake Makefile >/dev/null; then
|
|
|
|
echo "Not compatible with CMake" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if git status | grep -F $CONFIG_H >/dev/null 2>&1; then
|
|
|
|
echo "config.h not clean" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# preparation
|
|
|
|
|
2014-11-25 11:21:48 +00:00
|
|
|
CONFIG_BAK=${CONFIG_H}.bak
|
|
|
|
cp $CONFIG_H $CONFIG_BAK
|
|
|
|
|
2014-12-01 10:30:56 +00:00
|
|
|
rm -f massif.out.*
|
|
|
|
|
|
|
|
printf "building server... "
|
|
|
|
|
|
|
|
make clean
|
|
|
|
make lib >/dev/null 2>&1
|
|
|
|
(cd programs && make ssl/ssl_server2) >/dev/null
|
|
|
|
cp programs/ssl/ssl_server2 .
|
|
|
|
|
|
|
|
echo "done"
|
|
|
|
|
|
|
|
# first config
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "config-ccm-psk-tls1_2:"
|
2014-11-25 11:21:48 +00:00
|
|
|
cp configs/config-ccm-psk-tls1_2.h $CONFIG_H
|
|
|
|
|
2014-12-01 10:30:56 +00:00
|
|
|
printf " Executable size... "
|
2014-11-25 11:21:48 +00:00
|
|
|
|
|
|
|
make clean
|
|
|
|
CFLAGS=-fno-asynchronous-unwind-tables make OFLAGS=-Os lib >/dev/null 2>&1
|
|
|
|
cd programs
|
|
|
|
CFLAGS=-fno-asynchronous-unwind-tables make OFLAGS=-Os ssl/$CLIENT >/dev/null
|
|
|
|
strip ssl/$CLIENT
|
|
|
|
stat -c'%s' ssl/$CLIENT
|
|
|
|
cd ..
|
|
|
|
|
2014-12-01 10:30:56 +00:00
|
|
|
printf " Peak ram usage... "
|
2014-11-25 11:21:48 +00:00
|
|
|
|
|
|
|
make clean
|
|
|
|
CFLAGS=-g3 make OFLAGS=-Os lib >/dev/null 2>&1
|
|
|
|
cd programs
|
2014-12-01 10:30:56 +00:00
|
|
|
CFLAGS=-g3 make OFLAGS=-Os ssl/$CLIENT >/dev/null
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
./ssl_server2 psk=000102030405060708090A0B0C0D0E0F >/dev/null &
|
|
|
|
SRV_PID=$!
|
|
|
|
sleep 1;
|
|
|
|
|
|
|
|
if valgrind --tool=massif --stacks=yes programs/ssl/$CLIENT >/dev/null 2>&1
|
|
|
|
then
|
|
|
|
FAILED=0
|
|
|
|
else
|
|
|
|
echo "client failed" >&2
|
|
|
|
FAILED=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
kill $SRV_PID
|
|
|
|
wait $SRV_PID
|
|
|
|
|
|
|
|
scripts/massif_max.pl massif.out.*
|
|
|
|
mv massif.out.* massif-ccm-psk.$$
|
|
|
|
|
|
|
|
# second config
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "config-suite-b:"
|
|
|
|
cp configs/config-suite-b.h $CONFIG_H
|
|
|
|
scripts/config.pl unset POLARSSL_BASE64_C
|
|
|
|
scripts/config.pl unset POLARSSL_PEM_PARSE_C
|
|
|
|
scripts/config.pl unset POLARSSL_CERTS_C
|
|
|
|
|
|
|
|
printf " Executable size... "
|
|
|
|
|
|
|
|
make clean
|
|
|
|
CFLAGS=-fno-asynchronous-unwind-tables make OFLAGS=-Os lib >/dev/null 2>&1
|
|
|
|
cd programs
|
|
|
|
CFLAGS=-fno-asynchronous-unwind-tables make OFLAGS=-Os ssl/$CLIENT >/dev/null
|
|
|
|
strip ssl/$CLIENT
|
|
|
|
stat -c'%s' ssl/$CLIENT
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
printf " Peak ram usage... "
|
|
|
|
|
|
|
|
make clean
|
|
|
|
CFLAGS=-g3 make OFLAGS=-Os lib >/dev/null 2>&1
|
|
|
|
cd programs
|
|
|
|
CFLAGS=-g3 make OFLAGS=-Os ssl/$CLIENT >/dev/null
|
2014-11-25 11:21:48 +00:00
|
|
|
cd ..
|
|
|
|
|
|
|
|
rm -f massif.out.*
|
|
|
|
|
2014-12-01 10:30:56 +00:00
|
|
|
./ssl_server2 >/dev/null &
|
2014-11-25 11:21:48 +00:00
|
|
|
SRV_PID=$!
|
|
|
|
sleep 1;
|
|
|
|
|
2014-12-01 10:30:56 +00:00
|
|
|
if valgrind --tool=massif --stacks=yes programs/ssl/$CLIENT >/dev/null 2>&1
|
2014-11-25 11:21:48 +00:00
|
|
|
then
|
|
|
|
FAILED=0
|
|
|
|
else
|
|
|
|
echo "client failed" >&2
|
|
|
|
FAILED=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
kill $SRV_PID
|
|
|
|
wait $SRV_PID
|
|
|
|
|
|
|
|
scripts/massif_max.pl massif.out.*
|
2014-12-01 10:30:56 +00:00
|
|
|
mv massif.out.* massif-suite-b.$$
|
|
|
|
|
|
|
|
# cleanup
|
2014-11-25 11:21:48 +00:00
|
|
|
|
|
|
|
mv $CONFIG_BAK $CONFIG_H
|
2014-12-01 10:30:56 +00:00
|
|
|
make clean
|
|
|
|
rm ssl_server2
|
2014-11-25 11:21:48 +00:00
|
|
|
|
|
|
|
exit $FAILED
|