298299ec34b2c6ea722aba2c986663edab2192a4
[trust_router.git] / tr / tr_trp.c
1 /*
2  * Copyright (c) 2016, 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 <pthread.h>
37 #include <fcntl.h>
38 #include <event2/event.h>
39 #include <talloc.h>
40 #include <errno.h>
41 #include <unistd.h>
42 #include <string.h>
43 #include <sys/time.h>
44 #include <time.h>
45
46 #include <gsscon.h>
47 #include <tr.h>
48 #include <tr_mq.h>
49 #include <tr_rp.h>
50 #include <trp_internal.h>
51 #include <trp_ptable.h>
52 #include <trp_rtable.h>
53 #include <tr_config.h>
54 #include <tr_event.h>
55 #include <tr_msg.h>
56 #include <tr_trp.h>
57 #include <tr_debug.h>
58
59 /* data for event callbacks */
60 struct tr_trps_event_cookie {
61   TRPS_INSTANCE *trps;
62   TR_CFG_MGR *cfg_mgr;
63   struct event *ev;
64 };
65
66 /* callback to schedule event to process messages */
67 static void tr_trps_mq_cb(TR_MQ *mq, void *arg)
68 {
69   struct event *mq_ev=(struct event *)arg;
70   event_active(mq_ev, 0, 0);
71 }
72
73 static void msg_free_helper(void *p)
74 {
75   tr_msg_free_decoded((TR_MSG *)p);
76 }
77
78 static void tr_free_name_helper(void *arg)
79 {
80   tr_free_name((TR_NAME *)arg);
81 }
82
83 /* takes a TR_MSG and puts it in a TR_MQ_MSG for processing by the main thread */
84 static TRP_RC tr_trps_msg_handler(TRPS_INSTANCE *trps,
85                                   TRP_CONNECTION *conn,
86                                   TR_MSG *tr_msg)
87 {
88   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
89   TR_MQ_MSG *mq_msg=NULL;
90
91   /* n.b., conn is available here, but do not hold onto the reference
92    * because it may be cleaned up if the originating connection goes
93    * down before the message is processed */
94   mq_msg=tr_mq_msg_new(tmp_ctx, TR_MQMSG_MSG_RECEIVED, TR_MQ_PRIO_NORMAL);
95   if (mq_msg==NULL) {
96     return TRP_NOMEM;
97   }
98   tr_mq_msg_set_payload(mq_msg, (void *)tr_msg, msg_free_helper);
99   trps_mq_add(trps, mq_msg);
100   talloc_free(tmp_ctx); /* cleans up the message if it did not get appended correctly */
101   return TRP_SUCCESS;
102 }
103
104
105 static int tr_trps_gss_handler(gss_name_t client_name, gss_buffer_t gss_name,
106                                void *cookie_in)
107 {
108   struct tr_trps_event_cookie *cookie=(struct tr_trps_event_cookie *)cookie_in;
109   TRPS_INSTANCE *trps = cookie->trps;
110   TR_CFG_MGR *cfg_mgr = cookie->cfg_mgr;
111   TR_NAME name={gss_name->value, gss_name->length};
112
113   tr_debug("tr_trps_gss_handler()");
114
115   if ((!client_name) || (!gss_name) || (!trps) || (!cfg_mgr)) {
116     tr_debug("tr_trps_gss_handler: Bad parameters.");
117     return -1;
118   }
119   
120   /* look up the TRPS peer matching the GSS name */
121   if (NULL==trps_get_peer_by_gssname(trps, &name)) {
122     tr_warning("tr_trps_gss_handler: Connection attempt from unknown peer (GSS name: %.*s).", name.len, name.buf);
123     return -1;
124   }
125
126   tr_debug("Client's GSS Name: %.*s", name.len, name.buf);
127   return 0;
128 }
129
130 /* data passed to thread */
131 struct trps_thread_data {
132   TRP_CONNECTION *conn;
133   TRPS_INSTANCE *trps;
134 };
135 /* thread to handle GSS connections from peers */
136 static void *tr_trps_thread(void *arg)
137 {
138   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
139   struct trps_thread_data *thread_data=talloc_get_type_abort(arg, struct trps_thread_data);
140   TRP_CONNECTION *conn=thread_data->conn;
141   TRPS_INSTANCE *trps=thread_data->trps;
142   TR_MQ_MSG *msg=NULL;
143
144   tr_debug("tr_trps_thread: started");
145   if (trps_authorize_connection(trps, conn)!=TRP_SUCCESS)
146     goto cleanup;
147
148   msg=tr_mq_msg_new(tmp_ctx, TR_MQMSG_TRPS_CONNECTED, TR_MQ_PRIO_HIGH);
149   tr_mq_msg_set_payload(msg, (void *)tr_dup_name(trp_connection_get_peer(conn)), tr_free_name_helper);
150   if (msg==NULL) {
151     tr_err("tr_trps_thread: error allocating TR_MQ_MSG");
152     goto cleanup;
153   } 
154   trps_mq_add(trps, msg); /* steals msg context */
155   msg=NULL;
156
157   trps_handle_connection(trps, conn);
158
159 cleanup:
160   msg=tr_mq_msg_new(tmp_ctx, TR_MQMSG_TRPS_DISCONNECTED, TR_MQ_PRIO_HIGH);
161   tr_mq_msg_set_payload(msg, (void *)conn, NULL); /* do not pass a free routine */
162   if (msg==NULL)
163     tr_err("tr_trps_thread: error allocating TR_MQ_MSG");
164   else
165     trps_mq_add(trps, msg);
166   tr_debug("tr_trps_thread: exit");
167   talloc_free(tmp_ctx);
168   return NULL;
169 }
170
171 /* called when a connection to the TRPS port is received */
172 static void tr_trps_event_cb(int listener, short event, void *arg)
173 {
174   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
175   TRPS_INSTANCE *trps = talloc_get_type_abort(arg, TRPS_INSTANCE); /* aborts on wrong type */
176   TRP_CONNECTION *conn=NULL;
177   TR_NAME *gssname=NULL;
178   char *name=NULL;
179   struct trps_thread_data *thread_data=NULL;
180
181   if (0==(event & EV_READ)) {
182     tr_debug("tr_trps_event_cb: unexpected event on TRPS socket (event=0x%X)", event);
183   } else {
184     /* create a thread to handle this connection */
185     if (asprintf(&name, "trustrouter@%s", trps->hostname)==-1) {
186       goto cleanup;
187     }
188     gssname=tr_new_name(name);
189     free(name); name=NULL;
190     conn=trp_connection_accept(tmp_ctx, listener, gssname);
191     if (conn!=NULL) {
192       /* need to monitor this fd and trigger events when read becomes possible */
193       thread_data=talloc(conn, struct trps_thread_data);
194       if (thread_data==NULL) {
195         tr_err("tr_trps_event_cb: unable to allocate trps_thread_data");
196         talloc_free(tmp_ctx);
197         return;
198       }
199       thread_data->conn=conn;
200       thread_data->trps=trps;
201       trps_add_connection(trps, conn); /* remember the connection */
202       pthread_create(trp_connection_get_thread(conn), NULL, tr_trps_thread, thread_data);
203     }
204   }
205
206  cleanup:
207   talloc_free(tmp_ctx);
208 }
209
210 static void tr_trps_cleanup_conn(TRPS_INSTANCE *trps, TRP_CONNECTION *conn)
211 {
212   /* everything belonging to the thread is in the TRP_CONNECTION
213    * associated with it */
214   tr_debug("tr_trps_cleanup_conn: freeing %p", conn);
215   pthread_join(*trp_connection_get_thread(conn), NULL);
216   trps_remove_connection(trps, conn);
217   trp_connection_free(conn);
218   tr_debug("tr_trps_cleanup_conn: deleted connection");
219 }
220
221 static void tr_trps_cleanup_trpc(TRPS_INSTANCE *trps, TRPC_INSTANCE *trpc)
222 {
223   pthread_join(*trp_connection_get_thread(trpc_get_conn(trpc)), NULL);
224   trps_remove_trpc(trps, trpc);
225   trpc_free(trpc);
226   tr_debug("tr_trps_cleanup_trpc: deleted connection");
227 }
228
229 /**
230  * Get a dynamically allocated string with a description of the route table.
231  * Caller must free the string using talloc_free().
232  *
233  * @param memctx talloc context for the string
234  * @param trps trps instance containing the route table
235  * @return pointer to the output, or NULL on error
236  */
237 static char *tr_trps_route_table_to_str(TALLOC_CTX *memctx, TRPS_INSTANCE *trps)
238 {
239   return trp_rtable_to_str(memctx, trps->rtable, " | ", NULL);
240 }
241
242 /**
243  * Get a dynamically allocated string with a description of the community table.
244  * Caller must free the string using talloc_free().
245  *
246  * @param memctx talloc context for the string
247  * @param trps trps instance containing the community table
248  * @return pointer to the output, or NULL on error
249  */
250 static char *tr_trps_comm_table_to_str(TALLOC_CTX *memctx, TRPS_INSTANCE *trps)
251 {
252   return tr_comm_table_to_str(memctx, trps->ctable);
253 }
254
255 /**
256  * Event handler to process TRP messages from connection threads. These
257  * are added to the message queue (mq) in tr_trps_msg_handler(), which
258  * runs in the other threads.
259  *
260  * @param socket Ignored
261  * @param event Ignored
262  * @param arg Pointer to the TRPS_INSTANCE
263  */
264 static void tr_trps_process_mq(int socket, short event, void *arg)
265 {
266   TRPS_INSTANCE *trps=talloc_get_type_abort(arg, TRPS_INSTANCE);
267   TR_MQ_MSG *msg=NULL;
268   const char *s=NULL;
269
270   msg=trps_mq_pop(trps);
271   while (msg!=NULL) {
272     s=tr_mq_msg_get_message(msg);
273     if (0==strcmp(s, TR_MQMSG_TRPS_CONNECTED)) {
274       TR_NAME *gssname=(TR_NAME *)tr_mq_msg_get_payload(msg);
275       TRP_PEER *peer=trps_get_peer_by_gssname(trps, gssname);
276       if (peer==NULL)
277         tr_err("tr_trps_process_mq: incoming connection from unknown peer (%s) reported.", gssname->buf);
278       else {
279         trp_peer_set_incoming_status(peer, PEER_CONNECTED);
280         tr_err("tr_trps_process_mq: incoming connection from %s established.", gssname->buf);
281       }
282     }
283     else if (0==strcmp(s, TR_MQMSG_TRPS_DISCONNECTED)) {
284       TRP_CONNECTION *conn=talloc_get_type_abort(tr_mq_msg_get_payload(msg), TRP_CONNECTION);
285       TR_NAME *gssname=trp_connection_get_gssname(conn);
286       TRP_PEER *peer=trps_get_peer_by_gssname(trps, gssname);
287       if (peer==NULL) {
288         tr_err("tr_trps_process_mq: incoming connection from unknown peer (%s) lost.",
289                trp_connection_get_gssname(conn)->buf);
290       } else {
291         trp_peer_set_incoming_status(peer, PEER_DISCONNECTED);
292         tr_trps_cleanup_conn(trps, conn);
293         tr_err("tr_trps_process_mq: incoming connection from %s lost.", gssname->buf);
294       }
295     }
296     else if (0==strcmp(s, TR_MQMSG_TRPC_CONNECTED)) {
297       TR_NAME *svcname=(TR_NAME *)tr_mq_msg_get_payload(msg);
298       TRP_PEER *peer=trps_get_peer_by_servicename(trps, svcname);
299       if (peer==NULL)
300         tr_err("tr_trps_process_mq: outgoing connection to unknown peer (%s) reported.", svcname->buf);
301       else {
302         trp_peer_set_outgoing_status(peer, PEER_CONNECTED);
303         tr_err("tr_trps_process_mq: outgoing connection to %s established.", svcname->buf);
304       }
305     }
306     else if (0==strcmp(s, TR_MQMSG_TRPC_DISCONNECTED)) {
307       /* trpc connection died */
308       TRPC_INSTANCE *trpc=talloc_get_type_abort(tr_mq_msg_get_payload(msg), TRPC_INSTANCE);
309       TR_NAME *gssname=trpc_get_gssname(trpc);
310       TRP_PEER *peer=trps_get_peer_by_servicename(trps, gssname);
311       if (peer==NULL)
312         tr_err("tr_trps_process_mq: outgoing connection to unknown peer (%s) lost.", gssname->buf);
313       else {
314         trp_peer_set_outgoing_status(peer, PEER_DISCONNECTED);
315         tr_err("tr_trps_process_mq: outgoing connection to %s lost.", gssname->buf);
316         tr_trps_cleanup_trpc(trps, trpc);
317       }
318     }
319
320     else if (0==strcmp(s, TR_MQMSG_MSG_RECEIVED)) {
321       if (trps_handle_tr_msg(trps, tr_mq_msg_get_payload(msg))!=TRP_SUCCESS)
322         tr_notice("tr_trps_process_mq: error handling message.");
323     }
324     else
325       tr_notice("tr_trps_process_mq: unknown message '%s' received.", tr_mq_msg_get_message(msg));
326
327     tr_mq_msg_free(msg);
328     msg=trps_mq_pop(trps);
329   }
330 }
331
332 static void tr_trps_update(int listener, short event, void *arg)
333 {
334   struct tr_trps_event_cookie *cookie=talloc_get_type_abort(arg, struct tr_trps_event_cookie);
335   TRPS_INSTANCE *trps=cookie->trps;
336   struct event *ev=cookie->ev;
337
338   tr_debug("tr_trps_update: sending scheduled route/community updates.");
339   trps_update(trps, TRP_UPDATE_SCHEDULED);
340   event_add(ev, &(trps->update_interval));
341   tr_debug("tr_trps_update: update interval=%d", trps->update_interval.tv_sec);
342 }
343
344 static void tr_trps_sweep(int listener, short event, void *arg)
345 {
346   struct tr_trps_event_cookie *cookie=talloc_get_type_abort(arg, struct tr_trps_event_cookie);
347   TRPS_INSTANCE *trps=cookie->trps;
348   struct event *ev=cookie->ev;
349   char *table_str=NULL;
350
351   tr_debug("tr_trps_sweep: sweeping routes.");
352   trps_sweep_routes(trps);
353   tr_debug("tr_trps_sweep: sweeping communities.");
354   trps_sweep_ctable(trps);
355   table_str=tr_trps_route_table_to_str(NULL, trps);
356   if (table_str!=NULL) {
357     tr_debug(table_str);
358     talloc_free(table_str);
359   }
360
361   table_str=tr_trps_comm_table_to_str(NULL, trps);
362   if (table_str!=NULL) {
363     tr_debug(table_str);
364     talloc_free(table_str);
365   }
366   /* schedule the event to run again */
367   event_add(ev, &(trps->sweep_interval));
368 }
369
370 static void tr_connection_update(int listener, short event, void *arg)
371 {
372   struct tr_trps_event_cookie *cookie=talloc_get_type_abort(arg, struct tr_trps_event_cookie);
373   TRPS_INSTANCE *trps=cookie->trps;
374   struct event *ev=cookie->ev;
375
376   tr_debug("tr_connection_update: checking peer connections.");
377   tr_connect_to_peers(trps, ev);
378   /* schedule the event to run again */
379   event_add(ev, &(trps->connect_interval));
380 }
381
382 static int tr_trps_events_destructor(void *obj)
383 {
384   TR_TRPS_EVENTS *ev=talloc_get_type_abort(obj, TR_TRPS_EVENTS);
385   if (ev->mq_ev!=NULL)
386     event_free(ev->mq_ev);
387   if (ev->connect_ev!=NULL)
388     event_free(ev->connect_ev);
389   if (ev->update_ev!=NULL)
390     event_free(ev->update_ev);
391   if (ev->sweep_ev!=NULL)
392     event_free(ev->sweep_ev);
393   return 0;
394 }
395 static TR_TRPS_EVENTS *tr_trps_events_new(TALLOC_CTX *mem_ctx)
396 {
397   TR_TRPS_EVENTS *ev=talloc(mem_ctx, TR_TRPS_EVENTS);
398   if (ev!=NULL) {
399     ev->listen_ev=talloc(ev, struct tr_socket_event);
400     ev->mq_ev=NULL;
401     ev->connect_ev=NULL;
402     ev->update_ev=NULL;
403     ev->sweep_ev=NULL;
404     if (ev->listen_ev==NULL) {
405       talloc_free(ev);
406       ev=NULL;
407     } else {
408       talloc_set_destructor((void *)ev, tr_trps_events_destructor);
409     }
410   }
411   return ev;
412 }
413
414 static void tr_trps_events_free(TR_TRPS_EVENTS *ev)
415 {
416   talloc_free(ev);
417 }
418
419 /* Configure the trps instance and set up its event handler.
420  * Fills in trps_ev, which should be allocated by caller. */
421 TRP_RC tr_trps_event_init(struct event_base *base, TR_INSTANCE *tr)
422 {
423   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
424   struct tr_socket_event *listen_ev=NULL;
425   struct tr_trps_event_cookie *trps_cookie=NULL;
426   struct tr_trps_event_cookie *connection_cookie=NULL;
427   struct tr_trps_event_cookie *update_cookie=NULL;
428   struct tr_trps_event_cookie *sweep_cookie=NULL;
429   struct timeval zero_time={0,0};
430   TRP_RC retval=TRP_ERROR;
431   size_t ii=0;
432
433   if (tr->events != NULL) {
434     tr_notice("tr_trps_event_init: tr->events was not null. Freeing before reallocating..");
435     tr_trps_events_free(tr->events);
436   }
437
438   tr->events=tr_trps_events_new(tmp_ctx);
439   if (tr->events == NULL) {
440     tr_debug("tr_trps_event_init: unable to allocate event handles.");
441     retval=TRP_NOMEM;
442     goto cleanup;
443   }
444
445   /* get convenient handles */
446   listen_ev=tr->events->listen_ev;
447
448   /* Create the cookie for callbacks. It will end up part of the trps context, so it will
449    * be cleaned up when trps is freed by talloc_free. */
450   trps_cookie=talloc(tr->events, struct tr_trps_event_cookie);
451   if (trps_cookie == NULL) {
452     tr_debug("tr_trps_event_init: Unable to allocate trps_cookie.");
453     retval=TRP_NOMEM;
454     tr_trps_events_free(tr->events);
455     tr->events=NULL;
456     goto cleanup;
457   }
458   trps_cookie->trps=tr->trps;
459   trps_cookie->cfg_mgr=tr->cfg_mgr;
460
461   /* get a trps listener */
462   listen_ev->n_sock_fd=trps_get_listener(tr->trps,
463                                          tr_trps_msg_handler,
464                                          tr_trps_gss_handler,
465                                          tr->cfg_mgr->active->internal->hostname,
466                                          tr->cfg_mgr->active->internal->trps_port,
467                                          (void *)trps_cookie,
468                                          listen_ev->sock_fd,
469                                          TR_MAX_SOCKETS);
470   if (listen_ev->n_sock_fd==0) {
471     tr_crit("Error opening TRP server socket.");
472     retval=TRP_ERROR;
473     tr_trps_events_free(tr->events);
474     tr->events=NULL;
475     goto cleanup;
476   }
477
478   /* Set up events for the sockets */
479   for (ii=0; ii<listen_ev->n_sock_fd; ii++) {
480     listen_ev->ev[ii]=event_new(base,
481                                 listen_ev->sock_fd[ii],
482                                 EV_READ|EV_PERSIST,
483                                 tr_trps_event_cb,
484                                 (void *)(tr->trps));
485     event_add(listen_ev->ev[ii], NULL);
486   }
487   
488   /* now set up message queue processing event, only triggered by
489    * tr_trps_mq_cb() */
490   tr->events->mq_ev=event_new(base,
491                               0,
492                               EV_PERSIST,
493                               tr_trps_process_mq,
494                               (void *)(tr->trps));
495   tr_mq_set_notify_cb(tr->trps->mq, tr_trps_mq_cb, tr->events->mq_ev);
496
497   /* now set up the peer connection timer event */
498   connection_cookie=talloc(tr->events, struct tr_trps_event_cookie);
499   if (connection_cookie == NULL) {
500     tr_debug("tr_trps_event_init: Unable to allocate connection_cookie.");
501     retval=TRP_NOMEM;
502     tr_trps_events_free(tr->events);
503     tr->events=NULL;
504     goto cleanup;
505   }
506   connection_cookie->trps=tr->trps;
507   connection_cookie->cfg_mgr=tr->cfg_mgr;
508   tr->events->connect_ev=event_new(base, -1, EV_TIMEOUT, tr_connection_update, (void *)connection_cookie);
509   connection_cookie->ev=tr->events->connect_ev; /* in case it needs to frob the event */
510   /* The first time, do this immediately. Thereafter, it will retrigger every trps->connect_interval */
511   event_add(tr->events->connect_ev, &zero_time);
512
513   /* now set up the route update timer event */
514   update_cookie=talloc(tr->events, struct tr_trps_event_cookie);
515   if (update_cookie == NULL) {
516     tr_debug("tr_trps_event_init: Unable to allocate update_cookie.");
517     retval=TRP_NOMEM;
518     tr_trps_events_free(tr->events);
519     tr->events=NULL;
520     goto cleanup;
521   }
522   update_cookie->trps=tr->trps;
523   update_cookie->cfg_mgr=tr->cfg_mgr;
524   tr->events->update_ev=event_new(base, -1, EV_TIMEOUT, tr_trps_update, (void *)update_cookie);
525   update_cookie->ev=tr->events->update_ev; /* in case it needs to frob the event */
526   event_add(tr->events->update_ev, &(tr->trps->update_interval));
527
528   /* now set up the route table sweep timer event */
529   sweep_cookie=talloc(tr->events, struct tr_trps_event_cookie);
530   if (sweep_cookie == NULL) {
531     tr_debug("tr_trps_event_init: Unable to allocate sweep_cookie.");
532     retval=TRP_NOMEM;
533     tr_trps_events_free(tr->events);
534     tr->events=NULL;
535     goto cleanup;
536   }
537   sweep_cookie->trps=tr->trps;
538   sweep_cookie->cfg_mgr=tr->cfg_mgr;
539   tr->events->sweep_ev=event_new(base, -1, EV_TIMEOUT, tr_trps_sweep, (void *)sweep_cookie);
540   sweep_cookie->ev=tr->events->sweep_ev; /* in case it needs to frob the event */
541   event_add(tr->events->sweep_ev, &(tr->trps->sweep_interval));
542
543   talloc_steal(tr, tr->events);
544   retval=TRP_SUCCESS;
545
546 cleanup:
547   talloc_free(tmp_ctx);
548   return retval;
549 }
550
551
552 struct trpc_notify_cb_data {
553   int msg_ready;
554   pthread_cond_t cond;
555   pthread_mutex_t mutex;
556 };
557
558 static void tr_trpc_mq_cb(TR_MQ *mq, void *arg)
559 {
560   struct trpc_notify_cb_data *cb_data=(struct trpc_notify_cb_data *) arg;
561   pthread_mutex_lock(&(cb_data->mutex));
562   if (!cb_data->msg_ready) {
563     cb_data->msg_ready=1;
564     pthread_cond_signal(&(cb_data->cond));
565   }
566   pthread_mutex_unlock(&(cb_data->mutex));
567 }
568
569 /* data passed to thread */
570 struct trpc_thread_data {
571   TRPC_INSTANCE *trpc;
572   TRPS_INSTANCE *trps;
573 };
574 static void *tr_trpc_thread(void *arg)
575 {
576   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
577   struct trpc_thread_data *thread_data=talloc_get_type_abort(arg, struct trpc_thread_data);
578   TRPC_INSTANCE *trpc=thread_data->trpc;
579   TRPS_INSTANCE *trps=thread_data->trps;
580   TRP_RC rc=TRP_ERROR;
581   TR_MQ_MSG *msg=NULL;
582   const char *msg_type=NULL;
583   char *encoded_msg=NULL;
584   TR_NAME *peer_gssname=NULL;
585   int n_sent=0;
586   int exit_loop=0;
587
588   struct trpc_notify_cb_data cb_data={0,
589                                       PTHREAD_COND_INITIALIZER,
590                                       PTHREAD_MUTEX_INITIALIZER};
591
592   tr_debug("tr_trpc_thread: started");
593
594   /* set up the mq for receiving */
595   pthread_mutex_lock(&(cb_data.mutex)); /* hold this lock until we enter the main loop */
596
597   tr_mq_lock(trpc->mq);
598   tr_mq_set_notify_cb(trpc->mq, tr_trpc_mq_cb, (void *) &cb_data);
599   tr_mq_unlock(trpc->mq);
600
601   rc=trpc_connect(trpc);
602   if (rc!=TRP_SUCCESS) {
603     tr_notice("tr_trpc_thread: failed to initiate connection to %s:%d.",
604               trpc_get_server(trpc),
605               trpc_get_port(trpc));
606   } else {
607     peer_gssname=trp_connection_get_peer(trpc_get_conn(trpc));
608     if (peer_gssname==NULL) {
609       tr_err("tr_trpc_thread: could not duplicate peer_gssname.");
610       talloc_free(tmp_ctx);
611       return NULL;
612     }
613     tr_debug("tr_trpc_thread: connected to peer %s", peer_gssname->buf);
614
615     msg=tr_mq_msg_new(tmp_ctx, TR_MQMSG_TRPC_CONNECTED, TR_MQ_PRIO_HIGH);
616     tr_mq_msg_set_payload(msg, (void *)tr_dup_name(peer_gssname), tr_free_name_helper);
617     if (msg==NULL) {
618       tr_err("tr_trpc_thread: error allocating TR_MQ_MSG");
619       talloc_free(tmp_ctx);
620       return NULL;
621     }
622     trps_mq_add(trps, msg); /* steals msg context */
623     msg=NULL;
624
625     while(!exit_loop) {
626       cb_data.msg_ready=0;
627       pthread_cond_wait(&(cb_data.cond), &(cb_data.mutex));
628       /* verify the condition */
629       if (cb_data.msg_ready) {
630         for (msg=trpc_mq_pop(trpc),n_sent=0; msg!=NULL; msg=trpc_mq_pop(trpc),n_sent++) {
631           msg_type=tr_mq_msg_get_message(msg);
632
633           if (0==strcmp(msg_type, TR_MQMSG_ABORT)) {
634             exit_loop=1;
635             break;
636           }
637           else if (0==strcmp(msg_type, TR_MQMSG_TRPC_SEND)) {
638             encoded_msg=tr_mq_msg_get_payload(msg);
639             if (encoded_msg==NULL)
640               tr_notice("tr_trpc_thread: null outgoing TRP message.");
641             else {
642               rc = trpc_send_msg(trpc, encoded_msg);
643               if (rc!=TRP_SUCCESS) {
644                 tr_notice("tr_trpc_thread: trpc_send_msg failed.");
645                 exit_loop=1;
646                 break;
647               }
648             }
649           }
650           else
651             tr_notice("tr_trpc_thread: unknown message '%s' received.", msg_type);
652
653           tr_mq_msg_free(msg);
654         }
655         if (n_sent==0)
656           tr_err("tr_trpc_thread: notified of msg, but queue empty");
657         else 
658           tr_debug("tr_trpc_thread: sent %d messages.", n_sent);
659       }
660     }
661   }
662
663   tr_debug("tr_trpc_thread: exiting.");
664   msg=tr_mq_msg_new(tmp_ctx, TR_MQMSG_TRPC_DISCONNECTED, TR_MQ_PRIO_HIGH);
665   tr_mq_msg_set_payload(msg, (void *)trpc, NULL); /* do not pass a free routine */
666   if (msg==NULL)
667     tr_err("tr_trpc_thread: error allocating TR_MQ_MSG");
668   else
669     trps_mq_add(trps, msg);
670
671   trpc_mq_clear(trpc); /* clear any queued messages */
672
673   talloc_free(tmp_ctx);
674   return NULL;
675 }
676
677 /* convert an IDP realm into routing table entries. Outputs number in *n_routes */
678 static TRP_ROUTE **tr_make_local_routes(TALLOC_CTX *mem_ctx,
679                                          TR_IDP_REALM *realm,
680                                          char *trust_router,
681                                          size_t *n_routes)
682 {
683   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
684   TR_APC *comm=NULL;
685   TRP_ROUTE *new_entry=NULL;
686   TRP_ROUTE **entries=NULL;
687   size_t n_comms=0, ii=0;
688
689   *n_routes=0;
690
691   if ((realm==NULL) || (realm->origin!=TR_REALM_LOCAL))
692     goto cleanup;
693
694   /* count comms */
695   for (comm=realm->apcs, n_comms=0; comm!=NULL; comm=comm->next,n_comms++) {}
696
697   entries=talloc_array(tmp_ctx, TRP_ROUTE *, n_comms);
698   for (comm=realm->apcs,ii=0; comm!=NULL; comm=comm->next, ii++) {
699     new_entry=trp_route_new(entries);
700     if (new_entry==NULL) {
701       tr_crit("tr_make_local_routes: unable to allocate entry.");
702       talloc_free(entries);
703       goto cleanup;
704     }
705     trp_route_set_comm(new_entry, tr_dup_name(comm->id));
706     trp_route_set_realm(new_entry, tr_dup_name(realm->realm_id));
707     trp_route_set_peer(new_entry, tr_new_name("")); /* no peer, it's us */
708     trp_route_set_metric(new_entry, 0);
709     trp_route_set_trust_router(new_entry, tr_new_name(trust_router));
710     trp_route_set_next_hop(new_entry, tr_new_name(""));
711     trp_route_set_local(new_entry, 1);
712     entries[ii]=new_entry;
713   }
714
715   talloc_steal(mem_ctx, entries);
716   *n_routes=n_comms;
717  cleanup:
718   talloc_free(tmp_ctx);
719   return entries;
720 }
721
722 void tr_peer_status_change(TRP_PEER *peer, void *cookie)
723 {
724   TRPS_INSTANCE *trps=talloc_get_type_abort(cookie, TRPS_INSTANCE);
725
726   if (TRP_SUCCESS!=trps_wildcard_route_req(trps, trp_peer_get_servicename(peer)))
727     tr_err("tr_send_wildcard: error sending wildcard route request.");
728 }
729
730 /* starts a trpc thread to connect to server:port */
731 TRP_RC tr_trpc_initiate(TRPS_INSTANCE *trps, TRP_PEER *peer, struct event *ev)
732 {
733   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
734   TRPC_INSTANCE *trpc=NULL;
735   TRP_CONNECTION *conn=NULL;
736   struct trpc_thread_data *thread_data=NULL;
737   TRP_RC rc=TRP_ERROR;
738
739   tr_debug("tr_trpc_initiate entered");
740   trpc=trpc_new(tmp_ctx);
741   if (trpc==NULL) {
742     tr_crit("tr_trpc_initiate: could not allocate TRPC_INSTANCE.");
743     rc=TRP_NOMEM;
744     goto cleanup;
745   }
746   tr_debug("tr_trpc_initiate: allocated trpc");
747
748   conn=trp_connection_new(trpc);
749   if (conn==NULL) {
750     tr_crit("tr_trpc_initiate: could not allocate TRP_CONNECTION.");
751     rc=TRP_NOMEM;
752     goto cleanup;
753   }
754
755   trpc_set_conn(trpc, conn);
756   trpc_set_server(trpc, talloc_strdup(trpc, trp_peer_get_server(peer)));
757   trpc_set_port(trpc, trp_peer_get_port(peer));
758   trpc_set_gssname(trpc, trp_peer_dup_servicename(peer));
759   tr_debug("tr_trpc_initiate: allocated connection");
760   
761   /* start thread */
762   thread_data=talloc(trpc, struct trpc_thread_data);
763   if (thread_data==NULL) {
764     tr_crit("tr_trpc_initiate: could not allocate struct trpc_thread_data.");
765     rc=TRP_NOMEM;
766     goto cleanup;
767   }
768   thread_data->trpc=trpc;
769   thread_data->trps=trps;
770
771   trps_add_trpc(trps, trpc); /* must add before starting thread */
772   pthread_create(trp_connection_get_thread(conn), NULL, tr_trpc_thread, thread_data);
773
774   tr_debug("tr_trpc_initiate: started trpc thread");
775   rc=TRP_SUCCESS;
776
777  cleanup:
778   talloc_free(tmp_ctx);
779   return rc;
780 }
781
782 /* Add local routes to the route table. */
783 TRP_RC tr_add_local_routes(TRPS_INSTANCE *trps, TR_CFG *cfg)
784 {
785   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
786   TR_IDP_REALM *cur=NULL;
787   TRP_ROUTE **local_routes=NULL;
788   size_t n_routes=0;
789   size_t ii=0;
790   char *trust_router_name=talloc_asprintf(tmp_ctx, "%s:%d", cfg->internal->hostname, cfg->internal->trps_port);
791
792   /* determine our trust router name */
793   if (trust_router_name==NULL)
794     return TRP_NOMEM;
795
796   for (cur=cfg->ctable->idp_realms; cur!=NULL; cur=cur->next) {
797     local_routes=tr_make_local_routes(tmp_ctx, cur, trust_router_name, &n_routes);
798     for (ii=0; ii<n_routes; ii++)
799       trps_add_route(trps, local_routes[ii]);
800
801     talloc_free(local_routes);
802     local_routes=NULL;
803     n_routes=0;
804   }
805
806   talloc_free(tmp_ctx);
807   return TRP_SUCCESS;
808 }
809
810 /* decide how often to attempt to connect to a peer */
811 static int tr_conn_attempt_due(TRPS_INSTANCE *trps, TRP_PEER *peer, struct timespec *when)
812 {
813   return 1; /* currently make an attempt every cycle */
814 }
815
816 /* open missing connections to peers */
817 TRP_RC tr_connect_to_peers(TRPS_INSTANCE *trps, struct event *ev)
818 {
819   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
820   TRP_PTABLE_ITER *iter=trp_ptable_iter_new(tmp_ctx);
821   TRP_PEER *peer=NULL;
822   struct timespec curtime={0,0};
823   TRP_RC rc=TRP_ERROR;
824
825   if (clock_gettime(CLOCK_REALTIME, &curtime)) {
826     tr_err("tr_connect_to_peers: failed to read time.");
827     rc=TRP_CLOCKERR;
828     goto cleanup;
829   }
830
831   for (peer=trp_ptable_iter_first(iter, trps->ptable);
832        peer!=NULL;
833        peer=trp_ptable_iter_next(iter))
834   {
835     if (trps_find_trpc(trps, peer)==NULL) {
836       TR_NAME *label=trp_peer_get_label(peer);
837       tr_debug("tr_connect_to_peers: %.*s missing connection.",
838                label->len, label->buf);
839       /* has it been long enough since we last tried? */
840       if (tr_conn_attempt_due(trps, peer, &curtime)) {
841         trp_peer_set_last_conn_attempt(peer, &curtime); /* we are trying again now */
842         if (tr_trpc_initiate(trps, peer, ev)!=TRP_SUCCESS) {
843           tr_err("tr_connect_to_peers: unable to initiate TRP connection to %s:%u.",
844                  trp_peer_get_server(peer),
845                  trp_peer_get_port(peer));
846         } 
847       }
848     }
849   }
850   rc=TRP_SUCCESS;
851     
852 cleanup:
853   trp_ptable_iter_free(iter);
854   talloc_free(tmp_ctx);
855   return rc;
856 }
857
858
859 /* Called by the config manager after a change to the active configuration.
860  * Updates configuration of objects that do not know about the config manager. */
861 void tr_config_changed(TR_CFG *new_cfg, void *cookie)
862 {
863   TR_INSTANCE *tr=talloc_get_type_abort(cookie, TR_INSTANCE);
864   TRPS_INSTANCE *trps=tr->trps;
865   char *table_str=NULL;
866
867   tr->cfgwatch->poll_interval.tv_sec=new_cfg->internal->cfg_poll_interval;
868   tr->cfgwatch->poll_interval.tv_usec=0;
869
870   tr->cfgwatch->settling_time.tv_sec=new_cfg->internal->cfg_settling_time;
871   tr->cfgwatch->settling_time.tv_usec=0;
872
873   trps_set_connect_interval(trps, new_cfg->internal->trp_connect_interval);
874   trps_set_update_interval(trps, new_cfg->internal->trp_update_interval);
875   trps_set_sweep_interval(trps, new_cfg->internal->trp_sweep_interval);
876   trps_set_ctable(trps, new_cfg->ctable);
877   trps_set_ptable(trps, new_cfg->peers);
878   trps_set_peer_status_callback(trps, tr_peer_status_change, (void *)trps);
879   trps_clear_rtable(trps); /* should we do this every time??? */
880   tr_add_local_routes(trps, new_cfg); /* should we do this every time??? */
881   trps_update_active_routes(trps); /* find new routes */
882   trps_update(trps, TRP_UPDATE_TRIGGERED); /* send any triggered routes */
883   tr_print_config(new_cfg);
884   table_str=tr_trps_route_table_to_str(NULL, trps);
885   if (table_str!=NULL) {
886     tr_info(table_str);
887     talloc_free(table_str);
888   }
889   table_str=tr_trps_comm_table_to_str(NULL, trps);
890   if (table_str!=NULL) {
891     tr_info(table_str);
892     talloc_free(table_str);
893   }
894 }
895