c0af15e95da10c34c05ed368397ca912d210a326
[lttng-tools.git] / tests / regression / ust / namespaces / test_ns_contexts_change
1 #!/bin/bash
2 #
3 # Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4 #
5 # SPDX-License-Identifier: LGPL-2.1-only
6
7 TEST_DESC="UST - Namespace contexts change"
8
9 CURDIR=$(dirname "$0")/
10 TESTDIR=$CURDIR/../../..
11
12 TESTAPP_PATH="$TESTDIR/utils/testapp"
13 TESTAPP_NAME="gen-ust-events-ns"
14 TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
15 NUM_EVENT=1000
16 EVENT_NAME="tp:tptest"
17
18 TESTS_PER_NS=16
19
20 NUM_TESTS=$((TESTS_PER_NS * 5))
21
22 source "$TESTDIR/utils/utils.sh"
23
24 # MUST set TESTDIR before calling those functions
25
26 function test_ns()
27 {
28 local ns=$1
29
30 local session_name="${ns}_ns"
31 local chan_name="${ns}_ns"
32 local context_name="${ns}_ns"
33
34 local trace_path
35 local ns_inode
36 local file_sync_before_last
37 local file_sync_after_unshare
38
39 # Check if the kernel has support for this ns type
40 if [ ! -f "/proc/$$/ns/$ns" ]; then
41 skip 0 "System has no $ns namespace support" $TESTS_PER_NS
42 return
43 fi
44
45 # Get the current ns inode number
46 ns_inode=$(stat -c '%i' -L "/proc/$$/ns/$ns")
47 ok $? "Get current $ns namespace inode: $ns_inode" || ns_inode="invalid"
48
49 trace_path=$(mktemp --tmpdir -d "tmp.${FUNCNAME[0]}_trace_path.XXXXXX")
50 file_sync_before_last=$(mktemp --tmpdir -u "tmp.${FUNCNAME[0]}_sync_before_last.XXXXXX")
51 file_sync_after_unshare=$(mktemp --tmpdir -u "tmp.${FUNCNAME[0]}_sync_after_unshare.XXXXXX")
52
53 start_lttng_sessiond
54
55 create_lttng_session_ok "$session_name" "$trace_path"
56 enable_ust_lttng_channel_ok "$session_name" "$chan_name"
57 add_context_ust_ok "$session_name" "$chan_name" "$context_name"
58 enable_ust_lttng_event_ok "$session_name" "$EVENT_NAME" "$chan_name"
59 start_lttng_tracing_ok "$session_name"
60
61 $TESTAPP_BIN -n "$ns" -i $NUM_EVENT -a "$file_sync_after_unshare" -b "$file_sync_before_last" &
62 app_pid=$!
63
64 while [ ! -f "$file_sync_after_unshare" ]; do
65 # Break if the app failed / died
66 if ! kill -0 "$app_pid" ; then
67 echo "# App failed"
68 break
69 fi
70 echo "# Waiting for app..."
71 sleep 0.5
72 done
73
74 app_ns_inode=$(stat -c '%i' -L "/proc/$app_pid/ns/$ns")
75 ok $? "Get current $ns namespace inode: $app_ns_inode" || app_ns_inode="invalid"
76
77 test "$ns_inode" != "invalid" && test "$app_ns_inode" != "invalid" && test "$ns_inode" != "$app_ns_inode"
78 ok $? "Reported namespace inode changed after unshare"
79
80 touch "$file_sync_before_last"
81
82 # stop and destroy
83 stop_lttng_tracing_ok "$session_name"
84 destroy_lttng_session_ok "$session_name"
85 stop_lttng_sessiond
86
87 # Check that the events contain the right namespace inode number
88 validate_trace_count "${ns}_ns = $ns_inode" "$trace_path" $NUM_EVENT
89 validate_trace_count "${ns}_ns = $app_ns_inode" "$trace_path" $NUM_EVENT
90
91 rm -rf "$trace_path"
92 rm -f "$file_sync_before_last"
93 rm -f "$file_sync_after_unshare"
94 }
95
96
97 plan_tests $NUM_TESTS
98
99 print_test_banner "$TEST_DESC"
100
101 isroot=0
102 if [ "$(id -u)" == "0" ]; then
103 isroot=1
104 fi
105
106 skip $isroot "Root access is needed. Skipping all tests." "$NUM_TESTS" && exit 0
107
108 system_has_ns=0
109 if [ -d "/proc/$$/ns" ]; then
110 system_has_ns=1
111 fi
112
113 skip $system_has_ns "System has no namespaces support" $NUM_TESTS && exit 0
114
115
116 test_ns cgroup
117 test_ns ipc
118 test_ns mnt
119 test_ns net
120 #test_ns pid # pid_ns is special, can't be changed that way
121 #test_ns time # time_ns is special, can't be changed that way
122 #test_ns user # user_ns can only be change when the app is single threaded, this is always false for an ust instrumented app
123 test_ns uts
This page took 0.031968 seconds and 4 git commands to generate.