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
|
/*
* Copyright (C) 2011 EfficiOS Inc.
*
* SPDX-License-Identifier: GPL-2.0-only
*
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#include <urcu.h>
#include <lttng/lttng.h>
#include <bin/lttng-sessiond/lttng-ust-abi.h>
#include <common/defaults.h>
#include <common/compat/errno.h>
#include <bin/lttng-sessiond/trace-ust.h>
#include <bin/lttng-sessiond/ust-app.h>
#include <bin/lttng-sessiond/notification-thread.h>
#include <lttng/ust-sigbus.h>
#include <tap/tap.h>
/* This path will NEVER be created in this test */
#define PATH1 "/tmp/.test-junk-lttng"
#define RANDOM_STRING_LEN 11
/* Number of TAP tests in this file */
#define NUM_TESTS 16
DEFINE_LTTNG_UST_SIGBUS_STATE();
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(void)
{
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;
}
static void test_create_one_ust_session(void)
{
struct ltt_ust_session *usess =
trace_ust_create_session(42);
ok(usess != NULL, "Create UST session");
if (!usess) {
skip(1, "UST session is null");
return;
}
ok(usess->id == 42 &&
usess->active == 0 &&
usess->domain_global.channels != NULL &&
usess->uid == 0 &&
usess->gid == 0,
"Validate UST session");
trace_ust_destroy_session(usess);
trace_ust_free_session(usess);
}
static void test_create_ust_channel(void)
{
struct ltt_ust_channel *uchan;
struct lttng_channel attr;
struct lttng_channel_extended extended;
memset(&attr, 0, sizeof(attr));
memset(&extended, 0, sizeof(extended));
attr.attr.extended.ptr = &extended;
ok(lttng_strncpy(attr.name, "channel0", sizeof(attr.name)) == 0,
"Validate channel name length");
uchan = trace_ust_create_channel(&attr, LTTNG_DOMAIN_UST);
ok(uchan != NULL, "Create UST channel");
if (!uchan) {
skip(1, "UST channel is null");
return;
}
ok(uchan->enabled == 0 &&
strncmp(uchan->name, "channel0", 8) == 0 &&
uchan->name[LTTNG_UST_ABI_SYM_NAME_LEN - 1] == '\0' &&
uchan->ctx != NULL &&
uchan->events != NULL &&
uchan->attr.overwrite == attr.attr.overwrite,
"Validate UST channel");
trace_ust_destroy_channel(uchan);
}
static void test_create_ust_event(void)
{
struct ltt_ust_event *event;
struct lttng_event ev;
enum lttng_error_code ret;
memset(&ev, 0, sizeof(ev));
ok(lttng_strncpy(ev.name, get_random_string(),
LTTNG_SYMBOL_NAME_LEN) == 0,
"Validate string length");
ev.type = LTTNG_EVENT_TRACEPOINT;
ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
ret = trace_ust_create_event(&ev, NULL, NULL, NULL, false, &event);
ok(ret == LTTNG_OK, "Create UST event");
if (!event) {
skip(1, "UST event is null");
return;
}
ok(event->enabled == 0 &&
event->attr.instrumentation == LTTNG_UST_ABI_TRACEPOINT &&
strcmp(event->attr.name, ev.name) == 0 &&
event->attr.name[LTTNG_UST_ABI_SYM_NAME_LEN - 1] == '\0',
"Validate UST event");
trace_ust_destroy_event(event);
}
static void test_create_ust_event_exclusion(void)
{
enum lttng_error_code ret;
struct ltt_ust_event *event;
struct lttng_event ev;
char *name;
char *random_name;
struct lttng_event_exclusion *exclusion = NULL;
struct lttng_event_exclusion *exclusion_copy = NULL;
const int exclusion_count = 2;
memset(&ev, 0, sizeof(ev));
/* make a wildcarded event name */
name = get_random_string();
name[strlen(name) - 1] = '*';
ok(lttng_strncpy(ev.name, name, LTTNG_SYMBOL_NAME_LEN) == 0,
"Validate string length");
ev.type = LTTNG_EVENT_TRACEPOINT;
ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
/* set up an exclusion set */
exclusion = zmalloc(sizeof(*exclusion) +
LTTNG_SYMBOL_NAME_LEN * exclusion_count);
ok(exclusion != NULL, "Create UST exclusion");
if (!exclusion) {
skip(4, "zmalloc failed");
goto end;
}
exclusion->count = exclusion_count;
random_name = get_random_string();
strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 0), random_name,
LTTNG_SYMBOL_NAME_LEN - 1);
strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 1), random_name,
LTTNG_SYMBOL_NAME_LEN - 1);
ret = trace_ust_create_event(&ev, NULL, NULL, exclusion, false, &event);
exclusion = NULL;
ok(ret != LTTNG_OK, "Create UST event with identical exclusion names fails");
exclusion = zmalloc(sizeof(*exclusion) +
LTTNG_SYMBOL_NAME_LEN * exclusion_count);
ok(exclusion != NULL, "Create UST exclusion");
if (!exclusion) {
skip(2, "zmalloc failed");
goto end;
}
exclusion_copy = zmalloc(sizeof(*exclusion) +
LTTNG_SYMBOL_NAME_LEN * exclusion_count);
if (!exclusion_copy) {
skip(2, "zmalloc failed");
goto end;
}
/*
* We are giving ownership of the exclusion struct to the
* trace_ust_create_event() function. Make a copy of the exclusion struct
* so we can compare it later.
*/
exclusion->count = exclusion_count;
strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 0),
get_random_string(), LTTNG_SYMBOL_NAME_LEN - 1);
strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 1),
get_random_string(), LTTNG_SYMBOL_NAME_LEN - 1);
exclusion_copy->count = exclusion_count;
strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion_copy, 0),
LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 0), LTTNG_SYMBOL_NAME_LEN);
strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion_copy, 1),
LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 1), LTTNG_SYMBOL_NAME_LEN);
ret = trace_ust_create_event(&ev, NULL, NULL, exclusion, false, &event);
exclusion = NULL;
ok(ret == LTTNG_OK, "Create UST event with different exclusion names");
if (!event) {
skip(1, "UST event with exclusion is null");
goto end;
}
ok(event->enabled == 0 &&
event->attr.instrumentation == LTTNG_UST_ABI_TRACEPOINT &&
strcmp(event->attr.name, ev.name) == 0 &&
event->exclusion != NULL &&
event->exclusion->count == exclusion_count &&
!memcmp(event->exclusion->names, exclusion_copy->names,
LTTNG_SYMBOL_NAME_LEN * exclusion_count) &&
event->attr.name[LTTNG_UST_ABI_SYM_NAME_LEN - 1] == '\0',
"Validate UST event and exclusion");
trace_ust_destroy_event(event);
end:
free(exclusion);
free(exclusion_copy);
return;
}
static void test_create_ust_context(void)
{
struct lttng_event_context ectx;
struct ltt_ust_context *uctx;
ectx.ctx = LTTNG_EVENT_CONTEXT_VTID;
uctx = trace_ust_create_context(&ectx);
ok(uctx != NULL, "Create UST context");
if (uctx) {
ok((int) uctx->ctx.ctx == LTTNG_UST_ABI_CONTEXT_VTID,
"Validate UST context");
} else {
skip(1, "Skipping UST context validation as creation failed");
}
free(uctx);
}
int main(int argc, char **argv)
{
plan_tests(NUM_TESTS);
diag("UST data structures unit test");
rcu_register_thread();
test_create_one_ust_session();
test_create_ust_channel();
test_create_ust_event();
test_create_ust_context();
test_create_ust_event_exclusion();
rcu_unregister_thread();
return exit_status();
}
|