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