source: trunk/test/testext.sh@ 163

Last change on this file since 163 was 51, checked in by rainer, 18 years ago

Fix problems with linux kernel 2.6.17

File size: 3.5 KB
Line 
1#! /bin/sh
2
3#
4# Copyright Rainer Wichmann (2006)
5#
6# License Information:
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20#
21
22MAXTEST=1; export MAXTEST
23
24testext0 ()
25{
26 COMP=`which gcc`
27 if test "x$?" = x1 ; then
28 COMP="cc"
29 else
30 COMP=`which gcc | sed -e "s%\([a-z:]\) .*%\1%g"`
31 if test "x$COMP" = x; then
32 COMP="cc"
33 elif test "x$COMP" = xno; then
34 COMP="cc"
35 else
36 if test "x$COMP" = "xwhich:"; then
37 COMP="cc"
38 else
39 COMP="gcc"
40 gcc -v >/dev/null 2>&1 || COMP="gcc"
41 fi
42 fi
43 fi
44 log_start "EXTERNAL PROGRAM"
45 [ -z "$verbose" ] || echo MAKE is $MAKE
46 [ -z "$verbose" ] || { echo COMP is $COMP; echo; }
47 #
48 # standalone compilation
49 #
50 [ -z "$verbose" ] || { echo; echo "${S}Building standalone agent${E}"; echo; }
51 #
52 if test -r "Makefile"; then
53 ${MAKE} distclean >/dev/null
54 fi
55 #
56 ${TOP_SRCDIR}/configure --quiet --enable-debug --prefix=$PW_DIR --localstatedir=$PW_DIR --with-config-file=$PW_DIR/testrc_1ext --with-log-file=$LOGFILE --with-pid-file=$PW_DIR/.samhain_lock --with-data-file=$PW_DIR/.samhain_file
57 #
58 if test x$? = x0; then
59 [ -z "$verbose" ] || log_msg_ok "configure...";
60 $MAKE >/dev/null 2>>test_log
61 if test x$? = x0; then
62 [ -z "$verbose" ] || log_msg_ok "make...";
63 else
64 [ -z "$quiet" ] && log_msg_fail "make...";
65 return 1
66 fi
67
68 else
69 [ -z "$quiet" ] && log_msg_fail "configure...";
70 return 1
71 fi
72 #
73 # prepare the program
74 #
75 cat test/test_ext.c.in | sed -e "s%MYPWDIR%$PW_DIR/test_ext.res%g" > test_ext.c
76
77 ${COMP} -o test_ext test_ext.c
78 if test "x$?" != x0; then
79 log_msg_fail "${COMP} -o test_ext test_ext.c"
80 return 1
81 fi
82 chmod +rx test_ext
83 if test "x$?" != x0; then
84 log_msg_fail "chmod +rx test_ext"
85 return 1
86 fi
87
88 # compute checksum and fix config file
89 #
90 cp test/testrc_1ext.in testrc_1ext
91 CHKSUM=`./samhain -H $PW_DIR/test_ext | awk '{ print $2$3$4$5$6$7}'`
92 echo "OpenCommand=$PW_DIR/test_ext" >> testrc_1ext
93 echo "SetType=log" >> testrc_1ext
94 echo "SetChecksum=$CHKSUM" >> testrc_1ext
95 echo "SetFilterOr=ALERT" >> testrc_1ext
96
97 rm -f $PW_DIR/test_ext.res
98 rm -f $PW_DIR/pdbg.child
99 rm -f $PW_DIR/pdbg.main
100 ./samhain -p none
101
102 # The shell is too fast ...
103 one_sec_sleep
104 [ -z "$verbose" ] || {
105 echo;
106 echo "${S}Logged by external C program test_ext (filtered: ALERT only):${E}";
107 echo;
108 cat $PW_DIR/test_ext.res
109 echo
110 }
111
112 tmp=`cat $PW_DIR/test_ext.res | wc -l`
113 if [ $tmp -eq 4 ]; then
114 tmp=`egrep 'RECV: \[EOF\]' $PW_DIR/test_ext.res | wc -l`
115 if [ $tmp -eq 2 ]; then
116 tmp=`egrep 'RECV: ALERT' $PW_DIR/test_ext.res | wc -l`
117 if [ $tmp -eq 2 ]; then
118 log_ok 1 ${MAXTEST};
119 else
120 log_fail 1 ${MAXTEST};
121 fi
122 else
123 log_fail 1 ${MAXTEST};
124 fi
125 else
126 log_fail 1 ${MAXTEST};
127 fi
128
129 rm -f $PW_DIR/.samhain_file
130 rm -f $LOGFILE
131 rm -f $PW_DIR/.samhain_lock
132
133 log_end "EXTERNAL PROGRAM"
134}
135
Note: See TracBrowser for help on using the repository browser.