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/compat/time.h>
32 #include <common/common.h>
33 #include <common/time.h>
37 #define RECONNECT_DELAY 200 /* ms */
40 * INET protocol operations.
42 static const struct lttcomm_proto_ops inet_ops
= {
43 .bind
= lttcomm_bind_inet_sock
,
44 .close
= lttcomm_close_inet_sock
,
45 .connect
= lttcomm_connect_inet_sock
,
46 .accept
= lttcomm_accept_inet_sock
,
47 .listen
= lttcomm_listen_inet_sock
,
48 .recvmsg
= lttcomm_recvmsg_inet_sock
,
49 .sendmsg
= lttcomm_sendmsg_inet_sock
,
52 unsigned long lttcomm_inet_tcp_timeout
;
55 * Creates an PF_INET socket.
58 int lttcomm_create_inet_sock(struct lttcomm_sock
*sock
, int type
, int proto
)
61 unsigned long timeout
;
63 /* Create server socket */
64 if ((sock
->fd
= socket(PF_INET
, type
, proto
)) < 0) {
65 PERROR("socket inet");
69 sock
->ops
= &inet_ops
;
72 * Set socket option to reuse the address.
74 ret
= setsockopt(sock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
, sizeof(int));
76 PERROR("setsockopt inet");
79 timeout
= lttcomm_get_network_timeout();
81 ret
= lttcomm_setsockopt_rcv_timeout(sock
->fd
, timeout
);
85 ret
= lttcomm_setsockopt_snd_timeout(sock
->fd
, timeout
);
98 * Bind socket and return.
101 int lttcomm_bind_inet_sock(struct lttcomm_sock
*sock
)
103 return bind(sock
->fd
,
104 (const struct sockaddr
*) &sock
->sockaddr
.addr
.sin
,
105 sizeof(sock
->sockaddr
.addr
.sin
));
109 int connect_no_timeout(struct lttcomm_sock
*sock
)
111 return connect(sock
->fd
, (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
,
112 sizeof(sock
->sockaddr
.addr
.sin
));
116 * Return time_a - time_b in milliseconds.
119 unsigned long time_diff_ms(struct timespec
*time_a
,
120 struct timespec
*time_b
)
124 unsigned long result_ms
;
126 sec_diff
= time_a
->tv_sec
- time_b
->tv_sec
;
127 nsec_diff
= time_a
->tv_nsec
- time_b
->tv_nsec
;
129 result_ms
= sec_diff
* MSEC_PER_SEC
;
130 result_ms
+= nsec_diff
/ NSEC_PER_MSEC
;
135 int connect_with_timeout(struct lttcomm_sock
*sock
)
137 unsigned long timeout
= lttcomm_get_network_timeout();
138 int ret
, flags
, connect_ret
;
139 struct timespec orig_time
, cur_time
;
141 ret
= fcntl(sock
->fd
, F_GETFL
, 0);
148 /* Set socket to nonblock */
149 ret
= fcntl(sock
->fd
, F_SETFL
, flags
| O_NONBLOCK
);
155 ret
= lttng_clock_gettime(CLOCK_MONOTONIC
, &orig_time
);
157 PERROR("clock_gettime");
161 connect_ret
= connect(sock
->fd
,
162 (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
,
163 sizeof(sock
->sockaddr
.addr
.sin
));
164 if (connect_ret
== -1 && errno
!= EAGAIN
165 && errno
!= EWOULDBLOCK
166 && errno
!= EINPROGRESS
) {
168 } else if (!connect_ret
) {
169 /* Connect succeeded */
173 DBG("Asynchronous connect for sock %d, performing polling with"
174 " timeout: %lums", sock
->fd
, timeout
);
176 * Perform poll loop following EINPROGRESS recommendation from
177 * connect(2) man page.
183 fds
.events
= POLLOUT
;
185 ret
= poll(&fds
, 1, RECONNECT_DELAY
);
188 } else if (ret
> 0) {
190 socklen_t optval_len
= sizeof(optval
);
192 if (!(fds
.revents
& POLLOUT
)) {
193 /* Either hup or error */
198 ret
= getsockopt(sock
->fd
, SOL_SOCKET
,
199 SO_ERROR
, &optval
, &optval_len
);
201 PERROR("getsockopt");
208 /* Get actual connect() errno from opt_val */
213 /* ret == 0: timeout */
214 ret
= lttng_clock_gettime(CLOCK_MONOTONIC
, &cur_time
);
216 PERROR("clock_gettime");
220 } while (time_diff_ms(&cur_time
, &orig_time
) < timeout
);
227 /* Restore initial flags */
228 ret
= fcntl(sock
->fd
, F_SETFL
, flags
);
231 /* Continue anyway */
238 * Connect PF_INET socket.
241 int lttcomm_connect_inet_sock(struct lttcomm_sock
*sock
)
245 if (lttcomm_get_network_timeout()) {
246 ret
= connect_with_timeout(sock
);
248 ret
= connect_no_timeout(sock
);
258 closeret
= close(sock
->fd
);
260 PERROR("close inet");
267 * Do an accept(2) on the sock and return the new lttcomm socket. The socket
268 * MUST be bind(2) before.
271 struct lttcomm_sock
*lttcomm_accept_inet_sock(struct lttcomm_sock
*sock
)
275 struct lttcomm_sock
*new_sock
;
276 unsigned long timeout
;
278 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
280 * accept(2) does not exist for UDP so simply return the passed socket.
286 new_sock
= lttcomm_alloc_sock(sock
->proto
);
287 if (new_sock
== NULL
) {
291 len
= sizeof(new_sock
->sockaddr
.addr
.sin
);
294 new_fd
= accept(sock
->fd
, (struct sockaddr
*) &new_sock
->sockaddr
.addr
.sin
,
297 PERROR("accept inet");
300 timeout
= lttcomm_get_network_timeout();
304 ret
= lttcomm_setsockopt_rcv_timeout(new_fd
, timeout
);
308 ret
= lttcomm_setsockopt_snd_timeout(new_fd
, timeout
);
314 new_sock
->fd
= new_fd
;
315 new_sock
->ops
= &inet_ops
;
321 if (close(new_fd
) < 0) {
322 PERROR("accept inet close fd");
331 * Make the socket listen using LTTNG_SESSIOND_COMM_MAX_LISTEN.
334 int lttcomm_listen_inet_sock(struct lttcomm_sock
*sock
, int backlog
)
338 if (sock
->proto
== LTTCOMM_SOCK_UDP
) {
339 /* listen(2) does not exist for UDP so simply return success. */
344 /* Default listen backlog */
346 backlog
= LTTNG_SESSIOND_COMM_MAX_LISTEN
;
349 ret
= listen(sock
->fd
, backlog
);
351 PERROR("listen inet");
359 * Receive data of size len in put that data into the buf param. Using recvmsg
362 * Return the size of received data.
365 ssize_t
lttcomm_recvmsg_inet_sock(struct lttcomm_sock
*sock
, void *buf
,
366 size_t len
, int flags
)
373 memset(&msg
, 0, sizeof(msg
));
375 iov
[0].iov_base
= buf
;
376 iov
[0].iov_len
= len
;
380 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
;
381 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin
);
384 len_last
= iov
[0].iov_len
;
385 ret
= recvmsg(sock
->fd
, &msg
, flags
);
387 if (flags
& MSG_DONTWAIT
) {
390 iov
[0].iov_base
+= ret
;
391 iov
[0].iov_len
-= ret
;
392 assert(ret
<= len_last
);
394 } while ((ret
> 0 && ret
< len_last
) || (ret
< 0 && errno
== EINTR
));
397 PERROR("recvmsg inet");
398 } else if (ret
> 0) {
401 /* Else ret = 0 meaning an orderly shutdown. */
407 * Send buf data of size len. Using sendmsg API.
409 * Return the size of sent data.
412 ssize_t
lttcomm_sendmsg_inet_sock(struct lttcomm_sock
*sock
, const void *buf
,
413 size_t len
, int flags
)
419 memset(&msg
, 0, sizeof(msg
));
421 iov
[0].iov_base
= (void *) buf
;
422 iov
[0].iov_len
= len
;
426 switch (sock
->proto
) {
427 case LTTCOMM_SOCK_UDP
:
428 msg
.msg_name
= (struct sockaddr
*) &sock
->sockaddr
.addr
.sin
;
429 msg
.msg_namelen
= sizeof(sock
->sockaddr
.addr
.sin
);
436 ret
= sendmsg(sock
->fd
, &msg
, flags
);
437 } while (ret
< 0 && errno
== EINTR
);
440 * Only warn about EPIPE when quiet mode is deactivated.
441 * We consider EPIPE as expected.
443 if (errno
!= EPIPE
|| !lttng_opt_quiet
) {
444 PERROR("sendmsg inet");
452 * Shutdown cleanly and close.
455 int lttcomm_close_inet_sock(struct lttcomm_sock
*sock
)
459 /* Don't try to close an invalid marked socket */
460 if (sock
->fd
== -1) {
464 ret
= close(sock
->fd
);
466 PERROR("close inet");
476 * Return value read from /proc or else 0 if value is not found.
478 static unsigned long read_proc_value(const char *path
)
483 unsigned long val
= 0;
486 fd
= open(path
, O_RDONLY
);
491 size_ret
= lttng_read(fd
, buf
, sizeof(buf
));
493 * Allow reading a file smaller than buf, but keep space for
496 if (size_ret
< 0 || size_ret
>= sizeof(buf
)) {
497 PERROR("read proc failed");
500 buf
[size_ret
] = '\0';
503 r_val
= strtol(buf
, NULL
, 10);
504 if (errno
!= 0 || r_val
< -1L) {
516 PERROR("close /proc value");
523 void lttcomm_inet_init(void)
525 unsigned long syn_retries
, fin_timeout
, syn_timeout
, env
;
527 env
= lttcomm_get_network_timeout();
529 lttcomm_inet_tcp_timeout
= env
;
533 /* Assign default value and see if we can change it. */
534 lttcomm_inet_tcp_timeout
= DEFAULT_INET_TCP_TIMEOUT
;
536 syn_retries
= read_proc_value(LTTCOMM_INET_PROC_SYN_RETRIES_PATH
);
537 fin_timeout
= read_proc_value(LTTCOMM_INET_PROC_FIN_TIMEOUT_PATH
);
539 syn_timeout
= syn_retries
* LTTCOMM_INET_SYN_TIMEOUT_FACTOR
;
542 * Get the maximum between the two possible timeout value and use that to
543 * get the maximum with the default timeout.
545 lttcomm_inet_tcp_timeout
= max_t(unsigned long,
546 max_t(unsigned long, syn_timeout
, fin_timeout
),
547 lttcomm_inet_tcp_timeout
);
550 DBG("TCP inet operation timeout set to %lu sec", lttcomm_inet_tcp_timeout
);