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
, const 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, sizeof(tmp
));
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
);
401 cmptr
->cmsg_level
= SOL_SOCKET
;
402 cmptr
->cmsg_type
= SCM_RIGHTS
;
403 cmptr
->cmsg_len
= CMSG_LEN(sizeof_fds
);
404 memcpy(CMSG_DATA(cmptr
), fds
, sizeof_fds
);
405 /* Sum of the length of all control messages in the buffer: */
406 msg
.msg_controllen
= cmptr
->cmsg_len
;
408 iov
[0].iov_base
= &dummy
;
414 ret
= sendmsg(sock
, &msg
, 0);
415 } while (ret
< 0 && errno
== EINTR
);
418 * Only warn about EPIPE when quiet mode is deactivated.
419 * We consider EPIPE as expected.
421 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
429 * Recv a message accompanied by fd(s) from a unix socket.
431 * Returns the size of received data, or negative error value.
433 * Expect at most "nb_fd" file descriptors. Returns the number of fd
434 * actually received in nb_fd.
437 ssize_t
lttcomm_recv_fds_unix_sock(int sock
, int *fds
, size_t nb_fd
)
441 struct cmsghdr
*cmsg
;
442 size_t sizeof_fds
= nb_fd
* sizeof(int);
444 /* Account for the struct ucred cmsg in the buffer size */
445 char recv_buf
[CMSG_SPACE(sizeof_fds
) + CMSG_SPACE(sizeof(struct ucred
))];
449 memset(&msg
, 0, sizeof(msg
));
451 /* Prepare to receive the structures */
452 iov
[0].iov_base
= &dummy
;
457 cmsg
= (struct cmsghdr
*) recv_buf
;
458 cmsg
->cmsg_len
= CMSG_LEN(sizeof_fds
);
459 cmsg
->cmsg_level
= SOL_SOCKET
;
460 cmsg
->cmsg_type
= SCM_RIGHTS
;
462 msg
.msg_control
= cmsg
;
463 msg
.msg_controllen
= CMSG_LEN(sizeof(recv_buf
));
467 ret
= recvmsg(sock
, &msg
, 0);
468 } while (ret
< 0 && errno
== EINTR
);
470 PERROR("recvmsg fds");
475 fprintf(stderr
, "Error: Received %zd bytes, expected %d\n",
480 if (msg
.msg_flags
& MSG_CTRUNC
) {
481 fprintf(stderr
, "Error: Control message truncated.\n");
487 * If the socket was configured with SO_PASSCRED, the kernel will add a
488 * control message (cmsg) to the ancillary data of the unix socket. We
489 * need to expect a cmsg of the SCM_CREDENTIALS as the first control
492 for (cmsg
= CMSG_FIRSTHDR(&msg
); cmsg
!= NULL
; cmsg
= CMSG_NXTHDR(&msg
, cmsg
)) {
493 if (cmsg
->cmsg_level
!= SOL_SOCKET
) {
494 fprintf(stderr
, "Error: The socket needs to be of type SOL_SOCKET\n");
498 if (cmsg
->cmsg_type
== SCM_RIGHTS
) {
500 * We found the controle message for file descriptors,
501 * now copy the fds to the fds ptr and return success.
503 if (cmsg
->cmsg_len
!= CMSG_LEN(sizeof_fds
)) {
504 fprintf(stderr
, "Error: Received %zu bytes of"
505 "ancillary data for FDs, expected %zu\n",
506 (size_t) cmsg
->cmsg_len
,
507 (size_t) CMSG_LEN(sizeof_fds
));
511 memcpy(fds
, CMSG_DATA(cmsg
), sizeof_fds
);
515 if (cmsg
->cmsg_type
== SCM_CREDENTIALS
) {
517 * Expect credentials to be sent when expecting fds even
518 * if no credential were include in the send(). The
519 * kernel adds them...
529 * Send a message with credentials over a unix socket.
531 * Returns the size of data sent, or negative error value.
534 ssize_t
lttcomm_send_creds_unix_sock(int sock
, void *buf
, size_t len
)
540 struct cmsghdr
*cmptr
;
541 size_t sizeof_cred
= sizeof(lttng_sock_cred
);
542 char anc_buf
[CMSG_SPACE(sizeof_cred
)];
543 lttng_sock_cred
*creds
;
545 memset(anc_buf
, 0, CMSG_SPACE(sizeof_cred
) * sizeof(char));
546 #endif /* __linux__ */
548 memset(&msg
, 0, sizeof(msg
));
550 iov
[0].iov_base
= buf
;
551 iov
[0].iov_len
= len
;
556 msg
.msg_control
= (caddr_t
) anc_buf
;
557 msg
.msg_controllen
= CMSG_LEN(sizeof_cred
);
559 cmptr
= CMSG_FIRSTHDR(&msg
);
563 cmptr
->cmsg_level
= SOL_SOCKET
;
564 cmptr
->cmsg_type
= LTTNG_SOCK_CREDS
;
565 cmptr
->cmsg_len
= CMSG_LEN(sizeof_cred
);
567 creds
= (lttng_sock_cred
*) CMSG_DATA(cmptr
);
569 LTTNG_SOCK_SET_UID_CRED(creds
, geteuid());
570 LTTNG_SOCK_SET_GID_CRED(creds
, getegid());
571 LTTNG_SOCK_SET_PID_CRED(creds
, getpid());
572 #endif /* __linux__ */
575 ret
= sendmsg(sock
, &msg
, 0);
576 } while (ret
< 0 && errno
== EINTR
);
579 * Only warn about EPIPE when quiet mode is deactivated.
580 * We consider EPIPE as expected.
582 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
590 * Recv a message accompanied with credentials from a unix socket.
592 * Returns the size of received data, or negative error value.
595 ssize_t
lttcomm_recv_creds_unix_sock(int sock
, void *buf
, size_t len
,
596 lttng_sock_cred
*creds
)
603 struct cmsghdr
*cmptr
;
604 size_t sizeof_cred
= sizeof(lttng_sock_cred
);
605 char anc_buf
[CMSG_SPACE(sizeof_cred
)];
606 #endif /* __linux__ */
608 memset(&msg
, 0, sizeof(msg
));
616 /* Prepare to receive the structures */
617 iov
[0].iov_base
= buf
;
618 iov
[0].iov_len
= len
;
623 msg
.msg_control
= anc_buf
;
624 msg
.msg_controllen
= sizeof(anc_buf
);
625 #endif /* __linux__ */
628 len_last
= iov
[0].iov_len
;
629 ret
= recvmsg(sock
, &msg
, 0);
631 iov
[0].iov_base
+= ret
;
632 iov
[0].iov_len
-= ret
;
633 assert(ret
<= len_last
);
635 } while ((ret
> 0 && ret
< len_last
) || (ret
< 0 && errno
== EINTR
));
637 PERROR("recvmsg fds");
639 } else if (ret
> 0) {
642 /* Else ret = 0 meaning an orderly shutdown. */
645 if (msg
.msg_flags
& MSG_CTRUNC
) {
646 fprintf(stderr
, "Error: Control message truncated.\n");
651 cmptr
= CMSG_FIRSTHDR(&msg
);
653 fprintf(stderr
, "Error: Invalid control message header\n");
658 if (cmptr
->cmsg_level
!= SOL_SOCKET
||
659 cmptr
->cmsg_type
!= LTTNG_SOCK_CREDS
) {
660 fprintf(stderr
, "Didn't received any credentials\n");
665 if (cmptr
->cmsg_len
!= CMSG_LEN(sizeof_cred
)) {
666 fprintf(stderr
, "Error: Received %zu bytes of ancillary data, expected %zu\n",
667 (size_t) cmptr
->cmsg_len
, (size_t) CMSG_LEN(sizeof_cred
));
672 memcpy(creds
, CMSG_DATA(cmptr
), sizeof_cred
);
673 #elif (defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__sun__) || defined(__APPLE__))
677 peer_ret
= getpeereid(sock
, &creds
->uid
, &creds
->gid
);
683 #error "Please implement credential support for your OS."
684 #endif /* __linux__ */
691 * Set socket option to use credentials passing.
695 int lttcomm_setsockopt_creds_unix_sock(int sock
)
699 /* Set socket for credentials retrieval */
700 ret
= setsockopt(sock
, SOL_SOCKET
, SO_PASSCRED
, &on
, sizeof(on
));
702 PERROR("setsockopt creds unix sock");
706 #elif (defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__sun__) || defined(__APPLE__))
708 int lttcomm_setsockopt_creds_unix_sock(int sock
)
713 #error "Please implement credential support for your OS."
714 #endif /* __linux__ */