Allow caller to set port number for tidc_open_connection(). Install
[trust_router.git] / tid / tidc.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 <stdio.h>
36 #include <stdlib.h>
37 #include <jansson.h>
38
39 #include <trust_router/tr_dh.h>
40 #include <trust_router/tid.h>
41 #include <tr_msg.h>
42 #include <gsscon.h>
43
44 int tmp_len = 32;
45
46 TIDC_INSTANCE *tidc_create ()
47 {
48   TIDC_INSTANCE *tidc = NULL;
49
50   if (tidc = malloc(sizeof(TIDC_INSTANCE))) 
51     memset(tidc, 0, sizeof(TIDC_INSTANCE));
52   else
53     return NULL;
54
55   return tidc;
56 }
57
58 void tidc_destroy (TIDC_INSTANCE *tidc)
59 {
60   if (tidc)
61     free(tidc);
62 }
63
64 int tidc_open_connection (TIDC_INSTANCE *tidc, 
65                           char *server,
66                           unsigned int port,
67                           gss_ctx_id_t *gssctx)
68 {
69   int err = 0;
70   int conn = -1;
71
72   err = gsscon_connect(server, port, "trustidentity", &conn, gssctx);
73
74   if (!err)
75     return conn;
76   else
77     return -1;
78 }
79
80 int tidc_send_request (TIDC_INSTANCE *tidc, 
81                        int conn, 
82                        gss_ctx_id_t gssctx,
83                        char *rp_realm,
84                        char *realm, 
85                        char *comm,
86                        TIDC_RESP_FUNC *resp_handler,
87                        void *cookie)
88
89 {
90   TID_REQ *tid_req = NULL;
91
92   /* Create and populate a TID req structure */
93   if (!(tid_req = malloc(sizeof(TID_REQ))))
94     return -1;
95
96   memset(tid_req, 0, sizeof(TID_REQ));
97
98   tid_req->conn = conn;
99   tid_req->gssctx = gssctx;
100
101   if ((NULL == (tid_req->rp_realm = tr_new_name(rp_realm))) ||
102       (NULL == (tid_req->realm = tr_new_name(realm))) ||
103       (NULL == (tid_req->comm = tr_new_name(comm)))) {
104     fprintf (stderr, "tidc_send_request: Error duplicating names.\n");
105     return -1;
106   }
107
108   tid_req->tidc_dh = tidc->client_dh;
109
110   return (tidc_fwd_request(tidc, tid_req, resp_handler, cookie));
111 }
112
113 int tidc_fwd_request (TIDC_INSTANCE *tidc, 
114                       TID_REQ *tid_req, 
115                       TIDC_RESP_FUNC *resp_handler,
116                       void *cookie)
117
118 {
119   char *req_buf = NULL;
120   char *resp_buf = NULL;
121   size_t resp_buflen = 0;
122   TR_MSG *msg = NULL;
123   TR_MSG *resp_msg = NULL;
124   int err;
125
126   /* Create and populate a TID msg structure */
127   if (!(msg = malloc(sizeof(TR_MSG))))
128     return -1;
129
130   msg->msg_type = TID_REQUEST;
131   msg->tid_req = tid_req;
132
133   /* store the response function and cookie */
134   // tid_req->resp_func = resp_handler;
135   // tid_req->cookie = cookie;
136   
137
138   /* Encode the request into a json string */
139   if (!(req_buf = tr_msg_encode(msg))) {
140     fprintf(stderr, "tidc_fwd_request: Error encoding TID request.\n");
141     return -1;
142   }
143
144   fprintf (stderr, "tidc_fwd_request: Sending TID request:\n");
145   fprintf (stderr, "%s\n", req_buf);
146
147   /* Send the request over the connection */
148   if (err = gsscon_write_encrypted_token (tid_req->conn, tid_req->gssctx, req_buf, 
149                                           strlen(req_buf))) {
150     fprintf(stderr, "tidc_fwd_request: Error sending request over connection.\n");
151     return -1;
152   }
153
154   /* TBD -- queue request on instance, read resps in separate thread */
155
156   /* Read the response from the connection */
157   /* TBD -- timeout? */
158   if (err = gsscon_read_encrypted_token(tid_req->conn, tid_req->gssctx, &resp_buf, &resp_buflen)) {
159     if (resp_buf)
160       free(resp_buf);
161     return -1;
162   }
163
164   fprintf(stdout, "tidc_fwd_request: Response Received (%u bytes).\n", (unsigned) resp_buflen);
165   fprintf(stdout, "%s\n", resp_buf);
166
167   if (NULL == (resp_msg = tr_msg_decode(resp_buf, resp_buflen))) {
168     fprintf(stderr, "tidc_fwd_request: Error decoding response.\n");
169     return -1;
170   }
171
172   /* TBD -- Check if this is actually a valid response */
173   if (!resp_msg->tid_resp) {
174     fprintf(stderr, "tidc_fwd_request: Error, no response in the response!\n");
175     return -1;
176   }
177   
178   if (resp_handler)
179     /* Call the caller's response function */
180     (*resp_handler)(tidc, tid_req, resp_msg->tid_resp, cookie);
181   else
182     fprintf(stderr, "tidc_fwd_request: NULL response function.\n");
183
184   if (msg)
185     free(msg);
186   if (tid_req)
187     free(tid_req);
188   if (req_buf)
189     free(req_buf);
190   if (resp_buf)
191     free(resp_buf);
192
193   /* TBD -- free the decoded response */
194
195   return 0;
196 }
197
198
199
200
201