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