Updated README to reflect current status
[trust_router.git] / tid / example / tidc_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 <tpq.h>
40
41 static int tpqc_response_received = 0;
42
43 void tpqc_print_usage (const char *name)
44 {
45   printf("Usage: %s <server> <RP-realm> <target-realm> <community>\n", name);
46 }
47
48 void tpqc_resp_handler (TPQC_INSTANCE * tpqc, 
49                         TPQ_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   tpqc_response_received = 1;
56   return;
57 }
58
59 int main (int argc, 
60           const char *argv[]) 
61 {
62   TPQC_INSTANCE *tpqc;
63   TPQ_REQ *treq;
64   char *server = NULL;
65   char *rp_realm = NULL;
66   char *realm = NULL;
67   char *coi = NULL;
68   void *cookie = NULL;
69   int conn = 0;
70   int rc;
71   gss_ctx_id_t gssctx;
72
73   /* Parse command-line arguments */ 
74   if (argc != 5) {
75     tpqc_print_usage(argv[0]);
76     exit(1);
77   }
78
79   /* TBD -- validity checking, dealing with quotes, etc. */
80   server = (char *)argv[1];
81   rp_realm = (char *) argv[2];
82   realm = (char *)argv[3];
83   coi = (char *)argv[4];
84
85   printf("TPQC Client:\nServer = %s, rp_realm = %s, target_realm = %s, community = %s\n", server, rp_realm, realm, coi);
86  
87   /* Create a TPQ client instance */
88   tpqc = tpqc_create();
89
90   /* Set-up TPQ connection */
91   if (-1 == (conn = tpqc_open_connection(tpqc, server, &gssctx))) {
92     /* Handle error */
93     printf("Error in tpqc_open_connection.\n");
94     return 1;
95   };
96
97   /* Send a TPQ request */
98   if (0 > (rc = tpqc_send_request(tpqc, conn, gssctx, rp_realm, realm, coi, 
99                                   &tpqc_resp_handler, NULL))) {
100     /* Handle error */
101     printf("Error in tpqc_send_request, rc = %d.\n", rc);
102     return 1;
103   }
104     
105   /* Wait for a response */
106   while (!tpqc_response_received);
107
108   /* Clean-up the TPQ client instance, and exit */
109   tpqc_destroy(tpqc);
110
111   return 0;
112 }
113