lttng-sessiond: keep track of UST consumer fd for all UST sessions.
[lttng-tools.git] / lttng-sessiond / ust-app.h
CommitLineData
91d76f53
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
82a3637f
DG
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
91d76f53
DG
8 *
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.
13 *
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.
17 */
18
f6a9efaa
DG
19#ifndef _LTT_UST_APP_H
20#define _LTT_UST_APP_H
91d76f53 21
099e26bd 22#include <stdint.h>
1e307fab
DG
23#include <urcu/list.h>
24
44d3bd01
DG
25#include "trace-ust.h"
26
b551a063
DG
27#define UST_APP_EVENT_LIST_SIZE 32
28
ba5d816e
MD
29extern int ust_consumer_fd;
30
099e26bd
DG
31/*
32 * Application registration data structure.
33 */
34struct ust_register_msg {
35 uint32_t major;
36 uint32_t minor;
37 pid_t pid;
38 pid_t ppid;
39 uid_t uid;
40 gid_t gid;
41 char name[16];
42};
43
48842b30
DG
44/*
45 * Global applications HT used by the session daemon.
46 */
f6a9efaa
DG
47struct cds_lfht *ust_app_ht;
48
49struct cds_lfht *ust_app_sock_key_map;
50
51struct ust_app_key {
52 pid_t pid;
53 int sock;
54 struct cds_lfht_node node;
91d76f53
DG
55};
56
48842b30
DG
57struct ust_app_event {
58 int enabled;
59 int handle;
13161846 60 struct lttng_ust_object_data *obj;
284d8f55 61 struct lttng_ust_event attr;
48842b30
DG
62 char name[LTTNG_UST_SYM_NAME_LEN];
63 struct cds_lfht *ctx;
64 struct cds_lfht_node node;
65};
66
67struct ust_app_channel {
68 int enabled;
69 int handle;
70 char name[LTTNG_UST_SYM_NAME_LEN];
71 struct lttng_ust_channel attr;
13161846 72 struct lttng_ust_object_data *obj;
5af2f756 73 struct ltt_ust_stream_list streams;
48842b30
DG
74 struct cds_lfht *ctx;
75 struct cds_lfht *events;
76 struct cds_lfht_node node;
77};
78
79struct ust_app_session {
80 int enabled;
81 int handle; /* Used has unique identifier */
82 unsigned int uid;
83 struct ltt_ust_metadata *metadata;
13161846 84 struct lttng_ust_object_data *obj;
48842b30
DG
85 struct cds_lfht *channels; /* Registered channels */
86 struct cds_lfht_node node;
87};
88
f6a9efaa
DG
89/*
90 * Registered traceable applications. Libust registers to the session daemon
050349bb 91 * and a linked list is kept of all running traceable app.
91d76f53 92 */
56fff090 93struct ust_app {
099e26bd
DG
94 pid_t ppid;
95 uid_t uid; /* User ID that owns the apps */
96 gid_t gid; /* Group ID that owns the apps */
97 uint32_t v_major; /* Verion major number */
98 uint32_t v_minor; /* Verion minor number */
99 char name[17]; /* Process name (short) */
48842b30 100 struct cds_lfht *sessions;
f6a9efaa
DG
101 struct cds_lfht_node node;
102 struct ust_app_key key;
d80a6244 103 int sock_closed;
91d76f53
DG
104};
105
74d0b642 106#ifdef HAVE_LIBLTTNG_UST_CTL
3bd1e081 107
56fff090
DG
108int ust_app_register(struct ust_register_msg *msg, int sock);
109void ust_app_unregister(int sock);
5b4a0ec0 110int ust_app_create_channel_all(struct ltt_ust_session *usess,
48842b30 111 struct ltt_ust_channel *uchan);
5b4a0ec0 112int ust_app_create_event_all(struct ltt_ust_session *usess,
48842b30 113 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent);
f6a9efaa 114unsigned long ust_app_list_count(void);
421cb601
DG
115int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app);
116int ust_app_start_trace_all(struct ltt_ust_session *usess);
b551a063 117int ust_app_list_events(struct lttng_event **events);
487cf67c 118void ust_app_global_update(struct ltt_ust_session *usess, int sock);
91d76f53 119
56fff090 120void ust_app_clean_list(void);
f6a9efaa
DG
121void ust_app_ht_alloc(void);
122struct cds_lfht *ust_app_get_ht(void);
123struct ust_app *ust_app_find_by_pid(pid_t pid);
44d3bd01 124
74d0b642 125#else /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081 126
d974f197 127static inline
421cb601
DG
128int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
129{
130 return 0;
131}
132static inline
133int ust_app_start_trace_all(struct ltt_ust_session *usess)
d974f197 134{
5cf5d0e7 135 return 0;
d974f197 136}
3bd1e081 137static inline
b551a063
DG
138int ust_app_list_events(struct lttng_event **events)
139{
140 return 0;
141}
142static inline
3bd1e081
MD
143int ust_app_register(struct ust_register_msg *msg, int sock)
144{
145 return -ENOSYS;
146}
147static inline
148void ust_app_unregister(int sock)
149{
150}
151static inline
152unsigned int ust_app_list_count(void)
153{
154 return 0;
155}
3bd1e081
MD
156static inline
157void ust_app_lock_list(void)
158{
159}
160static inline
161void ust_app_unlock_list(void)
162{
163}
164static inline
165void ust_app_clean_list(void)
166{
167}
168static inline
169struct ust_app_list *ust_app_get_list(void)
170{
171 return NULL;
172}
173static inline
174struct ust_app *ust_app_get_by_pid(pid_t pid)
175{
176 return NULL;
177}
48842b30 178static inline
421cb601 179int ust_app_add_channel_all(struct ltt_ust_session *usess,
48842b30
DG
180 struct ltt_ust_channel *uchan)
181{
182 return 0;
183}
d974f197 184static inline
421cb601 185int ust_app_add_event_all(struct ltt_ust_session *usess,
d974f197
DG
186 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
187{
5cf5d0e7 188 return 0;
d974f197
DG
189}
190static inline
191struct cds_lfht *ust_app_get_ht(void)
192{
193 return NULL;
194}
195static inline
196void ust_app_ht_alloc(void)
197{
198}
487cf67c
DG
199static inline
200void ust_app_global_update(struct ltt_ust_session *usess, int sock)
201{
202}
48842b30 203
74d0b642 204#endif /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081 205
f6a9efaa 206#endif /* _LTT_UST_APP_H */
This page took 0.033436 seconds and 4 git commands to generate.