| 1 | /* |
| 2 | * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com> |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License, version 2 only, as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License along with |
| 14 | * this program; if not, write to the Free Software Foundation, Inc., 51 |
| 15 | * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 16 | */ |
| 17 | |
| 18 | #define _GNU_SOURCE |
| 19 | #include <assert.h> |
| 20 | #include <urcu/list.h> |
| 21 | #include <urcu/uatomic.h> |
| 22 | |
| 23 | #include <common/defaults.h> |
| 24 | #include <common/common.h> |
| 25 | #include <common/sessiond-comm/sessiond-comm.h> |
| 26 | #include <common/relayd/relayd.h> |
| 27 | |
| 28 | #include "channel.h" |
| 29 | #include "consumer.h" |
| 30 | #include "event.h" |
| 31 | #include "kernel.h" |
| 32 | #include "kernel-consumer.h" |
| 33 | #include "lttng-sessiond.h" |
| 34 | #include "utils.h" |
| 35 | |
| 36 | #include "cmd.h" |
| 37 | |
| 38 | /* |
| 39 | * Used to keep a unique index for each relayd socket created where this value |
| 40 | * is associated with streams on the consumer so it can match the right relayd |
| 41 | * to send to. |
| 42 | * |
| 43 | * This value should be incremented atomically for safety purposes and future |
| 44 | * possible concurrent access. |
| 45 | */ |
| 46 | static unsigned int relayd_net_seq_idx; |
| 47 | |
| 48 | /* |
| 49 | * Create a session path used by list_lttng_sessions for the case that the |
| 50 | * session consumer is on the network. |
| 51 | */ |
| 52 | static int build_network_session_path(char *dst, size_t size, |
| 53 | struct ltt_session *session) |
| 54 | { |
| 55 | int ret, kdata_port, udata_port; |
| 56 | struct lttng_uri *kuri = NULL, *uuri = NULL, *uri = NULL; |
| 57 | char tmp_uurl[PATH_MAX], tmp_urls[PATH_MAX]; |
| 58 | |
| 59 | assert(session); |
| 60 | assert(dst); |
| 61 | |
| 62 | memset(tmp_urls, 0, sizeof(tmp_urls)); |
| 63 | memset(tmp_uurl, 0, sizeof(tmp_uurl)); |
| 64 | |
| 65 | kdata_port = udata_port = DEFAULT_NETWORK_DATA_PORT; |
| 66 | |
| 67 | if (session->kernel_session && session->kernel_session->consumer) { |
| 68 | kuri = &session->kernel_session->consumer->dst.net.control; |
| 69 | kdata_port = session->kernel_session->consumer->dst.net.data.port; |
| 70 | } |
| 71 | |
| 72 | if (session->ust_session && session->ust_session->consumer) { |
| 73 | uuri = &session->ust_session->consumer->dst.net.control; |
| 74 | udata_port = session->ust_session->consumer->dst.net.data.port; |
| 75 | } |
| 76 | |
| 77 | if (uuri == NULL && kuri == NULL) { |
| 78 | uri = &session->consumer->dst.net.control; |
| 79 | kdata_port = session->consumer->dst.net.data.port; |
| 80 | } else if (kuri && uuri) { |
| 81 | ret = uri_compare(kuri, uuri); |
| 82 | if (ret) { |
| 83 | /* Not Equal */ |
| 84 | uri = kuri; |
| 85 | /* Build uuri URL string */ |
| 86 | ret = uri_to_str_url(uuri, tmp_uurl, sizeof(tmp_uurl)); |
| 87 | if (ret < 0) { |
| 88 | goto error; |
| 89 | } |
| 90 | } else { |
| 91 | uri = kuri; |
| 92 | } |
| 93 | } else if (kuri && uuri == NULL) { |
| 94 | uri = kuri; |
| 95 | } else if (uuri && kuri == NULL) { |
| 96 | uri = uuri; |
| 97 | } |
| 98 | |
| 99 | ret = uri_to_str_url(uri, tmp_urls, sizeof(tmp_urls)); |
| 100 | if (ret < 0) { |
| 101 | goto error; |
| 102 | } |
| 103 | |
| 104 | /* |
| 105 | * Do we have a UST url set. If yes, this means we have both kernel and UST |
| 106 | * to print. |
| 107 | */ |
| 108 | if (strlen(tmp_uurl) > 0) { |
| 109 | ret = snprintf(dst, size, "[K]: %s [data: %d] -- [U]: %s [data: %d]", |
| 110 | tmp_urls, kdata_port, tmp_uurl, udata_port); |
| 111 | } else { |
| 112 | int dport; |
| 113 | if (kuri) { |
| 114 | dport = kdata_port; |
| 115 | } else { |
| 116 | /* No kernel URI, use the UST port. */ |
| 117 | dport = udata_port; |
| 118 | } |
| 119 | ret = snprintf(dst, size, "%s [data: %d]", tmp_urls, dport); |
| 120 | } |
| 121 | |
| 122 | error: |
| 123 | return ret; |
| 124 | } |
| 125 | |
| 126 | /* |
| 127 | * Fill lttng_channel array of all channels. |
| 128 | */ |
| 129 | static void list_lttng_channels(int domain, struct ltt_session *session, |
| 130 | struct lttng_channel *channels) |
| 131 | { |
| 132 | int i = 0; |
| 133 | struct ltt_kernel_channel *kchan; |
| 134 | |
| 135 | DBG("Listing channels for session %s", session->name); |
| 136 | |
| 137 | switch (domain) { |
| 138 | case LTTNG_DOMAIN_KERNEL: |
| 139 | /* Kernel channels */ |
| 140 | if (session->kernel_session != NULL) { |
| 141 | cds_list_for_each_entry(kchan, |
| 142 | &session->kernel_session->channel_list.head, list) { |
| 143 | /* Copy lttng_channel struct to array */ |
| 144 | memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel)); |
| 145 | channels[i].enabled = kchan->enabled; |
| 146 | i++; |
| 147 | } |
| 148 | } |
| 149 | break; |
| 150 | case LTTNG_DOMAIN_UST: |
| 151 | { |
| 152 | struct lttng_ht_iter iter; |
| 153 | struct ltt_ust_channel *uchan; |
| 154 | |
| 155 | cds_lfht_for_each_entry(session->ust_session->domain_global.channels->ht, |
| 156 | &iter.iter, uchan, node.node) { |
| 157 | strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN); |
| 158 | channels[i].attr.overwrite = uchan->attr.overwrite; |
| 159 | channels[i].attr.subbuf_size = uchan->attr.subbuf_size; |
| 160 | channels[i].attr.num_subbuf = uchan->attr.num_subbuf; |
| 161 | channels[i].attr.switch_timer_interval = |
| 162 | uchan->attr.switch_timer_interval; |
| 163 | channels[i].attr.read_timer_interval = |
| 164 | uchan->attr.read_timer_interval; |
| 165 | channels[i].enabled = uchan->enabled; |
| 166 | switch (uchan->attr.output) { |
| 167 | case LTTNG_UST_MMAP: |
| 168 | default: |
| 169 | channels[i].attr.output = LTTNG_EVENT_MMAP; |
| 170 | break; |
| 171 | } |
| 172 | i++; |
| 173 | } |
| 174 | break; |
| 175 | } |
| 176 | default: |
| 177 | break; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | /* |
| 182 | * Create a list of ust global domain events. |
| 183 | */ |
| 184 | static int list_lttng_ust_global_events(char *channel_name, |
| 185 | struct ltt_ust_domain_global *ust_global, struct lttng_event **events) |
| 186 | { |
| 187 | int i = 0, ret = 0; |
| 188 | unsigned int nb_event = 0; |
| 189 | struct lttng_ht_iter iter; |
| 190 | struct lttng_ht_node_str *node; |
| 191 | struct ltt_ust_channel *uchan; |
| 192 | struct ltt_ust_event *uevent; |
| 193 | struct lttng_event *tmp; |
| 194 | |
| 195 | DBG("Listing UST global events for channel %s", channel_name); |
| 196 | |
| 197 | rcu_read_lock(); |
| 198 | |
| 199 | lttng_ht_lookup(ust_global->channels, (void *)channel_name, &iter); |
| 200 | node = lttng_ht_iter_get_node_str(&iter); |
| 201 | if (node == NULL) { |
| 202 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
| 203 | goto error; |
| 204 | } |
| 205 | |
| 206 | uchan = caa_container_of(&node->node, struct ltt_ust_channel, node.node); |
| 207 | |
| 208 | nb_event += lttng_ht_get_count(uchan->events); |
| 209 | |
| 210 | if (nb_event == 0) { |
| 211 | ret = nb_event; |
| 212 | goto error; |
| 213 | } |
| 214 | |
| 215 | DBG3("Listing UST global %d events", nb_event); |
| 216 | |
| 217 | tmp = zmalloc(nb_event * sizeof(struct lttng_event)); |
| 218 | if (tmp == NULL) { |
| 219 | ret = LTTNG_ERR_FATAL; |
| 220 | goto error; |
| 221 | } |
| 222 | |
| 223 | cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) { |
| 224 | strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN); |
| 225 | tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; |
| 226 | tmp[i].enabled = uevent->enabled; |
| 227 | |
| 228 | switch (uevent->attr.instrumentation) { |
| 229 | case LTTNG_UST_TRACEPOINT: |
| 230 | tmp[i].type = LTTNG_EVENT_TRACEPOINT; |
| 231 | break; |
| 232 | case LTTNG_UST_PROBE: |
| 233 | tmp[i].type = LTTNG_EVENT_PROBE; |
| 234 | break; |
| 235 | case LTTNG_UST_FUNCTION: |
| 236 | tmp[i].type = LTTNG_EVENT_FUNCTION; |
| 237 | break; |
| 238 | } |
| 239 | |
| 240 | tmp[i].loglevel = uevent->attr.loglevel; |
| 241 | switch (uevent->attr.loglevel_type) { |
| 242 | case LTTNG_UST_LOGLEVEL_ALL: |
| 243 | tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL; |
| 244 | break; |
| 245 | case LTTNG_UST_LOGLEVEL_RANGE: |
| 246 | tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE; |
| 247 | break; |
| 248 | case LTTNG_UST_LOGLEVEL_SINGLE: |
| 249 | tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE; |
| 250 | break; |
| 251 | } |
| 252 | if (uevent->filter) { |
| 253 | tmp[i].filter = 1; |
| 254 | } |
| 255 | i++; |
| 256 | } |
| 257 | |
| 258 | ret = nb_event; |
| 259 | *events = tmp; |
| 260 | |
| 261 | error: |
| 262 | rcu_read_unlock(); |
| 263 | return ret; |
| 264 | } |
| 265 | |
| 266 | /* |
| 267 | * Fill lttng_event array of all kernel events in the channel. |
| 268 | */ |
| 269 | static int list_lttng_kernel_events(char *channel_name, |
| 270 | struct ltt_kernel_session *kernel_session, struct lttng_event **events) |
| 271 | { |
| 272 | int i = 0, ret; |
| 273 | unsigned int nb_event; |
| 274 | struct ltt_kernel_event *event; |
| 275 | struct ltt_kernel_channel *kchan; |
| 276 | |
| 277 | kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session); |
| 278 | if (kchan == NULL) { |
| 279 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
| 280 | goto error; |
| 281 | } |
| 282 | |
| 283 | nb_event = kchan->event_count; |
| 284 | |
| 285 | DBG("Listing events for channel %s", kchan->channel->name); |
| 286 | |
| 287 | if (nb_event == 0) { |
| 288 | goto end; |
| 289 | } |
| 290 | |
| 291 | *events = zmalloc(nb_event * sizeof(struct lttng_event)); |
| 292 | if (*events == NULL) { |
| 293 | ret = LTTNG_ERR_FATAL; |
| 294 | goto error; |
| 295 | } |
| 296 | |
| 297 | /* Kernel channels */ |
| 298 | cds_list_for_each_entry(event, &kchan->events_list.head , list) { |
| 299 | strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN); |
| 300 | (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; |
| 301 | (*events)[i].enabled = event->enabled; |
| 302 | |
| 303 | switch (event->event->instrumentation) { |
| 304 | case LTTNG_KERNEL_TRACEPOINT: |
| 305 | (*events)[i].type = LTTNG_EVENT_TRACEPOINT; |
| 306 | break; |
| 307 | case LTTNG_KERNEL_KPROBE: |
| 308 | case LTTNG_KERNEL_KRETPROBE: |
| 309 | (*events)[i].type = LTTNG_EVENT_PROBE; |
| 310 | memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe, |
| 311 | sizeof(struct lttng_kernel_kprobe)); |
| 312 | break; |
| 313 | case LTTNG_KERNEL_FUNCTION: |
| 314 | (*events)[i].type = LTTNG_EVENT_FUNCTION; |
| 315 | memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace, |
| 316 | sizeof(struct lttng_kernel_function)); |
| 317 | break; |
| 318 | case LTTNG_KERNEL_NOOP: |
| 319 | (*events)[i].type = LTTNG_EVENT_NOOP; |
| 320 | break; |
| 321 | case LTTNG_KERNEL_SYSCALL: |
| 322 | (*events)[i].type = LTTNG_EVENT_SYSCALL; |
| 323 | break; |
| 324 | case LTTNG_KERNEL_ALL: |
| 325 | assert(0); |
| 326 | break; |
| 327 | } |
| 328 | i++; |
| 329 | } |
| 330 | |
| 331 | end: |
| 332 | return nb_event; |
| 333 | |
| 334 | error: |
| 335 | /* Negate the error code to differentiate the size from an error */ |
| 336 | return -ret; |
| 337 | } |
| 338 | |
| 339 | /* |
| 340 | * Add URI so the consumer output object. Set the correct path depending on the |
| 341 | * domain adding the default trace directory. |
| 342 | */ |
| 343 | static int add_uri_to_consumer(struct consumer_output *consumer, |
| 344 | struct lttng_uri *uri, int domain, const char *session_name) |
| 345 | { |
| 346 | int ret = LTTNG_OK; |
| 347 | const char *default_trace_dir; |
| 348 | |
| 349 | assert(uri); |
| 350 | |
| 351 | if (consumer == NULL) { |
| 352 | DBG("No consumer detected. Don't add URI. Stopping."); |
| 353 | ret = LTTNG_ERR_NO_CONSUMER; |
| 354 | goto error; |
| 355 | } |
| 356 | |
| 357 | switch (domain) { |
| 358 | case LTTNG_DOMAIN_KERNEL: |
| 359 | default_trace_dir = DEFAULT_KERNEL_TRACE_DIR; |
| 360 | break; |
| 361 | case LTTNG_DOMAIN_UST: |
| 362 | default_trace_dir = DEFAULT_UST_TRACE_DIR; |
| 363 | break; |
| 364 | default: |
| 365 | /* |
| 366 | * This case is possible is we try to add the URI to the global tracing |
| 367 | * session consumer object which in this case there is no subdir. |
| 368 | */ |
| 369 | default_trace_dir = ""; |
| 370 | } |
| 371 | |
| 372 | switch (uri->dtype) { |
| 373 | case LTTNG_DST_IPV4: |
| 374 | case LTTNG_DST_IPV6: |
| 375 | DBG2("Setting network URI to consumer"); |
| 376 | |
| 377 | /* Set URI into consumer output object */ |
| 378 | ret = consumer_set_network_uri(consumer, uri); |
| 379 | if (ret < 0) { |
| 380 | ret = LTTNG_ERR_FATAL; |
| 381 | goto error; |
| 382 | } else if (ret == 1) { |
| 383 | /* |
| 384 | * URI was the same in the consumer so we do not append the subdir |
| 385 | * again so to not duplicate output dir. |
| 386 | */ |
| 387 | goto error; |
| 388 | } |
| 389 | |
| 390 | if (uri->stype == LTTNG_STREAM_CONTROL && strlen(uri->subdir) == 0) { |
| 391 | ret = consumer_set_subdir(consumer, session_name); |
| 392 | if (ret < 0) { |
| 393 | ret = LTTNG_ERR_FATAL; |
| 394 | goto error; |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | if (uri->stype == LTTNG_STREAM_CONTROL) { |
| 399 | /* On a new subdir, reappend the default trace dir. */ |
| 400 | strncat(consumer->subdir, default_trace_dir, |
| 401 | sizeof(consumer->subdir) - strlen(consumer->subdir) - 1); |
| 402 | DBG3("Append domain trace name to subdir %s", consumer->subdir); |
| 403 | } |
| 404 | |
| 405 | break; |
| 406 | case LTTNG_DST_PATH: |
| 407 | DBG2("Setting trace directory path from URI to %s", uri->dst.path); |
| 408 | memset(consumer->dst.trace_path, 0, |
| 409 | sizeof(consumer->dst.trace_path)); |
| 410 | strncpy(consumer->dst.trace_path, uri->dst.path, |
| 411 | sizeof(consumer->dst.trace_path)); |
| 412 | /* Append default trace dir */ |
| 413 | strncat(consumer->dst.trace_path, default_trace_dir, |
| 414 | sizeof(consumer->dst.trace_path) - |
| 415 | strlen(consumer->dst.trace_path) - 1); |
| 416 | /* Flag consumer as local. */ |
| 417 | consumer->type = CONSUMER_DST_LOCAL; |
| 418 | break; |
| 419 | } |
| 420 | |
| 421 | error: |
| 422 | return ret; |
| 423 | } |
| 424 | |
| 425 | /* |
| 426 | * Init tracing by creating trace directory and sending fds kernel consumer. |
| 427 | */ |
| 428 | static int init_kernel_tracing(struct ltt_kernel_session *session) |
| 429 | { |
| 430 | int ret = 0; |
| 431 | struct lttng_ht_iter iter; |
| 432 | struct consumer_socket *socket; |
| 433 | |
| 434 | assert(session); |
| 435 | |
| 436 | if (session->consumer_fds_sent == 0 && session->consumer != NULL) { |
| 437 | cds_lfht_for_each_entry(session->consumer->socks->ht, &iter.iter, |
| 438 | socket, node.node) { |
| 439 | /* Code flow error */ |
| 440 | assert(socket->fd >= 0); |
| 441 | |
| 442 | pthread_mutex_lock(socket->lock); |
| 443 | ret = kernel_consumer_send_session(socket, session); |
| 444 | pthread_mutex_unlock(socket->lock); |
| 445 | if (ret < 0) { |
| 446 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
| 447 | goto error; |
| 448 | } |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | error: |
| 453 | return ret; |
| 454 | } |
| 455 | |
| 456 | /* |
| 457 | * Create a socket to the relayd using the URI. |
| 458 | * |
| 459 | * On success, the relayd_sock pointer is set to the created socket. |
| 460 | * Else, it's stays untouched and a lttcomm error code is returned. |
| 461 | */ |
| 462 | static int create_connect_relayd(struct consumer_output *output, |
| 463 | const char *session_name, struct lttng_uri *uri, |
| 464 | struct lttcomm_sock **relayd_sock) |
| 465 | { |
| 466 | int ret; |
| 467 | struct lttcomm_sock *sock; |
| 468 | |
| 469 | /* Create socket object from URI */ |
| 470 | sock = lttcomm_alloc_sock_from_uri(uri); |
| 471 | if (sock == NULL) { |
| 472 | ret = LTTNG_ERR_FATAL; |
| 473 | goto error; |
| 474 | } |
| 475 | |
| 476 | ret = lttcomm_create_sock(sock); |
| 477 | if (ret < 0) { |
| 478 | ret = LTTNG_ERR_FATAL; |
| 479 | goto error; |
| 480 | } |
| 481 | |
| 482 | /* Connect to relayd so we can proceed with a session creation. */ |
| 483 | ret = relayd_connect(sock); |
| 484 | if (ret < 0) { |
| 485 | ERR("Unable to reach lttng-relayd"); |
| 486 | ret = LTTNG_ERR_RELAYD_CONNECT_FAIL; |
| 487 | goto free_sock; |
| 488 | } |
| 489 | |
| 490 | /* Create socket for control stream. */ |
| 491 | if (uri->stype == LTTNG_STREAM_CONTROL) { |
| 492 | DBG3("Creating relayd stream socket from URI"); |
| 493 | |
| 494 | /* Check relayd version */ |
| 495 | ret = relayd_version_check(sock, RELAYD_VERSION_COMM_MAJOR, |
| 496 | RELAYD_VERSION_COMM_MINOR); |
| 497 | if (ret < 0) { |
| 498 | ret = LTTNG_ERR_RELAYD_VERSION_FAIL; |
| 499 | goto close_sock; |
| 500 | } |
| 501 | } else if (uri->stype == LTTNG_STREAM_DATA) { |
| 502 | DBG3("Creating relayd data socket from URI"); |
| 503 | } else { |
| 504 | /* Command is not valid */ |
| 505 | ERR("Relayd invalid stream type: %d", uri->stype); |
| 506 | ret = LTTNG_ERR_INVALID; |
| 507 | goto close_sock; |
| 508 | } |
| 509 | |
| 510 | *relayd_sock = sock; |
| 511 | |
| 512 | return LTTNG_OK; |
| 513 | |
| 514 | close_sock: |
| 515 | if (sock) { |
| 516 | (void) relayd_close(sock); |
| 517 | } |
| 518 | free_sock: |
| 519 | if (sock) { |
| 520 | lttcomm_destroy_sock(sock); |
| 521 | } |
| 522 | error: |
| 523 | return ret; |
| 524 | } |
| 525 | |
| 526 | /* |
| 527 | * Connect to the relayd using URI and send the socket to the right consumer. |
| 528 | */ |
| 529 | static int send_consumer_relayd_socket(int domain, struct ltt_session *session, |
| 530 | struct lttng_uri *relayd_uri, struct consumer_output *consumer, |
| 531 | struct consumer_socket *consumer_sock) |
| 532 | { |
| 533 | int ret; |
| 534 | struct lttcomm_sock *sock = NULL; |
| 535 | |
| 536 | /* Set the network sequence index if not set. */ |
| 537 | if (consumer->net_seq_index == -1) { |
| 538 | /* |
| 539 | * Increment net_seq_idx because we are about to transfer the |
| 540 | * new relayd socket to the consumer. |
| 541 | */ |
| 542 | uatomic_inc(&relayd_net_seq_idx); |
| 543 | /* Assign unique key so the consumer can match streams */ |
| 544 | uatomic_set(&consumer->net_seq_index, |
| 545 | uatomic_read(&relayd_net_seq_idx)); |
| 546 | } |
| 547 | |
| 548 | /* Connect to relayd and make version check if uri is the control. */ |
| 549 | ret = create_connect_relayd(consumer, session->name, relayd_uri, &sock); |
| 550 | if (ret != LTTNG_OK) { |
| 551 | goto close_sock; |
| 552 | } |
| 553 | |
| 554 | /* If the control socket is connected, network session is ready */ |
| 555 | if (relayd_uri->stype == LTTNG_STREAM_CONTROL) { |
| 556 | session->net_handle = 1; |
| 557 | } |
| 558 | |
| 559 | /* Send relayd socket to consumer. */ |
| 560 | ret = consumer_send_relayd_socket(consumer_sock, sock, |
| 561 | consumer, relayd_uri->stype); |
| 562 | if (ret < 0) { |
| 563 | ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL; |
| 564 | goto close_sock; |
| 565 | } |
| 566 | |
| 567 | /* Flag that the corresponding socket was sent. */ |
| 568 | if (relayd_uri->stype == LTTNG_STREAM_CONTROL) { |
| 569 | consumer->dst.net.control_sock_sent = 1; |
| 570 | } else if (relayd_uri->stype == LTTNG_STREAM_DATA) { |
| 571 | consumer->dst.net.data_sock_sent = 1; |
| 572 | } |
| 573 | |
| 574 | ret = LTTNG_OK; |
| 575 | |
| 576 | /* |
| 577 | * Close socket which was dup on the consumer side. The session daemon does |
| 578 | * NOT keep track of the relayd socket(s) once transfer to the consumer. |
| 579 | */ |
| 580 | |
| 581 | close_sock: |
| 582 | if (sock) { |
| 583 | (void) relayd_close(sock); |
| 584 | lttcomm_destroy_sock(sock); |
| 585 | } |
| 586 | |
| 587 | return ret; |
| 588 | } |
| 589 | |
| 590 | /* |
| 591 | * Send both relayd sockets to a specific consumer and domain. This is a |
| 592 | * helper function to facilitate sending the information to the consumer for a |
| 593 | * session. |
| 594 | */ |
| 595 | static int send_consumer_relayd_sockets(int domain, |
| 596 | struct ltt_session *session, struct consumer_output *consumer, |
| 597 | struct consumer_socket *sock) |
| 598 | { |
| 599 | int ret = LTTNG_OK; |
| 600 | |
| 601 | assert(session); |
| 602 | assert(consumer); |
| 603 | |
| 604 | /* Sending control relayd socket. */ |
| 605 | if (!consumer->dst.net.control_sock_sent) { |
| 606 | ret = send_consumer_relayd_socket(domain, session, |
| 607 | &consumer->dst.net.control, consumer, sock); |
| 608 | if (ret != LTTNG_OK) { |
| 609 | goto error; |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | /* Sending data relayd socket. */ |
| 614 | if (!consumer->dst.net.data_sock_sent) { |
| 615 | ret = send_consumer_relayd_socket(domain, session, |
| 616 | &consumer->dst.net.data, consumer, sock); |
| 617 | if (ret != LTTNG_OK) { |
| 618 | goto error; |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | error: |
| 623 | return ret; |
| 624 | } |
| 625 | |
| 626 | /* |
| 627 | * Setup relayd connections for a tracing session. First creates the socket to |
| 628 | * the relayd and send them to the right domain consumer. Consumer type MUST be |
| 629 | * network. |
| 630 | */ |
| 631 | static int setup_relayd(struct ltt_session *session) |
| 632 | { |
| 633 | int ret = LTTNG_OK; |
| 634 | struct ltt_ust_session *usess; |
| 635 | struct ltt_kernel_session *ksess; |
| 636 | struct consumer_socket *socket; |
| 637 | struct lttng_ht_iter iter; |
| 638 | |
| 639 | assert(session); |
| 640 | |
| 641 | usess = session->ust_session; |
| 642 | ksess = session->kernel_session; |
| 643 | |
| 644 | DBG2("Setting relayd for session %s", session->name); |
| 645 | |
| 646 | if (usess && usess->consumer && usess->consumer->type == CONSUMER_DST_NET |
| 647 | && usess->consumer->enabled) { |
| 648 | /* For each consumer socket, send relayd sockets */ |
| 649 | cds_lfht_for_each_entry(usess->consumer->socks->ht, &iter.iter, |
| 650 | socket, node.node) { |
| 651 | /* Code flow error */ |
| 652 | assert(socket->fd >= 0); |
| 653 | |
| 654 | pthread_mutex_lock(socket->lock); |
| 655 | ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_UST, session, |
| 656 | usess->consumer, socket); |
| 657 | pthread_mutex_unlock(socket->lock); |
| 658 | if (ret != LTTNG_OK) { |
| 659 | goto error; |
| 660 | } |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | if (ksess && ksess->consumer && ksess->consumer->type == CONSUMER_DST_NET |
| 665 | && ksess->consumer->enabled) { |
| 666 | cds_lfht_for_each_entry(ksess->consumer->socks->ht, &iter.iter, |
| 667 | socket, node.node) { |
| 668 | /* Code flow error */ |
| 669 | assert(socket->fd >= 0); |
| 670 | |
| 671 | pthread_mutex_lock(socket->lock); |
| 672 | ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL, session, |
| 673 | ksess->consumer, socket); |
| 674 | pthread_mutex_unlock(socket->lock); |
| 675 | if (ret != LTTNG_OK) { |
| 676 | goto error; |
| 677 | } |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | error: |
| 682 | return ret; |
| 683 | } |
| 684 | |
| 685 | /* |
| 686 | * Start a kernel session by opening all necessary streams. |
| 687 | */ |
| 688 | static int start_kernel_session(struct ltt_kernel_session *ksess, int wpipe) |
| 689 | { |
| 690 | int ret; |
| 691 | struct ltt_kernel_channel *kchan; |
| 692 | |
| 693 | /* Open kernel metadata */ |
| 694 | if (ksess->metadata == NULL) { |
| 695 | ret = kernel_open_metadata(ksess); |
| 696 | if (ret < 0) { |
| 697 | ret = LTTNG_ERR_KERN_META_FAIL; |
| 698 | goto error; |
| 699 | } |
| 700 | } |
| 701 | |
| 702 | /* Open kernel metadata stream */ |
| 703 | if (ksess->metadata_stream_fd < 0) { |
| 704 | ret = kernel_open_metadata_stream(ksess); |
| 705 | if (ret < 0) { |
| 706 | ERR("Kernel create metadata stream failed"); |
| 707 | ret = LTTNG_ERR_KERN_STREAM_FAIL; |
| 708 | goto error; |
| 709 | } |
| 710 | } |
| 711 | |
| 712 | /* For each channel */ |
| 713 | cds_list_for_each_entry(kchan, &ksess->channel_list.head, list) { |
| 714 | if (kchan->stream_count == 0) { |
| 715 | ret = kernel_open_channel_stream(kchan); |
| 716 | if (ret < 0) { |
| 717 | ret = LTTNG_ERR_KERN_STREAM_FAIL; |
| 718 | goto error; |
| 719 | } |
| 720 | /* Update the stream global counter */ |
| 721 | ksess->stream_count_global += ret; |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | /* Setup kernel consumer socket and send fds to it */ |
| 726 | ret = init_kernel_tracing(ksess); |
| 727 | if (ret < 0) { |
| 728 | ret = LTTNG_ERR_KERN_START_FAIL; |
| 729 | goto error; |
| 730 | } |
| 731 | |
| 732 | /* This start the kernel tracing */ |
| 733 | ret = kernel_start_session(ksess); |
| 734 | if (ret < 0) { |
| 735 | ret = LTTNG_ERR_KERN_START_FAIL; |
| 736 | goto error; |
| 737 | } |
| 738 | |
| 739 | /* Quiescent wait after starting trace */ |
| 740 | kernel_wait_quiescent(kernel_tracer_fd); |
| 741 | |
| 742 | ksess->started = 1; |
| 743 | |
| 744 | ret = LTTNG_OK; |
| 745 | |
| 746 | error: |
| 747 | return ret; |
| 748 | } |
| 749 | |
| 750 | /* |
| 751 | * Command LTTNG_DISABLE_CHANNEL processed by the client thread. |
| 752 | */ |
| 753 | int cmd_disable_channel(struct ltt_session *session, int domain, |
| 754 | char *channel_name) |
| 755 | { |
| 756 | int ret; |
| 757 | struct ltt_ust_session *usess; |
| 758 | |
| 759 | usess = session->ust_session; |
| 760 | |
| 761 | switch (domain) { |
| 762 | case LTTNG_DOMAIN_KERNEL: |
| 763 | { |
| 764 | ret = channel_kernel_disable(session->kernel_session, |
| 765 | channel_name); |
| 766 | if (ret != LTTNG_OK) { |
| 767 | goto error; |
| 768 | } |
| 769 | |
| 770 | kernel_wait_quiescent(kernel_tracer_fd); |
| 771 | break; |
| 772 | } |
| 773 | case LTTNG_DOMAIN_UST: |
| 774 | { |
| 775 | struct ltt_ust_channel *uchan; |
| 776 | struct lttng_ht *chan_ht; |
| 777 | |
| 778 | chan_ht = usess->domain_global.channels; |
| 779 | |
| 780 | uchan = trace_ust_find_channel_by_name(chan_ht, channel_name); |
| 781 | if (uchan == NULL) { |
| 782 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
| 783 | goto error; |
| 784 | } |
| 785 | |
| 786 | ret = channel_ust_disable(usess, domain, uchan); |
| 787 | if (ret != LTTNG_OK) { |
| 788 | goto error; |
| 789 | } |
| 790 | break; |
| 791 | } |
| 792 | #if 0 |
| 793 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: |
| 794 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
| 795 | case LTTNG_DOMAIN_UST_PID: |
| 796 | #endif |
| 797 | default: |
| 798 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
| 799 | goto error; |
| 800 | } |
| 801 | |
| 802 | ret = LTTNG_OK; |
| 803 | |
| 804 | error: |
| 805 | return ret; |
| 806 | } |
| 807 | |
| 808 | /* |
| 809 | * Command LTTNG_ENABLE_CHANNEL processed by the client thread. |
| 810 | * |
| 811 | * The wpipe arguments is used as a notifier for the kernel thread. |
| 812 | */ |
| 813 | int cmd_enable_channel(struct ltt_session *session, |
| 814 | int domain, struct lttng_channel *attr, int wpipe) |
| 815 | { |
| 816 | int ret; |
| 817 | struct ltt_ust_session *usess = session->ust_session; |
| 818 | struct lttng_ht *chan_ht; |
| 819 | |
| 820 | assert(session); |
| 821 | assert(attr); |
| 822 | |
| 823 | DBG("Enabling channel %s for session %s", attr->name, session->name); |
| 824 | |
| 825 | switch (domain) { |
| 826 | case LTTNG_DOMAIN_KERNEL: |
| 827 | { |
| 828 | struct ltt_kernel_channel *kchan; |
| 829 | |
| 830 | kchan = trace_kernel_get_channel_by_name(attr->name, |
| 831 | session->kernel_session); |
| 832 | if (kchan == NULL) { |
| 833 | ret = channel_kernel_create(session->kernel_session, attr, wpipe); |
| 834 | } else { |
| 835 | ret = channel_kernel_enable(session->kernel_session, kchan); |
| 836 | } |
| 837 | |
| 838 | if (ret != LTTNG_OK) { |
| 839 | goto error; |
| 840 | } |
| 841 | |
| 842 | kernel_wait_quiescent(kernel_tracer_fd); |
| 843 | |
| 844 | /* |
| 845 | * If the session was previously started, start as well this newly |
| 846 | * created kernel session so the events/channels enabled *after* the |
| 847 | * start actually work. |
| 848 | */ |
| 849 | if (session->started && !session->kernel_session->started) { |
| 850 | ret = start_kernel_session(session->kernel_session, wpipe); |
| 851 | if (ret != LTTNG_OK) { |
| 852 | goto error; |
| 853 | } |
| 854 | } |
| 855 | break; |
| 856 | } |
| 857 | case LTTNG_DOMAIN_UST: |
| 858 | { |
| 859 | struct ltt_ust_channel *uchan; |
| 860 | |
| 861 | chan_ht = usess->domain_global.channels; |
| 862 | |
| 863 | uchan = trace_ust_find_channel_by_name(chan_ht, attr->name); |
| 864 | if (uchan == NULL) { |
| 865 | ret = channel_ust_create(usess, domain, attr); |
| 866 | } else { |
| 867 | ret = channel_ust_enable(usess, domain, uchan); |
| 868 | } |
| 869 | |
| 870 | /* Start the UST session if the session was already started. */ |
| 871 | if (session->started && !usess->start_trace) { |
| 872 | ret = ust_app_start_trace_all(usess); |
| 873 | if (ret < 0) { |
| 874 | ret = LTTNG_ERR_UST_START_FAIL; |
| 875 | goto error; |
| 876 | } |
| 877 | ret = LTTNG_OK; |
| 878 | usess->start_trace = 1; |
| 879 | } |
| 880 | break; |
| 881 | } |
| 882 | #if 0 |
| 883 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: |
| 884 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
| 885 | case LTTNG_DOMAIN_UST_PID: |
| 886 | #endif |
| 887 | default: |
| 888 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
| 889 | goto error; |
| 890 | } |
| 891 | |
| 892 | error: |
| 893 | return ret; |
| 894 | } |
| 895 | |
| 896 | |
| 897 | /* |
| 898 | * Command LTTNG_DISABLE_EVENT processed by the client thread. |
| 899 | */ |
| 900 | int cmd_disable_event(struct ltt_session *session, int domain, |
| 901 | char *channel_name, char *event_name) |
| 902 | { |
| 903 | int ret; |
| 904 | |
| 905 | switch (domain) { |
| 906 | case LTTNG_DOMAIN_KERNEL: |
| 907 | { |
| 908 | struct ltt_kernel_channel *kchan; |
| 909 | struct ltt_kernel_session *ksess; |
| 910 | |
| 911 | ksess = session->kernel_session; |
| 912 | |
| 913 | kchan = trace_kernel_get_channel_by_name(channel_name, ksess); |
| 914 | if (kchan == NULL) { |
| 915 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
| 916 | goto error; |
| 917 | } |
| 918 | |
| 919 | ret = event_kernel_disable_tracepoint(ksess, kchan, event_name); |
| 920 | if (ret != LTTNG_OK) { |
| 921 | goto error; |
| 922 | } |
| 923 | |
| 924 | kernel_wait_quiescent(kernel_tracer_fd); |
| 925 | break; |
| 926 | } |
| 927 | case LTTNG_DOMAIN_UST: |
| 928 | { |
| 929 | struct ltt_ust_channel *uchan; |
| 930 | struct ltt_ust_session *usess; |
| 931 | |
| 932 | usess = session->ust_session; |
| 933 | |
| 934 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, |
| 935 | channel_name); |
| 936 | if (uchan == NULL) { |
| 937 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
| 938 | goto error; |
| 939 | } |
| 940 | |
| 941 | ret = event_ust_disable_tracepoint(usess, domain, uchan, event_name); |
| 942 | if (ret != LTTNG_OK) { |
| 943 | goto error; |
| 944 | } |
| 945 | |
| 946 | DBG3("Disable UST event %s in channel %s completed", event_name, |
| 947 | channel_name); |
| 948 | break; |
| 949 | } |
| 950 | #if 0 |
| 951 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
| 952 | case LTTNG_DOMAIN_UST_PID: |
| 953 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: |
| 954 | #endif |
| 955 | default: |
| 956 | ret = LTTNG_ERR_UND; |
| 957 | goto error; |
| 958 | } |
| 959 | |
| 960 | ret = LTTNG_OK; |
| 961 | |
| 962 | error: |
| 963 | return ret; |
| 964 | } |
| 965 | |
| 966 | /* |
| 967 | * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread. |
| 968 | */ |
| 969 | int cmd_disable_event_all(struct ltt_session *session, int domain, |
| 970 | char *channel_name) |
| 971 | { |
| 972 | int ret; |
| 973 | |
| 974 | switch (domain) { |
| 975 | case LTTNG_DOMAIN_KERNEL: |
| 976 | { |
| 977 | struct ltt_kernel_session *ksess; |
| 978 | struct ltt_kernel_channel *kchan; |
| 979 | |
| 980 | ksess = session->kernel_session; |
| 981 | |
| 982 | kchan = trace_kernel_get_channel_by_name(channel_name, ksess); |
| 983 | if (kchan == NULL) { |
| 984 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
| 985 | goto error; |
| 986 | } |
| 987 | |
| 988 | ret = event_kernel_disable_all(ksess, kchan); |
| 989 | if (ret != LTTNG_OK) { |
| 990 | goto error; |
| 991 | } |
| 992 | |
| 993 | kernel_wait_quiescent(kernel_tracer_fd); |
| 994 | break; |
| 995 | } |
| 996 | case LTTNG_DOMAIN_UST: |
| 997 | { |
| 998 | struct ltt_ust_session *usess; |
| 999 | struct ltt_ust_channel *uchan; |
| 1000 | |
| 1001 | usess = session->ust_session; |
| 1002 | |
| 1003 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, |
| 1004 | channel_name); |
| 1005 | if (uchan == NULL) { |
| 1006 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
| 1007 | goto error; |
| 1008 | } |
| 1009 | |
| 1010 | ret = event_ust_disable_all_tracepoints(usess, domain, uchan); |
| 1011 | if (ret != 0) { |
| 1012 | goto error; |
| 1013 | } |
| 1014 | |
| 1015 | DBG3("Disable all UST events in channel %s completed", channel_name); |
| 1016 | |
| 1017 | break; |
| 1018 | } |
| 1019 | #if 0 |
| 1020 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
| 1021 | case LTTNG_DOMAIN_UST_PID: |
| 1022 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: |
| 1023 | #endif |
| 1024 | default: |
| 1025 | ret = LTTNG_ERR_UND; |
| 1026 | goto error; |
| 1027 | } |
| 1028 | |
| 1029 | ret = LTTNG_OK; |
| 1030 | |
| 1031 | error: |
| 1032 | return ret; |
| 1033 | } |
| 1034 | |
| 1035 | /* |
| 1036 | * Command LTTNG_ADD_CONTEXT processed by the client thread. |
| 1037 | */ |
| 1038 | int cmd_add_context(struct ltt_session *session, int domain, |
| 1039 | char *channel_name, struct lttng_event_context *ctx, int kwpipe) |
| 1040 | { |
| 1041 | int ret; |
| 1042 | |
| 1043 | switch (domain) { |
| 1044 | case LTTNG_DOMAIN_KERNEL: |
| 1045 | assert(session->kernel_session); |
| 1046 | |
| 1047 | if (session->kernel_session->channel_count == 0) { |
| 1048 | /* Create default channel */ |
| 1049 | ret = channel_kernel_create(session->kernel_session, NULL, kwpipe); |
| 1050 | if (ret != LTTNG_OK) { |
| 1051 | goto error; |
| 1052 | } |
| 1053 | } |
| 1054 | |
| 1055 | /* Add kernel context to kernel tracer */ |
| 1056 | ret = context_kernel_add(session->kernel_session, ctx, channel_name); |
| 1057 | if (ret != LTTNG_OK) { |
| 1058 | goto error; |
| 1059 | } |
| 1060 | break; |
| 1061 | case LTTNG_DOMAIN_UST: |
| 1062 | { |
| 1063 | struct ltt_ust_session *usess = session->ust_session; |
| 1064 | assert(usess); |
| 1065 | |
| 1066 | unsigned int chan_count = |
| 1067 | lttng_ht_get_count(usess->domain_global.channels); |
| 1068 | if (chan_count == 0) { |
| 1069 | struct lttng_channel *attr; |
| 1070 | /* Create default channel */ |
| 1071 | attr = channel_new_default_attr(domain); |
| 1072 | if (attr == NULL) { |
| 1073 | ret = LTTNG_ERR_FATAL; |
| 1074 | goto error; |
| 1075 | } |
| 1076 | |
| 1077 | ret = channel_ust_create(usess, domain, attr); |
| 1078 | if (ret != LTTNG_OK) { |
| 1079 | free(attr); |
| 1080 | goto error; |
| 1081 | } |
| 1082 | free(attr); |
| 1083 | } |
| 1084 | |
| 1085 | ret = context_ust_add(usess, domain, ctx, channel_name); |
| 1086 | if (ret != LTTNG_OK) { |
| 1087 | goto error; |
| 1088 | } |
| 1089 | break; |
| 1090 | } |
| 1091 | #if 0 |
| 1092 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
| 1093 | case LTTNG_DOMAIN_UST_PID: |
| 1094 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: |
| 1095 | #endif |
| 1096 | default: |
| 1097 | ret = LTTNG_ERR_UND; |
| 1098 | goto error; |
| 1099 | } |
| 1100 | |
| 1101 | ret = LTTNG_OK; |
| 1102 | |
| 1103 | error: |
| 1104 | return ret; |
| 1105 | } |
| 1106 | |
| 1107 | /* |
| 1108 | * Command LTTNG_ENABLE_EVENT processed by the client thread. |
| 1109 | */ |
| 1110 | int cmd_enable_event(struct ltt_session *session, int domain, |
| 1111 | char *channel_name, struct lttng_event *event, |
| 1112 | struct lttng_filter_bytecode *filter, int wpipe) |
| 1113 | { |
| 1114 | int ret; |
| 1115 | struct lttng_channel *attr; |
| 1116 | |
| 1117 | assert(session); |
| 1118 | assert(event); |
| 1119 | assert(channel_name); |
| 1120 | |
| 1121 | switch (domain) { |
| 1122 | case LTTNG_DOMAIN_KERNEL: |
| 1123 | { |
| 1124 | struct ltt_kernel_channel *kchan; |
| 1125 | |
| 1126 | kchan = trace_kernel_get_channel_by_name(channel_name, |
| 1127 | session->kernel_session); |
| 1128 | if (kchan == NULL) { |
| 1129 | attr = channel_new_default_attr(domain); |
| 1130 | if (attr == NULL) { |
| 1131 | ret = LTTNG_ERR_FATAL; |
| 1132 | goto error; |
| 1133 | } |
| 1134 | strncpy(attr->name, channel_name, sizeof(attr->name)); |
| 1135 | |
| 1136 | ret = cmd_enable_channel(session, domain, attr, wpipe); |
| 1137 | if (ret != LTTNG_OK) { |
| 1138 | free(attr); |
| 1139 | goto error; |
| 1140 | } |
| 1141 | free(attr); |
| 1142 | } |
| 1143 | |
| 1144 | /* Get the newly created kernel channel pointer */ |
| 1145 | kchan = trace_kernel_get_channel_by_name(channel_name, |
| 1146 | session->kernel_session); |
| 1147 | if (kchan == NULL) { |
| 1148 | /* This sould not happen... */ |
| 1149 | ret = LTTNG_ERR_FATAL; |
| 1150 | goto error; |
| 1151 | } |
| 1152 | |
| 1153 | ret = event_kernel_enable_tracepoint(session->kernel_session, kchan, |
| 1154 | event); |
| 1155 | if (ret != LTTNG_OK) { |
| 1156 | goto error; |
| 1157 | } |
| 1158 | |
| 1159 | kernel_wait_quiescent(kernel_tracer_fd); |
| 1160 | break; |
| 1161 | } |
| 1162 | case LTTNG_DOMAIN_UST: |
| 1163 | { |
| 1164 | struct ltt_ust_channel *uchan; |
| 1165 | struct ltt_ust_session *usess = session->ust_session; |
| 1166 | |
| 1167 | assert(usess); |
| 1168 | |
| 1169 | /* Get channel from global UST domain */ |
| 1170 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, |
| 1171 | channel_name); |
| 1172 | if (uchan == NULL) { |
| 1173 | /* Create default channel */ |
| 1174 | attr = channel_new_default_attr(domain); |
| 1175 | if (attr == NULL) { |
| 1176 | ret = LTTNG_ERR_FATAL; |
| 1177 | goto error; |
| 1178 | } |
| 1179 | strncpy(attr->name, channel_name, sizeof(attr->name)); |
| 1180 | |
| 1181 | ret = cmd_enable_channel(session, domain, attr, wpipe); |
| 1182 | if (ret != LTTNG_OK) { |
| 1183 | free(attr); |
| 1184 | goto error; |
| 1185 | } |
| 1186 | free(attr); |
| 1187 | |
| 1188 | /* Get the newly created channel reference back */ |
| 1189 | uchan = trace_ust_find_channel_by_name( |
| 1190 | usess->domain_global.channels, channel_name); |
| 1191 | assert(uchan); |
| 1192 | } |
| 1193 | |
| 1194 | /* At this point, the session and channel exist on the tracer */ |
| 1195 | ret = event_ust_enable_tracepoint(usess, domain, uchan, event, filter); |
| 1196 | if (ret != LTTNG_OK) { |
| 1197 | goto error; |
| 1198 | } |
| 1199 | break; |
| 1200 | } |
| 1201 | #if 0 |
| 1202 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
| 1203 | case LTTNG_DOMAIN_UST_PID: |
| 1204 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: |
| 1205 | #endif |
| 1206 | default: |
| 1207 | ret = LTTNG_ERR_UND; |
| 1208 | goto error; |
| 1209 | } |
| 1210 | |
| 1211 | ret = LTTNG_OK; |
| 1212 | |
| 1213 | error: |
| 1214 | return ret; |
| 1215 | } |
| 1216 | |
| 1217 | /* |
| 1218 | * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread. |
| 1219 | */ |
| 1220 | int cmd_enable_event_all(struct ltt_session *session, int domain, |
| 1221 | char *channel_name, int event_type, |
| 1222 | struct lttng_filter_bytecode *filter, int wpipe) |
| 1223 | { |
| 1224 | int ret; |
| 1225 | struct lttng_channel *attr; |
| 1226 | |
| 1227 | assert(session); |
| 1228 | assert(channel_name); |
| 1229 | |
| 1230 | switch (domain) { |
| 1231 | case LTTNG_DOMAIN_KERNEL: |
| 1232 | { |
| 1233 | struct ltt_kernel_channel *kchan; |
| 1234 | |
| 1235 | assert(session->kernel_session); |
| 1236 | |
| 1237 | kchan = trace_kernel_get_channel_by_name(channel_name, |
| 1238 | session->kernel_session); |
| 1239 | if (kchan == NULL) { |
| 1240 | /* Create default channel */ |
| 1241 | attr = channel_new_default_attr(domain); |
| 1242 | if (attr == NULL) { |
| 1243 | ret = LTTNG_ERR_FATAL; |
| 1244 | goto error; |
| 1245 | } |
| 1246 | strncpy(attr->name, channel_name, sizeof(attr->name)); |
| 1247 | |
| 1248 | ret = cmd_enable_channel(session, domain, attr, wpipe); |
| 1249 | if (ret != LTTNG_OK) { |
| 1250 | free(attr); |
| 1251 | goto error; |
| 1252 | } |
| 1253 | free(attr); |
| 1254 | |
| 1255 | /* Get the newly created kernel channel pointer */ |
| 1256 | kchan = trace_kernel_get_channel_by_name(channel_name, |
| 1257 | session->kernel_session); |
| 1258 | assert(kchan); |
| 1259 | } |
| 1260 | |
| 1261 | switch (event_type) { |
| 1262 | case LTTNG_EVENT_SYSCALL: |
| 1263 | ret = event_kernel_enable_all_syscalls(session->kernel_session, |
| 1264 | kchan, kernel_tracer_fd); |
| 1265 | break; |
| 1266 | case LTTNG_EVENT_TRACEPOINT: |
| 1267 | /* |
| 1268 | * This call enables all LTTNG_KERNEL_TRACEPOINTS and |
| 1269 | * events already registered to the channel. |
| 1270 | */ |
| 1271 | ret = event_kernel_enable_all_tracepoints(session->kernel_session, |
| 1272 | kchan, kernel_tracer_fd); |
| 1273 | break; |
| 1274 | case LTTNG_EVENT_ALL: |
| 1275 | /* Enable syscalls and tracepoints */ |
| 1276 | ret = event_kernel_enable_all(session->kernel_session, |
| 1277 | kchan, kernel_tracer_fd); |
| 1278 | break; |
| 1279 | default: |
| 1280 | ret = LTTNG_ERR_KERN_ENABLE_FAIL; |
| 1281 | goto error; |
| 1282 | } |
| 1283 | |
| 1284 | /* Manage return value */ |
| 1285 | if (ret != LTTNG_OK) { |
| 1286 | goto error; |
| 1287 | } |
| 1288 | |
| 1289 | kernel_wait_quiescent(kernel_tracer_fd); |
| 1290 | break; |
| 1291 | } |
| 1292 | case LTTNG_DOMAIN_UST: |
| 1293 | { |
| 1294 | struct ltt_ust_channel *uchan; |
| 1295 | struct ltt_ust_session *usess = session->ust_session; |
| 1296 | |
| 1297 | assert(usess); |
| 1298 | |
| 1299 | /* Get channel from global UST domain */ |
| 1300 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, |
| 1301 | channel_name); |
| 1302 | if (uchan == NULL) { |
| 1303 | /* Create default channel */ |
| 1304 | attr = channel_new_default_attr(domain); |
| 1305 | if (attr == NULL) { |
| 1306 | ret = LTTNG_ERR_FATAL; |
| 1307 | goto error; |
| 1308 | } |
| 1309 | strncpy(attr->name, channel_name, sizeof(attr->name)); |
| 1310 | |
| 1311 | ret = cmd_enable_channel(session, domain, attr, wpipe); |
| 1312 | if (ret != LTTNG_OK) { |
| 1313 | free(attr); |
| 1314 | goto error; |
| 1315 | } |
| 1316 | free(attr); |
| 1317 | |
| 1318 | /* Get the newly created channel reference back */ |
| 1319 | uchan = trace_ust_find_channel_by_name( |
| 1320 | usess->domain_global.channels, channel_name); |
| 1321 | assert(uchan); |
| 1322 | } |
| 1323 | |
| 1324 | /* At this point, the session and channel exist on the tracer */ |
| 1325 | |
| 1326 | switch (event_type) { |
| 1327 | case LTTNG_EVENT_ALL: |
| 1328 | case LTTNG_EVENT_TRACEPOINT: |
| 1329 | ret = event_ust_enable_all_tracepoints(usess, domain, uchan, |
| 1330 | filter); |
| 1331 | if (ret != LTTNG_OK) { |
| 1332 | goto error; |
| 1333 | } |
| 1334 | break; |
| 1335 | default: |
| 1336 | ret = LTTNG_ERR_UST_ENABLE_FAIL; |
| 1337 | goto error; |
| 1338 | } |
| 1339 | |
| 1340 | /* Manage return value */ |
| 1341 | if (ret != LTTNG_OK) { |
| 1342 | goto error; |
| 1343 | } |
| 1344 | |
| 1345 | break; |
| 1346 | } |
| 1347 | #if 0 |
| 1348 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
| 1349 | case LTTNG_DOMAIN_UST_PID: |
| 1350 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: |
| 1351 | #endif |
| 1352 | default: |
| 1353 | ret = LTTNG_ERR_UND; |
| 1354 | goto error; |
| 1355 | } |
| 1356 | |
| 1357 | ret = LTTNG_OK; |
| 1358 | |
| 1359 | error: |
| 1360 | return ret; |
| 1361 | } |
| 1362 | |
| 1363 | |
| 1364 | /* |
| 1365 | * Command LTTNG_LIST_TRACEPOINTS processed by the client thread. |
| 1366 | */ |
| 1367 | ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events) |
| 1368 | { |
| 1369 | int ret; |
| 1370 | ssize_t nb_events = 0; |
| 1371 | |
| 1372 | switch (domain) { |
| 1373 | case LTTNG_DOMAIN_KERNEL: |
| 1374 | nb_events = kernel_list_events(kernel_tracer_fd, events); |
| 1375 | if (nb_events < 0) { |
| 1376 | ret = LTTNG_ERR_KERN_LIST_FAIL; |
| 1377 | goto error; |
| 1378 | } |
| 1379 | break; |
| 1380 | case LTTNG_DOMAIN_UST: |
| 1381 | nb_events = ust_app_list_events(events); |
| 1382 | if (nb_events < 0) { |
| 1383 | ret = LTTNG_ERR_UST_LIST_FAIL; |
| 1384 | goto error; |
| 1385 | } |
| 1386 | break; |
| 1387 | default: |
| 1388 | ret = LTTNG_ERR_UND; |
| 1389 | goto error; |
| 1390 | } |
| 1391 | |
| 1392 | return nb_events; |
| 1393 | |
| 1394 | error: |
| 1395 | /* Return negative value to differentiate return code */ |
| 1396 | return -ret; |
| 1397 | } |
| 1398 | |
| 1399 | /* |
| 1400 | * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread. |
| 1401 | */ |
| 1402 | ssize_t cmd_list_tracepoint_fields(int domain, |
| 1403 | struct lttng_event_field **fields) |
| 1404 | { |
| 1405 | int ret; |
| 1406 | ssize_t nb_fields = 0; |
| 1407 | |
| 1408 | switch (domain) { |
| 1409 | case LTTNG_DOMAIN_UST: |
| 1410 | nb_fields = ust_app_list_event_fields(fields); |
| 1411 | if (nb_fields < 0) { |
| 1412 | ret = LTTNG_ERR_UST_LIST_FAIL; |
| 1413 | goto error; |
| 1414 | } |
| 1415 | break; |
| 1416 | case LTTNG_DOMAIN_KERNEL: |
| 1417 | default: /* fall-through */ |
| 1418 | ret = LTTNG_ERR_UND; |
| 1419 | goto error; |
| 1420 | } |
| 1421 | |
| 1422 | return nb_fields; |
| 1423 | |
| 1424 | error: |
| 1425 | /* Return negative value to differentiate return code */ |
| 1426 | return -ret; |
| 1427 | } |
| 1428 | |
| 1429 | /* |
| 1430 | * Command LTTNG_START_TRACE processed by the client thread. |
| 1431 | */ |
| 1432 | int cmd_start_trace(struct ltt_session *session) |
| 1433 | { |
| 1434 | int ret; |
| 1435 | struct ltt_kernel_session *ksession; |
| 1436 | struct ltt_ust_session *usess; |
| 1437 | |
| 1438 | assert(session); |
| 1439 | |
| 1440 | /* Ease our life a bit ;) */ |
| 1441 | ksession = session->kernel_session; |
| 1442 | usess = session->ust_session; |
| 1443 | |
| 1444 | if (session->enabled) { |
| 1445 | /* Already started. */ |
| 1446 | ret = LTTNG_ERR_TRACE_ALREADY_STARTED; |
| 1447 | goto error; |
| 1448 | } |
| 1449 | |
| 1450 | session->enabled = 1; |
| 1451 | |
| 1452 | ret = setup_relayd(session); |
| 1453 | if (ret != LTTNG_OK) { |
| 1454 | ERR("Error setting up relayd for session %s", session->name); |
| 1455 | goto error; |
| 1456 | } |
| 1457 | |
| 1458 | /* Kernel tracing */ |
| 1459 | if (ksession != NULL) { |
| 1460 | ret = start_kernel_session(ksession, kernel_tracer_fd); |
| 1461 | if (ret != LTTNG_OK) { |
| 1462 | goto error; |
| 1463 | } |
| 1464 | } |
| 1465 | |
| 1466 | /* Flag session that trace should start automatically */ |
| 1467 | if (usess) { |
| 1468 | usess->start_trace = 1; |
| 1469 | |
| 1470 | ret = ust_app_start_trace_all(usess); |
| 1471 | if (ret < 0) { |
| 1472 | ret = LTTNG_ERR_UST_START_FAIL; |
| 1473 | goto error; |
| 1474 | } |
| 1475 | } |
| 1476 | |
| 1477 | session->started = 1; |
| 1478 | |
| 1479 | ret = LTTNG_OK; |
| 1480 | |
| 1481 | error: |
| 1482 | return ret; |
| 1483 | } |
| 1484 | |
| 1485 | /* |
| 1486 | * Command LTTNG_STOP_TRACE processed by the client thread. |
| 1487 | */ |
| 1488 | int cmd_stop_trace(struct ltt_session *session) |
| 1489 | { |
| 1490 | int ret; |
| 1491 | struct ltt_kernel_channel *kchan; |
| 1492 | struct ltt_kernel_session *ksession; |
| 1493 | struct ltt_ust_session *usess; |
| 1494 | |
| 1495 | assert(session); |
| 1496 | |
| 1497 | /* Short cut */ |
| 1498 | ksession = session->kernel_session; |
| 1499 | usess = session->ust_session; |
| 1500 | |
| 1501 | if (!session->enabled) { |
| 1502 | ret = LTTNG_ERR_TRACE_ALREADY_STOPPED; |
| 1503 | goto error; |
| 1504 | } |
| 1505 | |
| 1506 | session->enabled = 0; |
| 1507 | |
| 1508 | /* Kernel tracer */ |
| 1509 | if (ksession) { |
| 1510 | DBG("Stop kernel tracing"); |
| 1511 | |
| 1512 | /* Flush metadata if exist */ |
| 1513 | if (ksession->metadata_stream_fd >= 0) { |
| 1514 | ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd); |
| 1515 | if (ret < 0) { |
| 1516 | ERR("Kernel metadata flush failed"); |
| 1517 | } |
| 1518 | } |
| 1519 | |
| 1520 | /* Flush all buffers before stopping */ |
| 1521 | cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) { |
| 1522 | ret = kernel_flush_buffer(kchan); |
| 1523 | if (ret < 0) { |
| 1524 | ERR("Kernel flush buffer error"); |
| 1525 | } |
| 1526 | } |
| 1527 | |
| 1528 | ret = kernel_stop_session(ksession); |
| 1529 | if (ret < 0) { |
| 1530 | ret = LTTNG_ERR_KERN_STOP_FAIL; |
| 1531 | goto error; |
| 1532 | } |
| 1533 | |
| 1534 | kernel_wait_quiescent(kernel_tracer_fd); |
| 1535 | |
| 1536 | ksession->started = 0; |
| 1537 | } |
| 1538 | |
| 1539 | if (usess) { |
| 1540 | usess->start_trace = 0; |
| 1541 | |
| 1542 | ret = ust_app_stop_trace_all(usess); |
| 1543 | if (ret < 0) { |
| 1544 | ret = LTTNG_ERR_UST_STOP_FAIL; |
| 1545 | goto error; |
| 1546 | } |
| 1547 | } |
| 1548 | |
| 1549 | session->started = 0; |
| 1550 | |
| 1551 | ret = LTTNG_OK; |
| 1552 | |
| 1553 | error: |
| 1554 | return ret; |
| 1555 | } |
| 1556 | |
| 1557 | /* |
| 1558 | * Command LTTNG_SET_CONSUMER_URI processed by the client thread. |
| 1559 | */ |
| 1560 | int cmd_set_consumer_uri(int domain, struct ltt_session *session, |
| 1561 | size_t nb_uri, struct lttng_uri *uris) |
| 1562 | { |
| 1563 | int ret, i; |
| 1564 | struct ltt_kernel_session *ksess = session->kernel_session; |
| 1565 | struct ltt_ust_session *usess = session->ust_session; |
| 1566 | struct consumer_output *consumer = NULL; |
| 1567 | |
| 1568 | assert(session); |
| 1569 | assert(uris); |
| 1570 | assert(nb_uri > 0); |
| 1571 | |
| 1572 | /* Can't enable consumer after session started. */ |
| 1573 | if (session->enabled) { |
| 1574 | ret = LTTNG_ERR_TRACE_ALREADY_STARTED; |
| 1575 | goto error; |
| 1576 | } |
| 1577 | |
| 1578 | /* |
| 1579 | * This case switch makes sure the domain session has a temporary consumer |
| 1580 | * so the URL can be set. |
| 1581 | */ |
| 1582 | switch (domain) { |
| 1583 | case 0: |
| 1584 | /* Code flow error. A session MUST always have a consumer object */ |
| 1585 | assert(session->consumer); |
| 1586 | /* |
| 1587 | * The URL will be added to the tracing session consumer instead of a |
| 1588 | * specific domain consumer. |
| 1589 | */ |
| 1590 | consumer = session->consumer; |
| 1591 | break; |
| 1592 | case LTTNG_DOMAIN_KERNEL: |
| 1593 | /* Code flow error if we don't have a kernel session here. */ |
| 1594 | assert(ksess); |
| 1595 | |
| 1596 | /* Create consumer output if none exists */ |
| 1597 | consumer = ksess->tmp_consumer; |
| 1598 | if (consumer == NULL) { |
| 1599 | consumer = consumer_copy_output(ksess->consumer); |
| 1600 | if (consumer == NULL) { |
| 1601 | ret = LTTNG_ERR_FATAL; |
| 1602 | goto error; |
| 1603 | } |
| 1604 | /* Trash the consumer subdir, we are about to set a new one. */ |
| 1605 | memset(consumer->subdir, 0, sizeof(consumer->subdir)); |
| 1606 | ksess->tmp_consumer = consumer; |
| 1607 | } |
| 1608 | |
| 1609 | break; |
| 1610 | case LTTNG_DOMAIN_UST: |
| 1611 | /* Code flow error if we don't have a kernel session here. */ |
| 1612 | assert(usess); |
| 1613 | |
| 1614 | /* Create consumer output if none exists */ |
| 1615 | consumer = usess->tmp_consumer; |
| 1616 | if (consumer == NULL) { |
| 1617 | consumer = consumer_copy_output(usess->consumer); |
| 1618 | if (consumer == NULL) { |
| 1619 | ret = LTTNG_ERR_FATAL; |
| 1620 | goto error; |
| 1621 | } |
| 1622 | /* Trash the consumer subdir, we are about to set a new one. */ |
| 1623 | memset(consumer->subdir, 0, sizeof(consumer->subdir)); |
| 1624 | usess->tmp_consumer = consumer; |
| 1625 | } |
| 1626 | |
| 1627 | break; |
| 1628 | } |
| 1629 | |
| 1630 | for (i = 0; i < nb_uri; i++) { |
| 1631 | struct consumer_socket *socket; |
| 1632 | struct lttng_ht_iter iter; |
| 1633 | |
| 1634 | ret = add_uri_to_consumer(consumer, &uris[i], domain, session->name); |
| 1635 | if (ret < 0) { |
| 1636 | goto error; |
| 1637 | } |
| 1638 | |
| 1639 | /* |
| 1640 | * Don't send relayd socket if URI is NOT remote or if the relayd |
| 1641 | * socket for the session was already sent. |
| 1642 | */ |
| 1643 | if (uris[i].dtype == LTTNG_DST_PATH || |
| 1644 | (uris[i].stype == LTTNG_STREAM_CONTROL && |
| 1645 | consumer->dst.net.control_sock_sent) || |
| 1646 | (uris[i].stype == LTTNG_STREAM_DATA && |
| 1647 | consumer->dst.net.data_sock_sent)) { |
| 1648 | continue; |
| 1649 | } |
| 1650 | |
| 1651 | /* Try to send relayd URI to the consumer if exist. */ |
| 1652 | rcu_read_lock(); |
| 1653 | cds_lfht_for_each_entry(consumer->socks->ht, &iter.iter, |
| 1654 | socket, node.node) { |
| 1655 | |
| 1656 | /* A socket in the HT should never have a negative fd */ |
| 1657 | assert(socket->fd >= 0); |
| 1658 | |
| 1659 | pthread_mutex_lock(socket->lock); |
| 1660 | ret = send_consumer_relayd_socket(domain, session, &uris[i], |
| 1661 | consumer, socket); |
| 1662 | pthread_mutex_unlock(socket->lock); |
| 1663 | if (ret != LTTNG_OK) { |
| 1664 | rcu_read_unlock(); |
| 1665 | goto error; |
| 1666 | } |
| 1667 | } |
| 1668 | rcu_read_unlock(); |
| 1669 | } |
| 1670 | |
| 1671 | /* All good! */ |
| 1672 | ret = LTTNG_OK; |
| 1673 | |
| 1674 | error: |
| 1675 | return ret; |
| 1676 | } |
| 1677 | |
| 1678 | /* |
| 1679 | * Command LTTNG_CREATE_SESSION processed by the client thread. |
| 1680 | */ |
| 1681 | int cmd_create_session_uri(char *name, struct lttng_uri *uris, |
| 1682 | size_t nb_uri, lttng_sock_cred *creds) |
| 1683 | { |
| 1684 | int ret; |
| 1685 | char *path = NULL; |
| 1686 | struct ltt_session *session; |
| 1687 | |
| 1688 | assert(name); |
| 1689 | |
| 1690 | /* |
| 1691 | * Verify if the session already exist |
| 1692 | * |
| 1693 | * XXX: There is no need for the session lock list here since the caller |
| 1694 | * (process_client_msg) is holding it. We might want to change that so a |
| 1695 | * single command does not lock the entire session list. |
| 1696 | */ |
| 1697 | session = session_find_by_name(name); |
| 1698 | if (session != NULL) { |
| 1699 | ret = LTTNG_ERR_EXIST_SESS; |
| 1700 | goto find_error; |
| 1701 | } |
| 1702 | |
| 1703 | /* Create tracing session in the registry */ |
| 1704 | ret = session_create(name, path, LTTNG_SOCK_GET_UID_CRED(creds), |
| 1705 | LTTNG_SOCK_GET_GID_CRED(creds)); |
| 1706 | if (ret != LTTNG_OK) { |
| 1707 | goto session_error; |
| 1708 | } |
| 1709 | |
| 1710 | /* |
| 1711 | * Get the newly created session pointer back |
| 1712 | * |
| 1713 | * XXX: There is no need for the session lock list here since the caller |
| 1714 | * (process_client_msg) is holding it. We might want to change that so a |
| 1715 | * single command does not lock the entire session list. |
| 1716 | */ |
| 1717 | session = session_find_by_name(name); |
| 1718 | assert(session); |
| 1719 | |
| 1720 | /* Create default consumer output for the session not yet created. */ |
| 1721 | session->consumer = consumer_create_output(CONSUMER_DST_LOCAL); |
| 1722 | if (session->consumer == NULL) { |
| 1723 | ret = LTTNG_ERR_FATAL; |
| 1724 | goto consumer_error; |
| 1725 | } |
| 1726 | |
| 1727 | /* |
| 1728 | * This means that the lttng_create_session call was called with the _path_ |
| 1729 | * argument set to NULL. |
| 1730 | */ |
| 1731 | if (uris == NULL) { |
| 1732 | /* |
| 1733 | * At this point, we'll skip the consumer URI setup and create a |
| 1734 | * session with a NULL path which will flag the session to NOT spawn a |
| 1735 | * consumer. |
| 1736 | */ |
| 1737 | DBG("Create session %s with NO uri, skipping consumer setup", name); |
| 1738 | goto end; |
| 1739 | } |
| 1740 | |
| 1741 | session->start_consumer = 1; |
| 1742 | |
| 1743 | ret = cmd_set_consumer_uri(0, session, nb_uri, uris); |
| 1744 | if (ret != LTTNG_OK) { |
| 1745 | goto consumer_error; |
| 1746 | } |
| 1747 | |
| 1748 | session->consumer->enabled = 1; |
| 1749 | |
| 1750 | end: |
| 1751 | return LTTNG_OK; |
| 1752 | |
| 1753 | consumer_error: |
| 1754 | session_destroy(session); |
| 1755 | session_error: |
| 1756 | find_error: |
| 1757 | return ret; |
| 1758 | } |
| 1759 | |
| 1760 | /* |
| 1761 | * Command LTTNG_DESTROY_SESSION processed by the client thread. |
| 1762 | */ |
| 1763 | int cmd_destroy_session(struct ltt_session *session, int wpipe) |
| 1764 | { |
| 1765 | int ret; |
| 1766 | struct ltt_ust_session *usess; |
| 1767 | struct ltt_kernel_session *ksess; |
| 1768 | |
| 1769 | /* Safety net */ |
| 1770 | assert(session); |
| 1771 | |
| 1772 | usess = session->ust_session; |
| 1773 | ksess = session->kernel_session; |
| 1774 | |
| 1775 | /* Clean kernel session teardown */ |
| 1776 | kernel_destroy_session(ksess); |
| 1777 | |
| 1778 | /* UST session teardown */ |
| 1779 | if (usess) { |
| 1780 | /* Close any relayd session */ |
| 1781 | consumer_output_send_destroy_relayd(usess->consumer); |
| 1782 | |
| 1783 | /* Destroy every UST application related to this session. */ |
| 1784 | ret = ust_app_destroy_trace_all(usess); |
| 1785 | if (ret) { |
| 1786 | ERR("Error in ust_app_destroy_trace_all"); |
| 1787 | } |
| 1788 | |
| 1789 | /* Clean up the rest. */ |
| 1790 | trace_ust_destroy_session(usess); |
| 1791 | } |
| 1792 | |
| 1793 | /* |
| 1794 | * Must notify the kernel thread here to update it's poll set in order to |
| 1795 | * remove the channel(s)' fd just destroyed. |
| 1796 | */ |
| 1797 | ret = notify_thread_pipe(wpipe); |
| 1798 | if (ret < 0) { |
| 1799 | PERROR("write kernel poll pipe"); |
| 1800 | } |
| 1801 | |
| 1802 | ret = session_destroy(session); |
| 1803 | |
| 1804 | return ret; |
| 1805 | } |
| 1806 | |
| 1807 | /* |
| 1808 | * Command LTTNG_CALIBRATE processed by the client thread. |
| 1809 | */ |
| 1810 | int cmd_calibrate(int domain, struct lttng_calibrate *calibrate) |
| 1811 | { |
| 1812 | int ret; |
| 1813 | |
| 1814 | switch (domain) { |
| 1815 | case LTTNG_DOMAIN_KERNEL: |
| 1816 | { |
| 1817 | struct lttng_kernel_calibrate kcalibrate; |
| 1818 | |
| 1819 | kcalibrate.type = calibrate->type; |
| 1820 | ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate); |
| 1821 | if (ret < 0) { |
| 1822 | ret = LTTNG_ERR_KERN_ENABLE_FAIL; |
| 1823 | goto error; |
| 1824 | } |
| 1825 | break; |
| 1826 | } |
| 1827 | case LTTNG_DOMAIN_UST: |
| 1828 | { |
| 1829 | struct lttng_ust_calibrate ucalibrate; |
| 1830 | |
| 1831 | ucalibrate.type = calibrate->type; |
| 1832 | ret = ust_app_calibrate_glb(&ucalibrate); |
| 1833 | if (ret < 0) { |
| 1834 | ret = LTTNG_ERR_UST_CALIBRATE_FAIL; |
| 1835 | goto error; |
| 1836 | } |
| 1837 | break; |
| 1838 | } |
| 1839 | default: |
| 1840 | ret = LTTNG_ERR_UND; |
| 1841 | goto error; |
| 1842 | } |
| 1843 | |
| 1844 | ret = LTTNG_OK; |
| 1845 | |
| 1846 | error: |
| 1847 | return ret; |
| 1848 | } |
| 1849 | |
| 1850 | /* |
| 1851 | * Command LTTNG_REGISTER_CONSUMER processed by the client thread. |
| 1852 | */ |
| 1853 | int cmd_register_consumer(struct ltt_session *session, int domain, |
| 1854 | const char *sock_path, struct consumer_data *cdata) |
| 1855 | { |
| 1856 | int ret, sock; |
| 1857 | struct consumer_socket *socket; |
| 1858 | |
| 1859 | assert(session); |
| 1860 | assert(cdata); |
| 1861 | assert(sock_path); |
| 1862 | |
| 1863 | switch (domain) { |
| 1864 | case LTTNG_DOMAIN_KERNEL: |
| 1865 | { |
| 1866 | struct ltt_kernel_session *ksess = session->kernel_session; |
| 1867 | |
| 1868 | assert(ksess); |
| 1869 | |
| 1870 | /* Can't register a consumer if there is already one */ |
| 1871 | if (ksess->consumer_fds_sent != 0) { |
| 1872 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
| 1873 | goto error; |
| 1874 | } |
| 1875 | |
| 1876 | sock = lttcomm_connect_unix_sock(sock_path); |
| 1877 | if (sock < 0) { |
| 1878 | ret = LTTNG_ERR_CONNECT_FAIL; |
| 1879 | goto error; |
| 1880 | } |
| 1881 | |
| 1882 | socket = consumer_allocate_socket(sock); |
| 1883 | if (socket == NULL) { |
| 1884 | ret = close(sock); |
| 1885 | if (ret < 0) { |
| 1886 | PERROR("close register consumer"); |
| 1887 | } |
| 1888 | ret = LTTNG_ERR_FATAL; |
| 1889 | goto error; |
| 1890 | } |
| 1891 | |
| 1892 | socket->lock = zmalloc(sizeof(pthread_mutex_t)); |
| 1893 | if (socket->lock == NULL) { |
| 1894 | PERROR("zmalloc pthread mutex"); |
| 1895 | ret = LTTNG_ERR_FATAL; |
| 1896 | goto error; |
| 1897 | } |
| 1898 | pthread_mutex_init(socket->lock, NULL); |
| 1899 | socket->registered = 1; |
| 1900 | |
| 1901 | rcu_read_lock(); |
| 1902 | consumer_add_socket(socket, ksess->consumer); |
| 1903 | rcu_read_unlock(); |
| 1904 | |
| 1905 | pthread_mutex_lock(&cdata->pid_mutex); |
| 1906 | cdata->pid = -1; |
| 1907 | pthread_mutex_unlock(&cdata->pid_mutex); |
| 1908 | |
| 1909 | break; |
| 1910 | } |
| 1911 | default: |
| 1912 | /* TODO: Userspace tracing */ |
| 1913 | ret = LTTNG_ERR_UND; |
| 1914 | goto error; |
| 1915 | } |
| 1916 | |
| 1917 | ret = LTTNG_OK; |
| 1918 | |
| 1919 | error: |
| 1920 | return ret; |
| 1921 | } |
| 1922 | |
| 1923 | /* |
| 1924 | * Command LTTNG_LIST_DOMAINS processed by the client thread. |
| 1925 | */ |
| 1926 | ssize_t cmd_list_domains(struct ltt_session *session, |
| 1927 | struct lttng_domain **domains) |
| 1928 | { |
| 1929 | int ret, index = 0; |
| 1930 | ssize_t nb_dom = 0; |
| 1931 | |
| 1932 | if (session->kernel_session != NULL) { |
| 1933 | DBG3("Listing domains found kernel domain"); |
| 1934 | nb_dom++; |
| 1935 | } |
| 1936 | |
| 1937 | if (session->ust_session != NULL) { |
| 1938 | DBG3("Listing domains found UST global domain"); |
| 1939 | nb_dom++; |
| 1940 | } |
| 1941 | |
| 1942 | *domains = zmalloc(nb_dom * sizeof(struct lttng_domain)); |
| 1943 | if (*domains == NULL) { |
| 1944 | ret = LTTNG_ERR_FATAL; |
| 1945 | goto error; |
| 1946 | } |
| 1947 | |
| 1948 | if (session->kernel_session != NULL) { |
| 1949 | (*domains)[index].type = LTTNG_DOMAIN_KERNEL; |
| 1950 | index++; |
| 1951 | } |
| 1952 | |
| 1953 | if (session->ust_session != NULL) { |
| 1954 | (*domains)[index].type = LTTNG_DOMAIN_UST; |
| 1955 | index++; |
| 1956 | } |
| 1957 | |
| 1958 | return nb_dom; |
| 1959 | |
| 1960 | error: |
| 1961 | /* Return negative value to differentiate return code */ |
| 1962 | return -ret; |
| 1963 | } |
| 1964 | |
| 1965 | |
| 1966 | /* |
| 1967 | * Command LTTNG_LIST_CHANNELS processed by the client thread. |
| 1968 | */ |
| 1969 | ssize_t cmd_list_channels(int domain, struct ltt_session *session, |
| 1970 | struct lttng_channel **channels) |
| 1971 | { |
| 1972 | int ret; |
| 1973 | ssize_t nb_chan = 0; |
| 1974 | |
| 1975 | switch (domain) { |
| 1976 | case LTTNG_DOMAIN_KERNEL: |
| 1977 | if (session->kernel_session != NULL) { |
| 1978 | nb_chan = session->kernel_session->channel_count; |
| 1979 | } |
| 1980 | DBG3("Number of kernel channels %zd", nb_chan); |
| 1981 | if (nb_chan <= 0) { |
| 1982 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
| 1983 | } |
| 1984 | break; |
| 1985 | case LTTNG_DOMAIN_UST: |
| 1986 | if (session->ust_session != NULL) { |
| 1987 | nb_chan = lttng_ht_get_count( |
| 1988 | session->ust_session->domain_global.channels); |
| 1989 | } |
| 1990 | DBG3("Number of UST global channels %zd", nb_chan); |
| 1991 | if (nb_chan <= 0) { |
| 1992 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
| 1993 | } |
| 1994 | break; |
| 1995 | default: |
| 1996 | *channels = NULL; |
| 1997 | ret = LTTNG_ERR_UND; |
| 1998 | goto error; |
| 1999 | } |
| 2000 | |
| 2001 | if (nb_chan > 0) { |
| 2002 | *channels = zmalloc(nb_chan * sizeof(struct lttng_channel)); |
| 2003 | if (*channels == NULL) { |
| 2004 | ret = LTTNG_ERR_FATAL; |
| 2005 | goto error; |
| 2006 | } |
| 2007 | |
| 2008 | list_lttng_channels(domain, session, *channels); |
| 2009 | } else { |
| 2010 | *channels = NULL; |
| 2011 | /* Ret value was set in the domain switch case */ |
| 2012 | goto error; |
| 2013 | } |
| 2014 | |
| 2015 | return nb_chan; |
| 2016 | |
| 2017 | error: |
| 2018 | /* Return negative value to differentiate return code */ |
| 2019 | return -ret; |
| 2020 | } |
| 2021 | |
| 2022 | /* |
| 2023 | * Command LTTNG_LIST_EVENTS processed by the client thread. |
| 2024 | */ |
| 2025 | ssize_t cmd_list_events(int domain, struct ltt_session *session, |
| 2026 | char *channel_name, struct lttng_event **events) |
| 2027 | { |
| 2028 | int ret = 0; |
| 2029 | ssize_t nb_event = 0; |
| 2030 | |
| 2031 | switch (domain) { |
| 2032 | case LTTNG_DOMAIN_KERNEL: |
| 2033 | if (session->kernel_session != NULL) { |
| 2034 | nb_event = list_lttng_kernel_events(channel_name, |
| 2035 | session->kernel_session, events); |
| 2036 | } |
| 2037 | break; |
| 2038 | case LTTNG_DOMAIN_UST: |
| 2039 | { |
| 2040 | if (session->ust_session != NULL) { |
| 2041 | nb_event = list_lttng_ust_global_events(channel_name, |
| 2042 | &session->ust_session->domain_global, events); |
| 2043 | } |
| 2044 | break; |
| 2045 | } |
| 2046 | default: |
| 2047 | ret = LTTNG_ERR_UND; |
| 2048 | goto error; |
| 2049 | } |
| 2050 | |
| 2051 | return nb_event; |
| 2052 | |
| 2053 | error: |
| 2054 | /* Return negative value to differentiate return code */ |
| 2055 | return -ret; |
| 2056 | } |
| 2057 | |
| 2058 | /* |
| 2059 | * Using the session list, filled a lttng_session array to send back to the |
| 2060 | * client for session listing. |
| 2061 | * |
| 2062 | * The session list lock MUST be acquired before calling this function. Use |
| 2063 | * session_lock_list() and session_unlock_list(). |
| 2064 | */ |
| 2065 | void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid, |
| 2066 | gid_t gid) |
| 2067 | { |
| 2068 | int ret; |
| 2069 | unsigned int i = 0; |
| 2070 | struct ltt_session *session; |
| 2071 | struct ltt_session_list *list = session_get_list(); |
| 2072 | |
| 2073 | DBG("Getting all available session for UID %d GID %d", |
| 2074 | uid, gid); |
| 2075 | /* |
| 2076 | * Iterate over session list and append data after the control struct in |
| 2077 | * the buffer. |
| 2078 | */ |
| 2079 | cds_list_for_each_entry(session, &list->head, list) { |
| 2080 | /* |
| 2081 | * Only list the sessions the user can control. |
| 2082 | */ |
| 2083 | if (!session_access_ok(session, uid, gid)) { |
| 2084 | continue; |
| 2085 | } |
| 2086 | |
| 2087 | struct ltt_kernel_session *ksess = session->kernel_session; |
| 2088 | struct ltt_ust_session *usess = session->ust_session; |
| 2089 | |
| 2090 | if (session->consumer->type == CONSUMER_DST_NET || |
| 2091 | (ksess && ksess->consumer->type == CONSUMER_DST_NET) || |
| 2092 | (usess && usess->consumer->type == CONSUMER_DST_NET)) { |
| 2093 | ret = build_network_session_path(sessions[i].path, |
| 2094 | sizeof(session[i].path), session); |
| 2095 | } else { |
| 2096 | ret = snprintf(sessions[i].path, sizeof(session[i].path), "%s", |
| 2097 | session->consumer->dst.trace_path); |
| 2098 | } |
| 2099 | if (ret < 0) { |
| 2100 | PERROR("snprintf session path"); |
| 2101 | continue; |
| 2102 | } |
| 2103 | |
| 2104 | strncpy(sessions[i].name, session->name, NAME_MAX); |
| 2105 | sessions[i].name[NAME_MAX - 1] = '\0'; |
| 2106 | sessions[i].enabled = session->enabled; |
| 2107 | i++; |
| 2108 | } |
| 2109 | } |
| 2110 | |
| 2111 | /* |
| 2112 | * Command LTTNG_DISABLE_CONSUMER processed by the client thread. |
| 2113 | */ |
| 2114 | int cmd_disable_consumer(int domain, struct ltt_session *session) |
| 2115 | { |
| 2116 | int ret; |
| 2117 | struct ltt_kernel_session *ksess = session->kernel_session; |
| 2118 | struct ltt_ust_session *usess = session->ust_session; |
| 2119 | struct consumer_output *consumer; |
| 2120 | |
| 2121 | assert(session); |
| 2122 | |
| 2123 | if (session->enabled) { |
| 2124 | /* Can't disable consumer on an already started session */ |
| 2125 | ret = LTTNG_ERR_TRACE_ALREADY_STARTED; |
| 2126 | goto error; |
| 2127 | } |
| 2128 | |
| 2129 | if (!session->start_consumer) { |
| 2130 | ret = LTTNG_ERR_NO_CONSUMER; |
| 2131 | goto error; |
| 2132 | } |
| 2133 | |
| 2134 | switch (domain) { |
| 2135 | case 0: |
| 2136 | DBG("Disable tracing session %s consumer", session->name); |
| 2137 | consumer = session->consumer; |
| 2138 | break; |
| 2139 | case LTTNG_DOMAIN_KERNEL: |
| 2140 | /* Code flow error if we don't have a kernel session here. */ |
| 2141 | assert(ksess); |
| 2142 | |
| 2143 | DBG("Disabling kernel consumer"); |
| 2144 | consumer = ksess->consumer; |
| 2145 | |
| 2146 | break; |
| 2147 | case LTTNG_DOMAIN_UST: |
| 2148 | /* Code flow error if we don't have a UST session here. */ |
| 2149 | assert(usess); |
| 2150 | |
| 2151 | DBG("Disabling UST consumer"); |
| 2152 | consumer = usess->consumer; |
| 2153 | |
| 2154 | break; |
| 2155 | default: |
| 2156 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
| 2157 | goto error; |
| 2158 | } |
| 2159 | |
| 2160 | if (consumer) { |
| 2161 | consumer->enabled = 0; |
| 2162 | /* Success at this point */ |
| 2163 | ret = LTTNG_OK; |
| 2164 | } else { |
| 2165 | ret = LTTNG_ERR_NO_CONSUMER; |
| 2166 | } |
| 2167 | |
| 2168 | error: |
| 2169 | return ret; |
| 2170 | } |
| 2171 | |
| 2172 | /* |
| 2173 | * Command LTTNG_ENABLE_CONSUMER processed by the client thread. |
| 2174 | */ |
| 2175 | int cmd_enable_consumer(int domain, struct ltt_session *session) |
| 2176 | { |
| 2177 | int ret; |
| 2178 | struct ltt_kernel_session *ksess = session->kernel_session; |
| 2179 | struct ltt_ust_session *usess = session->ust_session; |
| 2180 | struct consumer_output *consumer = NULL; |
| 2181 | |
| 2182 | assert(session); |
| 2183 | |
| 2184 | /* Can't enable consumer after session started. */ |
| 2185 | if (session->enabled) { |
| 2186 | ret = LTTNG_ERR_TRACE_ALREADY_STARTED; |
| 2187 | goto error; |
| 2188 | } |
| 2189 | |
| 2190 | switch (domain) { |
| 2191 | case 0: |
| 2192 | assert(session->consumer); |
| 2193 | consumer = session->consumer; |
| 2194 | break; |
| 2195 | case LTTNG_DOMAIN_KERNEL: |
| 2196 | /* Code flow error if we don't have a kernel session here. */ |
| 2197 | assert(ksess); |
| 2198 | |
| 2199 | /* |
| 2200 | * Check if we have already sent fds to the consumer. In that case, |
| 2201 | * the enable-consumer command can't be used because a start trace |
| 2202 | * had previously occured. |
| 2203 | */ |
| 2204 | if (ksess->consumer_fds_sent) { |
| 2205 | ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL; |
| 2206 | goto error; |
| 2207 | } |
| 2208 | |
| 2209 | consumer = ksess->tmp_consumer; |
| 2210 | if (consumer == NULL) { |
| 2211 | ret = LTTNG_OK; |
| 2212 | /* No temp. consumer output exists. Using the current one. */ |
| 2213 | DBG3("No temporary consumer. Using default"); |
| 2214 | consumer = ksess->consumer; |
| 2215 | goto error; |
| 2216 | } |
| 2217 | |
| 2218 | switch (consumer->type) { |
| 2219 | case CONSUMER_DST_LOCAL: |
| 2220 | DBG2("Consumer output is local. Creating directory(ies)"); |
| 2221 | |
| 2222 | /* Create directory(ies) */ |
| 2223 | ret = run_as_mkdir_recursive(consumer->dst.trace_path, |
| 2224 | S_IRWXU | S_IRWXG, session->uid, session->gid); |
| 2225 | if (ret < 0) { |
| 2226 | if (ret != -EEXIST) { |
| 2227 | ERR("Trace directory creation error"); |
| 2228 | ret = LTTNG_ERR_FATAL; |
| 2229 | goto error; |
| 2230 | } |
| 2231 | } |
| 2232 | break; |
| 2233 | case CONSUMER_DST_NET: |
| 2234 | DBG2("Consumer output is network. Validating URIs"); |
| 2235 | /* Validate if we have both control and data path set. */ |
| 2236 | if (!consumer->dst.net.control_isset) { |
| 2237 | ret = LTTNG_ERR_URL_CTRL_MISS; |
| 2238 | goto error; |
| 2239 | } |
| 2240 | |
| 2241 | if (!consumer->dst.net.data_isset) { |
| 2242 | ret = LTTNG_ERR_URL_DATA_MISS; |
| 2243 | goto error; |
| 2244 | } |
| 2245 | |
| 2246 | /* Check established network session state */ |
| 2247 | if (session->net_handle == 0) { |
| 2248 | ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL; |
| 2249 | ERR("Session network handle is not set on enable-consumer"); |
| 2250 | goto error; |
| 2251 | } |
| 2252 | |
| 2253 | break; |
| 2254 | } |
| 2255 | |
| 2256 | /* |
| 2257 | * @session-lock |
| 2258 | * This is race free for now since the session lock is acquired before |
| 2259 | * ending up in this function. No other threads can access this kernel |
| 2260 | * session without this lock hence freeing the consumer output object |
| 2261 | * is valid. |
| 2262 | */ |
| 2263 | rcu_read_lock(); |
| 2264 | /* Destroy current consumer. We are about to replace it */ |
| 2265 | consumer_destroy_output(ksess->consumer); |
| 2266 | rcu_read_unlock(); |
| 2267 | ksess->consumer = consumer; |
| 2268 | ksess->tmp_consumer = NULL; |
| 2269 | |
| 2270 | break; |
| 2271 | case LTTNG_DOMAIN_UST: |
| 2272 | /* Code flow error if we don't have a UST session here. */ |
| 2273 | assert(usess); |
| 2274 | |
| 2275 | /* |
| 2276 | * Check if we have already sent fds to the consumer. In that case, |
| 2277 | * the enable-consumer command can't be used because a start trace |
| 2278 | * had previously occured. |
| 2279 | */ |
| 2280 | if (usess->start_trace) { |
| 2281 | ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL; |
| 2282 | goto error; |
| 2283 | } |
| 2284 | |
| 2285 | consumer = usess->tmp_consumer; |
| 2286 | if (consumer == NULL) { |
| 2287 | ret = LTTNG_OK; |
| 2288 | /* No temp. consumer output exists. Using the current one. */ |
| 2289 | DBG3("No temporary consumer. Using default"); |
| 2290 | consumer = usess->consumer; |
| 2291 | goto error; |
| 2292 | } |
| 2293 | |
| 2294 | switch (consumer->type) { |
| 2295 | case CONSUMER_DST_LOCAL: |
| 2296 | DBG2("Consumer output is local. Creating directory(ies)"); |
| 2297 | |
| 2298 | /* Create directory(ies) */ |
| 2299 | ret = run_as_mkdir_recursive(consumer->dst.trace_path, |
| 2300 | S_IRWXU | S_IRWXG, session->uid, session->gid); |
| 2301 | if (ret < 0) { |
| 2302 | if (ret != -EEXIST) { |
| 2303 | ERR("Trace directory creation error"); |
| 2304 | ret = LTTNG_ERR_FATAL; |
| 2305 | goto error; |
| 2306 | } |
| 2307 | } |
| 2308 | break; |
| 2309 | case CONSUMER_DST_NET: |
| 2310 | DBG2("Consumer output is network. Validating URIs"); |
| 2311 | /* Validate if we have both control and data path set. */ |
| 2312 | if (!consumer->dst.net.control_isset) { |
| 2313 | ret = LTTNG_ERR_URL_CTRL_MISS; |
| 2314 | goto error; |
| 2315 | } |
| 2316 | |
| 2317 | if (!consumer->dst.net.data_isset) { |
| 2318 | ret = LTTNG_ERR_URL_DATA_MISS; |
| 2319 | goto error; |
| 2320 | } |
| 2321 | |
| 2322 | /* Check established network session state */ |
| 2323 | if (session->net_handle == 0) { |
| 2324 | ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL; |
| 2325 | DBG2("Session network handle is not set on enable-consumer"); |
| 2326 | goto error; |
| 2327 | } |
| 2328 | |
| 2329 | if (consumer->net_seq_index == -1) { |
| 2330 | ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL; |
| 2331 | DBG2("Network index is not set on the consumer"); |
| 2332 | goto error; |
| 2333 | } |
| 2334 | |
| 2335 | break; |
| 2336 | } |
| 2337 | |
| 2338 | /* |
| 2339 | * @session-lock |
| 2340 | * This is race free for now since the session lock is acquired before |
| 2341 | * ending up in this function. No other threads can access this kernel |
| 2342 | * session without this lock hence freeing the consumer output object |
| 2343 | * is valid. |
| 2344 | */ |
| 2345 | rcu_read_lock(); |
| 2346 | /* Destroy current consumer. We are about to replace it */ |
| 2347 | consumer_destroy_output(usess->consumer); |
| 2348 | rcu_read_unlock(); |
| 2349 | usess->consumer = consumer; |
| 2350 | usess->tmp_consumer = NULL; |
| 2351 | |
| 2352 | break; |
| 2353 | } |
| 2354 | |
| 2355 | session->start_consumer = 1; |
| 2356 | |
| 2357 | /* Enable it */ |
| 2358 | if (consumer) { |
| 2359 | consumer->enabled = 1; |
| 2360 | /* Success at this point */ |
| 2361 | ret = LTTNG_OK; |
| 2362 | } else { |
| 2363 | /* Should not really happend... */ |
| 2364 | ret = LTTNG_ERR_NO_CONSUMER; |
| 2365 | } |
| 2366 | |
| 2367 | error: |
| 2368 | return ret; |
| 2369 | } |
| 2370 | |
| 2371 | /* |
| 2372 | * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning |
| 2373 | * ready for trace analysis (or anykind of reader) or else 1 for pending data. |
| 2374 | */ |
| 2375 | int cmd_data_pending(struct ltt_session *session) |
| 2376 | { |
| 2377 | int ret; |
| 2378 | struct ltt_kernel_session *ksess = session->kernel_session; |
| 2379 | struct ltt_ust_session *usess = session->ust_session; |
| 2380 | |
| 2381 | assert(session); |
| 2382 | |
| 2383 | /* Session MUST be stopped to ask for data availability. */ |
| 2384 | if (session->enabled) { |
| 2385 | ret = LTTNG_ERR_SESSION_STARTED; |
| 2386 | goto error; |
| 2387 | } |
| 2388 | |
| 2389 | if (ksess && ksess->consumer) { |
| 2390 | ret = consumer_is_data_pending(ksess->id, ksess->consumer); |
| 2391 | if (ret == 1) { |
| 2392 | /* Data is still being extracted for the kernel. */ |
| 2393 | goto error; |
| 2394 | } |
| 2395 | } |
| 2396 | |
| 2397 | if (usess && usess->consumer) { |
| 2398 | ret = consumer_is_data_pending(usess->id, usess->consumer); |
| 2399 | if (ret == 1) { |
| 2400 | /* Data is still being extracted for the kernel. */ |
| 2401 | goto error; |
| 2402 | } |
| 2403 | } |
| 2404 | |
| 2405 | /* Data is ready to be read by a viewer */ |
| 2406 | ret = 0; |
| 2407 | |
| 2408 | error: |
| 2409 | return ret; |
| 2410 | } |
| 2411 | |
| 2412 | /* |
| 2413 | * Init command subsystem. |
| 2414 | */ |
| 2415 | void cmd_init(void) |
| 2416 | { |
| 2417 | /* |
| 2418 | * Set network sequence index to 1 for streams to match a relayd socket on |
| 2419 | * the consumer side. |
| 2420 | */ |
| 2421 | uatomic_set(&relayd_net_seq_idx, 1); |
| 2422 | |
| 2423 | DBG("Command subsystem initialized"); |
| 2424 | } |