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 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
|
/*
* lttng-ust-abi.c
*
* LTTng UST ABI
*
* Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; only
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*
* Mimic system calls for:
* - session creation, returns an object descriptor or failure.
* - channel creation, returns an object descriptor or failure.
* - Operates on a session object descriptor
* - Takes all channel options as parameters.
* - stream get, returns an object descriptor or failure.
* - Operates on a channel object descriptor.
* - stream notifier get, returns an object descriptor or failure.
* - Operates on a channel object descriptor.
* - event creation, returns an object descriptor or failure.
* - Operates on a channel object descriptor
* - Takes an event name as parameter
* - Takes an instrumentation source as parameter
* - e.g. tracepoints, dynamic_probes...
* - Takes instrumentation source specific arguments.
*/
#include <lttng/ust-abi.h>
#include <urcu/compiler.h>
#include <urcu/list.h>
#include <lttng/ust-events.h>
#include <lttng/ust-version.h>
#include <lttng/tracepoint.h>
#include "tracepoint-internal.h"
#include <usterr-signal-safe.h>
#include <helper.h>
#include "ltt-tracer.h"
static int lttng_ust_abi_close_in_progress;
static
int lttng_abi_tracepoint_list(void);
/*
* Object descriptor table. Should be protected from concurrent access
* by the caller.
*/
struct lttng_ust_obj {
union {
struct {
void *private_data;
const struct lttng_ust_objd_ops *ops;
int f_count;
} s;
int freelist_next; /* offset freelist. end is -1. */
} u;
};
struct lttng_ust_objd_table {
struct lttng_ust_obj *array;
unsigned int len, allocated_len;
int freelist_head; /* offset freelist head. end is -1 */
};
static struct lttng_ust_objd_table objd_table = {
.freelist_head = -1,
};
static
int objd_alloc(void *private_data, const struct lttng_ust_objd_ops *ops)
{
struct lttng_ust_obj *obj;
if (objd_table.freelist_head != -1) {
obj = &objd_table.array[objd_table.freelist_head];
objd_table.freelist_head = obj->u.freelist_next;
goto end;
}
if (objd_table.len >= objd_table.allocated_len) {
unsigned int new_allocated_len, old_allocated_len;
struct lttng_ust_obj *new_table, *old_table;
old_allocated_len = objd_table.allocated_len;
old_table = objd_table.array;
if (!old_allocated_len)
new_allocated_len = 1;
else
new_allocated_len = old_allocated_len << 1;
new_table = zmalloc(sizeof(struct lttng_ust_obj) * new_allocated_len);
if (!new_table)
return -ENOMEM;
memcpy(new_table, old_table,
sizeof(struct lttng_ust_obj) * old_allocated_len);
free(old_table);
objd_table.array = new_table;
objd_table.allocated_len = new_allocated_len;
}
obj = &objd_table.array[objd_table.len];
objd_table.len++;
end:
obj->u.s.private_data = private_data;
obj->u.s.ops = ops;
obj->u.s.f_count = 2; /* count == 1 : object is allocated */
/* count == 2 : allocated + hold ref */
return obj - objd_table.array;
}
static
struct lttng_ust_obj *_objd_get(int id)
{
if (id >= objd_table.len)
return NULL;
if (!objd_table.array[id].u.s.f_count)
return NULL;
return &objd_table.array[id];
}
static
void *objd_private(int id)
{
struct lttng_ust_obj *obj = _objd_get(id);
assert(obj);
return obj->u.s.private_data;
}
static
void objd_set_private(int id, void *private_data)
{
struct lttng_ust_obj *obj = _objd_get(id);
assert(obj);
obj->u.s.private_data = private_data;
}
const struct lttng_ust_objd_ops *objd_ops(int id)
{
struct lttng_ust_obj *obj = _objd_get(id);
if (!obj)
return NULL;
return obj->u.s.ops;
}
static
void objd_free(int id)
{
struct lttng_ust_obj *obj = _objd_get(id);
assert(obj);
obj->u.freelist_next = objd_table.freelist_head;
objd_table.freelist_head = obj - objd_table.array;
assert(obj->u.s.f_count == 1);
obj->u.s.f_count = 0; /* deallocated */
}
static
void objd_ref(int id)
{
struct lttng_ust_obj *obj = _objd_get(id);
obj->u.s.f_count++;
}
int lttng_ust_objd_unref(int id)
{
struct lttng_ust_obj *obj = _objd_get(id);
if (!obj)
return -EINVAL;
if (obj->u.s.f_count == 1) {
ERR("Reference counting error\n");
return -EINVAL;
}
if ((--obj->u.s.f_count) == 1) {
const struct lttng_ust_objd_ops *ops = objd_ops(id);
if (ops->release)
ops->release(id);
objd_free(id);
}
return 0;
}
static
void objd_table_destroy(void)
{
int i;
for (i = 0; i < objd_table.allocated_len; i++)
(void) lttng_ust_objd_unref(i);
free(objd_table.array);
objd_table.array = NULL;
objd_table.len = 0;
objd_table.allocated_len = 0;
objd_table.freelist_head = -1;
}
/*
* This is LTTng's own personal way to create an ABI for sessiond.
* We send commands over a socket.
*/
static const struct lttng_ust_objd_ops lttng_ops;
static const struct lttng_ust_objd_ops lttng_session_ops;
static const struct lttng_ust_objd_ops lttng_channel_ops;
static const struct lttng_ust_objd_ops lttng_metadata_ops;
static const struct lttng_ust_objd_ops lttng_event_ops;
static const struct lttng_ust_objd_ops lttng_wildcard_ops;
static const struct lttng_ust_objd_ops lib_ring_buffer_objd_ops;
static const struct lttng_ust_objd_ops lttng_tracepoint_list_ops;
enum channel_type {
PER_CPU_CHANNEL,
METADATA_CHANNEL,
};
int lttng_abi_create_root_handle(void)
{
int root_handle;
root_handle = objd_alloc(NULL, <tng_ops);
return root_handle;
}
static
int lttng_abi_create_session(void)
{
struct ltt_session *session;
int session_objd, ret;
session = ltt_session_create();
if (!session)
return -ENOMEM;
session_objd = objd_alloc(session, <tng_session_ops);
if (session_objd < 0) {
ret = session_objd;
goto objd_error;
}
session->objd = session_objd;
return session_objd;
objd_error:
ltt_session_destroy(session);
return ret;
}
static
long lttng_abi_tracer_version(int objd,
struct lttng_ust_tracer_version *v)
{
v->major = LTTNG_UST_MAJOR_VERSION;
v->minor = LTTNG_UST_MINOR_VERSION;
v->patchlevel = LTTNG_UST_PATCHLEVEL_VERSION;
return 0;
}
static
long lttng_abi_add_context(int objd,
struct lttng_ust_context *context_param,
struct lttng_ctx **ctx, struct ltt_session *session)
{
if (session->been_active)
return -EPERM;
switch (context_param->ctx) {
case LTTNG_UST_CONTEXT_PTHREAD_ID:
return lttng_add_pthread_id_to_ctx(ctx);
case LTTNG_UST_CONTEXT_VTID:
return lttng_add_vtid_to_ctx(ctx);
case LTTNG_UST_CONTEXT_VPID:
return lttng_add_vpid_to_ctx(ctx);
case LTTNG_UST_CONTEXT_PROCNAME:
return lttng_add_procname_to_ctx(ctx);
default:
return -EINVAL;
}
}
/**
* lttng_cmd - lttng control through socket commands
*
* @objd: the object descriptor
* @cmd: the command
* @arg: command arg
* @uargs: UST arguments (internal)
*
* This descriptor implements lttng commands:
* LTTNG_UST_SESSION
* Returns a LTTng trace session object descriptor
* LTTNG_UST_TRACER_VERSION
* Returns the LTTng kernel tracer version
* LTTNG_UST_TRACEPOINT_LIST
* Returns a file descriptor listing available tracepoints
* LTTNG_UST_WAIT_QUIESCENT
* Returns after all previously running probes have completed
*
* The returned session will be deleted when its file descriptor is closed.
*/
static
long lttng_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
switch (cmd) {
case LTTNG_UST_SESSION:
return lttng_abi_create_session();
case LTTNG_UST_TRACER_VERSION:
return lttng_abi_tracer_version(objd,
(struct lttng_ust_tracer_version *) arg);
case LTTNG_UST_TRACEPOINT_LIST:
return lttng_abi_tracepoint_list();
case LTTNG_UST_WAIT_QUIESCENT:
synchronize_trace();
return 0;
default:
return -EINVAL;
}
}
static const struct lttng_ust_objd_ops lttng_ops = {
.cmd = lttng_cmd,
};
/*
* We tolerate no failure in this function (if one happens, we print a dmesg
* error, but cannot return any error, because the channel information is
* invariant.
*/
static
void lttng_metadata_create_events(int channel_objd)
{
struct ltt_channel *channel = objd_private(channel_objd);
static struct lttng_ust_event metadata_params = {
.instrumentation = LTTNG_UST_TRACEPOINT,
.name = "lttng_ust:metadata",
.loglevel_type = LTTNG_UST_LOGLEVEL_ALL,
.loglevel = TRACE_DEFAULT,
};
struct ltt_event *event;
int ret;
/*
* We tolerate no failure path after event creation. It will stay
* invariant for the rest of the session.
*/
ret = ltt_event_create(channel, &metadata_params, NULL, &event);
if (ret < 0) {
goto create_error;
}
return;
create_error:
WARN_ON(1);
return; /* not allowed to return error */
}
int lttng_abi_create_channel(int session_objd,
struct lttng_ust_channel *chan_param,
enum channel_type channel_type,
union ust_args *uargs)
{
struct ltt_session *session = objd_private(session_objd);
const struct lttng_ust_objd_ops *ops;
const char *transport_name;
struct ltt_channel *chan;
int chan_objd;
int ret = 0;
struct ltt_channel chan_priv_init;
switch (channel_type) {
case PER_CPU_CHANNEL:
if (chan_param->output == LTTNG_UST_MMAP) {
transport_name = chan_param->overwrite ?
"relay-overwrite-mmap" : "relay-discard-mmap";
} else {
return -EINVAL;
}
ops = <tng_channel_ops;
break;
case METADATA_CHANNEL:
if (chan_param->output == LTTNG_UST_MMAP)
transport_name = "relay-metadata-mmap";
else
return -EINVAL;
ops = <tng_metadata_ops;
break;
default:
transport_name = "<unknown>";
return -EINVAL;
}
chan_objd = objd_alloc(NULL, ops);
if (chan_objd < 0) {
ret = chan_objd;
goto objd_error;
}
memset(&chan_priv_init, 0, sizeof(chan_priv_init));
/* Copy of session UUID for consumer (availability through shm) */
memcpy(chan_priv_init.uuid, session->uuid, sizeof(session->uuid));
/*
* We tolerate no failure path after channel creation. It will stay
* invariant for the rest of the session.
*/
chan = ltt_channel_create(session, transport_name, NULL,
chan_param->subbuf_size,
chan_param->num_subbuf,
chan_param->switch_timer_interval,
chan_param->read_timer_interval,
&uargs->channel.shm_fd,
&uargs->channel.wait_fd,
&uargs->channel.memory_map_size,
&chan_priv_init);
if (!chan) {
ret = -EINVAL;
goto chan_error;
}
objd_set_private(chan_objd, chan);
chan->objd = chan_objd;
if (channel_type == METADATA_CHANNEL) {
session->metadata = chan;
lttng_metadata_create_events(chan_objd);
}
/* The channel created holds a reference on the session */
objd_ref(session_objd);
return chan_objd;
chan_error:
{
int err;
err = lttng_ust_objd_unref(chan_objd);
assert(!err);
}
objd_error:
return ret;
}
/**
* lttng_session_cmd - lttng session object command
*
* @obj: the object
* @cmd: the command
* @arg: command arg
* @uargs: UST arguments (internal)
*
* This descriptor implements lttng commands:
* LTTNG_UST_CHANNEL
* Returns a LTTng channel object descriptor
* LTTNG_UST_ENABLE
* Enables tracing for a session (weak enable)
* LTTNG_UST_DISABLE
* Disables tracing for a session (strong disable)
* LTTNG_UST_METADATA
* Returns a LTTng metadata object descriptor
*
* The returned channel will be deleted when its file descriptor is closed.
*/
static
long lttng_session_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
struct ltt_session *session = objd_private(objd);
switch (cmd) {
case LTTNG_UST_CHANNEL:
return lttng_abi_create_channel(objd,
(struct lttng_ust_channel *) arg,
PER_CPU_CHANNEL, uargs);
case LTTNG_UST_SESSION_START:
case LTTNG_UST_ENABLE:
return ltt_session_enable(session);
case LTTNG_UST_SESSION_STOP:
case LTTNG_UST_DISABLE:
return ltt_session_disable(session);
case LTTNG_UST_METADATA:
return lttng_abi_create_channel(objd,
(struct lttng_ust_channel *) arg,
METADATA_CHANNEL, uargs);
default:
return -EINVAL;
}
}
/*
* Called when the last file reference is dropped.
*
* Big fat note: channels and events are invariant for the whole session after
* their creation. So this session destruction also destroys all channel and
* event structures specific to this session (they are not destroyed when their
* individual file is released).
*/
static
int lttng_release_session(int objd)
{
struct ltt_session *session = objd_private(objd);
if (session) {
ltt_session_destroy(session);
return 0;
} else {
return -EINVAL;
}
}
static const struct lttng_ust_objd_ops lttng_session_ops = {
.release = lttng_release_session,
.cmd = lttng_session_cmd,
};
static
long lttng_tracepoint_list_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
struct lttng_ust_tracepoint_list *list = objd_private(objd);
struct lttng_ust_tracepoint_iter *tp =
(struct lttng_ust_tracepoint_iter *) arg;
struct lttng_ust_tracepoint_iter *iter;
switch (cmd) {
case LTTNG_UST_TRACEPOINT_LIST_GET:
{
retry:
iter = lttng_ust_tracepoint_list_get_iter_next(list);
if (!iter)
return -ENOENT;
if (!strcmp(iter->name, "lttng_ust:metadata"))
goto retry;
memcpy(tp, iter, sizeof(*tp));
return 0;
}
default:
return -EINVAL;
}
}
static
int lttng_abi_tracepoint_list(void)
{
int list_objd, ret;
struct lttng_ust_tracepoint_list *list;
list_objd = objd_alloc(NULL, <tng_tracepoint_list_ops);
if (list_objd < 0) {
ret = list_objd;
goto objd_error;
}
list = zmalloc(sizeof(*list));
if (!list) {
ret = -ENOMEM;
goto alloc_error;
}
objd_set_private(list_objd, list);
/* populate list by walking on all registered probes. */
ret = ltt_probes_get_event_list(list);
if (ret) {
goto list_error;
}
return list_objd;
list_error:
free(list);
alloc_error:
{
int err;
err = lttng_ust_objd_unref(list_objd);
assert(!err);
}
objd_error:
return ret;
}
static
int lttng_release_tracepoint_list(int objd)
{
struct lttng_ust_tracepoint_list *list = objd_private(objd);
if (list) {
ltt_probes_prune_event_list(list);
free(list);
return 0;
} else {
return -EINVAL;
}
}
static const struct lttng_ust_objd_ops lttng_tracepoint_list_ops = {
.release = lttng_release_tracepoint_list,
.cmd = lttng_tracepoint_list_cmd,
};
struct stream_priv_data {
struct lttng_ust_lib_ring_buffer *buf;
struct ltt_channel *ltt_chan;
};
static
int lttng_abi_open_stream(int channel_objd, struct lttng_ust_stream *info,
union ust_args *uargs)
{
struct ltt_channel *channel = objd_private(channel_objd);
struct lttng_ust_lib_ring_buffer *buf;
struct stream_priv_data *priv;
int stream_objd, ret;
buf = channel->ops->buffer_read_open(channel->chan, channel->handle,
&uargs->stream.shm_fd,
&uargs->stream.wait_fd,
&uargs->stream.memory_map_size);
if (!buf)
return -ENOENT;
priv = zmalloc(sizeof(*priv));
if (!priv) {
ret = -ENOMEM;
goto alloc_error;
}
priv->buf = buf;
priv->ltt_chan = channel;
stream_objd = objd_alloc(priv, &lib_ring_buffer_objd_ops);
if (stream_objd < 0) {
ret = stream_objd;
goto objd_error;
}
/* Hold a reference on the channel object descriptor */
objd_ref(channel_objd);
return stream_objd;
objd_error:
free(priv);
alloc_error:
channel->ops->buffer_read_close(buf, channel->handle);
return ret;
}
static
int lttng_abi_create_event(int channel_objd,
struct lttng_ust_event *event_param)
{
struct ltt_channel *channel = objd_private(channel_objd);
struct ltt_event *event;
int event_objd, ret;
event_param->name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
event_objd = objd_alloc(NULL, <tng_event_ops);
if (event_objd < 0) {
ret = event_objd;
goto objd_error;
}
/*
* We tolerate no failure path after event creation. It will stay
* invariant for the rest of the session.
*/
ret = ltt_event_create(channel, event_param, NULL, &event);
if (ret < 0) {
goto event_error;
}
objd_set_private(event_objd, event);
/* The event holds a reference on the channel */
objd_ref(channel_objd);
return event_objd;
event_error:
{
int err;
err = lttng_ust_objd_unref(event_objd);
assert(!err);
}
objd_error:
return ret;
}
static
int lttng_abi_create_wildcard(int channel_objd,
struct lttng_ust_event *event_param)
{
struct ltt_channel *channel = objd_private(channel_objd);
struct session_wildcard *wildcard;
int wildcard_objd, ret;
event_param->name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
wildcard_objd = objd_alloc(NULL, <tng_wildcard_ops);
if (wildcard_objd < 0) {
ret = wildcard_objd;
goto objd_error;
}
/*
* We tolerate no failure path after wildcard creation. It will
* stay invariant for the rest of the session.
*/
ret = ltt_wildcard_create(channel, event_param, &wildcard);
if (ret < 0) {
goto wildcard_error;
}
objd_set_private(wildcard_objd, wildcard);
/* The wildcard holds a reference on the channel */
objd_ref(channel_objd);
return wildcard_objd;
wildcard_error:
{
int err;
err = lttng_ust_objd_unref(wildcard_objd);
assert(!err);
}
objd_error:
return ret;
}
/**
* lttng_channel_cmd - lttng control through object descriptors
*
* @objd: the object descriptor
* @cmd: the command
* @arg: command arg
* @uargs: UST arguments (internal)
*
* This object descriptor implements lttng commands:
* LTTNG_UST_STREAM
* Returns an event stream object descriptor or failure.
* (typically, one event stream records events from one CPU)
* LTTNG_UST_EVENT
* Returns an event object descriptor or failure.
* LTTNG_UST_CONTEXT
* Prepend a context field to each event in the channel
* LTTNG_UST_ENABLE
* Enable recording for events in this channel (weak enable)
* LTTNG_UST_DISABLE
* Disable recording for events in this channel (strong disable)
*
* Channel and event file descriptors also hold a reference on the session.
*/
static
long lttng_channel_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
struct ltt_channel *channel = objd_private(objd);
switch (cmd) {
case LTTNG_UST_STREAM:
{
struct lttng_ust_stream *stream;
stream = (struct lttng_ust_stream *) arg;
/* stream used as output */
return lttng_abi_open_stream(objd, stream, uargs);
}
case LTTNG_UST_EVENT:
{
struct lttng_ust_event *event_param =
(struct lttng_ust_event *) arg;
if (event_param->name[strlen(event_param->name) - 1] == '*') {
/* If ends with wildcard, create wildcard. */
return lttng_abi_create_wildcard(objd, event_param);
} else {
return lttng_abi_create_event(objd, event_param);
}
}
case LTTNG_UST_CONTEXT:
return lttng_abi_add_context(objd,
(struct lttng_ust_context *) arg,
&channel->ctx, channel->session);
case LTTNG_UST_ENABLE:
return ltt_channel_enable(channel);
case LTTNG_UST_DISABLE:
return ltt_channel_disable(channel);
case LTTNG_UST_FLUSH_BUFFER:
return channel->ops->flush_buffer(channel->chan, channel->handle);
default:
return -EINVAL;
}
}
/**
* lttng_metadata_cmd - lttng control through object descriptors
*
* @objd: the object descriptor
* @cmd: the command
* @arg: command arg
* @uargs: UST arguments (internal)
*
* This object descriptor implements lttng commands:
* LTTNG_UST_STREAM
* Returns an event stream file descriptor or failure.
*
* Channel and event file descriptors also hold a reference on the session.
*/
static
long lttng_metadata_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
struct ltt_channel *channel = objd_private(objd);
switch (cmd) {
case LTTNG_UST_STREAM:
{
struct lttng_ust_stream *stream;
stream = (struct lttng_ust_stream *) arg;
/* stream used as output */
return lttng_abi_open_stream(objd, stream, uargs);
}
case LTTNG_UST_FLUSH_BUFFER:
return channel->ops->flush_buffer(channel->chan, channel->handle);
default:
return -EINVAL;
}
}
#if 0
/**
* lttng_channel_poll - lttng stream addition/removal monitoring
*
* @file: the file
* @wait: poll table
*/
unsigned int lttng_channel_poll(struct file *file, poll_table *wait)
{
struct ltt_channel *channel = file->private_data;
unsigned int mask = 0;
if (file->f_mode & FMODE_READ) {
poll_wait_set_exclusive(wait);
poll_wait(file, channel->ops->get_hp_wait_queue(channel->chan),
wait);
if (channel->ops->is_disabled(channel->chan))
return POLLERR;
if (channel->ops->is_finalized(channel->chan))
return POLLHUP;
if (channel->ops->buffer_has_read_closed_stream(channel->chan))
return POLLIN | POLLRDNORM;
return 0;
}
return mask;
}
#endif //0
static
int lttng_channel_release(int objd)
{
struct ltt_channel *channel = objd_private(objd);
if (channel)
return lttng_ust_objd_unref(channel->session->objd);
return 0;
}
static const struct lttng_ust_objd_ops lttng_channel_ops = {
.release = lttng_channel_release,
//.poll = lttng_channel_poll,
.cmd = lttng_channel_cmd,
};
static const struct lttng_ust_objd_ops lttng_metadata_ops = {
.release = lttng_channel_release,
.cmd = lttng_metadata_cmd,
};
/**
* lttng_rb_cmd - lttng ring buffer control through object descriptors
*
* @objd: the object descriptor
* @cmd: the command
* @arg: command arg
* @uargs: UST arguments (internal)
*
* This object descriptor implements lttng commands:
* (None for now. Access is done directly though shm.)
*/
static
long lttng_rb_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
switch (cmd) {
default:
return -EINVAL;
}
}
static
int lttng_rb_release(int objd)
{
struct stream_priv_data *priv = objd_private(objd);
struct lttng_ust_lib_ring_buffer *buf;
struct ltt_channel *channel;
if (priv) {
buf = priv->buf;
channel = priv->ltt_chan;
free(priv);
/*
* If we are at ABI exit, we don't want to close the
* buffer opened for read: it is being shared between
* the parent and child (right after fork), and we don't
* want the child to close it for the parent. For a real
* exit, we don't care about marking it as closed, as
* the consumer daemon (if there is one) will do fine
* even if we don't mark it as "closed" for reading on
* our side.
* We only mark it as closed if it is being explicitely
* released by the session daemon with an explicit
* release command.
*/
if (!lttng_ust_abi_close_in_progress)
channel->ops->buffer_read_close(buf, channel->handle);
return lttng_ust_objd_unref(channel->objd);
}
return 0;
}
static const struct lttng_ust_objd_ops lib_ring_buffer_objd_ops = {
.release = lttng_rb_release,
.cmd = lttng_rb_cmd,
};
/**
* lttng_event_cmd - lttng control through object descriptors
*
* @objd: the object descriptor
* @cmd: the command
* @arg: command arg
* @uargs: UST arguments (internal)
*
* This object descriptor implements lttng commands:
* LTTNG_UST_CONTEXT
* Prepend a context field to each record of this event
* LTTNG_UST_ENABLE
* Enable recording for this event (weak enable)
* LTTNG_UST_DISABLE
* Disable recording for this event (strong disable)
*/
static
long lttng_event_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
struct ltt_event *event = objd_private(objd);
switch (cmd) {
case LTTNG_UST_CONTEXT:
return lttng_abi_add_context(objd,
(struct lttng_ust_context *) arg,
&event->ctx, event->chan->session);
case LTTNG_UST_ENABLE:
return ltt_event_enable(event);
case LTTNG_UST_DISABLE:
return ltt_event_disable(event);
default:
return -EINVAL;
}
}
static
int lttng_event_release(int objd)
{
struct ltt_event *event = objd_private(objd);
if (event)
return lttng_ust_objd_unref(event->chan->objd);
return 0;
}
/* TODO: filter control ioctl */
static const struct lttng_ust_objd_ops lttng_event_ops = {
.release = lttng_event_release,
.cmd = lttng_event_cmd,
};
/**
* lttng_wildcard_cmd - lttng control through object descriptors
*
* @objd: the object descriptor
* @cmd: the command
* @arg: command arg
* @uargs: UST arguments (internal)
*
* This object descriptor implements lttng commands:
* LTTNG_UST_CONTEXT
* Prepend a context field to each record of events of this
* wildcard.
* LTTNG_UST_ENABLE
* Enable recording for these wildcard events (weak enable)
* LTTNG_UST_DISABLE
* Disable recording for these wildcard events (strong disable)
*/
static
long lttng_wildcard_cmd(int objd, unsigned int cmd, unsigned long arg,
union ust_args *uargs)
{
struct session_wildcard *wildcard = objd_private(objd);
switch (cmd) {
case LTTNG_UST_CONTEXT:
return -ENOSYS; /* not implemented yet */
#if 0
return lttng_abi_add_context(objd,
(struct lttng_ust_context *) arg,
&wildcard->ctx, wildcard->chan->session);
#endif
case LTTNG_UST_ENABLE:
return ltt_wildcard_enable(wildcard);
case LTTNG_UST_DISABLE:
return ltt_wildcard_disable(wildcard);
default:
return -EINVAL;
}
}
static
int lttng_wildcard_release(int objd)
{
struct session_wildcard *wildcard = objd_private(objd);
if (wildcard)
return lttng_ust_objd_unref(wildcard->chan->objd);
return 0;
}
/* TODO: filter control ioctl */
static const struct lttng_ust_objd_ops lttng_wildcard_ops = {
.release = lttng_wildcard_release,
.cmd = lttng_wildcard_cmd,
};
void lttng_ust_abi_exit(void)
{
lttng_ust_abi_close_in_progress = 1;
objd_table_destroy();
lttng_ust_abi_close_in_progress = 0;
}
|