libt2n: (reinhard) more compile fixes.
[libt2n] / src / socket_handler.cpp
CommitLineData
a11e19b7
GE
1/***************************************************************************
2 * Copyright (C) 2006 by Gerd v. Egidy *
3 * gve@intra2net.com *
4 * *
5 * This library is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU Lesser General Public License version *
7 * 2.1 as published by the Free Software Foundation. *
8 * *
9 * This library is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU Lesser General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Lesser General Public *
15 * License along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
19
20#include <stdio.h>
21#include <errno.h>
22#include <stdlib.h>
23#include <unistd.h>
24#include <sys/types.h>
25#include <sys/socket.h>
26#include <sys/un.h>
27#include <sys/time.h>
28#include <arpa/inet.h>
29#include <netinet/in.h>
30#include <netdb.h>
31#include <fcntl.h>
32#include <time.h>
33#include <pwd.h>
34#include <grp.h>
35
36#include <sstream>
644c4d26 37#include <iostream>
517d1214 38#include <algorithm>
a11e19b7
GE
39
40#include "socket_handler.hxx"
41#include "t2n_exception.hxx"
a7170401 42#include "log.hxx"
a11e19b7
GE
43
44using namespace std;
45
46namespace libt2n
47{
48
517d1214
RP
49socket_handler::socket_handler(int _sock, socket_type_value _socket_type)
50: sock(_sock)
51, recv_buffer_size( default_recv_buffer_size )
52, write_block_size( default_write_block_size )
c7857475 53, write_timeout( default_write_timeout )
517d1214
RP
54, socket_type(_socket_type)
55{
56}
57
58
94247295 59/// set options like fast reuse and keepalive every socket should have
a11e19b7
GE
60void socket_handler::set_socket_options(int sock)
61{
62 int i=1;
63
64 /* fast reuse enable */
65 if (setsockopt(sock,SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i)) < 0)
a7170401 66 EXCEPTIONSTREAM(error,t2n_communication_error,"error setting socket option: " << strerror(errno));
a11e19b7
GE
67
68 /* keepalive enable */
69 if (setsockopt(sock,SOL_SOCKET, SO_KEEPALIVE, &i, sizeof(i)) < 0)
a7170401 70 EXCEPTIONSTREAM(error,t2n_communication_error,"error setting socket option: " << strerror(errno));
a11e19b7
GE
71
72 /* close on exec */
73 int fdflags;
74 fdflags=fcntl(sock,F_GETFD, 0);
75 if (fdflags < 0)
a7170401
GE
76 EXCEPTIONSTREAM(error,t2n_communication_error,"fcntl error on socket: " << strerror(errno));
77
a11e19b7
GE
78 fdflags |= FD_CLOEXEC;
79 if (fcntl(sock,F_SETFD,fdflags) < 0)
a7170401 80 EXCEPTIONSTREAM(error,t2n_communication_error,"fcntl error on socket: " << strerror(errno));
a11e19b7
GE
81
82 /* non-blocking mode */
83 int flflags;
84 flflags=fcntl(sock,F_GETFL,0);
85 if (flflags < 0)
a7170401
GE
86 EXCEPTIONSTREAM(error,t2n_communication_error,"fcntl error on socket: " << strerror(errno));
87
a11e19b7
GE
88 flflags |= O_NONBLOCK;
89 if (fcntl(sock,F_SETFL,flflags) < 0)
a7170401 90 EXCEPTIONSTREAM(error,t2n_communication_error,"fcntl error on socket: " << strerror(errno));
a11e19b7
GE
91}
92
94247295
GE
93/// close the underlying socket connection. Don't call directly, use the version provided
94/// by the connection class you are using.
a11e19b7
GE
95void socket_handler::close()
96{
e1614a6d 97 LOGSTREAM(debug,"close connection");
644c4d26
GE
98 // graceful shutdown
99 shutdown(sock,SHUT_RDWR);
a11e19b7
GE
100 ::close(sock);
101}
102
94247295 103/// is the underlying socket connection still open?
644c4d26
GE
104bool socket_handler::is_closed()
105{
106 int r=fcntl(sock,F_GETFL);
107
108 return !(r & O_ACCMODE);
109}
110
517d1214
RP
111
112/**
113 * @brief set a new size for the receive buffer.
114 * @param new_recv_buffer_size the new size for the receive buffer.
115 *
116 * The receive buffer determines the amount of data which is tried to read at once
117 * from the underlying socket.
118 *
119 * The value is normalized to be at least 512 bytes and at max 32K bytes.
120 */
121void socket_handler::set_recv_buffer_size(unsigned int new_recv_buffer_size)
122{
123 recv_buffer_size= std::max( 512u, std::min( 32u * 1024u, new_recv_buffer_size ));
124} //
125
126
127/**
128 * @brief set new size for the data chunks when writeing.
129 * @param new_write_block_size the new chunk size.
130 *
c7857475 131 * The write block size determines the amount of data which is tried to write
517d1214 132 * to the socket when data needs to be sended.
c7857475 133 * Since writing data is done in a loop, this does not limit the amunt of data which can
517d1214
RP
134 * be written.
135 *
136 * The value is normalized to be at least 512 bytes and at max 32K bytes.
137 */
138void socket_handler::set_write_block_size(unsigned int new_write_block_size)
139{
140 write_block_size= std::max( 512u, std::min( 32u * 1024u, new_write_block_size ));
141} //
142
143
c7857475
GE
144/**
145 * @brief set new timeout for writing a block
146 * @param new_write_timeout the new timeout in usecs, -1: wait endless
147 *
148 * The write timeout determines the maximum amount of time that is waited
149 * between writing each block. If the timeout is exceeded, write will
150 * throw t2n_transfer_error
151 */
152void socket_handler::set_write_timeout(long long new_write_timeout)
153{
154 write_block_size=new_write_timeout;
155} //
156
157
94247295 158/** @brief check if new data is waiting on the raw socket
45a2ebc9 159 @param[in,out] usec_timeout wait until new data is found, max timeout usecs.
94247295 160 -1: wait endless
45a2ebc9 161 0: return instantly
94247295 162*/
45a2ebc9 163bool socket_handler::data_waiting(long long usec_timeout,long long* usec_timeout_remaining)
a11e19b7
GE
164{
165 // just our socket
166 fd_set active_fd_set;
167 FD_ZERO (&active_fd_set);
168 FD_SET (sock, &active_fd_set);
169
170 /* set timeout */
171 struct timeval tval;
172 struct timeval *timeout_ptr;
173
174 if (usec_timeout == -1)
175 timeout_ptr = NULL;
176 else
177 {
178 timeout_ptr = &tval;
179
45a2ebc9 180 // convert timeout from long long usec to int sec + int usec
a11e19b7
GE
181 tval.tv_sec = usec_timeout / 1000000;
182 tval.tv_usec = usec_timeout % 1000000;
183 }
184
45a2ebc9
GE
185 int ret=select (FD_SETSIZE, &active_fd_set, NULL, NULL, timeout_ptr);
186
187 // return the timeout we did not use
6f6d24c0 188 // todo: this is linux specific according to man 2 select
45a2ebc9
GE
189 if (usec_timeout > 0 && usec_timeout_remaining != NULL)
190 *usec_timeout_remaining=(tval.tv_sec*1000000)+tval.tv_usec;
191
192 if (ret > 0)
a11e19b7
GE
193 return true;
194 else
195 return false;
196}
197
94247295
GE
198/** @brief read data from the raw socket and copy it into the provided buffer
199 @param buffer the buffer where to append the new data
45a2ebc9 200 @param[in,out] usec_timeout wait until new data is found, max timeout usecs.
94247295 201 -1: wait endless
45a2ebc9 202 0: return instantly
94247295 203*/
45a2ebc9 204bool socket_handler::fill_buffer(std::string& buffer, long long usec_timeout, long long *timeout_remaining)
a11e19b7 205{
07e98688 206 // fast path for timeout==0
45a2ebc9 207 if (usec_timeout==0 || data_waiting(usec_timeout,timeout_remaining))
a11e19b7
GE
208 return fill_buffer(buffer);
209 else
210 return false;
211}
212
94247295
GE
213/** @brief read data from the raw socket and copy it into the provided buffer. Returns
214 instantly if no data is waiting.
215 @param buffer the buffer where to append the new data
216*/
a11e19b7
GE
217bool socket_handler::fill_buffer(std::string& buffer)
218{
219 bool try_again=false;
220
221 char socket_buffer[recv_buffer_size];
222
223 int nbytes = read (sock, socket_buffer, recv_buffer_size);
224 if (nbytes < 0)
225 {
226 if (errno == EAGAIN)
227 return false; // no data was waiting
228 else if (errno == EINTR)
229 {
230 // interrupted, try again
a7170401 231 LOGSTREAM(debug,"EINTR received on read(), trying again");
a11e19b7
GE
232 try_again=true;
233 }
234 else
c7857475 235 EXCEPTIONSTREAM(error,t2n_transfer_error,"error reading from socket : " << strerror(errno));
a11e19b7
GE
236 }
237
238 // End-of-file
239 if (nbytes == 0 && !try_again)
240 {
a7170401 241 LOGSTREAM(debug,"0 bytes received on read(), closing connection");
a11e19b7
GE
242 close();
243 return false;
244 }
245
246 // Data read -> store it
247 if (nbytes > 0)
a7170401 248 {
58b327c6 249 buffer.append(socket_buffer,nbytes);
d535333f 250 LOGSTREAM(debug,nbytes << " bytes read");
a7170401 251 }
a11e19b7
GE
252
253 // more data waiting -> recurse
07e98688 254 if (data_waiting(0))
a11e19b7
GE
255 fill_buffer(buffer);
256
257 if (nbytes > 0)
258 return true;
259 else
260 return false;
261}
262
94247295
GE
263/// writes raw data to the socket. Don't use directly, use the write() function provided by the
264/// connection because it encapsulates the data.
644c4d26 265void socket_handler::socket_write(const std::string& data)
a11e19b7
GE
266{
267 int offset = 0;
268 while (offset < data.size())
269 {
270 unsigned int write_size=write_block_size;
271
272 if (offset+write_size > data.size())
273 write_size = data.size()-offset;
274
275 int rtn;
c7857475
GE
276 while ((rtn=::write(sock, data.data()+offset, write_size)) == -1 &&
277 (errno == EAGAIN || errno == EINTR))
a11e19b7 278 {
c7857475 279 wait_ready_to_write(sock,write_timeout);
a7170401 280 LOGSTREAM(debug,"resuming write() call after EAGAIN or EINTR");
a11e19b7
GE
281 }
282
283 if (rtn == -1)
c7857475 284 EXCEPTIONSTREAM(error,t2n_transfer_error,"write() returned " << strerror(errno));
a11e19b7
GE
285 else if (rtn != write_size)
286 {
517d1214 287 LOGSTREAM(debug,"write() wrote " << rtn << " bytes, should have been "
a7170401 288 << write_size << " (complete: " << data.size() << ")");
a11e19b7 289
517d1214 290 write_size = rtn;
a11e19b7
GE
291 }
292
293 offset += write_size;
294 }
295
a7170401
GE
296 LOGSTREAM(debug,"wrote " << data.size() << " bytes");
297
a11e19b7 298 return;
517d1214 299} // eo socket_handler::socket_write(const std::string&)
a11e19b7 300
c7857475
GE
301/// wait until the socket is ready to write again
302void socket_handler::wait_ready_to_write(int socket, long long write_block_timeout)
303{
304 // prepare socket sets
305 fd_set write_set[1];
306 fd_set except_set[1];
307 FD_ZERO(write_set);
308 FD_ZERO(except_set);
309 FD_SET(socket, write_set);
310 FD_SET(socket, except_set);
311
312 // prepare timeout struct
313 struct timeval tval;
314 struct timeval *timeout_ptr;
315
316 if (write_block_timeout == -1)
317 timeout_ptr = NULL;
318 else
319 {
320 timeout_ptr = &tval;
321
322 // convert timeout from long long usec to int sec + int usec
323 tval.tv_sec = write_block_timeout / 1000000;
324 tval.tv_usec = write_block_timeout % 1000000;
325 }
326
327 // let's wait for the socket to become writable again...
328 int rtn;
329 while ((rtn=::select(socket+1, NULL, write_set, except_set, timeout_ptr)) ==-1 && errno == EINTR);
330
331 if (rtn > 0 && (!FD_ISSET(socket,write_set)) && FD_ISSET(socket, except_set))
332 {
333 // if we are selected but cannot write and have an exception
334 // we have serious trouble...
335 EXCEPTIONSTREAM(error,t2n_transfer_error,"exception on socket; cannot write any more.");
336 }
337
338 if (rtn==0)
339 EXCEPTIONSTREAM(error,t2n_transfer_error,"timeout on select() for write");
340
341 if (rtn==-1)
342 EXCEPTIONSTREAM(error,t2n_transfer_error,"cannot select() for write: " << strerror(errno));
343}
344
345
a11e19b7 346}