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