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 do {
259 ret = recvmsg(sock, &msg, 0);
260 } while (ret < 0 && errno == EINTR);
261 if (ret < 0) {
262 perror("recvmsg");
263 }
264
265 return ret;
266 }
267
268 /*
269 * ustcomm_send_unix_sock
270 *
271 * Send buf data of size len. Using sendmsg API.
272 * Return the size of sent data.
273 */
274 ssize_t ustcomm_send_unix_sock(int sock, void *buf, size_t len)
275 {
276 struct msghdr msg;
277 struct iovec iov[1];
278 ssize_t ret = -1;
279
280 memset(&msg, 0, sizeof(msg));
281
282 iov[0].iov_base = buf;
283 iov[0].iov_len = len;
284 msg.msg_iov = iov;
285 msg.msg_iovlen = 1;
286
287 /*
288 * Using the MSG_NOSIGNAL when sending data from sessiond to
289 * libust, so libust does not receive an unhandled SIGPIPE or
290 * SIGURG. The sessiond receiver side can be made more resilient
291 * by ignoring SIGPIPE, but we don't have this luxury on the
292 * libust side.
293 */
294 ret = sendmsg(sock, &msg, MSG_NOSIGNAL);
295 if (ret < 0) {
296 perror("sendmsg");
297 }
298
299 return ret;
300 }
301
302 /*
303 * ustcomm_close_unix_sock
304 *
305 * Shutdown cleanly a unix socket.
306 */
307 int ustcomm_close_unix_sock(int sock)
308 {
309 int ret;
310
311 /* Shutdown receptions and transmissions */
312 ret = shutdown(sock, SHUT_RDWR);
313 if (ret < 0) {
314 perror("shutdown");
315 }
316
317 return ret;
318 }
319
320 /*
321 * ustcomm_send_fds_unix_sock
322 *
323 * Send multiple fds on a unix socket.
324 */
325 ssize_t ustcomm_send_fds_unix_sock(int sock, void *buf, int *fds, size_t nb_fd, size_t len)
326 {
327 struct msghdr msg;
328 struct cmsghdr *cmptr;
329 struct iovec iov[1];
330 ssize_t ret = -1;
331 unsigned int sizeof_fds = nb_fd * sizeof(int);
332 char tmp[CMSG_SPACE(sizeof_fds)];
333
334 memset(&msg, 0, sizeof(msg));
335
336 /*
337 * Note: the consumerd receiver only supports receiving one FD per
338 * message.
339 */
340 assert(nb_fd == 1);
341
342 msg.msg_control = (caddr_t)tmp;
343 msg.msg_controllen = CMSG_LEN(sizeof_fds);
344
345 cmptr = CMSG_FIRSTHDR(&msg);
346 cmptr->cmsg_level = SOL_SOCKET;
347 cmptr->cmsg_type = SCM_RIGHTS;
348 cmptr->cmsg_len = CMSG_LEN(sizeof_fds);
349 memcpy(CMSG_DATA(cmptr), fds, sizeof_fds);
350 /* Sum of the length of all control messages in the buffer: */
351 msg.msg_controllen = cmptr->cmsg_len;
352
353 iov[0].iov_base = buf;
354 iov[0].iov_len = len;
355 msg.msg_iov = iov;
356 msg.msg_iovlen = 1;
357
358 ret = sendmsg(sock, &msg, 0);
359 if (ret < 0) {
360 perror("sendmsg");
361 }
362
363 return ret;
364 }
365
366 int ustcomm_send_app_msg(int sock, struct ustcomm_ust_msg *lum)
367 {
368 ssize_t len;
369
370 len = ustcomm_send_unix_sock(sock, lum, sizeof(*lum));
371 switch (len) {
372 case sizeof(*lum):
373 break;
374 case -1:
375 if (errno == ECONNRESET) {
376 fprintf(stderr, "remote end closed connection\n");
377 return 0;
378 }
379 return -1;
380 default:
381 fprintf(stderr, "incorrect message size: %zd\n", len);
382 return -1;
383 }
384 return 0;
385 }
386
387 int ustcomm_recv_app_reply(int sock, struct ustcomm_ust_reply *lur,
388 uint32_t expected_handle, uint32_t expected_cmd)
389 {
390 ssize_t len;
391
392 memset(lur, 0, sizeof(*lur));
393 len = ustcomm_recv_unix_sock(sock, lur, sizeof(*lur));
394 switch (len) {
395 case 0: /* orderly shutdown */
396 return -EINVAL;
397 case sizeof(*lur):
398 if (lur->handle != expected_handle) {
399 fprintf(stderr, "Unexpected result message handle\n");
400 return -EINVAL;
401 }
402
403 if (lur->cmd != expected_cmd) {
404 fprintf(stderr, "Unexpected result message command\n");
405 return -EINVAL;
406 }
407 if (lur->ret_code != USTCOMM_OK) {
408 /*
409 * Some errors are normal.. we should put this
410 * in a debug level message...
411 * fprintf(stderr, "remote operation failed with code %d.\n",
412 * lur->ret_code);
413 */
414 return lur->ret_code;
415 }
416 return 0;
417 case -1:
418 if (errno == ECONNRESET) {
419 fprintf(stderr, "remote end closed connection\n");
420 return -EINVAL;
421 }
422 return -1;
423 default:
424 fprintf(stderr, "incorrect message size: %zd\n", len);
425 return len > 0 ? -1 : len;
426 }
427 }
428
429 int ustcomm_send_app_cmd(int sock,
430 struct ustcomm_ust_msg *lum,
431 struct ustcomm_ust_reply *lur)
432 {
433 int ret;
434
435 ret = ustcomm_send_app_msg(sock, lum);
436 if (ret)
437 return ret;
438 ret = ustcomm_recv_app_reply(sock, lur, lum->handle, lum->cmd);
439 if (ret)
440 return ret;
441 return 0;
442 }
443
444
445 /*
446 * Receives a single fd from socket.
447 *
448 * Returns the size of received data
449 */
450 int ustcomm_recv_fd(int sock)
451 {
452 struct iovec iov[1];
453 int ret = 0;
454 int data_fd;
455 struct cmsghdr *cmsg;
456 char recv_fd[CMSG_SPACE(sizeof(int))];
457 struct msghdr msg;
458 union {
459 unsigned char vc[4];
460 int vi;
461 } tmp;
462 int i;
463
464 memset(&msg, 0, sizeof(msg));
465
466 /* Prepare to receive the structures */
467 iov[0].iov_base = &data_fd;
468 iov[0].iov_len = sizeof(data_fd);
469 msg.msg_iov = iov;
470 msg.msg_iovlen = 1;
471 msg.msg_control = recv_fd;
472 msg.msg_controllen = sizeof(recv_fd);
473
474 do {
475 ret = recvmsg(sock, &msg, 0);
476 } while (ret < 0 && errno == EINTR);
477 if (ret < 0) {
478 perror("recvmsg");
479 goto end;
480 }
481 if (ret != sizeof(data_fd)) {
482 fprintf(stderr, "Received %d bytes, expected %zd", ret, sizeof(data_fd));
483 goto end;
484 }
485 cmsg = CMSG_FIRSTHDR(&msg);
486 if (!cmsg) {
487 fprintf(stderr, "Invalid control message header\n");
488 ret = -1;
489 goto end;
490 }
491 if (cmsg->cmsg_level != SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
492 fprintf(stderr, "Didn't received any fd\n");
493 ret = -1;
494 goto end;
495 }
496 /* this is our fd */
497 for (i = 0; i < sizeof(int); i++)
498 tmp.vc[i] = CMSG_DATA(cmsg)[i];
499 ret = tmp.vi;
500 /*
501 * Useful for fd leak debug.
502 * fprintf(stderr, "received fd %d\n", ret);
503 */
504 end:
505 return ret;
506 }
This page took 0.041285 seconds and 5 git commands to generate.