2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Julien Desfossez <julien.desfossez@polymtl.ca>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; only version 2
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #ifndef _LIBLTTSESSIONDCOMM_H
22 #define _LIBLTTSESSIONDCOMM_H
26 #include <lttng/lttng.h>
27 #include "lttng-share.h"
29 /* Default unix socket path */
30 #define DEFAULT_GLOBAL_CLIENT_UNIX_SOCK LTTNG_RUNDIR "/client-ltt-sessiond"
31 #define DEFAULT_GLOBAL_APPS_UNIX_SOCK LTTNG_RUNDIR "/apps-ltt-sessiond"
32 #define DEFAULT_HOME_APPS_UNIX_SOCK "%s/.apps-ltt-sessiond"
33 #define DEFAULT_HOME_CLIENT_UNIX_SOCK "%s/.client-ltt-sessiond"
35 /* Queue size of listen(2) */
38 /* Get the error code index from 0 since
39 * LTTCOMM_OK start at 1000
41 #define LTTCOMM_ERR_INDEX(code) (code - LTTCOMM_OK)
43 enum lttcomm_sessiond_command
{
46 LTTNG_DISABLE_CHANNEL
,
48 LTTNG_DISABLE_ALL_EVENT
,
51 LTTNG_ENABLE_ALL_EVENT
,
52 /* Session daemon command */
54 LTTNG_DESTROY_SESSION
,
59 LTTNG_LIST_TRACEPOINTS
,
68 enum lttcomm_return_code
{
69 LTTCOMM_OK
= 1000, /* Ok */
70 LTTCOMM_ERR
, /* Unknown Error */
71 LTTCOMM_UND
, /* Undefine command */
72 LTTCOMM_NOT_IMPLEMENTED
, /* Command not implemented */
73 LTTCOMM_UNKNOWN_DOMAIN
, /* Tracing domain not known */
74 LTTCOMM_ALLOC_FAIL
, /* Trace allocation fail */
75 LTTCOMM_NO_SESSION
, /* No session found */
76 LTTCOMM_CREATE_FAIL
, /* Create trace fail */
77 LTTCOMM_SESSION_FAIL
, /* Create session fail */
78 LTTCOMM_START_FAIL
, /* Start tracing fail */
79 LTTCOMM_STOP_FAIL
, /* Stop tracing fail */
80 LTTCOMM_LIST_FAIL
, /* Listing apps fail */
81 LTTCOMM_NO_APPS
, /* No traceable application */
82 LTTCOMM_SESS_NOT_FOUND
, /* Session name not found */
83 LTTCOMM_NO_TRACE
, /* No trace exist */
84 LTTCOMM_FATAL
, /* Session daemon had a fatal error */
85 LTTCOMM_NO_TRACEABLE
, /* Error for non traceable app */
86 LTTCOMM_SELECT_SESS
, /* Must select a session */
87 LTTCOMM_EXIST_SESS
, /* Session name already exist */
88 LTTCOMM_NO_EVENT
, /* No event found */
89 LTTCOMM_KERN_NA
, /* Kernel tracer unavalable */
90 LTTCOMM_KERN_EVENT_EXIST
, /* Kernel event already exists */
91 LTTCOMM_KERN_SESS_FAIL
, /* Kernel create session failed */
92 LTTCOMM_KERN_CHAN_FAIL
, /* Kernel create channel failed */
93 LTTCOMM_KERN_CHAN_NOT_FOUND
, /* Kernel channel not found */
94 LTTCOMM_KERN_CHAN_DISABLE_FAIL
, /* Kernel disable channel failed */
95 LTTCOMM_KERN_CHAN_ENABLE_FAIL
, /* Kernel enable channel failed */
96 LTTCOMM_KERN_CONTEXT_FAIL
, /* Kernel add context failed */
97 LTTCOMM_KERN_ENABLE_FAIL
, /* Kernel enable event failed */
98 LTTCOMM_KERN_DISABLE_FAIL
, /* Kernel disable event failed */
99 LTTCOMM_KERN_META_FAIL
, /* Kernel open metadata failed */
100 LTTCOMM_KERN_START_FAIL
, /* Kernel start trace failed */
101 LTTCOMM_KERN_STOP_FAIL
, /* Kernel stop trace failed */
102 LTTCOMM_KERN_CONSUMER_FAIL
, /* Kernel consumer start failed */
103 LTTCOMM_KERN_STREAM_FAIL
, /* Kernel create stream failed */
104 LTTCOMM_KERN_DIR_FAIL
, /* Kernel trace directory creation failed */
105 LTTCOMM_KERN_DIR_EXIST
, /* Kernel trace directory exist */
106 LTTCOMM_KERN_NO_SESSION
, /* No kernel session found */
107 LTTCOMM_KERN_LIST_FAIL
, /* Kernel listing events failed */
108 KCONSUMERD_COMMAND_SOCK_READY
, /* when kconsumerd command socket ready */
109 KCONSUMERD_SUCCESS_RECV_FD
, /* success on receiving fds */
110 KCONSUMERD_ERROR_RECV_FD
, /* error on receiving fds */
111 KCONSUMERD_POLL_ERROR
, /* Error in polling thread in kconsumerd */
112 KCONSUMERD_POLL_NVAL
, /* Poll on closed fd */
113 KCONSUMERD_POLL_HUP
, /* All fds have hungup */
114 KCONSUMERD_EXIT_SUCCESS
, /* kconsumerd exiting normally */
115 KCONSUMERD_EXIT_FAILURE
, /* kconsumerd exiting on error */
116 KCONSUMERD_OUTFD_ERROR
, /* error opening the tracefile */
117 KCONSUMERD_SPLICE_EBADF
, /* EBADF from splice(2) */
118 KCONSUMERD_SPLICE_EINVAL
, /* EINVAL from splice(2) */
119 KCONSUMERD_SPLICE_ENOMEM
, /* ENOMEM from splice(2) */
120 KCONSUMERD_SPLICE_ESPIPE
, /* ESPIPE from splice(2) */
121 /* MUST be last element */
122 LTTCOMM_NR
, /* Last element */
126 * Data structure received from lttng client to session daemon.
128 struct lttcomm_session_msg
{
129 u32 cmd_type
; /* enum lttcomm_sessiond_command */
130 struct lttng_session session
;
131 struct lttng_domain domain
;
134 char channel_name
[NAME_MAX
];
139 char channel_name
[NAME_MAX
];
140 struct lttng_event event
;
144 struct lttng_channel chan
;
148 char channel_name
[NAME_MAX
];
149 char event_name
[NAME_MAX
];
150 struct lttng_event_context ctx
;
154 char channel_name
[NAME_MAX
];
156 struct lttng_calibrate calibrate
;
161 * Data structure for the response from sessiond to the lttng client.
163 struct lttcomm_lttng_msg
{
164 u32 cmd_type
; /* enum lttcomm_sessiond_command */
165 u32 ret_code
; /* enum lttcomm_return_code */
168 /* Contains: trace_name + data */
173 * Data structures for the kconsumerd communications
175 * The header structure is sent to the kconsumerd daemon to inform
176 * how many lttcomm_kconsumerd_msg it is about to receive
178 struct lttcomm_kconsumerd_header
{
180 u32 cmd_type
; /* enum kconsumerd_command */
183 /* lttcomm_kconsumerd_msg represents a file descriptor to consume the
184 * data and a path name to write it
186 struct lttcomm_kconsumerd_msg
{
187 char path_name
[PATH_MAX
];
189 u32 state
; /* enum lttcomm_kconsumerd_fd_state */
190 unsigned long max_sb_size
; /* the subbuffer size for this channel */
193 extern int lttcomm_create_unix_sock(const char *pathname
);
194 extern int lttcomm_connect_unix_sock(const char *pathname
);
195 extern int lttcomm_accept_unix_sock(int sock
);
196 extern int lttcomm_listen_unix_sock(int sock
);
197 extern int lttcomm_close_unix_sock(int sock
);
198 extern ssize_t
lttcomm_send_fds_unix_sock(int sock
, void *buf
, int *fds
, size_t nb_fd
, size_t len
);
199 extern ssize_t
lttcomm_recv_unix_sock(int sock
, void *buf
, size_t len
);
200 extern ssize_t
lttcomm_send_unix_sock(int sock
, void *buf
, size_t len
);
201 extern const char *lttcomm_get_readable_code(enum lttcomm_return_code code
);
203 #endif /* _LIBLTTSESSIONDCOMM_H */