1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/*
* SPDX-FileCopyrightText: 2011 EfficiOS Inc.
*
* SPDX-License-Identifier: GPL-2.0-only
*
*/
#include <common/common.hpp>
#include <common/compat/errno.hpp>
#include <common/sessiond-comm/sessiond-comm.hpp>
#include <common/urcu.hpp>
#include <bin/lttng-sessiond/health-sessiond.hpp>
#include <bin/lttng-sessiond/session.hpp>
#include <bin/lttng-sessiond/thread.hpp>
#include <bin/lttng-sessiond/ust-app.hpp>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <tap/tap.h>
#include <time.h>
#include <unistd.h>
#include <urcu.h>
#define SESSION1 "test1"
#define MAX_SESSIONS 1000
#define RANDOM_STRING_LEN 11
/* Number of TAP tests in this file */
#define NUM_TESTS 11
static struct ltt_session_list *session_list;
static const char alphanum[] = "0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
static char random_string[RANDOM_STRING_LEN];
/*
* Return random string of 10 characters.
* Not thread-safe.
*/
static char *get_random_string()
{
int i;
for (i = 0; i < RANDOM_STRING_LEN - 1; i++) {
random_string[i] = alphanum[rand() % (sizeof(alphanum) - 1)];
}
random_string[RANDOM_STRING_LEN - 1] = '\0';
return random_string;
}
/*
* Return 0 if session name is found, else -1
*/
static int find_session_name(const char *name)
{
for (auto *session : lttng::urcu::list_iteration_adapter<ltt_session, <t_session::list>(
session_list->head)) {
if (strcmp(session->name, name) == 0) {
return 0;
}
}
return -1;
}
static int session_list_count()
{
int count = 0;
for (auto *session [[maybe_unused]] :
lttng::urcu::list_iteration_adapter<ltt_session, <t_session::list>(
session_list->head)) {
count++;
}
return count;
}
/*
* Empty session list manually.
*/
static void empty_session_list()
{
const auto list_lock = lttng::sessiond::lock_session_list();
for (auto *session : lttng::urcu::list_iteration_adapter<ltt_session, <t_session::list>(
session_list->head)) {
session_destroy(session);
}
/* Session list must be 0 */
LTTNG_ASSERT(!session_list_count());
}
/*
* Test creation of 1 session
*/
static int create_one_session(const char *name)
{
int ret;
enum lttng_error_code ret_code;
struct ltt_session *session = nullptr;
const auto list_lock = lttng::sessiond::lock_session_list();
ret_code = session_create(name, geteuid(), getegid(), &session);
session_put(session);
if (ret_code == LTTNG_OK) {
/* Validate */
ret = find_session_name(name);
if (ret < 0) {
/* Session not found by name */
printf("session not found after creation\n");
ret = -1;
} else {
/* Success */
ret = 0;
}
} else {
if (ret_code == LTTNG_ERR_EXIST_SESS) {
printf("(session already exists) ");
}
ret = -1;
}
return ret;
}
/*
* Test deletion of 1 session
*/
static int destroy_one_session(ltt_session::ref session)
{
int ret;
char session_name[NAME_MAX];
strncpy(session_name, session->name, sizeof(session_name));
session_name[sizeof(session_name) - 1] = '\0';
/* Reference of the session list. */
ltt_session *weak_session_ptr = &session.get();
{
/* Drop the reference that stems from the look-up. */
const ltt_session::ref reference_to_drop = std::move(session);
}
session_destroy(weak_session_ptr);
ret = find_session_name(session_name);
if (ret < 0) {
/* Success, -1 means that the sesion is NOT found */
ret = 0;
} else {
/* Fail */
ret = -1;
}
return ret;
}
/*
* This test is supposed to fail at the second create call. If so, return 0 for
* test success, else -1.
*/
static int two_session_same_name()
{
const auto ret = create_one_session(SESSION1);
if (ret < 0) {
/* Fail */
return -1;
}
/*
* Mind the order of the declaration of list_lock vs session:
* the session list lock must always be released _after_ the release of
* a session's reference (the destruction of a ref/locked_ref) to ensure
* since the reference's release may unpublish the session from the list of
* sessions.
*/
const auto list_lock = lttng::sessiond::lock_session_list();
try {
const auto session = ltt_session::find_session(SESSION1);
/* Success */
return 0;
} catch (const lttng::sessiond::exceptions::session_not_found_error& ex) {
/* Fail */
return -1;
}
}
static void test_session_list()
{
session_list = session_get_list();
ok(session_list != nullptr, "Session list: not NULL");
}
static void test_create_one_session()
{
ok(create_one_session(SESSION1) == 0, "Create session: %s", SESSION1);
}
static void test_validate_session()
{
/*
* Mind the order of the declaration of list_lock vs session:
* the session list lock must always be released _after_ the release of
* a session's reference (the destruction of a ref/locked_ref) to ensure
* since the reference's release may unpublish the session from the list of
* sessions.
*/
const auto list_lock = lttng::sessiond::lock_session_list();
try {
const auto session = ltt_session::find_session(SESSION1);
pass("Validating session: session found");
ok(session->kernel_session == nullptr && strlen(session->name),
"Validating session: basic sanity check");
session->lock();
session->unlock();
} catch (const lttng::sessiond::exceptions::session_not_found_error& ex) {
fail("Validating session: session found");
skip(1, "Skipping session validation check as session was not found");
}
}
static void test_destroy_session()
{
/*
* Mind the order of the declaration of list_lock vs session:
* the session list lock must always be released _after_ the release of
* a session's reference (the destruction of a ref/locked_ref) to ensure
* since the reference's release may unpublish the session from the list of
* sessions.
*/
const auto list_lock = lttng::sessiond::lock_session_list();
try {
auto session = ltt_session::find_session(SESSION1);
pass("Destroying session: session found");
ok(destroy_one_session(std::move(session)) == 0,
"Destroying session: %s destroyed",
SESSION1);
} catch (const lttng::sessiond::exceptions::session_not_found_error& ex) {
fail("Destroying session: session found");
skip(1, "Skipping session destruction as it was not found");
}
}
static void test_duplicate_session()
{
ok(two_session_same_name() == 0, "Duplicate session creation");
}
static void test_session_name_generation()
{
struct ltt_session *session = nullptr;
enum lttng_error_code ret_code;
const char *expected_session_name_prefix = DEFAULT_SESSION_NAME;
const auto list_lock = lttng::sessiond::lock_session_list();
ret_code = session_create(nullptr, geteuid(), getegid(), &session);
ok(ret_code == LTTNG_OK, "Create session with a NULL name (auto-generate a name)");
if (!session) {
skip(1, "Skipping session name generation tests as session_create() failed.");
goto end;
}
diag("Automatically-generated session name: %s", *session->name ? session->name : "ERROR");
ok(*session->name &&
!strncmp(expected_session_name_prefix,
session->name,
sizeof(DEFAULT_SESSION_NAME) - 1),
"Auto-generated session name starts with %s",
DEFAULT_SESSION_NAME);
end:
session_put(session);
}
static void test_large_session_number()
{
int ret, i, failed = 0;
for (i = 0; i < MAX_SESSIONS; i++) {
char *tmp_name = get_random_string();
ret = create_one_session(tmp_name);
if (ret < 0) {
diag("session %d (name: %s) creation failed", i, tmp_name);
++failed;
}
}
ok(failed == 0, "Large sessions number: created %u sessions", MAX_SESSIONS);
failed = 0;
const auto list_lock = lttng::sessiond::lock_session_list();
for (i = 0; i < MAX_SESSIONS; i++) {
for (auto *session :
lttng::urcu::list_iteration_adapter<ltt_session, <t_session::list>(
session_list->head)) {
ret = destroy_one_session([session]() {
session_get(session);
return ltt_session::make_ref(*session);
}());
if (ret < 0) {
diag("session %d destroy failed", i);
++failed;
}
}
}
ok(failed == 0 && session_list_count() == 0,
"Large sessions number: destroyed %u sessions",
MAX_SESSIONS);
}
int main()
{
plan_tests(NUM_TESTS);
the_health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES);
diag("Sessions unit tests");
rcu_register_thread();
test_session_list();
test_create_one_session();
test_validate_session();
test_destroy_session();
test_duplicate_session();
empty_session_list();
test_session_name_generation();
test_large_session_number();
rcu_unregister_thread();
lttng_thread_list_shutdown_orphans();
return exit_status();
}
|