1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2012 Index Data
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 /** \file connection.c
21 \brief Z39.50 connection (low-level client)
42 #include <yaz/comstack.h>
43 #include <yaz/tcpip.h>
44 #include "connection.h"
50 /* connection counting (1) , disable connection counting (0) */
52 static YAZ_MUTEX g_mutex = 0;
53 static int no_connections = 0;
54 static int total_no_connections = 0;
56 static int connection_use(int delta)
60 yaz_mutex_create(&g_mutex);
61 yaz_mutex_enter(g_mutex);
62 no_connections += delta;
63 result = no_connections;
65 total_no_connections += delta;
66 yaz_mutex_leave(g_mutex);
69 yaz_log(YLOG_LOG, "%s connections=%d", delta > 0 ? "INC" : "DEC",
74 int connections_count(void)
76 return connection_use(0);
81 #define connection_use(x)
82 #define connections_count(x) 0
83 #define connections_count_total(x) 0
87 /** \brief Represents a physical, reusable connection to a remote Z39.50 host
93 struct client *client;
100 int operation_timeout;
102 struct connection *next; // next for same host or next in free list
105 static int connection_connect(struct connection *con, iochan_man_t iochan_man);
107 static int connection_is_idle(struct connection *co)
109 ZOOM_connection link = co->link;
112 if (co->state != Conn_Open || !link)
115 if (!ZOOM_connection_is_idle(link))
117 event = ZOOM_connection_peek_event(link);
118 if (event == ZOOM_EVENT_NONE)
124 ZOOM_connection connection_get_link(struct connection *co)
129 static void remove_connection_from_host(struct connection *con)
131 struct connection **conp = &con->host->connections;
137 *conp = (*conp)->next;
140 conp = &(*conp)->next;
142 yaz_cond_broadcast(con->host->cond_ready);
145 // Close connection and recycle structure
146 static void connection_destroy(struct connection *co)
150 ZOOM_connection_destroy(co->link);
151 iochan_destroy(co->iochan);
153 yaz_log(YLOG_DEBUG, "%p Connection destroy %s", co, co->host->url);
157 client_disconnect(co->client);
165 // Creates a new connection for client, associated with the host of
167 static struct connection *connection_create(struct client *cl,
169 int operation_timeout,
171 iochan_man_t iochan_man)
173 struct connection *co;
175 co = xmalloc(sizeof(*co));
180 client_set_connection(cl, co);
182 co->state = Conn_Closed;
183 co->operation_timeout = operation_timeout;
184 co->session_timeout = session_timeout;
187 connection_connect(co, iochan_man);
189 yaz_mutex_enter(host->mutex);
190 co->next = co->host->connections;
191 co->host->connections = co;
192 yaz_mutex_leave(host->mutex);
198 static void non_block_events(struct connection *co)
201 IOCHAN iochan = co->iochan;
202 ZOOM_connection link = co->link;
205 struct client *cl = co->client;
207 int r = ZOOM_event_nonblock(1, &link);
212 ev = ZOOM_connection_last_event(link);
215 yaz_log(YLOG_DEBUG, "%p Connection ZOOM_EVENT_%s", co, ZOOM_get_event_str(ev));
221 const char *error, *addinfo;
223 if ((err = ZOOM_connection_error(link, &error, &addinfo)))
225 yaz_log(YLOG_LOG, "Error %s from %s",
226 error, client_get_id(cl));
227 client_set_diagnostic(cl, err, addinfo);
228 client_set_state(cl, Client_Error);
232 iochan_settimeout(iochan, co->session_timeout);
233 client_set_state(cl, Client_Idle);
235 yaz_cond_broadcast(co->host->cond_ready);
238 case ZOOM_EVENT_SEND_DATA:
240 case ZOOM_EVENT_RECV_DATA:
242 case ZOOM_EVENT_UNKNOWN:
244 case ZOOM_EVENT_SEND_APDU:
245 client_set_state(co->client, Client_Working);
246 iochan_settimeout(iochan, co->operation_timeout);
248 case ZOOM_EVENT_RECV_APDU:
250 case ZOOM_EVENT_CONNECT:
251 yaz_log(YLOG_LOG, "Connected to %s", client_get_id(cl));
252 co->state = Conn_Open;
254 case ZOOM_EVENT_RECV_SEARCH:
255 client_search_response(cl);
257 case ZOOM_EVENT_RECV_RECORD:
258 client_record_response(cl);
262 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
263 ev, client_get_id(cl));
269 struct client *cl = co->client;
272 client_check_preferred_watch(cl);
273 client_got_records(cl);
278 void connection_continue(struct connection *co)
280 int r = ZOOM_connection_exec_task(co->link);
283 const char *error, *addinfo;
285 if ((err = ZOOM_connection_error(co->link, &error, &addinfo)))
289 yaz_log(YLOG_LOG, "Error %s from %s",
290 error, client_get_id(co->client));
291 client_set_diagnostic(co->client, err, addinfo);
292 client_set_state_nb(co->client, Client_Error);
298 iochan_setflags(co->iochan, ZOOM_connection_get_mask(co->link));
299 iochan_setfd(co->iochan, ZOOM_connection_get_socket(co->link));
303 static void connection_handler(IOCHAN iochan, int event)
305 struct connection *co = iochan_getdata(iochan);
307 struct host *host = co->host;
309 yaz_mutex_enter(host->mutex);
313 /* no client associated with it.. We are probably getting
314 a closed connection from the target.. Or, perhaps, an unexpected
315 package.. We will just close the connection */
316 yaz_log(YLOG_LOG, "timeout connection %p event=%d", co, event);
317 remove_connection_from_host(co);
318 yaz_mutex_leave(host->mutex);
319 connection_destroy(co);
321 else if (event & EVENT_TIMEOUT)
323 if (co->state == Conn_Connecting)
325 yaz_log(YLOG_WARN, "%p connect timeout %s", co, client_get_id(cl));
327 client_set_state(cl, Client_Error);
328 remove_connection_from_host(co);
329 yaz_mutex_leave(host->mutex);
330 connection_destroy(co);
334 yaz_log(YLOG_LOG, "%p Connection idle timeout %s", co, client_get_id(cl));
335 remove_connection_from_host(co);
336 yaz_mutex_leave(host->mutex);
337 connection_destroy(co);
342 yaz_mutex_leave(host->mutex);
345 non_block_events(co);
347 ZOOM_connection_fire_event_socket(co->link, event);
349 non_block_events(co);
354 iochan_setflags(iochan, ZOOM_connection_get_mask(co->link));
355 iochan_setfd(iochan, ZOOM_connection_get_socket(co->link));
361 // Disassociate connection from client
362 static void connection_release(struct connection *co)
364 struct client *cl = co->client;
368 client_set_connection(cl, 0);
372 void connect_resolver_host(struct host *host, iochan_man_t iochan_man)
374 struct connection *con;
377 yaz_mutex_enter(host->mutex);
378 con = host->connections;
381 if (con->state == Conn_Closed)
383 if (!host->ipport) /* unresolved */
385 remove_connection_from_host(con);
386 yaz_mutex_leave(host->mutex);
387 connection_destroy(con);
389 /* start all over .. at some point it will be NULL */
391 else if (!con->client)
393 remove_connection_from_host(con);
394 yaz_mutex_leave(host->mutex);
395 connection_destroy(con);
396 /* start all over .. at some point it will be NULL */
401 yaz_mutex_leave(host->mutex);
402 connection_connect(con, iochan_man);
403 client_start_search(con->client);
409 yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
413 yaz_mutex_leave(host->mutex);
416 static struct host *connection_get_host(struct connection *con)
421 static int connection_connect(struct connection *con, iochan_man_t iochan_man)
423 struct host *host = connection_get_host(con);
424 ZOOM_options zoptions = ZOOM_options_create();
428 const char *sru_version = 0;
430 struct session_database *sdb = client_get_database(con->client);
431 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
435 ZOOM_options_set(zoptions, "async", "1");
436 ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
437 ZOOM_options_set(zoptions, "implementationVersion", VERSION);
439 if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET)))
440 ZOOM_options_set(zoptions, "charset", charset);
442 assert(host->ipport);
445 yaz_log(YLOG_LOG, "proxy=%s", host->ipport);
446 ZOOM_options_set(zoptions, "proxy", host->ipport);
450 assert(host->tproxy);
451 yaz_log(YLOG_LOG, "tproxy=%s", host->ipport);
452 ZOOM_options_set(zoptions, "tproxy", host->ipport);
455 if (apdulog && *apdulog)
456 ZOOM_options_set(zoptions, "apdulog", apdulog);
458 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
459 ZOOM_options_set(zoptions, "user", auth);
460 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
461 ZOOM_options_set(zoptions, "sru", sru);
462 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
464 ZOOM_options_set(zoptions, "sru_version", sru_version);
465 if (!(con->link = ZOOM_connection_create(zoptions)))
467 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
468 ZOOM_options_destroy(zoptions);
474 char http_hostport[512];
475 strcpy(http_hostport, "http://");
476 strcat(http_hostport, host->url);
477 yaz_log(YLOG_LOG, "SRU connect to : %s", http_hostport);
478 ZOOM_connection_connect(con->link, http_hostport, 0);
482 ZOOM_connection_connect(con->link, host->url, 0);
484 con->iochan = iochan_create(-1, connection_handler, 0, "connection_socket");
485 con->state = Conn_Connecting;
486 iochan_settimeout(con->iochan, con->operation_timeout);
487 iochan_setdata(con->iochan, con);
488 iochan_add(iochan_man, con->iochan);
490 client_set_state(con->client, Client_Connecting);
491 ZOOM_options_destroy(zoptions);
495 // Ensure that client has a connection associated
496 int client_prep_connection(struct client *cl,
497 int operation_timeout, int session_timeout,
498 iochan_man_t iochan_man,
499 const struct timeval *abstime)
501 struct connection *co;
502 struct session_database *sdb = client_get_database(cl);
503 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
504 const char *url = session_setting_oneval(sdb, PZ_URL);
505 const char *sru = session_setting_oneval(sdb, PZ_SRU);
506 struct host *host = 0;
507 int default_port = *sru ? 80 : 210;
509 if (zproxy && zproxy[0] == '\0')
513 url = sdb->database->id;
515 host = find_host(client_get_session(cl)->service->server->database_hosts,
516 url, zproxy, default_port, iochan_man);
518 yaz_log(YLOG_DEBUG, "client_prep_connection: target=%s url=%s",
519 client_get_id(cl), url);
523 co = client_get_connection(cl);
528 if (co->host == host && client_get_state(cl) == Client_Idle)
533 connection_release(co);
538 int max_connections = 0;
539 int reuse_connections = 1;
540 const char *v = session_setting_oneval(client_get_database(cl),
543 max_connections = atoi(v);
545 v = session_setting_oneval(client_get_database(cl),
546 PZ_REUSE_CONNECTIONS);
548 reuse_connections = atoi(v);
550 // See if someone else has an idle connection
551 // We should look at timestamps here to select the longest-idle connection
552 yaz_mutex_enter(host->mutex);
555 int num_connections = 0;
556 for (co = host->connections; co; co = co->next)
558 if (reuse_connections)
560 for (co = host->connections; co; co = co->next)
562 if (connection_is_idle(co) &&
563 (!co->client || client_get_state(co->client) == Client_Idle) &&
564 !strcmp(ZOOM_connection_option_get(co->link, "user"),
565 session_setting_oneval(client_get_database(cl),
568 if (zproxy == 0 && co->zproxy == 0)
570 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
576 yaz_log(YLOG_LOG, "num_connections = %d (reusing)", num_connections);
580 if (max_connections <= 0 || num_connections < max_connections)
582 yaz_log(YLOG_LOG, "num_connections = %d (new); max = %d",
583 num_connections, max_connections);
586 yaz_log(YLOG_LOG, "num_connections = %d (waiting) max = %d",
587 num_connections, max_connections);
588 if (yaz_cond_wait(host->cond_ready, host->mutex, abstime))
590 yaz_log(YLOG_LOG, "out of connections %s", client_get_id(cl));
591 client_set_state(cl, Client_Error);
592 yaz_mutex_leave(host->mutex);
598 yaz_log(YLOG_LOG, "%p Connection reuse. state: %d", co, co->state);
599 connection_release(co);
600 client_set_connection(cl, co);
602 /* ensure that connection is only assigned to this client
603 by marking the client non Idle */
604 client_set_state(cl, Client_Working);
605 yaz_mutex_leave(host->mutex);
606 co->operation_timeout = operation_timeout;
607 co->session_timeout = session_timeout;
608 /* tells ZOOM to reconnect if necessary. Disabled becuase
609 the ZOOM_connection_connect flushes the task queue */
610 ZOOM_connection_connect(co->link, 0, 0);
614 yaz_mutex_leave(host->mutex);
615 co = connection_create(cl, host, operation_timeout, session_timeout,
630 * c-file-style: "Stroustrup"
631 * indent-tabs-mode: nil
633 * vim: shiftwidth=4 tabstop=8 expandtab