annotate test/runtime/jsig/Test8017498.sh @ 11147:732af649bc3a

8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20 Summary: Added (sig < MAXSIGNUM) check in jsig.c Reviewed-by: dholmes, acorn
author ccheung
date Wed, 17 Jul 2013 12:22:57 -0700
parents
children 72727c4b6dec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
1 #!/bin/sh
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
2
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
3 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
4 # Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
6 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
7 # This code is free software; you can redistribute it and/or modify it
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
8 # under the terms of the GNU General Public License version 2 only, as
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
9 # published by the Free Software Foundation.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
10 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
11 # This code is distributed in the hope that it will be useful, but WITHOUT
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
14 # version 2 for more details (a copy is included in the LICENSE file that
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
15 # accompanied this code).
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
16 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
17 # You should have received a copy of the GNU General Public License version
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
18 # 2 along with this work; if not, write to the Free Software Foundation,
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
20 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
22 # or visit www.oracle.com if you need additional information or have any
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
23 # questions.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
24 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
25
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
26 ##
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
27 ## @test Test8017498.sh
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
28 ## @bug 8017498
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
29 ## @summary sigaction(sig) results in process hang/timed-out if sig is much greater than SIGRTMAX
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
30 ## @run shell Test8017498.sh
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
31 ##
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
32
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
33 if [ "${TESTSRC}" = "" ]
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
34 then
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
35 TESTSRC=${PWD}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
36 echo "TESTSRC not set. Using "${TESTSRC}" as default"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
37 fi
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
38 echo "TESTSRC=${TESTSRC}"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
39 ## Adding common setup Variables for running shell tests.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
40 . ${TESTSRC}/../../test_env.sh
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
41
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
42 # set platform-dependent variables
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
43 OS=`uname -s`
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
44 case "$OS" in
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
45 Linux)
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
46 echo "Testing on Linux"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
47 if [ "$VM_BITS" = "64" ]
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
48 then
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
49 LD_PRELOAD=${TESTJAVA}${FS}jre${FS}lib${FS}amd64${FS}libjsig.so
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
50 else
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
51 LD_PRELOAD=${TESTJAVA}${FS}jre${FS}lib${FS}i386${FS}libjsig.so
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
52 fi
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
53 echo LD_PRELOAD = ${LD_PRELOAD}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
54 export LD_PRELOAD=${LD_PRELOAD}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
55 ;;
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
56 *)
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
57 NULL=NUL
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
58 PS=";"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
59 FS="\\"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
60 echo "Test passed; only valid for Linux"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
61 exit 0;
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
62 ;;
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
63 esac
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
64
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
65 THIS_DIR=.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
66
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
67 cp ${TESTSRC}${FS}*.java ${THIS_DIR}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
68 ${TESTJAVA}${FS}bin${FS}javac *.java
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
69
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
70 gcc -fPIC -shared -o ${TESTSRC}${FS}libTestJNI.so -I${TESTJAVA}${FS}include -I${TESTJAVA}${FS}include${FS}linux ${TESTSRC}${FS}TestJNI.c
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
71
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
72 # run the java test in the background
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
73 echo ${TESTJAVA}${FS}bin${FS}java -Djava.library.path=${TESTSRC}${FS} -server TestJNI 100 > test.out 2>&1 &
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
74 ${TESTJAVA}${FS}bin${FS}java -Djava.library.path=${TESTSRC}${FS} -server TestJNI 100 > test.out 2>&1 &
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
75
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
76 # obtain the process id
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
77 C_PID=$!
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
78
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
79 # sleep for 1s
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
80 sleep 1
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
81
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
82 # reset LD_PRELOAD
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
83 unset LD_PRELOAD
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
84
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
85 # check the output file (test.out)
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
86 grep "old handler" test.out > ${NULL}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
87 if [ $? = 0 ]
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
88 then
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
89 echo "Test Passed"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
90 exit 0
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
91 else
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
92 kill -9 ${C_PID}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
93 echo "Test Failed"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
94 exit 1
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
95 fi