Check rp_realm and target_realm membership in both COI and APC
[trust_router.git] / tr / tr_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 <stdio.h>
36 #include <jansson.h>
37
38 #include <tr.h>
39 #include <trust_router/tid.h>
40 #include <tr_config.h>
41 #include <tr_comm.h>
42 #include <tr_idp.h>
43
44 /* Structure to hold TR instance and original request in one cookie */
45 typedef struct tr_resp_cookie {
46   TR_INSTANCE *tr;
47   TID_REQ *orig_req;
48 } TR_RESP_COOKIE;
49
50 static void tr_tidc_resp_handler (TIDC_INSTANCE *tidc, 
51                         TID_REQ *req,
52                         TID_RESP *resp, 
53                         void *resp_cookie) 
54 {
55   fprintf(stderr, "tr_tidc_resp_handler: Response received (conn = %d)! Realm = %s, Community = %s.\n", ((TR_RESP_COOKIE *)resp_cookie)->orig_req->conn, resp->realm->buf, resp->comm->buf);
56   req->resp_rcvd = 1;
57
58   /* TBD -- handle concatentation of multiple responses to single req */
59   tids_send_response(((TR_RESP_COOKIE *)resp_cookie)->tr->tids, 
60                      ((TR_RESP_COOKIE *)resp_cookie)->orig_req, 
61                      resp);
62   
63   return;
64 }
65
66 static int tr_tids_req_handler (TIDS_INSTANCE * tids,
67                       TID_REQ *orig_req, 
68                       TID_RESP **resp,
69                       void *tr)
70 {
71   TIDC_INSTANCE *tidc = NULL;
72   TR_RESP_COOKIE resp_cookie;
73   TR_AAA_SERVER *aaa_servers = NULL;
74   TR_NAME *apc = NULL;
75   TID_REQ *fwd_req = NULL;
76   TR_COMM *cfg_comm = NULL;
77   int rc;
78
79   if ((!tids) || (!orig_req) || (!resp) || (!(*resp))) {
80     fprintf(stderr, "tids_req_handler: Bad parameters\n");
81     return -1;
82   }
83
84   fprintf(stdout, "tr_tids_req_handler: Request received (conn = %d)! Realm = %s, Comm = %s\n", orig_req->conn, 
85          orig_req->realm->buf, orig_req->comm->buf);
86   if (tids)
87     tids->req_count++;
88
89   /* Duplicate the request, so we can modify and forward it */
90   if (NULL == (fwd_req = tid_dup_req(orig_req))) {
91     fprintf(stderr, "tr_tids_req_handler: Unable to duplicate request.\n");
92     return -1;
93   }
94
95   if (NULL == (cfg_comm = tr_comm_lookup((TR_INSTANCE *)tids->cookie, orig_req->comm))) {
96     fprintf(stderr, "tr_tids_req_hander: Request for unknown comm: %s.\n", orig_req->comm->buf);
97     tids_send_err_response(tids, orig_req, "Unknown community");
98     return -1;
99   }
100
101   /* Check that the rp_realm and target_realm are members of the community in the request */
102   if (NULL == (tr_find_comm_rp(cfg_comm, orig_req->rp_realm))) {
103     fprintf(stderr, "tr_tids_req_hander: RP Realm (%s) not member of community (%s).\n", orig_req->rp_realm->buf, orig_req->comm->buf);
104     tids_send_err_response(tids, orig_req, "RP COI membership error");
105     return -1;
106   }
107   if (NULL == (tr_find_comm_idp(cfg_comm, orig_req->realm))) {
108     fprintf(stderr, "tr_tids_req_hander: IDP Realm (%s) not member of APC (%s).\n", orig_req->realm->buf, orig_req->comm->buf);
109     tids_send_err_response(tids, orig_req, "IDP COI membership error");
110     return -1;
111   }
112
113   /* Map the comm in the request from a COI to an APC, if needed */
114   if (TR_COMM_COI == cfg_comm->type) {
115     fprintf(stderr, "tr_tids_req_handler: Community was a COI, switching.\n");
116     /* TBD -- In theory there can be more than one?  How would that work? */
117     if ((!cfg_comm->apcs) || (!cfg_comm->apcs->id)) {
118       fprintf(stderr, "No valid APC for COI %s.\n", orig_req->comm->buf);
119       tids_send_err_response(tids, orig_req, "No valid APC for community");
120       return -1;
121     }
122     apc = tr_dup_name(cfg_comm->apcs->id);
123
124     /* Check that the APC is configured */
125     if (NULL == (cfg_apc = tr_comm_lookup((TR_INSTANCE *)tids->cookie, apc))) {
126       fprintf(stderr, "tr_tids_req_hander: Request for unknown comm: %s.\n", apc->buf);
127       tids_send_err_response(tids, orig_req, "Unknown APC");
128       return -1;
129     }
130
131     fwd_req->comm = apc;
132     fwd_req->orig_coi = orig_req->comm;
133
134     /* Check that rp_realm and target_realm are members of this APC */
135     if (NULL == (tr_find_comm_rp(cfg_apc, orig_req->rp_realm))) {
136       fprintf(stderr, "tr_tids_req_hander: RP Realm (%s) not member of community (%s).\n", orig_req->rp_realm->buf, orig_req->comm->buf);
137       tids_send_err_response(tids, orig_req, "RP APC membership error");
138       return -1;
139     }
140     if (NULL == (tr_find_comm_idp(cfg_apc, orig_req->realm))) {
141       fprintf(stderr, "tr_tids_req_hander: IDP Realm (%s) not member of APC (%s).\n", orig_req->realm->buf, orig_req->comm->buf);
142       tids_send_err_response(tids, orig_req, "IDP APC membership error");
143       return -1;
144     }
145   }
146
147   /* Find the AAA server(s) for this request */
148   if (NULL == (aaa_servers = tr_idp_aaa_server_lookup((TR_INSTANCE *)tids->cookie, 
149                                                       orig_req->realm, 
150                                                       orig_req->comm))) {
151       fprintf(stderr, "tr_tids_req_handler: No AAA Servers for realm %s.\n", orig_req->realm->buf);
152       tids_send_err_response(tids, orig_req, "No path to AAA Server(s) for realm");
153       return -1;
154     }
155   /* send a TID request to the AAA server(s), and get the answer(s) */
156   /* TBD -- Handle multiple servers */
157
158   /* Create a TID client instance */
159   if (NULL == (tidc = tidc_create())) {
160     fprintf(stderr, "tr_tids_req_hander: Unable to allocate TIDC instance.\n");
161     tids_send_err_response(tids, orig_req, "Memory allocation failure");
162     return -1;
163   }
164
165   /* Use the DH parameters from the original request */
166   /* TBD -- this needs to be fixed when we handle more than one req per conn */
167   tidc->client_dh = orig_req->tidc_dh;
168
169   /* Save information about this request for the response */
170   resp_cookie.tr = tr;
171   resp_cookie.orig_req = orig_req;
172
173   /* Set-up TID connection */
174   /* TBD -- handle IPv6 Addresses */
175   if (-1 == (fwd_req->conn = tidc_open_connection(tidc, 
176                                               inet_ntoa(aaa_servers->aaa_server_addr), 
177                                               &(fwd_req->gssctx)))) {
178     fprintf(stderr, "tr_tids_req_handler: Error in tidc_open_connection.\n");
179     tids_send_err_response(tids, orig_req, "Can't open connection to next hop TIDS");
180     return -1;
181   };
182
183   /* Send a TID request */
184   if (0 > (rc = tidc_fwd_request(tidc, fwd_req, &tr_tidc_resp_handler, (void *)&resp_cookie))) {
185     fprintf(stderr, "Error from tidc_fwd_request, rc = %d.\n", rc);
186     tids_send_err_response(tids, orig_req, "Can't forward request to next hop TIDS");
187     return -1;
188   }
189     
190   return 0;
191 }
192
193 int main (int argc, const char *argv[])
194 {
195   TR_INSTANCE *tr = NULL;
196   struct dirent **cfg_files = NULL;
197   json_t *jcfg = NULL;
198   TR_CFG_RC rc = TR_CFG_SUCCESS;        /* presume success */
199   int err = 0, n = 0;;
200
201   /* parse command-line arguments? -- TBD */
202
203   /* create a Trust Router instance */
204   if (NULL == (tr = tr_create())) {
205     fprintf(stderr, "Unable to create Trust Router instance, exiting.\n");
206     return 1;
207   }
208
209   /* find the configuration files */
210   if (0 == (n = tr_find_config_files(&cfg_files))) {
211     fprintf (stderr, "Can't locate configuration files, exiting.\n");
212     exit(1);
213   }
214
215   /* read and parse initial configuration */
216   if (NULL == (jcfg = tr_read_config (n, cfg_files))) {
217     fprintf (stderr, "Error reading or parsing configuration files, exiting.\n");
218     exit(1);
219   }
220   if (TR_CFG_SUCCESS != tr_parse_config(tr, jcfg)) {
221     fprintf (stderr, "Error decoding configuration information, exiting.\n");
222     exit(1);
223   }
224
225   /* apply initial configuration */
226   if (TR_CFG_SUCCESS != (rc = tr_apply_new_config(tr))) {
227     fprintf (stderr, "Error applying configuration, rc = %d.\n", rc);
228     exit(1);
229   }
230
231   /* initialize the trust path query server instance */
232   if (0 == (tr->tids = tids_create ())) {
233     fprintf (stderr, "Error initializing Trust Path Query Server instance.\n");
234     exit(1);
235   }
236
237   /* start the trust path query server, won't return unless fatal error. */
238   if (0 != (err = tids_start(tr->tids, &tr_tids_req_handler, (void *)tr))) {
239     fprintf (stderr, "Error from Trust Path Query Server, err = %d.\n", err);
240     exit(err);
241   }
242
243   tids_destroy(tr->tids);
244   tr_destroy(tr);
245   exit(0);
246 }