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 <urcu/rculist.h>
24 #include "lttng-relayd.h"
25 #include "ctf-trace.h"
29 /* Global session id used in the session creation. */
30 static uint64_t last_relay_session_id
;
31 static pthread_mutex_t last_relay_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
34 * Create a new session by assigning a new session ID.
36 * Return allocated session or else NULL.
38 struct relay_session
*session_create(const char *session_name
,
39 const char *hostname
, uint32_t live_timer
,
40 bool snapshot
, uint32_t major
, uint32_t minor
)
42 struct relay_session
*session
;
44 session
= zmalloc(sizeof(*session
));
46 PERROR("relay session zmalloc");
49 if (lttng_strncpy(session
->session_name
, session_name
,
50 sizeof(session
->session_name
))) {
53 if (lttng_strncpy(session
->hostname
, hostname
,
54 sizeof(session
->hostname
))) {
57 session
->ctf_traces_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
58 if (!session
->ctf_traces_ht
) {
62 pthread_mutex_lock(&last_relay_session_id_lock
);
63 session
->id
= ++last_relay_session_id
;
64 pthread_mutex_unlock(&last_relay_session_id_lock
);
66 session
->major
= major
;
67 session
->minor
= minor
;
68 lttng_ht_node_init_u64(&session
->session_n
, session
->id
);
69 urcu_ref_init(&session
->ref
);
70 CDS_INIT_LIST_HEAD(&session
->recv_list
);
71 pthread_mutex_init(&session
->lock
, NULL
);
72 pthread_mutex_init(&session
->recv_list_lock
, NULL
);
74 session
->live_timer
= live_timer
;
75 session
->snapshot
= snapshot
;
77 lttng_ht_add_unique_u64(sessions_ht
, &session
->session_n
);
85 /* Should be called with RCU read-side lock held. */
86 bool session_get(struct relay_session
*session
)
88 return urcu_ref_get_unless_zero(&session
->ref
);
92 * Lookup a session within the session hash table using the session id
93 * as key. A session reference is taken when a session is returned.
94 * session_put() must be called on that session.
96 * Return session or NULL if not found.
98 struct relay_session
*session_get_by_id(uint64_t id
)
100 struct relay_session
*session
= NULL
;
101 struct lttng_ht_node_u64
*node
;
102 struct lttng_ht_iter iter
;
105 lttng_ht_lookup(sessions_ht
, &id
, &iter
);
106 node
= lttng_ht_iter_get_node_u64(&iter
);
108 DBG("Session find by ID %" PRIu64
" id NOT found", id
);
111 session
= caa_container_of(node
, struct relay_session
, session_n
);
112 DBG("Session find by ID %" PRIu64
" id found", id
);
113 if (!session_get(session
)) {
121 static void rcu_destroy_session(struct rcu_head
*rcu_head
)
123 struct relay_session
*session
=
124 caa_container_of(rcu_head
, struct relay_session
,
127 * Since each trace has a reference on the session, it means
128 * that if we are at the point where we teardown the session, no
129 * trace belonging to that session exist at this point.
130 * Calling lttng_ht_destroy in call_rcu worker thread so we
131 * don't hold the RCU read-side lock while calling it.
133 lttng_ht_destroy(session
->ctf_traces_ht
);
138 * Delete session from the given hash table.
140 * Return lttng ht del error code being 0 on success and 1 on failure.
142 static int session_delete(struct relay_session
*session
)
144 struct lttng_ht_iter iter
;
146 iter
.iter
.node
= &session
->session_n
.node
;
147 return lttng_ht_del(sessions_ht
, &iter
);
151 static void destroy_session(struct relay_session
*session
)
155 ret
= session_delete(session
);
157 call_rcu(&session
->rcu_node
, rcu_destroy_session
);
160 void session_release(struct urcu_ref
*ref
)
162 struct relay_session
*session
=
163 caa_container_of(ref
, struct relay_session
, ref
);
165 destroy_session(session
);
168 void session_put(struct relay_session
*session
)
171 urcu_ref_put(&session
->ref
, session_release
);
175 int session_close(struct relay_session
*session
)
178 struct ctf_trace
*trace
;
179 struct lttng_ht_iter iter
;
180 struct relay_stream
*stream
;
182 pthread_mutex_lock(&session
->lock
);
183 DBG("closing session %" PRIu64
": is conn already closed %d",
184 session
->id
, session
->connection_closed
);
185 if (session
->connection_closed
) {
189 session
->connection_closed
= true;
191 pthread_mutex_unlock(&session
->lock
);
197 cds_lfht_for_each_entry(session
->ctf_traces_ht
->ht
,
198 &iter
.iter
, trace
, node
.node
) {
199 ret
= ctf_trace_close(trace
);
204 cds_list_for_each_entry_rcu(stream
, &session
->recv_list
,
206 /* Close streams which have not been published yet. */
207 try_stream_close(stream
);
214 /* Put self-reference from create. */
215 session_put(session
);
219 int session_abort(struct relay_session
*session
)
227 pthread_mutex_lock(&session
->lock
);
228 DBG("aborting session %" PRIu64
, session
->id
);
229 if (session
->aborted
) {
230 ERR("session %" PRIu64
" is already aborted", session
->id
);
234 session
->aborted
= true;
236 pthread_mutex_unlock(&session
->lock
);
240 void print_sessions(void)
242 struct lttng_ht_iter iter
;
243 struct relay_session
*session
;
250 cds_lfht_for_each_entry(sessions_ht
->ht
, &iter
.iter
, session
,
252 if (!session_get(session
)) {
255 DBG("session %p refcount %ld session %" PRIu64
,
257 session
->ref
.refcount
,
259 session_put(session
);