Get the maximum TCP timeout in sessiond
[lttng-tools.git] / src / common / sessiond-comm / inet.c
CommitLineData
6364a07a
DG
1/*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 *
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.
7 *
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
11 * more details.
12 *
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.
16 */
17
18#define _GNU_SOURCE
19#include <assert.h>
20#include <limits.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <unistd.h>
27#include <errno.h>
cb5f6f14 28#include <fcntl.h>
6364a07a 29
90e535ef 30#include <common/common.h>
6364a07a
DG
31
32#include "inet.h"
33
34/*
35 * INET protocol operations.
36 */
37static 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,
45};
46
cb5f6f14
DG
47unsigned long lttcomm_inet_tcp_timeout;
48
6364a07a
DG
49/*
50 * Creates an PF_INET socket.
51 */
90e535ef 52LTTNG_HIDDEN
6364a07a
DG
53int lttcomm_create_inet_sock(struct lttcomm_sock *sock, int type, int proto)
54{
de5e9086 55 int val = 1, ret;
6364a07a
DG
56
57 /* Create server socket */
58 if ((sock->fd = socket(PF_INET, type, proto)) < 0) {
59 PERROR("socket inet");
60 goto error;
61 }
62
63 sock->ops = &inet_ops;
64
65 /*
66 * Set socket option to reuse the address.
67 */
68 ret = setsockopt(sock->fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(int));
69 if (ret < 0) {
70 PERROR("setsockopt inet");
71 goto error;
72 }
73
74 return 0;
75
76error:
77 return -1;
78}
79
80/*
81 * Bind socket and return.
82 */
90e535ef 83LTTNG_HIDDEN
6364a07a
DG
84int lttcomm_bind_inet_sock(struct lttcomm_sock *sock)
85{
86 int ret;
87
88 ret = bind(sock->fd, &sock->sockaddr.addr.sin,
89 sizeof(sock->sockaddr.addr.sin));
90 if (ret < 0) {
91 PERROR("bind inet");
92 }
93
94 return ret;
95}
96
97/*
98 * Connect PF_INET socket.
99 */
90e535ef 100LTTNG_HIDDEN
6364a07a
DG
101int lttcomm_connect_inet_sock(struct lttcomm_sock *sock)
102{
103 int ret, closeret;
104
105 ret = connect(sock->fd, (struct sockaddr *) &sock->sockaddr.addr.sin,
106 sizeof(sock->sockaddr.addr.sin));
107 if (ret < 0) {
69e52df1 108 PERROR("connect");
6364a07a
DG
109 goto error_connect;
110 }
111
112 return ret;
113
114error_connect:
115 closeret = close(sock->fd);
116 if (closeret) {
117 PERROR("close inet");
118 }
119
120 return ret;
121}
122
123/*
124 * Do an accept(2) on the sock and return the new lttcomm socket. The socket
125 * MUST be bind(2) before.
126 */
90e535ef 127LTTNG_HIDDEN
6364a07a
DG
128struct lttcomm_sock *lttcomm_accept_inet_sock(struct lttcomm_sock *sock)
129{
130 int new_fd;
88a5db70 131 socklen_t len;
6364a07a
DG
132 struct lttcomm_sock *new_sock;
133
134 if (sock->proto == LTTCOMM_SOCK_UDP) {
135 /*
136 * accept(2) does not exist for UDP so simply return the passed socket.
137 */
138 new_sock = sock;
139 goto end;
140 }
141
de5e9086 142 new_sock = lttcomm_alloc_sock(sock->proto);
6364a07a
DG
143 if (new_sock == NULL) {
144 goto error;
145 }
146
88a5db70
DG
147 len = sizeof(new_sock->sockaddr.addr.sin);
148
6364a07a
DG
149 /* Blocking call */
150 new_fd = accept(sock->fd, (struct sockaddr *) &new_sock->sockaddr.addr.sin,
151 &len);
152 if (new_fd < 0) {
153 PERROR("accept inet");
154 goto error;
155 }
156
157 new_sock->fd = new_fd;
de5e9086 158 new_sock->ops = &inet_ops;
6364a07a
DG
159
160end:
161 return new_sock;
162
163error:
164 free(new_sock);
165 return NULL;
166}
167
168/*
169 * Make the socket listen using LTTNG_SESSIOND_COMM_MAX_LISTEN.
170 */
90e535ef 171LTTNG_HIDDEN
6364a07a
DG
172int lttcomm_listen_inet_sock(struct lttcomm_sock *sock, int backlog)
173{
174 int ret;
175
176 if (sock->proto == LTTCOMM_SOCK_UDP) {
177 /* listen(2) does not exist for UDP so simply return success. */
178 ret = 0;
179 goto end;
180 }
181
182 /* Default listen backlog */
183 if (backlog <= 0) {
184 backlog = LTTNG_SESSIOND_COMM_MAX_LISTEN;
185 }
186
187 ret = listen(sock->fd, backlog);
188 if (ret < 0) {
189 PERROR("listen inet");
190 }
191
192end:
193 return ret;
194}
195
196/*
197 * Receive data of size len in put that data into the buf param. Using recvmsg
198 * API.
199 *
200 * Return the size of received data.
201 */
90e535ef 202LTTNG_HIDDEN
6364a07a
DG
203ssize_t lttcomm_recvmsg_inet_sock(struct lttcomm_sock *sock, void *buf,
204 size_t len, int flags)
205{
206 struct msghdr msg;
207 struct iovec iov[1];
208 ssize_t ret = -1;
7c5aef62 209 size_t len_last;
6364a07a
DG
210
211 memset(&msg, 0, sizeof(msg));
212
213 iov[0].iov_base = buf;
214 iov[0].iov_len = len;
215 msg.msg_iov = iov;
216 msg.msg_iovlen = 1;
217
218 msg.msg_name = (struct sockaddr *) &sock->sockaddr.addr.sin;
219 msg.msg_namelen = sizeof(sock->sockaddr.addr.sin);
220
6364a07a 221 do {
7c5aef62 222 len_last = iov[0].iov_len;
6364a07a 223 ret = recvmsg(sock->fd, &msg, flags);
7c5aef62
DG
224 if (ret > 0) {
225 iov[0].iov_base += ret;
226 iov[0].iov_len -= ret;
227 assert(ret <= len_last);
228 }
229 } while ((ret > 0 && ret < len_last) || (ret < 0 && errno == EINTR));
6364a07a
DG
230 if (ret < 0) {
231 PERROR("recvmsg inet");
7c5aef62
DG
232 } else if (ret > 0) {
233 ret = len;
6364a07a 234 }
7c5aef62 235 /* Else ret = 0 meaning an orderly shutdown. */
6364a07a
DG
236
237 return ret;
238}
239
240/*
241 * Send buf data of size len. Using sendmsg API.
242 *
243 * Return the size of sent data.
244 */
90e535ef 245LTTNG_HIDDEN
6364a07a
DG
246ssize_t lttcomm_sendmsg_inet_sock(struct lttcomm_sock *sock, void *buf,
247 size_t len, int flags)
248{
249 struct msghdr msg;
250 struct iovec iov[1];
251 ssize_t ret = -1;
252
253 memset(&msg, 0, sizeof(msg));
254
255 iov[0].iov_base = buf;
256 iov[0].iov_len = len;
257 msg.msg_iov = iov;
258 msg.msg_iovlen = 1;
259
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);
264 break;
265 default:
266 break;
267 }
268
269 do {
270 ret = sendmsg(sock->fd, &msg, flags);
271 } while (ret < 0 && errno == EINTR);
272 if (ret < 0) {
273 /*
274 * Only warn about EPIPE when quiet mode is deactivated.
275 * We consider EPIPE as expected.
276 */
277 if (errno != EPIPE || !lttng_opt_quiet) {
278 PERROR("sendmsg inet");
279 }
280 }
281
282 return ret;
283}
284
285/*
286 * Shutdown cleanly and close.
287 */
90e535ef 288LTTNG_HIDDEN
6364a07a
DG
289int lttcomm_close_inet_sock(struct lttcomm_sock *sock)
290{
6e742359 291 int ret;
6364a07a 292
de5e9086 293 /* Don't try to close an invalid marked socket */
6364a07a
DG
294 if (sock->fd == -1) {
295 return 0;
296 }
297
6e742359
DG
298 ret = close(sock->fd);
299 if (ret) {
6364a07a
DG
300 PERROR("close inet");
301 }
302
303 /* Mark socket */
304 sock->fd = -1;
305
306 return ret;
307}
cb5f6f14
DG
308
309/*
310 * Return value read from /proc or else 0 if value is not found.
311 */
312static unsigned long read_proc_value(const char *path)
313{
314 int ret, fd;
315 long r_val;
316 unsigned long val = 0;
317 char buf[64];
318
319 fd = open(path, O_RDONLY);
320 if (fd < 0) {
321 goto error;
322 }
323
324 ret = read(fd, buf, sizeof(buf));
325 if (ret < 0) {
326 PERROR("read proc failed");
327 goto error_close;
328 }
329
330 errno = 0;
331 r_val = strtol(buf, NULL, 10);
332 if (errno != 0 || r_val < -1L) {
333 val = 0;
334 goto error_close;
335 } else {
336 if (r_val > 0) {
337 val = r_val;
338 }
339 }
340
341error_close:
342 ret = close(fd);
343 if (ret) {
344 PERROR("close /proc value");
345 }
346error:
347 return val;
348}
349
350LTTNG_HIDDEN
351void lttcomm_inet_init(void)
352{
353 unsigned long syn_retries, fin_timeout, syn_timeout;
354
355 /* Assign default value and see if we can change it. */
356 lttcomm_inet_tcp_timeout = DEFAULT_INET_TCP_TIMEOUT;
357
358 syn_retries = read_proc_value(LTTCOMM_INET_PROC_SYN_RETRIES_PATH);
359 fin_timeout = read_proc_value(LTTCOMM_INET_PROC_FIN_TIMEOUT_PATH);
360
361 syn_timeout = syn_retries * LTTCOMM_INET_SYN_TIMEOUT_FACTOR;
362
363 /*
364 * Get the maximum between the two possible timeout value and use that to
365 * get the maximum with the default timeout.
366 */
367 lttcomm_inet_tcp_timeout = max_t(unsigned long,
368 max_t(unsigned long, syn_timeout, fin_timeout),
369 lttcomm_inet_tcp_timeout);
370
371 DBG("TCP inet operation timeout set to %lu sec", lttcomm_inet_tcp_timeout);
372}
This page took 0.041183 seconds and 4 git commands to generate.