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
|
/*
* ust-multi-test.c - single-proces, multi-session, multi-channel, multi-event UST tracing
*
* Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
* Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License only.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#define _LARGEFILE64_SOURCE
#define _GNU_SOURCE
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <limits.h>
#include <urcu/futex.h>
#include <urcu/uatomic.h>
#include <assert.h>
#include <sys/socket.h>
#include <ust-comm.h>
#include <../../libringbuffer/backend.h>
#include <../../libringbuffer/frontend.h>
#define NR_SESSIONS 4
#define NR_CHANNELS 1
#define MAX_NR_STREAMS 64
#define NR_EVENTS 3
const char *evname[] = {
"ust_tests_hello_tptest",
"ust_tests_hello_tptest_sighandler",
"ust_tests_hello_dontexist",
};
static int session_handle[NR_SESSIONS];
static struct lttng_ust_object_data metadata_stream_data[NR_SESSIONS];
static struct lttng_ust_object_data metadata_data[NR_SESSIONS];
static struct lttng_ust_object_data channel_data[NR_SESSIONS][NR_CHANNELS];
static struct lttng_ust_object_data stream_data[NR_SESSIONS][NR_CHANNELS][MAX_NR_STREAMS];
static int event_handle[NR_SESSIONS][NR_CHANNELS][NR_EVENTS];
static int apps_socket = -1;
static char apps_sock_path[PATH_MAX];
static char local_apps_wait_shm_path[PATH_MAX];
static volatile int quit_program;
static void handle_signals(int signo)
{
quit_program = 1;
}
static
int open_streams(int sock, int channel_handle, struct lttng_ust_object_data *stream_datas,
int nr_check)
{
int ret, k = 0;
for (;;) {
struct ustcomm_ust_msg lum;
struct ustcomm_ust_reply lur;
memset(&lum, 0, sizeof(lum));
lum.handle = channel_handle;
lum.cmd = LTTNG_UST_STREAM;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (!ret) {
assert(k < nr_check);
stream_datas[k].handle = lur.ret_val;
printf("received stream handle %u\n",
stream_datas[k].handle);
if (lur.ret_code == USTCOMM_OK) {
ssize_t len;
stream_datas[k].memory_map_size = lur.u.stream.memory_map_size;
/* get shm fd */
len = ustcomm_recv_fd(sock);
if (len < 0)
return -EINVAL;
stream_datas[k].shm_fd = len;
/* get wait fd */
len = ustcomm_recv_fd(sock);
if (len < 0)
return -EINVAL;
stream_datas[k].wait_fd = len;
}
k++;
}
if (ret == -ENOENT)
break;
if (ret)
return ret;
}
return 0;
}
static
int close_streams(int sock, struct lttng_ust_object_data *stream_datas, int nr_check)
{
int ret, k;
for (k = 0; k < nr_check; k++) {
struct ustcomm_ust_msg lum;
struct ustcomm_ust_reply lur;
if (!stream_datas[k].handle)
continue;
memset(&lum, 0, sizeof(lum));
lum.handle = stream_datas[k].handle;
lum.cmd = LTTNG_UST_RELEASE;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret) {
printf("Error closing stream\n");
return ret;
}
if (stream_datas[k].shm_fd >= 0) {
ret = close(stream_datas[k].shm_fd);
if (ret) {
printf("Error closing stream shm_fd\n");
return ret;
}
}
if (stream_datas[k].wait_fd >= 0) {
ret = close(stream_datas[k].wait_fd);
if (ret) {
printf("Error closing stream wait_fd\n");
return ret;
}
}
}
return 0;
}
static
struct lttng_ust_shm_handle *map_channel(struct lttng_ust_object_data *chan_data,
struct lttng_ust_object_data *stream_datas, int nr_check)
{
struct lttng_ust_shm_handle *handle;
struct channel *chan;
int k, ret;
/* map metadata channel */
handle = channel_handle_create(chan_data->shm_fd,
chan_data->wait_fd,
chan_data->memory_map_size);
if (!handle) {
printf("create handle error\n");
return NULL;
}
chan_data->shm_fd = -1;
chan_data->wait_fd = -1;
chan = shmp(handle, handle->chan);
for (k = 0; k < nr_check; k++) {
struct lttng_ust_object_data *stream_data = &stream_datas[k];
if (!stream_data->handle)
break;
/* map stream */
ret = channel_handle_add_stream(handle,
stream_data->shm_fd,
stream_data->wait_fd,
stream_data->memory_map_size);
if (ret) {
printf("add stream error\n");
goto error_destroy;
}
stream_data->shm_fd = -1;
stream_data->wait_fd = -1;
}
return handle;
error_destroy:
channel_destroy(chan, handle, 1);
return NULL;
}
static
void unmap_channel(struct lttng_ust_shm_handle *handle)
{
struct channel *chan;
chan = shmp(handle, handle->chan);
/* unmap channel */
channel_destroy(chan, handle, 1);
}
static
int consume_stream(struct lttng_ust_shm_handle *handle, int cpu, char *outfile)
{
struct channel *chan;
struct lttng_ust_lib_ring_buffer *buf;
int outfd, ret;
int *shm_fd, *wait_fd;
uint64_t *memory_map_size;
chan = shmp(handle, handle->chan);
/* open stream */
buf = channel_get_ring_buffer(&chan->backend.config,
chan, cpu, handle, &shm_fd, &wait_fd, &memory_map_size);
if (!buf)
return -ENOENT;
ret = lib_ring_buffer_open_read(buf, handle, 1);
if (ret) {
return -1;
}
/* copy */
outfd = open(outfile, O_WRONLY | O_CREAT | O_LARGEFILE | O_TRUNC,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
if (outfd < 0) {
perror("open output");
return -1;
}
printf("Waiting for buffer data for %s\n", outfile);
for (;;) {
unsigned long read_size;
unsigned long copy_size;
char *ptr;
ret = lib_ring_buffer_get_next_subbuf(buf, handle);
printf("get next ret %d\n", ret);
if (ret == -ENODATA)
break;
if (ret == -EAGAIN) {
sleep(1);
continue;
}
if (ret) {
printf("Error %d in lib_ring_buffer_get_next_subbuf\n", ret);
return -1;
}
read_size = lib_ring_buffer_get_read_data_size(
&chan->backend.config, buf, handle);
read_size = PAGE_ALIGN(read_size);
ptr = lib_ring_buffer_read_offset_address(
&buf->backend, 0, handle);
printf("WRITE: copy %lu bytes\n", read_size);
copy_size = write(outfd, ptr, read_size);
if (copy_size < read_size) {
printf("write issue: copied %lu, expected %lu\n", copy_size, read_size);
}
lib_ring_buffer_put_next_subbuf(buf, handle);
}
ret = close(outfd);
if (ret) {
perror("close");
return -1;
}
/* close stream */
lib_ring_buffer_release_read(buf, handle, 1);
return 0;
}
static
int consume_buffers(void)
{
int i, j, k, ret;
mode_t old_umask;
for (i = 0; i < NR_SESSIONS; i++) {
char pathname[PATH_MAX];
struct lttng_ust_shm_handle *handle;
snprintf(pathname, PATH_MAX - 1, "/tmp/testtrace%u", i);
old_umask = umask(0);
ret = mkdir(pathname, S_IRWXU | S_IRWXG);
if (ret && errno != EEXIST) {
perror("mkdir");
umask(old_umask);
return -1;
}
umask(old_umask);
/* copy metadata */
handle = map_channel(&metadata_data[i],
&metadata_stream_data[i], 1);
if (!handle)
return -1;
snprintf(pathname, PATH_MAX - 1,
"/tmp/testtrace%u/metadata", i);
ret = consume_stream(handle, -1, pathname);
if (ret && ret != -ENOENT) {
printf("Error in consume_stream\n");
return ret;
}
unmap_channel(handle);
/* copy binary data */
for (j = 0; j < NR_CHANNELS; j++) {
handle = map_channel(&channel_data[i][j],
stream_data[i][j], MAX_NR_STREAMS);
if (!handle)
return -1;
for (k = 0; k < MAX_NR_STREAMS; k++) {
snprintf(pathname, PATH_MAX - 1,
"/tmp/testtrace%u/data_%u", i, k);
ret = consume_stream(handle, k, pathname);
if (ret && ret != -ENOENT) {
printf("Error in consume_stream\n");
return ret;
}
}
unmap_channel(handle);
}
}
return 0;
}
int send_app_msgs(int sock)
{
struct ustcomm_ust_msg lum;
struct ustcomm_ust_reply lur;
int ret, i, j, k;
for (i = 0; i < NR_SESSIONS; i++) {
/* Create session */
memset(&lum, 0, sizeof(lum));
lum.handle = LTTNG_UST_ROOT_HANDLE;
lum.cmd = LTTNG_UST_SESSION;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
session_handle[i] = lur.ret_val;
printf("received session handle %u\n", session_handle[i]);
/* Create metadata channel */
memset(&lum, 0, sizeof(lum));
lum.handle = session_handle[i];
lum.cmd = LTTNG_UST_METADATA;
lum.u.channel.overwrite = 0;
lum.u.channel.subbuf_size = 32768;
lum.u.channel.num_subbuf = 4;
lum.u.channel.switch_timer_interval = 0;
lum.u.channel.read_timer_interval = 0;
lum.u.channel.output = LTTNG_UST_MMAP;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
metadata_data[i].handle = lur.ret_val;
printf("received metadata handle %u\n", metadata_data[i].handle);
if (lur.ret_code == USTCOMM_OK) {
ssize_t len;
metadata_data[i].memory_map_size = lur.u.channel.memory_map_size;
/* get shm fd */
len = ustcomm_recv_fd(sock);
if (len < 0)
return -EINVAL;
metadata_data[i].shm_fd = len;
/* get wait fd */
len = ustcomm_recv_fd(sock);
if (len < 0)
return -EINVAL;
metadata_data[i].wait_fd = len;
}
ret = open_streams(sock, metadata_data[i].handle,
&metadata_stream_data[i], 1);
if (ret) {
printf("Error in open_streams\n");
return ret;
}
/* Create channels */
for (j = 0; j < NR_CHANNELS; j++) {
memset(&lum, 0, sizeof(lum));
lum.handle = session_handle[i];
lum.cmd = LTTNG_UST_CHANNEL;
//lum.u.channel.overwrite = 0;
lum.u.channel.overwrite = 1;
lum.u.channel.subbuf_size = 32768;
lum.u.channel.num_subbuf = 8;
//lum.u.channel.num_subbuf = 4;
//lum.u.channel.num_subbuf = 2;
lum.u.channel.switch_timer_interval = 0;
lum.u.channel.read_timer_interval = 0;
lum.u.channel.output = LTTNG_UST_MMAP;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
channel_data[i][j].handle = lur.ret_val;
printf("received channel handle %u\n", channel_data[i][j].handle);
if (lur.ret_code == USTCOMM_OK) {
ssize_t len;
channel_data[i][j].memory_map_size = lur.u.channel.memory_map_size;
/* get shm fd */
len = ustcomm_recv_fd(sock);
if (len < 0)
return -EINVAL;
channel_data[i][j].shm_fd = len;
/* get wait fd */
len = ustcomm_recv_fd(sock);
if (len < 0)
return -EINVAL;
channel_data[i][j].wait_fd = len;
}
/* Create events */
for (k = 0; k < NR_EVENTS; k++) {
memset(&lum, 0, sizeof(lum));
lum.handle = channel_data[i][j].handle;
lum.cmd = LTTNG_UST_EVENT;
strncpy(lum.u.event.name, evname[k],
LTTNG_UST_SYM_NAME_LEN);
lum.u.event.instrumentation = LTTNG_UST_TRACEPOINT;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
event_handle[i][j][k] = lur.ret_val;
printf("received event handle %u\n", event_handle[i][j][k]);
}
/* Get references to channel streams */
ret = open_streams(sock, channel_data[i][j].handle,
stream_data[i][j], MAX_NR_STREAMS);
if (ret) {
printf("Error in open_streams\n");
return ret;
}
}
memset(&lum, 0, sizeof(lum));
lum.handle = session_handle[i];
lum.cmd = LTTNG_UST_SESSION_START;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
printf("Session handle %u started.\n", session_handle[i]);
}
/* Tell application registration is done */
memset(&lum, 0, sizeof(lum));
lum.handle = LTTNG_UST_ROOT_HANDLE;
lum.cmd = LTTNG_UST_REGISTER_DONE;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
printf("Registration done acknowledged.\n");
sleep(4);
ret = consume_buffers();
if (ret) {
printf("Error in consume_buffers\n");
return ret;
}
for (i = 0; i < NR_SESSIONS; i++) {
/* Release channels */
for (j = 0; j < NR_CHANNELS; j++) {
/* Release streams */
ret = close_streams(sock, stream_data[i][j],
MAX_NR_STREAMS);
if (ret)
return ret;
/* Release events */
for (k = 0; k < NR_EVENTS; k++) {
memset(&lum, 0, sizeof(lum));
lum.handle = event_handle[i][j][k];
lum.cmd = LTTNG_UST_RELEASE;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
}
memset(&lum, 0, sizeof(lum));
lum.handle = channel_data[i][j].handle;
lum.cmd = LTTNG_UST_RELEASE;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
if (channel_data[i][j].shm_fd >= 0) {
ret = close(channel_data[i][j].shm_fd);
if (ret)
return ret;
}
if (channel_data[i][j].wait_fd >= 0) {
ret = close(channel_data[i][j].wait_fd);
if (ret)
return ret;
}
}
/* Release metadata channel */
ret = close_streams(sock, &metadata_stream_data[i], 1);
if (ret)
return ret;
memset(&lum, 0, sizeof(lum));
lum.handle = metadata_data[i].handle;
lum.cmd = LTTNG_UST_RELEASE;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
if (metadata_data[i].shm_fd >= 0) {
ret = close(metadata_data[i].shm_fd);
if (ret)
return ret;
}
if (metadata_data[i].wait_fd >= 0) {
ret = close(metadata_data[i].wait_fd);
if (ret)
return ret;
}
/* Release session */
memset(&lum, 0, sizeof(lum));
lum.handle = session_handle[i];
lum.cmd = LTTNG_UST_RELEASE;
ret = ustcomm_send_app_cmd(sock, &lum, &lur);
if (ret)
return ret;
}
return 0;
}
/*
* Using fork to set umask in the child process (not multi-thread safe). We
* deal with the shm_open vs ftruncate race (happening when the sessiond owns
* the shm and does not let everybody modify it, to ensure safety against
* shm_unlink) by simply letting the mmap fail and retrying after a few
* seconds. For global shm, everybody has rw access to it until the sessiond
* starts.
*/
static int get_wait_shm(char *shm_path, size_t mmap_size, int global)
{
int wait_shm_fd, ret;
mode_t mode;
/* Default permissions */
mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP;
/* Change owner of the shm path */
if (global) {
ret = chown(shm_path, 0, 0);
if (ret < 0) {
if (errno != ENOENT) {
perror("chown wait shm");
goto error;
}
}
/*
* If global session daemon, any application can register so the shm
* needs to be set in read-only mode for others.
*/
mode |= S_IROTH;
} else {
ret = chown(shm_path, getuid(), getgid());
if (ret < 0) {
if (errno != ENOENT) {
perror("chown wait shm");
goto error;
}
}
}
/*
* Set permissions to the shm even if we did not create the shm.
*/
ret = chmod(shm_path, mode);
if (ret < 0) {
if (errno != ENOENT) {
perror("chmod wait shm");
goto error;
}
}
/*
* We're alone in a child process, so we can modify the process-wide
* umask.
*/
umask(~mode);
/*
* Try creating shm (or get rw access). We don't do an exclusive open,
* because we allow other processes to create+ftruncate it concurrently.
*/
wait_shm_fd = shm_open(shm_path, O_RDWR | O_CREAT, mode);
if (wait_shm_fd < 0) {
perror("shm_open wait shm");
goto error;
}
ret = ftruncate(wait_shm_fd, mmap_size);
if (ret < 0) {
perror("ftruncate wait shm");
exit(EXIT_FAILURE);
}
ret = fchmod(wait_shm_fd, mode);
if (ret < 0) {
perror("fchmod");
exit(EXIT_FAILURE);
}
printf("Got the wait shm fd %d\n", wait_shm_fd);
return wait_shm_fd;
error:
printf("Failing to get the wait shm fd\n");
return -1;
}
int update_futex(int fd, int active)
{
size_t mmap_size = sysconf(_SC_PAGE_SIZE);
char *wait_shm_mmap;
int ret;
wait_shm_mmap = mmap(NULL, mmap_size, PROT_READ | PROT_WRITE,
MAP_SHARED, fd, 0);
if (wait_shm_mmap == MAP_FAILED) {
perror("mmap");
goto error;
}
if (active) {
uatomic_set((int32_t *) wait_shm_mmap, 1);
futex_async((int32_t *) wait_shm_mmap, FUTEX_WAKE,
INT_MAX, NULL, NULL, 0);
} else {
uatomic_set((int32_t *) wait_shm_mmap, 0);
}
ret = munmap(wait_shm_mmap, mmap_size);
if (ret) {
perror("Error unmapping wait shm");
goto error;
}
return 0;
error:
return -1;
}
/*
* Set open files limit to unlimited. This daemon can open a large number of
* file descriptors in order to consumer multiple kernel traces.
*/
static void set_ulimit(void)
{
int ret;
struct rlimit lim;
/*
* If not root, we cannot increase our max open files. But our
* scope is then limited to processes from a single user.
*/
if (getuid() != 0)
return;
/* The kernel does not allowed an infinite limit for open files */
lim.rlim_cur = 65535;
lim.rlim_max = 65535;
ret = setrlimit(RLIMIT_NOFILE, &lim);
if (ret < 0) {
perror("failed to set open files limit");
}
}
int main(int argc, char **argv)
{
const char *home_dir;
int ret, wait_shm_fd;
struct sigaction act;
mode_t old_umask = 0;
set_ulimit();
/* Ignore sigpipe */
memset(&act, 0, sizeof(act));
ret = sigemptyset(&act.sa_mask);
if (ret == -1) {
perror("sigemptyset");
return -1;
}
act.sa_handler = SIG_IGN;
ret = sigaction(SIGPIPE, &act, NULL);
if (ret == -1) {
perror("sigaction");
return -1;
}
/* Handle SIGTERM */
act.sa_handler = handle_signals;
ret = sigaction(SIGTERM, &act, NULL);
if (ret == -1) {
perror("sigaction");
return -1;
}
/* Handle SIGINT */
ret = sigaction(SIGINT, &act, NULL);
if (ret == -1) {
perror("sigaction");
return -1;
}
if (geteuid() == 0) {
ret = mkdir(LTTNG_RUNDIR, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
if (ret && errno != EEXIST) {
perror("mkdir");
return -1;
}
wait_shm_fd = get_wait_shm(DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH,
sysconf(_SC_PAGE_SIZE), 1);
if (wait_shm_fd < 0) {
perror("global wait shm error");
return -1;
}
strcpy(apps_sock_path, DEFAULT_GLOBAL_APPS_UNIX_SOCK);
old_umask = umask(0);
} else {
snprintf(local_apps_wait_shm_path, PATH_MAX,
DEFAULT_HOME_APPS_WAIT_SHM_PATH, getuid());
wait_shm_fd = get_wait_shm(local_apps_wait_shm_path,
sysconf(_SC_PAGE_SIZE), 0);
if (wait_shm_fd < 0) {
perror("local wait shm error");
return -1;
}
home_dir = (const char *) getenv("HOME");
if (!home_dir) {
perror("getenv error");
return -ENOENT;
}
snprintf(apps_sock_path, PATH_MAX,
DEFAULT_HOME_APPS_UNIX_SOCK, home_dir);
}
ret = ustcomm_create_unix_sock(apps_sock_path);
if (ret < 0) {
perror("create error");
return ret;
}
apps_socket = ret;
if (getuid() == 0) {
/* File permission MUST be 666 */
ret = chmod(apps_sock_path,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
if (ret < 0) {
printf("Set file permissions failed: %s\n", apps_sock_path);
perror("chmod");
goto end;
}
umask(old_umask);
}
ret = ustcomm_listen_unix_sock(apps_socket);
if (ret < 0) {
perror("listen error");
return ret;
}
/* wake up futexes */
ret = update_futex(wait_shm_fd, 1);
if (ret) {
fprintf(stderr, "Error wakeup futex\n");
return -1;
}
for (;;) {
int sock;
ssize_t len;
struct {
uint32_t major;
uint32_t minor;
pid_t pid;
pid_t ppid;
uid_t uid;
gid_t gid;
char name[16]; /* Process name */
} reg_msg;
char bufname[17];
if (quit_program)
break;
printf("Accepting application registration\n");
sock = ustcomm_accept_unix_sock(apps_socket);
if (sock < 0) {
perror("accept error");
goto end;
}
/*
* Basic recv here to handle the very simple data
* that the libust send to register (reg_msg).
*/
len = ustcomm_recv_unix_sock(sock, ®_msg, sizeof(reg_msg));
if (len < 0 || len != sizeof(reg_msg)) {
perror("ustcomm_recv_unix_sock");
continue;
}
memcpy(bufname, reg_msg.name, 16);
bufname[16] = '\0';
printf("Application %s pid %u ppid %u uid %u gid %u has registered (version : %u.%u)\n",
bufname, reg_msg.pid, reg_msg.ppid, reg_msg.uid,
reg_msg.gid, reg_msg.major, reg_msg.minor);
ret = send_app_msgs(sock);
if (ret) {
printf("Error in send_app_msgs.\n");
sleep(1);
}
close(sock);
}
end:
printf("quitting.\n");
/* Let applications know we are not responding anymore */
ret = update_futex(wait_shm_fd, 0);
if (ret) {
fprintf(stderr, "Error wakeup futex\n");
return -1;
}
return 0;
}
|