2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <sys/types.h>
29 #include <common/defaults.h>
30 #include <common/error.h>
35 * INET protocol operations.
37 static const struct lttcomm_proto_ops inet6_ops
= {
38 .bind
= lttcomm_bind_inet6_sock
,
39 .close
= lttcomm_close_inet6_sock
,
40 .connect
= lttcomm_connect_inet6_sock
,
41 .accept
= lttcomm_accept_inet6_sock
,
42 .listen
= lttcomm_listen_inet6_sock
,
43 .recvmsg
= lttcomm_recvmsg_inet6_sock
,
44 .sendmsg
= lttcomm_sendmsg_inet6_sock
,
48 * Creates an PF_INET socket.
50 int lttcomm_create_inet6_sock(struct lttcomm_sock
*sock
, int type
, int proto
)
54 /* Create server socket */
55 if ((sock
->fd
= socket(PF_INET
, type
, proto
)) < 0) {
56 PERROR("socket inet6");
60 sock
->ops
= &inet6_ops
;
63 * Set socket option to reuse the address.
65 ret
= setsockopt(sock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
, sizeof(int));
67 PERROR("setsockopt inet6");
78 * Bind socket and return.
80 int lttcomm_bind_inet6_sock(struct lttcomm_sock
*sock
)
84 ret
= bind(sock
->fd
, &sock
->sockaddr
.addr
.sin6
,
85 sizeof(sock
->sockaddr
.addr
.sin6
));
94 * Connect PF_INET socket.
96 int lttcomm_connect_inet6_sock(struct lttcomm_sock
*sock
)
100 ret
= connect(sock
->fd
, (struct sockaddr
*) &sock
->sockaddr
.addr
.sin6
,
101 sizeof(sock
->sockaddr
.addr
.sin6
));
104 * Don't print message on connect error, because connect is used in
105 * normal execution to detect if sessiond is alive.
113 closeret
= close(sock
->fd
);
115 PERROR("close inet6");
122 * Do an accept(2) on the sock and return the new lttcomm socket. The socket
123 * MUST be bind(2) before.
125 struct lttcomm_sock
*lttcomm_accept_inet6_sock(struct lttcomm_sock
*sock
)
129 struct lttcomm_sock
*new_sock
;
131 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
133 * accept(2) does not exist for UDP so simply return the passed socket.
139 new_sock
= lttcomm_alloc_sock(LTTCOMM_INET
, sock
->proto
);
140 if (new_sock
== NULL
) {
145 new_fd
= accept(sock
->fd
,
146 (struct sockaddr
*) &new_sock
->sockaddr
.addr
.sin6
, &len
);
148 PERROR("accept inet6");
152 new_sock
->fd
= new_fd
;
163 * Make the socket listen using LTTNG_SESSIOND_COMM_MAX_LISTEN.
165 int lttcomm_listen_inet6_sock(struct lttcomm_sock
*sock
, int backlog
)
169 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
170 /* listen(2) does not exist for UDP so simply return success. */
175 /* Default listen backlog */
177 backlog
= LTTNG_SESSIOND_COMM_MAX_LISTEN
;
180 ret
= listen(sock
->fd
, backlog
);
182 PERROR("listen inet6");
190 * Receive data of size len in put that data into the buf param. Using recvmsg
193 * Return the size of received data.
195 ssize_t
lttcomm_recvmsg_inet6_sock(struct lttcomm_sock
*sock
, void *buf
,
196 size_t len
, int flags
)
202 memset(&msg
, 0, sizeof(msg
));
204 iov
[0].iov_base
= buf
;
205 iov
[0].iov_len
= len
;
209 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin6
;
210 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin6
);
217 ret
= recvmsg(sock
->fd
, &msg
, flags
);
218 } while (ret
< 0 && errno
== EINTR
);
220 PERROR("recvmsg inet6");
227 * Send buf data of size len. Using sendmsg API.
229 * Return the size of sent data.
231 ssize_t
lttcomm_sendmsg_inet6_sock(struct lttcomm_sock
*sock
, void *buf
,
232 size_t len
, int flags
)
238 memset(&msg
, 0, sizeof(msg
));
240 iov
[0].iov_base
= buf
;
241 iov
[0].iov_len
= len
;
245 switch (sock
->proto
) {
246 case LTTCOMM_SOCK_UDP
:
247 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin6
;
248 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin6
);
255 ret
= sendmsg(sock
->fd
, &msg
, flags
);
256 } while (ret
< 0 && errno
== EINTR
);
259 * Only warn about EPIPE when quiet mode is deactivated.
260 * We consider EPIPE as expected.
262 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
263 PERROR("sendmsg inet6");
271 * Shutdown cleanly and close.
273 int lttcomm_close_inet6_sock(struct lttcomm_sock
*sock
)
277 /* Don't try to close an invalid mark socket */
278 if (sock
->fd
== -1) {
282 ret
= close(sock
->fd
);
284 PERROR("close inet6");