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