Lock consumer data before fd check during destroy
[lttng-tools.git] / src / bin / lttng-sessiond / consumer.h
CommitLineData
f1e16794
DG
1/*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#ifndef _CONSUMER_H
19#define _CONSUMER_H
20
f1e16794 21#include <common/consumer.h>
173af62f 22#include <common/hashtable/hashtable.h>
00e2e675
DG
23#include <lttng/lttng.h>
24
6dc3064a
DG
25#include "snapshot.h"
26
27struct snapshot;
28struct snapshot_output;
29
00e2e675
DG
30enum consumer_dst_type {
31 CONSUMER_DST_LOCAL,
32 CONSUMER_DST_NET,
33};
f1e16794 34
173af62f 35struct consumer_socket {
4ce514c4
DG
36 /*
37 * File descriptor. This is just a reference to the consumer data meaning
38 * that every access must be locked and check for a possible invalid value.
39 */
40 int *fd;
41
173af62f
DG
42 /*
43 * To use this socket (send/recv), this lock MUST be acquired.
44 */
45 pthread_mutex_t *lock;
2f77fc4b
DG
46
47 /*
48 * Indicates if the socket was registered by a third part
49 * (REGISTER_CONSUMER) or is the spawn consumer of the session daemon.
50 * During the destroy phase of a consumer output, we close the socket if
51 * this flag is set to 1 since we don't need the fd anymore.
52 */
53 unsigned int registered;
54
ffe60014
DG
55 /* Flag if network sockets were sent to the consumer. */
56 unsigned int control_sock_sent;
57 unsigned int data_sock_sent;
58
173af62f 59 struct lttng_ht_node_ulong node;
6dc3064a
DG
60
61 enum lttng_consumer_type type;
173af62f
DG
62};
63
f1e16794
DG
64struct consumer_data {
65 enum lttng_consumer_type type;
66
67 pthread_t thread; /* Worker thread interacting with the consumer */
a23ec3a7
DG
68
69 /* Conditions used by the consumer thread to indicate readiness. */
70 pthread_cond_t cond;
71 pthread_condattr_t condattr;
72 pthread_mutex_t cond_mutex;
73
74 /*
75 * This is a flag condition indicating that the consumer thread is ready
76 * and connected to the lttng-consumerd daemon. This flag MUST only be
77 * updated by locking the condition mutex above or before spawning a
78 * consumer thread.
79 *
80 * A value of 0 means that the thread is NOT ready. A value of 1 means that
81 * the thread consumer did connect successfully to the lttng-consumerd
82 * daemon. A negative value indicates that there is been an error and the
83 * thread has likely quit.
84 */
85 int consumer_thread_is_ready;
f1e16794
DG
86
87 /* Mutex to control consumerd pid assignation */
88 pthread_mutex_t pid_mutex;
89 pid_t pid;
90
91 int err_sock;
331744e3 92 /* These two sockets uses the cmd_unix_sock_path. */
f1e16794 93 int cmd_sock;
4ce514c4
DG
94 /*
95 * The metadata socket object is handled differently and only created
96 * locally in this object thus it's the only reference available in the
97 * session daemon. For that reason, a static variable for the fd is
98 * required and the metadata socket fd points to it.
99 */
100 int metadata_fd;
331744e3 101 struct consumer_socket metadata_sock;
f1e16794
DG
102
103 /* consumer error and command Unix socket path */
104 char err_unix_sock_path[PATH_MAX];
105 char cmd_unix_sock_path[PATH_MAX];
44a5e5eb 106
173af62f
DG
107 /* communication lock */
108 pthread_mutex_t lock;
f1e16794
DG
109};
110
00e2e675
DG
111/*
112 * Network URIs
113 */
114struct consumer_net {
115 /*
116 * Indicate if URI type is set. Those flags should only be set when the
117 * created URI is done AND valid.
118 */
119 int control_isset;
120 int data_isset;
121
122 /*
123 * The following two URIs MUST have the same destination address for
124 * network streaming to work. Network hop are not yet supported.
125 */
126
127 /* Control path for network streaming. */
128 struct lttng_uri control;
129
130 /* Data path for network streaming. */
131 struct lttng_uri data;
132};
133
134/*
135 * Consumer output object describing where and how to send data.
136 */
137struct consumer_output {
00e2e675
DG
138 /* If the consumer is enabled meaning that should be used */
139 unsigned int enabled;
140 enum consumer_dst_type type;
173af62f 141
00e2e675
DG
142 /*
143 * The net_seq_index is the index of the network stream on the consumer
3f8e211f
DG
144 * side. It tells the consumer which streams goes to which relayd with this
145 * index. The relayd sockets are index with it on the consumer side.
00e2e675 146 */
d88aee68 147 uint64_t net_seq_index;
173af62f 148
00e2e675
DG
149 /*
150 * Subdirectory path name used for both local and network consumer.
151 */
152 char subdir[PATH_MAX];
173af62f
DG
153
154 /*
155 * Hashtable of consumer_socket index by the file descriptor value. For
156 * multiarch consumer support, we can have more than one consumer (ex: 32
157 * and 64 bit).
158 */
159 struct lttng_ht *socks;
160
00e2e675
DG
161 union {
162 char trace_path[PATH_MAX];
163 struct consumer_net net;
164 } dst;
165};
166
173af62f
DG
167struct consumer_socket *consumer_find_socket(int key,
168 struct consumer_output *consumer);
7972aab2
DG
169struct consumer_socket *consumer_find_socket_by_bitness(int bits,
170 struct consumer_output *consumer);
4ce514c4 171struct consumer_socket *consumer_allocate_socket(int *fd);
173af62f
DG
172void consumer_add_socket(struct consumer_socket *sock,
173 struct consumer_output *consumer);
174void consumer_del_socket(struct consumer_socket *sock,
175 struct consumer_output *consumer);
176void consumer_destroy_socket(struct consumer_socket *sock);
6dc3064a
DG
177int consumer_copy_sockets(struct consumer_output *dst,
178 struct consumer_output *src);
af706bb7 179void consumer_destroy_output_sockets(struct consumer_output *obj);
52898cb1
DG
180int consumer_socket_send(struct consumer_socket *socket, void *msg,
181 size_t len);
182int consumer_socket_recv(struct consumer_socket *socket, void *msg,
183 size_t len);
173af62f 184
00e2e675
DG
185struct consumer_output *consumer_create_output(enum consumer_dst_type type);
186struct consumer_output *consumer_copy_output(struct consumer_output *obj);
187void consumer_destroy_output(struct consumer_output *obj);
188int consumer_set_network_uri(struct consumer_output *obj,
189 struct lttng_uri *uri);
f50f23d9 190int consumer_send_fds(struct consumer_socket *sock, int *fds, size_t nb_fd);
ffe60014
DG
191int consumer_send_msg(struct consumer_socket *sock,
192 struct lttcomm_consumer_msg *msg);
f50f23d9
DG
193int consumer_send_stream(struct consumer_socket *sock,
194 struct consumer_output *dst, struct lttcomm_consumer_msg *msg,
195 int *fds, size_t nb_fd);
196int consumer_send_channel(struct consumer_socket *sock,
197 struct lttcomm_consumer_msg *msg);
198int consumer_send_relayd_socket(struct consumer_socket *consumer_sock,
6151a90f 199 struct lttcomm_relayd_sock *rsock, struct consumer_output *consumer,
d88aee68 200 enum lttng_stream_type type, uint64_t session_id);
173af62f
DG
201int consumer_send_destroy_relayd(struct consumer_socket *sock,
202 struct consumer_output *consumer);
f50f23d9 203int consumer_recv_status_reply(struct consumer_socket *sock);
ffe60014 204int consumer_recv_status_channel(struct consumer_socket *sock,
d88aee68 205 uint64_t *key, unsigned int *stream_count);
2f77fc4b 206void consumer_output_send_destroy_relayd(struct consumer_output *consumer);
a4b92340
DG
207int consumer_create_socket(struct consumer_data *data,
208 struct consumer_output *output);
2f77fc4b
DG
209int consumer_set_subdir(struct consumer_output *consumer,
210 const char *session_name);
37278a1e 211
ffe60014
DG
212void consumer_init_ask_channel_comm_msg(struct lttcomm_consumer_msg *msg,
213 uint64_t subbuf_size,
214 uint64_t num_subbuf,
215 int overwrite,
216 unsigned int switch_timer_interval,
217 unsigned int read_timer_interval,
218 int output,
219 int type,
220 uint64_t session_id,
221 const char *pathname,
222 const char *name,
223 uid_t uid,
224 gid_t gid,
d88aee68
DG
225 uint64_t relayd_id,
226 uint64_t key,
7972aab2 227 unsigned char *uuid,
1624d5b7
JD
228 uint32_t chan_id,
229 uint64_t tracefile_size,
2bba9e53 230 uint64_t tracefile_count,
1950109e 231 uint64_t session_id_per_pid,
567eb353
DG
232 unsigned int monitor,
233 uint32_t ust_app_uid);
00e2e675
DG
234void consumer_init_stream_comm_msg(struct lttcomm_consumer_msg *msg,
235 enum lttng_consumer_command cmd,
d88aee68
DG
236 uint64_t channel_key,
237 uint64_t stream_key,
ffe60014 238 int cpu);
00e2e675
DG
239void consumer_init_channel_comm_msg(struct lttcomm_consumer_msg *msg,
240 enum lttng_consumer_command cmd,
d88aee68 241 uint64_t channel_key,
ffe60014
DG
242 uint64_t session_id,
243 const char *pathname,
244 uid_t uid,
245 gid_t gid,
d88aee68 246 uint64_t relayd_id,
c30aaa51 247 const char *name,
ffe60014
DG
248 unsigned int nb_init_streams,
249 enum lttng_event_output output,
1624d5b7
JD
250 int type,
251 uint64_t tracefile_size,
2bba9e53
DG
252 uint64_t tracefile_count,
253 unsigned int monitor);
d88aee68 254int consumer_is_data_pending(uint64_t session_id,
806e2684 255 struct consumer_output *consumer);
7972aab2
DG
256int consumer_close_metadata(struct consumer_socket *socket,
257 uint64_t metadata_key);
258int consumer_setup_metadata(struct consumer_socket *socket,
259 uint64_t metadata_key);
260int consumer_push_metadata(struct consumer_socket *socket,
261 uint64_t metadata_key, char *metadata_str, size_t len,
262 size_t target_offset);
263int consumer_flush_channel(struct consumer_socket *socket, uint64_t key);
00e2e675 264
6dc3064a
DG
265/* Snapshot command. */
266int consumer_snapshot_channel(struct consumer_socket *socket, uint64_t key,
267 struct snapshot_output *output, int metadata, uid_t uid, gid_t gid,
5c786ded 268 const char *session_path, int wait, int max_size_per_stream);
6dc3064a 269
f1e16794 270#endif /* _CONSUMER_H */
This page took 0.044989 seconds and 5 git commands to generate.