1 /* $Id: zebrasrv.c,v 1.14 2007-04-16 21:54:37 adam Exp $
2 Copyright (C) 1995-2007
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <sys/locking.h>
39 #include <yaz/yaz-util.h>
40 #include <yaz/diagbib1.h>
42 #include <sys/types.h>
44 #include <yaz/backend.h>
45 #include <yaz/charneg.h>
46 #include <idzebra/api.h>
48 static int bend_sort (void *handle, bend_sort_rr *rr);
49 static int bend_delete (void *handle, bend_delete_rr *rr);
50 static int bend_esrequest (void *handle, bend_esrequest_rr *rr);
51 static int bend_segment (void *handle, bend_segment_rr *rr);
52 static int bend_search (void *handle, bend_search_rr *r);
53 static int bend_fetch (void *handle, bend_fetch_rr *r);
54 static int bend_scan (void *handle, bend_scan_rr *r);
56 bend_initresult *bend_init (bend_initrequest *q)
58 bend_initresult *r = (bend_initresult *)
59 odr_malloc (q->stream, sizeof(*r));
61 struct statserv_options_block *sob;
67 q->bend_sort = bend_sort;
68 q->bend_delete = bend_delete;
69 q->bend_esrequest = bend_esrequest;
70 q->bend_segment = bend_segment;
71 q->bend_search = bend_search;
72 q->bend_fetch = bend_fetch;
73 q->bend_scan = bend_scan;
75 q->implementation_name = "Zebra Information Server";
76 q->implementation_version = "Zebra " ZEBRAVER;
78 yaz_log (YLOG_DEBUG, "bend_init");
80 sob = statserv_getcontrol ();
81 if (!(zh = zebra_open (sob->handle, 0)))
83 yaz_log (YLOG_WARN, "Failed to read config `%s'", sob->configname);
84 r->errcode = YAZ_BIB1_PERMANENT_SYSTEM_ERROR;
90 if (q->auth->which == Z_IdAuthentication_open)
92 char *openpass = xstrdup (q->auth->u.open);
93 char *cp = strchr (openpass, '/');
97 user = nmem_strdup (odr_getmem (q->stream), openpass);
98 passwd = nmem_strdup (odr_getmem (q->stream), cp+1);
102 else if (q->auth->which == Z_IdAuthentication_idPass)
104 Z_IdPass *idPass = q->auth->u.idPass;
106 user = idPass->userId;
107 passwd = idPass->password;
110 if (zebra_auth(zh, user, passwd) != ZEBRA_OK)
112 r->errcode = YAZ_BIB1_INIT_AC_BAD_USERID_AND_OR_PASSWORD;
116 if (q->charneg_request) /* characater set and langauge negotiation? */
124 NMEM nmem = nmem_create();
126 yaz_log (YLOG_LOG, "character set and language negotiation");
128 yaz_get_proposal_charneg (nmem, q->charneg_request,
129 &charsets, &num_charsets,
130 &langs, &num_langs, &selected);
132 for (i = 0; i < num_charsets; i++)
134 const char *right_name = "";
136 * FIXME! It is like rudiment :-))
137 * We have to support this short names of character sets,
138 * because a lot servers in Russia to use own in during
139 * character set and language negotiation still.
142 if (!yaz_matchstr(charsets[i], "win")) {
143 right_name = "WINDOWS-1251";
144 } else if (!yaz_matchstr(charsets[i], "koi")) {
145 right_name = "KOI8-R";
146 } else if (!yaz_matchstr(charsets[i], "iso")) {
147 right_name = "ISO-8859-5";
148 } else if (!yaz_matchstr(charsets[i], "dos")) {
149 right_name = "CP866";
150 } else if (!yaz_matchstr(charsets[i], "uni")) {
151 right_name = "UTF-8";
153 right_name = charsets[i];
155 if (odr_set_charset (q->decode, "UTF-8", right_name) == 0)
157 yaz_log (YLOG_LOG, "charset %d %s (proper name %s): OK", i,
158 charsets[i], right_name);
159 odr_set_charset (q->stream, right_name, "UTF-8");
161 zebra_record_encoding(zh, right_name);
162 zebra_octet_term_encoding(zh, right_name);
163 q->charneg_response =
164 yaz_set_response_charneg (q->stream, charsets[i],
168 yaz_log (YLOG_LOG, "charset %d %s (proper name %s): unsupported", i,
169 charsets[i], right_name);
177 static void search_terms(ZebraHandle zh, bend_search_rr *r)
181 int type = Z_Term_general;
182 struct Z_External *ext;
183 Z_SearchInfoReport *sr;
185 zebra_result_set_term_no(zh, r->setname, &no_terms);
189 r->search_info = odr_malloc (r->stream, sizeof(*r->search_info));
191 r->search_info->num_elements = 1;
192 r->search_info->list =
193 odr_malloc (r->stream, sizeof(*r->search_info->list));
194 r->search_info->list[0] =
195 odr_malloc (r->stream, sizeof(**r->search_info->list));
196 r->search_info->list[0]->category = 0;
197 r->search_info->list[0]->which = Z_OtherInfo_externallyDefinedInfo;
198 ext = odr_malloc (r->stream, sizeof(*ext));
199 r->search_info->list[0]->information.externallyDefinedInfo = ext;
200 ext->direct_reference = odr_oiddup(r->stream,
201 yaz_oid_userinfo_searchresult_1);
202 ext->indirect_reference = 0;
204 ext->which = Z_External_searchResult1;
205 sr = odr_malloc (r->stream, sizeof(Z_SearchInfoReport));
206 ext->u.searchResult1 = sr;
208 sr->elements = odr_malloc (r->stream, sr->num *
209 sizeof(*sr->elements));
210 for (i = 0; i<no_terms; i++)
212 Z_SearchInfoReport_s *se;
217 size_t len = sizeof(outbuf);
218 const char *term_ref_id = 0;
220 zebra_result_set_term_info(zh, r->setname, i,
221 &count, &approx, outbuf, &len,
223 se = sr->elements[i] = odr_malloc (r->stream, sizeof(**sr->elements));
224 se->subqueryId = term_ref_id ?
225 odr_strdup(r->stream, term_ref_id) : 0;
227 se->fullQuery = odr_intdup(r->stream, 0);
228 se->subqueryExpression =
229 odr_malloc (r->stream, sizeof(Z_QueryExpression));
230 se->subqueryExpression->which =
231 Z_QueryExpression_term;
232 se->subqueryExpression->u.term =
233 odr_malloc (r->stream, sizeof(Z_QueryExpressionTerm));
234 term = odr_malloc (r->stream, sizeof(Z_Term));
235 se->subqueryExpression->u.term->queryTerm = term;
238 case Z_Term_characterString:
239 term->which = Z_Term_characterString;
240 term->u.characterString = odr_strdup (r->stream, outbuf);
243 term->which = Z_Term_general;
244 term->u.general = odr_malloc (r->stream, sizeof(*term->u.general));
245 term->u.general->size = term->u.general->len = len;
246 term->u.general->buf = odr_malloc (r->stream, len);
247 memcpy (term->u.general->buf, outbuf, len);
250 term->which = Z_Term_general;
251 term->u.null = odr_nullval();
253 se->subqueryExpression->u.term->termComment = 0;
254 se->subqueryInterpretation = 0;
255 se->subqueryRecommendation = 0;
256 if (count > 2147483646)
258 se->subqueryCount = odr_intdup(r->stream, CAST_ZINT_TO_INT(count));
259 se->subqueryWeight = 0;
265 static int break_handler(void *client_data)
267 bend_association assoc =(bend_association) client_data;
268 if (!bend_assoc_is_alive(assoc))
273 int bend_search(void *handle, bend_search_rr *r)
275 ZebraHandle zh = (ZebraHandle) handle;
279 res = zebra_select_databases (zh, r->num_bases,
280 (const char **) r->basenames);
283 zebra_result (zh, &r->errcode, &r->errstring);
286 zebra_set_break_handler(zh, break_handler, r->association);
287 yaz_log (YLOG_DEBUG, "ResultSet '%s'", r->setname);
288 switch (r->query->which)
290 case Z_Query_type_1: case Z_Query_type_101:
291 res = zebra_search_RPN_x(zh, r->stream, r->query->u.type_1,
293 &r->estimated_hit_count,
294 &r->partial_resultset);
296 zebra_result(zh, &r->errcode, &r->errstring);
299 if (zhits > 2147483646)
301 r->hits = CAST_ZINT_TO_INT(zhits);
302 search_terms (zh, r);
306 r->errcode = YAZ_BIB1_QUERY_TYPE_UNSUPP;
307 r->errstring = "type-2";
310 r->errcode = YAZ_BIB1_QUERY_TYPE_UNSUPP;
312 zebra_set_break_handler(zh, 0, 0);
317 int bend_fetch(void *handle, bend_fetch_rr *r)
319 ZebraHandle zh = (ZebraHandle) handle;
320 ZebraRetrievalRecord retrievalRecord;
323 retrievalRecord.position = r->number;
326 res = zebra_records_retrieve (zh, r->stream, r->setname, r->comp,
327 r->request_format, 1, &retrievalRecord);
330 /* non-surrogate diagnostic */
331 zebra_result (zh, &r->errcode, &r->errstring);
333 else if (retrievalRecord.errCode)
335 /* surrogate diagnostic (diagnostic per record) */
336 r->surrogate_flag = 1;
337 r->errcode = retrievalRecord.errCode;
338 r->errstring = retrievalRecord.errString;
339 r->basename = retrievalRecord.base;
343 r->basename = retrievalRecord.base;
344 r->record = retrievalRecord.buf;
345 r->len = retrievalRecord.len;
346 r->output_format = odr_oiddup(r->stream, retrievalRecord.format);
351 static int bend_scan (void *handle, bend_scan_rr *r)
353 ZebraScanEntry *entries;
354 ZebraHandle zh = (ZebraHandle) handle;
358 res = zebra_select_databases(zh, r->num_bases,
359 (const char **) r->basenames);
362 zebra_result (zh, &r->errcode, &r->errstring);
365 if (r->step_size != 0 && *r->step_size != 0) {
366 r->errcode = YAZ_BIB1_ONLY_ZERO_STEP_SIZE_SUPPORTED_FOR_SCAN;
370 r->entries = (struct scan_entry *)
371 odr_malloc (r->stream, sizeof(*r->entries) * r->num_entries);
372 res = zebra_scan(zh, r->stream, r->term,
375 &r->num_entries, &entries, &is_partial,
380 r->status = BEND_SCAN_PARTIAL;
382 r->status = BEND_SCAN_SUCCESS;
383 for (i = 0; i < r->num_entries; i++)
385 r->entries[i].term = entries[i].term;
386 r->entries[i].occurrences =
387 CAST_ZINT_TO_INT(entries[i].occurrences);
392 r->status = BEND_SCAN_PARTIAL;
393 zebra_result(zh, &r->errcode, &r->errstring);
398 void bend_close (void *handle)
400 zebra_close ((ZebraHandle) handle);
401 xmalloc_trav("bend_close");
405 int bend_sort (void *handle, bend_sort_rr *rr)
407 ZebraHandle zh = (ZebraHandle) handle;
409 if (zebra_sort (zh, rr->stream,
410 rr->num_input_setnames, (const char **) rr->input_setnames,
411 rr->output_setname, rr->sort_sequence, &rr->sort_status)
413 zebra_result (zh, &rr->errcode, &rr->errstring);
417 int bend_delete (void *handle, bend_delete_rr *rr)
419 ZebraHandle zh = (ZebraHandle) handle;
421 rr->delete_status = zebra_deleteResultSet(zh, rr->function,
422 rr->num_setnames, rr->setnames,
427 static void es_admin_request (bend_esrequest_rr *rr, ZebraHandle zh, Z_AdminEsRequest *r)
429 ZEBRA_RES res = ZEBRA_OK;
430 if (r->toKeep->databaseName)
432 yaz_log(YLOG_LOG, "adm request database %s", r->toKeep->databaseName);
434 switch (r->toKeep->which)
436 case Z_ESAdminOriginPartToKeep_reIndex:
437 yaz_log(YLOG_LOG, "adm-reindex");
438 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
439 rr->errstring = "adm-reindex not implemented yet";
441 case Z_ESAdminOriginPartToKeep_truncate:
442 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
443 rr->errstring = "adm-reindex not implemented yet";
444 yaz_log(YLOG_LOG, "adm-truncate");
446 case Z_ESAdminOriginPartToKeep_drop:
447 yaz_log(YLOG_LOG, "adm-drop");
448 res = zebra_drop_database (zh, r->toKeep->databaseName);
450 case Z_ESAdminOriginPartToKeep_create:
451 yaz_log(YLOG_LOG, "adm-create %s", r->toKeep->databaseName);
452 res = zebra_create_database (zh, r->toKeep->databaseName);
454 case Z_ESAdminOriginPartToKeep_import:
455 yaz_log(YLOG_LOG, "adm-import");
456 res = zebra_admin_import_begin (zh, r->toKeep->databaseName,
457 r->toKeep->u.import->recordType);
459 case Z_ESAdminOriginPartToKeep_refresh:
460 yaz_log(YLOG_LOG, "adm-refresh");
462 case Z_ESAdminOriginPartToKeep_commit:
463 yaz_log(YLOG_LOG, "adm-commit");
464 if (r->toKeep->databaseName)
466 if (zebra_select_database(zh, r->toKeep->databaseName) !=
468 yaz_log(YLOG_WARN, "zebra_select_database failed in "
473 case Z_ESAdminOriginPartToKeep_shutdown:
474 yaz_log(YLOG_LOG, "shutdown");
475 res = zebra_admin_shutdown(zh);
477 case Z_ESAdminOriginPartToKeep_start:
478 yaz_log(YLOG_LOG, "start");
479 zebra_admin_start(zh);
482 yaz_log(YLOG_LOG, "unknown admin");
483 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
484 rr->errstring = "adm-reindex not implemented yet";
487 zebra_result(zh, &rr->errcode, &rr->errstring);
490 static void es_admin (bend_esrequest_rr *rr, ZebraHandle zh, Z_Admin *r)
494 case Z_Admin_esRequest:
495 es_admin_request (rr, zh, r->u.esRequest);
500 yaz_log (YLOG_WARN, "adm taskpackage (unhandled)");
501 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
502 rr->errstring = "adm-task package (unhandled)";
505 int bend_segment (void *handle, bend_segment_rr *rr)
507 ZebraHandle zh = (ZebraHandle) handle;
508 Z_Segment *segment = rr->segment;
510 if (segment->num_segmentRecords)
511 zebra_admin_import_segment (zh, rr->segment);
513 zebra_admin_import_end (zh);
517 int bend_esrequest (void *handle, bend_esrequest_rr *rr)
519 ZebraHandle zh = (ZebraHandle) handle;
521 yaz_log(YLOG_LOG, "function: %d", *rr->esr->function);
522 if (rr->esr->packageName)
523 yaz_log(YLOG_LOG, "packagename: %s", rr->esr->packageName);
524 yaz_log(YLOG_LOG, "Waitaction: %d", *rr->esr->waitAction);
526 if (!rr->esr->taskSpecificParameters)
528 yaz_log (YLOG_WARN, "No task specific parameters");
530 else if (rr->esr->taskSpecificParameters->which == Z_External_ESAdmin)
532 es_admin(rr, zh, rr->esr->taskSpecificParameters->u.adminService);
534 else if (rr->esr->taskSpecificParameters->which == Z_External_update)
536 Z_IUUpdate *up = rr->esr->taskSpecificParameters->u.update;
537 yaz_log (YLOG_LOG, "Received DB Update");
538 if (up->which == Z_IUUpdate_esRequest)
540 Z_IUUpdateEsRequest *esRequest = up->u.esRequest;
541 Z_IUOriginPartToKeep *toKeep = esRequest->toKeep;
542 Z_IUSuppliedRecords *notToKeep = esRequest->notToKeep;
544 yaz_log (YLOG_LOG, "action");
547 switch (*toKeep->action)
549 case Z_IUOriginPartToKeep_recordInsert:
550 yaz_log (YLOG_LOG, "recordInsert");
552 case Z_IUOriginPartToKeep_recordReplace:
553 yaz_log (YLOG_LOG, "recordUpdate");
555 case Z_IUOriginPartToKeep_recordDelete:
556 yaz_log (YLOG_LOG, "recordDelete");
558 case Z_IUOriginPartToKeep_elementUpdate:
559 yaz_log (YLOG_LOG, "elementUpdate");
561 case Z_IUOriginPartToKeep_specialUpdate:
562 yaz_log (YLOG_LOG, "specialUpdate");
564 case Z_ESAdminOriginPartToKeep_shutdown:
565 yaz_log (YLOG_LOG, "shutDown");
567 case Z_ESAdminOriginPartToKeep_start:
568 yaz_log (YLOG_LOG, "start");
571 yaz_log (YLOG_LOG, " unknown (%d)", *toKeep->action);
574 if (toKeep->databaseName)
576 yaz_log (YLOG_LOG, "database: %s", toKeep->databaseName);
578 if (zebra_select_database(zh, toKeep->databaseName))
583 yaz_log (YLOG_WARN, "no database supplied for ES Update");
585 YAZ_BIB1_ES_MISSING_MANDATORY_PARAMETER_FOR_SPECIFIED_FUNCTION_;
586 rr->errstring = "database";
589 if (zebra_begin_trans(zh, 1) != ZEBRA_OK)
591 zebra_result(zh, &rr->errcode, &rr->errstring);
596 for (i = 0; notToKeep && i < notToKeep->num; i++)
598 Z_External *rec = notToKeep->elements[i]->record;
599 Odr_oct *opaque_recid = 0;
603 if (notToKeep->elements[i]->u.opaque)
605 switch(notToKeep->elements[i]->which)
607 case Z_IUSuppliedRecords_elem_opaque:
608 opaque_recid = notToKeep->elements[i]->u.opaque;
609 break; /* OK, recid already set */
610 case Z_IUSuppliedRecords_elem_number:
611 sysno_tmp = *notToKeep->elements[i]->u.number;
616 if (rec->direct_reference)
618 char oid_name_str[OID_STR_MAX];
619 const char *oid_name =
620 yaz_oid_to_string_buf(
621 rec->direct_reference,
624 yaz_log (YLOG_LOG, "record %d type %s", i,
629 case Z_External_sutrs:
630 if (rec->u.octet_aligned->len > 170)
631 yaz_log (YLOG_LOG, "%d bytes:\n%.168s ...",
635 yaz_log (YLOG_LOG, "%d bytes:\n%s",
639 case Z_External_octet:
640 if (rec->u.octet_aligned->len > 170)
641 yaz_log (YLOG_LOG, "%d bytes:\n%.168s ...",
642 rec->u.octet_aligned->len,
643 rec->u.octet_aligned->buf);
645 yaz_log (YLOG_LOG, "%d bytes\n%s",
646 rec->u.octet_aligned->len,
647 rec->u.octet_aligned->buf);
649 if (rec->which == Z_External_octet)
651 enum zebra_recctrl_action_t action = action_update;
653 const char *match_criteria = 0;
656 if (*toKeep->action ==
657 Z_IUOriginPartToKeep_recordInsert)
658 action = action_insert;
659 else if (*toKeep->action ==
660 Z_IUOriginPartToKeep_recordReplace)
661 action = action_replace;
662 else if (*toKeep->action ==
663 Z_IUOriginPartToKeep_recordDelete)
664 action = action_delete;
665 else if (*toKeep->action ==
666 Z_IUOriginPartToKeep_specialUpdate)
667 action = action_update;
671 YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
672 rr->errstring = "unsupported ES Update action";
678 size_t l = opaque_recid->len;
679 if (l >= sizeof(recid_str))
681 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
682 rr->errstring = "opaque record ID too large";
685 memcpy(recid_str, opaque_recid->buf, l);
687 match_criteria = recid_str;
689 res = zebra_update_record(
692 sysno, match_criteria, 0, /* fname */
693 (const char *) rec->u.octet_aligned->buf,
694 rec->u.octet_aligned->len);
695 if (res == ZEBRA_FAIL)
698 YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
699 rr->errstring = "update_record failed";
703 if (zebra_end_trans (zh) != ZEBRA_OK)
705 yaz_log(YLOG_WARN, "zebra_end_trans failed for"
706 " extended service operation");
713 yaz_log (YLOG_WARN, "Unknown Extended Service(%d)",
714 rr->esr->taskSpecificParameters->which);
715 rr->errcode = YAZ_BIB1_ES_EXTENDED_SERVICE_TYPE_UNSUPP;
721 static void bend_start (struct statserv_options_block *sob)
723 Res default_res = res_open(0, 0);
726 zebra_stop((ZebraService) sob->handle);
727 res_set(default_res, "profilePath", DEFAULT_PROFILE_PATH);
728 res_set(default_res, "modulePath", DEFAULT_MODULE_PATH);
729 sob->handle = zebra_start_res(sob->configname, default_res, 0);
730 res_close(default_res);
733 yaz_log (YLOG_FATAL, "Failed to read config `%s'", sob->configname);
745 zebra_pidfname(sob->handle, pidfname);
747 fd = open (pidfname, O_EXCL|O_WRONLY|O_CREAT, 0666);
752 yaz_log(YLOG_FATAL|YLOG_ERRNO, "lock file %s", pidfname);
755 fd = open(pidfname, O_RDWR, 0666);
758 yaz_log(YLOG_FATAL|YLOG_ERRNO, "lock file %s", pidfname);
762 area.l_type = F_WRLCK;
763 area.l_whence = SEEK_SET;
764 area.l_len = area.l_start = 0L;
765 if (fcntl (fd, F_SETLK, &area) == -1)
767 yaz_log(YLOG_ERRNO|YLOG_FATAL, "Zebra server already running");
774 sprintf (pidstr, "%ld", (long) getpid ());
775 write (fd, pidstr, strlen(pidstr));
781 static void bend_stop(struct statserv_options_block *sob)
786 if (!sob->inetd && sob->handle)
789 zebra_pidfname(sob->handle, pidfname);
795 ZebraService service = sob->handle;
800 int main (int argc, char **argv)
802 struct statserv_options_block *sob;
804 sob = statserv_getcontrol ();
805 strcpy (sob->configname, "zebra.cfg");
806 sob->bend_start = bend_start;
807 sob->bend_stop = bend_stop;
809 strcpy (sob->service_display_name, "Zebra Server");
811 statserv_setcontrol (sob);
813 return statserv_main (argc, argv, bend_init, bend_close);
818 * indent-tabs-mode: nil
820 * vim: shiftwidth=4 tabstop=8 expandtab