convering more services to new core MQ API
[oweals/gnunet.git] / src / include / gnunet_cadet_service.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009-2014 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @author Christian Grothoff
22  * @author Bart Polot
23  *
24  * @file
25  * CADET service; establish channels to distant peers
26  *
27  * @defgroup cadet  CADET service
28  * Confidential Ad-hoc Decentralized End-to-End Transport
29  *
30  * @see [Documentation](https://gnunet.org/cadet-subsystem)
31  * @see [Paper](https://gnunet.org/cadet)
32  *
33  * @{
34  */
35 #ifndef GNUNET_CADET_SERVICE_H
36 #define GNUNET_CADET_SERVICE_H
37
38 #ifdef __cplusplus
39 extern "C"
40 {
41 #if 0                           /* keep Emacsens' auto-indent happy */
42 }
43 #endif
44 #endif
45
46 #include "gnunet_util_lib.h"
47 #include "gnunet_transport_service.h"
48
49 /**
50  * Version number of GNUnet-cadet API.
51  */
52 #define GNUNET_CADET_VERSION 0x00000004
53
54
55 /**
56  * Opaque handle to the service.
57  */
58 struct GNUNET_CADET_Handle;
59
60 /**
61  * Opaque handle to a channel.
62  */
63 struct GNUNET_CADET_Channel;
64
65 /**
66  * Opaque handle to a port.
67  */
68 struct GNUNET_CADET_Port;
69
70 /**
71  * Hash to be used in Cadet communication. Only 256 bits needed,
72  * instead of the 512 from `struct GNUNET_HashCode`.
73  */
74 struct GNUNET_CADET_Hash
75 {
76   unsigned char bits[256 / 8];
77 };
78
79
80 /**
81  * Channel options.  Second line indicates filed in the
82  * CadetChannelInfo union carrying the answer.
83  */
84 enum GNUNET_CADET_ChannelOption
85 {
86   /**
87    * Default options: unreliable, default buffering, not out of order.
88    */
89   GNUNET_CADET_OPTION_DEFAULT    = 0x0,
90
91   /**
92    * Disable buffering on intermediate nodes (for minimum latency).
93    * Yes/No.
94    */
95   GNUNET_CADET_OPTION_NOBUFFER   = 0x1,
96
97   /**
98    * Enable channel reliability, lost messages will be retransmitted.
99    * Yes/No.
100    */
101   GNUNET_CADET_OPTION_RELIABLE   = 0x2,
102
103   /**
104    * Enable out of order delivery of messages.
105    * Yes/No.
106    */
107   GNUNET_CADET_OPTION_OOORDER    = 0x4,
108
109   /**
110    * Who is the peer at the other end of the channel.
111    * Only for use in @c GNUNET_CADET_channel_get_info
112    * struct GNUNET_PeerIdentity *peer
113    */
114   GNUNET_CADET_OPTION_PEER       = 0x8
115
116 };
117
118
119 /**
120  * Functions with this signature are called whenever a message is
121  * received.
122  *
123  * Each time the function must call #GNUNET_CADET_receive_done on the channel
124  * in order to receive the next message. This doesn't need to be immediate:
125  * can be delayed if some processing is done on the message.
126  *
127  * @param cls Closure (set from #GNUNET_CADET_connect).
128  * @param channel Connection to the other end.
129  * @param channel_ctx Place to store local state associated with the channel.
130  * @param message The actual message.
131  * @return #GNUNET_OK to keep the channel open,
132  *         #GNUNET_SYSERR to close it (signal serious error).
133  */
134 typedef int
135 (*GNUNET_CADET_MessageCallback) (void *cls,
136                                  struct GNUNET_CADET_Channel *channel,
137                                  void **channel_ctx,
138                                  const struct GNUNET_MessageHeader *message);
139
140
141 /**
142  * Message handler.  Each struct specifies how to handle on particular
143  * type of message received.
144  */
145 struct GNUNET_CADET_MessageHandler
146 {
147   /**
148    * Function to call for messages of type @e type.
149    */
150   GNUNET_CADET_MessageCallback callback;
151
152   /**
153    * Type of the message this handler covers.
154    */
155   uint16_t type;
156
157   /**
158    * Expected size of messages of this type.  Use 0 for variable-size.
159    * If non-zero, messages of the given type will be discarded if they
160    * do not have the right size.
161    */
162   uint16_t expected_size;
163 };
164
165
166 /**
167  * Method called whenever another peer has added us to a channel
168  * the other peer initiated.
169  * Only called (once) upon reception of data with a message type which was
170  * subscribed to in #GNUNET_CADET_connect.
171  *
172  * A call to #GNUNET_CADET_channel_destroy causes te channel to be ignored. In
173  * this case the handler MUST return NULL.
174  *
175  * @param cls closure
176  * @param channel new handle to the channel
177  * @param initiator peer that started the channel
178  * @param port Port this channel is for.
179  * @param options CadetOption flag field, with all active option bits set to 1.
180  *
181  * @return initial channel context for the channel
182  *         (can be NULL -- that's not an error)
183  */
184 typedef void *
185 (GNUNET_CADET_InboundChannelNotificationHandler) (void *cls,
186                                                   struct GNUNET_CADET_Channel *channel,
187                                                   const struct GNUNET_PeerIdentity *initiator,
188                                                   const struct GNUNET_HashCode *port,
189                                                   enum GNUNET_CADET_ChannelOption options);
190
191
192 /**
193  * Function called whenever a channel is destroyed.  Should clean up
194  * any associated state, including cancelling any pending transmission on this
195  * channel.
196  *
197  * It must NOT call #GNUNET_CADET_channel_destroy on the channel.
198  *
199  * @param cls closure (set from #GNUNET_CADET_connect)
200  * @param channel connection to the other end (henceforth invalid)
201  * @param channel_ctx place where local state associated
202  *                   with the channel is stored
203  */
204 typedef void
205 (GNUNET_CADET_ChannelEndHandler) (void *cls,
206                                   const struct GNUNET_CADET_Channel *channel,
207                                   void *channel_ctx);
208
209
210 /**
211  * Connect to the cadet service.
212  *
213  * @param cfg Configuration to use.
214  * @param cls Closure for the various callbacks that follow (including
215  *            handlers in the handlers array).
216  * @param cleaner Function called when a channel is destroyed.
217  *                It is called immediately if #GNUNET_CADET_channel_destroy
218  *                is called on the channel.
219  * @param handlers Callbacks for messages we care about, NULL-terminated. Each
220  *                 one must call #GNUNET_CADET_receive_done on the channel to
221  *                 receive the next message.  Messages of a type that is not
222  *                 in the handlers array are ignored if received.
223  *
224  * @return handle to the cadet service NULL on error
225  *         (in this case, init is never called)
226  */
227 struct GNUNET_CADET_Handle *
228 GNUNET_CADET_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
229                       void *cls,
230                       GNUNET_CADET_ChannelEndHandler cleaner,
231                       const struct GNUNET_CADET_MessageHandler *handlers);
232
233
234 /**
235  * Disconnect from the cadet service. All channels will be destroyed. All channel
236  * disconnect callbacks will be called on any still connected peers, notifying
237  * about their disconnection. The registered inbound channel cleaner will be
238  * called should any inbound channels still exist.
239  *
240  * @param handle connection to cadet to disconnect
241  */
242 void
243 GNUNET_CADET_disconnect (struct GNUNET_CADET_Handle *handle);
244
245 /**
246  * Open a port to receive incomming channels.
247  *
248  * @param h CADET handle.
249  * @param port Hash representing the port number.
250  * @param new_channel Function called when an channel is received.
251  * @param new_channel_cls Closure for @a new_channel.
252  *
253  * @return Port handle.
254  */
255 struct GNUNET_CADET_Port *
256 GNUNET_CADET_open_port (struct GNUNET_CADET_Handle *h,
257                         const struct GNUNET_HashCode *port,
258                         GNUNET_CADET_InboundChannelNotificationHandler
259                             new_channel,
260                         void *new_channel_cls);
261
262 /**
263  * Close a port opened with @a GNUNET_CADET_open_port.
264  * The @a new_channel callback will no longer be called.
265  *
266  * @param p Port handle.
267  */
268 void
269 GNUNET_CADET_close_port (struct GNUNET_CADET_Port *p);
270
271 /**
272  * Create a new channel towards a remote peer.
273  *
274  * If the destination port is not open by any peer or the destination peer
275  * does not accept the channel, #GNUNET_CADET_ChannelEndHandler will be called
276  * for this channel.
277  *
278  * @param h cadet handle
279  * @param channel_ctx client's channel context to associate with the channel
280  * @param peer peer identity the channel should go to
281  * @param port Port hash (port number).
282  * @param options CadetOption flag field, with all desired option bits set to 1.
283  *
284  * @return handle to the channel
285  */
286 struct GNUNET_CADET_Channel *
287 GNUNET_CADET_channel_create (struct GNUNET_CADET_Handle *h,
288                             void *channel_ctx,
289                             const struct GNUNET_PeerIdentity *peer,
290                             const struct GNUNET_HashCode *port,
291                             enum GNUNET_CADET_ChannelOption options);
292
293
294 /**
295  * Destroy an existing channel.
296  *
297  * The existing end callback for the channel will be called immediately.
298  * Any pending outgoing messages will be sent but no incoming messages will be
299  * accepted and no data callbacks will be called.
300  *
301  * @param channel Channel handle, becomes invalid after this call.
302  */
303 void
304 GNUNET_CADET_channel_destroy (struct GNUNET_CADET_Channel *channel);
305
306
307 /**
308  * Struct to retrieve info about a channel.
309  */
310 union GNUNET_CADET_ChannelInfo
311 {
312
313   /**
314    * #GNUNET_YES / #GNUNET_NO, for binary flags.
315    */
316   int yes_no;
317
318   /**
319    * Peer on the other side of the channel
320    */
321   const struct GNUNET_PeerIdentity peer;
322 };
323
324
325 /**
326  * Get information about a channel.
327  *
328  * @param channel Channel handle.
329  * @param option Query type GNUNET_CADET_OPTION_*
330  * @param ... dependant on option, currently not used
331  * @return Union with an answer to the query.
332  */
333 const union GNUNET_CADET_ChannelInfo *
334 GNUNET_CADET_channel_get_info (struct GNUNET_CADET_Channel *channel,
335                               enum GNUNET_CADET_ChannelOption option, ...);
336
337
338 /**
339  * Handle for a transmission request.
340  */
341 struct GNUNET_CADET_TransmitHandle;
342
343
344 /**
345  * Ask the cadet to call @a notify once it is ready to transmit the
346  * given number of bytes to the specified channel.
347  * Only one call can be active at any time, to issue another request,
348  * wait for the callback or cancel the current request.
349  *
350  * @param channel channel to use for transmission
351  * @param cork is corking allowed for this transmission?
352  * @param maxdelay how long can the message wait?
353  * @param notify_size how many bytes of buffer space does notify want?
354  * @param notify function to call when buffer space is available;
355  *        will be called with NULL on timeout or if the overall queue
356  *        for this peer is larger than queue_size and this is currently
357  *        the message with the lowest priority
358  * @param notify_cls closure for @a notify
359  * @return non-NULL if the notify callback was queued,
360  *         NULL if we can not even queue the request (insufficient
361  *         memory); if NULL is returned, @a notify will NOT be called.
362  */
363 struct GNUNET_CADET_TransmitHandle *
364 GNUNET_CADET_notify_transmit_ready (struct GNUNET_CADET_Channel *channel,
365                                    int cork,
366                                    struct GNUNET_TIME_Relative maxdelay,
367                                    size_t notify_size,
368                                    GNUNET_CONNECTION_TransmitReadyNotify notify,
369                                    void *notify_cls);
370
371
372 /**
373  * Cancel the specified transmission-ready notification.
374  *
375  * @param th handle that was returned by "notify_transmit_ready".
376  */
377 void
378 GNUNET_CADET_notify_transmit_ready_cancel (struct GNUNET_CADET_TransmitHandle *th);
379
380
381 /**
382  * Indicate readiness to receive the next message on a channel.
383  *
384  * Should only be called once per handler called.
385  *
386  * @param channel Channel that will be allowed to call another handler.
387  */
388 void
389 GNUNET_CADET_receive_done (struct GNUNET_CADET_Channel *channel);
390
391
392
393 /******************************************************************************/
394 /********************       MONITORING /DEBUG API     *************************/
395 /******************************************************************************/
396 /* The following calls are not useful for normal CADET operation, but for      */
397 /* debug and monitoring of the cadet state. They can be safely ignored.        */
398 /* The API can change at any point without notice.                            */
399 /* Please contact the developer if you consider any of this calls useful for  */
400 /* normal cadet applications.                                                  */
401 /******************************************************************************/
402
403
404 /**
405  * Method called to retrieve information about a specific channel the cadet peer
406  * is aware of, including all transit nodes.
407  *
408  * @param cls Closure.
409  * @param root Root of the channel.
410  * @param dest Destination of the channel.
411  * @param port Destination port of the channel.
412  * @param root_channel_number Local number for root, if known.
413  * @param dest_channel_number Local number for dest, if known.
414  * @param public_channel_numbe Number for P2P, always known.
415  */
416 typedef void
417 (*GNUNET_CADET_ChannelCB) (void *cls,
418                            const struct GNUNET_PeerIdentity *root,
419                            const struct GNUNET_PeerIdentity *dest,
420                            uint32_t port,
421                            uint32_t root_channel_number,
422                            uint32_t dest_channel_number,
423                            uint32_t public_channel_number);
424
425 /**
426  * Method called to retrieve information about all peers in CADET, called
427  * once per peer.
428  *
429  * After last peer has been reported, an additional call with NULL is done.
430  *
431  * @param cls Closure.
432  * @param peer Peer, or NULL on "EOF".
433  * @param tunnel Do we have a tunnel towards this peer?
434  * @param n_paths Number of known paths towards this peer.
435  * @param best_path How long is the best path?
436  *                  (0 = unknown, 1 = ourselves, 2 = neighbor)
437  */
438 typedef void
439 (*GNUNET_CADET_PeersCB) (void *cls,
440                          const struct GNUNET_PeerIdentity *peer,
441                          int tunnel,
442                          unsigned int n_paths,
443                          unsigned int best_path);
444
445 /**
446  * Method called to retrieve information about a specific peer
447  * known to the service.
448  *
449  * @param cls Closure.
450  * @param peer Peer ID.
451  * @param tunnel Do we have a tunnel towards this peer? #GNUNET_YES/#GNUNET_NO
452  * @param neighbor Is this a direct neighbor? #GNUNET_YES/#GNUNET_NO
453  * @param n_paths Number of paths known towards peer.
454  * @param paths Array of PEER_IDs representing all paths to reach the peer.
455  *              Each path starts with the first hop (local peer not included).
456  *              Each path ends with the destination peer (given in @c peer).
457  */
458 typedef void
459 (*GNUNET_CADET_PeerCB) (void *cls,
460                         const struct GNUNET_PeerIdentity *peer,
461                         int tunnel,
462                         int neighbor,
463                         unsigned int n_paths,
464                         struct GNUNET_PeerIdentity *paths);
465
466
467 /**
468  * Method called to retrieve information about all tunnels in CADET, called
469  * once per tunnel.
470  *
471  * After last tunnel has been reported, an additional call with NULL is done.
472  *
473  * @param cls Closure.
474  * @param peer Destination peer, or NULL on "EOF".
475  * @param channels Number of channels.
476  * @param connections Number of connections.
477  * @param estate Encryption state.
478  * @param cstate Connectivity state.
479  */
480 typedef void
481 (*GNUNET_CADET_TunnelsCB) (void *cls,
482                            const struct GNUNET_PeerIdentity *peer,
483                            unsigned int channels,
484                            unsigned int connections,
485                            uint16_t estate,
486                            uint16_t cstate);
487
488
489 /**
490  * Method called to retrieve information about a specific tunnel the cadet peer
491  * has established, o`r is trying to establish.
492  *
493  * @param cls Closure.
494  * @param peer Peer towards whom the tunnel is directed.
495  * @param n_channels Number of channels.
496  * @param n_connections Number of connections.
497  * @param channels Channels.
498  * @param connections Connections.
499  * @param estate Encryption state.
500  * @param cstate Connectivity state.
501  */
502 typedef void
503 (*GNUNET_CADET_TunnelCB) (void *cls,
504                           const struct GNUNET_PeerIdentity *peer,
505                           unsigned int n_channels,
506                           unsigned int n_connections,
507                           uint32_t *channels,
508                           struct GNUNET_CADET_Hash *connections,
509                           unsigned int estate,
510                           unsigned int cstate);
511
512
513 /**
514  * Request information about a specific channel of the running cadet peer.
515  *
516  * WARNING: unstable API, likely to change in the future!
517  *
518  * @param h Handle to the cadet peer.
519  * @param peer ID of the other end of the channel.
520  * @param channel_number Channel number.
521  * @param callback Function to call with the requested data.
522  * @param callback_cls Closure for @c callback.
523  */
524 void
525 GNUNET_CADET_get_channel (struct GNUNET_CADET_Handle *h,
526                           struct GNUNET_PeerIdentity *peer,
527                           uint32_t channel_number,
528                           GNUNET_CADET_ChannelCB callback,
529                           void *callback_cls);
530
531
532 /**
533  * Request a debug dump on the service's STDERR.
534  *
535  * WARNING: unstable API, likely to change in the future!
536  *
537  * @param h cadet handle
538  */
539 void
540 GNUNET_CADET_request_dump (struct GNUNET_CADET_Handle *h);
541
542
543 /**
544  * Request information about peers known to the running cadet service.
545  * The callback will be called for every peer known to the service.
546  * Only one info request (of any kind) can be active at once.
547  *
548  *
549  * WARNING: unstable API, likely to change in the future!
550  *
551  * @param h Handle to the cadet peer.
552  * @param callback Function to call with the requested data.
553  * @param callback_cls Closure for @c callback.
554  *
555  * @return #GNUNET_OK / #GNUNET_SYSERR
556  */
557 int
558 GNUNET_CADET_get_peers (struct GNUNET_CADET_Handle *h,
559                         GNUNET_CADET_PeersCB callback,
560                         void *callback_cls);
561
562
563 /**
564  * Cancel a peer info request. The callback will not be called (anymore).
565  *
566  * WARNING: unstable API, likely to change in the future!
567  *
568  * @param h Cadet handle.
569  *
570  * @return Closure that was given to #GNUNET_CADET_get_peers().
571  */
572 void *
573 GNUNET_CADET_get_peers_cancel (struct GNUNET_CADET_Handle *h);
574
575
576 /**
577  * Request information about a peer known to the running cadet peer.
578  * The callback will be called for the tunnel once.
579  * Only one info request (of any kind) can be active at once.
580  *
581  * WARNING: unstable API, likely to change in the future!
582  *
583  * @param h Handle to the cadet peer.
584  * @param id Peer whose tunnel to examine.
585  * @param callback Function to call with the requested data.
586  * @param callback_cls Closure for @c callback.
587  *
588  * @return #GNUNET_OK / #GNUNET_SYSERR
589  */
590 int
591 GNUNET_CADET_get_peer (struct GNUNET_CADET_Handle *h,
592                       const struct GNUNET_PeerIdentity *id,
593                       GNUNET_CADET_PeerCB callback,
594                       void *callback_cls);
595
596
597 /**
598  * Request information about tunnels of the running cadet peer.
599  * The callback will be called for every tunnel of the service.
600  * Only one info request (of any kind) can be active at once.
601  *
602  * WARNING: unstable API, likely to change in the future!
603  *
604  * @param h Handle to the cadet peer.
605  * @param callback Function to call with the requested data.
606  * @param callback_cls Closure for @c callback.
607  *
608  * @return #GNUNET_OK / #GNUNET_SYSERR
609  */
610 int
611 GNUNET_CADET_get_tunnels (struct GNUNET_CADET_Handle *h,
612                           GNUNET_CADET_TunnelsCB callback,
613                           void *callback_cls);
614
615
616 /**
617  * Cancel a monitor request. The monitor callback will not be called.
618  *
619  * @param h Cadet handle.
620  *
621  * @return Closure given to #GNUNET_CADET_get_tunnels(), if any.
622  */
623 void *
624 GNUNET_CADET_get_tunnels_cancel (struct GNUNET_CADET_Handle *h);
625
626
627 /**
628  * Request information about a tunnel of the running cadet peer.
629  * The callback will be called for the tunnel once.
630  * Only one info request (of any kind) can be active at once.
631  *
632  * WARNING: unstable API, likely to change in the future!
633  *
634  * @param h Handle to the cadet peer.
635  * @param id Peer whose tunnel to examine.
636  * @param callback Function to call with the requested data.
637  * @param callback_cls Closure for @c callback.
638  *
639  * @return #GNUNET_OK / #GNUNET_SYSERR
640  */
641 int
642 GNUNET_CADET_get_tunnel (struct GNUNET_CADET_Handle *h,
643                          const struct GNUNET_PeerIdentity *id,
644                          GNUNET_CADET_TunnelCB callback,
645                          void *callback_cls);
646
647
648 /**
649  * Create a message queue for a cadet channel.
650  * The message queue can only be used to transmit messages,
651  * not to receive them.
652  *
653  * @param channel the channel to create the message qeue for
654  * @return a message queue to messages over the channel
655  */
656 struct GNUNET_MQ_Handle *
657 GNUNET_CADET_mq_create (struct GNUNET_CADET_Channel *channel);
658
659
660 /**
661  * Transitional function to convert an unsigned int port to a hash value.
662  * WARNING: local static value returned, NOT reentrant!
663  * WARNING: do not use this function for new code!
664  *
665  * @param port Numerical port (unsigned int format).
666  *
667  * @return A GNUNET_HashCode usable for the new CADET API.
668  */
669 const struct GNUNET_HashCode *
670 GC_u2h (uint32_t port);
671
672
673 #if 0                           /* keep Emacsens' auto-indent happy */
674 {
675 #endif
676 #ifdef __cplusplus
677 }
678 #endif
679
680 /* ifndef GNUNET_CADET_SERVICE_H */
681 #endif
682
683 /** @} */  /* end of group */
684
685 /* end of gnunet_cadet_service.h */