2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 #ifndef _LTT_UST_APP_H
20 #define _LTT_UST_APP_H
24 #include "trace-ust.h"
26 #define UST_APP_EVENT_LIST_SIZE 32
28 extern int ust_consumerd64_fd
, ust_consumerd32_fd
;
31 * Application registration data structure.
33 struct ust_register_msg
{
40 uint32_t bits_per_long
;
45 * Global applications HT used by the session daemon.
47 struct lttng_ht
*ust_app_ht
;
49 struct lttng_ht
*ust_app_sock_key_map
;
54 struct lttng_ht_node_ulong node
;
59 struct lttng_ust_context ctx
;
60 struct lttng_ust_object_data
*obj
;
61 struct lttng_ht_node_ulong node
;
64 struct ust_app_event
{
67 struct lttng_ust_object_data
*obj
;
68 struct lttng_ust_event attr
;
69 char name
[LTTNG_UST_SYM_NAME_LEN
];
71 struct lttng_ht_node_str node
;
74 struct ust_app_channel
{
77 char name
[LTTNG_UST_SYM_NAME_LEN
];
78 struct lttng_ust_channel attr
;
79 struct lttng_ust_object_data
*obj
;
80 struct ltt_ust_stream_list streams
;
82 struct lttng_ht
*events
;
83 struct lttng_ht_node_str node
;
86 struct ust_app_session
{
88 /* started: has the session been in started state at any time ? */
89 int started
; /* allows detection of start vs restart. */
90 int handle
; /* used has unique identifier for app session */
91 int id
; /* session unique identifier */
92 struct ltt_ust_metadata
*metadata
;
93 struct lttng_ht
*channels
; /* Registered channels */
94 struct lttng_ht_node_ulong node
;
96 /* UID/GID of the user owning the session */
102 * Registered traceable applications. Libust registers to the session daemon
103 * and a linked list is kept of all running traceable app.
107 uid_t uid
; /* User ID that owns the apps */
108 gid_t gid
; /* Group ID that owns the apps */
110 uint32_t v_major
; /* Verion major number */
111 uint32_t v_minor
; /* Verion minor number */
112 char name
[17]; /* Process name (short) */
113 struct lttng_ht
*sessions
;
114 struct lttng_ht_node_ulong node
;
115 struct ust_app_key key
;
118 #ifdef HAVE_LIBLTTNG_UST_CTL
120 int ust_app_register(struct ust_register_msg
*msg
, int sock
);
122 int ust_app_register_done(int sock
)
124 return ustctl_register_done(sock
);
126 void ust_app_unregister(int sock
);
127 unsigned long ust_app_list_count(void);
128 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
);
129 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
);
130 int ust_app_start_trace_all(struct ltt_ust_session
*usess
);
131 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
);
132 int ust_app_destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
);
133 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
);
134 int ust_app_list_events(struct lttng_event
**events
);
135 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
136 struct ltt_ust_channel
*uchan
);
137 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
138 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
);
139 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
140 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
142 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
143 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
145 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
146 struct ltt_ust_channel
*uchan
);
147 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
148 struct ltt_ust_channel
*uchan
);
149 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
150 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
);
151 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
152 struct ltt_ust_channel
*uchan
);
153 int ust_app_enable_all_event_glb(struct ltt_ust_session
*usess
,
154 struct ltt_ust_channel
*uchan
);
155 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
156 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
);
157 int ust_app_add_ctx_event_glb(struct ltt_ust_session
*usess
,
158 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
159 struct ltt_ust_context
*uctx
);
160 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
161 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
);
162 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
);
164 void ust_app_clean_list(void);
165 void ust_app_ht_alloc(void);
166 struct lttng_ht
*ust_app_get_ht(void);
167 struct ust_app
*ust_app_find_by_pid(pid_t pid
);
169 #else /* HAVE_LIBLTTNG_UST_CTL */
172 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
177 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
182 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
187 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
192 int ust_app_list_events(struct lttng_event
**events
)
197 int ust_app_register(struct ust_register_msg
*msg
, int sock
)
202 int ust_app_register_done(int sock
)
207 void ust_app_unregister(int sock
)
211 unsigned int ust_app_list_count(void)
216 void ust_app_lock_list(void)
220 void ust_app_unlock_list(void)
224 void ust_app_clean_list(void)
228 struct ust_app_list
*ust_app_get_list(void)
233 struct ust_app
*ust_app_get_by_pid(pid_t pid
)
238 struct lttng_ht
*ust_app_get_ht(void)
243 void ust_app_ht_alloc(void)
246 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
249 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
250 struct ltt_ust_channel
*uchan
)
255 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
256 struct ltt_ust_channel
*uchan
)
261 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
262 struct ltt_ust_channel
*uchan
)
267 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
268 struct ltt_ust_channel
*uchan
)
273 int ust_app_enable_all_event_glb(struct ltt_ust_session
*usess
,
274 struct ltt_ust_channel
*uchan
)
279 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
280 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
285 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
286 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
291 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
292 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
297 int ust_app_add_ctx_event_glb(struct ltt_ust_session
*usess
,
298 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
299 struct ltt_ust_context
*uctx
)
304 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
305 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
310 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
311 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
317 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
318 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
324 #endif /* HAVE_LIBLTTNG_UST_CTL */
326 #endif /* _LTT_UST_APP_H */