X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fclientsocket.c;h=f63c4b11f6dfea7fb731c7fb6eb6628c60d9af87;hb=4eb74b26380dfde31c86c685f0589e0c653aebf0;hp=710df1a3fcde4f057e607b291618380dc33fdd63;hpb=54c2d8ef501c09178be9c3a36d4234e156d8a458;p=citadel.git diff --git a/citadel/clientsocket.c b/citadel/clientsocket.c index 710df1a3f..f63c4b11f 100644 --- a/citadel/clientsocket.c +++ b/citadel/clientsocket.c @@ -6,6 +6,21 @@ * sockets for the Citadel client; for that you must look in ipc_c_tcp.c * (which, uncoincidentally, bears a striking similarity to this file). * + * Copyright (c) 1987-2009 by the citadel.org team + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "sysdep.h" @@ -14,6 +29,7 @@ #include #include #include +#include #include #include #include @@ -22,11 +38,15 @@ #include #include #include +#include #include "citadel.h" +#include "server.h" #ifndef HAVE_SNPRINTF #include "snprintf.h" #endif #include "sysdep_decls.h" +#include "config.h" +#include "clientsocket.h" #ifndef INADDR_NONE #define INADDR_NONE 0xffffffff @@ -38,8 +58,16 @@ int sock_connect(char *host, char *service, char *protocol) struct servent *pse; struct protoent *ppe; struct sockaddr_in sin; + struct sockaddr_in egress_sin; int s, type; + if ((host == NULL) || IsEmptyStr(host)) + return(-1); + if ((service == NULL) || IsEmptyStr(service)) + return(-1); + if ((protocol == NULL) || IsEmptyStr(protocol)) + return(-1); + memset(&sin, 0, sizeof(sin)); sin.sin_family = AF_INET; @@ -47,7 +75,7 @@ int sock_connect(char *host, char *service, char *protocol) if (pse) { sin.sin_port = pse->s_port; } else if ((sin.sin_port = htons((u_short) atoi(service))) == 0) { - lprintf(3, "Can't get %s service entry: %s\n", + CtdlLogPrintf(CTDL_CRIT, "Can't get %s service entry: %s\n", service, strerror(errno)); return(-1); } @@ -55,12 +83,12 @@ int sock_connect(char *host, char *service, char *protocol) if (phe) { memcpy(&sin.sin_addr, phe->h_addr, phe->h_length); } else if ((sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE) { - lprintf(3, "Can't get %s host entry: %s\n", + CtdlLogPrintf(CTDL_ERR, "Can't get %s host entry: %s\n", host, strerror(errno)); return(-1); } if ((ppe = getprotobyname(protocol)) == 0) { - lprintf(3, "Can't get %s protocol entry: %s\n", + CtdlLogPrintf(CTDL_CRIT, "Can't get %s protocol entry: %s\n", protocol, strerror(errno)); return(-1); } @@ -72,46 +100,84 @@ int sock_connect(char *host, char *service, char *protocol) s = socket(PF_INET, type, ppe->p_proto); if (s < 0) { - lprintf(3, "Can't create socket: %s\n", strerror(errno)); + CtdlLogPrintf(CTDL_CRIT, "Can't create socket: %s\n", strerror(errno)); return(-1); } -/* FIX ... the alarm clock is a problem for multithreaded programs because all - * threads receive the signal. - signal(SIGALRM, timeout); - alarm(30); - */ + /* If citserver is bound to a specific IP address on the host, make + * sure we use that address for outbound connections. + */ + memset(&egress_sin, 0, sizeof(egress_sin)); + egress_sin.sin_family = AF_INET; + if (!IsEmptyStr(config.c_ip_addr)) { + egress_sin.sin_addr.s_addr = inet_addr(config.c_ip_addr); + if (egress_sin.sin_addr.s_addr == !INADDR_ANY) { + egress_sin.sin_addr.s_addr = INADDR_ANY; + } + /* If this bind fails, no problem; we can still use INADDR_ANY */ + bind(s, (struct sockaddr *)&egress_sin, sizeof(egress_sin)); + } + + /* Now try to connect to the remote host. */ if (connect(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) { - lprintf(3, "can't connect to %s.%s: %s\n", + CtdlLogPrintf(CTDL_ERR, "Can't connect to %s:%s: %s\n", host, service, strerror(errno)); + close(s); return(-1); } -/* - alarm(0); - signal(SIGALRM, SIG_IGN); - */ return (s); } + + /* - * sock_read() - input binary data from socket. + * sock_read_to() - input binary data from socket, with a settable timeout. * Returns the number of bytes read, or -1 for error. + * If keep_reading_until_full is nonzero, we keep reading until we get the number of requested bytes */ -int sock_read(int sock, char *buf, int bytes) +int sock_read_to(int sock, char *buf, int bytes, int timeout, int keep_reading_until_full) { - int len, rlen; + int len,rlen; + fd_set rfds; + struct timeval tv; + int retval; len = 0; - while (len < bytes) { - rlen = read(sock, &buf[len], bytes - len); - if (rlen < 1) { - return (-1); + while (len0) - && ((buf[strlen(buf)-1]==13) - || (buf[strlen(buf)-1]==10)) ) { - buf[strlen(buf)-1] = 0; + buf[i] = 0; + while ( (i > 0) + && ( (buf[i - 1]==13) + || ( buf[i - 1]==10)) ) { + i--; + buf[i] = 0; } + return(i); +} + +/* + * Multiline version of sock_gets() ... this is a convenience function for + * client side protocol implementations. It only returns the first line of + * a multiline response, discarding the rest. + */ +int ml_sock_gets(int sock, char *buf) { + char bigbuf[1024]; + int g; + + g = sock_getln(sock, buf, SIZ); + if (g < 4) return(g); + if (buf[3] != '-') return(g); + + do { + g = sock_getln(sock, bigbuf, SIZ); + if (g < 0) return(g); + } while ( (g >= 4) && (bigbuf[3] == '-') ); + return(strlen(buf)); }