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.
21 #include <common/hashtable/hashtable.h>
22 #include <common/common.h>
23 #include <common/utils.h>
25 #include "lttng-sessiond.h"
26 #include "health-sessiond.h"
27 #include "testpoint.h"
29 void *thread_ht_cleanup(void *data
)
31 int ret
, i
, pollfd
, err
= -1;
33 uint32_t revents
, nb_fd
;
34 struct lttng_poll_event events
;
36 DBG("[ht-thread] startup.");
38 rcu_register_thread();
41 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_HT_CLEANUP
);
43 if (testpoint(sessiond_thread_ht_cleanup
)) {
49 ret
= sessiond_set_thread_pollset(&events
, 2);
51 goto error_poll_create
;
54 /* Add pipe to the pollset. */
55 ret
= lttng_poll_add(&events
, ht_cleanup_pipe
[0], LPOLLIN
| LPOLLERR
);
63 DBG3("[ht-thread] Polling on %d fds.",
64 LTTNG_POLL_GETNB(&events
));
66 /* Inifinite blocking call, waiting for transmission */
69 ret
= lttng_poll_wait(&events
, -1);
73 * Restart interrupted system call.
83 for (i
= 0; i
< nb_fd
; i
++) {
88 /* Fetch once the poll data */
89 revents
= LTTNG_POLL_GETEV(&events
, i
);
90 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
92 /* Thread quit pipe has been closed. Killing thread. */
93 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
98 assert(pollfd
== ht_cleanup_pipe
[0]);
100 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
101 ERR("ht cleanup pipe error");
103 } else if (!(revents
& LPOLLIN
)) {
104 /* No POLLIN and not a catched error, stop the thread. */
105 ERR("ht cleanup failed. revent: %u", revents
);
109 /* Get socket from dispatch thread. */
110 size_ret
= lttng_read(ht_cleanup_pipe
[0], &ht
,
112 if (size_ret
< sizeof(ht
)) {
113 PERROR("ht cleanup notify pipe");
116 health_code_update();
118 * The whole point of this thread is to call
119 * lttng_ht_destroy from a context that is NOT:
120 * 1) a read-side RCU lock,
121 * 2) a call_rcu thread.
123 lttng_ht_destroy(ht
);
125 health_code_update();
131 lttng_poll_clean(&events
);
134 utils_close_pipe(ht_cleanup_pipe
);
135 ht_cleanup_pipe
[0] = ht_cleanup_pipe
[1] = -1;
136 DBG("[ust-thread] cleanup complete.");
139 ERR("Health error occurred in %s", __func__
);
141 health_unregister(health_sessiond
);
142 rcu_thread_offline();
143 rcu_unregister_thread();