void *thread_send(void *data) { int sock, fds[3], pipe_fds[2] = {-1, -1}; ssize_t len; sock = connect_unix_sock(sockpath); if (sock < 0) { fail("Unable to connect to unix socket at %s", sockpath); goto error; } if (pipe(pipe_fds) < 0) { fail("Unable to create pipe"); goto error; } /* First send regular data. */ len = send_unix_sock(sock, "hello", 4); if (len < 0) { fail("Sending regular data."); goto error; } /* * We are going to pass 3 fds, two of them are pipse in position 0 and 2 * and the inet socket is at position 1. */ fds[0] = pipe_fds[0]; fds[1] = *((int *)data); fds[2] = pipe_fds[1]; len = send_fds_unix_sock(sock, fds, 3); if (len < 0) { fail("Send inet socket through Unix sock"); goto error; } OK(len == 1, "Inet socket %d sent successfully.", fds[1]); error: if (sock >= 0) { close(sock); } if (pipe_fds[0] >= 0) { close(pipe_fds[0]); } if (pipe_fds[1] >= 0) { close(pipe_fds[1]); } return NULL; }
/* * Thread managing health check socket. */ void *thread_manage_health(void *data) { int sock = -1, new_sock = -1, ret, i, pollfd, err = -1; uint32_t revents, nb_fd; struct lttng_poll_event events; struct health_comm_msg msg; struct health_comm_reply reply; int is_root; DBG("[thread] Manage health check started"); setup_health_path(); rcu_register_thread(); /* We might hit an error path before this is created. */ lttng_poll_init(&events); /* Create unix socket */ sock = lttcomm_create_unix_sock(health_unix_sock_path); if (sock < 0) { ERR("Unable to create health check Unix socket"); ret = -1; goto error; } is_root = !getuid(); if (is_root) { /* lttng health client socket path permissions */ ret = chown(health_unix_sock_path, 0, utils_get_group_id(tracing_group_name)); if (ret < 0) { ERR("Unable to set group on %s", health_unix_sock_path); PERROR("chown"); ret = -1; goto error; } ret = chmod(health_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); if (ret < 0) { ERR("Unable to set permissions on %s", health_unix_sock_path); PERROR("chmod"); ret = -1; goto error; } } /* * Set the CLOEXEC flag. Return code is useless because either way, the * show must go on. */ (void) utils_set_fd_cloexec(sock); ret = lttcomm_listen_unix_sock(sock); if (ret < 0) { goto error; } /* Size is set to 1 for the consumer_channel pipe */ ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC); if (ret < 0) { ERR("Poll set creation failed"); goto error; } ret = lttng_poll_add(&events, health_quit_pipe[0], LPOLLIN); if (ret < 0) { goto error; } /* Add the application registration socket */ ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLPRI); if (ret < 0) { goto error; } /* Perform prior memory accesses before decrementing ready */ cmm_smp_mb__before_uatomic_dec(); uatomic_dec(<tng_consumer_ready); while (1) { DBG("Health check ready"); /* Inifinite blocking call, waiting for transmission */ restart: ret = lttng_poll_wait(&events, -1); if (ret < 0) { /* * Restart interrupted system call. */ if (errno == EINTR) { goto restart; } goto error; } nb_fd = ret; for (i = 0; i < nb_fd; i++) { /* Fetch once the poll data */ revents = LTTNG_POLL_GETEV(&events, i); pollfd = LTTNG_POLL_GETFD(&events, i); if (!revents) { /* No activity for this FD (poll implementation). */ continue; } /* Thread quit pipe has been closed. Killing thread. */ ret = check_health_quit_pipe(pollfd, revents); if (ret) { err = 0; goto exit; } /* Event on the registration socket */ if (pollfd == sock) { if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP) && !(revents & LPOLLIN)) { ERR("Health socket poll error"); goto error; } } } new_sock = lttcomm_accept_unix_sock(sock); if (new_sock < 0) { goto error; } /* * Set the CLOEXEC flag. Return code is useless because either way, the * show must go on. */ (void) utils_set_fd_cloexec(new_sock); DBG("Receiving data from client for health..."); ret = lttcomm_recv_unix_sock(new_sock, (void *)&msg, sizeof(msg)); if (ret <= 0) { DBG("Nothing recv() from client... continuing"); ret = close(new_sock); if (ret) { PERROR("close"); } new_sock = -1; continue; } rcu_thread_online(); assert(msg.cmd == HEALTH_CMD_CHECK); memset(&reply, 0, sizeof(reply)); for (i = 0; i < NR_HEALTH_CONSUMERD_TYPES; i++) { /* * health_check_state return 0 if thread is in * error. */ if (!health_check_state(health_consumerd, i)) { reply.ret_code |= 1ULL << i; } } DBG("Health check return value %" PRIx64, reply.ret_code); ret = send_unix_sock(new_sock, (void *) &reply, sizeof(reply)); if (ret < 0) { ERR("Failed to send health data back to client"); } /* End of transmission */ ret = close(new_sock); if (ret) { PERROR("close"); } new_sock = -1; } exit: error: if (err) { ERR("Health error occurred in %s", __func__); } DBG("Health check thread dying"); unlink(health_unix_sock_path); if (sock >= 0) { ret = close(sock); if (ret) { PERROR("close"); } } lttng_poll_clean(&events); rcu_unregister_thread(); return NULL; }