Rename C++ header files to .hpp
[lttng-tools.git] / src / bin / lttng-relayd / ctf-trace.cpp
CommitLineData
d3e2ba59 1/*
ab5be9fa
MJ
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>
d3e2ba59 5 *
ab5be9fa 6 * SPDX-License-Identifier: GPL-2.0-only
d3e2ba59 7 *
d3e2ba59
JD
8 */
9
6c1c0768 10#define _LGPL_SOURCE
d3e2ba59 11
c9e313bc
SM
12#include <common/common.hpp>
13#include <common/utils.hpp>
7591bab1 14#include <urcu/rculist.h>
d3e2ba59 15
c9e313bc
SM
16#include "ctf-trace.hpp"
17#include "lttng-relayd.hpp"
18#include "stream.hpp"
d3e2ba59
JD
19
20static uint64_t last_relay_ctf_trace_id;
7591bab1 21static pthread_mutex_t last_relay_ctf_trace_id_lock = PTHREAD_MUTEX_INITIALIZER;
d3e2ba59 22
7591bab1 23static void rcu_destroy_ctf_trace(struct rcu_head *rcu_head)
2a174661 24{
7591bab1
MD
25 struct ctf_trace *trace =
26 caa_container_of(rcu_head, struct ctf_trace, rcu_node);
2a174661
DG
27
28 free(trace);
29}
30
d3e2ba59 31/*
2a174661
DG
32 * Destroy a ctf trace and all stream contained in it.
33 *
34 * MUST be called with the RCU read side lock.
d3e2ba59 35 */
a1075e32 36static void ctf_trace_destroy(struct ctf_trace *trace)
d3e2ba59 37{
2a174661 38 /*
7591bab1
MD
39 * Getting to this point, every stream referenced by that trace
40 * have put back their ref since the've been closed by the
41 * control side.
2a174661 42 */
a0377dfe 43 LTTNG_ASSERT(cds_list_empty(&trace->stream_list));
48b7cdc2
FD
44 ASSERT_RCU_READ_LOCKED();
45
7591bab1
MD
46 session_put(trace->session);
47 trace->session = NULL;
348a81dc
JG
48 free(trace->path);
49 trace->path = NULL;
7591bab1
MD
50 call_rcu(&trace->rcu_node, rcu_destroy_ctf_trace);
51}
2a174661 52
a1075e32 53static void ctf_trace_release(struct urcu_ref *ref)
7591bab1
MD
54{
55 struct ctf_trace *trace =
56 caa_container_of(ref, struct ctf_trace, ref);
57 int ret;
58 struct lttng_ht_iter iter;
d3e2ba59 59
7591bab1
MD
60 iter.iter.node = &trace->node.node;
61 ret = lttng_ht_del(trace->session->ctf_traces_ht, &iter);
a0377dfe 62 LTTNG_ASSERT(!ret);
7591bab1 63 ctf_trace_destroy(trace);
2a174661
DG
64}
65
7591bab1 66/*
48b7cdc2
FD
67 * The caller must either:
68 * - hold the RCU read side lock, or
69 * - guarantee the existence of the object by already holding a reference to
70 * the object.
7591bab1
MD
71 */
72bool ctf_trace_get(struct ctf_trace *trace)
2a174661 73{
48b7cdc2
FD
74 const bool ref = urcu_ref_get_unless_zero(&trace->ref);
75
76 if (!ref) {
77 /*
78 * The ref count is already zero. It means the object is being
79 * torn down concurently.
80 * This is only acceptable if we hold the RCU read-side lock,
81 * else it's a logic error.
82 */
83 ASSERT_RCU_READ_LOCKED();
84 }
85
86 return ref;
d3e2ba59
JD
87}
88
89/*
7591bab1
MD
90 * Create and return an allocated ctf_trace. NULL on error.
91 * There is no "open" and "close" for a ctf_trace, but rather just a
92 * create and refcounting. Whenever all the streams belonging to a trace
93 * put their reference, its refcount drops to 0.
d3e2ba59 94 */
7591bab1 95static struct ctf_trace *ctf_trace_create(struct relay_session *session,
348a81dc 96 const char *subpath)
d3e2ba59 97{
7591bab1 98 struct ctf_trace *trace;
d3e2ba59 99
ac497a37 100 trace = (ctf_trace *) zmalloc(sizeof(*trace));
7591bab1 101 if (!trace) {
348a81dc
JG
102 PERROR("Failed to allocate ctf_trace");
103 goto end;
d3e2ba59 104 }
348a81dc 105 urcu_ref_init(&trace->ref);
d3e2ba59 106
7591bab1 107 if (!session_get(session)) {
348a81dc 108 ERR("Failed to acquire session reference");
7591bab1
MD
109 goto error;
110 }
111 trace->session = session;
348a81dc
JG
112 trace->path = strdup(subpath);
113 if (!trace->path) {
114 goto error;
115 }
7591bab1
MD
116
117 CDS_INIT_LIST_HEAD(&trace->stream_list);
118
119 pthread_mutex_lock(&last_relay_ctf_trace_id_lock);
120 trace->id = ++last_relay_ctf_trace_id;
121 pthread_mutex_unlock(&last_relay_ctf_trace_id_lock);
2a174661 122
348a81dc 123 lttng_ht_node_init_str(&trace->node, trace->path);
7591bab1 124 trace->session = session;
7591bab1 125 pthread_mutex_init(&trace->lock, NULL);
7591bab1
MD
126 pthread_mutex_init(&trace->stream_list_lock, NULL);
127 lttng_ht_add_str(session->ctf_traces_ht, &trace->node);
2a174661 128
348a81dc
JG
129 DBG("Created ctf_trace %" PRIu64 "of session \"%s\" from host \"%s\" with path: %s",
130 trace->id, session->session_name, session->hostname,
131 subpath);
d3e2ba59 132
348a81dc 133end:
7591bab1 134 return trace;
348a81dc
JG
135error:
136 ctf_trace_put(trace);
137 return NULL;
d3e2ba59
JD
138}
139
140/*
7591bab1
MD
141 * Return a ctf_trace if found by id in the given hash table else NULL.
142 * Hold a reference on the ctf_trace, and must be paired with
143 * ctf_trace_put().
d3e2ba59 144 */
7591bab1 145struct ctf_trace *ctf_trace_get_by_path_or_create(struct relay_session *session,
348a81dc 146 const char *subpath)
d3e2ba59 147{
2a174661 148 struct lttng_ht_node_str *node;
d3e2ba59 149 struct lttng_ht_iter iter;
2a174661 150 struct ctf_trace *trace = NULL;
d3e2ba59 151
7591bab1 152 rcu_read_lock();
348a81dc 153 lttng_ht_lookup(session->ctf_traces_ht, subpath, &iter);
2a174661
DG
154 node = lttng_ht_iter_get_node_str(&iter);
155 if (!node) {
348a81dc 156 DBG("CTF Trace path %s not found", subpath);
2a174661 157 goto end;
d3e2ba59 158 }
2a174661 159 trace = caa_container_of(node, struct ctf_trace, node);
7591bab1
MD
160 if (!ctf_trace_get(trace)) {
161 trace = NULL;
162 }
d3e2ba59 163end:
7591bab1
MD
164 rcu_read_unlock();
165 if (!trace) {
166 /* Try to create */
348a81dc 167 trace = ctf_trace_create(session, subpath);
7591bab1 168 }
2a174661 169 return trace;
d3e2ba59
JD
170}
171
7591bab1 172void ctf_trace_put(struct ctf_trace *trace)
2a174661 173{
7591bab1 174 rcu_read_lock();
7591bab1 175 urcu_ref_put(&trace->ref, ctf_trace_release);
7591bab1 176 rcu_read_unlock();
2a174661
DG
177}
178
7591bab1 179int ctf_trace_close(struct ctf_trace *trace)
2a174661 180{
7591bab1
MD
181 struct relay_stream *stream;
182
183 rcu_read_lock();
184 cds_list_for_each_entry_rcu(stream, &trace->stream_list,
185 stream_node) {
186 /*
bda7c7b9
JG
187 * Close stream since the connection owning the trace is being
188 * torn down.
7591bab1 189 */
bda7c7b9 190 try_stream_close(stream);
7591bab1
MD
191 }
192 rcu_read_unlock();
193 /*
194 * Since all references to the trace are held by its streams, we
195 * don't need to do any self-ref put.
196 */
197 return 0;
198}
2a174661 199
7591bab1
MD
200struct relay_viewer_stream *ctf_trace_get_viewer_metadata_stream(struct ctf_trace *trace)
201{
202 struct relay_viewer_stream *vstream;
2a174661 203
7591bab1
MD
204 rcu_read_lock();
205 vstream = rcu_dereference(trace->viewer_metadata_stream);
206 if (!vstream) {
207 goto end;
208 }
209 if (!viewer_stream_get(vstream)) {
210 vstream = NULL;
211 }
212end:
213 rcu_read_unlock();
214 return vstream;
2a174661 215}
This page took 0.062943 seconds and 4 git commands to generate.