Report memory allocation failure when copying filter bytecode
[lttng-tools.git] / src / bin / lttng-sessiond / trace-ust.h
CommitLineData
97ee3a89
DG
1/*
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.
97ee3a89
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.
97ee3a89
DG
16 */
17
18#ifndef _LTT_TRACE_UST_H
19#define _LTT_TRACE_UST_H
20
3bd1e081 21#include <config.h>
97ee3a89
DG
22#include <limits.h>
23#include <urcu/list.h>
bec39940 24
97ee3a89 25#include <lttng/lttng.h>
10a8a223 26#include <common/hashtable/hashtable.h>
ce2a9e76 27#include <common/defaults.h>
3bd1e081 28
00e2e675 29#include "consumer.h"
48842b30 30#include "ust-ctl.h"
97ee3a89 31
7c1d2758
JG
32struct agent;
33
18eace3b
DG
34struct ltt_ust_ht_key {
35 const char *name;
36 const struct lttng_filter_bytecode *filter;
37 enum lttng_ust_loglevel_type loglevel;
7724731b 38 const struct lttng_event_exclusion *exclusion;
18eace3b
DG
39};
40
f6a9efaa
DG
41/* Context hash table nodes */
42struct ltt_ust_context {
43 struct lttng_ust_context ctx;
bec39940 44 struct lttng_ht_node_ulong node;
31746f93 45 struct cds_list_head list;
97ee3a89
DG
46};
47
48/* UST event */
49struct ltt_ust_event {
37357452 50 unsigned int enabled;
f6a9efaa 51 struct lttng_ust_event attr;
bec39940 52 struct lttng_ht_node_str node;
6b453b5e 53 char *filter_expression;
53a80697 54 struct lttng_ust_filter_bytecode *filter;
40024f8a 55 struct lttng_event_exclusion *exclusion;
88f06f15 56 bool internal;
2bdd86d4
MD
57};
58
97ee3a89
DG
59/* UST channel */
60struct ltt_ust_channel {
7972aab2 61 uint64_t id; /* unique id per session. */
37357452 62 unsigned int enabled;
44d3bd01 63 char name[LTTNG_UST_SYM_NAME_LEN];
ffe60014 64 struct lttng_ust_channel_attr attr;
bec39940 65 struct lttng_ht *ctx;
31746f93 66 struct cds_list_head ctx_list;
bec39940
DG
67 struct lttng_ht *events;
68 struct lttng_ht_node_str node;
1624d5b7
JD
69 uint64_t tracefile_size;
70 uint64_t tracefile_count;
97ee3a89
DG
71};
72
f6a9efaa
DG
73/* UST domain global (LTTNG_DOMAIN_UST) */
74struct ltt_ust_domain_global {
bec39940 75 struct lttng_ht *channels;
7972aab2 76 struct cds_list_head registry_buffer_uid_list;
f6a9efaa
DG
77};
78
a9ad0c8f
MD
79struct ust_pid_tracker_node {
80 struct lttng_ht_node_ulong node;
81};
82
83struct ust_pid_tracker {
84 struct lttng_ht *ht;
85};
86
97ee3a89
DG
87/* UST session */
88struct ltt_ust_session {
d9bf3ca4 89 uint64_t id; /* Unique identifier of session */
f6a9efaa 90 struct ltt_ust_domain_global domain_global;
fefd409b
DG
91 /* Hash table of agent indexed by agent domain. */
92 struct lttng_ht *agents;
6df2e2c9
MD
93 /* UID/GID of the user owning the session */
94 uid_t uid;
95 gid_t gid;
14fb1ebe
DG
96 /* Is the session active meaning has is been started or stopped. */
97 unsigned int active:1;
00e2e675
DG
98 /*
99 * Two consumer_output object are needed where one is for the current
100 * output object and the second one is the temporary object used to store
101 * URI being set by the lttng_set_consumer_uri call. Once
102 * lttng_enable_consumer is called, the two pointers are swapped.
103 */
104 struct consumer_output *consumer;
105 struct consumer_output *tmp_consumer;
f3f0db50
DG
106 /* Sequence number for filters so the tracer knows the ordering. */
107 uint64_t filter_seq_num;
7972aab2
DG
108 /* This indicates which type of buffer this session is set for. */
109 enum lttng_buffer_type buffer_type;
110 /* If set to 1, the buffer_type can not be changed anymore. */
111 int buffer_type_changed;
112 /* For per UID buffer, every buffer reg object is kept of this session */
113 struct cds_list_head buffer_reg_uid_list;
114 /* Next channel ID available for a newly registered channel. */
115 uint64_t next_channel_id;
116 /* Once this value reaches UINT32_MAX, no more id can be allocated. */
117 uint64_t used_channel_id;
2bba9e53
DG
118 /* Tell or not if the session has to output the traces. */
119 unsigned int output_traces;
27babd3a 120 unsigned int snapshot_mode;
85076754 121 unsigned int has_non_default_channel;
ecc48a90 122 unsigned int live_timer_interval; /* usec */
84ad93e8
DG
123
124 /* Metadata channel attributes. */
125 struct lttng_ust_channel_attr metadata_attr;
d7ba1388
MD
126
127 /*
128 * Path where to keep the shared memory files.
129 */
3d071855 130 char root_shm_path[PATH_MAX];
d7ba1388 131 char shm_path[PATH_MAX];
a9ad0c8f
MD
132
133 struct ust_pid_tracker pid_tracker;
97ee3a89
DG
134};
135
7972aab2
DG
136/*
137 * Validate that the id has reached the maximum allowed or not.
138 *
139 * Return 0 if NOT else 1.
140 */
141static inline int trace_ust_is_max_id(uint64_t id)
142{
143 return (id == UINT64_MAX) ? 1 : 0;
144}
145
146/*
147 * Return next available channel id and increment the used counter. The
148 * trace_ust_is_max_id function MUST be called before in order to validate if
149 * the maximum number of IDs have been reached. If not, it is safe to call this
150 * function.
151 *
152 * Return a unique channel ID. If max is reached, the used_channel_id counter
153 * is returned.
154 */
155static inline uint64_t trace_ust_get_next_chan_id(struct ltt_ust_session *s)
156{
157 if (trace_ust_is_max_id(s->used_channel_id)) {
158 return s->used_channel_id;
159 }
160
161 s->used_channel_id++;
162 return s->next_channel_id++;
163}
164
74d0b642 165#ifdef HAVE_LIBLTTNG_UST_CTL
3bd1e081 166
18eace3b
DG
167int trace_ust_ht_match_event(struct cds_lfht_node *node, const void *_key);
168int trace_ust_ht_match_event_by_name(struct cds_lfht_node *node,
169 const void *_key);
170
97ee3a89
DG
171/*
172 * Lookup functions. NULL is returned if not found.
173 */
18eace3b 174struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht,
10646003
JI
175 char *name, struct lttng_filter_bytecode *filter, int loglevel,
176 struct lttng_event_exclusion *exclusion);
bec39940 177struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht,
f6a9efaa 178 char *name);
fefd409b
DG
179struct agent *trace_ust_find_agent(struct ltt_ust_session *session,
180 enum lttng_domain_type domain_type);
97ee3a89
DG
181
182/*
183 * Create functions malloc() the data structure.
184 */
d9bf3ca4 185struct ltt_ust_session *trace_ust_create_session(uint64_t session_id);
dec56f6c 186struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr);
025faf73 187struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev,
6b453b5e 188 char *filter_expression,
561c6897 189 struct lttng_filter_bytecode *filter,
88f06f15
JG
190 struct lttng_event_exclusion *exclusion,
191 bool internal_event);
55cc08a6
DG
192struct ltt_ust_context *trace_ust_create_context(
193 struct lttng_event_context *ctx);
aa3514e9
MD
194int trace_ust_match_context(struct ltt_ust_context *uctx,
195 struct lttng_event_context *ctx);
d5979e4a
DG
196void trace_ust_delete_channel(struct lttng_ht *ht,
197 struct ltt_ust_channel *channel);
97ee3a89
DG
198
199/*
200 * Destroy functions free() the data structure and remove from linked list if
201 * it's applies.
202 */
203void trace_ust_destroy_session(struct ltt_ust_session *session);
97ee3a89
DG
204void trace_ust_destroy_channel(struct ltt_ust_channel *channel);
205void trace_ust_destroy_event(struct ltt_ust_event *event);
206
a9ad0c8f
MD
207int trace_ust_track_pid(struct ltt_ust_session *session, int pid);
208int trace_ust_untrack_pid(struct ltt_ust_session *session, int pid);
209
b4650bd0
MD
210int trace_ust_pid_tracker_lookup(struct ltt_ust_session *session, int pid);
211
a5dfbb9d
MD
212ssize_t trace_ust_list_tracker_pids(struct ltt_ust_session *session,
213 int32_t **_pids);
214
74d0b642 215#else /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081 216
37a86c61
DG
217static inline int trace_ust_ht_match_event(struct cds_lfht_node *node,
218 const void *_key)
219{
220 return 0;
221}
222static inline int trace_ust_ht_match_event_by_name(struct cds_lfht_node *node,
223 const void *_key)
224{
225 return 0;
226}
3bd1e081 227static inline
bec39940 228struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht,
f6a9efaa 229 char *name)
3bd1e081
MD
230{
231 return NULL;
232}
f6a9efaa 233
3bd1e081 234static inline
dec56f6c 235struct ltt_ust_session *trace_ust_create_session(unsigned int session_id)
3bd1e081
MD
236{
237 return NULL;
238}
239static inline
dec56f6c 240struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr)
3bd1e081
MD
241{
242 return NULL;
243}
244static inline
025faf73 245struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev,
6b453b5e 246 const char *filter_expression,
561c6897 247 struct lttng_filter_bytecode *filter,
88f06f15
JG
248 struct lttng_event_exclusion *exclusion,
249 bool internal_event)
3bd1e081
MD
250{
251 return NULL;
252}
3bd1e081
MD
253static inline
254void trace_ust_destroy_session(struct ltt_ust_session *session)
255{
256}
48842b30 257
3bd1e081
MD
258static inline
259void trace_ust_destroy_channel(struct ltt_ust_channel *channel)
260{
261}
48842b30 262
3bd1e081
MD
263static inline
264void trace_ust_destroy_event(struct ltt_ust_event *event)
265{
266}
34378f76
DG
267static inline
268struct ltt_ust_context *trace_ust_create_context(
269 struct lttng_event_context *ctx)
270{
271 return NULL;
272}
aa3514e9
MD
273static inline
274int trace_ust_match_context(struct ltt_ust_context *uctx,
275 struct lttng_event_context *ctx)
276{
277 return 0;
278}
37a86c61 279static inline struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht,
10646003
JI
280 char *name, struct lttng_filter_bytecode *filter, int loglevel,
281 struct lttng_event_exclusion *exclusion)
37a86c61
DG
282{
283 return NULL;
284}
d5979e4a
DG
285static inline
286void trace_ust_delete_channel(struct lttng_ht *ht,
287 struct ltt_ust_channel *channel)
288{
289 return;
290}
fefd409b
DG
291static inline
292struct agent *trace_ust_find_agent(struct ltt_ust_session *session,
293 enum lttng_domain_type domain_type)
294{
295 return NULL;
296}
a9ad0c8f
MD
297static inline
298int trace_ust_track_pid(struct ltt_ust_session *session, int pid)
299{
300 return 0;
301}
302static inline
303int trace_ust_untrack_pid(struct ltt_ust_session *session, int pid)
304{
305 return 0;
306}
b4650bd0
MD
307static inline
308int trace_ust_pid_tracker_lookup(struct ltt_ust_session *session, int pid)
309{
310 return 0;
311}
3646a051 312static inline
a5dfbb9d
MD
313ssize_t trace_ust_list_tracker_pids(struct ltt_ust_session *session,
314 int32_t **_pids)
315{
316 return -1;
317}
74d0b642 318#endif /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081 319
97ee3a89 320#endif /* _LTT_TRACE_UST_H */
This page took 0.067043 seconds and 5 git commands to generate.