Eliminate deadlock in trpc message handling
[trust_router.git] / include / tr_trp.h
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 #ifndef TR_TRP_H
36 #define TR_TRP_H
37
38 #include <event2/event.h>
39 #include <talloc.h>
40 #include <pthread.h>
41
42 #include <tr.h>
43 #include <trp_internal.h>
44 #include <tr_config.h>
45 #include <tr_cfgwatch.h>
46 #include <tr_event.h>
47 #include <mon_internal.h>
48
49 typedef struct tr_trps_events {
50   struct event *trps_ev;
51   struct tr_socket_event *listen_ev;
52   struct event *mq_ev;
53   struct event *connect_ev;
54   struct event *update_ev;
55   struct event *sweep_ev;
56 } TR_TRPS_EVENTS;
57
58 /* typedef'ed as TR_INSTANCE in tr.h */
59 struct tr_instance {
60   TR_CFG_MGR *cfg_mgr;
61   TIDS_INSTANCE *tids;
62   TRPS_INSTANCE *trps;
63   MONS_INSTANCE *mons;
64   TR_CFGWATCH *cfgwatch;
65   TR_TRPS_EVENTS *events;
66 };
67
68 /* messages between threads */
69 #define TR_MQMSG_MSG_RECEIVED "msg received"
70 #define TR_MQMSG_TRPC_DISCONNECTED "trpc disconnected"
71 #define TR_MQMSG_TRPC_CONNECTED "trpc connected"
72 #define TR_MQMSG_TRPS_DISCONNECTED "trps disconnected"
73 #define TR_MQMSG_TRPS_CONNECTED "trps connected"
74 #define TR_MQMSG_ABORT "abort"
75
76 /* prototypes */
77 TRP_RC tr_trps_event_init(struct event_base *base, struct tr_instance *tr);
78 TRP_RC tr_add_local_routes(TRPS_INSTANCE *trps, TR_CFG *cfg);
79 TRP_RC tr_trpc_initiate(TRPS_INSTANCE *trps, TRP_PEER *peer, struct event *ev);
80 void tr_config_changed(TR_CFG *new_cfg, void *cookie);
81 TRP_RC tr_connect_to_peers(TRPS_INSTANCE *trps, struct event *ev);
82 void tr_peer_status_change(TRP_PEER *peer, void *cookie);
83
84 /* tr_trp_mons.h */
85 void tr_trp_register_mons_handlers(TRPS_INSTANCE *trps, MONS_INSTANCE *mons);
86
87 #endif /* TR_TRP_H */