* First cut at Solaris fixes. There may still be some *printf("%s", NULL)
[citadel.git] / citadel / ipc_c_tcp.c
1 /*
2  * ipc_c_tcp.c
3  * 
4  * Citadel/UX client/server IPC - client module using TCP/IP
5  *
6  * version 1.3 $Id$
7  *
8  */
9
10 #define UDS                     "citadel unix domain socket type of thing"
11
12 #define DEFAULT_HOST            UDS
13 #define DEFAULT_PORT            "citadel"
14
15
16 #include "sysdep.h"
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <signal.h>
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <sys/un.h>
26 #include <netdb.h>
27 #include <string.h>
28 #include <pwd.h>
29 #include <errno.h>
30 #include <stdarg.h>
31 #include "citadel.h"
32 #include "citadel_decls.h"
33 #include "ipc.h"
34 #ifndef HAVE_SNPRINTF
35 #include "snprintf.h"
36 #endif
37
38 /*
39  * If server_is_local is set to nonzero, the client assumes that it is running
40  * on the same computer as the server.  Several things happen when this is
41  * the case, including the ability to map a specific tty to a particular login
42  * session in the "<W>ho is online" listing, the ability to run external
43  * programs, and the ability to download files directly off the disk without
44  * having to first fetch them from the server.
45  * Set the flag to 1 if this IPC is local (as is the case with pipes, or a
46  * network session to the local machine) or 0 if the server is executing on
47  * a remote computer.
48  */
49 int server_is_local = 0;
50
51 #ifndef INADDR_NONE
52 #define INADDR_NONE 0xffffffff
53 #endif
54
55 int serv_sock;
56
57 void connection_died(void) {
58         fprintf(stderr, "\r"
59                         "Your connection to this Citadel server is broken.\n"
60                         "Please re-connect and log in again.\n");
61         logoff(3);
62 }
63
64
65 void timeout(int signum)
66 {
67         printf("\rConnection timed out.\n");
68         logoff(3);
69 }
70
71
72 int connectsock(char *host, char *service, char *protocol)
73 {
74         struct hostent *phe;
75         struct servent *pse;
76         struct protoent *ppe;
77         struct sockaddr_in sin;
78         int s, type;
79
80         memset(&sin, 0, sizeof(sin));
81         sin.sin_family = AF_INET;
82
83         pse = getservbyname(service, protocol);
84         if (pse) {
85                 sin.sin_port = pse->s_port;
86         } else if ((sin.sin_port = htons((u_short) atoi(service))) == 0) {
87                 fprintf(stderr, "Can't get %s service entry: %s\n",
88                         service, strerror(errno));
89                 logoff(3);
90         }
91         phe = gethostbyname(host);
92         if (phe) {
93                 memcpy(&sin.sin_addr, phe->h_addr, phe->h_length);
94         } else if ((sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE) {
95                 fprintf(stderr, "Can't get %s host entry: %s\n",
96                         host, strerror(errno));
97                 logoff(3);
98         }
99         if ((ppe = getprotobyname(protocol)) == 0) {
100                 fprintf(stderr, "Can't get %s protocol entry: %s\n",
101                         protocol, strerror(errno));
102                 logoff(3);
103         }
104         if (!strcmp(protocol, "udp")) {
105                 type = SOCK_DGRAM;
106         } else {
107                 type = SOCK_STREAM;
108         }
109
110         s = socket(PF_INET, type, ppe->p_proto);
111         if (s < 0) {
112                 fprintf(stderr, "Can't create socket: %s\n", strerror(errno));
113                 logoff(3);
114         }
115         signal(SIGALRM, timeout);
116         alarm(30);
117
118         if (connect(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
119                 fprintf(stderr, "can't connect to %s.%s: %s\n",
120                         host, service, strerror(errno));
121                 logoff(3);
122         }
123         alarm(0);
124         signal(SIGALRM, SIG_IGN);
125
126         return (s);
127 }
128
129 int uds_connectsock(char *sockpath)
130 {
131         struct sockaddr_un addr;
132         int s;
133
134         memset(&addr, 0, sizeof(addr));
135         addr.sun_family = AF_UNIX;
136         strncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
137
138         s = socket(AF_UNIX, SOCK_STREAM, 0);
139         if (s < 0) {
140                 fprintf(stderr, "Can't create socket: %s\n",
141                         strerror(errno));
142                 logoff(3);
143         }
144
145         if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
146                 fprintf(stderr, "can't connect: %s\n",
147                         strerror(errno));
148                 logoff(3);
149         }
150
151         server_is_local = 1;
152         return s;
153 }
154
155 /*
156  * convert service and host entries into a six-byte numeric in the format
157  * expected by a SOCKS v4 server
158  */
159 void numericize(char *buf, char *host, char *service, char *protocol)
160 {
161         struct hostent *phe;
162         struct servent *pse;
163         struct sockaddr_in sin;
164
165         memset(&sin, 0, sizeof(sin));
166         sin.sin_family = AF_INET;
167
168         pse = getservbyname(service, protocol);
169         if (pse) {
170                 sin.sin_port = pse->s_port;
171         } else if ((sin.sin_port = htons((u_short) atoi(service))) == 0) {
172                 fprintf(stderr, "Can't get %s service entry: %s\n",
173                         service, strerror(errno));
174                 logoff(3);
175         }
176         buf[1] = (((sin.sin_port) & 0xFF00) >> 8);
177         buf[0] = ((sin.sin_port) & 0x00FF);
178
179         phe = gethostbyname(host);
180         if (phe) {
181                 memcpy(&sin.sin_addr, phe->h_addr, phe->h_length);
182         } else if ((sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE) {
183                 fprintf(stderr, "Can't get %s host entry: %s\n",
184                         host, strerror(errno));
185                 logoff(3);
186         }
187         buf[5] = ((sin.sin_addr.s_addr) & 0xFF000000) >> 24;
188         buf[4] = ((sin.sin_addr.s_addr) & 0x00FF0000) >> 16;
189         buf[3] = ((sin.sin_addr.s_addr) & 0x0000FF00) >> 8;
190         buf[2] = ((sin.sin_addr.s_addr) & 0x000000FF);
191 }
192
193 /*
194  * input binary data from socket
195  */
196 void serv_read(char *buf, int bytes)
197 {
198         int len, rlen;
199
200         len = 0;
201         while (len < bytes) {
202                 rlen = read(serv_sock, &buf[len], bytes - len);
203                 if (rlen < 1) {
204                         connection_died();
205                         return;
206                 }
207                 len = len + rlen;
208         }
209 }
210
211
212 /*
213  * send binary to server
214  */
215 void serv_write(char *buf, int nbytes)
216 {
217         int bytes_written = 0;
218         int retval;
219         while (bytes_written < nbytes) {
220                 retval = write(serv_sock, &buf[bytes_written],
221                                nbytes - bytes_written);
222                 if (retval < 1) {
223                         connection_died();
224                         return;
225                 }
226                 bytes_written = bytes_written + retval;
227         }
228 }
229
230
231
232 /*
233  * input string from socket - implemented in terms of serv_read()
234  */
235 void serv_gets(char *buf)
236 {
237         int i;
238
239         /* Read one character at a time.
240          */
241         for (i = 0;; i++) {
242                 serv_read(&buf[i], 1);
243                 if (buf[i] == '\n' || i == 255)
244                         break;
245         }
246
247         /* If we got a long line, discard characters until the newline.
248          */
249         if (i == 255)
250                 while (buf[i] != '\n')
251                         serv_read(&buf[i], 1);
252
253         /* Strip the trailing newline.
254          */
255         buf[i] = 0;
256 }
257
258
259 /*
260  * send line to server - implemented in terms of serv_write()
261  */
262 void serv_puts(char *buf)
263 {
264         /* printf("< %s\n", buf); */
265         serv_write(buf, strlen(buf));
266         serv_write("\n", 1);
267 }
268
269
270 /*
271  * attach to server
272  */
273 void attach_to_server(int argc, char **argv)
274 {
275         int a;
276         char cithost[256];
277         int host_copied = 0;
278         char citport[256];
279         int port_copied = 0;
280         char socks4[256];
281         char buf[256];
282         struct passwd *p;
283         char sockpath[256];
284
285         strcpy(cithost, DEFAULT_HOST);  /* default host */
286         strcpy(citport, DEFAULT_PORT);  /* default port */
287         strcpy(socks4, "");     /* SOCKS v4 server */
288
289         for (a = 0; a < argc; ++a) {
290                 if (a == 0) {
291                         /* do nothing */
292                 } else if (!strcmp(argv[a], "-s")) {
293                         strcpy(socks4, argv[++a]);
294                 } else if (host_copied == 0) {
295                         host_copied = 1;
296                         strcpy(cithost, argv[a]);
297                 } else if (port_copied == 0) {
298                         port_copied = 1;
299                         strcpy(citport, argv[a]);
300                 }
301 /*
302    else {
303    fprintf(stderr,"%s: usage: ",argv[0]);
304    fprintf(stderr,"%s [host] [port] ",argv[0]);
305    fprintf(stderr,"[-s socks_server]\n");
306    logoff(2);
307    }
308  */
309         }
310
311         if ((!strcmp(cithost, "localhost"))
312             || (!strcmp(cithost, "127.0.0.1")))
313                 server_is_local = 1;
314
315         /* If we're using a unix domain socket we can do a bunch of stuff */
316         if (!strcmp(cithost, UDS)) {
317                 sprintf(sockpath, "%s/citadel.socket", BBSDIR);
318                 serv_sock = uds_connectsock(sockpath);
319                 return;
320         }
321
322         /* if not using a SOCKS proxy server, make the connection directly */
323         if (strlen(socks4) == 0) {
324                 serv_sock = connectsock(cithost, citport, "tcp");
325                 return;
326         }
327         /* if using SOCKS, connect first to the proxy... */
328         serv_sock = connectsock(socks4, "1080", "tcp");
329         printf("Connected to SOCKS proxy at %s.\n", socks4);
330         printf("Attaching to server...\r");
331         fflush(stdout);
332
333         snprintf(buf, sizeof buf, "%c%c",
334                  4,             /* version 4 */
335                  1);            /* method = connect */
336         serv_write(buf, 2);
337
338         numericize(buf, cithost, citport, "tcp");
339         serv_write(buf, 6);     /* port and address */
340
341         p = (struct passwd *) getpwuid(getuid());
342         serv_write(p->pw_name, strlen(p->pw_name) + 1);
343         /* user name */
344
345         serv_read(buf, 8);      /* get response */
346
347         if (buf[1] != 90) {
348                 printf("SOCKS server denied this proxy request.\n");
349                 logoff(3);
350         }
351 }
352
353 /*
354  * return the file descriptor of the server socket so we can select() on it.
355  */
356 int getsockfd(void)
357 {
358         return serv_sock;
359 }
360
361
362 /*
363  * return one character
364  */
365 char serv_getc(void)
366 {
367         char buf[2];
368         char ch;
369
370         serv_read(buf, 1);
371         ch = (int) buf[0];
372
373         return (ch);
374 }
375