Update UST ABI and add UST some error message
[lttng-tools.git] / liblttng-sessiond-comm / lttng-sessiond-comm.c
... / ...
CommitLineData
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
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
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
19#define _GNU_SOURCE
20#include <assert.h>
21#include <limits.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/socket.h>
26#include <sys/stat.h>
27#include <sys/types.h>
28#include <sys/un.h>
29#include <unistd.h>
30
31#include <lttng-sessiond-comm.h>
32
33/*
34 * Human readable error message.
35 */
36static const char *lttcomm_readable_code[] = {
37 [ LTTCOMM_ERR_INDEX(LTTCOMM_OK) ] = "Success",
38 [ LTTCOMM_ERR_INDEX(LTTCOMM_ERR) ] = "Unknown error",
39 [ LTTCOMM_ERR_INDEX(LTTCOMM_UND) ] = "Undefined command",
40 [ LTTCOMM_ERR_INDEX(LTTCOMM_NOT_IMPLEMENTED) ] = "Not implemented",
41 [ LTTCOMM_ERR_INDEX(LTTCOMM_UNKNOWN_DOMAIN) ] = "Unknown tracing domain",
42 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_SESSION) ] = "No session found",
43 [ LTTCOMM_ERR_INDEX(LTTCOMM_LIST_FAIL) ] = "Unable to list traceable apps",
44 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_APPS) ] = "No traceable apps found",
45 [ LTTCOMM_ERR_INDEX(LTTCOMM_SESS_NOT_FOUND) ] = "Session name not found",
46 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_TRACE) ] = "No trace found",
47 [ LTTCOMM_ERR_INDEX(LTTCOMM_FATAL) ] = "Fatal error of the session daemon",
48 [ LTTCOMM_ERR_INDEX(LTTCOMM_CREATE_FAIL) ] = "Create trace failed",
49 [ LTTCOMM_ERR_INDEX(LTTCOMM_START_FAIL) ] = "Start trace failed",
50 [ LTTCOMM_ERR_INDEX(LTTCOMM_STOP_FAIL) ] = "Stop trace failed",
51 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_TRACEABLE) ] = "App is not traceable",
52 [ LTTCOMM_ERR_INDEX(LTTCOMM_SELECT_SESS) ] = "A session MUST be selected",
53 [ LTTCOMM_ERR_INDEX(LTTCOMM_EXIST_SESS) ] = "Session name already exist",
54 [ LTTCOMM_ERR_INDEX(LTTCOMM_CONNECT_FAIL) ] = "Unable to connect to Unix socket",
55 [ LTTCOMM_ERR_INDEX(LTTCOMM_APP_NOT_FOUND) ] = "Application not found",
56 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_NA) ] = "Kernel tracer not available",
57 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_EVENT_EXIST) ] = "Kernel event already exists",
58 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_SESS_FAIL) ] = "Kernel create session failed",
59 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_CHAN_FAIL) ] = "Kernel create channel failed",
60 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_CHAN_NOT_FOUND) ] = "Kernel channel not found",
61 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_CHAN_DISABLE_FAIL) ] = "Disable kernel channel failed",
62 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_CHAN_ENABLE_FAIL) ] = "Enable kernel channel failed",
63 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_CONTEXT_FAIL) ] = "Add kernel context failed",
64 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_ENABLE_FAIL) ] = "Enable kernel event failed",
65 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_DISABLE_FAIL) ] = "Disable kernel event failed",
66 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_META_FAIL) ] = "Opening metadata failed",
67 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_START_FAIL) ] = "Starting kernel trace failed",
68 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_STOP_FAIL) ] = "Stoping kernel trace failed",
69 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_CONSUMER_FAIL) ] = "Kernel consumer start failed",
70 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_STREAM_FAIL) ] = "Kernel create stream failed",
71 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_DIR_FAIL) ] = "Kernel trace directory creation failed",
72 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_DIR_EXIST) ] = "Kernel trace directory already exist",
73 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_NO_SESSION) ] = "No kernel session found",
74 [ LTTCOMM_ERR_INDEX(LTTCOMM_KERN_LIST_FAIL) ] = "Listing kernel events failed",
75 [ LTTCOMM_ERR_INDEX(LTTCOMM_UST_SESS_FAIL) ] = "UST create session failed",
76 [ LTTCOMM_ERR_INDEX(LTTCOMM_UST_CHAN_NOT_FOUND) ] = "UST channel not found",
77 [ LTTCOMM_ERR_INDEX(LTTCOMM_UST_CHAN_FAIL) ] = "UST create channel failed",
78 [ LTTCOMM_ERR_INDEX(KCONSUMERD_COMMAND_SOCK_READY) ] = "Kconsumerd command socket ready",
79 [ LTTCOMM_ERR_INDEX(KCONSUMERD_SUCCESS_RECV_FD) ] = "Kconsumerd success on receiving fds",
80 [ LTTCOMM_ERR_INDEX(KCONSUMERD_ERROR_RECV_FD) ] = "Kconsumerd error on receiving fds",
81 [ LTTCOMM_ERR_INDEX(KCONSUMERD_POLL_ERROR) ] = "Kconsumerd error in polling thread",
82 [ LTTCOMM_ERR_INDEX(KCONSUMERD_POLL_NVAL) ] = "Kconsumerd polling on closed fd",
83 [ LTTCOMM_ERR_INDEX(KCONSUMERD_POLL_HUP) ] = "Kconsumerd all fd hung up",
84 [ LTTCOMM_ERR_INDEX(KCONSUMERD_EXIT_SUCCESS) ] = "Kconsumerd exiting normally",
85 [ LTTCOMM_ERR_INDEX(KCONSUMERD_EXIT_FAILURE) ] = "Kconsumerd exiting on error",
86 [ LTTCOMM_ERR_INDEX(KCONSUMERD_OUTFD_ERROR) ] = "Kconsumerd error opening the tracefile",
87 [ LTTCOMM_ERR_INDEX(KCONSUMERD_SPLICE_EBADF) ] = "Kconsumerd splice EBADF",
88 [ LTTCOMM_ERR_INDEX(KCONSUMERD_SPLICE_EINVAL) ] = "Kconsumerd splice EINVAL",
89 [ LTTCOMM_ERR_INDEX(KCONSUMERD_SPLICE_ENOMEM) ] = "Kconsumerd splice ENOMEM",
90 [ LTTCOMM_ERR_INDEX(KCONSUMERD_SPLICE_ESPIPE) ] = "Kconsumerd splice ESPIPE",
91 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_EVENT) ] = "Event not found",
92};
93
94/*
95 * lttcom_get_readable_code
96 *
97 * Return ptr to string representing a human readable
98 * error code from the lttcomm_return_code enum.
99 *
100 * These code MUST be negative in other to treat that
101 * as an error value.
102 */
103const char *lttcomm_get_readable_code(enum lttcomm_return_code code)
104{
105 int tmp_code = -code;
106
107 if (tmp_code >= LTTCOMM_OK && tmp_code < LTTCOMM_NR) {
108 return lttcomm_readable_code[LTTCOMM_ERR_INDEX(tmp_code)];
109 }
110
111 return "Unknown error code";
112}
113
114/*
115 * lttcomm_connect_unix_sock
116 *
117 * Connect to unix socket using the path name.
118 */
119int lttcomm_connect_unix_sock(const char *pathname)
120{
121 struct sockaddr_un sun;
122 int fd;
123 int ret;
124
125 fd = socket(PF_UNIX, SOCK_STREAM, 0);
126 if (fd < 0) {
127 perror("socket");
128 ret = fd;
129 goto error;
130 }
131
132 memset(&sun, 0, sizeof(sun));
133 sun.sun_family = AF_UNIX;
134 strncpy(sun.sun_path, pathname, sizeof(sun.sun_path));
135 sun.sun_path[sizeof(sun.sun_path) - 1] = '\0';
136
137 ret = connect(fd, (struct sockaddr *) &sun, sizeof(sun));
138 if (ret < 0) {
139 /*
140 * Don't print message on connect error, because connect
141 * is used in normal execution to detect if sessiond is
142 * alive.
143 */
144 goto error_connect;
145 }
146
147 return fd;
148
149error_connect:
150 close(fd);
151error:
152 return ret;
153}
154
155/*
156 * lttcomm_accept_unix_sock
157 *
158 * Do an accept(2) on the sock and return the
159 * new file descriptor. The socket MUST be bind(2) before.
160 */
161int lttcomm_accept_unix_sock(int sock)
162{
163 int new_fd;
164 struct sockaddr_un sun;
165 socklen_t len = 0;
166
167 /* Blocking call */
168 new_fd = accept(sock, (struct sockaddr *) &sun, &len);
169 if (new_fd < 0) {
170 perror("accept");
171 goto error;
172 }
173
174 return new_fd;
175
176error:
177 return -1;
178}
179
180/*
181 * lttcomm_create_unix_sock
182 *
183 * Creates a AF_UNIX local socket using pathname
184 * bind the socket upon creation and return the fd.
185 */
186int lttcomm_create_unix_sock(const char *pathname)
187{
188 struct sockaddr_un sun;
189 int fd;
190 int ret = -1;
191
192 /* Create server socket */
193 if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
194 perror("socket");
195 goto error;
196 }
197
198 memset(&sun, 0, sizeof(sun));
199 sun.sun_family = AF_UNIX;
200 strncpy(sun.sun_path, pathname, sizeof(sun.sun_path));
201 sun.sun_path[sizeof(sun.sun_path) - 1] = '\0';
202
203 /* Unlink the old file if present */
204 (void) unlink(pathname);
205 ret = bind(fd, (struct sockaddr *) &sun, sizeof(sun));
206 if (ret < 0) {
207 perror("bind");
208 goto error;
209 }
210
211 return fd;
212
213error:
214 return ret;
215}
216
217/*
218 * lttcomm_listen_unix_sock
219 *
220 * Make the socket listen using MAX_LISTEN.
221 */
222int lttcomm_listen_unix_sock(int sock)
223{
224 int ret;
225
226 ret = listen(sock, MAX_LISTEN);
227 if (ret < 0) {
228 perror("listen");
229 }
230
231 return ret;
232}
233
234/*
235 * lttcomm_recv_unix_sock
236 *
237 * Receive data of size len in put that data into
238 * the buf param. Using recvmsg API.
239 * Return the size of received data.
240 */
241ssize_t lttcomm_recv_unix_sock(int sock, void *buf, size_t len)
242{
243 struct msghdr msg = { 0 };
244 struct iovec iov[1];
245 ssize_t ret = -1;
246
247 iov[0].iov_base = buf;
248 iov[0].iov_len = len;
249 msg.msg_iov = iov;
250 msg.msg_iovlen = 1;
251
252 ret = recvmsg(sock, &msg, 0);
253 if (ret < 0) {
254 perror("recvmsg");
255 }
256
257 return ret;
258}
259
260/*
261 * lttcomm_send_unix_sock
262 *
263 * Send buf data of size len. Using sendmsg API.
264 * Return the size of sent data.
265 */
266ssize_t lttcomm_send_unix_sock(int sock, void *buf, size_t len)
267{
268 struct msghdr msg = { 0 };
269 struct iovec iov[1];
270 ssize_t ret = -1;
271
272 iov[0].iov_base = buf;
273 iov[0].iov_len = len;
274 msg.msg_iov = iov;
275 msg.msg_iovlen = 1;
276
277 ret = sendmsg(sock, &msg, 0);
278 if (ret < 0) {
279 perror("sendmsg");
280 }
281
282 return ret;
283}
284
285/*
286 * lttcomm_close_unix_sock
287 *
288 * Shutdown cleanly a unix socket.
289 */
290int lttcomm_close_unix_sock(int sock)
291{
292 int ret;
293
294 /* Shutdown receptions and transmissions */
295 ret = shutdown(sock, SHUT_RDWR);
296 if (ret < 0) {
297 perror("shutdown");
298 }
299
300 return ret;
301}
302
303/*
304 * lttcomm_send_fds_unix_sock
305 *
306 * Send multiple fds on a unix socket.
307 */
308ssize_t lttcomm_send_fds_unix_sock(int sock, void *buf, int *fds, size_t nb_fd, size_t len)
309{
310 struct msghdr msg = { 0 };
311 struct cmsghdr *cmptr;
312 struct iovec iov[1];
313 ssize_t ret = -1;
314 unsigned int sizeof_fds = nb_fd * sizeof(int);
315 char tmp[CMSG_SPACE(sizeof_fds)];
316
317 /*
318 * Note: the consumerd receiver only supports receiving one FD per
319 * message.
320 */
321 assert(nb_fd == 1);
322
323 msg.msg_control = (caddr_t)tmp;
324 msg.msg_controllen = CMSG_LEN(sizeof_fds);
325
326 cmptr = CMSG_FIRSTHDR(&msg);
327 cmptr->cmsg_level = SOL_SOCKET;
328 cmptr->cmsg_type = SCM_RIGHTS;
329 cmptr->cmsg_len = CMSG_LEN(sizeof_fds);
330 memcpy(CMSG_DATA(cmptr), fds, sizeof_fds);
331 /* Sum of the length of all control messages in the buffer: */
332 msg.msg_controllen = cmptr->cmsg_len;
333
334 iov[0].iov_base = buf;
335 iov[0].iov_len = len;
336 msg.msg_iov = iov;
337 msg.msg_iovlen = 1;
338
339 ret = sendmsg(sock, &msg, 0);
340 if (ret < 0) {
341 perror("sendmsg");
342 }
343
344 return ret;
345}
This page took 0.023144 seconds and 4 git commands to generate.