1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2011 Index Data
3 * See the file LICENSE for details.
7 * \brief Implements TCP/IP + SSL COMSTACK.
21 #include <sys/types.h>
31 /* VS 2003 or later has getaddrinfo; older versions do not */
35 #define HAVE_GETADDRINFO 1
37 #define HAVE_GETADDRINFO 0
42 #include <netinet/in.h>
48 #include <arpa/inet.h>
50 #if HAVE_NETINET_TCP_H
51 #include <netinet/tcp.h>
54 #include <sys/socket.h>
61 #include <gnutls/x509.h>
62 #include <gnutls/gnutls.h>
66 #if HAVE_OPENSSL_SSL_H
67 #include <openssl/ssl.h>
68 #include <openssl/err.h>
72 #include <yaz/comstack.h>
73 #include <yaz/tcpip.h>
74 #include <yaz/errno.h>
76 static void tcpip_close(COMSTACK h);
77 static int tcpip_put(COMSTACK h, char *buf, int size);
78 static int tcpip_get(COMSTACK h, char **buf, int *bufsize);
79 static int tcpip_put_connect(COMSTACK h, char *buf, int size);
80 static int tcpip_get_connect(COMSTACK h, char **buf, int *bufsize);
81 static int tcpip_connect(COMSTACK h, void *address);
82 static int tcpip_more(COMSTACK h);
83 static int tcpip_rcvconnect(COMSTACK h);
84 static int tcpip_bind(COMSTACK h, void *address, int mode);
85 static int tcpip_listen(COMSTACK h, char *raddr, int *addrlen,
86 int (*check_ip)(void *cd, const char *a, int len, int type),
88 static int tcpip_set_blocking(COMSTACK p, int blocking);
91 static int ssl_get(COMSTACK h, char **buf, int *bufsize);
92 static int ssl_put(COMSTACK h, char *buf, int size);
95 static COMSTACK tcpip_accept(COMSTACK h);
96 static const char *tcpip_addrstr(COMSTACK h);
97 static void *tcpip_straddr(COMSTACK h, const char *str);
105 #ifndef YAZ_SOCKLEN_T
106 #define YAZ_SOCKLEN_T int
110 struct tcpip_cred_ptr {
111 gnutls_certificate_credentials_t xcred;
116 /* this state is used for both SSL and straight TCP/IP */
117 typedef struct tcpip_state
119 char *altbuf; /* alternate buffer for surplus data */
120 int altsize; /* size as xmalloced */
121 int altlen; /* length of data or 0 if none */
123 int written; /* -1 if we aren't writing */
124 int towrite; /* to verify against user input */
125 int (*complete)(const char *buf, int len); /* length/complete. */
129 struct sockaddr_in addr; /* returned by cs_straddr */
131 char buf[128]; /* returned by cs_addrstr */
133 struct tcpip_cred_ptr *cred_ptr;
134 gnutls_session_t session;
135 char cert_fname[256];
136 #elif HAVE_OPENSSL_SSL_H
137 SSL_CTX *ctx; /* current CTX. */
138 SSL_CTX *ctx_alloc; /* If =ctx it is owned by CS. If 0 it is not owned */
140 char cert_fname[256];
142 char *connect_request_buf;
143 int connect_request_len;
144 char *connect_response_buf;
145 int connect_response_len;
149 static int tcpip_init(void)
151 static int initialized = 0;
157 requested = MAKEWORD(1, 1);
158 if (WSAStartup(requested, &wd))
165 static int tcpip_init(void)
172 * This function is always called through the cs_create() macro.
173 * s >= 0: socket has already been established for us.
175 COMSTACK tcpip_type(int s, int flags, int protocol, void *vp)
182 if (!(p = (struct comstack *)xmalloc(sizeof(struct comstack))))
184 if (!(sp = (struct tcpip_state *)(p->cprivate =
185 xmalloc(sizeof(tcpip_state)))))
192 p->type = tcpip_type;
193 p->protocol = (enum oid_proto) protocol;
195 p->f_connect = tcpip_connect;
196 p->f_rcvconnect = tcpip_rcvconnect;
197 p->f_get = tcpip_get;
198 p->f_put = tcpip_put;
199 p->f_close = tcpip_close;
200 p->f_more = tcpip_more;
201 p->f_bind = tcpip_bind;
202 p->f_listen = tcpip_listen;
203 p->f_accept = tcpip_accept;
204 p->f_addrstr = tcpip_addrstr;
205 p->f_straddr = tcpip_straddr;
206 p->f_set_blocking = tcpip_set_blocking;
207 p->max_recv_bytes = 5000000;
209 p->state = s < 0 ? CS_ST_UNBND : CS_ST_IDLE; /* state of line */
217 strcpy(sp->cert_fname, "yaz.pem");
218 #elif HAVE_OPENSSL_SSL_H
219 sp->ctx = sp->ctx_alloc = 0;
221 strcpy(sp->cert_fname, "yaz.pem");
228 sp->altsize = sp->altlen = 0;
229 sp->towrite = sp->written = -1;
230 if (protocol == PROTO_WAIS)
231 sp->complete = completeWAIS;
233 sp->complete = cs_complete_auto;
235 sp->connect_request_buf = 0;
236 sp->connect_request_len = 0;
237 sp->connect_response_buf = 0;
238 sp->connect_response_len = 0;
240 p->timeout = COMSTACK_DEFAULT_TIMEOUT;
241 TRC(fprintf(stderr, "Created new TCPIP comstack\n"));
246 COMSTACK yaz_tcpip_create(int s, int flags, int protocol,
247 const char *connect_host)
249 COMSTACK p = tcpip_type(s, flags, protocol, 0);
254 tcpip_state *sp = (tcpip_state *) p->cprivate;
255 sp->connect_request_buf = (char *) xmalloc(strlen(connect_host) + 30);
256 sprintf(sp->connect_request_buf, "CONNECT %s HTTP/1.0\r\n\r\n",
258 sp->connect_request_len = strlen(sp->connect_request_buf);
259 p->f_put = tcpip_put_connect;
260 p->f_get = tcpip_get_connect;
261 sp->complete = cs_complete_auto_head; /* only want HTTP header */
267 static void tcpip_create_cred(COMSTACK cs)
269 tcpip_state *sp = (tcpip_state *) cs->cprivate;
270 sp->cred_ptr = (struct tcpip_cred_ptr *) xmalloc(sizeof(*sp->cred_ptr));
271 sp->cred_ptr->ref = 1;
272 gnutls_certificate_allocate_credentials(&sp->cred_ptr->xcred);
277 COMSTACK ssl_type(int s, int flags, int protocol, void *vp)
285 p = tcpip_type(s, flags, protocol, 0);
291 sp = (tcpip_state *) p->cprivate;
294 sp->session = (gnutls_session_t) vp;
295 #elif HAVE_OPENSSL_SSL_H
296 sp->ctx = (SSL_CTX *) vp; /* may be NULL */
298 /* note: we don't handle already opened socket in SSL mode - yet */
304 static int ssl_check_error(COMSTACK h, tcpip_state *sp, int res)
306 #if HAVE_OPENSSL_SSL_H
307 int err = SSL_get_error(sp->ssl, res);
308 TRC(fprintf(stderr, "got err=%d\n", err));
309 if (err == SSL_ERROR_WANT_READ)
311 TRC(fprintf(stderr, " -> SSL_ERROR_WANT_READ\n"));
312 h->io_pending = CS_WANT_READ;
315 if (err == SSL_ERROR_WANT_WRITE)
317 TRC(fprintf(stderr, " -> SSL_ERROR_WANT_WRITE\n"));
318 h->io_pending = CS_WANT_WRITE;
322 TRC(fprintf(stderr, "ssl_check_error error=%d fatal=%d msg=%s\n",
324 gnutls_error_is_fatal(res),
325 gnutls_strerror(res)));
326 if (res == GNUTLS_E_AGAIN || res == GNUTLS_E_INTERRUPTED)
328 int dir = gnutls_record_get_direction(sp->session);
329 TRC(fprintf(stderr, " -> incomplete dir=%d\n", dir));
330 h->io_pending = dir ? CS_WANT_WRITE : CS_WANT_READ;
334 h->cerrno = CSERRORSSL;
340 /* resolve using getaddrinfo */
341 struct addrinfo *tcpip_getaddrinfo(const char *str, const char *port)
343 struct addrinfo hints, *res;
348 hints.ai_family = AF_UNSPEC;
349 hints.ai_socktype = SOCK_STREAM;
350 hints.ai_protocol = 0;
351 hints.ai_addrlen = 0;
352 hints.ai_addr = NULL;
353 hints.ai_canonname = NULL;
354 hints.ai_next = NULL;
356 strncpy(host, str, sizeof(host)-1);
357 host[sizeof(host)-1] = 0;
358 if ((p = strchr(host, '/')))
360 if ((p = strrchr(host, ':')))
366 if (!strcmp("@", host))
368 hints.ai_flags = AI_PASSIVE;
369 hints.ai_family = AF_INET;
370 error = getaddrinfo(0, port, &hints, &res);
372 else if (!strcmp("@6", host))
374 hints.ai_flags = AI_PASSIVE;
375 hints.ai_family = AF_INET6;
376 error = getaddrinfo(0, port, &hints, &res);
380 error = getaddrinfo(host, port, &hints, &res);
388 /* gethostbyname .. old systems */
389 int tcpip_strtoaddr_ex(const char *str, struct sockaddr_in *add,
394 short int port = default_port;
396 unsigned long tmpadd;
400 TRC(fprintf(stderr, "tcpip_strtoaddress: %s\n", str ? str : "NULL"));
401 add->sin_family = AF_INET;
402 strncpy(buf, str, sizeof(buf)-1);
403 buf[sizeof(buf)-1] = 0;
404 if ((p = strchr(buf, '/')))
406 if ((p = strrchr(buf, ':')))
411 add->sin_port = htons(port);
412 if (!strcmp("@", buf))
414 add->sin_addr.s_addr = INADDR_ANY;
416 else if ((tmpadd = inet_addr(buf)) != -1)
418 memcpy(&add->sin_addr.s_addr, &tmpadd, sizeof(struct in_addr));
420 else if ((hp = gethostbyname(buf)))
422 memcpy(&add->sin_addr.s_addr, *hp->h_addr_list,
423 sizeof(struct in_addr));
431 void *tcpip_straddr(COMSTACK h, const char *str)
433 tcpip_state *sp = (tcpip_state *)h->cprivate;
434 const char *port = "210";
435 struct addrinfo *ai = 0;
436 if (h->protocol == PROTO_HTTP)
442 freeaddrinfo(sp->ai);
443 sp->ai = tcpip_getaddrinfo(str, port);
444 if (sp->ai && h->state == CS_ST_UNBND)
447 for (ai = sp->ai; ai; ai = ai->ai_next)
449 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
458 if (!tcpip_set_blocking(h, h->flags))
464 void *tcpip_straddr(COMSTACK h, const char *str)
466 tcpip_state *sp = (tcpip_state *)h->cprivate;
468 if (h->protocol == PROTO_HTTP)
473 if (!tcpip_strtoaddr_ex(str, &sp->addr, port))
475 if (h->state == CS_ST_UNBND)
478 s = socket(AF_INET, SOCK_STREAM, 0);
483 if (!tcpip_set_blocking(h, h->flags))
490 int tcpip_more(COMSTACK h)
492 tcpip_state *sp = (tcpip_state *)h->cprivate;
494 return sp->altlen && (*sp->complete)(sp->altbuf, sp->altlen);
498 * connect(2) will block (sometimes) - nothing we can do short of doing
499 * weird things like spawning subprocesses or threading or some weird junk
502 int tcpip_connect(COMSTACK h, void *address)
505 struct addrinfo *ai = (struct addrinfo *) address;
506 tcpip_state *sp = (tcpip_state *)h->cprivate;
508 struct sockaddr_in *add = (struct sockaddr_in *) address;
511 TRC(fprintf(stderr, "tcpip_connect\n"));
513 if (h->state != CS_ST_UNBND)
515 h->cerrno = CSOUTSTATE;
519 r = connect(h->iofile, ai->ai_addr, ai->ai_addrlen);
520 freeaddrinfo(sp->ai);
523 r = connect(h->iofile, (struct sockaddr *) add, sizeof(*add));
528 if (WSAGetLastError() == WSAEWOULDBLOCK)
530 h->event = CS_CONNECT;
531 h->state = CS_ST_CONNECTING;
532 h->io_pending = CS_WANT_WRITE;
536 if (yaz_errno() == EINPROGRESS)
538 h->event = CS_CONNECT;
539 h->state = CS_ST_CONNECTING;
540 h->io_pending = CS_WANT_WRITE|CS_WANT_READ;
547 h->event = CS_CONNECT;
548 h->state = CS_ST_CONNECTING;
550 return tcpip_rcvconnect(h);
556 int tcpip_rcvconnect(COMSTACK h)
559 tcpip_state *sp = (tcpip_state *)h->cprivate;
561 TRC(fprintf(stderr, "tcpip_rcvconnect\n"));
563 if (h->state == CS_ST_DATAXFER)
565 if (h->state != CS_ST_CONNECTING)
567 h->cerrno = CSOUTSTATE;
571 if (h->type == ssl_type && !sp->session)
574 gnutls_global_init();
576 tcpip_create_cred(h);
578 gnutls_init(&sp->session, GNUTLS_CLIENT);
579 gnutls_set_default_priority(sp->session);
580 gnutls_credentials_set (sp->session, GNUTLS_CRD_CERTIFICATE,
581 sp->cred_ptr->xcred);
583 /* cast to intermediate size_t to avoid GCC warning. */
584 gnutls_transport_set_ptr(sp->session,
585 (gnutls_transport_ptr_t)
587 res = gnutls_handshake(sp->session);
590 if (ssl_check_error(h, sp, res))
595 #elif HAVE_OPENSSL_SSL_H
596 if (h->type == ssl_type && !sp->ctx)
599 SSL_load_error_strings();
601 sp->ctx = sp->ctx_alloc = SSL_CTX_new(SSLv23_client_method());
604 h->cerrno = CSERRORSSL;
614 sp->ssl = SSL_new(sp->ctx);
615 SSL_set_fd(sp->ssl, h->iofile);
617 res = SSL_connect(sp->ssl);
620 if (ssl_check_error(h, sp, res))
627 h->state = CS_ST_DATAXFER;
631 #define CERTF "ztest.pem"
632 #define KEYF "ztest.pem"
634 static int tcpip_bind(COMSTACK h, void *address, int mode)
637 tcpip_state *sp = (tcpip_state *)h->cprivate;
639 struct addrinfo *ai = (struct addrinfo *) address;
641 struct sockaddr *addr = (struct sockaddr *)address;
650 if (h->type == ssl_type && !sp->session)
653 gnutls_global_init();
655 tcpip_create_cred(h);
657 res = gnutls_certificate_set_x509_key_file(sp->cred_ptr->xcred,
660 GNUTLS_X509_FMT_PEM);
661 if (res != GNUTLS_E_SUCCESS)
663 h->cerrno = CSERRORSSL;
667 #elif HAVE_OPENSSL_SSL_H
668 if (h->type == ssl_type && !sp->ctx)
671 SSL_load_error_strings();
673 sp->ctx = sp->ctx_alloc = SSL_CTX_new(SSLv23_server_method());
676 h->cerrno = CSERRORSSL;
685 res = SSL_CTX_use_certificate_file(sp->ctx, sp->cert_fname,
689 ERR_print_errors_fp(stderr);
692 res = SSL_CTX_use_PrivateKey_file(sp->ctx, sp->cert_fname,
696 ERR_print_errors_fp(stderr);
699 res = SSL_CTX_check_private_key(sp->ctx);
702 ERR_print_errors_fp(stderr);
706 TRC(fprintf(stderr, "ssl_bind\n"));
710 TRC(fprintf(stderr, "tcpip_bind\n"));
713 TRC(fprintf(stderr, "tcpip_bind\n"));
716 if (setsockopt(h->iofile, SOL_SOCKET, SO_REUSEADDR, (char*)
717 &one, sizeof(one)) < 0)
724 r = bind(h->iofile, ai->ai_addr, ai->ai_addrlen);
725 freeaddrinfo(sp->ai);
728 r = bind(h->iofile, addr, sizeof(struct sockaddr_in));
735 /* Allow a maximum-sized backlog of waiting-to-connect clients */
736 if (mode == CS_SERVER && listen(h->iofile, SOMAXCONN) < 0)
741 h->state = CS_ST_IDLE;
742 h->event = CS_LISTEN;
746 int tcpip_listen(COMSTACK h, char *raddr, int *addrlen,
747 int (*check_ip)(void *cd, const char *a, int len, int t),
751 /* we don't get peer address on Windows (via accept) */
753 struct sockaddr_in addr;
754 YAZ_SOCKLEN_T len = sizeof(addr);
757 TRC(fprintf(stderr, "tcpip_listen pid=%d\n", getpid()));
758 if (h->state != CS_ST_IDLE)
760 h->cerrno = CSOUTSTATE;
764 h->newfd = accept(h->iofile, 0, 0);
766 h->newfd = accept(h->iofile, (struct sockaddr*)&addr, &len);
772 WSAGetLastError() == WSAEWOULDBLOCK
774 yaz_errno() == EWOULDBLOCK
776 #if EAGAIN != EWOULDBLOCK
777 || yaz_errno() == EAGAIN
782 h->cerrno = CSNODATA;
786 shutdown(h->iofile, SD_RECEIVE);
788 shutdown(h->iofile, SHUT_RD);
790 listen(h->iofile, SOMAXCONN);
799 if (addrlen && (size_t) (*addrlen) >= sizeof(struct sockaddr_in))
800 memcpy(raddr, &addr, *addrlen = sizeof(struct sockaddr_in));
803 if (check_ip && (*check_ip)(cd, (const char *) &addr,
804 sizeof(addr), AF_INET))
808 closesocket(h->newfd);
816 h->state = CS_ST_INCON;
820 COMSTACK tcpip_accept(COMSTACK h)
824 unsigned long tru = 1;
827 TRC(fprintf(stderr, "tcpip_accept h=%p pid=%d\n", h, getpid()));
828 if (h->state == CS_ST_INCON)
830 tcpip_state *state, *st = (tcpip_state *)h->cprivate;
831 if (!(cnew = (COMSTACK)xmalloc(sizeof(*cnew))))
835 closesocket(h->newfd);
842 memcpy(cnew, h, sizeof(*h));
843 cnew->iofile = h->newfd;
844 cnew->io_pending = 0;
846 if (!(state = (tcpip_state *)
847 (cnew->cprivate = xmalloc(sizeof(tcpip_state)))))
853 closesocket(h->newfd);
861 if (!tcpip_set_blocking(cnew, cnew->flags))
867 closesocket(h->newfd);
879 state->altsize = state->altlen = 0;
880 state->towrite = state->written = -1;
881 state->complete = st->complete;
885 cnew->state = CS_ST_ACCEPT;
886 h->state = CS_ST_IDLE;
889 state->cred_ptr = st->cred_ptr;
895 (state->cred_ptr->ref)++;
896 gnutls_init(&state->session, GNUTLS_SERVER);
903 res = gnutls_set_default_priority(state->session);
904 if (res != GNUTLS_E_SUCCESS)
910 res = gnutls_credentials_set(state->session,
911 GNUTLS_CRD_CERTIFICATE,
912 st->cred_ptr->xcred);
913 if (res != GNUTLS_E_SUCCESS)
919 /* cast to intermediate size_t to avoid GCC warning. */
920 gnutls_transport_set_ptr(state->session,
921 (gnutls_transport_ptr_t)
922 (size_t) cnew->iofile);
924 #elif HAVE_OPENSSL_SSL_H
925 state->ctx = st->ctx;
926 state->ctx_alloc = 0;
927 state->ssl = st->ssl;
930 state->ssl = SSL_new(state->ctx);
931 SSL_set_fd(state->ssl, cnew->iofile);
934 state->connect_request_buf = 0;
935 state->connect_response_buf = 0;
938 if (h->state == CS_ST_ACCEPT)
941 tcpip_state *state = (tcpip_state *)h->cprivate;
944 int res = gnutls_handshake(state->session);
947 if (ssl_check_error(h, state, res))
949 TRC(fprintf(stderr, "gnutls_handshake int in tcpip_accept\n"));
952 TRC(fprintf(stderr, "gnutls_handshake failed in tcpip_accept\n"));
956 TRC(fprintf(stderr, "SSL_accept complete. gnutls\n"));
958 #elif HAVE_OPENSSL_SSL_H
959 tcpip_state *state = (tcpip_state *)h->cprivate;
964 res = SSL_accept(state->ssl);
965 TRC(fprintf(stderr, "SSL_accept res=%d\n", res));
968 if (ssl_check_error(h, state, res))
975 TRC(fprintf(stderr, "SSL_accept complete\n"));
981 h->cerrno = CSOUTSTATE;
985 h->state = CS_ST_DATAXFER;
990 #define CS_TCPIP_BUFCHUNK 4096
993 * Return: -1 error, >1 good, len of buffer, ==1 incomplete buffer,
994 * 0=connection closed.
996 int tcpip_get(COMSTACK h, char **buf, int *bufsize)
998 tcpip_state *sp = (tcpip_state *)h->cprivate;
1000 int tmpi, berlen, rest, req, tomove;
1001 int hasread = 0, res;
1003 TRC(fprintf(stderr, "tcpip_get: bufsize=%d\n", *bufsize));
1004 if (sp->altlen) /* switch buffers */
1006 TRC(fprintf(stderr, " %d bytes in altbuf (%p)\n", sp->altlen,
1011 *bufsize = sp->altsize;
1012 hasread = sp->altlen;
1018 while (!(berlen = (*sp->complete)(*buf, hasread)))
1022 if (!(*buf = (char *)xmalloc(*bufsize = CS_TCPIP_BUFCHUNK)))
1024 h->cerrno = CSYSERR;
1028 else if (*bufsize - hasread < CS_TCPIP_BUFCHUNK)
1029 if (!(*buf =(char *)xrealloc(*buf, *bufsize *= 2)))
1031 h->cerrno = CSYSERR;
1036 /* unfortunatly, sun sometimes forgets to set errno in recv
1037 when EWOULDBLOCK etc. would be required (res = -1) */
1039 res = recv(h->iofile, *buf + hasread, CS_TCPIP_BUFCHUNK, 0);
1040 TRC(fprintf(stderr, " recv res=%d, hasread=%d\n", res, hasread));
1043 TRC(fprintf(stderr, " recv errno=%d, (%s)\n", yaz_errno(),
1044 strerror(yaz_errno())));
1046 if (WSAGetLastError() == WSAEWOULDBLOCK)
1048 h->io_pending = CS_WANT_READ;
1053 h->cerrno = CSYSERR;
1057 if (yaz_errno() == EWOULDBLOCK
1059 #if EAGAIN != EWOULDBLOCK
1060 || yaz_errno() == EAGAIN
1063 || yaz_errno() == EINPROGRESS
1065 || yaz_errno() == ENOENT /* Sun's sometimes set errno to this */
1069 h->io_pending = CS_WANT_READ;
1072 else if (yaz_errno() == 0)
1076 h->cerrno = CSYSERR;
1084 if (hasread > h->max_recv_bytes)
1086 h->cerrno = CSBUFSIZE;
1090 TRC(fprintf(stderr, " Out of read loop with hasread=%d, berlen=%d\n",
1092 /* move surplus buffer (or everything if we didn't get a BER rec.) */
1093 if (hasread > berlen)
1095 tomove = req = hasread - berlen;
1096 rest = tomove % CS_TCPIP_BUFCHUNK;
1098 req += CS_TCPIP_BUFCHUNK - rest;
1101 if (!(sp->altbuf = (char *)xmalloc(sp->altsize = req)))
1103 h->cerrno = CSYSERR;
1106 } else if (sp->altsize < req)
1107 if (!(sp->altbuf =(char *)xrealloc(sp->altbuf, sp->altsize = req)))
1109 h->cerrno = CSYSERR;
1112 TRC(fprintf(stderr, " Moving %d bytes to altbuf(%p)\n", tomove,
1114 memcpy(sp->altbuf, *buf + berlen, sp->altlen = tomove);
1116 if (berlen < CS_TCPIP_BUFCHUNK - 1)
1117 *(*buf + berlen) = '\0';
1118 return berlen ? berlen : 1;
1124 * Return: -1 error, >1 good, len of buffer, ==1 incomplete buffer,
1125 * 0=connection closed.
1127 int ssl_get(COMSTACK h, char **buf, int *bufsize)
1129 tcpip_state *sp = (tcpip_state *)h->cprivate;
1131 int tmpi, berlen, rest, req, tomove;
1132 int hasread = 0, res;
1134 TRC(fprintf(stderr, "ssl_get: bufsize=%d\n", *bufsize));
1135 if (sp->altlen) /* switch buffers */
1137 TRC(fprintf(stderr, " %d bytes in altbuf (%p)\n", sp->altlen,
1142 *bufsize = sp->altsize;
1143 hasread = sp->altlen;
1149 while (!(berlen = (*sp->complete)(*buf, hasread)))
1153 if (!(*buf = (char *)xmalloc(*bufsize = CS_TCPIP_BUFCHUNK)))
1156 else if (*bufsize - hasread < CS_TCPIP_BUFCHUNK)
1157 if (!(*buf =(char *)xrealloc(*buf, *bufsize *= 2)))
1160 res = gnutls_record_recv(sp->session, *buf + hasread,
1164 if (ssl_check_error(h, sp, res))
1169 res = SSL_read(sp->ssl, *buf + hasread, CS_TCPIP_BUFCHUNK);
1170 TRC(fprintf(stderr, " SSL_read res=%d, hasread=%d\n", res, hasread));
1173 if (ssl_check_error(h, sp, res))
1180 TRC (fprintf (stderr, " Out of read loop with hasread=%d, berlen=%d\n",
1182 /* move surplus buffer (or everything if we didn't get a BER rec.) */
1183 if (hasread > berlen)
1185 tomove = req = hasread - berlen;
1186 rest = tomove % CS_TCPIP_BUFCHUNK;
1188 req += CS_TCPIP_BUFCHUNK - rest;
1191 if (!(sp->altbuf = (char *)xmalloc(sp->altsize = req)))
1193 } else if (sp->altsize < req)
1194 if (!(sp->altbuf =(char *)xrealloc(sp->altbuf, sp->altsize = req)))
1196 TRC(fprintf(stderr, " Moving %d bytes to altbuf(%p)\n", tomove,
1198 memcpy(sp->altbuf, *buf + berlen, sp->altlen = tomove);
1200 if (berlen < CS_TCPIP_BUFCHUNK - 1)
1201 *(*buf + berlen) = '\0';
1202 return berlen ? berlen : 1;
1207 * Returns 1, 0 or -1
1208 * In nonblocking mode, you must call again with same buffer while
1209 * return value is 1.
1211 int tcpip_put(COMSTACK h, char *buf, int size)
1214 struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1216 TRC(fprintf(stderr, "tcpip_put: size=%d\n", size));
1219 if (state->towrite < 0)
1221 state->towrite = size;
1224 else if (state->towrite != size)
1226 h->cerrno = CSWRONGBUF;
1229 while (state->towrite > state->written)
1232 send(h->iofile, buf + state->written, size -
1243 WSAGetLastError() == WSAEWOULDBLOCK
1245 yaz_errno() == EWOULDBLOCK
1247 #if EAGAIN != EWOULDBLOCK
1248 || yaz_errno() == EAGAIN
1252 || yaz_errno() == ENOENT /* Sun's sometimes set errno to this value! */
1254 || yaz_errno() == EINPROGRESS
1258 TRC(fprintf(stderr, " Flow control stop\n"));
1259 h->io_pending = CS_WANT_WRITE;
1262 h->cerrno = CSYSERR;
1265 state->written += res;
1266 TRC(fprintf(stderr, " Wrote %d, written=%d, nbytes=%d\n",
1267 res, state->written, size));
1269 state->towrite = state->written = -1;
1270 TRC(fprintf(stderr, " Ok\n"));
1277 * Returns 1, 0 or -1
1278 * In nonblocking mode, you must call again with same buffer while
1279 * return value is 1.
1281 int ssl_put(COMSTACK h, char *buf, int size)
1284 struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1286 TRC(fprintf(stderr, "ssl_put: size=%d\n", size));
1289 if (state->towrite < 0)
1291 state->towrite = size;
1294 else if (state->towrite != size)
1296 h->cerrno = CSWRONGBUF;
1299 while (state->towrite > state->written)
1302 res = gnutls_record_send(state->session, buf + state->written,
1303 size - state->written);
1306 if (ssl_check_error(h, state, res))
1311 res = SSL_write(state->ssl, buf + state->written,
1312 size - state->written);
1315 if (ssl_check_error(h, state, res))
1320 state->written += res;
1321 TRC(fprintf(stderr, " Wrote %d, written=%d, nbytes=%d\n",
1322 res, state->written, size));
1324 state->towrite = state->written = -1;
1325 TRC(fprintf(stderr, " Ok\n"));
1330 void tcpip_close(COMSTACK h)
1332 tcpip_state *sp = (struct tcpip_state *)h->cprivate;
1334 TRC(fprintf(stderr, "tcpip_close h=%p pid=%d\n", h, getpid()));
1335 if (h->iofile != -1)
1339 gnutls_bye(sp->session, GNUTLS_SHUT_RDWR);
1340 #elif HAVE_OPENSSL_SSL_H
1343 SSL_shutdown(sp->ssl);
1347 closesocket(h->iofile);
1357 gnutls_deinit(sp->session);
1361 assert(sp->cred_ptr->ref > 0);
1363 if (--(sp->cred_ptr->ref) == 0)
1365 TRC(fprintf(stderr, "Removed credentials %p pid=%d\n",
1366 sp->cred_ptr->xcred, getpid()));
1367 gnutls_certificate_free_credentials(sp->cred_ptr->xcred);
1368 xfree(sp->cred_ptr);
1372 #elif HAVE_OPENSSL_SSL_H
1375 TRC(fprintf(stderr, "SSL_free\n"));
1380 SSL_CTX_free(sp->ctx_alloc);
1382 #if HAVE_GETADDRINFO
1384 freeaddrinfo(sp->ai);
1386 xfree(sp->connect_request_buf);
1387 xfree(sp->connect_response_buf);
1392 const char *tcpip_addrstr(COMSTACK h)
1394 tcpip_state *sp = (struct tcpip_state *)h->cprivate;
1395 char *r = 0, *buf = sp->buf;
1397 #if HAVE_GETADDRINFO
1399 struct sockaddr_storage addr;
1400 YAZ_SOCKLEN_T len = sizeof(addr);
1402 if (getpeername(h->iofile, (struct sockaddr *)&addr, &len) < 0)
1404 h->cerrno = CSYSERR;
1407 if (getnameinfo((struct sockaddr *) &addr, len, host, sizeof(host)-1,
1409 (h->flags & CS_FLAGS_NUMERICHOST) ? NI_NUMERICHOST : 0))
1418 struct sockaddr_in addr;
1419 YAZ_SOCKLEN_T len = sizeof(addr);
1420 struct hostent *host;
1422 if (getpeername(h->iofile, (struct sockaddr*) &addr, &len) < 0)
1424 h->cerrno = CSYSERR;
1427 if (!(h->flags & CS_FLAGS_NUMERICHOST))
1429 if ((host = gethostbyaddr((char*)&addr.sin_addr,
1430 sizeof(addr.sin_addr),
1432 r = (char*) host->h_name;
1435 r = inet_ntoa(addr.sin_addr);
1438 if (h->protocol == PROTO_HTTP)
1439 sprintf(buf, "http:%s", r);
1441 sprintf(buf, "tcp:%s", r);
1445 if (h->protocol == PROTO_HTTP)
1446 sprintf(buf, "https:%s", r);
1448 sprintf(buf, "ssl:%s", r);
1450 #elif HAVE_OPENSSL_SSL_H
1453 if (h->protocol == PROTO_HTTP)
1454 sprintf(buf, "https:%s", r);
1456 sprintf(buf, "ssl:%s", r);
1462 static int tcpip_set_blocking(COMSTACK p, int flags)
1467 flag = (flags & CS_FLAGS_BLOCKING) ? 0 : 1;
1468 if (ioctlsocket(p->iofile, FIONBIO, &flag) < 0)
1471 flag = fcntl(p->iofile, F_GETFL, 0);
1472 if (flags & CS_FLAGS_BLOCKING)
1473 flag = flag & ~O_NONBLOCK; /* blocking */
1476 flag = flag | O_NONBLOCK; /* non-blocking */
1477 signal(SIGPIPE, SIG_IGN);
1479 if (fcntl(p->iofile, F_SETFL, flag) < 0)
1486 void cs_print_session_info(COMSTACK cs)
1489 struct tcpip_state *sp = (struct tcpip_state *) cs->cprivate;
1492 if (gnutls_certificate_type_get(sp->session) != GNUTLS_CRT_X509)
1494 printf("X509 certificate\n");
1496 #elif HAVE_OPENSSL_SSL_H
1497 struct tcpip_state *sp = (struct tcpip_state *) cs->cprivate;
1498 SSL *ssl = (SSL *) sp->ssl;
1501 X509 *server_cert = SSL_get_peer_certificate(ssl);
1507 BIO *bio = BIO_new(BIO_s_mem());
1509 /* get PEM buffer in memory */
1510 PEM_write_bio_X509(bio, server_cert);
1511 pem_len = BIO_get_mem_data(bio, &pem_buf);
1512 fwrite(pem_buf, pem_len, 1, stdout);
1514 /* print all info on screen .. */
1515 X509_print_fp(stdout, server_cert);
1518 X509_free(server_cert);
1524 void *cs_get_ssl(COMSTACK cs)
1526 #if HAVE_OPENSSL_SSL_H
1527 struct tcpip_state *sp;
1528 if (!cs || cs->type != ssl_type)
1530 sp = (struct tcpip_state *) cs->cprivate;
1537 int cs_set_ssl_ctx(COMSTACK cs, void *ctx)
1540 struct tcpip_state *sp;
1541 if (!cs || cs->type != ssl_type)
1543 sp = (struct tcpip_state *) cs->cprivate;
1544 #if HAVE_OPENSSL_SSL_H
1547 sp->ctx = (SSL_CTX *) ctx;
1555 int cs_set_ssl_certificate_file(COMSTACK cs, const char *fname)
1558 struct tcpip_state *sp;
1559 if (!cs || cs->type != ssl_type)
1561 sp = (struct tcpip_state *) cs->cprivate;
1562 strncpy(sp->cert_fname, fname, sizeof(sp->cert_fname)-1);
1563 sp->cert_fname[sizeof(sp->cert_fname)-1] = '\0';
1570 int cs_get_peer_certificate_x509(COMSTACK cs, char **buf, int *len)
1572 #if HAVE_OPENSSL_SSL_H
1573 SSL *ssl = (SSL *) cs_get_ssl(cs);
1576 X509 *server_cert = SSL_get_peer_certificate(ssl);
1579 BIO *bio = BIO_new(BIO_s_mem());
1581 /* get PEM buffer in memory */
1582 PEM_write_bio_X509(bio, server_cert);
1583 *len = BIO_get_mem_data(bio, &pem_buf);
1584 *buf = (char *) xmalloc(*len);
1585 memcpy(*buf, pem_buf, *len);
1594 static int tcpip_put_connect(COMSTACK h, char *buf, int size)
1596 struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1598 int r = tcpip_put(h, state->connect_request_buf,
1599 state->connect_request_len);
1603 h->f_put = tcpip_put; /* switch to normal tcpip put */
1604 r = tcpip_put(h, buf, size);
1609 static int tcpip_get_connect(COMSTACK h, char **buf, int *bufsize)
1611 struct tcpip_state *state = (struct tcpip_state *)h->cprivate;
1614 r = tcpip_get(h, &state->connect_response_buf,
1615 &state->connect_response_len);
1618 /* got the connect response completely */
1619 state->complete = cs_complete_auto; /* switch to normal tcpip get */
1620 h->f_get = tcpip_get;
1621 return tcpip_get(h, buf, bufsize);
1628 * c-file-style: "Stroustrup"
1629 * indent-tabs-mode: nil
1631 * vim: shiftwidth=4 tabstop=8 expandtab