1 /* $Id: connection.c,v 1.6 2007-07-03 11:21:48 adam Exp $
2 Copyright (c) 2006-2007, Index Data.
4 This file is part of Pazpar2.
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /** \file connection.c
23 \brief Z39.50 connection (low-level client)
31 #include <sys/socket.h>
42 #include <yaz/comstack.h>
43 #include <yaz/tcpip.h>
44 #include "connection.h"
50 #include "parameters.h"
53 /** \brief Represents a physical, reusable connection to a remote Z39.50 host
59 struct client *client;
62 char *authentication; // Empty string or authentication string if set
69 struct connection *next; // next for same host or next in free list
72 static struct connection *connection_freelist = 0;
74 static void remove_connection_from_host(struct connection *con)
76 struct connection **conp = &con->host->connections;
82 *conp = (*conp)->next;
85 conp = &(*conp)->next;
90 // Close connection and recycle structure
91 void connection_destroy(struct connection *co)
96 iochan_destroy(co->iochan);
99 yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
101 remove_connection_from_host(co);
104 client_disconnect(co->client);
106 co->next = connection_freelist;
107 connection_freelist = co;
110 // Creates a new connection for client, associated with the host of
112 struct connection *connection_create(struct client *cl)
114 struct connection *new;
115 struct host *host = client_get_host(cl);
117 if ((new = connection_freelist))
118 connection_freelist = new->next;
121 new = xmalloc(sizeof (struct connection));
126 new->next = new->host->connections;
127 new->host->connections = new;
129 new->authentication = "";
130 client_set_connection(cl, new);
132 new->state = Conn_Resolving;
134 connection_connect(new);
138 static void connection_handler(IOCHAN i, int event)
140 struct connection *co = iochan_getdata(i);
141 struct client *cl = co->client;
142 struct session *se = 0;
145 se = client_get_session(cl);
148 yaz_log(YLOG_WARN, "Destroying orphan connection");
149 connection_destroy(co);
153 if (event & EVENT_TIMEOUT)
155 if (co->state == Conn_Connecting)
157 yaz_log(YLOG_WARN, "connect timeout %s", client_get_url(cl));
162 yaz_log(YLOG_LOG, "idle timeout %s", client_get_url(cl));
163 connection_destroy(co);
167 if (co->state == Conn_Connecting && event & EVENT_OUTPUT)
170 socklen_t errlen = sizeof(errcode);
172 if (getsockopt(cs_fileno(co->link), SOL_SOCKET, SO_ERROR, &errcode,
173 &errlen) < 0 || errcode != 0)
180 yaz_log(YLOG_DEBUG, "Connect OK");
181 co->state = Conn_Open;
183 client_set_state(cl, Client_Connected);
184 iochan_settimeout(i, 180);
188 else if (event & EVENT_INPUT)
190 int len = cs_get(co->link, &co->ibuf, &co->ibufsize);
194 yaz_log(YLOG_WARN|YLOG_ERRNO, "Error reading from %s",
196 connection_destroy(co);
201 yaz_log(YLOG_WARN, "EOF reading from %s", client_get_url(cl));
202 connection_destroy(co);
205 else if (len > 1) // We discard input if we have no connection
207 co->state = Conn_Open;
209 if (client_is_our_response(cl))
212 struct session_database *sdb = client_get_database(cl);
213 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
215 odr_reset(global_parameters.odr_in);
216 odr_setbuf(global_parameters.odr_in, co->ibuf, len, 0);
217 if (!z_APDU(global_parameters.odr_in, &a, 0, 0))
223 if (apdulog && *apdulog && *apdulog != '0')
225 ODR p = odr_createmem(ODR_PRINT);
226 yaz_log(YLOG_LOG, "recv APDU %s", client_get_url(cl));
228 odr_setprint(p, yaz_log_file());
230 odr_setprint(p, stderr);
235 case Z_APDU_initResponse:
236 client_init_response(cl, a);
238 case Z_APDU_searchResponse:
239 client_search_response(cl, a);
241 case Z_APDU_presentResponse:
242 client_present_response(cl, a);
245 client_close_response(cl, a);
249 "Unexpected Z39.50 response from %s",
254 // We aren't expecting staggered output from target
255 // if (cs_more(t->link))
256 // iochan_setevent(i, EVENT_INPUT);
258 else // we throw away response and go to idle mode
260 yaz_log(YLOG_DEBUG, "Ignoring result of expired operation");
261 client_set_state(cl, Client_Idle);
264 /* if len==1 we do nothing but wait for more input */
269 // Disassociate connection from client
270 void connection_release(struct connection *co)
272 struct client *cl = co->client;
274 yaz_log(YLOG_DEBUG, "Connection release %s", co->host->hostport);
277 client_set_connection(cl, 0);
281 void connect_resolver_host(struct host *host)
283 struct connection *con = host->connections;
286 if (con->state == Conn_Resolving)
288 if (!host->ipport) /* unresolved */
290 connection_destroy(con);
291 /* start all over .. at some point it will be NULL */
292 con = host->connections;
294 else if (!con->client)
296 yaz_log(YLOG_WARN, "connect_unresolved_host : ophan client");
297 connection_destroy(con);
298 /* start all over .. at some point it will be NULL */
299 con = host->connections;
303 connection_connect(con);
310 int connection_send_apdu(struct connection *co, Z_APDU *a)
315 if (!z_APDU(global_parameters.odr_out, &a, 0, 0))
317 odr_perror(global_parameters.odr_out, "Encoding APDU");
320 buf = odr_getbuf(global_parameters.odr_out, &len, 0);
321 r = cs_put(co->link, buf, len);
324 yaz_log(YLOG_WARN, "cs_put: %s", cs_errmsg(cs_errno(co->link)));
329 fprintf(stderr, "cs_put incomplete (ParaZ does not handle that)\n");
332 odr_reset(global_parameters.odr_out); /* release the APDU structure */
333 co->state = Conn_Waiting;
334 iochan_setflags(co->iochan, EVENT_INPUT);
338 struct host *connection_get_host(struct connection *con)
343 int connection_connect(struct connection *con)
346 struct host *host = connection_get_host(con);
350 struct session_database *sdb = client_get_database(con->client);
351 char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
353 assert(host->ipport);
356 if (!(link = cs_create(tcpip_type, 0, PROTO_Z3950)))
358 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create comstack");
362 if (!zproxy || 0 == strlen(zproxy)){
363 /* no Z39.50 proxy needed - direct connect */
364 yaz_log(YLOG_DEBUG, "Connection create %s", connection_get_url(con));
366 if (!(addr = cs_straddr(link, host->ipport)))
368 yaz_log(YLOG_WARN|YLOG_ERRNO,
369 "Lookup of IP address %s failed", host->ipport);
374 /* Z39.50 proxy connect */
375 yaz_log(YLOG_DEBUG, "Connection create %s proxy %s",
376 connection_get_url(con), zproxy);
378 if (!(addr = cs_straddr(link, zproxy)))
380 yaz_log(YLOG_WARN|YLOG_ERRNO,
381 "Lookup of ZProxy IP address %s failed",
387 res = cs_connect(link, addr);
390 yaz_log(YLOG_WARN|YLOG_ERRNO, "cs_connect %s",
391 connection_get_url(con));
395 con->state = Conn_Connecting;
396 con->iochan = iochan_create(cs_fileno(link), connection_handler, 0);
397 iochan_settimeout(con->iochan, 30);
398 iochan_setdata(con->iochan, con);
399 pazpar2_add_channel(con->iochan);
401 /* this fragment is bad DRY: from client_prep_connection */
402 client_set_state(con->client, Client_Connecting);
403 iochan_setflag(con->iochan, EVENT_OUTPUT);
407 const char *connection_get_url(struct connection *co)
409 return client_get_url(co->client);
412 void connection_set_authentication(struct connection *co, char *auth)
414 co->authentication = auth;
417 // Ensure that client has a connection associated
418 int client_prep_connection(struct client *cl)
420 struct connection *co;
421 struct session *se = client_get_session(cl);
422 struct host *host = client_get_host(cl);
424 co = client_get_connection(cl);
426 yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
430 // See if someone else has an idle connection
431 // We should look at timestamps here to select the longest-idle connection
432 for (co = host->connections; co; co = co->next)
433 if (co->state == Conn_Open &&
434 (!co->client || client_get_session(co->client) != se) &&
435 !strcmp(co->authentication,
436 session_setting_oneval(client_get_database(cl),
441 connection_release(co);
442 client_set_connection(cl, co);
446 co = connection_create(cl);
450 if (co->state == Conn_Connecting)
452 client_set_state(cl, Client_Connecting);
453 iochan_setflag(co->iochan, EVENT_OUTPUT);
455 else if (co->state == Conn_Open)
457 if (client_get_state(cl) == Client_Error
458 || client_get_state(cl) == Client_Disconnected)
459 client_set_state(cl, Client_Idle);
460 iochan_setflag(co->iochan, EVENT_OUTPUT);
473 * indent-tabs-mode: nil
475 * vim: shiftwidth=4 tabstop=8 expandtab