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