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/common.h>
34 * INET protocol operations.
36 static const struct lttcomm_proto_ops inet_ops
= {
37 .bind
= lttcomm_bind_inet_sock
,
38 .close
= lttcomm_close_inet_sock
,
39 .connect
= lttcomm_connect_inet_sock
,
40 .accept
= lttcomm_accept_inet_sock
,
41 .listen
= lttcomm_listen_inet_sock
,
42 .recvmsg
= lttcomm_recvmsg_inet_sock
,
43 .sendmsg
= lttcomm_sendmsg_inet_sock
,
47 * Creates an PF_INET socket.
50 int lttcomm_create_inet_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 inet");
60 sock
->ops
= &inet_ops
;
63 * Set socket option to reuse the address.
65 ret
= setsockopt(sock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
, sizeof(int));
67 PERROR("setsockopt inet");
78 * Bind socket and return.
81 int lttcomm_bind_inet_sock(struct lttcomm_sock
*sock
)
85 ret
= bind(sock
->fd
, &sock
->sockaddr
.addr
.sin
,
86 sizeof(sock
->sockaddr
.addr
.sin
));
95 * Connect PF_INET socket.
98 int lttcomm_connect_inet_sock(struct lttcomm_sock
*sock
)
102 ret
= connect(sock
->fd
, (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
,
103 sizeof(sock
->sockaddr
.addr
.sin
));
106 * Don't print message on connect error, because connect is used in
107 * normal execution to detect if sessiond is alive.
115 closeret
= close(sock
->fd
);
117 PERROR("close inet");
124 * Do an accept(2) on the sock and return the new lttcomm socket. The socket
125 * MUST be bind(2) before.
128 struct lttcomm_sock
*lttcomm_accept_inet_sock(struct lttcomm_sock
*sock
)
132 struct lttcomm_sock
*new_sock
;
134 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
136 * accept(2) does not exist for UDP so simply return the passed socket.
142 new_sock
= lttcomm_alloc_sock(sock
->proto
);
143 if (new_sock
== NULL
) {
147 len
= sizeof(new_sock
->sockaddr
.addr
.sin
);
150 new_fd
= accept(sock
->fd
, (struct sockaddr
*) &new_sock
->sockaddr
.addr
.sin
,
153 PERROR("accept inet");
157 new_sock
->fd
= new_fd
;
158 new_sock
->ops
= &inet_ops
;
169 * Make the socket listen using LTTNG_SESSIOND_COMM_MAX_LISTEN.
172 int lttcomm_listen_inet_sock(struct lttcomm_sock
*sock
, int backlog
)
176 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
177 /* listen(2) does not exist for UDP so simply return success. */
182 /* Default listen backlog */
184 backlog
= LTTNG_SESSIOND_COMM_MAX_LISTEN
;
187 ret
= listen(sock
->fd
, backlog
);
189 PERROR("listen inet");
197 * Receive data of size len in put that data into the buf param. Using recvmsg
200 * Return the size of received data.
203 ssize_t
lttcomm_recvmsg_inet_sock(struct lttcomm_sock
*sock
, void *buf
,
204 size_t len
, int flags
)
211 memset(&msg
, 0, sizeof(msg
));
213 iov
[0].iov_base
= buf
;
214 iov
[0].iov_len
= len
;
218 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
;
219 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin
);
222 len_last
= iov
[0].iov_len
;
223 ret
= recvmsg(sock
->fd
, &msg
, flags
);
225 iov
[0].iov_base
+= ret
;
226 iov
[0].iov_len
-= ret
;
227 assert(ret
<= len_last
);
229 } while ((ret
> 0 && ret
< len_last
) || (ret
< 0 && errno
== EINTR
));
231 PERROR("recvmsg inet");
232 } else if (ret
> 0) {
235 /* Else ret = 0 meaning an orderly shutdown. */
241 * Send buf data of size len. Using sendmsg API.
243 * Return the size of sent data.
246 ssize_t
lttcomm_sendmsg_inet_sock(struct lttcomm_sock
*sock
, void *buf
,
247 size_t len
, int flags
)
253 memset(&msg
, 0, sizeof(msg
));
255 iov
[0].iov_base
= buf
;
256 iov
[0].iov_len
= len
;
260 switch (sock
->proto
) {
261 case LTTCOMM_SOCK_UDP
:
262 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
;
263 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin
);
270 ret
= sendmsg(sock
->fd
, &msg
, flags
);
271 } while (ret
< 0 && errno
== EINTR
);
274 * Only warn about EPIPE when quiet mode is deactivated.
275 * We consider EPIPE as expected.
277 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
278 PERROR("sendmsg inet");
286 * Shutdown cleanly and close.
289 int lttcomm_close_inet_sock(struct lttcomm_sock
*sock
)
293 /* Don't try to close an invalid marked socket */
294 if (sock
->fd
== -1) {
298 ret
= close(sock
->fd
);
300 PERROR("close inet");