* clientsocket.c: implement socket timeouts for read operations
[citadel.git] / citadel / clientsocket.c
1 /*
2  * $Id$
3  *
4  * This module handles client-side sockets opened by the Citadel server (for
5  * the client side of Internet protocols, etc.)   It does _not_ handle client
6  * sockets for the Citadel client; for that you must look in ipc_c_tcp.c
7  * (which, uncoincidentally, bears a striking similarity to this file).
8  *
9  */
10
11 #ifdef DLL_EXPORT
12 #define IN_LIBCIT
13 #endif
14
15 #include "sysdep.h"
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <signal.h>
20 #include <sys/types.h>
21 #include <sys/time.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <netdb.h>
26 #include <string.h>
27 #include <pwd.h>
28 #include <errno.h>
29 #include <stdarg.h>
30 #include "citadel.h"
31 #include "server.h"
32 #include "dynloader.h"
33 #ifndef HAVE_SNPRINTF
34 #include "snprintf.h"
35 #endif
36 #include "sysdep_decls.h"
37 #include <clientsocket.h>
38
39 #ifndef INADDR_NONE
40 #define INADDR_NONE 0xffffffff
41 #endif
42
43 int sock_connect(char *host, char *service, char *protocol)
44 {
45         struct hostent *phe;
46         struct servent *pse;
47         struct protoent *ppe;
48         struct sockaddr_in sin;
49         int s, type;
50
51         memset(&sin, 0, sizeof(sin));
52         sin.sin_family = AF_INET;
53
54         pse = getservbyname(service, protocol);
55         if (pse) {
56                 sin.sin_port = pse->s_port;
57         } else if ((sin.sin_port = htons((u_short) atoi(service))) == 0) {
58                 lprintf(3, "Can't get %s service entry: %s\n",
59                         service, strerror(errno));
60                 return(-1);
61         }
62         phe = gethostbyname(host);
63         if (phe) {
64                 memcpy(&sin.sin_addr, phe->h_addr, phe->h_length);
65         } else if ((sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE) {
66                 lprintf(3, "Can't get %s host entry: %s\n",
67                         host, strerror(errno));
68                 return(-1);
69         }
70         if ((ppe = getprotobyname(protocol)) == 0) {
71                 lprintf(3, "Can't get %s protocol entry: %s\n",
72                         protocol, strerror(errno));
73                 return(-1);
74         }
75         if (!strcmp(protocol, "udp")) {
76                 type = SOCK_DGRAM;
77         } else {
78                 type = SOCK_STREAM;
79         }
80
81         s = socket(PF_INET, type, ppe->p_proto);
82         if (s < 0) {
83                 lprintf(3, "Can't create socket: %s\n", strerror(errno));
84                 return(-1);
85         }
86
87         if (connect(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
88                 lprintf(3, "can't connect to %s.%s: %s\n",
89                         host, service, strerror(errno));
90                 return(-1);
91         }
92
93         return (s);
94 }
95
96
97
98 /*
99  * sock_read_to() - input binary data from socket, with a settable timeout.
100  * Returns the number of bytes read, or -1 for error.
101  */
102 int sock_read_to(int sock, char *buf, int bytes, int timeout)
103 {
104         int len,rlen;
105         fd_set rfds;
106         struct timeval tv;
107         int retval;
108
109         len = 0;
110         while(len<bytes) {
111                 FD_ZERO(&rfds);
112                 FD_SET(sock, &rfds);
113                 tv.tv_sec = timeout;
114                 tv.tv_usec = 0;
115
116                 retval = select(sock+1, &rfds, NULL, NULL, &tv);
117
118                 if (FD_ISSET(sock, &rfds) == 0) {       /* timed out */
119                         lprintf(9, "sock_read() timed out.\n");
120                         return(-1);
121                 }
122
123                 rlen = read(sock, &buf[len], bytes-len);
124                 if (rlen<1) {
125                         lprintf(2, "sock_read() failed: %s\n",
126                                 strerror(errno));
127                         return(-1);
128                 }
129                 len = len + rlen;
130         }
131         return(bytes);
132 }
133
134
135 /*
136  * sock_read() - input binary data from socket.
137  * Returns the number of bytes read, or -1 for error.
138  */
139 inline int sock_read(int sock, char *buf, int bytes)
140 {
141         return sock_read_to(sock, buf, bytes, CLIENT_TIMEOUT);
142 }
143
144
145 /*
146  * sock_write() - send binary to server.
147  * Returns the number of bytes written, or -1 for error.
148  */
149 int sock_write(int sock, char *buf, int nbytes)
150 {
151         int bytes_written = 0;
152         int retval;
153         while (bytes_written < nbytes) {
154                 retval = write(sock, &buf[bytes_written],
155                                nbytes - bytes_written);
156                 if (retval < 1) {
157                         return (-1);
158                 }
159                 bytes_written = bytes_written + retval;
160         }
161         return (bytes_written);
162 }
163
164
165
166 /*
167  * Input string from socket - implemented in terms of sock_read()
168  * 
169  */
170 int sock_gets(int sock, char *buf)
171 {
172         int i;
173
174         /* Read one character at a time.
175          */
176         for (i = 0;; i++) {
177                 if (sock_read(sock, &buf[i], 1) < 0) return(-1);
178                 if (buf[i] == '\n' || i == (SIZ-1))
179                         break;
180         }
181
182         /* If we got a long line, discard characters until the newline.
183          */
184         if (i == (SIZ-1))
185                 while (buf[i] != '\n')
186                         if (sock_read(sock, &buf[i], 1) < 0) return(-1);
187
188         /* Strip any trailing CR and LF characters.
189          */
190         buf[i] = 0;
191         while ( (strlen(buf)>0)
192               && ((buf[strlen(buf)-1]==13)
193               || (buf[strlen(buf)-1]==10)) ) {
194                 buf[strlen(buf)-1] = 0;
195         }
196         return(strlen(buf));
197 }
198
199 /*
200  * Multiline version of sock_gets() ... this is a convenience function for
201  * client side protocol implementations.  It only returns the first line of
202  * a multiline response, discarding the rest.
203  */
204 int ml_sock_gets(int sock, char *buf) {
205         char bigbuf[1024];
206         int g;
207
208         g = sock_gets(sock, buf);
209         if (g < 4) return(g);
210         if (buf[3] != '-') return(g);
211
212         do {
213                 g = sock_gets(sock, bigbuf);
214                 if (g < 0) return(g);
215         } while ( (g >= 4) && (bigbuf[3] == '-') );
216
217         return(strlen(buf));
218 }
219
220
221 /*
222  * sock_puts() - send line to server - implemented in terms of serv_write()
223  * Returns the number of bytes written, or -1 for error.
224  */
225 int sock_puts(int sock, char *buf)
226 {
227         int i, j;
228
229         i = sock_write(sock, buf, strlen(buf));
230         if (i<0) return(i);
231         j = sock_write(sock, "\n", 1);
232         if (j<0) return(j);
233         return(i+j);
234 }