Fix: UST app session teardown process
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.h
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_UST_APP_H
19 #define _LTT_UST_APP_H
20
21 #include <stdint.h>
22
23 #include "trace-ust.h"
24
25 /* lttng-ust supported version. */
26 #define LTTNG_UST_COMM_MAJOR 2 /* comm protocol major version */
27 #define UST_APP_MAJOR_VERSION 3 /* Internal UST version supported */
28
29 #define UST_APP_EVENT_LIST_SIZE 32
30
31 struct lttng_filter_bytecode;
32 struct lttng_ust_filter_bytecode;
33
34 extern int ust_consumerd64_fd, ust_consumerd32_fd;
35
36 struct ust_app_ht_key {
37 const char *name;
38 const struct lttng_ust_filter_bytecode *filter;
39 enum lttng_ust_loglevel_type loglevel;
40 };
41
42 /*
43 * Application registration data structure.
44 */
45 struct ust_register_msg {
46 uint32_t major;
47 uint32_t minor;
48 pid_t pid;
49 pid_t ppid;
50 uid_t uid;
51 gid_t gid;
52 uint32_t bits_per_long;
53 char name[16];
54 };
55
56 /*
57 * Global applications HT used by the session daemon. This table is indexed by
58 * PID using the pid_n node and pid value of an ust_app.
59 */
60 struct lttng_ht *ust_app_ht;
61
62 /*
63 * Global applications HT used by the session daemon. This table is indexed by
64 * socket using the sock_n node and sock value of an ust_app.
65 */
66 struct lttng_ht *ust_app_ht_by_sock;
67
68 struct ust_app_ctx {
69 int handle;
70 struct lttng_ust_context ctx;
71 struct lttng_ust_object_data *obj;
72 struct lttng_ht_node_ulong node;
73 };
74
75 struct ust_app_event {
76 int enabled;
77 int handle;
78 struct lttng_ust_object_data *obj;
79 struct lttng_ust_event attr;
80 char name[LTTNG_UST_SYM_NAME_LEN];
81 struct lttng_ht_node_str node;
82 struct lttng_ust_filter_bytecode *filter;
83 };
84
85 struct ust_app_channel {
86 int enabled;
87 int handle;
88 char name[LTTNG_UST_SYM_NAME_LEN];
89 struct lttng_ust_channel attr;
90 struct lttng_ust_object_data *obj;
91 struct ltt_ust_stream_list streams;
92 struct lttng_ht *ctx;
93 struct lttng_ht *events;
94 struct lttng_ht_node_str node;
95 };
96
97 struct ust_app_session {
98 int enabled;
99 /* started: has the session been in started state at any time ? */
100 int started; /* allows detection of start vs restart. */
101 int handle; /* used has unique identifier for app session */
102 int id; /* session unique identifier */
103 struct ltt_ust_metadata *metadata;
104 struct lttng_ht *channels; /* Registered channels */
105 struct lttng_ht_node_ulong node;
106 char path[PATH_MAX];
107 /* UID/GID of the user owning the session */
108 uid_t uid;
109 gid_t gid;
110 struct cds_list_head teardown_node;
111 };
112
113 /*
114 * Registered traceable applications. Libust registers to the session daemon
115 * and a linked list is kept of all running traceable app.
116 */
117 struct ust_app {
118 int sock;
119 pid_t pid;
120 pid_t ppid;
121 uid_t uid; /* User ID that owns the apps */
122 gid_t gid; /* Group ID that owns the apps */
123 int bits_per_long;
124 int compatible; /* If the lttng-ust tracer version does not match the
125 supported version of the session daemon, this flag is
126 set to 0 (NOT compatible) else 1. */
127 struct lttng_ust_tracer_version version;
128 uint32_t v_major; /* Verion major number */
129 uint32_t v_minor; /* Verion minor number */
130 char name[17]; /* Process name (short) */
131 struct lttng_ht *sessions;
132 struct lttng_ht_node_ulong pid_n;
133 struct lttng_ht_node_ulong sock_n;
134 /*
135 * This is a list of ust app session that, once the app is going into
136 * teardown mode, in the RCU call, each node in this list is removed and
137 * deleted.
138 *
139 * Element of the list are added when an application unregisters after each
140 * ht_del of ust_app_session associated to this app. This list is NOT used
141 * when a session is destroyed.
142 */
143 struct cds_list_head teardown_head;
144 };
145
146 #ifdef HAVE_LIBLTTNG_UST_CTL
147
148 int ust_app_register(struct ust_register_msg *msg, int sock);
149 static inline
150 int ust_app_register_done(int sock)
151 {
152 return ustctl_register_done(sock);
153 }
154 void ust_app_unregister(int sock);
155 unsigned long ust_app_list_count(void);
156 int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app);
157 int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app);
158 int ust_app_start_trace_all(struct ltt_ust_session *usess);
159 int ust_app_stop_trace_all(struct ltt_ust_session *usess);
160 int ust_app_destroy_trace(struct ltt_ust_session *usess, struct ust_app *app);
161 int ust_app_destroy_trace_all(struct ltt_ust_session *usess);
162 int ust_app_list_events(struct lttng_event **events);
163 int ust_app_list_event_fields(struct lttng_event_field **fields);
164 int ust_app_create_channel_glb(struct ltt_ust_session *usess,
165 struct ltt_ust_channel *uchan);
166 int ust_app_create_event_glb(struct ltt_ust_session *usess,
167 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent);
168 int ust_app_disable_event_pid(struct ltt_ust_session *usess,
169 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent,
170 pid_t pid);
171 int ust_app_enable_event_pid(struct ltt_ust_session *usess,
172 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent,
173 pid_t pid);
174 int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
175 struct ltt_ust_channel *uchan);
176 int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
177 struct ltt_ust_channel *uchan);
178 int ust_app_enable_event_glb(struct ltt_ust_session *usess,
179 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent);
180 int ust_app_disable_all_event_glb(struct ltt_ust_session *usess,
181 struct ltt_ust_channel *uchan);
182 int ust_app_enable_all_event_glb(struct ltt_ust_session *usess,
183 struct ltt_ust_channel *uchan);
184 int ust_app_disable_event_glb(struct ltt_ust_session *usess,
185 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent);
186 int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
187 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx);
188 void ust_app_global_update(struct ltt_ust_session *usess, int sock);
189
190 void ust_app_clean_list(void);
191 void ust_app_ht_alloc(void);
192 struct lttng_ht *ust_app_get_ht(void);
193 struct ust_app *ust_app_find_by_pid(pid_t pid);
194 int ust_app_validate_version(int sock);
195 int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate);
196
197 #else /* HAVE_LIBLTTNG_UST_CTL */
198
199 static inline
200 int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
201 {
202 return 0;
203 }
204 static inline
205 int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
206 {
207 return 0;
208 }
209 static inline
210 int ust_app_start_trace_all(struct ltt_ust_session *usess)
211 {
212 return 0;
213 }
214 static inline
215 int ust_app_stop_trace_all(struct ltt_ust_session *usess)
216 {
217 return 0;
218 }
219 static inline
220 int ust_app_list_events(struct lttng_event **events)
221 {
222 return -ENOSYS;
223 }
224 static inline
225 int ust_app_list_event_fields(struct lttng_event_field **fields)
226 {
227 return -ENOSYS;
228 }
229 static inline
230 int ust_app_register(struct ust_register_msg *msg, int sock)
231 {
232 return -ENOSYS;
233 }
234 static inline
235 int ust_app_register_done(int sock)
236 {
237 return -ENOSYS;
238 }
239 static inline
240 void ust_app_unregister(int sock)
241 {
242 }
243 static inline
244 unsigned int ust_app_list_count(void)
245 {
246 return 0;
247 }
248 static inline
249 void ust_app_lock_list(void)
250 {
251 }
252 static inline
253 void ust_app_unlock_list(void)
254 {
255 }
256 static inline
257 void ust_app_clean_list(void)
258 {
259 }
260 static inline
261 struct ust_app_list *ust_app_get_list(void)
262 {
263 return NULL;
264 }
265 static inline
266 struct ust_app *ust_app_get_by_pid(pid_t pid)
267 {
268 return NULL;
269 }
270 static inline
271 struct lttng_ht *ust_app_get_ht(void)
272 {
273 return NULL;
274 }
275 static inline
276 void ust_app_ht_alloc(void)
277 {}
278 static inline
279 void ust_app_global_update(struct ltt_ust_session *usess, int sock)
280 {}
281 static inline
282 int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
283 struct ltt_ust_channel *uchan)
284 {
285 return 0;
286 }
287 static inline
288 int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
289 struct ltt_ust_channel *uchan)
290 {
291 return 0;
292 }
293 static inline
294 int ust_app_create_channel_glb(struct ltt_ust_session *usess,
295 struct ltt_ust_channel *uchan)
296 {
297 return 0;
298 }
299 static inline
300 int ust_app_disable_all_event_glb(struct ltt_ust_session *usess,
301 struct ltt_ust_channel *uchan)
302 {
303 return 0;
304 }
305 static inline
306 int ust_app_enable_all_event_glb(struct ltt_ust_session *usess,
307 struct ltt_ust_channel *uchan)
308 {
309 return 0;
310 }
311 static inline
312 int ust_app_create_event_glb(struct ltt_ust_session *usess,
313 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
314 {
315 return 0;
316 }
317 static inline
318 int ust_app_disable_event_glb(struct ltt_ust_session *usess,
319 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
320 {
321 return 0;
322 }
323 static inline
324 int ust_app_enable_event_glb(struct ltt_ust_session *usess,
325 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
326 {
327 return 0;
328 }
329 static inline
330 int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
331 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
332 {
333 return 0;
334 }
335 static inline
336 int ust_app_enable_event_pid(struct ltt_ust_session *usess,
337 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent,
338 pid_t pid)
339 {
340 return 0;
341 }
342 static inline
343 int ust_app_disable_event_pid(struct ltt_ust_session *usess,
344 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent,
345 pid_t pid)
346 {
347 return 0;
348 }
349 static inline
350 int ust_app_validate_version(int sock)
351 {
352 return 0;
353 }
354 static inline
355 int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate)
356 {
357 return 0;
358 }
359
360 #endif /* HAVE_LIBLTTNG_UST_CTL */
361
362 #endif /* _LTT_UST_APP_H */
This page took 0.039146 seconds and 6 git commands to generate.