2 * Copyright (C) 2013 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <common/hashtable/hashtable.h>
23 #include <common/common.h>
24 #include <common/utils.h>
26 #include "lttng-sessiond.h"
27 #include "health-sessiond.h"
28 #include "testpoint.h"
30 void *thread_ht_cleanup(void *data
)
32 int ret
, i
, pollfd
, err
= -1;
34 uint32_t revents
, nb_fd
;
35 struct lttng_poll_event events
;
37 DBG("[ht-thread] startup.");
39 rcu_register_thread();
42 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_HT_CLEANUP
);
44 if (testpoint(sessiond_thread_ht_cleanup
)) {
45 DBG("[ht-thread] testpoint.");
51 ret
= sessiond_set_ht_cleanup_thread_pollset(&events
, 2);
53 DBG("[ht-thread] sessiond_set_ht_cleanup_thread_pollset error %d.", ret
);
54 goto error_poll_create
;
57 /* Add pipe to the pollset. */
58 ret
= lttng_poll_add(&events
, ht_cleanup_pipe
[0], LPOLLIN
| LPOLLERR
);
60 DBG("[ht-thread] lttng_poll_add error %d.", ret
);
67 DBG3("[ht-thread] Polling.");
69 /* Inifinite blocking call, waiting for transmission */
72 ret
= lttng_poll_wait(&events
, -1);
73 DBG3("[ht-thread] Returning from poll on %d fds.",
74 LTTNG_POLL_GETNB(&events
));
78 * Restart interrupted system call.
88 for (i
= 0; i
< nb_fd
; i
++) {
93 /* Fetch once the poll data */
94 revents
= LTTNG_POLL_GETEV(&events
, i
);
95 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
98 /* No activity for this FD (poll implementation). */
102 if (pollfd
!= ht_cleanup_pipe
[0]) {
106 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
107 ERR("ht cleanup pipe error");
109 } else if (!(revents
& LPOLLIN
)) {
110 /* No POLLIN and not a catched error, stop the thread. */
111 ERR("ht cleanup failed. revent: %u", revents
);
115 /* Get socket from dispatch thread. */
116 size_ret
= lttng_read(ht_cleanup_pipe
[0], &ht
,
118 if (size_ret
< sizeof(ht
)) {
119 PERROR("ht cleanup notify pipe");
122 health_code_update();
124 * The whole point of this thread is to call
125 * lttng_ht_destroy from a context that is NOT:
126 * 1) a read-side RCU lock,
127 * 2) a call_rcu thread.
129 lttng_ht_destroy(ht
);
131 health_code_update();
134 for (i
= 0; i
< nb_fd
; i
++) {
135 health_code_update();
137 /* Fetch once the poll data */
138 revents
= LTTNG_POLL_GETEV(&events
, i
);
139 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
142 /* No activity for this FD (poll implementation). */
146 if (pollfd
== ht_cleanup_pipe
[0]) {
150 /* Thread quit pipe has been closed. Killing thread. */
151 ret
= sessiond_check_ht_cleanup_quit(pollfd
, revents
);
154 DBG("[ht-cleanup] quit.");
162 lttng_poll_clean(&events
);
165 DBG("[ht-cleanup] Thread terminates.");
168 ERR("Health error occurred in %s", __func__
);
170 health_unregister(health_sessiond
);
171 rcu_thread_offline();
172 rcu_unregister_thread();