Reference count ltt_session objects
[lttng-tools.git] / src / bin / lttng-sessiond / session.h
CommitLineData
91d76f53 1/*
5b74c7b1
DG
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
5b74c7b1
DG
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
d14d33bf
AM
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
5b74c7b1
DG
16 */
17
18#ifndef _LTT_SESSION_H
19#define _LTT_SESSION_H
20
73184835 21#include <limits.h>
5c408ad8 22#include <stdbool.h>
20fe2104 23#include <urcu/list.h>
d4a2a84a 24
6dc3064a 25#include <common/hashtable/hashtable.h>
db66e574 26#include <lttng/rotation.h>
5d65beab 27#include <lttng/location.h>
6dc3064a
DG
28
29#include "snapshot.h"
00187dd4 30#include "trace-kernel.h"
dd73d57b 31#include "consumer.h"
7972aab2
DG
32
33struct ltt_ust_session;
00187dd4 34
b5541356
DG
35/*
36 * Tracing session list
37 *
38 * Statically declared in session.c and can be accessed by using
54d01ffb 39 * session_get_list() function that returns the pointer to the list.
b5541356 40 */
5b74c7b1 41struct ltt_session_list {
b5541356 42 /*
a24f7994
MD
43 * This lock protects any read/write access to the list and
44 * next_uuid. All public functions in session.c acquire this
45 * lock and release it before returning. If none of those
46 * functions are used, the lock MUST be acquired in order to
47 * iterate or/and do any actions on that list.
b5541356
DG
48 */
49 pthread_mutex_t lock;
6c9cc2ab 50
b5541356 51 /*
a24f7994
MD
52 * Session unique ID generator. The session list lock MUST be
53 * upon update and read of this counter.
b5541356 54 */
d022620a 55 uint64_t next_uuid;
6c9cc2ab
DG
56
57 /* Linked list head */
5b74c7b1
DG
58 struct cds_list_head head;
59};
60
b5541356
DG
61/*
62 * This data structure contains information needed to identify a tracing
63 * session for both LTTng and UST.
5b74c7b1
DG
64 */
65struct ltt_session {
74babd95 66 char name[NAME_MAX];
73184835 67 char hostname[HOST_NAME_MAX]; /* Local hostname. */
20fe2104 68 struct ltt_kernel_session *kernel_session;
f6a9efaa 69 struct ltt_ust_session *ust_session;
e32d7f27 70 struct urcu_ref ref;
b5541356
DG
71 /*
72 * Protect any read/write on this session data structure. This lock must be
73 * acquired *before* using any public functions declared below. Use
54d01ffb 74 * session_lock() and session_unlock() for that.
b5541356
DG
75 */
76 pthread_mutex_t lock;
77 struct cds_list_head list;
d022620a 78 uint64_t id; /* session unique identifier */
e32d7f27
JG
79 /* Indicates if a destroy command has been applied to this session. */
80 bool destroyed;
6df2e2c9
MD
81 /* UID/GID of the user owning the session */
82 uid_t uid;
83 gid_t gid;
00e2e675
DG
84 /*
85 * Network session handle. A value of 0 means that there is no remote
86 * session established.
87 */
88 uint64_t net_handle;
89 /*
90 * This consumer is only set when the create_session_uri call is made.
91 * This contains the temporary information for a consumer output. Upon
92 * creation of the UST or kernel session, this consumer, if available, is
93 * copied into those sessions.
94 */
95 struct consumer_output *consumer;
a4b92340 96
8382cf6f
DG
97 /* Did at least ONE start command has been triggered?. */
98 unsigned int has_been_started:1;
99 /*
100 * Is the session active? Start trace command sets this to 1 and the stop
101 * command reset it to 0.
102 */
103 unsigned int active:1;
6dc3064a
DG
104
105 /* Snapshot representation in a session. */
106 struct snapshot snapshot;
107 /* Indicate if the session has to output the traces or not. */
108 unsigned int output_traces;
27babd3a
DG
109 /*
110 * This session is in snapshot mode. This means that every channel enabled
111 * will be set in overwrite mode and mmap. It is considered exclusively for
112 * snapshot purposes.
113 */
114 unsigned int snapshot_mode;
ecc48a90
JD
115 /*
116 * Timer set when the session is created for live reading.
117 */
d98ad589 118 unsigned int live_timer;
d7ba1388
MD
119 /*
120 * Path where to keep the shared memory files.
121 */
122 char shm_path[PATH_MAX];
23324029
JD
123 /*
124 * Node in ltt_sessions_ht_by_id.
125 */
126 struct lttng_ht_node_u64 node;
ad9f5c17
JG
127 /*
128 * The current archive id corresponds to the number of session rotations
a9577b76 129 * that have occurred for this session. The archive id
ad9f5c17
JG
130 * is used to tag the "generation" of a stream. This tag allows the
131 * consumer and relay daemons to track when a given stream was created
132 * during the lifetime of a session.
133 *
134 * For instance, if a stream is created after a session rotation was
135 * launched, the consumer and relay daemons must not check its position
136 * to determine if that specific session rotation was completed. It is
137 * implicitly "completed" since the stream appeared _after_ the session
138 * rotation was initiated.
139 */
140 uint64_t current_archive_id;
db66e574 141 /*
92816cc3
JG
142 * Rotation is considered pending between the time it is launched up
143 * until the moment when the data has been writen at the destination
144 * and the trace archive has been renamed.
145 *
146 * When tracing locally, only 'rotation_pending_local' is used since
147 * no remote checks are needed. However, when tracing to a relay daemon,
148 * a second check is needed to ensure that the data has been
149 * commited at the remote destination.
5c408ad8 150 */
92816cc3
JG
151 bool rotation_pending_local;
152 bool rotation_pending_relay;
d68c9a04
JD
153 /* Current state of a rotation. */
154 enum lttng_rotation_state rotation_state;
db66e574
JD
155 struct {
156 /*
157 * When the rotation is in progress, the temporary path name is
158 * stored here. When the rotation is complete, the final path name
159 * is here and can be queried with the rotate_pending call.
160 */
161 char current_rotate_path[LTTNG_PATH_MAX];
162 /*
163 * The path where the consumer is currently writing after the first
164 * session rotation.
165 */
166 char active_tracing_path[LTTNG_PATH_MAX];
167 } rotation_chunk;
168 /*
169 * The timestamp of the beginning of the previous chunk. For the
170 * first chunk, this is the "lttng start" timestamp. For the
171 * subsequent ones, this copies the current_chunk_start_ts value when
172 * a new rotation starts. This value is used to set the name of a
173 * complete chunk directory, ex: "last_chunk_start_ts-now()".
174 */
175 time_t last_chunk_start_ts;
176 /*
177 * This is the timestamp when a new chunk starts. When a new rotation
178 * starts, we copy this value to last_chunk_start_ts and replace it
179 * with the current timestamp.
180 */
181 time_t current_chunk_start_ts;
d88744a4 182 /*
92816cc3
JG
183 * Timer to check periodically if a relay and/or consumer has completed
184 * the last rotation.
d88744a4 185 */
92816cc3
JG
186 bool rotation_pending_check_timer_enabled;
187 timer_t rotation_pending_check_timer;
259c2674 188 /* Timer to periodically rotate a session. */
92816cc3
JG
189 bool rotation_schedule_timer_enabled;
190 timer_t rotation_schedule_timer;
66ea93b1 191 /* Value for periodic rotations, 0 if disabled. */
259c2674 192 uint64_t rotate_timer_period;
66ea93b1 193 /* Value for size-based rotations, 0 if disabled. */
259c2674 194 uint64_t rotate_size;
5c408ad8
JD
195 /*
196 * Keep a state if this session was rotated after the last stop command.
197 * We only allow one rotation after a stop. At destroy, we also need to
a9577b76 198 * know if a rotation occurred since the last stop to rename the current
5c408ad8
JD
199 * chunk.
200 */
201 bool rotated_after_last_stop;
90936dcf
JD
202 /*
203 * Condition and trigger for size-based rotations.
204 */
205 struct lttng_condition *rotate_condition;
206 struct lttng_trigger *rotate_trigger;
5b74c7b1
DG
207};
208
209/* Prototypes */
dec56f6c 210int session_create(char *name, uid_t uid, gid_t gid);
6c9cc2ab 211
54d01ffb
DG
212void session_lock(struct ltt_session *session);
213void session_lock_list(void);
71e0a100 214int session_trylock_list(void);
54d01ffb
DG
215void session_unlock(struct ltt_session *session);
216void session_unlock_list(void);
6c9cc2ab 217
e32d7f27
JG
218void session_destroy(struct ltt_session *session);
219
220bool session_get(struct ltt_session *session);
221void session_put(struct ltt_session *session);
222
dd73d57b
JG
223enum consumer_dst_type session_get_consumer_destination_type(
224 const struct ltt_session *session);
225const char *session_get_net_consumer_hostname(
226 const struct ltt_session *session);
227void session_get_net_consumer_ports(
228 const struct ltt_session *session,
229 uint16_t *control_port, uint16_t *data_port);
5d65beab
JG
230struct lttng_trace_archive_location *session_get_trace_archive_location(
231 struct ltt_session *session);
dd73d57b 232
58a1a227 233struct ltt_session *session_find_by_name(const char *name);
23324029 234struct ltt_session *session_find_by_id(uint64_t id);
54d01ffb 235struct ltt_session_list *session_get_list(void);
5b74c7b1 236
2f77fc4b
DG
237int session_access_ok(struct ltt_session *session, uid_t uid, gid_t gid);
238
2961f09e
JG
239int session_reset_rotation_state(struct ltt_session *session,
240 enum lttng_rotation_state result);
241
5b74c7b1 242#endif /* _LTT_SESSION_H */
This page took 0.063137 seconds and 4 git commands to generate.