Successful messages via mq to main thread.
[trust_router.git] / tr / tr_main.c
1 /*
2  * Copyright (c) 2012, 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 <stdlib.h>
37 #include <jansson.h>
38 #include <argp.h>
39 #include <event2/event.h>
40 #include <talloc.h>
41 #include <sys/time.h>
42
43 #include <tr.h>
44 #include <tid_internal.h>
45 #include <tr_tid.h>
46 #include <tr_trp.h>
47 #include <tr_config.h>
48 #include <tr_event.h>
49 #include <tr_cfgwatch.h>
50 #include <tr_debug.h>
51
52 #define TALLOC_DEBUG_ENABLE 1
53
54 /***** command-line option handling / setup *****/
55
56 /* Strip trailing / from a path name.*/
57 static void remove_trailing_slash(char *s) {
58   size_t n;
59
60   n=strlen(s);
61   if(s[n-1]=='/') {
62     s[n-1]='\0';
63   }
64 }
65
66 /* argp global parameters */
67 const char *argp_program_bug_address=PACKAGE_BUGREPORT; /* bug reporting address */
68
69 /* doc strings */
70 static const char doc[]=PACKAGE_NAME " - Moonshot Trust Router";
71 static const char arg_doc[]=""; /* string describing arguments, if any */
72
73 /* define the options here. Fields are:
74  * { long-name, short-name, variable name, options, help description } */
75 static const struct argp_option cmdline_options[] = {
76     { "config-dir", 'c', "DIR", 0, "Specify configuration file location (default is current directory)"},
77     { NULL }
78 };
79
80 /* structure for communicating with option parser */
81 struct cmdline_args {
82   char *config_dir;
83 };
84
85 /* parser for individual options - fills in a struct cmdline_args */
86 static error_t parse_option(int key, char *arg, struct argp_state *state)
87 {
88   /* get a shorthand to the command line argument structure, part of state */
89   struct cmdline_args *arguments=state->input;
90
91   switch (key) {
92   case 'c':
93     if (arg == NULL) {
94       /* somehow we got called without an argument */
95       return ARGP_ERR_UNKNOWN;
96     }
97     arguments->config_dir=arg;
98     break;
99
100   default:
101     return ARGP_ERR_UNKNOWN;
102   }
103
104   return 0; /* success */
105 }
106
107 /* assemble the argp parser */
108 static struct argp argp = {cmdline_options, parse_option, arg_doc, doc};
109
110
111 /***** talloc error handling *****/
112 /* called when talloc tries to abort */
113 static void tr_abort(const char *reason)
114 {
115   tr_crit("tr_abort: Critical error, talloc aborted. Reason: %s", reason);
116   abort();
117 }
118
119 #if TALLOC_DEBUG_ENABLE
120 static void tr_talloc_log(const char *msg)
121 {
122   tr_debug("talloc: %s", msg);
123 }
124 #endif /* TALLOC_DEBUG_ENABLE */
125
126 int main(int argc, char *argv[])
127 {
128   TALLOC_CTX *main_ctx=NULL;
129
130   TR_INSTANCE *tr = NULL;
131   struct cmdline_args opts;
132   struct event_base *ev_base;
133   struct tr_socket_event tids_ev;
134   TR_TRPS_EVENTS *trps_ev;
135   struct event *cfgwatch_ev;
136
137   /* we're going to be multithreaded, so disable null context tracking */
138   talloc_set_abort_fn(tr_abort);
139   talloc_disable_null_tracking();
140 #if TALLOC_DEBUG_ENABLE
141   talloc_set_log_fn(tr_talloc_log);
142 #endif /* TALLOC_DEBUG_ENABLE */
143   main_ctx=talloc_new(NULL);
144
145   /* Use standalone logging */
146   tr_log_open();
147
148   /***** parse command-line arguments *****/
149   /* set defaults */
150   opts.config_dir=".";
151
152   /* parse the command line*/
153   argp_parse(&argp, argc, argv, 0, 0, &opts);
154
155   /* process options */
156   remove_trailing_slash(opts.config_dir);
157
158   /***** create a Trust Router instance *****/
159   if (NULL == (tr = tr_create(main_ctx))) {
160     tr_crit("Unable to create Trust Router instance, exiting.");
161     return 1;
162   }
163
164   /***** process configuration *****/
165   tr->cfgwatch=tr_cfgwatch_create(tr);
166   if (tr->cfgwatch == NULL) {
167     tr_crit("Unable to create configuration watcher object, exiting.");
168     return 1;
169   }
170   tr->cfgwatch->config_dir=opts.config_dir;
171   tr->cfgwatch->cfg_mgr=tr->cfg_mgr;
172   if (0 != tr_read_and_apply_config(tr->cfgwatch)) {
173     tr_crit("Error reading configuration, exiting.");
174     return 1;
175   }
176
177   /***** initialize the trust path query server instance *****/
178   if (NULL == (tr->tids = tids_create (tr))) {
179     tr_crit("Error initializing Trust Path Query Server instance.");
180     return 1;
181   }
182
183   /***** initialize the trust router protocol server instance *****/
184   if (NULL == (tr->trps = trps_new(tr))) {
185     tr_crit("Error initializing Trust Router Protocol Server instance.");
186     return 1;
187   }
188
189   /***** Set up the event loop *****/
190   ev_base=tr_event_loop_init(); /* Set up the event loop */
191   if (ev_base==NULL) {
192     tr_crit("Error initializing event loop.");
193     return 1;
194   }
195
196   /* install configuration file watching events */
197   tr->cfgwatch->poll_interval=(struct timeval) {1,0}; /* set poll interval in {sec, usec} */
198   tr->cfgwatch->settling_time=(struct timeval) {5,0}; /* delay for changes to settle before updating */
199   /* TODO: pull these settings out of the configuration files */
200
201   /* already set config_dir, fstat_list and n_files earlier */
202   if (0 != tr_cfgwatch_event_init(ev_base, tr->cfgwatch, &cfgwatch_ev)) {
203     tr_crit("Error initializing configuration file watcher.");
204     return 1;
205   }
206
207   /*tr_status_event_init();*/ /* install status reporting events */
208
209   /* install TID server events */
210   if (0 != tr_tids_event_init(ev_base,
211                               tr->tids,
212                               tr->cfg_mgr,
213                              &tids_ev)) {
214     tr_crit("Error initializing Trust Path Query Server instance.");
215     return 1;
216   }
217
218   /* install TRP handler events */
219   trps_ev=tr_trps_events_new(main_ctx);
220   if (0 != tr_trps_event_init(ev_base,
221                               tr->trps,
222                               tr->cfg_mgr,
223                               trps_ev)) {
224     tr_crit("Error initializing Trust Path Query Server instance.");
225     return 1;
226   }
227
228   tr_event_loop_run(ev_base); /* does not return until we are done */
229
230   /* TODO: ensure talloc is properly used so this actually works */
231   tr_destroy(tr); /* thanks to talloc, should destroy everything */
232
233   talloc_free(main_ctx);
234   return 0;
235 }