WAIS protocol support.
[yaz-moved-to-github.git] / comstack / tcpip.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: tcpip.c,v $
7  * Revision 1.10  1996-02-20 12:52:11  quinn
8  * WAIS protocol support.
9  *
10  * Revision 1.9  1996/02/10  12:23:11  quinn
11  * Enablie inetd operations fro TCP/IP stack
12  *
13  * Revision 1.8  1995/11/01  13:54:27  quinn
14  * Minor adjustments
15  *
16  * Revision 1.7  1995/10/30  12:41:16  quinn
17  * Added hostname lookup for server.
18  *
19  * Revision 1.6  1995/09/29  17:12:00  quinn
20  * Smallish
21  *
22  * Revision 1.5  1995/09/29  17:01:48  quinn
23  * More Windows work
24  *
25  * Revision 1.4  1995/09/28  10:12:26  quinn
26  * Windows-support changes
27  *
28  * Revision 1.3  1995/09/27  15:02:45  quinn
29  * Modified function heads & prototypes.
30  *
31  * Revision 1.2  1995/06/15  12:30:06  quinn
32  * Added @ as hostname alias for INADDR ANY.
33  *
34  * Revision 1.1  1995/06/14  09:58:20  quinn
35  * Renamed yazlib to comstack.
36  *
37  * Revision 1.20  1995/05/16  08:51:16  quinn
38  * License, documentation, and memory fixes
39  *
40  * Revision 1.19  1995/04/10  10:24:08  quinn
41  * Some bug-fixes.
42  *
43  * Revision 1.18  1995/03/30  13:29:27  quinn
44  * Added REUSEADDR in tcpip_bind
45  *
46  * Revision 1.17  1995/03/27  08:36:10  quinn
47  * Some work on nonblocking operation in xmosi.c and rfct.c.
48  * Added protocol parameter to cs_create()
49  *
50  * Revision 1.16  1995/03/21  15:53:41  quinn
51  * Added rcvconnect
52  *
53  * Revision 1.15  1995/03/21  12:31:27  quinn
54  * Added check for EINPROGRESS on connect.
55  *
56  * Revision 1.14  1995/03/20  09:47:21  quinn
57  * Added server-side support to xmosi.c
58  * Fixed possible problems in rfct
59  * Other little mods
60  *
61  * Revision 1.13  1995/03/15  16:15:13  adam
62  * Removed p_write.
63  *
64  * Revision 1.12  1995/03/15  15:36:27  quinn
65  * Mods to support nonblocking I/O
66  *
67  * Revision 1.11  1995/03/15  08:37:57  quinn
68  * Now we're pretty much set for nonblocking I/O.
69  *
70  * Revision 1.10  1995/03/14  17:00:07  quinn
71  * Bug-fixes - added tracing info to tcpip.c
72  *
73  * Revision 1.9  1995/03/14  10:28:42  quinn
74  * Adding server-side support to tcpip.c and fixing bugs in nonblocking I/O
75  *
76  * Revision 1.8  1995/03/10  14:22:50  quinn
77  * Removed debug output.
78  *
79  * Revision 1.7  1995/03/10  11:44:59  quinn
80  * Fixes and debugging
81  *
82  * Revision 1.6  1995/03/07  10:26:55  quinn
83  * Initialized type field in the comstacks.
84  *
85  * Revision 1.5  1995/02/14  20:40:07  quinn
86  * Various stuff.
87  *
88  * Revision 1.4  1995/02/14  11:54:49  quinn
89  * Beginning to add full CCL.
90  *
91  * Revision 1.3  1995/02/10  18:58:10  quinn
92  * Fixed tcpip_get (formerly tcpip_read).
93  * Turned tst (cli) into a proper, event-driven thingy.
94  *
95  * Revision 1.2  1995/02/10  15:55:47  quinn
96  * Small things.
97  *
98  * Revision 1.1  1995/02/09  15:51:52  quinn
99  * Works better now.
100  *
101  */
102
103 #include <stdio.h>
104 #include <string.h>
105 #include <stdlib.h>
106 #include <unistd.h>
107 #include <errno.h>
108 #include <fcntl.h>
109
110 #include <comstack.h>
111 #include <tcpip.h>
112
113 #ifndef WINDOWS
114 #include <sys/time.h>
115 #endif
116
117 int tcpip_close(COMSTACK h);
118 int tcpip_put(COMSTACK h, char *buf, int size);
119 int tcpip_get(COMSTACK h, char **buf, int *bufsize);
120 int tcpip_connect(COMSTACK h, void *address);
121 int tcpip_more(COMSTACK h);
122 int tcpip_rcvconnect(COMSTACK h);
123 int tcpip_bind(COMSTACK h, void *address, int mode);
124 int tcpip_listen(COMSTACK h, char *addrp, int *addrlen);
125 COMSTACK tcpip_accept(COMSTACK h);
126 char *tcpip_addrstr(COMSTACK h);
127
128 /*
129  * Determine length/completeness of incoming packages
130  */
131 int completeBER(unsigned char *buf, int len); /* from the ODR module */
132 int completeWAIS(unsigned char *buf, int len); /* from waislen.c */
133
134 #ifdef TRACE_TCPIP
135 #define TRC(x) x
136 #else
137 #define TRC(X)
138 #endif
139
140 static int initialized = 0;
141
142 typedef struct tcpip_state
143 {
144     char *altbuf; /* alternate buffer for surplus data */
145     int altsize;  /* size as xmalloced */
146     int altlen;   /* length of data or 0 if none */
147
148     int written;  /* -1 if we aren't writing */
149     int towrite;  /* to verify against user input */
150     int (*complete)(unsigned char *buf, int len); /* length/completeness */
151 } tcpip_state;
152
153 /*
154  * s >= 0: socket has already been established for us.
155  */
156 COMSTACK tcpip_type(int s, int blocking, int protocol)
157 {
158     COMSTACK p;
159     tcpip_state *state;
160     int new_socket;
161 #ifdef WINDOWS
162     unsigned long tru = 1;
163 #else
164     struct protoent *proto;
165 #endif
166
167     if (!initialized)
168     {
169 #ifdef WINDOWS
170         WORD requested;
171         WSADATA wd;
172
173         requested = MAKEWORD(1, 1);
174         if (WSAStartup(requested, &wd))
175             return 0;
176 #endif
177         initialized = 1;
178     }
179
180     if (s < 0)
181     {
182 #ifndef WINDOWS
183         if (!(proto = getprotobyname("tcp")))
184             return 0;
185         if ((s = socket(AF_INET, SOCK_STREAM, proto->p_proto)) < 0)
186 #else
187         if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0)
188 #endif
189             return 0;
190         new_socket = 1;
191     }
192     else
193         new_socket = 0;
194     if (!(p = xmalloc(sizeof(struct comstack))))
195         return 0;
196     if (!(state = p->private = xmalloc(sizeof(tcpip_state))))
197         return 0;
198
199 #ifdef WINDOWS
200     if (!(p->blocking = blocking) && ioctlsocket(s, FIONBIO, &tru) < 0)
201 #else
202     if (!(p->blocking = blocking) && fcntl(s, F_SETFL, O_NONBLOCK) < 0)
203 #endif
204         return 0;
205
206     p->iofile = s;
207     p->type = tcpip_type;
208     p->protocol = protocol;
209
210     p->f_connect = tcpip_connect;
211     p->f_rcvconnect = tcpip_rcvconnect;
212     p->f_get = tcpip_get;
213     p->f_put = tcpip_put;
214     p->f_close = tcpip_close;
215     p->f_more = tcpip_more;
216     p->f_bind = tcpip_bind;
217     p->f_listen = tcpip_listen;
218     p->f_accept = tcpip_accept;
219     p->f_addrstr = tcpip_addrstr;
220
221     p->state = new_socket ? CS_UNBND : CS_IDLE; /* state of line */
222     p->event = CS_NONE;
223     p->cerrno = 0;
224     p->stackerr = 0;
225
226     state->altbuf = 0;
227     state->altsize = state->altlen = 0;
228     state->towrite = state->written = -1;
229     if (protocol == PROTO_WAIS)
230         state->complete = completeWAIS;
231     else
232         state->complete = completeBER;
233
234     p->timeout = COMSTACK_DEFAULT_TIMEOUT;
235     TRC(fprintf(stderr, "Created new TCPIP comstack\n"));
236
237     return p;
238 }
239
240 struct sockaddr_in *tcpip_strtoaddr(const char *str)
241 {
242     static struct sockaddr_in add;
243     struct hostent *hp;
244     char *p, buf[512];
245     short int port = 210;
246     unsigned tmpadd;
247
248     TRC(fprintf(stderr, "tcpip_strtoaddress: %s\n", str ? str : "NULL"));
249     add.sin_family = AF_INET;
250     strcpy(buf, str);
251     if ((p = strchr(buf, ':')))
252     {
253         *p = 0;
254         port = atoi(p + 1);
255     }
256     add.sin_port = htons(port);
257     if (!strcmp("@", buf))
258         add.sin_addr.s_addr = INADDR_ANY;
259     else if ((hp = gethostbyname(buf)))
260         memcpy(&add.sin_addr.s_addr, *hp->h_addr_list, sizeof(struct in_addr));
261     else if ((tmpadd = (unsigned) inet_addr(buf)) != 0)
262         memcpy(&add.sin_addr.s_addr, &tmpadd, sizeof(struct in_addr));
263     else
264         return 0;
265     return &add;
266 }
267
268 int tcpip_more(COMSTACK h)
269 {
270     tcpip_state *sp = h->private;
271
272     return sp->altlen && completeBER((unsigned char *) sp->altbuf, sp->altlen);
273 }
274
275 /*
276  * connect(2) will block (sometimes) - nothing we can do short of doing
277  * weird things like spawning subprocesses or threading or some weird junk
278  * like that.
279  */
280 int tcpip_connect(COMSTACK h, void *address)
281 {
282     struct sockaddr_in *add = address;
283
284     TRC(fprintf(stderr, "tcpip_connect\n"));
285     if (connect(h->iofile, (struct sockaddr *) add, sizeof(*add)) < 0)
286     {
287 #ifdef WINDOWS
288         if (WSAGetLastError() == WSAEWOULDBLOCK)
289 #else
290         if (errno == EINPROGRESS)
291 #endif
292             return 1;
293         return -1;
294     }
295     h->state = CS_DATAXFER;
296     return 0;
297 }
298
299 /*
300  * nop
301  */
302 int tcpip_rcvconnect(COMSTACK h)
303 {
304     TRC(fprintf(stderr, "tcpip_rcvconnect\n"));
305     return 0;
306 }
307
308 int tcpip_bind(COMSTACK h, void *address, int mode)
309 {
310     struct sockaddr *addr = address;
311     unsigned long one = 1;
312
313     TRC(fprintf(stderr, "tcpip_bind\n"));
314     if (setsockopt(h->iofile, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0)
315     {
316         h->cerrno = CSYSERR;
317         return -1;
318     }
319     if (bind(h->iofile, addr, sizeof(struct sockaddr_in)) < 0)
320     {
321         h->cerrno = CSYSERR;
322         return -1;
323     }
324     if (mode == CS_SERVER && listen(h->iofile, 3) < 0)
325     {
326         h->cerrno = CSYSERR;
327         return -1;
328     }
329     h->state = CS_IDLE;
330     return 0;
331 }
332
333 int tcpip_listen(COMSTACK h, char *raddr, int *addrlen)
334 {
335     struct sockaddr_in addr;
336     int len = sizeof(addr);
337
338     TRC(fprintf(stderr, "tcpip_listen\n"));
339     if (h->state != CS_IDLE)
340     {
341         h->cerrno = CSOUTSTATE;
342         return -1;
343     }
344     if ((h->newfd = accept(h->iofile, (struct sockaddr*)&addr, &len)) < 0)
345     {
346 #ifdef WINDOWS
347         if (WSAGetLastError() == WSAEWOULDBLOCK)
348 #else
349         if (errno == EWOULDBLOCK)
350 #endif
351
352             h->cerrno = CSNODATA;
353         else
354             h->cerrno = CSYSERR;
355         return -1;
356     }
357     if (addrlen && *addrlen > sizeof(struct sockaddr_in))
358         memcpy(raddr, &addr, *addrlen = sizeof(struct sockaddr_in));
359     else if (addrlen)
360         *addrlen = 0;
361     h->state = CS_INCON;
362     return 0;
363 }
364
365 COMSTACK tcpip_accept(COMSTACK h)
366 {
367     COMSTACK new;
368     tcpip_state *state;
369 #ifdef WINDOWS
370     unsigned long tru = 1;
371 #endif
372
373     TRC(fprintf(stderr, "tcpip_accept\n"));
374     if (h->state != CS_INCON)
375     {
376         h->cerrno = CSOUTSTATE;
377         return 0;
378     }
379     if (!(new = xmalloc(sizeof(*new))))
380     {
381         h->cerrno = CSYSERR;
382         return 0;
383     }
384     memcpy(new, h, sizeof(*h));
385     new->iofile = h->newfd;
386     if (!(state = new->private = xmalloc(sizeof(tcpip_state))))
387     {
388         h->cerrno = CSYSERR;
389         return 0;
390     }
391 #ifdef WINDOWS
392     if (!new->blocking && ioctlsocket(new->iofile, FIONBIO, &tru) < 0)
393 #else
394     if (!new->blocking && fcntl(new->iofile, F_SETFL, O_NONBLOCK) < 0)
395 #endif
396         return 0;
397     state->altbuf = 0;
398     state->altsize = state->altlen = 0;
399     state->towrite = state->written = -1;
400     new->state = CS_DATAXFER;
401     h->state = CS_IDLE;
402     return new;
403 }
404
405 #define CS_TCPIP_BUFCHUNK 4096
406
407 /*
408  * Return: -1 error, >1 good, len of buffer, ==1 incomplete buffer,
409  * 0=connection closed.
410  */
411 int tcpip_get(COMSTACK h, char **buf, int *bufsize)
412 {
413     tcpip_state *sp = h->private;
414     char *tmpc;
415     int tmpi, berlen, rest, req, tomove;
416     int hasread = 0, res;
417
418     TRC(fprintf(stderr, "tcpip_get: bufsize=%d\n", *bufsize));
419     if (sp->altlen) /* switch buffers */
420     {
421         TRC(fprintf(stderr, "  %d bytes in altbuf (0x%x)\n", sp->altlen,
422             (unsigned) sp->altbuf));
423         tmpc = *buf;
424         tmpi = *bufsize;
425         *buf = sp->altbuf;
426         *bufsize = sp->altsize;
427         hasread = sp->altlen;
428         sp->altlen = 0;
429         sp->altbuf = tmpc;
430         sp->altsize = tmpi;
431     }
432     while (!(berlen = completeBER((unsigned char *)*buf, hasread)))
433     {
434         if (!*bufsize)
435         {
436             if (!(*buf = xmalloc(*bufsize = CS_TCPIP_BUFCHUNK)))
437                 return -1;
438         }
439         else if (*bufsize - hasread < CS_TCPIP_BUFCHUNK)
440             if (!(*buf =xrealloc(*buf, *bufsize *= 2)))
441                 return -1;
442         if ((res = recv(h->iofile, *buf + hasread, CS_TCPIP_BUFCHUNK, 0)) < 0)
443 #ifdef WINDOWS
444             if (WSAGetLastError() == WSAEWOULDBLOCK)
445 #else
446             if (errno == EWOULDBLOCK)
447 #endif
448                 break;
449             else
450                 return -1;
451         if (!res)
452             return 0;
453         hasread += res;
454         TRC(fprintf(stderr, "  res=%d, hasread=%d\n", res, hasread));
455     }
456     TRC(fprintf(stderr, "  Out of read loop with hasread=%d, berlen=%d\n",
457         hasread, berlen));
458     /* move surplus buffer (or everything if we didn't get a BER rec.) */
459     if (hasread > berlen)
460     {
461         tomove = req = hasread - berlen;
462         rest = tomove % CS_TCPIP_BUFCHUNK;
463         if (rest)
464             req += CS_TCPIP_BUFCHUNK - rest;
465         if (!sp->altbuf)
466         {
467             if (!(sp->altbuf = xmalloc(sp->altsize = req)))
468                 return -1;
469         } else if (sp->altsize < req)
470             if (!(sp->altbuf =xrealloc(sp->altbuf, sp->altsize = req)))
471                 return -1;
472         TRC(fprintf(stderr, "  Moving %d bytes to altbuf(0x%x)\n", tomove,
473             (unsigned) sp->altbuf));
474         memcpy(sp->altbuf, *buf + berlen, sp->altlen = tomove);
475     }
476     if (berlen < CS_TCPIP_BUFCHUNK - 1)
477         *(*buf + berlen) = '\0';
478     return berlen ? berlen : 1;
479 }
480
481 /*
482  * Returns 1, 0 or -1
483  * In nonblocking mode, you must call again with same buffer while
484  * return value is 1.
485  */
486 int tcpip_put(COMSTACK h, char *buf, int size)
487 {
488     int res;
489     struct tcpip_state *state = h->private;
490
491     TRC(fprintf(stderr, "tcpip_put: size=%d\n", size));
492     if (state->towrite < 0)
493     {
494         state->towrite = size;
495         state->written = 0;
496     }
497     else if (state->towrite != size)
498     {
499         h->cerrno = CSWRONGBUF;
500         return -1;
501     }
502     while (state->towrite > state->written)
503     {
504         if ((res = send(h->iofile, buf + state->written, size -
505             state->written, 0)) < 0)
506         {
507 #ifdef WINDOWS
508             if (WSAGetLastError() == WSAEWOULDBLOCK)
509 #else
510             if (errno == EAGAIN)
511 #endif
512             {
513                 TRC(fprintf(stderr, "  Flow control stop\n"));
514                 return 1;
515             }
516             h->cerrno = CSYSERR;
517             return -1;
518         }
519         state->written += res;
520         TRC(fprintf(stderr, "  Wrote %d, written=%d, nbytes=%d\n",
521             res, state->written, size));
522     }
523     state->towrite = state->written = -1;
524     TRC(fprintf(stderr, "  Ok\n"));
525     return 0;
526 }
527
528 int tcpip_close(COMSTACK h)
529 {
530     tcpip_state *sp = h->private;
531
532     TRC(fprintf(stderr, "tcpip_close\n"));
533     close(h->iofile);
534     if (sp->altbuf)
535         xfree(sp->altbuf);
536     xfree(sp);
537     xfree(h);
538     return 0;
539 }
540
541 char *tcpip_addrstr(COMSTACK h)
542 {
543     struct sockaddr_in addr;
544     static char buf[64];
545     char *r;
546     int len;
547     struct hostent *host;
548
549     len = sizeof(addr);
550     if (getpeername(h->iofile, (struct sockaddr*) &addr, &len) < 0)
551     {
552         h->cerrno = CSYSERR;
553         return 0;
554     }
555     if ((host = gethostbyaddr((char*)&addr.sin_addr, sizeof(addr.sin_addr),
556         AF_INET)))
557         r = (char*) host->h_name;
558     else
559         r = inet_ntoa(addr.sin_addr);
560     sprintf(buf, "tcp:%s", r);
561     return buf;
562 }