Fix: compat poll: add missing empty revents checks
[lttng-tools.git] / src / bin / lttng-sessiond / ust-thread.c
CommitLineData
d0b96690
DG
1/*
2 * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17#define _GNU_SOURCE
18#include <assert.h>
19
20#include <common/common.h>
21#include <common/utils.h>
22
23#include "fd-limit.h"
24#include "lttng-sessiond.h"
25#include "ust-thread.h"
8782cc74 26#include "health-sessiond.h"
9ad42ec1 27#include "testpoint.h"
d0b96690
DG
28
29/*
30 * This thread manage application notify communication.
31 */
32void *ust_thread_manage_notify(void *data)
33{
380e8d6f 34 int i, ret, pollfd, err = -1;
6cd525e8 35 ssize_t size_ret;
d0b96690
DG
36 uint32_t revents, nb_fd;
37 struct lttng_poll_event events;
38
39 DBG("[ust-thread] Manage application notify command");
40
41 rcu_register_thread();
42 rcu_thread_online();
43
6c71277b
MD
44 health_register(health_sessiond,
45 HEALTH_SESSIOND_TYPE_APP_MANAGE_NOTIFY);
380e8d6f 46
9ad42ec1
MD
47 if (testpoint(sessiond_thread_app_manage_notify)) {
48 goto error_testpoint;
49 }
50
380e8d6f
MD
51 health_code_update();
52
d0b96690
DG
53 ret = sessiond_set_thread_pollset(&events, 2);
54 if (ret < 0) {
55 goto error_poll_create;
56 }
57
58 /* Add notify pipe to the pollset. */
59 ret = lttng_poll_add(&events, apps_cmd_notify_pipe[0], LPOLLIN | LPOLLERR);
60 if (ret < 0) {
61 goto error;
62 }
63
380e8d6f
MD
64 health_code_update();
65
d0b96690
DG
66 while (1) {
67 DBG3("[ust-thread] Manage notify polling on %d fds",
68 LTTNG_POLL_GETNB(&events));
69
70 /* Inifinite blocking call, waiting for transmission */
71restart:
380e8d6f 72 health_poll_entry();
d0b96690 73 ret = lttng_poll_wait(&events, -1);
380e8d6f 74 health_poll_exit();
d0b96690
DG
75 if (ret < 0) {
76 /*
77 * Restart interrupted system call.
78 */
79 if (errno == EINTR) {
80 goto restart;
81 }
82 goto error;
83 }
84
85 nb_fd = ret;
86
87 for (i = 0; i < nb_fd; i++) {
380e8d6f
MD
88 health_code_update();
89
d0b96690
DG
90 /* Fetch once the poll data */
91 revents = LTTNG_POLL_GETEV(&events, i);
92 pollfd = LTTNG_POLL_GETFD(&events, i);
93
6550503d
MD
94 if (!revents) {
95 /* No activity for this FD (poll implementation). */
96 continue;
97 }
98
d0b96690
DG
99 /* Thread quit pipe has been closed. Killing thread. */
100 ret = sessiond_check_thread_quit_pipe(pollfd, revents);
101 if (ret) {
380e8d6f 102 err = 0;
d0b96690
DG
103 goto exit;
104 }
105
106 /* Inspect the apps cmd pipe */
107 if (pollfd == apps_cmd_notify_pipe[0]) {
108 int sock;
109
110 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
111 ERR("Apps notify command pipe error");
112 goto error;
113 } else if (!(revents & LPOLLIN)) {
114 /* No POLLIN and not a catched error, stop the thread. */
115 ERR("Notify command pipe failed. revent: %u", revents);
116 goto error;
117 }
118
6cd525e8
MD
119 /* Get socket from dispatch thread. */
120 size_ret = lttng_read(apps_cmd_notify_pipe[0],
121 &sock, sizeof(sock));
122 if (size_ret < sizeof(sock)) {
d0b96690
DG
123 PERROR("read apps notify pipe");
124 goto error;
125 }
380e8d6f 126 health_code_update();
d0b96690
DG
127
128 ret = lttng_poll_add(&events, sock,
129 LPOLLIN | LPOLLERR | LPOLLHUP | LPOLLRDHUP);
130 if (ret < 0) {
131 /*
132 * It's possible we've reached the max poll fd allowed.
133 * Let's close the socket but continue normal execution.
134 */
135 ret = close(sock);
136 if (ret) {
137 PERROR("close notify socket %d", sock);
138 }
139 lttng_fd_put(LTTNG_FD_APPS, 1);
140 continue;
141 }
142 DBG3("UST thread notify added sock %d to pollset", sock);
143 } else {
144 /*
145 * At this point, we know that a registered application
146 * triggered the event.
147 */
148 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
149 /* Removing from the poll set */
150 ret = lttng_poll_del(&events, pollfd);
151 if (ret < 0) {
152 goto error;
153 }
154
d88aee68
DG
155 /* The socket is closed after a grace period here. */
156 ust_app_notify_sock_unregister(pollfd);
d0b96690
DG
157 } else if (revents & (LPOLLIN | LPOLLPRI)) {
158 ret = ust_app_recv_notify(pollfd);
159 if (ret < 0) {
d88aee68
DG
160 /*
161 * If the notification failed either the application is
162 * dead or an internal error happened. In both cases,
163 * we can only continue here. If the application is
164 * dead, an unregistration will follow or else the
165 * application will notice that we are not responding
166 * on that socket and will close it.
167 */
168 continue;
d0b96690
DG
169 }
170 } else {
171 ERR("Unknown poll events %u for sock %d", revents, pollfd);
172 continue;
173 }
380e8d6f 174 health_code_update();
d0b96690
DG
175 }
176 }
177 }
178
179exit:
180error:
181 lttng_poll_clean(&events);
182error_poll_create:
9ad42ec1 183error_testpoint:
d0b96690
DG
184 utils_close_pipe(apps_cmd_notify_pipe);
185 apps_cmd_notify_pipe[0] = apps_cmd_notify_pipe[1] = -1;
186 DBG("Application notify communication apps thread cleanup complete");
380e8d6f
MD
187 if (err) {
188 health_error();
189 ERR("Health error occurred in %s", __func__);
190 }
8782cc74 191 health_unregister(health_sessiond);
d0b96690
DG
192 rcu_thread_offline();
193 rcu_unregister_thread();
194 return NULL;
195}
This page took 0.04503 seconds and 4 git commands to generate.