Add UST namespace contexts
[lttng-tools.git] / src / bin / lttng-sessiond / notify-apps.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 */
890d8fe4 17
6c1c0768 18#define _LGPL_SOURCE
d0b96690
DG
19#include <assert.h>
20
21#include <common/common.h>
22#include <common/utils.h>
23
24#include "fd-limit.h"
25#include "lttng-sessiond.h"
f9d2ba6a 26#include "notify-apps.h"
8782cc74 27#include "health-sessiond.h"
9ad42ec1 28#include "testpoint.h"
971a61c6
JG
29#include "utils.h"
30#include "thread.h"
31
32struct thread_notifiers {
33 struct lttng_pipe *quit_pipe;
34 int apps_cmd_notify_pipe_read_fd;
35};
d0b96690
DG
36
37/*
38 * This thread manage application notify communication.
39 */
971a61c6 40static void *thread_application_notification(void *data)
d0b96690 41{
380e8d6f 42 int i, ret, pollfd, err = -1;
6cd525e8 43 ssize_t size_ret;
d0b96690
DG
44 uint32_t revents, nb_fd;
45 struct lttng_poll_event events;
971a61c6
JG
46 struct thread_notifiers *notifiers = data;
47 const int quit_pipe_read_fd = lttng_pipe_get_readfd(notifiers->quit_pipe);
d0b96690
DG
48
49 DBG("[ust-thread] Manage application notify command");
50
51 rcu_register_thread();
52 rcu_thread_online();
53
6c71277b
MD
54 health_register(health_sessiond,
55 HEALTH_SESSIOND_TYPE_APP_MANAGE_NOTIFY);
380e8d6f 56
9ad42ec1
MD
57 if (testpoint(sessiond_thread_app_manage_notify)) {
58 goto error_testpoint;
59 }
60
380e8d6f
MD
61 health_code_update();
62
971a61c6 63 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
d0b96690
DG
64 if (ret < 0) {
65 goto error_poll_create;
66 }
67
68 /* Add notify pipe to the pollset. */
971a61c6 69 ret = lttng_poll_add(&events, notifiers->apps_cmd_notify_pipe_read_fd,
03e43155 70 LPOLLIN | LPOLLERR | LPOLLHUP | LPOLLRDHUP);
d0b96690
DG
71 if (ret < 0) {
72 goto error;
73 }
74
971a61c6
JG
75 ret = lttng_poll_add(&events, quit_pipe_read_fd,
76 LPOLLIN | LPOLLERR);
77 if (ret < 0) {
78 goto error;
79 }
80
380e8d6f
MD
81 health_code_update();
82
d0b96690 83 while (1) {
7fa2082e 84 DBG3("[ust-thread] Manage notify polling");
d0b96690
DG
85
86 /* Inifinite blocking call, waiting for transmission */
87restart:
380e8d6f 88 health_poll_entry();
d0b96690 89 ret = lttng_poll_wait(&events, -1);
7fa2082e
MD
90 DBG3("[ust-thread] Manage notify return from poll on %d fds",
91 LTTNG_POLL_GETNB(&events));
380e8d6f 92 health_poll_exit();
d0b96690
DG
93 if (ret < 0) {
94 /*
95 * Restart interrupted system call.
96 */
97 if (errno == EINTR) {
98 goto restart;
99 }
100 goto error;
101 }
102
103 nb_fd = ret;
104
105 for (i = 0; i < nb_fd; i++) {
380e8d6f
MD
106 health_code_update();
107
d0b96690
DG
108 /* Fetch once the poll data */
109 revents = LTTNG_POLL_GETEV(&events, i);
110 pollfd = LTTNG_POLL_GETFD(&events, i);
111
112 /* Thread quit pipe has been closed. Killing thread. */
971a61c6 113 if (pollfd == quit_pipe_read_fd) {
380e8d6f 114 err = 0;
d0b96690 115 goto exit;
971a61c6
JG
116 } else if (pollfd == notifiers->apps_cmd_notify_pipe_read_fd) {
117 /* Inspect the apps cmd pipe */
d0b96690
DG
118 int sock;
119
03e43155
MD
120 if (revents & LPOLLIN) {
121 /* Get socket from dispatch thread. */
971a61c6 122 size_ret = lttng_read(notifiers->apps_cmd_notify_pipe_read_fd,
03e43155
MD
123 &sock, sizeof(sock));
124 if (size_ret < sizeof(sock)) {
125 PERROR("read apps notify pipe");
126 goto error;
127 }
128 health_code_update();
129
130 ret = lttng_poll_add(&events, sock,
131 LPOLLIN | LPOLLERR | LPOLLHUP | LPOLLRDHUP);
132 if (ret < 0) {
133 /*
134 * It's possible we've reached the max poll fd allowed.
135 * Let's close the socket but continue normal execution.
136 */
137 ret = close(sock);
138 if (ret) {
139 PERROR("close notify socket %d", sock);
140 }
141 lttng_fd_put(LTTNG_FD_APPS, 1);
142 continue;
143 }
144 DBG3("UST thread notify added sock %d to pollset", sock);
145 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
d0b96690
DG
146 ERR("Apps notify command pipe error");
147 goto error;
03e43155
MD
148 } else {
149 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
d0b96690
DG
150 goto error;
151 }
d0b96690
DG
152 } else {
153 /*
154 * At this point, we know that a registered application
155 * triggered the event.
156 */
03e43155
MD
157 if (revents & (LPOLLIN | LPOLLPRI)) {
158 ret = ust_app_recv_notify(pollfd);
159 if (ret < 0) {
160 /* Removing from the poll set */
161 ret = lttng_poll_del(&events, pollfd);
162 if (ret < 0) {
163 goto error;
164 }
165
166 /* The socket is closed after a grace period here. */
167 ust_app_notify_sock_unregister(pollfd);
168 }
169 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
d0b96690
DG
170 /* Removing from the poll set */
171 ret = lttng_poll_del(&events, pollfd);
172 if (ret < 0) {
173 goto error;
174 }
175
d88aee68
DG
176 /* The socket is closed after a grace period here. */
177 ust_app_notify_sock_unregister(pollfd);
d0b96690 178 } else {
03e43155
MD
179 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
180 goto error;
d0b96690 181 }
380e8d6f 182 health_code_update();
d0b96690
DG
183 }
184 }
185 }
186
187exit:
188error:
189 lttng_poll_clean(&events);
190error_poll_create:
9ad42ec1 191error_testpoint:
971a61c6 192
d0b96690 193 DBG("Application notify communication apps thread cleanup complete");
380e8d6f
MD
194 if (err) {
195 health_error();
196 ERR("Health error occurred in %s", __func__);
197 }
8782cc74 198 health_unregister(health_sessiond);
d0b96690
DG
199 rcu_thread_offline();
200 rcu_unregister_thread();
201 return NULL;
202}
971a61c6
JG
203
204static bool shutdown_application_notification_thread(void *data)
205{
206 struct thread_notifiers *notifiers = data;
207 const int write_fd = lttng_pipe_get_writefd(notifiers->quit_pipe);
208
209 return notify_thread_pipe(write_fd) == 1;
210}
211
212static void cleanup_application_notification_thread(void *data)
213{
214 struct thread_notifiers *notifiers = data;
215
216 lttng_pipe_destroy(notifiers->quit_pipe);
217 free(notifiers);
218}
219
220bool launch_application_notification_thread(int apps_cmd_notify_pipe_read_fd)
221{
222 struct lttng_thread *thread;
223 struct thread_notifiers *notifiers;
224 struct lttng_pipe *quit_pipe;
225
226 notifiers = zmalloc(sizeof(*notifiers));
227 if (!notifiers) {
21fa020e 228 goto error_alloc;
971a61c6
JG
229 }
230 notifiers->apps_cmd_notify_pipe_read_fd = apps_cmd_notify_pipe_read_fd;
231
232 quit_pipe = lttng_pipe_open(FD_CLOEXEC);
233 if (!quit_pipe) {
234 goto error;
235 }
236 notifiers->quit_pipe = quit_pipe;
237
238 thread = lttng_thread_create("Application notification",
239 thread_application_notification,
240 shutdown_application_notification_thread,
241 cleanup_application_notification_thread,
242 notifiers);
243 if (!thread) {
244 goto error;
245 }
246 lttng_thread_put(thread);
247 return true;
248error:
249 cleanup_application_notification_thread(notifiers);
21fa020e 250error_alloc:
971a61c6
JG
251 return false;
252}
This page took 0.057341 seconds and 4 git commands to generate.