1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2013 Index Data
3 * See the file LICENSE for details.
7 * \brief Implements GFS session logic.
9 * Frontend server logic.
11 * This code receives incoming APDUs, and handles client requests by means
14 * Some of the code is getting quite involved, compared to simpler servers -
15 * primarily because it is asynchronous both in the communication with
16 * the user and the backend. We think the complexity will pay off in
17 * the form of greater flexibility when more asynchronous facilities
20 * Memory management has become somewhat involved. In the simple case, where
21 * only one PDU is pending at a time, it will simply reuse the same memory,
22 * once it has found its working size. When we enable multiple concurrent
23 * operations, perhaps even with multiple parallel calls to the backend, it
24 * will maintain a pool of buffers for encoding and decoding, trying to
25 * minimize memory allocation/deallocation during normal operation.
38 #include <sys/types.h>
46 #define S_ISREG(x) (x & _S_IFREG)
55 #include <libxml/parser.h>
56 #include <libxml/tree.h>
59 #include <yaz/facet.h>
60 #include <yaz/xmalloc.h>
61 #include <yaz/comstack.h>
65 #include <yaz/proto.h>
66 #include <yaz/oid_db.h>
68 #include <yaz/logrpn.h>
69 #include <yaz/querytowrbuf.h>
70 #include <yaz/statserv.h>
71 #include <yaz/diagbib1.h>
72 #include <yaz/charneg.h>
73 #include <yaz/otherinfo.h>
74 #include <yaz/yaz-util.h>
75 #include <yaz/pquery.h>
76 #include <yaz/oid_db.h>
79 #include <yaz/backend.h>
80 #include <yaz/yaz-ccl.h>
82 static void process_gdu_request(association *assoc, request *req);
83 static int process_z_request(association *assoc, request *req, char **msg);
84 static int process_gdu_response(association *assoc, request *req, Z_GDU *res);
85 static int process_z_response(association *assoc, request *req, Z_APDU *res);
86 static Z_APDU *process_initRequest(association *assoc, request *reqb);
87 static Z_External *init_diagnostics(ODR odr, int errcode,
88 const char *errstring);
89 static Z_APDU *process_searchRequest(association *assoc, request *reqb);
90 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
91 bend_search_rr *bsrr);
92 static Z_APDU *process_presentRequest(association *assoc, request *reqb);
93 static Z_APDU *process_scanRequest(association *assoc, request *reqb);
94 static Z_APDU *process_sortRequest(association *assoc, request *reqb);
95 static void process_close(association *assoc, request *reqb);
96 static Z_APDU *process_deleteRequest(association *assoc, request *reqb);
97 static Z_APDU *process_segmentRequest(association *assoc, request *reqb);
98 static Z_APDU *process_ESRequest(association *assoc, request *reqb);
100 /* dynamic logging levels */
101 static int logbits_set = 0;
102 static int log_session = 0; /* one-line logs for session */
103 static int log_sessiondetail = 0; /* more detailed stuff */
104 static int log_request = 0; /* one-line logs for requests */
105 static int log_requestdetail = 0; /* more detailed stuff */
107 /** get_logbits sets global loglevel bits */
108 static void get_logbits(void)
109 { /* needs to be called after parsing cmd-line args that can set loglevels!*/
113 log_session = yaz_log_module_level("session");
114 log_sessiondetail = yaz_log_module_level("sessiondetail");
115 log_request = yaz_log_module_level("request");
116 log_requestdetail = yaz_log_module_level("requestdetail");
120 static void wr_diag(WRBUF w, int error, const char *addinfo)
122 wrbuf_printf(w, "ERROR %d+", error);
123 wrbuf_puts_replace_char(w, diagbib1_str(error), ' ', '_');
127 wrbuf_puts_replace_char(w, addinfo, ' ', '_');
132 static int odr_int_to_int(Odr_int v)
136 else if (v <= INT_MIN)
143 * Create and initialize a new association-handle.
144 * channel : iochannel for the current line.
145 * link : communications channel.
146 * Returns: 0 or a new association handle.
148 association *create_association(IOCHAN channel, COMSTACK link,
149 const char *apdufile)
155 if (!(anew = (association *)xmalloc(sizeof(*anew))))
159 anew->last_control = 0;
160 anew->client_chan = channel;
161 anew->client_link = link;
162 anew->cs_get_mask = 0;
163 anew->cs_put_mask = 0;
164 anew->cs_accept_mask = 0;
165 if (!(anew->decode = odr_createmem(ODR_DECODE)) ||
166 !(anew->encode = odr_createmem(ODR_ENCODE)))
168 if (apdufile && *apdufile)
172 if (!(anew->print = odr_createmem(ODR_PRINT)))
174 if (*apdufile == '@')
176 odr_setprint(anew->print, yaz_log_file());
178 else if (*apdufile != '-')
181 sprintf(filename, "%.200s.%ld", apdufile, (long)getpid());
182 if (!(f = fopen(filename, "w")))
184 yaz_log(YLOG_WARN|YLOG_ERRNO, "%s", filename);
187 setvbuf(f, 0, _IONBF, 0);
188 odr_setprint(anew->print, f);
193 anew->input_buffer = 0;
194 anew->input_buffer_len = 0;
196 anew->state = ASSOC_NEW;
197 request_initq(&anew->incoming);
198 request_initq(&anew->outgoing);
199 anew->proto = cs_getproto(link);
205 * Free association and release resources.
207 void destroy_association(association *h)
209 statserv_options_block *cb = statserv_getcontrol();
213 odr_destroy(h->decode);
214 odr_destroy(h->encode);
216 odr_destroy(h->print);
218 xfree(h->input_buffer);
220 (*cb->bend_close)(h->backend);
221 while ((req = request_deq(&h->incoming)))
222 request_release(req);
223 while ((req = request_deq(&h->outgoing)))
224 request_release(req);
225 request_delq(&h->incoming);
226 request_delq(&h->outgoing);
228 xmalloc_trav("session closed");
231 static void do_close_req(association *a, int reason, char *message,
234 Z_APDU *apdu = zget_APDU(a->encode, Z_APDU_close);
235 Z_Close *cls = apdu->u.close;
237 /* Purge request queue */
238 while (request_deq(&a->incoming));
239 while (request_deq(&a->outgoing));
242 yaz_log(log_requestdetail, "Sending Close PDU, reason=%d, message=%s",
243 reason, message ? message : "none");
244 *cls->closeReason = reason;
245 cls->diagnosticInformation = message;
246 process_z_response(a, req, apdu);
247 iochan_settimeout(a->client_chan, 20);
251 request_release(req);
252 yaz_log(log_requestdetail, "v2 client. No Close PDU");
253 iochan_setevent(a->client_chan, EVENT_TIMEOUT); /* force imm close */
256 a->state = ASSOC_DEAD;
259 static void do_close(association *a, int reason, char *message)
261 request *req = request_get(&a->outgoing);
262 do_close_req(a, reason, message, req);
266 int ir_read(IOCHAN h, int event)
268 association *assoc = (association *)iochan_getdata(h);
269 COMSTACK conn = assoc->client_link;
272 if ((assoc->cs_put_mask & EVENT_INPUT) == 0 && (event & assoc->cs_get_mask))
274 /* We aren't speaking to this fellow */
275 if (assoc->state == ASSOC_DEAD)
277 yaz_log(log_session, "Connection closed - end of session");
279 destroy_association(assoc);
283 assoc->cs_get_mask = EVENT_INPUT;
287 int res = cs_get(conn, &assoc->input_buffer,
288 &assoc->input_buffer_len);
289 if (res < 0 && cs_errno(conn) == CSBUFSIZE)
291 yaz_log(log_session, "Connection error: %s res=%d",
292 cs_errmsg(cs_errno(conn)), res);
293 req = request_get(&assoc->incoming); /* get a new request */
294 do_close_req(assoc, Z_Close_protocolError,
295 "Incoming package too large", req);
300 assoc->state = ASSOC_DEAD;
301 yaz_log(log_session, "Connection closed by client");
304 else if (res == 1) /* incomplete read - wait for more */
306 if (conn->io_pending & CS_WANT_WRITE)
307 assoc->cs_get_mask |= EVENT_OUTPUT;
308 iochan_setflag(h, assoc->cs_get_mask);
311 /* we got a complete PDU. Let's decode it */
312 yaz_log(YLOG_DEBUG, "Got PDU, %d bytes: lead=%02X %02X %02X", res,
313 assoc->input_buffer[0] & 0xff,
314 assoc->input_buffer[1] & 0xff,
315 assoc->input_buffer[2] & 0xff);
316 req = request_get(&assoc->incoming); /* get a new request */
317 odr_reset(assoc->decode);
318 odr_setbuf(assoc->decode, assoc->input_buffer, res, 0);
319 if (!z_GDU(assoc->decode, &req->gdu_request, 0, 0))
321 yaz_log(YLOG_WARN, "ODR error on incoming PDU: %s [element %s] "
323 odr_errmsg(odr_geterror(assoc->decode)),
324 odr_getelement(assoc->decode),
325 (long) odr_offset(assoc->decode));
326 if (assoc->decode->error != OHTTP)
328 yaz_log(YLOG_WARN, "PDU dump:");
329 odr_dumpBER(yaz_log_file(), assoc->input_buffer, res);
330 request_release(req);
331 do_close(assoc, Z_Close_protocolError, "Malformed package");
335 Z_GDU *p = z_get_HTTP_Response(assoc->encode, 400);
336 assoc->state = ASSOC_DEAD;
337 process_gdu_response(assoc, req, p);
341 req->request_mem = odr_extract_mem(assoc->decode);
344 if (!z_GDU(assoc->print, &req->gdu_request, 0, 0))
345 yaz_log(YLOG_WARN, "ODR print error: %s",
346 odr_errmsg(odr_geterror(assoc->print)));
347 odr_reset(assoc->print);
349 request_enq(&assoc->incoming, req);
351 while (cs_more(conn));
357 * This is where PDUs from the client are read and the further
358 * processing is initiated. Flow of control moves down through the
359 * various process_* functions below, until the encoded result comes back up
360 * to the output handler in here.
362 * h : the I/O channel that has an outstanding event.
363 * event : the current outstanding event.
365 void ir_session(IOCHAN h, int event)
368 association *assoc = (association *)iochan_getdata(h);
369 COMSTACK conn = assoc->client_link;
372 assert(h && conn && assoc);
373 if (event == EVENT_TIMEOUT)
375 if (assoc->state != ASSOC_UP)
377 yaz_log(log_session, "Timeout. Closing connection");
378 /* do we need to lod this at all */
380 destroy_association(assoc);
385 yaz_log(log_sessiondetail, "Timeout. Sending Z39.50 Close");
386 do_close(assoc, Z_Close_lackOfActivity, 0);
390 if (event & assoc->cs_accept_mask)
392 if (!cs_accept(conn))
394 yaz_log(YLOG_WARN, "accept failed");
395 destroy_association(assoc);
399 iochan_clearflag(h, EVENT_OUTPUT);
400 if (conn->io_pending)
401 { /* cs_accept didn't complete */
402 assoc->cs_accept_mask =
403 ((conn->io_pending & CS_WANT_WRITE) ? EVENT_OUTPUT : 0) |
404 ((conn->io_pending & CS_WANT_READ) ? EVENT_INPUT : 0);
406 iochan_setflag(h, assoc->cs_accept_mask);
409 { /* cs_accept completed. Prepare for reading (cs_get) */
410 assoc->cs_accept_mask = 0;
411 assoc->cs_get_mask = EVENT_INPUT;
412 iochan_setflag(h, assoc->cs_get_mask);
416 if (event & assoc->cs_get_mask) /* input */
418 if (!ir_read(h, event))
420 req = request_head(&assoc->incoming);
421 if (req->state == REQUEST_IDLE)
423 request_deq(&assoc->incoming);
424 process_gdu_request(assoc, req);
427 if (event & assoc->cs_put_mask)
429 request *req = request_head(&assoc->outgoing);
431 assoc->cs_put_mask = 0;
432 yaz_log(YLOG_DEBUG, "ir_session (output)");
433 req->state = REQUEST_PENDING;
434 switch (res = cs_put(conn, req->response, req->len_response))
437 yaz_log(log_sessiondetail, "Connection closed by client");
439 destroy_association(assoc);
442 case 0: /* all sent - release the request structure */
443 yaz_log(YLOG_DEBUG, "Wrote PDU, %d bytes", req->len_response);
445 yaz_log(YLOG_DEBUG, "HTTP out:\n%.*s", req->len_response,
448 request_deq(&assoc->outgoing);
449 request_release(req);
450 if (!request_head(&assoc->outgoing))
451 { /* restore mask for cs_get operation ... */
452 iochan_clearflag(h, EVENT_OUTPUT|EVENT_INPUT);
453 iochan_setflag(h, assoc->cs_get_mask);
454 if (assoc->state == ASSOC_DEAD)
455 iochan_setevent(assoc->client_chan, EVENT_TIMEOUT);
459 assoc->cs_put_mask = EVENT_OUTPUT;
463 if (conn->io_pending & CS_WANT_WRITE)
464 assoc->cs_put_mask |= EVENT_OUTPUT;
465 if (conn->io_pending & CS_WANT_READ)
466 assoc->cs_put_mask |= EVENT_INPUT;
467 iochan_setflag(h, assoc->cs_put_mask);
470 if (event & EVENT_EXCEPT)
472 yaz_log(YLOG_WARN, "ir_session (exception)");
474 destroy_association(assoc);
479 static int process_z_request(association *assoc, request *req, char **msg);
482 static void assoc_init_reset(association *assoc)
485 assoc->init = (bend_initrequest *) xmalloc(sizeof(*assoc->init));
487 assoc->init->stream = assoc->encode;
488 assoc->init->print = assoc->print;
489 assoc->init->auth = 0;
490 assoc->init->referenceId = 0;
491 assoc->init->implementation_version = 0;
492 assoc->init->implementation_id = 0;
493 assoc->init->implementation_name = 0;
494 assoc->init->query_charset = 0;
495 assoc->init->records_in_same_charset = 0;
496 assoc->init->bend_sort = NULL;
497 assoc->init->bend_search = NULL;
498 assoc->init->bend_present = NULL;
499 assoc->init->bend_esrequest = NULL;
500 assoc->init->bend_delete = NULL;
501 assoc->init->bend_scan = NULL;
502 assoc->init->bend_segment = NULL;
503 assoc->init->bend_fetch = NULL;
504 assoc->init->bend_explain = NULL;
505 assoc->init->bend_srw_scan = NULL;
506 assoc->init->bend_srw_update = NULL;
507 assoc->init->named_result_sets = 0;
509 assoc->init->charneg_request = NULL;
510 assoc->init->charneg_response = NULL;
512 assoc->init->decode = assoc->decode;
513 assoc->init->peer_name =
514 odr_strdup(assoc->encode, cs_addrstr(assoc->client_link));
516 yaz_log(log_requestdetail, "peer %s", assoc->init->peer_name);
519 static int srw_bend_init(association *assoc, Z_SRW_diagnostic **d, int *num, Z_SRW_PDU *sr)
521 statserv_options_block *cb = statserv_getcontrol();
524 const char *encoding = "UTF-8";
526 bend_initresult *binitres;
528 yaz_log(log_requestdetail, "srw_bend_init config=%s", cb->configname);
529 assoc_init_reset(assoc);
533 Z_IdAuthentication *auth = (Z_IdAuthentication *)
534 odr_malloc(assoc->decode, sizeof(*auth));
537 len = strlen(sr->username) + 1;
539 len += strlen(sr->password) + 2;
540 yaz_log(log_requestdetail, "username=%s password-len=%ld",
542 (sr->password ? strlen(sr->password) : 0));
543 auth->which = Z_IdAuthentication_open;
544 auth->u.open = (char *) odr_malloc(assoc->decode, len);
545 strcpy(auth->u.open, sr->username);
546 if (sr->password && *sr->password)
548 strcat(auth->u.open, "/");
549 strcat(auth->u.open, sr->password);
551 assoc->init->auth = auth;
555 ce = yaz_set_proposal_charneg(assoc->decode, &encoding, 1, 0, 0, 1);
556 assoc->init->charneg_request = ce->u.charNeg3;
559 if (!(binitres = (*cb->bend_init)(assoc->init)))
561 assoc->state = ASSOC_DEAD;
562 yaz_add_srw_diagnostic(assoc->encode, d, num,
563 YAZ_SRW_AUTHENTICATION_ERROR, 0);
566 assoc->backend = binitres->handle;
567 assoc->init->auth = 0;
568 if (binitres->errcode)
570 int srw_code = yaz_diag_bib1_to_srw(binitres->errcode);
571 assoc->state = ASSOC_DEAD;
572 yaz_add_srw_diagnostic(assoc->encode, d, num, srw_code,
573 binitres->errstring);
581 static int retrieve_fetch(association *assoc, bend_fetch_rr *rr)
584 yaz_record_conv_t rc = 0;
585 const char *match_schema = 0;
586 Odr_oid *match_syntax = 0;
591 const char *input_schema = yaz_get_esn(rr->comp);
592 Odr_oid *input_syntax_raw = rr->request_format;
594 const char *backend_schema = 0;
595 Odr_oid *backend_syntax = 0;
597 r = yaz_retrieval_request(assoc->server->retrieval,
605 if (r == -1) /* error ? */
607 const char *details = yaz_retrieval_get_error(
608 assoc->server->retrieval);
610 rr->errcode = YAZ_BIB1_SYSTEM_ERROR_IN_PRESENTING_RECORDS;
612 rr->errstring = odr_strdup(rr->stream, details);
615 else if (r == 1 || r == 3)
617 const char *details = input_schema;
619 YAZ_BIB1_SPECIFIED_ELEMENT_SET_NAME_NOT_VALID_FOR_SPECIFIED_;
621 rr->errstring = odr_strdup(rr->stream, details);
626 rr->errcode = YAZ_BIB1_RECORD_SYNTAX_UNSUPP;
627 if (input_syntax_raw)
629 char oidbuf[OID_STR_MAX];
630 oid_oid_to_dotstring(input_syntax_raw, oidbuf);
631 rr->errstring = odr_strdup(rr->stream, oidbuf);
637 yaz_set_esn(&rr->comp, backend_schema, odr_getmem(rr->stream));
640 rr->request_format = backend_syntax;
642 (*assoc->init->bend_fetch)(assoc->backend, rr);
643 if (rc && rr->record && rr->errcode == 0)
644 { /* post conversion must take place .. */
645 WRBUF output_record = wrbuf_alloc();
647 const char *details = 0;
650 r = yaz_record_conv_record(rc, rr->record, rr->len, output_record);
652 details = yaz_record_conv_get_error(rc);
654 else if (rr->len == -1 && rr->output_format &&
655 !oid_oidcmp(rr->output_format, yaz_oid_recsyn_opac))
657 r = yaz_record_conv_opac_record(
658 rc, (Z_OPACRecord *) rr->record, output_record);
660 details = yaz_record_conv_get_error(rc);
662 if (r == 0 && match_syntax &&
663 !oid_oidcmp(match_syntax, yaz_oid_recsyn_opac))
665 yaz_marc_t mt = yaz_marc_create();
666 Z_OPACRecord *opac = 0;
667 if (yaz_xml_to_opac(mt, wrbuf_buf(output_record),
668 wrbuf_len(output_record),
669 &opac, 0 /* iconv */, rr->stream->mem, 0)
673 rr->record = (char *) opac;
677 details = "XML to OPAC conversion failed";
680 yaz_marc_destroy(mt);
684 rr->len = wrbuf_len(output_record);
685 rr->record = (char *) odr_malloc(rr->stream, rr->len);
686 memcpy(rr->record, wrbuf_buf(output_record), rr->len);
690 rr->errcode = YAZ_BIB1_SYSTEM_ERROR_IN_PRESENTING_RECORDS;
692 rr->errstring = odr_strdup(rr->stream, details);
694 wrbuf_destroy(output_record);
697 rr->output_format = match_syntax;
699 rr->schema = odr_strdup(rr->stream, match_schema);
701 (*assoc->init->bend_fetch)(assoc->backend, rr);
706 static int srw_bend_fetch(association *assoc, int pos,
707 Z_SRW_searchRetrieveRequest *srw_req,
708 Z_SRW_record *record,
709 const char **addinfo, int *last_in_set)
712 ODR o = assoc->encode;
714 rr.setname = "default";
717 rr.request_format = odr_oiddup(assoc->decode, yaz_oid_recsyn_xml);
719 rr.comp = (Z_RecordComposition *)
720 odr_malloc(assoc->decode, sizeof(*rr.comp));
721 rr.comp->which = Z_RecordComp_complex;
722 rr.comp->u.complex = (Z_CompSpec *)
723 odr_malloc(assoc->decode, sizeof(Z_CompSpec));
724 rr.comp->u.complex->selectAlternativeSyntax = (bool_t *)
725 odr_malloc(assoc->encode, sizeof(bool_t));
726 *rr.comp->u.complex->selectAlternativeSyntax = 0;
727 rr.comp->u.complex->num_dbSpecific = 0;
728 rr.comp->u.complex->dbSpecific = 0;
729 rr.comp->u.complex->num_recordSyntax = 0;
730 rr.comp->u.complex->recordSyntax = 0;
732 rr.comp->u.complex->generic = (Z_Specification *)
733 odr_malloc(assoc->decode, sizeof(Z_Specification));
735 /* schema uri = recordSchema (or NULL if recordSchema is not given) */
736 rr.comp->u.complex->generic->which = Z_Schema_uri;
737 rr.comp->u.complex->generic->schema.uri = srw_req->recordSchema;
739 /* ESN = recordSchema if recordSchema is present */
740 rr.comp->u.complex->generic->elementSpec = 0;
741 if (srw_req->recordSchema)
743 rr.comp->u.complex->generic->elementSpec =
744 (Z_ElementSpec *) odr_malloc(assoc->encode, sizeof(Z_ElementSpec));
745 rr.comp->u.complex->generic->elementSpec->which =
746 Z_ElementSpec_elementSetName;
747 rr.comp->u.complex->generic->elementSpec->u.elementSetName =
748 srw_req->recordSchema;
751 rr.stream = assoc->encode;
752 rr.print = assoc->print;
760 rr.surrogate_flag = 0;
761 rr.schema = srw_req->recordSchema;
763 if (!assoc->init->bend_fetch)
766 retrieve_fetch(assoc, &rr);
768 *last_in_set = rr.last_in_set;
770 if (rr.errcode && rr.surrogate_flag)
772 int code = yaz_diag_bib1_to_srw(rr.errcode);
773 yaz_mk_sru_surrogate(o, record, pos, code, rr.errstring);
776 else if (rr.len >= 0)
778 record->recordData_buf = rr.record;
779 record->recordData_len = rr.len;
780 record->recordPosition = odr_intdup(o, pos);
781 record->recordSchema = odr_strdup_null(
782 o, rr.schema ? rr.schema : srw_req->recordSchema);
786 *addinfo = rr.errstring;
792 static int cql2pqf(ODR odr, const char *cql, cql_transform_t ct,
793 Z_Query *query_result, char **sortkeys_p)
795 /* have a CQL query and CQL to PQF transform .. */
796 CQL_parser cp = cql_parser_create();
800 WRBUF rpn_buf = wrbuf_alloc();
803 r = cql_parser_string(cp, cql);
806 srw_errcode = YAZ_SRW_QUERY_SYNTAX_ERROR;
810 struct cql_node *cn = cql_parser_result(cp);
813 r = cql_transform(ct, cn, wrbuf_vp_puts, rpn_buf);
815 srw_errcode = cql_transform_error(ct, &add);
819 int r = cql_sortby_to_sortkeys_buf(cn, out, sizeof(out)-1);
824 yaz_log(log_requestdetail, "srw_sortKeys '%s'", out);
825 *sortkeys_p = odr_strdup(odr, out);
829 yaz_log(log_requestdetail, "failed to create srw_sortKeys");
830 srw_errcode = YAZ_SRW_UNSUPP_SORT_TYPE;
836 /* Syntax & transform OK. */
837 /* Convert PQF string to Z39.50 to RPN query struct */
838 YAZ_PQF_Parser pp = yaz_pqf_create();
839 Z_RPNQuery *rpnquery = yaz_pqf_parse(pp, odr, wrbuf_cstr(rpn_buf));
844 int code = yaz_pqf_error(pp, &pqf_msg, &off);
845 yaz_log(YLOG_WARN, "PQF Parser Error %s (code %d)",
847 srw_errcode = YAZ_SRW_QUERY_SYNTAX_ERROR;
851 query_result->which = Z_Query_type_1;
852 query_result->u.type_1 = rpnquery;
856 cql_parser_destroy(cp);
857 wrbuf_destroy(rpn_buf);
861 static int cql2pqf_scan(ODR odr, const char *cql, cql_transform_t ct,
862 Z_AttributesPlusTerm *result)
867 int srw_error = cql2pqf(odr, cql, ct, &query, &sortkeys);
870 if (query.which != Z_Query_type_1 && query.which != Z_Query_type_101)
871 return YAZ_SRW_QUERY_SYNTAX_ERROR; /* bad query type */
872 rpn = query.u.type_1;
873 if (!rpn->RPNStructure)
874 return YAZ_SRW_QUERY_SYNTAX_ERROR; /* must be structure */
875 if (rpn->RPNStructure->which != Z_RPNStructure_simple)
876 return YAZ_SRW_QUERY_SYNTAX_ERROR; /* must be simple */
877 if (rpn->RPNStructure->u.simple->which != Z_Operand_APT)
878 return YAZ_SRW_QUERY_SYNTAX_ERROR; /* must be be attributes + term */
879 memcpy(result, rpn->RPNStructure->u.simple->u.attributesPlusTerm,
885 static int ccl2pqf(ODR odr, const Odr_oct *ccl, CCL_bibset bibset,
886 bend_search_rr *bsrr)
889 struct ccl_rpn_node *node;
892 ccl0 = odr_strdupn(odr, (char*) ccl->buf, ccl->len);
893 if ((node = ccl_find_str(bibset, ccl0, &errcode, &pos)) == 0)
895 bsrr->errstring = (char*) ccl_err_msg(errcode);
896 return YAZ_SRW_QUERY_SYNTAX_ERROR; /* Query syntax error */
899 bsrr->query->which = Z_Query_type_1;
900 bsrr->query->u.type_1 = ccl_rpn_query(odr, node);
904 static void srw_bend_search(association *assoc,
909 Z_SRW_searchRetrieveResponse *srw_res = res->u.response;
912 Z_SRW_searchRetrieveRequest *srw_req = sr->u.request;
915 yaz_log(log_requestdetail, "Got SRW SearchRetrieveRequest");
916 srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
917 if (srw_res->num_diagnostics == 0 && assoc->init)
920 rr.setname = "default";
923 rr.basenames = &srw_req->database;
927 rr.srw_setnameIdleTime = 0;
928 rr.estimated_hit_count = 0;
929 rr.partial_resultset = 0;
930 rr.query = (Z_Query *) odr_malloc(assoc->decode, sizeof(*rr.query));
931 rr.query->u.type_1 = 0;
932 rr.extra_args = sr->extra_args;
933 rr.extra_response_data = 0;
934 rr.present_number = srw_req->maximumRecords ?
935 *srw_req->maximumRecords : 0;
937 if (!srw_req->queryType || !strcmp(srw_req->queryType, "cql"))
939 if (assoc->server && assoc->server->cql_transform)
941 int srw_errcode = cql2pqf(assoc->encode, srw_req->query,
942 assoc->server->cql_transform,
948 yaz_add_srw_diagnostic(assoc->encode,
949 &srw_res->diagnostics,
950 &srw_res->num_diagnostics,
956 /* CQL query to backend. Wrap it - Z39.50 style */
957 ext = (Z_External *) odr_malloc(assoc->decode, sizeof(*ext));
958 ext->direct_reference = odr_getoidbystr(assoc->decode,
959 "1.2.840.10003.16.2");
960 ext->indirect_reference = 0;
962 ext->which = Z_External_CQL;
963 ext->u.cql = srw_req->query;
965 rr.query->which = Z_Query_type_104;
966 rr.query->u.type_104 = ext;
969 else if (!strcmp(srw_req->queryType, "pqf"))
971 Z_RPNQuery *RPNquery;
972 YAZ_PQF_Parser pqf_parser;
974 pqf_parser = yaz_pqf_create();
976 RPNquery = yaz_pqf_parse(pqf_parser, assoc->decode, srw_req->query);
981 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
982 yaz_log(log_requestdetail, "Parse error %d %s near offset %ld",
983 code, pqf_msg, (long) off);
984 srw_error = YAZ_SRW_QUERY_SYNTAX_ERROR;
987 rr.query->which = Z_Query_type_1;
988 rr.query->u.type_1 = RPNquery;
990 yaz_pqf_destroy(pqf_parser);
994 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
995 &srw_res->num_diagnostics,
996 YAZ_SRW_UNSUPP_QUERY_TYPE, 0);
998 if (rr.query->u.type_1)
1000 rr.stream = assoc->encode;
1001 rr.decode = assoc->decode;
1002 rr.print = assoc->print;
1003 if (srw_req->sort.sortKeys)
1004 rr.srw_sortKeys = odr_strdup(assoc->encode,
1005 srw_req->sort.sortKeys);
1006 rr.association = assoc;
1011 rr.search_input = 0;
1013 if (srw_req->facetList)
1014 yaz_oi_set_facetlist(&rr.search_input, assoc->encode,
1015 srw_req->facetList);
1017 yaz_log_zquery_level(log_requestdetail,rr.query);
1019 (assoc->init->bend_search)(assoc->backend, &rr);
1022 if (rr.errcode == YAZ_BIB1_DATABASE_UNAVAILABLE)
1028 srw_error = yaz_diag_bib1_to_srw(rr.errcode);
1029 yaz_add_srw_diagnostic(assoc->encode,
1030 &srw_res->diagnostics,
1031 &srw_res->num_diagnostics,
1032 srw_error, rr.errstring);
1037 int number = srw_req->maximumRecords ?
1038 odr_int_to_int(*srw_req->maximumRecords) : 0;
1039 int start = srw_req->startRecord ?
1040 odr_int_to_int(*srw_req->startRecord) : 1;
1042 yaz_log(log_requestdetail, "Request to pack %d+%d out of "
1044 start, number, rr.hits);
1046 srw_res->numberOfRecords = odr_intdup(assoc->encode, rr.hits);
1049 srw_res->resultSetId =
1050 odr_strdup(assoc->encode, rr.srw_setname );
1051 srw_res->resultSetIdleTime =
1052 odr_intdup(assoc->encode, *rr.srw_setnameIdleTime );
1055 srw_res->facetList = yaz_oi_get_facetlist(&rr.search_info);
1056 if (start > rr.hits || start < 1)
1058 /* if hits<=0 and start=1 we don't return a diagnostic */
1060 yaz_add_srw_diagnostic(
1062 &srw_res->diagnostics, &srw_res->num_diagnostics,
1063 YAZ_SRW_FIRST_RECORD_POSITION_OUT_OF_RANGE, 0);
1065 else if (number > 0)
1069 if (start + number > rr.hits)
1070 number = odr_int_to_int(rr.hits) - start + 1;
1072 /* Call bend_present if defined */
1073 if (assoc->init->bend_present)
1075 bend_present_rr *bprr = (bend_present_rr*)
1076 odr_malloc(assoc->decode, sizeof(*bprr));
1077 bprr->setname = "default";
1078 bprr->start = start;
1079 bprr->number = number;
1080 if (srw_req->recordSchema)
1082 bprr->comp = (Z_RecordComposition *) odr_malloc(assoc->decode,
1083 sizeof(*bprr->comp));
1084 bprr->comp->which = Z_RecordComp_simple;
1085 bprr->comp->u.simple = (Z_ElementSetNames *)
1086 odr_malloc(assoc->decode, sizeof(Z_ElementSetNames));
1087 bprr->comp->u.simple->which = Z_ElementSetNames_generic;
1088 bprr->comp->u.simple->u.generic = srw_req->recordSchema;
1094 bprr->stream = assoc->encode;
1095 bprr->referenceId = 0;
1096 bprr->print = assoc->print;
1097 bprr->association = assoc;
1099 bprr->errstring = NULL;
1100 (*assoc->init->bend_present)(assoc->backend, bprr);
1104 srw_error = yaz_diag_bib1_to_srw(bprr->errcode);
1105 yaz_add_srw_diagnostic(assoc->encode,
1106 &srw_res->diagnostics,
1107 &srw_res->num_diagnostics,
1108 srw_error, bprr->errstring);
1116 int packing = Z_SRW_recordPacking_string;
1117 if (srw_req->recordPacking)
1120 yaz_srw_str_to_pack(srw_req->recordPacking);
1122 packing = Z_SRW_recordPacking_string;
1124 srw_res->records = (Z_SRW_record *)
1125 odr_malloc(assoc->encode,
1126 number * sizeof(*srw_res->records));
1128 srw_res->extra_records = (Z_SRW_extra_record **)
1129 odr_malloc(assoc->encode,
1130 number*sizeof(*srw_res->extra_records));
1132 for (i = 0; i<number; i++)
1135 int last_in_set = 0;
1136 const char *addinfo = 0;
1138 srw_res->records[j].recordPacking = packing;
1139 srw_res->records[j].recordData_buf = 0;
1140 srw_res->extra_records[j] = 0;
1141 yaz_log(YLOG_DEBUG, "srw_bend_fetch %d", i+start);
1142 errcode = srw_bend_fetch(assoc, i+start, srw_req,
1143 srw_res->records + j,
1144 &addinfo, &last_in_set);
1147 yaz_add_srw_diagnostic(assoc->encode,
1148 &srw_res->diagnostics,
1149 &srw_res->num_diagnostics,
1150 yaz_diag_bib1_to_srw(errcode),
1155 if (srw_res->records[j].recordData_buf)
1160 srw_res->num_records = j;
1162 srw_res->records = 0;
1165 if (rr.extra_response_data)
1167 res->extraResponseData_buf = rr.extra_response_data;
1168 res->extraResponseData_len = strlen(rr.extra_response_data);
1170 if (strcmp(res->srw_version, "2.") > 0)
1172 if (rr.estimated_hit_count)
1173 srw_res->resultCountPrecision =
1174 odr_strdup(assoc->encode, "estimate");
1175 else if (rr.partial_resultset)
1176 srw_res->resultCountPrecision =
1177 odr_strdup(assoc->encode, "minimum");
1179 srw_res->resultCountPrecision =
1180 odr_strdup(assoc->encode, "exact");
1182 else if (rr.estimated_hit_count || rr.partial_resultset)
1184 yaz_add_srw_diagnostic(
1186 &srw_res->diagnostics,
1187 &srw_res->num_diagnostics,
1188 YAZ_SRW_RESULT_SET_CREATED_WITH_VALID_PARTIAL_RESULTS_AVAILABLE,
1196 WRBUF wr = wrbuf_alloc();
1198 wrbuf_printf(wr, "SRWSearch %s ", srw_req->database);
1199 if (srw_res->num_diagnostics)
1200 wrbuf_printf(wr, "ERROR %s", srw_res->diagnostics[0].uri);
1201 else if (*http_code != 200)
1202 wrbuf_printf(wr, "ERROR info:http/%d", *http_code);
1203 else if (srw_res->numberOfRecords)
1205 wrbuf_printf(wr, "OK " ODR_INT_PRINTF,
1206 (srw_res->numberOfRecords ?
1207 *srw_res->numberOfRecords : 0));
1209 wrbuf_printf(wr, " %s " ODR_INT_PRINTF "+%d",
1210 (srw_res->resultSetId ?
1211 srw_res->resultSetId : "-"),
1212 (srw_req->startRecord ? *srw_req->startRecord : 1),
1213 srw_res->num_records);
1214 yaz_log(log_request, "%s %s: %s", wrbuf_cstr(wr), srw_req->queryType,
1220 static char *srw_bend_explain_default(bend_explain_rr *rr)
1223 xmlNodePtr ptr = (xmlNode *) rr->server_node_ptr;
1226 for (ptr = ptr->children; ptr; ptr = ptr->next)
1228 if (ptr->type != XML_ELEMENT_NODE)
1230 if (!strcmp((const char *) ptr->name, "explain"))
1233 xmlDocPtr doc = xmlNewDoc(BAD_CAST "1.0");
1237 ptr = xmlCopyNode(ptr, 1);
1239 xmlDocSetRootElement(doc, ptr);
1241 xmlDocDumpMemory(doc, &buf_out, &len);
1242 content = (char*) odr_malloc(rr->stream, 1+len);
1243 memcpy(content, buf_out, len);
1244 content[len] = '\0';
1248 rr->explain_buf = content;
1256 static void srw_bend_explain(association *assoc,
1258 Z_SRW_explainResponse *srw_res,
1261 Z_SRW_explainRequest *srw_req = sr->u.explain_request;
1262 yaz_log(log_requestdetail, "Got SRW ExplainRequest");
1264 srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
1269 rr.stream = assoc->encode;
1270 rr.decode = assoc->decode;
1271 rr.print = assoc->print;
1273 rr.database = srw_req->database;
1275 rr.server_node_ptr = assoc->server->server_node_ptr;
1277 rr.server_node_ptr = 0;
1278 rr.schema = "http://explain.z3950.org/dtd/2.0/";
1279 if (assoc->init->bend_explain)
1280 (*assoc->init->bend_explain)(assoc->backend, &rr);
1282 srw_bend_explain_default(&rr);
1286 int packing = Z_SRW_recordPacking_string;
1287 if (srw_req->recordPacking)
1290 yaz_srw_str_to_pack(srw_req->recordPacking);
1292 packing = Z_SRW_recordPacking_string;
1294 srw_res->record.recordSchema = rr.schema;
1295 srw_res->record.recordPacking = packing;
1296 srw_res->record.recordData_buf = rr.explain_buf;
1297 srw_res->record.recordData_len = strlen(rr.explain_buf);
1298 srw_res->record.recordPosition = 0;
1304 static void srw_bend_scan(association *assoc,
1309 Z_SRW_scanRequest *srw_req = sr->u.scan_request;
1310 Z_SRW_scanResponse *srw_res = res->u.scan_response;
1311 yaz_log(log_requestdetail, "Got SRW ScanRequest");
1314 srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
1315 if (srw_res->num_diagnostics == 0 && assoc->init)
1318 struct scan_entry *save_entries;
1320 bend_scan_rr *bsrr = (bend_scan_rr *)
1321 odr_malloc(assoc->encode, sizeof(*bsrr));
1322 bsrr->num_bases = 1;
1323 bsrr->basenames = &srw_req->database;
1325 bsrr->num_entries = srw_req->maximumTerms ?
1326 odr_int_to_int(*srw_req->maximumTerms) : 10;
1327 bsrr->term_position = srw_req->responsePosition ?
1328 odr_int_to_int(*srw_req->responsePosition) : 1;
1331 bsrr->errstring = 0;
1332 bsrr->referenceId = 0;
1333 bsrr->stream = assoc->encode;
1334 bsrr->print = assoc->print;
1335 bsrr->step_size = &step_size;
1338 bsrr->extra_args = sr->extra_args;
1339 bsrr->extra_response_data = 0;
1341 if (bsrr->num_entries > 0)
1344 bsrr->entries = (struct scan_entry *)
1345 odr_malloc(assoc->decode, sizeof(*bsrr->entries) *
1347 for (i = 0; i<bsrr->num_entries; i++)
1349 bsrr->entries[i].term = 0;
1350 bsrr->entries[i].occurrences = 0;
1351 bsrr->entries[i].errcode = 0;
1352 bsrr->entries[i].errstring = 0;
1353 bsrr->entries[i].display_term = 0;
1356 save_entries = bsrr->entries; /* save it so we can compare later */
1358 if (srw_req->queryType && !strcmp(srw_req->queryType, "pqf") &&
1359 assoc->init->bend_scan)
1361 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
1363 bsrr->term = yaz_pqf_scan(pqf_parser, assoc->decode,
1364 &bsrr->attributeset,
1365 srw_req->scanClause);
1366 yaz_pqf_destroy(pqf_parser);
1367 bsrr->scanClause = 0;
1368 ((int (*)(void *, bend_scan_rr *))
1369 (*assoc->init->bend_scan))(assoc->backend, bsrr);
1371 else if ((!srw_req->queryType || !strcmp(srw_req->queryType, "cql"))
1372 && assoc->init->bend_scan && assoc->server
1373 && assoc->server->cql_transform)
1376 bsrr->scanClause = 0;
1377 bsrr->attributeset = 0;
1378 bsrr->term = (Z_AttributesPlusTerm *)
1379 odr_malloc(assoc->decode, sizeof(*bsrr->term));
1380 srw_error = cql2pqf_scan(assoc->encode,
1381 srw_req->scanClause,
1382 assoc->server->cql_transform,
1385 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1386 &srw_res->num_diagnostics,
1390 ((int (*)(void *, bend_scan_rr *))
1391 (*assoc->init->bend_scan))(assoc->backend, bsrr);
1394 else if ((!srw_req->queryType || !strcmp(srw_req->queryType, "cql"))
1395 && assoc->init->bend_srw_scan)
1398 bsrr->attributeset = 0;
1399 bsrr->scanClause = srw_req->scanClause;
1400 ((int (*)(void *, bend_scan_rr *))
1401 (*assoc->init->bend_srw_scan))(assoc->backend, bsrr);
1405 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1406 &srw_res->num_diagnostics,
1407 YAZ_SRW_UNSUPP_OPERATION, "scan");
1409 if (bsrr->extra_response_data)
1411 res->extraResponseData_buf = bsrr->extra_response_data;
1412 res->extraResponseData_len = strlen(bsrr->extra_response_data);
1417 if (bsrr->errcode == YAZ_BIB1_DATABASE_UNAVAILABLE)
1422 srw_error = yaz_diag_bib1_to_srw(bsrr->errcode);
1424 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1425 &srw_res->num_diagnostics,
1426 srw_error, bsrr->errstring);
1428 else if (srw_res->num_diagnostics == 0 && bsrr->num_entries)
1431 srw_res->terms = (Z_SRW_scanTerm*)
1432 odr_malloc(assoc->encode, sizeof(*srw_res->terms) *
1435 srw_res->num_terms = bsrr->num_entries;
1436 for (i = 0; i<bsrr->num_entries; i++)
1438 Z_SRW_scanTerm *t = srw_res->terms + i;
1439 t->value = odr_strdup(assoc->encode, bsrr->entries[i].term);
1440 t->numberOfRecords =
1441 odr_intdup(assoc->encode, bsrr->entries[i].occurrences);
1443 if (save_entries == bsrr->entries &&
1444 bsrr->entries[i].display_term)
1446 /* the entries was _not_ set by the handler. So it's
1447 safe to test for new member display_term. It is
1450 t->displayTerm = odr_strdup(assoc->encode,
1451 bsrr->entries[i].display_term);
1459 WRBUF wr = wrbuf_alloc();
1460 wrbuf_printf(wr, "SRWScan %s ", srw_req->database);
1462 if (srw_res->num_diagnostics)
1463 wrbuf_printf(wr, "ERROR %s - ", srw_res->diagnostics[0].uri);
1464 else if (srw_res->num_terms)
1465 wrbuf_printf(wr, "OK %d - ", srw_res->num_terms);
1467 wrbuf_printf(wr, "OK - - ");
1469 wrbuf_printf(wr, ODR_INT_PRINTF "+" ODR_INT_PRINTF " ",
1470 (srw_req->responsePosition ?
1471 *srw_req->responsePosition : 1),
1472 (srw_req->maximumTerms ?
1473 *srw_req->maximumTerms : 1));
1474 /* there is no step size in SRU/W ??? */
1475 wrbuf_printf(wr, "%s: %s ", srw_req->queryType, srw_req->scanClause);
1476 yaz_log(log_request, "%s ", wrbuf_cstr(wr) );
1482 static void srw_bend_update(association *assoc,
1484 Z_SRW_updateResponse *srw_res,
1487 Z_SRW_updateRequest *srw_req = sr->u.update_request;
1488 yaz_log(log_session, "SRWUpdate action=%s", srw_req->operation);
1489 yaz_log(YLOG_DEBUG, "num_diag = %d", srw_res->num_diagnostics );
1491 srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
1495 Z_SRW_extra_record *extra = srw_req->extra_record;
1497 rr.stream = assoc->encode;
1498 rr.print = assoc->print;
1500 rr.basenames = &srw_req->database;
1501 rr.operation = srw_req->operation;
1502 rr.operation_status = "failed";
1504 rr.record_versions = 0;
1505 rr.num_versions = 0;
1506 rr.record_packing = "string";
1507 rr.record_schema = 0;
1509 rr.extra_record_data = 0;
1510 rr.extra_request_data = 0;
1511 rr.extra_response_data = 0;
1517 if (rr.operation == 0)
1519 yaz_add_sru_update_diagnostic(
1520 assoc->encode, &srw_res->diagnostics,
1521 &srw_res->num_diagnostics,
1522 YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1526 yaz_log(YLOG_DEBUG, "basename = %s", rr.basenames[0] );
1527 yaz_log(YLOG_DEBUG, "Operation = %s", rr.operation );
1528 if (!strcmp( rr.operation, "delete"))
1530 if (srw_req->record && !srw_req->record->recordSchema)
1532 rr.record_schema = odr_strdup(
1534 srw_req->record->recordSchema);
1536 if (srw_req->record)
1538 rr.record_data = odr_strdupn(
1540 srw_req->record->recordData_buf,
1541 srw_req->record->recordData_len );
1543 if (extra && extra->extraRecordData_len)
1545 rr.extra_record_data = odr_strdupn(
1547 extra->extraRecordData_buf,
1548 extra->extraRecordData_len );
1550 if (srw_req->recordId)
1551 rr.record_id = srw_req->recordId;
1552 else if (extra && extra->recordIdentifier)
1553 rr.record_id = extra->recordIdentifier;
1555 else if (!strcmp(rr.operation, "replace"))
1557 if (srw_req->recordId)
1558 rr.record_id = srw_req->recordId;
1559 else if (extra && extra->recordIdentifier)
1560 rr.record_id = extra->recordIdentifier;
1563 yaz_add_sru_update_diagnostic(
1564 assoc->encode, &srw_res->diagnostics,
1565 &srw_res->num_diagnostics,
1566 YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1567 "recordIdentifier");
1569 if (!srw_req->record)
1571 yaz_add_sru_update_diagnostic(
1572 assoc->encode, &srw_res->diagnostics,
1573 &srw_res->num_diagnostics,
1574 YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1579 if (srw_req->record->recordSchema)
1580 rr.record_schema = odr_strdup(
1581 assoc->encode, srw_req->record->recordSchema);
1582 if (srw_req->record->recordData_len )
1584 rr.record_data = odr_strdupn(assoc->encode,
1585 srw_req->record->recordData_buf,
1586 srw_req->record->recordData_len );
1590 yaz_add_sru_update_diagnostic(
1591 assoc->encode, &srw_res->diagnostics,
1592 &srw_res->num_diagnostics,
1593 YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1597 if (extra && extra->extraRecordData_len)
1599 rr.extra_record_data = odr_strdupn(
1601 extra->extraRecordData_buf,
1602 extra->extraRecordData_len );
1605 else if (!strcmp(rr.operation, "insert"))
1607 if (srw_req->recordId)
1608 rr.record_id = srw_req->recordId;
1610 rr.record_id = extra->recordIdentifier;
1612 if (srw_req->record)
1614 if (srw_req->record->recordSchema)
1615 rr.record_schema = odr_strdup(
1616 assoc->encode, srw_req->record->recordSchema);
1618 if (srw_req->record->recordData_len)
1619 rr.record_data = odr_strdupn(
1621 srw_req->record->recordData_buf,
1622 srw_req->record->recordData_len );
1624 if (extra && extra->extraRecordData_len)
1626 rr.extra_record_data = odr_strdupn(
1628 extra->extraRecordData_buf,
1629 extra->extraRecordData_len );
1633 yaz_add_sru_update_diagnostic(assoc->encode, &srw_res->diagnostics,
1634 &srw_res->num_diagnostics,
1635 YAZ_SRU_UPDATE_INVALID_ACTION,
1638 if (srw_req->record)
1640 const char *pack_str =
1641 yaz_srw_pack_to_str(srw_req->record->recordPacking);
1643 rr.record_packing = odr_strdup(assoc->encode, pack_str);
1646 if (srw_req->num_recordVersions)
1648 rr.record_versions = srw_req->recordVersions;
1649 rr.num_versions = srw_req->num_recordVersions;
1651 if (srw_req->extraRequestData_len)
1653 rr.extra_request_data = odr_strdupn(assoc->encode,
1654 srw_req->extraRequestData_buf,
1655 srw_req->extraRequestData_len );
1657 if (srw_res->num_diagnostics == 0)
1659 if ( assoc->init->bend_srw_update)
1660 (*assoc->init->bend_srw_update)(assoc->backend, &rr);
1662 yaz_add_sru_update_diagnostic(
1663 assoc->encode, &srw_res->diagnostics,
1664 &srw_res->num_diagnostics,
1665 YAZ_SRU_UPDATE_UNSPECIFIED_DATABASE_ERROR,
1666 "No Update backend handler");
1670 yaz_add_srw_diagnostic_uri(assoc->encode,
1671 &srw_res->diagnostics,
1672 &srw_res->num_diagnostics,
1676 srw_res->recordId = rr.record_id;
1677 srw_res->operationStatus = rr.operation_status;
1678 srw_res->recordVersions = rr.record_versions;
1679 srw_res->num_recordVersions = rr.num_versions;
1680 if (srw_res->extraResponseData_len)
1682 srw_res->extraResponseData_buf = rr.extra_response_data;
1683 srw_res->extraResponseData_len = strlen(rr.extra_response_data);
1685 if (srw_res->num_diagnostics == 0 && rr.record_data)
1687 srw_res->record = yaz_srw_get_record(assoc->encode);
1688 srw_res->record->recordSchema = rr.record_schema;
1689 if (rr.record_packing)
1691 int pack = yaz_srw_str_to_pack(rr.record_packing);
1695 pack = Z_SRW_recordPacking_string;
1696 yaz_log(YLOG_WARN, "Back packing %s from backend",
1699 srw_res->record->recordPacking = pack;
1701 srw_res->record->recordData_buf = rr.record_data;
1702 srw_res->record->recordData_len = strlen(rr.record_data);
1703 if (rr.extra_record_data)
1705 Z_SRW_extra_record *ex =
1706 yaz_srw_get_extra_record(assoc->encode);
1707 srw_res->extra_record = ex;
1708 ex->extraRecordData_buf = rr.extra_record_data;
1709 ex->extraRecordData_len = strlen(rr.extra_record_data);
1715 /* check if path is OK (1); BAD (0) */
1716 static int check_path(const char *path)
1720 if (strstr(path, ".."))
1725 static char *read_file(const char *fname, ODR o, size_t *sz)
1728 FILE *inf = fopen(fname, "rb");
1732 fseek(inf, 0L, SEEK_END);
1735 buf = (char *) odr_malloc(o, *sz);
1736 if (fread(buf, 1, *sz, inf) != *sz)
1737 yaz_log(YLOG_WARN|YLOG_ERRNO, "short read %s", fname);
1742 static void process_http_request(association *assoc, request *req)
1744 Z_HTTP_Request *hreq = req->gdu_request->u.HTTP_Request;
1745 ODR o = assoc->encode;
1746 int r = 2; /* 2=NOT TAKEN, 1=TAKEN, 0=SOAP TAKEN */
1748 Z_SOAP *soap_package = 0;
1751 Z_HTTP_Response *hres = 0;
1753 const char *stylesheet = 0; /* for now .. set later */
1754 Z_SRW_diagnostic *diagnostic = 0;
1755 int num_diagnostic = 0;
1756 const char *host = z_HTTP_header_lookup(hreq->headers, "Host");
1758 yaz_log(log_request, "%s %s HTTP/%s", hreq->method, hreq->path, hreq->version);
1759 if (!control_association(assoc, host, 0))
1761 p = z_get_HTTP_Response(o, 404);
1764 if (r == 2 && assoc->server && assoc->server->docpath
1765 && hreq->path[0] == '/'
1767 /* check if path is a proper prefix of documentroot */
1768 strncmp(hreq->path+1, assoc->server->docpath,
1769 strlen(assoc->server->docpath))
1772 if (!check_path(hreq->path))
1774 yaz_log(YLOG_LOG, "File %s access forbidden", hreq->path+1);
1775 p = z_get_HTTP_Response(o, 404);
1779 size_t content_size = 0;
1780 char *content_buf = read_file(hreq->path+1, o, &content_size);
1783 yaz_log(YLOG_LOG, "File %s not found", hreq->path+1);
1784 p = z_get_HTTP_Response(o, 404);
1788 const char *ctype = 0;
1789 yaz_mime_types types = yaz_mime_types_create();
1791 yaz_mime_types_add(types, "xsl", "application/xml");
1792 yaz_mime_types_add(types, "xml", "application/xml");
1793 yaz_mime_types_add(types, "css", "text/css");
1794 yaz_mime_types_add(types, "html", "text/html");
1795 yaz_mime_types_add(types, "htm", "text/html");
1796 yaz_mime_types_add(types, "txt", "text/plain");
1797 yaz_mime_types_add(types, "js", "application/x-javascript");
1799 yaz_mime_types_add(types, "gif", "image/gif");
1800 yaz_mime_types_add(types, "png", "image/png");
1801 yaz_mime_types_add(types, "jpg", "image/jpeg");
1802 yaz_mime_types_add(types, "jpeg", "image/jpeg");
1804 ctype = yaz_mime_lookup_fname(types, hreq->path);
1807 yaz_log(YLOG_LOG, "No mime type for %s", hreq->path+1);
1808 p = z_get_HTTP_Response(o, 404);
1812 p = z_get_HTTP_Response(o, 200);
1813 hres = p->u.HTTP_Response;
1814 hres->content_buf = content_buf;
1815 hres->content_len = content_size;
1816 z_HTTP_header_add(o, &hres->headers, "Content-Type", ctype);
1818 yaz_mime_types_destroy(types);
1826 r = yaz_srw_decode(hreq, &sr, &soap_package, assoc->decode, &charset);
1827 yaz_log(YLOG_DEBUG, "yaz_srw_decode returned %d", r);
1829 if (r == 2) /* not taken */
1831 r = yaz_sru_decode(hreq, &sr, &soap_package, assoc->decode, &charset,
1832 &diagnostic, &num_diagnostic);
1833 yaz_log(YLOG_DEBUG, "yaz_sru_decode returned %d", r);
1835 if (r == 0) /* decode SRW/SRU OK .. */
1837 int http_code = 200;
1838 if (sr->which == Z_SRW_searchRetrieve_request)
1841 yaz_srw_get_pdu(assoc->encode, Z_SRW_searchRetrieve_response,
1843 stylesheet = sr->u.request->stylesheet;
1846 res->u.response->diagnostics = diagnostic;
1847 res->u.response->num_diagnostics = num_diagnostic;
1851 srw_bend_search(assoc, sr, res, &http_code);
1853 if (http_code == 200)
1854 soap_package->u.generic->p = res;
1856 else if (sr->which == Z_SRW_explain_request)
1858 Z_SRW_PDU *res = yaz_srw_get_pdu(o, Z_SRW_explain_response,
1860 stylesheet = sr->u.explain_request->stylesheet;
1863 res->u.explain_response->diagnostics = diagnostic;
1864 res->u.explain_response->num_diagnostics = num_diagnostic;
1866 srw_bend_explain(assoc, sr, res->u.explain_response, &http_code);
1867 if (http_code == 200)
1868 soap_package->u.generic->p = res;
1870 else if (sr->which == Z_SRW_scan_request)
1872 Z_SRW_PDU *res = yaz_srw_get_pdu(o, Z_SRW_scan_response,
1874 stylesheet = sr->u.scan_request->stylesheet;
1877 res->u.scan_response->diagnostics = diagnostic;
1878 res->u.scan_response->num_diagnostics = num_diagnostic;
1880 srw_bend_scan(assoc, sr, res, &http_code);
1881 if (http_code == 200)
1882 soap_package->u.generic->p = res;
1884 else if (sr->which == Z_SRW_update_request)
1886 Z_SRW_PDU *res = yaz_srw_get_pdu(o, Z_SRW_update_response,
1888 yaz_log(YLOG_DEBUG, "handling SRW UpdateRequest");
1891 res->u.update_response->diagnostics = diagnostic;
1892 res->u.update_response->num_diagnostics = num_diagnostic;
1894 yaz_log(YLOG_DEBUG, "num_diag = %d", res->u.update_response->num_diagnostics );
1895 srw_bend_update(assoc, sr, res->u.update_response, &http_code);
1896 if (http_code == 200)
1897 soap_package->u.generic->p = res;
1901 yaz_log(log_request, "SOAP ERROR");
1902 /* FIXME - what error, what query */
1904 z_soap_error(assoc->encode, soap_package,
1905 "SOAP-ENV:Client", "Bad method", 0);
1907 if (http_code == 200 || http_code == 500)
1909 static Z_SOAP_Handler soap_handlers[4] = {
1911 {YAZ_XMLNS_SRU_v1_1, 0, (Z_SOAP_fun) yaz_srw_codec},
1912 {YAZ_XMLNS_SRU_v1_0, 0, (Z_SOAP_fun) yaz_srw_codec},
1913 {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
1918 p = z_get_HTTP_Response(o, 200);
1919 hres = p->u.HTTP_Response;
1921 if (!stylesheet && assoc->server)
1922 stylesheet = assoc->server->stylesheet;
1924 /* empty stylesheet means NO stylesheet */
1925 if (stylesheet && *stylesheet == '\0')
1928 z_soap_codec_enc_xsl(assoc->encode, &soap_package,
1929 &hres->content_buf, &hres->content_len,
1930 soap_handlers, charset, stylesheet);
1931 hres->code = http_code;
1933 strcpy(ctype, "text/xml");
1934 if (charset && strlen(charset) < sizeof(ctype)-30)
1936 strcat(ctype, "; charset=");
1937 strcat(ctype, charset);
1939 z_HTTP_header_add(o, &hres->headers, "Content-Type", ctype);
1942 p = z_get_HTTP_Response(o, http_code);
1946 p = z_get_HTTP_Response(o, 500);
1947 hres = p->u.HTTP_Response;
1948 if (!strcmp(hreq->version, "1.0"))
1950 const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
1951 if (v && !strcmp(v, "Keep-Alive"))
1955 hres->version = "1.0";
1959 const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
1960 if (v && !strcmp(v, "close"))
1964 hres->version = "1.1";
1966 if (!keepalive || !assoc->last_control->keepalive)
1968 z_HTTP_header_add(o, &hres->headers, "Connection", "close");
1969 assoc->state = ASSOC_DEAD;
1970 assoc->cs_get_mask = 0;
1975 const char *alive = z_HTTP_header_lookup(hreq->headers, "Keep-Alive");
1977 if (alive && yaz_isdigit(*(const unsigned char *) alive))
1981 if (t < 0 || t > 3600)
1983 iochan_settimeout(assoc->client_chan,t);
1984 z_HTTP_header_add(o, &hres->headers, "Connection", "Keep-Alive");
1986 process_gdu_response(assoc, req, p);
1989 static void process_gdu_request(association *assoc, request *req)
1991 if (req->gdu_request->which == Z_GDU_Z3950)
1994 req->apdu_request = req->gdu_request->u.z3950;
1995 if (process_z_request(assoc, req, &msg) < 0)
1996 do_close_req(assoc, Z_Close_systemProblem, msg, req);
1998 else if (req->gdu_request->which == Z_GDU_HTTP_Request)
1999 process_http_request(assoc, req);
2002 do_close_req(assoc, Z_Close_systemProblem, "bad protocol packet", req);
2007 * Initiate request processing.
2009 static int process_z_request(association *assoc, request *req, char **msg)
2014 *msg = "Unknown Error";
2015 assert(req && req->state == REQUEST_IDLE);
2016 if (req->apdu_request->which != Z_APDU_initRequest && !assoc->init)
2018 *msg = "Missing InitRequest";
2021 switch (req->apdu_request->which)
2023 case Z_APDU_initRequest:
2024 res = process_initRequest(assoc, req); break;
2025 case Z_APDU_searchRequest:
2026 res = process_searchRequest(assoc, req); break;
2027 case Z_APDU_presentRequest:
2028 res = process_presentRequest(assoc, req); break;
2029 case Z_APDU_scanRequest:
2030 if (assoc->init->bend_scan)
2031 res = process_scanRequest(assoc, req);
2034 *msg = "Cannot handle Scan APDU";
2038 case Z_APDU_extendedServicesRequest:
2039 if (assoc->init->bend_esrequest)
2040 res = process_ESRequest(assoc, req);
2043 *msg = "Cannot handle Extended Services APDU";
2047 case Z_APDU_sortRequest:
2048 if (assoc->init->bend_sort)
2049 res = process_sortRequest(assoc, req);
2052 *msg = "Cannot handle Sort APDU";
2057 process_close(assoc, req);
2059 case Z_APDU_deleteResultSetRequest:
2060 if (assoc->init->bend_delete)
2061 res = process_deleteRequest(assoc, req);
2064 *msg = "Cannot handle Delete APDU";
2068 case Z_APDU_segmentRequest:
2069 if (assoc->init->bend_segment)
2071 res = process_segmentRequest(assoc, req);
2075 *msg = "Cannot handle Segment APDU";
2079 case Z_APDU_triggerResourceControlRequest:
2082 *msg = "Bad APDU received";
2087 yaz_log(YLOG_DEBUG, " result immediately available");
2088 retval = process_z_response(assoc, req, res);
2092 yaz_log(YLOG_DEBUG, " result unavailable");
2099 * Encode response, and transfer the request structure to the outgoing queue.
2101 static int process_gdu_response(association *assoc, request *req, Z_GDU *res)
2103 odr_setbuf(assoc->encode, req->response, req->size_response, 1);
2107 if (!z_GDU(assoc->print, &res, 0, 0))
2108 yaz_log(YLOG_WARN, "ODR print error: %s",
2109 odr_errmsg(odr_geterror(assoc->print)));
2110 odr_reset(assoc->print);
2112 if (!z_GDU(assoc->encode, &res, 0, 0))
2114 yaz_log(YLOG_WARN, "ODR error when encoding PDU: %s [element %s]",
2115 odr_errmsg(odr_geterror(assoc->decode)),
2116 odr_getelement(assoc->decode));
2119 req->response = odr_getbuf(assoc->encode, &req->len_response,
2120 &req->size_response);
2121 odr_setbuf(assoc->encode, 0, 0, 0); /* don'txfree if we abort later */
2122 odr_reset(assoc->encode);
2123 req->state = REQUEST_IDLE;
2124 request_enq(&assoc->outgoing, req);
2125 /* turn the work over to the ir_session handler */
2126 iochan_setflag(assoc->client_chan, EVENT_OUTPUT);
2127 assoc->cs_put_mask = EVENT_OUTPUT;
2128 /* Is there more work to be done? give that to the input handler too */
2131 req = request_head(&assoc->incoming);
2132 if (req && req->state == REQUEST_IDLE)
2134 request_deq(&assoc->incoming);
2135 process_gdu_request(assoc, req);
2144 * Encode response, and transfer the request structure to the outgoing queue.
2146 static int process_z_response(association *assoc, request *req, Z_APDU *res)
2148 Z_GDU *gres = (Z_GDU *) odr_malloc(assoc->encode, sizeof(*gres));
2149 gres->which = Z_GDU_Z3950;
2150 gres->u.z3950 = res;
2152 return process_gdu_response(assoc, req, gres);
2155 static char *get_vhost(Z_OtherInformation *otherInfo)
2157 return yaz_oi_get_string_oid(&otherInfo, yaz_oid_userinfo_proxy, 1, 0);
2161 * Handle init request.
2162 * At the moment, we don't check the options
2163 * anywhere else in the code - we just try not to do anything that would
2164 * break a naive client. We'll toss 'em into the association block when
2165 * we need them there.
2167 static Z_APDU *process_initRequest(association *assoc, request *reqb)
2169 Z_InitRequest *req = reqb->apdu_request->u.initRequest;
2170 Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_initResponse);
2171 Z_InitResponse *resp = apdu->u.initResponse;
2172 bend_initresult *binitres;
2174 statserv_options_block *cb = 0; /* by default no control for backend */
2176 if (control_association(assoc, get_vhost(req->otherInfo), 1))
2177 cb = statserv_getcontrol(); /* got control block for backend */
2179 if (cb && assoc->backend)
2180 (*cb->bend_close)(assoc->backend);
2182 yaz_log(log_requestdetail, "Got initRequest");
2183 if (req->implementationId)
2184 yaz_log(log_requestdetail, "Id: %s",
2185 req->implementationId);
2186 if (req->implementationName)
2187 yaz_log(log_requestdetail, "Name: %s",
2188 req->implementationName);
2189 if (req->implementationVersion)
2190 yaz_log(log_requestdetail, "Version: %s",
2191 req->implementationVersion);
2193 assoc_init_reset(assoc);
2195 assoc->init->auth = req->idAuthentication;
2196 assoc->init->referenceId = req->referenceId;
2198 if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
2200 Z_CharSetandLanguageNegotiation *negotiation =
2201 yaz_get_charneg_record (req->otherInfo);
2203 negotiation->which == Z_CharSetandLanguageNegotiation_proposal)
2204 assoc->init->charneg_request = negotiation;
2207 /* by default named_result_sets is 0 .. Enable it if client asks for it. */
2208 if (ODR_MASK_GET(req->options, Z_Options_namedResultSets))
2209 assoc->init->named_result_sets = 1;
2214 if (req->implementationVersion)
2215 yaz_log(log_requestdetail, "Config: %s",
2218 iochan_settimeout(assoc->client_chan, cb->idle_timeout);
2220 /* we have a backend control block, so call that init function */
2221 if (!(binitres = (*cb->bend_init)(assoc->init)))
2223 yaz_log(YLOG_WARN, "Bad response from backend.");
2226 assoc->backend = binitres->handle;
2230 /* no backend. return error */
2231 binitres = (bend_initresult *)
2232 odr_malloc(assoc->encode, sizeof(*binitres));
2233 binitres->errstring = 0;
2234 binitres->errcode = YAZ_BIB1_PERMANENT_SYSTEM_ERROR;
2235 iochan_settimeout(assoc->client_chan, 10);
2237 if ((assoc->init->bend_sort))
2238 yaz_log(YLOG_DEBUG, "Sort handler installed");
2239 if ((assoc->init->bend_search))
2240 yaz_log(YLOG_DEBUG, "Search handler installed");
2241 if ((assoc->init->bend_present))
2242 yaz_log(YLOG_DEBUG, "Present handler installed");
2243 if ((assoc->init->bend_esrequest))
2244 yaz_log(YLOG_DEBUG, "ESRequest handler installed");
2245 if ((assoc->init->bend_delete))
2246 yaz_log(YLOG_DEBUG, "Delete handler installed");
2247 if ((assoc->init->bend_scan))
2248 yaz_log(YLOG_DEBUG, "Scan handler installed");
2249 if ((assoc->init->bend_segment))
2250 yaz_log(YLOG_DEBUG, "Segment handler installed");
2252 resp->referenceId = req->referenceId;
2254 /* let's tell the client what we can do */
2255 if (ODR_MASK_GET(req->options, Z_Options_search))
2257 ODR_MASK_SET(resp->options, Z_Options_search);
2258 strcat(options, "srch");
2260 if (ODR_MASK_GET(req->options, Z_Options_present))
2262 ODR_MASK_SET(resp->options, Z_Options_present);
2263 strcat(options, " prst");
2265 if (ODR_MASK_GET(req->options, Z_Options_delSet) &&
2266 assoc->init->bend_delete)
2268 ODR_MASK_SET(resp->options, Z_Options_delSet);
2269 strcat(options, " del");
2271 if (ODR_MASK_GET(req->options, Z_Options_extendedServices) &&
2272 assoc->init->bend_esrequest)
2274 ODR_MASK_SET(resp->options, Z_Options_extendedServices);
2275 strcat(options, " extendedServices");
2277 if (ODR_MASK_GET(req->options, Z_Options_namedResultSets)
2278 && assoc->init->named_result_sets)
2280 ODR_MASK_SET(resp->options, Z_Options_namedResultSets);
2281 strcat(options, " namedresults");
2283 if (ODR_MASK_GET(req->options, Z_Options_scan) && assoc->init->bend_scan)
2285 ODR_MASK_SET(resp->options, Z_Options_scan);
2286 strcat(options, " scan");
2288 if (ODR_MASK_GET(req->options, Z_Options_concurrentOperations))
2290 ODR_MASK_SET(resp->options, Z_Options_concurrentOperations);
2291 strcat(options, " concurrop");
2293 if (ODR_MASK_GET(req->options, Z_Options_sort) && assoc->init->bend_sort)
2295 ODR_MASK_SET(resp->options, Z_Options_sort);
2296 strcat(options, " sort");
2299 if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
2301 Z_OtherInformationUnit *p0;
2303 if (!assoc->init->charneg_response)
2305 if (assoc->init->query_charset)
2307 assoc->init->charneg_response = yaz_set_response_charneg(
2308 assoc->encode, assoc->init->query_charset, 0,
2309 assoc->init->records_in_same_charset);
2313 yaz_log(YLOG_WARN, "default query_charset not defined by backend");
2316 if (assoc->init->charneg_response
2317 && (p0=yaz_oi_update(&resp->otherInfo, assoc->encode, NULL, 0, 0)))
2319 p0->which = Z_OtherInfo_externallyDefinedInfo;
2320 p0->information.externallyDefinedInfo =
2321 assoc->init->charneg_response;
2322 ODR_MASK_SET(resp->options, Z_Options_negotiationModel);
2323 strcat(options, " negotiation");
2326 if (ODR_MASK_GET(req->options, Z_Options_triggerResourceCtrl))
2327 ODR_MASK_SET(resp->options, Z_Options_triggerResourceCtrl);
2329 if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_1))
2331 ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_1);
2332 assoc->version = 1; /* 1 & 2 are equivalent */
2334 if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_2))
2336 ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_2);
2339 if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_3))
2341 ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_3);
2345 yaz_log(log_requestdetail, "Negotiated to v%d: %s", assoc->version, options);
2347 if (*req->maximumRecordSize < assoc->maximumRecordSize)
2348 assoc->maximumRecordSize = odr_int_to_int(*req->maximumRecordSize);
2350 if (*req->preferredMessageSize < assoc->preferredMessageSize)
2351 assoc->preferredMessageSize = odr_int_to_int(*req->preferredMessageSize);
2353 resp->preferredMessageSize =
2354 odr_intdup(assoc->encode, assoc->preferredMessageSize);
2355 resp->maximumRecordSize =
2356 odr_intdup(assoc->encode, assoc->maximumRecordSize);
2358 resp->implementationId = odr_prepend(assoc->encode,
2359 assoc->init->implementation_id,
2360 resp->implementationId);
2362 resp->implementationVersion = odr_prepend(assoc->encode,
2363 assoc->init->implementation_version,
2364 resp->implementationVersion);
2366 resp->implementationName = odr_prepend(assoc->encode,
2367 assoc->init->implementation_name,
2368 odr_prepend(assoc->encode, "GFS", resp->implementationName));
2370 if (binitres->errcode)
2372 assoc->state = ASSOC_DEAD;
2373 resp->userInformationField =
2374 init_diagnostics(assoc->encode, binitres->errcode,
2375 binitres->errstring);
2379 assoc->state = ASSOC_UP;
2383 if (!req->idAuthentication)
2384 yaz_log(log_request, "Auth none");
2385 else if (req->idAuthentication->which == Z_IdAuthentication_open)
2387 const char *open = req->idAuthentication->u.open;
2388 const char *slash = strchr(open, '/');
2394 yaz_log(log_request, "Auth open %.*s", len, open);
2396 else if (req->idAuthentication->which == Z_IdAuthentication_idPass)
2398 const char *user = req->idAuthentication->u.idPass->userId;
2399 const char *group = req->idAuthentication->u.idPass->groupId;
2400 yaz_log(log_request, "Auth idPass %s %s",
2401 user ? user : "-", group ? group : "-");
2403 else if (req->idAuthentication->which
2404 == Z_IdAuthentication_anonymous)
2406 yaz_log(log_request, "Auth anonymous");
2410 yaz_log(log_request, "Auth other");
2415 WRBUF wr = wrbuf_alloc();
2416 wrbuf_printf(wr, "Init ");
2417 if (binitres->errcode)
2418 wrbuf_printf(wr, "ERROR %d", binitres->errcode);
2420 wrbuf_printf(wr, "OK -");
2421 wrbuf_printf(wr, " ID:%s Name:%s Version:%s",
2422 (req->implementationId ? req->implementationId :"-"),
2423 (req->implementationName ?
2424 req->implementationName : "-"),
2425 (req->implementationVersion ?
2426 req->implementationVersion : "-")
2428 yaz_log(log_request, "%s", wrbuf_cstr(wr));
2435 * Set the specified `errcode' and `errstring' into a UserInfo-1
2436 * external to be returned to the client in accordance with Z35.90
2437 * Implementor Agreement 5 (Returning diagnostics in an InitResponse):
2438 * http://lcweb.loc.gov/z3950/agency/agree/initdiag.html
2440 static Z_External *init_diagnostics(ODR odr, int error, const char *addinfo)
2442 yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
2443 addinfo ? " -- " : "", addinfo ? addinfo : "");
2444 return zget_init_diagnostics(odr, error, addinfo);
2448 * nonsurrogate diagnostic record.
2450 static Z_Records *diagrec(association *assoc, int error, char *addinfo)
2452 Z_Records *rec = (Z_Records *) odr_malloc(assoc->encode, sizeof(*rec));
2454 yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
2455 addinfo ? " -- " : "", addinfo ? addinfo : "");
2457 rec->which = Z_Records_NSD;
2458 rec->u.nonSurrogateDiagnostic = zget_DefaultDiagFormat(assoc->encode,
2464 * surrogate diagnostic.
2466 static Z_NamePlusRecord *surrogatediagrec(association *assoc,
2468 int error, const char *addinfo)
2470 yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
2471 addinfo ? " -- " : "", addinfo ? addinfo : "");
2472 return zget_surrogateDiagRec(assoc->encode, dbname, error, addinfo);
2475 static Z_Records *pack_records(association *a, char *setname, Odr_int start,
2476 Odr_int *num, Z_RecordComposition *comp,
2477 Odr_int *next, Odr_int *pres,
2478 Z_ReferenceId *referenceId,
2479 Odr_oid *oid, int *errcode)
2481 int recno, total_length = 0, dumped_records = 0;
2482 int toget = odr_int_to_int(*num);
2483 Z_Records *records =
2484 (Z_Records *) odr_malloc(a->encode, sizeof(*records));
2485 Z_NamePlusRecordList *reclist =
2486 (Z_NamePlusRecordList *) odr_malloc(a->encode, sizeof(*reclist));
2488 records->which = Z_Records_DBOSD;
2489 records->u.databaseOrSurDiagnostics = reclist;
2490 reclist->num_records = 0;
2493 return diagrec(a, YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE, 0);
2494 else if (toget == 0)
2495 reclist->records = odr_nullval();
2497 reclist->records = (Z_NamePlusRecord **)
2498 odr_malloc(a->encode, sizeof(*reclist->records) * toget);
2500 *pres = Z_PresentStatus_success;
2504 yaz_log(log_requestdetail, "Request to pack " ODR_INT_PRINTF "+%d %s", start, toget, setname);
2505 yaz_log(log_requestdetail, "pms=%d, mrs=%d", a->preferredMessageSize,
2506 a->maximumRecordSize);
2507 for (recno = odr_int_to_int(start); reclist->num_records < toget; recno++)
2510 Z_NamePlusRecord *thisrec;
2511 int this_length = 0;
2513 * we get the number of bytes allocated on the stream before any
2514 * allocation done by the backend - this should give us a reasonable
2515 * idea of the total size of the data so far.
2517 total_length = odr_total(a->encode) - dumped_records;
2523 freq.last_in_set = 0;
2524 freq.setname = setname;
2525 freq.surrogate_flag = 0;
2526 freq.number = recno;
2528 freq.request_format = oid;
2529 freq.output_format = 0;
2530 freq.stream = a->encode;
2531 freq.print = a->print;
2532 freq.referenceId = referenceId;
2535 retrieve_fetch(a, &freq);
2537 *next = freq.last_in_set ? 0 : recno + 1;
2541 if (!freq.surrogate_flag) /* non-surrogate diagnostic i.e. global */
2544 *pres = Z_PresentStatus_failure;
2545 /* for 'present request out of range',
2546 set addinfo to record position if not set */
2547 if (freq.errcode == YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE &&
2548 freq.errstring == 0)
2550 sprintf(s, "%d", recno);
2554 *errcode = freq.errcode;
2555 return diagrec(a, freq.errcode, freq.errstring);
2557 reclist->records[reclist->num_records] =
2558 surrogatediagrec(a, freq.basename, freq.errcode,
2560 reclist->num_records++;
2563 if (freq.record == 0) /* no error and no record ? */
2565 *pres = Z_PresentStatus_partial_4;
2566 *next = 0; /* signal end-of-set and stop */
2570 this_length = freq.len;
2572 this_length = odr_total(a->encode) - total_length - dumped_records;
2573 yaz_log(YLOG_DEBUG, " fetched record, len=%d, total=%d dumped=%d",
2574 this_length, total_length, dumped_records);
2575 if (a->preferredMessageSize > 0 &&
2576 this_length + total_length > a->preferredMessageSize)
2578 /* record is small enough, really */
2579 if (this_length <= a->preferredMessageSize && recno > start)
2581 yaz_log(log_requestdetail, " Dropped last normal-sized record");
2582 *pres = Z_PresentStatus_partial_2;
2587 /* record can only be fetched by itself */
2588 if (this_length < a->maximumRecordSize)
2590 yaz_log(log_requestdetail, " Record > prefmsgsz");
2593 yaz_log(YLOG_DEBUG, " Dropped it");
2594 reclist->records[reclist->num_records] =
2597 YAZ_BIB1_RECORD_EXCEEDS_PREFERRED_MESSAGE_SIZE, 0);
2598 reclist->num_records++;
2599 dumped_records += this_length;
2603 else /* too big entirely */
2605 yaz_log(log_requestdetail, "Record > maxrcdsz "
2607 this_length, a->maximumRecordSize);
2608 reclist->records[reclist->num_records] =
2611 YAZ_BIB1_RECORD_EXCEEDS_MAXIMUM_RECORD_SIZE, 0);
2612 reclist->num_records++;
2613 dumped_records += this_length;
2618 if (!(thisrec = (Z_NamePlusRecord *)
2619 odr_malloc(a->encode, sizeof(*thisrec))))
2621 thisrec->databaseName = odr_strdup_null(a->encode, freq.basename);
2622 thisrec->which = Z_NamePlusRecord_databaseRecord;
2624 if (!freq.output_format)
2626 yaz_log(YLOG_WARN, "bend_fetch output_format not set");
2629 thisrec->u.databaseRecord = z_ext_record_oid(
2630 a->encode, freq.output_format, freq.record, freq.len);
2631 if (!thisrec->u.databaseRecord)
2633 reclist->records[reclist->num_records] = thisrec;
2634 reclist->num_records++;
2635 if (freq.last_in_set)
2638 *num = reclist->num_records;
2642 static Z_APDU *process_searchRequest(association *assoc, request *reqb)
2644 Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
2645 bend_search_rr *bsrr =
2646 (bend_search_rr *)nmem_malloc(reqb->request_mem, sizeof(*bsrr));
2648 yaz_log(log_requestdetail, "Got SearchRequest.");
2649 bsrr->association = assoc;
2650 bsrr->referenceId = req->referenceId;
2651 bsrr->srw_sortKeys = 0;
2652 bsrr->srw_setname = 0;
2653 bsrr->srw_setnameIdleTime = 0;
2654 bsrr->estimated_hit_count = 0;
2655 bsrr->partial_resultset = 0;
2656 bsrr->extra_args = 0;
2657 bsrr->extra_response_data = 0;
2659 yaz_log(log_requestdetail, "ResultSet '%s'", req->resultSetName);
2660 if (req->databaseNames)
2663 for (i = 0; i < req->num_databaseNames; i++)
2664 yaz_log(log_requestdetail, "Database '%s'", req->databaseNames[i]);
2667 yaz_log_zquery_level(log_requestdetail,req->query);
2669 if (assoc->init->bend_search)
2671 bsrr->setname = req->resultSetName;
2672 bsrr->replace_set = *req->replaceIndicator;
2673 bsrr->num_bases = req->num_databaseNames;
2674 bsrr->basenames = req->databaseNames;
2675 bsrr->query = req->query;
2676 bsrr->stream = assoc->encode;
2677 nmem_transfer(odr_getmem(bsrr->stream), reqb->request_mem);
2678 bsrr->decode = assoc->decode;
2679 bsrr->print = assoc->print;
2682 bsrr->errstring = NULL;
2683 bsrr->search_info = NULL;
2684 bsrr->search_input = req->otherInfo;
2685 bsrr->present_number = *req->mediumSetPresentNumber;
2687 if (assoc->server && assoc->server->cql_transform
2688 && req->query->which == Z_Query_type_104
2689 && req->query->u.type_104->which == Z_External_CQL)
2691 /* have a CQL query and a CQL to PQF transform .. */
2693 cql2pqf(bsrr->stream, req->query->u.type_104->u.cql,
2694 assoc->server->cql_transform, bsrr->query,
2695 &bsrr->srw_sortKeys);
2697 bsrr->errcode = yaz_diag_srw_to_bib1(srw_errcode);
2700 if (assoc->server && assoc->server->ccl_transform
2701 && req->query->which == Z_Query_type_2) /*CCL*/
2703 /* have a CCL query and a CCL to PQF transform .. */
2705 ccl2pqf(bsrr->stream, req->query->u.type_2,
2706 assoc->server->ccl_transform, bsrr);
2708 bsrr->errcode = yaz_diag_srw_to_bib1(srw_errcode);
2712 (assoc->init->bend_search)(assoc->backend, bsrr);
2716 /* FIXME - make a diagnostic for it */
2717 yaz_log(YLOG_WARN,"Search not supported ?!?!");
2719 return response_searchRequest(assoc, reqb, bsrr);
2723 * Prepare a searchresponse based on the backend results. We probably want
2724 * to look at making the fetching of records nonblocking as well, but
2725 * so far, we'll keep things simple.
2726 * If bsrt is null, that means we're called in response to a communications
2727 * event, and we'll have to get the response for ourselves.
2729 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
2730 bend_search_rr *bsrt)
2732 Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
2733 Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
2734 Z_SearchResponse *resp = (Z_SearchResponse *)
2735 odr_malloc(assoc->encode, sizeof(*resp));
2736 Odr_int *nulint = odr_intdup(assoc->encode, 0);
2737 Odr_int *next = odr_intdup(assoc->encode, 0);
2738 Odr_int *none = odr_intdup(assoc->encode, Z_SearchResponse_none);
2739 Odr_int returnedrecs = 0;
2741 apdu->which = Z_APDU_searchResponse;
2742 apdu->u.searchResponse = resp;
2743 resp->referenceId = req->referenceId;
2744 resp->additionalSearchInfo = 0;
2745 resp->otherInfo = 0;
2748 yaz_log(YLOG_FATAL, "Bad result from backend");
2751 else if (bsrt->errcode)
2753 resp->records = diagrec(assoc, bsrt->errcode, bsrt->errstring);
2754 resp->resultCount = nulint;
2755 resp->numberOfRecordsReturned = nulint;
2756 resp->nextResultSetPosition = nulint;
2757 resp->searchStatus = odr_booldup(assoc->encode, 0);
2758 resp->resultSetStatus = none;
2759 resp->presentStatus = 0;
2763 bool_t *sr = odr_booldup(assoc->encode, 1);
2764 Odr_int *toget = odr_intdup(assoc->encode, 0);
2765 Z_RecordComposition comp, *compp = 0;
2767 yaz_log(log_requestdetail, "resultCount: " ODR_INT_PRINTF, bsrt->hits);
2770 resp->resultCount = &bsrt->hits;
2772 comp.which = Z_RecordComp_simple;
2773 /* how many records does the user agent want, then? */
2776 else if (bsrt->hits <= *req->smallSetUpperBound)
2778 *toget = bsrt->hits;
2779 if ((comp.u.simple = req->smallSetElementSetNames))
2782 else if (bsrt->hits < *req->largeSetLowerBound)
2784 *toget = *req->mediumSetPresentNumber;
2785 if (*toget > bsrt->hits)
2786 *toget = bsrt->hits;
2787 if ((comp.u.simple = req->mediumSetElementSetNames))
2793 if (*toget && !resp->records)
2795 Odr_int *presst = odr_intdup(assoc->encode, 0);
2796 /* Call bend_present if defined */
2797 if (assoc->init->bend_present)
2799 bend_present_rr *bprr = (bend_present_rr *)
2800 nmem_malloc(reqb->request_mem, sizeof(*bprr));
2801 bprr->setname = req->resultSetName;
2803 bprr->number = odr_int_to_int(*toget);
2804 bprr->format = req->preferredRecordSyntax;
2806 bprr->referenceId = req->referenceId;
2807 bprr->stream = assoc->encode;
2808 bprr->print = assoc->print;
2809 bprr->association = assoc;
2811 bprr->errstring = NULL;
2812 (*assoc->init->bend_present)(assoc->backend, bprr);
2816 resp->records = diagrec(assoc, bprr->errcode, bprr->errstring);
2817 *resp->presentStatus = Z_PresentStatus_failure;
2822 resp->records = pack_records(
2823 assoc, req->resultSetName, 1,
2824 toget, compp, next, presst, req->referenceId,
2825 req->preferredRecordSyntax, NULL);
2828 resp->numberOfRecordsReturned = toget;
2829 returnedrecs = *toget;
2830 resp->presentStatus = presst;
2834 if (*resp->resultCount)
2836 resp->numberOfRecordsReturned = nulint;
2837 resp->presentStatus = 0;
2839 resp->nextResultSetPosition = next;
2840 resp->searchStatus = sr;
2841 resp->resultSetStatus = 0;
2842 if (bsrt->estimated_hit_count)
2844 resp->resultSetStatus = odr_intdup(assoc->encode,
2845 Z_SearchResponse_estimate);
2847 else if (bsrt->partial_resultset)
2849 resp->resultSetStatus = odr_intdup(assoc->encode,
2850 Z_SearchResponse_subset);
2853 resp->additionalSearchInfo = bsrt->search_info;
2858 WRBUF wr = wrbuf_alloc();
2860 for (i = 0 ; i < req->num_databaseNames; i++)
2863 wrbuf_printf(wr, "+");
2864 wrbuf_puts(wr, req->databaseNames[i]);
2866 wrbuf_printf(wr, " ");
2869 wrbuf_printf(wr, "ERROR %d", bsrt->errcode);
2871 wrbuf_printf(wr, "OK " ODR_INT_PRINTF, bsrt->hits);
2872 wrbuf_printf(wr, " %s 1+" ODR_INT_PRINTF " ",
2873 req->resultSetName, returnedrecs);
2874 yaz_query_to_wrbuf(wr, req->query);
2876 yaz_log(log_request, "Search %s", wrbuf_cstr(wr));
2883 * Maybe we got a little over-friendly when we designed bend_fetch to
2884 * get only one record at a time. Some backends can optimise multiple-record
2885 * fetches, and at any rate, there is some overhead involved in
2886 * all that selecting and hopping around. Problem is, of course, that the
2887 * frontend can't know ahead of time how many records it'll need to
2888 * fill the negotiated PDU size. Annoying. Segmentation or not, Z/SR
2889 * is downright lousy as a bulk data transfer protocol.
2891 * To start with, we'll do the fetching of records from the backend
2892 * in one operation: To save some trips in and out of the event-handler,
2893 * and to simplify the interface to pack_records. At any rate, asynch
2894 * operation is more fun in operations that have an unpredictable execution
2895 * speed - which is normally more true for search than for present.
2897 static Z_APDU *process_presentRequest(association *assoc, request *reqb)
2899 Z_PresentRequest *req = reqb->apdu_request->u.presentRequest;
2901 Z_PresentResponse *resp;
2906 yaz_log(log_requestdetail, "Got PresentRequest.");
2908 resp = (Z_PresentResponse *)odr_malloc(assoc->encode, sizeof(*resp));
2910 resp->presentStatus = odr_intdup(assoc->encode, 0);
2911 if (assoc->init->bend_present)
2913 bend_present_rr *bprr = (bend_present_rr *)
2914 nmem_malloc(reqb->request_mem, sizeof(*bprr));
2915 bprr->setname = req->resultSetId;
2916 bprr->start = odr_int_to_int(*req->resultSetStartPoint);
2917 bprr->number = odr_int_to_int(*req->numberOfRecordsRequested);
2918 bprr->format = req->preferredRecordSyntax;
2919 bprr->comp = req->recordComposition;
2920 bprr->referenceId = req->referenceId;
2921 bprr->stream = assoc->encode;
2922 bprr->print = assoc->print;
2923 bprr->association = assoc;
2925 bprr->errstring = NULL;
2926 (*assoc->init->bend_present)(assoc->backend, bprr);
2930 resp->records = diagrec(assoc, bprr->errcode, bprr->errstring);
2931 *resp->presentStatus = Z_PresentStatus_failure;
2932 errcode = bprr->errcode;
2935 apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
2936 next = odr_intdup(assoc->encode, 0);
2937 num = odr_intdup(assoc->encode, 0);
2939 apdu->which = Z_APDU_presentResponse;
2940 apdu->u.presentResponse = resp;
2941 resp->referenceId = req->referenceId;
2942 resp->otherInfo = 0;
2946 *num = *req->numberOfRecordsRequested;
2948 pack_records(assoc, req->resultSetId, *req->resultSetStartPoint,
2949 num, req->recordComposition, next,
2950 resp->presentStatus,
2951 req->referenceId, req->preferredRecordSyntax,
2956 WRBUF wr = wrbuf_alloc();
2957 wrbuf_printf(wr, "Present ");
2959 if (*resp->presentStatus == Z_PresentStatus_failure)
2960 wrbuf_printf(wr, "ERROR %d ", errcode);
2961 else if (*resp->presentStatus == Z_PresentStatus_success)
2962 wrbuf_printf(wr, "OK - ");
2964 wrbuf_printf(wr, "Partial " ODR_INT_PRINTF " - ",
2965 *resp->presentStatus);
2967 wrbuf_printf(wr, " %s " ODR_INT_PRINTF "+" ODR_INT_PRINTF " ",
2968 req->resultSetId, *req->resultSetStartPoint,
2969 *req->numberOfRecordsRequested);
2970 yaz_log(log_request, "%s", wrbuf_cstr(wr) );
2975 resp->numberOfRecordsReturned = num;
2976 resp->nextResultSetPosition = next;
2982 * Scan was implemented rather in a hurry, and with support for only the basic
2983 * elements of the service in the backend API. Suggestions are welcome.
2985 static Z_APDU *process_scanRequest(association *assoc, request *reqb)
2987 Z_ScanRequest *req = reqb->apdu_request->u.scanRequest;
2988 Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
2989 Z_ScanResponse *res = (Z_ScanResponse *)
2990 odr_malloc(assoc->encode, sizeof(*res));
2991 Odr_int *scanStatus = odr_intdup(assoc->encode, Z_Scan_failure);
2992 Odr_int *numberOfEntriesReturned = odr_intdup(assoc->encode, 0);
2993 Z_ListEntries *ents = (Z_ListEntries *)
2994 odr_malloc(assoc->encode, sizeof(*ents));
2995 Z_DiagRecs *diagrecs_p = NULL;
2996 bend_scan_rr *bsrr = (bend_scan_rr *)
2997 odr_malloc(assoc->encode, sizeof(*bsrr));
2998 struct scan_entry *save_entries;
3001 yaz_log(log_requestdetail, "Got ScanRequest");
3003 apdu->which = Z_APDU_scanResponse;
3004 apdu->u.scanResponse = res;
3005 res->referenceId = req->referenceId;
3007 /* if step is absent, set it to 0 */
3009 step_size = odr_int_to_int(*req->stepSize);
3012 res->scanStatus = scanStatus;
3013 res->numberOfEntriesReturned = numberOfEntriesReturned;
3014 res->positionOfTerm = 0;
3015 res->entries = ents;
3016 ents->num_entries = 0;
3017 ents->entries = NULL;
3018 ents->num_nonsurrogateDiagnostics = 0;
3019 ents->nonsurrogateDiagnostics = NULL;
3020 res->attributeSet = 0;
3023 if (req->databaseNames)
3026 for (i = 0; i < req->num_databaseNames; i++)
3027 yaz_log(log_requestdetail, "Database '%s'", req->databaseNames[i]);
3029 bsrr->scanClause = 0;
3031 bsrr->errstring = 0;
3032 bsrr->num_bases = req->num_databaseNames;
3033 bsrr->basenames = req->databaseNames;
3034 bsrr->num_entries = odr_int_to_int(*req->numberOfTermsRequested);
3035 bsrr->term = req->termListAndStartPoint;
3036 bsrr->referenceId = req->referenceId;
3037 bsrr->stream = assoc->encode;
3038 bsrr->print = assoc->print;
3039 bsrr->step_size = &step_size;
3040 bsrr->setname = yaz_oi_get_string_oid(&req->otherInfo,
3041 yaz_oid_userinfo_scan_set, 1, 0);
3043 bsrr->extra_args = 0;
3044 bsrr->extra_response_data = 0;
3045 /* For YAZ 2.0 and earlier it was the backend handler that
3046 initialized entries (member display_term did not exist)
3047 YAZ 2.0 and later sets 'entries' and initialize all members
3048 including 'display_term'. If YAZ 2.0 or later sees that
3049 entries was modified - we assume that it is an old handler and
3050 that 'display_term' is _not_ set.
3052 if (bsrr->num_entries > 0)
3055 bsrr->entries = (struct scan_entry *)
3056 odr_malloc(assoc->decode, sizeof(*bsrr->entries) *
3058 for (i = 0; i<bsrr->num_entries; i++)
3060 bsrr->entries[i].term = 0;
3061 bsrr->entries[i].occurrences = 0;
3062 bsrr->entries[i].errcode = 0;
3063 bsrr->entries[i].errstring = 0;
3064 bsrr->entries[i].display_term = 0;
3067 save_entries = bsrr->entries; /* save it so we can compare later */
3069 bsrr->attributeset = req->attributeSet;
3070 log_scan_term_level(log_requestdetail, req->termListAndStartPoint,
3071 bsrr->attributeset);
3072 bsrr->term_position = req->preferredPositionInResponse ?
3073 odr_int_to_int(*req->preferredPositionInResponse) : 1;
3075 ((int (*)(void *, bend_scan_rr *))
3076 (*assoc->init->bend_scan))(assoc->backend, bsrr);
3079 diagrecs_p = zget_DiagRecs(assoc->encode,
3080 bsrr->errcode, bsrr->errstring);
3084 Z_Entry **tab = (Z_Entry **)
3085 odr_malloc(assoc->encode, sizeof(*tab) * bsrr->num_entries);
3087 if (bsrr->status == BEND_SCAN_PARTIAL)
3088 *scanStatus = Z_Scan_partial_5;
3090 *scanStatus = Z_Scan_success;
3091 res->stepSize = odr_intdup(assoc->encode, step_size);
3092 ents->entries = tab;
3093 ents->num_entries = bsrr->num_entries;
3094 res->numberOfEntriesReturned = odr_intdup(assoc->encode,
3096 res->positionOfTerm = odr_intdup(assoc->encode, bsrr->term_position);
3097 for (i = 0; i < bsrr->num_entries; i++)
3103 tab[i] = e = (Z_Entry *)odr_malloc(assoc->encode, sizeof(*e));
3104 if (bsrr->entries[i].occurrences >= 0)
3106 e->which = Z_Entry_termInfo;
3107 e->u.termInfo = t = (Z_TermInfo *)
3108 odr_malloc(assoc->encode, sizeof(*t));
3109 t->suggestedAttributes = 0;
3111 if (save_entries == bsrr->entries &&
3112 bsrr->entries[i].display_term)
3114 /* the entries was _not_ set by the handler. So it's
3115 safe to test for new member display_term. It is
3118 t->displayTerm = odr_strdup(assoc->encode,
3119 bsrr->entries[i].display_term);
3121 t->alternativeTerm = 0;
3122 t->byAttributes = 0;
3123 t->otherTermInfo = 0;
3124 t->globalOccurrences = &bsrr->entries[i].occurrences;
3125 t->term = (Z_Term *)
3126 odr_malloc(assoc->encode, sizeof(*t->term));
3127 t->term->which = Z_Term_general;
3128 t->term->u.general = o =
3129 (Odr_oct *)odr_malloc(assoc->encode, sizeof(Odr_oct));
3131 odr_malloc(assoc->encode, o->len =
3132 strlen(bsrr->entries[i].term));
3136 memcpy(o->buf, bsrr->entries[i].term, o->len);
3137 yaz_log(YLOG_DEBUG, " term #%d: '%s' (" ODR_INT_PRINTF ")", i,
3138 bsrr->entries[i].term, bsrr->entries[i].occurrences);
3142 Z_DiagRecs *drecs = zget_DiagRecs(assoc->encode,
3143 bsrr->entries[i].errcode,
3144 bsrr->entries[i].errstring);
3145 assert(drecs->num_diagRecs == 1);
3146 e->which = Z_Entry_surrogateDiagnostic;
3147 assert(drecs->diagRecs[0]);
3148 e->u.surrogateDiagnostic = drecs->diagRecs[0];
3154 ents->num_nonsurrogateDiagnostics = diagrecs_p->num_diagRecs;
3155 ents->nonsurrogateDiagnostics = diagrecs_p->diagRecs;
3160 WRBUF wr = wrbuf_alloc();
3161 wrbuf_printf(wr, "Scan ");
3162 for (i = 0 ; i < req->num_databaseNames; i++)
3165 wrbuf_printf(wr, "+");
3166 wrbuf_puts(wr, req->databaseNames[i]);
3169 wrbuf_printf(wr, " ");
3172 wr_diag(wr, bsrr->errcode, bsrr->errstring);
3174 wrbuf_printf(wr, "OK");
3176 wrbuf_printf(wr, " " ODR_INT_PRINTF " - " ODR_INT_PRINTF "+"
3177 ODR_INT_PRINTF "+" ODR_INT_PRINTF,
3178 res->numberOfEntriesReturned ?
3179 *res->numberOfEntriesReturned : 0,
3180 (req->preferredPositionInResponse ?
3181 *req->preferredPositionInResponse : 1),
3182 *req->numberOfTermsRequested,
3183 (res->stepSize ? *res->stepSize : 1));
3186 wrbuf_printf(wr, "+%s", bsrr->setname);
3188 wrbuf_printf(wr, " ");
3189 yaz_scan_to_wrbuf(wr, req->termListAndStartPoint,
3190 bsrr->attributeset);
3191 yaz_log(log_request, "%s", wrbuf_cstr(wr) );
3197 static Z_APDU *process_sortRequest(association *assoc, request *reqb)
3200 Z_SortRequest *req = reqb->apdu_request->u.sortRequest;
3201 Z_SortResponse *res = (Z_SortResponse *)
3202 odr_malloc(assoc->encode, sizeof(*res));
3203 bend_sort_rr *bsrr = (bend_sort_rr *)
3204 odr_malloc(assoc->encode, sizeof(*bsrr));
3206 Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
3208 yaz_log(log_requestdetail, "Got SortRequest.");
3210 bsrr->num_input_setnames = req->num_inputResultSetNames;
3211 for (i=0;i<req->num_inputResultSetNames;i++)
3212 yaz_log(log_requestdetail, "Input resultset: '%s'",
3213 req->inputResultSetNames[i]);
3214 bsrr->input_setnames = req->inputResultSetNames;
3215 bsrr->referenceId = req->referenceId;
3216 bsrr->output_setname = req->sortedResultSetName;
3217 yaz_log(log_requestdetail, "Output resultset: '%s'",
3218 req->sortedResultSetName);
3219 bsrr->sort_sequence = req->sortSequence;
3220 /*FIXME - dump those sequences too */
3221 bsrr->stream = assoc->encode;
3222 bsrr->print = assoc->print;
3224 bsrr->sort_status = Z_SortResponse_failure;
3226 bsrr->errstring = 0;
3228 (*assoc->init->bend_sort)(assoc->backend, bsrr);
3230 res->referenceId = bsrr->referenceId;
3231 res->sortStatus = odr_intdup(assoc->encode, bsrr->sort_status);
3232 res->resultSetStatus = 0;
3235 Z_DiagRecs *dr = zget_DiagRecs(assoc->encode,
3236 bsrr->errcode, bsrr->errstring);
3237 res->diagnostics = dr->diagRecs;
3238 res->num_diagnostics = dr->num_diagRecs;
3242 res->num_diagnostics = 0;
3243 res->diagnostics = 0;
3245 res->resultCount = 0;
3248 apdu->which = Z_APDU_sortResponse;
3249 apdu->u.sortResponse = res;
3252 WRBUF wr = wrbuf_alloc();
3253 wrbuf_printf(wr, "Sort ");
3255 wrbuf_printf(wr, " ERROR %d", bsrr->errcode);
3257 wrbuf_printf(wr, "OK -");
3258 wrbuf_printf(wr, " (");
3259 for (i = 0; i<req->num_inputResultSetNames; i++)
3262 wrbuf_printf(wr, "+");
3263 wrbuf_puts(wr, req->inputResultSetNames[i]);
3265 wrbuf_printf(wr, ")->%s ",req->sortedResultSetName);
3267 yaz_log(log_request, "%s", wrbuf_cstr(wr) );
3273 static Z_APDU *process_deleteRequest(association *assoc, request *reqb)
3276 Z_DeleteResultSetRequest *req =
3277 reqb->apdu_request->u.deleteResultSetRequest;
3278 Z_DeleteResultSetResponse *res = (Z_DeleteResultSetResponse *)
3279 odr_malloc(assoc->encode, sizeof(*res));
3280 bend_delete_rr *bdrr = (bend_delete_rr *)
3281 odr_malloc(assoc->encode, sizeof(*bdrr));
3282 Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
3284 yaz_log(log_requestdetail, "Got DeleteRequest.");
3286 bdrr->num_setnames = req->num_resultSetList;
3287 bdrr->setnames = req->resultSetList;
3288 for (i = 0; i<req->num_resultSetList; i++)
3289 yaz_log(log_requestdetail, "resultset: '%s'",
3290 req->resultSetList[i]);
3291 bdrr->stream = assoc->encode;
3292 bdrr->print = assoc->print;
3293 bdrr->function = odr_int_to_int(*req->deleteFunction);
3294 bdrr->referenceId = req->referenceId;
3296 if (bdrr->num_setnames > 0)
3298 bdrr->statuses = (int*)
3299 odr_malloc(assoc->encode, sizeof(*bdrr->statuses) *
3300 bdrr->num_setnames);
3301 for (i = 0; i < bdrr->num_setnames; i++)
3302 bdrr->statuses[i] = 0;
3304 (*assoc->init->bend_delete)(assoc->backend, bdrr);
3306 res->referenceId = req->referenceId;
3308 res->deleteOperationStatus = odr_intdup(assoc->encode,bdrr->delete_status);
3310 res->deleteListStatuses = 0;
3311 if (bdrr->num_setnames > 0)
3314 res->deleteListStatuses = (Z_ListStatuses *)
3315 odr_malloc(assoc->encode, sizeof(*res->deleteListStatuses));
3316 res->deleteListStatuses->num = bdrr->num_setnames;
3317 res->deleteListStatuses->elements =
3319 odr_malloc(assoc->encode,
3320 sizeof(*res->deleteListStatuses->elements) *
3321 bdrr->num_setnames);
3322 for (i = 0; i<bdrr->num_setnames; i++)
3324 res->deleteListStatuses->elements[i] =
3326 odr_malloc(assoc->encode,
3327 sizeof(**res->deleteListStatuses->elements));
3328 res->deleteListStatuses->elements[i]->status =
3329 odr_intdup(assoc->encode, bdrr->statuses[i]);
3330 res->deleteListStatuses->elements[i]->id =
3331 odr_strdup(assoc->encode, bdrr->setnames[i]);
3334 res->numberNotDeleted = 0;
3335 res->bulkStatuses = 0;
3336 res->deleteMessage = 0;
3339 apdu->which = Z_APDU_deleteResultSetResponse;
3340 apdu->u.deleteResultSetResponse = res;
3343 WRBUF wr = wrbuf_alloc();
3344 wrbuf_printf(wr, "Delete ");
3345 if (bdrr->delete_status)
3346 wrbuf_printf(wr, "ERROR %d", bdrr->delete_status);
3348 wrbuf_printf(wr, "OK -");
3349 for (i = 0; i<req->num_resultSetList; i++)
3350 wrbuf_printf(wr, " %s ", req->resultSetList[i]);
3351 yaz_log(log_request, "%s", wrbuf_cstr(wr) );
3357 static void process_close(association *assoc, request *reqb)
3359 Z_Close *req = reqb->apdu_request->u.close;
3360 static char *reasons[] =
3367 "securityViolation",
3374 yaz_log(log_requestdetail, "Got Close, reason %s, message %s",
3375 reasons[*req->closeReason], req->diagnosticInformation ?
3376 req->diagnosticInformation : "NULL");
3377 if (assoc->version < 3) /* to make do_force respond with close */
3379 do_close_req(assoc, Z_Close_finished,
3380 "Association terminated by client", reqb);
3381 yaz_log(log_request,"Close OK");
3384 static Z_APDU *process_segmentRequest(association *assoc, request *reqb)
3386 bend_segment_rr req;
3388 req.segment = reqb->apdu_request->u.segmentRequest;
3389 req.stream = assoc->encode;
3390 req.decode = assoc->decode;
3391 req.print = assoc->print;
3392 req.association = assoc;
3394 (*assoc->init->bend_segment)(assoc->backend, &req);
3399 static Z_APDU *process_ESRequest(association *assoc, request *reqb)
3401 bend_esrequest_rr esrequest;
3402 const char *ext_name = "unknown";
3404 Z_ExtendedServicesRequest *req =
3405 reqb->apdu_request->u.extendedServicesRequest;
3406 Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_extendedServicesResponse);
3408 Z_ExtendedServicesResponse *resp = apdu->u.extendedServicesResponse;
3410 esrequest.esr = reqb->apdu_request->u.extendedServicesRequest;
3411 esrequest.stream = assoc->encode;
3412 esrequest.decode = assoc->decode;
3413 esrequest.print = assoc->print;
3414 esrequest.errcode = 0;
3415 esrequest.errstring = NULL;
3416 esrequest.association = assoc;
3417 esrequest.taskPackage = 0;
3418 esrequest.referenceId = req->referenceId;
3420 if (esrequest.esr && esrequest.esr->taskSpecificParameters)
3422 switch(esrequest.esr->taskSpecificParameters->which)
3424 case Z_External_itemOrder:
3425 ext_name = "ItemOrder"; break;
3426 case Z_External_update:
3427 ext_name = "Update"; break;
3428 case Z_External_update0:
3429 ext_name = "Update0"; break;
3430 case Z_External_ESAdmin:
3431 ext_name = "Admin"; break;
3436 (*assoc->init->bend_esrequest)(assoc->backend, &esrequest);
3438 resp->referenceId = req->referenceId;
3440 if (esrequest.errcode == -1)
3442 /* Backend service indicates request will be processed */
3443 yaz_log(log_request, "Extended Service: %s (accepted)", ext_name);
3444 *resp->operationStatus = Z_ExtendedServicesResponse_accepted;
3446 else if (esrequest.errcode == 0)
3448 /* Backend service indicates request will be processed */
3449 yaz_log(log_request, "Extended Service: %s (done)", ext_name);
3450 *resp->operationStatus = Z_ExtendedServicesResponse_done;
3454 Z_DiagRecs *diagRecs =
3455 zget_DiagRecs(assoc->encode, esrequest.errcode,
3456 esrequest.errstring);
3457 /* Backend indicates error, request will not be processed */
3458 yaz_log(log_request, "Extended Service: %s (failed)", ext_name);
3459 *resp->operationStatus = Z_ExtendedServicesResponse_failure;
3460 resp->num_diagnostics = diagRecs->num_diagRecs;
3461 resp->diagnostics = diagRecs->diagRecs;
3464 WRBUF wr = wrbuf_alloc();
3465 wrbuf_diags(wr, resp->num_diagnostics, resp->diagnostics);
3466 yaz_log(log_request, "EsRequest %s", wrbuf_cstr(wr) );
3471 /* Do something with the members of bend_extendedservice */
3472 if (esrequest.taskPackage)
3474 resp->taskPackage = z_ext_record_oid(
3475 assoc->encode, yaz_oid_recsyn_extended,
3476 (const char *) esrequest.taskPackage, -1);
3478 yaz_log(YLOG_DEBUG,"Send the result apdu");
3482 int bend_assoc_is_alive(bend_association assoc)
3484 if (assoc->state == ASSOC_DEAD)
3485 return 0; /* already marked as dead. Don't check I/O chan anymore */
3487 return iochan_is_alive(assoc->client_chan);
3494 * c-file-style: "Stroustrup"
3495 * indent-tabs-mode: nil
3497 * vim: shiftwidth=4 tabstop=8 expandtab