Create all trace directories and files with client user credentials
[lttng-tools.git] / include / lttng-sessiond-comm.h
1 #ifndef _LTTNG_SESSIOND_COMM_H
2 #define _LTTNG_SESSIOND_COMM_H
3
4 /*
5 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
6 * Julien Desfossez <julien.desfossez@polymtl.ca>
7 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; only version 2
12 * of the License.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24 /*
25 * This header is meant for liblttng and libust internal use ONLY.
26 * These declarations should NOT be considered stable API.
27 */
28
29 #define _GNU_SOURCE
30 #include <limits.h>
31 #include <lttng/lttng.h>
32 #include <sys/socket.h>
33
34 #define LTTNG_RUNDIR "/var/run/lttng"
35 #define LTTNG_HOME_RUNDIR "%s/.lttng"
36
37 /* Default unix socket path */
38 #define DEFAULT_GLOBAL_CLIENT_UNIX_SOCK LTTNG_RUNDIR "/client-lttng-sessiond"
39 #define DEFAULT_GLOBAL_APPS_UNIX_SOCK LTTNG_RUNDIR "/apps-lttng-sessiond"
40 #define DEFAULT_HOME_APPS_UNIX_SOCK LTTNG_HOME_RUNDIR "/apps-lttng-sessiond"
41 #define DEFAULT_HOME_CLIENT_UNIX_SOCK LTTNG_HOME_RUNDIR "/client-lttng-sessiond"
42
43 /* Queue size of listen(2) */
44 #define LTTNG_SESSIOND_COMM_MAX_LISTEN 64
45
46 /*
47 * Get the error code index from 0 since LTTCOMM_OK start at 1000
48 */
49 #define LTTCOMM_ERR_INDEX(code) (code - LTTCOMM_OK)
50
51 enum lttcomm_sessiond_command {
52 /* Tracer command */
53 LTTNG_ADD_CONTEXT,
54 LTTNG_CALIBRATE,
55 LTTNG_DISABLE_CHANNEL,
56 LTTNG_DISABLE_EVENT,
57 LTTNG_DISABLE_ALL_EVENT,
58 LTTNG_ENABLE_CHANNEL,
59 LTTNG_ENABLE_EVENT,
60 LTTNG_ENABLE_ALL_EVENT,
61 /* Session daemon command */
62 LTTNG_CREATE_SESSION,
63 LTTNG_DESTROY_SESSION,
64 LTTNG_LIST_CHANNELS,
65 LTTNG_LIST_DOMAINS,
66 LTTNG_LIST_EVENTS,
67 LTTNG_LIST_SESSIONS,
68 LTTNG_LIST_TRACEPOINTS,
69 LTTNG_REGISTER_CONSUMER,
70 LTTNG_START_TRACE,
71 LTTNG_STOP_TRACE,
72 };
73
74 /*
75 * lttcomm error code.
76 */
77 enum lttcomm_return_code {
78 LTTCOMM_OK = 1000, /* Ok */
79 LTTCOMM_ERR, /* Unknown Error */
80 LTTCOMM_UND, /* Undefine command */
81 LTTCOMM_NOT_IMPLEMENTED, /* Command not implemented */
82 LTTCOMM_UNKNOWN_DOMAIN, /* Tracing domain not known */
83 LTTCOMM_ALLOC_FAIL, /* Trace allocation fail */
84 LTTCOMM_NO_SESSION, /* No session found */
85 LTTCOMM_CREATE_FAIL, /* Create trace fail */
86 LTTCOMM_SESSION_FAIL, /* Create session fail */
87 LTTCOMM_START_FAIL, /* Start tracing fail */
88 LTTCOMM_STOP_FAIL, /* Stop tracing fail */
89 LTTCOMM_LIST_FAIL, /* Listing apps fail */
90 LTTCOMM_NO_APPS, /* No traceable application */
91 LTTCOMM_SESS_NOT_FOUND, /* Session name not found */
92 LTTCOMM_NO_TRACE, /* No trace exist */
93 LTTCOMM_FATAL, /* Session daemon had a fatal error */
94 LTTCOMM_NO_TRACEABLE, /* Error for non traceable app */
95 LTTCOMM_SELECT_SESS, /* Must select a session */
96 LTTCOMM_EXIST_SESS, /* Session name already exist */
97 LTTCOMM_NO_EVENT, /* No event found */
98 LTTCOMM_CONNECT_FAIL, /* Unable to connect to unix socket */
99 LTTCOMM_APP_NOT_FOUND, /* App not found in traceable app list */
100 LTTCOMM_KERN_NA, /* Kernel tracer unavalable */
101 LTTCOMM_KERN_EVENT_EXIST, /* Kernel event already exists */
102 LTTCOMM_KERN_SESS_FAIL, /* Kernel create session failed */
103 LTTCOMM_KERN_CHAN_FAIL, /* Kernel create channel failed */
104 LTTCOMM_KERN_CHAN_NOT_FOUND, /* Kernel channel not found */
105 LTTCOMM_KERN_CHAN_DISABLE_FAIL, /* Kernel disable channel failed */
106 LTTCOMM_KERN_CHAN_ENABLE_FAIL, /* Kernel enable channel failed */
107 LTTCOMM_KERN_CONTEXT_FAIL, /* Kernel add context failed */
108 LTTCOMM_KERN_ENABLE_FAIL, /* Kernel enable event failed */
109 LTTCOMM_KERN_DISABLE_FAIL, /* Kernel disable event failed */
110 LTTCOMM_KERN_META_FAIL, /* Kernel open metadata failed */
111 LTTCOMM_KERN_START_FAIL, /* Kernel start trace failed */
112 LTTCOMM_KERN_STOP_FAIL, /* Kernel stop trace failed */
113 LTTCOMM_KERN_CONSUMER_FAIL, /* Kernel consumer start failed */
114 LTTCOMM_KERN_STREAM_FAIL, /* Kernel create stream failed */
115 LTTCOMM_KERN_DIR_FAIL, /* Kernel trace directory creation failed */
116 LTTCOMM_KERN_DIR_EXIST, /* Kernel trace directory exist */
117 LTTCOMM_KERN_NO_SESSION, /* No kernel session found */
118 LTTCOMM_KERN_LIST_FAIL, /* Kernel listing events failed */
119 LTTCOMM_UST_SESS_FAIL, /* UST create session failed */
120 LTTCOMM_UST_CHAN_EXIST, /* UST channel already exist */
121 LTTCOMM_UST_CHAN_FAIL, /* UST create channel failed */
122 LTTCOMM_UST_CHAN_NOT_FOUND, /* UST channel not found */
123 LTTCOMM_UST_CHAN_DISABLE_FAIL, /* UST disable channel failed */
124 LTTCOMM_UST_CHAN_ENABLE_FAIL, /* UST enable channel failed */
125 LTTCOMM_UST_CONTEXT_FAIL, /* UST add context failed */
126 LTTCOMM_UST_ENABLE_FAIL, /* UST enable event failed */
127 LTTCOMM_UST_DISABLE_FAIL, /* UST disable event failed */
128 LTTCOMM_UST_META_FAIL, /* UST open metadata failed */
129 LTTCOMM_UST_START_FAIL, /* UST start trace failed */
130 LTTCOMM_UST_STOP_FAIL, /* UST stop trace failed */
131 LTTCOMM_UST_CONSUMER64_FAIL, /* 64-bit UST consumer start failed */
132 LTTCOMM_UST_CONSUMER32_FAIL, /* 32-bit UST consumer start failed */
133 LTTCOMM_UST_STREAM_FAIL, /* UST create stream failed */
134 LTTCOMM_UST_DIR_FAIL, /* UST trace directory creation failed */
135 LTTCOMM_UST_DIR_EXIST, /* UST trace directory exist */
136 LTTCOMM_UST_NO_SESSION, /* No UST session found */
137 LTTCOMM_UST_LIST_FAIL, /* UST listing events failed */
138 LTTCOMM_UST_EVENT_EXIST, /* UST event exist */
139 LTTCOMM_UST_EVENT_NOT_FOUND, /* UST event not found */
140 LTTCOMM_UST_CONTEXT_EXIST, /* UST context exist */
141
142 CONSUMERD_COMMAND_SOCK_READY, /* when consumerd command socket ready */
143 CONSUMERD_SUCCESS_RECV_FD, /* success on receiving fds */
144 CONSUMERD_ERROR_RECV_FD, /* error on receiving fds */
145 CONSUMERD_ERROR_RECV_CMD, /* error on receiving command */
146 CONSUMERD_POLL_ERROR, /* Error in polling thread in kconsumerd */
147 CONSUMERD_POLL_NVAL, /* Poll on closed fd */
148 CONSUMERD_POLL_HUP, /* All fds have hungup */
149 CONSUMERD_EXIT_SUCCESS, /* kconsumerd exiting normally */
150 CONSUMERD_EXIT_FAILURE, /* kconsumerd exiting on error */
151 CONSUMERD_OUTFD_ERROR, /* error opening the tracefile */
152 CONSUMERD_SPLICE_EBADF, /* EBADF from splice(2) */
153 CONSUMERD_SPLICE_EINVAL, /* EINVAL from splice(2) */
154 CONSUMERD_SPLICE_ENOMEM, /* ENOMEM from splice(2) */
155 CONSUMERD_SPLICE_ESPIPE, /* ESPIPE from splice(2) */
156 /* MUST be last element */
157 LTTCOMM_NR, /* Last element */
158 };
159
160 /*
161 * Data structure received from lttng client to session daemon.
162 */
163 struct lttcomm_session_msg {
164 uint32_t cmd_type; /* enum lttcomm_sessiond_command */
165 struct lttng_session session;
166 struct lttng_domain domain;
167 union {
168 struct {
169 char channel_name[NAME_MAX];
170 char name[NAME_MAX];
171 } disable;
172 /* Event data */
173 struct {
174 char channel_name[NAME_MAX];
175 struct lttng_event event;
176 } enable;
177 /* Create channel */
178 struct {
179 struct lttng_channel chan;
180 } channel;
181 /* Context */
182 struct {
183 char channel_name[NAME_MAX];
184 char event_name[NAME_MAX];
185 struct lttng_event_context ctx;
186 } context;
187 /* Use by register_consumer */
188 struct {
189 char path[PATH_MAX];
190 } reg;
191 /* List */
192 struct {
193 char channel_name[NAME_MAX];
194 } list;
195 struct lttng_calibrate calibrate;
196 } u;
197 };
198
199 /*
200 * Data structure for the response from sessiond to the lttng client.
201 */
202 struct lttcomm_lttng_msg {
203 uint32_t cmd_type; /* enum lttcomm_sessiond_command */
204 uint32_t ret_code; /* enum lttcomm_return_code */
205 uint32_t pid; /* pid_t */
206 uint32_t data_size;
207 /* Contains: trace_name + data */
208 char payload[];
209 };
210
211 /*
212 * lttcomm_consumer_msg is the message sent from sessiond to consumerd
213 * to either add a channel, add a stream, update a stream, or stop
214 * operation.
215 */
216 struct lttcomm_consumer_msg {
217 uint32_t cmd_type; /* enum consumerd_command */
218 union {
219 struct {
220 int channel_key;
221 uint64_t max_sb_size; /* the subbuffer size for this channel */
222 /* shm_fd and wait_fd are sent as ancillary data */
223 uint64_t mmap_len;
224 } channel;
225 struct {
226 int channel_key;
227 int stream_key;
228 /* shm_fd and wait_fd are sent as ancillary data */
229 uint32_t state; /* enum lttcomm_consumer_fd_state */
230 enum lttng_event_output output; /* use splice or mmap to consume this fd */
231 uint64_t mmap_len;
232 uid_t uid; /* User ID owning the session */
233 gid_t gid; /* Group ID owning the session */
234 char path_name[PATH_MAX];
235 } stream;
236 } u;
237 };
238
239 #ifdef HAVE_LIBLTTNG_UST_CTL
240
241 #include <lttng/ust-abi.h>
242
243 /*
244 * Data structure for the commands sent from sessiond to UST.
245 */
246 struct lttcomm_ust_msg {
247 uint32_t handle;
248 uint32_t cmd;
249 union {
250 struct lttng_ust_channel channel;
251 struct lttng_ust_stream stream;
252 struct lttng_ust_event event;
253 struct lttng_ust_context context;
254 struct lttng_ust_tracer_version version;
255 } u;
256 };
257
258 /*
259 * Data structure for the response from UST to the session daemon.
260 * cmd_type is sent back in the reply for validation.
261 */
262 struct lttcomm_ust_reply {
263 uint32_t handle;
264 uint32_t cmd;
265 uint32_t ret_code; /* enum lttcomm_return_code */
266 uint32_t ret_val; /* return value */
267 union {
268 struct {
269 uint64_t memory_map_size;
270 } channel;
271 struct {
272 uint64_t memory_map_size;
273 } stream;
274 struct lttng_ust_tracer_version version;
275 } u;
276 };
277
278 #endif /* HAVE_LIBLTTNG_UST_CTL */
279
280 extern int lttcomm_create_unix_sock(const char *pathname);
281 extern int lttcomm_connect_unix_sock(const char *pathname);
282 extern int lttcomm_accept_unix_sock(int sock);
283 extern int lttcomm_listen_unix_sock(int sock);
284 extern int lttcomm_close_unix_sock(int sock);
285
286 #define LTTCOMM_MAX_SEND_FDS 4
287 /* Send a message accompanied by fd(s) over a unix socket. */
288 extern ssize_t lttcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd);
289 /* Recv a message accompanied by fd(s) from a unix socket */
290 extern ssize_t lttcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd);
291
292 extern ssize_t lttcomm_recv_unix_sock(int sock, void *buf, size_t len);
293 extern ssize_t lttcomm_send_unix_sock(int sock, void *buf, size_t len);
294
295 extern ssize_t lttcomm_send_creds_unix_sock(int sock, void *buf, size_t len);
296 extern ssize_t lttcomm_recv_creds_unix_sock(int sock, void *buf, size_t len,
297 struct ucred *creds);
298
299 extern const char *lttcomm_get_readable_code(enum lttcomm_return_code code);
300 extern int lttcomm_setsockopt_creds_unix_sock(int sock);
301
302 #endif /* _LTTNG_SESSIOND_COMM_H */
This page took 0.035013 seconds and 4 git commands to generate.