1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
|
/*
* SPDX-FileCopyrightText: 2014 David Goulet <dgoulet@efficios.com>
* SPDX-FileCopyrightText: 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com>
*
* SPDX-License-Identifier: LGPL-2.1-only
*
*/
#ifndef LTTNG_SESSION_H
#define LTTNG_SESSION_H
#ifdef __cplusplus
extern "C" {
#endif
#include <lttng/constant.h>
#include <lttng/lttng-error.h>
#include <lttng/lttng-export.h>
#include <lttng/session-descriptor.h>
/*!
@addtogroup api_session
@{
*/
#include <lttng/constant.h>
struct lttng_handle;
struct lttng_session_descriptor;
struct lttng_destruction_handle;
#define LTTNG_SESSION_PADDING1 8
/*!
@brief
Return type of lttng_get_session_shm_path_override().
*/
enum lttng_get_session_shm_path_status {
/// Success.
LTTNG_GET_SESSION_SHM_PATH_STATUS_OK = 0,
/// Shared memory path isn't set.
LTTNG_GET_SESSION_SHM_PATH_STATUS_UNSET = 1,
/// Unsatisfied precondition.
LTTNG_GET_SESSION_SHM_PATH_STATUS_INVALID_PARAMETER = -1,
};
/*!
@brief
Return type of lttng_get_session_trace_format().
*/
enum lttng_get_session_trace_format_status {
/// Success.
LTTNG_GET_SESSION_TRACE_FORMAT_STATUS_OK = 0,
/// Unsatisfied precondition.
LTTNG_GET_SESSION_TRACE_FORMAT_STATUS_INVALID = -1,
};
/*!
@brief
Recording session summary.
The purpose of such a structure is to provide information about a
\lt_obj_session itself, but not about its \lt_obj_domains
and \lt_obj_channels (use lttng_list_domains() and lttng_list_channels()
for this).
lttng_list_sessions() sets a pointer to an array of all the available
recording session summaries.
*/
struct lttng_session {
/// Name.
char name[LTTNG_NAME_MAX];
/*!
@brief
<em>Human-readable</em> representation of the output (local
or remote).
*/
char path[PATH_MAX];
/*!
@brief
1 if this recording session is active (started), or 0
otherwise.
@sa lttng_start_tracing() --
Starts a recording session.
@sa lttng_stop_tracing() --
Stops a recording session.
*/
uint32_t enabled; /* enabled/started: 1, disabled/stopped: 0 */
/*!
@brief
1 if this recording session was created in
\ref api-session-snapshot-mode "snapshot mode",
or 0 otherwise.
@note
If this member is 1, then the
lttng_session::live_timer_interval member is 0.
*/
uint32_t snapshot_mode;
/*!
@brief
Period (µs) of the \ref api-channel-live-timer "live timers"
of the channels of this recording session, or 0 if this
recording session wasn't created in
\ref api-session-live-mode "live mode".
@note
If this member is \em not 0, then the
lttng_session::snapshot_mode member is 0.
*/
unsigned int live_timer_interval; /* usec */
/*
* End of public attributes.
* The remaining fields are used to deal with ABI management concerns.
*/
/*
* 32-bit architectures are already naturally aligned on 4 bytes after
* 'live_timer_interval'. However, the offset does not result in a
* natural alignment on 64-bit architectures. Adding 4 bytes of
* padding here results in an aligned offset after 'alignement_padding'
* for both bitnesses.
*
* This was added since not all compilers appear to align unions in the
* same way. Some (e.g. MSVC) do not seem to impose an alignement
* constraint while others (e.g. gcc, clang, icc) seem to align it to
* ensure 'ptr' is naturally aligned.
*/
char alignment_padding[4];
union {
/*
* Ensure the 'extended' union has the same size for both
* 32-bit and 64-bit builds.
*/
char padding[LTTNG_SESSION_PADDING1];
void *ptr;
} extended;
};
/*!
@brief
Creates a recording session from the recording session descriptor
\lt_p{session_descriptor}.
See \ref api_session_descr to learn how to create a recording session
descriptor.
On success, if the name property of \lt_p{session_descriptor} isn't set,
this function sets it to the automatically generated name of the
recording session. Get the recording session name with
lttng_session_descriptor_get_session_name().
@param[in] session_descriptor
Descriptor from which to create a recording session.
@returns
<dl>
<dt>#LTTNG_OK
<dd>Success
<dt>Another #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_descriptor}
- If the name property of \lt_p{session_descriptor} is set, then no
available recording session has this name.
@sa \ref api_session_descr.
@sa \lt_man{lttng-create,1}
*/
LTTNG_EXPORT extern enum lttng_error_code
lttng_create_session_ext(struct lttng_session_descriptor *session_descriptor);
/*!
@brief
Creates a recording session named \lt_p{session_name} in
\ref api-session-local-mode "local"
or \ref api-session-net-mode "network streaming" mode, optionally
setting its output URL to \lt_p{output_url}.
@deprecated
Use lttng_create_session_ext() with a dedicated
local or network streaming
\ref api_session_descr "recording session descriptor".
@param[in] session_name
Name of the new recording session.
@param[in] output_url
@parblock
\ref api-session-url "Output URL" of the recording session to
create (copied).
If it's a \ref api-session-one-port-url "single-port output URL",
then the trace data port is \lt_def_net_data_port.
If \c NULL, LTTng doesn't write any trace data for this recording
session.
@endparblock
@returns
<dl>
<dt>0
<dd>Success
<dt>\em Negative #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_name}
@lt_pre_sess_name_not_auto{session_name}
- No available recording session is named \lt_p{session_name}.
- <strong>If not \c NULL</strong>, \lt_p{output_url} is a valid
\ref api-session-url "output URL".
@sa lttng_create_session_snapshot() --
Creates a recording session in snapshot mode.
@sa lttng_create_session_live() --
Creates a recording session in live mode.
@sa \lt_man{lttng-create,1}
*/
LTTNG_EXPORT extern int lttng_create_session(const char *session_name, const char *output_url);
/*!
@brief
Creates a recording session named \lt_p{session_name} in
\ref api-session-snapshot-mode "snapshot" mode, optionally setting
the URL of its initial snapshot output to \lt_p{output_url}.
@deprecated
Use lttng_create_session_ext() with a dedicated snapshot
\ref api_session_descr "recording session descriptor".
@param[in] session_name
Name of the new recording session.
@param[in] output_url
@parblock
\ref api-session-url "URL" of an initial snapshot output
which LTTng adds to this recording session (copied).
If it's a \ref api-session-one-port-url "single-port output URL",
then the trace data port is \lt_def_net_data_port.
This initial snapshot output is named <code>snapshot-0</code>.
If \c NULL, then the created recording session has no initial
snapshot output: you need to either add one with
lttng_snapshot_add_output() or provide one when you take a snapshot
with lttng_snapshot_record().
@endparblock
@returns
<dl>
<dt>0
<dd>Success
<dt>\em Negative #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_name}
@lt_pre_sess_name_not_auto{session_name}
- No available recording session is named \lt_p{session_name}.
- <strong>If not \c NULL</strong>, \lt_p{output_url} is a valid
\ref api-session-url "output URL".
@sa lttng_create_session() --
Creates a recording session in local or network streaming mode.
@sa lttng_create_session_live() --
Creates a recording session in live mode.
@sa \lt_man{lttng-create,1}
*/
LTTNG_EXPORT extern int lttng_create_session_snapshot(const char *session_name,
const char *output_url);
/*!
@brief
Creates a recording session named \lt_p{session_name} in
\ref api-session-live-mode "live" mode, optionally setting its
URL to \lt_p{output_url}.
@deprecated
Use lttng_create_session_ext() with a dedicated live
\ref api_session_descr "recording session descriptor".
@param[in] session_name
Name of the new recording session.
@param[in] output_url
@parblock
\ref api-session-url "Output URL" of the recording session to
create: \ref api-session-one-port-url "single-port" or
\ref api-session-two-port-url "two-port" (copied).
If it's a \ref api-session-one-port-url "single-port output URL",
then the trace data port is \lt_def_net_data_port.
If \c NULL, this function uses \lt_def_net_url.
@endparblock
@param[in] live_timer_period
Period (µs) of the \ref api-channel-live-timer "live timers" of all
the channels of the created recording session.
@returns
<dl>
<dt>0
<dd>Success
<dt>\em Negative #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_name}
@lt_pre_sess_name_not_auto{session_name}
- No available recording session is named \lt_p{session_name}.
- <strong>If not \c NULL</strong>, \lt_p{output_url} is a valid
\ref api-session-one-port-url "single-port output URL" or
\ref api-session-two-port-url "two-port output URL".
- \lt_p{live_timer_period} ≥ 1
@sa lttng_create_session() --
Creates a recording session in local or network streaming mode.
@sa lttng_create_session_snapshot() --
Creates a recording session in snapshot mode.
@sa \lt_man{lttng-create,1}
*/
LTTNG_EXPORT extern int lttng_create_session_live(const char *session_name,
const char *output_url,
unsigned int live_timer_period);
/*!
@brief
Destroys the recording session named \lt_p{session_name}, blocking
until the operation completes.
@deprecated
Use lttng_destroy_session_ext().
“Destroying” a recording session means freeing the resources which the
LTTng daemons and tracers acquired for it, also making sure to flush all
the recorded trace data to either the local file system or the connected
LTTng relay daemon (see \lt_man{lttng-relayd,8}), depending on the
\ref api-session-modes "recording session mode".
This function stops any recording activity within the recording session
named \lt_p{session_name}.
This function implicitly calls lttng_stop_tracing(), blocking until the
trace data of the recording session becomes valid. Use
lttng_destroy_session_no_wait() to avoid a blocking call.
@param[in] session_name
Name of the recording session to destroy.
@returns
<dl>
<dt>0
<dd>Success
<dt>\em Negative #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_name}
@lt_pre_sess_exists{session_name}
@sa lttng_destroy_session_no_wait() --
Initiates the destruction operation of a recording session,
returning immediately.
@sa \lt_man{lttng-destroy,1}
*/
LTTNG_EXPORT extern int lttng_destroy_session(const char *session_name);
/*!
@brief
Initiates the destruction operation of the recording session named
\lt_p{session_name}.
@deprecated
Use lttng_destroy_session_ext().
“Destroying” a recording session means freeing the resources which the
LTTng daemons and tracers acquired for it, also making sure to flush all
the recorded trace data to either the local file system or the connected
LTTng relay daemon (see \lt_man{lttng-relayd,8}), depending on the
\ref api-session-modes "recording session mode".
Unlike lttng_destroy_session(), this function does \em not block until
the destruction operation is complete: it returns immediately. This
means the trace(s) of the recording session might not be valid when
this function returns, and there's no way to know when it/they become
valid.
@param[in] session_name
Name of the recording session to destroy.
@returns
<dl>
<dt>0
<dd>Success
<dt>\em Negative #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_name}
@lt_pre_sess_exists{session_name}
- No destruction operation is in progress for the recording session
named \lt_p{session_name}.
@sa lttng_destroy_session() --
Destroys a recording session, blocking until the operation
completes.
@sa \lt_man{lttng-destroy,1}
*/
LTTNG_EXPORT extern int lttng_destroy_session_no_wait(const char *session_name);
/*!
@brief
Initiates a destruction operation of the recording session
named \lt_p{session_name}.
“Destroying” a recording session means freeing the resources which the
LTTng daemons and tracers acquired for it, also making sure to flush all
the recorded trace data to either the local file system or the connected
LTTng relay daemon (see \lt_man{lttng-relayd,8}), depending on the
\ref api-session-modes "recording session mode".
This function doesn't block until the destruction operation completes:
it only initiates the operation.
Use \lt_p{*handle} to wait for the operation to complete.
@param[in] session_name
Name of the recording session to destroy.
@param[out] handle
@parblock
<strong>On success</strong>, this function sets \lt_p{*handle} to
a handle which identifies this recording session destruction
operation.
May be \c NULL.
Wait for the completion of this destruction operation with
lttng_destruction_handle_wait_for_completion().
Destroy \lt_p{*handle} with lttng_destruction_handle_destroy().
@endparblock
@returns
<dl>
<dt>#LTTNG_OK
<dd>Success
<dt>Another #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_name}
@lt_pre_sess_exists{session_name}
- No destruction operation is in progress for the recording session
named \lt_p{session_name}.
@sa \lt_man{lttng-destroy,1}
*/
LTTNG_EXPORT extern enum lttng_error_code
lttng_destroy_session_ext(const char *session_name, struct lttng_destruction_handle **handle);
/*!
@brief
Sets \lt_p{*sessions} to the summaries of all the available
recording sessions.
@param[out] sessions
@parblock
<strong>On success</strong>, this function sets \lt_p{*sessions} to
the summaries of the available recording sessions.
Free \lt_p{*sessions} with <code>free()</code>.
@endparblock
@returns
The number of items in \lt_p{*sessions} on success, or a \em
negative #lttng_error_code enumerator otherwise.
@pre
@lt_pre_conn
@lt_pre_not_null{sessions}
@sa \lt_man{lttng-list,1}
*/
LTTNG_EXPORT extern int lttng_list_sessions(struct lttng_session **sessions);
/*!
@brief
Sets \lt_p{*creation_timestamp} to the timestamp of the creation of
the recording session summarized by \lt_p{session}.
@param[in] session
Summary of the recording session of which to get the creation
timestamp, as obtained with lttng_list_sessions().
@param[out] creation_timestamp
<strong>On success</strong>, this function sets
\lt_p{*creation_timestamp} to the Unix timestamp of the creation of
\lt_p{session}.
@retval #LTTNG_OK
Success.
@retval #LTTNG_ERR_INVALID
Unsatisfied precondition.
@retval #LTTNG_ERR_SESSION_NOT_EXIST
The recording session summarized by \lt_p{session} isn't accessible
within the connected session daemon.
@returns
<dl>
<dt>#LTTNG_OK
<dd>Success
<dt>Another #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session}
- The recording session summarized by \lt_p{session} is accessible
within the connected session daemon.
@lt_pre_not_null{creation_timestamp}
*/
LTTNG_EXPORT extern enum lttng_error_code
lttng_session_get_creation_time(const struct lttng_session *session, uint64_t *creation_timestamp);
/*!
@brief
Sets the path of the directory containing the shared memory files
holding the channel ring buffers of the recording session named
\lt_p{session_name} on the local file system to \lt_p{shm_dir}.
Specifying a location on an
<a href="https://en.wikipedia.org/wiki/Non-volatile_random-access_memory">NVRAM</a>
file system makes it possible to recover the latest recorded trace data
when the system reboots after a crash with the \lt_man{lttng-crash,1}
utility.
@param[in] session_name
Name of the recording session of which to set the shared memory
file directory path.
@param[in] shm_dir
Path of the directory containing the shared memory files of the
recording session named \lt_p{session_name} (copied).
@returns
<dl>
<dt>0 or a positive value
<dd>Success
<dt>\em Negative #lttng_error_code enumerator
<dd>Error
</dl>
@pre
@lt_pre_conn
@lt_pre_not_null{session_name}
@lt_pre_sess_exists{session_name}
@lt_pre_sess_never_active{session_name}
@lt_pre_not_null{shm_dir}
- \lt_p{shm_dir} is a writable directory.
@sa lttng_get_session_shm_path_override() --
Returns the path of the custom directory containing the shared
memory files holding the channel ring buffers of a recording
session.
*/
LTTNG_EXPORT extern int lttng_set_session_shm_path(const char *session_name, const char *shm_dir);
/*!
@brief
Sets \lt_p{*shm_dir} to the path of the custom directory
on the local file
system containing the shared memory files holding the channel
ring buffers of the recording session summarized
by \lt_p{session}.
This function only succeeds if the recording session summarized
by \lt_p{session} has a custom shared memory directory, as set with
lttng_set_session_shm_path(); it returns
#LTTNG_GET_SESSION_SHM_PATH_STATUS_UNSET otherwise.
@param[in] session
Summary of the recording session,
as obtained with lttng_list_sessions(),
of which to get the shared memory directory path.
@param[out] shm_dir
@parblock
<strong>On success</strong>, this function sets
\lt_p{*shm_dir} to the path of the directory on the
local file system containing the shared memory files holding
the channel ring buffers of \lt_p{session}.
\lt_p{*shm_dir} remains valid as long as the recording session
summary \lt_p{session} exists.
@endparblock
@retval #LTTNG_GET_SESSION_SHM_PATH_STATUS_OK
Success.
@retval #LTTNG_GET_SESSION_SHM_PATH_STATUS_UNSET = 1,
Shared memory path isn't set.
@retval #LTTNG_GET_SESSION_SHM_PATH_STATUS_INVALID_PARAMETER = -1,
Unsatisfied precondition.
@pre
@lt_pre_not_null{session}
- The recording session summarized by \lt_p{session} is accessible
within the connected session daemon.
@lt_pre_not_null{shm_path}
@sa lttng_set_session_shm_path() --
Sets the path of the directory containing the shared
memory files holding the channel ring buffers of a recording
session.
*/
LTTNG_EXPORT extern enum lttng_get_session_shm_path_status
lttng_get_session_shm_path_override(const struct lttng_session *session, const char **shm_dir);
/*!
@brief
Sets \lt_p{*format} to the trace format of the recording session
summarized by \lt_p{session}.
@param[in] session
Summary of the recording session,
as obtained with lttng_list_sessions(),
of which to get the trace format.
@param[out] format
<strong>On success</strong>, this function sets
\lt_p{*format} to the trace format of \lt_p{session}.
@retval #LTTNG_GET_SESSION_TRACE_FORMAT_STATUS_OK
Success.
@retval #LTTNG_GET_SESSION_TRACE_FORMAT_STATUS_INVALID
Unsatisfied precondition.
@pre
@lt_pre_not_null{session}
@lt_pre_not_null{format}
@sa lttng_session_descriptor_set_trace_format() --
Set the trace format of a recording session descriptor.
*/
LTTNG_EXPORT extern enum lttng_get_session_trace_format_status
lttng_get_session_trace_format(const struct lttng_session *session,
enum lttng_trace_format *format);
/// @}
#ifdef __cplusplus
}
#endif
#endif /* LTTNG_SESSION_H */
|