Remove call to gnutls_global_init. tcpip_init already does it
[yaz-moved-to-github.git] / src / tcpip.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) Index Data
3  * See the file LICENSE for details.
4  */
5 /**
6  * \file tcpip.c
7  * \brief Implements TCP/IP + SSL COMSTACK.
8  */
9 #if HAVE_CONFIG_H
10 #include <config.h>
11 #endif
12
13 #include <stdio.h>
14 #include <string.h>
15 #include <assert.h>
16 #include <stdlib.h>
17 #include <errno.h>
18 #include <fcntl.h>
19 #include <signal.h>
20 #if HAVE_SYS_TYPES_H
21 #include <sys/types.h>
22 #endif
23 #if HAVE_SYS_TIME_H
24 #include <sys/time.h>
25 #endif
26 #if HAVE_UNISTD_H
27 #include <unistd.h>
28 #endif
29
30 #ifdef WIN32
31 /* VS 2003 or later has getaddrinfo; older versions do not */
32 #include <winsock2.h>
33 #if _MSC_VER >= 1300
34 #include <ws2tcpip.h>
35 #define HAVE_GETADDRINFO 1
36 #else
37 #define HAVE_GETADDRINFO 0
38 #endif
39 #endif
40
41 #if HAVE_NETINET_IN_H
42 #include <netinet/in.h>
43 #endif
44 #if HAVE_NETDB_H
45 #include <netdb.h>
46 #endif
47 #if HAVE_ARPA_INET_H
48 #include <arpa/inet.h>
49 #endif
50 #if HAVE_NETINET_TCP_H
51 #include <netinet/tcp.h>
52 #endif
53 #if HAVE_SYS_SOCKET_H
54 #include <sys/socket.h>
55 #endif
56 #if HAVE_SYS_WAIT_H
57 #include <sys/wait.h>
58 #endif
59
60 #if HAVE_GNUTLS_H
61 #include <gnutls/x509.h>
62 #include <gnutls/gnutls.h>
63 #endif
64
65 #include <yaz/comstack.h>
66 #include <yaz/tcpip.h>
67 #include <yaz/errno.h>
68
69 static void tcpip_close(COMSTACK h);
70 static int tcpip_put(COMSTACK h, char *buf, int size);
71 static int tcpip_get(COMSTACK h, char **buf, int *bufsize);
72 static int tcpip_put_connect(COMSTACK h, char *buf, int size);
73 static int tcpip_get_connect(COMSTACK h, char **buf, int *bufsize);
74 static int tcpip_connect(COMSTACK h, void *address);
75 static int tcpip_more(COMSTACK h);
76 static int tcpip_rcvconnect(COMSTACK h);
77 static int tcpip_bind(COMSTACK h, void *address, int mode);
78 static int tcpip_listen(COMSTACK h, char *raddr, int *addrlen,
79                  int (*check_ip)(void *cd, const char *a, int len, int type),
80                  void *cd);
81 static int tcpip_set_blocking(COMSTACK p, int blocking);
82
83 #if HAVE_GNUTLS_H
84 static int ssl_get(COMSTACK h, char **buf, int *bufsize);
85 static int ssl_put(COMSTACK h, char *buf, int size);
86 #endif
87
88 static COMSTACK tcpip_accept(COMSTACK h);
89 static const char *tcpip_addrstr(COMSTACK h);
90 static void *tcpip_straddr(COMSTACK h, const char *str);
91
92 #if 0
93 #define TRC(x) x
94 #else
95 #define TRC(X)
96 #endif
97
98 #ifndef YAZ_SOCKLEN_T
99 #define YAZ_SOCKLEN_T int
100 #endif
101
102 #if HAVE_GNUTLS_H
103 struct tcpip_cred_ptr {
104     gnutls_certificate_credentials_t xcred;
105     int ref;
106 };
107
108 #endif
109 /* this state is used for both SSL and straight TCP/IP */
110 typedef struct tcpip_state
111 {
112     char *altbuf; /* alternate buffer for surplus data */
113     int altsize;  /* size as xmalloced */
114     int altlen;   /* length of data or 0 if none */
115
116     int written;  /* -1 if we aren't writing */
117     int towrite;  /* to verify against user input */
118     int (*complete)(const char *buf, int len); /* length/complete. */
119 #if HAVE_GETADDRINFO
120     struct addrinfo *ai;
121     struct addrinfo *ai_connect;
122 #else
123     struct sockaddr_in addr;  /* returned by cs_straddr */
124 #endif
125     char buf[128]; /* returned by cs_addrstr */
126 #if HAVE_GNUTLS_H
127     struct tcpip_cred_ptr *cred_ptr;
128     gnutls_session_t session;
129     char cert_fname[256];
130 #endif
131     char *connect_request_buf;
132     int connect_request_len;
133     char *connect_response_buf;
134     int connect_response_len;
135 } tcpip_state;
136
137 static int tcpip_init(void)
138 {
139 #ifdef WIN32
140     static int initialized = 0;
141 #endif
142     yaz_init_globals();
143 #ifdef WIN32
144     if (!initialized)
145     {
146         WORD requested;
147         WSADATA wd;
148
149         requested = MAKEWORD(1, 1);
150         if (WSAStartup(requested, &wd))
151             return 0;
152         initialized = 1;
153     }
154 #endif
155     return 1;
156 }
157
158 /*
159  * This function is always called through the cs_create() macro.
160  * s >= 0: socket has already been established for us.
161  */
162 COMSTACK tcpip_type(int s, int flags, int protocol, void *vp)
163 {
164     COMSTACK p;
165     tcpip_state *sp;
166
167     if (!tcpip_init())
168         return 0;
169     if (!(p = (struct comstack *)xmalloc(sizeof(struct comstack))))
170         return 0;
171     if (!(sp = (struct tcpip_state *)(p->cprivate =
172                                          xmalloc(sizeof(tcpip_state)))))
173         return 0;
174
175     p->flags = flags;
176
177     p->io_pending = 0;
178     p->iofile = s;
179     p->type = tcpip_type;
180     p->protocol = (enum oid_proto) protocol;
181
182     p->f_connect = tcpip_connect;
183     p->f_rcvconnect = tcpip_rcvconnect;
184     p->f_get = tcpip_get;
185     p->f_put = tcpip_put;
186     p->f_close = tcpip_close;
187     p->f_more = tcpip_more;
188     p->f_bind = tcpip_bind;
189     p->f_listen = tcpip_listen;
190     p->f_accept = tcpip_accept;
191     p->f_addrstr = tcpip_addrstr;
192     p->f_straddr = tcpip_straddr;
193     p->f_set_blocking = tcpip_set_blocking;
194     p->max_recv_bytes = 128 * 1024 * 1024;
195
196     p->state = s < 0 ? CS_ST_UNBND : CS_ST_IDLE; /* state of line */
197     p->event = CS_NONE;
198     p->cerrno = 0;
199     p->user = 0;
200
201 #if HAVE_GNUTLS_H
202     sp->cred_ptr = 0;
203     sp->session = 0;
204     strcpy(sp->cert_fname, "yaz.pem");
205 #endif
206
207 #if HAVE_GETADDRINFO
208     sp->ai = 0;
209 #endif
210     sp->altbuf = 0;
211     sp->altsize = sp->altlen = 0;
212     sp->towrite = sp->written = -1;
213     sp->complete = cs_complete_auto;
214
215     sp->connect_request_buf = 0;
216     sp->connect_request_len = 0;
217     sp->connect_response_buf = 0;
218     sp->connect_response_len = 0;
219
220     TRC(fprintf(stderr, "Created new TCPIP comstack h=%p\n", p));
221
222     return p;
223 }
224
225 COMSTACK yaz_tcpip_create(int s, int flags, int protocol,
226                           const char *connect_host)
227 {
228     COMSTACK p = tcpip_type(s, flags, protocol, 0);
229     if (!p)
230         return 0;
231     if (connect_host)
232     {
233         tcpip_state *sp = (tcpip_state *) p->cprivate;
234         sp->connect_request_buf = (char *) xmalloc(strlen(connect_host) + 30);
235         sprintf(sp->connect_request_buf, "CONNECT %s HTTP/1.0\r\n\r\n",
236                 connect_host);
237         sp->connect_request_len = strlen(sp->connect_request_buf);
238         p->f_put = tcpip_put_connect;
239         p->f_get = tcpip_get_connect;
240         sp->complete = cs_complete_auto_head; /* only want HTTP header */
241     }
242     return p;
243 }
244
245 #if HAVE_GNUTLS_H
246 static void tcpip_create_cred(COMSTACK cs)
247 {
248     tcpip_state *sp = (tcpip_state *) cs->cprivate;
249     sp->cred_ptr = (struct tcpip_cred_ptr *) xmalloc(sizeof(*sp->cred_ptr));
250     sp->cred_ptr->ref = 1;
251     gnutls_certificate_allocate_credentials(&sp->cred_ptr->xcred);
252 }
253
254 #endif
255
256 COMSTACK ssl_type(int s, int flags, int protocol, void *vp)
257 {
258 #if HAVE_GNUTLS_H
259     tcpip_state *sp;
260     COMSTACK p;
261
262     p = tcpip_type(s, flags, protocol, 0);
263     if (!p)
264         return 0;
265     p->f_get = ssl_get;
266     p->f_put = ssl_put;
267     p->type = ssl_type;
268     sp = (tcpip_state *) p->cprivate;
269
270     sp->session = (gnutls_session_t) vp;
271     /* note: we don't handle already opened socket in SSL mode - yet */
272     return p;
273 #else
274     return 0;
275 #endif
276 }
277
278 #if HAVE_GNUTLS_H
279 static int ssl_check_error(COMSTACK h, tcpip_state *sp, int res)
280 {
281     TRC(fprintf(stderr, "ssl_check_error error=%d fatal=%d msg=%s\n",
282                 res,
283                 gnutls_error_is_fatal(res),
284                 gnutls_strerror(res)));
285     if (res == GNUTLS_E_AGAIN || res == GNUTLS_E_INTERRUPTED)
286     {
287         int dir = gnutls_record_get_direction(sp->session);
288         TRC(fprintf(stderr, " -> incomplete dir=%d\n", dir));
289         h->io_pending = dir ? CS_WANT_WRITE : CS_WANT_READ;
290         return 1;
291     }
292     h->cerrno = CSERRORSSL;
293     return 0;
294 }
295 #endif
296
297 #if HAVE_GETADDRINFO
298 /* resolve using getaddrinfo */
299 struct addrinfo *tcpip_getaddrinfo(const char *str, const char *port,
300                                    int *ipv6_only)
301 {
302     struct addrinfo hints, *res;
303     int error;
304     char host[512], *p;
305
306     hints.ai_flags = 0;
307     hints.ai_family = AF_UNSPEC;
308     hints.ai_socktype = SOCK_STREAM;
309     hints.ai_protocol = 0;
310     hints.ai_addrlen        = 0;
311     hints.ai_addr           = NULL;
312     hints.ai_canonname      = NULL;
313     hints.ai_next           = NULL;
314
315     strncpy(host, str, sizeof(host)-1);
316     host[sizeof(host)-1] = 0;
317     if ((p = strchr(host, '/')))
318         *p = 0;
319     if ((p = strrchr(host, ':')))
320     {
321         *p = '\0';
322         port = p+1;
323     }
324
325     if (!strcmp("@", host))
326     {
327         hints.ai_flags = AI_PASSIVE;
328         hints.ai_family = AF_UNSPEC;
329         error = getaddrinfo(0, port, &hints, &res);
330         *ipv6_only = 0;
331     }
332     else if (!strcmp("@4", host))
333     {
334         hints.ai_flags = AI_PASSIVE;
335         hints.ai_family = AF_INET;
336         error = getaddrinfo(0, port, &hints, &res);
337         *ipv6_only = -1;
338     }
339     else if (!strcmp("@6", host))
340     {
341         hints.ai_flags = AI_PASSIVE;
342         hints.ai_family = AF_INET6;
343         error = getaddrinfo(0, port, &hints, &res);
344         *ipv6_only = 1;
345     }
346     else
347     {
348         error = getaddrinfo(host, port, &hints, &res);
349         *ipv6_only = -1;
350     }
351     if (error)
352         return 0;
353     return res;
354 }
355
356 #endif
357 /* gethostbyname .. old systems */
358 int tcpip_strtoaddr_ex(const char *str, struct sockaddr_in *add,
359                        int default_port)
360 {
361     struct hostent *hp;
362     char *p, buf[512];
363     short int port = default_port;
364 #ifdef WIN32
365     unsigned long tmpadd;
366 #else
367     in_addr_t tmpadd;
368 #endif
369     TRC(fprintf(stderr, "tcpip_strtoaddress: %s\n", str ? str : "NULL"));
370     add->sin_family = AF_INET;
371     strncpy(buf, str, sizeof(buf)-1);
372     buf[sizeof(buf)-1] = 0;
373     if ((p = strchr(buf, '/')))
374         *p = 0;
375     if ((p = strrchr(buf, ':')))
376     {
377         *p = 0;
378         port = atoi(p + 1);
379     }
380     add->sin_port = htons(port);
381     if (!strcmp("@", buf))
382     {
383         add->sin_addr.s_addr = INADDR_ANY;
384     }
385     else if ((tmpadd = inet_addr(buf)) != -1)
386     {
387         memcpy(&add->sin_addr.s_addr, &tmpadd, sizeof(struct in_addr));
388     }
389     else if ((hp = gethostbyname(buf)))
390     {
391         memcpy(&add->sin_addr.s_addr, *hp->h_addr_list,
392                sizeof(struct in_addr));
393     }
394     else
395         return 0;
396     return 1;
397 }
398
399 #if HAVE_GETADDRINFO
400 void *tcpip_straddr(COMSTACK h, const char *str)
401 {
402     tcpip_state *sp = (tcpip_state *)h->cprivate;
403     const char *port = "210";
404     struct addrinfo *ai = 0;
405     int ipv6_only = 0;
406     if (h->protocol == PROTO_HTTP)
407     {
408         if (h->type == ssl_type)
409             port = "443";
410         else
411             port = "80";
412     }
413     if (!tcpip_init())
414         return 0;
415
416     if (sp->ai)
417         freeaddrinfo(sp->ai);
418     sp->ai = tcpip_getaddrinfo(str, port, &ipv6_only);
419     if (sp->ai && h->state == CS_ST_UNBND)
420     {
421         int s = -1;
422         if (ipv6_only >= 0)
423         {
424             for (ai = sp->ai; ai; ai = ai->ai_next)
425             {
426                 if (ai->ai_family == AF_INET6)
427                 {
428                     s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
429                     if (s != -1)
430                         break;
431                 }
432             }
433         }
434         if (s == -1)
435         {
436             for (ai = sp->ai; ai; ai = ai->ai_next)
437             {
438                 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
439                 if (s != -1)
440                      break;
441             }
442         }
443         if (s == -1)
444             return 0;
445         TRC(fprintf(stderr, "First socket fd=%d\n", s));
446         assert(ai);
447         h->iofile = s;
448         if (ai->ai_family == AF_INET6 && ipv6_only >= 0 &&
449             setsockopt(h->iofile,
450                        IPPROTO_IPV6,
451                        IPV6_V6ONLY, &ipv6_only, sizeof(ipv6_only)))
452                 return 0;
453         if (!tcpip_set_blocking(h, h->flags))
454             return 0;
455     }
456     return ai;
457 }
458 #else
459 void *tcpip_straddr(COMSTACK h, const char *str)
460 {
461     tcpip_state *sp = (tcpip_state *)h->cprivate;
462     int port = 210;
463     if (h->protocol == PROTO_HTTP)
464     {
465         if (h->type == ssl_type)
466             port = 443;
467         else
468             port = 80;
469     }
470
471     if (!tcpip_init())
472         return 0;
473     if (!tcpip_strtoaddr_ex(str, &sp->addr, port))
474         return 0;
475     if (h->state == CS_ST_UNBND)
476     {
477         int s;
478         s = socket(AF_INET, SOCK_STREAM, 0);
479         if (s < 0)
480             return 0;
481         h->iofile = s;
482
483         if (!tcpip_set_blocking(h, h->flags))
484             return 0;
485     }
486     return &sp->addr;
487 }
488 #endif
489
490 int tcpip_more(COMSTACK h)
491 {
492     tcpip_state *sp = (tcpip_state *)h->cprivate;
493
494     return sp->altlen && (*sp->complete)(sp->altbuf, sp->altlen);
495 }
496
497 static int cont_connect(COMSTACK h)
498 {
499 #if HAVE_GETADDRINFO
500     tcpip_state *sp = (tcpip_state *)h->cprivate;
501     struct addrinfo *ai = sp->ai_connect;
502     while (ai && (ai = ai->ai_next))
503     {
504         int s;
505         s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
506         if (s != -1)
507         {
508 #if HAVE_GNUTLS_H
509             if (h->type == ssl_type && sp->session)
510             {
511                 gnutls_bye(sp->session, GNUTLS_SHUT_WR);
512                 gnutls_deinit(sp->session);
513                 sp->session = 0;
514             }
515 #endif
516 #ifdef WIN32
517             closesocket(h->iofile);
518 #else
519             close(h->iofile);
520 #endif
521             TRC(fprintf(stderr, "Other socket call fd=%d\n", s));
522             h->state = CS_ST_UNBND;
523             h->iofile = s;
524             tcpip_set_blocking(h, h->flags);
525             return tcpip_connect(h, ai);
526         }
527 #endif
528     }
529     h->cerrno = CSYSERR;
530     return -1;
531 }
532
533
534 /*
535  * connect(2) will block (sometimes) - nothing we can do short of doing
536  * weird things like spawning subprocesses or threading or some weird junk
537  * like that.
538  */
539 int tcpip_connect(COMSTACK h, void *address)
540 {
541 #if HAVE_GETADDRINFO
542     struct addrinfo *ai = (struct addrinfo *) address;
543     tcpip_state *sp = (tcpip_state *)h->cprivate;
544 #else
545     struct sockaddr_in *add = (struct sockaddr_in *) address;
546 #endif
547     int r;
548     TRC(fprintf(stderr, "tcpip_connect h=%p\n", h));
549     h->io_pending = 0;
550     if (h->state != CS_ST_UNBND)
551     {
552         h->cerrno = CSOUTSTATE;
553         return -1;
554     }
555 #if HAVE_GETADDRINFO
556     r = connect(h->iofile, ai->ai_addr, ai->ai_addrlen);
557     sp->ai_connect = ai;
558 #else
559     r = connect(h->iofile, (struct sockaddr *) add, sizeof(*add));
560 #endif
561     if (r < 0)
562     {
563 #ifdef WIN32
564         if (WSAGetLastError() == WSAEWOULDBLOCK)
565         {
566             h->event = CS_CONNECT;
567             h->state = CS_ST_CONNECTING;
568             h->io_pending = CS_WANT_WRITE;
569             return 1;
570         }
571 #else
572         if (yaz_errno() == EINPROGRESS)
573         {
574             TRC(fprintf(stderr, "Pending fd=%d\n", h->iofile));
575             h->event = CS_CONNECT;
576             h->state = CS_ST_CONNECTING;
577             h->io_pending = CS_WANT_WRITE|CS_WANT_READ;
578             return 1;
579         }
580 #endif
581         return cont_connect(h);
582     }
583     h->event = CS_CONNECT;
584     h->state = CS_ST_CONNECTING;
585
586     return tcpip_rcvconnect(h);
587 }
588
589 /*
590  * nop
591  */
592 int tcpip_rcvconnect(COMSTACK h)
593 {
594 #if HAVE_GNUTLS_H
595     tcpip_state *sp = (tcpip_state *)h->cprivate;
596 #endif
597     TRC(fprintf(stderr, "tcpip_rcvconnect\n"));
598
599     if (h->state == CS_ST_DATAXFER)
600         return 0;
601     if (h->state != CS_ST_CONNECTING)
602     {
603         h->cerrno = CSOUTSTATE;
604         return -1;
605     }
606 #if HAVE_GNUTLS_H
607     if (h->type == ssl_type && !sp->session)
608     {
609         tcpip_create_cred(h);
610         gnutls_init(&sp->session, GNUTLS_CLIENT);
611         gnutls_set_default_priority(sp->session);
612         gnutls_credentials_set (sp->session, GNUTLS_CRD_CERTIFICATE,
613                                 sp->cred_ptr->xcred);
614         /* cast to intermediate size_t to avoid GCC warning. */
615         gnutls_transport_set_ptr(sp->session,
616                                  (gnutls_transport_ptr_t)
617                                  (size_t) h->iofile);
618     }
619     if (sp->session)
620     {
621         int res = gnutls_handshake(sp->session);
622         if (res < 0)
623         {
624             if (ssl_check_error(h, sp, res))
625                 return 1;
626             return cont_connect(h);
627         }
628     }
629 #endif
630     h->event = CS_DATA;
631     h->state = CS_ST_DATAXFER;
632     return 0;
633 }
634
635 #define CERTF "ztest.pem"
636 #define KEYF "ztest.pem"
637
638 static int tcpip_bind(COMSTACK h, void *address, int mode)
639 {
640     int r;
641     tcpip_state *sp = (tcpip_state *)h->cprivate;
642 #if HAVE_GETADDRINFO
643     struct addrinfo *ai = (struct addrinfo *) address;
644 #else
645     struct sockaddr *addr = (struct sockaddr *)address;
646 #endif
647 #ifdef WIN32
648     BOOL one = 1;
649 #else
650     int one = 1;
651 #endif
652
653 #if HAVE_GNUTLS_H
654     if (h->type == ssl_type && !sp->session)
655     {
656         int res;
657         tcpip_create_cred(h);
658         res = gnutls_certificate_set_x509_key_file(sp->cred_ptr->xcred,
659                                                    sp->cert_fname,
660                                                    sp->cert_fname,
661                                                    GNUTLS_X509_FMT_PEM);
662         if (res != GNUTLS_E_SUCCESS)
663         {
664             fprintf(stderr, "Error 1\n");
665             h->cerrno = CSERRORSSL;
666             return -1;
667         }
668     }
669 #else
670     TRC(fprintf(stderr, "tcpip_bind\n"));
671 #endif
672 #ifndef WIN32
673     if (setsockopt(h->iofile, SOL_SOCKET, SO_REUSEADDR, (char*)
674         &one, sizeof(one)) < 0)
675     {
676         h->cerrno = CSYSERR;
677         return -1;
678     }
679 #endif
680 #if HAVE_GETADDRINFO
681     r = bind(h->iofile, ai->ai_addr, ai->ai_addrlen);
682     freeaddrinfo(sp->ai);
683     sp->ai = 0;
684 #else
685     r = bind(h->iofile, addr, sizeof(struct sockaddr_in));
686 #endif
687     if (r)
688     {
689         h->cerrno = CSYSERR;
690         return -1;
691     }
692     /* Allow a maximum-sized backlog of waiting-to-connect clients */
693     if (mode == CS_SERVER && listen(h->iofile, SOMAXCONN) < 0)
694     {
695         h->cerrno = CSYSERR;
696         return -1;
697     }
698     h->state = CS_ST_IDLE;
699     h->event = CS_LISTEN;
700     return 0;
701 }
702
703 int tcpip_listen(COMSTACK h, char *raddr, int *addrlen,
704                  int (*check_ip)(void *cd, const char *a, int len, int t),
705                  void *cd)
706 {
707 #ifdef WIN32
708     /* we don't get peer address on Windows (via accept) */
709 #else
710     struct sockaddr_in addr;
711     YAZ_SOCKLEN_T len = sizeof(addr);
712 #endif
713
714     TRC(fprintf(stderr, "tcpip_listen pid=%d\n", getpid()));
715     if (h->state != CS_ST_IDLE)
716     {
717         h->cerrno = CSOUTSTATE;
718         return -1;
719     }
720 #ifdef WIN32
721     h->newfd = accept(h->iofile, 0, 0);
722 #else
723     h->newfd = accept(h->iofile, (struct sockaddr*)&addr, &len);
724 #endif
725     if (h->newfd < 0)
726     {
727         if (
728 #ifdef WIN32
729             WSAGetLastError() == WSAEWOULDBLOCK
730 #else
731             yaz_errno() == EWOULDBLOCK
732 #ifdef EAGAIN
733 #if EAGAIN != EWOULDBLOCK
734             || yaz_errno() == EAGAIN
735 #endif
736 #endif
737 #endif
738             )
739             h->cerrno = CSNODATA;
740         else
741         {
742 #ifdef WIN32
743             shutdown(h->iofile, SD_RECEIVE);
744 #else
745             shutdown(h->iofile, SHUT_RD);
746 #endif
747             listen(h->iofile, SOMAXCONN);
748             h->cerrno = CSYSERR;
749         }
750         return -1;
751     }
752 #ifdef WIN32
753     if (addrlen)
754         *addrlen = 0;
755 #else
756     if (addrlen && (size_t) (*addrlen) >= sizeof(struct sockaddr_in))
757         memcpy(raddr, &addr, *addrlen = sizeof(struct sockaddr_in));
758     else if (addrlen)
759         *addrlen = 0;
760     if (check_ip && (*check_ip)(cd, (const char *) &addr,
761         sizeof(addr), AF_INET))
762     {
763         h->cerrno = CSDENY;
764 #ifdef WIN32
765         closesocket(h->newfd);
766 #else
767         close(h->newfd);
768 #endif
769         h->newfd = -1;
770         return -1;
771     }
772 #endif
773     h->state = CS_ST_INCON;
774     return 0;
775 }
776
777 COMSTACK tcpip_accept(COMSTACK h)
778 {
779     COMSTACK cnew;
780 #ifdef WIN32
781     unsigned long tru = 1;
782 #endif
783
784     TRC(fprintf(stderr, "tcpip_accept h=%p pid=%d\n", h, getpid()));
785     if (h->state == CS_ST_INCON)
786     {
787         tcpip_state *state, *st = (tcpip_state *)h->cprivate;
788         if (!(cnew = (COMSTACK)xmalloc(sizeof(*cnew))))
789         {
790             h->cerrno = CSYSERR;
791 #ifdef WIN32
792             closesocket(h->newfd);
793 #else
794             close(h->newfd);
795 #endif
796             h->newfd = -1;
797             return 0;
798         }
799         memcpy(cnew, h, sizeof(*h));
800         cnew->iofile = h->newfd;
801         cnew->io_pending = 0;
802
803         if (!(state = (tcpip_state *)
804               (cnew->cprivate = xmalloc(sizeof(tcpip_state)))))
805         {
806             h->cerrno = CSYSERR;
807             if (h->newfd != -1)
808             {
809 #ifdef WIN32
810                 closesocket(h->newfd);
811 #else
812                 close(h->newfd);
813 #endif
814                 h->newfd = -1;
815             }
816             return 0;
817         }
818         if (!tcpip_set_blocking(cnew, cnew->flags))
819         {
820             h->cerrno = CSYSERR;
821             if (h->newfd != -1)
822             {
823 #ifdef WIN32
824                 closesocket(h->newfd);
825 #else
826                 close(h->newfd);
827 #endif
828                 h->newfd = -1;
829             }
830             xfree(cnew);
831             xfree(state);
832             return 0;
833         }
834         h->newfd = -1;
835         state->altbuf = 0;
836         state->altsize = state->altlen = 0;
837         state->towrite = state->written = -1;
838         state->complete = st->complete;
839 #if HAVE_GETADDRINFO
840         state->ai = 0;
841 #endif
842         cnew->state = CS_ST_ACCEPT;
843         h->state = CS_ST_IDLE;
844
845 #if HAVE_GNUTLS_H
846         state->cred_ptr = st->cred_ptr;
847         state->session = 0;
848         if (st->cred_ptr)
849         {
850             int res;
851
852             (state->cred_ptr->ref)++;
853             gnutls_init(&state->session, GNUTLS_SERVER);
854             if (!state->session)
855             {
856                 xfree(cnew);
857                 xfree(state);
858                 return 0;
859             }
860             res = gnutls_set_default_priority(state->session);
861             if (res != GNUTLS_E_SUCCESS)
862             {
863                 xfree(cnew);
864                 xfree(state);
865                 return 0;
866             }
867             res = gnutls_credentials_set(state->session,
868                                          GNUTLS_CRD_CERTIFICATE,
869                                          st->cred_ptr->xcred);
870             if (res != GNUTLS_E_SUCCESS)
871             {
872                 xfree(cnew);
873                 xfree(state);
874                 return 0;
875             }
876             /* cast to intermediate size_t to avoid GCC warning. */
877             gnutls_transport_set_ptr(state->session,
878                                      (gnutls_transport_ptr_t)
879                                      (size_t) cnew->iofile);
880         }
881 #endif
882         state->connect_request_buf = 0;
883         state->connect_response_buf = 0;
884         h = cnew;
885     }
886     if (h->state == CS_ST_ACCEPT)
887     {
888 #if HAVE_GNUTLS_H
889         tcpip_state *state = (tcpip_state *)h->cprivate;
890         if (state->session)
891         {
892             int res = gnutls_handshake(state->session);
893             if (res < 0)
894             {
895                 if (ssl_check_error(h, state, res))
896                 {
897                     TRC(fprintf(stderr, "gnutls_handshake int in tcpip_accept\n"));
898                     return h;
899                 }
900                 TRC(fprintf(stderr, "gnutls_handshake failed in tcpip_accept\n"));
901                 cs_close(h);
902                 return 0;
903             }
904             TRC(fprintf(stderr, "SSL_accept complete. gnutls\n"));
905         }
906 #endif
907     }
908     else
909     {
910         h->cerrno = CSOUTSTATE;
911         return 0;
912     }
913     h->io_pending = 0;
914     h->state = CS_ST_DATAXFER;
915     h->event = CS_DATA;
916     return h;
917 }
918
919 #define CS_TCPIP_BUFCHUNK 4096
920
921 /*
922  * Return: -1 error, >1 good, len of buffer, ==1 incomplete buffer,
923  * 0=connection closed.
924  */
925 int tcpip_get(COMSTACK h, char **buf, int *bufsize)
926 {
927     tcpip_state *sp = (tcpip_state *)h->cprivate;
928     char *tmpc;
929     int tmpi, berlen, rest, req, tomove;
930     int hasread = 0, res;
931
932     TRC(fprintf(stderr, "tcpip_get: h=%p bufsize=%d\n", h, *bufsize));
933     if (sp->altlen) /* switch buffers */
934     {
935         TRC(fprintf(stderr, "  %d bytes in altbuf (%p)\n", sp->altlen,
936                     sp->altbuf));
937         tmpc = *buf;
938         tmpi = *bufsize;
939         *buf = sp->altbuf;
940         *bufsize = sp->altsize;
941         hasread = sp->altlen;
942         sp->altlen = 0;
943         sp->altbuf = tmpc;
944         sp->altsize = tmpi;
945     }
946     h->io_pending = 0;
947     while (!(berlen = (*sp->complete)(*buf, hasread)))
948     {
949         if (!*bufsize)
950         {
951             if (!(*buf = (char *)xmalloc(*bufsize = CS_TCPIP_BUFCHUNK)))
952             {
953                 h->cerrno = CSYSERR;
954                 return -1;
955             }
956         }
957         else if (*bufsize - hasread < CS_TCPIP_BUFCHUNK)
958             if (!(*buf =(char *)xrealloc(*buf, *bufsize *= 2)))
959             {
960                 h->cerrno = CSYSERR;
961                 return -1;
962             }
963 #ifdef __sun__
964         yaz_set_errno( 0 );
965         /* unfortunatly, sun sometimes forgets to set errno in recv
966            when EWOULDBLOCK etc. would be required (res = -1) */
967 #endif
968         res = recv(h->iofile, *buf + hasread, CS_TCPIP_BUFCHUNK, 0);
969         TRC(fprintf(stderr, "  recv res=%d, hasread=%d\n", res, hasread));
970         if (res < 0)
971         {
972             TRC(fprintf(stderr, "  recv errno=%d, (%s)\n", yaz_errno(),
973                       strerror(yaz_errno())));
974 #ifdef WIN32
975             if (WSAGetLastError() == WSAEWOULDBLOCK)
976             {
977                 h->io_pending = CS_WANT_READ;
978                 break;
979             }
980             else
981             {
982                 h->cerrno = CSYSERR;
983                 return -1;
984             }
985 #else
986             if (yaz_errno() == EWOULDBLOCK
987 #ifdef EAGAIN
988 #if EAGAIN != EWOULDBLOCK
989                 || yaz_errno() == EAGAIN
990 #endif
991 #endif
992                 || yaz_errno() == EINPROGRESS
993 #ifdef __sun__
994                 || yaz_errno() == ENOENT /* Sun's sometimes set errno to this */
995 #endif
996                 )
997             {
998                 h->io_pending = CS_WANT_READ;
999                 break;
1000             }
1001             else if (yaz_errno() == 0)
1002                 continue;
1003             else
1004             {
1005                 h->cerrno = CSYSERR;
1006                 return -1;
1007             }
1008 #endif
1009         }
1010         else if (!res)
1011             return hasread;
1012         hasread += res;
1013         if (hasread > h->max_recv_bytes)
1014         {
1015             h->cerrno = CSBUFSIZE;
1016             return -1;
1017         }
1018     }
1019     TRC(fprintf(stderr, "  Out of read loop with hasread=%d, berlen=%d\n",
1020                 hasread, berlen));
1021     /* move surplus buffer (or everything if we didn't get a BER rec.) */
1022     if (hasread > berlen)
1023     {
1024         tomove = req = hasread - berlen;
1025         rest = tomove % CS_TCPIP_BUFCHUNK;
1026         if (rest)
1027             req += CS_TCPIP_BUFCHUNK - rest;
1028         if (!sp->altbuf)
1029         {
1030             if (!(sp->altbuf = (char *)xmalloc(sp->altsize = req)))
1031             {
1032                 h->cerrno = CSYSERR;
1033                 return -1;
1034             }
1035         } else if (sp->altsize < req)
1036             if (!(sp->altbuf =(char *)xrealloc(sp->altbuf, sp->altsize = req)))
1037             {
1038                 h->cerrno = CSYSERR;
1039                 return -1;
1040             }
1041         TRC(fprintf(stderr, "  Moving %d bytes to altbuf(%p)\n", tomove,
1042                     sp->altbuf));
1043         memcpy(sp->altbuf, *buf + berlen, sp->altlen = tomove);
1044     }
1045     if (berlen < CS_TCPIP_BUFCHUNK - 1)
1046         *(*buf + berlen) = '\0';
1047     return berlen ? berlen : 1;
1048 }
1049
1050
1051 #if HAVE_GNUTLS_H
1052 /*
1053  * Return: -1 error, >1 good, len of buffer, ==1 incomplete buffer,
1054  * 0=connection closed.
1055  */
1056 int ssl_get(COMSTACK h, char **buf, int *bufsize)
1057 {
1058     tcpip_state *sp = (tcpip_state *)h->cprivate;
1059     char *tmpc;
1060     int tmpi, berlen, rest, req, tomove;
1061     int hasread = 0, res;
1062
1063     TRC(fprintf(stderr, "ssl_get: bufsize=%d\n", *bufsize));
1064     if (sp->altlen) /* switch buffers */
1065     {
1066         TRC(fprintf(stderr, "  %d bytes in altbuf (%p)\n", sp->altlen,
1067                     sp->altbuf));
1068         tmpc = *buf;
1069         tmpi = *bufsize;
1070         *buf = sp->altbuf;
1071         *bufsize = sp->altsize;
1072         hasread = sp->altlen;
1073         sp->altlen = 0;
1074         sp->altbuf = tmpc;
1075         sp->altsize = tmpi;
1076     }
1077     h->io_pending = 0;
1078     while (!(berlen = (*sp->complete)(*buf, hasread)))
1079     {
1080         if (!*bufsize)
1081         {
1082             if (!(*buf = (char *)xmalloc(*bufsize = CS_TCPIP_BUFCHUNK)))
1083                 return -1;
1084         }
1085         else if (*bufsize - hasread < CS_TCPIP_BUFCHUNK)
1086             if (!(*buf =(char *)xrealloc(*buf, *bufsize *= 2)))
1087                 return -1;
1088         res = gnutls_record_recv(sp->session, *buf + hasread,
1089                                  CS_TCPIP_BUFCHUNK);
1090         if (res == 0)
1091         {
1092             TRC(fprintf(stderr, "gnutls_record_recv returned 0\n"));
1093             return 0;
1094         }
1095         else if (res < 0)
1096         {
1097             if (ssl_check_error(h, sp, res))
1098                 break;
1099             return -1;
1100         }
1101         hasread += res;
1102     }
1103     TRC (fprintf (stderr, "  Out of read loop with hasread=%d, berlen=%d\n",
1104         hasread, berlen));
1105     /* move surplus buffer (or everything if we didn't get a BER rec.) */
1106     if (hasread > berlen)
1107     {
1108         tomove = req = hasread - berlen;
1109         rest = tomove % CS_TCPIP_BUFCHUNK;
1110         if (rest)
1111             req += CS_TCPIP_BUFCHUNK - rest;
1112         if (!sp->altbuf)
1113         {
1114             if (!(sp->altbuf = (char *)xmalloc(sp->altsize = req)))
1115                 return -1;
1116         } else if (sp->altsize < req)
1117             if (!(sp->altbuf =(char *)xrealloc(sp->altbuf, sp->altsize = req)))
1118                 return -1;
1119         TRC(fprintf(stderr, "  Moving %d bytes to altbuf(%p)\n", tomove,
1120                     sp->altbuf));
1121         memcpy(sp->altbuf, *buf + berlen, sp->altlen = tomove);
1122     }
1123     if (berlen < CS_TCPIP_BUFCHUNK - 1)
1124         *(*buf + berlen) = '\0';
1125     return berlen ? berlen : 1;
1126 }
1127 #endif
1128
1129 /*
1130  * Returns 1, 0 or -1
1131  * In nonblocking mode, you must call again with same buffer while
1132  * return value is 1.
1133  */
1134 int tcpip_put(COMSTACK h, char *buf, int size)
1135 {
1136     int res;
1137     struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1138
1139     TRC(fprintf(stderr, "tcpip_put: h=%p size=%d\n", h, size));
1140     h->io_pending = 0;
1141     h->event = CS_DATA;
1142     if (state->towrite < 0)
1143     {
1144         state->towrite = size;
1145         state->written = 0;
1146     }
1147     else if (state->towrite != size)
1148     {
1149         h->cerrno = CSWRONGBUF;
1150         return -1;
1151     }
1152     while (state->towrite > state->written)
1153     {
1154         if ((res =
1155              send(h->iofile, buf + state->written, size -
1156                   state->written,
1157 #ifdef MSG_NOSIGNAL
1158                   MSG_NOSIGNAL
1159 #else
1160                   0
1161 #endif
1162                  )) < 0)
1163         {
1164             if (
1165 #ifdef WIN32
1166                 WSAGetLastError() == WSAEWOULDBLOCK
1167 #else
1168                 yaz_errno() == EWOULDBLOCK
1169 #ifdef EAGAIN
1170 #if EAGAIN != EWOULDBLOCK
1171              || yaz_errno() == EAGAIN
1172 #endif
1173 #endif
1174 #ifdef __sun__
1175                 || yaz_errno() == ENOENT /* Sun's sometimes set errno to this value! */
1176 #endif
1177                 || yaz_errno() == EINPROGRESS
1178 #endif
1179                 )
1180             {
1181                 TRC(fprintf(stderr, "  Flow control stop\n"));
1182                 h->io_pending = CS_WANT_WRITE;
1183                 return 1;
1184             }
1185             return cont_connect(h);
1186         }
1187         state->written += res;
1188         TRC(fprintf(stderr, "  Wrote %d, written=%d, nbytes=%d\n",
1189                     res, state->written, size));
1190     }
1191     state->towrite = state->written = -1;
1192     TRC(fprintf(stderr, "  Ok\n"));
1193     return 0;
1194 }
1195
1196
1197 #if HAVE_GNUTLS_H
1198 /*
1199  * Returns 1, 0 or -1
1200  * In nonblocking mode, you must call again with same buffer while
1201  * return value is 1.
1202  */
1203 int ssl_put(COMSTACK h, char *buf, int size)
1204 {
1205     int res;
1206     struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1207
1208     TRC(fprintf(stderr, "ssl_put: size=%d\n", size));
1209     h->io_pending = 0;
1210     h->event = CS_DATA;
1211     if (state->towrite < 0)
1212     {
1213         state->towrite = size;
1214         state->written = 0;
1215     }
1216     else if (state->towrite != size)
1217     {
1218         h->cerrno = CSWRONGBUF;
1219         return -1;
1220     }
1221     while (state->towrite > state->written)
1222     {
1223         res = gnutls_record_send(state->session, buf + state->written,
1224                                  size - state->written);
1225         if (res <= 0)
1226         {
1227             if (ssl_check_error(h, state, res))
1228                 return 1;
1229             return -1;
1230         }
1231         state->written += res;
1232         TRC(fprintf(stderr, "  Wrote %d, written=%d, nbytes=%d\n",
1233                     res, state->written, size));
1234     }
1235     state->towrite = state->written = -1;
1236     TRC(fprintf(stderr, "  Ok\n"));
1237     return 0;
1238 }
1239 #endif
1240
1241 void tcpip_close(COMSTACK h)
1242 {
1243     tcpip_state *sp = (struct tcpip_state *)h->cprivate;
1244
1245     TRC(fprintf(stderr, "tcpip_close: h=%p pid=%d\n", h, getpid()));
1246     if (h->iofile != -1)
1247     {
1248 #if HAVE_GNUTLS_H
1249         if (sp->session)
1250             gnutls_bye(sp->session, GNUTLS_SHUT_WR);
1251 #endif
1252 #ifdef WIN32
1253         closesocket(h->iofile);
1254 #else
1255         close(h->iofile);
1256 #endif
1257     }
1258     if (sp->altbuf)
1259         xfree(sp->altbuf);
1260 #if HAVE_GNUTLS_H
1261     if (sp->session)
1262     {
1263         gnutls_deinit(sp->session);
1264     }
1265     if (sp->cred_ptr)
1266     {
1267         assert(sp->cred_ptr->ref > 0);
1268
1269         if (--(sp->cred_ptr->ref) == 0)
1270         {
1271             TRC(fprintf(stderr, "Removed credentials %p pid=%d\n",
1272                         sp->cred_ptr->xcred, getpid()));
1273             gnutls_certificate_free_credentials(sp->cred_ptr->xcred);
1274             xfree(sp->cred_ptr);
1275         }
1276         sp->cred_ptr = 0;
1277     }
1278 #endif
1279 #if HAVE_GETADDRINFO
1280     if (sp->ai)
1281         freeaddrinfo(sp->ai);
1282 #endif
1283     xfree(sp->connect_request_buf);
1284     xfree(sp->connect_response_buf);
1285     xfree(sp);
1286     xfree(h);
1287 }
1288
1289 const char *tcpip_addrstr(COMSTACK h)
1290 {
1291     tcpip_state *sp = (struct tcpip_state *)h->cprivate;
1292     char *r = 0, *buf = sp->buf;
1293
1294 #if HAVE_GETADDRINFO
1295     char host[120];
1296     struct sockaddr_storage addr;
1297     YAZ_SOCKLEN_T len = sizeof(addr);
1298
1299     if (getpeername(h->iofile, (struct sockaddr *)&addr, &len) < 0)
1300     {
1301         h->cerrno = CSYSERR;
1302         return 0;
1303     }
1304     if (getnameinfo((struct sockaddr *) &addr, len, host, sizeof(host)-1,
1305                     0, 0,
1306                     (h->flags & CS_FLAGS_NUMERICHOST) ? NI_NUMERICHOST : 0))
1307     {
1308         r = "unknown";
1309     }
1310     else
1311         r = host;
1312
1313 #else
1314
1315     struct sockaddr_in addr;
1316     YAZ_SOCKLEN_T len = sizeof(addr);
1317     struct hostent *host;
1318
1319     if (getpeername(h->iofile, (struct sockaddr*) &addr, &len) < 0)
1320     {
1321         h->cerrno = CSYSERR;
1322         return 0;
1323     }
1324     if (!(h->flags & CS_FLAGS_NUMERICHOST))
1325     {
1326         if ((host = gethostbyaddr((char*)&addr.sin_addr,
1327                                   sizeof(addr.sin_addr),
1328                                   AF_INET)))
1329             r = (char*) host->h_name;
1330     }
1331     if (!r)
1332         r = inet_ntoa(addr.sin_addr);
1333 #endif
1334
1335     if (h->protocol == PROTO_HTTP)
1336         sprintf(buf, "http:%s", r);
1337     else
1338         sprintf(buf, "tcp:%s", r);
1339 #if HAVE_GNUTLS_H
1340     if (sp->session)
1341     {
1342         if (h->protocol == PROTO_HTTP)
1343             sprintf(buf, "https:%s", r);
1344         else
1345             sprintf(buf, "ssl:%s", r);
1346     }
1347 #endif
1348     return buf;
1349 }
1350
1351 static int tcpip_set_blocking(COMSTACK p, int flags)
1352 {
1353     unsigned long flag;
1354
1355 #ifdef WIN32
1356     flag = (flags & CS_FLAGS_BLOCKING) ? 0 : 1;
1357     if (ioctlsocket(p->iofile, FIONBIO, &flag) < 0)
1358         return 0;
1359 #else
1360     flag = fcntl(p->iofile, F_GETFL, 0);
1361     if (flags & CS_FLAGS_BLOCKING)
1362         flag = flag & ~O_NONBLOCK;  /* blocking */
1363     else
1364     {
1365         flag = flag | O_NONBLOCK;   /* non-blocking */
1366         signal(SIGPIPE, SIG_IGN);
1367     }
1368     if (fcntl(p->iofile, F_SETFL, flag) < 0)
1369         return 0;
1370 #endif
1371     p->flags = flags;
1372     return 1;
1373 }
1374
1375
1376 #if HAVE_GNUTLS_H
1377 /* gnutls_x509_crt_print appeared in 1.7.6. Memory leaks were fixed in 1.7.9.
1378    GNUTLS_CRT_PRINT_FULL appeared in 2.4.0. */
1379 #if GNUTLS_VERSION_NUMBER >= 0x020400
1380 #define USE_GNUTLS_X509_CRT_PRINT 1
1381 #else
1382 #define USE_GNUTLS_X509_CRT_PRINT 0
1383 #endif
1384
1385
1386 #if USE_GNUTLS_X509_CRT_PRINT
1387 #else
1388 static const char *bin2hex(const void *bin, size_t bin_size)
1389 {
1390     static char printable[110];
1391     const unsigned char *_bin = bin;
1392     char *print;
1393     size_t i;
1394     if (bin_size > 50)
1395         bin_size = 50;
1396     print = printable;
1397     for (i = 0; i < bin_size; i++)
1398     {
1399         sprintf(print, "%.2x ", _bin[i]);
1400         print += 2;
1401     }
1402     return printable;
1403 }
1404
1405 static void x509_crt_print(gnutls_x509_crt_t cert)
1406 {
1407     time_t expiration_time, activation_time;
1408     size_t size;
1409     char serial[40];
1410     char dn[256];
1411     unsigned int algo, bits;
1412
1413     expiration_time = gnutls_x509_crt_get_expiration_time(cert);
1414     activation_time = gnutls_x509_crt_get_activation_time(cert);
1415
1416     printf("\tCertificate is valid since: %s", ctime(&activation_time));
1417     printf("\tCertificate expires: %s", ctime(&expiration_time));
1418
1419     /* Print the serial number of the certificate. */
1420     size = sizeof(serial);
1421     gnutls_x509_crt_get_serial(cert, serial, &size);
1422     
1423     printf("\tCertificate serial number: %s\n", bin2hex(serial, size));
1424     
1425     /* Extract some of the public key algorithm's parameters
1426      */
1427     algo = gnutls_x509_crt_get_pk_algorithm(cert, &bits);
1428     
1429     printf("Certificate public key: %s", gnutls_pk_algorithm_get_name(algo));
1430     
1431     /* Print the version of the X.509 certificate. */
1432     printf("\tCertificate version: #%d\n", gnutls_x509_crt_get_version(cert));
1433     
1434     size = sizeof(dn);
1435     gnutls_x509_crt_get_dn(cert, dn, &size);
1436     printf("\tDN: %s\n", dn);
1437     
1438     size = sizeof(dn);
1439     gnutls_x509_crt_get_issuer_dn(cert, dn, &size);
1440     printf("\tIssuer's DN: %s\n", dn);
1441 }
1442 #endif
1443 #endif
1444
1445 void cs_print_session_info(COMSTACK cs)
1446 {
1447 #if HAVE_GNUTLS_H
1448     struct tcpip_state *sp = (struct tcpip_state *) cs->cprivate;
1449     if (cs->type == ssl_type && sp->session)
1450     {
1451         const gnutls_datum_t *cert_list;
1452         unsigned i, cert_list_size;
1453         if (gnutls_certificate_type_get(sp->session) != GNUTLS_CRT_X509)
1454             return;
1455         printf("X509 certificate\n");
1456         cert_list = gnutls_certificate_get_peers(sp->session,
1457                                                  &cert_list_size);
1458         printf("Peer provided %u certificates\n", cert_list_size);
1459         for (i = 0; i < cert_list_size; i++)
1460         {
1461             gnutls_x509_crt_t cert;
1462 #if USE_GNUTLS_X509_CRT_PRINT
1463             int ret;
1464             gnutls_datum_t cinfo;
1465 #endif
1466             gnutls_x509_crt_init(&cert);
1467             gnutls_x509_crt_import(cert, &cert_list[i], GNUTLS_X509_FMT_DER);
1468             printf("Certificate info %d:\n", i + 1);
1469 #if USE_GNUTLS_X509_CRT_PRINT
1470             ret = gnutls_x509_crt_print(cert, GNUTLS_CRT_PRINT_FULL,
1471                                         &cinfo);
1472             if (ret == 0)
1473             {
1474                 printf("\t%s\n", cinfo.data);
1475                 gnutls_free(cinfo.data);
1476             }
1477 #else
1478             x509_crt_print(cert);
1479 #endif
1480             gnutls_x509_crt_deinit(cert);
1481
1482         }
1483     }
1484 #endif
1485 }
1486
1487 void *cs_get_ssl(COMSTACK cs)
1488 {
1489     /* doesn't do anything for GNUTLS */
1490     return 0;
1491 }
1492
1493 int cs_set_ssl_ctx(COMSTACK cs, void *ctx)
1494 {
1495 #if HAVE_GNUTLS_H
1496     if (cs && cs->type == ssl_type)
1497     {
1498         /* doesn't do anything for GNUTLS */
1499         return 1;
1500     }
1501 #endif
1502     return 0;
1503 }
1504
1505 int cs_set_ssl_certificate_file(COMSTACK cs, const char *fname)
1506 {
1507 #if HAVE_GNUTLS_H
1508     if (cs && cs->type == ssl_type)
1509     {
1510         struct tcpip_state *sp = (struct tcpip_state *) cs->cprivate;
1511         strncpy(sp->cert_fname, fname, sizeof(sp->cert_fname)-1);
1512         sp->cert_fname[sizeof(sp->cert_fname)-1] = '\0';
1513         return 1;
1514     }
1515 #endif
1516     return 0;
1517 }
1518
1519 int cs_get_peer_certificate_x509(COMSTACK cs, char **buf, int *len)
1520 {
1521
1522 #if HAVE_GNUTLS_H
1523 #if USE_GNUTLS_X509_CRT_PRINT
1524     struct tcpip_state *sp = (struct tcpip_state *) cs->cprivate;
1525     if (cs->type == ssl_type && sp->session)
1526     {
1527         const gnutls_datum_t *cert_list;
1528         unsigned cert_list_size;
1529         if (gnutls_certificate_type_get(sp->session) != GNUTLS_CRT_X509)
1530             return 0;
1531         cert_list = gnutls_certificate_get_peers(sp->session, &cert_list_size);
1532         if (cert_list_size > 0)
1533         {
1534             gnutls_x509_crt_t cert;
1535             int ret;
1536             gnutls_datum_t cinfo;
1537
1538             gnutls_x509_crt_init(&cert);
1539             gnutls_x509_crt_import(cert, &cert_list[0], GNUTLS_X509_FMT_DER);
1540
1541             ret = gnutls_x509_crt_print(cert, GNUTLS_CRT_PRINT_FULL, &cinfo);
1542             if (ret == 0)
1543             {
1544                 *buf = xstrdup((char *) cinfo.data);
1545                 *len = strlen(*buf);
1546                 gnutls_free(cinfo.data);
1547                 gnutls_x509_crt_deinit(cert);
1548                 return 1;
1549             }
1550             gnutls_x509_crt_deinit(cert);
1551         }
1552     }
1553 #endif
1554 #endif
1555     return 0;
1556 }
1557
1558 static int tcpip_put_connect(COMSTACK h, char *buf, int size)
1559 {
1560     struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1561
1562     int r = tcpip_put(h, state->connect_request_buf,
1563                       state->connect_request_len);
1564     if (r == 0)
1565     {
1566         /* it's sent */
1567         h->f_put = tcpip_put; /* switch to normal tcpip put */
1568         r = tcpip_put(h, buf, size);
1569     }
1570     return r;
1571 }
1572
1573 static int tcpip_get_connect(COMSTACK h, char **buf, int *bufsize)
1574 {
1575     struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1576     int r;
1577
1578     r = tcpip_get(h, &state->connect_response_buf,
1579                   &state->connect_response_len);
1580     if (r < 1)
1581         return r;
1582     /* got the connect response completely */
1583     state->complete = cs_complete_auto; /* switch to normal tcpip get */
1584     h->f_get = tcpip_get;
1585     return tcpip_get(h, buf, bufsize);
1586 }
1587
1588
1589 /*
1590  * Local variables:
1591  * c-basic-offset: 4
1592  * c-file-style: "Stroustrup"
1593  * indent-tabs-mode: nil
1594  * End:
1595  * vim: shiftwidth=4 tabstop=8 expandtab
1596  */
1597