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