1 /* This file is part of Pazpar2.
2 Copyright (C) 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;
101 int operation_timeout;
103 struct connection *next; // next for same host or next in free list
106 static int connection_connect(struct connection *con, iochan_man_t iochan_man);
108 static int connection_is_idle(struct connection *co)
110 ZOOM_connection link = co->link;
113 if (co->state != Conn_Open || !link)
116 if (!ZOOM_connection_is_idle(link))
118 event = ZOOM_connection_peek_event(link);
119 if (event == ZOOM_EVENT_NONE)
125 ZOOM_connection connection_get_link(struct connection *co)
130 static void remove_connection_from_host(struct connection *con)
132 struct connection **conp = &con->host->connections;
138 *conp = (*conp)->next;
141 conp = &(*conp)->next;
143 yaz_cond_broadcast(con->host->cond_ready);
146 // Close connection and recycle structure
147 static void connection_destroy(struct connection *co)
151 ZOOM_connection_destroy(co->link);
152 iochan_destroy(co->iochan);
154 yaz_log(YLOG_DEBUG, "%p Connection destroy %s", co, co->url);
158 client_disconnect(co->client);
167 // Creates a new connection for client, associated with the host of
169 static struct connection *connection_create(struct client *cl,
172 int operation_timeout,
174 iochan_man_t iochan_man)
176 struct connection *co;
178 co = xmalloc(sizeof(*co));
182 co->url = xstrdup(url);
184 client_set_connection(cl, co);
186 co->state = Conn_Closed;
187 co->operation_timeout = operation_timeout;
188 co->session_timeout = session_timeout;
191 connection_connect(co, iochan_man);
193 yaz_mutex_enter(host->mutex);
194 co->next = co->host->connections;
195 co->host->connections = co;
196 yaz_mutex_leave(host->mutex);
202 static void non_block_events(struct connection *co)
205 IOCHAN iochan = co->iochan;
206 ZOOM_connection link = co->link;
209 struct client *cl = co->client;
211 int r = ZOOM_event_nonblock(1, &link);
216 ev = ZOOM_connection_last_event(link);
219 yaz_log(YLOG_DEBUG, "%p Connection ZOOM_EVENT_%s", co, ZOOM_get_event_str(ev));
223 case ZOOM_EVENT_TIMEOUT:
227 const char *error, *addinfo;
229 if ((err = ZOOM_connection_error(link, &error, &addinfo)))
231 yaz_log(YLOG_LOG, "Error %s from %s",
232 error, client_get_id(cl));
233 client_set_diagnostic(cl, err, error, addinfo);
234 client_set_state(cl, Client_Error);
238 iochan_settimeout(iochan, co->session_timeout);
239 client_set_state(cl, Client_Idle);
241 yaz_cond_broadcast(co->host->cond_ready);
244 case ZOOM_EVENT_SEND_DATA:
246 case ZOOM_EVENT_RECV_DATA:
248 case ZOOM_EVENT_UNKNOWN:
250 case ZOOM_EVENT_SEND_APDU:
251 client_set_state(co->client, Client_Working);
252 iochan_settimeout(iochan, co->operation_timeout);
254 case ZOOM_EVENT_RECV_APDU:
256 case ZOOM_EVENT_CONNECT:
257 yaz_log(YLOG_LOG, "Connected to %s", client_get_id(cl));
258 co->state = Conn_Open;
260 case ZOOM_EVENT_RECV_SEARCH:
261 client_search_response(cl);
263 case ZOOM_EVENT_RECV_RECORD:
264 client_record_response(cl, &got_records);
267 yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
268 ev, client_get_id(cl));
274 struct client *cl = co->client;
277 client_check_preferred_watch(cl);
278 client_got_records(cl);
283 void connection_continue(struct connection *co)
285 int r = ZOOM_connection_exec_task(co->link);
288 struct client *cl = co->client;
291 non_block_events(co);
296 iochan_setflags(co->iochan, ZOOM_connection_get_mask(co->link));
297 iochan_setfd(co->iochan, ZOOM_connection_get_socket(co->link));
301 static void connection_handler(IOCHAN iochan, int event)
303 struct connection *co = iochan_getdata(iochan);
305 struct host *host = co->host;
307 yaz_mutex_enter(host->mutex);
311 /* no client associated with it.. We are probably getting
312 a closed connection from the target.. Or, perhaps, an unexpected
313 package.. We will just close the connection */
314 yaz_log(YLOG_LOG, "timeout connection %p event=%d", co, event);
315 remove_connection_from_host(co);
316 yaz_mutex_leave(host->mutex);
317 connection_destroy(co);
319 else if (event & EVENT_TIMEOUT)
321 ZOOM_connection_fire_event_timeout(co->link);
323 non_block_events(co);
326 remove_connection_from_host(co);
327 yaz_mutex_leave(host->mutex);
328 connection_destroy(co);
332 yaz_mutex_leave(host->mutex);
335 non_block_events(co);
337 ZOOM_connection_fire_event_socket(co->link, event);
339 non_block_events(co);
344 iochan_setflags(iochan, ZOOM_connection_get_mask(co->link));
345 iochan_setfd(iochan, ZOOM_connection_get_socket(co->link));
351 // Disassociate connection from client
352 static void connection_release(struct connection *co)
354 struct client *cl = co->client;
358 client_set_connection(cl, 0);
362 void connect_resolver_host(struct host *host, iochan_man_t iochan_man)
364 struct connection *con;
366 yaz_mutex_enter(host->mutex);
367 con = host->connections;
370 if (con->state == Conn_Closed)
372 if (!host->ipport || !con->client) /* unresolved or no client */
374 remove_connection_from_host(con);
375 yaz_mutex_leave(host->mutex);
376 connection_destroy(con);
380 struct session_database *sdb = client_get_database(con->client);
383 yaz_mutex_leave(host->mutex);
384 client_start_search(con->client);
388 remove_connection_from_host(con);
389 yaz_mutex_leave(host->mutex);
390 connection_destroy(con);
393 /* start all over .. at some point it will be NULL */
394 yaz_mutex_enter(host->mutex);
395 con = host->connections;
402 yaz_mutex_leave(host->mutex);
405 static struct host *connection_get_host(struct connection *con)
410 static int connection_connect(struct connection *con, iochan_man_t iochan_man)
412 struct host *host = connection_get_host(con);
413 ZOOM_options zoptions = ZOOM_options_create();
417 const char *sru_version = 0;
421 struct session_database *sdb = client_get_database(con->client);
422 const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
423 const char *memcached = session_setting_oneval(sdb, PZ_MEMCACHED);
427 ZOOM_options_set(zoptions, "async", "1");
428 ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
429 ZOOM_options_set(zoptions, "implementationVersion", VERSION);
431 if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET)))
432 ZOOM_options_set(zoptions, "charset", charset);
433 if (memcached && *memcached)
434 ZOOM_options_set(zoptions, "memcached", memcached);
436 assert(host->ipport);
439 yaz_log(YLOG_LOG, "proxy=%s", host->ipport);
440 ZOOM_options_set(zoptions, "proxy", host->ipport);
444 assert(host->tproxy);
445 yaz_log(YLOG_LOG, "tproxy=%s", host->ipport);
446 ZOOM_options_set(zoptions, "tproxy", host->ipport);
449 if (apdulog && *apdulog)
450 ZOOM_options_set(zoptions, "apdulog", apdulog);
453 if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
454 ZOOM_options_set(zoptions, "sru", sru);
455 if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION))
457 ZOOM_options_set(zoptions, "sru_version", sru_version);
459 if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
461 /* allow splitting user and reset with a blank always */
462 const char *cp1 = strchr(auth, ' ');
463 if (!cp1 && sru && *sru)
464 cp1 = strchr(auth, '/');
467 /* Z39.50 user/password style, or no password for SRU */
468 ZOOM_options_set(zoptions, "user", auth);
472 /* now consider group as well */
473 const char *cp2 = strchr(cp1 + 1, ' ');
475 ZOOM_options_setl(zoptions, "user", auth, cp1 - auth);
477 ZOOM_options_set(zoptions, "password", cp1 + 1);
480 ZOOM_options_setl(zoptions, "group", cp1 + 1, cp2 - cp1 - 1);
481 ZOOM_options_set(zoptions, "password", cp2 + 1);
486 value = session_setting_oneval(sdb, PZ_AUTHENTICATION_MODE);
488 ZOOM_options_set(zoptions, "authenticationMode", value);
490 if (!(con->link = ZOOM_connection_create(zoptions)))
492 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
493 ZOOM_options_destroy(zoptions);
498 if (sru && *sru && !strstr(con->url, "://"))
499 wrbuf_puts(w, "http://");
500 if (strchr(con->url, '#'))
502 const char *cp = strchr(con->url, '#');
503 wrbuf_write(w, con->url, cp - con->url);
506 wrbuf_puts(w, con->url);
508 ZOOM_connection_connect(con->link, wrbuf_cstr(w), 0);
510 con->iochan = iochan_create(-1, connection_handler, 0, "connection_socket");
511 con->state = Conn_Connecting;
512 iochan_settimeout(con->iochan, con->operation_timeout);
513 iochan_setdata(con->iochan, con);
514 iochan_add(iochan_man, con->iochan);
516 client_set_state(con->client, Client_Connecting);
517 ZOOM_options_destroy(zoptions);
522 // Ensure that client has a connection associated
523 int client_prep_connection(struct client *cl,
524 int operation_timeout, int session_timeout,
525 iochan_man_t iochan_man,
526 const struct timeval *abstime)
528 struct connection *co;
529 struct session_database *sdb = client_get_database(cl);
530 const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
531 const char *url = session_setting_oneval(sdb, PZ_URL);
532 const char *sru = session_setting_oneval(sdb, PZ_SRU);
533 struct host *host = 0;
534 int default_port = *sru ? 80 : 210;
536 if (zproxy && zproxy[0] == '\0')
540 url = sdb->database->id;
542 host = find_host(client_get_session(cl)->service->server->database_hosts,
543 url, zproxy, default_port, iochan_man);
545 yaz_log(YLOG_DEBUG, "client_prep_connection: target=%s url=%s",
546 client_get_id(cl), url);
550 co = client_get_connection(cl);
554 if (co->host == host && client_get_state(cl) == Client_Idle)
558 connection_release(co);
563 int max_connections = 0;
564 int reuse_connections = 1;
565 const char *v = session_setting_oneval(client_get_database(cl),
568 max_connections = atoi(v);
570 v = session_setting_oneval(client_get_database(cl),
571 PZ_REUSE_CONNECTIONS);
573 reuse_connections = atoi(v);
575 // See if someone else has an idle connection
576 // We should look at timestamps here to select the longest-idle connection
577 yaz_mutex_enter(host->mutex);
580 int num_connections = 0;
581 for (co = host->connections; co; co = co->next)
583 if (reuse_connections)
585 for (co = host->connections; co; co = co->next)
587 if (connection_is_idle(co) &&
588 !strcmp(url, co->url) &&
589 (!co->client || client_get_state(co->client) == Client_Idle) &&
590 !strcmp(ZOOM_connection_option_get(co->link, "user"),
591 session_setting_oneval(client_get_database(cl),
594 if (zproxy == 0 && co->zproxy == 0)
596 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
602 yaz_log(YLOG_LOG, "num_connections = %d (reusing)", num_connections);
606 if (max_connections <= 0 || num_connections < max_connections)
608 yaz_log(YLOG_LOG, "num_connections = %d (new); max = %d",
609 num_connections, max_connections);
612 yaz_log(YLOG_LOG, "num_connections = %d (waiting) max = %d",
613 num_connections, max_connections);
614 if (yaz_cond_wait(host->cond_ready, host->mutex, abstime))
616 yaz_log(YLOG_LOG, "out of connections %s", client_get_id(cl));
617 client_set_state(cl, Client_Error);
618 yaz_mutex_leave(host->mutex);
624 yaz_log(YLOG_LOG, "%p Connection reuse. state: %d", co, co->state);
625 connection_release(co);
626 client_set_connection(cl, co);
628 /* ensure that connection is only assigned to this client
629 by marking the client non Idle */
630 client_set_state(cl, Client_Working);
631 yaz_mutex_leave(host->mutex);
632 co->operation_timeout = operation_timeout;
633 co->session_timeout = session_timeout;
634 /* tells ZOOM to reconnect if necessary. Disabled becuase
635 the ZOOM_connection_connect flushes the task queue */
636 ZOOM_connection_connect(co->link, 0, 0);
640 yaz_mutex_leave(host->mutex);
641 co = connection_create(cl, url, host,
642 operation_timeout, session_timeout,
657 * c-file-style: "Stroustrup"
658 * indent-tabs-mode: nil
660 * vim: shiftwidth=4 tabstop=8 expandtab