16d1512dcce1686c1b7a4665b1c086d724aee86f
[trust_router.git] / tidr / example / tidrc_main.c
1 /*
2  * Copyright (c) 2012, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <stdlib.h>
36 #include <stdio.h>
37
38 #include <gsscon.h>
39 #include <tidr.h>
40
41 static int tidrc_response_received = 0;
42
43 void tidrc_print_usage (const char *name)
44 {
45   printf("Usage: %s <server> <realm> <coi>\n", name);
46 }
47
48 void tidrc_resp_handler (TIDRC_INSTANCE * tidrc, 
49                         TIDR_RESP *resp, 
50                         void *cookie) 
51 {
52   //  printf ("Response received! Realm = %s, COI = %s.\n", resp->realm->buf, 
53   //      resp->coi->buf);
54   printf ("Response received at handler!\n");
55   tidrc_response_received = 1;
56   return;
57 }
58
59 int main (int argc, 
60           const char *argv[]) 
61 {
62   TIDRC_INSTANCE *tidrc;
63   TIDR_REQ *treq;
64   char *server = NULL;
65   char *realm = NULL;
66   char *coi = NULL;
67   void *cookie = NULL;
68   int conn = 0;
69   int rc;
70   gss_ctx_id_t gssctx;
71
72   /* Parse command-line arguments */ 
73   if (argc != 4) {
74     tidrc_print_usage(argv[0]);
75     exit(1);
76   }
77
78   /* TBD -- validity checking, dealing with quotes, etc. */
79   server = (char *)argv[1];
80   realm = (char *)argv[2];
81   coi = (char *)argv[3];
82
83   /* Create a TIDR client instance */
84   tidrc = tidrc_create();
85
86   /* Set-up TIDR connection */
87   if (-1 == (conn = tidrc_open_connection(tidrc, server, &gssctx))) {
88     /* Handle error */
89     printf("Error in tidrc_open_connection.\n");
90     return 1;
91   };
92
93   /* Send a TIDR request */
94   if (0 > (rc = tidrc_send_request(tidrc, conn, gssctx, realm, coi, 
95                                   &tidrc_resp_handler, NULL))) {
96     /* Handle error */
97     printf("Error in tidrc_send_request, rc = %d.\n", rc);
98     return 1;
99   }
100     
101   /* Wait for a response */
102   while (!tidrc_response_received);
103
104   /* Clean-up the TIDR client instance, and exit */
105   tidrc_destroy(tidrc);
106
107   return 0;
108 }
109