Proper diagnostics for unsupp operation YAZ-696
[yaz-moved-to-github.git] / src / seshigh.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2013 Index Data
3  * See the file LICENSE for details.
4  */
5 /**
6  * \file seshigh.c
7  * \brief Implements GFS session logic.
8  *
9  * Frontend server logic.
10  *
11  * This code receives incoming APDUs, and handles client requests by means
12  * of the backend API.
13  *
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
18  * are implemented.
19  *
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.
26  *
27  */
28 #if HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31
32 #include <limits.h>
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <assert.h>
36
37 #if HAVE_SYS_TYPES_H
38 #include <sys/types.h>
39 #endif
40 #if HAVE_SYS_STAT_H
41 #include <sys/stat.h>
42 #endif
43
44 #ifdef WIN32
45 #include <io.h>
46 #define S_ISREG(x) (x & _S_IFREG)
47 #include <process.h>
48 #endif
49
50 #if HAVE_UNISTD_H
51 #include <unistd.h>
52 #endif
53
54 #if YAZ_HAVE_XML2
55 #include <libxml/parser.h>
56 #include <libxml/tree.h>
57 #endif
58
59 #include <yaz/xmalloc.h>
60 #include <yaz/comstack.h>
61 #include "eventl.h"
62 #include "session.h"
63 #include "mime.h"
64 #include <yaz/proto.h>
65 #include <yaz/oid_db.h>
66 #include <yaz/log.h>
67 #include <yaz/logrpn.h>
68 #include <yaz/querytowrbuf.h>
69 #include <yaz/statserv.h>
70 #include <yaz/diagbib1.h>
71 #include <yaz/charneg.h>
72 #include <yaz/otherinfo.h>
73 #include <yaz/yaz-util.h>
74 #include <yaz/pquery.h>
75 #include <yaz/oid_db.h>
76
77 #include <yaz/srw.h>
78 #include <yaz/backend.h>
79 #include <yaz/yaz-ccl.h>
80
81 static void process_gdu_request(association *assoc, request *req);
82 static int process_z_request(association *assoc, request *req, char **msg);
83 static int process_gdu_response(association *assoc, request *req, Z_GDU *res);
84 static int process_z_response(association *assoc, request *req, Z_APDU *res);
85 static Z_APDU *process_initRequest(association *assoc, request *reqb);
86 static Z_External *init_diagnostics(ODR odr, int errcode,
87                                     const char *errstring);
88 static Z_APDU *process_searchRequest(association *assoc, request *reqb);
89 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
90                                       bend_search_rr *bsrr);
91 static Z_APDU *process_presentRequest(association *assoc, request *reqb);
92 static Z_APDU *process_scanRequest(association *assoc, request *reqb);
93 static Z_APDU *process_sortRequest(association *assoc, request *reqb);
94 static void process_close(association *assoc, request *reqb);
95 static Z_APDU *process_deleteRequest(association *assoc, request *reqb);
96 static Z_APDU *process_segmentRequest(association *assoc, request *reqb);
97 static Z_APDU *process_ESRequest(association *assoc, request *reqb);
98
99 /* dynamic logging levels */
100 static int logbits_set = 0;
101 static int log_session = 0; /* one-line logs for session */
102 static int log_sessiondetail = 0; /* more detailed stuff */
103 static int log_request = 0; /* one-line logs for requests */
104 static int log_requestdetail = 0;  /* more detailed stuff */
105
106 /** get_logbits sets global loglevel bits */
107 static void get_logbits(void)
108 { /* needs to be called after parsing cmd-line args that can set loglevels!*/
109     if (!logbits_set)
110     {
111         logbits_set = 1;
112         log_session = yaz_log_module_level("session");
113         log_sessiondetail = yaz_log_module_level("sessiondetail");
114         log_request = yaz_log_module_level("request");
115         log_requestdetail = yaz_log_module_level("requestdetail");
116     }
117 }
118
119 static void wr_diag(WRBUF w, int error, const char *addinfo)
120 {
121     wrbuf_printf(w, "ERROR %d+", error);
122     wrbuf_puts_replace_char(w, diagbib1_str(error), ' ', '_');
123     if (addinfo)
124     {
125         wrbuf_puts(w, "+");
126         wrbuf_puts_replace_char(w, addinfo, ' ', '_');
127     }
128     wrbuf_puts(w, " ");
129 }
130
131 static int odr_int_to_int(Odr_int v)
132 {
133     if (v >= INT_MAX)
134         return INT_MAX;
135     else if (v <= INT_MIN)
136         return INT_MIN;
137     else
138         return (int) v;
139 }
140
141 /*
142  * Create and initialize a new association-handle.
143  *  channel  : iochannel for the current line.
144  *  link     : communications channel.
145  * Returns: 0 or a new association handle.
146  */
147 association *create_association(IOCHAN channel, COMSTACK link,
148                                 const char *apdufile)
149 {
150     association *anew;
151
152     if (!logbits_set)
153         get_logbits();
154     if (!(anew = (association *)xmalloc(sizeof(*anew))))
155         return 0;
156     anew->init = 0;
157     anew->version = 0;
158     anew->last_control = 0;
159     anew->client_chan = channel;
160     anew->client_link = link;
161     anew->cs_get_mask = 0;
162     anew->cs_put_mask = 0;
163     anew->cs_accept_mask = 0;
164     if (!(anew->decode = odr_createmem(ODR_DECODE)) ||
165         !(anew->encode = odr_createmem(ODR_ENCODE)))
166         return 0;
167     if (apdufile && *apdufile)
168     {
169         FILE *f;
170
171         if (!(anew->print = odr_createmem(ODR_PRINT)))
172             return 0;
173         if (*apdufile == '@')
174         {
175             odr_setprint(anew->print, yaz_log_file());
176         }
177         else if (*apdufile != '-')
178         {
179             char filename[256];
180             sprintf(filename, "%.200s.%ld", apdufile, (long)getpid());
181             if (!(f = fopen(filename, "w")))
182             {
183                 yaz_log(YLOG_WARN|YLOG_ERRNO, "%s", filename);
184                 return 0;
185             }
186             setvbuf(f, 0, _IONBF, 0);
187             odr_setprint(anew->print, f);
188         }
189     }
190     else
191         anew->print = 0;
192     anew->input_buffer = 0;
193     anew->input_buffer_len = 0;
194     anew->backend = 0;
195     anew->state = ASSOC_NEW;
196     request_initq(&anew->incoming);
197     request_initq(&anew->outgoing);
198     anew->proto = cs_getproto(link);
199     anew->server = 0;
200     return anew;
201 }
202
203 /*
204  * Free association and release resources.
205  */
206 void destroy_association(association *h)
207 {
208     statserv_options_block *cb = statserv_getcontrol();
209     request *req;
210
211     xfree(h->init);
212     odr_destroy(h->decode);
213     odr_destroy(h->encode);
214     if (h->print)
215         odr_destroy(h->print);
216     if (h->input_buffer)
217     xfree(h->input_buffer);
218     if (h->backend)
219         (*cb->bend_close)(h->backend);
220     while ((req = request_deq(&h->incoming)))
221         request_release(req);
222     while ((req = request_deq(&h->outgoing)))
223         request_release(req);
224     request_delq(&h->incoming);
225     request_delq(&h->outgoing);
226     xfree(h);
227     xmalloc_trav("session closed");
228 }
229
230 static void do_close_req(association *a, int reason, char *message,
231                          request *req)
232 {
233     Z_APDU *apdu = zget_APDU(a->encode, Z_APDU_close);
234     Z_Close *cls = apdu->u.close;
235
236     /* Purge request queue */
237     while (request_deq(&a->incoming));
238     while (request_deq(&a->outgoing));
239     if (a->version >= 3)
240     {
241         yaz_log(log_requestdetail, "Sending Close PDU, reason=%d, message=%s",
242             reason, message ? message : "none");
243         *cls->closeReason = reason;
244         cls->diagnosticInformation = message;
245         process_z_response(a, req, apdu);
246         iochan_settimeout(a->client_chan, 20);
247     }
248     else
249     {
250         request_release(req);
251         yaz_log(log_requestdetail, "v2 client. No Close PDU");
252         iochan_setevent(a->client_chan, EVENT_TIMEOUT); /* force imm close */
253         a->cs_put_mask = 0;
254     }
255     a->state = ASSOC_DEAD;
256 }
257
258 static void do_close(association *a, int reason, char *message)
259 {
260     request *req = request_get(&a->outgoing);
261     do_close_req(a, reason, message, req);
262 }
263
264
265 int ir_read(IOCHAN h, int event)
266 {
267     association *assoc = (association *)iochan_getdata(h);
268     COMSTACK conn = assoc->client_link;
269     request *req;
270
271     if ((assoc->cs_put_mask & EVENT_INPUT) == 0 && (event & assoc->cs_get_mask))
272     {
273         /* We aren't speaking to this fellow */
274         if (assoc->state == ASSOC_DEAD)
275         {
276             yaz_log(log_session, "Connection closed - end of session");
277             cs_close(conn);
278             destroy_association(assoc);
279             iochan_destroy(h);
280             return 0;
281         }
282         assoc->cs_get_mask = EVENT_INPUT;
283
284         do
285         {
286             int res = cs_get(conn, &assoc->input_buffer,
287                              &assoc->input_buffer_len);
288             if (res < 0 && cs_errno(conn) == CSBUFSIZE)
289             {
290                 yaz_log(log_session, "Connection error: %s res=%d",
291                         cs_errmsg(cs_errno(conn)), res);
292                 req = request_get(&assoc->incoming); /* get a new request */
293                 do_close_req(assoc, Z_Close_protocolError,
294                              "Incoming package too large", req);
295                 return 0;
296             }
297             else if (res <= 0)
298             {
299                 assoc->state = ASSOC_DEAD;
300                 yaz_log(log_session, "Connection closed by client");
301                 return 0;
302             }
303             else if (res == 1) /* incomplete read - wait for more  */
304             {
305                 if (conn->io_pending & CS_WANT_WRITE)
306                     assoc->cs_get_mask |= EVENT_OUTPUT;
307                 iochan_setflag(h, assoc->cs_get_mask);
308                 return 0;
309             }
310             /* we got a complete PDU. Let's decode it */
311             yaz_log(YLOG_DEBUG, "Got PDU, %d bytes: lead=%02X %02X %02X", res,
312                     assoc->input_buffer[0] & 0xff,
313                     assoc->input_buffer[1] & 0xff,
314                     assoc->input_buffer[2] & 0xff);
315             req = request_get(&assoc->incoming); /* get a new request */
316             odr_reset(assoc->decode);
317             odr_setbuf(assoc->decode, assoc->input_buffer, res, 0);
318             if (!z_GDU(assoc->decode, &req->gdu_request, 0, 0))
319             {
320                 yaz_log(YLOG_WARN, "ODR error on incoming PDU: %s [element %s] "
321                         "[near byte %ld] ",
322                         odr_errmsg(odr_geterror(assoc->decode)),
323                         odr_getelement(assoc->decode),
324                         (long) odr_offset(assoc->decode));
325                 if (assoc->decode->error != OHTTP)
326                 {
327                     yaz_log(YLOG_WARN, "PDU dump:");
328                     odr_dumpBER(yaz_log_file(), assoc->input_buffer, res);
329                     request_release(req);
330                     do_close(assoc, Z_Close_protocolError, "Malformed package");
331                 }
332                 else
333                 {
334                     Z_GDU *p = z_get_HTTP_Response(assoc->encode, 400);
335                     assoc->state = ASSOC_DEAD;
336                     process_gdu_response(assoc, req, p);
337                 }
338                 return 0;
339             }
340             req->request_mem = odr_extract_mem(assoc->decode);
341             if (assoc->print)
342             {
343                 if (!z_GDU(assoc->print, &req->gdu_request, 0, 0))
344                     yaz_log(YLOG_WARN, "ODR print error: %s",
345                             odr_errmsg(odr_geterror(assoc->print)));
346                 odr_reset(assoc->print);
347             }
348             request_enq(&assoc->incoming, req);
349         }
350         while (cs_more(conn));
351     }
352     return 1;
353 }
354
355 /*
356  * This is where PDUs from the client are read and the further
357  * processing is initiated. Flow of control moves down through the
358  * various process_* functions below, until the encoded result comes back up
359  * to the output handler in here.
360  *
361  *  h     : the I/O channel that has an outstanding event.
362  *  event : the current outstanding event.
363  */
364 void ir_session(IOCHAN h, int event)
365 {
366     int res;
367     association *assoc = (association *)iochan_getdata(h);
368     COMSTACK conn = assoc->client_link;
369     request *req;
370
371     assert(h && conn && assoc);
372     if (event == EVENT_TIMEOUT)
373     {
374         if (assoc->state != ASSOC_UP)
375         {
376             yaz_log(log_session, "Timeout. Closing connection");
377             /* do we need to lod this at all */
378             cs_close(conn);
379             destroy_association(assoc);
380             iochan_destroy(h);
381         }
382         else
383         {
384             yaz_log(log_sessiondetail, "Timeout. Sending Z39.50 Close");
385             do_close(assoc, Z_Close_lackOfActivity, 0);
386         }
387         return;
388     }
389     if (event & assoc->cs_accept_mask)
390     {
391         if (!cs_accept(conn))
392         {
393             yaz_log(YLOG_WARN, "accept failed");
394             destroy_association(assoc);
395             iochan_destroy(h);
396             return;
397         }
398         iochan_clearflag(h, EVENT_OUTPUT);
399         if (conn->io_pending)
400         {   /* cs_accept didn't complete */
401             assoc->cs_accept_mask =
402                 ((conn->io_pending & CS_WANT_WRITE) ? EVENT_OUTPUT : 0) |
403                 ((conn->io_pending & CS_WANT_READ) ? EVENT_INPUT : 0);
404
405             iochan_setflag(h, assoc->cs_accept_mask);
406         }
407         else
408         {   /* cs_accept completed. Prepare for reading (cs_get) */
409             assoc->cs_accept_mask = 0;
410             assoc->cs_get_mask = EVENT_INPUT;
411             iochan_setflag(h, assoc->cs_get_mask);
412         }
413         return;
414     }
415     if (event & assoc->cs_get_mask) /* input */
416     {
417         if (!ir_read(h, event))
418             return;
419         req = request_head(&assoc->incoming);
420         if (req->state == REQUEST_IDLE)
421         {
422             request_deq(&assoc->incoming);
423             process_gdu_request(assoc, req);
424         }
425     }
426     if (event & assoc->cs_put_mask)
427     {
428         request *req = request_head(&assoc->outgoing);
429
430         assoc->cs_put_mask = 0;
431         yaz_log(YLOG_DEBUG, "ir_session (output)");
432         req->state = REQUEST_PENDING;
433         switch (res = cs_put(conn, req->response, req->len_response))
434         {
435         case -1:
436             yaz_log(log_sessiondetail, "Connection closed by client");
437             cs_close(conn);
438             destroy_association(assoc);
439             iochan_destroy(h);
440             break;
441         case 0: /* all sent - release the request structure */
442             yaz_log(YLOG_DEBUG, "Wrote PDU, %d bytes", req->len_response);
443 #if 0
444             yaz_log(YLOG_DEBUG, "HTTP out:\n%.*s", req->len_response,
445                     req->response);
446 #endif
447             request_deq(&assoc->outgoing);
448             request_release(req);
449             if (!request_head(&assoc->outgoing))
450             {   /* restore mask for cs_get operation ... */
451                 iochan_clearflag(h, EVENT_OUTPUT|EVENT_INPUT);
452                 iochan_setflag(h, assoc->cs_get_mask);
453                 if (assoc->state == ASSOC_DEAD)
454                     iochan_setevent(assoc->client_chan, EVENT_TIMEOUT);
455             }
456             else
457             {
458                 assoc->cs_put_mask = EVENT_OUTPUT;
459             }
460             break;
461         default:
462             if (conn->io_pending & CS_WANT_WRITE)
463                 assoc->cs_put_mask |= EVENT_OUTPUT;
464             if (conn->io_pending & CS_WANT_READ)
465                 assoc->cs_put_mask |= EVENT_INPUT;
466             iochan_setflag(h, assoc->cs_put_mask);
467         }
468     }
469     if (event & EVENT_EXCEPT)
470     {
471         yaz_log(YLOG_WARN, "ir_session (exception)");
472         cs_close(conn);
473         destroy_association(assoc);
474         iochan_destroy(h);
475     }
476 }
477
478 static int process_z_request(association *assoc, request *req, char **msg);
479
480
481 static void assoc_init_reset(association *assoc)
482 {
483     xfree(assoc->init);
484     assoc->init = (bend_initrequest *) xmalloc(sizeof(*assoc->init));
485
486     assoc->init->stream = assoc->encode;
487     assoc->init->print = assoc->print;
488     assoc->init->auth = 0;
489     assoc->init->referenceId = 0;
490     assoc->init->implementation_version = 0;
491     assoc->init->implementation_id = 0;
492     assoc->init->implementation_name = 0;
493     assoc->init->query_charset = 0;
494     assoc->init->records_in_same_charset = 0;
495     assoc->init->bend_sort = NULL;
496     assoc->init->bend_search = NULL;
497     assoc->init->bend_present = NULL;
498     assoc->init->bend_esrequest = NULL;
499     assoc->init->bend_delete = NULL;
500     assoc->init->bend_scan = NULL;
501     assoc->init->bend_segment = NULL;
502     assoc->init->bend_fetch = NULL;
503     assoc->init->bend_explain = NULL;
504     assoc->init->bend_srw_scan = NULL;
505     assoc->init->bend_srw_update = NULL;
506     assoc->init->named_result_sets = 0;
507
508     assoc->init->charneg_request = NULL;
509     assoc->init->charneg_response = NULL;
510
511     assoc->init->decode = assoc->decode;
512     assoc->init->peer_name =
513         odr_strdup(assoc->encode, cs_addrstr(assoc->client_link));
514
515     yaz_log(log_requestdetail, "peer %s", assoc->init->peer_name);
516 }
517
518 static int srw_bend_init(association *assoc, Z_SRW_diagnostic **d, int *num, Z_SRW_PDU *sr)
519 {
520     statserv_options_block *cb = statserv_getcontrol();
521     if (!assoc->init)
522     {
523         const char *encoding = "UTF-8";
524         Z_External *ce;
525         bend_initresult *binitres;
526
527         yaz_log(log_requestdetail, "srw_bend_init config=%s", cb->configname);
528         assoc_init_reset(assoc);
529
530         if (sr->username)
531         {
532             Z_IdAuthentication *auth = (Z_IdAuthentication *)
533                 odr_malloc(assoc->decode, sizeof(*auth));
534             size_t len;
535
536             len = strlen(sr->username) + 1;
537             if (sr->password)
538                 len += strlen(sr->password) + 2;
539             yaz_log(log_requestdetail, "username=%s password-len=%ld",
540                     sr->username, (long)
541                     (sr->password ? strlen(sr->password) : 0));
542             auth->which = Z_IdAuthentication_open;
543             auth->u.open = (char *) odr_malloc(assoc->decode, len);
544             strcpy(auth->u.open, sr->username);
545             if (sr->password && *sr->password)
546             {
547                 strcat(auth->u.open, "/");
548                 strcat(auth->u.open, sr->password);
549             }
550             assoc->init->auth = auth;
551         }
552
553 #if 1
554         ce = yaz_set_proposal_charneg(assoc->decode, &encoding, 1, 0, 0, 1);
555         assoc->init->charneg_request = ce->u.charNeg3;
556 #endif
557         assoc->backend = 0;
558         if (!(binitres = (*cb->bend_init)(assoc->init)))
559         {
560             assoc->state = ASSOC_DEAD;
561             yaz_add_srw_diagnostic(assoc->encode, d, num,
562                             YAZ_SRW_AUTHENTICATION_ERROR, 0);
563             return 0;
564         }
565         assoc->backend = binitres->handle;
566         assoc->init->auth = 0;
567         if (binitres->errcode)
568         {
569             int srw_code = yaz_diag_bib1_to_srw(binitres->errcode);
570             assoc->state = ASSOC_DEAD;
571             yaz_add_srw_diagnostic(assoc->encode, d, num, srw_code,
572                                    binitres->errstring);
573             return 0;
574         }
575         return 1;
576     }
577     return 1;
578 }
579
580 static int retrieve_fetch(association *assoc, bend_fetch_rr *rr)
581 {
582 #if YAZ_HAVE_XML2
583     yaz_record_conv_t rc = 0;
584     const char *match_schema = 0;
585     Odr_oid *match_syntax = 0;
586
587     if (assoc->server)
588     {
589         int r;
590         const char *input_schema = yaz_get_esn(rr->comp);
591         Odr_oid *input_syntax_raw = rr->request_format;
592
593         const char *backend_schema = 0;
594         Odr_oid *backend_syntax = 0;
595
596         r = yaz_retrieval_request(assoc->server->retrieval,
597                                   input_schema,
598                                   input_syntax_raw,
599                                   &match_schema,
600                                   &match_syntax,
601                                   &rc,
602                                   &backend_schema,
603                                   &backend_syntax);
604         if (r == -1) /* error ? */
605         {
606             const char *details = yaz_retrieval_get_error(
607                 assoc->server->retrieval);
608
609             rr->errcode = YAZ_BIB1_SYSTEM_ERROR_IN_PRESENTING_RECORDS;
610             if (details)
611                 rr->errstring = odr_strdup(rr->stream, details);
612             return -1;
613         }
614         else if (r == 1 || r == 3)
615         {
616             const char *details = input_schema;
617             rr->errcode =
618                 YAZ_BIB1_SPECIFIED_ELEMENT_SET_NAME_NOT_VALID_FOR_SPECIFIED_;
619             if (details)
620                 rr->errstring = odr_strdup(rr->stream, details);
621             return -1;
622         }
623         else if (r == 2)
624         {
625             rr->errcode = YAZ_BIB1_RECORD_SYNTAX_UNSUPP;
626             if (input_syntax_raw)
627             {
628                 char oidbuf[OID_STR_MAX];
629                 oid_oid_to_dotstring(input_syntax_raw, oidbuf);
630                 rr->errstring = odr_strdup(rr->stream, oidbuf);
631             }
632             return -1;
633         }
634         if (backend_schema)
635         {
636             yaz_set_esn(&rr->comp, backend_schema, odr_getmem(rr->stream));
637         }
638         if (backend_syntax)
639             rr->request_format = backend_syntax;
640     }
641     (*assoc->init->bend_fetch)(assoc->backend, rr);
642     if (rc && rr->record && rr->errcode == 0)
643     {   /* post conversion must take place .. */
644         WRBUF output_record = wrbuf_alloc();
645         int r = 1;
646         const char *details = 0;
647         if (rr->len > 0)
648         {
649             r = yaz_record_conv_record(rc, rr->record, rr->len, output_record);
650             if (r)
651                 details = yaz_record_conv_get_error(rc);
652         }
653         else if (rr->len == -1 && rr->output_format &&
654                  !oid_oidcmp(rr->output_format, yaz_oid_recsyn_opac))
655         {
656             r = yaz_record_conv_opac_record(
657                 rc, (Z_OPACRecord *) rr->record, output_record);
658             if (r)
659                 details = yaz_record_conv_get_error(rc);
660         }
661         if (r == 0 && match_syntax &&
662             !oid_oidcmp(match_syntax, yaz_oid_recsyn_opac))
663         {
664             yaz_marc_t mt = yaz_marc_create();
665             Z_OPACRecord *opac = 0;
666             if (yaz_xml_to_opac(mt, wrbuf_buf(output_record),
667                                 wrbuf_len(output_record),
668                                 &opac, 0 /* iconv */, rr->stream->mem, 0)
669                 && opac)
670             {
671                 rr->len = -1;
672                 rr->record = (char *) opac;
673             }
674             else
675             {
676                 details = "XML to OPAC conversion failed";
677                 r = 1;
678             }
679             yaz_marc_destroy(mt);
680         }
681         else if (r == 0)
682         {
683             rr->len = wrbuf_len(output_record);
684             rr->record = (char *) odr_malloc(rr->stream, rr->len);
685             memcpy(rr->record, wrbuf_buf(output_record), rr->len);
686         }
687         if (r)
688         {
689             rr->errcode = YAZ_BIB1_SYSTEM_ERROR_IN_PRESENTING_RECORDS;
690             if (details)
691                 rr->errstring = odr_strdup(rr->stream, details);
692         }
693         wrbuf_destroy(output_record);
694     }
695     if (match_syntax)
696         rr->output_format = match_syntax;
697     if (match_schema)
698         rr->schema = odr_strdup(rr->stream, match_schema);
699 #else
700     (*assoc->init->bend_fetch)(assoc->backend, rr);
701 #endif
702     return 0;
703 }
704
705 static int srw_bend_fetch(association *assoc, int pos,
706                           Z_SRW_searchRetrieveRequest *srw_req,
707                           Z_SRW_record *record,
708                           const char **addinfo, int *last_in_set)
709 {
710     bend_fetch_rr rr;
711     ODR o = assoc->encode;
712
713     rr.setname = "default";
714     rr.number = pos;
715     rr.referenceId = 0;
716     rr.request_format = odr_oiddup(assoc->decode, yaz_oid_recsyn_xml);
717
718     rr.comp = (Z_RecordComposition *)
719             odr_malloc(assoc->decode, sizeof(*rr.comp));
720     rr.comp->which = Z_RecordComp_complex;
721     rr.comp->u.complex = (Z_CompSpec *)
722             odr_malloc(assoc->decode, sizeof(Z_CompSpec));
723     rr.comp->u.complex->selectAlternativeSyntax = (bool_t *)
724         odr_malloc(assoc->encode, sizeof(bool_t));
725     *rr.comp->u.complex->selectAlternativeSyntax = 0;
726     rr.comp->u.complex->num_dbSpecific = 0;
727     rr.comp->u.complex->dbSpecific = 0;
728     rr.comp->u.complex->num_recordSyntax = 0;
729     rr.comp->u.complex->recordSyntax = 0;
730
731     rr.comp->u.complex->generic = (Z_Specification *)
732             odr_malloc(assoc->decode, sizeof(Z_Specification));
733
734     /* schema uri = recordSchema (or NULL if recordSchema is not given) */
735     rr.comp->u.complex->generic->which = Z_Schema_uri;
736     rr.comp->u.complex->generic->schema.uri = srw_req->recordSchema;
737
738     /* ESN = recordSchema if recordSchema is present */
739     rr.comp->u.complex->generic->elementSpec = 0;
740     if (srw_req->recordSchema)
741     {
742         rr.comp->u.complex->generic->elementSpec =
743             (Z_ElementSpec *) odr_malloc(assoc->encode, sizeof(Z_ElementSpec));
744         rr.comp->u.complex->generic->elementSpec->which =
745             Z_ElementSpec_elementSetName;
746         rr.comp->u.complex->generic->elementSpec->u.elementSetName =
747             srw_req->recordSchema;
748     }
749
750     rr.stream = assoc->encode;
751     rr.print = assoc->print;
752
753     rr.basename = 0;
754     rr.len = 0;
755     rr.record = 0;
756     rr.last_in_set = 0;
757     rr.errcode = 0;
758     rr.errstring = 0;
759     rr.surrogate_flag = 0;
760     rr.schema = srw_req->recordSchema;
761
762     if (!assoc->init->bend_fetch)
763         return 1;
764
765     retrieve_fetch(assoc, &rr);
766
767     *last_in_set = rr.last_in_set;
768
769     if (rr.errcode && rr.surrogate_flag)
770     {
771         int code = yaz_diag_bib1_to_srw(rr.errcode);
772         yaz_mk_sru_surrogate(o, record, pos, code, rr.errstring);
773         return 0;
774     }
775     else if (rr.len >= 0)
776     {
777         record->recordData_buf = rr.record;
778         record->recordData_len = rr.len;
779         record->recordPosition = odr_intdup(o, pos);
780         record->recordSchema = odr_strdup_null(
781             o, rr.schema ? rr.schema : srw_req->recordSchema);
782     }
783     if (rr.errcode)
784     {
785         *addinfo = rr.errstring;
786         return rr.errcode;
787     }
788     return 0;
789 }
790
791 static int cql2pqf(ODR odr, const char *cql, cql_transform_t ct,
792                    Z_Query *query_result, char **sortkeys_p)
793 {
794     /* have a CQL query and  CQL to PQF transform .. */
795     CQL_parser cp = cql_parser_create();
796     int r;
797     int srw_errcode = 0;
798     const char *add = 0;
799     WRBUF rpn_buf = wrbuf_alloc();
800
801     *sortkeys_p = 0;
802     r = cql_parser_string(cp, cql);
803     if (r)
804     {
805         srw_errcode = YAZ_SRW_QUERY_SYNTAX_ERROR;
806     }
807     if (!r)
808     {
809         struct cql_node *cn = cql_parser_result(cp);
810
811         /* Syntax OK */
812         r = cql_transform(ct, cn, wrbuf_vp_puts, rpn_buf);
813         if (r)
814             srw_errcode = cql_transform_error(ct, &add);
815         else
816         {
817             char out[100];
818             int r = cql_sortby_to_sortkeys_buf(cn, out, sizeof(out)-1);
819
820             if (r == 0)
821             {
822                 if (*out)
823                     yaz_log(log_requestdetail, "srw_sortKeys '%s'", out);
824                 *sortkeys_p = odr_strdup(odr, out);
825             }
826             else
827             {
828                 yaz_log(log_requestdetail, "failed to create srw_sortKeys");
829                 srw_errcode = YAZ_SRW_UNSUPP_SORT_TYPE;
830             }
831         }
832     }
833     if (!r)
834     {
835         /* Syntax & transform OK. */
836         /* Convert PQF string to Z39.50 to RPN query struct */
837         YAZ_PQF_Parser pp = yaz_pqf_create();
838         Z_RPNQuery *rpnquery = yaz_pqf_parse(pp, odr, wrbuf_cstr(rpn_buf));
839         if (!rpnquery)
840         {
841             size_t off;
842             const char *pqf_msg;
843             int code = yaz_pqf_error(pp, &pqf_msg, &off);
844             yaz_log(YLOG_WARN, "PQF Parser Error %s (code %d)",
845                     pqf_msg, code);
846             srw_errcode = YAZ_SRW_QUERY_SYNTAX_ERROR;
847         }
848         else
849         {
850             query_result->which = Z_Query_type_1;
851             query_result->u.type_1 = rpnquery;
852         }
853         yaz_pqf_destroy(pp);
854     }
855     cql_parser_destroy(cp);
856     wrbuf_destroy(rpn_buf);
857     return srw_errcode;
858 }
859
860 static int cql2pqf_scan(ODR odr, const char *cql, cql_transform_t ct,
861                         Z_AttributesPlusTerm *result)
862 {
863     Z_Query query;
864     Z_RPNQuery *rpn;
865     char *sortkeys = 0;
866     int srw_error = cql2pqf(odr, cql, ct, &query, &sortkeys);
867     if (srw_error)
868         return srw_error;
869     if (query.which != Z_Query_type_1 && query.which != Z_Query_type_101)
870         return YAZ_SRW_QUERY_SYNTAX_ERROR; /* bad query type */
871     rpn = query.u.type_1;
872     if (!rpn->RPNStructure)
873         return YAZ_SRW_QUERY_SYNTAX_ERROR; /* must be structure */
874     if (rpn->RPNStructure->which != Z_RPNStructure_simple)
875         return YAZ_SRW_QUERY_SYNTAX_ERROR; /* must be simple */
876     if (rpn->RPNStructure->u.simple->which != Z_Operand_APT)
877         return YAZ_SRW_QUERY_SYNTAX_ERROR; /* must be be attributes + term */
878     memcpy(result, rpn->RPNStructure->u.simple->u.attributesPlusTerm,
879            sizeof(*result));
880     return 0;
881 }
882
883
884 static int ccl2pqf(ODR odr, const Odr_oct *ccl, CCL_bibset bibset,
885                    bend_search_rr *bsrr)
886 {
887     char *ccl0;
888     struct ccl_rpn_node *node;
889     int errcode, pos;
890
891     ccl0 = odr_strdupn(odr, (char*) ccl->buf, ccl->len);
892     if ((node = ccl_find_str(bibset, ccl0, &errcode, &pos)) == 0)
893     {
894         bsrr->errstring = (char*) ccl_err_msg(errcode);
895         return YAZ_SRW_QUERY_SYNTAX_ERROR;    /* Query syntax error */
896     }
897
898     bsrr->query->which = Z_Query_type_1;
899     bsrr->query->u.type_1 = ccl_rpn_query(odr, node);
900     return 0;
901 }
902
903 static void srw_bend_search(association *assoc,
904                             Z_SRW_PDU *sr,
905                             Z_SRW_PDU *res,
906                             int *http_code)
907 {
908     Z_SRW_searchRetrieveResponse *srw_res = res->u.response;
909     int srw_error = 0;
910     Z_External *ext;
911     Z_SRW_searchRetrieveRequest *srw_req = sr->u.request;
912
913     *http_code = 200;
914     yaz_log(log_requestdetail, "Got SRW SearchRetrieveRequest");
915     srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
916     if (srw_res->num_diagnostics == 0 && assoc->init)
917     {
918         bend_search_rr rr;
919         rr.setname = "default";
920         rr.replace_set = 1;
921         rr.num_bases = 1;
922         rr.basenames = &srw_req->database;
923         rr.referenceId = 0;
924         rr.srw_sortKeys = 0;
925         rr.srw_setname = 0;
926         rr.srw_setnameIdleTime = 0;
927         rr.estimated_hit_count = 0;
928         rr.partial_resultset = 0;
929         rr.query = (Z_Query *) odr_malloc(assoc->decode, sizeof(*rr.query));
930         rr.query->u.type_1 = 0;
931         rr.extra_args = sr->extra_args;
932         rr.extra_response_data = 0;
933         rr.present_number = srw_req->maximumRecords ?
934             *srw_req->maximumRecords : 0;
935
936         if (srw_req->query_type == Z_SRW_query_type_cql)
937         {
938             if (assoc->server && assoc->server->cql_transform)
939             {
940                 int srw_errcode = cql2pqf(assoc->encode, srw_req->query.cql,
941                                           assoc->server->cql_transform,
942                                           rr.query,
943                                           &rr.srw_sortKeys);
944
945                 if (srw_errcode)
946                 {
947                     yaz_add_srw_diagnostic(assoc->encode,
948                                            &srw_res->diagnostics,
949                                            &srw_res->num_diagnostics,
950                                            srw_errcode, 0);
951                 }
952             }
953             else
954             {
955                 /* CQL query to backend. Wrap it - Z39.50 style */
956                 ext = (Z_External *) odr_malloc(assoc->decode, sizeof(*ext));
957                 ext->direct_reference = odr_getoidbystr(assoc->decode,
958                                                         "1.2.840.10003.16.2");
959                 ext->indirect_reference = 0;
960                 ext->descriptor = 0;
961                 ext->which = Z_External_CQL;
962                 ext->u.cql = srw_req->query.cql;
963
964                 rr.query->which = Z_Query_type_104;
965                 rr.query->u.type_104 =  ext;
966             }
967         }
968         else if (srw_req->query_type == Z_SRW_query_type_pqf)
969         {
970             Z_RPNQuery *RPNquery;
971             YAZ_PQF_Parser pqf_parser;
972
973             pqf_parser = yaz_pqf_create();
974
975             RPNquery = yaz_pqf_parse(pqf_parser, assoc->decode,
976                                      srw_req->query.pqf);
977             if (!RPNquery)
978             {
979                 const char *pqf_msg;
980                 size_t off;
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;
985             }
986
987             rr.query->which = Z_Query_type_1;
988             rr.query->u.type_1 =  RPNquery;
989
990             yaz_pqf_destroy(pqf_parser);
991         }
992         else
993         {
994             yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
995                                    &srw_res->num_diagnostics,
996                                    YAZ_SRW_UNSUPP_QUERY_TYPE, 0);
997         }
998         if (rr.query->u.type_1)
999         {
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;
1007             rr.hits = 0;
1008             rr.errcode = 0;
1009             rr.errstring = 0;
1010             rr.search_info = 0;
1011             rr.search_input = 0;
1012             yaz_log_zquery_level(log_requestdetail,rr.query);
1013
1014             (assoc->init->bend_search)(assoc->backend, &rr);
1015             if (rr.errcode)
1016             {
1017                 if (rr.errcode == YAZ_BIB1_DATABASE_UNAVAILABLE)
1018                 {
1019                     *http_code = 404;
1020                 }
1021                 else
1022                 {
1023                     srw_error = yaz_diag_bib1_to_srw(rr.errcode);
1024                     yaz_add_srw_diagnostic(assoc->encode,
1025                                            &srw_res->diagnostics,
1026                                            &srw_res->num_diagnostics,
1027                                            srw_error, rr.errstring);
1028                 }
1029             }
1030             else
1031             {
1032                 int number = srw_req->maximumRecords ?
1033                     odr_int_to_int(*srw_req->maximumRecords) : 0;
1034                 int start = srw_req->startRecord ?
1035                     odr_int_to_int(*srw_req->startRecord) : 1;
1036
1037                 yaz_log(log_requestdetail, "Request to pack %d+%d out of "
1038                         ODR_INT_PRINTF,
1039                         start, number, rr.hits);
1040
1041                 srw_res->numberOfRecords = odr_intdup(assoc->encode, rr.hits);
1042                 if (rr.srw_setname)
1043                 {
1044                     srw_res->resultSetId =
1045                         odr_strdup(assoc->encode, rr.srw_setname );
1046                     srw_res->resultSetIdleTime =
1047                         odr_intdup(assoc->encode, *rr.srw_setnameIdleTime );
1048                 }
1049
1050                 if (start > rr.hits || start < 1)
1051                 {
1052                     /* if hits<=0 and start=1 we don't return a diagnostic */
1053                     if (start != 1)
1054                         yaz_add_srw_diagnostic(
1055                             assoc->encode,
1056                             &srw_res->diagnostics, &srw_res->num_diagnostics,
1057                             YAZ_SRW_FIRST_RECORD_POSITION_OUT_OF_RANGE, 0);
1058                 }
1059                 else if (number > 0)
1060                 {
1061                     int i;
1062                     int ok = 1;
1063                     if (start + number > rr.hits)
1064                         number = odr_int_to_int(rr.hits) - start + 1;
1065
1066                     /* Call bend_present if defined */
1067                     if (assoc->init->bend_present)
1068                     {
1069                         bend_present_rr *bprr = (bend_present_rr*)
1070                             odr_malloc(assoc->decode, sizeof(*bprr));
1071                         bprr->setname = "default";
1072                         bprr->start = start;
1073                         bprr->number = number;
1074                         if (srw_req->recordSchema)
1075                         {
1076                             bprr->comp = (Z_RecordComposition *) odr_malloc(assoc->decode,
1077                                                                             sizeof(*bprr->comp));
1078                             bprr->comp->which = Z_RecordComp_simple;
1079                             bprr->comp->u.simple = (Z_ElementSetNames *)
1080                                 odr_malloc(assoc->decode, sizeof(Z_ElementSetNames));
1081                             bprr->comp->u.simple->which = Z_ElementSetNames_generic;
1082                             bprr->comp->u.simple->u.generic = srw_req->recordSchema;
1083                         }
1084                         else
1085                         {
1086                             bprr->comp = 0;
1087                         }
1088                         bprr->stream = assoc->encode;
1089                         bprr->referenceId = 0;
1090                         bprr->print = assoc->print;
1091                         bprr->association = assoc;
1092                         bprr->errcode = 0;
1093                         bprr->errstring = NULL;
1094                         (*assoc->init->bend_present)(assoc->backend, bprr);
1095
1096                         if (bprr->errcode)
1097                         {
1098                             srw_error = yaz_diag_bib1_to_srw(bprr->errcode);
1099                             yaz_add_srw_diagnostic(assoc->encode,
1100                                                    &srw_res->diagnostics,
1101                                                    &srw_res->num_diagnostics,
1102                                                    srw_error, bprr->errstring);
1103                             ok = 0;
1104                         }
1105                     }
1106
1107                     if (ok)
1108                     {
1109                         int j = 0;
1110                         int packing = Z_SRW_recordPacking_string;
1111                         if (srw_req->recordPacking)
1112                         {
1113                             packing =
1114                                 yaz_srw_str_to_pack(srw_req->recordPacking);
1115                             if (packing == -1)
1116                                 packing = Z_SRW_recordPacking_string;
1117                         }
1118                         srw_res->records = (Z_SRW_record *)
1119                             odr_malloc(assoc->encode,
1120                                        number * sizeof(*srw_res->records));
1121
1122                         srw_res->extra_records = (Z_SRW_extra_record **)
1123                             odr_malloc(assoc->encode,
1124                                        number*sizeof(*srw_res->extra_records));
1125
1126                         for (i = 0; i<number; i++)
1127                         {
1128                             int errcode;
1129                             int last_in_set = 0;
1130                             const char *addinfo = 0;
1131
1132                             srw_res->records[j].recordPacking = packing;
1133                             srw_res->records[j].recordData_buf = 0;
1134                             srw_res->extra_records[j] = 0;
1135                             yaz_log(YLOG_DEBUG, "srw_bend_fetch %d", i+start);
1136                             errcode = srw_bend_fetch(assoc, i+start, srw_req,
1137                                                      srw_res->records + j,
1138                                                      &addinfo, &last_in_set);
1139                             if (errcode)
1140                             {
1141                                 yaz_add_srw_diagnostic(assoc->encode,
1142                                                        &srw_res->diagnostics,
1143                                                        &srw_res->num_diagnostics,
1144                                                        yaz_diag_bib1_to_srw(errcode),
1145                                                        addinfo);
1146
1147                                 break;
1148                             }
1149                             if (srw_res->records[j].recordData_buf)
1150                                 j++;
1151                             if (last_in_set)
1152                                 break;
1153                         }
1154                         srw_res->num_records = j;
1155                         if (!j)
1156                             srw_res->records = 0;
1157                     }
1158                 }
1159                 if (rr.extra_response_data)
1160                 {
1161                     res->extraResponseData_buf = rr.extra_response_data;
1162                     res->extraResponseData_len = strlen(rr.extra_response_data);
1163                 }
1164                 if (rr.estimated_hit_count || rr.partial_resultset)
1165                 {
1166                     yaz_add_srw_diagnostic(
1167                         assoc->encode,
1168                         &srw_res->diagnostics,
1169                         &srw_res->num_diagnostics,
1170                         YAZ_SRW_RESULT_SET_CREATED_WITH_VALID_PARTIAL_RESULTS_AVAILABLE,
1171                         0);
1172                 }
1173             }
1174         }
1175     }
1176     if (log_request)
1177     {
1178         const char *querystr = "?";
1179         const char *querytype = "?";
1180         WRBUF wr = wrbuf_alloc();
1181
1182         switch (srw_req->query_type)
1183         {
1184         case Z_SRW_query_type_cql:
1185             querytype = "CQL";
1186             querystr = srw_req->query.cql;
1187             break;
1188         case Z_SRW_query_type_pqf:
1189             querytype = "PQF";
1190             querystr = srw_req->query.pqf;
1191             break;
1192         }
1193         wrbuf_printf(wr, "SRWSearch %s ", srw_req->database);
1194         if (srw_res->num_diagnostics)
1195             wrbuf_printf(wr, "ERROR %s", srw_res->diagnostics[0].uri);
1196         else if (*http_code != 200)
1197             wrbuf_printf(wr, "ERROR info:http/%d", *http_code);
1198         else if (srw_res->numberOfRecords)
1199         {
1200             wrbuf_printf(wr, "OK " ODR_INT_PRINTF,
1201                          (srw_res->numberOfRecords ?
1202                           *srw_res->numberOfRecords : 0));
1203         }
1204         wrbuf_printf(wr, " %s " ODR_INT_PRINTF "+%d",
1205                      (srw_res->resultSetId ?
1206                       srw_res->resultSetId : "-"),
1207                      (srw_req->startRecord ? *srw_req->startRecord : 1),
1208                      srw_res->num_records);
1209         yaz_log(log_request, "%s %s: %s", wrbuf_cstr(wr), querytype, querystr);
1210         wrbuf_destroy(wr);
1211     }
1212 }
1213
1214 static char *srw_bend_explain_default(bend_explain_rr *rr)
1215 {
1216 #if YAZ_HAVE_XML2
1217     xmlNodePtr ptr = (xmlNode *) rr->server_node_ptr;
1218     if (!ptr)
1219         return 0;
1220     for (ptr = ptr->children; ptr; ptr = ptr->next)
1221     {
1222         if (ptr->type != XML_ELEMENT_NODE)
1223             continue;
1224         if (!strcmp((const char *) ptr->name, "explain"))
1225         {
1226             int len;
1227             xmlDocPtr doc = xmlNewDoc(BAD_CAST "1.0");
1228             xmlChar *buf_out;
1229             char *content;
1230
1231             ptr = xmlCopyNode(ptr, 1);
1232
1233             xmlDocSetRootElement(doc, ptr);
1234
1235             xmlDocDumpMemory(doc, &buf_out, &len);
1236             content = (char*) odr_malloc(rr->stream, 1+len);
1237             memcpy(content, buf_out, len);
1238             content[len] = '\0';
1239
1240             xmlFree(buf_out);
1241             xmlFreeDoc(doc);
1242             rr->explain_buf = content;
1243             return 0;
1244         }
1245     }
1246 #endif
1247     return 0;
1248 }
1249
1250 static void srw_bend_explain(association *assoc,
1251                              Z_SRW_PDU *sr,
1252                              Z_SRW_explainResponse *srw_res,
1253                              int *http_code)
1254 {
1255     Z_SRW_explainRequest *srw_req = sr->u.explain_request;
1256     yaz_log(log_requestdetail, "Got SRW ExplainRequest");
1257     srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
1258     if (!assoc->init && srw_res->num_diagnostics == 0)
1259         *http_code = 404;
1260     if (assoc->init)
1261     {
1262         bend_explain_rr rr;
1263
1264         rr.stream = assoc->encode;
1265         rr.decode = assoc->decode;
1266         rr.print = assoc->print;
1267         rr.explain_buf = 0;
1268         rr.database = srw_req->database;
1269         if (assoc->server)
1270             rr.server_node_ptr = assoc->server->server_node_ptr;
1271         else
1272             rr.server_node_ptr = 0;
1273         rr.schema = "http://explain.z3950.org/dtd/2.0/";
1274         if (assoc->init->bend_explain)
1275             (*assoc->init->bend_explain)(assoc->backend, &rr);
1276         else
1277             srw_bend_explain_default(&rr);
1278
1279         if (rr.explain_buf)
1280         {
1281             int packing = Z_SRW_recordPacking_string;
1282             if (srw_req->recordPacking)
1283             {
1284                 packing =
1285                     yaz_srw_str_to_pack(srw_req->recordPacking);
1286                 if (packing == -1)
1287                     packing = Z_SRW_recordPacking_string;
1288             }
1289             srw_res->record.recordSchema = rr.schema;
1290             srw_res->record.recordPacking = packing;
1291             srw_res->record.recordData_buf = rr.explain_buf;
1292             srw_res->record.recordData_len = strlen(rr.explain_buf);
1293             srw_res->record.recordPosition = 0;
1294             *http_code = 200;
1295         }
1296     }
1297 }
1298
1299 static void srw_bend_scan(association *assoc,
1300                           Z_SRW_PDU *sr,
1301                           Z_SRW_PDU *res,
1302                           int *http_code)
1303 {
1304     Z_SRW_scanRequest *srw_req = sr->u.scan_request;
1305     Z_SRW_scanResponse *srw_res = res->u.scan_response;
1306     yaz_log(log_requestdetail, "Got SRW ScanRequest");
1307
1308     *http_code = 200;
1309     srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
1310     if (srw_res->num_diagnostics == 0 && assoc->init)
1311     {
1312         int step_size = 0;
1313         struct scan_entry *save_entries;
1314
1315         bend_scan_rr *bsrr = (bend_scan_rr *)
1316             odr_malloc(assoc->encode, sizeof(*bsrr));
1317         bsrr->num_bases = 1;
1318         bsrr->basenames = &srw_req->database;
1319
1320         bsrr->num_entries = srw_req->maximumTerms ?
1321             odr_int_to_int(*srw_req->maximumTerms) : 10;
1322         bsrr->term_position = srw_req->responsePosition ?
1323             odr_int_to_int(*srw_req->responsePosition) : 1;
1324
1325         bsrr->errcode = 0;
1326         bsrr->errstring = 0;
1327         bsrr->referenceId = 0;
1328         bsrr->stream = assoc->encode;
1329         bsrr->print = assoc->print;
1330         bsrr->step_size = &step_size;
1331         bsrr->entries = 0;
1332         bsrr->setname = 0;
1333         bsrr->extra_args = sr->extra_args;
1334         bsrr->extra_response_data = 0;
1335
1336         if (bsrr->num_entries > 0)
1337         {
1338             int i;
1339             bsrr->entries = (struct scan_entry *)
1340                 odr_malloc(assoc->decode, sizeof(*bsrr->entries) *
1341                            bsrr->num_entries);
1342             for (i = 0; i<bsrr->num_entries; i++)
1343             {
1344                 bsrr->entries[i].term = 0;
1345                 bsrr->entries[i].occurrences = 0;
1346                 bsrr->entries[i].errcode = 0;
1347                 bsrr->entries[i].errstring = 0;
1348                 bsrr->entries[i].display_term = 0;
1349             }
1350         }
1351         save_entries = bsrr->entries;  /* save it so we can compare later */
1352
1353         if (srw_req->query_type == Z_SRW_query_type_pqf &&
1354             assoc->init->bend_scan)
1355         {
1356             YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
1357
1358             bsrr->term = yaz_pqf_scan(pqf_parser, assoc->decode,
1359                                       &bsrr->attributeset,
1360                                       srw_req->scanClause.pqf);
1361             yaz_pqf_destroy(pqf_parser);
1362             bsrr->scanClause = 0;
1363             ((int (*)(void *, bend_scan_rr *))
1364              (*assoc->init->bend_scan))(assoc->backend, bsrr);
1365         }
1366         else if (srw_req->query_type == Z_SRW_query_type_cql
1367                  && assoc->init->bend_scan && assoc->server
1368                  && assoc->server->cql_transform)
1369         {
1370             int srw_error;
1371             bsrr->scanClause = 0;
1372             bsrr->attributeset = 0;
1373             bsrr->term = (Z_AttributesPlusTerm *)
1374                 odr_malloc(assoc->decode, sizeof(*bsrr->term));
1375             srw_error = cql2pqf_scan(assoc->encode,
1376                                      srw_req->scanClause.cql,
1377                                      assoc->server->cql_transform,
1378                                      bsrr->term);
1379             if (srw_error)
1380                 yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1381                                        &srw_res->num_diagnostics,
1382                                        srw_error, 0);
1383             else
1384             {
1385                 ((int (*)(void *, bend_scan_rr *))
1386                  (*assoc->init->bend_scan))(assoc->backend, bsrr);
1387             }
1388         }
1389         else if (srw_req->query_type == Z_SRW_query_type_cql
1390                  && assoc->init->bend_srw_scan)
1391         {
1392             bsrr->term = 0;
1393             bsrr->attributeset = 0;
1394             bsrr->scanClause = srw_req->scanClause.cql;
1395             ((int (*)(void *, bend_scan_rr *))
1396              (*assoc->init->bend_srw_scan))(assoc->backend, bsrr);
1397         }
1398         else
1399         {
1400             yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1401                                    &srw_res->num_diagnostics,
1402                                    YAZ_SRW_UNSUPP_OPERATION, "scan");
1403         }
1404         if (bsrr->extra_response_data)
1405         {
1406             res->extraResponseData_buf = bsrr->extra_response_data;
1407             res->extraResponseData_len = strlen(bsrr->extra_response_data);
1408         }
1409         if (bsrr->errcode)
1410         {
1411             int srw_error;
1412             if (bsrr->errcode == YAZ_BIB1_DATABASE_UNAVAILABLE)
1413             {
1414                 *http_code = 404;
1415                 return;
1416             }
1417             srw_error = yaz_diag_bib1_to_srw(bsrr->errcode);
1418
1419             yaz_add_srw_diagnostic(assoc->encode, &srw_res->diagnostics,
1420                                    &srw_res->num_diagnostics,
1421                                    srw_error, bsrr->errstring);
1422         }
1423         else if (srw_res->num_diagnostics == 0 && bsrr->num_entries)
1424         {
1425             int i;
1426             srw_res->terms = (Z_SRW_scanTerm*)
1427                 odr_malloc(assoc->encode, sizeof(*srw_res->terms) *
1428                            bsrr->num_entries);
1429
1430             srw_res->num_terms =  bsrr->num_entries;
1431             for (i = 0; i<bsrr->num_entries; i++)
1432             {
1433                 Z_SRW_scanTerm *t = srw_res->terms + i;
1434                 t->value = odr_strdup(assoc->encode, bsrr->entries[i].term);
1435                 t->numberOfRecords =
1436                     odr_intdup(assoc->encode, bsrr->entries[i].occurrences);
1437                 t->displayTerm = 0;
1438                 if (save_entries == bsrr->entries &&
1439                     bsrr->entries[i].display_term)
1440                 {
1441                     /* the entries was _not_ set by the handler. So it's
1442                        safe to test for new member display_term. It is
1443                        NULL'ed by us.
1444                     */
1445                     t->displayTerm = odr_strdup(assoc->encode,
1446                                                 bsrr->entries[i].display_term);
1447                 }
1448                 t->whereInList = 0;
1449             }
1450         }
1451     }
1452     if (log_request)
1453     {
1454         WRBUF wr = wrbuf_alloc();
1455         const char *querytype = 0;
1456         const char *querystr = 0;
1457
1458         switch(srw_req->query_type)
1459         {
1460         case Z_SRW_query_type_pqf:
1461             querytype = "PQF";
1462             querystr = srw_req->scanClause.pqf;
1463             break;
1464         case Z_SRW_query_type_cql:
1465             querytype = "CQL";
1466             querystr = srw_req->scanClause.cql;
1467             break;
1468         default:
1469             querytype = "UNKNOWN";
1470             querystr = "";
1471         }
1472
1473         wrbuf_printf(wr, "SRWScan %s ", srw_req->database);
1474
1475         if (srw_res->num_diagnostics)
1476             wrbuf_printf(wr, "ERROR %s - ", srw_res->diagnostics[0].uri);
1477         else if (srw_res->num_terms)
1478             wrbuf_printf(wr, "OK %d - ", srw_res->num_terms);
1479         else
1480             wrbuf_printf(wr, "OK - - ");
1481
1482         wrbuf_printf(wr, ODR_INT_PRINTF "+" ODR_INT_PRINTF " ",
1483                      (srw_req->responsePosition ?
1484                       *srw_req->responsePosition : 1),
1485                      (srw_req->maximumTerms ?
1486                       *srw_req->maximumTerms : 1));
1487         /* there is no step size in SRU/W ??? */
1488         wrbuf_printf(wr, "%s: %s ", querytype, querystr);
1489         yaz_log(log_request, "%s ", wrbuf_cstr(wr) );
1490         wrbuf_destroy(wr);
1491     }
1492
1493 }
1494
1495 static void srw_bend_update(association *assoc,
1496                             Z_SRW_PDU *sr,
1497                             Z_SRW_updateResponse *srw_res,
1498                             int *http_code)
1499 {
1500     Z_SRW_updateRequest *srw_req = sr->u.update_request;
1501     yaz_log(log_session, "SRWUpdate action=%s", srw_req->operation);
1502     yaz_log(YLOG_DEBUG, "num_diag = %d", srw_res->num_diagnostics );
1503     srw_bend_init(assoc, &srw_res->diagnostics, &srw_res->num_diagnostics, sr);
1504     if (!assoc->init && srw_res->num_diagnostics == 0)
1505         *http_code = 404;
1506     if (assoc->init)
1507     {
1508         bend_update_rr rr;
1509         Z_SRW_extra_record *extra = srw_req->extra_record;
1510
1511         rr.stream = assoc->encode;
1512         rr.print = assoc->print;
1513         rr.num_bases = 1;
1514         rr.basenames = &srw_req->database;
1515         rr.operation = srw_req->operation;
1516         rr.operation_status = "failed";
1517         rr.record_id = 0;
1518         rr.record_versions = 0;
1519         rr.num_versions = 0;
1520         rr.record_packing = "string";
1521         rr.record_schema = 0;
1522         rr.record_data = 0;
1523         rr.extra_record_data = 0;
1524         rr.extra_request_data = 0;
1525         rr.extra_response_data = 0;
1526         rr.uri = 0;
1527         rr.message = 0;
1528         rr.details = 0;
1529
1530         *http_code = 200;
1531         if (rr.operation == 0)
1532         {
1533             yaz_add_sru_update_diagnostic(
1534                 assoc->encode, &srw_res->diagnostics,
1535                 &srw_res->num_diagnostics,
1536                 YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1537                 "action" );
1538             return;
1539         }
1540         yaz_log(YLOG_DEBUG, "basename = %s", rr.basenames[0] );
1541         yaz_log(YLOG_DEBUG, "Operation = %s", rr.operation );
1542         if (!strcmp( rr.operation, "delete"))
1543         {
1544             if (srw_req->record && !srw_req->record->recordSchema)
1545             {
1546                 rr.record_schema = odr_strdup(
1547                     assoc->encode,
1548                     srw_req->record->recordSchema);
1549             }
1550             if (srw_req->record)
1551             {
1552                 rr.record_data = odr_strdupn(
1553                     assoc->encode,
1554                     srw_req->record->recordData_buf,
1555                     srw_req->record->recordData_len );
1556             }
1557             if (extra && extra->extraRecordData_len)
1558             {
1559                 rr.extra_record_data = odr_strdupn(
1560                     assoc->encode,
1561                     extra->extraRecordData_buf,
1562                     extra->extraRecordData_len );
1563             }
1564             if (srw_req->recordId)
1565                 rr.record_id = srw_req->recordId;
1566             else if (extra && extra->recordIdentifier)
1567                 rr.record_id = extra->recordIdentifier;
1568         }
1569         else if (!strcmp(rr.operation, "replace"))
1570         {
1571             if (srw_req->recordId)
1572                 rr.record_id = srw_req->recordId;
1573             else if (extra && extra->recordIdentifier)
1574                 rr.record_id = extra->recordIdentifier;
1575             else
1576             {
1577                 yaz_add_sru_update_diagnostic(
1578                     assoc->encode, &srw_res->diagnostics,
1579                     &srw_res->num_diagnostics,
1580                     YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1581                     "recordIdentifier");
1582             }
1583             if (!srw_req->record)
1584             {
1585                 yaz_add_sru_update_diagnostic(
1586                     assoc->encode, &srw_res->diagnostics,
1587                     &srw_res->num_diagnostics,
1588                     YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1589                     "record");
1590             }
1591             else
1592             {
1593                 if (srw_req->record->recordSchema)
1594                     rr.record_schema = odr_strdup(
1595                         assoc->encode, srw_req->record->recordSchema);
1596                 if (srw_req->record->recordData_len )
1597                 {
1598                     rr.record_data = odr_strdupn(assoc->encode,
1599                                                  srw_req->record->recordData_buf,
1600                                                  srw_req->record->recordData_len );
1601                 }
1602                 else
1603                 {
1604                     yaz_add_sru_update_diagnostic(
1605                         assoc->encode, &srw_res->diagnostics,
1606                         &srw_res->num_diagnostics,
1607                         YAZ_SRU_UPDATE_MISSING_MANDATORY_ELEMENT_RECORD_REJECTED,
1608                         "recordData" );
1609                 }
1610             }
1611             if (extra && extra->extraRecordData_len)
1612             {
1613                 rr.extra_record_data = odr_strdupn(
1614                     assoc->encode,
1615                     extra->extraRecordData_buf,
1616                     extra->extraRecordData_len );
1617             }
1618         }
1619         else if (!strcmp(rr.operation, "insert"))
1620         {
1621             if (srw_req->recordId)
1622                 rr.record_id = srw_req->recordId;
1623             else if (extra)
1624                 rr.record_id = extra->recordIdentifier;
1625
1626             if (srw_req->record)
1627             {
1628                 if (srw_req->record->recordSchema)
1629                     rr.record_schema = odr_strdup(
1630                         assoc->encode, srw_req->record->recordSchema);
1631
1632                 if (srw_req->record->recordData_len)
1633                     rr.record_data = odr_strdupn(
1634                         assoc->encode,
1635                         srw_req->record->recordData_buf,
1636                         srw_req->record->recordData_len );
1637             }
1638             if (extra && extra->extraRecordData_len)
1639             {
1640                 rr.extra_record_data = odr_strdupn(
1641                     assoc->encode,
1642                     extra->extraRecordData_buf,
1643                     extra->extraRecordData_len );
1644             }
1645         }
1646         else
1647             yaz_add_sru_update_diagnostic(assoc->encode, &srw_res->diagnostics,
1648                                           &srw_res->num_diagnostics,
1649                                           YAZ_SRU_UPDATE_INVALID_ACTION,
1650                                           rr.operation );
1651
1652         if (srw_req->record)
1653         {
1654             const char *pack_str =
1655                 yaz_srw_pack_to_str(srw_req->record->recordPacking);
1656             if (pack_str)
1657                 rr.record_packing = odr_strdup(assoc->encode, pack_str);
1658         }
1659
1660         if (srw_req->num_recordVersions)
1661         {
1662             rr.record_versions = srw_req->recordVersions;
1663             rr.num_versions = srw_req->num_recordVersions;
1664         }
1665         if (srw_req->extraRequestData_len)
1666         {
1667             rr.extra_request_data = odr_strdupn(assoc->encode,
1668                                                 srw_req->extraRequestData_buf,
1669                                                 srw_req->extraRequestData_len );
1670         }
1671         if (srw_res->num_diagnostics == 0)
1672         {
1673             if ( assoc->init->bend_srw_update)
1674                 (*assoc->init->bend_srw_update)(assoc->backend, &rr);
1675             else
1676                 yaz_add_sru_update_diagnostic(
1677                     assoc->encode, &srw_res->diagnostics,
1678                     &srw_res->num_diagnostics,
1679                     YAZ_SRU_UPDATE_UNSPECIFIED_DATABASE_ERROR,
1680                     "No Update backend handler");
1681         }
1682
1683         if (rr.uri)
1684             yaz_add_srw_diagnostic_uri(assoc->encode,
1685                                        &srw_res->diagnostics,
1686                                        &srw_res->num_diagnostics,
1687                                        rr.uri,
1688                                        rr.message,
1689                                        rr.details);
1690         srw_res->recordId = rr.record_id;
1691         srw_res->operationStatus = rr.operation_status;
1692         srw_res->recordVersions = rr.record_versions;
1693         srw_res->num_recordVersions = rr.num_versions;
1694         if (srw_res->extraResponseData_len)
1695         {
1696             srw_res->extraResponseData_buf = rr.extra_response_data;
1697             srw_res->extraResponseData_len = strlen(rr.extra_response_data);
1698         }
1699         if (srw_res->num_diagnostics == 0 && rr.record_data)
1700         {
1701             srw_res->record = yaz_srw_get_record(assoc->encode);
1702             srw_res->record->recordSchema = rr.record_schema;
1703             if (rr.record_packing)
1704             {
1705                 int pack = yaz_srw_str_to_pack(rr.record_packing);
1706
1707                 if (pack == -1)
1708                 {
1709                     pack = Z_SRW_recordPacking_string;
1710                     yaz_log(YLOG_WARN, "Back packing %s from backend",
1711                             rr.record_packing);
1712                 }
1713                 srw_res->record->recordPacking = pack;
1714             }
1715             srw_res->record->recordData_buf = rr.record_data;
1716             srw_res->record->recordData_len = strlen(rr.record_data);
1717             if (rr.extra_record_data)
1718             {
1719                 Z_SRW_extra_record *ex =
1720                     yaz_srw_get_extra_record(assoc->encode);
1721                 srw_res->extra_record = ex;
1722                 ex->extraRecordData_buf = rr.extra_record_data;
1723                 ex->extraRecordData_len = strlen(rr.extra_record_data);
1724             }
1725         }
1726     }
1727 }
1728
1729 /* check if path is OK (1); BAD (0) */
1730 static int check_path(const char *path)
1731 {
1732     if (*path != '/')
1733         return 0;
1734     if (strstr(path, ".."))
1735         return 0;
1736     return 1;
1737 }
1738
1739 static char *read_file(const char *fname, ODR o, size_t *sz)
1740 {
1741     char *buf;
1742     FILE *inf = fopen(fname, "rb");
1743     if (!inf)
1744         return 0;
1745
1746     fseek(inf, 0L, SEEK_END);
1747     *sz = ftell(inf);
1748     rewind(inf);
1749     buf = (char *) odr_malloc(o, *sz);
1750     if (fread(buf, 1, *sz, inf) != *sz)
1751         yaz_log(YLOG_WARN|YLOG_ERRNO, "short read %s", fname);
1752     fclose(inf);
1753     return buf;
1754 }
1755
1756 static void process_http_request(association *assoc, request *req)
1757 {
1758     Z_HTTP_Request *hreq = req->gdu_request->u.HTTP_Request;
1759     ODR o = assoc->encode;
1760     int r = 2;  /* 2=NOT TAKEN, 1=TAKEN, 0=SOAP TAKEN */
1761     Z_SRW_PDU *sr = 0;
1762     Z_SOAP *soap_package = 0;
1763     Z_GDU *p = 0;
1764     char *charset = 0;
1765     Z_HTTP_Response *hres = 0;
1766     int keepalive = 1;
1767     const char *stylesheet = 0; /* for now .. set later */
1768     Z_SRW_diagnostic *diagnostic = 0;
1769     int num_diagnostic = 0;
1770     const char *host = z_HTTP_header_lookup(hreq->headers, "Host");
1771
1772     yaz_log(log_request, "%s %s HTTP/%s", hreq->method, hreq->path, hreq->version);
1773     if (!control_association(assoc, host, 0))
1774     {
1775         p = z_get_HTTP_Response(o, 404);
1776         r = 1;
1777     }
1778     if (r == 2 && assoc->server && assoc->server->docpath
1779         && hreq->path[0] == '/'
1780         &&
1781         /* check if path is a proper prefix of documentroot */
1782         strncmp(hreq->path+1, assoc->server->docpath,
1783                 strlen(assoc->server->docpath))
1784         == 0)
1785     {
1786         if (!check_path(hreq->path))
1787         {
1788             yaz_log(YLOG_LOG, "File %s access forbidden", hreq->path+1);
1789             p = z_get_HTTP_Response(o, 404);
1790         }
1791         else
1792         {
1793             size_t content_size = 0;
1794             char *content_buf = read_file(hreq->path+1, o, &content_size);
1795             if (!content_buf)
1796             {
1797                 yaz_log(YLOG_LOG, "File %s not found", hreq->path+1);
1798                 p = z_get_HTTP_Response(o, 404);
1799             }
1800             else
1801             {
1802                 const char *ctype = 0;
1803                 yaz_mime_types types = yaz_mime_types_create();
1804
1805                 yaz_mime_types_add(types, "xsl", "application/xml");
1806                 yaz_mime_types_add(types, "xml", "application/xml");
1807                 yaz_mime_types_add(types, "css", "text/css");
1808                 yaz_mime_types_add(types, "html", "text/html");
1809                 yaz_mime_types_add(types, "htm", "text/html");
1810                 yaz_mime_types_add(types, "txt", "text/plain");
1811                 yaz_mime_types_add(types, "js", "application/x-javascript");
1812
1813                 yaz_mime_types_add(types, "gif", "image/gif");
1814                 yaz_mime_types_add(types, "png", "image/png");
1815                 yaz_mime_types_add(types, "jpg", "image/jpeg");
1816                 yaz_mime_types_add(types, "jpeg", "image/jpeg");
1817
1818                 ctype = yaz_mime_lookup_fname(types, hreq->path);
1819                 if (!ctype)
1820                 {
1821                     yaz_log(YLOG_LOG, "No mime type for %s", hreq->path+1);
1822                     p = z_get_HTTP_Response(o, 404);
1823                 }
1824                 else
1825                 {
1826                     p = z_get_HTTP_Response(o, 200);
1827                     hres = p->u.HTTP_Response;
1828                     hres->content_buf = content_buf;
1829                     hres->content_len = content_size;
1830                     z_HTTP_header_add(o, &hres->headers, "Content-Type", ctype);
1831                 }
1832                 yaz_mime_types_destroy(types);
1833             }
1834         }
1835         r = 1;
1836     }
1837
1838     if (r == 2)
1839     {
1840         r = yaz_srw_decode(hreq, &sr, &soap_package, assoc->decode, &charset);
1841         yaz_log(YLOG_DEBUG, "yaz_srw_decode returned %d", r);
1842     }
1843     if (r == 2)  /* not taken */
1844     {
1845         r = yaz_sru_decode(hreq, &sr, &soap_package, assoc->decode, &charset,
1846                            &diagnostic, &num_diagnostic);
1847         yaz_log(YLOG_DEBUG, "yaz_sru_decode returned %d", r);
1848     }
1849     if (r == 0)  /* decode SRW/SRU OK .. */
1850     {
1851         int http_code = 200;
1852         if (sr->which == Z_SRW_searchRetrieve_request)
1853         {
1854             Z_SRW_PDU *res =
1855                 yaz_srw_get_pdu(assoc->encode, Z_SRW_searchRetrieve_response,
1856                                 sr->srw_version);
1857             stylesheet = sr->u.request->stylesheet;
1858             if (num_diagnostic)
1859             {
1860                 res->u.response->diagnostics = diagnostic;
1861                 res->u.response->num_diagnostics = num_diagnostic;
1862             }
1863             else
1864             {
1865                 srw_bend_search(assoc, sr, res, &http_code);
1866             }
1867             if (http_code == 200)
1868                 soap_package->u.generic->p = res;
1869         }
1870         else if (sr->which == Z_SRW_explain_request)
1871         {
1872             Z_SRW_PDU *res = yaz_srw_get_pdu(o, Z_SRW_explain_response,
1873                                              sr->srw_version);
1874             stylesheet = sr->u.explain_request->stylesheet;
1875             if (num_diagnostic)
1876             {
1877                 res->u.explain_response->diagnostics = diagnostic;
1878                 res->u.explain_response->num_diagnostics = num_diagnostic;
1879             }
1880             srw_bend_explain(assoc, sr, res->u.explain_response, &http_code);
1881             if (http_code == 200)
1882                 soap_package->u.generic->p = res;
1883         }
1884         else if (sr->which == Z_SRW_scan_request)
1885         {
1886             Z_SRW_PDU *res = yaz_srw_get_pdu(o, Z_SRW_scan_response,
1887                                              sr->srw_version);
1888             stylesheet = sr->u.scan_request->stylesheet;
1889             if (num_diagnostic)
1890             {
1891                 res->u.scan_response->diagnostics = diagnostic;
1892                 res->u.scan_response->num_diagnostics = num_diagnostic;
1893             }
1894             srw_bend_scan(assoc, sr, res, &http_code);
1895             if (http_code == 200)
1896                 soap_package->u.generic->p = res;
1897         }
1898         else if (sr->which == Z_SRW_update_request)
1899         {
1900             Z_SRW_PDU *res = yaz_srw_get_pdu(o, Z_SRW_update_response,
1901                                              sr->srw_version);
1902             yaz_log(YLOG_DEBUG, "handling SRW UpdateRequest");
1903             if (num_diagnostic)
1904             {
1905                 res->u.update_response->diagnostics = diagnostic;
1906                 res->u.update_response->num_diagnostics = num_diagnostic;
1907             }
1908             yaz_log(YLOG_DEBUG, "num_diag = %d", res->u.update_response->num_diagnostics );
1909             srw_bend_update(assoc, sr, res->u.update_response, &http_code);
1910             if (http_code == 200)
1911                 soap_package->u.generic->p = res;
1912         }
1913         else
1914         {
1915             yaz_log(log_request, "SOAP ERROR");
1916             /* FIXME - what error, what query */
1917             http_code = 500;
1918             z_soap_error(assoc->encode, soap_package,
1919                          "SOAP-ENV:Client", "Bad method", 0);
1920         }
1921         if (http_code == 200 || http_code == 500)
1922         {
1923             static Z_SOAP_Handler soap_handlers[4] = {
1924 #if YAZ_HAVE_XML2
1925                 {YAZ_XMLNS_SRU_v1_1, 0, (Z_SOAP_fun) yaz_srw_codec},
1926                 {YAZ_XMLNS_SRU_v1_0, 0, (Z_SOAP_fun) yaz_srw_codec},
1927                 {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
1928 #endif
1929                 {0, 0, 0}
1930             };
1931             char ctype[80];
1932             p = z_get_HTTP_Response(o, 200);
1933             hres = p->u.HTTP_Response;
1934
1935             if (!stylesheet && assoc->server)
1936                 stylesheet = assoc->server->stylesheet;
1937
1938             /* empty stylesheet means NO stylesheet */
1939             if (stylesheet && *stylesheet == '\0')
1940                 stylesheet = 0;
1941
1942             z_soap_codec_enc_xsl(assoc->encode, &soap_package,
1943                                  &hres->content_buf, &hres->content_len,
1944                                  soap_handlers, charset, stylesheet);
1945             hres->code = http_code;
1946
1947             strcpy(ctype, "text/xml");
1948             if (charset && strlen(charset) < sizeof(ctype)-30)
1949             {
1950                 strcat(ctype, "; charset=");
1951                 strcat(ctype, charset);
1952             }
1953             z_HTTP_header_add(o, &hres->headers, "Content-Type", ctype);
1954         }
1955         else
1956             p = z_get_HTTP_Response(o, http_code);
1957     }
1958
1959     if (p == 0)
1960         p = z_get_HTTP_Response(o, 500);
1961     hres = p->u.HTTP_Response;
1962     if (!strcmp(hreq->version, "1.0"))
1963     {
1964         const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
1965         if (v && !strcmp(v, "Keep-Alive"))
1966             keepalive = 1;
1967         else
1968             keepalive = 0;
1969         hres->version = "1.0";
1970     }
1971     else
1972     {
1973         const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
1974         if (v && !strcmp(v, "close"))
1975             keepalive = 0;
1976         else
1977             keepalive = 1;
1978         hres->version = "1.1";
1979     }
1980     if (!keepalive || !assoc->last_control->keepalive)
1981     {
1982         z_HTTP_header_add(o, &hres->headers, "Connection", "close");
1983         assoc->state = ASSOC_DEAD;
1984         assoc->cs_get_mask = 0;
1985     }
1986     else
1987     {
1988         int t;
1989         const char *alive = z_HTTP_header_lookup(hreq->headers, "Keep-Alive");
1990
1991         if (alive && yaz_isdigit(*(const unsigned char *) alive))
1992             t = atoi(alive);
1993         else
1994             t = 15;
1995         if (t < 0 || t > 3600)
1996             t = 3600;
1997         iochan_settimeout(assoc->client_chan,t);
1998         z_HTTP_header_add(o, &hres->headers, "Connection", "Keep-Alive");
1999     }
2000     process_gdu_response(assoc, req, p);
2001 }
2002
2003 static void process_gdu_request(association *assoc, request *req)
2004 {
2005     if (req->gdu_request->which == Z_GDU_Z3950)
2006     {
2007         char *msg = 0;
2008         req->apdu_request = req->gdu_request->u.z3950;
2009         if (process_z_request(assoc, req, &msg) < 0)
2010             do_close_req(assoc, Z_Close_systemProblem, msg, req);
2011     }
2012     else if (req->gdu_request->which == Z_GDU_HTTP_Request)
2013         process_http_request(assoc, req);
2014     else
2015     {
2016         do_close_req(assoc, Z_Close_systemProblem, "bad protocol packet", req);
2017     }
2018 }
2019
2020 /*
2021  * Initiate request processing.
2022  */
2023 static int process_z_request(association *assoc, request *req, char **msg)
2024 {
2025     Z_APDU *res;
2026     int retval;
2027
2028     *msg = "Unknown Error";
2029     assert(req && req->state == REQUEST_IDLE);
2030     if (req->apdu_request->which != Z_APDU_initRequest && !assoc->init)
2031     {
2032         *msg = "Missing InitRequest";
2033         return -1;
2034     }
2035     switch (req->apdu_request->which)
2036     {
2037     case Z_APDU_initRequest:
2038         res = process_initRequest(assoc, req); break;
2039     case Z_APDU_searchRequest:
2040         res = process_searchRequest(assoc, req); break;
2041     case Z_APDU_presentRequest:
2042         res = process_presentRequest(assoc, req); break;
2043     case Z_APDU_scanRequest:
2044         if (assoc->init->bend_scan)
2045             res = process_scanRequest(assoc, req);
2046         else
2047         {
2048             *msg = "Cannot handle Scan APDU";
2049             return -1;
2050         }
2051         break;
2052     case Z_APDU_extendedServicesRequest:
2053         if (assoc->init->bend_esrequest)
2054             res = process_ESRequest(assoc, req);
2055         else
2056         {
2057             *msg = "Cannot handle Extended Services APDU";
2058             return -1;
2059         }
2060         break;
2061     case Z_APDU_sortRequest:
2062         if (assoc->init->bend_sort)
2063             res = process_sortRequest(assoc, req);
2064         else
2065         {
2066             *msg = "Cannot handle Sort APDU";
2067             return -1;
2068         }
2069         break;
2070     case Z_APDU_close:
2071         process_close(assoc, req);
2072         return 0;
2073     case Z_APDU_deleteResultSetRequest:
2074         if (assoc->init->bend_delete)
2075             res = process_deleteRequest(assoc, req);
2076         else
2077         {
2078             *msg = "Cannot handle Delete APDU";
2079             return -1;
2080         }
2081         break;
2082     case Z_APDU_segmentRequest:
2083         if (assoc->init->bend_segment)
2084         {
2085             res = process_segmentRequest(assoc, req);
2086         }
2087         else
2088         {
2089             *msg = "Cannot handle Segment APDU";
2090             return -1;
2091         }
2092         break;
2093     case Z_APDU_triggerResourceControlRequest:
2094         return 0;
2095     default:
2096         *msg = "Bad APDU received";
2097         return -1;
2098     }
2099     if (res)
2100     {
2101         yaz_log(YLOG_DEBUG, "  result immediately available");
2102         retval = process_z_response(assoc, req, res);
2103     }
2104     else
2105     {
2106         yaz_log(YLOG_DEBUG, "  result unavailable");
2107         retval = -1;
2108     }
2109     return retval;
2110 }
2111
2112 /*
2113  * Encode response, and transfer the request structure to the outgoing queue.
2114  */
2115 static int process_gdu_response(association *assoc, request *req, Z_GDU *res)
2116 {
2117     odr_setbuf(assoc->encode, req->response, req->size_response, 1);
2118
2119     if (assoc->print)
2120     {
2121         if (!z_GDU(assoc->print, &res, 0, 0))
2122             yaz_log(YLOG_WARN, "ODR print error: %s",
2123                 odr_errmsg(odr_geterror(assoc->print)));
2124         odr_reset(assoc->print);
2125     }
2126     if (!z_GDU(assoc->encode, &res, 0, 0))
2127     {
2128         yaz_log(YLOG_WARN, "ODR error when encoding PDU: %s [element %s]",
2129                 odr_errmsg(odr_geterror(assoc->decode)),
2130                 odr_getelement(assoc->decode));
2131         return -1;
2132     }
2133     req->response = odr_getbuf(assoc->encode, &req->len_response,
2134         &req->size_response);
2135     odr_setbuf(assoc->encode, 0, 0, 0); /* don'txfree if we abort later */
2136     odr_reset(assoc->encode);
2137     req->state = REQUEST_IDLE;
2138     request_enq(&assoc->outgoing, req);
2139     /* turn the work over to the ir_session handler */
2140     iochan_setflag(assoc->client_chan, EVENT_OUTPUT);
2141     assoc->cs_put_mask = EVENT_OUTPUT;
2142     /* Is there more work to be done? give that to the input handler too */
2143     for (;;)
2144     {
2145         req = request_head(&assoc->incoming);
2146         if (req && req->state == REQUEST_IDLE)
2147         {
2148             request_deq(&assoc->incoming);
2149             process_gdu_request(assoc, req);
2150         }
2151         else
2152             break;
2153     }
2154     return 0;
2155 }
2156
2157 /*
2158  * Encode response, and transfer the request structure to the outgoing queue.
2159  */
2160 static int process_z_response(association *assoc, request *req, Z_APDU *res)
2161 {
2162     Z_GDU *gres = (Z_GDU *) odr_malloc(assoc->encode, sizeof(*gres));
2163     gres->which = Z_GDU_Z3950;
2164     gres->u.z3950 = res;
2165
2166     return process_gdu_response(assoc, req, gres);
2167 }
2168
2169 static char *get_vhost(Z_OtherInformation *otherInfo)
2170 {
2171     return yaz_oi_get_string_oid(&otherInfo, yaz_oid_userinfo_proxy, 1, 0);
2172 }
2173
2174 /*
2175  * Handle init request.
2176  * At the moment, we don't check the options
2177  * anywhere else in the code - we just try not to do anything that would
2178  * break a naive client. We'll toss 'em into the association block when
2179  * we need them there.
2180  */
2181 static Z_APDU *process_initRequest(association *assoc, request *reqb)
2182 {
2183     Z_InitRequest *req = reqb->apdu_request->u.initRequest;
2184     Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_initResponse);
2185     Z_InitResponse *resp = apdu->u.initResponse;
2186     bend_initresult *binitres;
2187     char options[140];
2188     statserv_options_block *cb = 0;  /* by default no control for backend */
2189
2190     if (control_association(assoc, get_vhost(req->otherInfo), 1))
2191         cb = statserv_getcontrol();  /* got control block for backend */
2192
2193     if (cb && assoc->backend)
2194         (*cb->bend_close)(assoc->backend);
2195
2196     yaz_log(log_requestdetail, "Got initRequest");
2197     if (req->implementationId)
2198         yaz_log(log_requestdetail, "Id:        %s",
2199                 req->implementationId);
2200     if (req->implementationName)
2201         yaz_log(log_requestdetail, "Name:      %s",
2202                 req->implementationName);
2203     if (req->implementationVersion)
2204         yaz_log(log_requestdetail, "Version:   %s",
2205                 req->implementationVersion);
2206
2207     assoc_init_reset(assoc);
2208
2209     assoc->init->auth = req->idAuthentication;
2210     assoc->init->referenceId = req->referenceId;
2211
2212     if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
2213     {
2214         Z_CharSetandLanguageNegotiation *negotiation =
2215             yaz_get_charneg_record (req->otherInfo);
2216         if (negotiation &&
2217             negotiation->which == Z_CharSetandLanguageNegotiation_proposal)
2218             assoc->init->charneg_request = negotiation;
2219     }
2220
2221     /* by default named_result_sets is 0 .. Enable it if client asks for it. */
2222     if (ODR_MASK_GET(req->options, Z_Options_namedResultSets))
2223         assoc->init->named_result_sets = 1;
2224
2225     assoc->backend = 0;
2226     if (cb)
2227     {
2228         if (req->implementationVersion)
2229             yaz_log(log_requestdetail, "Config:    %s",
2230                     cb->configname);
2231
2232         iochan_settimeout(assoc->client_chan, cb->idle_timeout);
2233
2234         /* we have a backend control block, so call that init function */
2235         if (!(binitres = (*cb->bend_init)(assoc->init)))
2236         {
2237             yaz_log(YLOG_WARN, "Bad response from backend.");
2238             return 0;
2239         }
2240         assoc->backend = binitres->handle;
2241     }
2242     else
2243     {
2244         /* no backend. return error */
2245         binitres = (bend_initresult *)
2246             odr_malloc(assoc->encode, sizeof(*binitres));
2247         binitres->errstring = 0;
2248         binitres->errcode = YAZ_BIB1_PERMANENT_SYSTEM_ERROR;
2249         iochan_settimeout(assoc->client_chan, 10);
2250     }
2251     if ((assoc->init->bend_sort))
2252         yaz_log(YLOG_DEBUG, "Sort handler installed");
2253     if ((assoc->init->bend_search))
2254         yaz_log(YLOG_DEBUG, "Search handler installed");
2255     if ((assoc->init->bend_present))
2256         yaz_log(YLOG_DEBUG, "Present handler installed");
2257     if ((assoc->init->bend_esrequest))
2258         yaz_log(YLOG_DEBUG, "ESRequest handler installed");
2259     if ((assoc->init->bend_delete))
2260         yaz_log(YLOG_DEBUG, "Delete handler installed");
2261     if ((assoc->init->bend_scan))
2262         yaz_log(YLOG_DEBUG, "Scan handler installed");
2263     if ((assoc->init->bend_segment))
2264         yaz_log(YLOG_DEBUG, "Segment handler installed");
2265
2266     resp->referenceId = req->referenceId;
2267     *options = '\0';
2268     /* let's tell the client what we can do */
2269     if (ODR_MASK_GET(req->options, Z_Options_search))
2270     {
2271         ODR_MASK_SET(resp->options, Z_Options_search);
2272         strcat(options, "srch");
2273     }
2274     if (ODR_MASK_GET(req->options, Z_Options_present))
2275     {
2276         ODR_MASK_SET(resp->options, Z_Options_present);
2277         strcat(options, " prst");
2278     }
2279     if (ODR_MASK_GET(req->options, Z_Options_delSet) &&
2280         assoc->init->bend_delete)
2281     {
2282         ODR_MASK_SET(resp->options, Z_Options_delSet);
2283         strcat(options, " del");
2284     }
2285     if (ODR_MASK_GET(req->options, Z_Options_extendedServices) &&
2286         assoc->init->bend_esrequest)
2287     {
2288         ODR_MASK_SET(resp->options, Z_Options_extendedServices);
2289         strcat(options, " extendedServices");
2290     }
2291     if (ODR_MASK_GET(req->options, Z_Options_namedResultSets)
2292         && assoc->init->named_result_sets)
2293     {
2294         ODR_MASK_SET(resp->options, Z_Options_namedResultSets);
2295         strcat(options, " namedresults");
2296     }
2297     if (ODR_MASK_GET(req->options, Z_Options_scan) && assoc->init->bend_scan)
2298     {
2299         ODR_MASK_SET(resp->options, Z_Options_scan);
2300         strcat(options, " scan");
2301     }
2302     if (ODR_MASK_GET(req->options, Z_Options_concurrentOperations))
2303     {
2304         ODR_MASK_SET(resp->options, Z_Options_concurrentOperations);
2305         strcat(options, " concurrop");
2306     }
2307     if (ODR_MASK_GET(req->options, Z_Options_sort) && assoc->init->bend_sort)
2308     {
2309         ODR_MASK_SET(resp->options, Z_Options_sort);
2310         strcat(options, " sort");
2311     }
2312
2313     if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
2314     {
2315         Z_OtherInformationUnit *p0;
2316
2317         if (!assoc->init->charneg_response)
2318         {
2319             if (assoc->init->query_charset)
2320             {
2321                 assoc->init->charneg_response = yaz_set_response_charneg(
2322                     assoc->encode, assoc->init->query_charset, 0,
2323                     assoc->init->records_in_same_charset);
2324             }
2325             else
2326             {
2327                 yaz_log(YLOG_WARN, "default query_charset not defined by backend");
2328             }
2329         }
2330         if (assoc->init->charneg_response
2331             && (p0=yaz_oi_update(&resp->otherInfo, assoc->encode, NULL, 0, 0)))
2332         {
2333             p0->which = Z_OtherInfo_externallyDefinedInfo;
2334             p0->information.externallyDefinedInfo =
2335                 assoc->init->charneg_response;
2336             ODR_MASK_SET(resp->options, Z_Options_negotiationModel);
2337             strcat(options, " negotiation");
2338         }
2339     }
2340     if (ODR_MASK_GET(req->options, Z_Options_triggerResourceCtrl))
2341         ODR_MASK_SET(resp->options, Z_Options_triggerResourceCtrl);
2342
2343     if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_1))
2344     {
2345         ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_1);
2346         assoc->version = 1; /* 1 & 2 are equivalent */
2347     }
2348     if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_2))
2349     {
2350         ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_2);
2351         assoc->version = 2;
2352     }
2353     if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_3))
2354     {
2355         ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_3);
2356         assoc->version = 3;
2357     }
2358
2359     yaz_log(log_requestdetail, "Negotiated to v%d: %s", assoc->version, options);
2360
2361     if (*req->maximumRecordSize < assoc->maximumRecordSize)
2362         assoc->maximumRecordSize = odr_int_to_int(*req->maximumRecordSize);
2363
2364     if (*req->preferredMessageSize < assoc->preferredMessageSize)
2365         assoc->preferredMessageSize = odr_int_to_int(*req->preferredMessageSize);
2366
2367     resp->preferredMessageSize =
2368         odr_intdup(assoc->encode, assoc->preferredMessageSize);
2369     resp->maximumRecordSize =
2370         odr_intdup(assoc->encode, assoc->maximumRecordSize);
2371
2372     resp->implementationId = odr_prepend(assoc->encode,
2373                 assoc->init->implementation_id,
2374                 resp->implementationId);
2375
2376     resp->implementationVersion = odr_prepend(assoc->encode,
2377                 assoc->init->implementation_version,
2378                 resp->implementationVersion);
2379
2380     resp->implementationName = odr_prepend(assoc->encode,
2381                 assoc->init->implementation_name,
2382                 odr_prepend(assoc->encode, "GFS", resp->implementationName));
2383
2384     if (binitres->errcode)
2385     {
2386         assoc->state = ASSOC_DEAD;
2387         resp->userInformationField =
2388             init_diagnostics(assoc->encode, binitres->errcode,
2389                              binitres->errstring);
2390         *resp->result = 0;
2391     }
2392     else
2393         assoc->state = ASSOC_UP;
2394
2395     if (log_request)
2396     {
2397         if (!req->idAuthentication)
2398             yaz_log(log_request, "Auth none");
2399         else if (req->idAuthentication->which == Z_IdAuthentication_open)
2400         {
2401             const char *open = req->idAuthentication->u.open;
2402             const char *slash = strchr(open, '/');
2403             int len;
2404             if (slash)
2405                 len = slash - open;
2406             else
2407                 len = strlen(open);
2408                 yaz_log(log_request, "Auth open %.*s", len, open);
2409         }
2410         else if (req->idAuthentication->which == Z_IdAuthentication_idPass)
2411         {
2412             const char *user = req->idAuthentication->u.idPass->userId;
2413             const char *group = req->idAuthentication->u.idPass->groupId;
2414             yaz_log(log_request, "Auth idPass %s %s",
2415                     user ? user : "-", group ? group : "-");
2416         }
2417         else if (req->idAuthentication->which
2418                  == Z_IdAuthentication_anonymous)
2419         {
2420             yaz_log(log_request, "Auth anonymous");
2421         }
2422         else
2423         {
2424             yaz_log(log_request, "Auth other");
2425         }
2426     }
2427     if (log_request)
2428     {
2429         WRBUF wr = wrbuf_alloc();
2430         wrbuf_printf(wr, "Init ");
2431         if (binitres->errcode)
2432             wrbuf_printf(wr, "ERROR %d", binitres->errcode);
2433         else
2434             wrbuf_printf(wr, "OK -");
2435         wrbuf_printf(wr, " ID:%s Name:%s Version:%s",
2436                      (req->implementationId ? req->implementationId :"-"),
2437                      (req->implementationName ?
2438                       req->implementationName : "-"),
2439                      (req->implementationVersion ?
2440                       req->implementationVersion : "-")
2441             );
2442         yaz_log(log_request, "%s", wrbuf_cstr(wr));
2443         wrbuf_destroy(wr);
2444     }
2445     return apdu;
2446 }
2447
2448 /*
2449  * Set the specified `errcode' and `errstring' into a UserInfo-1
2450  * external to be returned to the client in accordance with Z35.90
2451  * Implementor Agreement 5 (Returning diagnostics in an InitResponse):
2452  *      http://lcweb.loc.gov/z3950/agency/agree/initdiag.html
2453  */
2454 static Z_External *init_diagnostics(ODR odr, int error, const char *addinfo)
2455 {
2456     yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
2457         addinfo ? " -- " : "", addinfo ? addinfo : "");
2458     return zget_init_diagnostics(odr, error, addinfo);
2459 }
2460
2461 /*
2462  * nonsurrogate diagnostic record.
2463  */
2464 static Z_Records *diagrec(association *assoc, int error, char *addinfo)
2465 {
2466     Z_Records *rec = (Z_Records *) odr_malloc(assoc->encode, sizeof(*rec));
2467
2468     yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
2469             addinfo ? " -- " : "", addinfo ? addinfo : "");
2470
2471     rec->which = Z_Records_NSD;
2472     rec->u.nonSurrogateDiagnostic = zget_DefaultDiagFormat(assoc->encode,
2473                                                            error, addinfo);
2474     return rec;
2475 }
2476
2477 /*
2478  * surrogate diagnostic.
2479  */
2480 static Z_NamePlusRecord *surrogatediagrec(association *assoc,
2481                                           const char *dbname,
2482                                           int error, const char *addinfo)
2483 {
2484     yaz_log(log_requestdetail, "[%d] %s%s%s", error, diagbib1_str(error),
2485             addinfo ? " -- " : "", addinfo ? addinfo : "");
2486     return zget_surrogateDiagRec(assoc->encode, dbname, error, addinfo);
2487 }
2488
2489 static Z_Records *pack_records(association *a, char *setname, Odr_int start,
2490                                Odr_int *num, Z_RecordComposition *comp,
2491                                Odr_int *next, Odr_int *pres,
2492                                Z_ReferenceId *referenceId,
2493                                Odr_oid *oid, int *errcode)
2494 {
2495     int recno, total_length = 0, dumped_records = 0;
2496     int toget = odr_int_to_int(*num);
2497     Z_Records *records =
2498         (Z_Records *) odr_malloc(a->encode, sizeof(*records));
2499     Z_NamePlusRecordList *reclist =
2500         (Z_NamePlusRecordList *) odr_malloc(a->encode, sizeof(*reclist));
2501
2502     records->which = Z_Records_DBOSD;
2503     records->u.databaseOrSurDiagnostics = reclist;
2504     reclist->num_records = 0;
2505
2506     if (toget < 0)
2507         return diagrec(a, YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE, 0);
2508     else if (toget == 0)
2509         reclist->records = odr_nullval();
2510     else
2511         reclist->records = (Z_NamePlusRecord **)
2512             odr_malloc(a->encode, sizeof(*reclist->records) * toget);
2513
2514     *pres = Z_PresentStatus_success;
2515     *num = 0;
2516     *next = 0;
2517
2518     yaz_log(log_requestdetail, "Request to pack " ODR_INT_PRINTF "+%d %s", start, toget, setname);
2519     yaz_log(log_requestdetail, "pms=%d, mrs=%d", a->preferredMessageSize,
2520         a->maximumRecordSize);
2521     for (recno = odr_int_to_int(start); reclist->num_records < toget; recno++)
2522     {
2523         bend_fetch_rr freq;
2524         Z_NamePlusRecord *thisrec;
2525         int this_length = 0;
2526         /*
2527          * we get the number of bytes allocated on the stream before any
2528          * allocation done by the backend - this should give us a reasonable
2529          * idea of the total size of the data so far.
2530          */
2531         total_length = odr_total(a->encode) - dumped_records;
2532         freq.errcode = 0;
2533         freq.errstring = 0;
2534         freq.basename = 0;
2535         freq.len = 0;
2536         freq.record = 0;
2537         freq.last_in_set = 0;
2538         freq.setname = setname;
2539         freq.surrogate_flag = 0;
2540         freq.number = recno;
2541         freq.comp = comp;
2542         freq.request_format = oid;
2543         freq.output_format = 0;
2544         freq.stream = a->encode;
2545         freq.print = a->print;
2546         freq.referenceId = referenceId;
2547         freq.schema = 0;
2548
2549         retrieve_fetch(a, &freq);
2550
2551         *next = freq.last_in_set ? 0 : recno + 1;
2552
2553         if (freq.errcode)
2554         {
2555             if (!freq.surrogate_flag) /* non-surrogate diagnostic i.e. global */
2556             {
2557                 char s[20];
2558                 *pres = Z_PresentStatus_failure;
2559                 /* for 'present request out of range',
2560                    set addinfo to record position if not set */
2561                 if (freq.errcode == YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE  &&
2562                                 freq.errstring == 0)
2563                 {
2564                     sprintf(s, "%d", recno);
2565                     freq.errstring = s;
2566                 }
2567                 if (errcode)
2568                     *errcode = freq.errcode;
2569                 return diagrec(a, freq.errcode, freq.errstring);
2570             }
2571             reclist->records[reclist->num_records] =
2572                 surrogatediagrec(a, freq.basename, freq.errcode,
2573                                  freq.errstring);
2574             reclist->num_records++;
2575             continue;
2576         }
2577         if (freq.record == 0)  /* no error and no record ? */
2578         {
2579             *pres = Z_PresentStatus_partial_4;
2580             *next = 0;   /* signal end-of-set and stop */
2581             break;
2582         }
2583         if (freq.len >= 0)
2584             this_length = freq.len;
2585         else
2586             this_length = odr_total(a->encode) - total_length - dumped_records;
2587         yaz_log(YLOG_DEBUG, "  fetched record, len=%d, total=%d dumped=%d",
2588             this_length, total_length, dumped_records);
2589         if (a->preferredMessageSize > 0 &&
2590                 this_length + total_length > a->preferredMessageSize)
2591         {
2592             /* record is small enough, really */
2593             if (this_length <= a->preferredMessageSize && recno > start)
2594             {
2595                 yaz_log(log_requestdetail, "  Dropped last normal-sized record");
2596                 *pres = Z_PresentStatus_partial_2;
2597                 if (*next > 0)
2598                     (*next)--;
2599                 break;
2600             }
2601             /* record can only be fetched by itself */
2602             if (this_length < a->maximumRecordSize)
2603             {
2604                 yaz_log(log_requestdetail, "  Record > prefmsgsz");
2605                 if (toget > 1)
2606                 {
2607                     yaz_log(YLOG_DEBUG, "  Dropped it");
2608                     reclist->records[reclist->num_records] =
2609                          surrogatediagrec(
2610                              a, freq.basename,
2611                              YAZ_BIB1_RECORD_EXCEEDS_PREFERRED_MESSAGE_SIZE, 0);
2612                     reclist->num_records++;
2613                     dumped_records += this_length;
2614                     continue;
2615                 }
2616             }
2617             else /* too big entirely */
2618             {
2619                 yaz_log(log_requestdetail, "Record > maxrcdsz "
2620                         "this=%d max=%d",
2621                         this_length, a->maximumRecordSize);
2622                 reclist->records[reclist->num_records] =
2623                     surrogatediagrec(
2624                         a, freq.basename,
2625                         YAZ_BIB1_RECORD_EXCEEDS_MAXIMUM_RECORD_SIZE, 0);
2626                 reclist->num_records++;
2627                 dumped_records += this_length;
2628                 continue;
2629             }
2630         }
2631
2632         if (!(thisrec = (Z_NamePlusRecord *)
2633               odr_malloc(a->encode, sizeof(*thisrec))))
2634             return 0;
2635         thisrec->databaseName = odr_strdup_null(a->encode, freq.basename);
2636         thisrec->which = Z_NamePlusRecord_databaseRecord;
2637
2638         if (!freq.output_format)
2639         {
2640             yaz_log(YLOG_WARN, "bend_fetch output_format not set");
2641             return 0;
2642         }
2643         thisrec->u.databaseRecord = z_ext_record_oid(
2644             a->encode, freq.output_format, freq.record, freq.len);
2645         if (!thisrec->u.databaseRecord)
2646             return 0;
2647         reclist->records[reclist->num_records] = thisrec;
2648         reclist->num_records++;
2649         if (freq.last_in_set)
2650             break;
2651     }
2652     *num = reclist->num_records;
2653     return records;
2654 }
2655
2656 static Z_APDU *process_searchRequest(association *assoc, request *reqb)
2657 {
2658     Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
2659     bend_search_rr *bsrr =
2660         (bend_search_rr *)nmem_malloc(reqb->request_mem, sizeof(*bsrr));
2661
2662     yaz_log(log_requestdetail, "Got SearchRequest.");
2663     bsrr->association = assoc;
2664     bsrr->referenceId = req->referenceId;
2665     bsrr->srw_sortKeys = 0;
2666     bsrr->srw_setname = 0;
2667     bsrr->srw_setnameIdleTime = 0;
2668     bsrr->estimated_hit_count = 0;
2669     bsrr->partial_resultset = 0;
2670     bsrr->extra_args = 0;
2671     bsrr->extra_response_data = 0;
2672
2673     yaz_log(log_requestdetail, "ResultSet '%s'", req->resultSetName);
2674     if (req->databaseNames)
2675     {
2676         int i;
2677         for (i = 0; i < req->num_databaseNames; i++)
2678             yaz_log(log_requestdetail, "Database '%s'", req->databaseNames[i]);
2679     }
2680
2681     yaz_log_zquery_level(log_requestdetail,req->query);
2682
2683     if (assoc->init->bend_search)
2684     {
2685         bsrr->setname = req->resultSetName;
2686         bsrr->replace_set = *req->replaceIndicator;
2687         bsrr->num_bases = req->num_databaseNames;
2688         bsrr->basenames = req->databaseNames;
2689         bsrr->query = req->query;
2690         bsrr->stream = assoc->encode;
2691         nmem_transfer(odr_getmem(bsrr->stream), reqb->request_mem);
2692         bsrr->decode = assoc->decode;
2693         bsrr->print = assoc->print;
2694         bsrr->hits = 0;
2695         bsrr->errcode = 0;
2696         bsrr->errstring = NULL;
2697         bsrr->search_info = NULL;
2698         bsrr->search_input = req->additionalSearchInfo;
2699         if (!bsrr->search_input)
2700             bsrr->search_input = req->otherInfo;
2701         bsrr->present_number = *req->mediumSetPresentNumber;
2702
2703         if (assoc->server && assoc->server->cql_transform
2704             && req->query->which == Z_Query_type_104
2705             && req->query->u.type_104->which == Z_External_CQL)
2706         {
2707             /* have a CQL query and a CQL to PQF transform .. */
2708             int srw_errcode =
2709                 cql2pqf(bsrr->stream, req->query->u.type_104->u.cql,
2710                         assoc->server->cql_transform, bsrr->query,
2711                         &bsrr->srw_sortKeys);
2712             if (srw_errcode)
2713                 bsrr->errcode = yaz_diag_srw_to_bib1(srw_errcode);
2714         }
2715
2716         if (assoc->server && assoc->server->ccl_transform
2717             && req->query->which == Z_Query_type_2) /*CCL*/
2718         {
2719             /* have a CCL query and a CCL to PQF transform .. */
2720             int srw_errcode =
2721                 ccl2pqf(bsrr->stream, req->query->u.type_2,
2722                         assoc->server->ccl_transform, bsrr);
2723             if (srw_errcode)
2724                 bsrr->errcode = yaz_diag_srw_to_bib1(srw_errcode);
2725         }
2726
2727         if (!bsrr->errcode)
2728             (assoc->init->bend_search)(assoc->backend, bsrr);
2729     }
2730     else
2731     {
2732         /* FIXME - make a diagnostic for it */
2733         yaz_log(YLOG_WARN,"Search not supported ?!?!");
2734     }
2735     return response_searchRequest(assoc, reqb, bsrr);
2736 }
2737
2738 /*
2739  * Prepare a searchresponse based on the backend results. We probably want
2740  * to look at making the fetching of records nonblocking as well, but
2741  * so far, we'll keep things simple.
2742  * If bsrt is null, that means we're called in response to a communications
2743  * event, and we'll have to get the response for ourselves.
2744  */
2745 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
2746                                       bend_search_rr *bsrt)
2747 {
2748     Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
2749     Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
2750     Z_SearchResponse *resp = (Z_SearchResponse *)
2751         odr_malloc(assoc->encode, sizeof(*resp));
2752     Odr_int *nulint = odr_intdup(assoc->encode, 0);
2753     Odr_int *next = odr_intdup(assoc->encode, 0);
2754     Odr_int *none = odr_intdup(assoc->encode, Z_SearchResponse_none);
2755     Odr_int returnedrecs = 0;
2756
2757     apdu->which = Z_APDU_searchResponse;
2758     apdu->u.searchResponse = resp;
2759     resp->referenceId = req->referenceId;
2760     resp->additionalSearchInfo = 0;
2761     resp->otherInfo = 0;
2762     if (!bsrt)
2763     {
2764         yaz_log(YLOG_FATAL, "Bad result from backend");
2765         return 0;
2766     }
2767     else if (bsrt->errcode)
2768     {
2769         resp->records = diagrec(assoc, bsrt->errcode, bsrt->errstring);
2770         resp->resultCount = nulint;
2771         resp->numberOfRecordsReturned = nulint;
2772         resp->nextResultSetPosition = nulint;
2773         resp->searchStatus = odr_booldup(assoc->encode, 0);
2774         resp->resultSetStatus = none;
2775         resp->presentStatus = 0;
2776     }
2777     else
2778     {
2779         bool_t *sr = odr_booldup(assoc->encode, 1);
2780         Odr_int *toget = odr_intdup(assoc->encode, 0);
2781         Z_RecordComposition comp, *compp = 0;
2782
2783         yaz_log(log_requestdetail, "resultCount: " ODR_INT_PRINTF, bsrt->hits);
2784
2785         resp->records = 0;
2786         resp->resultCount = &bsrt->hits;
2787
2788         comp.which = Z_RecordComp_simple;
2789         /* how many records does the user agent want, then? */
2790         if (bsrt->hits < 0)
2791             *toget = 0;
2792         else if (bsrt->hits <= *req->smallSetUpperBound)
2793         {
2794             *toget = bsrt->hits;
2795             if ((comp.u.simple = req->smallSetElementSetNames))
2796                 compp = &comp;
2797         }
2798         else if (bsrt->hits < *req->largeSetLowerBound)
2799         {
2800             *toget = *req->mediumSetPresentNumber;
2801             if (*toget > bsrt->hits)
2802                 *toget = bsrt->hits;
2803             if ((comp.u.simple = req->mediumSetElementSetNames))
2804                 compp = &comp;
2805         }
2806         else
2807             *toget = 0;
2808
2809         if (*toget && !resp->records)
2810         {
2811             Odr_int *presst = odr_intdup(assoc->encode, 0);
2812             /* Call bend_present if defined */
2813             if (assoc->init->bend_present)
2814             {
2815                 bend_present_rr *bprr = (bend_present_rr *)
2816                     nmem_malloc(reqb->request_mem, sizeof(*bprr));
2817                 bprr->setname = req->resultSetName;
2818                 bprr->start = 1;
2819                 bprr->number = odr_int_to_int(*toget);
2820                 bprr->format = req->preferredRecordSyntax;
2821                 bprr->comp = compp;
2822                 bprr->referenceId = req->referenceId;
2823                 bprr->stream = assoc->encode;
2824                 bprr->print = assoc->print;
2825                 bprr->association = assoc;
2826                 bprr->errcode = 0;
2827                 bprr->errstring = NULL;
2828                 (*assoc->init->bend_present)(assoc->backend, bprr);
2829
2830                 if (bprr->errcode)
2831                 {
2832                     resp->records = diagrec(assoc, bprr->errcode, bprr->errstring);
2833                     *resp->presentStatus = Z_PresentStatus_failure;
2834                 }
2835             }
2836
2837             if (!resp->records)
2838                 resp->records = pack_records(
2839                     assoc, req->resultSetName, 1,
2840                     toget, compp, next, presst, req->referenceId,
2841                     req->preferredRecordSyntax, NULL);
2842             if (!resp->records)
2843                 return 0;
2844             resp->numberOfRecordsReturned = toget;
2845             returnedrecs = *toget;
2846             resp->presentStatus = presst;
2847         }
2848         else
2849         {
2850             if (*resp->resultCount)
2851                 *next = 1;
2852             resp->numberOfRecordsReturned = nulint;
2853             resp->presentStatus = 0;
2854         }
2855         resp->nextResultSetPosition = next;
2856         resp->searchStatus = sr;
2857         resp->resultSetStatus = 0;
2858         if (bsrt->estimated_hit_count)
2859         {
2860             resp->resultSetStatus = odr_intdup(assoc->encode,
2861                                                Z_SearchResponse_estimate);
2862         }
2863         else if (bsrt->partial_resultset)
2864         {
2865             resp->resultSetStatus = odr_intdup(assoc->encode,
2866                                                Z_SearchResponse_subset);
2867         }
2868     }
2869     resp->additionalSearchInfo = bsrt->search_info;
2870
2871     if (log_request)
2872     {
2873         int i;
2874         WRBUF wr = wrbuf_alloc();
2875
2876         for (i = 0 ; i < req->num_databaseNames; i++)
2877         {
2878             if (i)
2879                 wrbuf_printf(wr, "+");
2880             wrbuf_puts(wr, req->databaseNames[i]);
2881         }
2882         wrbuf_printf(wr, " ");
2883
2884         if (bsrt->errcode)
2885             wrbuf_printf(wr, "ERROR %d", bsrt->errcode);
2886         else
2887             wrbuf_printf(wr, "OK " ODR_INT_PRINTF, bsrt->hits);
2888         wrbuf_printf(wr, " %s 1+" ODR_INT_PRINTF " ",
2889                      req->resultSetName, returnedrecs);
2890         yaz_query_to_wrbuf(wr, req->query);
2891
2892         yaz_log(log_request, "Search %s", wrbuf_cstr(wr));
2893         wrbuf_destroy(wr);
2894     }
2895     return apdu;
2896 }
2897
2898 /*
2899  * Maybe we got a little over-friendly when we designed bend_fetch to
2900  * get only one record at a time. Some backends can optimise multiple-record
2901  * fetches, and at any rate, there is some overhead involved in
2902  * all that selecting and hopping around. Problem is, of course, that the
2903  * frontend can't know ahead of time how many records it'll need to
2904  * fill the negotiated PDU size. Annoying. Segmentation or not, Z/SR
2905  * is downright lousy as a bulk data transfer protocol.
2906  *
2907  * To start with, we'll do the fetching of records from the backend
2908  * in one operation: To save some trips in and out of the event-handler,
2909  * and to simplify the interface to pack_records. At any rate, asynch
2910  * operation is more fun in operations that have an unpredictable execution
2911  * speed - which is normally more true for search than for present.
2912  */
2913 static Z_APDU *process_presentRequest(association *assoc, request *reqb)
2914 {
2915     Z_PresentRequest *req = reqb->apdu_request->u.presentRequest;
2916     Z_APDU *apdu;
2917     Z_PresentResponse *resp;
2918     Odr_int *next;
2919     Odr_int *num;
2920     int errcode = 0;
2921
2922     yaz_log(log_requestdetail, "Got PresentRequest.");
2923
2924     resp = (Z_PresentResponse *)odr_malloc(assoc->encode, sizeof(*resp));
2925     resp->records = 0;
2926     resp->presentStatus = odr_intdup(assoc->encode, 0);
2927     if (assoc->init->bend_present)
2928     {
2929         bend_present_rr *bprr = (bend_present_rr *)
2930             nmem_malloc(reqb->request_mem, sizeof(*bprr));
2931         bprr->setname = req->resultSetId;
2932         bprr->start = odr_int_to_int(*req->resultSetStartPoint);
2933         bprr->number = odr_int_to_int(*req->numberOfRecordsRequested);
2934         bprr->format = req->preferredRecordSyntax;
2935         bprr->comp = req->recordComposition;
2936         bprr->referenceId = req->referenceId;
2937         bprr->stream = assoc->encode;
2938         bprr->print = assoc->print;
2939         bprr->association = assoc;
2940         bprr->errcode = 0;
2941         bprr->errstring = NULL;
2942         (*assoc->init->bend_present)(assoc->backend, bprr);
2943
2944         if (bprr->errcode)
2945         {
2946             resp->records = diagrec(assoc, bprr->errcode, bprr->errstring);
2947             *resp->presentStatus = Z_PresentStatus_failure;
2948             errcode = bprr->errcode;
2949         }
2950     }
2951     apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
2952     next = odr_intdup(assoc->encode, 0);
2953     num = odr_intdup(assoc->encode, 0);
2954
2955     apdu->which = Z_APDU_presentResponse;
2956     apdu->u.presentResponse = resp;
2957     resp->referenceId = req->referenceId;
2958     resp->otherInfo = 0;
2959
2960     if (!resp->records)
2961     {
2962         *num = *req->numberOfRecordsRequested;
2963         resp->records =
2964             pack_records(assoc, req->resultSetId, *req->resultSetStartPoint,
2965                          num, req->recordComposition, next,
2966                          resp->presentStatus,
2967                          req->referenceId, req->preferredRecordSyntax,
2968                          &errcode);
2969     }
2970     if (log_request)
2971     {
2972         WRBUF wr = wrbuf_alloc();
2973         wrbuf_printf(wr, "Present ");
2974
2975         if (*resp->presentStatus == Z_PresentStatus_failure)
2976             wrbuf_printf(wr, "ERROR %d ", errcode);
2977         else if (*resp->presentStatus == Z_PresentStatus_success)
2978             wrbuf_printf(wr, "OK -  ");
2979         else
2980             wrbuf_printf(wr, "Partial " ODR_INT_PRINTF " - ",
2981                          *resp->presentStatus);
2982
2983         wrbuf_printf(wr, " %s " ODR_INT_PRINTF "+" ODR_INT_PRINTF " ",
2984                 req->resultSetId, *req->resultSetStartPoint,
2985                 *req->numberOfRecordsRequested);
2986         yaz_log(log_request, "%s", wrbuf_cstr(wr) );
2987         wrbuf_destroy(wr);
2988     }
2989     if (!resp->records)
2990         return 0;
2991     resp->numberOfRecordsReturned = num;
2992     resp->nextResultSetPosition = next;
2993
2994     return apdu;
2995 }
2996
2997 /*
2998  * Scan was implemented rather in a hurry, and with support for only the basic
2999  * elements of the service in the backend API. Suggestions are welcome.
3000  */
3001 static Z_APDU *process_scanRequest(association *assoc, request *reqb)
3002 {
3003     Z_ScanRequest *req = reqb->apdu_request->u.scanRequest;
3004     Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
3005     Z_ScanResponse *res = (Z_ScanResponse *)
3006         odr_malloc(assoc->encode, sizeof(*res));
3007     Odr_int *scanStatus = odr_intdup(assoc->encode, Z_Scan_failure);
3008     Odr_int *numberOfEntriesReturned = odr_intdup(assoc->encode, 0);
3009     Z_ListEntries *ents = (Z_ListEntries *)
3010         odr_malloc(assoc->encode, sizeof(*ents));
3011     Z_DiagRecs *diagrecs_p = NULL;
3012     bend_scan_rr *bsrr = (bend_scan_rr *)
3013         odr_malloc(assoc->encode, sizeof(*bsrr));
3014     struct scan_entry *save_entries;
3015     int step_size = 0;
3016
3017     yaz_log(log_requestdetail, "Got ScanRequest");
3018
3019     apdu->which = Z_APDU_scanResponse;
3020     apdu->u.scanResponse = res;
3021     res->referenceId = req->referenceId;
3022
3023     /* if step is absent, set it to 0 */
3024     if (req->stepSize)
3025         step_size = odr_int_to_int(*req->stepSize);
3026
3027     res->stepSize = 0;
3028     res->scanStatus = scanStatus;
3029     res->numberOfEntriesReturned = numberOfEntriesReturned;
3030     res->positionOfTerm = 0;
3031     res->entries = ents;
3032     ents->num_entries = 0;
3033     ents->entries = NULL;
3034     ents->num_nonsurrogateDiagnostics = 0;
3035     ents->nonsurrogateDiagnostics = NULL;
3036     res->attributeSet = 0;
3037     res->otherInfo = 0;
3038
3039     if (req->databaseNames)
3040     {
3041         int i;
3042         for (i = 0; i < req->num_databaseNames; i++)
3043             yaz_log(log_requestdetail, "Database '%s'", req->databaseNames[i]);
3044     }
3045     bsrr->scanClause = 0;
3046     bsrr->errcode = 0;
3047     bsrr->errstring = 0;
3048     bsrr->num_bases = req->num_databaseNames;
3049     bsrr->basenames = req->databaseNames;
3050     bsrr->num_entries = odr_int_to_int(*req->numberOfTermsRequested);
3051     bsrr->term = req->termListAndStartPoint;
3052     bsrr->referenceId = req->referenceId;
3053     bsrr->stream = assoc->encode;
3054     bsrr->print = assoc->print;
3055     bsrr->step_size = &step_size;
3056     bsrr->setname = yaz_oi_get_string_oid(&req->otherInfo,
3057                                           yaz_oid_userinfo_scan_set, 1, 0);
3058     bsrr->entries = 0;
3059     bsrr->extra_args = 0;
3060     bsrr->extra_response_data = 0;
3061     /* For YAZ 2.0 and earlier it was the backend handler that
3062        initialized entries (member display_term did not exist)
3063        YAZ 2.0 and later sets 'entries'  and initialize all members
3064        including 'display_term'. If YAZ 2.0 or later sees that
3065        entries was modified - we assume that it is an old handler and
3066        that 'display_term' is _not_ set.
3067     */
3068     if (bsrr->num_entries > 0)
3069     {
3070         int i;
3071         bsrr->entries = (struct scan_entry *)
3072             odr_malloc(assoc->decode, sizeof(*bsrr->entries) *
3073                        bsrr->num_entries);
3074         for (i = 0; i<bsrr->num_entries; i++)
3075         {
3076             bsrr->entries[i].term = 0;
3077             bsrr->entries[i].occurrences = 0;
3078             bsrr->entries[i].errcode = 0;
3079             bsrr->entries[i].errstring = 0;
3080             bsrr->entries[i].display_term = 0;
3081         }
3082     }
3083     save_entries = bsrr->entries;  /* save it so we can compare later */
3084
3085     bsrr->attributeset = req->attributeSet;
3086     log_scan_term_level(log_requestdetail, req->termListAndStartPoint,
3087                         bsrr->attributeset);
3088     bsrr->term_position = req->preferredPositionInResponse ?
3089         odr_int_to_int(*req->preferredPositionInResponse) : 1;
3090
3091     ((int (*)(void *, bend_scan_rr *))
3092      (*assoc->init->bend_scan))(assoc->backend, bsrr);
3093
3094     if (bsrr->errcode)
3095         diagrecs_p = zget_DiagRecs(assoc->encode,
3096                                    bsrr->errcode, bsrr->errstring);
3097     else
3098     {
3099         int i;
3100         Z_Entry **tab = (Z_Entry **)
3101             odr_malloc(assoc->encode, sizeof(*tab) * bsrr->num_entries);
3102
3103         if (bsrr->status == BEND_SCAN_PARTIAL)
3104             *scanStatus = Z_Scan_partial_5;
3105         else
3106             *scanStatus = Z_Scan_success;
3107         res->stepSize = odr_intdup(assoc->encode, step_size);
3108         ents->entries = tab;
3109         ents->num_entries = bsrr->num_entries;
3110         res->numberOfEntriesReturned = odr_intdup(assoc->encode,
3111                                                    ents->num_entries);
3112         res->positionOfTerm = odr_intdup(assoc->encode, bsrr->term_position);
3113         for (i = 0; i < bsrr->num_entries; i++)
3114         {
3115             Z_Entry *e;
3116             Z_TermInfo *t;
3117             Odr_oct *o;
3118
3119             tab[i] = e = (Z_Entry *)odr_malloc(assoc->encode, sizeof(*e));
3120             if (bsrr->entries[i].occurrences >= 0)
3121             {
3122                 e->which = Z_Entry_termInfo;
3123                 e->u.termInfo = t = (Z_TermInfo *)
3124                     odr_malloc(assoc->encode, sizeof(*t));
3125                 t->suggestedAttributes = 0;
3126                 t->displayTerm = 0;
3127                 if (save_entries == bsrr->entries &&
3128                     bsrr->entries[i].display_term)
3129                 {
3130                     /* the entries was _not_ set by the handler. So it's
3131                        safe to test for new member display_term. It is
3132                        NULL'ed by us.
3133                     */
3134                     t->displayTerm = odr_strdup(assoc->encode,
3135                                                 bsrr->entries[i].display_term);
3136                 }
3137                 t->alternativeTerm = 0;
3138                 t->byAttributes = 0;
3139                 t->otherTermInfo = 0;
3140                 t->globalOccurrences = &bsrr->entries[i].occurrences;
3141                 t->term = (Z_Term *)
3142                     odr_malloc(assoc->encode, sizeof(*t->term));
3143                 t->term->which = Z_Term_general;
3144                 t->term->u.general = o =
3145                     (Odr_oct *)odr_malloc(assoc->encode, sizeof(Odr_oct));
3146                 o->buf = (unsigned char *)
3147                     odr_malloc(assoc->encode, o->len = o->size =
3148                                strlen(bsrr->entries[i].term));
3149                 memcpy(o->buf, bsrr->entries[i].term, o->len);
3150                 yaz_log(YLOG_DEBUG, "  term #%d: '%s' (" ODR_INT_PRINTF ")", i,
3151                          bsrr->entries[i].term, bsrr->entries[i].occurrences);
3152             }
3153             else
3154             {
3155                 Z_DiagRecs *drecs = zget_DiagRecs(assoc->encode,
3156                                                   bsrr->entries[i].errcode,
3157                                                   bsrr->entries[i].errstring);
3158                 assert(drecs->num_diagRecs == 1);
3159                 e->which = Z_Entry_surrogateDiagnostic;
3160                 assert(drecs->diagRecs[0]);
3161                 e->u.surrogateDiagnostic = drecs->diagRecs[0];
3162             }
3163         }
3164     }
3165     if (diagrecs_p)
3166     {
3167         ents->num_nonsurrogateDiagnostics = diagrecs_p->num_diagRecs;
3168         ents->nonsurrogateDiagnostics = diagrecs_p->diagRecs;
3169     }
3170     if (log_request)
3171     {
3172         int i;
3173         WRBUF wr = wrbuf_alloc();
3174         wrbuf_printf(wr, "Scan ");
3175         for (i = 0 ; i < req->num_databaseNames; i++)
3176         {
3177             if (i)
3178                 wrbuf_printf(wr, "+");
3179             wrbuf_puts(wr, req->databaseNames[i]);
3180         }
3181
3182         wrbuf_printf(wr, " ");
3183
3184         if (bsrr->errcode)
3185             wr_diag(wr, bsrr->errcode, bsrr->errstring);
3186         else
3187             wrbuf_printf(wr, "OK");
3188
3189         wrbuf_printf(wr, " " ODR_INT_PRINTF " - " ODR_INT_PRINTF "+"
3190                      ODR_INT_PRINTF "+" ODR_INT_PRINTF,
3191                      res->numberOfEntriesReturned ?
3192                      *res->numberOfEntriesReturned : 0,
3193                      (req->preferredPositionInResponse ?
3194                       *req->preferredPositionInResponse : 1),
3195                      *req->numberOfTermsRequested,
3196                      (res->stepSize ? *res->stepSize : 1));
3197
3198         if (bsrr->setname)
3199             wrbuf_printf(wr, "+%s", bsrr->setname);
3200
3201         wrbuf_printf(wr, " ");
3202         yaz_scan_to_wrbuf(wr, req->termListAndStartPoint,
3203                           bsrr->attributeset);
3204         yaz_log(log_request, "%s", wrbuf_cstr(wr) );
3205         wrbuf_destroy(wr);
3206     }
3207     return apdu;
3208 }
3209
3210 static Z_APDU *process_sortRequest(association *assoc, request *reqb)
3211 {
3212     int i;
3213     Z_SortRequest *req = reqb->apdu_request->u.sortRequest;
3214     Z_SortResponse *res = (Z_SortResponse *)
3215         odr_malloc(assoc->encode, sizeof(*res));
3216     bend_sort_rr *bsrr = (bend_sort_rr *)
3217         odr_malloc(assoc->encode, sizeof(*bsrr));
3218
3219     Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
3220
3221     yaz_log(log_requestdetail, "Got SortRequest.");
3222
3223     bsrr->num_input_setnames = req->num_inputResultSetNames;
3224     for (i=0;i<req->num_inputResultSetNames;i++)
3225         yaz_log(log_requestdetail, "Input resultset: '%s'",
3226                 req->inputResultSetNames[i]);
3227     bsrr->input_setnames = req->inputResultSetNames;
3228     bsrr->referenceId = req->referenceId;
3229     bsrr->output_setname = req->sortedResultSetName;
3230     yaz_log(log_requestdetail, "Output resultset: '%s'",
3231                 req->sortedResultSetName);
3232     bsrr->sort_sequence = req->sortSequence;
3233        /*FIXME - dump those sequences too */
3234     bsrr->stream = assoc->encode;
3235     bsrr->print = assoc->print;
3236
3237     bsrr->sort_status = Z_SortResponse_failure;
3238     bsrr->errcode = 0;
3239     bsrr->errstring = 0;
3240
3241     (*assoc->init->bend_sort)(assoc->backend, bsrr);
3242
3243     res->referenceId = bsrr->referenceId;
3244     res->sortStatus = odr_intdup(assoc->encode, bsrr->sort_status);
3245     res->resultSetStatus = 0;
3246     if (bsrr->errcode)
3247     {
3248         Z_DiagRecs *dr = zget_DiagRecs(assoc->encode,
3249                                        bsrr->errcode, bsrr->errstring);
3250         res->diagnostics = dr->diagRecs;
3251         res->num_diagnostics = dr->num_diagRecs;
3252     }
3253     else
3254     {
3255         res->num_diagnostics = 0;
3256         res->diagnostics = 0;
3257     }
3258     res->resultCount = 0;
3259     res->otherInfo = 0;
3260
3261     apdu->which = Z_APDU_sortResponse;
3262     apdu->u.sortResponse = res;
3263     if (log_request)
3264     {
3265         WRBUF wr = wrbuf_alloc();
3266         wrbuf_printf(wr, "Sort ");
3267         if (bsrr->errcode)
3268             wrbuf_printf(wr, " ERROR %d", bsrr->errcode);
3269         else
3270             wrbuf_printf(wr,  "OK -");
3271         wrbuf_printf(wr, " (");
3272         for (i = 0; i<req->num_inputResultSetNames; i++)
3273         {
3274             if (i)
3275                 wrbuf_printf(wr, "+");
3276             wrbuf_puts(wr, req->inputResultSetNames[i]);
3277         }
3278         wrbuf_printf(wr, ")->%s ",req->sortedResultSetName);
3279
3280         yaz_log(log_request, "%s", wrbuf_cstr(wr) );
3281         wrbuf_destroy(wr);
3282     }
3283     return apdu;
3284 }
3285
3286 static Z_APDU *process_deleteRequest(association *assoc, request *reqb)
3287 {
3288     int i;
3289     Z_DeleteResultSetRequest *req =
3290         reqb->apdu_request->u.deleteResultSetRequest;
3291     Z_DeleteResultSetResponse *res = (Z_DeleteResultSetResponse *)
3292         odr_malloc(assoc->encode, sizeof(*res));
3293     bend_delete_rr *bdrr = (bend_delete_rr *)
3294         odr_malloc(assoc->encode, sizeof(*bdrr));
3295     Z_APDU *apdu = (Z_APDU *)odr_malloc(assoc->encode, sizeof(*apdu));
3296
3297     yaz_log(log_requestdetail, "Got DeleteRequest.");
3298
3299     bdrr->num_setnames = req->num_resultSetList;
3300     bdrr->setnames = req->resultSetList;
3301     for (i = 0; i<req->num_resultSetList; i++)
3302         yaz_log(log_requestdetail, "resultset: '%s'",
3303                 req->resultSetList[i]);
3304     bdrr->stream = assoc->encode;
3305     bdrr->print = assoc->print;
3306     bdrr->function = odr_int_to_int(*req->deleteFunction);
3307     bdrr->referenceId = req->referenceId;
3308     bdrr->statuses = 0;
3309     if (bdrr->num_setnames > 0)
3310     {
3311         bdrr->statuses = (int*)
3312             odr_malloc(assoc->encode, sizeof(*bdrr->statuses) *
3313                        bdrr->num_setnames);
3314         for (i = 0; i < bdrr->num_setnames; i++)
3315             bdrr->statuses[i] = 0;
3316     }
3317     (*assoc->init->bend_delete)(assoc->backend, bdrr);
3318
3319     res->referenceId = req->referenceId;
3320
3321     res->deleteOperationStatus = odr_intdup(assoc->encode,bdrr->delete_status);
3322
3323     res->deleteListStatuses = 0;
3324     if (bdrr->num_setnames > 0)
3325     {
3326         int i;
3327         res->deleteListStatuses = (Z_ListStatuses *)
3328             odr_malloc(assoc->encode, sizeof(*res->deleteListStatuses));
3329         res->deleteListStatuses->num = bdrr->num_setnames;
3330         res->deleteListStatuses->elements =
3331             (Z_ListStatus **)
3332             odr_malloc(assoc->encode,
3333                         sizeof(*res->deleteListStatuses->elements) *
3334                         bdrr->num_setnames);
3335         for (i = 0; i<bdrr->num_setnames; i++)
3336         {
3337             res->deleteListStatuses->elements[i] =
3338                 (Z_ListStatus *)
3339                 odr_malloc(assoc->encode,
3340                             sizeof(**res->deleteListStatuses->elements));
3341             res->deleteListStatuses->elements[i]->status =
3342                 odr_intdup(assoc->encode, bdrr->statuses[i]);
3343             res->deleteListStatuses->elements[i]->id =
3344                 odr_strdup(assoc->encode, bdrr->setnames[i]);
3345         }
3346     }
3347     res->numberNotDeleted = 0;
3348     res->bulkStatuses = 0;
3349     res->deleteMessage = 0;
3350     res->otherInfo = 0;
3351
3352     apdu->which = Z_APDU_deleteResultSetResponse;
3353     apdu->u.deleteResultSetResponse = res;
3354     if (log_request)
3355     {
3356         WRBUF wr = wrbuf_alloc();
3357         wrbuf_printf(wr, "Delete ");
3358         if (bdrr->delete_status)
3359             wrbuf_printf(wr, "ERROR %d", bdrr->delete_status);
3360         else
3361             wrbuf_printf(wr, "OK -");
3362         for (i = 0; i<req->num_resultSetList; i++)
3363             wrbuf_printf(wr, " %s ", req->resultSetList[i]);
3364         yaz_log(log_request, "%s", wrbuf_cstr(wr) );
3365         wrbuf_destroy(wr);
3366     }
3367     return apdu;
3368 }
3369
3370 static void process_close(association *assoc, request *reqb)
3371 {
3372     Z_Close *req = reqb->apdu_request->u.close;
3373     static char *reasons[] =
3374     {
3375         "finished",
3376         "shutdown",
3377         "systemProblem",
3378         "costLimit",
3379         "resources",
3380         "securityViolation",
3381         "protocolError",
3382         "lackOfActivity",
3383         "peerAbort",
3384         "unspecified"
3385     };
3386
3387     yaz_log(log_requestdetail, "Got Close, reason %s, message %s",
3388         reasons[*req->closeReason], req->diagnosticInformation ?
3389         req->diagnosticInformation : "NULL");
3390     if (assoc->version < 3) /* to make do_force respond with close */
3391         assoc->version = 3;
3392     do_close_req(assoc, Z_Close_finished,
3393                  "Association terminated by client", reqb);
3394     yaz_log(log_request,"Close OK");
3395 }
3396
3397 static Z_APDU *process_segmentRequest(association *assoc, request *reqb)
3398 {
3399     bend_segment_rr req;
3400
3401     req.segment = reqb->apdu_request->u.segmentRequest;
3402     req.stream = assoc->encode;
3403     req.decode = assoc->decode;
3404     req.print = assoc->print;
3405     req.association = assoc;
3406
3407     (*assoc->init->bend_segment)(assoc->backend, &req);
3408
3409     return 0;
3410 }
3411
3412 static Z_APDU *process_ESRequest(association *assoc, request *reqb)
3413 {
3414     bend_esrequest_rr esrequest;
3415     const char *ext_name = "unknown";
3416
3417     Z_ExtendedServicesRequest *req =
3418         reqb->apdu_request->u.extendedServicesRequest;
3419     Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_extendedServicesResponse);
3420
3421     Z_ExtendedServicesResponse *resp = apdu->u.extendedServicesResponse;
3422
3423     esrequest.esr = reqb->apdu_request->u.extendedServicesRequest;
3424     esrequest.stream = assoc->encode;
3425     esrequest.decode = assoc->decode;
3426     esrequest.print = assoc->print;
3427     esrequest.errcode = 0;
3428     esrequest.errstring = NULL;
3429     esrequest.association = assoc;
3430     esrequest.taskPackage = 0;
3431     esrequest.referenceId = req->referenceId;
3432
3433     if (esrequest.esr && esrequest.esr->taskSpecificParameters)
3434     {
3435         switch(esrequest.esr->taskSpecificParameters->which)
3436         {
3437         case Z_External_itemOrder:
3438             ext_name = "ItemOrder"; break;
3439         case Z_External_update:
3440             ext_name = "Update"; break;
3441         case Z_External_update0:
3442             ext_name = "Update0"; break;
3443         case Z_External_ESAdmin:
3444             ext_name = "Admin"; break;
3445
3446         }
3447     }
3448
3449     (*assoc->init->bend_esrequest)(assoc->backend, &esrequest);
3450
3451     resp->referenceId = req->referenceId;
3452
3453     if (esrequest.errcode == -1)
3454     {
3455         /* Backend service indicates request will be processed */
3456         yaz_log(log_request, "Extended Service: %s (accepted)", ext_name);
3457         *resp->operationStatus = Z_ExtendedServicesResponse_accepted;
3458     }
3459     else if (esrequest.errcode == 0)
3460     {
3461         /* Backend service indicates request will be processed */
3462         yaz_log(log_request, "Extended Service: %s (done)", ext_name);
3463         *resp->operationStatus = Z_ExtendedServicesResponse_done;
3464     }
3465     else
3466     {
3467         Z_DiagRecs *diagRecs =
3468             zget_DiagRecs(assoc->encode, esrequest.errcode,
3469                           esrequest.errstring);
3470         /* Backend indicates error, request will not be processed */
3471         yaz_log(log_request, "Extended Service: %s (failed)", ext_name);
3472         *resp->operationStatus = Z_ExtendedServicesResponse_failure;
3473         resp->num_diagnostics = diagRecs->num_diagRecs;
3474         resp->diagnostics = diagRecs->diagRecs;
3475         if (log_request)
3476         {
3477             WRBUF wr = wrbuf_alloc();
3478             wrbuf_diags(wr, resp->num_diagnostics, resp->diagnostics);
3479             yaz_log(log_request, "EsRequest %s", wrbuf_cstr(wr) );
3480             wrbuf_destroy(wr);
3481         }
3482
3483     }
3484     /* Do something with the members of bend_extendedservice */
3485     if (esrequest.taskPackage)
3486     {
3487         resp->taskPackage = z_ext_record_oid(
3488             assoc->encode, yaz_oid_recsyn_extended,
3489             (const char *)  esrequest.taskPackage, -1);
3490     }
3491     yaz_log(YLOG_DEBUG,"Send the result apdu");
3492     return apdu;
3493 }
3494
3495 int bend_assoc_is_alive(bend_association assoc)
3496 {
3497     if (assoc->state == ASSOC_DEAD)
3498         return 0; /* already marked as dead. Don't check I/O chan anymore */
3499
3500     return iochan_is_alive(assoc->client_chan);
3501 }
3502
3503
3504 /*
3505  * Local variables:
3506  * c-basic-offset: 4
3507  * c-file-style: "Stroustrup"
3508  * indent-tabs-mode: nil
3509  * End:
3510  * vim: shiftwidth=4 tabstop=8 expandtab
3511  */
3512