libt2n: (gerd) bugfixes, better logging, unit tests for wrapper, ignore handler still...
[libt2n] / src / socket_client.cpp
CommitLineData
7087e187
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>
37
38#include "socket_client.hxx"
39#include "t2n_exception.hxx"
e1614a6d 40#include "log.hxx"
7087e187
GE
41
42using namespace std;
43
44namespace libt2n
45{
46
b604df5f 47socket_client_connection::socket_client_connection(int _port, const std::string& _server,
e1614a6d
GE
48 long long _connect_timeout_usec, int _max_retries,
49 std::ostream *_logstream, log_level_values _log_level)
7087e187
GE
50 : client_connection(), socket_handler(0,tcp_s)
51{
52 max_retries=_max_retries;
b604df5f 53 connect_timeout_usec=_connect_timeout_usec;
7087e187
GE
54
55 server=_server;
56 port=_port;
57
e1614a6d
GE
58 set_logging(_logstream,_log_level);
59
b604df5f 60 tcp_connect(max_retries);
e1614a6d
GE
61
62 do_callbacks(new_connection);
7087e187
GE
63}
64
b604df5f 65socket_client_connection::socket_client_connection(const std::string& _path,
e1614a6d
GE
66 long long _connect_timeout_usec, int _max_retries,
67 std::ostream *_logstream, log_level_values _log_level)
7087e187
GE
68 : client_connection(), socket_handler(0,unix_s)
69{
70 max_retries=_max_retries;
b604df5f 71 connect_timeout_usec=_connect_timeout_usec;
7087e187
GE
72
73 path=_path;
74
e1614a6d
GE
75 set_logging(_logstream,_log_level);
76
b604df5f 77 unix_connect(max_retries);
e1614a6d
GE
78
79 do_callbacks(new_connection);
7087e187
GE
80}
81
b604df5f 82void socket_client_connection::tcp_connect(int max_retries)
7087e187 83{
b604df5f
GE
84 struct sockaddr_in sock_addr;
85
86 sock_addr.sin_family = AF_INET;
87 sock_addr.sin_port = htons(port);
88
89 // find the target ip
90 if (inet_aton(server.c_str(),&sock_addr.sin_addr)==0)
7087e187 91 {
b604df5f
GE
92 struct hostent *server_hent;
93 server_hent=gethostbyname(server.c_str());
94 if (server_hent == NULL)
95 throw t2n_connect_error(string("can't find server ")+server);
7087e187 96
b604df5f
GE
97 memcpy(&sock_addr.sin_addr,server_hent->h_addr_list[0],sizeof(sock_addr.sin_addr));
98 }
7087e187 99
b604df5f
GE
100 sock = socket(PF_INET, SOCK_STREAM, 0);
101 if (!sock)
102 throw t2n_connect_error(string("socket() error: ")+strerror(errno));
7087e187 103
b604df5f
GE
104 try
105 {
106 connect_with_timeout((struct sockaddr *) &sock_addr,sizeof(sock_addr));
7087e187 107 }
b604df5f 108 catch (t2n_connect_error &e)
7087e187 109 {
b604df5f
GE
110 // recurse if retries left
111 if (max_retries > 0)
e1614a6d
GE
112 {
113 LOGSTREAM(debug,"retrying connect after connect error");
b604df5f 114 tcp_connect(max_retries-1);
e1614a6d
GE
115 }
116 else
117 LOGSTREAM(debug,"no more retries left after connect error");
b604df5f 118 }
b604df5f 119}
7087e187 120
b604df5f
GE
121void socket_client_connection::unix_connect(int max_retries)
122{
123 struct sockaddr_un unix_addr;
7087e187 124
b604df5f
GE
125 unix_addr.sun_family = AF_UNIX;
126 strcpy (unix_addr.sun_path, path.c_str());
7087e187 127
b604df5f
GE
128 sock = socket(PF_UNIX, SOCK_STREAM, 0);
129 if (!sock)
130 throw t2n_connect_error(string("socket() error: ")+strerror(errno));
7087e187 131
b604df5f
GE
132 try
133 {
134 connect_with_timeout((struct sockaddr *) &unix_addr, sizeof(unix_addr));
135 }
136 catch (t2n_connect_error &e)
137 {
138 // recurse if retries left
139 if (max_retries > 0)
e1614a6d
GE
140 {
141 LOGSTREAM(debug,"retrying connect after connect error");
5b71156f 142 unix_connect(max_retries-1);
e1614a6d
GE
143 }
144 else
145 LOGSTREAM(debug,"no more retries left after connect error");
7087e187 146 }
b604df5f
GE
147}
148
149void socket_client_connection::connect_with_timeout(struct sockaddr *sock_addr,unsigned int sockaddr_size)
150{
7087e187 151 set_socket_options(sock);
91730468 152
e1614a6d 153 LOGSTREAM(debug,"connect_with_timeout()");
b604df5f
GE
154 int ret=::connect(sock,sock_addr, sockaddr_size);
155
156 if (ret < 0)
157 {
158 if (errno==EINPROGRESS)
159 {
e1614a6d
GE
160 LOGSTREAM(debug,"connect_with_timeout(): EINPROGRESS");
161
b604df5f
GE
162 /* set timeout */
163 struct timeval tval;
164 struct timeval *timeout_ptr;
165
166 if (connect_timeout_usec == -1)
167 timeout_ptr = NULL;
168 else
169 {
170 timeout_ptr = &tval;
171
172 // convert timeout from long long usec to int sec + int usec
173 tval.tv_sec = connect_timeout_usec / 1000000;
174 tval.tv_usec = connect_timeout_usec % 1000000;
175 }
176
177 fd_set connect_socket_set;
178 FD_ZERO(&connect_socket_set);
179 FD_SET(sock,&connect_socket_set);
180
181 int ret;
182 while ((ret=select(FD_SETSIZE, NULL, &connect_socket_set, NULL, timeout_ptr)) &&
183 ret < 0 && errno==EINTR);
184
185 if (ret < 0)
e1614a6d
GE
186 {
187 LOGSTREAM(debug,"connect_with_timeout(): select error: " << strerror(errno));
b604df5f 188 throw t2n_connect_error(string("connect() error (select): ")+strerror(errno));
e1614a6d 189 }
b604df5f
GE
190
191 socklen_t sopt=sizeof(int);
192 int valopt;
193 ret=getsockopt(sock, SOL_SOCKET, SO_ERROR, (void*)(&valopt), &sopt);
194 if (ret < 0 || valopt)
e1614a6d
GE
195 {
196 LOGSTREAM(debug,"connect_with_timeout(): getsockopt error: " << strerror(errno));
b604df5f 197 throw t2n_connect_error(string("connect() error (getsockopt): ")+strerror(errno));
e1614a6d 198 }
b604df5f
GE
199 }
200 else
e1614a6d
GE
201 {
202 LOGSTREAM(debug,"connect_with_timeout(): error: " << strerror(errno));
b604df5f 203 throw t2n_connect_error(string("connect() error: ")+strerror(errno));
e1614a6d 204 }
b604df5f 205 }
e1614a6d
GE
206
207 LOGSTREAM(debug,"connect_with_timeout(): success");
7087e187
GE
208}
209
210void socket_client_connection::close()
211{
212 if (!client_connection::is_closed())
213 {
214 socket_handler::close();
215 client_connection::close();
216 }
217}
218
af84dfb5
GE
219/** @brief try to reconnect the current connection with the same connection credentials (host and port or path)
220*/
221void socket_client_connection::reconnect()
222{
e1614a6d
GE
223 LOGSTREAM(debug,"reconnect()");
224
af84dfb5
GE
225 // close the current connection if still open
226 close();
227
228 socket_type_value type=get_type();
229
230 if (type == tcp_s)
231 tcp_connect(max_retries);
232 else if (type == unix_s)
233 unix_connect(max_retries);
234
e1614a6d
GE
235 LOGSTREAM(debug,"reconnect(): basic connection established");
236
af84dfb5 237 reopen();
e1614a6d
GE
238
239 LOGSTREAM(debug,"reconnect() done, client_connection::is_closed() now " << client_connection::is_closed());
240
af84dfb5
GE
241}
242
7087e187 243}