2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
30 #include <common/common.h>
31 #include <common/sessiond-comm/sessiond-comm.h>
36 * Connect to unix socket using the path name.
39 int lttcomm_connect_unix_sock(const char *pathname
)
41 struct sockaddr_un s_un
;
42 int fd
, ret
, closeret
;
44 if (strlen(pathname
) >= sizeof(s_un
.sun_path
)) {
45 ERR("unix socket address (\"%s\") is longer than the platform's limit (%zu > %zu).",
46 pathname
, strlen(pathname
) + 1,
47 sizeof(s_un
.sun_path
));
52 fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
59 memset(&s_un
, 0, sizeof(s_un
));
60 s_un
.sun_family
= AF_UNIX
;
61 strncpy(s_un
.sun_path
, pathname
, sizeof(s_un
.sun_path
));
62 s_un
.sun_path
[sizeof(s_un
.sun_path
) - 1] = '\0';
64 ret
= connect(fd
, (struct sockaddr
*) &s_un
, sizeof(s_un
));
67 * Don't print message on connect error, because connect is used in
68 * normal execution to detect if sessiond is alive.
85 * Do an accept(2) on the sock and return the new file descriptor. The socket
86 * MUST be bind(2) before.
89 int lttcomm_accept_unix_sock(int sock
)
92 struct sockaddr_un s_un
;
93 socklen_t len
= sizeof(s_un
);
96 new_fd
= accept(sock
, (struct sockaddr
*) &s_un
, &len
);
105 int lttcomm_create_anon_unix_socketpair(int *fds
)
107 if (socketpair(PF_UNIX
, SOCK_STREAM
, 0, fds
) < 0) {
108 PERROR("socketpair");
115 * Creates a AF_UNIX local socket using pathname bind the socket upon creation
119 int lttcomm_create_unix_sock(const char *pathname
)
121 struct sockaddr_un s_un
;
125 if (strlen(pathname
) >= sizeof(s_un
.sun_path
)) {
126 ERR("unix socket address (\"%s\") is longer than the platform's limit (%zu > %zu).",
127 pathname
, strlen(pathname
) + 1,
128 sizeof(s_un
.sun_path
));
133 /* Create server socket */
134 if ((fd
= socket(PF_UNIX
, SOCK_STREAM
, 0)) < 0) {
139 memset(&s_un
, 0, sizeof(s_un
));
140 s_un
.sun_family
= AF_UNIX
;
141 strncpy(s_un
.sun_path
, pathname
, sizeof(s_un
.sun_path
));
142 s_un
.sun_path
[sizeof(s_un
.sun_path
) - 1] = '\0';
144 /* Unlink the old file if present */
145 (void) unlink(pathname
);
146 ret
= bind(fd
, (struct sockaddr
*) &s_un
, sizeof(s_un
));
157 PERROR("close create unix sock");
164 * Make the socket listen using LTTNG_SESSIOND_COMM_MAX_LISTEN.
167 int lttcomm_listen_unix_sock(int sock
)
171 ret
= listen(sock
, LTTNG_SESSIOND_COMM_MAX_LISTEN
);
180 * Receive data of size len in put that data into the buf param. Using recvmsg
183 * Return the size of received data.
186 ssize_t
lttcomm_recv_unix_sock(int sock
, void *buf
, size_t len
)
193 memset(&msg
, 0, sizeof(msg
));
195 iov
[0].iov_base
= buf
;
196 iov
[0].iov_len
= len
;
201 len_last
= iov
[0].iov_len
;
202 ret
= lttng_recvmsg_nosigpipe(sock
, &msg
);
204 iov
[0].iov_base
+= ret
;
205 iov
[0].iov_len
-= ret
;
206 assert(ret
<= len_last
);
208 } while ((ret
> 0 && ret
< len_last
) || (ret
< 0 && errno
== EINTR
));
211 } else if (ret
> 0) {
214 /* Else ret = 0 meaning an orderly shutdown. */
220 * Receive data of size len in put that data into the buf param. Using recvmsg
221 * API. Only use with sockets set in non-blocking mode.
223 * Return the size of received data.
226 ssize_t
lttcomm_recv_unix_sock_non_block(int sock
, void *buf
, size_t len
)
232 memset(&msg
, 0, sizeof(msg
));
234 iov
[0].iov_base
= buf
;
235 iov
[0].iov_len
= len
;
240 ret
= lttng_recvmsg_nosigpipe(sock
, &msg
);
242 if (errno
== EINTR
) {
246 * Only warn about EPIPE when quiet mode is
248 * We consider EPIPE as expected.
250 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
262 * Send buf data of size len. Using sendmsg API.
264 * Return the size of sent data.
267 ssize_t
lttcomm_send_unix_sock(int sock
, const void *buf
, size_t len
)
273 memset(&msg
, 0, sizeof(msg
));
275 iov
[0].iov_base
= (void *) buf
;
276 iov
[0].iov_len
= len
;
280 while (iov
[0].iov_len
) {
281 ret
= sendmsg(sock
, &msg
, 0);
283 if (errno
== EINTR
) {
287 * Only warn about EPIPE when quiet mode is
289 * We consider EPIPE as expected.
291 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
297 iov
[0].iov_len
-= ret
;
298 iov
[0].iov_base
+= ret
;
306 * Send buf data of size len. Using sendmsg API.
307 * Only use with non-blocking sockets. The difference with the blocking version
308 * of the function is that this one does not retry to send on partial sends,
309 * except if the interruption was caused by a signal (EINTR).
311 * Return the size of sent data.
314 ssize_t
lttcomm_send_unix_sock_non_block(int sock
, const void *buf
, size_t len
)
320 memset(&msg
, 0, sizeof(msg
));
322 iov
[0].iov_base
= (void *) buf
;
323 iov
[0].iov_len
= len
;
328 ret
= sendmsg(sock
, &msg
, 0);
330 if (errno
== EINTR
) {
334 * Only warn about EPIPE when quiet mode is
336 * We consider EPIPE as expected.
338 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
350 * Shutdown cleanly a unix socket.
353 int lttcomm_close_unix_sock(int sock
)
357 /* Shutdown receptions and transmissions */
358 ret
= shutdown(sock
, SHUT_RDWR
);
363 closeret
= close(sock
);
372 * Send a message accompanied by fd(s) over a unix socket.
374 * Returns the size of data sent, or negative error value.
377 ssize_t
lttcomm_send_fds_unix_sock(int sock
, int *fds
, size_t nb_fd
)
380 struct cmsghdr
*cmptr
;
383 unsigned int sizeof_fds
= nb_fd
* sizeof(int);
384 char tmp
[CMSG_SPACE(sizeof_fds
)];
387 memset(&msg
, 0, sizeof(msg
));
388 memset(tmp
, 0, CMSG_SPACE(sizeof_fds
) * sizeof(char));
390 if (nb_fd
> LTTCOMM_MAX_SEND_FDS
)
393 msg
.msg_control
= (caddr_t
)tmp
;
394 msg
.msg_controllen
= CMSG_LEN(sizeof_fds
);
396 cmptr
= CMSG_FIRSTHDR(&msg
);
400 cmptr
->cmsg_level
= SOL_SOCKET
;
401 cmptr
->cmsg_type
= SCM_RIGHTS
;
402 cmptr
->cmsg_len
= CMSG_LEN(sizeof_fds
);
403 memcpy(CMSG_DATA(cmptr
), fds
, sizeof_fds
);
404 /* Sum of the length of all control messages in the buffer: */
405 msg
.msg_controllen
= cmptr
->cmsg_len
;
407 iov
[0].iov_base
= &dummy
;
413 ret
= sendmsg(sock
, &msg
, 0);
414 } while (ret
< 0 && errno
== EINTR
);
417 * Only warn about EPIPE when quiet mode is deactivated.
418 * We consider EPIPE as expected.
420 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
428 * Recv a message accompanied by fd(s) from a unix socket.
430 * Returns the size of received data, or negative error value.
432 * Expect at most "nb_fd" file descriptors. Returns the number of fd
433 * actually received in nb_fd.
436 ssize_t
lttcomm_recv_fds_unix_sock(int sock
, int *fds
, size_t nb_fd
)
440 struct cmsghdr
*cmsg
;
441 size_t sizeof_fds
= nb_fd
* sizeof(int);
442 char recv_fd
[CMSG_SPACE(sizeof_fds
)];
446 memset(&msg
, 0, sizeof(msg
));
448 /* Prepare to receive the structures */
449 iov
[0].iov_base
= &dummy
;
453 msg
.msg_control
= recv_fd
;
454 msg
.msg_controllen
= sizeof(recv_fd
);
457 ret
= recvmsg(sock
, &msg
, 0);
458 } while (ret
< 0 && errno
== EINTR
);
460 PERROR("recvmsg fds");
464 fprintf(stderr
, "Error: Received %zd bytes, expected %d\n",
468 if (msg
.msg_flags
& MSG_CTRUNC
) {
469 fprintf(stderr
, "Error: Control message truncated.\n");
473 cmsg
= CMSG_FIRSTHDR(&msg
);
475 fprintf(stderr
, "Error: Invalid control message header\n");
479 if (cmsg
->cmsg_level
!= SOL_SOCKET
|| cmsg
->cmsg_type
!= SCM_RIGHTS
) {
480 fprintf(stderr
, "Didn't received any fd\n");
484 if (cmsg
->cmsg_len
!= CMSG_LEN(sizeof_fds
)) {
485 fprintf(stderr
, "Error: Received %zu bytes of ancillary data, expected %zu\n",
486 (size_t) cmsg
->cmsg_len
, (size_t) CMSG_LEN(sizeof_fds
));
490 memcpy(fds
, CMSG_DATA(cmsg
), sizeof_fds
);
497 * Send a message with credentials over a unix socket.
499 * Returns the size of data sent, or negative error value.
502 ssize_t
lttcomm_send_creds_unix_sock(int sock
, void *buf
, size_t len
)
508 struct cmsghdr
*cmptr
;
509 size_t sizeof_cred
= sizeof(lttng_sock_cred
);
510 char anc_buf
[CMSG_SPACE(sizeof_cred
)];
511 lttng_sock_cred
*creds
;
513 memset(anc_buf
, 0, CMSG_SPACE(sizeof_cred
) * sizeof(char));
514 #endif /* __linux__ */
516 memset(&msg
, 0, sizeof(msg
));
518 iov
[0].iov_base
= buf
;
519 iov
[0].iov_len
= len
;
524 msg
.msg_control
= (caddr_t
) anc_buf
;
525 msg
.msg_controllen
= CMSG_LEN(sizeof_cred
);
527 cmptr
= CMSG_FIRSTHDR(&msg
);
531 cmptr
->cmsg_level
= SOL_SOCKET
;
532 cmptr
->cmsg_type
= LTTNG_SOCK_CREDS
;
533 cmptr
->cmsg_len
= CMSG_LEN(sizeof_cred
);
535 creds
= (lttng_sock_cred
*) CMSG_DATA(cmptr
);
537 LTTNG_SOCK_SET_UID_CRED(creds
, geteuid());
538 LTTNG_SOCK_SET_GID_CRED(creds
, getegid());
539 LTTNG_SOCK_SET_PID_CRED(creds
, getpid());
540 #endif /* __linux__ */
543 ret
= sendmsg(sock
, &msg
, 0);
544 } while (ret
< 0 && errno
== EINTR
);
547 * Only warn about EPIPE when quiet mode is deactivated.
548 * We consider EPIPE as expected.
550 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
558 * Recv a message accompanied with credentials from a unix socket.
560 * Returns the size of received data, or negative error value.
563 ssize_t
lttcomm_recv_creds_unix_sock(int sock
, void *buf
, size_t len
,
564 lttng_sock_cred
*creds
)
571 struct cmsghdr
*cmptr
;
572 size_t sizeof_cred
= sizeof(lttng_sock_cred
);
573 char anc_buf
[CMSG_SPACE(sizeof_cred
)];
574 #endif /* __linux__ */
576 memset(&msg
, 0, sizeof(msg
));
584 /* Prepare to receive the structures */
585 iov
[0].iov_base
= buf
;
586 iov
[0].iov_len
= len
;
591 msg
.msg_control
= anc_buf
;
592 msg
.msg_controllen
= sizeof(anc_buf
);
593 #endif /* __linux__ */
596 len_last
= iov
[0].iov_len
;
597 ret
= recvmsg(sock
, &msg
, 0);
599 iov
[0].iov_base
+= ret
;
600 iov
[0].iov_len
-= ret
;
601 assert(ret
<= len_last
);
603 } while ((ret
> 0 && ret
< len_last
) || (ret
< 0 && errno
== EINTR
));
605 PERROR("recvmsg fds");
607 } else if (ret
> 0) {
610 /* Else ret = 0 meaning an orderly shutdown. */
613 if (msg
.msg_flags
& MSG_CTRUNC
) {
614 fprintf(stderr
, "Error: Control message truncated.\n");
619 cmptr
= CMSG_FIRSTHDR(&msg
);
621 fprintf(stderr
, "Error: Invalid control message header\n");
626 if (cmptr
->cmsg_level
!= SOL_SOCKET
||
627 cmptr
->cmsg_type
!= LTTNG_SOCK_CREDS
) {
628 fprintf(stderr
, "Didn't received any credentials\n");
633 if (cmptr
->cmsg_len
!= CMSG_LEN(sizeof_cred
)) {
634 fprintf(stderr
, "Error: Received %zu bytes of ancillary data, expected %zu\n",
635 (size_t) cmptr
->cmsg_len
, (size_t) CMSG_LEN(sizeof_cred
));
640 memcpy(creds
, CMSG_DATA(cmptr
), sizeof_cred
);
641 #elif (defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__sun__) || defined(__APPLE__))
645 peer_ret
= getpeereid(sock
, &creds
->uid
, &creds
->gid
);
651 #error "Please implement credential support for your OS."
652 #endif /* __linux__ */
659 * Set socket option to use credentials passing.
663 int lttcomm_setsockopt_creds_unix_sock(int sock
)
667 /* Set socket for credentials retrieval */
668 ret
= setsockopt(sock
, SOL_SOCKET
, SO_PASSCRED
, &on
, sizeof(on
));
670 PERROR("setsockopt creds unix sock");
674 #elif (defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__sun__) || defined(__APPLE__))
676 int lttcomm_setsockopt_creds_unix_sock(int sock
)
681 #error "Please implement credential support for your OS."
682 #endif /* __linux__ */