5 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
6 * David Goulet <dgoulet@efficios.com>
7 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License, version 2 only, as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc., 51
20 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <urcu/list.h>
28 #include <common/hashtable/hashtable.h>
29 #include <common/trace-chunk.h>
30 #include <common/optional.h>
31 #include <common/buffer-view.h>
34 #include "stream-fd.h"
35 #include "tracefile-array.h"
37 struct lttcomm_relayd_index
;
39 struct relay_stream_rotation
{
41 * Indicates if the stream's data and index have been rotated. A
42 * rotation is considered completed when both rotations have occurred.
47 * Packet sequence number of the first packet of the new trace chunk to
48 * which the stream is rotating.
50 uint64_t packet_seq_num
;
52 * Monotonically increasing previous network sequence number of first
53 * data packet of the new trace chunk to which the stream is rotating.
55 uint64_t prev_data_net_seq
;
56 struct lttng_trace_chunk
*next_trace_chunk
;
60 * Represents a stream in the relay
63 uint64_t stream_handle
;
66 /* Back reference to trace. Protected by refcount on trace object. */
67 struct ctf_trace
*trace
;
70 * To protect from concurrent read/update. The viewer stream
71 * lock nests inside the stream lock. The stream lock nests
72 * inside the ctf_trace lock.
75 /* previous data sequence number written to disk. */
76 uint64_t prev_data_seq
;
77 /* previous index sequence number written to disk. */
78 uint64_t prev_index_seq
;
79 /* seq num to encounter before closing. */
80 uint64_t last_net_seq_num
;
82 /* FD on which to write the stream data. */
83 struct stream_fd
*stream_fd
;
84 /* index file on which to write the index data. */
85 struct lttng_index_file
*index_file
;
90 /* On-disk circular buffer of tracefiles. */
91 uint64_t tracefile_size
;
92 uint64_t tracefile_size_current
;
93 /* Max number of trace files for this stream. */
94 uint64_t tracefile_count
;
96 * Index of the currently active file for this stream's on-disk
99 uint64_t tracefile_current_index
;
101 * Indicates that the on-disk buffer has wrapped around. Stream
102 * files shall be unlinked before being opened after this has occurred.
104 bool tracefile_wrapped_around
;
107 * Position in the tracefile where we have the full index also on disk.
109 uint64_t pos_after_last_complete_data_index
;
112 * Counts the number of received indexes. The "tag" associated
113 * with an index is taken before incrementing this seqcount.
114 * Therefore, the sequence tag associated with the last index
115 * received is always index_received_seqcount - 1.
117 uint64_t index_received_seqcount
;
120 * Packet sequence number of the last received packet index.
121 * Only populated when interacting with CTF_INDEX 1.1+.
123 LTTNG_OPTIONAL(uint64_t) received_packet_seq_num
;
126 * Tracefile array is an index of the stream trace files,
127 * indexed by position. It allows keeping track of the oldest
128 * available indexes when overwriting trace files in tracefile
131 struct tracefile_array
*tfa
;
133 bool closed
; /* Stream is closed. */
134 bool close_requested
; /* Close command has been received. */
137 * Counts number of indexes in indexes_ht. Redundant info.
138 * Protected by stream lock.
140 int indexes_in_flight
;
141 struct lttng_ht
*indexes_ht
;
144 * If the stream is inactive, this field is updated with the
145 * live beacon timestamp end, when it is active, this
148 uint64_t beacon_ts_end
;
150 /* CTF stream ID, -1ULL when unset (first packet not received yet). */
151 uint64_t ctf_stream_id
;
153 /* Indicate if the stream was initialized for a data pending command. */
154 bool data_pending_check_done
;
156 /* Is this stream a metadata stream ? */
158 /* Amount of metadata received (bytes). */
159 uint64_t metadata_received
;
162 * Member of the stream list in struct ctf_trace.
163 * Updates are protected by the stream_list_lock.
164 * Traversals are protected by RCU.
166 struct cds_list_head stream_node
;
168 * Temporary list belonging to the connection until all streams
169 * are received for that connection.
170 * Member of the stream recv list in the connection.
171 * Updates are protected by the stream_recv_list_lock.
172 * Traversals are protected by RCU.
175 struct cds_list_head recv_node
;
176 /* Protected by session lock. */
178 /* Notified viewer that no new metadata is available. */
179 bool no_new_metadata_notified
;
181 * Node of stream within global stream hash table.
183 struct lttng_ht_node_u64 node
;
184 bool in_stream_ht
; /* is stream in stream hash table. */
185 struct rcu_head rcu_node
; /* For call_rcu teardown. */
187 * The trace chunk to which the file currently being produced (if any)
190 struct lttng_trace_chunk
*trace_chunk
;
191 LTTNG_OPTIONAL(struct relay_stream_rotation
) ongoing_rotation
;
194 struct relay_stream
*stream_create(struct ctf_trace
*trace
,
195 uint64_t stream_handle
, char *path_name
,
196 char *channel_name
, uint64_t tracefile_size
,
197 uint64_t tracefile_count
);
199 struct relay_stream
*stream_get_by_id(uint64_t stream_id
);
200 bool stream_get(struct relay_stream
*stream
);
201 void stream_put(struct relay_stream
*stream
);
202 int stream_rotate_output_files(struct relay_session
*session
,
203 struct relay_stream
*stream
);
204 int stream_set_pending_rotation(struct relay_stream
*stream
,
205 struct lttng_trace_chunk
*next_trace_chunk
,
206 uint64_t rotation_sequence_number
);
207 void try_stream_close(struct relay_stream
*stream
);
208 void stream_publish(struct relay_stream
*stream
);
209 int stream_init_packet(struct relay_stream
*stream
, size_t packet_size
,
211 int stream_write(struct relay_stream
*stream
,
212 const struct lttng_buffer_view
*packet
, size_t padding_len
);
213 /* Called after the reception of a complete data packet. */
214 int stream_update_index(struct relay_stream
*stream
, uint64_t net_seq_num
,
215 bool rotate_index
, bool *flushed
, uint64_t total_size
);
216 int stream_complete_packet(struct relay_stream
*stream
,
217 size_t packet_total_size
, uint64_t sequence_number
,
219 /* Index info is in host endianness. */
220 int stream_add_index(struct relay_stream
*stream
,
221 const struct lttcomm_relayd_index
*index_info
);
222 int stream_reset_file(struct relay_stream
*stream
);
224 void print_relay_streams(void);
226 #endif /* _STREAM_H */