More verbose server.
[yaz-moved-to-github.git] / server / seshigh.c
1 /*
2  * Copyright (c) 1995-2001, Index Data
3  * See the file LICENSE for details.
4  *
5  * $Id: seshigh.c,v 1.122 2001-11-22 09:45:03 adam Exp $
6  */
7
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
29 #include <stdlib.h>
30 #include <stdio.h>
31 #ifdef WIN32
32 #include <process.h>
33 #else
34 #include <unistd.h>
35 #endif
36 #include <assert.h>
37
38 #include <yaz/yconfig.h>
39 #include <yaz/xmalloc.h>
40 #include <yaz/comstack.h>
41 #include "eventl.h"
42 #include "session.h"
43 #include <yaz/proto.h>
44 #include <yaz/oid.h>
45 #include <yaz/log.h>
46 #include <yaz/logrpn.h>
47 #include <yaz/statserv.h>
48
49 #include <yaz/backend.h>
50
51 static int process_request(association *assoc, request *req, char **msg);
52 void backend_response(IOCHAN i, int event);
53 static int process_response(association *assoc, request *req, Z_APDU *res);
54 static Z_APDU *process_initRequest(association *assoc, request *reqb);
55 static Z_APDU *process_searchRequest(association *assoc, request *reqb,
56     int *fd);
57 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
58     bend_search_rr *bsrr, int *fd);
59 static Z_APDU *process_presentRequest(association *assoc, request *reqb,
60     int *fd);
61 static Z_APDU *process_scanRequest(association *assoc, request *reqb, int *fd);
62 static Z_APDU *process_sortRequest(association *assoc, request *reqb, int *fd);
63 static void process_close(association *assoc, request *reqb);
64 void save_referenceId (request *reqb, Z_ReferenceId *refid);
65 static Z_APDU *process_deleteRequest(association *assoc, request *reqb,
66     int *fd);
67 static Z_APDU *process_segmentRequest (association *assoc, request *reqb);
68
69 static FILE *apduf = 0; /* for use in static mode */
70 static statserv_options_block *control_block = 0;
71
72 /* Chas: Added in from DALI */
73 static Z_APDU *process_ESRequest(association *assoc, request *reqb, int *fd);
74 /* Chas: End of addition from DALI */
75
76 /*
77  * Create and initialize a new association-handle.
78  *  channel  : iochannel for the current line.
79  *  link     : communications channel.
80  * Returns: 0 or a new association handle.
81  */
82 association *create_association(IOCHAN channel, COMSTACK link)
83 {
84     association *anew;
85
86     if (!control_block)
87         control_block = statserv_getcontrol();
88     if (!(anew = (association *)xmalloc(sizeof(*anew))))
89         return 0;
90     anew->init = 0;
91     anew->client_chan = channel;
92     anew->client_link = link;
93     anew->cs_get_mask = 0;
94     anew->cs_put_mask = 0;
95     anew->cs_accept_mask = 0;
96     if (!(anew->decode = odr_createmem(ODR_DECODE)) ||
97         !(anew->encode = odr_createmem(ODR_ENCODE)))
98         return 0;
99     if (*control_block->apdufile)
100     {
101         char filename[256];
102         FILE *f;
103
104         strcpy(filename, control_block->apdufile);
105         if (!(anew->print = odr_createmem(ODR_PRINT)))
106             return 0;
107         if (*control_block->apdufile != '-')
108         {
109             strcpy(filename, control_block->apdufile);
110             if (!control_block->dynamic)
111             {
112                 if (!apduf)
113                 {
114                     if (!(apduf = fopen(filename, "w")))
115                     {
116                         yaz_log(LOG_WARN|LOG_ERRNO, "%s", filename);
117                         return 0;
118                     }
119                     setvbuf(apduf, 0, _IONBF, 0);
120                 }
121                 f = apduf;
122             }
123             else 
124             {
125                 sprintf(filename + strlen(filename), ".%d", getpid());
126                 if (!(f = fopen(filename, "w")))
127                 {
128                     yaz_log(LOG_WARN|LOG_ERRNO, "%s", filename);
129                     return 0;
130                 }
131                 setvbuf(f, 0, _IONBF, 0);
132             }
133             odr_setprint(anew->print, f);
134         }
135     }
136     else
137         anew->print = 0;
138     anew->input_buffer = 0;
139     anew->input_buffer_len = 0;
140     anew->backend = 0;
141     anew->state = ASSOC_NEW;
142     request_initq(&anew->incoming);
143     request_initq(&anew->outgoing);
144     anew->proto = cs_getproto(link);
145     return anew;
146 }
147
148 /*
149  * Free association and release resources.
150  */
151 void destroy_association(association *h)
152 {
153     statserv_options_block *cb = statserv_getcontrol();
154
155     xfree(h->init);
156     odr_destroy(h->decode);
157     odr_destroy(h->encode);
158     if (h->print)
159         odr_destroy(h->print);
160     if (h->input_buffer)
161     xfree(h->input_buffer);
162     if (h->backend)
163         (*cb->bend_close)(h->backend);
164     while (request_deq(&h->incoming));
165     while (request_deq(&h->outgoing));
166     request_delq(&h->incoming);
167     request_delq(&h->outgoing);
168     xfree(h);
169     if (control_block && control_block->one_shot)
170         exit (0);
171 }
172
173 static void do_close_req(association *a, int reason, char *message,
174                          request *req)
175 {
176     Z_APDU apdu;
177     Z_Close *cls = zget_Close(a->encode);
178     
179     /* Purge request queue */
180     while (request_deq(&a->incoming));
181     while (request_deq(&a->outgoing));
182     if (a->version >= 3)
183     {
184         yaz_log(LOG_LOG, "Sending Close PDU, reason=%d, message=%s",
185             reason, message ? message : "none");
186         apdu.which = Z_APDU_close;
187         apdu.u.close = cls;
188         *cls->closeReason = reason;
189         cls->diagnosticInformation = message;
190         process_response(a, req, &apdu);
191         iochan_settimeout(a->client_chan, 60);
192     }
193     else
194     {
195         yaz_log(LOG_DEBUG, "v2 client. No Close PDU");
196         iochan_setevent(a->client_chan, EVENT_TIMEOUT); /* force imm close */
197     }
198     a->state = ASSOC_DEAD;
199 }
200
201 static void do_close(association *a, int reason, char *message)
202 {
203     do_close_req (a, reason, message, request_get(&a->outgoing));
204 }
205
206 /*
207  * This is where PDUs from the client are read and the further
208  * processing is initiated. Flow of control moves down through the
209  * various process_* functions below, until the encoded result comes back up
210  * to the output handler in here.
211  * 
212  *  h     : the I/O channel that has an outstanding event.
213  *  event : the current outstanding event.
214  */
215 void ir_session(IOCHAN h, int event)
216 {
217     int res;
218     association *assoc = (association *)iochan_getdata(h);
219     COMSTACK conn = assoc->client_link;
220     request *req;
221
222     assert(h && conn && assoc);
223     if (event == EVENT_TIMEOUT)
224     {
225         if (assoc->state != ASSOC_UP)
226         {
227             yaz_log(LOG_LOG, "Final timeout - closing connection.");
228             cs_close(conn);
229             destroy_association(assoc);
230             iochan_destroy(h);
231         }
232         else
233         {
234             yaz_log(LOG_LOG, "Session idle too long. Sending close.");
235             do_close(assoc, Z_Close_lackOfActivity, 0);
236         }
237         return;
238     }
239     if (event & assoc->cs_accept_mask)
240     {
241         yaz_log (LOG_DEBUG, "ir_session (accept)");
242         if (!cs_accept (conn))
243         {
244             yaz_log (LOG_LOG, "accept failed");
245             destroy_association(assoc);
246             iochan_destroy(h);
247         }
248         iochan_clearflag (h, EVENT_OUTPUT|EVENT_OUTPUT);
249         if (conn->io_pending) 
250         {   /* cs_accept didn't complete */
251             assoc->cs_accept_mask = 
252                 ((conn->io_pending & CS_WANT_WRITE) ? EVENT_OUTPUT : 0) |
253                 ((conn->io_pending & CS_WANT_READ) ? EVENT_INPUT : 0);
254
255             iochan_setflag (h, assoc->cs_accept_mask);
256         }
257         else
258         {   /* cs_accept completed. Prepare for reading (cs_get) */
259             assoc->cs_accept_mask = 0;
260             assoc->cs_get_mask = EVENT_INPUT;
261             iochan_setflag (h, assoc->cs_get_mask);
262         }
263         return;
264     }
265     if ((event & assoc->cs_get_mask) || (event & EVENT_WORK)) /* input */
266     {
267         if ((assoc->cs_put_mask & EVENT_INPUT) == 0 && (event & assoc->cs_get_mask))
268         {
269             yaz_log(LOG_DEBUG, "ir_session (input)");
270             /* We aren't speaking to this fellow */
271             if (assoc->state == ASSOC_DEAD)
272             {
273                 yaz_log(LOG_LOG, "Closed connection after reject");
274                 cs_close(conn);
275                 destroy_association(assoc);
276                 iochan_destroy(h);
277                 return;
278             }
279             assoc->cs_get_mask = EVENT_INPUT;
280             if ((res = cs_get(conn, &assoc->input_buffer,
281                 &assoc->input_buffer_len)) <= 0)
282             {
283                 yaz_log(LOG_LOG, "Connection closed by client");
284                 cs_close(conn);
285                 destroy_association(assoc);
286                 iochan_destroy(h);
287                 return;
288             }
289             else if (res == 1) /* incomplete read - wait for more  */
290             {
291                 if (conn->io_pending & CS_WANT_WRITE)
292                     assoc->cs_get_mask |= EVENT_OUTPUT;
293                 iochan_setflag(h, assoc->cs_get_mask);
294                 return;
295             }
296             if (cs_more(conn)) /* more stuff - call us again later, please */
297                 iochan_setevent(h, EVENT_INPUT);
298                 
299             /* we got a complete PDU. Let's decode it */
300             yaz_log(LOG_DEBUG, "Got PDU, %d bytes", res);
301             req = request_get(&assoc->incoming); /* get a new request structure */
302             odr_reset(assoc->decode);
303             odr_setbuf(assoc->decode, assoc->input_buffer, res, 0);
304             if (!z_APDU(assoc->decode, &req->apdu_request, 0, 0))
305             {
306                 yaz_log(LOG_LOG, "ODR error on incoming PDU: %s [near byte %d] ",
307                         odr_errmsg(odr_geterror(assoc->decode)),
308                         odr_offset(assoc->decode));
309                 yaz_log(LOG_LOG, "PDU dump:");
310                 odr_dumpBER(yaz_log_file(), assoc->input_buffer, res);
311                 do_close(assoc, Z_Close_protocolError, "Malformed package");
312                 return;
313             }
314             req->request_mem = odr_extract_mem(assoc->decode);
315             if (assoc->print && !z_APDU(assoc->print, &req->apdu_request, 0, 0))
316             {
317                 yaz_log(LOG_WARN, "ODR print error: %s", 
318                     odr_errmsg(odr_geterror(assoc->print)));
319                 odr_reset(assoc->print);
320             }
321             request_enq(&assoc->incoming, req);
322         }
323
324         /* can we do something yet? */
325         req = request_head(&assoc->incoming);
326         if (req->state == REQUEST_IDLE)
327         {
328             char *msg;
329             request_deq(&assoc->incoming);
330             if (process_request(assoc, req, &msg) < 0)
331                 do_close_req(assoc, Z_Close_systemProblem, msg, req);
332         }
333     }
334     if (event & assoc->cs_put_mask)
335     {
336         request *req = request_head(&assoc->outgoing);
337
338         assoc->cs_put_mask = 0;
339         yaz_log(LOG_DEBUG, "ir_session (output)");
340         req->state = REQUEST_PENDING;
341         switch (res = cs_put(conn, req->response, req->len_response))
342         {
343         case -1:
344             yaz_log(LOG_LOG, "Connection closed by client");
345             cs_close(conn);
346             destroy_association(assoc);
347             iochan_destroy(h);
348             break;
349         case 0: /* all sent - release the request structure */
350             yaz_log(LOG_DEBUG, "Wrote PDU, %d bytes", req->len_response);
351             nmem_destroy(req->request_mem);
352             request_deq(&assoc->outgoing);
353             request_release(req);
354             if (!request_head(&assoc->outgoing))
355             {   /* restore mask for cs_get operation ... */
356                 iochan_clearflag(h, EVENT_OUTPUT|EVENT_INPUT);
357                 iochan_setflag(h, assoc->cs_get_mask);
358             }
359             break;
360         default:
361             if (conn->io_pending & CS_WANT_WRITE)
362                 assoc->cs_put_mask |= EVENT_OUTPUT;
363             if (conn->io_pending & CS_WANT_READ)
364                 assoc->cs_put_mask |= EVENT_INPUT;
365             iochan_setflag(h, assoc->cs_put_mask);
366         }
367     }
368     if (event & EVENT_EXCEPT)
369     {
370         yaz_log(LOG_LOG, "ir_session (exception)");
371         cs_close(conn);
372         destroy_association(assoc);
373         iochan_destroy(h);
374     }
375 }
376
377 /*
378  * Initiate request processing.
379  */
380 static int process_request(association *assoc, request *req, char **msg)
381 {
382     int fd = -1;
383     Z_APDU *res;
384     int retval;
385     
386     *msg = "Unknown Error";
387     assert(req && req->state == REQUEST_IDLE);
388     if (req->apdu_request->which != Z_APDU_initRequest && !assoc->init)
389     {
390         *msg = "Missing InitRequest";
391         return -1;
392     }
393     switch (req->apdu_request->which)
394     {
395     case Z_APDU_initRequest:
396         res = process_initRequest(assoc, req); break;
397     case Z_APDU_searchRequest:
398         res = process_searchRequest(assoc, req, &fd); break;
399     case Z_APDU_presentRequest:
400         res = process_presentRequest(assoc, req, &fd); break;
401     case Z_APDU_scanRequest:
402         if (assoc->init->bend_scan)
403             res = process_scanRequest(assoc, req, &fd);
404         else
405         {
406             *msg = "Cannot handle Scan APDU";
407             return -1;
408         }
409         break;
410     case Z_APDU_extendedServicesRequest:
411         if (assoc->init->bend_esrequest)
412             res = process_ESRequest(assoc, req, &fd);
413         else
414         {
415             *msg = "Cannot handle Extended Services APDU";
416             return -1;
417         }
418         break;
419     case Z_APDU_sortRequest:
420         if (assoc->init->bend_sort)
421             res = process_sortRequest(assoc, req, &fd);
422         else
423         {
424             *msg = "Cannot handle Sort APDU";
425             return -1;
426         }
427         break;
428     case Z_APDU_close:
429         process_close(assoc, req);
430         return 0;
431     case Z_APDU_deleteResultSetRequest:
432         if (assoc->init->bend_delete)
433             res = process_deleteRequest(assoc, req, &fd);
434         else
435         {
436             *msg = "Cannot handle Delete APDU";
437             return -1;
438         }
439         break;
440     case Z_APDU_segmentRequest:
441         if (assoc->init->bend_segment)
442         {
443             res = process_segmentRequest (assoc, req);
444         }
445         else
446         {
447             *msg = "Cannot handle Segment APDU";
448             return -1;
449         }
450         break;
451     default:
452         *msg = "Bad APDU received";
453         return -1;
454     }
455     if (res)
456     {
457         yaz_log(LOG_DEBUG, "  result immediately available");
458         retval = process_response(assoc, req, res);
459     }
460     else if (fd < 0)
461     {
462         yaz_log(LOG_DEBUG, "  result unavailble");
463         retval = 0;
464     }
465     else /* no result yet - one will be provided later */
466     {
467         IOCHAN chan;
468
469         /* Set up an I/O handler for the fd supplied by the backend */
470
471         yaz_log(LOG_DEBUG, "   establishing handler for result");
472         req->state = REQUEST_PENDING;
473         if (!(chan = iochan_create(fd, backend_response, EVENT_INPUT)))
474             abort();
475         iochan_setdata(chan, assoc);
476         retval = 0;
477     }
478     return retval;
479 }
480
481 /*
482  * Handle message from the backend.
483  */
484 void backend_response(IOCHAN i, int event)
485 {
486     association *assoc = (association *)iochan_getdata(i);
487     request *req = request_head(&assoc->incoming);
488     Z_APDU *res;
489     int fd;
490
491     yaz_log(LOG_DEBUG, "backend_response");
492     assert(assoc && req && req->state != REQUEST_IDLE);
493     /* determine what it is we're waiting for */
494     switch (req->apdu_request->which)
495     {
496         case Z_APDU_searchRequest:
497             res = response_searchRequest(assoc, req, 0, &fd); break;
498 #if 0
499         case Z_APDU_presentRequest:
500             res = response_presentRequest(assoc, req, 0, &fd); break;
501         case Z_APDU_scanRequest:
502             res = response_scanRequest(assoc, req, 0, &fd); break;
503 #endif
504         default:
505             yaz_log(LOG_WARN, "Serious programmer's lapse or bug");
506             abort();
507     }
508     if ((res && process_response(assoc, req, res) < 0) || fd < 0)
509     {
510         yaz_log(LOG_LOG, "Fatal error when talking to backend");
511         do_close(assoc, Z_Close_systemProblem, 0);
512         iochan_destroy(i);
513         return;
514     }
515     else if (!res) /* no result yet - try again later */
516     {
517         yaz_log(LOG_DEBUG, "   no result yet");
518         iochan_setfd(i, fd); /* in case fd has changed */
519     }
520 }
521
522 /*
523  * Encode response, and transfer the request structure to the outgoing queue.
524  */
525 static int process_response(association *assoc, request *req, Z_APDU *res)
526 {
527     odr_setbuf(assoc->encode, req->response, req->size_response, 1);
528
529     if (assoc->print && !z_APDU(assoc->print, &res, 0, 0))
530     {
531         yaz_log(LOG_WARN, "ODR print error: %s", 
532             odr_errmsg(odr_geterror(assoc->print)));
533         odr_reset(assoc->print);
534     }
535     if (!z_APDU(assoc->encode, &res, 0, 0))
536     {
537         yaz_log(LOG_WARN, "ODR error when encoding response: %s",
538             odr_errmsg(odr_geterror(assoc->decode)));
539         return -1;
540     }
541     req->response = odr_getbuf(assoc->encode, &req->len_response,
542         &req->size_response);
543     odr_setbuf(assoc->encode, 0, 0, 0); /* don'txfree if we abort later */
544     odr_reset(assoc->encode);
545     req->state = REQUEST_IDLE;
546     request_enq(&assoc->outgoing, req);
547     /* turn the work over to the ir_session handler */
548     iochan_setflag(assoc->client_chan, EVENT_OUTPUT);
549     assoc->cs_put_mask = EVENT_OUTPUT;
550     /* Is there more work to be done? give that to the input handler too */
551 #if 1
552     if (request_head(&assoc->incoming))
553     {
554         yaz_log (LOG_DEBUG, "more work to be done");
555         iochan_setevent(assoc->client_chan, EVENT_WORK);
556     }
557 #endif
558     return 0;
559 }
560
561 /*
562  * Handle init request.
563  * At the moment, we don't check the options
564  * anywhere else in the code - we just try not to do anything that would
565  * break a naive client. We'll toss 'em into the association block when
566  * we need them there.
567  */
568 static Z_APDU *process_initRequest(association *assoc, request *reqb)
569 {
570     statserv_options_block *cb = statserv_getcontrol();
571     Z_InitRequest *req = reqb->apdu_request->u.initRequest;
572     Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_initResponse);
573     Z_InitResponse *resp = apdu->u.initResponse;
574     bend_initresult *binitres;
575     char options[100];
576
577     xfree (assoc->init);
578     assoc->init = (bend_initrequest *) xmalloc (sizeof(*assoc->init));
579
580     yaz_log(LOG_LOG, "Got initRequest");
581     if (req->implementationId)
582         yaz_log(LOG_LOG, "Id:        %s", req->implementationId);
583     if (req->implementationName)
584         yaz_log(LOG_LOG, "Name:      %s", req->implementationName);
585     if (req->implementationVersion)
586         yaz_log(LOG_LOG, "Version:   %s", req->implementationVersion);
587
588     assoc->init->stream = assoc->encode;
589     assoc->init->print = assoc->print;
590     assoc->init->auth = req->idAuthentication;
591     assoc->init->referenceId = req->referenceId;
592     assoc->init->implementation_version = 0;
593     assoc->init->implementation_name = 0;
594     assoc->init->bend_sort = NULL;
595     assoc->init->bend_search = NULL;
596     assoc->init->bend_present = NULL;
597     assoc->init->bend_esrequest = NULL;
598     assoc->init->bend_delete = NULL;
599     assoc->init->bend_scan = NULL;
600     assoc->init->bend_segment = NULL;
601     assoc->init->bend_fetch = NULL;
602     
603     assoc->init->peer_name =
604         odr_strdup (assoc->encode, cs_addrstr(assoc->client_link));
605     if (!(binitres = (*cb->bend_init)(assoc->init)))
606     {
607         yaz_log(LOG_WARN, "Bad response from backend.");
608         return 0;
609     }
610
611     assoc->backend = binitres->handle;
612     if ((assoc->init->bend_sort))
613         yaz_log (LOG_DEBUG, "Sort handler installed");
614     if ((assoc->init->bend_search))
615         yaz_log (LOG_DEBUG, "Search handler installed");
616     if ((assoc->init->bend_present))
617         yaz_log (LOG_DEBUG, "Present handler installed");   
618     if ((assoc->init->bend_esrequest))
619         yaz_log (LOG_DEBUG, "ESRequest handler installed");   
620     if ((assoc->init->bend_delete))
621         yaz_log (LOG_DEBUG, "Delete handler installed");   
622     if ((assoc->init->bend_scan))
623         yaz_log (LOG_DEBUG, "Scan handler installed");   
624     if ((assoc->init->bend_segment))
625         yaz_log (LOG_DEBUG, "Segment handler installed");   
626     
627     resp->referenceId = req->referenceId;
628     *options = '\0';
629     /* let's tell the client what we can do */
630     if (ODR_MASK_GET(req->options, Z_Options_search))
631     {
632         ODR_MASK_SET(resp->options, Z_Options_search);
633         strcat(options, "srch");
634     }
635     if (ODR_MASK_GET(req->options, Z_Options_present))
636     {
637         ODR_MASK_SET(resp->options, Z_Options_present);
638         strcat(options, " prst");
639     }
640     if (ODR_MASK_GET(req->options, Z_Options_delSet) &&
641         assoc->init->bend_delete)
642     {
643         ODR_MASK_SET(resp->options, Z_Options_delSet);
644         strcat(options, " del");
645     }
646     if (ODR_MASK_GET(req->options, Z_Options_extendedServices) &&
647         assoc->init->bend_esrequest)
648     {
649         ODR_MASK_SET(resp->options, Z_Options_extendedServices);
650         strcat (options, " extendedServices");
651     }
652     if (ODR_MASK_GET(req->options, Z_Options_namedResultSets))
653     {
654         ODR_MASK_SET(resp->options, Z_Options_namedResultSets);
655         strcat(options, " namedresults");
656     }
657     if (ODR_MASK_GET(req->options, Z_Options_scan) && assoc->init->bend_scan)
658     {
659         ODR_MASK_SET(resp->options, Z_Options_scan);
660         strcat(options, " scan");
661     }
662     if (ODR_MASK_GET(req->options, Z_Options_concurrentOperations))
663     {
664         ODR_MASK_SET(resp->options, Z_Options_concurrentOperations);
665         strcat(options, " concurop");
666     }
667     if (ODR_MASK_GET(req->options, Z_Options_sort) && assoc->init->bend_sort)
668     {
669         ODR_MASK_SET(resp->options, Z_Options_sort);
670         strcat(options, " sort");
671     }
672     if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_1))
673     {
674         ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_1);
675         assoc->version = 2; /* 1 & 2 are equivalent */
676     }
677     if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_2))
678     {
679         ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_2);
680         assoc->version = 2;
681     }
682     if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_3))
683     {
684         ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_3);
685         assoc->version = 3;
686     }
687     yaz_log(LOG_LOG, "Negotiated to v%d: %s", assoc->version, options);
688     assoc->maximumRecordSize = *req->maximumRecordSize;
689     if (assoc->maximumRecordSize > control_block->maxrecordsize)
690         assoc->maximumRecordSize = control_block->maxrecordsize;
691     assoc->preferredMessageSize = *req->preferredMessageSize;
692     if (assoc->preferredMessageSize > assoc->maximumRecordSize)
693         assoc->preferredMessageSize = assoc->maximumRecordSize;
694
695 #if 0
696     assoc->maximumRecordSize = 3000000;
697     assoc->preferredMessageSize = 3000000;
698 #endif
699
700     resp->preferredMessageSize = &assoc->preferredMessageSize;
701     resp->maximumRecordSize = &assoc->maximumRecordSize;
702
703     resp->implementationName = "GFS/YAZ";
704
705     if (assoc->init->implementation_name)
706     {
707         char *nv = (char *)
708             odr_malloc (assoc->encode,
709                         strlen(assoc->init->implementation_name) + 10 + 
710                                strlen(resp->implementationName));
711         sprintf (nv, "%s / %s",
712                  resp->implementationName, assoc->init->implementation_name);
713         resp->implementationName = nv;
714     }
715     if (assoc->init->implementation_version)
716     {
717         char *nv = (char *)
718             odr_malloc (assoc->encode,
719                         strlen(assoc->init->implementation_version) + 10 + 
720                                strlen(resp->implementationVersion));
721         sprintf (nv, "YAZ %s / %s",
722                  resp->implementationVersion,
723                  assoc->init->implementation_version);
724         resp->implementationVersion = nv;
725     }
726
727     if (binitres->errcode)
728     {
729         yaz_log(LOG_LOG, "Connection rejected by backend.");
730         *resp->result = 0;
731         assoc->state = ASSOC_DEAD;
732     }
733     else
734         assoc->state = ASSOC_UP;
735     return apdu;
736 }
737
738 /*
739  * These functions should be merged.
740  */
741
742 static void set_addinfo (Z_DefaultDiagFormat *dr, char *addinfo, ODR odr)
743 {
744     dr->which = Z_DefaultDiagFormat_v2Addinfo;
745     dr->u.v2Addinfo = odr_strdup (odr, addinfo ? addinfo : "");
746 }
747
748 /*
749  * nonsurrogate diagnostic record.
750  */
751 static Z_Records *diagrec(association *assoc, int error, char *addinfo)
752 {
753     Z_Records *rec = (Z_Records *)
754         odr_malloc (assoc->encode, sizeof(*rec));
755     int *err = odr_intdup(assoc->encode, error);
756     Z_DiagRec *drec = (Z_DiagRec *)
757         odr_malloc (assoc->encode, sizeof(*drec));
758     Z_DefaultDiagFormat *dr = (Z_DefaultDiagFormat *)
759         odr_malloc (assoc->encode, sizeof(*dr));
760
761     yaz_log(LOG_DEBUG, "Diagnostic: %d -- %s", error, addinfo ? addinfo :
762         "NULL");
763     rec->which = Z_Records_NSD;
764     rec->u.nonSurrogateDiagnostic = dr;
765     dr->diagnosticSetId =
766         yaz_oidval_to_z3950oid (assoc->encode, CLASS_DIAGSET, VAL_BIB1);
767     dr->condition = err;
768     set_addinfo (dr, addinfo, assoc->encode);
769     return rec;
770 }
771
772 /*
773  * surrogate diagnostic.
774  */
775 static Z_NamePlusRecord *surrogatediagrec(association *assoc, char *dbname,
776                                           int error, char *addinfo)
777 {
778     Z_NamePlusRecord *rec = (Z_NamePlusRecord *)
779         odr_malloc (assoc->encode, sizeof(*rec));
780     int *err = odr_intdup(assoc->encode, error);
781     Z_DiagRec *drec = (Z_DiagRec *)odr_malloc (assoc->encode, sizeof(*drec));
782     Z_DefaultDiagFormat *dr = (Z_DefaultDiagFormat *)
783         odr_malloc (assoc->encode, sizeof(*dr));
784     
785     yaz_log(LOG_DEBUG, "SurrogateDiagnotic: %d -- %s", error, addinfo);
786     rec->databaseName = dbname;
787     rec->which = Z_NamePlusRecord_surrogateDiagnostic;
788     rec->u.surrogateDiagnostic = drec;
789     drec->which = Z_DiagRec_defaultFormat;
790     drec->u.defaultFormat = dr;
791     dr->diagnosticSetId =
792         yaz_oidval_to_z3950oid (assoc->encode, CLASS_DIAGSET, VAL_BIB1);
793     dr->condition = err;
794     set_addinfo (dr, addinfo, assoc->encode);
795
796     return rec;
797 }
798
799 /*
800  * multiple nonsurrogate diagnostics.
801  */
802 static Z_DiagRecs *diagrecs(association *assoc, int error, char *addinfo)
803 {
804     Z_DiagRecs *recs = (Z_DiagRecs *)odr_malloc (assoc->encode, sizeof(*recs));
805     int *err = odr_intdup(assoc->encode, error);
806     Z_DiagRec **recp = (Z_DiagRec **)odr_malloc (assoc->encode, sizeof(*recp));
807     Z_DiagRec *drec = (Z_DiagRec *)odr_malloc (assoc->encode, sizeof(*drec));
808     Z_DefaultDiagFormat *rec = (Z_DefaultDiagFormat *)
809         odr_malloc (assoc->encode, sizeof(*rec));
810
811     yaz_log(LOG_DEBUG, "DiagRecs: %d -- %s", error, addinfo ? addinfo : "");
812
813     recs->num_diagRecs = 1;
814     recs->diagRecs = recp;
815     recp[0] = drec;
816     drec->which = Z_DiagRec_defaultFormat;
817     drec->u.defaultFormat = rec;
818
819     rec->diagnosticSetId =
820         yaz_oidval_to_z3950oid (assoc->encode, CLASS_DIAGSET, VAL_BIB1);
821     rec->condition = err;
822
823     rec->which = Z_DefaultDiagFormat_v2Addinfo;
824     rec->u.v2Addinfo = odr_strdup (assoc->encode, addinfo ? addinfo : "");
825     return recs;
826 }
827
828 static Z_Records *pack_records(association *a, char *setname, int start,
829                                int *num, Z_RecordComposition *comp,
830                                int *next, int *pres, oid_value format,
831                                Z_ReferenceId *referenceId,
832                                int *oid)
833 {
834     int recno, total_length = 0, toget = *num, dumped_records = 0;
835     Z_Records *records =
836         (Z_Records *) odr_malloc (a->encode, sizeof(*records));
837     Z_NamePlusRecordList *reclist =
838         (Z_NamePlusRecordList *) odr_malloc (a->encode, sizeof(*reclist));
839     Z_NamePlusRecord **list =
840         (Z_NamePlusRecord **) odr_malloc (a->encode, sizeof(*list) * toget);
841
842     records->which = Z_Records_DBOSD;
843     records->u.databaseOrSurDiagnostics = reclist;
844     reclist->num_records = 0;
845     reclist->records = list;
846     *pres = Z_PRES_SUCCESS;
847     *num = 0;
848     *next = 0;
849
850     yaz_log(LOG_LOG, "Request to pack %d+%d+%s", start, toget, setname);
851     yaz_log(LOG_DEBUG, "pms=%d, mrs=%d", a->preferredMessageSize,
852         a->maximumRecordSize);
853     for (recno = start; reclist->num_records < toget; recno++)
854     {
855         bend_fetch_rr freq;
856         Z_NamePlusRecord *thisrec;
857         int this_length = 0;
858         /*
859          * we get the number of bytes allocated on the stream before any
860          * allocation done by the backend - this should give us a reasonable
861          * idea of the total size of the data so far.
862          */
863         total_length = odr_total(a->encode) - dumped_records;
864         freq.errcode = 0;
865         freq.errstring = 0;
866         freq.basename = 0;
867         freq.len = 0;
868         freq.record = 0;
869         freq.last_in_set = 0;
870         freq.setname = setname;
871         freq.surrogate_flag = 0;
872         freq.number = recno;
873         freq.comp = comp;
874         freq.request_format = format;
875         freq.request_format_raw = oid;
876         freq.output_format = format;
877         freq.output_format_raw = 0;
878         freq.stream = a->encode;
879         freq.print = a->print;
880         freq.surrogate_flag = 0;
881         freq.referenceId = referenceId;
882         (*a->init->bend_fetch)(a->backend, &freq);
883         /* backend should be able to signal whether error is system-wide
884            or only pertaining to current record */
885         if (freq.errcode)
886         {
887             if (!freq.surrogate_flag)
888             {
889                 *pres = Z_PRES_FAILURE;
890                 return diagrec(a, freq.errcode, freq.errstring);
891             }
892             reclist->records[reclist->num_records] =
893                 surrogatediagrec(a, freq.basename, freq.errcode,
894                                  freq.errstring);
895             reclist->num_records++;
896             *next = freq.last_in_set ? 0 : recno + 1;
897             continue;
898         }
899         if (freq.len >= 0)
900             this_length = freq.len;
901         else
902             this_length = odr_total(a->encode) - total_length;
903         yaz_log(LOG_DEBUG, "  fetched record, len=%d, total=%d",
904             this_length, total_length);
905         if (this_length + total_length > a->preferredMessageSize)
906         {
907             /* record is small enough, really */
908             if (this_length <= a->preferredMessageSize)
909             {
910                 yaz_log(LOG_DEBUG, "  Dropped last normal-sized record");
911                 *pres = Z_PRES_PARTIAL_2;
912                 break;
913             }
914             /* record can only be fetched by itself */
915             if (this_length < a->maximumRecordSize)
916             {
917                 yaz_log(LOG_DEBUG, "  Record > prefmsgsz");
918                 if (toget > 1)
919                 {
920                     yaz_log(LOG_DEBUG, "  Dropped it");
921                     reclist->records[reclist->num_records] =
922                          surrogatediagrec(a, freq.basename, 16, 0);
923                     reclist->num_records++;
924                     *next = freq.last_in_set ? 0 : recno + 1;
925                     dumped_records += this_length;
926                     continue;
927                 }
928             }
929             else /* too big entirely */
930             {
931                 yaz_log(LOG_DEBUG, "Record > maxrcdsz");
932                 reclist->records[reclist->num_records] =
933                     surrogatediagrec(a, freq.basename, 17, 0);
934                 reclist->num_records++;
935                 *next = freq.last_in_set ? 0 : recno + 1;
936                 dumped_records += this_length;
937                 continue;
938             }
939         }
940
941         if (!(thisrec = (Z_NamePlusRecord *)
942               odr_malloc(a->encode, sizeof(*thisrec))))
943             return 0;
944         if (!(thisrec->databaseName = (char *)odr_malloc(a->encode,
945             strlen(freq.basename) + 1)))
946             return 0;
947         strcpy(thisrec->databaseName, freq.basename);
948         thisrec->which = Z_NamePlusRecord_databaseRecord;
949
950         if (freq.output_format_raw)
951         {
952             struct oident *ident = oid_getentbyoid(freq.output_format_raw);
953             freq.output_format = ident->value;
954         }
955         thisrec->u.databaseRecord = z_ext_record(a->encode, freq.output_format,
956                                                  freq.record, freq.len);
957         if (!thisrec->u.databaseRecord)
958             return 0;
959         reclist->records[reclist->num_records] = thisrec;
960         reclist->num_records++;
961         *next = freq.last_in_set ? 0 : recno + 1;
962     }
963     *num = reclist->num_records;
964     return records;
965 }
966
967 static Z_APDU *process_searchRequest(association *assoc, request *reqb,
968     int *fd)
969 {
970     Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
971     bend_search_rr *bsrr = 
972         (bend_search_rr *)nmem_malloc (reqb->request_mem, sizeof(*bsrr));
973     
974     yaz_log(LOG_LOG, "Got SearchRequest.");
975     bsrr->fd = fd;
976     bsrr->request = reqb;
977     bsrr->association = assoc;
978     bsrr->referenceId = req->referenceId;
979     save_referenceId (reqb, bsrr->referenceId);
980
981     yaz_log (LOG_LOG, "ResultSet '%s'", req->resultSetName);
982     if (req->databaseNames)
983     {
984         int i;
985         for (i = 0; i < req->num_databaseNames; i++)
986             yaz_log (LOG_LOG, "Database '%s'", req->databaseNames[i]);
987     }
988     switch (req->query->which)
989     {
990     case Z_Query_type_1: case Z_Query_type_101:
991         log_rpn_query (req->query->u.type_1);
992     }
993     if (assoc->init->bend_search)
994     {
995         bsrr->setname = req->resultSetName;
996         bsrr->replace_set = *req->replaceIndicator;
997         bsrr->num_bases = req->num_databaseNames;
998         bsrr->basenames = req->databaseNames;
999         bsrr->query = req->query;
1000         bsrr->stream = assoc->encode;
1001         bsrr->decode = assoc->decode;
1002         bsrr->print = assoc->print;
1003         bsrr->errcode = 0;
1004         bsrr->hits = 0;
1005         bsrr->errstring = NULL;
1006         (assoc->init->bend_search)(assoc->backend, bsrr);
1007         if (!bsrr->request)
1008             return 0;
1009     }
1010     return response_searchRequest(assoc, reqb, bsrr, fd);
1011 }
1012
1013 int bend_searchresponse(void *handle, bend_search_rr *bsrr) {return 0;}
1014
1015 /*
1016  * Prepare a searchresponse based on the backend results. We probably want
1017  * to look at making the fetching of records nonblocking as well, but
1018  * so far, we'll keep things simple.
1019  * If bsrt is null, that means we're called in response to a communications
1020  * event, and we'll have to get the response for ourselves.
1021  */
1022 static Z_APDU *response_searchRequest(association *assoc, request *reqb,
1023     bend_search_rr *bsrt, int *fd)
1024 {
1025     Z_SearchRequest *req = reqb->apdu_request->u.searchRequest;
1026     Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
1027     Z_SearchResponse *resp = (Z_SearchResponse *)
1028         odr_malloc (assoc->encode, sizeof(*resp));
1029     int *nulint = odr_intdup (assoc->encode, 0);
1030     bool_t *sr = odr_intdup(assoc->encode, 1);
1031     int *next = odr_intdup(assoc->encode, 0);
1032     int *none = odr_intdup(assoc->encode, Z_RES_NONE);
1033
1034     apdu->which = Z_APDU_searchResponse;
1035     apdu->u.searchResponse = resp;
1036     resp->referenceId = req->referenceId;
1037     resp->additionalSearchInfo = 0;
1038     resp->otherInfo = 0;
1039     *fd = -1;
1040     if (!bsrt && !bend_searchresponse(assoc->backend, bsrt))
1041     {
1042         yaz_log(LOG_FATAL, "Bad result from backend");
1043         return 0;
1044     }
1045     else if (bsrt->errcode)
1046     {
1047         resp->records = diagrec(assoc, bsrt->errcode, bsrt->errstring);
1048         resp->resultCount = nulint;
1049         resp->numberOfRecordsReturned = nulint;
1050         resp->nextResultSetPosition = nulint;
1051         resp->searchStatus = nulint;
1052         resp->resultSetStatus = none;
1053         resp->presentStatus = 0;
1054     }
1055     else
1056     {
1057         int *toget = odr_intdup(assoc->encode, 0);
1058         int *presst = odr_intdup(assoc->encode, 0);
1059         Z_RecordComposition comp, *compp = 0;
1060
1061         yaz_log (LOG_LOG, "resultCount: %d", bsrt->hits);
1062
1063         resp->records = 0;
1064         resp->resultCount = &bsrt->hits;
1065
1066         comp.which = Z_RecordComp_simple;
1067         /* how many records does the user agent want, then? */
1068         if (bsrt->hits <= *req->smallSetUpperBound)
1069         {
1070             *toget = bsrt->hits;
1071             if ((comp.u.simple = req->smallSetElementSetNames))
1072                 compp = &comp;
1073         }
1074         else if (bsrt->hits < *req->largeSetLowerBound)
1075         {
1076             *toget = *req->mediumSetPresentNumber;
1077             if (*toget > bsrt->hits)
1078                 *toget = bsrt->hits;
1079             if ((comp.u.simple = req->mediumSetElementSetNames))
1080                 compp = &comp;
1081         }
1082         else
1083             *toget = 0;
1084
1085         if (*toget && !resp->records)
1086         {
1087             oident *prefformat;
1088             oid_value form;
1089
1090             if (!(prefformat = oid_getentbyoid(req->preferredRecordSyntax)))
1091                 form = VAL_NONE;
1092             else
1093                 form = prefformat->value;
1094             resp->records = pack_records(assoc, req->resultSetName, 1,
1095                 toget, compp, next, presst, form, req->referenceId,
1096                                          req->preferredRecordSyntax);
1097             if (!resp->records)
1098                 return 0;
1099             resp->numberOfRecordsReturned = toget;
1100             resp->nextResultSetPosition = next;
1101             resp->searchStatus = sr;
1102             resp->resultSetStatus = 0;
1103             resp->presentStatus = presst;
1104         }
1105         else
1106         {
1107             if (*resp->resultCount)
1108                 *next = 1;
1109             resp->numberOfRecordsReturned = nulint;
1110             resp->nextResultSetPosition = next;
1111             resp->searchStatus = sr;
1112             resp->resultSetStatus = 0;
1113             resp->presentStatus = 0;
1114         }
1115     }
1116     return apdu;
1117 }
1118
1119 /*
1120  * Maybe we got a little over-friendly when we designed bend_fetch to
1121  * get only one record at a time. Some backends can optimise multiple-record
1122  * fetches, and at any rate, there is some overhead involved in
1123  * all that selecting and hopping around. Problem is, of course, that the
1124  * frontend can't know ahead of time how many records it'll need to
1125  * fill the negotiated PDU size. Annoying. Segmentation or not, Z/SR
1126  * is downright lousy as a bulk data transfer protocol.
1127  *
1128  * To start with, we'll do the fetching of records from the backend
1129  * in one operation: To save some trips in and out of the event-handler,
1130  * and to simplify the interface to pack_records. At any rate, asynch
1131  * operation is more fun in operations that have an unpredictable execution
1132  * speed - which is normally more true for search than for present.
1133  */
1134 static Z_APDU *process_presentRequest(association *assoc, request *reqb,
1135                                       int *fd)
1136 {
1137     Z_PresentRequest *req = reqb->apdu_request->u.presentRequest;
1138     oident *prefformat;
1139     oid_value form;
1140     Z_APDU *apdu;
1141     Z_PresentResponse *resp;
1142     int *next;
1143     int *num;
1144
1145     yaz_log(LOG_LOG, "Got PresentRequest.");
1146
1147     if (!(prefformat = oid_getentbyoid(req->preferredRecordSyntax)))
1148         form = VAL_NONE;
1149     else
1150         form = prefformat->value;
1151     resp = (Z_PresentResponse *)odr_malloc (assoc->encode, sizeof(*resp));
1152     resp->records = 0;
1153     resp->presentStatus = odr_intdup(assoc->encode, 0);
1154     if (assoc->init->bend_present)
1155     {
1156         bend_present_rr *bprr = (bend_present_rr *)
1157             nmem_malloc (reqb->request_mem, sizeof(*bprr));
1158         bprr->setname = req->resultSetId;
1159         bprr->start = *req->resultSetStartPoint;
1160         bprr->number = *req->numberOfRecordsRequested;
1161         bprr->format = form;
1162         bprr->comp = req->recordComposition;
1163         bprr->referenceId = req->referenceId;
1164         bprr->stream = assoc->encode;
1165         bprr->print = assoc->print;
1166         bprr->request = reqb;
1167         bprr->association = assoc;
1168         bprr->errcode = 0;
1169         bprr->errstring = NULL;
1170         (*assoc->init->bend_present)(assoc->backend, bprr);
1171         
1172         if (!bprr->request)
1173             return 0;
1174         if (bprr->errcode)
1175         {
1176             resp->records = diagrec(assoc, bprr->errcode, bprr->errstring);
1177             *resp->presentStatus = Z_PRES_FAILURE;
1178         }
1179     }
1180     apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
1181     next = odr_intdup(assoc->encode, 0);
1182     num = odr_intdup(assoc->encode, 0);
1183     
1184     apdu->which = Z_APDU_presentResponse;
1185     apdu->u.presentResponse = resp;
1186     resp->referenceId = req->referenceId;
1187     resp->otherInfo = 0;
1188     
1189     if (!resp->records)
1190     {
1191         *num = *req->numberOfRecordsRequested;
1192         resp->records =
1193             pack_records(assoc, req->resultSetId, *req->resultSetStartPoint,
1194                      num, req->recordComposition, next, resp->presentStatus,
1195                          form, req->referenceId, req->preferredRecordSyntax);
1196     }
1197     if (!resp->records)
1198         return 0;
1199     resp->numberOfRecordsReturned = num;
1200     resp->nextResultSetPosition = next;
1201     
1202     return apdu;
1203 }
1204
1205 /*
1206  * Scan was implemented rather in a hurry, and with support for only the basic
1207  * elements of the service in the backend API. Suggestions are welcome.
1208  */
1209 static Z_APDU *process_scanRequest(association *assoc, request *reqb, int *fd)
1210 {
1211     Z_ScanRequest *req = reqb->apdu_request->u.scanRequest;
1212     Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
1213     Z_ScanResponse *res = (Z_ScanResponse *)
1214         odr_malloc (assoc->encode, sizeof(*res));
1215     int *scanStatus = odr_intdup(assoc->encode, Z_Scan_failure);
1216     int *numberOfEntriesReturned = odr_intdup(assoc->encode, 0);
1217     Z_ListEntries *ents = (Z_ListEntries *)
1218         odr_malloc (assoc->encode, sizeof(*ents));
1219     Z_DiagRecs *diagrecs_p = NULL;
1220     oident *attent;
1221     oident *attset;
1222
1223     yaz_log(LOG_LOG, "Got ScanRequest");
1224
1225     apdu->which = Z_APDU_scanResponse;
1226     apdu->u.scanResponse = res;
1227     res->referenceId = req->referenceId;
1228     res->stepSize = odr_intdup(assoc->encode, 0);
1229
1230     if (req->stepSize)
1231         *res->stepSize = *req->stepSize;
1232     res->scanStatus = scanStatus;
1233     res->numberOfEntriesReturned = numberOfEntriesReturned;
1234     res->positionOfTerm = 0;
1235     res->entries = ents;
1236     ents->num_entries = 0;
1237     ents->entries = NULL;
1238     ents->num_nonsurrogateDiagnostics = 0;
1239     ents->nonsurrogateDiagnostics = NULL;
1240     res->attributeSet = 0;
1241     res->otherInfo = 0;
1242
1243     if (req->attributeSet && (!(attent = oid_getentbyoid(req->attributeSet)) ||
1244                               attent->oclass != CLASS_ATTSET
1245                               || attent->value != VAL_BIB1))
1246         diagrecs_p = diagrecs(assoc, 121, 0);
1247     else if (req->stepSize && *req->stepSize > 0)
1248         diagrecs_p = diagrecs(assoc, 205, 0);
1249     else
1250     {
1251         bend_scan_rr *bsrr = (bend_scan_rr *)
1252             odr_malloc (assoc->encode, sizeof(*bsrr));
1253         if (req->databaseNames)
1254         {
1255             int i;
1256             for (i = 0; i < req->num_databaseNames; i++)
1257                 yaz_log (LOG_LOG, "Database '%s'", req->databaseNames[i]);
1258         }
1259         bsrr->num_bases = req->num_databaseNames;
1260         bsrr->basenames = req->databaseNames;
1261         bsrr->num_entries = *req->numberOfTermsRequested;
1262         bsrr->term = req->termListAndStartPoint;
1263         bsrr->referenceId = req->referenceId;
1264         bsrr->stream = assoc->encode;
1265         bsrr->print = assoc->print;
1266         bsrr->step_size = res->stepSize;
1267         if (!(attset = oid_getentbyoid(req->attributeSet)) ||
1268             attset->oclass != CLASS_RECSYN)
1269             bsrr->attributeset = VAL_NONE;
1270         else
1271             bsrr->attributeset = attset->value;
1272         log_scan_term (req->termListAndStartPoint, bsrr->attributeset);
1273         bsrr->term_position = req->preferredPositionInResponse ?
1274             *req->preferredPositionInResponse : 1;
1275         ((int (*)(void *, bend_scan_rr *))
1276          (*assoc->init->bend_scan))(assoc->backend, bsrr);
1277         if (bsrr->errcode)
1278             diagrecs_p = diagrecs(assoc, bsrr->errcode, bsrr->errstring);
1279         else
1280         {
1281             int i;
1282             Z_Entry **tab = (Z_Entry **)
1283                 odr_malloc (assoc->encode, sizeof(*tab) * bsrr->num_entries);
1284             
1285             if (bsrr->status == BEND_SCAN_PARTIAL)
1286                 *scanStatus = Z_Scan_partial_5;
1287             else
1288                 *scanStatus = Z_Scan_success;
1289             ents->entries = tab;
1290             ents->num_entries = bsrr->num_entries;
1291             res->numberOfEntriesReturned = &ents->num_entries;      
1292             res->positionOfTerm = &bsrr->term_position;
1293             for (i = 0; i < bsrr->num_entries; i++)
1294             {
1295                 Z_Entry *e;
1296                 Z_TermInfo *t;
1297                 Odr_oct *o;
1298                 
1299                 tab[i] = e = (Z_Entry *)odr_malloc(assoc->encode, sizeof(*e));
1300                 if (bsrr->entries[i].occurrences >= 0)
1301                 {
1302                     e->which = Z_Entry_termInfo;
1303                     e->u.termInfo = t = (Z_TermInfo *)
1304                         odr_malloc(assoc->encode, sizeof(*t));
1305                     t->suggestedAttributes = 0;
1306                     t->displayTerm = 0;
1307                     t->alternativeTerm = 0;
1308                     t->byAttributes = 0;
1309                     t->otherTermInfo = 0;
1310                     t->globalOccurrences = &bsrr->entries[i].occurrences;
1311                     t->term = (Z_Term *)
1312                         odr_malloc(assoc->encode, sizeof(*t->term));
1313                     t->term->which = Z_Term_general;
1314                     t->term->u.general = o =
1315                         (Odr_oct *)odr_malloc(assoc->encode, sizeof(Odr_oct));
1316                     o->buf = (unsigned char *)
1317                         odr_malloc(assoc->encode, o->len = o->size =
1318                                    strlen(bsrr->entries[i].term));
1319                     memcpy(o->buf, bsrr->entries[i].term, o->len);
1320                     yaz_log(LOG_DEBUG, "  term #%d: '%s' (%d)", i,
1321                          bsrr->entries[i].term, bsrr->entries[i].occurrences);
1322                 }
1323                 else
1324                 {
1325                     Z_DiagRecs *drecs = diagrecs (assoc,
1326                                                   bsrr->entries[i].errcode,
1327                                                   bsrr->entries[i].errstring);
1328                     assert (drecs->num_diagRecs == 1);
1329                     e->which = Z_Entry_surrogateDiagnostic;
1330                     assert (drecs->diagRecs[0]);
1331                     e->u.surrogateDiagnostic = drecs->diagRecs[0];
1332                 }
1333             }
1334         }
1335     }
1336     if (diagrecs_p)
1337     {
1338         ents->num_nonsurrogateDiagnostics = diagrecs_p->num_diagRecs;
1339         ents->nonsurrogateDiagnostics = diagrecs_p->diagRecs;
1340     }
1341     return apdu;
1342 }
1343
1344 static Z_APDU *process_sortRequest(association *assoc, request *reqb,
1345     int *fd)
1346 {
1347     Z_SortRequest *req = reqb->apdu_request->u.sortRequest;
1348     Z_SortResponse *res = (Z_SortResponse *)
1349         odr_malloc (assoc->encode, sizeof(*res));
1350     bend_sort_rr *bsrr = (bend_sort_rr *)
1351         odr_malloc (assoc->encode, sizeof(*bsrr));
1352
1353     Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
1354
1355     yaz_log(LOG_LOG, "Got SortRequest.");
1356
1357     bsrr->num_input_setnames = req->num_inputResultSetNames;
1358     bsrr->input_setnames = req->inputResultSetNames;
1359     bsrr->referenceId = req->referenceId;
1360     bsrr->output_setname = req->sortedResultSetName;
1361     bsrr->sort_sequence = req->sortSequence;
1362     bsrr->stream = assoc->encode;
1363     bsrr->print = assoc->print;
1364
1365     bsrr->sort_status = Z_SortStatus_failure;
1366     bsrr->errcode = 0;
1367     bsrr->errstring = 0;
1368     
1369     (*assoc->init->bend_sort)(assoc->backend, bsrr);
1370     
1371     res->referenceId = bsrr->referenceId;
1372     res->sortStatus = odr_intdup(assoc->encode, bsrr->sort_status);
1373     res->resultSetStatus = 0;
1374     if (bsrr->errcode)
1375     {
1376         Z_DiagRecs *dr = diagrecs (assoc, bsrr->errcode, bsrr->errstring);
1377         res->diagnostics = dr->diagRecs;
1378         res->num_diagnostics = dr->num_diagRecs;
1379     }
1380     else
1381     {
1382         res->num_diagnostics = 0;
1383         res->diagnostics = 0;
1384     }
1385     res->otherInfo = 0;
1386
1387     apdu->which = Z_APDU_sortResponse;
1388     apdu->u.sortResponse = res;
1389     return apdu;
1390 }
1391
1392 static Z_APDU *process_deleteRequest(association *assoc, request *reqb,
1393     int *fd)
1394 {
1395     Z_DeleteResultSetRequest *req =
1396         reqb->apdu_request->u.deleteResultSetRequest;
1397     Z_DeleteResultSetResponse *res = (Z_DeleteResultSetResponse *)
1398         odr_malloc (assoc->encode, sizeof(*res));
1399     bend_delete_rr *bdrr = (bend_delete_rr *)
1400         odr_malloc (assoc->encode, sizeof(*bdrr));
1401     Z_APDU *apdu = (Z_APDU *)odr_malloc (assoc->encode, sizeof(*apdu));
1402
1403     yaz_log(LOG_LOG, "Got DeleteRequest.");
1404
1405     bdrr->num_setnames = req->num_resultSetList;
1406     bdrr->setnames = req->resultSetList;
1407     bdrr->stream = assoc->encode;
1408     bdrr->print = assoc->print;
1409     bdrr->function = *req->deleteFunction;
1410     bdrr->referenceId = req->referenceId;
1411     bdrr->statuses = 0;
1412     if (bdrr->num_setnames > 0)
1413     {
1414         int i;
1415         bdrr->statuses = (int*) 
1416             odr_malloc(assoc->encode, sizeof(*bdrr->statuses) *
1417                        bdrr->num_setnames);
1418         for (i = 0; i < bdrr->num_setnames; i++)
1419             bdrr->statuses[i] = 0;
1420     }
1421     (*assoc->init->bend_delete)(assoc->backend, bdrr);
1422     
1423     res->referenceId = req->referenceId;
1424
1425     res->deleteOperationStatus = odr_intdup(assoc->encode,bdrr->delete_status);
1426
1427     res->deleteListStatuses = 0;
1428     if (bdrr->num_setnames > 0)
1429     {
1430         int i;
1431         res->deleteListStatuses = (Z_ListStatuses *)
1432             odr_malloc(assoc->encode, sizeof(*res->deleteListStatuses));
1433         res->deleteListStatuses->num = bdrr->num_setnames;
1434         res->deleteListStatuses->elements =
1435             (Z_ListStatus **)
1436             odr_malloc (assoc->encode, 
1437                         sizeof(*res->deleteListStatuses->elements) *
1438                         bdrr->num_setnames);
1439         for (i = 0; i<bdrr->num_setnames; i++)
1440         {
1441             res->deleteListStatuses->elements[i] =
1442                 (Z_ListStatus *)
1443                 odr_malloc (assoc->encode,
1444                             sizeof(**res->deleteListStatuses->elements));
1445             res->deleteListStatuses->elements[i]->status = bdrr->statuses+i;
1446             res->deleteListStatuses->elements[i]->id =
1447                 odr_strdup (assoc->encode, bdrr->setnames[i]);
1448             
1449         }
1450     }
1451     res->numberNotDeleted = 0;
1452     res->bulkStatuses = 0;
1453     res->deleteMessage = 0;
1454     res->otherInfo = 0;
1455
1456     apdu->which = Z_APDU_deleteResultSetResponse;
1457     apdu->u.deleteResultSetResponse = res;
1458     return apdu;
1459 }
1460
1461 static void process_close(association *assoc, request *reqb)
1462 {
1463     Z_Close *req = reqb->apdu_request->u.close;
1464     static char *reasons[] =
1465     {
1466         "finished",
1467         "shutdown",
1468         "systemProblem",
1469         "costLimit",
1470         "resources",
1471         "securityViolation",
1472         "protocolError",
1473         "lackOfActivity",
1474         "peerAbort",
1475         "unspecified"
1476     };
1477
1478     yaz_log(LOG_LOG, "Got Close, reason %s, message %s",
1479         reasons[*req->closeReason], req->diagnosticInformation ?
1480         req->diagnosticInformation : "NULL");
1481     if (assoc->version < 3) /* to make do_force respond with close */
1482         assoc->version = 3;
1483     do_close_req(assoc, Z_Close_finished,
1484                  "Association terminated by client", reqb);
1485 }
1486
1487 void save_referenceId (request *reqb, Z_ReferenceId *refid)
1488 {
1489     if (refid)
1490     {
1491         reqb->len_refid = refid->len;
1492         reqb->refid = (char *)nmem_malloc (reqb->request_mem, refid->len);
1493         memcpy (reqb->refid, refid->buf, refid->len);
1494     }
1495     else
1496     {
1497         reqb->len_refid = 0;
1498         reqb->refid = NULL;
1499     }
1500 }
1501
1502 void bend_request_send (bend_association a, bend_request req, Z_APDU *res)
1503 {
1504     process_response (a, req, res);
1505 }
1506
1507 bend_request bend_request_mk (bend_association a)
1508 {
1509     request *nreq = request_get (&a->outgoing);
1510     nreq->request_mem = nmem_create ();
1511     return nreq;
1512 }
1513
1514 Z_ReferenceId *bend_request_getid (ODR odr, bend_request req)
1515 {
1516     Z_ReferenceId *id;
1517     if (!req->refid)
1518         return 0;
1519     id = (Odr_oct *)odr_malloc (odr, sizeof(*odr));
1520     id->buf = (unsigned char *)odr_malloc (odr, req->len_refid);
1521     id->len = id->size = req->len_refid;
1522     memcpy (id->buf, req->refid, req->len_refid);
1523     return id;
1524 }
1525
1526 void bend_request_destroy (bend_request *req)
1527 {
1528     nmem_destroy((*req)->request_mem);
1529     request_release(*req);
1530     *req = NULL;
1531 }
1532
1533 int bend_backend_respond (bend_association a, bend_request req)
1534 {
1535     char *msg;
1536     int r;
1537     r = process_request (a, req, &msg);
1538     if (r < 0)
1539         logf (LOG_WARN, "%s", msg);
1540     return r;
1541 }
1542
1543 void bend_request_setdata(bend_request r, void *p)
1544 {
1545     r->clientData = p;
1546 }
1547
1548 void *bend_request_getdata(bend_request r)
1549 {
1550     return r->clientData;
1551 }
1552
1553 static Z_APDU *process_segmentRequest (association *assoc, request *reqb)
1554 {
1555     bend_segment_rr request;
1556
1557     request.segment = reqb->apdu_request->u.segmentRequest;
1558     request.stream = assoc->encode;
1559     request.decode = assoc->decode;
1560     request.print = assoc->print;
1561     request.association = assoc;
1562     
1563     (*assoc->init->bend_segment)(assoc->backend, &request);
1564
1565     return 0;
1566 }
1567
1568 static Z_APDU *process_ESRequest(association *assoc, request *reqb, int *fd)
1569 {
1570     bend_esrequest_rr esrequest;
1571
1572     Z_ExtendedServicesRequest *req = reqb->apdu_request->u.extendedServicesRequest;
1573     Z_APDU *apdu = zget_APDU(assoc->encode, Z_APDU_extendedServicesResponse);
1574
1575     Z_ExtendedServicesResponse *resp = apdu->u.extendedServicesResponse;
1576
1577     yaz_log(LOG_DEBUG,"inside Process esRequest");
1578
1579     esrequest.esr = reqb->apdu_request->u.extendedServicesRequest;
1580     esrequest.stream = assoc->encode;
1581     esrequest.decode = assoc->decode;
1582     esrequest.print = assoc->print;
1583     esrequest.errcode = 0;
1584     esrequest.errstring = NULL;
1585     esrequest.request = reqb;
1586     esrequest.association = assoc;
1587     esrequest.taskPackage = 0;
1588     esrequest.referenceId = req->referenceId;
1589     
1590     (*assoc->init->bend_esrequest)(assoc->backend, &esrequest);
1591     
1592     /* If the response is being delayed, return NULL */
1593     if (esrequest.request == NULL)
1594         return(NULL);
1595
1596     resp->referenceId = req->referenceId;
1597
1598     if (esrequest.errcode == -1)
1599     {
1600         /* Backend service indicates request will be processed */
1601         yaz_log(LOG_DEBUG,"Request could be processed...Accepted !");
1602         *resp->operationStatus = Z_ExtendedServicesResponse_accepted;
1603     }
1604     else if (esrequest.errcode == 0)
1605     {
1606         /* Backend service indicates request will be processed */
1607         yaz_log(LOG_DEBUG,"Request could be processed...Done !");
1608         *resp->operationStatus = Z_ExtendedServicesResponse_done;
1609     }
1610     else
1611     {
1612         Z_DiagRecs *diagRecs = diagrecs (assoc, esrequest.errcode,
1613                                          esrequest.errstring);
1614
1615         /* Backend indicates error, request will not be processed */
1616         yaz_log(LOG_DEBUG,"Request could not be processed...failure !");
1617         *resp->operationStatus = Z_ExtendedServicesResponse_failure;
1618         resp->num_diagnostics = diagRecs->num_diagRecs;
1619         resp->diagnostics = diagRecs->diagRecs;
1620     }
1621     /* Do something with the members of bend_extendedservice */
1622     if (esrequest.taskPackage)
1623         resp->taskPackage = z_ext_record (assoc->encode, VAL_EXTENDED,
1624                                          (const char *)  esrequest.taskPackage,
1625                                           -1);
1626     yaz_log(LOG_DEBUG,"Send the result apdu");
1627     return apdu;
1628 }