Remove maskfun/socketfun
[pazpar2-moved-to-github.git] / src / connection.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2010 Index Data
3
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
7 version.
8
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
12 for more details.
13
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
17
18 */
19
20 /** \file connection.c
21     \brief Z39.50 connection (low-level client)
22 */
23
24 #if HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <string.h>
31 #if HAVE_SYS_TIME_H
32 #include <sys/time.h>
33 #endif
34 #if HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
37
38 #include <signal.h>
39 #include <assert.h>
40
41 #include <yaz/log.h>
42 #include <yaz/comstack.h>
43 #include <yaz/tcpip.h>
44 #include "connection.h"
45 #include "session.h"
46 #include "host.h"
47 #include "client.h"
48 #include "settings.h"
49
50 /* connection counting (1) , disable connection counting (0) */
51 #if 0
52 static YAZ_MUTEX g_mutex = 0;
53 static int no_connections = 0;
54
55 static void connection_use(int delta)
56 {
57     if (!g_mutex)
58         yaz_mutex_create(&g_mutex);
59     yaz_mutex_enter(g_mutex);
60     no_connections += delta;
61     yaz_mutex_leave(g_mutex);
62     yaz_log(YLOG_LOG, "%s connections=%d", delta > 0 ? "INC" : "DEC",
63             no_connections);
64 }
65 #else
66 #define connection_use(x)
67 #endif
68
69
70 /** \brief Represents a physical, reusable  connection to a remote Z39.50 host
71  */
72 struct connection {
73     IOCHAN iochan;
74     ZOOM_connection link;
75     struct host *host;
76     struct client *client;
77     char *zproxy;
78     enum {
79         Conn_Resolving,
80         Conn_Connecting,
81         Conn_Open
82     } state;
83     int operation_timeout;
84     int session_timeout;
85     struct connection *next; // next for same host or next in free list
86 };
87
88 static int connection_connect(struct connection *con, iochan_man_t iochan_man);
89
90 static int connection_is_idle(struct connection *co)
91 {
92     ZOOM_connection link = co->link;
93     int event;
94
95     if (co->state != Conn_Open || !link)
96         return 0;
97
98     if (!ZOOM_connection_is_idle(link))
99         return 0;
100     event = ZOOM_connection_peek_event(link);
101     if (event == ZOOM_EVENT_NONE)
102         return 1;
103     else
104         return 0;
105 }
106
107 ZOOM_connection connection_get_link(struct connection *co)
108 {
109     return co->link;
110 }
111
112 static void remove_connection_from_host(struct connection *con)
113 {
114     struct connection **conp = &con->host->connections;
115     assert(con);
116     while (*conp)
117     {
118         if (*conp == con)
119         {
120             *conp = (*conp)->next;
121             break;
122         }
123         conp = &(*conp)->next;
124     }
125 }
126
127 // Close connection and recycle structure
128 static void connection_destroy(struct connection *co)
129 {
130     if (co->link)
131     {
132         ZOOM_connection_destroy(co->link);
133         iochan_destroy(co->iochan);
134     }
135     yaz_log(YLOG_DEBUG, "Connection destroy %s", co->host->hostport);
136
137     if (co->client)
138     {
139         client_disconnect(co->client);
140     }
141
142     remove_connection_from_host(co);
143     xfree(co->zproxy);
144     xfree(co);
145     connection_use(-1);
146 }
147
148 // Creates a new connection for client, associated with the host of 
149 // client's database
150 static struct connection *connection_create(struct client *cl,
151                                             int operation_timeout,
152                                             int session_timeout,
153                                             iochan_man_t iochan_man)
154 {
155     struct connection *co;
156     struct host *host = client_get_host(cl);
157
158     co = xmalloc(sizeof(*co));
159     co->host = host;
160
161     co->client = cl;
162     co->zproxy = 0;
163     client_set_connection(cl, co);
164     co->link = 0;
165     co->state = Conn_Resolving;
166     co->operation_timeout = operation_timeout;
167     co->session_timeout = session_timeout;
168     if (host->ipport)
169         connection_connect(co, iochan_man);
170
171     yaz_mutex_enter(host->mutex);
172     co->next = co->host->connections;
173     co->host->connections = co;
174     yaz_mutex_leave(host->mutex);
175
176     connection_use(1);
177     return co;
178 }
179
180 static void non_block_events(struct connection *co)
181 {
182     int got_records = 0;
183     IOCHAN iochan = co->iochan;
184     ZOOM_connection link = co->link;
185     while (1)
186     {
187         struct client *cl = co->client;
188         int ev;
189         int r = ZOOM_event_nonblock(1, &link);
190         if (!r)
191             break;
192         if (!cl)
193             continue;
194         ev = ZOOM_connection_last_event(link);
195         
196 #if 0
197         yaz_log(YLOG_LOG, "ZOOM_EVENT_%s", ZOOM_get_event_str(ev));
198 #endif
199         switch (ev) 
200         {
201         case ZOOM_EVENT_END:
202             {
203                 const char *error, *addinfo;
204                 int err;
205                 if ((err = ZOOM_connection_error(link, &error, &addinfo)))
206                 {
207                     yaz_log(YLOG_LOG, "Error %s from %s",
208                             error, client_get_url(cl));
209                 }
210                 iochan_settimeout(iochan, co->session_timeout);
211                 client_set_diagnostic(cl, err);
212                 client_set_state(cl, Client_Idle);
213             }
214             break;
215         case ZOOM_EVENT_SEND_DATA:
216             break;
217         case ZOOM_EVENT_RECV_DATA:
218             break;
219         case ZOOM_EVENT_UNKNOWN:
220             break;
221         case ZOOM_EVENT_SEND_APDU:
222             client_set_state(co->client, Client_Working);
223             iochan_settimeout(iochan, co->operation_timeout);
224             break;
225         case ZOOM_EVENT_RECV_APDU:
226             break;
227         case ZOOM_EVENT_CONNECT:
228             yaz_log(YLOG_LOG, "Connected to %s", client_get_url(cl));
229             co->state = Conn_Open;
230             break;
231         case ZOOM_EVENT_RECV_SEARCH:
232             client_search_response(cl);
233             break;
234         case ZOOM_EVENT_RECV_RECORD:
235             client_record_response(cl);
236             got_records = 1;
237             break;
238         default:
239             yaz_log(YLOG_LOG, "Unhandled event (%d) from %s",
240                     ev, client_get_url(cl));
241         }
242     }
243     if (got_records)
244     {
245         struct client *cl = co->client;
246         if (cl)
247         {
248             client_got_records(cl);
249         }
250     }
251 }
252
253 void connection_continue(struct connection *co)
254 {
255     int r = ZOOM_connection_exec_task(co->link);
256     if (!r)
257         yaz_log(YLOG_WARN, "No task was executed for connection");
258     iochan_setflags(co->iochan, ZOOM_connection_get_mask(co->link));
259     iochan_setfd(co->iochan, ZOOM_connection_get_socket(co->link));
260 }
261
262 static void connection_handler(IOCHAN iochan, int event)
263 {
264     struct connection *co = iochan_getdata(iochan);
265     struct client *cl;
266     struct host *host = co->host;
267
268     yaz_mutex_enter(host->mutex);
269     cl = co->client;
270     if (!cl) 
271     {
272         /* no client associated with it.. We are probably getting
273            a closed connection from the target.. Or, perhaps, an unexpected
274            package.. We will just close the connection */
275         yaz_log(YLOG_LOG, "timeout connection %p event=%d", co, event);
276         connection_destroy(co);
277         yaz_mutex_leave(host->mutex);
278     }
279     else if (event & EVENT_TIMEOUT)
280     {
281         if (co->state == Conn_Connecting)
282         {
283             yaz_log(YLOG_WARN,  "connect timeout %s", client_get_url(cl));
284
285             client_set_state(cl, Client_Error);
286             connection_destroy(co);
287         }
288         else if (client_get_state(co->client) == Client_Idle)
289         {
290             yaz_log(YLOG_LOG,  "idle timeout %s", client_get_url(cl));
291             connection_destroy(co);
292         }
293         else
294         {
295             yaz_log(YLOG_LOG,  "ignore timeout %s", client_get_url(cl));
296         }
297         yaz_mutex_leave(host->mutex);
298     }
299     else
300     {
301         yaz_mutex_leave(host->mutex);
302
303         client_lock(cl);
304         non_block_events(co);
305
306         ZOOM_connection_fire_event_socket(co->link, event);
307         
308         non_block_events(co);
309         client_unlock(cl);
310
311         if (co->link)
312         {
313             iochan_setflags(iochan, ZOOM_connection_get_mask(co->link));
314             iochan_setfd(iochan, ZOOM_connection_get_socket(co->link));
315         }
316     }
317 }
318
319
320 // Disassociate connection from client
321 static void connection_release(struct connection *co)
322 {
323     struct client *cl = co->client;
324
325     if (!cl)
326         return;
327     client_set_connection(cl, 0);
328     co->client = 0;
329 }
330
331 void connect_resolver_host(struct host *host, iochan_man_t iochan_man)
332 {
333     struct connection *con;
334
335 start:
336     yaz_mutex_enter(host->mutex);
337     con = host->connections;
338     while (con)
339     {
340         if (con->state == Conn_Resolving)
341         {
342             if (!host->ipport) /* unresolved */
343             {
344                 yaz_mutex_leave(host->mutex);
345                 connection_destroy(con);
346                 goto start;
347                 /* start all over .. at some point it will be NULL */
348             }
349             else if (!con->client)
350             {
351                 yaz_mutex_leave(host->mutex);
352                 connection_destroy(con);
353                 /* start all over .. at some point it will be NULL */
354                 goto start;
355             }
356             else
357             {
358                 yaz_mutex_leave(host->mutex);
359                 connection_connect(con, iochan_man);
360                 client_start_search(con->client);
361                 goto start;
362             }
363         }
364         else
365         {
366             yaz_log(YLOG_LOG, "connect_resolver_host: state=%d", con->state);
367             con = con->next;
368         }
369     }
370     yaz_mutex_leave(host->mutex);
371 }
372
373 static struct host *connection_get_host(struct connection *con)
374 {
375     return con->host;
376 }
377
378 static int connection_connect(struct connection *con, iochan_man_t iochan_man)
379 {
380     ZOOM_connection link = 0;
381     struct host *host = connection_get_host(con);
382     ZOOM_options zoptions = ZOOM_options_create();
383     const char *auth;
384     const char *charset;
385     const char *sru;
386     const char *sru_version = 0;
387
388     struct session_database *sdb = client_get_database(con->client);
389     const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
390     const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG);
391
392     assert(host->ipport);
393     assert(con);
394
395     ZOOM_options_set(zoptions, "async", "1");
396     ZOOM_options_set(zoptions, "implementationName", PACKAGE_NAME);
397     ZOOM_options_set(zoptions, "implementationVersion", VERSION);
398         
399     if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET)))
400         ZOOM_options_set(zoptions, "charset", charset);
401     
402     if (zproxy && *zproxy)
403     {
404         con->zproxy = xstrdup(zproxy);
405         ZOOM_options_set(zoptions, "proxy", zproxy);
406     }
407     if (apdulog && *apdulog)
408         ZOOM_options_set(zoptions, "apdulog", apdulog);
409
410     if ((auth = session_setting_oneval(sdb, PZ_AUTHENTICATION)))
411         ZOOM_options_set(zoptions, "user", auth);
412     if ((sru = session_setting_oneval(sdb, PZ_SRU)) && *sru)
413         ZOOM_options_set(zoptions, "sru", sru);
414     if ((sru_version = session_setting_oneval(sdb, PZ_SRU_VERSION)) 
415         && *sru_version)
416         ZOOM_options_set(zoptions, "sru_version", sru_version);
417
418     if (!(link = ZOOM_connection_create(zoptions)))
419     {
420         yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create ZOOM Connection");
421         ZOOM_options_destroy(zoptions);
422         return -1;
423     }
424
425     if (sru && *sru)
426     {
427         char http_hostport[512];
428         strcpy(http_hostport, "http://");
429         strcat(http_hostport, host->hostport);
430         ZOOM_connection_connect(link, http_hostport, 0);
431     }
432     else
433         ZOOM_connection_connect(link, host->ipport, 0);
434     
435     con->link = link;
436     con->iochan = iochan_create(0, connection_handler, 0, "connection_socket");
437     con->state = Conn_Connecting;
438     iochan_settimeout(con->iochan, con->operation_timeout);
439     iochan_setdata(con->iochan, con);
440     iochan_add(iochan_man, con->iochan);
441
442     /* this fragment is bad DRY: from client_prep_connection */
443     client_set_state(con->client, Client_Connecting);
444     ZOOM_options_destroy(zoptions);
445     return 0;
446 }
447
448 // Ensure that client has a connection associated
449 int client_prep_connection(struct client *cl,
450                            int operation_timeout, int session_timeout,
451                            iochan_man_t iochan_man)
452 {
453     struct connection *co;
454     struct host *host = client_get_host(cl);
455     struct session_database *sdb = client_get_database(cl);
456     const char *zproxy = session_setting_oneval(sdb, PZ_ZPROXY);
457
458     if (zproxy && zproxy[0] == '\0')
459         zproxy = 0;
460
461     if (!host)
462         return 0;
463
464     co = client_get_connection(cl);
465
466     yaz_log(YLOG_DEBUG, "Client prep %s", client_get_url(cl));
467
468     if (!co)
469     {
470         // See if someone else has an idle connection
471         // We should look at timestamps here to select the longest-idle connection
472         yaz_mutex_enter(host->mutex);
473         for (co = host->connections; co; co = co->next)
474             if (connection_is_idle(co) &&
475                 (!co->client || client_get_state(co->client) == Client_Idle) &&
476                 !strcmp(ZOOM_connection_option_get(co->link, "user"),
477                         session_setting_oneval(client_get_database(cl),
478                                                PZ_AUTHENTICATION)))
479             {
480                 if (zproxy == 0 && co->zproxy == 0)
481                     break;
482                 if (zproxy && co->zproxy && !strcmp(zproxy, co->zproxy))
483                     break;
484             }
485         if (co)
486         {
487             connection_release(co);
488             client_set_connection(cl, co);
489             co->client = cl;
490             /* ensure that connection is only assigned to this client
491                by marking the client non Idle */
492             client_set_state(cl, Client_Working);
493             yaz_mutex_leave(host->mutex);
494             co->operation_timeout = operation_timeout;
495             co->session_timeout = session_timeout;
496             /* tells ZOOM to reconnect if necessary. Disabled becuase
497                the ZOOM_connection_connect flushes the task queue */
498             ZOOM_connection_connect(co->link, 0, 0);
499         }
500         else
501         {
502             yaz_mutex_leave(host->mutex);
503             co = connection_create(cl, operation_timeout, session_timeout,
504                                    iochan_man);
505         }
506     }
507
508     if (co && co->link)
509         return 1;
510     else
511         return 0;
512 }
513
514 /*
515  * Local variables:
516  * c-basic-offset: 4
517  * c-file-style: "Stroustrup"
518  * indent-tabs-mode: nil
519  * End:
520  * vim: shiftwidth=4 tabstop=8 expandtab
521  */
522