| 1 | /* |
| 2 | * liblttngctl.c |
| 3 | * |
| 4 | * Linux Trace Toolkit Control Library |
| 5 | * |
| 6 | * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca> |
| 7 | * |
| 8 | * This library is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU Lesser General Public License, version 2.1 only, |
| 10 | * as published by the Free Software Foundation. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public License |
| 18 | * along with this library; if not, write to the Free Software Foundation, |
| 19 | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | #define _GNU_SOURCE |
| 23 | #include <assert.h> |
| 24 | #include <grp.h> |
| 25 | #include <errno.h> |
| 26 | #include <stdio.h> |
| 27 | #include <stdlib.h> |
| 28 | #include <string.h> |
| 29 | #include <unistd.h> |
| 30 | |
| 31 | #include <common/common.h> |
| 32 | #include <common/defaults.h> |
| 33 | #include <common/sessiond-comm/sessiond-comm.h> |
| 34 | #include <common/uri.h> |
| 35 | #include <common/utils.h> |
| 36 | #include <lttng/lttng.h> |
| 37 | #include <lttng/health-internal.h> |
| 38 | |
| 39 | #include "filter/filter-ast.h" |
| 40 | #include "filter/filter-parser.h" |
| 41 | #include "filter/filter-bytecode.h" |
| 42 | #include "filter/memstream.h" |
| 43 | #include "lttng-ctl-helper.h" |
| 44 | |
| 45 | #ifdef DEBUG |
| 46 | static const int print_xml = 1; |
| 47 | #define dbg_printf(fmt, args...) \ |
| 48 | printf("[debug liblttng-ctl] " fmt, ## args) |
| 49 | #else |
| 50 | static const int print_xml = 0; |
| 51 | #define dbg_printf(fmt, args...) \ |
| 52 | do { \ |
| 53 | /* do nothing but check printf format */ \ |
| 54 | if (0) \ |
| 55 | printf("[debug liblttnctl] " fmt, ## args); \ |
| 56 | } while (0) |
| 57 | #endif |
| 58 | |
| 59 | |
| 60 | /* Socket to session daemon for communication */ |
| 61 | static int sessiond_socket; |
| 62 | static char sessiond_sock_path[PATH_MAX]; |
| 63 | |
| 64 | /* Variables */ |
| 65 | static char *tracing_group; |
| 66 | static int connected; |
| 67 | |
| 68 | /* Global */ |
| 69 | |
| 70 | /* |
| 71 | * Those two variables are used by error.h to silent or control the verbosity of |
| 72 | * error message. They are global to the library so application linking with it |
| 73 | * are able to compile correctly and also control verbosity of the library. |
| 74 | */ |
| 75 | int lttng_opt_quiet; |
| 76 | int lttng_opt_verbose; |
| 77 | |
| 78 | /* |
| 79 | * Copy string from src to dst and enforce null terminated byte. |
| 80 | */ |
| 81 | LTTNG_HIDDEN |
| 82 | void lttng_ctl_copy_string(char *dst, const char *src, size_t len) |
| 83 | { |
| 84 | if (src && dst) { |
| 85 | strncpy(dst, src, len); |
| 86 | /* Enforce the NULL terminated byte */ |
| 87 | dst[len - 1] = '\0'; |
| 88 | } else if (dst) { |
| 89 | dst[0] = '\0'; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | * Copy domain to lttcomm_session_msg domain. |
| 95 | * |
| 96 | * If domain is unknown, default domain will be the kernel. |
| 97 | */ |
| 98 | LTTNG_HIDDEN |
| 99 | void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst, |
| 100 | struct lttng_domain *src) |
| 101 | { |
| 102 | if (src && dst) { |
| 103 | switch (src->type) { |
| 104 | case LTTNG_DOMAIN_KERNEL: |
| 105 | case LTTNG_DOMAIN_UST: |
| 106 | case LTTNG_DOMAIN_JUL: |
| 107 | memcpy(dst, src, sizeof(struct lttng_domain)); |
| 108 | break; |
| 109 | default: |
| 110 | memset(dst, 0, sizeof(struct lttng_domain)); |
| 111 | break; |
| 112 | } |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /* |
| 117 | * Send lttcomm_session_msg to the session daemon. |
| 118 | * |
| 119 | * On success, returns the number of bytes sent (>=0) |
| 120 | * On error, returns -1 |
| 121 | */ |
| 122 | static int send_session_msg(struct lttcomm_session_msg *lsm) |
| 123 | { |
| 124 | int ret; |
| 125 | |
| 126 | if (!connected) { |
| 127 | ret = -LTTNG_ERR_NO_SESSIOND; |
| 128 | goto end; |
| 129 | } |
| 130 | |
| 131 | DBG("LSM cmd type : %d", lsm->cmd_type); |
| 132 | |
| 133 | ret = lttcomm_send_creds_unix_sock(sessiond_socket, lsm, |
| 134 | sizeof(struct lttcomm_session_msg)); |
| 135 | if (ret < 0) { |
| 136 | ret = -LTTNG_ERR_FATAL; |
| 137 | } |
| 138 | |
| 139 | end: |
| 140 | return ret; |
| 141 | } |
| 142 | |
| 143 | /* |
| 144 | * Send var len data to the session daemon. |
| 145 | * |
| 146 | * On success, returns the number of bytes sent (>=0) |
| 147 | * On error, returns -1 |
| 148 | */ |
| 149 | static int send_session_varlen(void *data, size_t len) |
| 150 | { |
| 151 | int ret; |
| 152 | |
| 153 | if (!connected) { |
| 154 | ret = -LTTNG_ERR_NO_SESSIOND; |
| 155 | goto end; |
| 156 | } |
| 157 | |
| 158 | if (!data || !len) { |
| 159 | ret = 0; |
| 160 | goto end; |
| 161 | } |
| 162 | |
| 163 | ret = lttcomm_send_unix_sock(sessiond_socket, data, len); |
| 164 | if (ret < 0) { |
| 165 | ret = -LTTNG_ERR_FATAL; |
| 166 | } |
| 167 | |
| 168 | end: |
| 169 | return ret; |
| 170 | } |
| 171 | |
| 172 | /* |
| 173 | * Receive data from the sessiond socket. |
| 174 | * |
| 175 | * On success, returns the number of bytes received (>=0) |
| 176 | * On error, returns -1 (recvmsg() error) or -ENOTCONN |
| 177 | */ |
| 178 | static int recv_data_sessiond(void *buf, size_t len) |
| 179 | { |
| 180 | int ret; |
| 181 | |
| 182 | if (!connected) { |
| 183 | ret = -LTTNG_ERR_NO_SESSIOND; |
| 184 | goto end; |
| 185 | } |
| 186 | |
| 187 | ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len); |
| 188 | if (ret < 0) { |
| 189 | ret = -LTTNG_ERR_FATAL; |
| 190 | } |
| 191 | |
| 192 | end: |
| 193 | return ret; |
| 194 | } |
| 195 | |
| 196 | /* |
| 197 | * Check if we are in the specified group. |
| 198 | * |
| 199 | * If yes return 1, else return -1. |
| 200 | */ |
| 201 | LTTNG_HIDDEN |
| 202 | int lttng_check_tracing_group(void) |
| 203 | { |
| 204 | struct group *grp_tracing; /* no free(). See getgrnam(3) */ |
| 205 | gid_t *grp_list; |
| 206 | int grp_list_size, grp_id, i; |
| 207 | int ret = -1; |
| 208 | const char *grp_name = tracing_group; |
| 209 | |
| 210 | /* Get GID of group 'tracing' */ |
| 211 | grp_tracing = getgrnam(grp_name); |
| 212 | if (!grp_tracing) { |
| 213 | /* If grp_tracing is NULL, the group does not exist. */ |
| 214 | goto end; |
| 215 | } |
| 216 | |
| 217 | /* Get number of supplementary group IDs */ |
| 218 | grp_list_size = getgroups(0, NULL); |
| 219 | if (grp_list_size < 0) { |
| 220 | perror("getgroups"); |
| 221 | goto end; |
| 222 | } |
| 223 | |
| 224 | /* Alloc group list of the right size */ |
| 225 | grp_list = malloc(grp_list_size * sizeof(gid_t)); |
| 226 | if (!grp_list) { |
| 227 | perror("malloc"); |
| 228 | goto end; |
| 229 | } |
| 230 | grp_id = getgroups(grp_list_size, grp_list); |
| 231 | if (grp_id < 0) { |
| 232 | perror("getgroups"); |
| 233 | goto free_list; |
| 234 | } |
| 235 | |
| 236 | for (i = 0; i < grp_list_size; i++) { |
| 237 | if (grp_list[i] == grp_tracing->gr_gid) { |
| 238 | ret = 1; |
| 239 | break; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | free_list: |
| 244 | free(grp_list); |
| 245 | |
| 246 | end: |
| 247 | return ret; |
| 248 | } |
| 249 | |
| 250 | /* |
| 251 | * Try connect to session daemon with sock_path. |
| 252 | * |
| 253 | * Return 0 on success, else -1 |
| 254 | */ |
| 255 | static int try_connect_sessiond(const char *sock_path) |
| 256 | { |
| 257 | int ret; |
| 258 | |
| 259 | /* If socket exist, we check if the daemon listens for connect. */ |
| 260 | ret = access(sock_path, F_OK); |
| 261 | if (ret < 0) { |
| 262 | /* Not alive */ |
| 263 | goto error; |
| 264 | } |
| 265 | |
| 266 | ret = lttcomm_connect_unix_sock(sock_path); |
| 267 | if (ret < 0) { |
| 268 | /* Not alive */ |
| 269 | goto error; |
| 270 | } |
| 271 | |
| 272 | ret = lttcomm_close_unix_sock(ret); |
| 273 | if (ret < 0) { |
| 274 | perror("lttcomm_close_unix_sock"); |
| 275 | } |
| 276 | |
| 277 | return 0; |
| 278 | |
| 279 | error: |
| 280 | return -1; |
| 281 | } |
| 282 | |
| 283 | /* |
| 284 | * Set sessiond socket path by putting it in the global sessiond_sock_path |
| 285 | * variable. |
| 286 | * |
| 287 | * Returns 0 on success, negative value on failure (the sessiond socket path |
| 288 | * is somehow too long or ENOMEM). |
| 289 | */ |
| 290 | static int set_session_daemon_path(void) |
| 291 | { |
| 292 | int in_tgroup = 0; /* In tracing group */ |
| 293 | uid_t uid; |
| 294 | |
| 295 | uid = getuid(); |
| 296 | |
| 297 | if (uid != 0) { |
| 298 | /* Are we in the tracing group ? */ |
| 299 | in_tgroup = lttng_check_tracing_group(); |
| 300 | } |
| 301 | |
| 302 | if ((uid == 0) || in_tgroup) { |
| 303 | lttng_ctl_copy_string(sessiond_sock_path, |
| 304 | DEFAULT_GLOBAL_CLIENT_UNIX_SOCK, sizeof(sessiond_sock_path)); |
| 305 | } |
| 306 | |
| 307 | if (uid != 0) { |
| 308 | int ret; |
| 309 | |
| 310 | if (in_tgroup) { |
| 311 | /* Tracing group */ |
| 312 | ret = try_connect_sessiond(sessiond_sock_path); |
| 313 | if (ret >= 0) { |
| 314 | goto end; |
| 315 | } |
| 316 | /* Global session daemon not available... */ |
| 317 | } |
| 318 | /* ...or not in tracing group (and not root), default */ |
| 319 | |
| 320 | /* |
| 321 | * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small; |
| 322 | * With GNU C >= 2.1, snprintf returns the required size (excluding closing null) |
| 323 | */ |
| 324 | ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path), |
| 325 | DEFAULT_HOME_CLIENT_UNIX_SOCK, utils_get_home_dir()); |
| 326 | if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) { |
| 327 | goto error; |
| 328 | } |
| 329 | } |
| 330 | end: |
| 331 | return 0; |
| 332 | |
| 333 | error: |
| 334 | return -1; |
| 335 | } |
| 336 | |
| 337 | /* |
| 338 | * Connect to the LTTng session daemon. |
| 339 | * |
| 340 | * On success, return 0. On error, return -1. |
| 341 | */ |
| 342 | static int connect_sessiond(void) |
| 343 | { |
| 344 | int ret; |
| 345 | |
| 346 | /* Don't try to connect if already connected. */ |
| 347 | if (connected) { |
| 348 | return 0; |
| 349 | } |
| 350 | |
| 351 | ret = set_session_daemon_path(); |
| 352 | if (ret < 0) { |
| 353 | goto error; |
| 354 | } |
| 355 | |
| 356 | /* Connect to the sesssion daemon */ |
| 357 | ret = lttcomm_connect_unix_sock(sessiond_sock_path); |
| 358 | if (ret < 0) { |
| 359 | goto error; |
| 360 | } |
| 361 | |
| 362 | sessiond_socket = ret; |
| 363 | connected = 1; |
| 364 | |
| 365 | return 0; |
| 366 | |
| 367 | error: |
| 368 | return -1; |
| 369 | } |
| 370 | |
| 371 | /* |
| 372 | * Clean disconnect from the session daemon. |
| 373 | * On success, return 0. On error, return -1. |
| 374 | */ |
| 375 | static int disconnect_sessiond(void) |
| 376 | { |
| 377 | int ret = 0; |
| 378 | |
| 379 | if (connected) { |
| 380 | ret = lttcomm_close_unix_sock(sessiond_socket); |
| 381 | sessiond_socket = 0; |
| 382 | connected = 0; |
| 383 | } |
| 384 | |
| 385 | return ret; |
| 386 | } |
| 387 | |
| 388 | /* |
| 389 | * Ask the session daemon a specific command and put the data into buf. |
| 390 | * Takes extra var. len. data as input to send to the session daemon. |
| 391 | * |
| 392 | * Return size of data (only payload, not header) or a negative error code. |
| 393 | */ |
| 394 | LTTNG_HIDDEN |
| 395 | int lttng_ctl_ask_sessiond_varlen(struct lttcomm_session_msg *lsm, |
| 396 | void *vardata, size_t varlen, void **buf) |
| 397 | { |
| 398 | int ret; |
| 399 | size_t size; |
| 400 | void *data = NULL; |
| 401 | struct lttcomm_lttng_msg llm; |
| 402 | |
| 403 | ret = connect_sessiond(); |
| 404 | if (ret < 0) { |
| 405 | ret = -LTTNG_ERR_NO_SESSIOND; |
| 406 | goto end; |
| 407 | } |
| 408 | |
| 409 | /* Send command to session daemon */ |
| 410 | ret = send_session_msg(lsm); |
| 411 | if (ret < 0) { |
| 412 | /* Ret value is a valid lttng error code. */ |
| 413 | goto end; |
| 414 | } |
| 415 | /* Send var len data */ |
| 416 | ret = send_session_varlen(vardata, varlen); |
| 417 | if (ret < 0) { |
| 418 | /* Ret value is a valid lttng error code. */ |
| 419 | goto end; |
| 420 | } |
| 421 | |
| 422 | /* Get header from data transmission */ |
| 423 | ret = recv_data_sessiond(&llm, sizeof(llm)); |
| 424 | if (ret < 0) { |
| 425 | /* Ret value is a valid lttng error code. */ |
| 426 | goto end; |
| 427 | } |
| 428 | |
| 429 | /* Check error code if OK */ |
| 430 | if (llm.ret_code != LTTNG_OK) { |
| 431 | ret = -llm.ret_code; |
| 432 | goto end; |
| 433 | } |
| 434 | |
| 435 | size = llm.data_size; |
| 436 | if (size == 0) { |
| 437 | /* If client free with size 0 */ |
| 438 | if (buf != NULL) { |
| 439 | *buf = NULL; |
| 440 | } |
| 441 | ret = 0; |
| 442 | goto end; |
| 443 | } |
| 444 | |
| 445 | data = (void*) malloc(size); |
| 446 | |
| 447 | /* Get payload data */ |
| 448 | ret = recv_data_sessiond(data, size); |
| 449 | if (ret < 0) { |
| 450 | free(data); |
| 451 | goto end; |
| 452 | } |
| 453 | |
| 454 | /* |
| 455 | * Extra protection not to dereference a NULL pointer. If buf is NULL at |
| 456 | * this point, an error is returned and data is freed. |
| 457 | */ |
| 458 | if (buf == NULL) { |
| 459 | ret = -LTTNG_ERR_INVALID; |
| 460 | free(data); |
| 461 | goto end; |
| 462 | } |
| 463 | |
| 464 | *buf = data; |
| 465 | ret = size; |
| 466 | |
| 467 | end: |
| 468 | disconnect_sessiond(); |
| 469 | return ret; |
| 470 | } |
| 471 | |
| 472 | /* |
| 473 | * Create lttng handle and return pointer. |
| 474 | * The returned pointer will be NULL in case of malloc() error. |
| 475 | */ |
| 476 | struct lttng_handle *lttng_create_handle(const char *session_name, |
| 477 | struct lttng_domain *domain) |
| 478 | { |
| 479 | struct lttng_handle *handle = NULL; |
| 480 | |
| 481 | if (domain == NULL) { |
| 482 | goto end; |
| 483 | } |
| 484 | |
| 485 | handle = malloc(sizeof(struct lttng_handle)); |
| 486 | if (handle == NULL) { |
| 487 | PERROR("malloc handle"); |
| 488 | goto end; |
| 489 | } |
| 490 | |
| 491 | /* Copy session name */ |
| 492 | lttng_ctl_copy_string(handle->session_name, session_name, |
| 493 | sizeof(handle->session_name)); |
| 494 | |
| 495 | /* Copy lttng domain */ |
| 496 | lttng_ctl_copy_lttng_domain(&handle->domain, domain); |
| 497 | |
| 498 | end: |
| 499 | return handle; |
| 500 | } |
| 501 | |
| 502 | /* |
| 503 | * Destroy handle by free(3) the pointer. |
| 504 | */ |
| 505 | void lttng_destroy_handle(struct lttng_handle *handle) |
| 506 | { |
| 507 | free(handle); |
| 508 | } |
| 509 | |
| 510 | /* |
| 511 | * Register an outside consumer. |
| 512 | * Returns size of returned session payload data or a negative error code. |
| 513 | */ |
| 514 | int lttng_register_consumer(struct lttng_handle *handle, |
| 515 | const char *socket_path) |
| 516 | { |
| 517 | struct lttcomm_session_msg lsm; |
| 518 | |
| 519 | if (handle == NULL || socket_path == NULL) { |
| 520 | return -LTTNG_ERR_INVALID; |
| 521 | } |
| 522 | |
| 523 | lsm.cmd_type = LTTNG_REGISTER_CONSUMER; |
| 524 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 525 | sizeof(lsm.session.name)); |
| 526 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 527 | |
| 528 | lttng_ctl_copy_string(lsm.u.reg.path, socket_path, sizeof(lsm.u.reg.path)); |
| 529 | |
| 530 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 531 | } |
| 532 | |
| 533 | /* |
| 534 | * Start tracing for all traces of the session. |
| 535 | * Returns size of returned session payload data or a negative error code. |
| 536 | */ |
| 537 | int lttng_start_tracing(const char *session_name) |
| 538 | { |
| 539 | struct lttcomm_session_msg lsm; |
| 540 | |
| 541 | if (session_name == NULL) { |
| 542 | return -LTTNG_ERR_INVALID; |
| 543 | } |
| 544 | |
| 545 | lsm.cmd_type = LTTNG_START_TRACE; |
| 546 | |
| 547 | lttng_ctl_copy_string(lsm.session.name, session_name, |
| 548 | sizeof(lsm.session.name)); |
| 549 | |
| 550 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 551 | } |
| 552 | |
| 553 | /* |
| 554 | * Stop tracing for all traces of the session. |
| 555 | */ |
| 556 | static int _lttng_stop_tracing(const char *session_name, int wait) |
| 557 | { |
| 558 | int ret, data_ret; |
| 559 | struct lttcomm_session_msg lsm; |
| 560 | |
| 561 | if (session_name == NULL) { |
| 562 | return -LTTNG_ERR_INVALID; |
| 563 | } |
| 564 | |
| 565 | lsm.cmd_type = LTTNG_STOP_TRACE; |
| 566 | |
| 567 | lttng_ctl_copy_string(lsm.session.name, session_name, |
| 568 | sizeof(lsm.session.name)); |
| 569 | |
| 570 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
| 571 | if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) { |
| 572 | goto error; |
| 573 | } |
| 574 | |
| 575 | if (!wait) { |
| 576 | goto end; |
| 577 | } |
| 578 | |
| 579 | _MSG("Waiting for data availability"); |
| 580 | fflush(stdout); |
| 581 | |
| 582 | /* Check for data availability */ |
| 583 | do { |
| 584 | data_ret = lttng_data_pending(session_name); |
| 585 | if (data_ret < 0) { |
| 586 | /* Return the data available call error. */ |
| 587 | ret = data_ret; |
| 588 | goto error; |
| 589 | } |
| 590 | |
| 591 | /* |
| 592 | * Data sleep time before retrying (in usec). Don't sleep if the call |
| 593 | * returned value indicates availability. |
| 594 | */ |
| 595 | if (data_ret) { |
| 596 | usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME); |
| 597 | _MSG("."); |
| 598 | fflush(stdout); |
| 599 | } |
| 600 | } while (data_ret != 0); |
| 601 | |
| 602 | MSG(""); |
| 603 | |
| 604 | end: |
| 605 | error: |
| 606 | return ret; |
| 607 | } |
| 608 | |
| 609 | /* |
| 610 | * Stop tracing and wait for data availability. |
| 611 | */ |
| 612 | int lttng_stop_tracing(const char *session_name) |
| 613 | { |
| 614 | return _lttng_stop_tracing(session_name, 1); |
| 615 | } |
| 616 | |
| 617 | /* |
| 618 | * Stop tracing but _don't_ wait for data availability. |
| 619 | */ |
| 620 | int lttng_stop_tracing_no_wait(const char *session_name) |
| 621 | { |
| 622 | return _lttng_stop_tracing(session_name, 0); |
| 623 | } |
| 624 | |
| 625 | /* |
| 626 | * Add context to a channel. |
| 627 | * |
| 628 | * If the given channel is NULL, add the contexts to all channels. |
| 629 | * The event_name param is ignored. |
| 630 | * |
| 631 | * Returns the size of the returned payload data or a negative error code. |
| 632 | */ |
| 633 | int lttng_add_context(struct lttng_handle *handle, |
| 634 | struct lttng_event_context *ctx, const char *event_name, |
| 635 | const char *channel_name) |
| 636 | { |
| 637 | struct lttcomm_session_msg lsm; |
| 638 | |
| 639 | /* Safety check. Both are mandatory */ |
| 640 | if (handle == NULL || ctx == NULL) { |
| 641 | return -LTTNG_ERR_INVALID; |
| 642 | } |
| 643 | |
| 644 | memset(&lsm, 0, sizeof(lsm)); |
| 645 | |
| 646 | lsm.cmd_type = LTTNG_ADD_CONTEXT; |
| 647 | |
| 648 | /* If no channel name, send empty string. */ |
| 649 | if (channel_name == NULL) { |
| 650 | lttng_ctl_copy_string(lsm.u.context.channel_name, "", |
| 651 | sizeof(lsm.u.context.channel_name)); |
| 652 | } else { |
| 653 | lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name, |
| 654 | sizeof(lsm.u.context.channel_name)); |
| 655 | } |
| 656 | |
| 657 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 658 | |
| 659 | memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context)); |
| 660 | |
| 661 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 662 | sizeof(lsm.session.name)); |
| 663 | |
| 664 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 665 | } |
| 666 | |
| 667 | /* |
| 668 | * Enable event(s) for a channel. |
| 669 | * If no event name is specified, all events are enabled. |
| 670 | * If no channel name is specified, the default 'channel0' is used. |
| 671 | * Returns size of returned session payload data or a negative error code. |
| 672 | */ |
| 673 | int lttng_enable_event(struct lttng_handle *handle, |
| 674 | struct lttng_event *ev, const char *channel_name) |
| 675 | { |
| 676 | return lttng_enable_event_with_exclusions(handle, ev, channel_name, |
| 677 | NULL, 0, NULL); |
| 678 | } |
| 679 | |
| 680 | /* |
| 681 | * Create or enable an event with a filter expression. |
| 682 | * |
| 683 | * Return negative error value on error. |
| 684 | * Return size of returned session payload data if OK. |
| 685 | */ |
| 686 | int lttng_enable_event_with_filter(struct lttng_handle *handle, |
| 687 | struct lttng_event *event, const char *channel_name, |
| 688 | const char *filter_expression) |
| 689 | { |
| 690 | return lttng_enable_event_with_exclusions(handle, event, channel_name, |
| 691 | filter_expression, 0, NULL); |
| 692 | } |
| 693 | |
| 694 | /* |
| 695 | * Enable event(s) for a channel, possibly with exclusions and a filter. |
| 696 | * If no event name is specified, all events are enabled. |
| 697 | * If no channel name is specified, the default name is used. |
| 698 | * If filter expression is not NULL, the filter is set for the event. |
| 699 | * If exclusion count is not zero, the exclusions are set for the event. |
| 700 | * Returns size of returned session payload data or a negative error code. |
| 701 | */ |
| 702 | int lttng_enable_event_with_exclusions(struct lttng_handle *handle, |
| 703 | struct lttng_event *ev, const char *channel_name, |
| 704 | const char *filter_expression, |
| 705 | int exclusion_count, char **exclusion_list) |
| 706 | { |
| 707 | struct lttcomm_session_msg lsm; |
| 708 | char *varlen_data; |
| 709 | int ret = 0; |
| 710 | struct filter_parser_ctx *ctx = NULL; |
| 711 | FILE *fmem = NULL; |
| 712 | |
| 713 | if (handle == NULL || ev == NULL) { |
| 714 | return -LTTNG_ERR_INVALID; |
| 715 | } |
| 716 | |
| 717 | /* Empty filter string will always be rejected by the parser |
| 718 | * anyway, so treat this corner-case early to eliminate |
| 719 | * lttng_fmemopen error for 0-byte allocation. |
| 720 | */ |
| 721 | if (filter_expression && filter_expression[0] == '\0') { |
| 722 | return -LTTNG_ERR_INVALID; |
| 723 | } |
| 724 | |
| 725 | memset(&lsm, 0, sizeof(lsm)); |
| 726 | |
| 727 | /* If no channel name, send empty string. */ |
| 728 | if (channel_name == NULL) { |
| 729 | lttng_ctl_copy_string(lsm.u.enable.channel_name, "", |
| 730 | sizeof(lsm.u.enable.channel_name)); |
| 731 | } else { |
| 732 | lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name, |
| 733 | sizeof(lsm.u.enable.channel_name)); |
| 734 | } |
| 735 | |
| 736 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 737 | lsm.cmd_type = LTTNG_ENABLE_EVENT; |
| 738 | |
| 739 | memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event)); |
| 740 | |
| 741 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 742 | sizeof(lsm.session.name)); |
| 743 | lsm.u.enable.exclusion_count = exclusion_count; |
| 744 | lsm.u.enable.bytecode_len = 0; |
| 745 | |
| 746 | if (exclusion_count == 0 && filter_expression == NULL) { |
| 747 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
| 748 | return ret; |
| 749 | } |
| 750 | |
| 751 | /* |
| 752 | * We have either a filter or some exclusions, so we need to set up |
| 753 | * a variable-length memory block from where to send the data |
| 754 | */ |
| 755 | |
| 756 | /* Parse filter expression */ |
| 757 | if (filter_expression != NULL) { |
| 758 | |
| 759 | /* |
| 760 | * casting const to non-const, as the underlying function will |
| 761 | * use it in read-only mode. |
| 762 | */ |
| 763 | fmem = lttng_fmemopen((void *) filter_expression, |
| 764 | strlen(filter_expression), "r"); |
| 765 | if (!fmem) { |
| 766 | fprintf(stderr, "Error opening memory as stream\n"); |
| 767 | return -LTTNG_ERR_FILTER_NOMEM; |
| 768 | } |
| 769 | ctx = filter_parser_ctx_alloc(fmem); |
| 770 | if (!ctx) { |
| 771 | fprintf(stderr, "Error allocating parser\n"); |
| 772 | ret = -LTTNG_ERR_FILTER_NOMEM; |
| 773 | goto filter_alloc_error; |
| 774 | } |
| 775 | ret = filter_parser_ctx_append_ast(ctx); |
| 776 | if (ret) { |
| 777 | fprintf(stderr, "Parse error\n"); |
| 778 | ret = -LTTNG_ERR_FILTER_INVAL; |
| 779 | goto parse_error; |
| 780 | } |
| 781 | ret = filter_visitor_set_parent(ctx); |
| 782 | if (ret) { |
| 783 | fprintf(stderr, "Set parent error\n"); |
| 784 | ret = -LTTNG_ERR_FILTER_INVAL; |
| 785 | goto parse_error; |
| 786 | } |
| 787 | if (print_xml) { |
| 788 | ret = filter_visitor_print_xml(ctx, stdout, 0); |
| 789 | if (ret) { |
| 790 | fflush(stdout); |
| 791 | fprintf(stderr, "XML print error\n"); |
| 792 | ret = -LTTNG_ERR_FILTER_INVAL; |
| 793 | goto parse_error; |
| 794 | } |
| 795 | } |
| 796 | |
| 797 | dbg_printf("Generating IR... "); |
| 798 | fflush(stdout); |
| 799 | ret = filter_visitor_ir_generate(ctx); |
| 800 | if (ret) { |
| 801 | fprintf(stderr, "Generate IR error\n"); |
| 802 | ret = -LTTNG_ERR_FILTER_INVAL; |
| 803 | goto parse_error; |
| 804 | } |
| 805 | dbg_printf("done\n"); |
| 806 | |
| 807 | dbg_printf("Validating IR... "); |
| 808 | fflush(stdout); |
| 809 | ret = filter_visitor_ir_check_binary_op_nesting(ctx); |
| 810 | if (ret) { |
| 811 | ret = -LTTNG_ERR_FILTER_INVAL; |
| 812 | goto parse_error; |
| 813 | } |
| 814 | dbg_printf("done\n"); |
| 815 | |
| 816 | dbg_printf("Generating bytecode... "); |
| 817 | fflush(stdout); |
| 818 | ret = filter_visitor_bytecode_generate(ctx); |
| 819 | if (ret) { |
| 820 | fprintf(stderr, "Generate bytecode error\n"); |
| 821 | ret = -LTTNG_ERR_FILTER_INVAL; |
| 822 | goto parse_error; |
| 823 | } |
| 824 | dbg_printf("done\n"); |
| 825 | dbg_printf("Size of bytecode generated: %u bytes.\n", |
| 826 | bytecode_get_len(&ctx->bytecode->b)); |
| 827 | |
| 828 | lsm.u.enable.bytecode_len = sizeof(ctx->bytecode->b) |
| 829 | + bytecode_get_len(&ctx->bytecode->b); |
| 830 | } |
| 831 | |
| 832 | /* Allocate variable length data */ |
| 833 | if (lsm.u.enable.exclusion_count != 0) { |
| 834 | varlen_data = zmalloc(lsm.u.enable.bytecode_len |
| 835 | + LTTNG_SYMBOL_NAME_LEN * exclusion_count); |
| 836 | if (!varlen_data) { |
| 837 | ret = -LTTNG_ERR_EXCLUSION_NOMEM; |
| 838 | goto varlen_alloc_error; |
| 839 | } |
| 840 | /* Put exclusion names first in the data */ |
| 841 | while (exclusion_count--) { |
| 842 | strncpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * exclusion_count, |
| 843 | *(exclusion_list + exclusion_count), |
| 844 | LTTNG_SYMBOL_NAME_LEN); |
| 845 | } |
| 846 | /* Add filter bytecode next */ |
| 847 | if (lsm.u.enable.bytecode_len != 0) { |
| 848 | memcpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count, |
| 849 | &ctx->bytecode->b, |
| 850 | lsm.u.enable.bytecode_len); |
| 851 | } |
| 852 | } else { |
| 853 | /* no exclusions - use the already allocated filter bytecode */ |
| 854 | varlen_data = (char *)(&ctx->bytecode->b); |
| 855 | } |
| 856 | |
| 857 | ret = lttng_ctl_ask_sessiond_varlen(&lsm, varlen_data, |
| 858 | (LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count) + |
| 859 | lsm.u.enable.bytecode_len, NULL); |
| 860 | |
| 861 | if (lsm.u.enable.exclusion_count != 0) { |
| 862 | free(varlen_data); |
| 863 | } |
| 864 | |
| 865 | varlen_alloc_error: |
| 866 | if (filter_expression) { |
| 867 | filter_bytecode_free(ctx); |
| 868 | filter_ir_free(ctx); |
| 869 | filter_parser_ctx_free(ctx); |
| 870 | if (fclose(fmem) != 0) { |
| 871 | perror("fclose"); |
| 872 | } |
| 873 | } |
| 874 | return ret; |
| 875 | |
| 876 | parse_error: |
| 877 | filter_bytecode_free(ctx); |
| 878 | filter_ir_free(ctx); |
| 879 | filter_parser_ctx_free(ctx); |
| 880 | filter_alloc_error: |
| 881 | if (fclose(fmem) != 0) { |
| 882 | perror("fclose"); |
| 883 | } |
| 884 | return ret; |
| 885 | } |
| 886 | |
| 887 | /* |
| 888 | * Disable event(s) of a channel and domain. |
| 889 | * If no event name is specified, all events are disabled. |
| 890 | * If no channel name is specified, the default 'channel0' is used. |
| 891 | * Returns size of returned session payload data or a negative error code. |
| 892 | */ |
| 893 | int lttng_disable_event(struct lttng_handle *handle, const char *name, |
| 894 | const char *channel_name) |
| 895 | { |
| 896 | struct lttcomm_session_msg lsm; |
| 897 | |
| 898 | if (handle == NULL) { |
| 899 | return -LTTNG_ERR_INVALID; |
| 900 | } |
| 901 | |
| 902 | memset(&lsm, 0, sizeof(lsm)); |
| 903 | |
| 904 | /* If no channel name, send empty string. */ |
| 905 | if (channel_name == NULL) { |
| 906 | lttng_ctl_copy_string(lsm.u.disable.channel_name, "", |
| 907 | sizeof(lsm.u.disable.channel_name)); |
| 908 | } else { |
| 909 | lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name, |
| 910 | sizeof(lsm.u.disable.channel_name)); |
| 911 | } |
| 912 | |
| 913 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 914 | |
| 915 | if (name != NULL) { |
| 916 | lttng_ctl_copy_string(lsm.u.disable.name, name, |
| 917 | sizeof(lsm.u.disable.name)); |
| 918 | lsm.cmd_type = LTTNG_DISABLE_EVENT; |
| 919 | } else { |
| 920 | lsm.cmd_type = LTTNG_DISABLE_ALL_EVENT; |
| 921 | } |
| 922 | |
| 923 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 924 | sizeof(lsm.session.name)); |
| 925 | |
| 926 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 927 | } |
| 928 | |
| 929 | /* |
| 930 | * Enable channel per domain |
| 931 | * Returns size of returned session payload data or a negative error code. |
| 932 | */ |
| 933 | int lttng_enable_channel(struct lttng_handle *handle, |
| 934 | struct lttng_channel *chan) |
| 935 | { |
| 936 | struct lttcomm_session_msg lsm; |
| 937 | |
| 938 | /* |
| 939 | * NULL arguments are forbidden. No default values. |
| 940 | */ |
| 941 | if (handle == NULL || chan == NULL) { |
| 942 | return -LTTNG_ERR_INVALID; |
| 943 | } |
| 944 | |
| 945 | memset(&lsm, 0, sizeof(lsm)); |
| 946 | |
| 947 | memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan)); |
| 948 | |
| 949 | lsm.cmd_type = LTTNG_ENABLE_CHANNEL; |
| 950 | |
| 951 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 952 | |
| 953 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 954 | sizeof(lsm.session.name)); |
| 955 | |
| 956 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 957 | } |
| 958 | |
| 959 | /* |
| 960 | * All tracing will be stopped for registered events of the channel. |
| 961 | * Returns size of returned session payload data or a negative error code. |
| 962 | */ |
| 963 | int lttng_disable_channel(struct lttng_handle *handle, const char *name) |
| 964 | { |
| 965 | struct lttcomm_session_msg lsm; |
| 966 | |
| 967 | /* Safety check. Both are mandatory */ |
| 968 | if (handle == NULL || name == NULL) { |
| 969 | return -LTTNG_ERR_INVALID; |
| 970 | } |
| 971 | |
| 972 | memset(&lsm, 0, sizeof(lsm)); |
| 973 | |
| 974 | lsm.cmd_type = LTTNG_DISABLE_CHANNEL; |
| 975 | |
| 976 | lttng_ctl_copy_string(lsm.u.disable.channel_name, name, |
| 977 | sizeof(lsm.u.disable.channel_name)); |
| 978 | |
| 979 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 980 | |
| 981 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 982 | sizeof(lsm.session.name)); |
| 983 | |
| 984 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 985 | } |
| 986 | |
| 987 | /* |
| 988 | * Lists all available tracepoints of domain. |
| 989 | * Sets the contents of the events array. |
| 990 | * Returns the number of lttng_event entries in events; |
| 991 | * on error, returns a negative value. |
| 992 | */ |
| 993 | int lttng_list_tracepoints(struct lttng_handle *handle, |
| 994 | struct lttng_event **events) |
| 995 | { |
| 996 | int ret; |
| 997 | struct lttcomm_session_msg lsm; |
| 998 | |
| 999 | if (handle == NULL) { |
| 1000 | return -LTTNG_ERR_INVALID; |
| 1001 | } |
| 1002 | |
| 1003 | lsm.cmd_type = LTTNG_LIST_TRACEPOINTS; |
| 1004 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 1005 | |
| 1006 | ret = lttng_ctl_ask_sessiond(&lsm, (void **) events); |
| 1007 | if (ret < 0) { |
| 1008 | return ret; |
| 1009 | } |
| 1010 | |
| 1011 | return ret / sizeof(struct lttng_event); |
| 1012 | } |
| 1013 | |
| 1014 | /* |
| 1015 | * Lists all available tracepoint fields of domain. |
| 1016 | * Sets the contents of the event field array. |
| 1017 | * Returns the number of lttng_event_field entries in events; |
| 1018 | * on error, returns a negative value. |
| 1019 | */ |
| 1020 | int lttng_list_tracepoint_fields(struct lttng_handle *handle, |
| 1021 | struct lttng_event_field **fields) |
| 1022 | { |
| 1023 | int ret; |
| 1024 | struct lttcomm_session_msg lsm; |
| 1025 | |
| 1026 | if (handle == NULL) { |
| 1027 | return -LTTNG_ERR_INVALID; |
| 1028 | } |
| 1029 | |
| 1030 | lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS; |
| 1031 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 1032 | |
| 1033 | ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields); |
| 1034 | if (ret < 0) { |
| 1035 | return ret; |
| 1036 | } |
| 1037 | |
| 1038 | return ret / sizeof(struct lttng_event_field); |
| 1039 | } |
| 1040 | |
| 1041 | /* |
| 1042 | * Returns a human readable string describing |
| 1043 | * the error code (a negative value). |
| 1044 | */ |
| 1045 | const char *lttng_strerror(int code) |
| 1046 | { |
| 1047 | return error_get_str(code); |
| 1048 | } |
| 1049 | |
| 1050 | /* |
| 1051 | * Create a brand new session using name and url for destination. |
| 1052 | * |
| 1053 | * Returns LTTNG_OK on success or a negative error code. |
| 1054 | */ |
| 1055 | int lttng_create_session(const char *name, const char *url) |
| 1056 | { |
| 1057 | int ret; |
| 1058 | ssize_t size; |
| 1059 | struct lttcomm_session_msg lsm; |
| 1060 | struct lttng_uri *uris = NULL; |
| 1061 | |
| 1062 | if (name == NULL) { |
| 1063 | return -LTTNG_ERR_INVALID; |
| 1064 | } |
| 1065 | |
| 1066 | memset(&lsm, 0, sizeof(lsm)); |
| 1067 | |
| 1068 | lsm.cmd_type = LTTNG_CREATE_SESSION; |
| 1069 | lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name)); |
| 1070 | |
| 1071 | /* There should never be a data URL */ |
| 1072 | size = uri_parse_str_urls(url, NULL, &uris); |
| 1073 | if (size < 0) { |
| 1074 | return -LTTNG_ERR_INVALID; |
| 1075 | } |
| 1076 | |
| 1077 | lsm.u.uri.size = size; |
| 1078 | |
| 1079 | ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris, |
| 1080 | sizeof(struct lttng_uri) * size, NULL); |
| 1081 | |
| 1082 | free(uris); |
| 1083 | return ret; |
| 1084 | } |
| 1085 | |
| 1086 | /* |
| 1087 | * Destroy session using name. |
| 1088 | * Returns size of returned session payload data or a negative error code. |
| 1089 | */ |
| 1090 | int lttng_destroy_session(const char *session_name) |
| 1091 | { |
| 1092 | struct lttcomm_session_msg lsm; |
| 1093 | |
| 1094 | if (session_name == NULL) { |
| 1095 | return -LTTNG_ERR_INVALID; |
| 1096 | } |
| 1097 | |
| 1098 | lsm.cmd_type = LTTNG_DESTROY_SESSION; |
| 1099 | |
| 1100 | lttng_ctl_copy_string(lsm.session.name, session_name, |
| 1101 | sizeof(lsm.session.name)); |
| 1102 | |
| 1103 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 1104 | } |
| 1105 | |
| 1106 | /* |
| 1107 | * Ask the session daemon for all available sessions. |
| 1108 | * Sets the contents of the sessions array. |
| 1109 | * Returns the number of lttng_session entries in sessions; |
| 1110 | * on error, returns a negative value. |
| 1111 | */ |
| 1112 | int lttng_list_sessions(struct lttng_session **sessions) |
| 1113 | { |
| 1114 | int ret; |
| 1115 | struct lttcomm_session_msg lsm; |
| 1116 | |
| 1117 | lsm.cmd_type = LTTNG_LIST_SESSIONS; |
| 1118 | ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions); |
| 1119 | if (ret < 0) { |
| 1120 | return ret; |
| 1121 | } |
| 1122 | |
| 1123 | return ret / sizeof(struct lttng_session); |
| 1124 | } |
| 1125 | |
| 1126 | /* |
| 1127 | * Ask the session daemon for all available domains of a session. |
| 1128 | * Sets the contents of the domains array. |
| 1129 | * Returns the number of lttng_domain entries in domains; |
| 1130 | * on error, returns a negative value. |
| 1131 | */ |
| 1132 | int lttng_list_domains(const char *session_name, |
| 1133 | struct lttng_domain **domains) |
| 1134 | { |
| 1135 | int ret; |
| 1136 | struct lttcomm_session_msg lsm; |
| 1137 | |
| 1138 | if (session_name == NULL) { |
| 1139 | return -LTTNG_ERR_INVALID; |
| 1140 | } |
| 1141 | |
| 1142 | lsm.cmd_type = LTTNG_LIST_DOMAINS; |
| 1143 | |
| 1144 | lttng_ctl_copy_string(lsm.session.name, session_name, |
| 1145 | sizeof(lsm.session.name)); |
| 1146 | |
| 1147 | ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains); |
| 1148 | if (ret < 0) { |
| 1149 | return ret; |
| 1150 | } |
| 1151 | |
| 1152 | return ret / sizeof(struct lttng_domain); |
| 1153 | } |
| 1154 | |
| 1155 | /* |
| 1156 | * Ask the session daemon for all available channels of a session. |
| 1157 | * Sets the contents of the channels array. |
| 1158 | * Returns the number of lttng_channel entries in channels; |
| 1159 | * on error, returns a negative value. |
| 1160 | */ |
| 1161 | int lttng_list_channels(struct lttng_handle *handle, |
| 1162 | struct lttng_channel **channels) |
| 1163 | { |
| 1164 | int ret; |
| 1165 | struct lttcomm_session_msg lsm; |
| 1166 | |
| 1167 | if (handle == NULL) { |
| 1168 | return -LTTNG_ERR_INVALID; |
| 1169 | } |
| 1170 | |
| 1171 | lsm.cmd_type = LTTNG_LIST_CHANNELS; |
| 1172 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 1173 | sizeof(lsm.session.name)); |
| 1174 | |
| 1175 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 1176 | |
| 1177 | ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels); |
| 1178 | if (ret < 0) { |
| 1179 | return ret; |
| 1180 | } |
| 1181 | |
| 1182 | return ret / sizeof(struct lttng_channel); |
| 1183 | } |
| 1184 | |
| 1185 | /* |
| 1186 | * Ask the session daemon for all available events of a session channel. |
| 1187 | * Sets the contents of the events array. |
| 1188 | * Returns the number of lttng_event entries in events; |
| 1189 | * on error, returns a negative value. |
| 1190 | */ |
| 1191 | int lttng_list_events(struct lttng_handle *handle, |
| 1192 | const char *channel_name, struct lttng_event **events) |
| 1193 | { |
| 1194 | int ret; |
| 1195 | struct lttcomm_session_msg lsm; |
| 1196 | |
| 1197 | /* Safety check. An handle and channel name are mandatory */ |
| 1198 | if (handle == NULL || channel_name == NULL) { |
| 1199 | return -LTTNG_ERR_INVALID; |
| 1200 | } |
| 1201 | |
| 1202 | lsm.cmd_type = LTTNG_LIST_EVENTS; |
| 1203 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 1204 | sizeof(lsm.session.name)); |
| 1205 | lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name, |
| 1206 | sizeof(lsm.u.list.channel_name)); |
| 1207 | |
| 1208 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 1209 | |
| 1210 | ret = lttng_ctl_ask_sessiond(&lsm, (void**) events); |
| 1211 | if (ret < 0) { |
| 1212 | return ret; |
| 1213 | } |
| 1214 | |
| 1215 | return ret / sizeof(struct lttng_event); |
| 1216 | } |
| 1217 | |
| 1218 | /* |
| 1219 | * Sets the tracing_group variable with name. |
| 1220 | * This function allocates memory pointed to by tracing_group. |
| 1221 | * On success, returns 0, on error, returns -1 (null name) or -ENOMEM. |
| 1222 | */ |
| 1223 | int lttng_set_tracing_group(const char *name) |
| 1224 | { |
| 1225 | if (name == NULL) { |
| 1226 | return -LTTNG_ERR_INVALID; |
| 1227 | } |
| 1228 | |
| 1229 | if (asprintf(&tracing_group, "%s", name) < 0) { |
| 1230 | return -LTTNG_ERR_FATAL; |
| 1231 | } |
| 1232 | |
| 1233 | return 0; |
| 1234 | } |
| 1235 | |
| 1236 | /* |
| 1237 | * Returns size of returned session payload data or a negative error code. |
| 1238 | */ |
| 1239 | int lttng_calibrate(struct lttng_handle *handle, |
| 1240 | struct lttng_calibrate *calibrate) |
| 1241 | { |
| 1242 | struct lttcomm_session_msg lsm; |
| 1243 | |
| 1244 | /* Safety check. NULL pointer are forbidden */ |
| 1245 | if (handle == NULL || calibrate == NULL) { |
| 1246 | return -LTTNG_ERR_INVALID; |
| 1247 | } |
| 1248 | |
| 1249 | lsm.cmd_type = LTTNG_CALIBRATE; |
| 1250 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 1251 | |
| 1252 | memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate)); |
| 1253 | |
| 1254 | return lttng_ctl_ask_sessiond(&lsm, NULL); |
| 1255 | } |
| 1256 | |
| 1257 | /* |
| 1258 | * Set default channel attributes. |
| 1259 | * If either or both of the arguments are null, attr content is zeroe'd. |
| 1260 | */ |
| 1261 | void lttng_channel_set_default_attr(struct lttng_domain *domain, |
| 1262 | struct lttng_channel_attr *attr) |
| 1263 | { |
| 1264 | /* Safety check */ |
| 1265 | if (attr == NULL || domain == NULL) { |
| 1266 | return; |
| 1267 | } |
| 1268 | |
| 1269 | memset(attr, 0, sizeof(struct lttng_channel_attr)); |
| 1270 | |
| 1271 | /* Same for all domains. */ |
| 1272 | attr->overwrite = DEFAULT_CHANNEL_OVERWRITE; |
| 1273 | attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE; |
| 1274 | attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT; |
| 1275 | |
| 1276 | switch (domain->type) { |
| 1277 | case LTTNG_DOMAIN_KERNEL: |
| 1278 | attr->switch_timer_interval = DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER; |
| 1279 | attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER; |
| 1280 | attr->subbuf_size = default_get_kernel_channel_subbuf_size(); |
| 1281 | attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM; |
| 1282 | attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT; |
| 1283 | break; |
| 1284 | case LTTNG_DOMAIN_UST: |
| 1285 | switch (domain->buf_type) { |
| 1286 | case LTTNG_BUFFER_PER_UID: |
| 1287 | attr->subbuf_size = default_get_ust_uid_channel_subbuf_size(); |
| 1288 | attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM; |
| 1289 | attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT; |
| 1290 | attr->switch_timer_interval = DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER; |
| 1291 | attr->read_timer_interval = DEFAULT_UST_UID_CHANNEL_READ_TIMER; |
| 1292 | break; |
| 1293 | case LTTNG_BUFFER_PER_PID: |
| 1294 | default: |
| 1295 | attr->subbuf_size = default_get_ust_pid_channel_subbuf_size(); |
| 1296 | attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM; |
| 1297 | attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT; |
| 1298 | attr->switch_timer_interval = DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER; |
| 1299 | attr->read_timer_interval = DEFAULT_UST_PID_CHANNEL_READ_TIMER; |
| 1300 | break; |
| 1301 | } |
| 1302 | default: |
| 1303 | /* Default behavior: leave set to 0. */ |
| 1304 | break; |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | /* |
| 1309 | * Check if session daemon is alive. |
| 1310 | * |
| 1311 | * Return 1 if alive or 0 if not. |
| 1312 | * On error returns a negative value. |
| 1313 | */ |
| 1314 | int lttng_session_daemon_alive(void) |
| 1315 | { |
| 1316 | int ret; |
| 1317 | |
| 1318 | ret = set_session_daemon_path(); |
| 1319 | if (ret < 0) { |
| 1320 | /* Error */ |
| 1321 | return ret; |
| 1322 | } |
| 1323 | |
| 1324 | if (*sessiond_sock_path == '\0') { |
| 1325 | /* |
| 1326 | * No socket path set. Weird error which means the constructor was not |
| 1327 | * called. |
| 1328 | */ |
| 1329 | assert(0); |
| 1330 | } |
| 1331 | |
| 1332 | ret = try_connect_sessiond(sessiond_sock_path); |
| 1333 | if (ret < 0) { |
| 1334 | /* Not alive */ |
| 1335 | return 0; |
| 1336 | } |
| 1337 | |
| 1338 | /* Is alive */ |
| 1339 | return 1; |
| 1340 | } |
| 1341 | |
| 1342 | /* |
| 1343 | * Set URL for a consumer for a session and domain. |
| 1344 | * |
| 1345 | * Return 0 on success, else a negative value. |
| 1346 | */ |
| 1347 | int lttng_set_consumer_url(struct lttng_handle *handle, |
| 1348 | const char *control_url, const char *data_url) |
| 1349 | { |
| 1350 | int ret; |
| 1351 | ssize_t size; |
| 1352 | struct lttcomm_session_msg lsm; |
| 1353 | struct lttng_uri *uris = NULL; |
| 1354 | |
| 1355 | if (handle == NULL || (control_url == NULL && data_url == NULL)) { |
| 1356 | return -LTTNG_ERR_INVALID; |
| 1357 | } |
| 1358 | |
| 1359 | memset(&lsm, 0, sizeof(lsm)); |
| 1360 | |
| 1361 | lsm.cmd_type = LTTNG_SET_CONSUMER_URI; |
| 1362 | |
| 1363 | lttng_ctl_copy_string(lsm.session.name, handle->session_name, |
| 1364 | sizeof(lsm.session.name)); |
| 1365 | lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain); |
| 1366 | |
| 1367 | size = uri_parse_str_urls(control_url, data_url, &uris); |
| 1368 | if (size < 0) { |
| 1369 | return -LTTNG_ERR_INVALID; |
| 1370 | } |
| 1371 | |
| 1372 | lsm.u.uri.size = size; |
| 1373 | |
| 1374 | ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris, |
| 1375 | sizeof(struct lttng_uri) * size, NULL); |
| 1376 | |
| 1377 | free(uris); |
| 1378 | return ret; |
| 1379 | } |
| 1380 | |
| 1381 | /* |
| 1382 | * [OBSOLETE] |
| 1383 | */ |
| 1384 | int lttng_enable_consumer(struct lttng_handle *handle) |
| 1385 | { |
| 1386 | return -ENOSYS; |
| 1387 | } |
| 1388 | |
| 1389 | /* |
| 1390 | * [OBSOLETE] |
| 1391 | */ |
| 1392 | int lttng_disable_consumer(struct lttng_handle *handle) |
| 1393 | { |
| 1394 | return -ENOSYS; |
| 1395 | } |
| 1396 | |
| 1397 | /* |
| 1398 | * This is an extension of create session that is ONLY and SHOULD only be used |
| 1399 | * by the lttng command line program. It exists to avoid using URI parsing in |
| 1400 | * the lttng client. |
| 1401 | * |
| 1402 | * We need the date and time for the trace path subdirectory for the case where |
| 1403 | * the user does NOT define one using either -o or -U. Using the normal |
| 1404 | * lttng_create_session API call, we have no clue on the session daemon side if |
| 1405 | * the URL was generated automatically by the client or define by the user. |
| 1406 | * |
| 1407 | * So this function "wrapper" is hidden from the public API, takes the datetime |
| 1408 | * string and appends it if necessary to the URI subdirectory before sending it |
| 1409 | * to the session daemon. |
| 1410 | * |
| 1411 | * With this extra function, the lttng_create_session call behavior is not |
| 1412 | * changed and the timestamp is appended to the URI on the session daemon side |
| 1413 | * if necessary. |
| 1414 | */ |
| 1415 | int _lttng_create_session_ext(const char *name, const char *url, |
| 1416 | const char *datetime) |
| 1417 | { |
| 1418 | int ret; |
| 1419 | ssize_t size; |
| 1420 | struct lttcomm_session_msg lsm; |
| 1421 | struct lttng_uri *uris = NULL; |
| 1422 | |
| 1423 | if (name == NULL || datetime == NULL) { |
| 1424 | return -LTTNG_ERR_INVALID; |
| 1425 | } |
| 1426 | |
| 1427 | memset(&lsm, 0, sizeof(lsm)); |
| 1428 | |
| 1429 | lsm.cmd_type = LTTNG_CREATE_SESSION; |
| 1430 | lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name)); |
| 1431 | |
| 1432 | /* There should never be a data URL */ |
| 1433 | size = uri_parse_str_urls(url, NULL, &uris); |
| 1434 | if (size < 0) { |
| 1435 | ret = -LTTNG_ERR_INVALID; |
| 1436 | goto error; |
| 1437 | } |
| 1438 | |
| 1439 | lsm.u.uri.size = size; |
| 1440 | |
| 1441 | if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) { |
| 1442 | /* Don't append datetime if the name was automatically created. */ |
| 1443 | if (strncmp(name, DEFAULT_SESSION_NAME "-", |
| 1444 | strlen(DEFAULT_SESSION_NAME) + 1)) { |
| 1445 | ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s", |
| 1446 | name, datetime); |
| 1447 | } else { |
| 1448 | ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name); |
| 1449 | } |
| 1450 | if (ret < 0) { |
| 1451 | PERROR("snprintf uri subdir"); |
| 1452 | ret = -LTTNG_ERR_FATAL; |
| 1453 | goto error; |
| 1454 | } |
| 1455 | } |
| 1456 | |
| 1457 | ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris, |
| 1458 | sizeof(struct lttng_uri) * size, NULL); |
| 1459 | |
| 1460 | error: |
| 1461 | free(uris); |
| 1462 | return ret; |
| 1463 | } |
| 1464 | |
| 1465 | /* |
| 1466 | * For a given session name, this call checks if the data is ready to be read |
| 1467 | * or is still being extracted by the consumer(s) hence not ready to be used by |
| 1468 | * any readers. |
| 1469 | */ |
| 1470 | int lttng_data_pending(const char *session_name) |
| 1471 | { |
| 1472 | int ret; |
| 1473 | struct lttcomm_session_msg lsm; |
| 1474 | |
| 1475 | if (session_name == NULL) { |
| 1476 | return -LTTNG_ERR_INVALID; |
| 1477 | } |
| 1478 | |
| 1479 | lsm.cmd_type = LTTNG_DATA_PENDING; |
| 1480 | |
| 1481 | lttng_ctl_copy_string(lsm.session.name, session_name, |
| 1482 | sizeof(lsm.session.name)); |
| 1483 | |
| 1484 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
| 1485 | |
| 1486 | /* |
| 1487 | * The lttng_ctl_ask_sessiond function negate the return code if it's not |
| 1488 | * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning |
| 1489 | * that the data is available. Yes it is hackish but for now this is the |
| 1490 | * only way. |
| 1491 | */ |
| 1492 | if (ret == -1) { |
| 1493 | ret = 1; |
| 1494 | } |
| 1495 | |
| 1496 | return ret; |
| 1497 | } |
| 1498 | |
| 1499 | /* |
| 1500 | * Create a session exclusively used for snapshot. |
| 1501 | * |
| 1502 | * Returns LTTNG_OK on success or a negative error code. |
| 1503 | */ |
| 1504 | int lttng_create_session_snapshot(const char *name, const char *snapshot_url) |
| 1505 | { |
| 1506 | int ret; |
| 1507 | ssize_t size; |
| 1508 | struct lttcomm_session_msg lsm; |
| 1509 | struct lttng_uri *uris = NULL; |
| 1510 | |
| 1511 | if (name == NULL) { |
| 1512 | return -LTTNG_ERR_INVALID; |
| 1513 | } |
| 1514 | |
| 1515 | memset(&lsm, 0, sizeof(lsm)); |
| 1516 | |
| 1517 | lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT; |
| 1518 | lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name)); |
| 1519 | |
| 1520 | size = uri_parse_str_urls(snapshot_url, NULL, &uris); |
| 1521 | if (size < 0) { |
| 1522 | return -LTTNG_ERR_INVALID; |
| 1523 | } |
| 1524 | |
| 1525 | lsm.u.uri.size = size; |
| 1526 | |
| 1527 | ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris, |
| 1528 | sizeof(struct lttng_uri) * size, NULL); |
| 1529 | |
| 1530 | free(uris); |
| 1531 | return ret; |
| 1532 | } |
| 1533 | |
| 1534 | /* |
| 1535 | * Create a session exclusively used for live. |
| 1536 | * |
| 1537 | * Returns LTTNG_OK on success or a negative error code. |
| 1538 | */ |
| 1539 | int lttng_create_session_live(const char *name, const char *url, |
| 1540 | unsigned int timer_interval) |
| 1541 | { |
| 1542 | int ret; |
| 1543 | ssize_t size; |
| 1544 | struct lttcomm_session_msg lsm; |
| 1545 | struct lttng_uri *uris = NULL; |
| 1546 | |
| 1547 | if (name == NULL) { |
| 1548 | return -LTTNG_ERR_INVALID; |
| 1549 | } |
| 1550 | |
| 1551 | memset(&lsm, 0, sizeof(lsm)); |
| 1552 | |
| 1553 | lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE; |
| 1554 | lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name)); |
| 1555 | |
| 1556 | size = uri_parse_str_urls(url, NULL, &uris); |
| 1557 | if (size < 0) { |
| 1558 | ret = -LTTNG_ERR_INVALID; |
| 1559 | goto end; |
| 1560 | } |
| 1561 | |
| 1562 | /* file:// is not accepted for live session. */ |
| 1563 | if (uris[0].dtype == LTTNG_DST_PATH) { |
| 1564 | ret = -LTTNG_ERR_INVALID; |
| 1565 | goto end; |
| 1566 | } |
| 1567 | |
| 1568 | lsm.u.session_live.nb_uri = size; |
| 1569 | lsm.u.session_live.timer_interval = timer_interval; |
| 1570 | |
| 1571 | ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris, |
| 1572 | sizeof(struct lttng_uri) * size, NULL); |
| 1573 | |
| 1574 | end: |
| 1575 | free(uris); |
| 1576 | return ret; |
| 1577 | } |
| 1578 | |
| 1579 | /* |
| 1580 | * lib constructor |
| 1581 | */ |
| 1582 | static void __attribute__((constructor)) init() |
| 1583 | { |
| 1584 | /* Set default session group */ |
| 1585 | lttng_set_tracing_group(DEFAULT_TRACING_GROUP); |
| 1586 | } |
| 1587 | |
| 1588 | /* |
| 1589 | * lib destructor |
| 1590 | */ |
| 1591 | static void __attribute__((destructor)) lttng_ctl_exit() |
| 1592 | { |
| 1593 | free(tracing_group); |
| 1594 | } |