2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License, version 2 only, as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 51
16 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <common/common.h>
22 #include <common/index/index.h>
24 #include "lttng-relayd.h"
25 #include "viewer-stream.h"
27 static void free_stream(struct relay_viewer_stream
*stream
)
31 free(stream
->path_name
);
32 free(stream
->channel_name
);
36 static void deferred_free_viewer_stream(struct rcu_head
*head
)
38 struct relay_viewer_stream
*stream
=
39 caa_container_of(head
, struct relay_viewer_stream
, rcu_node
);
44 struct relay_viewer_stream
*viewer_stream_create(struct relay_stream
*stream
,
45 enum lttng_viewer_seek seek_t
, struct ctf_trace
*ctf_trace
)
47 struct relay_viewer_stream
*vstream
;
52 vstream
= zmalloc(sizeof(*vstream
));
54 PERROR("relay viewer stream zmalloc");
58 vstream
->session_id
= stream
->session_id
;
59 vstream
->stream_handle
= stream
->stream_handle
;
60 vstream
->path_name
= strndup(stream
->path_name
, LTTNG_VIEWER_PATH_MAX
);
61 if (vstream
->path_name
== NULL
) {
62 PERROR("relay viewer path_name alloc");
65 vstream
->channel_name
= strndup(stream
->channel_name
,
66 LTTNG_VIEWER_NAME_MAX
);
67 if (vstream
->channel_name
== NULL
) {
68 PERROR("relay viewer channel_name alloc");
71 vstream
->tracefile_count
= stream
->tracefile_count
;
72 vstream
->metadata_flag
= stream
->metadata_flag
;
73 vstream
->tracefile_count_last
= -1ULL;
76 case LTTNG_VIEWER_SEEK_BEGINNING
:
77 vstream
->tracefile_count_current
= stream
->oldest_tracefile_id
;
79 case LTTNG_VIEWER_SEEK_LAST
:
80 vstream
->tracefile_count_current
= stream
->tracefile_count_current
;
87 if (vstream
->metadata_flag
) {
88 ctf_trace
->viewer_metadata_stream
= vstream
;
91 /* Globally visible after the add unique. */
92 lttng_ht_node_init_u64(&vstream
->stream_n
, stream
->stream_handle
);
93 lttng_ht_add_unique_u64(viewer_streams_ht
, &vstream
->stream_n
);
95 vstream
->index_read_fd
= -1;
96 vstream
->read_fd
= -1;
99 * This is to avoid a race between the initialization of this object and
100 * the close of the given stream. If the stream is unable to find this
101 * viewer stream when closing, this copy will at least take the latest
102 * value. We also need that for the seek_last.
104 vstream
->total_index_received
= stream
->total_index_received
;
107 * If we never received an index for the current stream, delay the opening
108 * of the index, otherwise open it right now.
110 if (vstream
->tracefile_count_current
== stream
->tracefile_count_current
111 && vstream
->total_index_received
== 0) {
112 vstream
->index_read_fd
= -1;
116 read_fd
= index_open(vstream
->path_name
, vstream
->channel_name
,
117 vstream
->tracefile_count
, vstream
->tracefile_count_current
);
121 vstream
->index_read_fd
= read_fd
;
124 if (seek_t
== LTTNG_VIEWER_SEEK_LAST
&& vstream
->index_read_fd
>= 0) {
127 lseek_ret
= lseek(vstream
->index_read_fd
,
128 vstream
->total_index_received
* sizeof(struct ctf_packet_index
),
133 vstream
->last_sent_index
= vstream
->total_index_received
;
140 free_stream(vstream
);
145 void viewer_stream_delete(struct relay_viewer_stream
*stream
)
148 struct lttng_ht_iter iter
;
150 iter
.iter
.node
= &stream
->stream_n
.node
;
151 ret
= lttng_ht_del(viewer_streams_ht
, &iter
);
155 void viewer_stream_destroy(struct ctf_trace
*ctf_trace
,
156 struct relay_viewer_stream
*stream
)
163 ctf_trace_put_ref(ctf_trace
);
166 if (stream
->read_fd
>= 0) {
167 ret
= close(stream
->read_fd
);
169 PERROR("close read_fd");
172 if (stream
->index_read_fd
>= 0) {
173 ret
= close(stream
->index_read_fd
);
175 PERROR("close index_read_fd");
179 call_rcu(&stream
->rcu_node
, deferred_free_viewer_stream
);
183 * Find viewer stream by id. RCU read side lock MUST be acquired.
185 * Return stream if found else NULL.
187 struct relay_viewer_stream
*viewer_stream_find_by_id(uint64_t id
)
189 struct lttng_ht_node_u64
*node
;
190 struct lttng_ht_iter iter
;
191 struct relay_viewer_stream
*stream
= NULL
;
193 lttng_ht_lookup(viewer_streams_ht
, &id
, &iter
);
194 node
= lttng_ht_iter_get_node_u64(&iter
);
196 DBG("Relay viewer stream %" PRIu64
" not found", id
);
199 stream
= caa_container_of(node
, struct relay_viewer_stream
, stream_n
);
206 * Rotate a stream to the next tracefile.
208 * Must be called with viewer_stream_rotation_lock held.
209 * Returns 0 on success, 1 on EOF, a negative value on error.
211 int viewer_stream_rotate(struct relay_viewer_stream
*vstream
,
212 struct relay_stream
*stream
)
215 uint64_t tracefile_id
;
220 if (vstream
->tracefile_count
== 0) {
221 /* Ignore rotation, there is none to do. */
226 tracefile_id
= (vstream
->tracefile_count_current
+ 1) %
227 vstream
->tracefile_count
;
229 /* Detect the last tracefile to open. */
230 if (vstream
->tracefile_count_last
!= -1ULL &&
231 vstream
->tracefile_count_last
==
232 vstream
->tracefile_count_current
) {
238 * The writer and the reader are not working in the same tracefile, we can
239 * read up to EOF, we don't care about the total_index_received.
241 if (stream
->close_flag
|| (stream
->tracefile_count_current
!= tracefile_id
)) {
242 vstream
->close_write_flag
= 1;
245 * We are opening a file that is still open in write, make sure we
246 * limit our reading to the number of indexes received.
248 vstream
->close_write_flag
= 0;
249 if (stream
->close_flag
) {
250 vstream
->total_index_received
= stream
->total_index_received
;
253 vstream
->tracefile_count_current
= tracefile_id
;
255 ret
= close(vstream
->index_read_fd
);
257 PERROR("close index file %d", vstream
->index_read_fd
);
259 vstream
->index_read_fd
= -1;
261 ret
= close(vstream
->read_fd
);
263 PERROR("close tracefile %d", vstream
->read_fd
);
265 vstream
->read_fd
= -1;
267 pthread_mutex_lock(&vstream
->overwrite_lock
);
268 vstream
->abort_flag
= 0;
269 pthread_mutex_unlock(&vstream
->overwrite_lock
);
271 ret
= index_open(vstream
->path_name
, vstream
->channel_name
,
272 vstream
->tracefile_count
, vstream
->tracefile_count_current
);
276 vstream
->index_read_fd
= ret
;