2 * Copyright (C) 2013 Julien Desfossez <jdesfossez@efficios.com>
3 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
4 * Copyright (C) 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * SPDX-License-Identifier: GPL-2.0-only
13 #include <common/common.h>
14 #include <common/utils.h>
15 #include <common/compat/endian.h>
17 #include "lttng-relayd.h"
20 #include "connection.h"
23 * Allocate a new relay index object. Pass the stream in which it is
24 * contained as parameter. The sequence number will be used as the hash
27 * Called with stream mutex held.
28 * Return allocated object or else NULL on error.
30 static struct relay_index
*relay_index_create(struct relay_stream
*stream
,
33 struct relay_index
*index
;
35 DBG2("Creating relay index for stream id %" PRIu64
" and seqnum %" PRIu64
,
36 stream
->stream_handle
, net_seq_num
);
38 index
= zmalloc(sizeof(*index
));
40 PERROR("Relay index zmalloc");
43 if (!stream_get(stream
)) {
44 ERR("Cannot get stream");
49 index
->stream
= stream
;
51 lttng_ht_node_init_u64(&index
->index_n
, net_seq_num
);
52 pthread_mutex_init(&index
->lock
, NULL
);
53 urcu_ref_init(&index
->ref
);
60 * Add unique relay index to the given hash table. In case of a collision, the
61 * already existing object is put in the given _index variable.
63 * RCU read side lock MUST be acquired.
65 static struct relay_index
*relay_index_add_unique(struct relay_stream
*stream
,
66 struct relay_index
*index
)
68 struct cds_lfht_node
*node_ptr
;
69 struct relay_index
*_index
;
71 DBG2("Adding relay index with stream id %" PRIu64
" and seqnum %" PRIu64
,
72 stream
->stream_handle
, index
->index_n
.key
);
74 node_ptr
= cds_lfht_add_unique(stream
->indexes_ht
->ht
,
75 stream
->indexes_ht
->hash_fct(&index
->index_n
, lttng_ht_seed
),
76 stream
->indexes_ht
->match_fct
, &index
->index_n
,
77 &index
->index_n
.node
);
78 if (node_ptr
!= &index
->index_n
.node
) {
79 _index
= caa_container_of(node_ptr
, struct relay_index
,
88 * Should be called with RCU read-side lock held.
90 static bool relay_index_get(struct relay_index
*index
)
92 DBG2("index get for stream id %" PRIu64
" and seqnum %" PRIu64
" refcount %d",
93 index
->stream
->stream_handle
, index
->index_n
.key
,
94 (int) index
->ref
.refcount
);
96 return urcu_ref_get_unless_zero(&index
->ref
);
100 * Get a relayd index in within the given stream, or create it if not
103 * Called with stream mutex held.
104 * Return index object or else NULL on error.
106 struct relay_index
*relay_index_get_by_id_or_create(struct relay_stream
*stream
,
107 uint64_t net_seq_num
)
109 struct lttng_ht_node_u64
*node
;
110 struct lttng_ht_iter iter
;
111 struct relay_index
*index
= NULL
;
113 DBG3("Finding index for stream id %" PRIu64
" and seq_num %" PRIu64
,
114 stream
->stream_handle
, net_seq_num
);
117 lttng_ht_lookup(stream
->indexes_ht
, &net_seq_num
, &iter
);
118 node
= lttng_ht_iter_get_node_u64(&iter
);
120 index
= caa_container_of(node
, struct relay_index
, index_n
);
122 struct relay_index
*oldindex
;
124 index
= relay_index_create(stream
, net_seq_num
);
126 ERR("Cannot create index for stream id %" PRIu64
" and seq_num %" PRIu64
,
127 stream
->stream_handle
, net_seq_num
);
130 oldindex
= relay_index_add_unique(stream
, index
);
132 /* Added concurrently, keep old. */
133 relay_index_put(index
);
135 if (!relay_index_get(index
)) {
139 stream
->indexes_in_flight
++;
140 index
->in_hash_table
= true;
145 DBG2("Index %sfound or created in HT for stream ID %" PRIu64
" and seqnum %" PRIu64
,
146 (index
== NULL
) ? "NOT " : "", stream
->stream_handle
, net_seq_num
);
150 int relay_index_set_file(struct relay_index
*index
,
151 struct lttng_index_file
*index_file
,
152 uint64_t data_offset
)
156 pthread_mutex_lock(&index
->lock
);
157 if (index
->index_file
) {
161 lttng_index_file_get(index_file
);
162 index
->index_file
= index_file
;
163 index
->index_data
.offset
= data_offset
;
165 pthread_mutex_unlock(&index
->lock
);
169 int relay_index_set_data(struct relay_index
*index
,
170 const struct ctf_packet_index
*data
)
174 pthread_mutex_lock(&index
->lock
);
175 if (index
->has_index_data
) {
179 /* Set everything except data_offset. */
180 index
->index_data
.packet_size
= data
->packet_size
;
181 index
->index_data
.content_size
= data
->content_size
;
182 index
->index_data
.timestamp_begin
= data
->timestamp_begin
;
183 index
->index_data
.timestamp_end
= data
->timestamp_end
;
184 index
->index_data
.events_discarded
= data
->events_discarded
;
185 index
->index_data
.stream_id
= data
->stream_id
;
186 index
->has_index_data
= true;
188 pthread_mutex_unlock(&index
->lock
);
192 static void index_destroy(struct relay_index
*index
)
197 static void index_destroy_rcu(struct rcu_head
*rcu_head
)
199 struct relay_index
*index
=
200 caa_container_of(rcu_head
, struct relay_index
, rcu_node
);
202 index_destroy(index
);
205 /* Stream lock must be held by the caller. */
206 static void index_release(struct urcu_ref
*ref
)
208 struct relay_index
*index
= caa_container_of(ref
, struct relay_index
, ref
);
209 struct relay_stream
*stream
= index
->stream
;
211 struct lttng_ht_iter iter
;
213 if (index
->index_file
) {
214 lttng_index_file_put(index
->index_file
);
215 index
->index_file
= NULL
;
217 if (index
->in_hash_table
) {
218 /* Delete index from hash table. */
219 iter
.iter
.node
= &index
->index_n
.node
;
220 ret
= lttng_ht_del(stream
->indexes_ht
, &iter
);
222 stream
->indexes_in_flight
--;
225 stream_put(index
->stream
);
226 index
->stream
= NULL
;
228 call_rcu(&index
->rcu_node
, index_destroy_rcu
);
232 * Called with stream mutex held.
234 * Stream lock must be held by the caller.
236 void relay_index_put(struct relay_index
*index
)
238 DBG2("index put for stream id %" PRIu64
" and seqnum %" PRIu64
" refcount %d",
239 index
->stream
->stream_handle
, index
->index_n
.key
,
240 (int) index
->ref
.refcount
);
242 * Ensure existance of index->lock for index unlock.
246 * Index lock ensures that concurrent test and update of stream
249 assert(index
->ref
.refcount
!= 0);
250 urcu_ref_put(&index
->ref
, index_release
);
255 * Try to flush index to disk. Releases self-reference to index once
258 * Stream lock must be held by the caller.
259 * Return 0 on successful flush, a negative value on error, or positive
260 * value if no flush was performed.
262 int relay_index_try_flush(struct relay_index
*index
)
265 bool flushed
= false;
267 pthread_mutex_lock(&index
->lock
);
268 if (index
->flushed
) {
271 /* Check if we are ready to flush. */
272 if (!index
->has_index_data
|| !index
->index_file
) {
276 DBG2("Writing index for stream ID %" PRIu64
" and seq num %" PRIu64
,
277 index
->stream
->stream_handle
, index
->index_n
.key
);
279 index
->flushed
= true;
280 ret
= lttng_index_file_write(index
->index_file
, &index
->index_data
);
282 pthread_mutex_unlock(&index
->lock
);
285 /* Put self-ref from index now that it has been flushed. */
286 relay_index_put(index
);
292 * Close every relay index within a given stream, without flushing
295 void relay_index_close_all(struct relay_stream
*stream
)
297 struct lttng_ht_iter iter
;
298 struct relay_index
*index
;
301 cds_lfht_for_each_entry(stream
->indexes_ht
->ht
, &iter
.iter
,
302 index
, index_n
.node
) {
303 /* Put self-ref from index. */
304 relay_index_put(index
);
309 void relay_index_close_partial_fd(struct relay_stream
*stream
)
311 struct lttng_ht_iter iter
;
312 struct relay_index
*index
;
315 cds_lfht_for_each_entry(stream
->indexes_ht
->ht
, &iter
.iter
,
316 index
, index_n
.node
) {
317 if (!index
->index_file
) {
321 * Partial index has its index_file: we have only
322 * received its info from the data socket.
323 * Put self-ref from index.
325 relay_index_put(index
);
330 uint64_t relay_index_find_last(struct relay_stream
*stream
)
332 struct lttng_ht_iter iter
;
333 struct relay_index
*index
;
334 uint64_t net_seq_num
= -1ULL;
337 cds_lfht_for_each_entry(stream
->indexes_ht
->ht
, &iter
.iter
,
338 index
, index_n
.node
) {
339 if (net_seq_num
== -1ULL ||
340 index
->index_n
.key
> net_seq_num
) {
341 net_seq_num
= index
->index_n
.key
;
349 * Update the index file of an already existing relay_index.
350 * Offsets by 'removed_data_count' the offset field of an index.
353 int relay_index_switch_file(struct relay_index
*index
,
354 struct lttng_index_file
*new_index_file
,
355 uint64_t removed_data_count
)
360 pthread_mutex_lock(&index
->lock
);
361 if (!index
->index_file
) {
362 ERR("No index_file");
367 lttng_index_file_put(index
->index_file
);
368 lttng_index_file_get(new_index_file
);
369 index
->index_file
= new_index_file
;
370 offset
= be64toh(index
->index_data
.offset
);
371 index
->index_data
.offset
= htobe64(offset
- removed_data_count
);
374 pthread_mutex_unlock(&index
->lock
);
379 * Switch the index file of all pending indexes for a stream and update the
380 * data offset by substracting the last safe position.
381 * Stream lock must be held.
383 int relay_index_switch_all_files(struct relay_stream
*stream
)
385 struct lttng_ht_iter iter
;
386 struct relay_index
*index
;
390 cds_lfht_for_each_entry(stream
->indexes_ht
->ht
, &iter
.iter
,
391 index
, index_n
.node
) {
392 ret
= relay_index_switch_file(index
, stream
->index_file
,
393 stream
->pos_after_last_complete_data_index
);
404 * Set index data from the control port to a given index object.
406 int relay_index_set_control_data(struct relay_index
*index
,
407 const struct lttcomm_relayd_index
*data
,
408 unsigned int minor_version
)
410 /* The index on disk is encoded in big endian. */
411 const struct ctf_packet_index index_data
= {
412 .packet_size
= htobe64(data
->packet_size
),
413 .content_size
= htobe64(data
->content_size
),
414 .timestamp_begin
= htobe64(data
->timestamp_begin
),
415 .timestamp_end
= htobe64(data
->timestamp_end
),
416 .events_discarded
= htobe64(data
->events_discarded
),
417 .stream_id
= htobe64(data
->stream_id
),
420 if (minor_version
>= 8) {
421 index
->index_data
.stream_instance_id
= htobe64(data
->stream_instance_id
);
422 index
->index_data
.packet_seq_num
= htobe64(data
->packet_seq_num
);
424 uint64_t unset_value
= -1ULL;
426 index
->index_data
.stream_instance_id
= htobe64(unset_value
);
427 index
->index_data
.packet_seq_num
= htobe64(unset_value
);
430 return relay_index_set_data(index
, &index_data
);