2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
4 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License, version 2 only, as
8 * published by the Free Software Foundation.
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
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <common/common.h>
22 #include <common/index/index.h>
23 #include <common/compat/string.h>
25 #include "lttng-relayd.h"
26 #include "viewer-stream.h"
28 static void viewer_stream_destroy(struct relay_viewer_stream
*vstream
)
30 free(vstream
->path_name
);
31 free(vstream
->channel_name
);
35 static void viewer_stream_destroy_rcu(struct rcu_head
*head
)
37 struct relay_viewer_stream
*vstream
=
38 caa_container_of(head
, struct relay_viewer_stream
, rcu_node
);
40 viewer_stream_destroy(vstream
);
43 struct relay_viewer_stream
*viewer_stream_create(struct relay_stream
*stream
,
44 struct lttng_trace_chunk
*viewer_trace_chunk
,
45 enum lttng_viewer_seek seek_t
)
47 struct relay_viewer_stream
*vstream
= NULL
;
48 const bool acquired_reference
= lttng_trace_chunk_get(
51 if (!acquired_reference
) {
55 vstream
= zmalloc(sizeof(*vstream
));
57 PERROR("relay viewer stream zmalloc");
61 vstream
->stream_file
.trace_chunk
= viewer_trace_chunk
;
62 viewer_trace_chunk
= NULL
;
63 vstream
->path_name
= lttng_strndup(stream
->path_name
, LTTNG_VIEWER_PATH_MAX
);
64 if (vstream
->path_name
== NULL
) {
65 PERROR("relay viewer path_name alloc");
68 vstream
->channel_name
= lttng_strndup(stream
->channel_name
,
69 LTTNG_VIEWER_NAME_MAX
);
70 if (vstream
->channel_name
== NULL
) {
71 PERROR("relay viewer channel_name alloc");
75 if (!stream_get(stream
)) {
76 ERR("Cannot get stream");
79 vstream
->stream
= stream
;
81 pthread_mutex_lock(&stream
->lock
);
83 if (stream
->is_metadata
&& stream
->trace
->viewer_metadata_stream
) {
84 ERR("Cannot attach viewer metadata stream to trace (busy).");
89 case LTTNG_VIEWER_SEEK_BEGINNING
:
91 uint64_t seq_tail
= tracefile_array_get_seq_tail(stream
->tfa
);
93 if (seq_tail
== -1ULL) {
95 * Tail may not be initialized yet. Nonetheless, we know
96 * we want to send the first index once it becomes
101 vstream
->current_tracefile_id
=
102 tracefile_array_get_file_index_tail(stream
->tfa
);
103 vstream
->index_sent_seqcount
= seq_tail
;
106 case LTTNG_VIEWER_SEEK_LAST
:
107 vstream
->current_tracefile_id
=
108 tracefile_array_get_read_file_index_head(stream
->tfa
);
110 * We seek at the very end of each stream, awaiting for
111 * a future packet to eventually come in.
113 * We don't need to check the head position for -1ULL since the
114 * increment will set it to 0.
116 vstream
->index_sent_seqcount
=
117 tracefile_array_get_seq_head(stream
->tfa
) + 1;
124 * If we never received an index for the current stream, delay
125 * the opening of the index, otherwise open it right now.
127 if (stream
->index_received_seqcount
== 0) {
128 vstream
->index_file
= NULL
;
130 const uint32_t connection_major
= stream
->trace
->session
->major
;
131 const uint32_t connection_minor
= stream
->trace
->session
->minor
;
132 enum lttng_trace_chunk_status chunk_status
;
134 chunk_status
= lttng_index_file_create_from_trace_chunk_read_only(
135 vstream
->stream_file
.trace_chunk
,
137 stream
->channel_name
, stream
->tracefile_size
,
138 vstream
->current_tracefile_id
,
139 lttng_to_index_major(connection_major
,
141 lttng_to_index_minor(connection_major
,
143 true, &vstream
->index_file
);
144 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
145 if (chunk_status
== LTTNG_TRACE_CHUNK_STATUS_NO_FILE
) {
146 vstream
->index_file
= NULL
;
153 if (seek_t
== LTTNG_VIEWER_SEEK_LAST
&& vstream
->index_file
) {
156 lseek_ret
= lseek(vstream
->index_file
->fd
, 0, SEEK_END
);
161 if (stream
->is_metadata
) {
162 rcu_assign_pointer(stream
->trace
->viewer_metadata_stream
,
165 pthread_mutex_unlock(&stream
->lock
);
167 /* Globally visible after the add unique. */
168 lttng_ht_node_init_u64(&vstream
->stream_n
, stream
->stream_handle
);
169 urcu_ref_init(&vstream
->ref
);
170 lttng_ht_add_unique_u64(viewer_streams_ht
, &vstream
->stream_n
);
175 pthread_mutex_unlock(&stream
->lock
);
178 viewer_stream_destroy(vstream
);
180 if (viewer_trace_chunk
&& acquired_reference
) {
181 lttng_trace_chunk_put(viewer_trace_chunk
);
186 static void viewer_stream_unpublish(struct relay_viewer_stream
*vstream
)
189 struct lttng_ht_iter iter
;
191 iter
.iter
.node
= &vstream
->stream_n
.node
;
192 ret
= lttng_ht_del(viewer_streams_ht
, &iter
);
196 static void viewer_stream_release(struct urcu_ref
*ref
)
198 struct relay_viewer_stream
*vstream
= caa_container_of(ref
,
199 struct relay_viewer_stream
, ref
);
201 if (vstream
->stream
->is_metadata
) {
202 rcu_assign_pointer(vstream
->stream
->trace
->viewer_metadata_stream
, NULL
);
205 viewer_stream_unpublish(vstream
);
207 if (vstream
->stream_file
.fd
) {
208 stream_fd_put(vstream
->stream_file
.fd
);
209 vstream
->stream_file
.fd
= NULL
;
211 if (vstream
->index_file
) {
212 lttng_index_file_put(vstream
->index_file
);
213 vstream
->index_file
= NULL
;
215 if (vstream
->stream
) {
216 stream_put(vstream
->stream
);
217 vstream
->stream
= NULL
;
219 lttng_trace_chunk_put(vstream
->stream_file
.trace_chunk
);
220 vstream
->stream_file
.trace_chunk
= NULL
;
221 call_rcu(&vstream
->rcu_node
, viewer_stream_destroy_rcu
);
224 /* Must be called with RCU read-side lock held. */
225 bool viewer_stream_get(struct relay_viewer_stream
*vstream
)
227 return urcu_ref_get_unless_zero(&vstream
->ref
);
231 * Get viewer stream by id.
233 * Return viewer stream if found else NULL.
235 struct relay_viewer_stream
*viewer_stream_get_by_id(uint64_t id
)
237 struct lttng_ht_node_u64
*node
;
238 struct lttng_ht_iter iter
;
239 struct relay_viewer_stream
*vstream
= NULL
;
242 lttng_ht_lookup(viewer_streams_ht
, &id
, &iter
);
243 node
= lttng_ht_iter_get_node_u64(&iter
);
245 DBG("Relay viewer stream %" PRIu64
" not found", id
);
248 vstream
= caa_container_of(node
, struct relay_viewer_stream
, stream_n
);
249 if (!viewer_stream_get(vstream
)) {
257 void viewer_stream_put(struct relay_viewer_stream
*vstream
)
260 urcu_ref_put(&vstream
->ref
, viewer_stream_release
);
265 * Rotate a stream to the next tracefile.
267 * Must be called with the rstream lock held.
268 * Returns 0 on success, 1 on EOF, a negative value on error.
270 int viewer_stream_rotate(struct relay_viewer_stream
*vstream
)
274 const struct relay_stream
*stream
= vstream
->stream
;
275 const uint32_t connection_major
= stream
->trace
->session
->major
;
276 const uint32_t connection_minor
= stream
->trace
->session
->minor
;
277 enum lttng_trace_chunk_status chunk_status
;
279 /* Detect the last tracefile to open. */
280 if (stream
->index_received_seqcount
281 == vstream
->index_sent_seqcount
282 && stream
->trace
->session
->connection_closed
) {
287 if (stream
->tracefile_count
== 0) {
288 /* Ignore rotation, there is none to do. */
294 * Try to move to the next file.
296 new_id
= (vstream
->current_tracefile_id
+ 1)
297 % stream
->tracefile_count
;
298 if (tracefile_array_seq_in_file(stream
->tfa
, new_id
,
299 vstream
->index_sent_seqcount
)) {
300 vstream
->current_tracefile_id
= new_id
;
302 uint64_t seq_tail
= tracefile_array_get_seq_tail(stream
->tfa
);
305 * This can only be reached on overwrite, which implies there
306 * has been data written at some point, which will have set the
309 assert(seq_tail
!= -1ULL);
311 * We need to resync because we lag behind tail.
313 vstream
->current_tracefile_id
=
314 tracefile_array_get_file_index_tail(stream
->tfa
);
315 vstream
->index_sent_seqcount
= seq_tail
;
318 if (vstream
->index_file
) {
319 lttng_index_file_put(vstream
->index_file
);
320 vstream
->index_file
= NULL
;
322 if (vstream
->stream_file
.fd
) {
323 stream_fd_put(vstream
->stream_file
.fd
);
324 vstream
->stream_file
.fd
= NULL
;
326 chunk_status
= lttng_index_file_create_from_trace_chunk_read_only(
327 vstream
->stream_file
.trace_chunk
,
329 stream
->channel_name
,
330 stream
->tracefile_size
,
331 vstream
->current_tracefile_id
,
332 lttng_to_index_major(connection_major
,
334 lttng_to_index_minor(connection_major
,
336 true, &vstream
->index_file
);
337 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
347 void print_viewer_streams(void)
349 struct lttng_ht_iter iter
;
350 struct relay_viewer_stream
*vstream
;
352 if (!viewer_streams_ht
) {
357 cds_lfht_for_each_entry(viewer_streams_ht
->ht
, &iter
.iter
, vstream
,
359 if (!viewer_stream_get(vstream
)) {
362 DBG("vstream %p refcount %ld stream %" PRIu64
" trace %" PRIu64
365 vstream
->ref
.refcount
,
366 vstream
->stream
->stream_handle
,
367 vstream
->stream
->trace
->id
,
368 vstream
->stream
->trace
->session
->id
);
369 viewer_stream_put(vstream
);