Merge branch 'master' into dev
[lttng-ust.git] / liblttng-ust-comm / lttng-ust-comm.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; only
8 * version 2.1 of the License.
9 *
10 * This library 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 GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20 #define _GNU_SOURCE
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 #include <assert.h>
31 #include <errno.h>
32 #include <fcntl.h>
33
34 #include <ust-comm.h>
35
36 /*
37 * Human readable error message.
38 */
39 static const char *ustcomm_readable_code[] = {
40 [ USTCOMM_ERR_INDEX(USTCOMM_ERR) ] = "Unknown error",
41 [ USTCOMM_ERR_INDEX(USTCOMM_UND) ] = "Undefined command",
42 [ USTCOMM_ERR_INDEX(USTCOMM_NOT_IMPLEMENTED) ] = "Not implemented",
43 [ USTCOMM_ERR_INDEX(USTCOMM_UNKNOWN_DOMAIN) ] = "Unknown tracing domain",
44 [ USTCOMM_ERR_INDEX(USTCOMM_NO_SESSION) ] = "No session found",
45 [ USTCOMM_ERR_INDEX(USTCOMM_LIST_FAIL) ] = "Unable to list traceable apps",
46 [ USTCOMM_ERR_INDEX(USTCOMM_NO_APPS) ] = "No traceable apps found",
47 [ USTCOMM_ERR_INDEX(USTCOMM_SESS_NOT_FOUND) ] = "Session name not found",
48 [ USTCOMM_ERR_INDEX(USTCOMM_NO_TRACE) ] = "No trace found",
49 [ USTCOMM_ERR_INDEX(USTCOMM_FATAL) ] = "Fatal error of the session daemon",
50 [ USTCOMM_ERR_INDEX(USTCOMM_CREATE_FAIL) ] = "Create trace failed",
51 [ USTCOMM_ERR_INDEX(USTCOMM_START_FAIL) ] = "Start trace failed",
52 [ USTCOMM_ERR_INDEX(USTCOMM_STOP_FAIL) ] = "Stop trace failed",
53 [ USTCOMM_ERR_INDEX(USTCOMM_NO_TRACEABLE) ] = "App is not traceable",
54 [ USTCOMM_ERR_INDEX(USTCOMM_SELECT_SESS) ] = "A session MUST be selected",
55 [ USTCOMM_ERR_INDEX(USTCOMM_EXIST_SESS) ] = "Session name already exist",
56 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_NA) ] = "UST tracer not available",
57 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_EVENT_EXIST) ] = "UST event already exists",
58 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_SESS_FAIL) ] = "UST create session failed",
59 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_CHAN_FAIL) ] = "UST create channel failed",
60 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_CHAN_NOT_FOUND) ] = "UST channel not found",
61 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_CHAN_DISABLE_FAIL) ] = "Disable UST channel failed",
62 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_CHAN_ENABLE_FAIL) ] = "Enable UST channel failed",
63 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_CONTEXT_FAIL) ] = "Add UST context failed",
64 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_ENABLE_FAIL) ] = "Enable UST event failed",
65 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_DISABLE_FAIL) ] = "Disable UST event failed",
66 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_META_FAIL) ] = "Opening metadata failed",
67 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_START_FAIL) ] = "Starting UST trace failed",
68 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_STOP_FAIL) ] = "Stoping UST trace failed",
69 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_CONSUMER_FAIL) ] = "UST consumer start failed",
70 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_STREAM_FAIL) ] = "UST create stream failed",
71 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_DIR_FAIL) ] = "UST trace directory creation failed",
72 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_DIR_EXIST) ] = "UST trace directory already exist",
73 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_NO_SESSION) ] = "No UST session found",
74 [ USTCOMM_ERR_INDEX(USTCOMM_KERN_LIST_FAIL) ] = "Listing UST events failed",
75 [ USTCOMM_ERR_INDEX(USTCONSUMER_COMMAND_SOCK_READY) ] = "UST consumer command socket ready",
76 [ USTCOMM_ERR_INDEX(USTCONSUMER_SUCCESS_RECV_FD) ] = "UST consumer success on receiving fds",
77 [ USTCOMM_ERR_INDEX(USTCONSUMER_ERROR_RECV_FD) ] = "UST consumer error on receiving fds",
78 [ USTCOMM_ERR_INDEX(USTCONSUMER_POLL_ERROR) ] = "UST consumer error in polling thread",
79 [ USTCOMM_ERR_INDEX(USTCONSUMER_POLL_NVAL) ] = "UST consumer polling on closed fd",
80 [ USTCOMM_ERR_INDEX(USTCONSUMER_POLL_HUP) ] = "UST consumer all fd hung up",
81 [ USTCOMM_ERR_INDEX(USTCONSUMER_EXIT_SUCCESS) ] = "UST consumer exiting normally",
82 [ USTCOMM_ERR_INDEX(USTCONSUMER_EXIT_FAILURE) ] = "UST consumer exiting on error",
83 [ USTCOMM_ERR_INDEX(USTCONSUMER_OUTFD_ERROR) ] = "UST consumer error opening the tracefile",
84 [ USTCOMM_ERR_INDEX(USTCONSUMER_SPLICE_EBADF) ] = "UST consumer splice EBADF",
85 [ USTCOMM_ERR_INDEX(USTCONSUMER_SPLICE_EINVAL) ] = "UST consumer splice EINVAL",
86 [ USTCOMM_ERR_INDEX(USTCONSUMER_SPLICE_ENOMEM) ] = "UST consumer splice ENOMEM",
87 [ USTCOMM_ERR_INDEX(USTCONSUMER_SPLICE_ESPIPE) ] = "UST consumer splice ESPIPE",
88 [ USTCOMM_ERR_INDEX(USTCOMM_NO_EVENT) ] = "Event not found",
89 };
90
91 /*
92 * lttcom_get_readable_code
93 *
94 * Return ptr to string representing a human readable
95 * error code from the ustcomm_return_code enum.
96 */
97 const char *ustcomm_get_readable_code(int code)
98 {
99 if (code == USTCOMM_OK) {
100 return "Success";
101 }
102 if (code >= USTCOMM_ERR && code < USTCOMM_NR) {
103 return ustcomm_readable_code[USTCOMM_ERR_INDEX(code)];
104 }
105 return strerror(code);
106 }
107
108 /*
109 * ustcomm_connect_unix_sock
110 *
111 * Connect to unix socket using the path name.
112 */
113 int ustcomm_connect_unix_sock(const char *pathname)
114 {
115 struct sockaddr_un sun;
116 int fd;
117 int ret;
118
119 /*
120 * libust threads require the close-on-exec flag for all
121 * resources so it does not leak file descriptors upon exec.
122 */
123 fd = socket(PF_UNIX, SOCK_STREAM, 0);
124 if (fd < 0) {
125 perror("socket");
126 ret = fd;
127 goto error;
128 }
129 ret = fcntl(fd, F_SETFD, FD_CLOEXEC);
130 if (ret < 0) {
131 perror("fcntl");
132 goto error_fcntl;
133 }
134
135 memset(&sun, 0, sizeof(sun));
136 sun.sun_family = AF_UNIX;
137 strncpy(sun.sun_path, pathname, sizeof(sun.sun_path));
138 sun.sun_path[sizeof(sun.sun_path) - 1] = '\0';
139
140 ret = connect(fd, (struct sockaddr *) &sun, sizeof(sun));
141 if (ret < 0) {
142 /*
143 * Don't print message on connect error, because connect
144 * is used in normal execution to detect if sessiond is
145 * alive.
146 */
147 goto error_connect;
148 }
149
150 return fd;
151
152 error_connect:
153 error_fcntl:
154 close(fd);
155 error:
156 return ret;
157 }
158
159 /*
160 * ustcomm_accept_unix_sock
161 *
162 * Do an accept(2) on the sock and return the
163 * new file descriptor. The socket MUST be bind(2) before.
164 */
165 int ustcomm_accept_unix_sock(int sock)
166 {
167 int new_fd;
168 struct sockaddr_un sun;
169 socklen_t len = 0;
170
171 /* Blocking call */
172 new_fd = accept(sock, (struct sockaddr *) &sun, &len);
173 if (new_fd < 0) {
174 perror("accept");
175 goto error;
176 }
177
178 return new_fd;
179
180 error:
181 return -1;
182 }
183
184 /*
185 * ustcomm_create_unix_sock
186 *
187 * Creates a AF_UNIX local socket using pathname
188 * bind the socket upon creation and return the fd.
189 */
190 int ustcomm_create_unix_sock(const char *pathname)
191 {
192 struct sockaddr_un sun;
193 int fd;
194 int ret = -1;
195
196 /* Create server socket */
197 if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
198 perror("socket");
199 goto error;
200 }
201
202 memset(&sun, 0, sizeof(sun));
203 sun.sun_family = AF_UNIX;
204 strncpy(sun.sun_path, pathname, sizeof(sun.sun_path));
205 sun.sun_path[sizeof(sun.sun_path) - 1] = '\0';
206
207 /* Unlink the old file if present */
208 (void) unlink(pathname);
209 ret = bind(fd, (struct sockaddr *) &sun, sizeof(sun));
210 if (ret < 0) {
211 perror("bind");
212 goto error;
213 }
214
215 return fd;
216
217 error:
218 return ret;
219 }
220
221 /*
222 * ustcomm_listen_unix_sock
223 *
224 * Make the socket listen using LTTNG_UST_COMM_MAX_LISTEN.
225 */
226 int ustcomm_listen_unix_sock(int sock)
227 {
228 int ret;
229
230 ret = listen(sock, LTTNG_UST_COMM_MAX_LISTEN);
231 if (ret < 0) {
232 perror("listen");
233 }
234
235 return ret;
236 }
237
238 /*
239 * ustcomm_recv_unix_sock
240 *
241 * Receive data of size len in put that data into
242 * the buf param. Using recvmsg API.
243 * Return the size of received data.
244 */
245 ssize_t ustcomm_recv_unix_sock(int sock, void *buf, size_t len)
246 {
247 struct msghdr msg;
248 struct iovec iov[1];
249 ssize_t ret = -1;
250
251 memset(&msg, 0, sizeof(msg));
252
253 iov[0].iov_base = buf;
254 iov[0].iov_len = len;
255 msg.msg_iov = iov;
256 msg.msg_iovlen = 1;
257
258 ret = recvmsg(sock, &msg, 0);
259 if (ret < 0) {
260 perror("recvmsg");
261 }
262
263 return ret;
264 }
265
266 /*
267 * ustcomm_send_unix_sock
268 *
269 * Send buf data of size len. Using sendmsg API.
270 * Return the size of sent data.
271 */
272 ssize_t ustcomm_send_unix_sock(int sock, void *buf, size_t len)
273 {
274 struct msghdr msg;
275 struct iovec iov[1];
276 ssize_t ret = -1;
277
278 memset(&msg, 0, sizeof(msg));
279
280 iov[0].iov_base = buf;
281 iov[0].iov_len = len;
282 msg.msg_iov = iov;
283 msg.msg_iovlen = 1;
284
285 /*
286 * Using the MSG_NOSIGNAL when sending data from sessiond to
287 * libust, so libust does not receive an unhandled SIGPIPE or
288 * SIGURG. The sessiond receiver side can be made more resilient
289 * by ignoring SIGPIPE, but we don't have this luxury on the
290 * libust side.
291 */
292 ret = sendmsg(sock, &msg, MSG_NOSIGNAL);
293 if (ret < 0) {
294 perror("sendmsg");
295 }
296
297 return ret;
298 }
299
300 /*
301 * ustcomm_close_unix_sock
302 *
303 * Shutdown cleanly a unix socket.
304 */
305 int ustcomm_close_unix_sock(int sock)
306 {
307 int ret;
308
309 /* Shutdown receptions and transmissions */
310 ret = shutdown(sock, SHUT_RDWR);
311 if (ret < 0) {
312 perror("shutdown");
313 }
314
315 return ret;
316 }
317
318 /*
319 * ustcomm_send_fds_unix_sock
320 *
321 * Send multiple fds on a unix socket.
322 */
323 ssize_t ustcomm_send_fds_unix_sock(int sock, void *buf, int *fds, size_t nb_fd, size_t len)
324 {
325 struct msghdr msg;
326 struct cmsghdr *cmptr;
327 struct iovec iov[1];
328 ssize_t ret = -1;
329 unsigned int sizeof_fds = nb_fd * sizeof(int);
330 char tmp[CMSG_SPACE(sizeof_fds)];
331
332 memset(&msg, 0, sizeof(msg));
333
334 /*
335 * Note: the consumerd receiver only supports receiving one FD per
336 * message.
337 */
338 assert(nb_fd == 1);
339
340 msg.msg_control = (caddr_t)tmp;
341 msg.msg_controllen = CMSG_LEN(sizeof_fds);
342
343 cmptr = CMSG_FIRSTHDR(&msg);
344 cmptr->cmsg_level = SOL_SOCKET;
345 cmptr->cmsg_type = SCM_RIGHTS;
346 cmptr->cmsg_len = CMSG_LEN(sizeof_fds);
347 memcpy(CMSG_DATA(cmptr), fds, sizeof_fds);
348 /* Sum of the length of all control messages in the buffer: */
349 msg.msg_controllen = cmptr->cmsg_len;
350
351 iov[0].iov_base = buf;
352 iov[0].iov_len = len;
353 msg.msg_iov = iov;
354 msg.msg_iovlen = 1;
355
356 ret = sendmsg(sock, &msg, 0);
357 if (ret < 0) {
358 perror("sendmsg");
359 }
360
361 return ret;
362 }
363
364 int ustcomm_send_app_msg(int sock, struct ustcomm_ust_msg *lum)
365 {
366 ssize_t len;
367
368 len = ustcomm_send_unix_sock(sock, lum, sizeof(*lum));
369 switch (len) {
370 case sizeof(*lum):
371 break;
372 case -1:
373 if (errno == ECONNRESET) {
374 fprintf(stderr, "remote end closed connection\n");
375 return 0;
376 }
377 return -1;
378 default:
379 fprintf(stderr, "incorrect message size: %zd\n", len);
380 return -1;
381 }
382 return 0;
383 }
384
385 int ustcomm_recv_app_reply(int sock, struct ustcomm_ust_reply *lur,
386 uint32_t expected_handle, uint32_t expected_cmd)
387 {
388 ssize_t len;
389
390 memset(lur, 0, sizeof(*lur));
391 len = ustcomm_recv_unix_sock(sock, lur, sizeof(*lur));
392 switch (len) {
393 case 0: /* orderly shutdown */
394 return -EINVAL;
395 case sizeof(*lur):
396 if (lur->handle != expected_handle) {
397 fprintf(stderr, "Unexpected result message handle\n");
398 return -EINVAL;
399 }
400
401 if (lur->cmd != expected_cmd) {
402 fprintf(stderr, "Unexpected result message command\n");
403 return -EINVAL;
404 }
405 if (lur->ret_code != USTCOMM_OK) {
406 /*
407 * Some errors are normal.. we should put this
408 * in a debug level message...
409 * fprintf(stderr, "remote operation failed with code %d.\n",
410 * lur->ret_code);
411 */
412 return lur->ret_code;
413 }
414 return 0;
415 case -1:
416 if (errno == ECONNRESET) {
417 fprintf(stderr, "remote end closed connection\n");
418 return -EINVAL;
419 }
420 return -1;
421 default:
422 fprintf(stderr, "incorrect message size: %zd\n", len);
423 return len > 0 ? -1 : len;
424 }
425 }
426
427 int ustcomm_send_app_cmd(int sock,
428 struct ustcomm_ust_msg *lum,
429 struct ustcomm_ust_reply *lur)
430 {
431 int ret;
432
433 ret = ustcomm_send_app_msg(sock, lum);
434 if (ret)
435 return ret;
436 ret = ustcomm_recv_app_reply(sock, lur, lum->handle, lum->cmd);
437 if (ret)
438 return ret;
439 return 0;
440 }
441
442
443 /*
444 * Receives a single fd from socket.
445 *
446 * Returns the size of received data
447 */
448 int ustcomm_recv_fd(int sock)
449 {
450 struct iovec iov[1];
451 int ret = 0;
452 int data_fd;
453 struct cmsghdr *cmsg;
454 char recv_fd[CMSG_SPACE(sizeof(int))];
455 struct msghdr msg;
456 union {
457 unsigned char vc[4];
458 int vi;
459 } tmp;
460 int i;
461
462 memset(&msg, 0, sizeof(msg));
463
464 /* Prepare to receive the structures */
465 iov[0].iov_base = &data_fd;
466 iov[0].iov_len = sizeof(data_fd);
467 msg.msg_iov = iov;
468 msg.msg_iovlen = 1;
469 msg.msg_control = recv_fd;
470 msg.msg_controllen = sizeof(recv_fd);
471
472 if ((ret = recvmsg(sock, &msg, 0)) < 0) {
473 perror("recvmsg");
474 goto end;
475 }
476 if (ret != sizeof(data_fd)) {
477 fprintf(stderr, "Received %d bytes, expected %zd", ret, sizeof(data_fd));
478 goto end;
479 }
480 cmsg = CMSG_FIRSTHDR(&msg);
481 if (!cmsg) {
482 fprintf(stderr, "Invalid control message header\n");
483 ret = -1;
484 goto end;
485 }
486 if (cmsg->cmsg_level != SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
487 fprintf(stderr, "Didn't received any fd\n");
488 ret = -1;
489 goto end;
490 }
491 /* this is our fd */
492 for (i = 0; i < sizeof(int); i++)
493 tmp.vc[i] = CMSG_DATA(cmsg)[i];
494 ret = tmp.vi;
495 /*
496 * Useful for fd leak debug.
497 * fprintf(stderr, "received fd %d\n", ret);
498 */
499 end:
500 return ret;
501 }
This page took 0.041085 seconds and 5 git commands to generate.