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