New setting setting: pz:max_connections
[pazpar2-moved-to-github.git] / src / database.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 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <libxml/parser.h>
25 #include <libxml/tree.h>
26 #include <assert.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <yaz/log.h>
30 #include <yaz/nmem.h>
31
32 #include "ppmutex.h"
33 #include "session.h"
34 #include "host.h"
35 #include "pazpar2_config.h"
36 #include "settings.h"
37 #include "http.h"
38 #include "zeerex.h"
39 #include "database.h"
40
41 #include <sys/types.h>
42 #if HAVE_SYS_SOCKET_H
43 #include <sys/socket.h>
44 #endif
45 #if HAVE_NETDB_H
46 #include <netdb.h>
47 #endif
48 #if HAVE_NETINET_IN_H
49 #include <netinet/in.h>
50 #endif
51
52 enum pazpar2_database_criterion_type {
53     PAZPAR2_STRING_MATCH,
54     PAZPAR2_SUBSTRING_MATCH
55 };
56
57 struct database_criterion_value {
58     char *value;
59     struct database_criterion_value *next;
60 };
61
62 struct database_criterion {
63     char *name;
64     enum pazpar2_database_criterion_type type;
65     struct database_criterion_value *values;
66     struct database_criterion *next;
67 };
68
69
70 struct database_hosts {
71     struct host *hosts;
72     YAZ_MUTEX mutex;
73 };
74
75 static xmlDoc *get_explain_xml(struct conf_targetprofiles *targetprofiles,
76                                const char *id)
77 {
78     struct stat st;
79     char *dir;
80     char path[256];
81     char ide[256];
82     if (targetprofiles->type != Targetprofiles_local)
83     {
84         yaz_log(YLOG_FATAL, "Only supports local type");
85         return 0;
86     }
87     dir = targetprofiles->src;
88     urlencode(id, ide);
89     sprintf(path, "%s/%s", dir, ide);
90     if (!stat(path, &st))
91         return xmlParseFile(path);
92     else
93         return 0;
94 }
95
96 // Create a new host structure for hostport
97 static struct host *create_host(const char *hostport, iochan_man_t iochan_man)
98 {
99     struct host *host;
100
101     host = xmalloc(sizeof(struct host));
102     host->hostport = xstrdup(hostport);
103     host->connections = 0;
104     host->ipport = 0;
105     host->mutex = 0;
106
107     if (host_getaddrinfo(host, iochan_man))
108     {
109         xfree(host->hostport);
110         xfree(host);
111         return 0;
112     }
113     pazpar2_mutex_create(&host->mutex, "host");
114
115     yaz_cond_create(&host->cond_ready);
116
117     return host;
118 }
119
120 static struct host *find_host(database_hosts_t hosts,
121                               const char *hostport, iochan_man_t iochan_man)
122 {
123     struct host *p;
124     yaz_mutex_enter(hosts->mutex);
125     for (p = hosts->hosts; p; p = p->next)
126         if (!strcmp(p->hostport, hostport))
127             break;
128     if (!p)
129     {
130         p = create_host(hostport, iochan_man);
131         if (p)
132         {
133             p->next = hosts->hosts;
134             hosts->hosts = p;
135         }
136     }
137     yaz_mutex_leave(hosts->mutex);
138     return p;
139 }
140
141 int resolve_database(struct conf_service *service, struct database *db)
142 {
143     if (db->host == 0)
144     {
145         struct host *host;
146         char *p;
147         char hostport[256];
148         strcpy(hostport, db->url);
149         if ((p = strchr(hostport, '/')))
150             *p = '\0';
151         if (!(host = find_host(service->server->database_hosts,
152                                hostport, service->server->iochan_man)))
153             return -1;
154         db->host = host;
155     }
156     return 0;
157 }
158
159 void resolve_databases(struct conf_service *service)
160 {
161     struct database *db = service->databases;
162     for (; db; db = db->next)
163         resolve_database(service, db);
164 }
165
166 struct database *new_database(const char *id, NMEM nmem)
167 {
168     struct database *db;
169     char hostport[256];
170     char *dbname;
171     struct setting *idset;
172
173     if (strlen(id) > 255)
174         return 0;
175     strcpy(hostport, id);
176     if ((dbname = strchr(hostport, '/')))
177         *(dbname++) = '\0';
178     else
179         dbname = "";
180     db = nmem_malloc(nmem, sizeof(*db));
181     memset(db, 0, sizeof(*db));
182     db->host = 0;
183     db->url = nmem_strdup(nmem, id);
184     db->databases = nmem_malloc(nmem, 2 * sizeof(char *));
185     db->databases[0] = nmem_strdup(nmem, dbname);
186     db->databases[1] = 0;
187     db->errors = 0;
188     db->explain = 0;
189
190     db->num_settings = PZ_MAX_EOF;
191     db->settings = nmem_malloc(nmem, sizeof(struct settings*) * 
192                                db->num_settings);
193     memset(db->settings, 0, sizeof(struct settings*) * db->num_settings);
194     idset = nmem_malloc(nmem, sizeof(*idset));
195     idset->precedence = 0;
196     idset->name = "pz:id";
197     idset->target = idset->value = db->url;
198     idset->next = 0;
199     db->settings[PZ_ID] = idset;
200     db->next = 0;
201
202     return db;
203 }
204
205 static struct database *load_database(const char *id,
206                                       struct conf_service *service)
207 {
208     struct database *db;
209     struct zr_explain *explain = 0;
210     xmlDoc *doc = 0;
211
212     if (service->targetprofiles 
213         && (doc = get_explain_xml(service->targetprofiles, id)))
214     {
215         explain = zr_read_xml(service->nmem, xmlDocGetRootElement(doc));
216         if (!explain)
217             return 0;
218     }
219     db = new_database(id, service->nmem);
220     db->explain = explain;
221     db->next = service->databases;
222     service->databases = db;
223
224     return db;
225 }
226
227 // Return a database structure by ID. Load and add to list if necessary
228 // new==1 just means we know it's not in the list
229 struct database *find_database(const char *id, struct conf_service *service)
230 {
231     struct database *p;
232     for (p = service->databases; p; p = p->next)
233         if (!strcmp(p->url, id))
234             return p;
235     return load_database(id, service);
236 }
237
238 // This whole session_grep database thing should be moved elsewhere
239
240 int match_zurl(const char *zurl, const char *pattern)
241 {
242     int len;
243
244     if (!strcmp(pattern, "*"))
245         return 1;
246     else if (!strncmp(pattern, "*/", 2))   // host wildcard.. what the heck is that for?
247     {
248         char *db = strchr(zurl, '/');
249         if (!db)
250             return 0;
251         if (!strcmp(pattern + 2, db))
252             return 1;
253         else
254             return 0;
255     }
256     else if (*(pattern + (len = strlen(pattern) - 1)) == '*')  // db wildcard
257     {
258         if (!strncmp(pattern, zurl, len))
259             return 1;
260         else
261             return 2;
262     }
263     else if (!strcmp(pattern, zurl))
264         return 1;
265     else
266         return 0;
267 }
268
269 // This will be generalized at some point
270 static int match_criterion(struct setting **settings,
271                            struct conf_service *service, 
272                            struct database_criterion *c)
273 {
274     int offset = settings_lookup_offset(service, c->name);
275     struct database_criterion_value *v;
276
277     if (offset < 0)
278     {
279         yaz_log(YLOG_WARN, "Criterion not found: %s", c->name);
280         return 0;
281     }
282     if (!settings[offset])
283         return 0;
284     for (v = c->values; v; v = v->next)
285     {
286         if (c->type == PAZPAR2_STRING_MATCH)
287         {
288             if (offset == PZ_ID)
289             {
290                 if (match_zurl(settings[offset]->value, v->value))
291                     break;
292             }
293             else 
294             {
295                 if (!strcmp(settings[offset]->value, v->value))
296                     break;
297             }
298         }            
299         else if (c->type == PAZPAR2_SUBSTRING_MATCH)
300         {
301             if (strstr(settings[offset]->value, v->value))
302                 break;
303         }
304     }
305     if (v)
306         return 1;
307     else
308         return 0;
309 }
310
311 // parses crit1=val1,crit2=val2|val3,...
312 static struct database_criterion *create_database_criterion(NMEM m,
313                                                             const char *buf)
314 {
315     struct database_criterion *res = 0;
316     char **values;
317     int num;
318     int i;
319
320     if (!buf || !*buf)
321         return 0;
322     nmem_strsplit(m, ",", buf,  &values, &num);
323     for (i = 0; i < num; i++)
324     {
325         char **subvalues;
326         int subnum;
327         int subi;
328         struct database_criterion *new = nmem_malloc(m, sizeof(*new));
329         char *eq;
330         if ((eq = strchr(values[i], '=')))
331             new->type = PAZPAR2_STRING_MATCH;
332         else if ((eq = strchr(values[i], '~')))
333             new->type = PAZPAR2_SUBSTRING_MATCH;
334         else
335         {
336             yaz_log(YLOG_WARN, "Missing equal-sign/tilde in filter");
337             return 0;
338         }
339         *(eq++) = '\0';
340         new->name = values[i];
341         nmem_strsplit(m, "|", eq, &subvalues, &subnum);
342         new->values = 0;
343         for (subi = 0; subi < subnum; subi++)
344         {
345             struct database_criterion_value *newv
346                 = nmem_malloc(m, sizeof(*newv));
347             newv->value = subvalues[subi];
348             newv->next = new->values;
349             new->values = newv;
350         }
351         new->next = res;
352         res = new;
353     }
354     return res;
355 }
356
357 static int database_match_criteria(struct setting **settings,
358                                    struct conf_service *service,
359                                    struct database_criterion *cl)
360 {
361     for (; cl; cl = cl->next)
362         if (!match_criterion(settings, service, cl))
363             break;
364     if (cl) // one of the criteria failed to match -- skip this db
365         return 0;
366     else
367         return 1;
368 }
369
370 // Cycles through databases, calling a handler function on the ones for
371 // which all criteria matched.
372 int session_grep_databases(struct session *se, const char *filter,
373                            void (*fun)(void *context, struct session_database *db))
374 {
375     struct session_database *p;
376     NMEM nmem = nmem_create();
377     int i = 0;
378     struct database_criterion *cl = create_database_criterion(nmem, filter);
379
380     for (p = se->databases; p; p = p->next)
381     {
382         if (p->settings && p->settings[PZ_ALLOW] && *p->settings[PZ_ALLOW]->value == '0')
383             continue;
384         if (!p->settings[PZ_NAME])
385             continue;
386         if (database_match_criteria(p->settings, se->service, cl))
387         {
388             (*fun)(se, p);
389             i++;
390         }
391     }
392     nmem_destroy(nmem);
393     return i;
394 }
395
396 int predef_grep_databases(void *context, struct conf_service *service,
397                           void (*fun)(void *context, struct database *db))
398 {
399     struct database *p;
400     int i = 0;
401
402     for (p = service->databases; p; p = p->next)
403         if (database_match_criteria(p->settings, service, 0))
404         {
405             (*fun)(context, p);
406             i++;
407         }
408     return i;
409 }
410
411 database_hosts_t database_hosts_create(void)
412 {
413     database_hosts_t p = xmalloc(sizeof(*p));
414     p->hosts = 0;
415     p->mutex = 0;
416     pazpar2_mutex_create(&p->mutex, "database");
417     return p;
418 }
419
420 void database_hosts_destroy(database_hosts_t *pp)
421 {
422     if (*pp)
423     {
424         struct host *p = (*pp)->hosts;
425         while (p)
426         {
427             struct host *p_next = p->next;
428             yaz_mutex_destroy(&p->mutex);
429             yaz_cond_destroy(&p->cond_ready);
430             xfree(p->ipport);
431             xfree(p->hostport);
432             xfree(p);
433             p = p_next;
434         }
435         yaz_mutex_destroy(&(*pp)->mutex);
436         xfree(*pp);
437     }
438 }
439
440 /*
441  * Local variables:
442  * c-basic-offset: 4
443  * c-file-style: "Stroustrup"
444  * indent-tabs-mode: nil
445  * End:
446  * vim: shiftwidth=4 tabstop=8 expandtab
447  */
448