2 * Copyright (c) 2004 Teodor Sigaev <teodor@sigaev.ru>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the author nor the names of any co-contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #ifdef HAVE_SYS_POLL_H
42 #error Not defined HAVE_POLL_H or HAVE_SYS_POLL_H
43 #endif /* HAVE_SYS_POLL_H */
44 #endif /* HAVE_POLL */
51 #include "connection.h"
56 setlinger( TC_Connection *cs ) {
59 socklen_t size = sizeof(val);
61 if (getsockopt(cs->fd, SOL_SOCKET,SO_ERROR,&val,&size) == -1) {
62 tlog(TL_ALARM,"getsockopt: %s:%d - %s(%d)",inet_ntoa(cs->serv_addr.sin_addr),
63 ntohs(cs->serv_addr.sin_port), strerror(errno), errno);
64 shutdown(cs->fd,SHUT_RDWR);
72 tlog(TL_ALARM,"getsockopt return: %s:%d - %s(%d)",inet_ntoa(cs->serv_addr.sin_addr),
73 ntohs(cs->serv_addr.sin_port), strerror(val), val);
74 shutdown(cs->fd,SHUT_RDWR);
82 ling.l_onoff = ling.l_linger = 0;
83 if (setsockopt(cs->fd, SOL_SOCKET,SO_LINGER,(char *)&ling,sizeof(ling))==-1) {
84 tlog(TL_ALARM,"setsockopt: LINGER %s:%d - %s",inet_ntoa(cs->serv_addr.sin_addr), ntohs(cs->serv_addr.sin_port),
86 shutdown(cs->fd,SHUT_RDWR);
92 cs->state = CS_CONNECTED;
97 TC_ClientInitConnection(TC_Connection *cs, char *name, u_int32_t port) {
100 cs = TC_fillConnection(cs, name, port);
103 if ((cs->fd= socket(AF_INET, SOCK_STREAM, 0)) < 0)
104 tlog(TL_CRIT|TL_EXIT,"socket4: %s:%d - %s",inet_ntoa(cs->serv_addr.sin_addr),
105 ntohs(cs->serv_addr.sin_port),strerror(errno));
107 if (setsockopt(cs->fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val)) < 0) {
108 tlog(TL_CRIT|TL_EXIT, "socketsockopt failed: %s (d%)", strerror(errno), errno);
112 if ((flags=fcntl(cs->fd,F_GETFL,0)) == -1)
113 tlog(TL_ALARM,"fcntl F_GETFL - %s",strerror(errno));
114 if (fcntl(cs->fd,F_SETFL,flags|O_NDELAY) < 0 )
115 tlog(TL_ALARM,"fcntl O_NDELAY - %s",strerror(errno));
117 if (bind(cs->fd, (struct sockaddr *) &(cs->serv_addr), sizeof(cs->serv_addr)) < 0)
118 tlog(TL_CRIT|TL_EXIT, "cannot bind to %s address: %s",
119 inet_ntoa(cs->serv_addr.sin_addr), strerror(errno));
121 if (listen(cs->fd, 0) < 0)
122 tlog(TL_CRIT|TL_EXIT, "cannot listen to %s address: %s",
123 inet_ntoa(cs->serv_addr.sin_addr), strerror(errno));
129 TC_AcceptTcp(TC_Connection *cs) {
131 struct sockaddr_in cli_addr;
133 socklen_t clilen = sizeof(cli_addr);
136 if ( (ret = accept(cs->fd,(struct sockaddr *)&cli_addr, &clilen)) < 0 ) {
137 if ( errno == EAGAIN || errno == EWOULDBLOCK )
139 tlog(TL_ALARM,"TC_AcceptTcp: accept: %s", strerror(errno));
142 nc = (TC_Connection*)t0malloc(sizeof(TC_Connection));
145 if ((flags=fcntl(nc->fd,F_GETFL,0)) == -1)
146 tlog(TL_ALARM,"fcntl F_GETFL - %s",strerror(errno));
147 if (fcntl(nc->fd,F_SETFL,flags|O_NDELAY) < 0 )
148 tlog(TL_ALARM,"fcntl O_NDELAY - %s",strerror(errno));
149 memcpy( &(nc->serv_addr), &cli_addr, clilen );
150 nc->state = CS_CONNECTED;
157 TC_fillConnection(TC_Connection *sc, char *name, u_int32_t port) {
159 sc = (TC_Connection *)tmalloc(sizeof(TC_Connection));
160 memset(sc, 0, sizeof(TC_Connection));
161 sc->serv_addr.sin_family = AF_INET;
162 sc->serv_addr.sin_addr.s_addr = (name) ? inet_addr(name) : htonl(INADDR_ANY);
163 sc->serv_addr.sin_port = htons(port);
164 sc->state = CS_NOTINITED;
170 TC_ServerInitConnect( TC_Connection *cs ) {
173 if ( cs->state == CS_ERROR )
176 if ((cs->fd= socket(AF_INET, SOCK_STREAM, 0)) < 0) {
177 tlog(TL_CRIT,"socket4: %s:%d - %s",inet_ntoa(cs->serv_addr.sin_addr),
178 ntohs(cs->serv_addr.sin_port),strerror(errno));
179 cs->state = CS_ERROR;
183 if ((flags=fcntl(cs->fd,F_GETFL,0)) == -1)
184 tlog(TL_ALARM,"fcntl F_GETFL - %s",strerror(errno));
185 if (fcntl(cs->fd,F_SETFL,flags|O_NDELAY) < 0 )
186 tlog(TL_ALARM,"fcntl O_NDELAY - %s",strerror(errno));
189 if (setsockopt(cs->fd, SOL_SOCKET, SO_REUSEADDR, &flags, sizeof(flags)) < 0)
190 tlog(TL_ALARM, "socketsockopt failed: %s (%d)", strerror(errno), errno);
192 if ( connect(cs->fd, (struct sockaddr *) &(cs->serv_addr),
193 sizeof(struct sockaddr_in)) < 0 ) {
194 if ( errno == EINPROGRESS || errno == EALREADY ) {
195 cs->state = CS_INPROCESS;
197 } else if (errno != EISCONN && errno != EALREADY &&
198 errno != EWOULDBLOCK && errno != EAGAIN) {
199 tlog(TL_DEBUG,"connect: %s:%d - %s",
200 inet_ntoa(cs->serv_addr.sin_addr), ntohs(cs->serv_addr.sin_port),
202 shutdown(cs->fd,SHUT_RDWR);
206 tlog(TL_DEBUG,"nonblock connect: %s:%d - %s [%d]",
207 inet_ntoa(cs->serv_addr.sin_addr),
208 ntohs(cs->serv_addr.sin_port),
209 strerror(errno),errno);
211 cs->state = CS_ERROR;
215 cs->state = CS_INPROCESS;
216 return TC_ServerConnect( cs, 0 );
221 TC_ServerConnect( TC_Connection *cs, int timeout ) {
225 if ( cs->state != CS_INPROCESS )
229 pfd.events = POLLOUT;
231 ret = poll( &pfd, 1, timeout );
233 tlog( TL_CRIT, "TC_ServerConnect: poll: %s",
235 cs->state = CS_ERROR;
237 } else if ( ret == 0 )
240 if ( (pfd.revents & (POLLHUP | POLLNVAL | POLLERR)) ) {
241 tlog( TL_CRIT, "TC_ServerConnect: poll return connect error for %s:%d",
242 inet_ntoa(cs->serv_addr.sin_addr), ntohs(cs->serv_addr.sin_port));
243 cs->state = CS_ERROR;
247 if ( ! (pfd.revents & POLLOUT) )
251 return setlinger( cs );
255 TC_ReadyIO( TC_Connection **cs, int number, int timeout ) {
259 if ( number==0 || cs ==NULL ) {
262 usleep( timeout * 1000.0 );
265 pfd = (struct pollfd*) tmalloc( sizeof(struct pollfd) * number );
267 for(i=0; i<number;i++) {
268 if ( cs[i]->fd>0 && (cs[i]->state == CS_READ || cs[i]->state == CS_SEND) ) {
269 pfd[fdnum].fd = cs[i]->fd;
270 pfd[fdnum].events = ( cs[i]->state == CS_READ ) ? POLLIN : POLLOUT;
271 pfd[fdnum].revents = 0;
281 usleep( timeout * 1000.0 );
284 ret = poll( pfd, fdnum, timeout );
286 tlog( TL_CRIT, "TC_ReadyIO: poll: %s",
298 for(i=0; i<number;i++) {
299 if ( cs[i]->fd>0 && (cs[i]->state == CS_READ || cs[i]->state == CS_SEND) ) {
300 if ( pfd[fdnum].revents & (POLLHUP | POLLNVAL | POLLERR) ) {
301 tlog( TL_ALARM, "TC_ReadyIO: poll return error for %s:%d",
302 inet_ntoa(cs[i]->serv_addr.sin_addr),
303 ntohs(cs[i]->serv_addr.sin_port));
304 cs[i]->state = CS_ERROR;
306 } else if ( pfd[fdnum].revents & ( ( cs[i]->state == CS_READ ) ? POLLIN : POLLOUT ) ) {
319 TC_Send( TC_Connection *cs ) {
322 if ( cs->state == CS_ERROR )
325 if ( cs->state != CS_SEND ) {
330 if ( cs->ptr - cs->buf >= cs->len ) {
331 cs->state = CS_FINISHSEND;
332 return CS_FINISHSEND;
335 if ((sz=write(cs->fd, cs->ptr, cs->len - (cs->ptr - cs->buf)))==0 ||
336 (sz < 0 && (errno == EWOULDBLOCK || errno == EAGAIN))) {
338 /* SunOS 4.1.x, are broken and select() says that
339 * O_NDELAY sockets are always writable even when
340 * they're actually not.
346 if (errno != EPIPE && errno != EINVAL)
347 tlog(TL_ALARM, "write[%s:%d] - %s",
348 inet_ntoa(cs->serv_addr.sin_addr),
349 ntohs(cs->serv_addr.sin_port),
351 cs->state = CS_ERROR;
357 if ( cs->ptr - cs->buf >= cs->len ) {
358 cs->state = CS_FINISHSEND;
359 return CS_FINISHSEND;
366 resizeCS( TC_Connection *cs, int sz ) {
367 int diff = cs->ptr - cs->buf;
371 cs->buf = (char*)trealloc( (void*)cs->buf, cs->len );
372 cs->ptr = cs->buf + diff;
376 TC_Read( TC_Connection *cs ) {
377 int sz, totalread = -1, toread=0, alreadyread;
379 if ( cs->state == CS_ERROR )
382 if (cs->state != CS_READ ) {
387 alreadyread = cs->ptr - cs->buf;
388 if ( alreadyread < sizeof(u_int32_t) ) {
389 toread = sizeof(u_int32_t) - alreadyread;
390 resizeCS(cs, sizeof(u_int32_t));
392 totalread = *(u_int32_t*)(cs->buf);
393 toread = totalread - alreadyread;
395 cs->state = CS_FINISHREAD;
396 return CS_FINISHREAD;
398 resizeCS(cs, totalread);
401 if ((sz=read( cs->fd, cs->ptr, toread))<0) {
402 if (errno == EAGAIN || errno == EINTR) {
406 tlog(TL_ALARM,"read: finish - %s",strerror(errno));
407 cs->state = CS_ERROR;
414 if ( sz == 0 && alreadyread != totalread ) {
415 tlog(TL_ALARM,"read: disconnecting");
416 cs->state = CS_ERROR;
419 cs->state = ( alreadyread == totalread ) ? CS_FINISHREAD : CS_READ;
424 TC_FreeConnection( TC_Connection *cs ) {
425 if ( cs->state == CS_CLOSED )
431 if ( cs->fd && cs->state != CS_NOTINITED ) {
432 shutdown(cs->fd,SHUT_RDWR);
436 cs->state = CS_CLOSED;
440 TC_Talk( TC_Connection *cs ) {
441 if ( cs->state==CS_NOTINITED )
442 TC_ServerInitConnect( cs );
444 while( cs->state == CS_INPROCESS )
445 TC_ServerConnect(cs, 100);
447 if ( cs->state != CS_CONNECTED )
452 while( cs->state != CS_FINISHSEND ) {
453 while( !TC_ReadyIO( &cs, 1, 100) );
454 if ( TC_Send(cs) == CS_ERROR ) return CS_ERROR;
459 while( cs->state != CS_FINISHREAD ) {
460 while( !TC_ReadyIO( &cs, 1, 100) );
461 if ( TC_Read(cs) == CS_ERROR ) return CS_ERROR;