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 inet_ops
= {
38 .bind
= lttcomm_bind_inet_sock
,
39 .close
= lttcomm_close_inet_sock
,
40 .connect
= lttcomm_connect_inet_sock
,
41 .accept
= lttcomm_accept_inet_sock
,
42 .listen
= lttcomm_listen_inet_sock
,
43 .recvmsg
= lttcomm_recvmsg_inet_sock
,
44 .sendmsg
= lttcomm_sendmsg_inet_sock
,
48 * Creates an PF_INET socket.
50 __attribute__((visibility("hidden")))
51 int lttcomm_create_inet_sock(struct lttcomm_sock
*sock
, int type
, int proto
)
55 /* Create server socket */
56 if ((sock
->fd
= socket(PF_INET
, type
, proto
)) < 0) {
57 PERROR("socket inet");
61 sock
->ops
= &inet_ops
;
64 * Set socket option to reuse the address.
66 ret
= setsockopt(sock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
, sizeof(int));
68 PERROR("setsockopt inet");
79 * Bind socket and return.
81 __attribute__((visibility("hidden")))
82 int lttcomm_bind_inet_sock(struct lttcomm_sock
*sock
)
86 ret
= bind(sock
->fd
, &sock
->sockaddr
.addr
.sin
,
87 sizeof(sock
->sockaddr
.addr
.sin
));
96 * Connect PF_INET socket.
98 __attribute__((visibility("hidden")))
99 int lttcomm_connect_inet_sock(struct lttcomm_sock
*sock
)
103 ret
= connect(sock
->fd
, (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
,
104 sizeof(sock
->sockaddr
.addr
.sin
));
107 * Don't print message on connect error, because connect is used in
108 * normal execution to detect if sessiond is alive.
116 closeret
= close(sock
->fd
);
118 PERROR("close inet");
125 * Do an accept(2) on the sock and return the new lttcomm socket. The socket
126 * MUST be bind(2) before.
128 __attribute__((visibility("hidden")))
129 struct lttcomm_sock
*lttcomm_accept_inet_sock(struct lttcomm_sock
*sock
)
133 struct lttcomm_sock
*new_sock
;
135 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
137 * accept(2) does not exist for UDP so simply return the passed socket.
143 new_sock
= lttcomm_alloc_sock(sock
->proto
);
144 if (new_sock
== NULL
) {
149 new_fd
= accept(sock
->fd
, (struct sockaddr
*) &new_sock
->sockaddr
.addr
.sin
,
152 PERROR("accept inet");
156 new_sock
->fd
= new_fd
;
157 new_sock
->ops
= &inet_ops
;
168 * Make the socket listen using LTTNG_SESSIOND_COMM_MAX_LISTEN.
170 __attribute__((visibility("hidden")))
171 int lttcomm_listen_inet_sock(struct lttcomm_sock
*sock
, int backlog
)
175 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
176 /* listen(2) does not exist for UDP so simply return success. */
181 /* Default listen backlog */
183 backlog
= LTTNG_SESSIOND_COMM_MAX_LISTEN
;
186 ret
= listen(sock
->fd
, backlog
);
188 PERROR("listen inet");
196 * Receive data of size len in put that data into the buf param. Using recvmsg
199 * Return the size of received data.
201 __attribute__((visibility("hidden")))
202 ssize_t
lttcomm_recvmsg_inet_sock(struct lttcomm_sock
*sock
, void *buf
,
203 size_t len
, int flags
)
209 memset(&msg
, 0, sizeof(msg
));
211 iov
[0].iov_base
= buf
;
212 iov
[0].iov_len
= len
;
216 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
;
217 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin
);
224 ret
= recvmsg(sock
->fd
, &msg
, flags
);
225 } while (ret
< 0 && errno
== EINTR
);
227 PERROR("recvmsg inet");
234 * Send buf data of size len. Using sendmsg API.
236 * Return the size of sent data.
238 __attribute__((visibility("hidden")))
239 ssize_t
lttcomm_sendmsg_inet_sock(struct lttcomm_sock
*sock
, void *buf
,
240 size_t len
, int flags
)
246 memset(&msg
, 0, sizeof(msg
));
248 iov
[0].iov_base
= buf
;
249 iov
[0].iov_len
= len
;
253 switch (sock
->proto
) {
254 case LTTCOMM_SOCK_UDP
:
255 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
;
256 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin
);
263 ret
= sendmsg(sock
->fd
, &msg
, flags
);
264 } while (ret
< 0 && errno
== EINTR
);
267 * Only warn about EPIPE when quiet mode is deactivated.
268 * We consider EPIPE as expected.
270 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
271 PERROR("sendmsg inet");
279 * Shutdown cleanly and close.
281 __attribute__((visibility("hidden")))
282 int lttcomm_close_inet_sock(struct lttcomm_sock
*sock
)
286 /* Don't try to close an invalid marked socket */
287 if (sock
->fd
== -1) {
291 ret
= close(sock
->fd
);
293 PERROR("close inet");