Basic structure for the rotate command
[deliverable/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>
20fe2104 22#include <urcu/list.h>
d4a2a84a 23
6dc3064a
DG
24#include <common/hashtable/hashtable.h>
25
26#include "snapshot.h"
00187dd4 27#include "trace-kernel.h"
7972aab2
DG
28
29struct ltt_ust_session;
00187dd4 30
b5541356
DG
31/*
32 * Tracing session list
33 *
34 * Statically declared in session.c and can be accessed by using
54d01ffb 35 * session_get_list() function that returns the pointer to the list.
b5541356 36 */
5b74c7b1 37struct ltt_session_list {
b5541356 38 /*
a24f7994
MD
39 * This lock protects any read/write access to the list and
40 * next_uuid. All public functions in session.c acquire this
41 * lock and release it before returning. If none of those
42 * functions are used, the lock MUST be acquired in order to
43 * iterate or/and do any actions on that list.
b5541356
DG
44 */
45 pthread_mutex_t lock;
6c9cc2ab 46
b5541356 47 /*
a24f7994
MD
48 * Session unique ID generator. The session list lock MUST be
49 * upon update and read of this counter.
b5541356 50 */
d022620a 51 uint64_t next_uuid;
6c9cc2ab
DG
52
53 /* Linked list head */
5b74c7b1
DG
54 struct cds_list_head head;
55};
56
6e0be6cc
JD
57struct ltt_session_chunk {
58 /*
59 * When the rotation is in progress, the temporary path name is
60 * stored here. When the rotation is complete, the final path name
61 * is here and can be queried with the rotate_pending call.
62 */
63 char current_rotate_path[PATH_MAX];
64 /*
65 * The path where the consumer is currently writing after the first
66 * session rotation.
67 */
68 char active_tracing_path[PATH_MAX];
69 time_t rotate_start_time;
70 time_t rotate_end_time;
71};
72
b5541356
DG
73/*
74 * This data structure contains information needed to identify a tracing
75 * session for both LTTng and UST.
5b74c7b1
DG
76 */
77struct ltt_session {
74babd95 78 char name[NAME_MAX];
73184835 79 char hostname[HOST_NAME_MAX]; /* Local hostname. */
20fe2104 80 struct ltt_kernel_session *kernel_session;
f6a9efaa 81 struct ltt_ust_session *ust_session;
b5541356
DG
82 /*
83 * Protect any read/write on this session data structure. This lock must be
84 * acquired *before* using any public functions declared below. Use
54d01ffb 85 * session_lock() and session_unlock() for that.
b5541356
DG
86 */
87 pthread_mutex_t lock;
88 struct cds_list_head list;
d022620a 89 uint64_t id; /* session unique identifier */
6df2e2c9
MD
90 /* UID/GID of the user owning the session */
91 uid_t uid;
92 gid_t gid;
00e2e675
DG
93 /*
94 * Network session handle. A value of 0 means that there is no remote
95 * session established.
96 */
97 uint64_t net_handle;
98 /*
99 * This consumer is only set when the create_session_uri call is made.
100 * This contains the temporary information for a consumer output. Upon
101 * creation of the UST or kernel session, this consumer, if available, is
102 * copied into those sessions.
103 */
104 struct consumer_output *consumer;
a4b92340 105
8382cf6f
DG
106 /* Did at least ONE start command has been triggered?. */
107 unsigned int has_been_started:1;
108 /*
109 * Is the session active? Start trace command sets this to 1 and the stop
110 * command reset it to 0.
111 */
112 unsigned int active:1;
6dc3064a
DG
113
114 /* Snapshot representation in a session. */
115 struct snapshot snapshot;
116 /* Indicate if the session has to output the traces or not. */
117 unsigned int output_traces;
27babd3a
DG
118 /*
119 * This session is in snapshot mode. This means that every channel enabled
120 * will be set in overwrite mode and mmap. It is considered exclusively for
121 * snapshot purposes.
122 */
123 unsigned int snapshot_mode;
ecc48a90
JD
124 /*
125 * Timer set when the session is created for live reading.
126 */
d98ad589 127 unsigned int live_timer;
d7ba1388
MD
128 /*
129 * Path where to keep the shared memory files.
130 */
131 char shm_path[PATH_MAX];
23324029
JD
132 /*
133 * Node in ltt_sessions_ht_by_id.
134 */
135 struct lttng_ht_node_u64 node;
6e0be6cc
JD
136 /*
137 * Number of session rotation for this session.
138 */
139 uint64_t rotate_count;
140 unsigned int rotate_pending:1;
141 /*
142 * Number of channels waiting for a rotate.
143 * When this number reaches 0, we can handle the rename of the chunk
144 * folder and inform the client that the rotate is finished.
145 *
146 * TODO: replace rotate_pending checks by that.
147 */
148 unsigned int nr_chan_rotate_pending;
149 struct ltt_session_chunk rotation_chunk;
150 /*
151 * Store the timestamp when the session started for an eventual
152 * session rotation call.
153 */
154 time_t session_start_ts;
155 time_t session_last_stop_ts;
156 time_t last_begin_rotation_ts;
5b74c7b1
DG
157};
158
159/* Prototypes */
dec56f6c 160int session_create(char *name, uid_t uid, gid_t gid);
271933a4 161int session_destroy(struct ltt_session *session);
6c9cc2ab 162
54d01ffb
DG
163void session_lock(struct ltt_session *session);
164void session_lock_list(void);
165void session_unlock(struct ltt_session *session);
166void session_unlock_list(void);
6c9cc2ab 167
58a1a227 168struct ltt_session *session_find_by_name(const char *name);
23324029 169struct ltt_session *session_find_by_id(uint64_t id);
54d01ffb 170struct ltt_session_list *session_get_list(void);
5b74c7b1 171
2f77fc4b
DG
172int session_access_ok(struct ltt_session *session, uid_t uid, gid_t gid);
173
5b74c7b1 174#endif /* _LTT_SESSION_H */
This page took 0.066186 seconds and 5 git commands to generate.