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