- cancel SYNACK retry task when forced to SYNACK by an incoming SYN
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_hello.c
1 /*
2      This file is part of GNUnet.
3      (C) 2014 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 #include "platform.h"
22 #include "gnunet_util_lib.h"
23
24 #include "gnunet_statistics_service.h"
25 #include "gnunet_peerinfo_service.h"
26
27 #include "mesh_protocol.h"
28 #include "mesh_path.h"
29
30 #include "gnunet-service-mesh_hello.h"
31 #include "gnunet-service-mesh_peer.h"
32
33 #define LOG(level, ...) GNUNET_log_from(level,"mesh-hll",__VA_ARGS__)
34
35
36 /******************************************************************************/
37 /********************************   STRUCTS  **********************************/
38 /******************************************************************************/
39
40
41
42 /******************************************************************************/
43 /*******************************   GLOBALS  ***********************************/
44 /******************************************************************************/
45
46 /**
47  * Global handle to the statistics service.
48  */
49 extern struct GNUNET_STATISTICS_Handle *stats;
50
51 /**
52  * Local peer own ID (memory efficient handle).
53  */
54 extern GNUNET_PEER_Id myid;
55
56 /**
57  * Local peer own ID (full value).
58  */
59 extern struct GNUNET_PeerIdentity my_full_id;
60
61
62 /**
63  * Don't try to recover tunnels if shutting down.
64  */
65 extern int shutting_down;
66
67
68 /**
69  * Hello message of local peer.
70  */
71 const struct GNUNET_HELLO_Message *mine;
72
73 /**
74  * Handle to peerinfo service.
75  */
76 static struct GNUNET_PEERINFO_Handle *peerinfo;
77
78 /**
79  * Iterator context.
80  */
81 struct GNUNET_PEERINFO_NotifyContext* nc;
82
83
84 /******************************************************************************/
85 /********************************   STATIC  ***********************************/
86 /******************************************************************************/
87
88 /**
89  * Process each hello message received from peerinfo.
90  *
91  * @param cls Closure (unused).
92  * @param peer Identity of the peer.
93  * @param hello Hello of the peer.
94  * @param err_msg Error message.
95  */
96 static void
97 got_hello (void *cls, const struct GNUNET_PeerIdentity *id,
98            const struct GNUNET_HELLO_Message *hello,
99            const char *err_msg)
100 {
101   struct MeshPeer *peer;
102
103   if (NULL == id || NULL == hello)
104   {
105     LOG (GNUNET_ERROR_TYPE_DEBUG, " hello with id %p and msg %p\n", id, hello);
106     return;
107   }
108   LOG (GNUNET_ERROR_TYPE_DEBUG, " hello for %s (%d bytes), expires on %s\n",
109        GNUNET_i2s (id), NULL != hello ? GNUNET_HELLO_size (hello) : -1,
110        GNUNET_STRINGS_absolute_time_to_string (GNUNET_HELLO_get_last_expiration(hello)));
111   if (NULL == hello)
112   {
113     LOG (GNUNET_ERROR_TYPE_DEBUG, " hello is NULL\n");
114     return;
115   }
116   peer = GMP_get (id);
117   GMP_set_hello (peer, hello);
118
119   if (GMP_get_short_id (peer) == myid)
120   {
121     mine = GMP_get_hello (peer);
122     LOG (GNUNET_ERROR_TYPE_DEBUG, " updated mine to %p\n", mine);
123   }
124 }
125
126
127 /******************************************************************************/
128 /********************************    API    ***********************************/
129 /******************************************************************************/
130
131 /**
132  * Initialize the hello subsystem.
133  *
134  * @param c Configuration.
135  */
136 void
137 GMH_init (const struct GNUNET_CONFIGURATION_Handle *c)
138 {
139   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
140   GNUNET_assert (NULL == nc);
141   peerinfo = GNUNET_PEERINFO_connect (c);
142   nc = GNUNET_PEERINFO_notify (c, GNUNET_NO, &got_hello, NULL);
143 }
144
145
146 /**
147  * Shut down the hello subsystem.
148  */
149 void
150 GMH_shutdown ()
151 {
152   if (NULL != nc)
153   {
154     GNUNET_PEERINFO_notify_cancel (nc);
155     nc = NULL;
156   }
157   if (NULL != peerinfo)
158   {
159     GNUNET_PEERINFO_disconnect (peerinfo);
160     peerinfo = NULL;
161   }
162 }
163
164
165 /**
166  * Get own hello message.
167  *
168  * @return Own hello message.
169  */
170 const struct GNUNET_HELLO_Message *
171 GMH_get_mine (void)
172 {
173   LOG (GNUNET_ERROR_TYPE_DEBUG, " mine is %p\n", mine);
174   return mine;
175 }
176
177
178 /**
179  * Get another peer's hello message.
180  *
181  * @param id ID of the peer whose hello message is requested.
182  *
183  * @return Hello message, if any (NULL possible).
184  */
185 const struct GNUNET_HELLO_Message *
186 GMH_get (const struct GNUNET_PeerIdentity *id)
187 {
188   return GMP_get_hello (GMP_get (id));
189 }
190
191
192 /**
193  * Convert a hello message to a string.
194  *
195  * @param h Hello message.
196  */
197 char *
198 GMH_2s (const struct GNUNET_HELLO_Message *h)
199 {
200   return "hello (TODO)";
201 }
202
203