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