Update source headers for 2008. Omit CVS ID keyword subst.
[yaz-moved-to-github.git] / util / yaz-illclient.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2008 Index Data
3  * See the file LICENSE for details.
4  */
5
6 /* WARNING - This is work in progress - not at all ready */
7
8 /** \file yaz-illclient.c
9  *  \brief client for ILL requests (ISO 10161-1)
10  *
11  *  This is a test client for handling ISO 10161-1 ILL requests.
12  *  Those are not directly Z39.50, but the protocol is quite similar
13  *  and yaz already provides the APDUS for it.
14  *
15  *  This is not an interactive client like yaz-client, but driven by command-
16  *  line arguments. Its output is a return code, and possibly some text on 
17  *  stdout.
18  *
19  *  Exit codes  (note, the program exits as soon as it finds a good reason)
20  *     0   ok
21  *     1   errors in arguments
22  *     2   Internal errors in creating objects (comstack, odr...)
23  *         mostly programming errors.
24  *     3   could not connect
25  *     4   could not send request
26  *     5   No reponse received
27  *     6   Error decoding response packet
28  *     7   Server returned an error (see log or stdout)
29  *
30  *
31  *
32  *
33  */
34
35 #include <stdlib.h>
36 #include <stdio.h>
37
38 #if HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
41 #if HAVE_SYS_STAT_H
42 #include <sys/stat.h>
43 #endif
44 #if HAVE_SYS_TIME_H
45 #include <sys/time.h>
46 #endif
47
48
49 #include <yaz/yaz-util.h>
50 #include <yaz/proto.h>
51 #include <yaz/comstack.h>
52 #include <yaz/tcpip.h>
53 #include <yaz/unix.h>
54 #include <yaz/odr.h>
55 #include <yaz/log.h>
56 #include <yaz/ill.h>
57 #include <yaz/oclc-ill-req-ext.h>
58
59
60 /* A structure for holding name-value pairs in a linked list */
61 struct nameval {
62     char *name;
63     char *val;
64     struct nameval *next;
65 };
66
67 /* A structure for storing all the arguments */
68 struct prog_args {
69     char *host;
70     char *auth_userid;
71     char *auth_passwd;
72     char *oclc_recno; /* record number in oclc-mode */
73     int oclc_auth;  /* 1=use oclc-type auth */
74     struct nameval* namevals; /* circular list, points to last */
75 } ;
76
77
78
79 /* Call-back to be called for every field in the ill-request */
80 /* It can set values to any field, perhaps from the prog_args */
81 const char *get_ill_element(void *clientData, const char *element) {
82     struct prog_args *args = (struct prog_args *) clientData;
83     struct nameval *nv=args->namevals;
84     char *ret=0;
85     if (!nv)
86         return "";
87     do  {
88         nv=nv->next;
89         /* printf("comparing '%s' with '%s' \n",element, nv->name ); */
90         if ( strcmp(element, nv->name) == 0 )
91             ret = nv->val;
92     } while ( ( !ret) && ( nv != args->namevals) );
93     yaz_log(YLOG_DEBUG,"get_ill_element:'%s'->'%s'", element, ret );
94     return ret;
95 }
96
97
98 /* * * * * * * * * * * * * * * * * */
99
100 /** \brief parse a parameter string */
101 /* string is like 'name=value' */
102 struct nameval *parse_nameval( char *arg ) {
103     struct nameval *nv = (struct nameval *) xmalloc(sizeof(*nv));
104     char *p=arg;
105     int len;
106     if (!p || !*p) 
107         return 0; /* yeah, leaks a bit of memory. so what */
108     while ( *p && ( *p != '=' ) ) 
109         p++;
110     len = p - arg;
111     if (!len)
112         return 0;
113     nv->name = (char *) xmalloc(len+1);
114     strncpy(nv->name, arg, len);
115     nv->name[len]='\0';
116     if (*p == '=' )
117         p++; /* skip the '=' */
118     else
119         return 0; /* oops, no '=' */
120     if (!*p)
121         return 0; /* no value */
122     nv->val=xstrdup(p);
123     nv->next=0;
124     yaz_log(YLOG_DEBUG,"parse_nameval: n='%s' v='%s'", nv->name, nv->val );
125     return nv;
126 }
127
128 /** \brief append nv to the list of namevals */
129 void append_nameval (struct prog_args *args, struct nameval *nv) {
130     if (!nv)
131         return;
132     if (args->namevals) {
133         nv->next=args->namevals->next; /* first */
134         args->namevals->next=nv; 
135         args->namevals=nv;
136     } else {
137         nv->next=nv;
138         args->namevals=nv;
139     }
140 } /* append_nameval */
141
142 /** \brief parse a parameter file */
143 void parse_paramfile(char *arg, struct prog_args *args) {
144     FILE *f=fopen(arg,"r");
145 #define BUFSIZE 4096    
146     char buf[BUFSIZE];
147     int len;
148     struct nameval *nv;
149     if (!f) {
150         yaz_log(YLOG_FATAL,"Could not open param file '%s' ", arg);
151         printf("Could not open file '%s' \n",arg);
152         exit(1);
153     }
154     yaz_log(YLOG_DEBUG,"Opened input file '%s' ",arg );
155     while (fgets(buf,BUFSIZE,f)) {
156         if (buf[0] != '#' ) {
157             len=strlen(buf)-1;
158             if (buf[len] == '\n')
159                 buf[len] = '\0' ;
160             nv=parse_nameval(buf);
161             append_nameval(args, nv);
162         } /* not a comment */
163     }
164     (void) fclose(f);
165
166     if (0) {
167         nv=args->namevals;
168         printf("nv chain: ================ \n");
169         printf("(last:) %p: '%s' = '%s' (%p) \n",nv, nv->name, nv->val, nv->next );
170         do {
171             nv=nv->next;
172             printf("%p: '%s' = '%s' (%p)\n",nv, nv->name, nv->val, nv->next );
173         } while (nv != args->namevals );
174         exit(1);
175     }
176
177 } /* parse_paramfile */
178
179
180 /** \brief  Parse program arguments */
181 void parseargs( int argc, char * argv[],  struct prog_args *args) {
182     int ret;
183     char *arg;
184     char *prog=*argv;
185     const char *version="$Id: yaz-illclient.c,v 1.9 2007-11-30 11:44:47 adam Exp $"; /* from cvs */
186     struct nameval *nv;
187
188     /* default values */
189     args->host = 0; /* not known (yet) */
190     args->namevals=0; /* none set up */
191     args->oclc_auth=0;
192     args->oclc_recno=0;
193     args->auth_userid = 0;
194     args->auth_passwd = 0;
195 #if 0    
196     /* Example 3 - directly from OCLC, supposed to work on their test server*/
197     args->auth_userid = "100-310-658" ; /* FIXME - get from cmd line */
198     args->auth_passwd = "apii2test" ;   /* FIXME - get from cmd line */
199 #endif
200
201     while ((ret = options("Vov:p:u:D:f:r:l:", argv, argc, &arg)) != -2)
202     {
203         yaz_log(YLOG_DEBUG,"parsing option '%c' '%s'",ret, arg);
204         switch (ret)
205         {
206         case 0:
207             if (!args->host)
208             {
209                 args->host = xstrdup (arg);
210             }
211             else
212             {
213                 fprintf(stderr, "%s: Specify at most one server address\n",
214                         prog);
215                 exit(1);
216             }
217             break;
218         case 'v':
219             yaz_log_init(yaz_log_mask_str(arg), "", 0);
220             break;
221         case 'l':
222             yaz_log_init_file(arg);
223             break;
224         case 'V':
225             printf("%s %s",prog, version );
226             break;
227         case 'D':
228             nv=parse_nameval(arg);
229             append_nameval(args,nv);
230             break;
231         case 'f':
232             parse_paramfile(arg,args);
233             break;
234         case 'o':
235             args->oclc_auth=1;
236             break;
237         case 'u':
238             args->auth_userid=xstrdup(arg);
239             break;
240         case 'p':
241             args->auth_passwd=xstrdup(arg);
242             break;
243         case 'r':
244             args->oclc_recno=xstrdup(arg);
245             break;
246         default:
247             fprintf (stderr, "Usage: %s "
248                      " [-f filename]"
249                      " [-v loglevel...]"
250                      " [-D name=value ]"
251                      " [-o -u user -p passwd]"
252                      " [-V]"
253                      " <server-addr>\n",
254                      prog);
255             exit (1);
256         }
257     }
258 } /* parseargs */
259
260 /* * * * * * * * * * * */
261 /** \brief  Validate the arguments make sense */
262 void validateargs( struct prog_args *args) {
263     if (!args->host) {
264         fprintf(stderr, "Specify a connection address, "
265                         "as in 'bagel.indexdata.dk:210' \n");
266         exit(1);
267     }
268     if (args->oclc_auth && ((!args->auth_userid) || (!args->auth_passwd))){
269         fprintf(stderr, "-o option requires -u <user> and -p <pwd>\n");
270         exit(1);
271     }
272 } /* validateargs */
273
274
275 /* * * * * * * * * * * * * * * */
276 /** \brief  Connect to the target */
277 COMSTACK connect_to( char *hostaddr ){
278     COMSTACK stack;
279     void *server_address_ip;
280     int status;
281
282     yaz_log(YLOG_DEBUG,"Connecting to '%s'", hostaddr);
283     stack = cs_create_host(hostaddr, 1, &server_address_ip );
284     if (!stack) {
285         yaz_log(YLOG_FATAL,"Error in creating the comstack '%s' ",
286                  hostaddr );
287         exit(2);
288     }
289     
290     yaz_log(YLOG_DEBUG,"Created stack ok ");
291
292     status = cs_connect(stack, server_address_ip);
293     if (status != 0) {
294         yaz_log(YLOG_FATAL|YLOG_ERRNO,"Can not connect '%s' ",
295                  hostaddr );
296         exit(3);
297     }
298     yaz_log(YLOG_DEBUG,"Connected OK to '%s'", hostaddr);
299     return stack;
300 }
301
302
303 /* * * * * * * * * * * * * * * */
304 /* Makes a Z39.50-like prompt package with username and password */
305 Z_PromptObject1 *makeprompt(struct prog_args *args, ODR odr) {
306     Z_PromptObject1 *p = (Z_PromptObject1 *) odr_malloc(odr, sizeof(*p) );
307     Z_ResponseUnit1 *ru = (Z_ResponseUnit1 *) odr_malloc(odr, sizeof(*ru) );
308     
309     p->which=Z_PromptObject1_response;
310     p->u.response = (Z_Response1*) odr_malloc(odr, sizeof(*(p->u.response)) );
311     p->u.response->num=2;
312     p->u.response->elements= (Z_ResponseUnit1 **) odr_malloc(odr, 
313              p->u.response->num*sizeof(*(p->u.response->elements)) );
314     /* user id, aka "oclc authorization number" */
315     p->u.response->elements[0] = ru;
316     ru->promptId = (Z_PromptId *) odr_malloc(odr, sizeof(*(ru->promptId) ));
317     ru->promptId->which = Z_PromptId_enumeratedPrompt;
318     ru->promptId->u.enumeratedPrompt = (Z_PromptIdEnumeratedPrompt *)
319         odr_malloc(odr, sizeof(*(ru->promptId->u.enumeratedPrompt) ));
320     ru->promptId->u.enumeratedPrompt->type = 
321          odr_intdup(odr,Z_PromptIdEnumeratedPrompt_userId);
322     ru->promptId->u.enumeratedPrompt->suggestedString = 0 ;
323     ru->which = Z_ResponseUnit1_string ;
324     ru->u.string = odr_strdup(odr, args->auth_userid);
325     /* password */
326     ru = (Z_ResponseUnit1 *) odr_malloc(odr, sizeof(*ru) );
327     p->u.response->elements[1] = ru;
328     ru->promptId = (Z_PromptId *) odr_malloc(odr, sizeof(*(ru->promptId) ));
329     ru->promptId->which = Z_PromptId_enumeratedPrompt;
330     ru->promptId->u.enumeratedPrompt =  (Z_PromptIdEnumeratedPrompt *)
331         odr_malloc(odr, sizeof(*(ru->promptId->u.enumeratedPrompt) ));
332     ru->promptId->u.enumeratedPrompt->type = 
333          odr_intdup(odr,Z_PromptIdEnumeratedPrompt_password);
334     ru->promptId->u.enumeratedPrompt->suggestedString = 0 ;
335     ru->which = Z_ResponseUnit1_string ;
336     ru->u.string = odr_strdup(odr, args->auth_passwd);
337     return p;
338 } /* makeprompt */
339
340 ILL_Extension *makepromptextension(struct prog_args *args, ODR odr) {
341     ODR odr_ext = odr_createmem(ODR_ENCODE);
342     ODR odr_prt = odr_createmem(ODR_PRINT);
343     ILL_Extension *e = (ILL_Extension *) odr_malloc(odr, sizeof(*e));
344     Z_PromptObject1 *p = makeprompt(args,odr_ext);
345     char * buf;
346     int siz;
347     Z_External *ext = (Z_External *) odr_malloc(odr, sizeof(*ext));
348     ext->direct_reference = odr_getoidbystr(odr,"1.2.840.10003.8.1");
349     ext->indirect_reference=0;
350     ext->descriptor=0;
351     ext->which=Z_External_single;
352     if ( ! z_PromptObject1(odr_ext, &p, 0,0 ) ) {
353         yaz_log(YLOG_FATAL,"Encoding of z_PromptObject1 failed ");
354         exit (6);
355     }
356     
357     printf ("Prompt: \n"); /*!*/
358     z_PromptObject1(odr_prt, &p, 0,0 ); /*!*/
359
360     buf= odr_getbuf(odr_ext,&siz,0);
361     ext->u.single_ASN1_type=(Odr_any *) 
362         odr_malloc(odr,sizeof(*ext->u.single_ASN1_type));
363     ext->u.single_ASN1_type->buf= (unsigned char *) odr_malloc(odr, siz);
364     memcpy(ext->u.single_ASN1_type->buf,buf, siz );
365     ext->u.single_ASN1_type->len = ext->u.single_ASN1_type->size = siz;
366     odr_reset(odr_ext);
367     odr_reset(odr_prt); /*!*/
368
369     e->identifier = odr_intdup(odr,1);
370     e->critical = odr_intdup(odr,0);
371     e->item = (Odr_any *) odr_malloc(odr,sizeof(*e->item));
372     if ( ! z_External(odr_ext, &ext,0,0) ) {
373         yaz_log(YLOG_FATAL,"Encoding of z_External failed ");
374         exit (6);
375     }
376     printf("External: \n");
377     z_External(odr_prt, &ext,0,0);  /*!*/
378     buf= odr_getbuf(odr_ext,&siz,0); 
379     e->item->buf= (unsigned char *) odr_malloc(odr, siz);
380     memcpy(e->item->buf,buf, siz );
381     e->item->len = e->item->size = siz;
382
383     odr_destroy(odr_prt);
384     odr_destroy(odr_ext);
385     return e;
386 } /* makepromptextension */
387
388 ILL_Extension *makeoclcextension(struct prog_args *args, ODR odr) {
389     /* The oclc extension is required, but only contains optional */
390     /* fields. Here we just null them all out */
391     ODR odr_ext = odr_createmem(ODR_ENCODE);
392     ODR odr_prt = odr_createmem(ODR_PRINT);
393     ILL_Extension *e = (ILL_Extension *) odr_malloc(odr, sizeof(*e));
394     ILL_OCLCILLRequestExtension *oc = (ILL_OCLCILLRequestExtension *)
395         odr_malloc(odr_ext, sizeof(*oc));
396     char * buf;
397     int siz;
398     Z_External *ext = (Z_External *) odr_malloc(odr, sizeof(*ext));
399     oc->clientDepartment = 0;
400     oc->paymentMethod = 0;
401     oc->uniformTitle = 0;
402     oc->dissertation = 0;
403     oc->issueNumber = 0;
404     oc->volume = 0;
405     oc->affiliations = 0;
406     oc->source = 0;
407     ext->direct_reference = odr_getoidbystr(odr,"1.0.10161.13.2");
408     ext->indirect_reference=0;
409     ext->descriptor=0;
410     ext->which=Z_External_single;
411     if ( ! ill_OCLCILLRequestExtension(odr_ext, &oc, 0,0 ) ) {
412         yaz_log(YLOG_FATAL,"Encoding of ill_OCLCILLRequestExtension failed ");
413         exit (6);
414     }
415     
416     printf ("OCLC: \n"); /*!*/
417     ill_OCLCILLRequestExtension(odr_prt, &oc, 0,0 ); /*!*/
418
419     buf= odr_getbuf(odr_ext,&siz,0);
420     ext->u.single_ASN1_type = (Odr_any*)
421         odr_malloc(odr,sizeof(*ext->u.single_ASN1_type));
422     ext->u.single_ASN1_type->buf = (unsigned char *) odr_malloc(odr, siz);
423     memcpy(ext->u.single_ASN1_type->buf,buf, siz );
424     ext->u.single_ASN1_type->len = ext->u.single_ASN1_type->size = siz;
425     odr_reset(odr_ext);
426     odr_reset(odr_prt); /*!*/
427
428     e->identifier = odr_intdup(odr,1);
429     e->critical = odr_intdup(odr,0);
430     e->item = (Odr_any *) odr_malloc(odr,sizeof(*e->item));
431     if ( ! z_External(odr_ext, &ext,0,0) ) {
432         yaz_log(YLOG_FATAL,"Encoding of z_External failed ");
433         exit (6);
434     }
435     printf("External: \n");
436     z_External(odr_prt, &ext,0,0);  /*!*/
437     buf= odr_getbuf(odr_ext,&siz,0); 
438     e->item->buf= (unsigned char *) odr_malloc(odr, siz);
439     memcpy(e->item->buf, buf, siz);
440     e->item->len = e->item->size = siz;
441
442     odr_destroy(odr_prt);
443     odr_destroy(odr_ext);
444     return e;
445
446 } /* makeoclcextension */
447
448 ILL_APDU *createrequest( struct prog_args *args, ODR odr) {
449     struct ill_get_ctl ctl;
450     ILL_APDU *apdu;
451     ILL_Request *req;
452
453     ctl.odr = odr;
454     ctl.clientData = args;
455     ctl.f = get_ill_element;
456     apdu = (ILL_APDU *) odr_malloc( odr, sizeof(*apdu) );
457     apdu->which=ILL_APDU_ILL_Request;
458     req = ill_get_ILLRequest(&ctl, "ill", 0);
459     apdu->u.illRequest=req;
460     if (args->oclc_auth) {
461         req->num_iLL_request_extensions=2;
462         req->iLL_request_extensions=
463             (ILL_Extension **)
464             odr_malloc(odr, req->num_iLL_request_extensions*
465                        sizeof(*req->iLL_request_extensions));
466         req->iLL_request_extensions[0]=makepromptextension(args,odr);
467         req->iLL_request_extensions[1]=makeoclcextension(args,odr);
468     }
469     if (!req) {
470         yaz_log(YLOG_FATAL,"Could not create ill request");
471         exit(2);
472     }
473     return apdu;
474 } /* createrequest */
475
476
477 /* * * * * * * * * * * * * * * */
478 /** \brief Send the request */
479 void sendrequest(ILL_APDU *apdu, ODR odr, COMSTACK stack ) {
480     char *buf_out;
481     int len_out;
482     int res;
483     if (!ill_APDU  (odr, &apdu, 0, 0)) { 
484         yaz_log(YLOG_FATAL,"ill_Apdu failed");
485         exit(2);
486     }
487     buf_out = odr_getbuf(odr, &len_out, 0);
488     if (0) {
489         yaz_log(YLOG_DEBUG,"Request PDU Dump");
490         odr_dumpBER(yaz_log_file(), buf_out, len_out);
491     }
492     if (!buf_out) {
493         yaz_log(YLOG_FATAL,"Encoding failed. Len=%d", len_out);
494         odr_perror(odr, "encoding failed");
495         exit(2);
496     }
497     yaz_log(YLOG_DEBUG,"About to send the request. Len=%d", len_out);
498     res = cs_put(stack, buf_out, len_out);
499     if ( res<0 ) {
500         yaz_log(YLOG_FATAL,"Could not send packet. code %d",res );
501         exit (4);
502     }
503     if (1) {
504         FILE *F = fopen("req.apdu","w");
505         fwrite ( buf_out, 1, len_out, F);
506         fclose(F);
507     }
508     
509 } /* sendrequest */
510
511 /* * * * * * * * * * * * * * * */
512 /** \brief  Get a response */
513 ILL_APDU *getresponse( COMSTACK stack, ODR in_odr ){
514     ILL_APDU *resp;
515     int res;
516     char *buf_in=0;
517     int len_in=0;
518     yaz_log(YLOG_DEBUG,"About to wait for a response");
519     res = cs_get(stack, &buf_in, &len_in);
520     yaz_log(YLOG_DEBUG,"Got a response of %d bytes at %p. res=%d", len_in,buf_in, res);
521     if (res<0) {
522         yaz_log(YLOG_FATAL,"Could not receive packet. code %d",res );
523         yaz_log(YLOG_DEBUG,"%02x %02x %02x %02x %02x %02x %02x %02x ...", 
524                 buf_in[0], buf_in[1], buf_in[2], buf_in[3],
525                 buf_in[4], buf_in[5], buf_in[6], buf_in[7]  );
526         yaz_log(YLOG_DEBUG,"PDU Dump:");
527         odr_dumpBER(yaz_log_file(), buf_in, len_in);
528         exit (5);
529     }
530     odr_setbuf(in_odr, buf_in, res, 0);
531     if (!ill_APDU (in_odr, &resp, 0, 0))
532     {
533         int x;
534         int err = odr_geterrorx(in_odr, &x);
535         char msg[60];
536         const char *element = odr_getelement(in_odr);
537         sprintf(msg, "ODR code %d:%d element=%-20s",
538                 err, x, element ? element : "<unknown>");
539         yaz_log(YLOG_FATAL,"Error decoding incoming packet: %s",msg);
540         yaz_log(YLOG_DEBUG,"%02x %02x %02x %02x %02x %02x %02x %02x ...", 
541                 buf_in[0], buf_in[1], buf_in[2], buf_in[3],
542                 buf_in[4], buf_in[5], buf_in[6], buf_in[7]  );
543         yaz_log(YLOG_DEBUG,"PDU Dump:");
544         odr_dumpBER(yaz_log_file(), buf_in, len_in);
545         yaz_log(YLOG_FATAL,"Error decoding incoming packet: %s",msg);
546         exit(6);
547     }
548     return resp;
549 } /* getresponse */
550
551
552 /** \brief Dump a apdu */
553 void dumpapdu( ILL_APDU *apdu) {
554     ODR print_odr = odr_createmem(ODR_PRINT);
555     ill_APDU (print_odr, &apdu, 0, 0);
556     odr_destroy(print_odr);
557 } /* dumpapdu */
558
559 /** \brief  Check apdu type and extract the status_or_error */
560 ILL_Status_Or_Error_Report *getstaterr( ILL_APDU *resp, ODR in_odr ) {
561     if (resp->which != ILL_APDU_Status_Or_Error_Report ) {
562         const char *element = odr_getelement(in_odr);
563         if (!element) 
564             element="unknown";
565         printf("Server returned wrong packet type: %d\n", resp->which);
566         yaz_log(YLOG_FATAL,"Server returned a (%d) and "
567                  "not a 'Status_Or_Error_Report' (%d) ",
568                  resp->which, ILL_APDU_Status_Or_Error_Report);
569         exit(6);
570     }
571     return resp->u.Status_Or_Error_Report;
572 } /* getstaterr */
573
574 /** \brief  Return a printable string from an ILL_String */
575 char *getillstring( ILL_String *s) {
576     if (s->which == ILL_String_GeneralString ) 
577         return s->u.GeneralString;
578     else if (s->which == ILL_String_EDIFACTString ) 
579         return s->u.EDIFACTString;
580     else {
581         yaz_log(YLOG_FATAL,"Invalid ILL_String ");
582         exit (6);
583     }
584 } /* getillstring */
585
586 /** \brief Check if the status was an error packet */
587 /* The presence of an error_report indicates it was an error */
588 /* Then the problem is to find the right message. We dig around */
589 /* until we find the first message, print that, and exit the program */
590 void checkerr( ILL_Status_Or_Error_Report *staterr ) {
591     yaz_log(YLOG_DEBUG, "err= %p ",staterr->error_report );
592     if (staterr->error_report) {
593         ILL_Error_Report *err= staterr->error_report;
594         if ( err->user_error_report) {
595             ILL_User_Error_Report *uerr= err->user_error_report;
596             switch( uerr->which ) {
597                 case ILL_User_Error_Report_already_forwarded:
598                     printf("Already forwarded: \n");
599                     break;
600                 case ILL_User_Error_Report_intermediary_problem:
601                     printf("Intermediary problem: %d\n", 
602                         *uerr->u.intermediary_problem);
603                     break;
604                 case ILL_User_Error_Report_security_problem:
605                     printf("Security problem: %s\n", 
606                         getillstring(uerr->u.security_problem));
607                     break;
608                 case ILL_User_Error_Report_unable_to_perform:
609                     printf("Unable to perform: %d\n", 
610                           *uerr->u.unable_to_perform);
611                     break;
612                 default:
613                     printf("Unknown problem");
614             }
615             exit(7);
616         }
617         if ( err->provider_error_report) {
618             ILL_Provider_Error_Report *perr= err->provider_error_report;
619             switch( perr->which ) {
620                 case ILL_Provider_Error_Report_general_problem:
621                     printf("General Problem: %d:", 
622                           *perr->u.general_problem);
623                     break;
624                 case ILL_Provider_Error_Report_transaction_id_problem:
625                     printf("Transaction Id Problem: %d:", 
626                           *perr->u.general_problem);
627                     break;
628                 case ILL_Provider_Error_Report_state_transition_prohibited:
629                     printf("State Transition prohibited:");
630                     break;
631             }
632             /*exit(7);*/
633         } 
634         /* fallbacks */
635         if ( staterr->note ) 
636             printf("%s", getillstring(staterr->note));
637         else 
638             printf("Unknown error type");
639         printf("\n");
640         exit(7);
641     }
642 } /* checkerr */
643
644
645
646 /* * * * * * * * * * * * * * * */
647
648 /** \brief Main program 
649  *
650  * Parse arguments
651  * Validate arguments
652  * Establish connection
653  * Build a request
654  * Send a request
655  * Get a reply
656  * Parse reply
657  * Produce output
658  */
659
660 int main (int argc, char * argv[]) {
661     struct prog_args args;
662     COMSTACK stack;
663     ODR out_odr = odr_createmem(ODR_ENCODE);
664     ODR in_odr = odr_createmem(ODR_DECODE);
665     ILL_APDU *apdu;
666     ILL_APDU *resp;
667     ILL_Status_Or_Error_Report *staterr;
668
669     parseargs( argc, argv,  &args);
670     validateargs(&args);
671     stack = connect_to(args.host);
672     apdu = createrequest(&args, out_odr);
673     if (1) 
674         dumpapdu(apdu);
675     sendrequest(apdu, out_odr, stack ); 
676     resp = getresponse(stack, in_odr );
677     if (1) 
678         dumpapdu(resp);
679     staterr=getstaterr(resp, in_odr);
680     checkerr(staterr);
681
682
683     printf ("Ok\n"); /* while debugging */
684     exit (0);
685 }
686
687 /*
688  * Local variables:
689  * c-basic-offset: 4
690  * indent-tabs-mode: nil
691  * End:
692  * vim: shiftwidth=4 tabstop=8 expandtab
693  */
694