tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / namespaces / test_ns_contexts_change
CommitLineData
8a558304
MJ
1#!/bin/bash
2#
3# Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4#
9d16b343 5# SPDX-License-Identifier: LGPL-2.1-only
8a558304
MJ
6
7TEST_DESC="UST - Namespace contexts change"
8
9CURDIR=$(dirname "$0")/
10TESTDIR=$CURDIR/../../..
11
12TESTAPP_PATH="$TESTDIR/utils/testapp"
13TESTAPP_NAME="gen-ust-events-ns"
14TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
15NUM_EVENT=1000
16EVENT_NAME="tp:tptest"
17
18TESTS_PER_NS=16
19
20NUM_TESTS=$((TESTS_PER_NS * 5))
21
22source "$TESTDIR/utils/utils.sh"
23
24# MUST set TESTDIR before calling those functions
25
26function 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 -d)
50 file_sync_before_last=$(mktemp -u)
51 file_sync_after_unshare=$(mktemp -u)
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
8a558304
MJ
64 while [ ! -f "$file_sync_after_unshare" ]; do
65 # Break if the app failed / died
70a7f9f7
JR
66 if ! kill -0 "$app_pid" ; then
67 echo "# App failed"
8a558304
MJ
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
97plan_tests $NUM_TESTS
98
99print_test_banner "$TEST_DESC"
100
101isroot=0
102if [ "$(id -u)" == "0" ]; then
103 isroot=1
104fi
105
106skip $isroot "Root access is needed. Skipping all tests." "$NUM_TESTS" && exit 0
107
108system_has_ns=0
109if [ -d "/proc/$$/ns" ]; then
110 system_has_ns=1
111fi
112
113skip $system_has_ns "System has no namespaces support" $NUM_TESTS && exit 0
114
115
116test_ns cgroup
117test_ns ipc
118test_ns mnt
119test_ns net
120#test_ns pid # pid_ns is special, can't be changed that way
121#test_ns user # user_ns can only be change when the app is single threaded, this is always false for an ust instrumented app
122test_ns uts
This page took 0.027419 seconds and 4 git commands to generate.