Sessiond timer thread
[lttng-tools.git] / src / bin / lttng-sessiond / session.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
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.
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 *
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.
16 */
17
18#ifndef _LTT_SESSION_H
19#define _LTT_SESSION_H
20
21#include <limits.h>
22#include <urcu/list.h>
23
24#include <common/hashtable/hashtable.h>
25#include <lttng/rotation.h>
26
27#include "snapshot.h"
28#include "trace-kernel.h"
29
30struct ltt_ust_session;
31
32/*
33 * Tracing session list
34 *
35 * Statically declared in session.c and can be accessed by using
36 * session_get_list() function that returns the pointer to the list.
37 */
38struct ltt_session_list {
39 /*
40 * This lock protects any read/write access to the list and
41 * next_uuid. All public functions in session.c acquire this
42 * lock and release it before returning. If none of those
43 * functions are used, the lock MUST be acquired in order to
44 * iterate or/and do any actions on that list.
45 */
46 pthread_mutex_t lock;
47
48 /*
49 * Session unique ID generator. The session list lock MUST be
50 * upon update and read of this counter.
51 */
52 uint64_t next_uuid;
53
54 /* Linked list head */
55 struct cds_list_head head;
56};
57
58/*
59 * This data structure contains information needed to identify a tracing
60 * session for both LTTng and UST.
61 */
62struct ltt_session {
63 char name[NAME_MAX];
64 char hostname[HOST_NAME_MAX]; /* Local hostname. */
65 struct ltt_kernel_session *kernel_session;
66 struct ltt_ust_session *ust_session;
67 /*
68 * Protect any read/write on this session data structure. This lock must be
69 * acquired *before* using any public functions declared below. Use
70 * session_lock() and session_unlock() for that.
71 */
72 pthread_mutex_t lock;
73 struct cds_list_head list;
74 uint64_t id; /* session unique identifier */
75 /* UID/GID of the user owning the session */
76 uid_t uid;
77 gid_t gid;
78 /*
79 * Network session handle. A value of 0 means that there is no remote
80 * session established.
81 */
82 uint64_t net_handle;
83 /*
84 * This consumer is only set when the create_session_uri call is made.
85 * This contains the temporary information for a consumer output. Upon
86 * creation of the UST or kernel session, this consumer, if available, is
87 * copied into those sessions.
88 */
89 struct consumer_output *consumer;
90
91 /* Did at least ONE start command has been triggered?. */
92 unsigned int has_been_started:1;
93 /*
94 * Is the session active? Start trace command sets this to 1 and the stop
95 * command reset it to 0.
96 */
97 unsigned int active:1;
98
99 /* Snapshot representation in a session. */
100 struct snapshot snapshot;
101 /* Indicate if the session has to output the traces or not. */
102 unsigned int output_traces;
103 /*
104 * This session is in snapshot mode. This means that every channel enabled
105 * will be set in overwrite mode and mmap. It is considered exclusively for
106 * snapshot purposes.
107 */
108 unsigned int snapshot_mode;
109 /*
110 * Timer set when the session is created for live reading.
111 */
112 unsigned int live_timer;
113 /*
114 * Path where to keep the shared memory files.
115 */
116 char shm_path[PATH_MAX];
117 /*
118 * Node in ltt_sessions_ht_by_id.
119 */
120 struct lttng_ht_node_u64 node;
121 /* Number of session rotation for this session. */
122 uint64_t rotate_count;
123 /*
124 * Rotation is pending between the time it starts until the consumer has
125 * finished extracting the data. If the session uses a relay, data related
126 * to a rotation can still be in flight after that, see
127 * rotate_pending_relay.
128 */
129 bool rotate_pending;
130 /* Current status of a rotation. */
131 enum lttng_rotation_status rotation_status;
132 /*
133 * Number of channels waiting for a rotation.
134 * When this number reaches 0, we can handle the rename of the chunk
135 * folder and inform the client that the rotate is finished.
136 */
137 unsigned int nr_chan_rotate_pending;
138 struct {
139 /*
140 * When the rotation is in progress, the temporary path name is
141 * stored here. When the rotation is complete, the final path name
142 * is here and can be queried with the rotate_pending call.
143 */
144 char current_rotate_path[LTTNG_PATH_MAX];
145 /*
146 * The path where the consumer is currently writing after the first
147 * session rotation.
148 */
149 char active_tracing_path[LTTNG_PATH_MAX];
150 } rotation_chunk;
151 /*
152 * The timestamp of the beginning of the previous chunk. For the
153 * first chunk, this is the "lttng start" timestamp. For the
154 * subsequent ones, this copies the current_chunk_start_ts value when
155 * a new rotation starts. This value is used to set the name of a
156 * complete chunk directory, ex: "last_chunk_start_ts-now()".
157 */
158 time_t last_chunk_start_ts;
159 /*
160 * This is the timestamp when a new chunk starts. When a new rotation
161 * starts, we copy this value to last_chunk_start_ts and replace it
162 * with the current timestamp.
163 */
164 time_t current_chunk_start_ts;
165};
166
167/* Prototypes */
168int session_create(char *name, uid_t uid, gid_t gid);
169int session_destroy(struct ltt_session *session);
170
171void session_lock(struct ltt_session *session);
172void session_lock_list(void);
173void session_unlock(struct ltt_session *session);
174void session_unlock_list(void);
175
176struct ltt_session *session_find_by_name(const char *name);
177struct ltt_session *session_find_by_id(uint64_t id);
178struct ltt_session_list *session_get_list(void);
179
180int session_access_ok(struct ltt_session *session, uid_t uid, gid_t gid);
181
182#endif /* _LTT_SESSION_H */
This page took 0.02421 seconds and 4 git commands to generate.