1 /* $Id: zebrasrv.c,v 1.5 2007-01-15 15:10:17 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 =
201 yaz_oidval_to_z3950oid (r->stream, CLASS_USERINFO, VAL_SEARCHRES1);
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;
264 int bend_search(void *handle, bend_search_rr *r)
266 ZebraHandle zh = (ZebraHandle) handle;
270 res = zebra_select_databases (zh, r->num_bases,
271 (const char **) r->basenames);
274 zebra_result (zh, &r->errcode, &r->errstring);
277 yaz_log (YLOG_DEBUG, "ResultSet '%s'", r->setname);
278 switch (r->query->which)
280 case Z_Query_type_1: case Z_Query_type_101:
281 res = zebra_search_RPN(zh, r->stream, r->query->u.type_1,
284 zebra_result(zh, &r->errcode, &r->errstring);
287 if (zhits > 2147483646)
289 r->hits = CAST_ZINT_TO_INT(zhits);
290 search_terms (zh, r);
294 r->errcode = YAZ_BIB1_QUERY_TYPE_UNSUPP;
295 r->errstring = "type-2";
298 r->errcode = YAZ_BIB1_QUERY_TYPE_UNSUPP;
304 int bend_fetch (void *handle, bend_fetch_rr *r)
306 ZebraHandle zh = (ZebraHandle) handle;
307 ZebraRetrievalRecord retrievalRecord;
310 retrievalRecord.position = r->number;
313 res = zebra_records_retrieve (zh, r->stream, r->setname, r->comp,
314 r->request_format, 1, &retrievalRecord);
317 /* non-surrogate diagnostic */
318 zebra_result (zh, &r->errcode, &r->errstring);
320 else if (retrievalRecord.errCode)
322 /* surrogate diagnostic (diagnostic per record) */
323 r->surrogate_flag = 1;
324 r->errcode = retrievalRecord.errCode;
325 r->errstring = retrievalRecord.errString;
326 r->basename = retrievalRecord.base;
330 r->basename = retrievalRecord.base;
331 r->record = retrievalRecord.buf;
332 r->len = retrievalRecord.len;
333 r->output_format = retrievalRecord.format;
338 static int bend_scan (void *handle, bend_scan_rr *r)
340 ZebraScanEntry *entries;
341 ZebraHandle zh = (ZebraHandle) handle;
345 res = zebra_select_databases(zh, r->num_bases,
346 (const char **) r->basenames);
349 zebra_result (zh, &r->errcode, &r->errstring);
352 if (r->step_size != 0 && *r->step_size != 0) {
353 r->errcode = YAZ_BIB1_ONLY_ZERO_STEP_SIZE_SUPPORTED_FOR_SCAN;
357 r->entries = (struct scan_entry *)
358 odr_malloc (r->stream, sizeof(*r->entries) * r->num_entries);
359 res = zebra_scan(zh, r->stream, r->term,
362 &r->num_entries, &entries, &is_partial,
367 r->status = BEND_SCAN_PARTIAL;
369 r->status = BEND_SCAN_SUCCESS;
370 for (i = 0; i < r->num_entries; i++)
372 r->entries[i].term = entries[i].term;
373 r->entries[i].occurrences =
374 CAST_ZINT_TO_INT(entries[i].occurrences);
379 r->status = BEND_SCAN_PARTIAL;
380 zebra_result(zh, &r->errcode, &r->errstring);
385 void bend_close (void *handle)
387 zebra_close ((ZebraHandle) handle);
388 xmalloc_trav("bend_close");
392 int bend_sort (void *handle, bend_sort_rr *rr)
394 ZebraHandle zh = (ZebraHandle) handle;
396 if (zebra_sort (zh, rr->stream,
397 rr->num_input_setnames, (const char **) rr->input_setnames,
398 rr->output_setname, rr->sort_sequence, &rr->sort_status)
400 zebra_result (zh, &rr->errcode, &rr->errstring);
404 int bend_delete (void *handle, bend_delete_rr *rr)
406 ZebraHandle zh = (ZebraHandle) handle;
408 rr->delete_status = zebra_deleteResultSet(zh, rr->function,
409 rr->num_setnames, rr->setnames,
414 static void es_admin_request (bend_esrequest_rr *rr, ZebraHandle zh, Z_AdminEsRequest *r)
416 ZEBRA_RES res = ZEBRA_OK;
417 if (r->toKeep->databaseName)
419 yaz_log(YLOG_LOG, "adm request database %s", r->toKeep->databaseName);
421 switch (r->toKeep->which)
423 case Z_ESAdminOriginPartToKeep_reIndex:
424 yaz_log(YLOG_LOG, "adm-reindex");
425 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
426 rr->errstring = "adm-reindex not implemented yet";
428 case Z_ESAdminOriginPartToKeep_truncate:
429 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
430 rr->errstring = "adm-reindex not implemented yet";
431 yaz_log(YLOG_LOG, "adm-truncate");
433 case Z_ESAdminOriginPartToKeep_drop:
434 yaz_log(YLOG_LOG, "adm-drop");
435 res = zebra_drop_database (zh, r->toKeep->databaseName);
437 case Z_ESAdminOriginPartToKeep_create:
438 yaz_log(YLOG_LOG, "adm-create %s", r->toKeep->databaseName);
439 res = zebra_create_database (zh, r->toKeep->databaseName);
441 case Z_ESAdminOriginPartToKeep_import:
442 yaz_log(YLOG_LOG, "adm-import");
443 res = zebra_admin_import_begin (zh, r->toKeep->databaseName,
444 r->toKeep->u.import->recordType);
446 case Z_ESAdminOriginPartToKeep_refresh:
447 yaz_log(YLOG_LOG, "adm-refresh");
449 case Z_ESAdminOriginPartToKeep_commit:
450 yaz_log(YLOG_LOG, "adm-commit");
451 if (r->toKeep->databaseName)
453 if (zebra_select_database(zh, r->toKeep->databaseName) !=
455 yaz_log(YLOG_WARN, "zebra_select_database failed in "
460 case Z_ESAdminOriginPartToKeep_shutdown:
461 yaz_log(YLOG_LOG, "shutdown");
462 res = zebra_admin_shutdown(zh);
464 case Z_ESAdminOriginPartToKeep_start:
465 yaz_log(YLOG_LOG, "start");
466 zebra_admin_start(zh);
469 yaz_log(YLOG_LOG, "unknown admin");
470 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
471 rr->errstring = "adm-reindex not implemented yet";
474 zebra_result(zh, &rr->errcode, &rr->errstring);
477 static void es_admin (bend_esrequest_rr *rr, ZebraHandle zh, Z_Admin *r)
481 case Z_Admin_esRequest:
482 es_admin_request (rr, zh, r->u.esRequest);
487 yaz_log (YLOG_WARN, "adm taskpackage (unhandled)");
488 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
489 rr->errstring = "adm-task package (unhandled)";
492 int bend_segment (void *handle, bend_segment_rr *rr)
494 ZebraHandle zh = (ZebraHandle) handle;
495 Z_Segment *segment = rr->segment;
497 if (segment->num_segmentRecords)
498 zebra_admin_import_segment (zh, rr->segment);
500 zebra_admin_import_end (zh);
504 int bend_esrequest (void *handle, bend_esrequest_rr *rr)
506 ZebraHandle zh = (ZebraHandle) handle;
508 yaz_log(YLOG_LOG, "function: %d", *rr->esr->function);
509 if (rr->esr->packageName)
510 yaz_log(YLOG_LOG, "packagename: %s", rr->esr->packageName);
511 yaz_log(YLOG_LOG, "Waitaction: %d", *rr->esr->waitAction);
513 if (!rr->esr->taskSpecificParameters)
515 yaz_log (YLOG_WARN, "No task specific parameters");
517 else if (rr->esr->taskSpecificParameters->which == Z_External_ESAdmin)
519 es_admin(rr, zh, rr->esr->taskSpecificParameters->u.adminService);
521 else if (rr->esr->taskSpecificParameters->which == Z_External_update)
523 Z_IUUpdate *up = rr->esr->taskSpecificParameters->u.update;
524 yaz_log (YLOG_LOG, "Received DB Update");
525 if (up->which == Z_IUUpdate_esRequest)
527 Z_IUUpdateEsRequest *esRequest = up->u.esRequest;
528 Z_IUOriginPartToKeep *toKeep = esRequest->toKeep;
529 Z_IUSuppliedRecords *notToKeep = esRequest->notToKeep;
531 yaz_log (YLOG_LOG, "action");
534 switch (*toKeep->action)
536 case Z_IUOriginPartToKeep_recordInsert:
537 yaz_log (YLOG_LOG, "recordInsert");
539 case Z_IUOriginPartToKeep_recordReplace:
540 yaz_log (YLOG_LOG, "recordUpdate");
542 case Z_IUOriginPartToKeep_recordDelete:
543 yaz_log (YLOG_LOG, "recordDelete");
545 case Z_IUOriginPartToKeep_elementUpdate:
546 yaz_log (YLOG_LOG, "elementUpdate");
548 case Z_IUOriginPartToKeep_specialUpdate:
549 yaz_log (YLOG_LOG, "specialUpdate");
551 case Z_ESAdminOriginPartToKeep_shutdown:
552 yaz_log (YLOG_LOG, "shutDown");
554 case Z_ESAdminOriginPartToKeep_start:
555 yaz_log (YLOG_LOG, "start");
558 yaz_log (YLOG_LOG, " unknown (%d)", *toKeep->action);
561 if (toKeep->databaseName)
563 yaz_log (YLOG_LOG, "database: %s", toKeep->databaseName);
565 if (zebra_select_database(zh, toKeep->databaseName))
570 yaz_log (YLOG_WARN, "no database supplied for ES Update");
572 YAZ_BIB1_ES_MISSING_MANDATORY_PARAMETER_FOR_SPECIFIED_FUNCTION_;
573 rr->errstring = "database";
576 if (zebra_begin_trans(zh, 1) != ZEBRA_OK)
578 zebra_result(zh, &rr->errcode, &rr->errstring);
583 for (i = 0; notToKeep && i < notToKeep->num; i++)
585 Z_External *rec = notToKeep->elements[i]->record;
586 struct oident *oident = 0;
587 Odr_oct *opaque_recid = 0;
591 if (notToKeep->elements[i]->u.opaque)
593 switch(notToKeep->elements[i]->which)
595 case Z_IUSuppliedRecords_elem_opaque:
596 opaque_recid = notToKeep->elements[i]->u.opaque;
597 break; /* OK, recid already set */
598 case Z_IUSuppliedRecords_elem_number:
599 sysno_tmp = *notToKeep->elements[i]->u.number;
604 if (rec->direct_reference)
606 oident = oid_getentbyoid(rec->direct_reference);
608 yaz_log (YLOG_LOG, "record %d type %s", i,
613 case Z_External_sutrs:
614 if (rec->u.octet_aligned->len > 170)
615 yaz_log (YLOG_LOG, "%d bytes:\n%.168s ...",
619 yaz_log (YLOG_LOG, "%d bytes:\n%s",
623 case Z_External_octet:
624 if (rec->u.octet_aligned->len > 170)
625 yaz_log (YLOG_LOG, "%d bytes:\n%.168s ...",
626 rec->u.octet_aligned->len,
627 rec->u.octet_aligned->buf);
629 yaz_log (YLOG_LOG, "%d bytes\n%s",
630 rec->u.octet_aligned->len,
631 rec->u.octet_aligned->buf);
633 if (oident && oident->value != VAL_TEXT_XML
634 && oident->value != VAL_SUTRS)
636 rr->errcode = YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
637 rr->errstring = "only XML update supported";
640 if (rec->which == Z_External_octet)
644 if (*toKeep->action ==
645 Z_IUOriginPartToKeep_recordInsert)
647 if (*toKeep->action ==
648 Z_IUOriginPartToKeep_recordReplace)
650 if (*toKeep->action ==
651 Z_IUOriginPartToKeep_recordDelete)
653 if (*toKeep->action ==
654 Z_IUOriginPartToKeep_specialUpdate)
660 YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
661 rr->errstring = "unsupported ES Update action";
664 else if (opaque_recid)
666 int r = zebra_admin_exchange_record (
668 (const char *) rec->u.octet_aligned->buf,
669 rec->u.octet_aligned->len,
670 (const char *) opaque_recid->buf,
675 zebra_result(zh, &rr->errcode,
682 ZEBRA_RES r = ZEBRA_FAIL;
685 r = zebra_insert_record(
691 (const char *) rec->u.octet_aligned->buf,
692 rec->u.octet_aligned->len,
697 YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
698 rr->errstring = "insert_record failed";
703 r = zebra_update_record(
709 (const char *) rec->u.octet_aligned->buf,
710 rec->u.octet_aligned->len,
715 YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
716 rr->errstring = "update_record failed";
720 r = zebra_delete_record(
726 (const char *) rec->u.octet_aligned->buf,
727 rec->u.octet_aligned->len,
732 YAZ_BIB1_ES_IMMEDIATE_EXECUTION_FAILED;
733 rr->errstring = "delete_record failed";
740 if (zebra_end_trans (zh) != ZEBRA_OK)
742 yaz_log(YLOG_WARN, "zebra_end_trans failed for"
743 " extended service operation");
750 yaz_log (YLOG_WARN, "Unknown Extended Service(%d)",
751 rr->esr->taskSpecificParameters->which);
752 rr->errcode = YAZ_BIB1_ES_EXTENDED_SERVICE_TYPE_UNSUPP;
758 static void bend_start (struct statserv_options_block *sob)
760 Res default_res = res_open(0, 0);
763 zebra_stop((ZebraService) sob->handle);
764 res_set(default_res, "profilePath", DEFAULT_PROFILE_PATH);
765 res_set(default_res, "modulePath", DEFAULT_MODULE_PATH);
766 sob->handle = zebra_start(sob->configname);
767 res_close(default_res);
770 yaz_log (YLOG_FATAL, "Failed to read config `%s'", sob->configname);
782 zebra_pidfname(sob->handle, pidfname);
784 fd = open (pidfname, O_EXCL|O_WRONLY|O_CREAT, 0666);
789 yaz_log(YLOG_FATAL|YLOG_ERRNO, "lock file %s", pidfname);
792 fd = open(pidfname, O_RDWR, 0666);
795 yaz_log(YLOG_FATAL|YLOG_ERRNO, "lock file %s", pidfname);
799 area.l_type = F_WRLCK;
800 area.l_whence = SEEK_SET;
801 area.l_len = area.l_start = 0L;
802 if (fcntl (fd, F_SETLK, &area) == -1)
804 yaz_log(YLOG_ERRNO|YLOG_FATAL, "Zebra server already running");
811 sprintf (pidstr, "%ld", (long) getpid ());
812 write (fd, pidstr, strlen(pidstr));
818 static void bend_stop(struct statserv_options_block *sob)
823 if (!sob->inetd && sob->handle)
826 zebra_pidfname(sob->handle, pidfname);
832 ZebraService service = sob->handle;
837 int main (int argc, char **argv)
839 struct statserv_options_block *sob;
841 sob = statserv_getcontrol ();
842 strcpy (sob->configname, "zebra.cfg");
843 sob->bend_start = bend_start;
844 sob->bend_stop = bend_stop;
846 strcpy (sob->service_display_name, "Zebra Server");
848 statserv_setcontrol (sob);
850 return statserv_main (argc, argv, bend_init, bend_close);
855 * indent-tabs-mode: nil
857 * vim: shiftwidth=4 tabstop=8 expandtab