-remove trailing whitespace
[oweals/gnunet.git] / src / include / gnunet_core_service.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009-2013 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 /**
22  * @file include/gnunet_core_service.h
23  * @brief core service; this is the main API for encrypted P2P
24  *        communications
25  * @author Christian Grothoff
26  * @defgroup core encrypted direct communication between peers
27  * @{
28  */
29
30 #ifndef GNUNET_CORE_SERVICE_H
31 #define GNUNET_CORE_SERVICE_H
32
33 #ifdef __cplusplus
34 extern "C"
35 {
36 #if 0                           /* keep Emacsens' auto-indent happy */
37 }
38 #endif
39 #endif
40
41 #include "gnunet_util_lib.h"
42 #include "gnunet_transport_service.h"
43
44 /**
45  * Version number of GNUnet-core API.
46  */
47 #define GNUNET_CORE_VERSION 0x00000001
48
49
50 /**
51  * Opaque handle to the service.
52  */
53 struct GNUNET_CORE_Handle;
54
55
56 /**
57  * Method called whenever a given peer connects.
58  *
59  * @param cls closure
60  * @param peer peer identity this notification is about
61  */
62 typedef void (*GNUNET_CORE_ConnectEventHandler) (void *cls,
63                                                  const struct GNUNET_PeerIdentity *peer);
64
65
66 /**
67  * Method called whenever a peer disconnects.
68  *
69  * @param cls closure
70  * @param peer peer identity this notification is about
71  */
72 typedef void (*GNUNET_CORE_DisconnectEventHandler) (void *cls,
73                                                     const struct GNUNET_PeerIdentity *peer);
74
75
76 /**
77  * Functions with this signature are called whenever a message is
78  * received or transmitted.
79  *
80  * @param cls closure (set from #GNUNET_CORE_connect)
81  * @param peer the other peer involved (sender or receiver, NULL
82  *        for loopback messages where we are both sender and receiver)
83  * @param message the actual message
84  * @return #GNUNET_OK to keep the connection open,
85  *         #GNUNET_SYSERR to close connection to the peer (signal serious error)
86  */
87 typedef int (*GNUNET_CORE_MessageCallback) (void *cls,
88                                             const struct GNUNET_PeerIdentity *
89                                             other,
90                                             const struct GNUNET_MessageHeader *
91                                             message);
92
93
94 /**
95  * Message handler.  Each struct specifies how to handle on particular
96  * type of message received.
97  */
98 struct GNUNET_CORE_MessageHandler
99 {
100   /**
101    * Function to call for messages of "type".
102    */
103   GNUNET_CORE_MessageCallback callback;
104
105   /**
106    * Type of the message this handler covers.
107    */
108   uint16_t type;
109
110   /**
111    * Expected size of messages of this type.  Use 0 for variable-size.
112    * If non-zero, messages of the given type will be discarded if they
113    * do not have the right size.
114    */
115   uint16_t expected_size;
116
117 };
118
119
120 /**
121  * Function called after #GNUNET_CORE_connect has succeeded (or failed
122  * for good).  Note that the private key of the peer is intentionally
123  * not exposed here; if you need it, your process should try to read
124  * the private key file directly (which should work if you are
125  * authorized...).  Implementations of this function must not call
126  * #GNUNET_CORE_disconnect (other than by scheduling a new task to
127  * do this later).
128  *
129  * @param cls closure
130  * @param my_identity ID of this peer, NULL if we failed
131  */
132 typedef void (*GNUNET_CORE_StartupCallback) (void *cls,
133                                              const struct GNUNET_PeerIdentity *my_identity);
134
135
136 /**
137  * Connect to the core service.  Note that the connection may complete
138  * (or fail) asynchronously.  This function primarily causes the given
139  * callback notification functions to be invoked whenever the
140  * specified event happens.  The maximum number of queued
141  * notifications (queue length) is per client; the queue is shared
142  * across all types of notifications.  So a slow client that registers
143  * for @a outbound_notify also risks missing @a inbound_notify messages.
144  * Certain events (such as connect/disconnect notifications) are not
145  * subject to queue size limitations.
146  *
147  * @param cfg configuration to use
148  * @param cls closure for the various callbacks that follow (including handlers in the handlers array)
149  * @param init callback to call once we have successfully
150  *        connected to the core service
151  * @param connects function to call on peer connect, can be NULL
152  * @param disconnects function to call on peer disconnect / timeout, can be NULL
153  * @param inbound_notify function to call for all inbound messages, can be NULL
154  *                note that the core is allowed to drop notifications about inbound
155  *                messages if the client does not process them fast enough (for this
156  *                notification type, a bounded queue is used)
157  * @param inbound_hdr_only set to #GNUNET_YES if @a inbound_notify will only read the
158  *                `struct GNUNET_MessageHeader` and hence we do not need to give it the full message;
159  *                can be used to improve efficiency, ignored if inbound_notify is NULL
160  *                note that the core is allowed to drop notifications about inbound
161  *                messages if the client does not process them fast enough (for this
162  *                notification type, a bounded queue is used)
163  * @param outbound_notify function to call for all outbound messages, can be NULL;
164  *                note that the core is allowed to drop notifications about outbound
165  *                messages if the client does not process them fast enough (for this
166  *                notification type, a bounded queue is used)
167  * @param outbound_hdr_only set to #GNUNET_YES if @a outbound_notify will only read the
168  *                `struct GNUNET_MessageHeader` and hence we do not need to give it the full message
169  *                can be used to improve efficiency, ignored if outbound_notify is NULL
170  *                note that the core is allowed to drop notifications about outbound
171  *                messages if the client does not process them fast enough (for this
172  *                notification type, a bounded queue is used)
173  * @param handlers callbacks for messages we care about, NULL-terminated
174  *                note that the core is allowed to drop notifications about inbound
175  *                messages if the client does not process them fast enough (for this
176  *                notification type, a bounded queue is used)
177  * @return handle to the core service (only useful for disconnect until @a init is called),
178  *           NULL on error (in this case, init is never called)
179  */
180 struct GNUNET_CORE_Handle *
181 GNUNET_CORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
182                      void *cls,
183                      GNUNET_CORE_StartupCallback init,
184                      GNUNET_CORE_ConnectEventHandler connects,
185                      GNUNET_CORE_DisconnectEventHandler disconnects,
186                      GNUNET_CORE_MessageCallback inbound_notify,
187                      int inbound_hdr_only,
188                      GNUNET_CORE_MessageCallback outbound_notify,
189                      int outbound_hdr_only,
190                      const struct GNUNET_CORE_MessageHandler *handlers);
191
192
193 /**
194  * Disconnect from the core service.    This function can only
195  * be called *after* all pending #GNUNET_CORE_notify_transmit_ready
196  * requests have been explicitly cancelled.
197  *
198  * @param handle connection to core to disconnect
199  */
200 void
201 GNUNET_CORE_disconnect (struct GNUNET_CORE_Handle *handle);
202
203
204 /**
205  * Handle for a transmission request.
206  */
207 struct GNUNET_CORE_TransmitHandle;
208
209
210 /**
211  * Ask the core to call @a notify once it is ready to transmit the
212  * given number of bytes to the specified @a target.  Must only be
213  * called after a connection to the respective peer has been
214  * established (and the client has been informed about this).  You may
215  * have one request of this type pending for each connected peer at
216  * any time.  If a peer disconnects, the application MUST call
217  * #GNUNET_CORE_notify_transmit_ready_cancel on the respective
218  * transmission request, if one such request is pending.
219  *
220  * @param handle connection to core service
221  * @param cork is corking allowed for this transmission?
222  * @param priority how important is the message?
223  * @param maxdelay how long can the message wait?
224  * @param target who should receive the message, never NULL (can be this peer's identity for loopback)
225  * @param notify_size how many bytes of buffer space does notify want?
226  * @param notify function to call when buffer space is available;
227  *        will be called with NULL on timeout; clients MUST cancel
228  *        all pending transmission requests DURING the disconnect
229  *        handler
230  * @param notify_cls closure for @a notify
231  * @return non-NULL if the notify callback was queued,
232  *         NULL if we can not even queue the request (request already pending);
233  *         if NULL is returned, "notify" will NOT be called.
234  */
235 struct GNUNET_CORE_TransmitHandle *
236 GNUNET_CORE_notify_transmit_ready (struct GNUNET_CORE_Handle *handle, int cork,
237                                    uint32_t priority,
238                                    struct GNUNET_TIME_Relative maxdelay,
239                                    const struct GNUNET_PeerIdentity *target,
240                                    size_t notify_size,
241                                    GNUNET_CONNECTION_TransmitReadyNotify notify,
242                                    void *notify_cls);
243
244
245 /**
246  * Cancel the specified transmission-ready notification.
247  *
248  * @param th handle that was returned by "notify_transmit_ready".
249  */
250 void
251 GNUNET_CORE_notify_transmit_ready_cancel (struct GNUNET_CORE_TransmitHandle
252                                           *th);
253
254
255 /**
256  * Iterate over all connected peers.  Calls @a peer_cb with each
257  * connected peer, and then once with NULL to indicate that all peers
258  * have been handled.  Normal users of the CORE API are not expected
259  * to use this function.  It is different in that it truly lists
260  * all connections, not just those relevant to the application.  This
261  * function is used by special applications for diagnostics.  This
262  * function is NOT part of the 'versioned', 'official' API.
263  *
264  * FIXME: we should probably make it possible to 'cancel' the
265  * operation...
266  *
267  * @param cfg configuration handle
268  * @param peer_cb function to call with the peer information
269  * @param cb_cls closure for @a peer_cb
270  * @return #GNUNET_OK on success, #GNUNET_SYSERR on errors
271  */
272 int
273 GNUNET_CORE_iterate_peers (const struct GNUNET_CONFIGURATION_Handle *cfg,
274                            GNUNET_CORE_ConnectEventHandler peer_cb,
275                            void *cb_cls);
276
277
278 /**
279  * Check if the given peer is currently connected. This function is for special
280  * cirumstances (GNUNET_TESTBED uses it), normal users of the CORE API are
281  * expected to track which peers are connected based on the connect/disconnect
282  * callbacks from #GNUNET_CORE_connect.  This function is NOT part of the
283  * 'versioned', 'official' API.  This function returns
284  * synchronously after looking in the CORE API cache.
285  *
286  * @param h the core handle
287  * @param pid the identity of the peer to check if it has been connected to us
288  * @return #GNUNET_YES if the peer is connected to us; #GNUNET_NO if not
289  */
290 int
291 GNUNET_CORE_is_peer_connected_sync (const struct GNUNET_CORE_Handle *h,
292                                     const struct GNUNET_PeerIdentity *pid);
293
294
295 #if 0                           /* keep Emacsens' auto-indent happy */
296 {
297 #endif
298 #ifdef __cplusplus
299 }
300 #endif
301
302 /** @} */ /* end of group core */
303
304 /* ifndef GNUNET_CORE_SERVICE_H */
305 #endif
306 /* end of gnunet_core_service.h */