Commit | Line | Data |
---|---|---|
d3e2ba59 JD |
1 | /* |
2 | * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com> | |
3 | * David Goulet <dgoulet@efficios.com> | |
7591bab1 | 4 | * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
d3e2ba59 JD |
5 | * |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License, version 2 only, | |
8 | * as published by the Free Software Foundation. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
13 | * more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License along | |
16 | * with this program; if not, write to the Free Software Foundation, Inc., | |
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
18 | */ | |
19 | ||
6c1c0768 | 20 | #define _LGPL_SOURCE |
d3e2ba59 JD |
21 | #include <getopt.h> |
22 | #include <grp.h> | |
23 | #include <limits.h> | |
24 | #include <pthread.h> | |
25 | #include <signal.h> | |
26 | #include <stdio.h> | |
27 | #include <stdlib.h> | |
28 | #include <string.h> | |
29 | #include <sys/mman.h> | |
30 | #include <sys/mount.h> | |
31 | #include <sys/resource.h> | |
32 | #include <sys/socket.h> | |
33 | #include <sys/stat.h> | |
34 | #include <sys/types.h> | |
35 | #include <sys/wait.h> | |
36 | #include <inttypes.h> | |
37 | #include <urcu/futex.h> | |
38 | #include <urcu/uatomic.h> | |
7591bab1 | 39 | #include <urcu/rculist.h> |
d3e2ba59 JD |
40 | #include <unistd.h> |
41 | #include <fcntl.h> | |
d3e2ba59 JD |
42 | |
43 | #include <lttng/lttng.h> | |
44 | #include <common/common.h> | |
45 | #include <common/compat/poll.h> | |
46 | #include <common/compat/socket.h> | |
f263b7fd | 47 | #include <common/compat/endian.h> |
d3e2ba59 JD |
48 | #include <common/defaults.h> |
49 | #include <common/futex.h> | |
2f8f53af | 50 | #include <common/index/index.h> |
d3e2ba59 JD |
51 | #include <common/sessiond-comm/sessiond-comm.h> |
52 | #include <common/sessiond-comm/inet.h> | |
53 | #include <common/sessiond-comm/relayd.h> | |
54 | #include <common/uri.h> | |
55 | #include <common/utils.h> | |
56 | ||
57 | #include "cmd.h" | |
58 | #include "live.h" | |
59 | #include "lttng-relayd.h" | |
d3e2ba59 | 60 | #include "utils.h" |
eea7556c | 61 | #include "health-relayd.h" |
9b5e0863 | 62 | #include "testpoint.h" |
2f8f53af | 63 | #include "viewer-stream.h" |
2a174661 DG |
64 | #include "stream.h" |
65 | #include "session.h" | |
66 | #include "ctf-trace.h" | |
58eb9381 | 67 | #include "connection.h" |
7591bab1 MD |
68 | #include "viewer-session.h" |
69 | ||
70 | #define SESSION_BUF_DEFAULT_COUNT 16 | |
d3e2ba59 JD |
71 | |
72 | static struct lttng_uri *live_uri; | |
73 | ||
d3e2ba59 JD |
74 | /* |
75 | * This pipe is used to inform the worker thread that a command is queued and | |
76 | * ready to be processed. | |
77 | */ | |
58eb9381 | 78 | static int live_conn_pipe[2] = { -1, -1 }; |
d3e2ba59 JD |
79 | |
80 | /* Shared between threads */ | |
81 | static int live_dispatch_thread_exit; | |
82 | ||
83 | static pthread_t live_listener_thread; | |
84 | static pthread_t live_dispatcher_thread; | |
85 | static pthread_t live_worker_thread; | |
86 | ||
87 | /* | |
88 | * Relay command queue. | |
89 | * | |
90 | * The live_thread_listener and live_thread_dispatcher communicate with this | |
91 | * queue. | |
92 | */ | |
58eb9381 | 93 | static struct relay_conn_queue viewer_conn_queue; |
d3e2ba59 JD |
94 | |
95 | static uint64_t last_relay_viewer_session_id; | |
7591bab1 MD |
96 | static pthread_mutex_t last_relay_viewer_session_id_lock = |
97 | PTHREAD_MUTEX_INITIALIZER; | |
d3e2ba59 JD |
98 | |
99 | /* | |
100 | * Cleanup the daemon | |
101 | */ | |
102 | static | |
178a0557 | 103 | void cleanup_relayd_live(void) |
d3e2ba59 JD |
104 | { |
105 | DBG("Cleaning up"); | |
106 | ||
d3e2ba59 JD |
107 | free(live_uri); |
108 | } | |
109 | ||
2f8f53af DG |
110 | /* |
111 | * Receive a request buffer using a given socket, destination allocated buffer | |
112 | * of length size. | |
113 | * | |
114 | * Return the size of the received message or else a negative value on error | |
115 | * with errno being set by recvmsg() syscall. | |
116 | */ | |
117 | static | |
118 | ssize_t recv_request(struct lttcomm_sock *sock, void *buf, size_t size) | |
119 | { | |
120 | ssize_t ret; | |
121 | ||
2f8f53af DG |
122 | ret = sock->ops->recvmsg(sock, buf, size, 0); |
123 | if (ret < 0 || ret != size) { | |
124 | if (ret == 0) { | |
125 | /* Orderly shutdown. Not necessary to print an error. */ | |
126 | DBG("Socket %d did an orderly shutdown", sock->fd); | |
127 | } else { | |
128 | ERR("Relay failed to receive request."); | |
129 | } | |
130 | ret = -1; | |
131 | } | |
132 | ||
133 | return ret; | |
134 | } | |
135 | ||
136 | /* | |
137 | * Send a response buffer using a given socket, source allocated buffer of | |
138 | * length size. | |
139 | * | |
140 | * Return the size of the sent message or else a negative value on error with | |
141 | * errno being set by sendmsg() syscall. | |
142 | */ | |
143 | static | |
144 | ssize_t send_response(struct lttcomm_sock *sock, void *buf, size_t size) | |
145 | { | |
146 | ssize_t ret; | |
147 | ||
2f8f53af DG |
148 | ret = sock->ops->sendmsg(sock, buf, size, 0); |
149 | if (ret < 0) { | |
150 | ERR("Relayd failed to send response."); | |
151 | } | |
152 | ||
153 | return ret; | |
154 | } | |
155 | ||
156 | /* | |
f04a971b JD |
157 | * Atomically check if new streams got added in one of the sessions attached |
158 | * and reset the flag to 0. | |
2f8f53af DG |
159 | * |
160 | * Returns 1 if new streams got added, 0 if nothing changed, a negative value | |
161 | * on error. | |
162 | */ | |
163 | static | |
f04a971b | 164 | int check_new_streams(struct relay_connection *conn) |
2f8f53af | 165 | { |
2f8f53af | 166 | struct relay_session *session; |
f04a971b JD |
167 | unsigned long current_val; |
168 | int ret = 0; | |
2f8f53af | 169 | |
f04a971b JD |
170 | if (!conn->viewer_session) { |
171 | goto end; | |
172 | } | |
7591bab1 MD |
173 | rcu_read_lock(); |
174 | cds_list_for_each_entry_rcu(session, | |
175 | &conn->viewer_session->session_list, | |
176 | viewer_session_node) { | |
177 | if (!session_get(session)) { | |
178 | continue; | |
179 | } | |
f04a971b JD |
180 | current_val = uatomic_cmpxchg(&session->new_streams, 1, 0); |
181 | ret = current_val; | |
7591bab1 | 182 | session_put(session); |
f04a971b JD |
183 | if (ret == 1) { |
184 | goto end; | |
185 | } | |
2f8f53af | 186 | } |
f04a971b | 187 | end: |
7591bab1 | 188 | rcu_read_unlock(); |
2f8f53af DG |
189 | return ret; |
190 | } | |
191 | ||
192 | /* | |
193 | * Send viewer streams to the given socket. The ignore_sent_flag indicates if | |
194 | * this function should ignore the sent flag or not. | |
195 | * | |
196 | * Return 0 on success or else a negative value. | |
197 | */ | |
198 | static | |
199 | ssize_t send_viewer_streams(struct lttcomm_sock *sock, | |
200 | struct relay_session *session, unsigned int ignore_sent_flag) | |
201 | { | |
202 | ssize_t ret; | |
203 | struct lttng_viewer_stream send_stream; | |
204 | struct lttng_ht_iter iter; | |
205 | struct relay_viewer_stream *vstream; | |
206 | ||
2f8f53af DG |
207 | rcu_read_lock(); |
208 | ||
209 | cds_lfht_for_each_entry(viewer_streams_ht->ht, &iter.iter, vstream, | |
210 | stream_n.node) { | |
2a174661 DG |
211 | struct ctf_trace *ctf_trace; |
212 | ||
2f8f53af DG |
213 | health_code_update(); |
214 | ||
7591bab1 MD |
215 | if (!viewer_stream_get(vstream)) { |
216 | continue; | |
217 | } | |
218 | ||
219 | pthread_mutex_lock(&vstream->stream->lock); | |
2f8f53af | 220 | /* Ignore if not the same session. */ |
7591bab1 | 221 | if (vstream->stream->trace->session->id != session->id || |
2f8f53af | 222 | (!ignore_sent_flag && vstream->sent_flag)) { |
7591bab1 MD |
223 | pthread_mutex_unlock(&vstream->stream->lock); |
224 | viewer_stream_put(vstream); | |
2f8f53af DG |
225 | continue; |
226 | } | |
227 | ||
7591bab1 MD |
228 | ctf_trace = vstream->stream->trace; |
229 | send_stream.id = htobe64(vstream->stream->stream_handle); | |
2a174661 | 230 | send_stream.ctf_trace_id = htobe64(ctf_trace->id); |
7591bab1 MD |
231 | send_stream.metadata_flag = htobe32( |
232 | vstream->stream->is_metadata); | |
f8f011fb MD |
233 | if (lttng_strncpy(send_stream.path_name, vstream->path_name, |
234 | sizeof(send_stream.path_name))) { | |
235 | pthread_mutex_unlock(&vstream->stream->lock); | |
236 | viewer_stream_put(vstream); | |
237 | ret = -1; /* Error. */ | |
238 | goto end_unlock; | |
239 | } | |
240 | if (lttng_strncpy(send_stream.channel_name, | |
241 | vstream->channel_name, | |
242 | sizeof(send_stream.channel_name))) { | |
243 | pthread_mutex_unlock(&vstream->stream->lock); | |
244 | viewer_stream_put(vstream); | |
245 | ret = -1; /* Error. */ | |
246 | goto end_unlock; | |
247 | } | |
2f8f53af | 248 | |
7591bab1 MD |
249 | DBG("Sending stream %" PRIu64 " to viewer", |
250 | vstream->stream->stream_handle); | |
251 | vstream->sent_flag = 1; | |
252 | pthread_mutex_unlock(&vstream->stream->lock); | |
253 | ||
2f8f53af | 254 | ret = send_response(sock, &send_stream, sizeof(send_stream)); |
7591bab1 | 255 | viewer_stream_put(vstream); |
2f8f53af DG |
256 | if (ret < 0) { |
257 | goto end_unlock; | |
258 | } | |
2f8f53af DG |
259 | } |
260 | ||
261 | ret = 0; | |
262 | ||
263 | end_unlock: | |
264 | rcu_read_unlock(); | |
265 | return ret; | |
266 | } | |
267 | ||
268 | /* | |
269 | * Create every viewer stream possible for the given session with the seek | |
270 | * type. Three counters *can* be return which are in order the total amount of | |
271 | * viewer stream of the session, the number of unsent stream and the number of | |
272 | * stream created. Those counters can be NULL and thus will be ignored. | |
273 | * | |
274 | * Return 0 on success or else a negative value. | |
275 | */ | |
276 | static | |
277 | int make_viewer_streams(struct relay_session *session, | |
278 | enum lttng_viewer_seek seek_t, uint32_t *nb_total, uint32_t *nb_unsent, | |
bddf80e4 | 279 | uint32_t *nb_created, bool *closed) |
2f8f53af DG |
280 | { |
281 | int ret; | |
2f8f53af | 282 | struct lttng_ht_iter iter; |
2a174661 | 283 | struct ctf_trace *ctf_trace; |
2f8f53af DG |
284 | |
285 | assert(session); | |
286 | ||
287 | /* | |
7591bab1 MD |
288 | * Hold the session lock to ensure that we see either none or |
289 | * all initial streams for a session, but no intermediate state. | |
2f8f53af | 290 | */ |
7591bab1 | 291 | pthread_mutex_lock(&session->lock); |
2f8f53af | 292 | |
bddf80e4 MD |
293 | if (session->connection_closed) { |
294 | *closed = true; | |
295 | } | |
296 | ||
2f8f53af | 297 | /* |
7591bab1 MD |
298 | * Create viewer streams for relay streams that are ready to be |
299 | * used for a the given session id only. | |
2f8f53af | 300 | */ |
2a174661 DG |
301 | rcu_read_lock(); |
302 | cds_lfht_for_each_entry(session->ctf_traces_ht->ht, &iter.iter, ctf_trace, | |
303 | node.node) { | |
304 | struct relay_stream *stream; | |
2f8f53af DG |
305 | |
306 | health_code_update(); | |
307 | ||
7591bab1 | 308 | if (!ctf_trace_get(ctf_trace)) { |
2f8f53af DG |
309 | continue; |
310 | } | |
311 | ||
7591bab1 | 312 | cds_list_for_each_entry_rcu(stream, &ctf_trace->stream_list, stream_node) { |
2a174661 DG |
313 | struct relay_viewer_stream *vstream; |
314 | ||
7591bab1 | 315 | if (!stream_get(stream)) { |
2a174661 DG |
316 | continue; |
317 | } | |
7591bab1 | 318 | /* |
d812ecb9 | 319 | * stream published is protected by the session lock. |
7591bab1 MD |
320 | */ |
321 | if (!stream->published) { | |
322 | goto next; | |
323 | } | |
324 | vstream = viewer_stream_get_by_id(stream->stream_handle); | |
2f8f53af | 325 | if (!vstream) { |
7591bab1 | 326 | vstream = viewer_stream_create(stream, seek_t); |
2a174661 DG |
327 | if (!vstream) { |
328 | ret = -1; | |
7591bab1 MD |
329 | ctf_trace_put(ctf_trace); |
330 | stream_put(stream); | |
2a174661 DG |
331 | goto error_unlock; |
332 | } | |
2a174661 DG |
333 | |
334 | if (nb_created) { | |
335 | /* Update number of created stream counter. */ | |
336 | (*nb_created)++; | |
337 | } | |
2229a09c MD |
338 | /* |
339 | * Ensure a self-reference is preserved even | |
340 | * after we have put our local reference. | |
341 | */ | |
862d3a3b MD |
342 | if (!viewer_stream_get(vstream)) { |
343 | ERR("Unable to get self-reference on viewer stream, logic error."); | |
344 | abort(); | |
345 | } | |
7591bab1 MD |
346 | } else { |
347 | if (!vstream->sent_flag && nb_unsent) { | |
348 | /* Update number of unsent stream counter. */ | |
349 | (*nb_unsent)++; | |
350 | } | |
2f8f53af | 351 | } |
2a174661 DG |
352 | /* Update number of total stream counter. */ |
353 | if (nb_total) { | |
2229a09c MD |
354 | if (stream->is_metadata) { |
355 | if (!stream->closed || | |
356 | stream->metadata_received > vstream->metadata_sent) { | |
357 | (*nb_total)++; | |
358 | } | |
359 | } else { | |
360 | if (!stream->closed || | |
361 | !(((int64_t) (stream->prev_seq - stream->last_net_seq_num)) >= 0)) { | |
362 | ||
363 | (*nb_total)++; | |
364 | } | |
365 | } | |
2f8f53af | 366 | } |
2229a09c MD |
367 | /* Put local reference. */ |
368 | viewer_stream_put(vstream); | |
7591bab1 MD |
369 | next: |
370 | stream_put(stream); | |
2f8f53af | 371 | } |
7591bab1 | 372 | ctf_trace_put(ctf_trace); |
2f8f53af DG |
373 | } |
374 | ||
375 | ret = 0; | |
376 | ||
377 | error_unlock: | |
2a174661 | 378 | rcu_read_unlock(); |
7591bab1 | 379 | pthread_mutex_unlock(&session->lock); |
2f8f53af DG |
380 | return ret; |
381 | } | |
382 | ||
b4aacfdc | 383 | int relayd_live_stop(void) |
d3e2ba59 | 384 | { |
b4aacfdc | 385 | /* Stop dispatch thread */ |
d3e2ba59 | 386 | CMM_STORE_SHARED(live_dispatch_thread_exit, 1); |
58eb9381 | 387 | futex_nto1_wake(&viewer_conn_queue.futex); |
b4aacfdc | 388 | return 0; |
d3e2ba59 JD |
389 | } |
390 | ||
d3e2ba59 JD |
391 | /* |
392 | * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set. | |
393 | */ | |
394 | static | |
395 | int create_thread_poll_set(struct lttng_poll_event *events, int size) | |
396 | { | |
397 | int ret; | |
398 | ||
399 | if (events == NULL || size == 0) { | |
400 | ret = -1; | |
401 | goto error; | |
402 | } | |
403 | ||
404 | ret = lttng_poll_create(events, size, LTTNG_CLOEXEC); | |
405 | if (ret < 0) { | |
406 | goto error; | |
407 | } | |
408 | ||
409 | /* Add quit pipe */ | |
bcf4a440 | 410 | ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN | LPOLLERR); |
d3e2ba59 JD |
411 | if (ret < 0) { |
412 | goto error; | |
413 | } | |
414 | ||
415 | return 0; | |
416 | ||
417 | error: | |
418 | return ret; | |
419 | } | |
420 | ||
421 | /* | |
422 | * Check if the thread quit pipe was triggered. | |
423 | * | |
424 | * Return 1 if it was triggered else 0; | |
425 | */ | |
426 | static | |
bcf4a440 | 427 | int check_thread_quit_pipe(int fd, uint32_t events) |
d3e2ba59 | 428 | { |
bcf4a440 | 429 | if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) { |
d3e2ba59 JD |
430 | return 1; |
431 | } | |
432 | ||
433 | return 0; | |
434 | } | |
435 | ||
436 | /* | |
437 | * Create and init socket from uri. | |
438 | */ | |
439 | static | |
440 | struct lttcomm_sock *init_socket(struct lttng_uri *uri) | |
441 | { | |
442 | int ret; | |
443 | struct lttcomm_sock *sock = NULL; | |
444 | ||
445 | sock = lttcomm_alloc_sock_from_uri(uri); | |
446 | if (sock == NULL) { | |
447 | ERR("Allocating socket"); | |
448 | goto error; | |
449 | } | |
450 | ||
451 | ret = lttcomm_create_sock(sock); | |
452 | if (ret < 0) { | |
453 | goto error; | |
454 | } | |
455 | DBG("Listening on sock %d for live", sock->fd); | |
456 | ||
457 | ret = sock->ops->bind(sock); | |
458 | if (ret < 0) { | |
459 | goto error; | |
460 | } | |
461 | ||
462 | ret = sock->ops->listen(sock, -1); | |
463 | if (ret < 0) { | |
464 | goto error; | |
465 | ||
466 | } | |
467 | ||
468 | return sock; | |
469 | ||
470 | error: | |
471 | if (sock) { | |
472 | lttcomm_destroy_sock(sock); | |
473 | } | |
474 | return NULL; | |
475 | } | |
476 | ||
477 | /* | |
478 | * This thread manages the listening for new connections on the network | |
479 | */ | |
480 | static | |
481 | void *thread_listener(void *data) | |
482 | { | |
483 | int i, ret, pollfd, err = -1; | |
d3e2ba59 JD |
484 | uint32_t revents, nb_fd; |
485 | struct lttng_poll_event events; | |
486 | struct lttcomm_sock *live_control_sock; | |
487 | ||
488 | DBG("[thread] Relay live listener started"); | |
489 | ||
eea7556c MD |
490 | health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_LISTENER); |
491 | ||
492 | health_code_update(); | |
493 | ||
d3e2ba59 JD |
494 | live_control_sock = init_socket(live_uri); |
495 | if (!live_control_sock) { | |
496 | goto error_sock_control; | |
497 | } | |
498 | ||
fb4d42ab | 499 | /* Pass 2 as size here for the thread quit pipe and control sockets. */ |
d3e2ba59 JD |
500 | ret = create_thread_poll_set(&events, 2); |
501 | if (ret < 0) { | |
502 | goto error_create_poll; | |
503 | } | |
504 | ||
505 | /* Add the control socket */ | |
506 | ret = lttng_poll_add(&events, live_control_sock->fd, LPOLLIN | LPOLLRDHUP); | |
507 | if (ret < 0) { | |
508 | goto error_poll_add; | |
509 | } | |
510 | ||
3fd27398 MD |
511 | lttng_relay_notify_ready(); |
512 | ||
9b5e0863 MD |
513 | if (testpoint(relayd_thread_live_listener)) { |
514 | goto error_testpoint; | |
515 | } | |
516 | ||
d3e2ba59 | 517 | while (1) { |
eea7556c MD |
518 | health_code_update(); |
519 | ||
d3e2ba59 JD |
520 | DBG("Listener accepting live viewers connections"); |
521 | ||
522 | restart: | |
eea7556c | 523 | health_poll_entry(); |
d3e2ba59 | 524 | ret = lttng_poll_wait(&events, -1); |
eea7556c | 525 | health_poll_exit(); |
d3e2ba59 JD |
526 | if (ret < 0) { |
527 | /* | |
528 | * Restart interrupted system call. | |
529 | */ | |
530 | if (errno == EINTR) { | |
531 | goto restart; | |
532 | } | |
533 | goto error; | |
534 | } | |
535 | nb_fd = ret; | |
536 | ||
537 | DBG("Relay new viewer connection received"); | |
538 | for (i = 0; i < nb_fd; i++) { | |
eea7556c MD |
539 | health_code_update(); |
540 | ||
d3e2ba59 JD |
541 | /* Fetch once the poll data */ |
542 | revents = LTTNG_POLL_GETEV(&events, i); | |
543 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
544 | ||
fd20dac9 MD |
545 | if (!revents) { |
546 | /* No activity for this FD (poll implementation). */ | |
547 | continue; | |
548 | } | |
549 | ||
d3e2ba59 | 550 | /* Thread quit pipe has been closed. Killing thread. */ |
bcf4a440 | 551 | ret = check_thread_quit_pipe(pollfd, revents); |
d3e2ba59 JD |
552 | if (ret) { |
553 | err = 0; | |
554 | goto exit; | |
555 | } | |
556 | ||
03e43155 | 557 | if (revents & LPOLLIN) { |
d3e2ba59 | 558 | /* |
7591bab1 MD |
559 | * A new connection is requested, therefore a |
560 | * viewer connection is allocated in this | |
561 | * thread, enqueued to a global queue and | |
562 | * dequeued (and freed) in the worker thread. | |
d3e2ba59 | 563 | */ |
58eb9381 DG |
564 | int val = 1; |
565 | struct relay_connection *new_conn; | |
d3e2ba59 JD |
566 | struct lttcomm_sock *newsock; |
567 | ||
d3e2ba59 JD |
568 | newsock = live_control_sock->ops->accept(live_control_sock); |
569 | if (!newsock) { | |
570 | PERROR("accepting control sock"); | |
d3e2ba59 JD |
571 | goto error; |
572 | } | |
573 | DBG("Relay viewer connection accepted socket %d", newsock->fd); | |
58eb9381 | 574 | |
d3e2ba59 | 575 | ret = setsockopt(newsock->fd, SOL_SOCKET, SO_REUSEADDR, &val, |
58eb9381 | 576 | sizeof(val)); |
d3e2ba59 JD |
577 | if (ret < 0) { |
578 | PERROR("setsockopt inet"); | |
579 | lttcomm_destroy_sock(newsock); | |
d3e2ba59 JD |
580 | goto error; |
581 | } | |
7591bab1 MD |
582 | new_conn = connection_create(newsock, RELAY_CONNECTION_UNKNOWN); |
583 | if (!new_conn) { | |
584 | lttcomm_destroy_sock(newsock); | |
585 | goto error; | |
586 | } | |
587 | /* Ownership assumed by the connection. */ | |
588 | newsock = NULL; | |
d3e2ba59 | 589 | |
58eb9381 | 590 | /* Enqueue request for the dispatcher thread. */ |
8bdee6e2 SM |
591 | cds_wfcq_enqueue(&viewer_conn_queue.head, &viewer_conn_queue.tail, |
592 | &new_conn->qnode); | |
d3e2ba59 JD |
593 | |
594 | /* | |
7591bab1 MD |
595 | * Wake the dispatch queue futex. |
596 | * Implicit memory barrier with the | |
597 | * exchange in cds_wfcq_enqueue. | |
d3e2ba59 | 598 | */ |
58eb9381 | 599 | futex_nto1_wake(&viewer_conn_queue.futex); |
03e43155 MD |
600 | } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { |
601 | ERR("socket poll error"); | |
602 | goto error; | |
603 | } else { | |
604 | ERR("Unexpected poll events %u for sock %d", revents, pollfd); | |
605 | goto error; | |
d3e2ba59 JD |
606 | } |
607 | } | |
608 | } | |
609 | ||
610 | exit: | |
611 | error: | |
612 | error_poll_add: | |
9b5e0863 | 613 | error_testpoint: |
d3e2ba59 JD |
614 | lttng_poll_clean(&events); |
615 | error_create_poll: | |
616 | if (live_control_sock->fd >= 0) { | |
617 | ret = live_control_sock->ops->close(live_control_sock); | |
618 | if (ret) { | |
619 | PERROR("close"); | |
620 | } | |
621 | } | |
622 | lttcomm_destroy_sock(live_control_sock); | |
623 | error_sock_control: | |
624 | if (err) { | |
eea7556c | 625 | health_error(); |
d3e2ba59 JD |
626 | DBG("Live viewer listener thread exited with error"); |
627 | } | |
eea7556c | 628 | health_unregister(health_relayd); |
d3e2ba59 | 629 | DBG("Live viewer listener thread cleanup complete"); |
b4aacfdc MD |
630 | if (lttng_relay_stop_threads()) { |
631 | ERR("Error stopping threads"); | |
178a0557 | 632 | } |
d3e2ba59 JD |
633 | return NULL; |
634 | } | |
635 | ||
636 | /* | |
637 | * This thread manages the dispatching of the requests to worker threads | |
638 | */ | |
639 | static | |
640 | void *thread_dispatcher(void *data) | |
641 | { | |
6cd525e8 MD |
642 | int err = -1; |
643 | ssize_t ret; | |
8bdee6e2 | 644 | struct cds_wfcq_node *node; |
58eb9381 | 645 | struct relay_connection *conn = NULL; |
d3e2ba59 JD |
646 | |
647 | DBG("[thread] Live viewer relay dispatcher started"); | |
648 | ||
eea7556c MD |
649 | health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_DISPATCHER); |
650 | ||
9b5e0863 MD |
651 | if (testpoint(relayd_thread_live_dispatcher)) { |
652 | goto error_testpoint; | |
653 | } | |
654 | ||
eea7556c MD |
655 | health_code_update(); |
656 | ||
68924dc1 | 657 | for (;;) { |
eea7556c MD |
658 | health_code_update(); |
659 | ||
d3e2ba59 | 660 | /* Atomically prepare the queue futex */ |
58eb9381 | 661 | futex_nto1_prepare(&viewer_conn_queue.futex); |
d3e2ba59 | 662 | |
68924dc1 MD |
663 | if (CMM_LOAD_SHARED(live_dispatch_thread_exit)) { |
664 | break; | |
665 | } | |
666 | ||
d3e2ba59 | 667 | do { |
eea7556c MD |
668 | health_code_update(); |
669 | ||
d3e2ba59 | 670 | /* Dequeue commands */ |
8bdee6e2 SM |
671 | node = cds_wfcq_dequeue_blocking(&viewer_conn_queue.head, |
672 | &viewer_conn_queue.tail); | |
d3e2ba59 JD |
673 | if (node == NULL) { |
674 | DBG("Woken up but nothing in the live-viewer " | |
675 | "relay command queue"); | |
676 | /* Continue thread execution */ | |
677 | break; | |
678 | } | |
58eb9381 | 679 | conn = caa_container_of(node, struct relay_connection, qnode); |
d3e2ba59 | 680 | DBG("Dispatching viewer request waiting on sock %d", |
58eb9381 | 681 | conn->sock->fd); |
d3e2ba59 JD |
682 | |
683 | /* | |
7591bab1 MD |
684 | * Inform worker thread of the new request. This |
685 | * call is blocking so we can be assured that | |
686 | * the data will be read at some point in time | |
687 | * or wait to the end of the world :) | |
d3e2ba59 | 688 | */ |
58eb9381 DG |
689 | ret = lttng_write(live_conn_pipe[1], &conn, sizeof(conn)); |
690 | if (ret < 0) { | |
691 | PERROR("write conn pipe"); | |
7591bab1 | 692 | connection_put(conn); |
d3e2ba59 JD |
693 | goto error; |
694 | } | |
695 | } while (node != NULL); | |
696 | ||
697 | /* Futex wait on queue. Blocking call on futex() */ | |
eea7556c | 698 | health_poll_entry(); |
58eb9381 | 699 | futex_nto1_wait(&viewer_conn_queue.futex); |
eea7556c | 700 | health_poll_exit(); |
d3e2ba59 JD |
701 | } |
702 | ||
eea7556c MD |
703 | /* Normal exit, no error */ |
704 | err = 0; | |
705 | ||
d3e2ba59 | 706 | error: |
9b5e0863 | 707 | error_testpoint: |
eea7556c MD |
708 | if (err) { |
709 | health_error(); | |
710 | ERR("Health error occurred in %s", __func__); | |
711 | } | |
712 | health_unregister(health_relayd); | |
d3e2ba59 | 713 | DBG("Live viewer dispatch thread dying"); |
b4aacfdc MD |
714 | if (lttng_relay_stop_threads()) { |
715 | ERR("Error stopping threads"); | |
178a0557 | 716 | } |
d3e2ba59 JD |
717 | return NULL; |
718 | } | |
719 | ||
720 | /* | |
721 | * Establish connection with the viewer and check the versions. | |
722 | * | |
723 | * Return 0 on success or else negative value. | |
724 | */ | |
725 | static | |
58eb9381 | 726 | int viewer_connect(struct relay_connection *conn) |
d3e2ba59 JD |
727 | { |
728 | int ret; | |
729 | struct lttng_viewer_connect reply, msg; | |
730 | ||
58eb9381 | 731 | conn->version_check_done = 1; |
d3e2ba59 | 732 | |
eea7556c MD |
733 | health_code_update(); |
734 | ||
2f8f53af DG |
735 | DBG("Viewer is establishing a connection to the relayd."); |
736 | ||
58eb9381 | 737 | ret = recv_request(conn->sock, &msg, sizeof(msg)); |
2f8f53af | 738 | if (ret < 0) { |
d3e2ba59 JD |
739 | goto end; |
740 | } | |
741 | ||
eea7556c MD |
742 | health_code_update(); |
743 | ||
f46b2ce6 | 744 | memset(&reply, 0, sizeof(reply)); |
d3e2ba59 JD |
745 | reply.major = RELAYD_VERSION_COMM_MAJOR; |
746 | reply.minor = RELAYD_VERSION_COMM_MINOR; | |
747 | ||
748 | /* Major versions must be the same */ | |
749 | if (reply.major != be32toh(msg.major)) { | |
2f8f53af DG |
750 | DBG("Incompatible major versions ([relayd] %u vs [client] %u)", |
751 | reply.major, be32toh(msg.major)); | |
72180669 | 752 | ret = -1; |
d3e2ba59 JD |
753 | goto end; |
754 | } | |
755 | ||
58eb9381 | 756 | conn->major = reply.major; |
d3e2ba59 JD |
757 | /* We adapt to the lowest compatible version */ |
758 | if (reply.minor <= be32toh(msg.minor)) { | |
58eb9381 | 759 | conn->minor = reply.minor; |
d3e2ba59 | 760 | } else { |
58eb9381 | 761 | conn->minor = be32toh(msg.minor); |
d3e2ba59 JD |
762 | } |
763 | ||
c4e361a4 | 764 | if (be32toh(msg.type) == LTTNG_VIEWER_CLIENT_COMMAND) { |
58eb9381 | 765 | conn->type = RELAY_VIEWER_COMMAND; |
c4e361a4 | 766 | } else if (be32toh(msg.type) == LTTNG_VIEWER_CLIENT_NOTIFICATION) { |
58eb9381 | 767 | conn->type = RELAY_VIEWER_NOTIFICATION; |
d3e2ba59 JD |
768 | } else { |
769 | ERR("Unknown connection type : %u", be32toh(msg.type)); | |
770 | ret = -1; | |
771 | goto end; | |
772 | } | |
773 | ||
774 | reply.major = htobe32(reply.major); | |
775 | reply.minor = htobe32(reply.minor); | |
58eb9381 | 776 | if (conn->type == RELAY_VIEWER_COMMAND) { |
93b4787b | 777 | /* |
7591bab1 MD |
778 | * Increment outside of htobe64 macro, because the argument can |
779 | * be used more than once within the macro, and thus the | |
780 | * operation may be undefined. | |
93b4787b | 781 | */ |
7591bab1 | 782 | pthread_mutex_lock(&last_relay_viewer_session_id_lock); |
93b4787b | 783 | last_relay_viewer_session_id++; |
7591bab1 | 784 | pthread_mutex_unlock(&last_relay_viewer_session_id_lock); |
93b4787b | 785 | reply.viewer_session_id = htobe64(last_relay_viewer_session_id); |
d3e2ba59 | 786 | } |
eea7556c MD |
787 | |
788 | health_code_update(); | |
789 | ||
58eb9381 | 790 | ret = send_response(conn->sock, &reply, sizeof(reply)); |
d3e2ba59 | 791 | if (ret < 0) { |
2f8f53af | 792 | goto end; |
d3e2ba59 JD |
793 | } |
794 | ||
eea7556c MD |
795 | health_code_update(); |
796 | ||
58eb9381 | 797 | DBG("Version check done using protocol %u.%u", conn->major, conn->minor); |
d3e2ba59 JD |
798 | ret = 0; |
799 | ||
800 | end: | |
801 | return ret; | |
802 | } | |
803 | ||
804 | /* | |
805 | * Send the viewer the list of current sessions. | |
7591bab1 MD |
806 | * We need to create a copy of the hash table content because otherwise |
807 | * we cannot assume the number of entries stays the same between getting | |
808 | * the number of HT elements and iteration over the HT. | |
d3e2ba59 JD |
809 | * |
810 | * Return 0 on success or else a negative value. | |
811 | */ | |
812 | static | |
58eb9381 | 813 | int viewer_list_sessions(struct relay_connection *conn) |
d3e2ba59 | 814 | { |
5f10c6b1 | 815 | int ret = 0; |
d3e2ba59 | 816 | struct lttng_viewer_list_sessions session_list; |
d3e2ba59 | 817 | struct lttng_ht_iter iter; |
d3e2ba59 | 818 | struct relay_session *session; |
7591bab1 MD |
819 | struct lttng_viewer_session *send_session_buf = NULL; |
820 | uint32_t buf_count = SESSION_BUF_DEFAULT_COUNT; | |
821 | uint32_t count = 0; | |
d3e2ba59 JD |
822 | |
823 | DBG("List sessions received"); | |
824 | ||
7591bab1 MD |
825 | send_session_buf = zmalloc(SESSION_BUF_DEFAULT_COUNT * sizeof(*send_session_buf)); |
826 | if (!send_session_buf) { | |
827 | return -1; | |
d3e2ba59 JD |
828 | } |
829 | ||
7591bab1 MD |
830 | rcu_read_lock(); |
831 | cds_lfht_for_each_entry(sessions_ht->ht, &iter.iter, session, | |
2f8f53af | 832 | session_n.node) { |
7591bab1 | 833 | struct lttng_viewer_session *send_session; |
d3e2ba59 | 834 | |
eea7556c MD |
835 | health_code_update(); |
836 | ||
7591bab1 MD |
837 | if (count >= buf_count) { |
838 | struct lttng_viewer_session *newbuf; | |
839 | uint32_t new_buf_count = buf_count << 1; | |
eea7556c | 840 | |
7591bab1 MD |
841 | newbuf = realloc(send_session_buf, |
842 | new_buf_count * sizeof(*send_session_buf)); | |
843 | if (!newbuf) { | |
844 | ret = -1; | |
5f10c6b1 | 845 | break; |
7591bab1 MD |
846 | } |
847 | send_session_buf = newbuf; | |
848 | buf_count = new_buf_count; | |
6763619c | 849 | } |
7591bab1 | 850 | send_session = &send_session_buf[count]; |
bfc3fb17 MD |
851 | if (lttng_strncpy(send_session->session_name, |
852 | session->session_name, | |
853 | sizeof(send_session->session_name))) { | |
854 | ret = -1; | |
5f10c6b1 | 855 | break; |
bfc3fb17 MD |
856 | } |
857 | if (lttng_strncpy(send_session->hostname, session->hostname, | |
858 | sizeof(send_session->hostname))) { | |
859 | ret = -1; | |
5f10c6b1 | 860 | break; |
bfc3fb17 | 861 | } |
7591bab1 MD |
862 | send_session->id = htobe64(session->id); |
863 | send_session->live_timer = htobe32(session->live_timer); | |
864 | if (session->viewer_attached) { | |
865 | send_session->clients = htobe32(1); | |
866 | } else { | |
867 | send_session->clients = htobe32(0); | |
d227d5bd | 868 | } |
7591bab1 MD |
869 | send_session->streams = htobe32(session->stream_count); |
870 | count++; | |
871 | } | |
872 | rcu_read_unlock(); | |
5f10c6b1 JG |
873 | if (ret < 0) { |
874 | goto end_free; | |
875 | } | |
d227d5bd | 876 | |
7591bab1 | 877 | session_list.sessions_count = htobe32(count); |
d227d5bd | 878 | |
7591bab1 | 879 | health_code_update(); |
d227d5bd | 880 | |
7591bab1 MD |
881 | ret = send_response(conn->sock, &session_list, sizeof(session_list)); |
882 | if (ret < 0) { | |
883 | goto end_free; | |
d227d5bd | 884 | } |
d227d5bd | 885 | |
7591bab1 | 886 | health_code_update(); |
d227d5bd | 887 | |
7591bab1 MD |
888 | ret = send_response(conn->sock, send_session_buf, |
889 | count * sizeof(*send_session_buf)); | |
890 | if (ret < 0) { | |
891 | goto end_free; | |
d227d5bd | 892 | } |
7591bab1 | 893 | health_code_update(); |
d227d5bd | 894 | |
7591bab1 MD |
895 | ret = 0; |
896 | end_free: | |
897 | free(send_session_buf); | |
898 | return ret; | |
d227d5bd JD |
899 | } |
900 | ||
80e8027a | 901 | /* |
7591bab1 | 902 | * Send the viewer the list of current streams. |
80e8027a JD |
903 | */ |
904 | static | |
58eb9381 | 905 | int viewer_get_new_streams(struct relay_connection *conn) |
80e8027a JD |
906 | { |
907 | int ret, send_streams = 0; | |
7591bab1 | 908 | uint32_t nb_created = 0, nb_unsent = 0, nb_streams = 0, nb_total = 0; |
80e8027a JD |
909 | struct lttng_viewer_new_streams_request request; |
910 | struct lttng_viewer_new_streams_response response; | |
80e8027a | 911 | struct relay_session *session; |
6763619c | 912 | uint64_t session_id; |
bddf80e4 | 913 | bool closed = false; |
80e8027a | 914 | |
58eb9381 | 915 | assert(conn); |
80e8027a JD |
916 | |
917 | DBG("Get new streams received"); | |
918 | ||
80e8027a JD |
919 | health_code_update(); |
920 | ||
2f8f53af | 921 | /* Receive the request from the connected client. */ |
58eb9381 | 922 | ret = recv_request(conn->sock, &request, sizeof(request)); |
2f8f53af | 923 | if (ret < 0) { |
80e8027a JD |
924 | goto error; |
925 | } | |
6763619c | 926 | session_id = be64toh(request.session_id); |
80e8027a JD |
927 | |
928 | health_code_update(); | |
929 | ||
53efb85a MD |
930 | memset(&response, 0, sizeof(response)); |
931 | ||
7591bab1 | 932 | session = session_get_by_id(session_id); |
2f8f53af | 933 | if (!session) { |
6763619c | 934 | DBG("Relay session %" PRIu64 " not found", session_id); |
c4e361a4 | 935 | response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR); |
80e8027a JD |
936 | goto send_reply; |
937 | } | |
938 | ||
7591bab1 | 939 | if (!viewer_session_is_attached(conn->viewer_session, session)) { |
80e8027a | 940 | send_streams = 0; |
c4e361a4 | 941 | response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR); |
80e8027a JD |
942 | goto send_reply; |
943 | } | |
944 | ||
6763619c JD |
945 | send_streams = 1; |
946 | response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_OK); | |
947 | ||
7591bab1 | 948 | ret = make_viewer_streams(session, LTTNG_VIEWER_SEEK_LAST, &nb_total, &nb_unsent, |
bddf80e4 | 949 | &nb_created, &closed); |
2f8f53af | 950 | if (ret < 0) { |
7591bab1 | 951 | goto end_put_session; |
2f8f53af DG |
952 | } |
953 | /* Only send back the newly created streams with the unsent ones. */ | |
954 | nb_streams = nb_created + nb_unsent; | |
80e8027a JD |
955 | response.streams_count = htobe32(nb_streams); |
956 | ||
4479f682 | 957 | /* |
2229a09c MD |
958 | * If the session is closed, HUP when there are no more streams |
959 | * with data. | |
4479f682 | 960 | */ |
bddf80e4 | 961 | if (closed && nb_total == 0) { |
4479f682 | 962 | send_streams = 0; |
bddf80e4 | 963 | response.streams_count = 0; |
4479f682 JD |
964 | response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP); |
965 | goto send_reply; | |
966 | } | |
967 | ||
80e8027a JD |
968 | send_reply: |
969 | health_code_update(); | |
58eb9381 | 970 | ret = send_response(conn->sock, &response, sizeof(response)); |
80e8027a | 971 | if (ret < 0) { |
7591bab1 | 972 | goto end_put_session; |
80e8027a JD |
973 | } |
974 | health_code_update(); | |
975 | ||
976 | /* | |
7591bab1 MD |
977 | * Unknown or empty session, just return gracefully, the viewer |
978 | * knows what is happening. | |
80e8027a JD |
979 | */ |
980 | if (!send_streams || !nb_streams) { | |
981 | ret = 0; | |
7591bab1 | 982 | goto end_put_session; |
80e8027a JD |
983 | } |
984 | ||
2f8f53af | 985 | /* |
7591bab1 MD |
986 | * Send stream and *DON'T* ignore the sent flag so every viewer |
987 | * streams that were not sent from that point will be sent to | |
988 | * the viewer. | |
2f8f53af | 989 | */ |
58eb9381 | 990 | ret = send_viewer_streams(conn->sock, session, 0); |
2f8f53af | 991 | if (ret < 0) { |
7591bab1 | 992 | goto end_put_session; |
80e8027a JD |
993 | } |
994 | ||
7591bab1 MD |
995 | end_put_session: |
996 | if (session) { | |
997 | session_put(session); | |
998 | } | |
80e8027a JD |
999 | error: |
1000 | return ret; | |
1001 | } | |
1002 | ||
d3e2ba59 JD |
1003 | /* |
1004 | * Send the viewer the list of current sessions. | |
1005 | */ | |
1006 | static | |
58eb9381 | 1007 | int viewer_attach_session(struct relay_connection *conn) |
d3e2ba59 | 1008 | { |
2f8f53af DG |
1009 | int send_streams = 0; |
1010 | ssize_t ret; | |
80e8027a | 1011 | uint32_t nb_streams = 0; |
2f8f53af | 1012 | enum lttng_viewer_seek seek_type; |
d3e2ba59 JD |
1013 | struct lttng_viewer_attach_session_request request; |
1014 | struct lttng_viewer_attach_session_response response; | |
7591bab1 | 1015 | struct relay_session *session = NULL; |
bddf80e4 | 1016 | bool closed = false; |
d3e2ba59 | 1017 | |
58eb9381 | 1018 | assert(conn); |
d3e2ba59 | 1019 | |
eea7556c MD |
1020 | health_code_update(); |
1021 | ||
2f8f53af | 1022 | /* Receive the request from the connected client. */ |
58eb9381 | 1023 | ret = recv_request(conn->sock, &request, sizeof(request)); |
2f8f53af | 1024 | if (ret < 0) { |
d3e2ba59 JD |
1025 | goto error; |
1026 | } | |
1027 | ||
eea7556c MD |
1028 | health_code_update(); |
1029 | ||
53efb85a MD |
1030 | memset(&response, 0, sizeof(response)); |
1031 | ||
c3b7390b JD |
1032 | if (!conn->viewer_session) { |
1033 | DBG("Client trying to attach before creating a live viewer session"); | |
1034 | response.status = htobe32(LTTNG_VIEWER_ATTACH_NO_SESSION); | |
1035 | goto send_reply; | |
1036 | } | |
1037 | ||
7591bab1 | 1038 | session = session_get_by_id(be64toh(request.session_id)); |
2f8f53af | 1039 | if (!session) { |
d3e2ba59 | 1040 | DBG("Relay session %" PRIu64 " not found", |
f8fc08d2 | 1041 | (uint64_t) be64toh(request.session_id)); |
c4e361a4 | 1042 | response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK); |
d3e2ba59 JD |
1043 | goto send_reply; |
1044 | } | |
7591bab1 | 1045 | DBG("Attach session ID %" PRIu64 " received", |
f8fc08d2 | 1046 | (uint64_t) be64toh(request.session_id)); |
d3e2ba59 | 1047 | |
7591bab1 | 1048 | if (session->live_timer == 0) { |
d3e2ba59 | 1049 | DBG("Not live session"); |
c4e361a4 | 1050 | response.status = htobe32(LTTNG_VIEWER_ATTACH_NOT_LIVE); |
d3e2ba59 | 1051 | goto send_reply; |
7591bab1 MD |
1052 | } |
1053 | ||
1054 | send_streams = 1; | |
1055 | ret = viewer_session_attach(conn->viewer_session, session); | |
1056 | if (ret) { | |
1057 | DBG("Already a viewer attached"); | |
1058 | response.status = htobe32(LTTNG_VIEWER_ATTACH_ALREADY); | |
1059 | goto send_reply; | |
d3e2ba59 JD |
1060 | } |
1061 | ||
1062 | switch (be32toh(request.seek)) { | |
c4e361a4 JD |
1063 | case LTTNG_VIEWER_SEEK_BEGINNING: |
1064 | case LTTNG_VIEWER_SEEK_LAST: | |
7591bab1 | 1065 | response.status = htobe32(LTTNG_VIEWER_ATTACH_OK); |
2f8f53af | 1066 | seek_type = be32toh(request.seek); |
d3e2ba59 JD |
1067 | break; |
1068 | default: | |
1069 | ERR("Wrong seek parameter"); | |
c4e361a4 | 1070 | response.status = htobe32(LTTNG_VIEWER_ATTACH_SEEK_ERR); |
d3e2ba59 JD |
1071 | send_streams = 0; |
1072 | goto send_reply; | |
1073 | } | |
1074 | ||
bddf80e4 MD |
1075 | ret = make_viewer_streams(session, seek_type, &nb_streams, NULL, |
1076 | NULL, &closed); | |
2f8f53af | 1077 | if (ret < 0) { |
7591bab1 | 1078 | goto end_put_session; |
d3e2ba59 | 1079 | } |
2f8f53af | 1080 | response.streams_count = htobe32(nb_streams); |
d3e2ba59 | 1081 | |
bddf80e4 MD |
1082 | /* |
1083 | * If the session is closed when the viewer is attaching, it | |
1084 | * means some of the streams may have been concurrently removed, | |
1085 | * so we don't allow the viewer to attach, even if there are | |
1086 | * streams available. | |
1087 | */ | |
1088 | if (closed) { | |
1089 | send_streams = 0; | |
1090 | response.streams_count = 0; | |
1091 | response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP); | |
1092 | goto send_reply; | |
1093 | } | |
1094 | ||
d3e2ba59 | 1095 | send_reply: |
eea7556c | 1096 | health_code_update(); |
58eb9381 | 1097 | ret = send_response(conn->sock, &response, sizeof(response)); |
d3e2ba59 | 1098 | if (ret < 0) { |
7591bab1 | 1099 | goto end_put_session; |
d3e2ba59 | 1100 | } |
eea7556c | 1101 | health_code_update(); |
d3e2ba59 JD |
1102 | |
1103 | /* | |
7591bab1 MD |
1104 | * Unknown or empty session, just return gracefully, the viewer |
1105 | * knows what is happening. | |
d3e2ba59 | 1106 | */ |
157df586 | 1107 | if (!send_streams || !nb_streams) { |
d3e2ba59 | 1108 | ret = 0; |
7591bab1 | 1109 | goto end_put_session; |
d3e2ba59 JD |
1110 | } |
1111 | ||
2f8f53af | 1112 | /* Send stream and ignore the sent flag. */ |
58eb9381 | 1113 | ret = send_viewer_streams(conn->sock, session, 1); |
2f8f53af | 1114 | if (ret < 0) { |
7591bab1 | 1115 | goto end_put_session; |
d3e2ba59 | 1116 | } |
d3e2ba59 | 1117 | |
7591bab1 MD |
1118 | end_put_session: |
1119 | if (session) { | |
1120 | session_put(session); | |
1121 | } | |
4a9daf17 JD |
1122 | error: |
1123 | return ret; | |
1124 | } | |
1125 | ||
878c34cf DG |
1126 | /* |
1127 | * Open the index file if needed for the given vstream. | |
1128 | * | |
e0547b83 MD |
1129 | * If an index file is successfully opened, the vstream will set it as its |
1130 | * current index file. | |
878c34cf DG |
1131 | * |
1132 | * Return 0 on success, a negative value on error (-ENOENT if not ready yet). | |
7591bab1 MD |
1133 | * |
1134 | * Called with rstream lock held. | |
878c34cf DG |
1135 | */ |
1136 | static int try_open_index(struct relay_viewer_stream *vstream, | |
1137 | struct relay_stream *rstream) | |
1138 | { | |
1139 | int ret = 0; | |
1140 | ||
e0547b83 | 1141 | if (vstream->index_file) { |
878c34cf DG |
1142 | goto end; |
1143 | } | |
1144 | ||
1145 | /* | |
7591bab1 | 1146 | * First time, we open the index file and at least one index is ready. |
878c34cf | 1147 | */ |
a44ca2ca | 1148 | if (rstream->index_received_seqcount == 0) { |
878c34cf DG |
1149 | ret = -ENOENT; |
1150 | goto end; | |
1151 | } | |
e0547b83 MD |
1152 | vstream->index_file = lttng_index_file_open(vstream->path_name, |
1153 | vstream->channel_name, | |
7591bab1 MD |
1154 | vstream->stream->tracefile_count, |
1155 | vstream->current_tracefile_id); | |
e0547b83 MD |
1156 | if (!vstream->index_file) { |
1157 | ret = -1; | |
878c34cf DG |
1158 | } |
1159 | ||
1160 | end: | |
1161 | return ret; | |
1162 | } | |
1163 | ||
1164 | /* | |
7591bab1 MD |
1165 | * Check the status of the index for the given stream. This function |
1166 | * updates the index structure if needed and can put (close) the vstream | |
1167 | * in the HUP situation. | |
1168 | * | |
1169 | * Return 0 means that we can proceed with the index. A value of 1 means | |
1170 | * that the index has been updated and is ready to be sent to the | |
1171 | * client. A negative value indicates an error that can't be handled. | |
878c34cf | 1172 | * |
7591bab1 | 1173 | * Called with rstream lock held. |
878c34cf DG |
1174 | */ |
1175 | static int check_index_status(struct relay_viewer_stream *vstream, | |
1176 | struct relay_stream *rstream, struct ctf_trace *trace, | |
1177 | struct lttng_viewer_index *index) | |
1178 | { | |
1179 | int ret; | |
1180 | ||
7591bab1 | 1181 | if (trace->session->connection_closed |
a44ca2ca MD |
1182 | && rstream->index_received_seqcount |
1183 | == vstream->index_sent_seqcount) { | |
7591bab1 MD |
1184 | /* Last index sent and session connection is closed. */ |
1185 | index->status = htobe32(LTTNG_VIEWER_INDEX_HUP); | |
1186 | goto hup; | |
1187 | } else if (rstream->beacon_ts_end != -1ULL && | |
a44ca2ca MD |
1188 | rstream->index_received_seqcount |
1189 | == vstream->index_sent_seqcount) { | |
7591bab1 MD |
1190 | /* |
1191 | * We've received a synchronization beacon and the last index | |
1192 | * available has been sent, the index for now is inactive. | |
1193 | * | |
1194 | * In this case, we have received a beacon which allows us to | |
1195 | * inform the client of a time interval during which we can | |
1196 | * guarantee that there are no events to read (and never will | |
1197 | * be). | |
1198 | */ | |
1199 | index->status = htobe32(LTTNG_VIEWER_INDEX_INACTIVE); | |
1200 | index->timestamp_end = htobe64(rstream->beacon_ts_end); | |
1201 | index->stream_id = htobe64(rstream->ctf_stream_id); | |
1202 | goto index_ready; | |
a44ca2ca MD |
1203 | } else if (rstream->index_received_seqcount |
1204 | == vstream->index_sent_seqcount) { | |
7591bab1 | 1205 | /* |
a44ca2ca MD |
1206 | * This checks whether received == sent seqcount. In |
1207 | * this case, we have not received a beacon. Therefore, | |
1208 | * we can only ask the client to retry later. | |
7591bab1 MD |
1209 | */ |
1210 | index->status = htobe32(LTTNG_VIEWER_INDEX_RETRY); | |
1211 | goto index_ready; | |
a44ca2ca MD |
1212 | } else if (!tracefile_array_seq_in_file(rstream->tfa, |
1213 | vstream->current_tracefile_id, | |
1214 | vstream->index_sent_seqcount)) { | |
7591bab1 | 1215 | /* |
a44ca2ca MD |
1216 | * The next index we want to send cannot be read either |
1217 | * because we need to perform a rotation, or due to | |
1218 | * the producer having overwritten its trace file. | |
7591bab1 | 1219 | */ |
a44ca2ca | 1220 | DBG("Viewer stream %" PRIu64 " rotation", |
7591bab1 MD |
1221 | vstream->stream->stream_handle); |
1222 | ret = viewer_stream_rotate(vstream); | |
1223 | if (ret < 0) { | |
1224 | goto end; | |
1225 | } else if (ret == 1) { | |
1226 | /* EOF across entire stream. */ | |
1227 | index->status = htobe32(LTTNG_VIEWER_INDEX_HUP); | |
1228 | goto hup; | |
1229 | } | |
7591bab1 | 1230 | /* |
a44ca2ca MD |
1231 | * If we have been pushed due to overwrite, it |
1232 | * necessarily means there is data that can be read in | |
1233 | * the stream. If we rotated because we reached the end | |
1234 | * of a tracefile, it means the following tracefile | |
1235 | * needs to contain at least one index, else we would | |
1236 | * have already returned LTTNG_VIEWER_INDEX_RETRY to the | |
1237 | * viewer. The updated index_sent_seqcount needs to | |
1238 | * point to a readable index entry now. | |
1239 | * | |
1240 | * In the case where we "rotate" on a single file, we | |
1241 | * can end up in a case where the requested index is | |
1242 | * still unavailable. | |
7591bab1 | 1243 | */ |
a44ca2ca MD |
1244 | if (rstream->tracefile_count == 1 && |
1245 | !tracefile_array_seq_in_file( | |
1246 | rstream->tfa, | |
1247 | vstream->current_tracefile_id, | |
1248 | vstream->index_sent_seqcount)) { | |
1249 | index->status = htobe32(LTTNG_VIEWER_INDEX_RETRY); | |
1250 | goto index_ready; | |
878c34cf | 1251 | } |
a44ca2ca MD |
1252 | assert(tracefile_array_seq_in_file(rstream->tfa, |
1253 | vstream->current_tracefile_id, | |
1254 | vstream->index_sent_seqcount)); | |
878c34cf | 1255 | } |
a44ca2ca MD |
1256 | /* ret == 0 means successful so we continue. */ |
1257 | ret = 0; | |
7591bab1 | 1258 | end: |
878c34cf DG |
1259 | return ret; |
1260 | ||
1261 | hup: | |
7591bab1 | 1262 | viewer_stream_put(vstream); |
878c34cf DG |
1263 | index_ready: |
1264 | return 1; | |
1265 | } | |
1266 | ||
d3e2ba59 JD |
1267 | /* |
1268 | * Send the next index for a stream. | |
1269 | * | |
1270 | * Return 0 on success or else a negative value. | |
1271 | */ | |
1272 | static | |
58eb9381 | 1273 | int viewer_get_next_index(struct relay_connection *conn) |
d3e2ba59 JD |
1274 | { |
1275 | int ret; | |
1276 | struct lttng_viewer_get_next_index request_index; | |
1277 | struct lttng_viewer_index viewer_index; | |
50adc264 | 1278 | struct ctf_packet_index packet_index; |
7591bab1 MD |
1279 | struct relay_viewer_stream *vstream = NULL; |
1280 | struct relay_stream *rstream = NULL; | |
1281 | struct ctf_trace *ctf_trace = NULL; | |
1282 | struct relay_viewer_stream *metadata_viewer_stream = NULL; | |
d3e2ba59 | 1283 | |
58eb9381 | 1284 | assert(conn); |
d3e2ba59 JD |
1285 | |
1286 | DBG("Viewer get next index"); | |
1287 | ||
7591bab1 | 1288 | memset(&viewer_index, 0, sizeof(viewer_index)); |
eea7556c | 1289 | health_code_update(); |
2f8f53af | 1290 | |
58eb9381 | 1291 | ret = recv_request(conn->sock, &request_index, sizeof(request_index)); |
2f8f53af | 1292 | if (ret < 0) { |
d3e2ba59 JD |
1293 | goto end; |
1294 | } | |
eea7556c | 1295 | health_code_update(); |
d3e2ba59 | 1296 | |
7591bab1 | 1297 | vstream = viewer_stream_get_by_id(be64toh(request_index.stream_id)); |
6763619c | 1298 | if (!vstream) { |
a44ca2ca | 1299 | DBG("Client requested index of unknown stream id %" PRIu64, |
f8fc08d2 | 1300 | (uint64_t) be64toh(request_index.stream_id)); |
f1883937 MD |
1301 | viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR); |
1302 | goto send_reply; | |
2a174661 DG |
1303 | } |
1304 | ||
7591bab1 MD |
1305 | /* Use back. ref. Protected by refcounts. */ |
1306 | rstream = vstream->stream; | |
1307 | ctf_trace = rstream->trace; | |
d3e2ba59 | 1308 | |
7591bab1 MD |
1309 | /* metadata_viewer_stream may be NULL. */ |
1310 | metadata_viewer_stream = | |
1311 | ctf_trace_get_viewer_metadata_stream(ctf_trace); | |
2a174661 | 1312 | |
7591bab1 | 1313 | pthread_mutex_lock(&rstream->lock); |
d3e2ba59 JD |
1314 | |
1315 | /* | |
1316 | * The viewer should not ask for index on metadata stream. | |
1317 | */ | |
7591bab1 | 1318 | if (rstream->is_metadata) { |
c4e361a4 | 1319 | viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP); |
d3e2ba59 JD |
1320 | goto send_reply; |
1321 | } | |
1322 | ||
878c34cf DG |
1323 | /* Try to open an index if one is needed for that stream. */ |
1324 | ret = try_open_index(vstream, rstream); | |
1325 | if (ret < 0) { | |
0e6830aa | 1326 | if (ret == -ENOENT) { |
d3e2ba59 | 1327 | /* |
7591bab1 MD |
1328 | * The index is created only when the first data |
1329 | * packet arrives, it might not be ready at the | |
1330 | * beginning of the session | |
d3e2ba59 | 1331 | */ |
c4e361a4 | 1332 | viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY); |
878c34cf DG |
1333 | } else { |
1334 | /* Unhandled error. */ | |
c4e361a4 | 1335 | viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR); |
d3e2ba59 | 1336 | } |
878c34cf | 1337 | goto send_reply; |
d3e2ba59 JD |
1338 | } |
1339 | ||
878c34cf | 1340 | ret = check_index_status(vstream, rstream, ctf_trace, &viewer_index); |
878c34cf | 1341 | if (ret < 0) { |
7591bab1 | 1342 | goto error_put; |
878c34cf DG |
1343 | } else if (ret == 1) { |
1344 | /* | |
7591bab1 MD |
1345 | * We have no index to send and check_index_status has populated |
1346 | * viewer_index's status. | |
878c34cf | 1347 | */ |
d3e2ba59 JD |
1348 | goto send_reply; |
1349 | } | |
7591bab1 | 1350 | /* At this point, ret is 0 thus we will be able to read the index. */ |
878c34cf | 1351 | assert(!ret); |
d3e2ba59 | 1352 | |
7591bab1 MD |
1353 | /* |
1354 | * vstream->stream_fd may be NULL if it has been closed by | |
1355 | * tracefile rotation, or if we are at the beginning of the | |
1356 | * stream. We open the data stream file here to protect against | |
1357 | * overwrite caused by tracefile rotation (in association with | |
1358 | * unlink performed before overwrite). | |
1359 | */ | |
1360 | if (!vstream->stream_fd) { | |
1361 | char fullpath[PATH_MAX]; | |
1362 | ||
1363 | if (vstream->stream->tracefile_count > 0) { | |
1364 | ret = snprintf(fullpath, PATH_MAX, "%s/%s_%" PRIu64, | |
1365 | vstream->path_name, | |
1366 | vstream->channel_name, | |
1367 | vstream->current_tracefile_id); | |
1368 | } else { | |
1369 | ret = snprintf(fullpath, PATH_MAX, "%s/%s", | |
1370 | vstream->path_name, | |
1371 | vstream->channel_name); | |
1372 | } | |
1373 | if (ret < 0) { | |
1374 | goto error_put; | |
1375 | } | |
1376 | ret = open(fullpath, O_RDONLY); | |
1377 | if (ret < 0) { | |
1378 | PERROR("Relay opening trace file"); | |
1379 | goto error_put; | |
1380 | } | |
1381 | vstream->stream_fd = stream_fd_create(ret); | |
1382 | if (!vstream->stream_fd) { | |
1383 | if (close(ret)) { | |
1384 | PERROR("close"); | |
1385 | } | |
1386 | goto error_put; | |
1387 | } | |
d3e2ba59 JD |
1388 | } |
1389 | ||
f04a971b | 1390 | ret = check_new_streams(conn); |
4a9daf17 | 1391 | if (ret < 0) { |
7591bab1 MD |
1392 | viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR); |
1393 | goto send_reply; | |
4a9daf17 JD |
1394 | } else if (ret == 1) { |
1395 | viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_STREAM; | |
1396 | } | |
1397 | ||
e0547b83 MD |
1398 | ret = lttng_index_file_read(vstream->index_file, &packet_index); |
1399 | if (ret) { | |
1400 | ERR("Relay error reading index file %d", | |
1401 | vstream->index_file->fd); | |
7591bab1 | 1402 | viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR); |
6b6b9a5a | 1403 | goto send_reply; |
d3e2ba59 | 1404 | } else { |
c4e361a4 | 1405 | viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_OK); |
a44ca2ca | 1406 | vstream->index_sent_seqcount++; |
d3e2ba59 JD |
1407 | } |
1408 | ||
1409 | /* | |
1410 | * Indexes are stored in big endian, no need to switch before sending. | |
1411 | */ | |
7591bab1 MD |
1412 | DBG("Sending viewer index for stream %" PRIu64 " offset %" PRIu64, |
1413 | rstream->stream_handle, | |
f8fc08d2 | 1414 | (uint64_t) be64toh(packet_index.offset)); |
d3e2ba59 JD |
1415 | viewer_index.offset = packet_index.offset; |
1416 | viewer_index.packet_size = packet_index.packet_size; | |
1417 | viewer_index.content_size = packet_index.content_size; | |
1418 | viewer_index.timestamp_begin = packet_index.timestamp_begin; | |
1419 | viewer_index.timestamp_end = packet_index.timestamp_end; | |
1420 | viewer_index.events_discarded = packet_index.events_discarded; | |
1421 | viewer_index.stream_id = packet_index.stream_id; | |
1422 | ||
1423 | send_reply: | |
f1883937 MD |
1424 | if (rstream) { |
1425 | pthread_mutex_unlock(&rstream->lock); | |
1426 | } | |
7591bab1 MD |
1427 | |
1428 | if (metadata_viewer_stream) { | |
1429 | pthread_mutex_lock(&metadata_viewer_stream->stream->lock); | |
1430 | DBG("get next index metadata check: recv %" PRIu64 | |
1431 | " sent %" PRIu64, | |
1432 | metadata_viewer_stream->stream->metadata_received, | |
1433 | metadata_viewer_stream->metadata_sent); | |
1434 | if (!metadata_viewer_stream->stream->metadata_received || | |
1435 | metadata_viewer_stream->stream->metadata_received > | |
1436 | metadata_viewer_stream->metadata_sent) { | |
1437 | viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_METADATA; | |
1438 | } | |
1439 | pthread_mutex_unlock(&metadata_viewer_stream->stream->lock); | |
1440 | } | |
1441 | ||
d3e2ba59 | 1442 | viewer_index.flags = htobe32(viewer_index.flags); |
eea7556c | 1443 | health_code_update(); |
2f8f53af | 1444 | |
58eb9381 | 1445 | ret = send_response(conn->sock, &viewer_index, sizeof(viewer_index)); |
d3e2ba59 | 1446 | if (ret < 0) { |
7591bab1 | 1447 | goto end; |
d3e2ba59 | 1448 | } |
eea7556c | 1449 | health_code_update(); |
d3e2ba59 | 1450 | |
9237e6a1 MD |
1451 | if (vstream) { |
1452 | DBG("Index %" PRIu64 " for stream %" PRIu64 " sent", | |
a44ca2ca | 1453 | vstream->index_sent_seqcount, |
9237e6a1 MD |
1454 | vstream->stream->stream_handle); |
1455 | } | |
d3e2ba59 | 1456 | end: |
7591bab1 MD |
1457 | if (metadata_viewer_stream) { |
1458 | viewer_stream_put(metadata_viewer_stream); | |
1459 | } | |
1460 | if (vstream) { | |
1461 | viewer_stream_put(vstream); | |
1462 | } | |
1463 | return ret; | |
1464 | ||
1465 | error_put: | |
1466 | pthread_mutex_unlock(&rstream->lock); | |
1467 | if (metadata_viewer_stream) { | |
1468 | viewer_stream_put(metadata_viewer_stream); | |
1469 | } | |
1470 | viewer_stream_put(vstream); | |
d3e2ba59 JD |
1471 | return ret; |
1472 | } | |
1473 | ||
1474 | /* | |
1475 | * Send the next index for a stream | |
1476 | * | |
1477 | * Return 0 on success or else a negative value. | |
1478 | */ | |
1479 | static | |
58eb9381 | 1480 | int viewer_get_packet(struct relay_connection *conn) |
d3e2ba59 | 1481 | { |
4e8db96d | 1482 | int ret; |
b61e1dca | 1483 | off_t lseek_ret; |
6d1bce6b | 1484 | char *reply = NULL; |
d3e2ba59 | 1485 | struct lttng_viewer_get_packet get_packet_info; |
6d1bce6b | 1486 | struct lttng_viewer_trace_packet reply_header; |
7591bab1 | 1487 | struct relay_viewer_stream *vstream = NULL; |
6d1bce6b | 1488 | uint32_t reply_size = sizeof(reply_header); |
4e8db96d JR |
1489 | uint32_t packet_data_len = 0; |
1490 | ssize_t read_len; | |
d3e2ba59 JD |
1491 | |
1492 | DBG2("Relay get data packet"); | |
1493 | ||
eea7556c | 1494 | health_code_update(); |
2f8f53af | 1495 | |
7591bab1 MD |
1496 | ret = recv_request(conn->sock, &get_packet_info, |
1497 | sizeof(get_packet_info)); | |
2f8f53af | 1498 | if (ret < 0) { |
d3e2ba59 JD |
1499 | goto end; |
1500 | } | |
eea7556c | 1501 | health_code_update(); |
d3e2ba59 | 1502 | |
0233a6a5 | 1503 | /* From this point on, the error label can be reached. */ |
6d1bce6b | 1504 | memset(&reply_header, 0, sizeof(reply_header)); |
0233a6a5 | 1505 | |
7591bab1 MD |
1506 | vstream = viewer_stream_get_by_id(be64toh(get_packet_info.stream_id)); |
1507 | if (!vstream) { | |
a44ca2ca | 1508 | DBG("Client requested packet of unknown stream id %" PRIu64, |
f8fc08d2 | 1509 | (uint64_t) be64toh(get_packet_info.stream_id)); |
6d1bce6b JG |
1510 | reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR); |
1511 | goto send_reply_nolock; | |
4e8db96d JR |
1512 | } else { |
1513 | packet_data_len = be32toh(get_packet_info.len); | |
6d1bce6b | 1514 | reply_size += packet_data_len; |
d3e2ba59 | 1515 | } |
2a174661 | 1516 | |
6d1bce6b JG |
1517 | reply = zmalloc(reply_size); |
1518 | if (!reply) { | |
1519 | PERROR("packet reply zmalloc"); | |
1520 | reply_size = sizeof(reply_header); | |
d3e2ba59 JD |
1521 | goto error; |
1522 | } | |
1523 | ||
4e8db96d | 1524 | pthread_mutex_lock(&vstream->stream->lock); |
b61e1dca | 1525 | lseek_ret = lseek(vstream->stream_fd->fd, be64toh(get_packet_info.offset), |
7591bab1 | 1526 | SEEK_SET); |
b61e1dca | 1527 | if (lseek_ret < 0) { |
7591bab1 | 1528 | PERROR("lseek fd %d to offset %" PRIu64, vstream->stream_fd->fd, |
f8fc08d2 | 1529 | (uint64_t) be64toh(get_packet_info.offset)); |
7591bab1 | 1530 | goto error; |
d3e2ba59 | 1531 | } |
4e8db96d | 1532 | read_len = lttng_read(vstream->stream_fd->fd, |
6d1bce6b | 1533 | reply + sizeof(reply_header), |
4e8db96d JR |
1534 | packet_data_len); |
1535 | if (read_len < packet_data_len) { | |
7591bab1 MD |
1536 | PERROR("Relay reading trace file, fd: %d, offset: %" PRIu64, |
1537 | vstream->stream_fd->fd, | |
f8fc08d2 | 1538 | (uint64_t) be64toh(get_packet_info.offset)); |
7591bab1 | 1539 | goto error; |
d3e2ba59 | 1540 | } |
6d1bce6b JG |
1541 | reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_OK); |
1542 | reply_header.len = htobe32(packet_data_len); | |
d3e2ba59 JD |
1543 | goto send_reply; |
1544 | ||
1545 | error: | |
6d1bce6b | 1546 | reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR); |
d3e2ba59 JD |
1547 | |
1548 | send_reply: | |
7591bab1 MD |
1549 | if (vstream) { |
1550 | pthread_mutex_unlock(&vstream->stream->lock); | |
1551 | } | |
1552 | send_reply_nolock: | |
eea7556c MD |
1553 | |
1554 | health_code_update(); | |
2f8f53af | 1555 | |
6d1bce6b JG |
1556 | if (reply) { |
1557 | memcpy(reply, &reply_header, sizeof(reply_header)); | |
1558 | ret = send_response(conn->sock, reply, reply_size); | |
1559 | } else { | |
1560 | /* No reply to send. */ | |
1561 | ret = send_response(conn->sock, &reply_header, | |
1562 | reply_size); | |
1563 | } | |
1564 | ||
4e8db96d | 1565 | health_code_update(); |
d3e2ba59 | 1566 | if (ret < 0) { |
4e8db96d | 1567 | PERROR("sendmsg of packet data failed"); |
7591bab1 | 1568 | goto end_free; |
d3e2ba59 | 1569 | } |
d3e2ba59 | 1570 | |
6d1bce6b | 1571 | DBG("Sent %u bytes for stream %" PRIu64, reply_size, |
f8fc08d2 | 1572 | (uint64_t) be64toh(get_packet_info.stream_id)); |
d3e2ba59 | 1573 | |
7591bab1 | 1574 | end_free: |
6d1bce6b | 1575 | free(reply); |
d3e2ba59 | 1576 | end: |
7591bab1 MD |
1577 | if (vstream) { |
1578 | viewer_stream_put(vstream); | |
1579 | } | |
d3e2ba59 JD |
1580 | return ret; |
1581 | } | |
1582 | ||
1583 | /* | |
1584 | * Send the session's metadata | |
1585 | * | |
1586 | * Return 0 on success else a negative value. | |
1587 | */ | |
1588 | static | |
58eb9381 | 1589 | int viewer_get_metadata(struct relay_connection *conn) |
d3e2ba59 JD |
1590 | { |
1591 | int ret = 0; | |
1592 | ssize_t read_len; | |
1593 | uint64_t len = 0; | |
1594 | char *data = NULL; | |
1595 | struct lttng_viewer_get_metadata request; | |
1596 | struct lttng_viewer_metadata_packet reply; | |
7591bab1 | 1597 | struct relay_viewer_stream *vstream = NULL; |
d3e2ba59 | 1598 | |
58eb9381 | 1599 | assert(conn); |
d3e2ba59 JD |
1600 | |
1601 | DBG("Relay get metadata"); | |
1602 | ||
eea7556c | 1603 | health_code_update(); |
2f8f53af | 1604 | |
58eb9381 | 1605 | ret = recv_request(conn->sock, &request, sizeof(request)); |
2f8f53af | 1606 | if (ret < 0) { |
d3e2ba59 JD |
1607 | goto end; |
1608 | } | |
eea7556c | 1609 | health_code_update(); |
d3e2ba59 | 1610 | |
53efb85a MD |
1611 | memset(&reply, 0, sizeof(reply)); |
1612 | ||
7591bab1 MD |
1613 | vstream = viewer_stream_get_by_id(be64toh(request.stream_id)); |
1614 | if (!vstream) { | |
3b463131 MD |
1615 | /* |
1616 | * The metadata stream can be closed by a CLOSE command | |
1617 | * just before we attach. It can also be closed by | |
1618 | * per-pid tracing during tracing. Therefore, it is | |
1619 | * possible that we cannot find this viewer stream. | |
1620 | * Reply back to the client with an error if we cannot | |
1621 | * find it. | |
1622 | */ | |
a44ca2ca | 1623 | DBG("Client requested metadata of unknown stream id %" PRIu64, |
f8fc08d2 | 1624 | (uint64_t) be64toh(request.stream_id)); |
3b463131 | 1625 | reply.status = htobe32(LTTNG_VIEWER_METADATA_ERR); |
7591bab1 | 1626 | goto send_reply; |
d3e2ba59 | 1627 | } |
7591bab1 MD |
1628 | pthread_mutex_lock(&vstream->stream->lock); |
1629 | if (!vstream->stream->is_metadata) { | |
1630 | ERR("Invalid metadata stream"); | |
6763619c JD |
1631 | goto error; |
1632 | } | |
1633 | ||
7591bab1 | 1634 | assert(vstream->metadata_sent <= vstream->stream->metadata_received); |
2a174661 | 1635 | |
7591bab1 | 1636 | len = vstream->stream->metadata_received - vstream->metadata_sent; |
d3e2ba59 | 1637 | if (len == 0) { |
c4e361a4 | 1638 | reply.status = htobe32(LTTNG_VIEWER_NO_NEW_METADATA); |
d3e2ba59 JD |
1639 | goto send_reply; |
1640 | } | |
1641 | ||
1642 | /* first time, we open the metadata file */ | |
7591bab1 | 1643 | if (!vstream->stream_fd) { |
d3e2ba59 JD |
1644 | char fullpath[PATH_MAX]; |
1645 | ||
7591bab1 MD |
1646 | ret = snprintf(fullpath, PATH_MAX, "%s/%s", vstream->path_name, |
1647 | vstream->channel_name); | |
d3e2ba59 JD |
1648 | if (ret < 0) { |
1649 | goto error; | |
1650 | } | |
1651 | ret = open(fullpath, O_RDONLY); | |
1652 | if (ret < 0) { | |
1653 | PERROR("Relay opening metadata file"); | |
1654 | goto error; | |
1655 | } | |
7591bab1 MD |
1656 | vstream->stream_fd = stream_fd_create(ret); |
1657 | if (!vstream->stream_fd) { | |
1658 | if (close(ret)) { | |
1659 | PERROR("close"); | |
1660 | } | |
1661 | goto error; | |
1662 | } | |
d3e2ba59 JD |
1663 | } |
1664 | ||
1665 | reply.len = htobe64(len); | |
1666 | data = zmalloc(len); | |
1667 | if (!data) { | |
1668 | PERROR("viewer metadata zmalloc"); | |
1669 | goto error; | |
1670 | } | |
1671 | ||
7591bab1 | 1672 | read_len = lttng_read(vstream->stream_fd->fd, data, len); |
6cd525e8 | 1673 | if (read_len < len) { |
d3e2ba59 JD |
1674 | PERROR("Relay reading metadata file"); |
1675 | goto error; | |
1676 | } | |
7591bab1 MD |
1677 | vstream->metadata_sent += read_len; |
1678 | if (vstream->metadata_sent == vstream->stream->metadata_received | |
1679 | && vstream->stream->closed) { | |
1680 | /* Release ownership for the viewer metadata stream. */ | |
1681 | viewer_stream_put(vstream); | |
1682 | } | |
1683 | ||
c4e361a4 | 1684 | reply.status = htobe32(LTTNG_VIEWER_METADATA_OK); |
7591bab1 | 1685 | |
d3e2ba59 JD |
1686 | goto send_reply; |
1687 | ||
1688 | error: | |
c4e361a4 | 1689 | reply.status = htobe32(LTTNG_VIEWER_METADATA_ERR); |
d3e2ba59 JD |
1690 | |
1691 | send_reply: | |
eea7556c | 1692 | health_code_update(); |
7591bab1 MD |
1693 | if (vstream) { |
1694 | pthread_mutex_unlock(&vstream->stream->lock); | |
1695 | } | |
58eb9381 | 1696 | ret = send_response(conn->sock, &reply, sizeof(reply)); |
d3e2ba59 | 1697 | if (ret < 0) { |
7591bab1 | 1698 | goto end_free; |
d3e2ba59 | 1699 | } |
eea7556c | 1700 | health_code_update(); |
d3e2ba59 JD |
1701 | |
1702 | if (len > 0) { | |
58eb9381 | 1703 | ret = send_response(conn->sock, data, len); |
d3e2ba59 | 1704 | if (ret < 0) { |
7591bab1 | 1705 | goto end_free; |
d3e2ba59 JD |
1706 | } |
1707 | } | |
1708 | ||
1709 | DBG("Sent %" PRIu64 " bytes of metadata for stream %" PRIu64, len, | |
f8fc08d2 | 1710 | (uint64_t) be64toh(request.stream_id)); |
d3e2ba59 JD |
1711 | |
1712 | DBG("Metadata sent"); | |
1713 | ||
7591bab1 | 1714 | end_free: |
d3e2ba59 | 1715 | free(data); |
d3e2ba59 | 1716 | end: |
7591bab1 MD |
1717 | if (vstream) { |
1718 | viewer_stream_put(vstream); | |
1719 | } | |
d3e2ba59 JD |
1720 | return ret; |
1721 | } | |
1722 | ||
c3b7390b JD |
1723 | /* |
1724 | * Create a viewer session. | |
1725 | * | |
1726 | * Return 0 on success or else a negative value. | |
1727 | */ | |
1728 | static | |
1729 | int viewer_create_session(struct relay_connection *conn) | |
1730 | { | |
1731 | int ret; | |
1732 | struct lttng_viewer_create_session_response resp; | |
1733 | ||
1734 | DBG("Viewer create session received"); | |
1735 | ||
53efb85a | 1736 | memset(&resp, 0, sizeof(resp)); |
c3b7390b | 1737 | resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_OK); |
7591bab1 | 1738 | conn->viewer_session = viewer_session_create(); |
c3b7390b JD |
1739 | if (!conn->viewer_session) { |
1740 | ERR("Allocation viewer session"); | |
1741 | resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_ERR); | |
1742 | goto send_reply; | |
1743 | } | |
c3b7390b JD |
1744 | |
1745 | send_reply: | |
1746 | health_code_update(); | |
1747 | ret = send_response(conn->sock, &resp, sizeof(resp)); | |
1748 | if (ret < 0) { | |
1749 | goto end; | |
1750 | } | |
1751 | health_code_update(); | |
1752 | ret = 0; | |
1753 | ||
1754 | end: | |
1755 | return ret; | |
1756 | } | |
1757 | ||
d62023be JD |
1758 | /* |
1759 | * Detach a viewer session. | |
1760 | * | |
1761 | * Return 0 on success or else a negative value. | |
1762 | */ | |
1763 | static | |
1764 | int viewer_detach_session(struct relay_connection *conn) | |
1765 | { | |
1766 | int ret; | |
1767 | struct lttng_viewer_detach_session_response response; | |
1768 | struct lttng_viewer_detach_session_request request; | |
1769 | struct relay_session *session = NULL; | |
1770 | uint64_t viewer_session_to_close; | |
1771 | ||
1772 | DBG("Viewer detach session received"); | |
1773 | ||
1774 | assert(conn); | |
1775 | ||
1776 | health_code_update(); | |
1777 | ||
1778 | /* Receive the request from the connected client. */ | |
1779 | ret = recv_request(conn->sock, &request, sizeof(request)); | |
1780 | if (ret < 0) { | |
1781 | goto end; | |
1782 | } | |
1783 | viewer_session_to_close = be64toh(request.session_id); | |
1784 | ||
1785 | if (!conn->viewer_session) { | |
1786 | DBG("Client trying to detach before creating a live viewer session"); | |
1787 | response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR); | |
1788 | goto send_reply; | |
1789 | } | |
1790 | ||
1791 | health_code_update(); | |
1792 | ||
1793 | memset(&response, 0, sizeof(response)); | |
1794 | DBG("Detaching from session ID %" PRIu64, viewer_session_to_close); | |
1795 | ||
1796 | session = session_get_by_id(be64toh(request.session_id)); | |
1797 | if (!session) { | |
1798 | DBG("Relay session %" PRIu64 " not found", | |
f8fc08d2 | 1799 | (uint64_t) be64toh(request.session_id)); |
d62023be JD |
1800 | response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_UNK); |
1801 | goto send_reply; | |
1802 | } | |
1803 | ||
1804 | ret = viewer_session_is_attached(conn->viewer_session, session); | |
1805 | if (ret != 1) { | |
1806 | DBG("Not attached to this session"); | |
1807 | response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR); | |
1808 | goto send_reply_put; | |
1809 | } | |
1810 | ||
1811 | viewer_session_close_one_session(conn->viewer_session, session); | |
1812 | response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_OK); | |
1813 | DBG("Session %" PRIu64 " detached.", viewer_session_to_close); | |
1814 | ||
1815 | send_reply_put: | |
1816 | session_put(session); | |
1817 | ||
1818 | send_reply: | |
1819 | health_code_update(); | |
1820 | ret = send_response(conn->sock, &response, sizeof(response)); | |
1821 | if (ret < 0) { | |
1822 | goto end; | |
1823 | } | |
1824 | health_code_update(); | |
1825 | ret = 0; | |
1826 | ||
1827 | end: | |
1828 | return ret; | |
1829 | } | |
c3b7390b | 1830 | |
d3e2ba59 JD |
1831 | /* |
1832 | * live_relay_unknown_command: send -1 if received unknown command | |
1833 | */ | |
1834 | static | |
58eb9381 | 1835 | void live_relay_unknown_command(struct relay_connection *conn) |
d3e2ba59 JD |
1836 | { |
1837 | struct lttcomm_relayd_generic_reply reply; | |
d3e2ba59 | 1838 | |
53efb85a | 1839 | memset(&reply, 0, sizeof(reply)); |
d3e2ba59 | 1840 | reply.ret_code = htobe32(LTTNG_ERR_UNK); |
58eb9381 | 1841 | (void) send_response(conn->sock, &reply, sizeof(reply)); |
d3e2ba59 JD |
1842 | } |
1843 | ||
1844 | /* | |
1845 | * Process the commands received on the control socket | |
1846 | */ | |
1847 | static | |
1848 | int process_control(struct lttng_viewer_cmd *recv_hdr, | |
58eb9381 | 1849 | struct relay_connection *conn) |
d3e2ba59 JD |
1850 | { |
1851 | int ret = 0; | |
2f8f53af DG |
1852 | uint32_t msg_value; |
1853 | ||
2f8f53af DG |
1854 | msg_value = be32toh(recv_hdr->cmd); |
1855 | ||
1856 | /* | |
1857 | * Make sure we've done the version check before any command other then a | |
1858 | * new client connection. | |
1859 | */ | |
c4e361a4 | 1860 | if (msg_value != LTTNG_VIEWER_CONNECT && !conn->version_check_done) { |
58eb9381 | 1861 | ERR("Viewer conn value %" PRIu32 " before version check", msg_value); |
2f8f53af DG |
1862 | ret = -1; |
1863 | goto end; | |
1864 | } | |
d3e2ba59 | 1865 | |
2f8f53af | 1866 | switch (msg_value) { |
c4e361a4 | 1867 | case LTTNG_VIEWER_CONNECT: |
58eb9381 | 1868 | ret = viewer_connect(conn); |
d3e2ba59 | 1869 | break; |
c4e361a4 | 1870 | case LTTNG_VIEWER_LIST_SESSIONS: |
58eb9381 | 1871 | ret = viewer_list_sessions(conn); |
d3e2ba59 | 1872 | break; |
c4e361a4 | 1873 | case LTTNG_VIEWER_ATTACH_SESSION: |
58eb9381 | 1874 | ret = viewer_attach_session(conn); |
d3e2ba59 | 1875 | break; |
c4e361a4 | 1876 | case LTTNG_VIEWER_GET_NEXT_INDEX: |
58eb9381 | 1877 | ret = viewer_get_next_index(conn); |
d3e2ba59 | 1878 | break; |
c4e361a4 | 1879 | case LTTNG_VIEWER_GET_PACKET: |
58eb9381 | 1880 | ret = viewer_get_packet(conn); |
d3e2ba59 | 1881 | break; |
c4e361a4 | 1882 | case LTTNG_VIEWER_GET_METADATA: |
58eb9381 | 1883 | ret = viewer_get_metadata(conn); |
d3e2ba59 | 1884 | break; |
c4e361a4 | 1885 | case LTTNG_VIEWER_GET_NEW_STREAMS: |
58eb9381 | 1886 | ret = viewer_get_new_streams(conn); |
80e8027a | 1887 | break; |
c3b7390b JD |
1888 | case LTTNG_VIEWER_CREATE_SESSION: |
1889 | ret = viewer_create_session(conn); | |
1890 | break; | |
d62023be JD |
1891 | case LTTNG_VIEWER_DETACH_SESSION: |
1892 | ret = viewer_detach_session(conn); | |
1893 | break; | |
d3e2ba59 | 1894 | default: |
7591bab1 MD |
1895 | ERR("Received unknown viewer command (%u)", |
1896 | be32toh(recv_hdr->cmd)); | |
58eb9381 | 1897 | live_relay_unknown_command(conn); |
d3e2ba59 JD |
1898 | ret = -1; |
1899 | goto end; | |
1900 | } | |
1901 | ||
1902 | end: | |
1903 | return ret; | |
1904 | } | |
1905 | ||
1906 | static | |
58eb9381 | 1907 | void cleanup_connection_pollfd(struct lttng_poll_event *events, int pollfd) |
d3e2ba59 JD |
1908 | { |
1909 | int ret; | |
1910 | ||
58eb9381 | 1911 | (void) lttng_poll_del(events, pollfd); |
d3e2ba59 JD |
1912 | |
1913 | ret = close(pollfd); | |
1914 | if (ret < 0) { | |
1915 | ERR("Closing pollfd %d", pollfd); | |
1916 | } | |
1917 | } | |
1918 | ||
d3e2ba59 JD |
1919 | /* |
1920 | * This thread does the actual work | |
1921 | */ | |
1922 | static | |
1923 | void *thread_worker(void *data) | |
1924 | { | |
1925 | int ret, err = -1; | |
1926 | uint32_t nb_fd; | |
d3e2ba59 | 1927 | struct lttng_poll_event events; |
7591bab1 | 1928 | struct lttng_ht *viewer_connections_ht; |
d3e2ba59 JD |
1929 | struct lttng_ht_iter iter; |
1930 | struct lttng_viewer_cmd recv_hdr; | |
302d8906 | 1931 | struct relay_connection *destroy_conn; |
d3e2ba59 JD |
1932 | |
1933 | DBG("[thread] Live viewer relay worker started"); | |
1934 | ||
1935 | rcu_register_thread(); | |
1936 | ||
eea7556c MD |
1937 | health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_WORKER); |
1938 | ||
9b5e0863 MD |
1939 | if (testpoint(relayd_thread_live_worker)) { |
1940 | goto error_testpoint; | |
1941 | } | |
1942 | ||
d3e2ba59 | 1943 | /* table of connections indexed on socket */ |
7591bab1 MD |
1944 | viewer_connections_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
1945 | if (!viewer_connections_ht) { | |
1946 | goto viewer_connections_ht_error; | |
d3e2ba59 JD |
1947 | } |
1948 | ||
1949 | ret = create_thread_poll_set(&events, 2); | |
1950 | if (ret < 0) { | |
1951 | goto error_poll_create; | |
1952 | } | |
1953 | ||
58eb9381 | 1954 | ret = lttng_poll_add(&events, live_conn_pipe[0], LPOLLIN | LPOLLRDHUP); |
d3e2ba59 JD |
1955 | if (ret < 0) { |
1956 | goto error; | |
1957 | } | |
1958 | ||
1959 | restart: | |
1960 | while (1) { | |
1961 | int i; | |
1962 | ||
eea7556c MD |
1963 | health_code_update(); |
1964 | ||
d3e2ba59 JD |
1965 | /* Infinite blocking call, waiting for transmission */ |
1966 | DBG3("Relayd live viewer worker thread polling..."); | |
eea7556c | 1967 | health_poll_entry(); |
d3e2ba59 | 1968 | ret = lttng_poll_wait(&events, -1); |
eea7556c | 1969 | health_poll_exit(); |
d3e2ba59 JD |
1970 | if (ret < 0) { |
1971 | /* | |
1972 | * Restart interrupted system call. | |
1973 | */ | |
1974 | if (errno == EINTR) { | |
1975 | goto restart; | |
1976 | } | |
1977 | goto error; | |
1978 | } | |
1979 | ||
1980 | nb_fd = ret; | |
1981 | ||
1982 | /* | |
1983 | * Process control. The control connection is prioritised so we don't | |
1984 | * starve it with high throughput tracing data on the data | |
1985 | * connection. | |
1986 | */ | |
1987 | for (i = 0; i < nb_fd; i++) { | |
1988 | /* Fetch once the poll data */ | |
1989 | uint32_t revents = LTTNG_POLL_GETEV(&events, i); | |
1990 | int pollfd = LTTNG_POLL_GETFD(&events, i); | |
1991 | ||
eea7556c MD |
1992 | health_code_update(); |
1993 | ||
fd20dac9 MD |
1994 | if (!revents) { |
1995 | /* No activity for this FD (poll implementation). */ | |
1996 | continue; | |
1997 | } | |
1998 | ||
d3e2ba59 | 1999 | /* Thread quit pipe has been closed. Killing thread. */ |
bcf4a440 | 2000 | ret = check_thread_quit_pipe(pollfd, revents); |
d3e2ba59 JD |
2001 | if (ret) { |
2002 | err = 0; | |
2003 | goto exit; | |
2004 | } | |
2005 | ||
7591bab1 | 2006 | /* Inspect the relay conn pipe for new connection. */ |
58eb9381 | 2007 | if (pollfd == live_conn_pipe[0]) { |
03e43155 | 2008 | if (revents & LPOLLIN) { |
302d8906 JG |
2009 | struct relay_connection *conn; |
2010 | ||
7591bab1 MD |
2011 | ret = lttng_read(live_conn_pipe[0], |
2012 | &conn, sizeof(conn)); | |
d3e2ba59 JD |
2013 | if (ret < 0) { |
2014 | goto error; | |
2015 | } | |
58eb9381 DG |
2016 | lttng_poll_add(&events, conn->sock->fd, |
2017 | LPOLLIN | LPOLLRDHUP); | |
7591bab1 MD |
2018 | connection_ht_add(viewer_connections_ht, conn); |
2019 | DBG("Connection socket %d added to poll", conn->sock->fd); | |
03e43155 MD |
2020 | } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { |
2021 | ERR("Relay live pipe error"); | |
2022 | goto error; | |
2023 | } else { | |
2024 | ERR("Unexpected poll events %u for sock %d", revents, pollfd); | |
2025 | goto error; | |
d3e2ba59 | 2026 | } |
58eb9381 | 2027 | } else { |
7591bab1 | 2028 | /* Connection activity. */ |
302d8906 JG |
2029 | struct relay_connection *conn; |
2030 | ||
7591bab1 MD |
2031 | conn = connection_get_by_sock(viewer_connections_ht, pollfd); |
2032 | if (!conn) { | |
2033 | continue; | |
2034 | } | |
58eb9381 | 2035 | |
03e43155 | 2036 | if (revents & LPOLLIN) { |
58eb9381 DG |
2037 | ret = conn->sock->ops->recvmsg(conn->sock, &recv_hdr, |
2038 | sizeof(recv_hdr), 0); | |
d3e2ba59 | 2039 | if (ret <= 0) { |
7591bab1 | 2040 | /* Connection closed. */ |
58eb9381 | 2041 | cleanup_connection_pollfd(&events, pollfd); |
7591bab1 MD |
2042 | /* Put "create" ownership reference. */ |
2043 | connection_put(conn); | |
58eb9381 | 2044 | DBG("Viewer control conn closed with %d", pollfd); |
d3e2ba59 | 2045 | } else { |
58eb9381 | 2046 | ret = process_control(&recv_hdr, conn); |
d3e2ba59 JD |
2047 | if (ret < 0) { |
2048 | /* Clear the session on error. */ | |
58eb9381 | 2049 | cleanup_connection_pollfd(&events, pollfd); |
7591bab1 MD |
2050 | /* Put "create" ownership reference. */ |
2051 | connection_put(conn); | |
d3e2ba59 JD |
2052 | DBG("Viewer connection closed with %d", pollfd); |
2053 | } | |
2054 | } | |
03e43155 MD |
2055 | } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { |
2056 | cleanup_connection_pollfd(&events, pollfd); | |
2057 | /* Put "create" ownership reference. */ | |
2058 | connection_put(conn); | |
2059 | } else { | |
2060 | ERR("Unexpected poll events %u for sock %d", revents, pollfd); | |
2061 | connection_put(conn); | |
2062 | goto error; | |
d3e2ba59 | 2063 | } |
7591bab1 MD |
2064 | /* Put local "get_by_sock" reference. */ |
2065 | connection_put(conn); | |
d3e2ba59 JD |
2066 | } |
2067 | } | |
2068 | } | |
2069 | ||
2070 | exit: | |
2071 | error: | |
2072 | lttng_poll_clean(&events); | |
2073 | ||
58eb9381 | 2074 | /* Cleanup reamaining connection object. */ |
d3e2ba59 | 2075 | rcu_read_lock(); |
7591bab1 | 2076 | cds_lfht_for_each_entry(viewer_connections_ht->ht, &iter.iter, |
302d8906 | 2077 | destroy_conn, |
58eb9381 | 2078 | sock_n.node) { |
eea7556c | 2079 | health_code_update(); |
7591bab1 | 2080 | connection_put(destroy_conn); |
d3e2ba59 JD |
2081 | } |
2082 | rcu_read_unlock(); | |
2083 | error_poll_create: | |
7591bab1 MD |
2084 | lttng_ht_destroy(viewer_connections_ht); |
2085 | viewer_connections_ht_error: | |
58eb9381 DG |
2086 | /* Close relay conn pipes */ |
2087 | utils_close_pipe(live_conn_pipe); | |
d3e2ba59 JD |
2088 | if (err) { |
2089 | DBG("Viewer worker thread exited with error"); | |
2090 | } | |
2091 | DBG("Viewer worker thread cleanup complete"); | |
9b5e0863 | 2092 | error_testpoint: |
eea7556c MD |
2093 | if (err) { |
2094 | health_error(); | |
2095 | ERR("Health error occurred in %s", __func__); | |
2096 | } | |
2097 | health_unregister(health_relayd); | |
b4aacfdc MD |
2098 | if (lttng_relay_stop_threads()) { |
2099 | ERR("Error stopping threads"); | |
178a0557 | 2100 | } |
d3e2ba59 JD |
2101 | rcu_unregister_thread(); |
2102 | return NULL; | |
2103 | } | |
2104 | ||
2105 | /* | |
2106 | * Create the relay command pipe to wake thread_manage_apps. | |
2107 | * Closed in cleanup(). | |
2108 | */ | |
58eb9381 | 2109 | static int create_conn_pipe(void) |
d3e2ba59 | 2110 | { |
178a0557 MD |
2111 | return utils_create_pipe_cloexec(live_conn_pipe); |
2112 | } | |
d3e2ba59 | 2113 | |
178a0557 | 2114 | int relayd_live_join(void) |
d3e2ba59 | 2115 | { |
178a0557 | 2116 | int ret, retval = 0; |
d3e2ba59 JD |
2117 | void *status; |
2118 | ||
d3e2ba59 | 2119 | ret = pthread_join(live_listener_thread, &status); |
178a0557 MD |
2120 | if (ret) { |
2121 | errno = ret; | |
d3e2ba59 | 2122 | PERROR("pthread_join live listener"); |
178a0557 | 2123 | retval = -1; |
d3e2ba59 JD |
2124 | } |
2125 | ||
2126 | ret = pthread_join(live_worker_thread, &status); | |
178a0557 MD |
2127 | if (ret) { |
2128 | errno = ret; | |
d3e2ba59 | 2129 | PERROR("pthread_join live worker"); |
178a0557 | 2130 | retval = -1; |
d3e2ba59 JD |
2131 | } |
2132 | ||
2133 | ret = pthread_join(live_dispatcher_thread, &status); | |
178a0557 MD |
2134 | if (ret) { |
2135 | errno = ret; | |
d3e2ba59 | 2136 | PERROR("pthread_join live dispatcher"); |
178a0557 | 2137 | retval = -1; |
d3e2ba59 JD |
2138 | } |
2139 | ||
178a0557 | 2140 | cleanup_relayd_live(); |
d3e2ba59 | 2141 | |
178a0557 | 2142 | return retval; |
d3e2ba59 JD |
2143 | } |
2144 | ||
2145 | /* | |
2146 | * main | |
2147 | */ | |
7591bab1 | 2148 | int relayd_live_create(struct lttng_uri *uri) |
d3e2ba59 | 2149 | { |
178a0557 | 2150 | int ret = 0, retval = 0; |
d3e2ba59 JD |
2151 | void *status; |
2152 | int is_root; | |
2153 | ||
178a0557 MD |
2154 | if (!uri) { |
2155 | retval = -1; | |
2156 | goto exit_init_data; | |
2157 | } | |
d3e2ba59 JD |
2158 | live_uri = uri; |
2159 | ||
d3e2ba59 JD |
2160 | /* Check if daemon is UID = 0 */ |
2161 | is_root = !getuid(); | |
2162 | ||
2163 | if (!is_root) { | |
2164 | if (live_uri->port < 1024) { | |
2165 | ERR("Need to be root to use ports < 1024"); | |
178a0557 MD |
2166 | retval = -1; |
2167 | goto exit_init_data; | |
d3e2ba59 JD |
2168 | } |
2169 | } | |
2170 | ||
2171 | /* Setup the thread apps communication pipe. */ | |
178a0557 MD |
2172 | if (create_conn_pipe()) { |
2173 | retval = -1; | |
2174 | goto exit_init_data; | |
d3e2ba59 JD |
2175 | } |
2176 | ||
2177 | /* Init relay command queue. */ | |
8bdee6e2 | 2178 | cds_wfcq_init(&viewer_conn_queue.head, &viewer_conn_queue.tail); |
d3e2ba59 JD |
2179 | |
2180 | /* Set up max poll set size */ | |
25b397f9 MD |
2181 | if (lttng_poll_set_max_size()) { |
2182 | retval = -1; | |
2183 | goto exit_init_data; | |
2184 | } | |
d3e2ba59 JD |
2185 | |
2186 | /* Setup the dispatcher thread */ | |
1a1a34b4 | 2187 | ret = pthread_create(&live_dispatcher_thread, default_pthread_attr(), |
d3e2ba59 | 2188 | thread_dispatcher, (void *) NULL); |
178a0557 MD |
2189 | if (ret) { |
2190 | errno = ret; | |
d3e2ba59 | 2191 | PERROR("pthread_create viewer dispatcher"); |
178a0557 MD |
2192 | retval = -1; |
2193 | goto exit_dispatcher_thread; | |
d3e2ba59 JD |
2194 | } |
2195 | ||
2196 | /* Setup the worker thread */ | |
1a1a34b4 | 2197 | ret = pthread_create(&live_worker_thread, default_pthread_attr(), |
7591bab1 | 2198 | thread_worker, NULL); |
178a0557 MD |
2199 | if (ret) { |
2200 | errno = ret; | |
d3e2ba59 | 2201 | PERROR("pthread_create viewer worker"); |
178a0557 MD |
2202 | retval = -1; |
2203 | goto exit_worker_thread; | |
d3e2ba59 JD |
2204 | } |
2205 | ||
2206 | /* Setup the listener thread */ | |
1a1a34b4 | 2207 | ret = pthread_create(&live_listener_thread, default_pthread_attr(), |
d3e2ba59 | 2208 | thread_listener, (void *) NULL); |
178a0557 MD |
2209 | if (ret) { |
2210 | errno = ret; | |
d3e2ba59 | 2211 | PERROR("pthread_create viewer listener"); |
178a0557 MD |
2212 | retval = -1; |
2213 | goto exit_listener_thread; | |
d3e2ba59 JD |
2214 | } |
2215 | ||
178a0557 MD |
2216 | /* |
2217 | * All OK, started all threads. | |
2218 | */ | |
2219 | return retval; | |
2220 | ||
9911d21b JG |
2221 | /* |
2222 | * Join on the live_listener_thread should anything be added after | |
2223 | * the live_listener thread's creation. | |
2224 | */ | |
d3e2ba59 | 2225 | |
178a0557 | 2226 | exit_listener_thread: |
d3e2ba59 | 2227 | |
d3e2ba59 | 2228 | ret = pthread_join(live_worker_thread, &status); |
178a0557 MD |
2229 | if (ret) { |
2230 | errno = ret; | |
d3e2ba59 | 2231 | PERROR("pthread_join live worker"); |
178a0557 | 2232 | retval = -1; |
d3e2ba59 | 2233 | } |
178a0557 | 2234 | exit_worker_thread: |
d3e2ba59 | 2235 | |
d3e2ba59 | 2236 | ret = pthread_join(live_dispatcher_thread, &status); |
178a0557 MD |
2237 | if (ret) { |
2238 | errno = ret; | |
d3e2ba59 | 2239 | PERROR("pthread_join live dispatcher"); |
178a0557 | 2240 | retval = -1; |
d3e2ba59 | 2241 | } |
178a0557 | 2242 | exit_dispatcher_thread: |
d3e2ba59 | 2243 | |
178a0557 MD |
2244 | exit_init_data: |
2245 | cleanup_relayd_live(); | |
d3e2ba59 | 2246 | |
178a0557 | 2247 | return retval; |
d3e2ba59 | 2248 | } |