ansible: Add lzop to common role
[lttng-ci.git] / scripts / lttng-tools / hang_processes.sh
CommitLineData
0a028cf6
JR
1#!/bin/bash -exu
2#
3# Copyright (C) 2018 - Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18PGREP=pgrep
19pids=""
0a028cf6
JR
20file_list=$(mktemp)
21ret=0
22
6b95a7b4
SM
23# WORKSPACE is normally set by Jenkins. Use the current directory otherwise,
24# like when testing this script manually.
25WORKSPACE=${WORKSPACE:-$PWD}
26
0a028cf6 27lttng_processes="$("$PGREP" -l 'lttng|gen-ust-.+')" || true
d4069651 28if [ -n "$lttng_processes" ]; then
0a028cf6
JR
29
30 pids="$(cut -d ' ' -f 1 <<< "$lttng_processes" | tr '\n' ' ')"
0a028cf6
JR
31 echo "The following LTTng processes were detected running on the system and will be aborted:"
32 echo "$lttng_processes"
33
34 # Stop the processes to make sure everything is frozen
35 kill -SIGSTOP $pids
0a028cf6
JR
36 kill -SIGABRT $pids
37 kill -SIGCONT $pids
38 ret=1
39fi
40
bc571dfb
SM
41# Add the file passed as $1 to the list of files to collect.
42#
43# If that file is a symlink, follow it and collect the target, recursively.
44
45function collect_recursive
46{
47 file_to_collect=$1
48
49 if [ -f "$file_to_collect" ]; then
50 echo "$file_to_collect" >> "$file_list"
51
52 if [ -L "$file_to_collect" ]; then
53 collect_recursive "$(readlink "$file_to_collect")"
54 fi
55 fi
56}
0a028cf6 57
bc571dfb
SM
58# For each core file...
59while read -r core_file; do
60 # Make sure the coredump is finished using fuser.
61 while fuser "$core_file"; do
62 sleep 1
0a028cf6
JR
63 done
64
bc571dfb
SM
65 # Collect everything in the core file that looks like a reference to a
66 # shared lib.
67 strings "$core_file" | grep '^/.*\.so.*' | while read -r str; do
68 collect_recursive "$str"
69 done
70
71 rm -f "$core_file"
0a028cf6 72 ret=1
bc571dfb
SM
73done < <(find "/tmp" -maxdepth 1 -name "core\.[0-9]*" -type f 2>/dev/null)
74
75# If we recorded some files to collect, pack them up.
76if [ -s "$file_list" ]; then
77 mkdir -p "${WORKSPACE}/build"
78 tar cfzh "${WORKSPACE}/build/core.tar.gz" -T <(sort "$file_list" | uniq)
0a028cf6
JR
79fi
80
bc571dfb 81rm -f "$file_list"
0a028cf6 82exit $ret
This page took 0.025564 seconds and 4 git commands to generate.